From 22b8ceb4c23edd45fb658adb2420080bf4955d9e Mon Sep 17 00:00:00 2001 From: Joey Ballentine Date: Sat, 14 Oct 2023 18:07:36 -0400 Subject: [PATCH 1/7] No more iterator jank --- backend/src/api.py | 8 +- backend/src/chain/cache.py | 12 +- backend/src/chain/chain.py | 35 +-- backend/src/chain/json.py | 7 +- backend/src/chain/optimize.py | 35 +-- backend/src/custom_types.py | 4 +- backend/src/events.py | 6 - backend/src/node_check.py | 21 +- backend/src/process.py | 260 +----------------- src/common/Backend.ts | 8 - src/common/SaveFile.ts | 3 - src/common/common-types.ts | 5 +- src/common/migrations.ts | 10 + src/common/nodes/disabled.ts | 7 - src/common/nodes/toBackendJson.ts | 1 - src/main/cli/run.ts | 15 +- .../components/CustomEdge/CustomEdge.tsx | 7 +- .../NodeDocumentation/NodeExample.tsx | 1 - .../RepresentativeNodeWrapper.tsx | 6 +- .../NodeSelectorPanel/presets/index.ts | 8 +- src/renderer/components/ReactFlowBox.tsx | 207 +------------- .../components/node/IteratorHelperNode.tsx | 112 -------- src/renderer/components/node/IteratorNode.tsx | 144 ---------- .../components/node/IteratorNodeBody.tsx | 196 ------------- .../components/node/IteratorNodeHeader.tsx | 138 ---------- src/renderer/components/node/Node.tsx | 24 +- src/renderer/components/node/NodeHeader.tsx | 5 +- .../components/outputs/DefaultImageOutput.tsx | 31 +-- src/renderer/contexts/ExecutionContext.tsx | 23 -- src/renderer/contexts/GlobalNodeState.tsx | 165 +---------- src/renderer/helpers/copyAndPaste.ts | 11 +- src/renderer/helpers/dataTransfer.ts | 15 +- src/renderer/helpers/nodeScreenshot.ts | 12 +- src/renderer/helpers/nodeSearchFuncs.ts | 4 +- src/renderer/helpers/reactFlowUtil.ts | 95 +------ src/renderer/hooks/useDisabled.ts | 4 +- src/renderer/hooks/useInputHashes.ts | 8 - src/renderer/hooks/useInputRefactor.tsx | 25 +- src/renderer/hooks/useNodeMenu.tsx | 16 +- src/renderer/hooks/usePaneNodeSearchMenu.tsx | 66 +---- src/renderer/main.tsx | 4 - 41 files changed, 124 insertions(+), 1640 deletions(-) delete mode 100644 src/renderer/components/node/IteratorHelperNode.tsx delete mode 100644 src/renderer/components/node/IteratorNode.tsx delete mode 100644 src/renderer/components/node/IteratorNodeBody.tsx delete mode 100644 src/renderer/components/node/IteratorNodeHeader.tsx diff --git a/backend/src/api.py b/backend/src/api.py index ffc7e020d..7d528b29f 100644 --- a/backend/src/api.py +++ b/backend/src/api.py @@ -174,15 +174,11 @@ def inner_wrapper(wrapped_func: T) -> T: run_check( TYPE_CHECK_LEVEL, - lambda _: check_schema_types( - wrapped_func, node_type, p_inputs, p_outputs - ), + lambda _: check_schema_types(wrapped_func, p_inputs, p_outputs), ) run_check( NAME_CHECK_LEVEL, - lambda fix: check_naming_conventions( - wrapped_func, node_type, name, fix - ), + lambda fix: check_naming_conventions(wrapped_func, name, fix), ) if decorators is not None: diff --git a/backend/src/chain/cache.py b/backend/src/chain/cache.py index 2c84f2a23..a46781351 100644 --- a/backend/src/chain/cache.py +++ b/backend/src/chain/cache.py @@ -33,16 +33,8 @@ def get_cache_strategies(chain: Chain) -> Dict[NodeId, CacheStrategy]: for node in chain.nodes.values(): out_edges = chain.edges_from(node.id) - connected_to_child_node = any( - chain.nodes[e.target.id].parent for e in out_edges - ) - - strategy: CacheStrategy - if node.parent is None and connected_to_child_node: - # free nodes that are connected to child nodes need to live as the execution - strategy = StaticCaching - else: - strategy = CacheStrategy(len(out_edges)) + + strategy: CacheStrategy = CacheStrategy(len(out_edges)) result[node.id] = strategy diff --git a/backend/src/chain/chain.py b/backend/src/chain/chain.py index d58319f6d..89bbb1342 100644 --- a/backend/src/chain/chain.py +++ b/backend/src/chain/chain.py @@ -19,8 +19,6 @@ class FunctionNode: def __init__(self, node_id: NodeId, schema_id: str): self.id: NodeId = node_id self.schema_id: str = schema_id - self.parent: Union[NodeId, None] = None - self.is_helper: bool = False def get_node(self) -> NodeData: return registry.get_node(self.schema_id) @@ -29,21 +27,6 @@ def has_side_effects(self) -> bool: return self.get_node().side_effects -class IteratorNode: - def __init__(self, node_id: NodeId, schema_id: str): - self.id: NodeId = node_id - self.schema_id: str = schema_id - self.parent: None = None - self.__node = None - - def get_node(self) -> NodeData: - if self.__node is None: - node = registry.get_node(self.schema_id) - assert node.type == "iterator", "Invalid iterator node" - self.__node = node - return self.__node - - class NewIteratorNode: def __init__(self, node_id: NodeId, schema_id: str): self.id: NodeId = node_id @@ -82,7 +65,7 @@ def has_side_effects(self) -> bool: return self.get_node().side_effects -Node = Union[FunctionNode, IteratorNode, NewIteratorNode, CollectorNode] +Node = Union[FunctionNode, NewIteratorNode, CollectorNode] class EdgeSource: @@ -137,19 +120,3 @@ def remove_node(self, node_id: NodeId): self.__edges_by_target[e.target.id].remove(e) for e in self.__edges_by_target.pop(node_id, []): self.__edges_by_source[e.source.id].remove(e) - - if isinstance(node, IteratorNode): - # remove all child nodes - for n in list(self.nodes.values()): - if n.parent == node_id: - self.remove_node(n.id) - - -class SubChain: - def __init__(self, chain: Chain, iterator_id: NodeId): - self.nodes: Dict[NodeId, FunctionNode] = {} - self.iterator_id = iterator_id - - for node in chain.nodes.values(): - if node.parent is not None and node.parent == iterator_id: - self.nodes[node.id] = node diff --git a/backend/src/chain/json.py b/backend/src/chain/json.py index 4740628b8..3f76fe250 100644 --- a/backend/src/chain/json.py +++ b/backend/src/chain/json.py @@ -9,7 +9,6 @@ EdgeSource, EdgeTarget, FunctionNode, - IteratorNode, NewIteratorNode, ) from .input import EdgeInput, Input, InputMap, ValueInput @@ -54,16 +53,12 @@ def parse_json(json: List[JsonNode]) -> Tuple[Chain, InputMap]: index_edges: List[IndexEdge] = [] for json_node in json: - if json_node["nodeType"] == "iterator": - node = IteratorNode(json_node["id"], json_node["schemaId"]) - elif json_node["nodeType"] == "newIterator": + if json_node["nodeType"] == "newIterator": node = NewIteratorNode(json_node["id"], json_node["schemaId"]) elif json_node["nodeType"] == "collector": node = CollectorNode(json_node["id"], json_node["schemaId"]) else: node = FunctionNode(json_node["id"], json_node["schemaId"]) - node.parent = json_node["parent"] - node.is_helper = json_node["nodeType"] == "iteratorHelper" chain.add_node(node) inputs: List[Input] = [] diff --git a/backend/src/chain/optimize.py b/backend/src/chain/optimize.py index 7bea3d041..0a7a9f39e 100644 --- a/backend/src/chain/optimize.py +++ b/backend/src/chain/optimize.py @@ -1,43 +1,12 @@ from sanic.log import logger -from .chain import Chain, EdgeSource, IteratorNode, Node +from .chain import Chain, Node def __has_side_effects(node: Node) -> bool: - if isinstance(node, IteratorNode) or node.is_helper: - # we assume that both iterators and their helper nodes always have side effects - return True return node.has_side_effects() -def __outline_child_nodes(chain: Chain) -> bool: - """ - If a child node of an iterator is not downstream of any iterator helper node, - then this child node can be lifted out of the iterator (outlined) to be a free node. - """ - changed = False - - for node in chain.nodes.values(): - # we try to outline child nodes that are not iterator helper nodes - if node.parent is not None and not node.is_helper: - - def has_no_parent(source: EdgeSource) -> bool: - n = chain.nodes.get(source.id) - assert n is not None - return n.parent is None - - # we can only outline if all of its inputs are independent of the iterator - can_outline = all(has_no_parent(n.source) for n in chain.edges_to(node.id)) - if can_outline: - node.parent = None - changed = True - logger.debug( - f"Chain optimization: Outlined {node.schema_id} node {node.id}" - ) - - return changed - - def __removed_dead_nodes(chain: Chain) -> bool: """ If a node does not have side effects and has no downstream nodes, then it can be removed. @@ -57,4 +26,4 @@ def __removed_dead_nodes(chain: Chain) -> bool: def optimize(chain: Chain): changed = True while changed: - changed = __removed_dead_nodes(chain) or __outline_child_nodes(chain) + changed = __removed_dead_nodes(chain) diff --git a/backend/src/custom_types.py b/backend/src/custom_types.py index 11bbb4463..4d56c084c 100644 --- a/backend/src/custom_types.py +++ b/backend/src/custom_types.py @@ -4,8 +4,6 @@ RunFn = Callable[..., Any] -NodeType = Literal[ - "regularNode", "iterator", "iteratorHelper", "newIterator", "collector" -] +NodeType = Literal["regularNode", "newIterator", "collector"] UpdateProgressFn = Callable[[str, float, Union[float, None]], Awaitable[None]] diff --git a/backend/src/events.py b/backend/src/events.py index c7974e699..c312620e6 100644 --- a/backend/src/events.py +++ b/backend/src/events.py @@ -79,11 +79,6 @@ class NodeStartEvent(TypedDict): data: NodeStartData -class IteratorProgressUpdateEvent(TypedDict): - event: Literal["iterator-progress-update"] - data: IteratorProgressUpdateData - - class NodeProgressUpdateEvent(TypedDict): event: Literal["node-progress-update"] data: NodeProgressUpdateData @@ -104,7 +99,6 @@ class BackendStateEvent(TypedDict): ExecutionErrorEvent, NodeFinishEvent, NodeStartEvent, - IteratorProgressUpdateEvent, NodeProgressUpdateEvent, BackendStatusEvent, BackendStateEvent, diff --git a/backend/src/node_check.py b/backend/src/node_check.py index 83a5d455e..0c4b91fee 100644 --- a/backend/src/node_check.py +++ b/backend/src/node_check.py @@ -7,7 +7,6 @@ from enum import Enum from typing import Any, Callable, Dict, List, NewType, Set, Union, cast, get_args -from custom_types import NodeType from nodes.base_input import BaseInput from nodes.base_output import BaseOutput @@ -174,7 +173,6 @@ def validate_return_type(return_type: _Ty, outputs: list[BaseOutput]): def check_schema_types( wrapped_func: Callable, - node_type: NodeType, inputs: list[BaseInput], outputs: list[BaseOutput], ): @@ -195,19 +193,6 @@ def check_schema_types( if not arg in ann: raise CheckFailedError(f"Missing type annotation for '{arg}'") - if node_type == "iteratorHelper": - # iterator helpers have inputs that do not describe the arguments of the function, so we can't check them - return - - if node_type == "iterator": - # the last argument of an iterator is the iterator context, so we have to account for that - context = [*ann.keys()][-1] - context_type = ann.pop(context) - if str(context_type) != "": - raise CheckFailedError( - f"Last argument of an iterator must be an IteratorContext, not '{context_type}'" - ) - if arg_spec.varargs is not None: if not arg_spec.varargs in ann: raise CheckFailedError(f"Missing type annotation for '{arg_spec.varargs}'") @@ -255,7 +240,6 @@ def check_schema_types( def check_naming_conventions( wrapped_func: Callable, - node_type: NodeType, name: str, fix: bool, ): @@ -269,9 +253,6 @@ def check_naming_conventions( .replace("&", "and") ) - if node_type == "iteratorHelper": - expected_name = "iterator_helper_" + expected_name - func_name = wrapped_func.__name__ file_path = pathlib.Path(inspect.getfile(wrapped_func)) file_name = file_path.stem @@ -289,7 +270,7 @@ def check_naming_conventions( file_path.write_text(fixed_code, encoding="utf-8") # check file name - if node_type != "iteratorHelper" and file_name != expected_name: + if file_name != expected_name: if not fix: raise CheckFailedError( f"File name is '{file_name}.py', but it should be '{expected_name}.py'" diff --git a/backend/src/process.py b/backend/src/process.py index c5a1c124b..612346d53 100644 --- a/backend/src/process.py +++ b/backend/src/process.py @@ -7,36 +7,18 @@ import uuid from collections.abc import Awaitable from concurrent.futures import ThreadPoolExecutor -from typing import ( - Callable, - Dict, - Iterable, - List, - Literal, - Optional, - Set, - Tuple, - TypeVar, -) +from typing import Callable, Dict, Iterable, List, Optional, Set, Tuple, TypeVar from sanic.log import logger from api import Collector, Iterator, NodeData from base_types import NodeId, OutputId from chain.cache import CacheStrategy, OutputCache, get_cache_strategies -from chain.chain import ( - Chain, - CollectorNode, - FunctionNode, - IteratorNode, - NewIteratorNode, - Node, - SubChain, -) +from chain.chain import Chain, CollectorNode, NewIteratorNode, Node from chain.input import EdgeInput, InputMap from events import Event, EventQueue, InputsDict from nodes.base_output import BaseOutput -from progress_controller import Aborted, ProgressController, ProgressToken +from progress_controller import Aborted, ProgressController Output = List[object] @@ -80,9 +62,6 @@ def enforce_inputs( ) -> List[object]: inputs = list(inputs) - if node.type == "iteratorHelper": - return inputs - try: enforced_inputs: List[object] = [] for index, value in enumerate(inputs): @@ -121,7 +100,6 @@ def run_node( ) -> Output | Iterator | Collector: assert ( node.type == "regularNode" - or node.type == "iteratorHelper" or node.type == "newIterator" or node.type == "collector" ) @@ -154,28 +132,6 @@ def run_node( raise NodeExecutionError(node_id, node, str(e), input_dict) from e -async def run_iterator_node( - node: NodeData, - inputs: Iterable[object], - node_id: NodeId, - context: IteratorContext, -) -> Output: - assert node.type == "iterator" - - enforced_inputs = enforce_inputs(inputs, node, node_id) - try: - raw_output = await node.run(*enforced_inputs, context=context) - return enforce_output(raw_output, node) - except Aborted: - raise - except NodeExecutionError: - raise - except Exception as e: - # collect information to provide good error messages - input_dict = collect_input_information(node, enforced_inputs) - raise NodeExecutionError(node_id, node, str(e), input_dict) from e - - def compute_broadcast(output: Output, node_outputs: Iterable[BaseOutput]): data: Dict[OutputId, object] = dict() types: Dict[OutputId, object] = dict() @@ -205,159 +161,6 @@ def __init__( self.inputs: InputsDict = inputs -class IteratorContext: - def __init__( - self, - executor: Executor, - iterator_id: NodeId, - ): - self.executor: Executor = executor - self.progress: ProgressToken = executor.progress - self.times: List[float] = [] - - self.iterator_id: NodeId = iterator_id - self.chain = SubChain(executor.chain, iterator_id) - self.inputs = InputMap(parent=executor.inputs) - - def get_helper(self, schema_id: str) -> FunctionNode: - for node in self.chain.nodes.values(): - if node.schema_id == schema_id: - return node - assert ( - False - ), f"Unable to find {schema_id} helper node for iterator {self.iterator_id}" - - def __create_iterator_executor(self) -> Executor: - return Executor( - self.executor.chain, - self.inputs, - self.executor.send_broadcast_data, - self.executor.loop, - self.executor.queue, - self.executor.pool, - parent_executor=self.executor, - ) - - def __get_eta(self, index: int, total: int) -> float: - if len(self.times) == 0: - return 0 - return (sum(self.times) / len(self.times)) * (total - index) - - async def __update_progress(self, index: int, length: int): - await self.executor.queue.put( - { - "event": "iterator-progress-update", - "data": { - "percent": index / length, - "index": index, - "total": length, - "eta": self.__get_eta(index, length), - "iteratorId": self.iterator_id, - "running": list(self.chain.nodes.keys()), - }, - } - ) - - async def __finish_progress(self, length: int): - await self.executor.queue.put( - { - "event": "iterator-progress-update", - "data": { - "percent": 1, - "index": length, - "total": length, - "eta": 0, - "iteratorId": self.iterator_id, - "running": None, - }, - } - ) - - async def run_iteration(self, index: int, total: int): - await self.__update_progress(index, total) - await self.progress.suspend() - - start = time.time() - try: - executor = self.__create_iterator_executor() - await executor.run_iteration(self.chain) - finally: - end = time.time() - self.times.append(end - start) - - async def run( - self, - collection: Iterable[T], - before: Callable[[T, int], None | Literal[False]], - ): - items = list(collection) - length = len(items) - - await self.__update_progress(0, length) - - errors: List[str] = [] - for index, item in enumerate(items): - try: - await self.progress.suspend() - - result = before(item, index) - if result is False: - break - - await self.run_iteration(index, length) - except Aborted: - raise - except Exception as e: - logger.error(e) - errors.append(str(e)) - - await self.__finish_progress(length) - - if len(errors) > 0: - raise RuntimeError( - # pylint: disable=consider-using-f-string - "Errors occurred during iteration: \n• {}".format("\n• ".join(errors)) - ) - - async def run_while( - self, - length_estimate: int, - before: Callable[[int], None | Literal[False]], - fail_fast=False, - ): - errors: List[str] = [] - index = -1 - - await self.__update_progress(0, length_estimate) - - while True: - try: - await self.progress.suspend() - - index += 1 - - result = before(index) - if result is False: - break - - await self.run_iteration(index, max(length_estimate, index + 1)) - except Aborted: - raise - except Exception as e: - logger.error(e) - if fail_fast: - raise - errors.append(str(e)) - - await self.__finish_progress(index) - - if len(errors) > 0: - raise RuntimeError( - # pylint: disable=consider-using-f-string - "Errors occurred during iteration: \n• {}".format("\n• ".join(errors)) - ) - - def timed_supplier(supplier: Callable[[], T]) -> Callable[[], Tuple[T, float]]: def wrapper(): start = time.time() @@ -389,25 +192,16 @@ def __init__( queue: EventQueue, pool: ThreadPoolExecutor, parent_cache: Optional[OutputCache[Output]] = None, - parent_executor: Optional[Executor] = None, ): - assert not ( - parent_cache and parent_executor - ), "Providing both a parent executor and a parent cache is not supported." - self.execution_id: str = uuid.uuid4().hex self.chain = chain self.inputs = inputs self.send_broadcast_data: bool = send_broadcast_data - self.cache: OutputCache[Output] = OutputCache( - parent=parent_executor.cache if parent_executor else parent_cache - ) + self.cache: OutputCache[Output] = OutputCache(parent=parent_cache) self.collector_cache: Dict[NodeId, Collector] = {} self.__broadcast_tasks: List[asyncio.Task[None]] = [] - self.progress = ( - ProgressController() if not parent_executor else parent_executor.progress - ) + self.progress = ProgressController() self.completed_node_ids = set() @@ -415,13 +209,7 @@ def __init__( self.queue: EventQueue = queue self.pool: ThreadPoolExecutor = pool - self.parent_executor = parent_executor - - self.cache_strategy: Dict[NodeId, CacheStrategy] = ( - parent_executor.cache_strategy - if parent_executor - else get_cache_strategies(chain) - ) + self.cache_strategy: Dict[NodeId, CacheStrategy] = get_cache_strategies(chain) async def process(self, node_id: NodeId) -> Output | Iterator: node = self.chain.nodes[node_id] @@ -470,20 +258,7 @@ async def __process(self, node: Node) -> Output | Iterator: # Create node based on given category/name information node_instance = node.get_node() - if node_instance.type == "iterator": - output, execution_time = await timed_supplier_async( - functools.partial( - run_iterator_node, - node_instance, - inputs, - node.id, - IteratorContext(self, node.id), - ) - ) - - await self.progress.suspend() - await self.__broadcast_data(node_instance, node.id, execution_time, output) - elif node_instance.type == "newIterator": + if node_instance.type == "newIterator": output, execution_time = await self.loop.run_in_executor( self.pool, timed_supplier( @@ -514,11 +289,7 @@ async def __process(self, node: Node) -> Output | Iterator: # If we are executing a free node from within an iterator, # we want to store the result in the cache of the parent executor if node.get_node().type != "collector": - write_cache = ( - self.parent_executor.cache - if self.parent_executor and node.parent is None - else self.cache - ) + write_cache = self.cache write_cache.set(node.id, output, self.cache_strategy[node.id]) # type: ignore return output # type: ignore @@ -607,8 +378,8 @@ def __get_output_nodes(self) -> List[NodeId]: output_nodes: List[NodeId] = [] for node in self.chain.nodes.values(): # we assume that iterator node always have side effects - side_effects = isinstance(node, IteratorNode) or node.has_side_effects() - if node.parent is None and side_effects: + side_effects = node.has_side_effects() + if side_effects: output_nodes.append(node.id) return output_nodes @@ -619,13 +390,6 @@ def __get_iterator_nodes(self) -> List[NodeId]: iterator_nodes.append(node.id) return iterator_nodes - def __get_iterator_output_nodes(self, sub: SubChain) -> List[NodeId]: - output_nodes: List[NodeId] = [] - for node in sub.nodes.values(): - if node.has_side_effects(): - output_nodes.append(node.id) - return output_nodes - def __get_collector_nodes(self) -> List[NodeId]: collector_nodes: List[NodeId] = [] for node in self.chain.nodes.values(): @@ -817,10 +581,6 @@ async def run(self): finally: gc.collect() - async def run_iteration(self, sub: SubChain): - logger.debug(f"Running executor {self.execution_id}") - await self.__process_nodes(self.__get_iterator_output_nodes(sub)) - def __get_eta(self, times: List[float], index: int, total: int) -> float: if len(times) == 0: return 0 diff --git a/src/common/Backend.ts b/src/common/Backend.ts index a9c17e1df..3c06c38db 100644 --- a/src/common/Backend.ts +++ b/src/common/Backend.ts @@ -292,14 +292,6 @@ export interface BackendEventMap { 'node-start': { nodeId: string; }; - 'iterator-progress-update': { - percent: number; - index: number; - total: number; - eta: number; - iteratorId: string; - running?: string[] | null; - }; 'node-progress-update': { nodeId: string; percent: number; diff --git a/src/common/SaveFile.ts b/src/common/SaveFile.ts index 984e6b236..245e940aa 100644 --- a/src/common/SaveFile.ts +++ b/src/common/SaveFile.ts @@ -80,10 +80,8 @@ export class SaveFile { outputHeight: n.data.outputHeight, nodeWidth: n.data.nodeWidth, id: n.data.id, - iteratorSize: n.data.iteratorSize, isDisabled: n.data.isDisabled, isLocked: n.data.isLocked, - parentNode: n.data.parentNode, }, id: n.id, position: n.position, @@ -92,7 +90,6 @@ export class SaveFile { height: n.height, width: n.width, zIndex: n.zIndex, - parentNode: n.parentNode, }) ), edges: edges.map((e): Edge => ({ ...e, data: {} })), diff --git a/src/common/common-types.ts b/src/common/common-types.ts index e22e2ca0a..5a248fcf7 100644 --- a/src/common/common-types.ts +++ b/src/common/common-types.ts @@ -237,7 +237,7 @@ export type OfKind ? T : never; -export type NodeType = 'regularNode' | 'iterator' | 'iteratorHelper' | 'newIterator' | 'collector'; +export type NodeType = 'regularNode' | 'newIterator' | 'collector'; export type InputData = Readonly>; export type InputHeight = Readonly>; @@ -272,7 +272,6 @@ export interface DefaultNode { export interface NodeData { readonly id: string; - readonly parentNode?: string; readonly schemaId: SchemaId; readonly isDisabled?: boolean; readonly isLocked?: boolean; @@ -282,7 +281,6 @@ export interface NodeData { readonly outputHeight?: OutputHeight; readonly nodeWidth?: number; readonly invalid?: boolean; - readonly iteratorSize?: Readonly; readonly minWidth?: number; readonly minHeight?: number; } @@ -422,7 +420,6 @@ export interface BackendJsonNode { schemaId: SchemaId; inputs: BackendJsonInput[]; nodeType: string; - parent: string | null; } export interface WindowSize { diff --git a/src/common/migrations.ts b/src/common/migrations.ts index 669b0a9b8..29ffcf272 100644 --- a/src/common/migrations.ts +++ b/src/common/migrations.ts @@ -143,6 +143,8 @@ const addBlendNode: ModernMigration = (data) => { }; if (node.parentNode !== undefined) { newBlendNode.parentNode = node.parentNode; + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore newBlendNode.data.parentNode = node.parentNode; } data.nodes.push(newBlendNode); @@ -217,6 +219,8 @@ const addOpacityNode: ModernMigration = (data) => { }; if (node.parentNode !== undefined) { newNode.parentNode = node.parentNode; + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore newNode.data.parentNode = node.parentNode; } return [newID, newNode] as const; @@ -353,6 +357,8 @@ const onnxConvertUpdate: ModernMigration = (data) => { }; if (node.parentNode !== undefined) { newNode.parentNode = node.parentNode; + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore newNode.data.parentNode = node.parentNode; } @@ -1665,7 +1671,11 @@ const oldToNewIterators: ModernMigration = (data) => { if (newNode.parentNode) { delete newNode.parentNode; } + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore if (newNode.data.parentNode) { + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore delete newNode.data.parentNode; } return newNode; diff --git a/src/common/nodes/disabled.ts b/src/common/nodes/disabled.ts index 82a6ee4c5..4e605bef8 100644 --- a/src/common/nodes/disabled.ts +++ b/src/common/nodes/disabled.ts @@ -15,9 +15,6 @@ export const getDisabledStatus = ( if (data.isDisabled) { return DisabledStatus.DirectlyDisabled; } - if (data.parentNode && effectivelyDisabledNodes.has(data.parentNode)) { - return DisabledStatus.ParentDisabled; - } if (effectivelyDisabledNodes.has(data.id)) { return DisabledStatus.InputDisabled; } @@ -49,10 +46,6 @@ export const getEffectivelyDisabledNodes = ( return true; } - const parent = byId.get(n.data.parentNode!); - // eslint-disable-next-line @typescript-eslint/no-use-before-define - if (parent && isEffectivelyDisabled(parent)) return true; - const incoming = incomingMap.get(n) ?? []; // eslint-disable-next-line @typescript-eslint/no-use-before-define return incoming.some(isEffectivelyDisabled); diff --git a/src/common/nodes/toBackendJson.ts b/src/common/nodes/toBackendJson.ts index 6f3da991b..a554f0920 100644 --- a/src/common/nodes/toBackendJson.ts +++ b/src/common/nodes/toBackendJson.ts @@ -75,7 +75,6 @@ export const toBackendJson = ( } ), nodeType, - parent: element.parentNode ?? null, }); }); diff --git a/src/main/cli/run.ts b/src/main/cli/run.ts index 741453926..5d91bbd4b 100644 --- a/src/main/cli/run.ts +++ b/src/main/cli/run.ts @@ -250,25 +250,16 @@ export const runChainInCli = async (args: RunArguments) => { ensureStaticCorrectness({ nodes, edges }, schemata, functionDefinitions); // progress - const freeNodes = new Set(nodes.filter((n) => !n.parentNode).map((n) => n.id)); - const lastIteratorPercentage = new Map(); - addEventListener(eventSource, 'iterator-progress-update', ({ iteratorId, percent }) => { - const node = nodesById.get(iteratorId); - if (node && percent < 1 && lastIteratorPercentage.get(iteratorId) !== percent) { - lastIteratorPercentage.set(iteratorId, percent); - const schema = schemata.get(node.data.schemaId); - log.info(`${schema.name} at ${(percent * 100).toFixed(1)}%`); - } - }); + const nodeIds = new Set(nodes.map((n) => n.id)); const finishedFreeNodes = new Set(); addEventListener(eventSource, 'node-finish', ({ nodeId }) => { let didAdd = false; - if (freeNodes.has(nodeId) && !finishedFreeNodes.has(nodeId)) { + if (nodeIds.has(nodeId) && !finishedFreeNodes.has(nodeId)) { finishedFreeNodes.add(nodeId); didAdd = true; } if (didAdd) { - log.info(`Executed ${finishedFreeNodes.size}/${freeNodes.size} nodes`); + log.info(`Executed ${finishedFreeNodes.size}/${nodeIds.size} nodes`); } }); diff --git a/src/renderer/components/CustomEdge/CustomEdge.tsx b/src/renderer/components/CustomEdge/CustomEdge.tsx index 27985ca3a..9b9a02ca2 100644 --- a/src/renderer/components/CustomEdge/CustomEdge.tsx +++ b/src/renderer/components/CustomEdge/CustomEdge.tsx @@ -57,17 +57,17 @@ export const CustomEdge = memo( ); const { getNode } = useReactFlow(); - const parentNode = useMemo(() => getNode(source)!, [source, getNode]); + const edgeParentNode = useMemo(() => getNode(source)!, [source, getNode]); const isSourceEnabled = !effectivelyDisabledNodes.has(source); - const { removeEdgeById, setHoveredNode } = useContext(GlobalContext); + const { removeEdgeById } = useContext(GlobalContext); const { functionDefinitions } = useContext(BackendContext); const [isHovered, setIsHovered] = useState(false); const { outputId } = useMemo(() => parseSourceHandle(sourceHandleId!), [sourceHandleId]); const definitionType = - functionDefinitions.get(parentNode.data.schemaId)?.outputDefaults.get(outputId) ?? + functionDefinitions.get(edgeParentNode.data.schemaId)?.outputDefaults.get(outputId) ?? NeverType.instance; const type = useContextSelector(GlobalVolatileContext, (c) => c.typeState.functions.get(source)?.outputs.get(outputId) @@ -125,7 +125,6 @@ export const CustomEdge = memo( }} onContextMenu={menu.onContextMenu} onDoubleClick={() => removeEdgeById(id)} - onDragEnter={() => setHoveredNode(parentNode.parentNode)} onMouseEnter={() => setIsHovered(true)} onMouseLeave={() => setIsHovered(false)} onMouseOver={() => hoverTimeout()} diff --git a/src/renderer/components/NodeDocumentation/NodeExample.tsx b/src/renderer/components/NodeDocumentation/NodeExample.tsx index c016f90f3..67a6f258f 100644 --- a/src/renderer/components/NodeDocumentation/NodeExample.tsx +++ b/src/renderer/components/NodeDocumentation/NodeExample.tsx @@ -168,7 +168,6 @@ export const NodeExample = memo(({ accentColor, selectedSchema }: NodeExamplePro disabledStatus={DisabledStatus.Enabled} icon={selectedSchema.icon} name={selectedSchema.name} - parentNode={undefined} selected={false} /> { - const { reactFlowWrapper, setHoveredNode, createNode } = useContext(GlobalContext); + const { reactFlowWrapper, createNode } = useContext(GlobalContext); const { featureStates } = useContext(BackendContext); const reactFlowInstance = useReactFlow(); const { openNodeDocumentation } = useContext(NodeDocumentationContext); @@ -178,13 +178,9 @@ export const RepresentativeNodeWrapper = memo( setDidSingleClick(false); createNodeFromSelector(); }} - onDragEnd={() => { - setHoveredNode(undefined); - }} onDragStart={(event) => { setDidSingleClick(false); onDragStart(event, node); - setHoveredNode(undefined); }} > { const chain = SaveFile.parse(JSON.stringify(json)); // move the whole chain to origin - const freeNodes = chain.nodes.filter((n) => !n.parentNode); - const minX = Math.min(...freeNodes.map((node) => node.position.x)); - const minY = Math.min(...freeNodes.map((node) => node.position.y)); - for (const n of freeNodes) { + const chainNodes = chain.nodes; + const minX = Math.min(...chainNodes.map((node) => node.position.x)); + const minY = Math.min(...chainNodes.map((node) => node.position.y)); + for (const n of chainNodes) { n.position.x -= minX; n.position.y -= minY; } diff --git a/src/renderer/components/ReactFlowBox.tsx b/src/renderer/components/ReactFlowBox.tsx index e5696f3be..625515b83 100644 --- a/src/renderer/components/ReactFlowBox.tsx +++ b/src/renderer/components/ReactFlowBox.tsx @@ -8,7 +8,6 @@ import ReactFlow, { BackgroundVariant, ControlButton, Controls, - CoordinateExtent, Edge, EdgeTypes, Node, @@ -42,128 +41,13 @@ import { GlobalContext, GlobalVolatileContext } from '../contexts/GlobalNodeStat import { SettingsContext } from '../contexts/SettingsContext'; import { DataTransferProcessorOptions, dataTransferProcessors } from '../helpers/dataTransfer'; import { AABB, Point, getBezierPathValues, pointDist } from '../helpers/graphUtils'; -import { expandSelection, isSnappedToGrid, snapToGrid } from '../helpers/reactFlowUtil'; +import { isSnappedToGrid, snapToGrid } from '../helpers/reactFlowUtil'; import { useMemoArray } from '../hooks/useMemo'; import { useNodesMenu } from '../hooks/useNodesMenu'; import { usePaneNodeSearchMenu } from '../hooks/usePaneNodeSearchMenu'; const compareById = (a: Edge | Node, b: Edge | Node) => a.id.localeCompare(b.id); -const STARTING_Z_INDEX = 50; -/** - * We want the nodes and edges to form the following layers: - * - * - Iterator node 1 - * - Nodes inside iterator 1 - * - Iterator node 2 - * - Nodes inside iterator 2 - * - ... - * - Related iterator node 1 - * - Related nodes inside iterator 1 - * - Related iterator node 2 - * - Related nodes inside iterator 2 - * - ... - * - Free nodes - * - Selected nodes - * - Same relative order as not-selected nodes - * - * Note that child nodes of selected iterator nodes are implicitly selected as well. - * - * Related iterator nodes are the parent nodes of a currently selected child node. - * Related nodes inside iterators are the sibling nodes of a currently selected child node. - * - * The zIndex of an edge will be `max(source, target) - 1`. Note that `-1` doesn't mean - * "the layer below", but "in between this layer and the below layer". - * The only exception is when the edge is selected but neither its not its target are selected. - * In this case, the edge will to be in the highest selected layer. - */ -const updateZIndexes = ( - nodes: readonly Node[], - edges: readonly Edge[] -): void => { - const selectedIterators = new Set(); - const relatedIterators = new Set(); - /** Maps each iterator id to the relative position of the iterator in the node array */ - const iteratorIndexMap = new Map(); - const byId = new Map>(); - - // go through all nodes to collect some information - for (const n of nodes) { - byId.set(n.id, n); - - if (n.type === 'iterator') { - iteratorIndexMap.set(n.id, iteratorIndexMap.size); - if (n.selected) { - selectedIterators.add(n.id); - relatedIterators.delete(n.id); - } - } else if (n.parentNode) { - if (n.selected && !selectedIterators.has(n.parentNode)) { - relatedIterators.add(n.parentNode); - } - } - } - - const getIteratorZIndex = (id: string): number => { - const iterIndex = iteratorIndexMap.get(id) ?? 0; - return STARTING_Z_INDEX + iterIndex * 4; - }; - - const iteratorsRange = iteratorIndexMap.size * 4; - - const FREE_NODES_INDEX = STARTING_Z_INDEX + iteratorsRange * 2; - const RELATED_ADD = iteratorsRange; - const SELECTED_ADD = iteratorsRange * 2 + 20; - const MIN_SELECTED_INDEX = STARTING_Z_INDEX + SELECTED_ADD; - - // set the zIndex of all nodes - for (const n of nodes) { - if (n.type === 'iterator') { - // Iterator - - let zIndex = getIteratorZIndex(n.id); - if (n.selected) { - zIndex += SELECTED_ADD; - } else if (relatedIterators.has(n.id)) { - zIndex += RELATED_ADD; - } - n.zIndex = zIndex; - } else if (n.parentNode) { - // Iterator child node - - let zIndex = getIteratorZIndex(n.parentNode) + 2; - if (n.selected || selectedIterators.has(n.parentNode)) { - zIndex += SELECTED_ADD; - } else if (relatedIterators.has(n.parentNode)) { - zIndex += RELATED_ADD; - } - n.zIndex = zIndex; - } else { - // Free node - - let zIndex = FREE_NODES_INDEX; - if (n.selected) { - zIndex += SELECTED_ADD; - } - n.zIndex = zIndex; - } - } - - // set the zIndex of all edges - for (const e of edges) { - let zIndex = Math.max( - byId.get(e.source)?.zIndex ?? STARTING_Z_INDEX, - byId.get(e.target)?.zIndex ?? STARTING_Z_INDEX - ); - - if (e.selected && zIndex < MIN_SELECTED_INDEX) { - zIndex += SELECTED_ADD; - } - - e.zIndex = zIndex - 1; - } -}; - interface ReactFlowBoxProps { nodeTypes: NodeTypes; edgeTypes: EdgeTypes; @@ -174,7 +58,6 @@ export const ReactFlowBox = memo(({ wrapperRef, nodeTypes, edgeTypes }: ReactFlo const { closeContextMenu } = useContext(ContextMenuContext); const { setZoom, - setHoveredNode, setCollidingEdge, setCollidingNode, addNodeChanges, @@ -225,8 +108,6 @@ export const ReactFlowBox = memo(({ wrapperRef, nodeTypes, edgeTypes }: ReactFlo const displayNodes = nodes.map>((n) => ({ ...n })).sort(compareById); const displayEdges = edges.map>((e) => ({ ...e })).sort(compareById); - updateZIndexes(displayNodes, displayEdges); - if (isSnapToGrid) { for (const n of displayNodes) { if (!isSnappedToGrid(n.position, snapToGridAmount)) { @@ -405,7 +286,7 @@ export const ReactFlowBox = memo(({ wrapperRef, nodeTypes, edgeTypes }: ReactFlo }, [altPressed, setCollidingEdge, setCollidingNode]); const onNodeDragStop = useCallback( - (event: React.MouseEvent, node: Node | null, draggedNodes: Node[]) => { + (event: React.MouseEvent, node: Node | null) => { if (node && altPressed) { const mousePosition = { // React flow's type for the event is incorrect. This value exists. @@ -422,90 +303,24 @@ export const ReactFlowBox = memo(({ wrapperRef, nodeTypes, edgeTypes }: ReactFlo setCollidingNode(undefined); } } - const newNodes: Node[] = []; - const edgesToRemove: Edge[] = []; - const allIterators = nodes.filter((n) => n.type === 'iterator'); - const draggedNodeIds = draggedNodes.map((n) => n.id); - draggedNodes.forEach((node) => { - if (!node.parentNode && node.type === 'regularNode') { - const iterInBounds = allIterators.find( - (iterator) => - iterator.position.x + (iterator.data.iteratorSize?.offsetLeft ?? 0) < - node.position.x && - iterator.position.y + (iterator.data.iteratorSize?.offsetTop ?? 0) < - node.position.y && - iterator.position.x + (iterator.width ?? 0) > - node.position.x + (node.width ?? 0) && - iterator.position.y + (iterator.height ?? 0) > - node.position.y + (node.height ?? 0) - ); - if (iterInBounds) { - const { - offsetTop = 0, - offsetLeft = 0, - width = 0, - height = 0, - } = iterInBounds.data.iteratorSize ?? {}; - const wBound = width - (node.width ?? 0) + offsetLeft; - const hBound = height - (node.height ?? 0) + offsetTop; - const newNode = { - ...node, - data: { ...node.data, parentNode: iterInBounds.id }, - parentNode: iterInBounds.id, - extent: [ - [offsetLeft, offsetTop], - [wBound, hBound], - ] as CoordinateExtent, - position: { - x: node.position.x - iterInBounds.position.x, - y: node.position.y - iterInBounds.position.y, - }, - }; - - edgesToRemove.push( - ...edges.filter((e) => { - if (e.source === node.id) { - const target = nodes.find((n) => n.id === e.target); - if (target && !draggedNodeIds.includes(target.id)) { - return target.parentNode !== iterInBounds.id; - } - } - return false; - }) - ); - - newNodes.push(newNode); - } - } - }); - if (newNodes.length > 0) { - changeNodes((oldNodes) => [ - ...oldNodes.filter((n) => !newNodes.map((n) => n.id).includes(n.id)), - ...newNodes, - ]); - changeEdges((oldEdges) => oldEdges.filter((e) => !edgesToRemove.includes(e))); - } addNodeChanges(); addEdgeChanges(); }, [ altPressed, - nodes, addNodeChanges, addEdgeChanges, performNodeOnEdgeCollisionDetection, setCollidingEdge, setCollidingNode, - edges, - changeNodes, - changeEdges, ] ); const onSelectionDragStop = useCallback( + // eslint-disable-next-line @typescript-eslint/no-unused-vars (event: React.MouseEvent, nNodes: Node[]) => { - onNodeDragStop(event, null, nNodes); + onNodeDragStop(event, null); }, [onNodeDragStop] ); @@ -513,10 +328,7 @@ export const ReactFlowBox = memo(({ wrapperRef, nodeTypes, edgeTypes }: ReactFlo const onNodesDelete = useCallback( (toDelete: readonly Node[]) => { changeNodes((nodes) => { - const ids = expandSelection( - nodes, - toDelete.map((n) => n.id) - ); + const ids = new Set(toDelete.map((n) => n.id)); return nodes.filter((n) => !ids.has(n.id)); }); }, @@ -542,10 +354,6 @@ export const ReactFlowBox = memo(({ wrapperRef, nodeTypes, edgeTypes }: ReactFlo event.dataTransfer.dropEffect = 'move'; }, []); - const onDragStart = useCallback(() => { - setHoveredNode(undefined); - }, [setHoveredNode]); - const wrapper = wrapperRef.current; const onDrop = useCallback( (event: DragEvent) => { @@ -627,13 +435,13 @@ export const ReactFlowBox = memo(({ wrapperRef, nodeTypes, edgeTypes }: ReactFlo w="100%" > { - const nodeState = useNodeStateFromData(data); - const { schema } = nodeState; - - const effectivelyDisabledNodes = useContextSelector( - GlobalVolatileContext, - (c) => c.effectivelyDisabledNodes - ); - const { updateIteratorBounds, setHoveredNode } = useContext(GlobalContext); - const { categories } = useContext(BackendContext); - - const { id, inputData, parentNode } = data; - const animated = useContextSelector(GlobalVolatileContext, (c) => c.isAnimated(id)); - - const regularBorderColor = 'var(--node-border-color)'; - const accentColor = getCategoryAccentColor(categories, schema.category); - const borderColor = useMemo( - () => (selected ? shadeColor(accentColor, 0) : regularBorderColor), - [selected, accentColor, regularBorderColor] - ); - - const { validity } = useValidity(id, schema, inputData); - - const disabledStatus = useMemo( - () => getDisabledStatus(data, effectivelyDisabledNodes), - [data, effectivelyDisabledNodes] - ); - - const targetRef = useRef(null); - const [checkedSize, setCheckedSize] = useState(false); - - useLayoutEffect(() => { - if (targetRef.current && parentNode) { - updateIteratorBounds(parentNode, null, { - width: targetRef.current.offsetWidth, - height: targetRef.current.offsetHeight, - }); - setCheckedSize(true); - } - }, [checkedSize, updateIteratorBounds, parentNode]); - - const disabled = useDisabled(data); - - return ( -
{}} - onContextMenu={() => {}} - onDragEnter={() => { - if (parentNode) { - setHoveredNode(parentNode); - } - }} - > - - - - - - - -
- ); -}); diff --git a/src/renderer/components/node/IteratorNode.tsx b/src/renderer/components/node/IteratorNode.tsx deleted file mode 100644 index c08ad15d3..000000000 --- a/src/renderer/components/node/IteratorNode.tsx +++ /dev/null @@ -1,144 +0,0 @@ -import { Box, Center, Text, VStack } from '@chakra-ui/react'; -import { memo, useMemo, useRef } from 'react'; -import { useContext, useContextSelector } from 'use-context-selector'; -import { NodeData } from '../../../common/common-types'; -import { DisabledStatus } from '../../../common/nodes/disabled'; -import { BackendContext } from '../../contexts/BackendContext'; -import { ExecutionContext } from '../../contexts/ExecutionContext'; -import { GlobalVolatileContext } from '../../contexts/GlobalNodeState'; -import { getCategoryAccentColor } from '../../helpers/accentColors'; -import { shadeColor } from '../../helpers/colorTools'; -import { useNodeStateFromData } from '../../helpers/nodeState'; -import { useDisabled } from '../../hooks/useDisabled'; -import { useNodeMenu } from '../../hooks/useNodeMenu'; -import { useValidity } from '../../hooks/useValidity'; -import { IteratorNodeBody } from './IteratorNodeBody'; -import { IteratorNodeHeader } from './IteratorNodeHeader'; -import { NodeFooter } from './NodeFooter/NodeFooter'; -import { NodeInputs } from './NodeInputs'; -import { NodeOutputs } from './NodeOutputs'; - -interface IteratorNodeProps { - data: NodeData; - selected: boolean; -} - -export const IteratorNode = memo(({ data, selected }: IteratorNodeProps) => ( - // eslint-disable-next-line @typescript-eslint/no-use-before-define - -)); - -const IteratorNodeInner = memo(({ data, selected }: IteratorNodeProps) => { - const nodeState = useNodeStateFromData(data); - const { schema } = nodeState; - - const { categories } = useContext(BackendContext); - const { getIteratorProgress } = useContext(ExecutionContext); - - const { id, inputData, iteratorSize, minWidth, minHeight } = data; - - const iteratorProgress = getIteratorProgress(id); - - const animated = useContextSelector(GlobalVolatileContext, (c) => c.isAnimated(id)); - - // We get inputs and outputs this way in case something changes with them in the future - // This way, we have to do less in the migration file - const { inputs, outputs } = schema; - - const regularBorderColor = 'var(--node-border-color)'; - const accentColor = getCategoryAccentColor(categories, schema.category); - const borderColor = useMemo( - () => (selected ? shadeColor(accentColor, 0) : regularBorderColor), - [selected, accentColor, regularBorderColor] - ); - - const { validity } = useValidity(id, schema, inputData); - - const iteratorBoxRef = useRef(null); - - const disabled = useDisabled(data); - const menu = useNodeMenu(data, disabled, { canLock: false }); - - return ( -
- - - - {inputs.length > 0 && } - - - -
- - ITERATION - -
-
- -
- {outputs.length > 0 && } - - - -
- -
-
- ); -}); diff --git a/src/renderer/components/node/IteratorNodeBody.tsx b/src/renderer/components/node/IteratorNodeBody.tsx deleted file mode 100644 index 3882b3da6..000000000 --- a/src/renderer/components/node/IteratorNodeBody.tsx +++ /dev/null @@ -1,196 +0,0 @@ -import { Box, Center } from '@chakra-ui/react'; -import { Resizable } from 're-resizable'; -import { memo, useLayoutEffect, useState } from 'react'; -import { useContext, useContextSelector } from 'use-context-selector'; -import { IteratorSize } from '../../../common/common-types'; -import { GlobalContext, GlobalVolatileContext } from '../../contexts/GlobalNodeState'; -import { SettingsContext } from '../../contexts/SettingsContext'; -import { useMemoArray } from '../../hooks/useMemo'; -import { usePaneNodeSearchMenu } from '../../hooks/usePaneNodeSearchMenu'; -import { DragHandleSVG } from '../CustomIcons'; - -const createGridDotsPath = (size: number, fill: string) => ( - -); - -const DotPattern = memo(({ id }: { id: string }) => { - const gap = 15; - const size = 0.5; - const scaledGap = gap * 1; - const path = createGridDotsPath(size, '#81818a'); - const patternId = `pattern-${id}`; - - return ( - - - {path} - - - - ); -}); - -interface IteratorNodeBodyProps { - id: string; - iteratorSize?: IteratorSize; - accentColor: string; - minWidth?: number; - minHeight?: number; -} - -export const IteratorNodeBody = memo( - ({ id, iteratorSize, accentColor, minWidth = 256, minHeight = 256 }: IteratorNodeBodyProps) => { - const zoom = useContextSelector(GlobalVolatileContext, (c) => c.zoom); - const hoveredNode = useContextSelector(GlobalVolatileContext, (c) => c.hoveredNode); - const { - defaultIteratorSize, - setIteratorSize, - setHoveredNode, - updateIteratorBounds, - reactFlowWrapper, - } = useContext(GlobalContext); - - const { useSnapToGrid } = useContext(SettingsContext); - const [isSnapToGrid, , snapToGridAmount] = useSnapToGrid; - - const { width, height } = iteratorSize ?? defaultIteratorSize; - - const [resizeRef, setResizeRef] = useState(null); - - useLayoutEffect(() => { - if (resizeRef && resizeRef.resizable) { - const { resizable } = resizeRef; - const size = { - offsetTop: resizable.offsetTop, - offsetLeft: resizable.offsetLeft, - width, - height, - }; - setIteratorSize(id, size); - updateIteratorBounds(id, size); - } - }, [ - resizeRef, - resizeRef?.resizable, - setIteratorSize, - updateIteratorBounds, - height, - width, - id, - ]); - - const shade = 'var(--chain-editor-bg)'; - - const { onPaneContextMenu } = usePaneNodeSearchMenu(reactFlowWrapper, id); - - return ( - ( - isSnapToGrid ? [snapToGridAmount, snapToGridAmount] : [1, 1] - )} - handleComponent={{ - bottomRight: ( -
- -
- ), - }} - minHeight={minHeight} - minWidth={minWidth} - ref={(r) => { - setResizeRef(r); - }} - scale={zoom} - style={{ - margin: 8, - marginBottom: 0, - marginTop: 0, - }} - onResizeStop={(e, direction, ref, d) => { - const size = { - offsetTop: ref.offsetTop, - offsetLeft: ref.offsetLeft, - width: (width < minWidth ? minWidth : width) + d.width, - height: (height < minHeight ? minHeight : height) + d.height, - }; - setIteratorSize(id, size); - updateIteratorBounds(id, size); - }} - > - { - setHoveredNode(id); - }} - onDragLeave={() => { - setHoveredNode(undefined); - }} - > - - - - -
- ); - } -); diff --git a/src/renderer/components/node/IteratorNodeHeader.tsx b/src/renderer/components/node/IteratorNodeHeader.tsx deleted file mode 100644 index d0546b806..000000000 --- a/src/renderer/components/node/IteratorNodeHeader.tsx +++ /dev/null @@ -1,138 +0,0 @@ -import { Box, Center, HStack, Heading, LayoutProps, Text, VStack } from '@chakra-ui/react'; -import { memo } from 'react'; -import ReactTimeAgo from 'react-time-ago'; -import { DisabledStatus } from '../../../common/nodes/disabled'; -import { IteratorProgress } from '../../contexts/ExecutionContext'; -import { IconFactory } from '../CustomIcons'; - -interface IteratorNodeHeaderProps { - name: string; - icon: string; - accentColor: string; - selected: boolean; - iteratorProgress?: IteratorProgress; - width?: LayoutProps['width']; - disabledStatus: DisabledStatus; -} - -export const IteratorNodeHeader = memo( - ({ - name, - width, - icon, - accentColor, - selected, - iteratorProgress, - disabledStatus, - }: IteratorNodeHeaderProps) => { - const { percent, eta, index, total } = iteratorProgress ?? {}; - const etaDate = new Date(); - etaDate.setSeconds(etaDate.getSeconds() + (eta ?? 0)); - - return ( - -
- -
- -
-
- - {name} - -
-
-
- {percent !== undefined && ( - -
- - {`${Number(index)}/${Number(total)} (${Number( - percent * 100 - ).toFixed(1)}%)`} - - ETA:{' '} - {percent === 1 ? ( - 'Finished' - ) : ( - - )} - - -
- - - - - )} -
- ); - } -); diff --git a/src/renderer/components/node/Node.tsx b/src/renderer/components/node/Node.tsx index 1bbefecd4..b99de3fbc 100644 --- a/src/renderer/components/node/Node.tsx +++ b/src/renderer/components/node/Node.tsx @@ -1,6 +1,6 @@ import { Center, VStack } from '@chakra-ui/react'; import path from 'path'; -import { DragEvent, memo, useLayoutEffect, useMemo, useRef, useState } from 'react'; +import { DragEvent, memo, useMemo, useRef } from 'react'; import { useReactFlow } from 'reactflow'; import { useContext, useContextSelector } from 'use-context-selector'; import { Input, NodeData } from '../../../common/common-types'; @@ -14,7 +14,7 @@ import { import { AlertBoxContext } from '../../contexts/AlertBoxContext'; import { BackendContext } from '../../contexts/BackendContext'; import { ExecutionContext } from '../../contexts/ExecutionContext'; -import { GlobalContext, GlobalVolatileContext } from '../../contexts/GlobalNodeState'; +import { GlobalVolatileContext } from '../../contexts/GlobalNodeState'; import { getCategoryAccentColor, getTypeAccentColors } from '../../helpers/accentColors'; import { shadeColor } from '../../helpers/colorTools'; import { getSingleFileWithExtension } from '../../helpers/dataTransfer'; @@ -62,11 +62,10 @@ const NodeInner = memo(({ data, selected }: NodeProps) => { const { schema, setInputValue } = nodeState; const { sendToast } = useContext(AlertBoxContext); - const { updateIteratorBounds, setHoveredNode } = useContext(GlobalContext); const { categories } = useContext(BackendContext); const { getNodeProgress } = useContext(ExecutionContext); - const { id, inputData, parentNode } = data; + const { id, inputData } = data; const nodeProgress = getNodeProgress(id); const animated = useContextSelector(GlobalVolatileContext, (c) => c.isAnimated(id)); @@ -87,7 +86,6 @@ const NodeInner = memo(({ data, selected }: NodeProps) => { ); const targetRef = useRef(null); - const [checkedSize, setCheckedSize] = useState(false); const collidingAccentColor = useContextSelector( GlobalVolatileContext, @@ -107,16 +105,6 @@ const NodeInner = memo(({ data, selected }: NodeProps) => { } ); - useLayoutEffect(() => { - if (targetRef.current && parentNode) { - updateIteratorBounds(parentNode, null, { - width: targetRef.current.offsetWidth, - height: targetRef.current.offsetHeight, - }); - setCheckedSize(true); - } - }, [checkedSize, targetRef.current?.offsetHeight, updateIteratorBounds, parentNode]); - const fileInput = useMemo(() => getSingleFileInput(inputs), [inputs]); const onDragOver = (event: DragEvent) => { @@ -194,11 +182,6 @@ const NodeInner = memo(({ data, selected }: NodeProps) => { ref={targetRef} transition="0.15s ease-in-out" onContextMenu={menu.onContextMenu} - onDragEnter={() => { - if (parentNode) { - setHoveredNode(parentNode); - } - }} onDragOver={onDragOver} onDrop={onDrop} > @@ -217,7 +200,6 @@ const NodeInner = memo(({ data, selected }: NodeProps) => { icon={schema.icon} name={schema.name} nodeProgress={nodeProgress} - parentNode={parentNode} selected={selected} /> { @@ -46,8 +44,7 @@ export const NodeHeader = memo(
o.id === output.id); // TODO: This is a bit of hardcoding, but it works - createNode( - { - id: nodeId, - position: { - x: - containingNode.position.x + - (containingNode.width ?? 0) + - 75 + - outputIndex * 20, - y: containingNode.position.y + outputIndex * 30, - }, - data: { - schemaId: VIEW_SCHEMA_ID, - }, - nodeType: 'regularNode', + createNode({ + id: nodeId, + position: { + x: + containingNode.position.x + + (containingNode.width ?? 0) + + 75 + + outputIndex * 20, + y: containingNode.position.y + outputIndex * 30, }, - containingNode.parentNode - ); + data: { + schemaId: VIEW_SCHEMA_ID, + }, + nodeType: 'regularNode', + }); createEdge( { nodeId: id, outputId: output.id }, { nodeId, inputId: 0 as InputId } diff --git a/src/renderer/contexts/ExecutionContext.tsx b/src/renderer/contexts/ExecutionContext.tsx index e6d298f5d..67dfb34cd 100644 --- a/src/renderer/contexts/ExecutionContext.tsx +++ b/src/renderer/contexts/ExecutionContext.tsx @@ -222,29 +222,6 @@ export const ExecutionProvider = memo(({ children }: React.PropsWithChildren<{}> ); useBackendEventSourceListener(eventSource, 'node-start', updateNodeStart); - const updateIteratorProgress = useThrottledCallback< - BackendEventSourceListener<'iterator-progress-update'> - >( - useCallback( - (data) => { - if (data) { - const { percent, index, total, eta, iteratorId, running: runningNodes } = data; - - if (runningNodes && status === ExecutionStatus.RUNNING) { - animate(runningNodes); - } else if (status !== ExecutionStatus.RUNNING) { - unAnimate(); - } - setIteratorProgressImpl(iteratorId, { percent, eta, index, total }); - } - }, - [animate, setIteratorProgressImpl, status, unAnimate] - ), - 100, - { trailing: true } - ); - useBackendEventSourceListener(eventSource, 'iterator-progress-update', updateIteratorProgress); - const updateNodeProgress = useThrottledCallback< BackendEventSourceListener<'node-progress-update'> >( diff --git a/src/renderer/contexts/GlobalNodeState.tsx b/src/renderer/contexts/GlobalNodeState.tsx index c22c4ef66..380cc0f07 100644 --- a/src/renderer/contexts/GlobalNodeState.tsx +++ b/src/renderer/contexts/GlobalNodeState.tsx @@ -18,7 +18,6 @@ import { InputId, InputKind, InputValue, - IteratorSize, Mutable, NodeData, OutputId, @@ -41,7 +40,6 @@ import { ParsedSourceHandle, ParsedTargetHandle, createUniqueId, - deepCopy, deriveUniqueId, lazy, parseSourceHandle, @@ -71,10 +69,8 @@ import { copyNodes, createNode as createNodeImpl, defaultIteratorSize, - expandSelection, setSelected, withNewData, - withNewDataMap, } from '../helpers/reactFlowUtil'; import { GetSetState, SetState } from '../helpers/types'; import { useAsyncEffect } from '../hooks/useAsyncEffect'; @@ -109,7 +105,6 @@ interface GlobalVolatile { isValidConnection: (connection: Readonly) => Validity; effectivelyDisabledNodes: ReadonlySet; zoom: number; - hoveredNode: string | undefined; collidingEdge: string | undefined; collidingNode: string | undefined; isAnimated: (nodeId: string) => boolean; @@ -129,7 +124,7 @@ interface Global { selectNode: (nodeId: string) => void; animate: (nodeIdsToAnimate: Iterable, animateEdges?: boolean) => void; unAnimate: (nodeIdsToAnimate?: Iterable) => void; - createNode: (proto: NodeProto, parentId?: string) => void; + createNode: (proto: NodeProto) => void; createEdge: (from: ParsedSourceHandle, to: ParsedTargetHandle) => void; createConnection: (connection: Connection) => void; setNodeInputValue: (nodeId: string, inputId: InputId, value: T) => void; @@ -141,14 +136,7 @@ interface Global { duplicateNodes: (nodeIds: readonly string[], withInputEdges?: boolean) => void; toggleNodeLock: (id: string) => void; clearNodes: (ids: readonly string[]) => void; - setIteratorSize: (id: string, size: IteratorSize) => void; - updateIteratorBounds: ( - id: string, - iteratorSize: IteratorSize | null, - dimensions?: Size - ) => void; setNodeDisabled: (id: string, isDisabled: boolean) => void; - setHoveredNode: (value: string | undefined) => void; setCollidingEdge: (value: string | undefined) => void; setCollidingNode: (value: string | undefined) => void; setZoom: SetState; @@ -156,7 +144,6 @@ interface Global { exportViewportScreenshotToClipboard: () => void; setManualOutputType: (nodeId: string, outputId: OutputId, type: Expression | undefined) => void; typeStateRef: Readonly>; - releaseNodeFromParent: (id: string) => void; outputDataActions: OutputDataActions; getInputHash: (nodeId: string) => string; hasRelevantUnsavedChangesRef: React.MutableRefObject; @@ -340,14 +327,6 @@ export const GlobalProvider = memo( [setSavePathInternal, pushOpenPath] ); - const hoveredNodeRef = useRef(); - // eslint-disable-next-line react/hook-use-state - const [hoveredNode, setHoveredNodeImpl] = useState(); - const setHoveredNode = useCallback((value: string | undefined) => { - hoveredNodeRef.current = value; - setHoveredNodeImpl(value); - }, []); - const [collidingEdge, setCollidingEdge] = useState(); const [collidingNode, setCollidingNode] = useState(); @@ -748,20 +727,15 @@ export const GlobalProvider = memo( const filteredIds = ids.filter((id) => { const node = getNode(id); - return !(!node || node.type === 'iteratorHelper'); + return !!node; }); - const toRemove = new Set([ - ...filteredIds, - ...getNodes() - .filter((n) => n.parentNode && filteredIds.includes(n.parentNode)) - .map((n) => n.id), - ]); + const toRemove = new Set(filteredIds); changeNodes((nodes) => nodes.filter((n) => !toRemove.has(n.id))); changeEdges((edges) => edges.filter((e) => !toRemove.has(e.source) && !toRemove.has(e.target)) ); }, - [changeNodes, changeEdges, getNode, getNodes] + [changeNodes, changeEdges, getNode] ); const removeEdgeById = useCallback( @@ -786,14 +760,12 @@ export const GlobalProvider = memo( ); const createNode = useCallback( - (proto: NodeProto, parentId?: string): void => { + (proto: NodeProto): void => { changeNodes((nodes) => { - const searchId = parentId ?? hoveredNodeRef.current; - const parent = searchId ? nodes.find((n) => n.id === searchId) : undefined; - const newNodes = createNodeImpl(proto, schemata, parent, true); + const newNode = createNodeImpl(proto, schemata, true); return [ ...nodes.map((n) => (n.selected ? { ...n, selected: false } : n)), - ...newNodes, + newNode, ]; }); }, @@ -823,6 +795,7 @@ export const GlobalProvider = memo( }, [changeEdges] ); + const createEdge = useCallback( (from: ParsedSourceHandle, to: ParsedTargetHandle): void => { createConnection({ @@ -835,40 +808,6 @@ export const GlobalProvider = memo( [createConnection] ); - const releaseNodeFromParent = useCallback( - (id: string) => { - const nodes = getNodes(); - const edges = getEdges(); - const node = nodes.find((n) => n.id === id); - let newNodes = nodes; - if (node && node.parentNode) { - const parentNode = nodes.find((n) => n.id === node.parentNode); - if (parentNode) { - const newNode: Node> = deepCopy(node); - delete newNode.parentNode; - delete newNode.data.parentNode; - delete newNode.extent; - delete newNode.positionAbsolute; - newNode.position = { - x: parentNode.position.x - 100, - y: parentNode.position.y - 100, - }; - newNodes = [...nodes.filter((n) => n.id !== node.id), newNode]; - } - } - changeNodes(newNodes); - const sourceEdges = edges.filter((e) => e.target === id); - const filteredEdges = edges.filter((e) => { - const invalidSources = nodes - .filter((n) => n.parentNode && sourceEdges.some((ed) => ed.source === n.id)) - .map((n) => n.id); - return !invalidSources.includes(e.source); - }); - changeEdges(filteredEdges); - }, - [changeNodes, changeEdges, getNodes, getEdges] - ); - const isValidConnection = useCallback( ({ target, targetHandle, source, sourceHandle }: Readonly): Validity => { if (source === target) { @@ -922,8 +861,8 @@ export const GlobalProvider = memo( const nodes = getNodes(); const edges = getEdges(); - const checkTargetChildren = (parentNode: Node): boolean => { - const targetChildren = getOutgoers(parentNode, nodes, edges); + const checkTargetChildren = (startNode: Node): boolean => { + const targetChildren = getOutgoers(startNode, nodes, edges); if (!targetChildren.length) { return false; } @@ -937,13 +876,6 @@ export const GlobalProvider = memo( const isLoop = checkTargetChildren(targetNode); if (isLoop) return invalid('Connection would create an infinite loop.'); - const iteratorLock = - !sourceNode.parentNode || sourceNode.parentNode === targetNode.parentNode; - - if (!iteratorLock) { - return invalid('Cannot create a connection to/from an iterator in this way.'); - } - if (sourceNode.type === 'newIterator' && targetNode.type === 'newIterator') { return invalid('Cannot connect two iterators.'); } @@ -1190,76 +1122,9 @@ export const GlobalProvider = memo( [connectedInputsMap] ); - const setIteratorSize = useCallback( - (id: string, size: IteratorSize) => { - modifyNode(id, (old) => { - return withNewData(old, 'iteratorSize', size); - }); - }, - [modifyNode] - ); - - // TODO: this can probably be cleaned up but its good enough for now - const updateIteratorBounds = useCallback( - (id: string, iteratorSize: IteratorSize | null, dimensions?: Size) => { - changeNodes((nodes) => { - const nodesToUpdate = nodes.filter((n) => n.parentNode === id); - const iteratorNode = nodes.find((n) => n.id === id); - if (iteratorNode && nodesToUpdate.length > 0) { - const { width, height, offsetTop, offsetLeft } = - iteratorSize === null ? iteratorNode.data.iteratorSize! : iteratorSize; - let minWidth = 256; - let minHeight = 256; - nodesToUpdate.forEach((n) => { - minWidth = Math.max(n.width ?? dimensions?.width ?? minWidth, minWidth); - minHeight = Math.max( - n.height ?? dimensions?.height ?? minHeight, - minHeight - ); - }); - const newNodes = nodesToUpdate.map((n) => { - const wBound = width - (n.width ?? dimensions?.width ?? 0) + offsetLeft; - const hBound = - height - (n.height ?? dimensions?.height ?? 0) + offsetTop; - const newNode: Node = { - ...n, - extent: [ - [offsetLeft, offsetTop], - [wBound, hBound], - ], - position: { - x: Math.min(Math.max(n.position.x, offsetLeft), wBound), - y: Math.min(Math.max(n.position.y, offsetTop), hBound), - }, - }; - return newNode; - }); - - return [ - withNewDataMap(iteratorNode, { - minWidth, - minHeight, - iteratorSize: { - offsetTop, - offsetLeft, - width: Math.max(width, minWidth), - height: Math.max(height, minHeight), - }, - }), - ...nodes.filter((n) => n.parentNode !== id && n.id !== id), - ...newNodes, - ]; - } - - return nodes; - }); - }, - [changeNodes] - ); - const duplicateNodes = useCallback( (ids: readonly string[], withInputEdges = false) => { - const nodesToCopy = expandSelection(getNodes(), ids); + const nodesToCopy = new Set(ids); const duplicationId = createUniqueId(); const deriveId = (oldId: string) => @@ -1268,7 +1133,6 @@ export const GlobalProvider = memo( changeNodes((nodes) => { const newNodes = copyNodes( nodes.filter((n) => nodesToCopy.has(n.id)), - deriveId, deriveId ); const derivedIds = ids.map((id) => deriveId(id)); @@ -1311,7 +1175,7 @@ export const GlobalProvider = memo( return [...setSelected(edges, false), ...newEdge]; }); }, - [getNodes, changeNodes, changeEdges] + [changeNodes, changeEdges] ); const clearNodes = useCallback( @@ -1456,7 +1320,6 @@ export const GlobalProvider = memo( effectivelyDisabledNodes, isValidConnection, zoom, - hoveredNode, collidingEdge, collidingNode, isAnimated: useCallback((nodeId) => animatedNodes.has(nodeId), [animatedNodes]), @@ -1489,9 +1352,6 @@ export const GlobalProvider = memo( removeNodesById, removeEdgeById, duplicateNodes, - updateIteratorBounds, - setIteratorSize, - setHoveredNode, setCollidingEdge, setCollidingNode, setNodeDisabled, @@ -1500,7 +1360,6 @@ export const GlobalProvider = memo( exportViewportScreenshotToClipboard, setManualOutputType, typeStateRef, - releaseNodeFromParent, outputDataActions, getInputHash, hasRelevantUnsavedChangesRef, diff --git a/src/renderer/helpers/copyAndPaste.ts b/src/renderer/helpers/copyAndPaste.ts index 29ceb3402..133048018 100644 --- a/src/renderer/helpers/copyAndPaste.ts +++ b/src/renderer/helpers/copyAndPaste.ts @@ -7,7 +7,7 @@ import { v4 as uuid4 } from 'uuid'; import { EdgeData, InputId, NodeData, SchemaId } from '../../common/common-types'; import { log } from '../../common/log'; import { createUniqueId, deriveUniqueId } from '../../common/util'; -import { NodeProto, copyEdges, copyNodes, expandSelection, setSelected } from './reactFlowUtil'; +import { NodeProto, copyEdges, copyNodes, setSelected } from './reactFlowUtil'; import { SetState } from './types'; interface ClipboardChain { @@ -16,10 +16,7 @@ interface ClipboardChain { } const getCopySelection = (nodes: readonly Node[]): Set => { - return expandSelection( - nodes, - nodes.filter((n) => n.selected).map((n) => n.id) - ); + return new Set(nodes.filter((n) => n.selected).map((n) => n.id)); }; export const copyToClipboard = ( @@ -76,10 +73,10 @@ export const pasteFromClipboard = ( const currentIds = new Set(nodes.map((n) => n.id)); const newIds = new Set(chain.nodes.map((n) => n.id)); - const newNodes = copyNodes(chain.nodes, deriveId, (oldId) => { + const newNodes = copyNodes(chain.nodes, (oldId) => { if (newIds.has(oldId)) return deriveId(oldId); if (currentIds.has(oldId)) return oldId; - return undefined; + return oldId; }); return [...setSelected(nodes, false), ...setSelected(newNodes, true)]; diff --git a/src/renderer/helpers/dataTransfer.ts b/src/renderer/helpers/dataTransfer.ts index c12303595..d112daad2 100644 --- a/src/renderer/helpers/dataTransfer.ts +++ b/src/renderer/helpers/dataTransfer.ts @@ -89,23 +89,18 @@ const chainnerPresetProcessor: DataTransferProcessor = ( let newNodes = copyNodes( chain.nodes, - deriveId, (oldId) => { if (newIds.has(oldId)) return deriveId(oldId); if (currentIds.has(oldId)) return oldId; - return undefined; + return oldId; }, false ); - newNodes = newNodes.map((node) => - node.parentNode - ? node - : { - ...node, - position: getNodePosition(-node.position.x, -node.position.y), - } - ); + newNodes = newNodes.map((node) => ({ + ...node, + position: getNodePosition(-node.position.x, -node.position.y), + })); return [...setSelected(nodes, false), ...setSelected(newNodes, true)]; }); diff --git a/src/renderer/helpers/nodeScreenshot.ts b/src/renderer/helpers/nodeScreenshot.ts index ef7575dbb..b17ad7fbe 100644 --- a/src/renderer/helpers/nodeScreenshot.ts +++ b/src/renderer/helpers/nodeScreenshot.ts @@ -12,14 +12,12 @@ interface Rect { } const getNodesBoundingBox = (nodes: readonly Node[]): Rect | undefined => { - const freeNodes = nodes.filter((n) => !n.parentNode); + if (nodes.length === 0) return undefined; - if (freeNodes.length === 0) return undefined; - - const minX = Math.min(...freeNodes.map((n) => n.position.x)); - const minY = Math.min(...freeNodes.map((n) => n.position.y)); - const maxX = Math.max(...freeNodes.map((n) => n.position.x + (n.width ?? 0))); - const maxY = Math.max(...freeNodes.map((n) => n.position.y + (n.height ?? 0))); + const minX = Math.min(...nodes.map((n) => n.position.x)); + const minY = Math.min(...nodes.map((n) => n.position.y)); + const maxX = Math.max(...nodes.map((n) => n.position.x + (n.width ?? 0))); + const maxY = Math.max(...nodes.map((n) => n.position.y + (n.height ?? 0))); return { x: minX, diff --git a/src/renderer/helpers/nodeSearchFuncs.ts b/src/renderer/helpers/nodeSearchFuncs.ts index 98f11c381..9d0418b5b 100644 --- a/src/renderer/helpers/nodeSearchFuncs.ts +++ b/src/renderer/helpers/nodeSearchFuncs.ts @@ -55,8 +55,6 @@ export const getMatchingNodes = (searchQuery: string, schemata: readonly NodeSch }; export const getNodesByCategory = (matchingNodes: readonly NodeSchema[]) => { - const byCategories: Map = byCategory( - matchingNodes.filter((e) => e.nodeType !== 'iteratorHelper') - ); + const byCategories: Map = byCategory(matchingNodes); return byCategories; }; diff --git a/src/renderer/helpers/reactFlowUtil.ts b/src/renderer/helpers/reactFlowUtil.ts index d6707e68a..e4a907af0 100644 --- a/src/renderer/helpers/reactFlowUtil.ts +++ b/src/renderer/helpers/reactFlowUtil.ts @@ -16,9 +16,8 @@ export interface NodeProto { export const createNode = ( { id = createUniqueId(), position, data, nodeType }: NodeProto, schemata: SchemaMap, - parent?: Node, selected = false -): Node[] => { +): Node => { const newNode: Node> = { type: nodeType, id, @@ -31,46 +30,7 @@ export const createNode = ( selected, }; - if (parent && parent.type === 'iterator' && nodeType !== 'iterator') { - const { width, height, offsetTop, offsetLeft } = parent.data.iteratorSize ?? { - ...defaultIteratorSize, - offsetTop: 0, - offsetLeft: 0, - }; - newNode.position.x = position.x - parent.position.x; - newNode.position.y = position.y - parent.position.y; - newNode.parentNode = parent.id; - newNode.data.parentNode = parent.id; - newNode.extent = [ - [offsetLeft, offsetTop], - [width, height], - ]; - } - - const extraNodes: Node[] = []; - if (nodeType === 'iterator') { - newNode.data.iteratorSize = { ...defaultIteratorSize, offsetTop: 0, offsetLeft: 0 }; - - const { defaultNodes = [] } = schemata.get(data.schemaId); - - defaultNodes?.forEach(({ schemaId }) => { - const schema = schemata.get(schemaId); - const subNode = createNode( - { - nodeType: schema.nodeType, - position: newNode.position, - data: { - schemaId, - }, - }, - schemata, - newNode - ); - extraNodes.push(...subNode); - }); - } - - return [newNode, ...extraNodes]; + return newNode; }; export const snapToGrid = ( @@ -109,49 +69,25 @@ export const setSelected = ( export const copyNodes = ( nodesToCopy: readonly Node[], deriveNodeId: (oldId: string) => string, - deriveParentNodeId: (parentOldId: string) => string | undefined, modifyPositions = true ): Mutable>[] => { const offsetX = 50 * (Math.random() * 2 - 1); const offsetY = 50 * (Math.random() * 2 - 1); return nodesToCopy.map((n) => { const newId = deriveNodeId(n.id); - if (!n.parentNode) { - return { - ...n, - id: newId, - position: { - x: n.position.x + (modifyPositions ? 200 + offsetX : 0), - y: n.position.y + (modifyPositions ? 200 + offsetY : 0), - }, - data: { - ...n.data, - id: newId, - }, - selected: false, - }; - } - - const parentId = deriveParentNodeId(n.parentNode); - const returnData: Mutable> = { + return { ...n, id: newId, position: { - x: n.position.x + (modifyPositions ? offsetX : 0), - y: n.position.y + (modifyPositions ? offsetY : 0), + x: n.position.x + (modifyPositions ? 200 + offsetX : 0), + y: n.position.y + (modifyPositions ? 200 + offsetY : 0), }, data: { ...n.data, id: newId, - parentNode: parentId, }, - parentNode: parentId, selected: false, }; - if (!parentId) { - delete returnData.extent; - } - return returnData; }); }; export const copyEdges = ( @@ -176,24 +112,3 @@ export const copyEdges = ( }; }); }; - -export const expandSelection = ( - nodes: readonly Node[], - initialSelection: Iterable -): Set => { - const selection = new Set(initialSelection); - for (const n of nodes) { - if (selection.has(n.parentNode!)) { - selection.add(n.id); - } - } - - // remove iterator helper without their iterator - for (const n of nodes) { - if (n.type === 'iteratorHelper' && selection.has(n.id) && !selection.has(n.parentNode!)) { - selection.delete(n.id); - } - } - - return selection; -}; diff --git a/src/renderer/hooks/useDisabled.ts b/src/renderer/hooks/useDisabled.ts index b24bac01b..c8f0ef5e2 100644 --- a/src/renderer/hooks/useDisabled.ts +++ b/src/renderer/hooks/useDisabled.ts @@ -25,9 +25,7 @@ export const useDisabled = (data: NodeData): UseDisabled => { const schema = schemata.get(schemaId); return useMemoObject({ - canDisable: - (schema.hasSideEffects || schema.outputs.length > 0) && - schema.nodeType !== 'iteratorHelper', + canDisable: schema.hasSideEffects || schema.outputs.length > 0, isDirectlyDisabled: isDisabled ?? false, status, toggleDirectlyDisabled: useCallback( diff --git a/src/renderer/hooks/useInputHashes.ts b/src/renderer/hooks/useInputHashes.ts index ab16463ff..aa9a3b4a2 100644 --- a/src/renderer/hooks/useInputHashes.ts +++ b/src/renderer/hooks/useInputHashes.ts @@ -45,14 +45,6 @@ const computeInputHashes = ( } } - const parent = byId.get(node.parentNode!); - if (input.kind === 'generic' && !input.hasHandle && parent) { - // Auto inputs of iterator helper nodes depend on the parent iterator - inputs.push(getInputHash(parent)); - // eslint-disable-next-line no-continue - continue; - } - const value = node.data.inputData[input.id]; // eslint-disable-next-line eqeqeq if (value == undefined) { diff --git a/src/renderer/hooks/useInputRefactor.tsx b/src/renderer/hooks/useInputRefactor.tsx index 95215c982..2038dd29d 100644 --- a/src/renderer/hooks/useInputRefactor.tsx +++ b/src/renderer/hooks/useInputRefactor.tsx @@ -72,21 +72,18 @@ export const useInputRefactor = ( inputIndex = schema.inputs.findIndex((i) => i.id === inputId); } - createNode( - { - id: valueNodeId, - position: { - x: (containingNode?.position.x ?? 0) - 300, - y: (containingNode?.position.y ?? 0) - 30 + inputIndex * 50, - }, - data: { - schemaId: valueNodeMap[specificInput.kind], - inputData: { [0 as InputId]: value }, - }, - nodeType: 'regularNode', + createNode({ + id: valueNodeId, + position: { + x: (containingNode?.position.x ?? 0) - 300, + y: (containingNode?.position.y ?? 0) - 30 + inputIndex * 50, }, - containingNode?.parentNode - ); + data: { + schemaId: valueNodeMap[specificInput.kind], + inputData: { [0 as InputId]: value }, + }, + nodeType: 'regularNode', + }); createEdge( { nodeId: valueNodeId, outputId: 0 as OutputId }, { nodeId, inputId } diff --git a/src/renderer/hooks/useNodeMenu.tsx b/src/renderer/hooks/useNodeMenu.tsx index dedfc5b95..7207da429 100644 --- a/src/renderer/hooks/useNodeMenu.tsx +++ b/src/renderer/hooks/useNodeMenu.tsx @@ -7,7 +7,7 @@ import { UnlockIcon, } from '@chakra-ui/icons'; import { MenuDivider, MenuItem, MenuList } from '@chakra-ui/react'; -import { BsFillJournalBookmarkFill, BsLayerForward } from 'react-icons/bs'; +import { BsFillJournalBookmarkFill } from 'react-icons/bs'; import { MdPlayArrow, MdPlayDisabled } from 'react-icons/md'; import { useContext } from 'use-context-selector'; import { NodeData } from '../../common/common-types'; @@ -27,9 +27,9 @@ export const useNodeMenu = ( { canLock = true, reload }: UseNodeMenuOptions = {} ): UseContextMenu => { const { openNodeDocumentation } = useContext(NodeDocumentationContext); - const { id, isLocked = false, parentNode, schemaId } = data; + const { id, isLocked = false, schemaId } = data; - const { removeNodesById, clearNodes, duplicateNodes, toggleNodeLock, releaseNodeFromParent } = + const { removeNodesById, clearNodes, duplicateNodes, toggleNodeLock } = useContext(GlobalContext); const { isDirectlyDisabled, canDisable, toggleDirectlyDisabled } = useDisabled; @@ -88,16 +88,6 @@ export const useNodeMenu = ( > Delete - {parentNode && ( - } - onClick={() => { - releaseNodeFromParent(id); - }} - > - Release - - )} } diff --git a/src/renderer/hooks/usePaneNodeSearchMenu.tsx b/src/renderer/hooks/usePaneNodeSearchMenu.tsx index 1da0b2e99..b714c73d5 100644 --- a/src/renderer/hooks/usePaneNodeSearchMenu.tsx +++ b/src/renderer/hooks/usePaneNodeSearchMenu.tsx @@ -377,8 +377,7 @@ interface Position { } export const usePaneNodeSearchMenu = ( - wrapperRef: React.RefObject, - parent?: string + wrapperRef: React.RefObject ): UsePaneNodeSearchMenuValue => { const typeState = useContextSelector(GlobalVolatileContext, (c) => c.typeState); const useConnectingFrom = useContextSelector(GlobalVolatileContext, (c) => c.useConnectingFrom); @@ -390,7 +389,6 @@ export const usePaneNodeSearchMenu = ( const [connectingFrom, setConnectingFrom] = useState(null); const [, setGlobalConnectingFrom] = useConnectingFrom; - const [stoppedOnIterator, setStoppedOnIterator] = useState(null); const { getNode, project, getNodes, getEdges } = useReactFlow(); @@ -434,17 +432,14 @@ export const usePaneNodeSearchMenu = ( y: y - reactFlowBounds.top, }); const nodeId = createUniqueId(); - createNode( - { - id: nodeId, - position: projPosition, - data: { - schemaId: schema.schemaId, - }, - nodeType: schema.nodeType, + createNode({ + id: nodeId, + position: projPosition, + data: { + schemaId: schema.schemaId, }, - stoppedOnIterator || parent - ); + nodeType: schema.nodeType, + }); const targetFn = functionDefinitions.get(schema.schemaId); if (connectingFrom && targetFn && target.type !== 'none') { switch (target.type) { @@ -476,7 +471,6 @@ export const usePaneNodeSearchMenu = ( setConnectingFrom(null); setGlobalConnectingFrom(null); - setStoppedOnIterator(null); closeContextMenu(); }, [ @@ -486,10 +480,8 @@ export const usePaneNodeSearchMenu = ( createNode, functionDefinitions, mousePosition, - parent, project, setGlobalConnectingFrom, - stoppedOnIterator, wrapperRef, ] ); @@ -536,50 +528,12 @@ export const usePaneNodeSearchMenu = ( const isStoppedOnPane = target.classList.contains('react-flow__pane'); - const firstClass = target.classList[0] || ''; - const stoppedIteratorId = - typeof target.className === 'object' && firstClass.startsWith('iterator-editor=') - ? firstClass.slice('iterator-editor='.length) - : undefined; - - const fromNode = getNode(connectingFrom?.nodeId ?? ''); - const fromParent = fromNode?.parentNode; - const fromHandleType = connectingFrom?.handleType; - - const isFreeNodeToPane = isStoppedOnPane && fromParent === undefined; - const isIteratorToPane = isStoppedOnPane && fromParent; - const isPaneToIterator = !isStoppedOnPane && stoppedIteratorId; - const isIteratorToSelf = - stoppedIteratorId && fromParent && stoppedIteratorId === fromParent; - const isIteratorToOtherIterator = - stoppedIteratorId && fromParent && stoppedIteratorId !== fromParent; - - const isIteratorSourceToPaneTarget = isIteratorToPane && fromHandleType === 'source'; - const isIteratorTargetToPaneSource = isIteratorToPane && fromHandleType === 'target'; - const isPaneSourceToIteratorTarget = isPaneToIterator && fromHandleType === 'source'; - - if ( - (isFreeNodeToPane || - isIteratorToSelf || - isPaneSourceToIteratorTarget || - isIteratorTargetToPaneSource) && - !(isIteratorSourceToPaneTarget || isIteratorToOtherIterator) - ) { + if (isStoppedOnPane) { menu.manuallyOpenContextMenu(event.pageX, event.pageY); - if (stoppedIteratorId) { - setStoppedOnIterator(stoppedIteratorId); - } } setGlobalConnectingFrom(null); }, - [ - connectingFrom, - getNode, - menu, - setGlobalConnectingFrom, - setMousePosition, - setStoppedOnIterator, - ] + [menu, setGlobalConnectingFrom, setMousePosition] ); const onPaneContextMenu = useCallback( diff --git a/src/renderer/main.tsx b/src/renderer/main.tsx index 7f0874291..efa702424 100644 --- a/src/renderer/main.tsx +++ b/src/renderer/main.tsx @@ -9,8 +9,6 @@ import { ChaiNNerLogo } from './components/chaiNNerLogo'; import { CustomEdge } from './components/CustomEdge/CustomEdge'; import { Header } from './components/Header/Header'; import { HistoryProvider } from './components/HistoryProvider'; -import { IteratorHelperNode } from './components/node/IteratorHelperNode'; -import { IteratorNode } from './components/node/IteratorNode'; import { Node } from './components/node/Node'; import { NodeSelector } from './components/NodeSelectorPanel/NodeSelectorPanel'; import { ReactFlowBox } from './components/ReactFlowBox'; @@ -26,8 +24,6 @@ import { useLastWindowSize } from './hooks/useLastWindowSize'; const nodeTypes: NodeTypes & Record = { regularNode: Node, - iterator: IteratorNode, - iteratorHelper: IteratorHelperNode, newIterator: Node, collector: Node, }; From f69f89a22c5ac1af48f67d31a54a9985ee302a0d Mon Sep 17 00:00:00 2001 From: Joey Ballentine Date: Sun, 15 Oct 2023 00:35:01 -0400 Subject: [PATCH 2/7] remove some more stuff --- src/renderer/contexts/ExecutionContext.tsx | 27 ++-------------------- 1 file changed, 2 insertions(+), 25 deletions(-) diff --git a/src/renderer/contexts/ExecutionContext.tsx b/src/renderer/contexts/ExecutionContext.tsx index 67dfb34cd..7738feb2b 100644 --- a/src/renderer/contexts/ExecutionContext.tsx +++ b/src/renderer/contexts/ExecutionContext.tsx @@ -57,7 +57,6 @@ interface ExecutionContextValue { pause: () => Promise; kill: () => Promise; status: ExecutionStatus; - getIteratorProgress: (iteratorId: string) => IteratorProgress; getNodeProgress: (nodeId: string) => NodeProgress | undefined; } @@ -90,29 +89,8 @@ export const ExecutionProvider = memo(({ children }: React.PropsWithChildren<{}> const [percentComplete, setPercentComplete] = useState(undefined); - const [iteratorProgress, setIteratorProgress] = useState< - Record - >({}); - const [nodeProgress, setNodeProgress] = useState>({}); - const setIteratorProgressImpl = useCallback( - (iteratorId: string, progress: IteratorProgress) => { - setIteratorProgress((prev) => ({ - ...prev, - [iteratorId]: progress, - })); - }, - [setIteratorProgress] - ); - - const getIteratorProgress = useCallback( - (iteratorId: string) => { - return iteratorProgress[iteratorId] ?? {}; - }, - [iteratorProgress] - ); - const setNodeProgressImpl = useCallback( (nodeId: string, progress: NodeProgress) => { setNodeProgress((prev) => ({ @@ -141,7 +119,7 @@ export const ExecutionProvider = memo(({ children }: React.PropsWithChildren<{}> } else { ipcRenderer.send('stop-sleep-blocker'); setPercentComplete(undefined); - setIteratorProgress({}); + setNodeProgress({}); unAnimate(); } }, [status, unAnimate]); @@ -435,7 +413,7 @@ export const ExecutionProvider = memo(({ children }: React.PropsWithChildren<{}> } catch (err) { sendAlert({ type: AlertType.ERROR, message: 'An unexpected error occurred.' }); } - setIteratorProgress({}); + setNodeProgress({}); }, [backend, restart, sendAlert]); // This makes sure keystrokes are executed even if the focus is on an input field @@ -500,7 +478,6 @@ export const ExecutionProvider = memo(({ children }: React.PropsWithChildren<{}> pause, kill, status, - getIteratorProgress, getNodeProgress, }); From c320a9ff6d59a05f3e3a0efefd66e6f73130945b Mon Sep 17 00:00:00 2001 From: Joey Ballentine Date: Sun, 15 Oct 2023 00:43:35 -0400 Subject: [PATCH 3/7] Some more things i missed --- backend/src/events.py | 9 --------- backend/src/node_check.py | 1 - backend/src/nodes/properties/inputs/generic_inputs.py | 5 ----- backend/src/packages/chaiNNer_ncnn/ncnn/io/load_model.py | 2 +- backend/src/packages/chaiNNer_onnx/onnx/io/load_model.py | 2 +- .../packages/chaiNNer_pytorch/pytorch/io/load_model.py | 2 +- backend/src/process.py | 1 - src/common/common-types.ts | 4 ---- src/common/types/chainner-scope.ts | 2 -- .../NodeDocumentation/NodeDocumentationModal.tsx | 8 +------- src/renderer/contexts/ExecutionContext.tsx | 7 ------- src/renderer/contexts/GlobalNodeState.tsx | 4 ---- src/renderer/helpers/reactFlowUtil.ts | 3 --- 13 files changed, 4 insertions(+), 46 deletions(-) diff --git a/backend/src/events.py b/backend/src/events.py index c312620e6..a0efdd4df 100644 --- a/backend/src/events.py +++ b/backend/src/events.py @@ -36,15 +36,6 @@ class NodeStartData(TypedDict): nodeId: NodeId -class IteratorProgressUpdateData(TypedDict): - percent: float - index: int - total: int - eta: float - iteratorId: NodeId - running: Optional[List[NodeId]] - - class NodeProgressUpdateData(TypedDict): percent: float index: int diff --git a/backend/src/node_check.py b/backend/src/node_check.py index 0c4b91fee..135b70cc8 100644 --- a/backend/src/node_check.py +++ b/backend/src/node_check.py @@ -245,7 +245,6 @@ def check_naming_conventions( ): expected_name = ( name.lower() - .replace(" (iterator)", "") .replace(" ", "_") .replace("-", "_") .replace("(", "") diff --git a/backend/src/nodes/properties/inputs/generic_inputs.py b/backend/src/nodes/properties/inputs/generic_inputs.py index 382429ea0..bfb9430be 100644 --- a/backend/src/nodes/properties/inputs/generic_inputs.py +++ b/backend/src/nodes/properties/inputs/generic_inputs.py @@ -408,11 +408,6 @@ def make_optional(self): raise ValueError("ColorInput cannot be made optional") -def IteratorInput(): - """Input for showing that an iterator automatically handles the input""" - return BaseInput("IteratorAuto", "Auto (Iterator)", has_handle=False) - - class VideoContainer(Enum): MKV = "mkv" MP4 = "mp4" diff --git a/backend/src/packages/chaiNNer_ncnn/ncnn/io/load_model.py b/backend/src/packages/chaiNNer_ncnn/ncnn/io/load_model.py index 14ce3a99e..52b35c1fa 100644 --- a/backend/src/packages/chaiNNer_ncnn/ncnn/io/load_model.py +++ b/backend/src/packages/chaiNNer_ncnn/ncnn/io/load_model.py @@ -32,7 +32,7 @@ FileNameOutput("Name", of_input=0).with_id(1), ], see_also=[ - "chainner:ncnn:model_file_iterator", + "chainner:ncnn:load_models", ], ) def load_model_node( diff --git a/backend/src/packages/chaiNNer_onnx/onnx/io/load_model.py b/backend/src/packages/chaiNNer_onnx/onnx/io/load_model.py index 95a4b4be4..d3898885b 100644 --- a/backend/src/packages/chaiNNer_onnx/onnx/io/load_model.py +++ b/backend/src/packages/chaiNNer_onnx/onnx/io/load_model.py @@ -30,7 +30,7 @@ FileNameOutput("Name", of_input=0).with_id(1), ], see_also=[ - "chainner:onnx:model_file_iterator", + "chainner:onnx:load_models", ], ) def load_model_node(path: str) -> Tuple[OnnxModel, str, str]: diff --git a/backend/src/packages/chaiNNer_pytorch/pytorch/io/load_model.py b/backend/src/packages/chaiNNer_pytorch/pytorch/io/load_model.py index 73d316684..c618b37ed 100644 --- a/backend/src/packages/chaiNNer_pytorch/pytorch/io/load_model.py +++ b/backend/src/packages/chaiNNer_pytorch/pytorch/io/load_model.py @@ -61,7 +61,7 @@ def parse_ckpt_state_dict(checkpoint: dict): FileNameOutput("Name", of_input=0).with_id(1), ], see_also=[ - "chainner:pytorch:model_file_iterator", + "chainner:pytorch:load_models", ], ) def load_model_node(path: str) -> Tuple[PyTorchModel, str, str]: diff --git a/backend/src/process.py b/backend/src/process.py index 612346d53..73376e016 100644 --- a/backend/src/process.py +++ b/backend/src/process.py @@ -377,7 +377,6 @@ def __create_node_start(self, node_id: NodeId) -> Event: def __get_output_nodes(self) -> List[NodeId]: output_nodes: List[NodeId] = [] for node in self.chain.nodes.values(): - # we assume that iterator node always have side effects side_effects = node.has_side_effects() if side_effects: output_nodes.append(node.id) diff --git a/src/common/common-types.ts b/src/common/common-types.ts index 5a248fcf7..57d442f96 100644 --- a/src/common/common-types.ts +++ b/src/common/common-types.ts @@ -12,10 +12,6 @@ export interface Size { width: number; height: number; } -export interface IteratorSize extends Size { - offsetTop: number; - offsetLeft: number; -} export type SchemaId = string & { readonly __schemaId: never }; export type InputId = number & { readonly __inputId: never }; diff --git a/src/common/types/chainner-scope.ts b/src/common/types/chainner-scope.ts index 5c08a4430..31b3f29b9 100644 --- a/src/common/types/chainner-scope.ts +++ b/src/common/types/chainner-scope.ts @@ -89,8 +89,6 @@ let OnnxGenericModel = OnnxModel { subType: "Generic", }; -struct IteratorAuto; - // various inputs struct ColorSpace { channels: 1 | 3 | 4, supportsAlpha: bool } struct DdsFormat; diff --git a/src/renderer/components/NodeDocumentation/NodeDocumentationModal.tsx b/src/renderer/components/NodeDocumentation/NodeDocumentationModal.tsx index abdda0a95..4f22f9bf7 100644 --- a/src/renderer/components/NodeDocumentation/NodeDocumentationModal.tsx +++ b/src/renderer/components/NodeDocumentation/NodeDocumentationModal.tsx @@ -87,15 +87,9 @@ const NodeDocumentationModal = memo(() => { for (const result of searchResults) { const id = String(result.id) as SchemaId; scores.set(id, result.score); - - // make sure that the iterator nodes of any helper nodes show up - const parent = helperNodeMapping.get(id); - if (parent && !scores.has(parent)) { - scores.set(parent, result.score); - } } return { searchScores: scores, searchTerms: terms }; - }, [searchIndex, searchQuery, helperNodeMapping]); + }, [searchIndex, searchQuery]); const highlightRegex = useMemo(() => { if (!searchTerms) return undefined; diff --git a/src/renderer/contexts/ExecutionContext.tsx b/src/renderer/contexts/ExecutionContext.tsx index 7738feb2b..c0944bd33 100644 --- a/src/renderer/contexts/ExecutionContext.tsx +++ b/src/renderer/contexts/ExecutionContext.tsx @@ -38,13 +38,6 @@ interface ExecutionStatusContextValue { paused: boolean; } -export interface IteratorProgress { - percent?: number; - eta?: number; - index?: number; - total?: number; -} - export interface NodeProgress { percent?: number; eta?: number; diff --git a/src/renderer/contexts/GlobalNodeState.tsx b/src/renderer/contexts/GlobalNodeState.tsx index 380cc0f07..e0eba8010 100644 --- a/src/renderer/contexts/GlobalNodeState.tsx +++ b/src/renderer/contexts/GlobalNodeState.tsx @@ -21,7 +21,6 @@ import { Mutable, NodeData, OutputId, - Size, } from '../../common/common-types'; import { IdSet } from '../../common/IdSet'; import { log } from '../../common/log'; @@ -68,7 +67,6 @@ import { copyEdges, copyNodes, createNode as createNodeImpl, - defaultIteratorSize, setSelected, withNewData, } from '../helpers/reactFlowUtil'; @@ -114,7 +112,6 @@ interface GlobalVolatile { } interface Global { reactFlowWrapper: React.RefObject; - defaultIteratorSize: Readonly; setNodesRef: React.MutableRefObject[]>>; setEdgesRef: React.MutableRefObject[]>>; addNodeChanges: () => void; @@ -1330,7 +1327,6 @@ export const GlobalProvider = memo( const globalValue = useMemoObject({ reactFlowWrapper, - defaultIteratorSize, setNodesRef, setEdgesRef, addNodeChanges, diff --git a/src/renderer/helpers/reactFlowUtil.ts b/src/renderer/helpers/reactFlowUtil.ts index e4a907af0..14514ab4a 100644 --- a/src/renderer/helpers/reactFlowUtil.ts +++ b/src/renderer/helpers/reactFlowUtil.ts @@ -1,11 +1,8 @@ -import { Size } from 'electron/common'; import { Edge, Node, XYPosition } from 'reactflow'; import { EdgeData, InputData, Mutable, NodeData, NodeType } from '../../common/common-types'; import { SchemaMap } from '../../common/SchemaMap'; import { createUniqueId, deepCopy } from '../../common/util'; -export const defaultIteratorSize: Readonly = { width: 1280, height: 720 }; - export interface NodeProto { id?: string; position: Readonly; From 5bbcff125582b52b0f90f60ae638c80d3be12314 Mon Sep 17 00:00:00 2001 From: Joey Ballentine Date: Sun, 15 Oct 2023 00:48:05 -0400 Subject: [PATCH 4/7] update tests --- .../__snapshots__/SaveFile.test.ts.snap | 290 +----------------- 1 file changed, 4 insertions(+), 286 deletions(-) diff --git a/tests/common/__snapshots__/SaveFile.test.ts.snap b/tests/common/__snapshots__/SaveFile.test.ts.snap index 26686d40b..0c91e3c57 100644 --- a/tests/common/__snapshots__/SaveFile.test.ts.snap +++ b/tests/common/__snapshots__/SaveFile.test.ts.snap @@ -19164,7 +19164,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` exports[`Write save file DiffusePBR.chn 1`] = ` { - "checksum": "aa09d481f19c7c4aece1191213f0ad6a", + "checksum": "14882bc1f7d06a01439af8027d2df031", "content": { "edges": [ { @@ -20236,12 +20236,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "id": "07edc29c-ef5f-42a9-8d3b-b13353fcf506", "inputData": {}, "isDisabled": false, - "iteratorSize": { - "height": 2655, - "offsetLeft": 9, - "offsetTop": 119, - "width": 3495, - }, "schemaId": "chainner:image:load_images", }, "id": "07edc29c-ef5f-42a9-8d3b-b13353fcf506", @@ -20432,7 +20426,7 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` exports[`Write save file big ol test.chn 1`] = ` { - "checksum": "cc55c6823e280c3271c6e29d982143c7", + "checksum": "06f27cce6ced3dae502357891978a1c7", "content": { "edges": [ { @@ -21050,12 +21044,6 @@ exports[`Write save file big ol test.chn 1`] = ` "inputData": { "0": "D:\\Upscaling\\LR\\Chapter 3_ Disk 3\\[4]_Neet", }, - "iteratorSize": { - "height": 2103, - "offsetLeft": 9, - "offsetTop": 163, - "width": 4443, - }, "schemaId": "chainner:image:load_images", }, "id": "0bc87eee-7d0d-4852-9722-f240530e35a9", @@ -30891,7 +30879,7 @@ exports[`Write save file image-input-output.chn 1`] = ` exports[`Write save file image-iterator.chn 1`] = ` { - "checksum": "6fd4b05ab82733f71ef70b7d1c149e4a", + "checksum": "062b760f2a2357d4d6ed7ce089248eab", "content": { "edges": [ { @@ -30965,12 +30953,6 @@ exports[`Write save file image-iterator.chn 1`] = ` "inputData": { "0": "C:\\Users\\micha\\Desktop\\wood-test", }, - "iteratorSize": { - "height": 720, - "offsetLeft": 9, - "offsetTop": 163, - "width": 1280, - }, "schemaId": "chainner:image:load_images", }, "id": "d237f8b4-1953-44d4-978c-d5cf7c4c84eb", @@ -35713,7 +35695,7 @@ exports[`Write save file utilities.chn 1`] = ` exports[`Write save file video-frame-iterator.chn 1`] = ` { - "checksum": "2bea3a7b6f219b16bd365a5b945cf166", + "checksum": "9962e76ffb4938a9a23de00aa45027d4", "content": { "edges": [ { @@ -36518,12 +36500,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": false, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "0084afa8-f236-54d7-a9fb-60e3aad8f083", @@ -36541,12 +36517,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "013a370e-a477-5029-a247-ff141877b700", @@ -36577,12 +36547,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "074e82df-fcac-5f41-ae71-8f239a1b71ea", @@ -36600,12 +36564,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "01dd1aca-58c7-56be-b6f4-195b12f24d77", @@ -36636,12 +36594,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "adedfe61-a1cb-566e-b8a5-ec421bc2810b", @@ -36659,12 +36611,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "25347b74-985c-5f22-a049-25f10feb1845", @@ -36695,12 +36641,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "322e6c00-055d-54bc-9663-2773a431762d", @@ -36718,12 +36658,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "3396041d-6888-5780-af28-887fa6c3bff2", @@ -36754,12 +36688,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "dbdafebf-83f1-562a-a5b7-422a7a15848b", @@ -36777,12 +36705,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "384f0f11-cce9-53a1-9431-deacf0f42357", @@ -36813,12 +36735,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "b3fefb04-6b3d-51ce-ad7a-caea1820978e", @@ -36836,12 +36752,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "496d99b7-2521-5840-8617-dcd119c810bf", @@ -36872,12 +36782,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "3de2a28d-321a-5e72-bf98-e83ae6601019", @@ -36895,12 +36799,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "503c6409-2186-5601-a3b8-9599a23c4341", @@ -36931,12 +36829,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "dea6394b-9c96-5009-8c16-9bcc63cc0df6", @@ -36954,12 +36846,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "53d387b7-0535-546c-aae8-33f3f380ec12", @@ -36990,12 +36876,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "381935ba-184d-5ed6-a5ac-8cd9c1220df2", @@ -37013,12 +36893,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "5d453d0f-1d93-5a7c-9fd4-66f8e4b6f783", @@ -37049,12 +36923,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "ec7eb796-f435-569c-80ae-647f8137769b", @@ -37072,12 +36940,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "6671153b-786b-527f-bf58-3bb7d9e25a19", @@ -37108,12 +36970,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "cb3408ff-ddcc-5fd0-90af-d4b1249a3c70", @@ -37131,12 +36987,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "78b2c53f-b250-58c1-b9d0-0d1216982e81", @@ -37154,12 +37004,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "82fc9b04-c1e5-579b-843b-6d25cac99e41", @@ -37190,12 +37034,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "32b947b1-0ce4-5abd-9680-a4f3f36849f2", @@ -37213,12 +37051,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "95753fb3-8aee-5ca3-9187-b8a39d8f3857", @@ -37249,12 +37081,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "333d55cb-0d44-5350-acba-ed45b00ad999", @@ -37272,12 +37098,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "a12b17e6-8b6c-59cd-9d73-722c903deb57", @@ -37308,12 +37128,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "3ad6de3d-e6e0-5e73-b116-53641150503e", @@ -37331,12 +37145,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "b4e19d23-8b31-543d-aa44-121133e65122", @@ -37367,12 +37175,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "cabd3b1d-2f8d-5ac0-8548-75cab47bc290", @@ -37390,12 +37192,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "b606e603-8f45-5a24-93e4-7d1f80442c09", @@ -37426,12 +37222,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "f6b90385-d6b9-5c1d-9e37-e21c1d7ce906", @@ -37449,12 +37239,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "c496baa6-3144-541c-8a2a-ccb502be1cca", @@ -37485,12 +37269,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "58db8e6a-5583-5d4c-9dbd-85f6dfb2e821", @@ -37508,12 +37286,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "c7055b72-a55c-5f7d-84f8-cbf44f246336", @@ -37544,12 +37316,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": true, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "b3d86c7e-32ca-5ed9-89d0-33a9aa7c0c85", @@ -37567,12 +37333,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": false, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "cd999493-2070-469a-b918-557a36bcc595", @@ -37603,12 +37363,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": false, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "c8d1290c-d664-43c3-a19a-9a780402e5b3", @@ -37626,12 +37380,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": false, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "def9f182-5f4c-5643-ba5e-3828ff93f001", @@ -37662,12 +37410,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": false, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "f9af3baa-2f65-57c6-8695-7c34141aeb48", @@ -37685,12 +37427,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": false, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "efe40a14-e8a0-5930-a204-a4888ce4e539", @@ -37721,12 +37457,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": false, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "c732f0df-ba9f-5c70-a8a8-ec1ad6914880", @@ -37744,12 +37474,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "0": "A:\\tmp\\input\\input.mkv", }, "isDisabled": false, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:load_video", }, "id": "fcd566d4-84b8-5166-9bb0-febcd82f70be", @@ -37780,12 +37504,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "9": 23, }, "isDisabled": false, - "iteratorSize": { - "height": 615, - "offsetLeft": 9, - "offsetTop": 119, - "width": 600, - }, "schemaId": "chainner:image:save_video", }, "id": "b46465b6-4513-5b05-8603-8c8ff2cd25a3", From d0c35be81a8c0522b408cadf5846fe530ea4dd78 Mon Sep 17 00:00:00 2001 From: Joey Ballentine Date: Sun, 15 Oct 2023 00:49:30 -0400 Subject: [PATCH 5/7] lint --- backend/src/events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/events.py b/backend/src/events.py index a0efdd4df..f3e05fe1d 100644 --- a/backend/src/events.py +++ b/backend/src/events.py @@ -1,5 +1,5 @@ import asyncio -from typing import Dict, List, Literal, Optional, TypedDict, Union +from typing import Dict, Literal, Optional, TypedDict, Union from base_types import InputId, NodeId, OutputId from nodes.base_input import ErrorValue From cb50e24747cda8e9e05f3b3d889c9b660ffe0c3b Mon Sep 17 00:00:00 2001 From: Joey Ballentine Date: Sun, 15 Oct 2023 19:55:01 -0400 Subject: [PATCH 6/7] Remove Z indexes --- src/common/migrations.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/common/migrations.ts b/src/common/migrations.ts index 29ffcf272..5a5619e5e 100644 --- a/src/common/migrations.ts +++ b/src/common/migrations.ts @@ -1684,6 +1684,22 @@ const oldToNewIterators: ModernMigration = (data) => { return data; }; +const removeZIndexes: ModernMigration = (data) => { + data.nodes.forEach((node) => { + if (node.zIndex) { + delete node.zIndex; + } + }); + + data.edges.forEach((edge) => { + if (edge.zIndex) { + delete edge.zIndex; + } + }); + + return data; +}; + // ============== const versionToMigration = (version: string) => { @@ -1737,6 +1753,7 @@ const migrations = [ writeOutputFrame, separateNodeWidthAndInputHeight, oldToNewIterators, + removeZIndexes, ]; export const currentMigration = migrations.length; From bbdd5dc28352d1aed923033643c92e1fd4a1b49d Mon Sep 17 00:00:00 2001 From: Joey Ballentine Date: Sun, 15 Oct 2023 19:58:58 -0400 Subject: [PATCH 7/7] update tests --- .../__snapshots__/SaveFile.test.ts.snap | 2062 +---------------- 1 file changed, 42 insertions(+), 2020 deletions(-) diff --git a/tests/common/__snapshots__/SaveFile.test.ts.snap b/tests/common/__snapshots__/SaveFile.test.ts.snap index 0c91e3c57..b8936ff54 100644 --- a/tests/common/__snapshots__/SaveFile.test.ts.snap +++ b/tests/common/__snapshots__/SaveFile.test.ts.snap @@ -13,7 +13,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "ee1d0b69-9502-5b1b-83ea-059fbd902bf8", "targetHandle": "ee1d0b69-9502-5b1b-83ea-059fbd902bf8-1", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -25,7 +24,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "b9f75dc9-fac1-5756-99d8-ec876f3f8060", "targetHandle": "b9f75dc9-fac1-5756-99d8-ec876f3f8060-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -37,7 +35,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "2b8cc774-602b-56d8-98f9-7c7416a0dbe2", "targetHandle": "2b8cc774-602b-56d8-98f9-7c7416a0dbe2-3", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -49,7 +46,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "bc7cf213-bca4-533c-911c-89b8becadfd1", "targetHandle": "bc7cf213-bca4-533c-911c-89b8becadfd1-1", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -61,7 +57,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "286abf98-b573-5e8f-842e-21c42193376c", "targetHandle": "286abf98-b573-5e8f-842e-21c42193376c-1", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -73,7 +68,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "b2965cbc-5afd-5292-a636-7865116c4be6", "targetHandle": "b2965cbc-5afd-5292-a636-7865116c4be6-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -85,7 +79,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "229603c5-0c28-5b21-a745-64ffd080d8e8", "targetHandle": "229603c5-0c28-5b21-a745-64ffd080d8e8-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -96,7 +89,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "48cc852a-829a-5a49-8bf3-3dbf32d4dde9", "targetHandle": "48cc852a-829a-5a49-8bf3-3dbf32d4dde9-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -108,7 +100,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "c57fca2b-4dbb-4bc5-9c43-4804f4ae9945", "targetHandle": "c57fca2b-4dbb-4bc5-9c43-4804f4ae9945-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -120,7 +111,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "0e5176d9-0e4b-5d93-a177-5b4a5ad996ca", "targetHandle": "0e5176d9-0e4b-5d93-a177-5b4a5ad996ca-3", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -132,7 +122,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "b2965cbc-5afd-5292-a636-7865116c4be6", "targetHandle": "b2965cbc-5afd-5292-a636-7865116c4be6-3", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -144,7 +133,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "a89d758d-c7ad-5796-aa77-a7412bf06685", "targetHandle": "a89d758d-c7ad-5796-aa77-a7412bf06685-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -156,7 +144,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "2b8cc774-602b-56d8-98f9-7c7416a0dbe2", "targetHandle": "2b8cc774-602b-56d8-98f9-7c7416a0dbe2-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -168,7 +155,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "51e90ad3-58a1-50c8-9ef7-69ec56081a6c", "targetHandle": "51e90ad3-58a1-50c8-9ef7-69ec56081a6c-1", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -179,7 +165,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "829792e2-ad18-5544-9021-82380dea1faf", "targetHandle": "829792e2-ad18-5544-9021-82380dea1faf-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -191,7 +176,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "d15ff92c-a55b-5de9-ada8-9014ceb39824", "targetHandle": "d15ff92c-a55b-5de9-ada8-9014ceb39824-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -203,7 +187,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "85735831-521c-59bc-9e05-ff0da92ba1a9", "targetHandle": "85735831-521c-59bc-9e05-ff0da92ba1a9-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -215,7 +198,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "720ce1f5-c796-5909-9422-ca1c5a94ec2c", "targetHandle": "720ce1f5-c796-5909-9422-ca1c5a94ec2c-1", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -227,7 +209,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "19a4170e-d109-5674-a66b-b7c9299e7e1b", "targetHandle": "19a4170e-d109-5674-a66b-b7c9299e7e1b-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -239,7 +220,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "3371a5fd-1e69-5456-bb9a-ac8cf8f3d34b", "targetHandle": "3371a5fd-1e69-5456-bb9a-ac8cf8f3d34b-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -251,7 +231,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "a5b45bc8-d7fb-57f2-8796-2c0243c3f69d", "targetHandle": "a5b45bc8-d7fb-57f2-8796-2c0243c3f69d-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -263,7 +242,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "48c1df00-a7dd-4fb6-b3c9-80a20cf8b1b3", "targetHandle": "48c1df00-a7dd-4fb6-b3c9-80a20cf8b1b3-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -275,7 +253,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "abb98de4-502e-572c-b5dc-3ac1278a3bc7", "targetHandle": "abb98de4-502e-572c-b5dc-3ac1278a3bc7-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -286,7 +263,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "a22f5c58-2cdd-5607-9608-c6ea34057811", "targetHandle": "a22f5c58-2cdd-5607-9608-c6ea34057811-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -298,7 +274,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "e1cec3e7-13ab-58ef-8bfe-99b5cfff743d", "targetHandle": "e1cec3e7-13ab-58ef-8bfe-99b5cfff743d-3", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -310,7 +285,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "01d9b233-83d7-5388-aa11-4a2beaeb8dcc", "targetHandle": "01d9b233-83d7-5388-aa11-4a2beaeb8dcc-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -322,7 +296,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "a22f5c58-2cdd-5607-9608-c6ea34057811", "targetHandle": "a22f5c58-2cdd-5607-9608-c6ea34057811-3", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -334,7 +307,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "e1cec3e7-13ab-58ef-8bfe-99b5cfff743d", "targetHandle": "e1cec3e7-13ab-58ef-8bfe-99b5cfff743d-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -346,7 +318,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "19c97d47-b9ea-54b9-b1dc-365d62307e88", "targetHandle": "19c97d47-b9ea-54b9-b1dc-365d62307e88-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -357,7 +328,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "03dbb26c-b40d-4a18-8837-1e974b274a6a", "targetHandle": "03dbb26c-b40d-4a18-8837-1e974b274a6a-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -369,7 +339,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "target": "0e5176d9-0e4b-5d93-a177-5b4a5ad996ca", "targetHandle": "0e5176d9-0e4b-5d93-a177-5b4a5ad996ca-0", "type": "main", - "zIndex": 51, }, ], "nodes": [ @@ -388,7 +357,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -413,7 +381,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 287, - "zIndex": 52, }, { "data": { @@ -457,7 +424,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -486,7 +452,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 258, - "zIndex": 52, }, { "data": { @@ -503,7 +468,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -520,7 +484,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -537,7 +500,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -577,7 +539,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -621,7 +582,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -641,7 +601,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -670,7 +629,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 258, - "zIndex": 52, }, { "data": { @@ -687,7 +645,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -708,7 +665,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -748,7 +704,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -788,7 +743,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -809,7 +763,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -826,7 +779,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -869,7 +821,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -889,7 +840,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 279, - "zIndex": 52, }, { "data": { @@ -906,7 +856,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -925,7 +874,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -969,7 +917,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -989,7 +936,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 279, - "zIndex": 52, }, { "data": { @@ -1018,7 +964,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 258, - "zIndex": 52, }, { "data": { @@ -1058,7 +1003,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -1075,7 +1019,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -1104,7 +1047,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 258, - "zIndex": 52, }, { "data": { @@ -1125,7 +1067,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -1169,7 +1110,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -1209,7 +1149,6 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -1254,7 +1193,6 @@ exports[`Read save file add noise with seed edge.chn 1`] = ` "target": "fbc19ef9-0b32-52a8-94f4-ef1be1a9063f", "targetHandle": "fbc19ef9-0b32-52a8-94f4-ef1be1a9063f-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -1265,7 +1203,6 @@ exports[`Read save file add noise with seed edge.chn 1`] = ` "target": "545c6463-b978-4987-a3c3-a44a774184be", "targetHandle": "545c6463-b978-4987-a3c3-a44a774184be-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -1276,7 +1213,6 @@ exports[`Read save file add noise with seed edge.chn 1`] = ` "target": "e67d0c33-3f14-40c7-8bce-f6c67cfee6bc", "targetHandle": "e67d0c33-3f14-40c7-8bce-f6c67cfee6bc-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -1287,7 +1223,6 @@ exports[`Read save file add noise with seed edge.chn 1`] = ` "target": "4b44b642-8003-41d7-9fed-6d7bac837b1c", "targetHandle": "4b44b642-8003-41d7-9fed-6d7bac837b1c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -1298,7 +1233,6 @@ exports[`Read save file add noise with seed edge.chn 1`] = ` "target": "545c6463-b978-4987-a3c3-a44a774184be", "targetHandle": "545c6463-b978-4987-a3c3-a44a774184be-4", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -1317,7 +1251,6 @@ exports[`Read save file add noise with seed edge.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -1339,7 +1272,6 @@ exports[`Read save file add noise with seed edge.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -1358,7 +1290,6 @@ exports[`Read save file add noise with seed edge.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -1375,7 +1306,6 @@ exports[`Read save file add noise with seed edge.chn 1`] = ` "selected": true, "type": "regularNode", "width": 240, - "zIndex": 70, }, { "data": { @@ -1395,7 +1325,6 @@ exports[`Read save file add noise with seed edge.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, ], "tamperedWith": false, @@ -1419,7 +1348,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "25e041c5-4bc8-4caf-b42d-051e40b4af8f", "targetHandle": "25e041c5-4bc8-4caf-b42d-051e40b4af8f-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1430,7 +1358,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "29e944f4-6c54-4f21-ac9f-502b499666cf", "targetHandle": "29e944f4-6c54-4f21-ac9f-502b499666cf-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1441,7 +1368,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "9d585b34-0ff9-454d-8641-08e4fdcd7dcc", "targetHandle": "9d585b34-0ff9-454d-8641-08e4fdcd7dcc-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1452,7 +1378,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "4bcc72a7-9c71-4242-b060-7cc97eb8d2c1", "targetHandle": "4bcc72a7-9c71-4242-b060-7cc97eb8d2c1-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1463,7 +1388,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "f840ac55-5d59-4a39-8315-2e9b962e66b4", "targetHandle": "f840ac55-5d59-4a39-8315-2e9b962e66b4-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1474,7 +1398,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "25e041c5-4bc8-4caf-b42d-051e40b4af8f", "targetHandle": "25e041c5-4bc8-4caf-b42d-051e40b4af8f-1", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1485,7 +1408,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "29e944f4-6c54-4f21-ac9f-502b499666cf", "targetHandle": "29e944f4-6c54-4f21-ac9f-502b499666cf-1", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1496,7 +1418,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "a725b9e8-4b52-45ac-876e-b6bed86fefc2", "targetHandle": "a725b9e8-4b52-45ac-876e-b6bed86fefc2-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1507,7 +1428,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "ee576e23-b360-5fd5-b50e-024e1177dee4", "targetHandle": "ee576e23-b360-5fd5-b50e-024e1177dee4-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1518,7 +1438,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "681c81d7-5ff5-40bb-96e0-a56adeffe09d", "targetHandle": "681c81d7-5ff5-40bb-96e0-a56adeffe09d-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1529,7 +1448,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "6091ce37-2a1b-4f6d-b5a8-0c7ad0c1caed", "targetHandle": "6091ce37-2a1b-4f6d-b5a8-0c7ad0c1caed-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1540,7 +1458,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "bd114a6b-1c75-4009-8989-b35fc4ba1f74", "targetHandle": "bd114a6b-1c75-4009-8989-b35fc4ba1f74-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1551,7 +1468,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "34807ee8-0710-5bbf-8412-324e8bcaa540", "targetHandle": "34807ee8-0710-5bbf-8412-324e8bcaa540-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1562,7 +1478,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "95eba862-eae0-4460-99bd-8251a4777df8", "targetHandle": "95eba862-eae0-4460-99bd-8251a4777df8-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1573,7 +1488,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "95eba862-eae0-4460-99bd-8251a4777df8", "targetHandle": "95eba862-eae0-4460-99bd-8251a4777df8-1", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1584,7 +1498,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "79dbff25-fde6-4c5c-9214-26a5d5cc1632", "targetHandle": "79dbff25-fde6-4c5c-9214-26a5d5cc1632-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1595,7 +1508,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "e029ec9d-61b3-4872-9d0f-1d730bd4fa24", "targetHandle": "e029ec9d-61b3-4872-9d0f-1d730bd4fa24-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1606,7 +1518,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "9223f402-191d-432d-9643-a41fdaa78a51", "targetHandle": "9223f402-191d-432d-9643-a41fdaa78a51-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1617,7 +1528,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "00b245a9-e07c-4611-abb2-368c4126b47c", "targetHandle": "00b245a9-e07c-4611-abb2-368c4126b47c-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1628,7 +1538,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "8c1642f7-52d6-4682-851d-a6a1dbdb6ebc", "targetHandle": "8c1642f7-52d6-4682-851d-a6a1dbdb6ebc-3", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1639,7 +1548,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "8c1642f7-52d6-4682-851d-a6a1dbdb6ebc", "targetHandle": "8c1642f7-52d6-4682-851d-a6a1dbdb6ebc-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -1661,7 +1569,6 @@ exports[`Read save file big ol test.chn 1`] = ` "target": "1cb633d8-20a1-4076-a9d9-589fde1ce979", "targetHandle": "1cb633d8-20a1-4076-a9d9-589fde1ce979-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -2197,7 +2104,6 @@ exports[`Read save file big ol test.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -2247,7 +2153,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "d0edc99a-b391-4666-a983-aca377b0fd42", "targetHandle": "d0edc99a-b391-4666-a983-aca377b0fd42-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2259,7 +2164,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "49dbe9a3-6980-5680-9c12-dde282d87976", "targetHandle": "49dbe9a3-6980-5680-9c12-dde282d87976-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2271,7 +2175,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "08e62602-bb44-4a6b-9ffc-8a3e3b0a0b6b", "targetHandle": "08e62602-bb44-4a6b-9ffc-8a3e3b0a0b6b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2283,7 +2186,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "ce67fb6d-a0e3-5f10-ab7f-00c899a0600e", "targetHandle": "ce67fb6d-a0e3-5f10-ab7f-00c899a0600e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2295,7 +2197,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "466e2d07-f66c-5e84-83a4-eeea0b370e6b", "targetHandle": "466e2d07-f66c-5e84-83a4-eeea0b370e6b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2307,7 +2208,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "30a521e6-0c41-52fd-a91a-eb52a5b4ed26", "targetHandle": "30a521e6-0c41-52fd-a91a-eb52a5b4ed26-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2319,7 +2219,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "b08d411b-fa61-5fb1-8696-59f9d66bee19", "targetHandle": "b08d411b-fa61-5fb1-8696-59f9d66bee19-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2331,7 +2230,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "9d7dc394-6f8f-516a-a505-2b89be73dfc7", "targetHandle": "9d7dc394-6f8f-516a-a505-2b89be73dfc7-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2343,7 +2241,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "db376dea-9810-5dc4-9254-38b27ade390f", "targetHandle": "db376dea-9810-5dc4-9254-38b27ade390f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2355,7 +2252,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "1c205d65-21d3-51c5-b95d-bd635c99afc1", "targetHandle": "1c205d65-21d3-51c5-b95d-bd635c99afc1-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2367,7 +2263,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "b1dc4581-7bca-4a4b-82ac-5569e9522b48", "targetHandle": "b1dc4581-7bca-4a4b-82ac-5569e9522b48-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2379,7 +2274,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "f06243f3-9159-5b6e-9025-3d77a152a40e", "targetHandle": "f06243f3-9159-5b6e-9025-3d77a152a40e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2391,7 +2285,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "edce7ae4-f447-5e06-8089-41f20dbef527", "targetHandle": "edce7ae4-f447-5e06-8089-41f20dbef527-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2403,7 +2296,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "9e5aafe6-7ec8-56c4-86b6-496fcb346982", "targetHandle": "9e5aafe6-7ec8-56c4-86b6-496fcb346982-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2415,7 +2307,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "a462c90c-c8ad-59ed-a4b9-cd64dff637f9", "targetHandle": "a462c90c-c8ad-59ed-a4b9-cd64dff637f9-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2427,7 +2318,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "faac2e35-3c90-531a-93fa-62f61b918287", "targetHandle": "faac2e35-3c90-531a-93fa-62f61b918287-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2439,7 +2329,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "2ce384f9-5b17-53cd-a476-e725b06db80f", "targetHandle": "2ce384f9-5b17-53cd-a476-e725b06db80f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2451,7 +2340,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "05102aaa-020f-5b1e-957e-ac6cc8ffa07a", "targetHandle": "05102aaa-020f-5b1e-957e-ac6cc8ffa07a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2463,7 +2351,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "8ab4ef25-bb4c-5093-9b30-bc36846e7940", "targetHandle": "8ab4ef25-bb4c-5093-9b30-bc36846e7940-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2475,7 +2362,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "0384b95d-0272-5586-abbd-51e5dded4756", "targetHandle": "0384b95d-0272-5586-abbd-51e5dded4756-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2487,7 +2373,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "30a521e6-0c41-52fd-a91a-eb52a5b4ed26", "targetHandle": "30a521e6-0c41-52fd-a91a-eb52a5b4ed26-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2499,7 +2384,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "f746c97c-9479-5981-aee9-3e7a2e36b89e", "targetHandle": "f746c97c-9479-5981-aee9-3e7a2e36b89e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2511,7 +2395,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "5235ee89-0e92-4b01-be95-403e454ef624", "targetHandle": "5235ee89-0e92-4b01-be95-403e454ef624-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2523,7 +2406,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "872a0e3e-f78f-5bda-8f8c-ca0fabeadc72", "targetHandle": "872a0e3e-f78f-5bda-8f8c-ca0fabeadc72-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2535,7 +2417,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "5c452e0a-bab5-5f50-99b0-9c55b409bfb5", "targetHandle": "5c452e0a-bab5-5f50-99b0-9c55b409bfb5-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2547,7 +2428,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "8a1aa166-5b8d-51cd-a7ec-40614cc85141", "targetHandle": "8a1aa166-5b8d-51cd-a7ec-40614cc85141-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2559,7 +2439,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "c08a6147-a600-41f6-aae7-317310925626", "targetHandle": "c08a6147-a600-41f6-aae7-317310925626-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2571,7 +2450,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "ce67fb6d-a0e3-5f10-ab7f-00c899a0600e", "targetHandle": "ce67fb6d-a0e3-5f10-ab7f-00c899a0600e-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2583,7 +2461,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "943b61e5-4141-52bc-a453-381fd1a25b7e", "targetHandle": "943b61e5-4141-52bc-a453-381fd1a25b7e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2595,7 +2472,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "ff6fe323-2cb6-571e-a48e-3b21e4d578f4", "targetHandle": "ff6fe323-2cb6-571e-a48e-3b21e4d578f4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2607,7 +2483,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "8c266d97-a989-4555-88af-362c010183ae", "targetHandle": "8c266d97-a989-4555-88af-362c010183ae-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2619,7 +2494,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "e6664c39-f73d-5b4a-808b-f3d32930210b", "targetHandle": "e6664c39-f73d-5b4a-808b-f3d32930210b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2631,7 +2505,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "95bd307e-0922-437d-b247-2047f42d2641", "targetHandle": "95bd307e-0922-437d-b247-2047f42d2641-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2643,7 +2516,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "b5d5ed3f-5403-4217-b6d0-94c83b80a263", "targetHandle": "b5d5ed3f-5403-4217-b6d0-94c83b80a263-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2655,7 +2527,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "152ea347-0275-5e42-9b64-5bbce73bb1ad", "targetHandle": "152ea347-0275-5e42-9b64-5bbce73bb1ad-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2667,7 +2538,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "063d0a41-4bd9-519c-8844-3e2238ee5ebd", "targetHandle": "063d0a41-4bd9-519c-8844-3e2238ee5ebd-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2679,7 +2549,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "29deceb2-f33f-55ba-aff2-cdfbe2138177", "targetHandle": "29deceb2-f33f-55ba-aff2-cdfbe2138177-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2691,7 +2560,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "5c73dcee-9dd2-52df-9847-c760020b8fae", "targetHandle": "5c73dcee-9dd2-52df-9847-c760020b8fae-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2703,7 +2571,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "f14f78bb-09c5-4dd1-bc7a-10e0c6ff75a8", "targetHandle": "f14f78bb-09c5-4dd1-bc7a-10e0c6ff75a8-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2715,7 +2582,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "3cf17b0f-4834-510c-81d5-c7af724ebe5b", "targetHandle": "3cf17b0f-4834-510c-81d5-c7af724ebe5b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2727,7 +2593,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "ff6fe323-2cb6-571e-a48e-3b21e4d578f4", "targetHandle": "ff6fe323-2cb6-571e-a48e-3b21e4d578f4-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2739,7 +2604,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "dcca9a6d-731b-53a8-bad4-496f9df98572", "targetHandle": "dcca9a6d-731b-53a8-bad4-496f9df98572-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2751,7 +2615,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "c0b296a0-ccc2-4857-971d-7ebe8eff6283", "targetHandle": "c0b296a0-ccc2-4857-971d-7ebe8eff6283-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2763,7 +2626,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "9ba50fbc-9015-5ea9-819e-51f6c1379bec", "targetHandle": "9ba50fbc-9015-5ea9-819e-51f6c1379bec-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2775,7 +2637,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "7069b979-b854-4a53-8cf2-9b65c4ac9377", "targetHandle": "7069b979-b854-4a53-8cf2-9b65c4ac9377-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2787,7 +2648,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "a462c90c-c8ad-59ed-a4b9-cd64dff637f9", "targetHandle": "a462c90c-c8ad-59ed-a4b9-cd64dff637f9-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2799,7 +2659,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "c41f34e1-3a78-5d1c-92a3-56edf27bceeb", "targetHandle": "c41f34e1-3a78-5d1c-92a3-56edf27bceeb-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2811,7 +2670,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "e6e9a0dc-7de2-54ab-bc0d-4a7bbf340d7d", "targetHandle": "e6e9a0dc-7de2-54ab-bc0d-4a7bbf340d7d-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2823,7 +2681,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "3c248c07-64bb-5957-ba0d-2cb156088f6e", "targetHandle": "3c248c07-64bb-5957-ba0d-2cb156088f6e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2835,7 +2692,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "8c64bff2-cb4a-588d-87e0-e59fc18148e4", "targetHandle": "8c64bff2-cb4a-588d-87e0-e59fc18148e4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2847,7 +2703,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "3adb8c2e-7a40-5290-a87d-0786cf7d82b1", "targetHandle": "3adb8c2e-7a40-5290-a87d-0786cf7d82b1-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2859,7 +2714,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "95f976c4-162b-5dd6-bb7b-a121c710b827", "targetHandle": "95f976c4-162b-5dd6-bb7b-a121c710b827-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2871,7 +2725,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "e06e639b-59b9-5bca-9cb2-6ab53f80a8d7", "targetHandle": "e06e639b-59b9-5bca-9cb2-6ab53f80a8d7-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2883,7 +2736,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "7d6354d7-0cc4-55ab-9d08-29decb5f6ba2", "targetHandle": "7d6354d7-0cc4-55ab-9d08-29decb5f6ba2-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2895,7 +2747,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "2360c51a-3d28-47d0-95f6-d0889da54166", "targetHandle": "2360c51a-3d28-47d0-95f6-d0889da54166-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2907,7 +2758,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "ca809262-acfc-5d73-9169-685a9f44f77b", "targetHandle": "ca809262-acfc-5d73-9169-685a9f44f77b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2919,7 +2769,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "05102aaa-020f-5b1e-957e-ac6cc8ffa07a", "targetHandle": "05102aaa-020f-5b1e-957e-ac6cc8ffa07a-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2931,7 +2780,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "9ba50fbc-9015-5ea9-819e-51f6c1379bec", "targetHandle": "9ba50fbc-9015-5ea9-819e-51f6c1379bec-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2943,7 +2791,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "13dc50ea-1bf5-5098-b3da-8828b7501e56", "targetHandle": "13dc50ea-1bf5-5098-b3da-8828b7501e56-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2955,7 +2802,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "063d0a41-4bd9-519c-8844-3e2238ee5ebd", "targetHandle": "063d0a41-4bd9-519c-8844-3e2238ee5ebd-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2967,7 +2813,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "1c205d65-21d3-51c5-b95d-bd635c99afc1", "targetHandle": "1c205d65-21d3-51c5-b95d-bd635c99afc1-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2979,7 +2824,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "d8c62f89-c1a2-530c-b84f-671746d58033", "targetHandle": "d8c62f89-c1a2-530c-b84f-671746d58033-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -2991,7 +2835,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "b1ae0890-f342-576a-8b3f-3f4b99ca0292", "targetHandle": "b1ae0890-f342-576a-8b3f-3f4b99ca0292-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3003,7 +2846,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "5184f1c1-ecb0-5278-ba58-cda9a4fda353", "targetHandle": "5184f1c1-ecb0-5278-ba58-cda9a4fda353-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3015,7 +2857,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "42d956ea-d3dd-56ba-9f67-28c4b9bacaea", "targetHandle": "42d956ea-d3dd-56ba-9f67-28c4b9bacaea-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3027,7 +2868,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "f25bf600-ee3f-527e-8776-a9ec92e024f1", "targetHandle": "f25bf600-ee3f-527e-8776-a9ec92e024f1-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3039,7 +2879,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "61b24f58-dcc5-5bc4-a4ae-a1226a00089f", "targetHandle": "61b24f58-dcc5-5bc4-a4ae-a1226a00089f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3051,7 +2890,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "19d03e71-29ca-508c-bc0b-2b82f90443d7", "targetHandle": "19d03e71-29ca-508c-bc0b-2b82f90443d7-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3063,7 +2901,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "f336742e-b322-53b2-a248-52dc88b66087", "targetHandle": "f336742e-b322-53b2-a248-52dc88b66087-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3075,7 +2912,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "e6664c39-f73d-5b4a-808b-f3d32930210b", "targetHandle": "e6664c39-f73d-5b4a-808b-f3d32930210b-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3087,7 +2923,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "6affc096-041d-4080-be5d-ad26e6ea7070", "targetHandle": "6affc096-041d-4080-be5d-ad26e6ea7070-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3099,7 +2934,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "6d711236-aa3e-537f-b2bf-67dc9a198abf", "targetHandle": "6d711236-aa3e-537f-b2bf-67dc9a198abf-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3111,7 +2945,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "937ffb29-ead7-46c2-8327-e317f5eedec1", "targetHandle": "937ffb29-ead7-46c2-8327-e317f5eedec1-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3123,7 +2956,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "bdf914e5-ded7-5165-9216-aeb121072fd3", "targetHandle": "bdf914e5-ded7-5165-9216-aeb121072fd3-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3135,7 +2967,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "8c266d97-a989-4555-88af-362c010183ae", "targetHandle": "8c266d97-a989-4555-88af-362c010183ae-2", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3147,7 +2978,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "bea752a4-4191-57e6-9697-cc83ae38c450", "targetHandle": "bea752a4-4191-57e6-9697-cc83ae38c450-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3159,7 +2989,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "3d924af8-87dd-427a-8b44-0901733cad24", "targetHandle": "3d924af8-87dd-427a-8b44-0901733cad24-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3171,7 +3000,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "1b551468-2d49-4388-a625-05f3883706c4", "targetHandle": "1b551468-2d49-4388-a625-05f3883706c4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3183,7 +3011,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "2377d325-63f9-5cd9-9ec4-637782d947c1", "targetHandle": "2377d325-63f9-5cd9-9ec4-637782d947c1-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3195,7 +3022,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "4cb7bb4a-869f-5ea4-968b-35f14ac29465", "targetHandle": "4cb7bb4a-869f-5ea4-968b-35f14ac29465-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3207,7 +3033,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "72674163-3288-5106-82f7-09ef7905547c", "targetHandle": "72674163-3288-5106-82f7-09ef7905547c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3219,7 +3044,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "67cc083d-552b-5956-a5c8-26d7d1564bb6", "targetHandle": "67cc083d-552b-5956-a5c8-26d7d1564bb6-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3231,7 +3055,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "10f34f32-334d-4c08-a902-fe19d1e5bf7e", "targetHandle": "10f34f32-334d-4c08-a902-fe19d1e5bf7e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3243,7 +3066,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "88f4e9c0-c376-46e5-a871-f871ed6bffcf", "targetHandle": "88f4e9c0-c376-46e5-a871-f871ed6bffcf-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3255,7 +3077,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "d69c3ac5-dab9-55a1-b5f5-f37332fe924b", "targetHandle": "d69c3ac5-dab9-55a1-b5f5-f37332fe924b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3267,7 +3088,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "58d4abe6-e164-5296-98a4-076c894b0973", "targetHandle": "58d4abe6-e164-5296-98a4-076c894b0973-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3279,7 +3099,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "ca809262-acfc-5d73-9169-685a9f44f77b", "targetHandle": "ca809262-acfc-5d73-9169-685a9f44f77b-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3291,7 +3110,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "303787bd-80e8-531a-af34-cadc80ab471c", "targetHandle": "303787bd-80e8-531a-af34-cadc80ab471c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3303,7 +3121,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "92dcbb19-d1a7-566a-8d15-7192b4fb941f", "targetHandle": "92dcbb19-d1a7-566a-8d15-7192b4fb941f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3315,7 +3132,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "faac2e35-3c90-531a-93fa-62f61b918287", "targetHandle": "faac2e35-3c90-531a-93fa-62f61b918287-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3327,7 +3143,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "6e657c82-833c-552f-bbb9-725e3dfd8026", "targetHandle": "6e657c82-833c-552f-bbb9-725e3dfd8026-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3339,7 +3154,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "50eda7ad-aca7-5443-a66c-5fb15c763749", "targetHandle": "50eda7ad-aca7-5443-a66c-5fb15c763749-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3351,7 +3165,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "a0c76b05-3ca0-5cee-ba03-d0ca2d811124", "targetHandle": "a0c76b05-3ca0-5cee-ba03-d0ca2d811124-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3363,7 +3176,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "87587135-be6f-518b-b492-59494619334b", "targetHandle": "87587135-be6f-518b-b492-59494619334b-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3375,7 +3187,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "8ab4ef25-bb4c-5093-9b30-bc36846e7940", "targetHandle": "8ab4ef25-bb4c-5093-9b30-bc36846e7940-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3387,7 +3198,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "a6707bd6-fbee-4330-9ba4-0638835810c6", "targetHandle": "a6707bd6-fbee-4330-9ba4-0638835810c6-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3399,7 +3209,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "152ea347-0275-5e42-9b64-5bbce73bb1ad", "targetHandle": "152ea347-0275-5e42-9b64-5bbce73bb1ad-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3411,7 +3220,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "bea752a4-4191-57e6-9697-cc83ae38c450", "targetHandle": "bea752a4-4191-57e6-9697-cc83ae38c450-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3423,7 +3231,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "a0c76b05-3ca0-5cee-ba03-d0ca2d811124", "targetHandle": "a0c76b05-3ca0-5cee-ba03-d0ca2d811124-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3435,7 +3242,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "0ccf196f-dd60-4a9e-8f02-97ee71a67a8c", "targetHandle": "0ccf196f-dd60-4a9e-8f02-97ee71a67a8c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3447,7 +3253,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "9c37118a-fe1e-5209-8822-680c3fdc252c", "targetHandle": "9c37118a-fe1e-5209-8822-680c3fdc252c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3459,7 +3264,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "dd38a15d-f44f-5d07-a12a-c3f33dfa148c", "targetHandle": "dd38a15d-f44f-5d07-a12a-c3f33dfa148c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3471,7 +3275,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "f06243f3-9159-5b6e-9025-3d77a152a40e", "targetHandle": "f06243f3-9159-5b6e-9025-3d77a152a40e-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3483,7 +3286,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "ba465b5c-6ba6-5f4c-a2f8-e7a0afece353", "targetHandle": "ba465b5c-6ba6-5f4c-a2f8-e7a0afece353-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3495,7 +3297,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "6e657c82-833c-552f-bbb9-725e3dfd8026", "targetHandle": "6e657c82-833c-552f-bbb9-725e3dfd8026-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3507,7 +3308,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "9bdb1f1c-07af-5e68-bda2-7b90a26eda8a", "targetHandle": "9bdb1f1c-07af-5e68-bda2-7b90a26eda8a-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3519,7 +3319,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "872a0e3e-f78f-5bda-8f8c-ca0fabeadc72", "targetHandle": "872a0e3e-f78f-5bda-8f8c-ca0fabeadc72-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3531,7 +3330,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "4f095d15-a3b2-5a04-979d-7a023068939a", "targetHandle": "4f095d15-a3b2-5a04-979d-7a023068939a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3543,7 +3341,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "8c64bff2-cb4a-588d-87e0-e59fc18148e4", "targetHandle": "8c64bff2-cb4a-588d-87e0-e59fc18148e4-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3555,7 +3352,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "e1bb2284-8ca7-5bf8-9558-85cfc679e203", "targetHandle": "e1bb2284-8ca7-5bf8-9558-85cfc679e203-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3567,7 +3363,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "2dd52e63-21c7-56c9-979c-f2d0805dd9a2", "targetHandle": "2dd52e63-21c7-56c9-979c-f2d0805dd9a2-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3579,7 +3374,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "a3d8c974-521f-584f-83dd-0894d1b08cc2", "targetHandle": "a3d8c974-521f-584f-83dd-0894d1b08cc2-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3591,7 +3385,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "d85f25ff-e850-5c2a-a194-f5813096b2fe", "targetHandle": "d85f25ff-e850-5c2a-a194-f5813096b2fe-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3603,7 +3396,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "c8cd241c-8308-44af-8824-f59440f6c401", "targetHandle": "c8cd241c-8308-44af-8824-f59440f6c401-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3615,7 +3407,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "3c248c07-64bb-5957-ba0d-2cb156088f6e", "targetHandle": "3c248c07-64bb-5957-ba0d-2cb156088f6e-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3627,7 +3418,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "29deceb2-f33f-55ba-aff2-cdfbe2138177", "targetHandle": "29deceb2-f33f-55ba-aff2-cdfbe2138177-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3639,7 +3429,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "9bdb1f1c-07af-5e68-bda2-7b90a26eda8a", "targetHandle": "9bdb1f1c-07af-5e68-bda2-7b90a26eda8a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3651,7 +3440,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "5184f1c1-ecb0-5278-ba58-cda9a4fda353", "targetHandle": "5184f1c1-ecb0-5278-ba58-cda9a4fda353-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3663,7 +3451,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "8a3d449d-f835-57e3-a0c9-8b0fc5e30786", "targetHandle": "8a3d449d-f835-57e3-a0c9-8b0fc5e30786-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3675,7 +3462,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "6ca66233-f789-5d45-920b-225d5052e5d8", "targetHandle": "6ca66233-f789-5d45-920b-225d5052e5d8-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3687,7 +3473,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "8b9c6ca6-28ac-573c-9053-0290b36dcffd", "targetHandle": "8b9c6ca6-28ac-573c-9053-0290b36dcffd-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3699,7 +3484,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "84a38567-5a73-545d-85ff-c4562c9268ba", "targetHandle": "84a38567-5a73-545d-85ff-c4562c9268ba-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3711,7 +3495,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "dcca9a6d-731b-53a8-bad4-496f9df98572", "targetHandle": "dcca9a6d-731b-53a8-bad4-496f9df98572-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3723,7 +3506,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "d4ec258d-9aa4-5c6e-91d1-52915bdabf77", "targetHandle": "d4ec258d-9aa4-5c6e-91d1-52915bdabf77-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3735,7 +3517,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "9e5aafe6-7ec8-56c4-86b6-496fcb346982", "targetHandle": "9e5aafe6-7ec8-56c4-86b6-496fcb346982-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3747,7 +3528,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "8b9c6ca6-28ac-573c-9053-0290b36dcffd", "targetHandle": "8b9c6ca6-28ac-573c-9053-0290b36dcffd-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3759,7 +3539,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "3873c531-577b-420b-bbb1-91d248937653", "targetHandle": "3873c531-577b-420b-bbb1-91d248937653-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3771,7 +3550,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "b4cb3a7e-683a-45e1-be09-0f5232f2a127", "targetHandle": "b4cb3a7e-683a-45e1-be09-0f5232f2a127-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3783,7 +3561,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "702e52db-0546-5af8-9669-e3a669d9006c", "targetHandle": "702e52db-0546-5af8-9669-e3a669d9006c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3795,7 +3572,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "87587135-be6f-518b-b492-59494619334b", "targetHandle": "87587135-be6f-518b-b492-59494619334b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3807,7 +3583,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "4f095d15-a3b2-5a04-979d-7a023068939a", "targetHandle": "4f095d15-a3b2-5a04-979d-7a023068939a-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3819,7 +3594,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "cc7e3f23-131a-57bf-891b-41a235b49d6f", "targetHandle": "cc7e3f23-131a-57bf-891b-41a235b49d6f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3831,7 +3605,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "5c73dcee-9dd2-52df-9847-c760020b8fae", "targetHandle": "5c73dcee-9dd2-52df-9847-c760020b8fae-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3843,7 +3616,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "0d9c91f7-b8d3-516a-a981-91bbe608d3e8", "targetHandle": "0d9c91f7-b8d3-516a-a981-91bbe608d3e8-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3855,7 +3627,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "57762c20-3243-5726-86b2-8caea4d93e2c", "targetHandle": "57762c20-3243-5726-86b2-8caea4d93e2c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3867,7 +3638,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "db376dea-9810-5dc4-9254-38b27ade390f", "targetHandle": "db376dea-9810-5dc4-9254-38b27ade390f-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3879,7 +3649,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "3ad48d3c-c0f1-521d-9c20-e40a5e830f1b", "targetHandle": "3ad48d3c-c0f1-521d-9c20-e40a5e830f1b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3891,7 +3660,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "bdf914e5-ded7-5165-9216-aeb121072fd3", "targetHandle": "bdf914e5-ded7-5165-9216-aeb121072fd3-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3903,7 +3671,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "209bfca4-d869-4952-a92f-ee17627941a6", "targetHandle": "209bfca4-d869-4952-a92f-ee17627941a6-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3915,7 +3682,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "2377d325-63f9-5cd9-9ec4-637782d947c1", "targetHandle": "2377d325-63f9-5cd9-9ec4-637782d947c1-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3927,7 +3693,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "ea301323-7d8d-4218-90f2-f5ee9ff38779", "targetHandle": "ea301323-7d8d-4218-90f2-f5ee9ff38779-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3939,7 +3704,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "fbd7f6fa-4ed4-4e06-936f-4a1bd15e5714", "targetHandle": "fbd7f6fa-4ed4-4e06-936f-4a1bd15e5714-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3951,7 +3715,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "d8c62f89-c1a2-530c-b84f-671746d58033", "targetHandle": "d8c62f89-c1a2-530c-b84f-671746d58033-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3963,7 +3726,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "6c95ef9c-ca0b-56e5-bcd4-cbf09a7750a4", "targetHandle": "6c95ef9c-ca0b-56e5-bcd4-cbf09a7750a4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3975,7 +3737,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "ab11996e-a157-5d43-b998-8c51e8cc6416", "targetHandle": "ab11996e-a157-5d43-b998-8c51e8cc6416-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3987,7 +3748,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "0d9c91f7-b8d3-516a-a981-91bbe608d3e8", "targetHandle": "0d9c91f7-b8d3-516a-a981-91bbe608d3e8-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -3999,7 +3759,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "6ed5551c-93c6-423d-a35e-8de0e256d6dd", "targetHandle": "6ed5551c-93c6-423d-a35e-8de0e256d6dd-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4011,7 +3770,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "14ffb36c-d16e-5957-9252-eab1cae4aedc", "targetHandle": "14ffb36c-d16e-5957-9252-eab1cae4aedc-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4023,7 +3781,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "31144933-efe0-5a43-bcb6-0255f67a7244", "targetHandle": "31144933-efe0-5a43-bcb6-0255f67a7244-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4035,7 +3792,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "070b8305-218e-513d-a656-35b501778eda", "targetHandle": "070b8305-218e-513d-a656-35b501778eda-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4047,7 +3803,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "9ea3dcda-9b2d-58ce-a461-4742f126bf75", "targetHandle": "9ea3dcda-9b2d-58ce-a461-4742f126bf75-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4059,7 +3814,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "466e2d07-f66c-5e84-83a4-eeea0b370e6b", "targetHandle": "466e2d07-f66c-5e84-83a4-eeea0b370e6b-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4071,7 +3825,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "bebea3c7-3eb6-5928-abf7-aa295e83b79f", "targetHandle": "bebea3c7-3eb6-5928-abf7-aa295e83b79f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4083,7 +3836,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "95f976c4-162b-5dd6-bb7b-a121c710b827", "targetHandle": "95f976c4-162b-5dd6-bb7b-a121c710b827-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4095,7 +3847,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "2ce384f9-5b17-53cd-a476-e725b06db80f", "targetHandle": "2ce384f9-5b17-53cd-a476-e725b06db80f-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4107,7 +3858,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "9aa48b1b-1995-4823-ab70-6d84632f7b7e", "targetHandle": "9aa48b1b-1995-4823-ab70-6d84632f7b7e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4119,7 +3869,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "9d7dc394-6f8f-516a-a505-2b89be73dfc7", "targetHandle": "9d7dc394-6f8f-516a-a505-2b89be73dfc7-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4131,7 +3880,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "d4cce8b5-e667-550c-95f9-2a3caa64c726", "targetHandle": "d4cce8b5-e667-550c-95f9-2a3caa64c726-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4143,7 +3891,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "9ef76e81-dd8f-5bd0-b6c0-a4d191b45c20", "targetHandle": "9ef76e81-dd8f-5bd0-b6c0-a4d191b45c20-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4155,7 +3902,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "28ba84af-c1a9-4b1e-a3e2-89bc0e2f2e13", "targetHandle": "28ba84af-c1a9-4b1e-a3e2-89bc0e2f2e13-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4167,7 +3913,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "498232ce-8e49-534d-b6b0-ab81c775e701", "targetHandle": "498232ce-8e49-534d-b6b0-ab81c775e701-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4179,7 +3924,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "b1ae0890-f342-576a-8b3f-3f4b99ca0292", "targetHandle": "b1ae0890-f342-576a-8b3f-3f4b99ca0292-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4191,7 +3935,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "686d008c-2aa7-562f-a80c-3f7a6895ecd8", "targetHandle": "686d008c-2aa7-562f-a80c-3f7a6895ecd8-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4203,7 +3946,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "95bd307e-0922-437d-b247-2047f42d2641", "targetHandle": "95bd307e-0922-437d-b247-2047f42d2641-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4215,7 +3957,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "50eda7ad-aca7-5443-a66c-5fb15c763749", "targetHandle": "50eda7ad-aca7-5443-a66c-5fb15c763749-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4227,7 +3968,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "08dd10e6-7e36-47c3-ab20-547a2a87e732", "targetHandle": "08dd10e6-7e36-47c3-ab20-547a2a87e732-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4239,7 +3979,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "c992ab70-5bec-598e-9054-e5ce559da27c", "targetHandle": "c992ab70-5bec-598e-9054-e5ce559da27c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4251,7 +3990,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "67cc083d-552b-5956-a5c8-26d7d1564bb6", "targetHandle": "67cc083d-552b-5956-a5c8-26d7d1564bb6-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4263,7 +4001,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "74462fbf-cd0a-534f-b678-4ea5a5348358", "targetHandle": "74462fbf-cd0a-534f-b678-4ea5a5348358-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4275,7 +4012,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "9ef76e81-dd8f-5bd0-b6c0-a4d191b45c20", "targetHandle": "9ef76e81-dd8f-5bd0-b6c0-a4d191b45c20-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4287,7 +4023,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "547dbd8b-0405-492e-be77-96270fb102dc", "targetHandle": "547dbd8b-0405-492e-be77-96270fb102dc-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4299,7 +4034,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "10c1a088-c603-5590-a0dc-ace804594155", "targetHandle": "10c1a088-c603-5590-a0dc-ace804594155-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4311,7 +4045,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "d69c3ac5-dab9-55a1-b5f5-f37332fe924b", "targetHandle": "d69c3ac5-dab9-55a1-b5f5-f37332fe924b-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4323,7 +4056,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "2f340c1e-bdcc-5a5f-bac6-9d8c1f665522", "targetHandle": "2f340c1e-bdcc-5a5f-bac6-9d8c1f665522-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4335,7 +4067,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "58d4abe6-e164-5296-98a4-076c894b0973", "targetHandle": "58d4abe6-e164-5296-98a4-076c894b0973-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4347,7 +4078,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "a3d8c974-521f-584f-83dd-0894d1b08cc2", "targetHandle": "a3d8c974-521f-584f-83dd-0894d1b08cc2-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4359,7 +4089,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "19d03e71-29ca-508c-bc0b-2b82f90443d7", "targetHandle": "19d03e71-29ca-508c-bc0b-2b82f90443d7-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4371,7 +4100,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "de3d3c59-05f2-44d7-8813-67d8fd44e386", "targetHandle": "de3d3c59-05f2-44d7-8813-67d8fd44e386-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4383,7 +4111,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "bfdf987f-dbbb-5631-b4bc-ec8cef3c8c95", "targetHandle": "bfdf987f-dbbb-5631-b4bc-ec8cef3c8c95-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4395,7 +4122,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "c8317619-13a5-50ca-887a-22842f77b26c", "targetHandle": "c8317619-13a5-50ca-887a-22842f77b26c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4407,7 +4133,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "472af423-52b1-5bd6-a39d-2846baea7a6a", "targetHandle": "472af423-52b1-5bd6-a39d-2846baea7a6a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4419,7 +4144,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "43cb2253-aa00-47f0-971f-f86170af92d7", "targetHandle": "43cb2253-aa00-47f0-971f-f86170af92d7-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4431,7 +4155,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "c10779f6-7bb2-5461-bb19-e86014d2f535", "targetHandle": "c10779f6-7bb2-5461-bb19-e86014d2f535-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4443,7 +4166,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "0ed55b60-cffc-5011-94e5-45edeeacb125", "targetHandle": "0ed55b60-cffc-5011-94e5-45edeeacb125-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -4455,7 +4177,6 @@ exports[`Read save file blend-images.chn 1`] = ` "target": "59593de7-1167-55c1-9be4-ebbcb623b9eb", "targetHandle": "59593de7-1167-55c1-9be4-ebbcb623b9eb-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -4487,7 +4208,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 502, - "zIndex": 50, }, { "data": { @@ -4504,7 +4224,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4529,7 +4248,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4554,7 +4272,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4575,7 +4292,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -4592,7 +4308,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4614,7 +4329,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 243, - "zIndex": 50, }, { "data": { @@ -4631,7 +4345,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4656,7 +4369,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4673,7 +4385,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4690,7 +4401,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4707,7 +4417,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4728,7 +4437,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -4745,7 +4453,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4770,7 +4477,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4799,7 +4505,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 258, - "zIndex": 50, }, { "data": { @@ -4824,7 +4529,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4841,7 +4545,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4866,7 +4569,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4883,7 +4585,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4900,7 +4601,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4925,7 +4625,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4942,7 +4641,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4967,7 +4665,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -4992,7 +4689,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5009,7 +4705,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5026,7 +4721,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5043,7 +4737,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5068,7 +4761,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5089,7 +4781,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -5106,7 +4797,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5123,7 +4813,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5144,7 +4833,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -5169,7 +4857,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5186,7 +4873,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5203,7 +4889,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5221,7 +4906,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5238,7 +4922,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5263,7 +4946,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5284,7 +4966,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -5305,7 +4986,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -5322,7 +5002,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5343,7 +5022,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -5368,7 +5046,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5393,7 +5070,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5418,7 +5094,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5435,7 +5110,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5452,7 +5126,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5470,7 +5143,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5495,7 +5167,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5512,7 +5183,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5533,7 +5203,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -5558,7 +5227,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5576,7 +5244,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5595,7 +5262,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5620,7 +5286,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5641,7 +5306,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -5658,7 +5322,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5675,7 +5338,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5693,7 +5355,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5710,7 +5371,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5735,7 +5395,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5752,7 +5411,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5769,7 +5427,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5787,7 +5444,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5804,7 +5460,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5821,7 +5476,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5842,7 +5496,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -5860,7 +5513,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5885,7 +5537,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5910,7 +5561,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5931,7 +5581,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5948,7 +5597,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5965,7 +5613,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -5990,7 +5637,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6015,7 +5661,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6034,7 +5679,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6059,7 +5703,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6076,7 +5719,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6093,7 +5735,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6114,7 +5755,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 243, - "zIndex": 50, }, { "data": { @@ -6139,7 +5779,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6164,7 +5803,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6181,7 +5819,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6206,7 +5843,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6231,7 +5867,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6248,7 +5883,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6273,7 +5907,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6298,7 +5931,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6319,7 +5951,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -6344,7 +5975,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6369,7 +5999,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6394,7 +6023,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6419,7 +6047,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6436,7 +6063,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6465,7 +6091,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 258, - "zIndex": 50, }, { "data": { @@ -6486,7 +6111,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -6503,7 +6127,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6528,7 +6151,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6545,7 +6167,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6562,7 +6183,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6579,7 +6199,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6596,7 +6215,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6625,7 +6243,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 258, - "zIndex": 50, }, { "data": { @@ -6650,7 +6267,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6675,7 +6291,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6695,7 +6310,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6716,7 +6330,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -6733,7 +6346,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6750,7 +6362,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6767,7 +6378,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6784,7 +6394,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6801,7 +6410,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6818,7 +6426,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6835,7 +6442,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6860,7 +6466,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6880,7 +6485,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6897,7 +6501,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6922,7 +6525,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6943,7 +6545,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -6972,7 +6573,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 258, - "zIndex": 50, }, { "data": { @@ -6989,7 +6589,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7006,7 +6605,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7027,7 +6625,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -7052,7 +6649,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7070,7 +6666,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7095,7 +6690,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7120,7 +6714,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7149,7 +6742,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 258, - "zIndex": 50, }, { "data": { @@ -7174,7 +6766,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7191,7 +6782,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7208,7 +6798,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7225,7 +6814,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7242,7 +6830,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7267,7 +6854,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7288,7 +6874,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -7309,7 +6894,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -7326,7 +6910,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7351,7 +6934,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7368,7 +6950,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7389,7 +6970,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -7406,7 +6986,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7426,7 +7005,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7451,7 +7029,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7468,7 +7045,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7493,7 +7069,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, ], "tamperedWith": false, @@ -7517,7 +7092,6 @@ exports[`Read save file box-median-blur.chn 1`] = ` "target": "e7c3d964-716d-43d7-83b9-83825c35a7e2", "targetHandle": "e7c3d964-716d-43d7-83b9-83825c35a7e2-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -7539,7 +7113,6 @@ exports[`Read save file box-median-blur.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -7558,7 +7131,6 @@ exports[`Read save file box-median-blur.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, ], "tamperedWith": false, @@ -7582,7 +7154,6 @@ exports[`Read save file canny-edge-detection.chn 1`] = ` "target": "d6f6e8e6-3699-44eb-95c1-bb9bd951a32b", "targetHandle": "d6f6e8e6-3699-44eb-95c1-bb9bd951a32b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -7593,7 +7164,6 @@ exports[`Read save file canny-edge-detection.chn 1`] = ` "target": "b82af4e7-689e-46a2-873f-d41bc570401e", "targetHandle": "b82af4e7-689e-46a2-873f-d41bc570401e-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -7612,7 +7182,6 @@ exports[`Read save file canny-edge-detection.chn 1`] = ` "selected": false, "type": "regularNode", "width": 241, - "zIndex": 50, }, { "data": { @@ -7632,7 +7201,6 @@ exports[`Read save file canny-edge-detection.chn 1`] = ` "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -7649,7 +7217,6 @@ exports[`Read save file canny-edge-detection.chn 1`] = ` "selected": false, "type": "regularNode", "width": 259, - "zIndex": 50, }, ], "tamperedWith": false, @@ -7674,7 +7241,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "target": "59014e6d-daf9-5408-b22e-d18f2bc18391", "targetHandle": "59014e6d-daf9-5408-b22e-d18f2bc18391-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -7686,7 +7252,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "target": "8c1f65ff-705a-41ca-8f1c-ac279992fc31", "targetHandle": "8c1f65ff-705a-41ca-8f1c-ac279992fc31-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -7698,7 +7263,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "target": "8c1f65ff-705a-41ca-8f1c-ac279992fc31", "targetHandle": "8c1f65ff-705a-41ca-8f1c-ac279992fc31-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -7710,7 +7274,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "target": "25bfd8d5-6d73-587c-b2f0-87a826a71fb7", "targetHandle": "25bfd8d5-6d73-587c-b2f0-87a826a71fb7-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -7722,7 +7285,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "target": "9eb55cdc-d726-4083-88e3-ebd044f37741", "targetHandle": "9eb55cdc-d726-4083-88e3-ebd044f37741-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -7734,7 +7296,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "target": "16e2c71e-10a9-5bb2-b40b-364f3219e02e", "targetHandle": "16e2c71e-10a9-5bb2-b40b-364f3219e02e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -7746,7 +7307,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "target": "069c71c1-22f5-4edb-b371-4be9f69a9f6f", "targetHandle": "069c71c1-22f5-4edb-b371-4be9f69a9f6f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -7758,7 +7318,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "target": "8a33b1c6-d292-4b1f-98d3-45cc61cc632d", "targetHandle": "8a33b1c6-d292-4b1f-98d3-45cc61cc632d-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -7770,7 +7329,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "target": "90818a44-d1a1-5924-83fa-b793c3968580", "targetHandle": "90818a44-d1a1-5924-83fa-b793c3968580-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -7782,7 +7340,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "target": "59014e6d-daf9-5408-b22e-d18f2bc18391", "targetHandle": "59014e6d-daf9-5408-b22e-d18f2bc18391-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -7794,7 +7351,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "target": "90818a44-d1a1-5924-83fa-b793c3968580", "targetHandle": "90818a44-d1a1-5924-83fa-b793c3968580-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -7806,7 +7362,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "target": "1c234225-2bc8-4e62-96ad-aa49af1f89f9", "targetHandle": "1c234225-2bc8-4e62-96ad-aa49af1f89f9-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -7818,7 +7373,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "target": "25bfd8d5-6d73-587c-b2f0-87a826a71fb7", "targetHandle": "25bfd8d5-6d73-587c-b2f0-87a826a71fb7-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -7830,7 +7384,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "target": "938d2d20-da23-4812-9fa3-a5dba2cc259c", "targetHandle": "938d2d20-da23-4812-9fa3-a5dba2cc259c-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -7849,7 +7402,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7866,7 +7418,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7883,7 +7434,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7906,7 +7456,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7929,7 +7478,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7946,7 +7494,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7969,7 +7516,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -7991,7 +7537,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -8008,7 +7553,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -8035,7 +7579,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -8054,7 +7597,6 @@ exports[`Read save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, ], "tamperedWith": false, @@ -8078,7 +7620,6 @@ exports[`Read save file combine-rgba.chn 1`] = ` "target": "ef80bf34-d15b-407d-9e2b-7413af33af10", "targetHandle": "ef80bf34-d15b-407d-9e2b-7413af33af10-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -8089,7 +7630,6 @@ exports[`Read save file combine-rgba.chn 1`] = ` "target": "ef80bf34-d15b-407d-9e2b-7413af33af10", "targetHandle": "ef80bf34-d15b-407d-9e2b-7413af33af10-3", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -8100,7 +7640,6 @@ exports[`Read save file combine-rgba.chn 1`] = ` "target": "ef80bf34-d15b-407d-9e2b-7413af33af10", "targetHandle": "ef80bf34-d15b-407d-9e2b-7413af33af10-1", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -8111,7 +7650,6 @@ exports[`Read save file combine-rgba.chn 1`] = ` "target": "ef80bf34-d15b-407d-9e2b-7413af33af10", "targetHandle": "ef80bf34-d15b-407d-9e2b-7413af33af10-2", "type": "main", - "zIndex": 69, }, ], "nodes": [ @@ -8130,7 +7668,6 @@ exports[`Read save file combine-rgba.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -8147,7 +7684,6 @@ exports[`Read save file combine-rgba.chn 1`] = ` "selected": true, "type": "regularNode", "width": 242, - "zIndex": 70, }, ], "tamperedWith": false, @@ -8171,7 +7707,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "target": "d4d4b060-3c0b-50a9-90ba-9364be167ad1", "targetHandle": "d4d4b060-3c0b-50a9-90ba-9364be167ad1-2", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -8182,7 +7717,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "target": "aa88453f-4bcc-4e7f-8110-be60d3ff9630", "targetHandle": "aa88453f-4bcc-4e7f-8110-be60d3ff9630-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -8193,7 +7727,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "target": "61b0e121-afbc-44c2-a207-e893f924d481", "targetHandle": "61b0e121-afbc-44c2-a207-e893f924d481-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -8204,7 +7737,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "target": "340606cc-7ca2-4289-93ae-2a3a02efa160", "targetHandle": "340606cc-7ca2-4289-93ae-2a3a02efa160-3", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -8215,7 +7747,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "target": "4e2ecaf1-9419-4f22-a029-8d9ddc16b3ab", "targetHandle": "4e2ecaf1-9419-4f22-a029-8d9ddc16b3ab-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -8226,7 +7757,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "target": "e8b0956f-93a5-4622-a03b-399d5219cfb4", "targetHandle": "e8b0956f-93a5-4622-a03b-399d5219cfb4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -8237,7 +7767,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "target": "fe0d57e9-1de0-4238-ac2e-a188167ceba0", "targetHandle": "fe0d57e9-1de0-4238-ac2e-a188167ceba0-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -8248,7 +7777,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "target": "de61827f-8ed5-452e-ab35-80ce382ff894", "targetHandle": "de61827f-8ed5-452e-ab35-80ce382ff894-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -8259,7 +7787,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "target": "e8b0956f-93a5-4622-a03b-399d5219cfb4", "targetHandle": "e8b0956f-93a5-4622-a03b-399d5219cfb4-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -8270,7 +7797,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "target": "de61827f-8ed5-452e-ab35-80ce382ff894", "targetHandle": "de61827f-8ed5-452e-ab35-80ce382ff894-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -8281,7 +7807,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "target": "7bfe7220-07f6-5190-8ee7-7d9284ab8595", "targetHandle": "7bfe7220-07f6-5190-8ee7-7d9284ab8595-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -8292,7 +7817,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "target": "5eb6218d-4983-5023-8ab3-ef9380d6e85f", "targetHandle": "5eb6218d-4983-5023-8ab3-ef9380d6e85f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -8303,7 +7827,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "target": "340606cc-7ca2-4289-93ae-2a3a02efa160", "targetHandle": "340606cc-7ca2-4289-93ae-2a3a02efa160-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -8314,7 +7837,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "target": "d4d4b060-3c0b-50a9-90ba-9364be167ad1", "targetHandle": "d4d4b060-3c0b-50a9-90ba-9364be167ad1-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -8336,7 +7858,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 241, - "zIndex": 50, }, { "data": { @@ -8353,7 +7874,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 241, - "zIndex": 50, }, { "data": { @@ -8372,7 +7892,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 265, - "zIndex": 50, }, { "data": { @@ -8392,7 +7911,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -8411,7 +7929,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -8430,7 +7947,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -8450,7 +7966,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -8469,7 +7984,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -8488,7 +8002,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -8507,7 +8020,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -8527,7 +8039,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -8547,7 +8058,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -8566,7 +8076,6 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, ], "tamperedWith": false, @@ -8590,7 +8099,6 @@ exports[`Read save file convert-to-ncnn.chn 1`] = ` "target": "9256866c-414a-4bd7-8b66-804922ac8875", "targetHandle": "9256866c-414a-4bd7-8b66-804922ac8875-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -8601,7 +8109,6 @@ exports[`Read save file convert-to-ncnn.chn 1`] = ` "target": "3e1a29d5-06de-4ab7-ac98-480c88156a73", "targetHandle": "3e1a29d5-06de-4ab7-ac98-480c88156a73-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -8620,7 +8127,6 @@ exports[`Read save file convert-to-ncnn.chn 1`] = ` "selected": false, "type": "regularNode", "width": 256, - "zIndex": 50, }, { "data": { @@ -8639,7 +8145,6 @@ exports[`Read save file convert-to-ncnn.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -8656,7 +8161,6 @@ exports[`Read save file convert-to-ncnn.chn 1`] = ` "selected": true, "type": "regularNode", "width": 256, - "zIndex": 70, }, ], "tamperedWith": false, @@ -8680,7 +8184,6 @@ exports[`Read save file copy-to-clipboard.chn 1`] = ` "target": "bd03ae2b-2de9-4ce6-a80e-0deef9d77d32", "targetHandle": "bd03ae2b-2de9-4ce6-a80e-0deef9d77d32-0", "type": "main", - "zIndex": 69, }, ], "nodes": [ @@ -8699,7 +8202,6 @@ exports[`Read save file copy-to-clipboard.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -8716,7 +8218,6 @@ exports[`Read save file copy-to-clipboard.chn 1`] = ` "selected": true, "type": "regularNode", "width": 242, - "zIndex": 70, }, ], "tamperedWith": false, @@ -8740,7 +8241,6 @@ exports[`Read save file create-color-old.chn 1`] = ` "target": "89e2294a-770c-5274-9f4b-1c96ed144bab", "targetHandle": "89e2294a-770c-5274-9f4b-1c96ed144bab-3", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -8751,7 +8251,6 @@ exports[`Read save file create-color-old.chn 1`] = ` "target": "6a8066aa-25f9-58e0-bfc3-a9cd91e67550", "targetHandle": "6a8066aa-25f9-58e0-bfc3-a9cd91e67550-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -8799,7 +8298,6 @@ exports[`Read save file create-color-old.chn 1`] = ` "selected": true, "type": "regularNode", "width": 240, - "zIndex": 70, }, { "data": { @@ -8819,7 +8317,6 @@ exports[`Read save file create-color-old.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, { "data": { @@ -8840,7 +8337,6 @@ exports[`Read save file create-color-old.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, { "data": { @@ -8860,7 +8356,6 @@ exports[`Read save file create-color-old.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, { "data": { @@ -8880,7 +8375,6 @@ exports[`Read save file create-color-old.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, { "data": { @@ -8900,7 +8394,6 @@ exports[`Read save file create-color-old.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, { "data": { @@ -8922,7 +8415,6 @@ exports[`Read save file create-color-old.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, { "data": { @@ -8942,7 +8434,6 @@ exports[`Read save file create-color-old.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, { "data": { @@ -8962,7 +8453,6 @@ exports[`Read save file create-color-old.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, ], "tamperedWith": false, @@ -8986,7 +8476,6 @@ exports[`Read save file create-edges.chn 1`] = ` "target": "a9449ffa-52c3-4a22-b824-659358f2a9fb", "targetHandle": "a9449ffa-52c3-4a22-b824-659358f2a9fb-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -8997,7 +8486,6 @@ exports[`Read save file create-edges.chn 1`] = ` "target": "bb851127-3fa8-43d2-802d-681adfac4b2a", "targetHandle": "bb851127-3fa8-43d2-802d-681adfac4b2a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9008,7 +8496,6 @@ exports[`Read save file create-edges.chn 1`] = ` "target": "53fee0f6-caa5-453d-a7d0-2693d86e430b", "targetHandle": "53fee0f6-caa5-453d-a7d0-2693d86e430b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9019,7 +8506,6 @@ exports[`Read save file create-edges.chn 1`] = ` "target": "870aea58-e427-4546-a060-5945d6c03f88", "targetHandle": "870aea58-e427-4546-a060-5945d6c03f88-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9030,7 +8516,6 @@ exports[`Read save file create-edges.chn 1`] = ` "target": "edefdf21-167e-4c29-bcf9-8d44100bb492", "targetHandle": "edefdf21-167e-4c29-bcf9-8d44100bb492-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9041,7 +8526,6 @@ exports[`Read save file create-edges.chn 1`] = ` "target": "81287c1c-a451-44c1-bff9-c9a9a8729302", "targetHandle": "81287c1c-a451-44c1-bff9-c9a9a8729302-0", "type": "main", - "zIndex": 69, }, ], "nodes": [ @@ -9062,7 +8546,6 @@ exports[`Read save file create-edges.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -9079,7 +8562,6 @@ exports[`Read save file create-edges.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -9096,7 +8578,6 @@ exports[`Read save file create-edges.chn 1`] = ` "selected": true, "type": "regularNode", "width": 242, - "zIndex": 70, }, { "data": { @@ -9116,7 +8597,6 @@ exports[`Read save file create-edges.chn 1`] = ` "selected": false, "type": "regularNode", "width": 283, - "zIndex": 50, }, { "data": { @@ -9139,7 +8619,6 @@ exports[`Read save file create-edges.chn 1`] = ` "selected": false, "type": "regularNode", "width": 283, - "zIndex": 50, }, { "data": { @@ -9159,7 +8638,6 @@ exports[`Read save file create-edges.chn 1`] = ` "selected": false, "type": "regularNode", "width": 283, - "zIndex": 50, }, { "data": { @@ -9176,7 +8654,6 @@ exports[`Read save file create-edges.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, ], "tamperedWith": false, @@ -9201,7 +8678,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "50e0cb59-8753-48b3-b066-3362ebaef284", "targetHandle": "50e0cb59-8753-48b3-b066-3362ebaef284-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9213,7 +8689,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "200fda2b-d814-544a-94fe-0ecae0f34874", "targetHandle": "200fda2b-d814-544a-94fe-0ecae0f34874-8", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9225,7 +8700,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "f1f02b17-20b7-5b43-819a-7d70efd58b64", "targetHandle": "f1f02b17-20b7-5b43-819a-7d70efd58b64-8", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9237,7 +8711,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "d31bf6ea-1f44-5d63-b403-9c347d51e1fa", "targetHandle": "d31bf6ea-1f44-5d63-b403-9c347d51e1fa-8", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9249,7 +8722,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "c395f71d-3d16-4d51-960b-3646bfbf0c30", "targetHandle": "c395f71d-3d16-4d51-960b-3646bfbf0c30-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9261,7 +8733,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "f1f02b17-20b7-5b43-819a-7d70efd58b64", "targetHandle": "f1f02b17-20b7-5b43-819a-7d70efd58b64-7", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9273,7 +8744,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "ce4d1137-383b-50db-b943-eed115406f8d", "targetHandle": "ce4d1137-383b-50db-b943-eed115406f8d-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9285,7 +8755,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "17673d57-c5f4-425e-9e1f-4515ba2fa2bf", "targetHandle": "17673d57-c5f4-425e-9e1f-4515ba2fa2bf-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9297,7 +8766,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "3b5c6894-fd4b-4c2a-8b61-f20c2e0f86dc", "targetHandle": "3b5c6894-fd4b-4c2a-8b61-f20c2e0f86dc-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9309,7 +8777,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "bee6630a-a34b-5b7e-ad45-d07601361e83", "targetHandle": "bee6630a-a34b-5b7e-ad45-d07601361e83-6", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9320,7 +8787,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "7d2a550a-c069-5fc2-bb72-394772c7097f", "targetHandle": "7d2a550a-c069-5fc2-bb72-394772c7097f-7", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9332,7 +8798,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "165278dd-7b35-59ba-9134-03577c693d72", "targetHandle": "165278dd-7b35-59ba-9134-03577c693d72-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9344,7 +8809,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "33081f93-69cc-48d5-b73f-bb21edb3b561", "targetHandle": "33081f93-69cc-48d5-b73f-bb21edb3b561-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9356,7 +8820,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "be5b442c-91d2-5588-a616-617ea327f272", "targetHandle": "be5b442c-91d2-5588-a616-617ea327f272-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9368,7 +8831,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "200fda2b-d814-544a-94fe-0ecae0f34874", "targetHandle": "200fda2b-d814-544a-94fe-0ecae0f34874-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9380,7 +8842,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "37b3e27c-c315-4da5-9595-14a078997150", "targetHandle": "37b3e27c-c315-4da5-9595-14a078997150-4", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9392,7 +8853,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "4c643103-c8c3-5718-8349-b3ed5cf8cfa6", "targetHandle": "4c643103-c8c3-5718-8349-b3ed5cf8cfa6-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9404,7 +8864,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "4fd01ecb-b1da-5228-852d-e3fd8ffd9a3f", "targetHandle": "4fd01ecb-b1da-5228-852d-e3fd8ffd9a3f-3", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9416,7 +8875,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "6558bf94-05b3-5df0-ba52-de5147c63324", "targetHandle": "6558bf94-05b3-5df0-ba52-de5147c63324-7", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9428,7 +8886,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "151f8aeb-f11b-4243-8dec-4dc90b46d277", "targetHandle": "151f8aeb-f11b-4243-8dec-4dc90b46d277-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9440,7 +8897,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "6558bf94-05b3-5df0-ba52-de5147c63324", "targetHandle": "6558bf94-05b3-5df0-ba52-de5147c63324-4", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9452,7 +8908,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "8a0325fa-26f3-5b95-aa05-1f9b3474b07f", "targetHandle": "8a0325fa-26f3-5b95-aa05-1f9b3474b07f-5", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9464,7 +8919,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "6558bf94-05b3-5df0-ba52-de5147c63324", "targetHandle": "6558bf94-05b3-5df0-ba52-de5147c63324-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9476,7 +8930,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "f1f02b17-20b7-5b43-819a-7d70efd58b64", "targetHandle": "f1f02b17-20b7-5b43-819a-7d70efd58b64-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9488,7 +8941,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "d31bf6ea-1f44-5d63-b403-9c347d51e1fa", "targetHandle": "d31bf6ea-1f44-5d63-b403-9c347d51e1fa-3", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9499,7 +8951,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "d488f67d-790d-567e-b5fb-d65c63a85af8", "targetHandle": "d488f67d-790d-567e-b5fb-d65c63a85af8-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9511,7 +8962,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "4fd01ecb-b1da-5228-852d-e3fd8ffd9a3f", "targetHandle": "4fd01ecb-b1da-5228-852d-e3fd8ffd9a3f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9523,7 +8973,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "0dd9d1d6-a60d-4287-b85c-e685c5e0ae80", "targetHandle": "0dd9d1d6-a60d-4287-b85c-e685c5e0ae80-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9534,7 +8983,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "d488f67d-790d-567e-b5fb-d65c63a85af8", "targetHandle": "d488f67d-790d-567e-b5fb-d65c63a85af8-8", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9546,7 +8994,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "d31bf6ea-1f44-5d63-b403-9c347d51e1fa", "targetHandle": "d31bf6ea-1f44-5d63-b403-9c347d51e1fa-7", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9558,7 +9005,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "6558bf94-05b3-5df0-ba52-de5147c63324", "targetHandle": "6558bf94-05b3-5df0-ba52-de5147c63324-8", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9569,7 +9015,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "7d2a550a-c069-5fc2-bb72-394772c7097f", "targetHandle": "7d2a550a-c069-5fc2-bb72-394772c7097f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9581,7 +9026,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "c395f71d-3d16-4d51-960b-3646bfbf0c30", "targetHandle": "c395f71d-3d16-4d51-960b-3646bfbf0c30-2", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9593,7 +9037,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "448d0dc0-805c-4263-8289-0ebee6cdd286", "targetHandle": "448d0dc0-805c-4263-8289-0ebee6cdd286-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9605,7 +9048,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "26a0bf18-2829-4c3c-9624-8744884efff3", "targetHandle": "26a0bf18-2829-4c3c-9624-8744884efff3-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9617,7 +9059,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "d31bf6ea-1f44-5d63-b403-9c347d51e1fa", "targetHandle": "d31bf6ea-1f44-5d63-b403-9c347d51e1fa-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9629,7 +9070,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "3e5242b4-778d-4b12-9796-63796584d559", "targetHandle": "3e5242b4-778d-4b12-9796-63796584d559-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9641,7 +9081,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "f129199b-bfc6-4f2e-8ed1-2014f7ef7b7b", "targetHandle": "f129199b-bfc6-4f2e-8ed1-2014f7ef7b7b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9653,7 +9092,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "37b3e27c-c315-4da5-9595-14a078997150", "targetHandle": "37b3e27c-c315-4da5-9595-14a078997150-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9665,7 +9103,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "200fda2b-d814-544a-94fe-0ecae0f34874", "targetHandle": "200fda2b-d814-544a-94fe-0ecae0f34874-7", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9676,7 +9113,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "d488f67d-790d-567e-b5fb-d65c63a85af8", "targetHandle": "d488f67d-790d-567e-b5fb-d65c63a85af8-7", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9688,7 +9124,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "7b1cd520-c986-5b84-9e70-0bd41b30895d", "targetHandle": "7b1cd520-c986-5b84-9e70-0bd41b30895d-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9700,7 +9135,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "3bfcca43-6fe3-46d7-b025-4740887786d7", "targetHandle": "3bfcca43-6fe3-46d7-b025-4740887786d7-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9712,7 +9146,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "dc01a4bc-e18f-4ef3-9ad8-fb05e9f334c0", "targetHandle": "dc01a4bc-e18f-4ef3-9ad8-fb05e9f334c0-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9724,7 +9157,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "f1f02b17-20b7-5b43-819a-7d70efd58b64", "targetHandle": "f1f02b17-20b7-5b43-819a-7d70efd58b64-4", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9736,7 +9168,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "5568aa55-2727-4d00-b9d7-31a4d847f871", "targetHandle": "5568aa55-2727-4d00-b9d7-31a4d847f871-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9748,7 +9179,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "bee6630a-a34b-5b7e-ad45-d07601361e83", "targetHandle": "bee6630a-a34b-5b7e-ad45-d07601361e83-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9760,7 +9190,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "d320531e-e2c7-54bb-a20f-36079b5f8b80", "targetHandle": "d320531e-e2c7-54bb-a20f-36079b5f8b80-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9772,7 +9201,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "200fda2b-d814-544a-94fe-0ecae0f34874", "targetHandle": "200fda2b-d814-544a-94fe-0ecae0f34874-3", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9784,7 +9212,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "d13625a3-694e-4229-9311-6b50acb12ac6", "targetHandle": "d13625a3-694e-4229-9311-6b50acb12ac6-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9796,7 +9223,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "aa175645-32b7-4899-874b-be8201219e9c", "targetHandle": "aa175645-32b7-4899-874b-be8201219e9c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9808,7 +9234,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "e1bae4cc-2808-48b2-a7ef-9179f521982e", "targetHandle": "e1bae4cc-2808-48b2-a7ef-9179f521982e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9819,7 +9244,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "7d2a550a-c069-5fc2-bb72-394772c7097f", "targetHandle": "7d2a550a-c069-5fc2-bb72-394772c7097f-8", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -9831,7 +9255,6 @@ exports[`Read save file crop.chn 1`] = ` "target": "8a0325fa-26f3-5b95-aa05-1f9b3474b07f", "targetHandle": "8a0325fa-26f3-5b95-aa05-1f9b3474b07f-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -9852,7 +9275,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -9871,7 +9293,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -9888,7 +9309,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -9905,7 +9325,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -9922,7 +9341,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -9939,7 +9357,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -9965,7 +9382,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -9983,7 +9399,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, { "data": { @@ -10000,7 +9415,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10026,7 +9440,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10043,7 +9456,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10060,7 +9472,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10077,7 +9488,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10094,7 +9504,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10111,7 +9520,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10137,7 +9545,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10155,7 +9562,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, { "data": { @@ -10173,7 +9579,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, { "data": { @@ -10199,7 +9604,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10217,7 +9621,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, { "data": { @@ -10243,7 +9646,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10269,7 +9671,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10286,7 +9687,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10304,7 +9704,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, { "data": { @@ -10330,7 +9729,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10351,7 +9749,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10368,7 +9765,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10386,7 +9782,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, { "data": { @@ -10412,7 +9807,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10429,7 +9823,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10455,7 +9848,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10484,7 +9876,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 519, - "zIndex": 50, }, { "data": { @@ -10501,7 +9892,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10527,7 +9917,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10544,7 +9933,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10570,7 +9958,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10589,7 +9976,6 @@ exports[`Read save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, ], "tamperedWith": false, @@ -10620,7 +10006,6 @@ exports[`Read save file crop-content.chn 1`] = ` "selected": true, "type": "regularNode", "width": 241, - "zIndex": 70, }, ], "tamperedWith": false, @@ -10702,7 +10087,6 @@ exports[`Read save file empty-string-input-test.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10745,7 +10129,6 @@ exports[`Read save file empty-string-input-test.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10785,7 +10168,6 @@ exports[`Read save file empty-string-input-test.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10812,7 +10194,6 @@ exports[`Read save file empty-string-input-test.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10853,7 +10234,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "target": "ed732cf3-8e31-59b1-9d8f-3f91027d7b45", "targetHandle": "ed732cf3-8e31-59b1-9d8f-3f91027d7b45-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -10865,7 +10245,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "target": "424b07aa-e55c-4db2-bbf6-4bb88877dec0", "targetHandle": "424b07aa-e55c-4db2-bbf6-4bb88877dec0-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -10877,7 +10256,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "target": "9a523640-72f1-42c7-88cd-771aab385884", "targetHandle": "9a523640-72f1-42c7-88cd-771aab385884-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -10889,7 +10267,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "target": "aa31a21a-7efb-4957-af01-b4896e4160df", "targetHandle": "aa31a21a-7efb-4957-af01-b4896e4160df-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -10901,7 +10278,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "target": "55d42e03-5792-5f72-8689-e35b4a37fe71", "targetHandle": "55d42e03-5792-5f72-8689-e35b4a37fe71-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -10912,7 +10288,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "target": "2eda31b4-399d-5848-a11d-96a93c3fa348", "targetHandle": "2eda31b4-399d-5848-a11d-96a93c3fa348-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -10924,7 +10299,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "target": "fc757ca5-14e4-4b2a-b60b-616311071660", "targetHandle": "fc757ca5-14e4-4b2a-b60b-616311071660-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -10936,7 +10310,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "target": "6fb0dfb3-52d4-5ce7-88c1-7917c062554c", "targetHandle": "6fb0dfb3-52d4-5ce7-88c1-7917c062554c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -10948,7 +10321,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "target": "518738bf-bccb-4bca-aace-3f9ec9d8bf3d", "targetHandle": "518738bf-bccb-4bca-aace-3f9ec9d8bf3d-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -10969,7 +10341,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -10991,7 +10362,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -11008,7 +10378,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -11031,7 +10400,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -11053,7 +10421,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -11070,7 +10437,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -11092,7 +10458,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -11109,7 +10474,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -11126,7 +10490,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -11147,7 +10510,6 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, ], "tamperedWith": false, @@ -11171,7 +10533,6 @@ exports[`Read save file gamma.chn 1`] = ` "target": "be8845a1-4104-4946-9ef3-0aef2a083507", "targetHandle": "be8845a1-4104-4946-9ef3-0aef2a083507-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -11182,7 +10543,6 @@ exports[`Read save file gamma.chn 1`] = ` "target": "d5925529-e5c7-4a31-8e84-ec9c3c949868", "targetHandle": "d5925529-e5c7-4a31-8e84-ec9c3c949868-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -11193,7 +10553,6 @@ exports[`Read save file gamma.chn 1`] = ` "target": "0656a2a4-9f76-4d08-a8f1-f1fc97e0d0e9", "targetHandle": "0656a2a4-9f76-4d08-a8f1-f1fc97e0d0e9-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -11204,7 +10563,6 @@ exports[`Read save file gamma.chn 1`] = ` "target": "964a1f57-98dd-41ef-af1a-d20e19dc2782", "targetHandle": "964a1f57-98dd-41ef-af1a-d20e19dc2782-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -11223,7 +10581,6 @@ exports[`Read save file gamma.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -11243,7 +10600,6 @@ exports[`Read save file gamma.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -11260,7 +10616,6 @@ exports[`Read save file gamma.chn 1`] = ` "selected": true, "type": "regularNode", "width": 242, - "zIndex": 70, }, { "data": { @@ -11280,7 +10635,6 @@ exports[`Read save file gamma.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -11300,7 +10654,6 @@ exports[`Read save file gamma.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, ], "tamperedWith": false, @@ -11324,7 +10677,6 @@ exports[`Read save file image-adjustments.chn 1`] = ` "target": "59b0e388-685e-4b7b-8ffe-c64bc98a350f", "targetHandle": "59b0e388-685e-4b7b-8ffe-c64bc98a350f-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -11347,7 +10699,6 @@ exports[`Read save file image-adjustments.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -11367,7 +10718,6 @@ exports[`Read save file image-adjustments.chn 1`] = ` "selected": false, "type": "regularNode", "width": 278, - "zIndex": 50, }, { "data": { @@ -11387,7 +10737,6 @@ exports[`Read save file image-adjustments.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -11410,7 +10759,6 @@ exports[`Read save file image-adjustments.chn 1`] = ` "selected": false, "type": "regularNode", "width": 262, - "zIndex": 50, }, { "data": { @@ -11431,7 +10779,6 @@ exports[`Read save file image-adjustments.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, ], "tamperedWith": false, @@ -11455,7 +10802,6 @@ exports[`Read save file image-channels.chn 1`] = ` "target": "0f5b12e2-78db-4d23-be0e-f1247b0d9a5a", "targetHandle": "0f5b12e2-78db-4d23-be0e-f1247b0d9a5a-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -11466,7 +10812,6 @@ exports[`Read save file image-channels.chn 1`] = ` "target": "0f5b12e2-78db-4d23-be0e-f1247b0d9a5a", "targetHandle": "0f5b12e2-78db-4d23-be0e-f1247b0d9a5a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -11477,7 +10822,6 @@ exports[`Read save file image-channels.chn 1`] = ` "target": "0df5f783-71c1-42ef-8fcf-2c4ac91c6923", "targetHandle": "0df5f783-71c1-42ef-8fcf-2c4ac91c6923-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -11488,7 +10832,6 @@ exports[`Read save file image-channels.chn 1`] = ` "target": "0f02da52-de20-484f-a4ee-fe4f5c16b09f", "targetHandle": "0f02da52-de20-484f-a4ee-fe4f5c16b09f-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -11499,7 +10842,6 @@ exports[`Read save file image-channels.chn 1`] = ` "target": "9a3340d5-b39b-44e2-bbae-129df1a0ebdd", "targetHandle": "9a3340d5-b39b-44e2-bbae-129df1a0ebdd-0", "type": "main", - "zIndex": 69, }, ], "nodes": [ @@ -11518,7 +10860,6 @@ exports[`Read save file image-channels.chn 1`] = ` "selected": true, "type": "regularNode", "width": 242, - "zIndex": 70, }, { "data": { @@ -11537,7 +10878,6 @@ exports[`Read save file image-channels.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -11554,7 +10894,6 @@ exports[`Read save file image-channels.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -11571,7 +10910,6 @@ exports[`Read save file image-channels.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -11588,7 +10926,6 @@ exports[`Read save file image-channels.chn 1`] = ` "selected": false, "type": "regularNode", "width": 244, - "zIndex": 50, }, ], "tamperedWith": false, @@ -11612,7 +10949,6 @@ exports[`Read save file image-dim.chn 1`] = ` "target": "2c77b070-2d17-418e-9a68-c9c0f1651619", "targetHandle": "2c77b070-2d17-418e-9a68-c9c0f1651619-2", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -11623,7 +10959,6 @@ exports[`Read save file image-dim.chn 1`] = ` "target": "2c77b070-2d17-418e-9a68-c9c0f1651619", "targetHandle": "2c77b070-2d17-418e-9a68-c9c0f1651619-1", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -11634,7 +10969,6 @@ exports[`Read save file image-dim.chn 1`] = ` "target": "2c77b070-2d17-418e-9a68-c9c0f1651619", "targetHandle": "2c77b070-2d17-418e-9a68-c9c0f1651619-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -11645,7 +10979,6 @@ exports[`Read save file image-dim.chn 1`] = ` "target": "14203edf-1335-4d4f-8174-a86ce0f53bcb", "targetHandle": "14203edf-1335-4d4f-8174-a86ce0f53bcb-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -11668,7 +11001,6 @@ exports[`Read save file image-dim.chn 1`] = ` "selected": true, "type": "regularNode", "width": 283, - "zIndex": 70, }, { "data": { @@ -11688,7 +11020,6 @@ exports[`Read save file image-dim.chn 1`] = ` "selected": false, "type": "regularNode", "width": 283, - "zIndex": 50, }, { "data": { @@ -11705,7 +11036,6 @@ exports[`Read save file image-dim.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -11725,7 +11055,6 @@ exports[`Read save file image-dim.chn 1`] = ` "selected": false, "type": "regularNode", "width": 279, - "zIndex": 50, }, ], "tamperedWith": false, @@ -11749,7 +11078,6 @@ exports[`Read save file image-filters.chn 1`] = ` "target": "36ecdf30-ef07-478f-882c-5bb7019d447a", "targetHandle": "36ecdf30-ef07-478f-882c-5bb7019d447a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -11760,7 +11088,6 @@ exports[`Read save file image-filters.chn 1`] = ` "target": "bbdbd06c-77d4-4484-8e40-bacf8be550f3", "targetHandle": "bbdbd06c-77d4-4484-8e40-bacf8be550f3-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -11771,7 +11098,6 @@ exports[`Read save file image-filters.chn 1`] = ` "target": "ce5d04ca-a08a-4ecf-a07a-dcce789af967", "targetHandle": "ce5d04ca-a08a-4ecf-a07a-dcce789af967-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -11782,7 +11108,6 @@ exports[`Read save file image-filters.chn 1`] = ` "target": "36ecdf30-ef07-478f-882c-5bb7019d447a", "targetHandle": "36ecdf30-ef07-478f-882c-5bb7019d447a-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -11793,7 +11118,6 @@ exports[`Read save file image-filters.chn 1`] = ` "target": "cd11a3f3-e196-4c37-81cc-b7d07d4f704e", "targetHandle": "cd11a3f3-e196-4c37-81cc-b7d07d4f704e-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -11804,7 +11128,6 @@ exports[`Read save file image-filters.chn 1`] = ` "target": "a7fb83e8-1498-4a2d-8a01-2545ee7a38cf", "targetHandle": "a7fb83e8-1498-4a2d-8a01-2545ee7a38cf-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -11815,7 +11138,6 @@ exports[`Read save file image-filters.chn 1`] = ` "target": "a206f898-1e62-4297-acfa-2f32ab0d63f4", "targetHandle": "a206f898-1e62-4297-acfa-2f32ab0d63f4-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -11836,7 +11158,6 @@ exports[`Read save file image-filters.chn 1`] = ` "selected": false, "type": "regularNode", "width": 279, - "zIndex": 50, }, { "data": { @@ -11856,7 +11177,6 @@ exports[`Read save file image-filters.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -11875,7 +11195,6 @@ exports[`Read save file image-filters.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -11895,7 +11214,6 @@ exports[`Read save file image-filters.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -11912,7 +11230,6 @@ exports[`Read save file image-filters.chn 1`] = ` "selected": true, "type": "regularNode", "width": 282, - "zIndex": 70, }, { "data": { @@ -11933,7 +11250,6 @@ exports[`Read save file image-filters.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -11953,7 +11269,6 @@ exports[`Read save file image-filters.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, ], "tamperedWith": false, @@ -11977,7 +11292,6 @@ exports[`Read save file image-input-output.chn 1`] = ` "target": "891982b8-2d6a-4228-aefb-2e0ef91796aa", "targetHandle": "891982b8-2d6a-4228-aefb-2e0ef91796aa-3", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -11988,7 +11302,6 @@ exports[`Read save file image-input-output.chn 1`] = ` "target": "891982b8-2d6a-4228-aefb-2e0ef91796aa", "targetHandle": "891982b8-2d6a-4228-aefb-2e0ef91796aa-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -11999,7 +11312,6 @@ exports[`Read save file image-input-output.chn 1`] = ` "target": "491b5a02-0d03-4299-a89e-bc9095175220", "targetHandle": "491b5a02-0d03-4299-a89e-bc9095175220-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12010,7 +11322,6 @@ exports[`Read save file image-input-output.chn 1`] = ` "target": "891982b8-2d6a-4228-aefb-2e0ef91796aa", "targetHandle": "891982b8-2d6a-4228-aefb-2e0ef91796aa-1", "type": "main", - "zIndex": 69, }, ], "nodes": [ @@ -12029,7 +11340,6 @@ exports[`Read save file image-input-output.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -12049,7 +11359,6 @@ exports[`Read save file image-input-output.chn 1`] = ` "selected": false, "type": "regularNode", "width": 265, - "zIndex": 50, }, { "data": { @@ -12066,7 +11375,6 @@ exports[`Read save file image-input-output.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, ], "tamperedWith": false, @@ -12090,7 +11398,6 @@ exports[`Read save file image-iterator.chn 1`] = ` "target": "17750f85-fd24-4089-9fde-2ca8a1fd8abe", "targetHandle": "17750f85-fd24-4089-9fde-2ca8a1fd8abe-1", "type": "main", - "zIndex": 79, }, { "animated": false, @@ -12101,7 +11408,6 @@ exports[`Read save file image-iterator.chn 1`] = ` "target": "17750f85-fd24-4089-9fde-2ca8a1fd8abe", "targetHandle": "17750f85-fd24-4089-9fde-2ca8a1fd8abe-0", "type": "main", - "zIndex": 79, }, { "animated": false, @@ -12112,7 +11418,6 @@ exports[`Read save file image-iterator.chn 1`] = ` "target": "17750f85-fd24-4089-9fde-2ca8a1fd8abe", "targetHandle": "17750f85-fd24-4089-9fde-2ca8a1fd8abe-3", "type": "main", - "zIndex": 79, }, { "animated": false, @@ -12123,7 +11428,6 @@ exports[`Read save file image-iterator.chn 1`] = ` "target": "17750f85-fd24-4089-9fde-2ca8a1fd8abe", "targetHandle": "17750f85-fd24-4089-9fde-2ca8a1fd8abe-2", "type": "main", - "zIndex": 79, }, ], "nodes": [ @@ -12144,7 +11448,6 @@ exports[`Read save file image-iterator.chn 1`] = ` "selected": false, "type": "regularNode", "width": 265, - "zIndex": 80, }, { "data": { @@ -12197,7 +11500,6 @@ exports[`Read save file image-metrics.chn 1`] = ` "selected": true, "type": "regularNode", "width": 241, - "zIndex": 70, }, ], "tamperedWith": false, @@ -12221,7 +11523,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "target": "94e84d6f-5179-42c9-8d63-2f3ddfd121d9", "targetHandle": "94e84d6f-5179-42c9-8d63-2f3ddfd121d9-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12232,7 +11533,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "target": "89d518ad-2769-4eee-81e5-5b7876cfc4f1", "targetHandle": "89d518ad-2769-4eee-81e5-5b7876cfc4f1-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12243,7 +11543,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "target": "c56c2f68-0478-4db5-b038-24f83f8ae275", "targetHandle": "c56c2f68-0478-4db5-b038-24f83f8ae275-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -12254,7 +11553,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "target": "94e84d6f-5179-42c9-8d63-2f3ddfd121d9", "targetHandle": "94e84d6f-5179-42c9-8d63-2f3ddfd121d9-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12265,7 +11563,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "target": "760f82b1-119a-53ae-af2b-45e583af6e7b", "targetHandle": "760f82b1-119a-53ae-af2b-45e583af6e7b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12276,7 +11573,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "target": "ad24cc0b-36ac-415f-9347-c6da40edec4e", "targetHandle": "ad24cc0b-36ac-415f-9347-c6da40edec4e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12287,7 +11583,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "target": "f7249477-4af7-5e5a-bd2c-0aea42aa6d3f", "targetHandle": "f7249477-4af7-5e5a-bd2c-0aea42aa6d3f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12298,7 +11593,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "target": "7094b9d4-3173-450f-b491-3c6936c510ab", "targetHandle": "7094b9d4-3173-450f-b491-3c6936c510ab-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12309,7 +11603,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "target": "7ae37f51-b9d9-41d8-aed7-b6f5a0cea0d6", "targetHandle": "7ae37f51-b9d9-41d8-aed7-b6f5a0cea0d6-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12320,7 +11613,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "target": "246c1a4b-9d15-4e93-b296-9ca05a51170a", "targetHandle": "246c1a4b-9d15-4e93-b296-9ca05a51170a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12331,7 +11623,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "target": "246c1a4b-9d15-4e93-b296-9ca05a51170a", "targetHandle": "246c1a4b-9d15-4e93-b296-9ca05a51170a-1", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -12355,7 +11646,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -12374,7 +11664,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -12394,7 +11683,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 283, - "zIndex": 50, }, { "data": { @@ -12414,7 +11702,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 283, - "zIndex": 50, }, { "data": { @@ -12435,7 +11722,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -12454,7 +11740,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -12475,7 +11760,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 244, - "zIndex": 50, }, { "data": { @@ -12494,7 +11778,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -12513,7 +11796,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "selected": true, "type": "regularNode", "width": 242, - "zIndex": 70, }, { "data": { @@ -12532,7 +11814,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -12551,7 +11832,6 @@ exports[`Read save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, ], "tamperedWith": false, @@ -12575,7 +11855,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "target": "ed626709-fb53-4a88-854d-c5c3fed3543c", "targetHandle": "ed626709-fb53-4a88-854d-c5c3fed3543c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12586,7 +11865,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "target": "bd7c2c0d-a290-412b-84de-53862e8387aa", "targetHandle": "bd7c2c0d-a290-412b-84de-53862e8387aa-2", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12598,7 +11876,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "target": "7de99961-fbc6-4a58-822f-fe9fc73c1b3c", "targetHandle": "7de99961-fbc6-4a58-822f-fe9fc73c1b3c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12609,7 +11886,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "target": "9846306b-7f97-4f97-a191-ed59ef7ab0ad", "targetHandle": "9846306b-7f97-4f97-a191-ed59ef7ab0ad-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12620,7 +11896,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "target": "bd7c2c0d-a290-412b-84de-53862e8387aa", "targetHandle": "bd7c2c0d-a290-412b-84de-53862e8387aa-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12632,7 +11907,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "target": "fdb01134-a344-4213-84ec-95f54f907ba3", "targetHandle": "fdb01134-a344-4213-84ec-95f54f907ba3-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12643,7 +11917,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "target": "ed626709-fb53-4a88-854d-c5c3fed3543c", "targetHandle": "ed626709-fb53-4a88-854d-c5c3fed3543c-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12654,7 +11927,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "target": "584d881a-95f8-4b9e-b6b1-3be4693db0ff", "targetHandle": "584d881a-95f8-4b9e-b6b1-3be4693db0ff-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12665,7 +11937,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "target": "bd7c2c0d-a290-412b-84de-53862e8387aa", "targetHandle": "bd7c2c0d-a290-412b-84de-53862e8387aa-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12676,7 +11947,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "target": "ed626709-fb53-4a88-854d-c5c3fed3543c", "targetHandle": "ed626709-fb53-4a88-854d-c5c3fed3543c-2", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12687,7 +11957,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "target": "d6322950-b0d6-4965-b4b4-033dba4177c6", "targetHandle": "d6322950-b0d6-4965-b4b4-033dba4177c6-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12698,7 +11967,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "target": "9714307a-4cf4-4b80-b08b-c6ab083a4903", "targetHandle": "9714307a-4cf4-4b80-b08b-c6ab083a4903-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12709,7 +11977,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "target": "c7768f95-4ce3-4fa7-875b-271a4285cff9", "targetHandle": "c7768f95-4ce3-4fa7-875b-271a4285cff9-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12720,7 +11987,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "target": "ba49d293-6c4d-4372-a94f-8c7c4b5765ce", "targetHandle": "ba49d293-6c4d-4372-a94f-8c7c4b5765ce-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -12732,7 +11998,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "target": "a808ceb7-f63d-45d3-829f-24d85b1e0d24", "targetHandle": "a808ceb7-f63d-45d3-829f-24d85b1e0d24-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -12753,7 +12018,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -12770,7 +12034,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -12789,7 +12052,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -12806,7 +12068,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -12827,7 +12088,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 244, - "zIndex": 50, }, { "data": { @@ -12844,7 +12104,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -12861,7 +12120,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -12880,7 +12138,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -12897,7 +12154,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -12914,7 +12170,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -12931,7 +12186,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -12948,7 +12202,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -12968,7 +12221,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -12985,7 +12237,6 @@ exports[`Read save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, ], "tamperedWith": false, @@ -13009,7 +12260,6 @@ exports[`Read save file model-scale.chn 1`] = ` "target": "66afd92a-138e-42b7-a5d3-a45737f31ed4", "targetHandle": "66afd92a-138e-42b7-a5d3-a45737f31ed4-0", "type": "main", - "zIndex": 69, }, ], "nodes": [ @@ -13030,7 +12280,6 @@ exports[`Read save file model-scale.chn 1`] = ` "selected": false, "type": "regularNode", "width": 517, - "zIndex": 50, }, { "data": { @@ -13047,7 +12296,6 @@ exports[`Read save file model-scale.chn 1`] = ` "selected": true, "type": "regularNode", "width": 503, - "zIndex": 70, }, ], "tamperedWith": false, @@ -13071,7 +12319,6 @@ exports[`Read save file ncnn.chn 1`] = ` "target": "444d3246-76ad-4ba1-8b50-4ff2527bab87", "targetHandle": "444d3246-76ad-4ba1-8b50-4ff2527bab87-1", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -13082,7 +12329,6 @@ exports[`Read save file ncnn.chn 1`] = ` "target": "24b604f1-4c1b-40e1-a03b-3dfc6b2ba8df", "targetHandle": "24b604f1-4c1b-40e1-a03b-3dfc6b2ba8df-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13093,7 +12339,6 @@ exports[`Read save file ncnn.chn 1`] = ` "target": "5961ee68-6b8f-43ad-9120-52e06689ae77", "targetHandle": "5961ee68-6b8f-43ad-9120-52e06689ae77-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13104,7 +12349,6 @@ exports[`Read save file ncnn.chn 1`] = ` "target": "444d3246-76ad-4ba1-8b50-4ff2527bab87", "targetHandle": "444d3246-76ad-4ba1-8b50-4ff2527bab87-0", "type": "main", - "zIndex": 69, }, ], "nodes": [ @@ -13123,7 +12367,6 @@ exports[`Read save file ncnn.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -13142,7 +12385,6 @@ exports[`Read save file ncnn.chn 1`] = ` "selected": true, "type": "regularNode", "width": 248, - "zIndex": 70, }, { "data": { @@ -13161,7 +12403,6 @@ exports[`Read save file ncnn.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -13178,7 +12419,6 @@ exports[`Read save file ncnn.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, ], "tamperedWith": false, @@ -13202,7 +12442,6 @@ exports[`Read save file normal-map-generator.chn 1`] = ` "target": "091149ea-be6a-44d9-af3d-fb0902b9077d", "targetHandle": "091149ea-be6a-44d9-af3d-fb0902b9077d-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -13213,7 +12452,6 @@ exports[`Read save file normal-map-generator.chn 1`] = ` "target": "a6759cf4-cd53-4bb8-afc2-929733532786", "targetHandle": "a6759cf4-cd53-4bb8-afc2-929733532786-0", "type": "main", - "zIndex": 69, }, ], "nodes": [ @@ -13232,7 +12470,6 @@ exports[`Read save file normal-map-generator.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -13257,7 +12494,6 @@ exports[`Read save file normal-map-generator.chn 1`] = ` "selected": true, "type": "regularNode", "width": 282, - "zIndex": 70, }, { "data": { @@ -13274,7 +12510,6 @@ exports[`Read save file normal-map-generator.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, ], "tamperedWith": false, @@ -13308,7 +12543,6 @@ exports[`Read save file onnx-interpolate.chn 1`] = ` "selected": false, "type": "regularNode", "width": 247, - "zIndex": 50, }, ], "tamperedWith": false, @@ -13341,7 +12575,6 @@ exports[`Read save file opacity.chn 1`] = ` "selected": true, "type": "regularNode", "width": 241, - "zIndex": 70, }, ], "tamperedWith": false, @@ -13365,7 +12598,6 @@ exports[`Read save file pass-through.chn 1`] = ` "target": "4e60586a-6341-448f-a6b0-b88d61a2c53f", "targetHandle": "4e60586a-6341-448f-a6b0-b88d61a2c53f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13376,7 +12608,6 @@ exports[`Read save file pass-through.chn 1`] = ` "target": "4e60586a-6341-448f-a6b0-b88d61a2c53f", "targetHandle": "4e60586a-6341-448f-a6b0-b88d61a2c53f-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13387,7 +12618,6 @@ exports[`Read save file pass-through.chn 1`] = ` "target": "e8ae0225-aa99-4d54-856b-c7488ca77dd0", "targetHandle": "e8ae0225-aa99-4d54-856b-c7488ca77dd0-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13398,7 +12628,6 @@ exports[`Read save file pass-through.chn 1`] = ` "target": "0a30743c-0fef-48bf-9b3d-f30d9028136d", "targetHandle": "0a30743c-0fef-48bf-9b3d-f30d9028136d-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -13417,7 +12646,6 @@ exports[`Read save file pass-through.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -13437,7 +12665,6 @@ exports[`Read save file pass-through.chn 1`] = ` "selected": false, "type": "regularNode", "width": 265, - "zIndex": 50, }, { "data": { @@ -13456,7 +12683,6 @@ exports[`Read save file pass-through.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -13473,7 +12699,6 @@ exports[`Read save file pass-through.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, ], "tamperedWith": false, @@ -13497,7 +12722,6 @@ exports[`Read save file pytorch.chn 1`] = ` "target": "3162a7ce-116b-4f7f-969f-e9a0d7973d61", "targetHandle": "3162a7ce-116b-4f7f-969f-e9a0d7973d61-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -13508,7 +12732,6 @@ exports[`Read save file pytorch.chn 1`] = ` "target": "1e54b9e8-03ba-4705-8ef9-d8cd0c8c2d43", "targetHandle": "1e54b9e8-03ba-4705-8ef9-d8cd0c8c2d43-2", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13519,7 +12742,6 @@ exports[`Read save file pytorch.chn 1`] = ` "target": "8119c5d4-b2f9-4ffa-8621-a84dfd01d704", "targetHandle": "8119c5d4-b2f9-4ffa-8621-a84dfd01d704-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13530,7 +12752,6 @@ exports[`Read save file pytorch.chn 1`] = ` "target": "0ff35754-a542-4812-b3d5-2f1897c1972b", "targetHandle": "0ff35754-a542-4812-b3d5-2f1897c1972b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13541,7 +12762,6 @@ exports[`Read save file pytorch.chn 1`] = ` "target": "b4f14ca8-484c-52da-81e6-68d215d2c059", "targetHandle": "b4f14ca8-484c-52da-81e6-68d215d2c059-2", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13552,7 +12772,6 @@ exports[`Read save file pytorch.chn 1`] = ` "target": "1e54b9e8-03ba-4705-8ef9-d8cd0c8c2d43", "targetHandle": "1e54b9e8-03ba-4705-8ef9-d8cd0c8c2d43-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13563,7 +12782,6 @@ exports[`Read save file pytorch.chn 1`] = ` "target": "3162a7ce-116b-4f7f-969f-e9a0d7973d61", "targetHandle": "3162a7ce-116b-4f7f-969f-e9a0d7973d61-1", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -13574,7 +12792,6 @@ exports[`Read save file pytorch.chn 1`] = ` "target": "b4f14ca8-484c-52da-81e6-68d215d2c059", "targetHandle": "b4f14ca8-484c-52da-81e6-68d215d2c059-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -13595,7 +12812,6 @@ exports[`Read save file pytorch.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -13612,7 +12828,6 @@ exports[`Read save file pytorch.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -13631,7 +12846,6 @@ exports[`Read save file pytorch.chn 1`] = ` "selected": true, "type": "regularNode", "width": 248, - "zIndex": 70, }, { "data": { @@ -13648,7 +12862,6 @@ exports[`Read save file pytorch.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -13667,7 +12880,6 @@ exports[`Read save file pytorch.chn 1`] = ` "selected": false, "type": "regularNode", "width": 258, - "zIndex": 50, }, { "data": { @@ -13686,7 +12898,6 @@ exports[`Read save file pytorch.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, ], "tamperedWith": false, @@ -13711,7 +12922,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "target": "febcf0d5-23b4-4485-9316-377de0605105", "targetHandle": "febcf0d5-23b4-4485-9316-377de0605105-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13723,7 +12933,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "target": "b2fdb48a-ed8c-4cd9-a881-f98d2dcc29a0", "targetHandle": "b2fdb48a-ed8c-4cd9-a881-f98d2dcc29a0-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13734,7 +12943,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "target": "4ad2543a-4eef-5433-bb5c-2d54ed0dcf30", "targetHandle": "4ad2543a-4eef-5433-bb5c-2d54ed0dcf30-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13745,7 +12953,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "target": "4ad2543a-4eef-5433-bb5c-2d54ed0dcf30", "targetHandle": "4ad2543a-4eef-5433-bb5c-2d54ed0dcf30-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13757,7 +12964,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "target": "3afa73af-58f0-4f0a-b215-c5ba3ec26893", "targetHandle": "3afa73af-58f0-4f0a-b215-c5ba3ec26893-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13769,7 +12975,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "target": "febcf0d5-23b4-4485-9316-377de0605105", "targetHandle": "febcf0d5-23b4-4485-9316-377de0605105-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13780,7 +12985,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "target": "60e1ac4e-94b8-4c0d-b845-2c14097f0a5e", "targetHandle": "60e1ac4e-94b8-4c0d-b845-2c14097f0a5e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13791,7 +12995,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "target": "f09bca4e-6603-48c2-a812-1039aa8ff118", "targetHandle": "f09bca4e-6603-48c2-a812-1039aa8ff118-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -13803,7 +13006,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "target": "f1ccef04-75d9-4653-819b-06c981222442", "targetHandle": "f1ccef04-75d9-4653-819b-06c981222442-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -13825,7 +13027,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 244, - "zIndex": 50, }, { "data": { @@ -13845,7 +13046,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 244, - "zIndex": 50, }, { "data": { @@ -13862,7 +13062,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -13881,7 +13080,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -13911,7 +13109,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 261, - "zIndex": 50, }, { "data": { @@ -13931,7 +13128,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, { "data": { @@ -13948,7 +13144,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -13978,7 +13173,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 261, - "zIndex": 50, }, { "data": { @@ -13999,7 +13193,6 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 243, - "zIndex": 50, }, { "data": { @@ -14030,7 +13223,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. "selected": false, "type": "regularNode", "width": 856, - "zIndex": 50, }, { "data": { @@ -14047,7 +13239,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -14069,7 +13260,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -14088,7 +13278,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, ], "tamperedWith": false, @@ -14112,7 +13301,6 @@ exports[`Read save file resize-to-side.chn 1`] = ` "target": "0a558c45-2c62-4d94-a006-f3e24a40d2f5", "targetHandle": "0a558c45-2c62-4d94-a006-f3e24a40d2f5-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14123,7 +13311,6 @@ exports[`Read save file resize-to-side.chn 1`] = ` "target": "89ad8b89-a34e-4327-846d-4c66ab4006e8", "targetHandle": "89ad8b89-a34e-4327-846d-4c66ab4006e8-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -14144,7 +13331,6 @@ exports[`Read save file resize-to-side.chn 1`] = ` "selected": false, "type": "regularNode", "width": 265, - "zIndex": 50, }, { "data": { @@ -14165,7 +13351,6 @@ exports[`Read save file resize-to-side.chn 1`] = ` "selected": false, "type": "regularNode", "width": 283, - "zIndex": 50, }, { "data": { @@ -14182,7 +13367,6 @@ exports[`Read save file resize-to-side.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, ], "tamperedWith": false, @@ -14206,7 +13390,6 @@ exports[`Read save file rnd.chn 1`] = ` "target": "7e4ee660-b958-5ac7-9914-7887f3c49eff", "targetHandle": "7e4ee660-b958-5ac7-9914-7887f3c49eff-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14217,7 +13400,6 @@ exports[`Read save file rnd.chn 1`] = ` "target": "9b373116-cab0-4df2-8517-4a65c8d9bb55", "targetHandle": "9b373116-cab0-4df2-8517-4a65c8d9bb55-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14228,7 +13410,6 @@ exports[`Read save file rnd.chn 1`] = ` "target": "5f7b26fa-7032-4849-891d-9286669d2cfe", "targetHandle": "5f7b26fa-7032-4849-891d-9286669d2cfe-2", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -14251,7 +13432,6 @@ exports[`Read save file rnd.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -14270,7 +13450,6 @@ exports[`Read save file rnd.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -14287,7 +13466,6 @@ exports[`Read save file rnd.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -14307,7 +13485,6 @@ exports[`Read save file rnd.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, ], "tamperedWith": false, @@ -14365,7 +13542,6 @@ exports[`Read save file save-image-webp-lossless.chn 1`] = ` "selected": true, "type": "regularNode", "width": 240, - "zIndex": 70, }, ], "tamperedWith": false, @@ -14390,7 +13566,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "7b49c766-e87a-5ea8-8f9c-8215eb1bcedf", "targetHandle": "7b49c766-e87a-5ea8-8f9c-8215eb1bcedf-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14402,7 +13577,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "5d42de9c-0e4f-43e4-921f-27720472a2bb", "targetHandle": "5d42de9c-0e4f-43e4-921f-27720472a2bb-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14414,7 +13588,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "b23717be-a418-5c3c-ae01-fbb964ce03a2", "targetHandle": "b23717be-a418-5c3c-ae01-fbb964ce03a2-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14426,7 +13599,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "6e88187e-41a3-5633-88e9-8c64c7d02afc", "targetHandle": "6e88187e-41a3-5633-88e9-8c64c7d02afc-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14438,7 +13610,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "ebc0c7a6-2e1b-5b5f-a1d3-72370f8b3ba2", "targetHandle": "ebc0c7a6-2e1b-5b5f-a1d3-72370f8b3ba2-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14450,7 +13621,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "6fc74529-1249-5efc-9f80-90ccc41164d8", "targetHandle": "6fc74529-1249-5efc-9f80-90ccc41164d8-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14462,7 +13632,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "a7c458eb-11f4-4128-b240-14ee44614b0e", "targetHandle": "a7c458eb-11f4-4128-b240-14ee44614b0e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14474,7 +13643,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "ce5c2939-9da6-5692-b44e-da9884758194", "targetHandle": "ce5c2939-9da6-5692-b44e-da9884758194-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14486,7 +13654,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "6e5333d5-2d40-45d8-9297-c6c4529826ff", "targetHandle": "6e5333d5-2d40-45d8-9297-c6c4529826ff-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14498,7 +13665,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "0c1c3426-e638-5360-acd8-4206dbc64497", "targetHandle": "0c1c3426-e638-5360-acd8-4206dbc64497-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14510,7 +13676,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "30aacdca-93d6-5a56-b368-e5fa1758d13d", "targetHandle": "30aacdca-93d6-5a56-b368-e5fa1758d13d-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14522,7 +13687,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "e131bcf7-3be4-4cc9-bed4-fbbd2ceb80a3", "targetHandle": "e131bcf7-3be4-4cc9-bed4-fbbd2ceb80a3-6", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14534,7 +13698,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "171cfc3a-39dd-5052-92b2-9808c97cd101", "targetHandle": "171cfc3a-39dd-5052-92b2-9808c97cd101-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14546,7 +13709,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "6e19a706-d22d-5df9-9fff-50637fb9181f", "targetHandle": "6e19a706-d22d-5df9-9fff-50637fb9181f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14558,7 +13720,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "bdffba03-341d-528b-bbf6-a378e8142ff0", "targetHandle": "bdffba03-341d-528b-bbf6-a378e8142ff0-6", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14570,7 +13731,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "2707e454-9efd-5154-a309-4b148ab8c7d2", "targetHandle": "2707e454-9efd-5154-a309-4b148ab8c7d2-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14582,7 +13742,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "2ab92c81-9367-5ca5-8bd2-9179c4fb40bf", "targetHandle": "2ab92c81-9367-5ca5-8bd2-9179c4fb40bf-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14594,7 +13753,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "bdffba03-341d-528b-bbf6-a378e8142ff0", "targetHandle": "bdffba03-341d-528b-bbf6-a378e8142ff0-5", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14606,7 +13764,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "7e646f5c-76b6-5828-8e90-c47162ad6aa5", "targetHandle": "7e646f5c-76b6-5828-8e90-c47162ad6aa5-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14618,7 +13775,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "e794be6f-0b13-54fa-b225-0114ef68a049", "targetHandle": "e794be6f-0b13-54fa-b225-0114ef68a049-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14630,7 +13786,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "8df0fd7d-c0c1-5cb8-9a9d-91e7a81d9c4a", "targetHandle": "8df0fd7d-c0c1-5cb8-9a9d-91e7a81d9c4a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14642,7 +13797,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "d896c3b6-11a0-4db1-9451-5fed6fb21ad0", "targetHandle": "d896c3b6-11a0-4db1-9451-5fed6fb21ad0-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14654,7 +13808,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "2b6ad7fb-3aaf-4761-8cde-a3960f5733c7", "targetHandle": "2b6ad7fb-3aaf-4761-8cde-a3960f5733c7-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14666,7 +13819,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "071c5460-e851-4538-af8a-8063bdd3a6d4", "targetHandle": "071c5460-e851-4538-af8a-8063bdd3a6d4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14678,7 +13830,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "b4ddcbf0-dc98-5f8b-89ad-f9ae37d3b9ff", "targetHandle": "b4ddcbf0-dc98-5f8b-89ad-f9ae37d3b9ff-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14690,7 +13841,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "f8349077-8d91-51a8-a43c-f47a2f4c60d4", "targetHandle": "f8349077-8d91-51a8-a43c-f47a2f4c60d4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14702,7 +13852,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "bbe742c4-413f-5c1f-aa55-2b0ab023c3a3", "targetHandle": "bbe742c4-413f-5c1f-aa55-2b0ab023c3a3-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14714,7 +13863,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "2390e815-d3b4-5def-8fbe-7d129c72a953", "targetHandle": "2390e815-d3b4-5def-8fbe-7d129c72a953-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14726,7 +13874,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "62ab70a6-cdb8-5f45-8557-7f8dd6446097", "targetHandle": "62ab70a6-cdb8-5f45-8557-7f8dd6446097-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14738,7 +13885,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "c9631041-f3e9-518f-a600-614b32e90a76", "targetHandle": "c9631041-f3e9-518f-a600-614b32e90a76-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14750,7 +13896,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "6bb87d6c-915c-556d-8321-83cc43bfeb5f", "targetHandle": "6bb87d6c-915c-556d-8321-83cc43bfeb5f-6", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14762,7 +13907,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "c48e94a6-8547-48e0-b9b4-a5967c428047", "targetHandle": "c48e94a6-8547-48e0-b9b4-a5967c428047-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14774,7 +13918,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "d614db33-b046-52ec-bced-d877e76052fa", "targetHandle": "d614db33-b046-52ec-bced-d877e76052fa-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14786,7 +13929,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "ee3b31a3-c215-4a01-89ad-8b0f80586214", "targetHandle": "ee3b31a3-c215-4a01-89ad-8b0f80586214-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14798,7 +13940,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "6bb87d6c-915c-556d-8321-83cc43bfeb5f", "targetHandle": "6bb87d6c-915c-556d-8321-83cc43bfeb5f-5", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14810,7 +13951,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "5eaa9ba6-2235-45ee-91ef-49c059aef667", "targetHandle": "5eaa9ba6-2235-45ee-91ef-49c059aef667-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14822,7 +13962,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "70a49e17-36f1-5b40-9388-599ba9e9cee4", "targetHandle": "70a49e17-36f1-5b40-9388-599ba9e9cee4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14834,7 +13973,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "51826397-e502-485a-9109-f4ec326fb7b8", "targetHandle": "51826397-e502-485a-9109-f4ec326fb7b8-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14846,7 +13984,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "1c145d7d-e733-5d66-9395-ec3dcf9e808a", "targetHandle": "1c145d7d-e733-5d66-9395-ec3dcf9e808a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14858,7 +13995,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "ce5c2939-9da6-5692-b44e-da9884758194", "targetHandle": "ce5c2939-9da6-5692-b44e-da9884758194-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14870,7 +14006,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "e798b1fe-0815-5b84-b4d4-c79f0909068b", "targetHandle": "e798b1fe-0815-5b84-b4d4-c79f0909068b-5", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14882,7 +14017,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "d614db33-b046-52ec-bced-d877e76052fa", "targetHandle": "d614db33-b046-52ec-bced-d877e76052fa-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14894,7 +14028,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "970247e4-6cc3-5814-be4e-f7255de22daa", "targetHandle": "970247e4-6cc3-5814-be4e-f7255de22daa-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14906,7 +14039,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "c48e94a6-8547-48e0-b9b4-a5967c428047", "targetHandle": "c48e94a6-8547-48e0-b9b4-a5967c428047-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14918,7 +14050,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "e798b1fe-0815-5b84-b4d4-c79f0909068b", "targetHandle": "e798b1fe-0815-5b84-b4d4-c79f0909068b-6", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14930,7 +14061,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "6fc74529-1249-5efc-9f80-90ccc41164d8", "targetHandle": "6fc74529-1249-5efc-9f80-90ccc41164d8-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14942,7 +14072,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "07551eb5-a01c-531f-8f51-c72305d48a7f", "targetHandle": "07551eb5-a01c-531f-8f51-c72305d48a7f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14954,7 +14083,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "470bc244-86bd-4d62-a28b-9962b5d2407a", "targetHandle": "470bc244-86bd-4d62-a28b-9962b5d2407a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14966,7 +14094,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "9fe3afef-95b1-5752-bb08-49eaf549b7f2", "targetHandle": "9fe3afef-95b1-5752-bb08-49eaf549b7f2-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14978,7 +14105,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "63a5de07-155d-4a76-8b3f-9bff93ccb1a4", "targetHandle": "63a5de07-155d-4a76-8b3f-9bff93ccb1a4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -14990,7 +14116,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "target": "86105808-6363-4b8d-ac3b-d83e4bbc1d9f", "targetHandle": "86105808-6363-4b8d-ac3b-d83e4bbc1d9f-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -15014,7 +14139,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -15035,7 +14159,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -15064,7 +14187,6 @@ exports[`Read save file text-as-image.chn 1`] = ` "selected": false, "type": "regularNode", "width": 2068, - "zIndex": 50, }, { "data": { @@ -15102,7 +14224,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -15119,7 +14240,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15157,7 +14277,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -15174,7 +14293,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15191,7 +14309,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15220,7 +14337,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 915, - "zIndex": 50, }, { "data": { @@ -15258,7 +14374,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -15275,7 +14390,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15292,7 +14406,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15310,7 +14423,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15327,7 +14439,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15344,7 +14455,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15382,7 +14492,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -15420,7 +14529,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -15437,7 +14545,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15475,7 +14582,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, { "data": { @@ -15504,7 +14610,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 519, - "zIndex": 50, }, { "data": { @@ -15525,7 +14630,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15544,7 +14648,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15561,7 +14664,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15579,7 +14681,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15597,7 +14698,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15614,7 +14714,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15652,7 +14751,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -15669,7 +14767,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15690,7 +14787,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -15707,7 +14803,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15732,7 +14827,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15749,7 +14843,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15787,7 +14880,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -15804,7 +14896,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15821,7 +14912,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15850,7 +14940,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 1285, - "zIndex": 50, }, { "data": { @@ -15867,7 +14956,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15905,7 +14993,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -15922,7 +15009,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15939,7 +15025,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -15977,7 +15062,6 @@ for chaiNNer.", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -15994,7 +15078,6 @@ for chaiNNer.", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -16032,7 +15115,6 @@ for chaiNNer.", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -16049,7 +15131,6 @@ for chaiNNer.", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -16087,7 +15168,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -16108,7 +15188,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -16125,7 +15204,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -16142,7 +15220,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -16180,7 +15257,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -16205,7 +15281,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -16222,7 +15297,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -16241,7 +15315,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -16266,7 +15339,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -16285,7 +15357,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -16323,7 +15394,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -16361,7 +15431,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -16386,7 +15455,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -16403,7 +15471,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -16441,7 +15508,6 @@ for chaiNNer.", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -16479,7 +15545,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -16496,7 +15561,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -16534,7 +15598,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -16563,7 +15626,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 574, - "zIndex": 50, }, { "data": { @@ -16580,7 +15642,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -16618,7 +15679,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -16656,7 +15716,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -16694,7 +15753,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -16715,7 +15773,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -16732,7 +15789,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -16770,7 +15826,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, ], "tamperedWith": false, @@ -16794,7 +15849,6 @@ exports[`Read save file text-pattern.chn 1`] = ` "target": "3839b3f2-9d2a-43af-857c-71e4f8c17f29", "targetHandle": "3839b3f2-9d2a-43af-857c-71e4f8c17f29-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -16805,7 +15859,6 @@ exports[`Read save file text-pattern.chn 1`] = ` "target": "ad7a95c8-8931-470a-b40d-c39f98cdafd6", "targetHandle": "ad7a95c8-8931-470a-b40d-c39f98cdafd6-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -16816,7 +15869,6 @@ exports[`Read save file text-pattern.chn 1`] = ` "target": "37e5d099-9199-4c51-bffb-c7ea060e6aec", "targetHandle": "37e5d099-9199-4c51-bffb-c7ea060e6aec-3", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -16827,7 +15879,6 @@ exports[`Read save file text-pattern.chn 1`] = ` "target": "37e5d099-9199-4c51-bffb-c7ea060e6aec", "targetHandle": "37e5d099-9199-4c51-bffb-c7ea060e6aec-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -16838,7 +15889,6 @@ exports[`Read save file text-pattern.chn 1`] = ` "target": "3839b3f2-9d2a-43af-857c-71e4f8c17f29", "targetHandle": "3839b3f2-9d2a-43af-857c-71e4f8c17f29-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -16849,7 +15899,6 @@ exports[`Read save file text-pattern.chn 1`] = ` "target": "66dc9cea-5e2c-4358-9dc8-3ae5c17d9e4d", "targetHandle": "66dc9cea-5e2c-4358-9dc8-3ae5c17d9e4d-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -16860,7 +15909,6 @@ exports[`Read save file text-pattern.chn 1`] = ` "target": "37e5d099-9199-4c51-bffb-c7ea060e6aec", "targetHandle": "37e5d099-9199-4c51-bffb-c7ea060e6aec-2", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -16882,7 +15930,6 @@ exports[`Read save file text-pattern.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -16899,7 +15946,6 @@ exports[`Read save file text-pattern.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -16918,7 +15964,6 @@ exports[`Read save file text-pattern.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -16935,7 +15980,6 @@ exports[`Read save file text-pattern.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -16952,7 +15996,6 @@ exports[`Read save file text-pattern.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, ], "tamperedWith": false, @@ -16987,7 +16030,6 @@ exports[`Read save file utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -17008,7 +16050,6 @@ exports[`Read save file utilities.chn 1`] = ` "selected": true, "type": "regularNode", "width": 257, - "zIndex": 70, }, { "data": { @@ -17027,7 +16068,6 @@ exports[`Read save file utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 258, - "zIndex": 50, }, ], "tamperedWith": false, @@ -17052,7 +16092,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "32b947b1-0ce4-5abd-9680-a4f3f36849f2", "targetHandle": "32b947b1-0ce4-5abd-9680-a4f3f36849f2-0", "type": "main", - "zIndex": 99, }, { "animated": false, @@ -17064,7 +16103,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "adedfe61-a1cb-566e-b8a5-ec421bc2810b", "targetHandle": "adedfe61-a1cb-566e-b8a5-ec421bc2810b-0", "type": "main", - "zIndex": 59, }, { "animated": false, @@ -17076,7 +16114,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "3ad6de3d-e6e0-5e73-b116-53641150503e", "targetHandle": "3ad6de3d-e6e0-5e73-b116-53641150503e-0", "type": "main", - "zIndex": 107, }, { "animated": false, @@ -17088,7 +16125,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "b46465b6-4513-5b05-8603-8c8ff2cd25a3", "targetHandle": "b46465b6-4513-5b05-8603-8c8ff2cd25a3-0", "type": "main", - "zIndex": 139, }, { "animated": false, @@ -17100,7 +16136,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "333d55cb-0d44-5350-acba-ed45b00ad999", "targetHandle": "333d55cb-0d44-5350-acba-ed45b00ad999-0", "type": "main", - "zIndex": 103, }, { "animated": false, @@ -17112,7 +16147,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "ec7eb796-f435-569c-80ae-647f8137769b", "targetHandle": "ec7eb796-f435-569c-80ae-647f8137769b-0", "type": "main", - "zIndex": 87, }, { "animated": false, @@ -17124,7 +16158,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "5b3d26bf-e26a-5989-8b70-e204f4edc116", "targetHandle": "5b3d26bf-e26a-5989-8b70-e204f4edc116-0", "type": "main", - "zIndex": 95, }, { "animated": false, @@ -17136,7 +16169,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "58db8e6a-5583-5d4c-9dbd-85f6dfb2e821", "targetHandle": "58db8e6a-5583-5d4c-9dbd-85f6dfb2e821-0", "type": "main", - "zIndex": 119, }, { "animated": false, @@ -17148,7 +16180,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "dea6394b-9c96-5009-8c16-9bcc63cc0df6", "targetHandle": "dea6394b-9c96-5009-8c16-9bcc63cc0df6-0", "type": "main", - "zIndex": 79, }, { "animated": false, @@ -17160,7 +16191,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "b3d86c7e-32ca-5ed9-89d0-33a9aa7c0c85", "targetHandle": "b3d86c7e-32ca-5ed9-89d0-33a9aa7c0c85-0", "type": "main", - "zIndex": 123, }, { "animated": false, @@ -17172,7 +16202,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "142a2211-d6ae-526a-8f43-2a97607f2995", "targetHandle": "142a2211-d6ae-526a-8f43-2a97607f2995-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -17184,7 +16213,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "cb3408ff-ddcc-5fd0-90af-d4b1249a3c70", "targetHandle": "cb3408ff-ddcc-5fd0-90af-d4b1249a3c70-0", "type": "main", - "zIndex": 91, }, { "animated": false, @@ -17196,7 +16224,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "3de2a28d-321a-5e72-bf98-e83ae6601019", "targetHandle": "3de2a28d-321a-5e72-bf98-e83ae6601019-0", "type": "main", - "zIndex": 75, }, { "animated": false, @@ -17208,7 +16235,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "f9af3baa-2f65-57c6-8695-7c34141aeb48", "targetHandle": "f9af3baa-2f65-57c6-8695-7c34141aeb48-0", "type": "main", - "zIndex": 131, }, { "animated": false, @@ -17220,7 +16246,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "322e6c00-055d-54bc-9663-2773a431762d", "targetHandle": "322e6c00-055d-54bc-9663-2773a431762d-0", "type": "main", - "zIndex": 63, }, { "animated": false, @@ -17232,7 +16257,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "074e82df-fcac-5f41-ae71-8f239a1b71ea", "targetHandle": "074e82df-fcac-5f41-ae71-8f239a1b71ea-0", "type": "main", - "zIndex": 55, }, { "animated": false, @@ -17244,7 +16268,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "b3fefb04-6b3d-51ce-ad7a-caea1820978e", "targetHandle": "b3fefb04-6b3d-51ce-ad7a-caea1820978e-0", "type": "main", - "zIndex": 71, }, { "animated": false, @@ -17256,7 +16279,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "c732f0df-ba9f-5c70-a8a8-ec1ad6914880", "targetHandle": "c732f0df-ba9f-5c70-a8a8-ec1ad6914880-0", "type": "main", - "zIndex": 135, }, { "animated": false, @@ -17268,7 +16290,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "f6b90385-d6b9-5c1d-9e37-e21c1d7ce906", "targetHandle": "f6b90385-d6b9-5c1d-9e37-e21c1d7ce906-0", "type": "main", - "zIndex": 115, }, { "animated": false, @@ -17280,7 +16301,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "381935ba-184d-5ed6-a5ac-8cd9c1220df2", "targetHandle": "381935ba-184d-5ed6-a5ac-8cd9c1220df2-0", "type": "main", - "zIndex": 83, }, { "animated": false, @@ -17292,7 +16312,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "cabd3b1d-2f8d-5ac0-8548-75cab47bc290", "targetHandle": "cabd3b1d-2f8d-5ac0-8548-75cab47bc290-0", "type": "main", - "zIndex": 111, }, { "animated": false, @@ -17304,7 +16323,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "d1eca353-69ab-544a-9eee-9c3390dd0bf2", "targetHandle": "d1eca353-69ab-544a-9eee-9c3390dd0bf2-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -17316,7 +16334,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "c8d1290c-d664-43c3-a19a-9a780402e5b3", "targetHandle": "c8d1290c-d664-43c3-a19a-9a780402e5b3-0", "type": "main", - "zIndex": 127, }, { "animated": false, @@ -17328,7 +16345,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "target": "dbdafebf-83f1-562a-a5b7-422a7a15848b", "targetHandle": "dbdafebf-83f1-562a-a5b7-422a7a15848b-0", "type": "main", - "zIndex": 67, }, { "animated": false, @@ -17749,7 +16765,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "selected": false, "type": "regularNode", "width": 2499, - "zIndex": 234, }, { "data": { @@ -17778,7 +16793,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "selected": false, "type": "regularNode", "width": 2499, - "zIndex": 234, }, { "data": { @@ -17807,7 +16821,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "selected": false, "type": "regularNode", "width": 2499, - "zIndex": 234, }, { "data": { @@ -17836,7 +16849,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "selected": false, "type": "regularNode", "width": 2499, - "zIndex": 234, }, { "data": { @@ -17865,7 +16877,6 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "selected": false, "type": "regularNode", "width": 2499, - "zIndex": 234, }, { "data": { @@ -19164,7 +18175,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` exports[`Write save file DiffusePBR.chn 1`] = ` { - "checksum": "14882bc1f7d06a01439af8027d2df031", + "checksum": "452a446346331323f91db42f995f803d", "content": { "edges": [ { @@ -19177,7 +18188,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "ee1d0b69-9502-5b1b-83ea-059fbd902bf8", "targetHandle": "ee1d0b69-9502-5b1b-83ea-059fbd902bf8-1", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19189,7 +18199,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "b9f75dc9-fac1-5756-99d8-ec876f3f8060", "targetHandle": "b9f75dc9-fac1-5756-99d8-ec876f3f8060-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19201,7 +18210,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "2b8cc774-602b-56d8-98f9-7c7416a0dbe2", "targetHandle": "2b8cc774-602b-56d8-98f9-7c7416a0dbe2-3", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19213,7 +18221,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "bc7cf213-bca4-533c-911c-89b8becadfd1", "targetHandle": "bc7cf213-bca4-533c-911c-89b8becadfd1-1", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19225,7 +18232,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "286abf98-b573-5e8f-842e-21c42193376c", "targetHandle": "286abf98-b573-5e8f-842e-21c42193376c-1", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19237,7 +18243,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "b2965cbc-5afd-5292-a636-7865116c4be6", "targetHandle": "b2965cbc-5afd-5292-a636-7865116c4be6-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19249,7 +18254,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "229603c5-0c28-5b21-a745-64ffd080d8e8", "targetHandle": "229603c5-0c28-5b21-a745-64ffd080d8e8-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19260,7 +18264,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "48cc852a-829a-5a49-8bf3-3dbf32d4dde9", "targetHandle": "48cc852a-829a-5a49-8bf3-3dbf32d4dde9-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19272,7 +18275,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "c57fca2b-4dbb-4bc5-9c43-4804f4ae9945", "targetHandle": "c57fca2b-4dbb-4bc5-9c43-4804f4ae9945-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19284,7 +18286,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "0e5176d9-0e4b-5d93-a177-5b4a5ad996ca", "targetHandle": "0e5176d9-0e4b-5d93-a177-5b4a5ad996ca-3", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19296,7 +18297,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "b2965cbc-5afd-5292-a636-7865116c4be6", "targetHandle": "b2965cbc-5afd-5292-a636-7865116c4be6-3", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19308,7 +18308,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "a89d758d-c7ad-5796-aa77-a7412bf06685", "targetHandle": "a89d758d-c7ad-5796-aa77-a7412bf06685-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19320,7 +18319,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "2b8cc774-602b-56d8-98f9-7c7416a0dbe2", "targetHandle": "2b8cc774-602b-56d8-98f9-7c7416a0dbe2-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19332,7 +18330,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "51e90ad3-58a1-50c8-9ef7-69ec56081a6c", "targetHandle": "51e90ad3-58a1-50c8-9ef7-69ec56081a6c-1", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19343,7 +18340,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "829792e2-ad18-5544-9021-82380dea1faf", "targetHandle": "829792e2-ad18-5544-9021-82380dea1faf-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19355,7 +18351,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "d15ff92c-a55b-5de9-ada8-9014ceb39824", "targetHandle": "d15ff92c-a55b-5de9-ada8-9014ceb39824-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19367,7 +18362,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "85735831-521c-59bc-9e05-ff0da92ba1a9", "targetHandle": "85735831-521c-59bc-9e05-ff0da92ba1a9-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19379,7 +18373,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "720ce1f5-c796-5909-9422-ca1c5a94ec2c", "targetHandle": "720ce1f5-c796-5909-9422-ca1c5a94ec2c-1", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19391,7 +18384,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "19a4170e-d109-5674-a66b-b7c9299e7e1b", "targetHandle": "19a4170e-d109-5674-a66b-b7c9299e7e1b-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19403,7 +18395,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "3371a5fd-1e69-5456-bb9a-ac8cf8f3d34b", "targetHandle": "3371a5fd-1e69-5456-bb9a-ac8cf8f3d34b-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19415,7 +18406,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "a5b45bc8-d7fb-57f2-8796-2c0243c3f69d", "targetHandle": "a5b45bc8-d7fb-57f2-8796-2c0243c3f69d-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19427,7 +18417,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "48c1df00-a7dd-4fb6-b3c9-80a20cf8b1b3", "targetHandle": "48c1df00-a7dd-4fb6-b3c9-80a20cf8b1b3-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19439,7 +18428,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "abb98de4-502e-572c-b5dc-3ac1278a3bc7", "targetHandle": "abb98de4-502e-572c-b5dc-3ac1278a3bc7-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19450,7 +18438,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "a22f5c58-2cdd-5607-9608-c6ea34057811", "targetHandle": "a22f5c58-2cdd-5607-9608-c6ea34057811-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19462,7 +18449,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "e1cec3e7-13ab-58ef-8bfe-99b5cfff743d", "targetHandle": "e1cec3e7-13ab-58ef-8bfe-99b5cfff743d-3", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19474,7 +18460,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "01d9b233-83d7-5388-aa11-4a2beaeb8dcc", "targetHandle": "01d9b233-83d7-5388-aa11-4a2beaeb8dcc-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19486,7 +18471,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "a22f5c58-2cdd-5607-9608-c6ea34057811", "targetHandle": "a22f5c58-2cdd-5607-9608-c6ea34057811-3", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19498,7 +18482,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "e1cec3e7-13ab-58ef-8bfe-99b5cfff743d", "targetHandle": "e1cec3e7-13ab-58ef-8bfe-99b5cfff743d-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19510,7 +18493,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "19c97d47-b9ea-54b9-b1dc-365d62307e88", "targetHandle": "19c97d47-b9ea-54b9-b1dc-365d62307e88-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19521,7 +18503,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "03dbb26c-b40d-4a18-8837-1e974b274a6a", "targetHandle": "03dbb26c-b40d-4a18-8837-1e974b274a6a-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -19533,7 +18514,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "target": "0e5176d9-0e4b-5d93-a177-5b4a5ad996ca", "targetHandle": "0e5176d9-0e4b-5d93-a177-5b4a5ad996ca-0", "type": "main", - "zIndex": 51, }, ], "nodes": [ @@ -19552,7 +18532,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -19577,7 +18556,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 287, - "zIndex": 52, }, { "data": { @@ -19611,7 +18589,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -19634,7 +18611,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 258, - "zIndex": 52, }, { "data": { @@ -19651,7 +18627,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -19668,7 +18643,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -19685,7 +18659,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -19711,7 +18684,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -19745,7 +18717,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -19765,7 +18736,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -19788,7 +18758,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 258, - "zIndex": 52, }, { "data": { @@ -19805,7 +18774,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -19826,7 +18794,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -19852,7 +18819,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -19878,7 +18844,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -19899,7 +18864,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -19916,7 +18880,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -19949,7 +18912,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -19969,7 +18931,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 279, - "zIndex": 52, }, { "data": { @@ -19986,7 +18947,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -20005,7 +18965,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -20039,7 +18998,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -20059,7 +19017,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 279, - "zIndex": 52, }, { "data": { @@ -20082,7 +19039,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 258, - "zIndex": 52, }, { "data": { @@ -20108,7 +19064,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -20125,7 +19080,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -20148,7 +19102,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 258, - "zIndex": 52, }, { "data": { @@ -20169,7 +19122,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -20203,7 +19155,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -20229,7 +19180,6 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 52, }, { "data": { @@ -20259,7 +19209,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` exports[`Write save file add noise with seed edge.chn 1`] = ` { - "checksum": "ee320f566444d1ea6d1f24e60832f625", + "checksum": "73a461ab844f4e32acf7d962721ca02d", "content": { "edges": [ { @@ -20271,7 +19221,6 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` "target": "fbc19ef9-0b32-52a8-94f4-ef1be1a9063f", "targetHandle": "fbc19ef9-0b32-52a8-94f4-ef1be1a9063f-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -20282,7 +19231,6 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` "target": "545c6463-b978-4987-a3c3-a44a774184be", "targetHandle": "545c6463-b978-4987-a3c3-a44a774184be-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -20293,7 +19241,6 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` "target": "e67d0c33-3f14-40c7-8bce-f6c67cfee6bc", "targetHandle": "e67d0c33-3f14-40c7-8bce-f6c67cfee6bc-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -20304,7 +19251,6 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` "target": "4b44b642-8003-41d7-9fed-6d7bac837b1c", "targetHandle": "4b44b642-8003-41d7-9fed-6d7bac837b1c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -20315,7 +19261,6 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` "target": "545c6463-b978-4987-a3c3-a44a774184be", "targetHandle": "545c6463-b978-4987-a3c3-a44a774184be-4", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -20334,7 +19279,6 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -20356,7 +19300,6 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -20375,7 +19318,6 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -20392,7 +19334,6 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` "selected": true, "type": "regularNode", "width": 240, - "zIndex": 70, }, { "data": { @@ -20411,7 +19352,6 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, ], "viewport": { @@ -20426,7 +19366,7 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` exports[`Write save file big ol test.chn 1`] = ` { - "checksum": "06f27cce6ced3dae502357891978a1c7", + "checksum": "ce2733e06fe7fe6efcba5b8c8cfeda43", "content": { "edges": [ { @@ -20438,7 +19378,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "25e041c5-4bc8-4caf-b42d-051e40b4af8f", "targetHandle": "25e041c5-4bc8-4caf-b42d-051e40b4af8f-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20449,7 +19388,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "29e944f4-6c54-4f21-ac9f-502b499666cf", "targetHandle": "29e944f4-6c54-4f21-ac9f-502b499666cf-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20460,7 +19398,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "9d585b34-0ff9-454d-8641-08e4fdcd7dcc", "targetHandle": "9d585b34-0ff9-454d-8641-08e4fdcd7dcc-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20471,7 +19408,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "4bcc72a7-9c71-4242-b060-7cc97eb8d2c1", "targetHandle": "4bcc72a7-9c71-4242-b060-7cc97eb8d2c1-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20482,7 +19418,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "f840ac55-5d59-4a39-8315-2e9b962e66b4", "targetHandle": "f840ac55-5d59-4a39-8315-2e9b962e66b4-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20493,7 +19428,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "25e041c5-4bc8-4caf-b42d-051e40b4af8f", "targetHandle": "25e041c5-4bc8-4caf-b42d-051e40b4af8f-1", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20504,7 +19438,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "29e944f4-6c54-4f21-ac9f-502b499666cf", "targetHandle": "29e944f4-6c54-4f21-ac9f-502b499666cf-1", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20515,7 +19448,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "a725b9e8-4b52-45ac-876e-b6bed86fefc2", "targetHandle": "a725b9e8-4b52-45ac-876e-b6bed86fefc2-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20526,7 +19458,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "ee576e23-b360-5fd5-b50e-024e1177dee4", "targetHandle": "ee576e23-b360-5fd5-b50e-024e1177dee4-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20537,7 +19468,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "681c81d7-5ff5-40bb-96e0-a56adeffe09d", "targetHandle": "681c81d7-5ff5-40bb-96e0-a56adeffe09d-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20548,7 +19478,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "6091ce37-2a1b-4f6d-b5a8-0c7ad0c1caed", "targetHandle": "6091ce37-2a1b-4f6d-b5a8-0c7ad0c1caed-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20559,7 +19488,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "bd114a6b-1c75-4009-8989-b35fc4ba1f74", "targetHandle": "bd114a6b-1c75-4009-8989-b35fc4ba1f74-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20570,7 +19498,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "34807ee8-0710-5bbf-8412-324e8bcaa540", "targetHandle": "34807ee8-0710-5bbf-8412-324e8bcaa540-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20581,7 +19508,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "95eba862-eae0-4460-99bd-8251a4777df8", "targetHandle": "95eba862-eae0-4460-99bd-8251a4777df8-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20592,7 +19518,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "95eba862-eae0-4460-99bd-8251a4777df8", "targetHandle": "95eba862-eae0-4460-99bd-8251a4777df8-1", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20603,7 +19528,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "79dbff25-fde6-4c5c-9214-26a5d5cc1632", "targetHandle": "79dbff25-fde6-4c5c-9214-26a5d5cc1632-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20614,7 +19538,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "e029ec9d-61b3-4872-9d0f-1d730bd4fa24", "targetHandle": "e029ec9d-61b3-4872-9d0f-1d730bd4fa24-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20625,7 +19548,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "9223f402-191d-432d-9643-a41fdaa78a51", "targetHandle": "9223f402-191d-432d-9643-a41fdaa78a51-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20636,7 +19558,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "00b245a9-e07c-4611-abb2-368c4126b47c", "targetHandle": "00b245a9-e07c-4611-abb2-368c4126b47c-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20647,7 +19568,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "8c1642f7-52d6-4682-851d-a6a1dbdb6ebc", "targetHandle": "8c1642f7-52d6-4682-851d-a6a1dbdb6ebc-3", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20658,7 +19578,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "8c1642f7-52d6-4682-851d-a6a1dbdb6ebc", "targetHandle": "8c1642f7-52d6-4682-851d-a6a1dbdb6ebc-0", "type": "main", - "zIndex": 1001, }, { "animated": false, @@ -20680,7 +19599,6 @@ exports[`Write save file big ol test.chn 1`] = ` "target": "1cb633d8-20a1-4076-a9d9-589fde1ce979", "targetHandle": "1cb633d8-20a1-4076-a9d9-589fde1ce979-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -21036,7 +19954,6 @@ exports[`Write save file big ol test.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -21067,7 +19984,7 @@ exports[`Write save file big ol test.chn 1`] = ` exports[`Write save file blend-images.chn 1`] = ` { - "checksum": "cba0e6e5204c66387f4d13cb7b096f96", + "checksum": "44e5e492b142e45532fe921035f63936", "content": { "edges": [ { @@ -21080,7 +19997,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "d0edc99a-b391-4666-a983-aca377b0fd42", "targetHandle": "d0edc99a-b391-4666-a983-aca377b0fd42-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21092,7 +20008,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "49dbe9a3-6980-5680-9c12-dde282d87976", "targetHandle": "49dbe9a3-6980-5680-9c12-dde282d87976-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21104,7 +20019,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "08e62602-bb44-4a6b-9ffc-8a3e3b0a0b6b", "targetHandle": "08e62602-bb44-4a6b-9ffc-8a3e3b0a0b6b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21116,7 +20030,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "ce67fb6d-a0e3-5f10-ab7f-00c899a0600e", "targetHandle": "ce67fb6d-a0e3-5f10-ab7f-00c899a0600e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21128,7 +20041,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "466e2d07-f66c-5e84-83a4-eeea0b370e6b", "targetHandle": "466e2d07-f66c-5e84-83a4-eeea0b370e6b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21140,7 +20052,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "30a521e6-0c41-52fd-a91a-eb52a5b4ed26", "targetHandle": "30a521e6-0c41-52fd-a91a-eb52a5b4ed26-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21152,7 +20063,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "b08d411b-fa61-5fb1-8696-59f9d66bee19", "targetHandle": "b08d411b-fa61-5fb1-8696-59f9d66bee19-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21164,7 +20074,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "9d7dc394-6f8f-516a-a505-2b89be73dfc7", "targetHandle": "9d7dc394-6f8f-516a-a505-2b89be73dfc7-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21176,7 +20085,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "db376dea-9810-5dc4-9254-38b27ade390f", "targetHandle": "db376dea-9810-5dc4-9254-38b27ade390f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21188,7 +20096,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "1c205d65-21d3-51c5-b95d-bd635c99afc1", "targetHandle": "1c205d65-21d3-51c5-b95d-bd635c99afc1-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21200,7 +20107,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "b1dc4581-7bca-4a4b-82ac-5569e9522b48", "targetHandle": "b1dc4581-7bca-4a4b-82ac-5569e9522b48-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21212,7 +20118,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "f06243f3-9159-5b6e-9025-3d77a152a40e", "targetHandle": "f06243f3-9159-5b6e-9025-3d77a152a40e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21224,7 +20129,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "edce7ae4-f447-5e06-8089-41f20dbef527", "targetHandle": "edce7ae4-f447-5e06-8089-41f20dbef527-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21236,7 +20140,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "9e5aafe6-7ec8-56c4-86b6-496fcb346982", "targetHandle": "9e5aafe6-7ec8-56c4-86b6-496fcb346982-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21248,7 +20151,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "a462c90c-c8ad-59ed-a4b9-cd64dff637f9", "targetHandle": "a462c90c-c8ad-59ed-a4b9-cd64dff637f9-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21260,7 +20162,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "faac2e35-3c90-531a-93fa-62f61b918287", "targetHandle": "faac2e35-3c90-531a-93fa-62f61b918287-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21272,7 +20173,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "2ce384f9-5b17-53cd-a476-e725b06db80f", "targetHandle": "2ce384f9-5b17-53cd-a476-e725b06db80f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21284,7 +20184,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "05102aaa-020f-5b1e-957e-ac6cc8ffa07a", "targetHandle": "05102aaa-020f-5b1e-957e-ac6cc8ffa07a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21296,7 +20195,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "8ab4ef25-bb4c-5093-9b30-bc36846e7940", "targetHandle": "8ab4ef25-bb4c-5093-9b30-bc36846e7940-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21308,7 +20206,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "0384b95d-0272-5586-abbd-51e5dded4756", "targetHandle": "0384b95d-0272-5586-abbd-51e5dded4756-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21320,7 +20217,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "30a521e6-0c41-52fd-a91a-eb52a5b4ed26", "targetHandle": "30a521e6-0c41-52fd-a91a-eb52a5b4ed26-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21332,7 +20228,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "f746c97c-9479-5981-aee9-3e7a2e36b89e", "targetHandle": "f746c97c-9479-5981-aee9-3e7a2e36b89e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21344,7 +20239,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "5235ee89-0e92-4b01-be95-403e454ef624", "targetHandle": "5235ee89-0e92-4b01-be95-403e454ef624-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21356,7 +20250,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "872a0e3e-f78f-5bda-8f8c-ca0fabeadc72", "targetHandle": "872a0e3e-f78f-5bda-8f8c-ca0fabeadc72-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21368,7 +20261,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "5c452e0a-bab5-5f50-99b0-9c55b409bfb5", "targetHandle": "5c452e0a-bab5-5f50-99b0-9c55b409bfb5-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21380,7 +20272,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "8a1aa166-5b8d-51cd-a7ec-40614cc85141", "targetHandle": "8a1aa166-5b8d-51cd-a7ec-40614cc85141-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21392,7 +20283,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "c08a6147-a600-41f6-aae7-317310925626", "targetHandle": "c08a6147-a600-41f6-aae7-317310925626-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21404,7 +20294,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "ce67fb6d-a0e3-5f10-ab7f-00c899a0600e", "targetHandle": "ce67fb6d-a0e3-5f10-ab7f-00c899a0600e-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21416,7 +20305,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "943b61e5-4141-52bc-a453-381fd1a25b7e", "targetHandle": "943b61e5-4141-52bc-a453-381fd1a25b7e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21428,7 +20316,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "ff6fe323-2cb6-571e-a48e-3b21e4d578f4", "targetHandle": "ff6fe323-2cb6-571e-a48e-3b21e4d578f4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21440,7 +20327,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "8c266d97-a989-4555-88af-362c010183ae", "targetHandle": "8c266d97-a989-4555-88af-362c010183ae-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21452,7 +20338,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "e6664c39-f73d-5b4a-808b-f3d32930210b", "targetHandle": "e6664c39-f73d-5b4a-808b-f3d32930210b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21464,7 +20349,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "95bd307e-0922-437d-b247-2047f42d2641", "targetHandle": "95bd307e-0922-437d-b247-2047f42d2641-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21476,7 +20360,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "b5d5ed3f-5403-4217-b6d0-94c83b80a263", "targetHandle": "b5d5ed3f-5403-4217-b6d0-94c83b80a263-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21488,7 +20371,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "152ea347-0275-5e42-9b64-5bbce73bb1ad", "targetHandle": "152ea347-0275-5e42-9b64-5bbce73bb1ad-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21500,7 +20382,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "063d0a41-4bd9-519c-8844-3e2238ee5ebd", "targetHandle": "063d0a41-4bd9-519c-8844-3e2238ee5ebd-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21512,7 +20393,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "29deceb2-f33f-55ba-aff2-cdfbe2138177", "targetHandle": "29deceb2-f33f-55ba-aff2-cdfbe2138177-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21524,7 +20404,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "5c73dcee-9dd2-52df-9847-c760020b8fae", "targetHandle": "5c73dcee-9dd2-52df-9847-c760020b8fae-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21536,7 +20415,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "f14f78bb-09c5-4dd1-bc7a-10e0c6ff75a8", "targetHandle": "f14f78bb-09c5-4dd1-bc7a-10e0c6ff75a8-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21548,7 +20426,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "3cf17b0f-4834-510c-81d5-c7af724ebe5b", "targetHandle": "3cf17b0f-4834-510c-81d5-c7af724ebe5b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21560,7 +20437,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "ff6fe323-2cb6-571e-a48e-3b21e4d578f4", "targetHandle": "ff6fe323-2cb6-571e-a48e-3b21e4d578f4-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21572,7 +20448,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "dcca9a6d-731b-53a8-bad4-496f9df98572", "targetHandle": "dcca9a6d-731b-53a8-bad4-496f9df98572-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21584,7 +20459,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "c0b296a0-ccc2-4857-971d-7ebe8eff6283", "targetHandle": "c0b296a0-ccc2-4857-971d-7ebe8eff6283-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21596,7 +20470,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "9ba50fbc-9015-5ea9-819e-51f6c1379bec", "targetHandle": "9ba50fbc-9015-5ea9-819e-51f6c1379bec-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21608,7 +20481,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "7069b979-b854-4a53-8cf2-9b65c4ac9377", "targetHandle": "7069b979-b854-4a53-8cf2-9b65c4ac9377-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21620,7 +20492,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "a462c90c-c8ad-59ed-a4b9-cd64dff637f9", "targetHandle": "a462c90c-c8ad-59ed-a4b9-cd64dff637f9-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21632,7 +20503,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "c41f34e1-3a78-5d1c-92a3-56edf27bceeb", "targetHandle": "c41f34e1-3a78-5d1c-92a3-56edf27bceeb-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21644,7 +20514,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "e6e9a0dc-7de2-54ab-bc0d-4a7bbf340d7d", "targetHandle": "e6e9a0dc-7de2-54ab-bc0d-4a7bbf340d7d-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21656,7 +20525,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "3c248c07-64bb-5957-ba0d-2cb156088f6e", "targetHandle": "3c248c07-64bb-5957-ba0d-2cb156088f6e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21668,7 +20536,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "8c64bff2-cb4a-588d-87e0-e59fc18148e4", "targetHandle": "8c64bff2-cb4a-588d-87e0-e59fc18148e4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21680,7 +20547,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "3adb8c2e-7a40-5290-a87d-0786cf7d82b1", "targetHandle": "3adb8c2e-7a40-5290-a87d-0786cf7d82b1-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21692,7 +20558,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "95f976c4-162b-5dd6-bb7b-a121c710b827", "targetHandle": "95f976c4-162b-5dd6-bb7b-a121c710b827-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21704,7 +20569,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "e06e639b-59b9-5bca-9cb2-6ab53f80a8d7", "targetHandle": "e06e639b-59b9-5bca-9cb2-6ab53f80a8d7-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21716,7 +20580,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "7d6354d7-0cc4-55ab-9d08-29decb5f6ba2", "targetHandle": "7d6354d7-0cc4-55ab-9d08-29decb5f6ba2-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21728,7 +20591,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "2360c51a-3d28-47d0-95f6-d0889da54166", "targetHandle": "2360c51a-3d28-47d0-95f6-d0889da54166-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21740,7 +20602,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "ca809262-acfc-5d73-9169-685a9f44f77b", "targetHandle": "ca809262-acfc-5d73-9169-685a9f44f77b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21752,7 +20613,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "05102aaa-020f-5b1e-957e-ac6cc8ffa07a", "targetHandle": "05102aaa-020f-5b1e-957e-ac6cc8ffa07a-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21764,7 +20624,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "9ba50fbc-9015-5ea9-819e-51f6c1379bec", "targetHandle": "9ba50fbc-9015-5ea9-819e-51f6c1379bec-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21776,7 +20635,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "13dc50ea-1bf5-5098-b3da-8828b7501e56", "targetHandle": "13dc50ea-1bf5-5098-b3da-8828b7501e56-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21788,7 +20646,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "063d0a41-4bd9-519c-8844-3e2238ee5ebd", "targetHandle": "063d0a41-4bd9-519c-8844-3e2238ee5ebd-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21800,7 +20657,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "1c205d65-21d3-51c5-b95d-bd635c99afc1", "targetHandle": "1c205d65-21d3-51c5-b95d-bd635c99afc1-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21812,7 +20668,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "d8c62f89-c1a2-530c-b84f-671746d58033", "targetHandle": "d8c62f89-c1a2-530c-b84f-671746d58033-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21824,7 +20679,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "b1ae0890-f342-576a-8b3f-3f4b99ca0292", "targetHandle": "b1ae0890-f342-576a-8b3f-3f4b99ca0292-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21836,7 +20690,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "5184f1c1-ecb0-5278-ba58-cda9a4fda353", "targetHandle": "5184f1c1-ecb0-5278-ba58-cda9a4fda353-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21848,7 +20701,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "42d956ea-d3dd-56ba-9f67-28c4b9bacaea", "targetHandle": "42d956ea-d3dd-56ba-9f67-28c4b9bacaea-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21860,7 +20712,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "f25bf600-ee3f-527e-8776-a9ec92e024f1", "targetHandle": "f25bf600-ee3f-527e-8776-a9ec92e024f1-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21872,7 +20723,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "61b24f58-dcc5-5bc4-a4ae-a1226a00089f", "targetHandle": "61b24f58-dcc5-5bc4-a4ae-a1226a00089f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21884,7 +20734,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "19d03e71-29ca-508c-bc0b-2b82f90443d7", "targetHandle": "19d03e71-29ca-508c-bc0b-2b82f90443d7-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21896,7 +20745,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "f336742e-b322-53b2-a248-52dc88b66087", "targetHandle": "f336742e-b322-53b2-a248-52dc88b66087-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21908,7 +20756,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "e6664c39-f73d-5b4a-808b-f3d32930210b", "targetHandle": "e6664c39-f73d-5b4a-808b-f3d32930210b-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21920,7 +20767,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "6affc096-041d-4080-be5d-ad26e6ea7070", "targetHandle": "6affc096-041d-4080-be5d-ad26e6ea7070-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21932,7 +20778,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "6d711236-aa3e-537f-b2bf-67dc9a198abf", "targetHandle": "6d711236-aa3e-537f-b2bf-67dc9a198abf-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21944,7 +20789,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "937ffb29-ead7-46c2-8327-e317f5eedec1", "targetHandle": "937ffb29-ead7-46c2-8327-e317f5eedec1-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21956,7 +20800,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "bdf914e5-ded7-5165-9216-aeb121072fd3", "targetHandle": "bdf914e5-ded7-5165-9216-aeb121072fd3-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21968,7 +20811,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "8c266d97-a989-4555-88af-362c010183ae", "targetHandle": "8c266d97-a989-4555-88af-362c010183ae-2", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21980,7 +20822,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "bea752a4-4191-57e6-9697-cc83ae38c450", "targetHandle": "bea752a4-4191-57e6-9697-cc83ae38c450-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -21992,7 +20833,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "3d924af8-87dd-427a-8b44-0901733cad24", "targetHandle": "3d924af8-87dd-427a-8b44-0901733cad24-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22004,7 +20844,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "1b551468-2d49-4388-a625-05f3883706c4", "targetHandle": "1b551468-2d49-4388-a625-05f3883706c4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22016,7 +20855,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "2377d325-63f9-5cd9-9ec4-637782d947c1", "targetHandle": "2377d325-63f9-5cd9-9ec4-637782d947c1-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22028,7 +20866,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "4cb7bb4a-869f-5ea4-968b-35f14ac29465", "targetHandle": "4cb7bb4a-869f-5ea4-968b-35f14ac29465-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22040,7 +20877,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "72674163-3288-5106-82f7-09ef7905547c", "targetHandle": "72674163-3288-5106-82f7-09ef7905547c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22052,7 +20888,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "67cc083d-552b-5956-a5c8-26d7d1564bb6", "targetHandle": "67cc083d-552b-5956-a5c8-26d7d1564bb6-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22064,7 +20899,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "10f34f32-334d-4c08-a902-fe19d1e5bf7e", "targetHandle": "10f34f32-334d-4c08-a902-fe19d1e5bf7e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22076,7 +20910,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "88f4e9c0-c376-46e5-a871-f871ed6bffcf", "targetHandle": "88f4e9c0-c376-46e5-a871-f871ed6bffcf-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22088,7 +20921,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "d69c3ac5-dab9-55a1-b5f5-f37332fe924b", "targetHandle": "d69c3ac5-dab9-55a1-b5f5-f37332fe924b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22100,7 +20932,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "58d4abe6-e164-5296-98a4-076c894b0973", "targetHandle": "58d4abe6-e164-5296-98a4-076c894b0973-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22112,7 +20943,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "ca809262-acfc-5d73-9169-685a9f44f77b", "targetHandle": "ca809262-acfc-5d73-9169-685a9f44f77b-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22124,7 +20954,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "303787bd-80e8-531a-af34-cadc80ab471c", "targetHandle": "303787bd-80e8-531a-af34-cadc80ab471c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22136,7 +20965,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "92dcbb19-d1a7-566a-8d15-7192b4fb941f", "targetHandle": "92dcbb19-d1a7-566a-8d15-7192b4fb941f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22148,7 +20976,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "faac2e35-3c90-531a-93fa-62f61b918287", "targetHandle": "faac2e35-3c90-531a-93fa-62f61b918287-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22160,7 +20987,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "6e657c82-833c-552f-bbb9-725e3dfd8026", "targetHandle": "6e657c82-833c-552f-bbb9-725e3dfd8026-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22172,7 +20998,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "50eda7ad-aca7-5443-a66c-5fb15c763749", "targetHandle": "50eda7ad-aca7-5443-a66c-5fb15c763749-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22184,7 +21009,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "a0c76b05-3ca0-5cee-ba03-d0ca2d811124", "targetHandle": "a0c76b05-3ca0-5cee-ba03-d0ca2d811124-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22196,7 +21020,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "87587135-be6f-518b-b492-59494619334b", "targetHandle": "87587135-be6f-518b-b492-59494619334b-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22208,7 +21031,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "8ab4ef25-bb4c-5093-9b30-bc36846e7940", "targetHandle": "8ab4ef25-bb4c-5093-9b30-bc36846e7940-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22220,7 +21042,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "a6707bd6-fbee-4330-9ba4-0638835810c6", "targetHandle": "a6707bd6-fbee-4330-9ba4-0638835810c6-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22232,7 +21053,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "152ea347-0275-5e42-9b64-5bbce73bb1ad", "targetHandle": "152ea347-0275-5e42-9b64-5bbce73bb1ad-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22244,7 +21064,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "bea752a4-4191-57e6-9697-cc83ae38c450", "targetHandle": "bea752a4-4191-57e6-9697-cc83ae38c450-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22256,7 +21075,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "a0c76b05-3ca0-5cee-ba03-d0ca2d811124", "targetHandle": "a0c76b05-3ca0-5cee-ba03-d0ca2d811124-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22268,7 +21086,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "0ccf196f-dd60-4a9e-8f02-97ee71a67a8c", "targetHandle": "0ccf196f-dd60-4a9e-8f02-97ee71a67a8c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22280,7 +21097,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "9c37118a-fe1e-5209-8822-680c3fdc252c", "targetHandle": "9c37118a-fe1e-5209-8822-680c3fdc252c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22292,7 +21108,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "dd38a15d-f44f-5d07-a12a-c3f33dfa148c", "targetHandle": "dd38a15d-f44f-5d07-a12a-c3f33dfa148c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22304,7 +21119,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "f06243f3-9159-5b6e-9025-3d77a152a40e", "targetHandle": "f06243f3-9159-5b6e-9025-3d77a152a40e-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22316,7 +21130,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "ba465b5c-6ba6-5f4c-a2f8-e7a0afece353", "targetHandle": "ba465b5c-6ba6-5f4c-a2f8-e7a0afece353-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22328,7 +21141,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "6e657c82-833c-552f-bbb9-725e3dfd8026", "targetHandle": "6e657c82-833c-552f-bbb9-725e3dfd8026-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22340,7 +21152,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "9bdb1f1c-07af-5e68-bda2-7b90a26eda8a", "targetHandle": "9bdb1f1c-07af-5e68-bda2-7b90a26eda8a-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22352,7 +21163,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "872a0e3e-f78f-5bda-8f8c-ca0fabeadc72", "targetHandle": "872a0e3e-f78f-5bda-8f8c-ca0fabeadc72-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22364,7 +21174,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "4f095d15-a3b2-5a04-979d-7a023068939a", "targetHandle": "4f095d15-a3b2-5a04-979d-7a023068939a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22376,7 +21185,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "8c64bff2-cb4a-588d-87e0-e59fc18148e4", "targetHandle": "8c64bff2-cb4a-588d-87e0-e59fc18148e4-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22388,7 +21196,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "e1bb2284-8ca7-5bf8-9558-85cfc679e203", "targetHandle": "e1bb2284-8ca7-5bf8-9558-85cfc679e203-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22400,7 +21207,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "2dd52e63-21c7-56c9-979c-f2d0805dd9a2", "targetHandle": "2dd52e63-21c7-56c9-979c-f2d0805dd9a2-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22412,7 +21218,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "a3d8c974-521f-584f-83dd-0894d1b08cc2", "targetHandle": "a3d8c974-521f-584f-83dd-0894d1b08cc2-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22424,7 +21229,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "d85f25ff-e850-5c2a-a194-f5813096b2fe", "targetHandle": "d85f25ff-e850-5c2a-a194-f5813096b2fe-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22436,7 +21240,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "c8cd241c-8308-44af-8824-f59440f6c401", "targetHandle": "c8cd241c-8308-44af-8824-f59440f6c401-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22448,7 +21251,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "3c248c07-64bb-5957-ba0d-2cb156088f6e", "targetHandle": "3c248c07-64bb-5957-ba0d-2cb156088f6e-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22460,7 +21262,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "29deceb2-f33f-55ba-aff2-cdfbe2138177", "targetHandle": "29deceb2-f33f-55ba-aff2-cdfbe2138177-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22472,7 +21273,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "9bdb1f1c-07af-5e68-bda2-7b90a26eda8a", "targetHandle": "9bdb1f1c-07af-5e68-bda2-7b90a26eda8a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22484,7 +21284,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "5184f1c1-ecb0-5278-ba58-cda9a4fda353", "targetHandle": "5184f1c1-ecb0-5278-ba58-cda9a4fda353-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22496,7 +21295,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "8a3d449d-f835-57e3-a0c9-8b0fc5e30786", "targetHandle": "8a3d449d-f835-57e3-a0c9-8b0fc5e30786-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22508,7 +21306,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "6ca66233-f789-5d45-920b-225d5052e5d8", "targetHandle": "6ca66233-f789-5d45-920b-225d5052e5d8-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22520,7 +21317,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "8b9c6ca6-28ac-573c-9053-0290b36dcffd", "targetHandle": "8b9c6ca6-28ac-573c-9053-0290b36dcffd-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22532,7 +21328,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "84a38567-5a73-545d-85ff-c4562c9268ba", "targetHandle": "84a38567-5a73-545d-85ff-c4562c9268ba-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22544,7 +21339,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "dcca9a6d-731b-53a8-bad4-496f9df98572", "targetHandle": "dcca9a6d-731b-53a8-bad4-496f9df98572-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22556,7 +21350,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "d4ec258d-9aa4-5c6e-91d1-52915bdabf77", "targetHandle": "d4ec258d-9aa4-5c6e-91d1-52915bdabf77-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22568,7 +21361,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "9e5aafe6-7ec8-56c4-86b6-496fcb346982", "targetHandle": "9e5aafe6-7ec8-56c4-86b6-496fcb346982-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22580,7 +21372,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "8b9c6ca6-28ac-573c-9053-0290b36dcffd", "targetHandle": "8b9c6ca6-28ac-573c-9053-0290b36dcffd-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22592,7 +21383,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "3873c531-577b-420b-bbb1-91d248937653", "targetHandle": "3873c531-577b-420b-bbb1-91d248937653-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22604,7 +21394,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "b4cb3a7e-683a-45e1-be09-0f5232f2a127", "targetHandle": "b4cb3a7e-683a-45e1-be09-0f5232f2a127-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22616,7 +21405,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "702e52db-0546-5af8-9669-e3a669d9006c", "targetHandle": "702e52db-0546-5af8-9669-e3a669d9006c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22628,7 +21416,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "87587135-be6f-518b-b492-59494619334b", "targetHandle": "87587135-be6f-518b-b492-59494619334b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22640,7 +21427,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "4f095d15-a3b2-5a04-979d-7a023068939a", "targetHandle": "4f095d15-a3b2-5a04-979d-7a023068939a-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22652,7 +21438,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "cc7e3f23-131a-57bf-891b-41a235b49d6f", "targetHandle": "cc7e3f23-131a-57bf-891b-41a235b49d6f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22664,7 +21449,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "5c73dcee-9dd2-52df-9847-c760020b8fae", "targetHandle": "5c73dcee-9dd2-52df-9847-c760020b8fae-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22676,7 +21460,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "0d9c91f7-b8d3-516a-a981-91bbe608d3e8", "targetHandle": "0d9c91f7-b8d3-516a-a981-91bbe608d3e8-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22688,7 +21471,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "57762c20-3243-5726-86b2-8caea4d93e2c", "targetHandle": "57762c20-3243-5726-86b2-8caea4d93e2c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22700,7 +21482,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "db376dea-9810-5dc4-9254-38b27ade390f", "targetHandle": "db376dea-9810-5dc4-9254-38b27ade390f-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22712,7 +21493,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "3ad48d3c-c0f1-521d-9c20-e40a5e830f1b", "targetHandle": "3ad48d3c-c0f1-521d-9c20-e40a5e830f1b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22724,7 +21504,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "bdf914e5-ded7-5165-9216-aeb121072fd3", "targetHandle": "bdf914e5-ded7-5165-9216-aeb121072fd3-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22736,7 +21515,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "209bfca4-d869-4952-a92f-ee17627941a6", "targetHandle": "209bfca4-d869-4952-a92f-ee17627941a6-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22748,7 +21526,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "2377d325-63f9-5cd9-9ec4-637782d947c1", "targetHandle": "2377d325-63f9-5cd9-9ec4-637782d947c1-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22760,7 +21537,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "ea301323-7d8d-4218-90f2-f5ee9ff38779", "targetHandle": "ea301323-7d8d-4218-90f2-f5ee9ff38779-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22772,7 +21548,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "fbd7f6fa-4ed4-4e06-936f-4a1bd15e5714", "targetHandle": "fbd7f6fa-4ed4-4e06-936f-4a1bd15e5714-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22784,7 +21559,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "d8c62f89-c1a2-530c-b84f-671746d58033", "targetHandle": "d8c62f89-c1a2-530c-b84f-671746d58033-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22796,7 +21570,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "6c95ef9c-ca0b-56e5-bcd4-cbf09a7750a4", "targetHandle": "6c95ef9c-ca0b-56e5-bcd4-cbf09a7750a4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22808,7 +21581,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "ab11996e-a157-5d43-b998-8c51e8cc6416", "targetHandle": "ab11996e-a157-5d43-b998-8c51e8cc6416-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22820,7 +21592,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "0d9c91f7-b8d3-516a-a981-91bbe608d3e8", "targetHandle": "0d9c91f7-b8d3-516a-a981-91bbe608d3e8-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22832,7 +21603,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "6ed5551c-93c6-423d-a35e-8de0e256d6dd", "targetHandle": "6ed5551c-93c6-423d-a35e-8de0e256d6dd-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22844,7 +21614,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "14ffb36c-d16e-5957-9252-eab1cae4aedc", "targetHandle": "14ffb36c-d16e-5957-9252-eab1cae4aedc-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22856,7 +21625,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "31144933-efe0-5a43-bcb6-0255f67a7244", "targetHandle": "31144933-efe0-5a43-bcb6-0255f67a7244-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22868,7 +21636,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "070b8305-218e-513d-a656-35b501778eda", "targetHandle": "070b8305-218e-513d-a656-35b501778eda-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22880,7 +21647,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "9ea3dcda-9b2d-58ce-a461-4742f126bf75", "targetHandle": "9ea3dcda-9b2d-58ce-a461-4742f126bf75-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22892,7 +21658,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "466e2d07-f66c-5e84-83a4-eeea0b370e6b", "targetHandle": "466e2d07-f66c-5e84-83a4-eeea0b370e6b-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22904,7 +21669,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "bebea3c7-3eb6-5928-abf7-aa295e83b79f", "targetHandle": "bebea3c7-3eb6-5928-abf7-aa295e83b79f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22916,7 +21680,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "95f976c4-162b-5dd6-bb7b-a121c710b827", "targetHandle": "95f976c4-162b-5dd6-bb7b-a121c710b827-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22928,7 +21691,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "2ce384f9-5b17-53cd-a476-e725b06db80f", "targetHandle": "2ce384f9-5b17-53cd-a476-e725b06db80f-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22940,7 +21702,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "9aa48b1b-1995-4823-ab70-6d84632f7b7e", "targetHandle": "9aa48b1b-1995-4823-ab70-6d84632f7b7e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22952,7 +21713,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "9d7dc394-6f8f-516a-a505-2b89be73dfc7", "targetHandle": "9d7dc394-6f8f-516a-a505-2b89be73dfc7-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22964,7 +21724,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "d4cce8b5-e667-550c-95f9-2a3caa64c726", "targetHandle": "d4cce8b5-e667-550c-95f9-2a3caa64c726-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22976,7 +21735,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "9ef76e81-dd8f-5bd0-b6c0-a4d191b45c20", "targetHandle": "9ef76e81-dd8f-5bd0-b6c0-a4d191b45c20-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -22988,7 +21746,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "28ba84af-c1a9-4b1e-a3e2-89bc0e2f2e13", "targetHandle": "28ba84af-c1a9-4b1e-a3e2-89bc0e2f2e13-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23000,7 +21757,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "498232ce-8e49-534d-b6b0-ab81c775e701", "targetHandle": "498232ce-8e49-534d-b6b0-ab81c775e701-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23012,7 +21768,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "b1ae0890-f342-576a-8b3f-3f4b99ca0292", "targetHandle": "b1ae0890-f342-576a-8b3f-3f4b99ca0292-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23024,7 +21779,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "686d008c-2aa7-562f-a80c-3f7a6895ecd8", "targetHandle": "686d008c-2aa7-562f-a80c-3f7a6895ecd8-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23036,7 +21790,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "95bd307e-0922-437d-b247-2047f42d2641", "targetHandle": "95bd307e-0922-437d-b247-2047f42d2641-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23048,7 +21801,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "50eda7ad-aca7-5443-a66c-5fb15c763749", "targetHandle": "50eda7ad-aca7-5443-a66c-5fb15c763749-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23060,7 +21812,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "08dd10e6-7e36-47c3-ab20-547a2a87e732", "targetHandle": "08dd10e6-7e36-47c3-ab20-547a2a87e732-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23072,7 +21823,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "c992ab70-5bec-598e-9054-e5ce559da27c", "targetHandle": "c992ab70-5bec-598e-9054-e5ce559da27c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23084,7 +21834,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "67cc083d-552b-5956-a5c8-26d7d1564bb6", "targetHandle": "67cc083d-552b-5956-a5c8-26d7d1564bb6-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23096,7 +21845,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "74462fbf-cd0a-534f-b678-4ea5a5348358", "targetHandle": "74462fbf-cd0a-534f-b678-4ea5a5348358-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23108,7 +21856,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "9ef76e81-dd8f-5bd0-b6c0-a4d191b45c20", "targetHandle": "9ef76e81-dd8f-5bd0-b6c0-a4d191b45c20-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23120,7 +21867,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "547dbd8b-0405-492e-be77-96270fb102dc", "targetHandle": "547dbd8b-0405-492e-be77-96270fb102dc-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23132,7 +21878,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "10c1a088-c603-5590-a0dc-ace804594155", "targetHandle": "10c1a088-c603-5590-a0dc-ace804594155-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23144,7 +21889,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "d69c3ac5-dab9-55a1-b5f5-f37332fe924b", "targetHandle": "d69c3ac5-dab9-55a1-b5f5-f37332fe924b-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23156,7 +21900,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "2f340c1e-bdcc-5a5f-bac6-9d8c1f665522", "targetHandle": "2f340c1e-bdcc-5a5f-bac6-9d8c1f665522-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23168,7 +21911,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "58d4abe6-e164-5296-98a4-076c894b0973", "targetHandle": "58d4abe6-e164-5296-98a4-076c894b0973-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23180,7 +21922,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "a3d8c974-521f-584f-83dd-0894d1b08cc2", "targetHandle": "a3d8c974-521f-584f-83dd-0894d1b08cc2-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23192,7 +21933,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "19d03e71-29ca-508c-bc0b-2b82f90443d7", "targetHandle": "19d03e71-29ca-508c-bc0b-2b82f90443d7-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23204,7 +21944,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "de3d3c59-05f2-44d7-8813-67d8fd44e386", "targetHandle": "de3d3c59-05f2-44d7-8813-67d8fd44e386-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23216,7 +21955,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "bfdf987f-dbbb-5631-b4bc-ec8cef3c8c95", "targetHandle": "bfdf987f-dbbb-5631-b4bc-ec8cef3c8c95-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23228,7 +21966,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "c8317619-13a5-50ca-887a-22842f77b26c", "targetHandle": "c8317619-13a5-50ca-887a-22842f77b26c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23240,7 +21977,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "472af423-52b1-5bd6-a39d-2846baea7a6a", "targetHandle": "472af423-52b1-5bd6-a39d-2846baea7a6a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23252,7 +21988,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "43cb2253-aa00-47f0-971f-f86170af92d7", "targetHandle": "43cb2253-aa00-47f0-971f-f86170af92d7-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23264,7 +21999,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "c10779f6-7bb2-5461-bb19-e86014d2f535", "targetHandle": "c10779f6-7bb2-5461-bb19-e86014d2f535-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23276,7 +22010,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "0ed55b60-cffc-5011-94e5-45edeeacb125", "targetHandle": "0ed55b60-cffc-5011-94e5-45edeeacb125-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -23288,7 +22021,6 @@ exports[`Write save file blend-images.chn 1`] = ` "target": "59593de7-1167-55c1-9be4-ebbcb623b9eb", "targetHandle": "59593de7-1167-55c1-9be4-ebbcb623b9eb-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -23314,7 +22046,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 502, - "zIndex": 50, }, { "data": { @@ -23331,7 +22062,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23356,7 +22086,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23381,7 +22110,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23402,7 +22130,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -23419,7 +22146,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23441,7 +22167,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 243, - "zIndex": 50, }, { "data": { @@ -23458,7 +22183,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23483,7 +22207,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23500,7 +22223,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23517,7 +22239,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23534,7 +22255,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23555,7 +22275,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -23572,7 +22291,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23597,7 +22315,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23620,7 +22337,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 258, - "zIndex": 50, }, { "data": { @@ -23645,7 +22361,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23662,7 +22377,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23687,7 +22401,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23704,7 +22417,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23721,7 +22433,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23746,7 +22457,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23763,7 +22473,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23788,7 +22497,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23813,7 +22521,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23830,7 +22537,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23847,7 +22553,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23864,7 +22569,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23889,7 +22593,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23910,7 +22613,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -23927,7 +22629,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23944,7 +22645,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -23965,7 +22665,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -23990,7 +22689,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24007,7 +22705,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24024,7 +22721,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24042,7 +22738,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24059,7 +22754,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24084,7 +22778,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24105,7 +22798,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -24126,7 +22818,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -24143,7 +22834,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24164,7 +22854,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -24189,7 +22878,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24214,7 +22902,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24239,7 +22926,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24256,7 +22942,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24273,7 +22958,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24291,7 +22975,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24316,7 +22999,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24333,7 +23015,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24354,7 +23035,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -24379,7 +23059,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24397,7 +23076,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24416,7 +23094,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24441,7 +23118,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24462,7 +23138,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -24479,7 +23154,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24496,7 +23170,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24514,7 +23187,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24531,7 +23203,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24556,7 +23227,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24573,7 +23243,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24590,7 +23259,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24608,7 +23276,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24625,7 +23292,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24642,7 +23308,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24663,7 +23328,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -24681,7 +23345,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24706,7 +23369,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24731,7 +23393,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24752,7 +23413,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24769,7 +23429,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24786,7 +23445,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24811,7 +23469,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24836,7 +23493,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24855,7 +23511,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24880,7 +23535,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24897,7 +23551,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24914,7 +23567,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24935,7 +23587,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 243, - "zIndex": 50, }, { "data": { @@ -24960,7 +23611,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -24985,7 +23635,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25002,7 +23651,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25027,7 +23675,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25052,7 +23699,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25069,7 +23715,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25094,7 +23739,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25119,7 +23763,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25140,7 +23783,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -25165,7 +23807,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25190,7 +23831,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25215,7 +23855,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25240,7 +23879,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25257,7 +23895,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25280,7 +23917,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 258, - "zIndex": 50, }, { "data": { @@ -25301,7 +23937,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -25318,7 +23953,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25343,7 +23977,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25360,7 +23993,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25377,7 +24009,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25394,7 +24025,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25411,7 +24041,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25434,7 +24063,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 258, - "zIndex": 50, }, { "data": { @@ -25459,7 +24087,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25484,7 +24111,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25504,7 +24130,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25525,7 +24150,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -25542,7 +24166,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25559,7 +24182,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25576,7 +24198,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25593,7 +24214,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25610,7 +24230,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25627,7 +24246,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25644,7 +24262,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25669,7 +24286,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25689,7 +24305,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25706,7 +24321,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25731,7 +24345,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25752,7 +24365,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25775,7 +24387,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 258, - "zIndex": 50, }, { "data": { @@ -25792,7 +24403,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25809,7 +24419,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25830,7 +24439,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -25855,7 +24463,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25873,7 +24480,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25898,7 +24504,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25923,7 +24528,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25946,7 +24550,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 258, - "zIndex": 50, }, { "data": { @@ -25971,7 +24574,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -25988,7 +24590,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26005,7 +24606,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26022,7 +24622,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26039,7 +24638,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26064,7 +24662,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26085,7 +24682,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -26106,7 +24702,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -26123,7 +24718,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26148,7 +24742,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26165,7 +24758,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26186,7 +24778,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -26203,7 +24794,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26223,7 +24813,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26248,7 +24837,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26265,7 +24853,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26290,7 +24877,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, ], "viewport": { @@ -26305,7 +24891,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. exports[`Write save file box-median-blur.chn 1`] = ` { - "checksum": "cbc68bacb9e1af4e16846bb25502daa9", + "checksum": "3a6c957dbe8b257d6cc66663bdb281f8", "content": { "edges": [ { @@ -26317,7 +24903,6 @@ exports[`Write save file box-median-blur.chn 1`] = ` "target": "e7c3d964-716d-43d7-83b9-83825c35a7e2", "targetHandle": "e7c3d964-716d-43d7-83b9-83825c35a7e2-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -26339,7 +24924,6 @@ exports[`Write save file box-median-blur.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -26358,7 +24942,6 @@ exports[`Write save file box-median-blur.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, ], "viewport": { @@ -26373,7 +24956,7 @@ exports[`Write save file box-median-blur.chn 1`] = ` exports[`Write save file canny-edge-detection.chn 1`] = ` { - "checksum": "1c98b81bffb6983c881f27aea8bccabb", + "checksum": "528d6d0c0e679468e2644d3d0bdf8e23", "content": { "edges": [ { @@ -26385,7 +24968,6 @@ exports[`Write save file canny-edge-detection.chn 1`] = ` "target": "d6f6e8e6-3699-44eb-95c1-bb9bd951a32b", "targetHandle": "d6f6e8e6-3699-44eb-95c1-bb9bd951a32b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -26396,7 +24978,6 @@ exports[`Write save file canny-edge-detection.chn 1`] = ` "target": "b82af4e7-689e-46a2-873f-d41bc570401e", "targetHandle": "b82af4e7-689e-46a2-873f-d41bc570401e-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -26415,7 +24996,6 @@ exports[`Write save file canny-edge-detection.chn 1`] = ` "selected": false, "type": "regularNode", "width": 241, - "zIndex": 50, }, { "data": { @@ -26435,7 +25015,6 @@ exports[`Write save file canny-edge-detection.chn 1`] = ` "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -26452,7 +25031,6 @@ exports[`Write save file canny-edge-detection.chn 1`] = ` "selected": false, "type": "regularNode", "width": 259, - "zIndex": 50, }, ], "viewport": { @@ -26467,7 +25045,7 @@ exports[`Write save file canny-edge-detection.chn 1`] = ` exports[`Write save file color-transfer.chn 1`] = ` { - "checksum": "8aa2b5f1fb31056dac3646e479f5e31b", + "checksum": "c088ae7e1ba770854354447c4722d471", "content": { "edges": [ { @@ -26480,7 +25058,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "target": "59014e6d-daf9-5408-b22e-d18f2bc18391", "targetHandle": "59014e6d-daf9-5408-b22e-d18f2bc18391-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -26492,7 +25069,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "target": "8c1f65ff-705a-41ca-8f1c-ac279992fc31", "targetHandle": "8c1f65ff-705a-41ca-8f1c-ac279992fc31-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -26504,7 +25080,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "target": "8c1f65ff-705a-41ca-8f1c-ac279992fc31", "targetHandle": "8c1f65ff-705a-41ca-8f1c-ac279992fc31-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -26516,7 +25091,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "target": "25bfd8d5-6d73-587c-b2f0-87a826a71fb7", "targetHandle": "25bfd8d5-6d73-587c-b2f0-87a826a71fb7-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -26528,7 +25102,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "target": "9eb55cdc-d726-4083-88e3-ebd044f37741", "targetHandle": "9eb55cdc-d726-4083-88e3-ebd044f37741-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -26540,7 +25113,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "target": "16e2c71e-10a9-5bb2-b40b-364f3219e02e", "targetHandle": "16e2c71e-10a9-5bb2-b40b-364f3219e02e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -26552,7 +25124,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "target": "069c71c1-22f5-4edb-b371-4be9f69a9f6f", "targetHandle": "069c71c1-22f5-4edb-b371-4be9f69a9f6f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -26564,7 +25135,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "target": "8a33b1c6-d292-4b1f-98d3-45cc61cc632d", "targetHandle": "8a33b1c6-d292-4b1f-98d3-45cc61cc632d-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -26576,7 +25146,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "target": "90818a44-d1a1-5924-83fa-b793c3968580", "targetHandle": "90818a44-d1a1-5924-83fa-b793c3968580-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -26588,7 +25157,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "target": "59014e6d-daf9-5408-b22e-d18f2bc18391", "targetHandle": "59014e6d-daf9-5408-b22e-d18f2bc18391-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -26600,7 +25168,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "target": "90818a44-d1a1-5924-83fa-b793c3968580", "targetHandle": "90818a44-d1a1-5924-83fa-b793c3968580-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -26612,7 +25179,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "target": "1c234225-2bc8-4e62-96ad-aa49af1f89f9", "targetHandle": "1c234225-2bc8-4e62-96ad-aa49af1f89f9-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -26624,7 +25190,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "target": "25bfd8d5-6d73-587c-b2f0-87a826a71fb7", "targetHandle": "25bfd8d5-6d73-587c-b2f0-87a826a71fb7-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -26636,7 +25201,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "target": "938d2d20-da23-4812-9fa3-a5dba2cc259c", "targetHandle": "938d2d20-da23-4812-9fa3-a5dba2cc259c-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -26655,7 +25219,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26672,7 +25235,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26689,7 +25251,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26712,7 +25273,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26735,7 +25295,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26752,7 +25311,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26775,7 +25333,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26797,7 +25354,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26814,7 +25370,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26841,7 +25396,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -26860,7 +25414,6 @@ exports[`Write save file color-transfer.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, ], "viewport": { @@ -26875,7 +25428,7 @@ exports[`Write save file color-transfer.chn 1`] = ` exports[`Write save file combine-rgba.chn 1`] = ` { - "checksum": "a39de727bfc6e56f17be9f67adf99fe4", + "checksum": "4d26d4723150d7717ee349d222181803", "content": { "edges": [ { @@ -26887,7 +25440,6 @@ exports[`Write save file combine-rgba.chn 1`] = ` "target": "ef80bf34-d15b-407d-9e2b-7413af33af10", "targetHandle": "ef80bf34-d15b-407d-9e2b-7413af33af10-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -26898,7 +25450,6 @@ exports[`Write save file combine-rgba.chn 1`] = ` "target": "ef80bf34-d15b-407d-9e2b-7413af33af10", "targetHandle": "ef80bf34-d15b-407d-9e2b-7413af33af10-3", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -26909,7 +25460,6 @@ exports[`Write save file combine-rgba.chn 1`] = ` "target": "ef80bf34-d15b-407d-9e2b-7413af33af10", "targetHandle": "ef80bf34-d15b-407d-9e2b-7413af33af10-1", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -26920,7 +25470,6 @@ exports[`Write save file combine-rgba.chn 1`] = ` "target": "ef80bf34-d15b-407d-9e2b-7413af33af10", "targetHandle": "ef80bf34-d15b-407d-9e2b-7413af33af10-2", "type": "main", - "zIndex": 69, }, ], "nodes": [ @@ -26939,7 +25488,6 @@ exports[`Write save file combine-rgba.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -26956,7 +25504,6 @@ exports[`Write save file combine-rgba.chn 1`] = ` "selected": true, "type": "regularNode", "width": 242, - "zIndex": 70, }, ], "viewport": { @@ -26971,7 +25518,7 @@ exports[`Write save file combine-rgba.chn 1`] = ` exports[`Write save file convert-onnx-update.chn 1`] = ` { - "checksum": "5bbe82af0d09c49d67e2e84dd4dc6b38", + "checksum": "e02e86fb33cf9c70a22a24ea5ea63d3f", "content": { "edges": [ { @@ -26983,7 +25530,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "target": "d4d4b060-3c0b-50a9-90ba-9364be167ad1", "targetHandle": "d4d4b060-3c0b-50a9-90ba-9364be167ad1-2", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -26994,7 +25540,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "target": "aa88453f-4bcc-4e7f-8110-be60d3ff9630", "targetHandle": "aa88453f-4bcc-4e7f-8110-be60d3ff9630-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -27005,7 +25550,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "target": "61b0e121-afbc-44c2-a207-e893f924d481", "targetHandle": "61b0e121-afbc-44c2-a207-e893f924d481-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -27016,7 +25560,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "target": "340606cc-7ca2-4289-93ae-2a3a02efa160", "targetHandle": "340606cc-7ca2-4289-93ae-2a3a02efa160-3", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -27027,7 +25570,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "target": "4e2ecaf1-9419-4f22-a029-8d9ddc16b3ab", "targetHandle": "4e2ecaf1-9419-4f22-a029-8d9ddc16b3ab-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -27038,7 +25580,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "target": "e8b0956f-93a5-4622-a03b-399d5219cfb4", "targetHandle": "e8b0956f-93a5-4622-a03b-399d5219cfb4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -27049,7 +25590,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "target": "fe0d57e9-1de0-4238-ac2e-a188167ceba0", "targetHandle": "fe0d57e9-1de0-4238-ac2e-a188167ceba0-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -27060,7 +25600,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "target": "de61827f-8ed5-452e-ab35-80ce382ff894", "targetHandle": "de61827f-8ed5-452e-ab35-80ce382ff894-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -27071,7 +25610,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "target": "e8b0956f-93a5-4622-a03b-399d5219cfb4", "targetHandle": "e8b0956f-93a5-4622-a03b-399d5219cfb4-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -27082,7 +25620,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "target": "de61827f-8ed5-452e-ab35-80ce382ff894", "targetHandle": "de61827f-8ed5-452e-ab35-80ce382ff894-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -27093,7 +25630,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "target": "7bfe7220-07f6-5190-8ee7-7d9284ab8595", "targetHandle": "7bfe7220-07f6-5190-8ee7-7d9284ab8595-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -27104,7 +25640,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "target": "5eb6218d-4983-5023-8ab3-ef9380d6e85f", "targetHandle": "5eb6218d-4983-5023-8ab3-ef9380d6e85f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -27115,7 +25650,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "target": "340606cc-7ca2-4289-93ae-2a3a02efa160", "targetHandle": "340606cc-7ca2-4289-93ae-2a3a02efa160-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -27126,7 +25660,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "target": "d4d4b060-3c0b-50a9-90ba-9364be167ad1", "targetHandle": "d4d4b060-3c0b-50a9-90ba-9364be167ad1-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -27148,7 +25681,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 241, - "zIndex": 50, }, { "data": { @@ -27165,7 +25697,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 241, - "zIndex": 50, }, { "data": { @@ -27184,7 +25715,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 265, - "zIndex": 50, }, { "data": { @@ -27204,7 +25734,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -27223,7 +25752,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -27242,7 +25770,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -27262,7 +25789,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -27281,7 +25807,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -27300,7 +25825,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -27319,7 +25843,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -27339,7 +25862,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -27359,7 +25881,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -27378,7 +25899,6 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, ], "viewport": { @@ -27393,7 +25913,7 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` exports[`Write save file convert-to-ncnn.chn 1`] = ` { - "checksum": "8b7a040d325bbda5f9fb8bca141054db", + "checksum": "61c3a23bbaf8d00e8a342494bb87f2bb", "content": { "edges": [ { @@ -27405,7 +25925,6 @@ exports[`Write save file convert-to-ncnn.chn 1`] = ` "target": "9256866c-414a-4bd7-8b66-804922ac8875", "targetHandle": "9256866c-414a-4bd7-8b66-804922ac8875-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -27416,7 +25935,6 @@ exports[`Write save file convert-to-ncnn.chn 1`] = ` "target": "3e1a29d5-06de-4ab7-ac98-480c88156a73", "targetHandle": "3e1a29d5-06de-4ab7-ac98-480c88156a73-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -27435,7 +25953,6 @@ exports[`Write save file convert-to-ncnn.chn 1`] = ` "selected": false, "type": "regularNode", "width": 256, - "zIndex": 50, }, { "data": { @@ -27454,7 +25971,6 @@ exports[`Write save file convert-to-ncnn.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -27471,7 +25987,6 @@ exports[`Write save file convert-to-ncnn.chn 1`] = ` "selected": true, "type": "regularNode", "width": 256, - "zIndex": 70, }, ], "viewport": { @@ -27486,7 +26001,7 @@ exports[`Write save file convert-to-ncnn.chn 1`] = ` exports[`Write save file copy-to-clipboard.chn 1`] = ` { - "checksum": "84ccdb64066a8d7bc69f225bffb19cb3", + "checksum": "f70ff211133438e3cbd383229717b34c", "content": { "edges": [ { @@ -27498,7 +26013,6 @@ exports[`Write save file copy-to-clipboard.chn 1`] = ` "target": "bd03ae2b-2de9-4ce6-a80e-0deef9d77d32", "targetHandle": "bd03ae2b-2de9-4ce6-a80e-0deef9d77d32-0", "type": "main", - "zIndex": 69, }, ], "nodes": [ @@ -27517,7 +26031,6 @@ exports[`Write save file copy-to-clipboard.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -27534,7 +26047,6 @@ exports[`Write save file copy-to-clipboard.chn 1`] = ` "selected": true, "type": "regularNode", "width": 242, - "zIndex": 70, }, ], "viewport": { @@ -27549,7 +26061,7 @@ exports[`Write save file copy-to-clipboard.chn 1`] = ` exports[`Write save file create-color-old.chn 1`] = ` { - "checksum": "13c83c4cfa13c53bab50f964cc47bb69", + "checksum": "6dd5eccfd7b5e69342ccadab0c349d26", "content": { "edges": [ { @@ -27561,7 +26073,6 @@ exports[`Write save file create-color-old.chn 1`] = ` "target": "89e2294a-770c-5274-9f4b-1c96ed144bab", "targetHandle": "89e2294a-770c-5274-9f4b-1c96ed144bab-3", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -27572,7 +26083,6 @@ exports[`Write save file create-color-old.chn 1`] = ` "target": "6a8066aa-25f9-58e0-bfc3-a9cd91e67550", "targetHandle": "6a8066aa-25f9-58e0-bfc3-a9cd91e67550-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -27623,7 +26133,6 @@ exports[`Write save file create-color-old.chn 1`] = ` "selected": true, "type": "regularNode", "width": 240, - "zIndex": 70, }, { "data": { @@ -27642,7 +26151,6 @@ exports[`Write save file create-color-old.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, { "data": { @@ -27662,7 +26170,6 @@ exports[`Write save file create-color-old.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, { "data": { @@ -27681,7 +26188,6 @@ exports[`Write save file create-color-old.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, { "data": { @@ -27700,7 +26206,6 @@ exports[`Write save file create-color-old.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, { "data": { @@ -27719,7 +26224,6 @@ exports[`Write save file create-color-old.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, { "data": { @@ -27740,7 +26244,6 @@ exports[`Write save file create-color-old.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, { "data": { @@ -27759,7 +26262,6 @@ exports[`Write save file create-color-old.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, { "data": { @@ -27778,7 +26280,6 @@ exports[`Write save file create-color-old.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, ], "viewport": { @@ -27793,7 +26294,7 @@ exports[`Write save file create-color-old.chn 1`] = ` exports[`Write save file create-edges.chn 1`] = ` { - "checksum": "6518030175e18e7a44cffac588cdde10", + "checksum": "4ec2af8d0435a95f35d2aa7b16d8b2a6", "content": { "edges": [ { @@ -27805,7 +26306,6 @@ exports[`Write save file create-edges.chn 1`] = ` "target": "a9449ffa-52c3-4a22-b824-659358f2a9fb", "targetHandle": "a9449ffa-52c3-4a22-b824-659358f2a9fb-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -27816,7 +26316,6 @@ exports[`Write save file create-edges.chn 1`] = ` "target": "bb851127-3fa8-43d2-802d-681adfac4b2a", "targetHandle": "bb851127-3fa8-43d2-802d-681adfac4b2a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -27827,7 +26326,6 @@ exports[`Write save file create-edges.chn 1`] = ` "target": "53fee0f6-caa5-453d-a7d0-2693d86e430b", "targetHandle": "53fee0f6-caa5-453d-a7d0-2693d86e430b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -27838,7 +26336,6 @@ exports[`Write save file create-edges.chn 1`] = ` "target": "870aea58-e427-4546-a060-5945d6c03f88", "targetHandle": "870aea58-e427-4546-a060-5945d6c03f88-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -27849,7 +26346,6 @@ exports[`Write save file create-edges.chn 1`] = ` "target": "edefdf21-167e-4c29-bcf9-8d44100bb492", "targetHandle": "edefdf21-167e-4c29-bcf9-8d44100bb492-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -27860,7 +26356,6 @@ exports[`Write save file create-edges.chn 1`] = ` "target": "81287c1c-a451-44c1-bff9-c9a9a8729302", "targetHandle": "81287c1c-a451-44c1-bff9-c9a9a8729302-0", "type": "main", - "zIndex": 69, }, ], "nodes": [ @@ -27881,7 +26376,6 @@ exports[`Write save file create-edges.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -27898,7 +26392,6 @@ exports[`Write save file create-edges.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -27915,7 +26408,6 @@ exports[`Write save file create-edges.chn 1`] = ` "selected": true, "type": "regularNode", "width": 242, - "zIndex": 70, }, { "data": { @@ -27935,7 +26427,6 @@ exports[`Write save file create-edges.chn 1`] = ` "selected": false, "type": "regularNode", "width": 283, - "zIndex": 50, }, { "data": { @@ -27958,7 +26449,6 @@ exports[`Write save file create-edges.chn 1`] = ` "selected": false, "type": "regularNode", "width": 283, - "zIndex": 50, }, { "data": { @@ -27978,7 +26468,6 @@ exports[`Write save file create-edges.chn 1`] = ` "selected": false, "type": "regularNode", "width": 283, - "zIndex": 50, }, { "data": { @@ -27995,7 +26484,6 @@ exports[`Write save file create-edges.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, ], "viewport": { @@ -28010,7 +26498,7 @@ exports[`Write save file create-edges.chn 1`] = ` exports[`Write save file crop.chn 1`] = ` { - "checksum": "0b4c5e70912043d2a798afee6d2d1d67", + "checksum": "a85e2e9f77a9b682955aabe6aa7e3746", "content": { "edges": [ { @@ -28023,7 +26511,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "50e0cb59-8753-48b3-b066-3362ebaef284", "targetHandle": "50e0cb59-8753-48b3-b066-3362ebaef284-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28035,7 +26522,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "200fda2b-d814-544a-94fe-0ecae0f34874", "targetHandle": "200fda2b-d814-544a-94fe-0ecae0f34874-8", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28047,7 +26533,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "f1f02b17-20b7-5b43-819a-7d70efd58b64", "targetHandle": "f1f02b17-20b7-5b43-819a-7d70efd58b64-8", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28059,7 +26544,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "d31bf6ea-1f44-5d63-b403-9c347d51e1fa", "targetHandle": "d31bf6ea-1f44-5d63-b403-9c347d51e1fa-8", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28071,7 +26555,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "c395f71d-3d16-4d51-960b-3646bfbf0c30", "targetHandle": "c395f71d-3d16-4d51-960b-3646bfbf0c30-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28083,7 +26566,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "f1f02b17-20b7-5b43-819a-7d70efd58b64", "targetHandle": "f1f02b17-20b7-5b43-819a-7d70efd58b64-7", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28095,7 +26577,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "ce4d1137-383b-50db-b943-eed115406f8d", "targetHandle": "ce4d1137-383b-50db-b943-eed115406f8d-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28107,7 +26588,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "17673d57-c5f4-425e-9e1f-4515ba2fa2bf", "targetHandle": "17673d57-c5f4-425e-9e1f-4515ba2fa2bf-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28119,7 +26599,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "3b5c6894-fd4b-4c2a-8b61-f20c2e0f86dc", "targetHandle": "3b5c6894-fd4b-4c2a-8b61-f20c2e0f86dc-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28131,7 +26610,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "bee6630a-a34b-5b7e-ad45-d07601361e83", "targetHandle": "bee6630a-a34b-5b7e-ad45-d07601361e83-6", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28142,7 +26620,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "7d2a550a-c069-5fc2-bb72-394772c7097f", "targetHandle": "7d2a550a-c069-5fc2-bb72-394772c7097f-7", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28154,7 +26631,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "165278dd-7b35-59ba-9134-03577c693d72", "targetHandle": "165278dd-7b35-59ba-9134-03577c693d72-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28166,7 +26642,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "33081f93-69cc-48d5-b73f-bb21edb3b561", "targetHandle": "33081f93-69cc-48d5-b73f-bb21edb3b561-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28178,7 +26653,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "be5b442c-91d2-5588-a616-617ea327f272", "targetHandle": "be5b442c-91d2-5588-a616-617ea327f272-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28190,7 +26664,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "200fda2b-d814-544a-94fe-0ecae0f34874", "targetHandle": "200fda2b-d814-544a-94fe-0ecae0f34874-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28202,7 +26675,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "37b3e27c-c315-4da5-9595-14a078997150", "targetHandle": "37b3e27c-c315-4da5-9595-14a078997150-4", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28214,7 +26686,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "4c643103-c8c3-5718-8349-b3ed5cf8cfa6", "targetHandle": "4c643103-c8c3-5718-8349-b3ed5cf8cfa6-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28226,7 +26697,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "4fd01ecb-b1da-5228-852d-e3fd8ffd9a3f", "targetHandle": "4fd01ecb-b1da-5228-852d-e3fd8ffd9a3f-3", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28238,7 +26708,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "6558bf94-05b3-5df0-ba52-de5147c63324", "targetHandle": "6558bf94-05b3-5df0-ba52-de5147c63324-7", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28250,7 +26719,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "151f8aeb-f11b-4243-8dec-4dc90b46d277", "targetHandle": "151f8aeb-f11b-4243-8dec-4dc90b46d277-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28262,7 +26730,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "6558bf94-05b3-5df0-ba52-de5147c63324", "targetHandle": "6558bf94-05b3-5df0-ba52-de5147c63324-4", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28274,7 +26741,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "8a0325fa-26f3-5b95-aa05-1f9b3474b07f", "targetHandle": "8a0325fa-26f3-5b95-aa05-1f9b3474b07f-5", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28286,7 +26752,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "6558bf94-05b3-5df0-ba52-de5147c63324", "targetHandle": "6558bf94-05b3-5df0-ba52-de5147c63324-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28298,7 +26763,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "f1f02b17-20b7-5b43-819a-7d70efd58b64", "targetHandle": "f1f02b17-20b7-5b43-819a-7d70efd58b64-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28310,7 +26774,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "d31bf6ea-1f44-5d63-b403-9c347d51e1fa", "targetHandle": "d31bf6ea-1f44-5d63-b403-9c347d51e1fa-3", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28321,7 +26784,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "d488f67d-790d-567e-b5fb-d65c63a85af8", "targetHandle": "d488f67d-790d-567e-b5fb-d65c63a85af8-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28333,7 +26795,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "4fd01ecb-b1da-5228-852d-e3fd8ffd9a3f", "targetHandle": "4fd01ecb-b1da-5228-852d-e3fd8ffd9a3f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28345,7 +26806,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "0dd9d1d6-a60d-4287-b85c-e685c5e0ae80", "targetHandle": "0dd9d1d6-a60d-4287-b85c-e685c5e0ae80-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28356,7 +26816,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "d488f67d-790d-567e-b5fb-d65c63a85af8", "targetHandle": "d488f67d-790d-567e-b5fb-d65c63a85af8-8", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28368,7 +26827,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "d31bf6ea-1f44-5d63-b403-9c347d51e1fa", "targetHandle": "d31bf6ea-1f44-5d63-b403-9c347d51e1fa-7", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28380,7 +26838,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "6558bf94-05b3-5df0-ba52-de5147c63324", "targetHandle": "6558bf94-05b3-5df0-ba52-de5147c63324-8", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28391,7 +26848,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "7d2a550a-c069-5fc2-bb72-394772c7097f", "targetHandle": "7d2a550a-c069-5fc2-bb72-394772c7097f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28403,7 +26859,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "c395f71d-3d16-4d51-960b-3646bfbf0c30", "targetHandle": "c395f71d-3d16-4d51-960b-3646bfbf0c30-2", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28415,7 +26870,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "448d0dc0-805c-4263-8289-0ebee6cdd286", "targetHandle": "448d0dc0-805c-4263-8289-0ebee6cdd286-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28427,7 +26881,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "26a0bf18-2829-4c3c-9624-8744884efff3", "targetHandle": "26a0bf18-2829-4c3c-9624-8744884efff3-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28439,7 +26892,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "d31bf6ea-1f44-5d63-b403-9c347d51e1fa", "targetHandle": "d31bf6ea-1f44-5d63-b403-9c347d51e1fa-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28451,7 +26903,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "3e5242b4-778d-4b12-9796-63796584d559", "targetHandle": "3e5242b4-778d-4b12-9796-63796584d559-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28463,7 +26914,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "f129199b-bfc6-4f2e-8ed1-2014f7ef7b7b", "targetHandle": "f129199b-bfc6-4f2e-8ed1-2014f7ef7b7b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28475,7 +26925,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "37b3e27c-c315-4da5-9595-14a078997150", "targetHandle": "37b3e27c-c315-4da5-9595-14a078997150-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28487,7 +26936,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "200fda2b-d814-544a-94fe-0ecae0f34874", "targetHandle": "200fda2b-d814-544a-94fe-0ecae0f34874-7", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28498,7 +26946,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "d488f67d-790d-567e-b5fb-d65c63a85af8", "targetHandle": "d488f67d-790d-567e-b5fb-d65c63a85af8-7", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28510,7 +26957,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "7b1cd520-c986-5b84-9e70-0bd41b30895d", "targetHandle": "7b1cd520-c986-5b84-9e70-0bd41b30895d-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28522,7 +26968,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "3bfcca43-6fe3-46d7-b025-4740887786d7", "targetHandle": "3bfcca43-6fe3-46d7-b025-4740887786d7-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28534,7 +26979,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "dc01a4bc-e18f-4ef3-9ad8-fb05e9f334c0", "targetHandle": "dc01a4bc-e18f-4ef3-9ad8-fb05e9f334c0-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28546,7 +26990,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "f1f02b17-20b7-5b43-819a-7d70efd58b64", "targetHandle": "f1f02b17-20b7-5b43-819a-7d70efd58b64-4", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28558,7 +27001,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "5568aa55-2727-4d00-b9d7-31a4d847f871", "targetHandle": "5568aa55-2727-4d00-b9d7-31a4d847f871-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28570,7 +27012,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "bee6630a-a34b-5b7e-ad45-d07601361e83", "targetHandle": "bee6630a-a34b-5b7e-ad45-d07601361e83-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28582,7 +27023,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "d320531e-e2c7-54bb-a20f-36079b5f8b80", "targetHandle": "d320531e-e2c7-54bb-a20f-36079b5f8b80-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28594,7 +27034,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "200fda2b-d814-544a-94fe-0ecae0f34874", "targetHandle": "200fda2b-d814-544a-94fe-0ecae0f34874-3", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28606,7 +27045,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "d13625a3-694e-4229-9311-6b50acb12ac6", "targetHandle": "d13625a3-694e-4229-9311-6b50acb12ac6-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28618,7 +27056,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "aa175645-32b7-4899-874b-be8201219e9c", "targetHandle": "aa175645-32b7-4899-874b-be8201219e9c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28630,7 +27067,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "e1bae4cc-2808-48b2-a7ef-9179f521982e", "targetHandle": "e1bae4cc-2808-48b2-a7ef-9179f521982e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28641,7 +27077,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "7d2a550a-c069-5fc2-bb72-394772c7097f", "targetHandle": "7d2a550a-c069-5fc2-bb72-394772c7097f-8", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -28653,7 +27088,6 @@ exports[`Write save file crop.chn 1`] = ` "target": "8a0325fa-26f3-5b95-aa05-1f9b3474b07f", "targetHandle": "8a0325fa-26f3-5b95-aa05-1f9b3474b07f-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -28674,7 +27108,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -28693,7 +27126,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -28710,7 +27142,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -28727,7 +27158,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -28744,7 +27174,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -28761,7 +27190,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -28787,7 +27215,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -28805,7 +27232,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, { "data": { @@ -28822,7 +27248,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -28848,7 +27273,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -28865,7 +27289,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -28882,7 +27305,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -28899,7 +27321,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -28916,7 +27337,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -28933,7 +27353,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -28959,7 +27378,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -28977,7 +27395,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, { "data": { @@ -28995,7 +27412,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, { "data": { @@ -29021,7 +27437,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29039,7 +27454,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, { "data": { @@ -29065,7 +27479,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29091,7 +27504,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29108,7 +27520,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29126,7 +27537,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, { "data": { @@ -29152,7 +27562,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29173,7 +27582,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29190,7 +27598,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29208,7 +27615,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, { "data": { @@ -29234,7 +27640,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29251,7 +27656,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29277,7 +27681,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29300,7 +27703,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 519, - "zIndex": 50, }, { "data": { @@ -29317,7 +27719,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29343,7 +27744,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29360,7 +27760,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29386,7 +27785,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29405,7 +27803,6 @@ exports[`Write save file crop.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, ], "viewport": { @@ -29420,7 +27817,7 @@ exports[`Write save file crop.chn 1`] = ` exports[`Write save file crop-content.chn 1`] = ` { - "checksum": "e4ba10ded4459c6fcf627fc35f4fa611", + "checksum": "d82ac6a76911d663da3351e0080920e4", "content": { "edges": [], "nodes": [ @@ -29439,7 +27836,6 @@ exports[`Write save file crop-content.chn 1`] = ` "selected": true, "type": "regularNode", "width": 241, - "zIndex": 70, }, ], "viewport": { @@ -29454,7 +27850,7 @@ exports[`Write save file crop-content.chn 1`] = ` exports[`Write save file empty-string-input-test.chn 1`] = ` { - "checksum": "9fc1cd576d9862d4f65808a68d3bacb5", + "checksum": "31bbde5d9664f3ec5b5f7fc6e3905d3a", "content": { "edges": [ { @@ -29510,7 +27906,6 @@ exports[`Write save file empty-string-input-test.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29543,7 +27938,6 @@ exports[`Write save file empty-string-input-test.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29569,7 +27963,6 @@ exports[`Write save file empty-string-input-test.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29590,7 +27983,6 @@ exports[`Write save file empty-string-input-test.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29621,7 +28013,7 @@ exports[`Write save file empty-string-input-test.chn 1`] = ` exports[`Write save file fast-nlmeans.chn 1`] = ` { - "checksum": "e373ef77f6a2c16dbfa6346f040ea95b", + "checksum": "83289a737d61d8ddd385cb3e5fd9ad2f", "content": { "edges": [ { @@ -29634,7 +28026,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "target": "ed732cf3-8e31-59b1-9d8f-3f91027d7b45", "targetHandle": "ed732cf3-8e31-59b1-9d8f-3f91027d7b45-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -29646,7 +28037,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "target": "424b07aa-e55c-4db2-bbf6-4bb88877dec0", "targetHandle": "424b07aa-e55c-4db2-bbf6-4bb88877dec0-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -29658,7 +28048,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "target": "9a523640-72f1-42c7-88cd-771aab385884", "targetHandle": "9a523640-72f1-42c7-88cd-771aab385884-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -29670,7 +28059,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "target": "aa31a21a-7efb-4957-af01-b4896e4160df", "targetHandle": "aa31a21a-7efb-4957-af01-b4896e4160df-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -29682,7 +28070,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "target": "55d42e03-5792-5f72-8689-e35b4a37fe71", "targetHandle": "55d42e03-5792-5f72-8689-e35b4a37fe71-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -29693,7 +28080,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "target": "2eda31b4-399d-5848-a11d-96a93c3fa348", "targetHandle": "2eda31b4-399d-5848-a11d-96a93c3fa348-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -29705,7 +28091,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "target": "fc757ca5-14e4-4b2a-b60b-616311071660", "targetHandle": "fc757ca5-14e4-4b2a-b60b-616311071660-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -29717,7 +28102,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "target": "6fb0dfb3-52d4-5ce7-88c1-7917c062554c", "targetHandle": "6fb0dfb3-52d4-5ce7-88c1-7917c062554c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -29729,7 +28113,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "target": "518738bf-bccb-4bca-aace-3f9ec9d8bf3d", "targetHandle": "518738bf-bccb-4bca-aace-3f9ec9d8bf3d-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -29750,7 +28133,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29772,7 +28154,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29789,7 +28170,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29812,7 +28192,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29834,7 +28213,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29851,7 +28229,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29873,7 +28250,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29890,7 +28266,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29907,7 +28282,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -29928,7 +28302,6 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, ], "viewport": { @@ -29943,7 +28316,7 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` exports[`Write save file gamma.chn 1`] = ` { - "checksum": "95b2e1e9d8e2c7f2606f4a49b6a34cae", + "checksum": "e166befaba4c927cad1cd99cd63c79e3", "content": { "edges": [ { @@ -29955,7 +28328,6 @@ exports[`Write save file gamma.chn 1`] = ` "target": "be8845a1-4104-4946-9ef3-0aef2a083507", "targetHandle": "be8845a1-4104-4946-9ef3-0aef2a083507-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -29966,7 +28338,6 @@ exports[`Write save file gamma.chn 1`] = ` "target": "d5925529-e5c7-4a31-8e84-ec9c3c949868", "targetHandle": "d5925529-e5c7-4a31-8e84-ec9c3c949868-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -29977,7 +28348,6 @@ exports[`Write save file gamma.chn 1`] = ` "target": "0656a2a4-9f76-4d08-a8f1-f1fc97e0d0e9", "targetHandle": "0656a2a4-9f76-4d08-a8f1-f1fc97e0d0e9-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -29988,7 +28358,6 @@ exports[`Write save file gamma.chn 1`] = ` "target": "964a1f57-98dd-41ef-af1a-d20e19dc2782", "targetHandle": "964a1f57-98dd-41ef-af1a-d20e19dc2782-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -30007,7 +28376,6 @@ exports[`Write save file gamma.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -30027,7 +28395,6 @@ exports[`Write save file gamma.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -30044,7 +28411,6 @@ exports[`Write save file gamma.chn 1`] = ` "selected": true, "type": "regularNode", "width": 242, - "zIndex": 70, }, { "data": { @@ -30064,7 +28430,6 @@ exports[`Write save file gamma.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -30083,7 +28448,6 @@ exports[`Write save file gamma.chn 1`] = ` }, "selected": false, "type": "regularNode", - "zIndex": 50, }, ], "viewport": { @@ -30098,7 +28462,7 @@ exports[`Write save file gamma.chn 1`] = ` exports[`Write save file image-adjustments.chn 1`] = ` { - "checksum": "d7993cfe78e77bd592ca208a8c64f4f2", + "checksum": "9940adfda764584dea5f4a0ba1ba61b3", "content": { "edges": [ { @@ -30110,7 +28474,6 @@ exports[`Write save file image-adjustments.chn 1`] = ` "target": "59b0e388-685e-4b7b-8ffe-c64bc98a350f", "targetHandle": "59b0e388-685e-4b7b-8ffe-c64bc98a350f-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -30133,7 +28496,6 @@ exports[`Write save file image-adjustments.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -30153,7 +28515,6 @@ exports[`Write save file image-adjustments.chn 1`] = ` "selected": false, "type": "regularNode", "width": 278, - "zIndex": 50, }, { "data": { @@ -30173,7 +28534,6 @@ exports[`Write save file image-adjustments.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -30196,7 +28556,6 @@ exports[`Write save file image-adjustments.chn 1`] = ` "selected": false, "type": "regularNode", "width": 262, - "zIndex": 50, }, { "data": { @@ -30217,7 +28576,6 @@ exports[`Write save file image-adjustments.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, ], "viewport": { @@ -30232,7 +28590,7 @@ exports[`Write save file image-adjustments.chn 1`] = ` exports[`Write save file image-channels.chn 1`] = ` { - "checksum": "522eead1dd254fca1995e60e0e6230e7", + "checksum": "b64675c6c7d3986a313fcd9ca5619a44", "content": { "edges": [ { @@ -30244,7 +28602,6 @@ exports[`Write save file image-channels.chn 1`] = ` "target": "0f5b12e2-78db-4d23-be0e-f1247b0d9a5a", "targetHandle": "0f5b12e2-78db-4d23-be0e-f1247b0d9a5a-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -30255,7 +28612,6 @@ exports[`Write save file image-channels.chn 1`] = ` "target": "0f5b12e2-78db-4d23-be0e-f1247b0d9a5a", "targetHandle": "0f5b12e2-78db-4d23-be0e-f1247b0d9a5a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -30266,7 +28622,6 @@ exports[`Write save file image-channels.chn 1`] = ` "target": "0df5f783-71c1-42ef-8fcf-2c4ac91c6923", "targetHandle": "0df5f783-71c1-42ef-8fcf-2c4ac91c6923-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -30277,7 +28632,6 @@ exports[`Write save file image-channels.chn 1`] = ` "target": "0f02da52-de20-484f-a4ee-fe4f5c16b09f", "targetHandle": "0f02da52-de20-484f-a4ee-fe4f5c16b09f-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -30288,7 +28642,6 @@ exports[`Write save file image-channels.chn 1`] = ` "target": "9a3340d5-b39b-44e2-bbae-129df1a0ebdd", "targetHandle": "9a3340d5-b39b-44e2-bbae-129df1a0ebdd-0", "type": "main", - "zIndex": 69, }, ], "nodes": [ @@ -30307,7 +28660,6 @@ exports[`Write save file image-channels.chn 1`] = ` "selected": true, "type": "regularNode", "width": 242, - "zIndex": 70, }, { "data": { @@ -30326,7 +28678,6 @@ exports[`Write save file image-channels.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -30343,7 +28694,6 @@ exports[`Write save file image-channels.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -30360,7 +28710,6 @@ exports[`Write save file image-channels.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -30377,7 +28726,6 @@ exports[`Write save file image-channels.chn 1`] = ` "selected": false, "type": "regularNode", "width": 244, - "zIndex": 50, }, ], "viewport": { @@ -30392,7 +28740,7 @@ exports[`Write save file image-channels.chn 1`] = ` exports[`Write save file image-dim.chn 1`] = ` { - "checksum": "619592d14b086f1cc392e648b3c64478", + "checksum": "0099508cd26663d5c7b97fbbfc862326", "content": { "edges": [ { @@ -30404,7 +28752,6 @@ exports[`Write save file image-dim.chn 1`] = ` "target": "2c77b070-2d17-418e-9a68-c9c0f1651619", "targetHandle": "2c77b070-2d17-418e-9a68-c9c0f1651619-2", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -30415,7 +28762,6 @@ exports[`Write save file image-dim.chn 1`] = ` "target": "2c77b070-2d17-418e-9a68-c9c0f1651619", "targetHandle": "2c77b070-2d17-418e-9a68-c9c0f1651619-1", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -30426,7 +28772,6 @@ exports[`Write save file image-dim.chn 1`] = ` "target": "2c77b070-2d17-418e-9a68-c9c0f1651619", "targetHandle": "2c77b070-2d17-418e-9a68-c9c0f1651619-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -30437,7 +28782,6 @@ exports[`Write save file image-dim.chn 1`] = ` "target": "14203edf-1335-4d4f-8174-a86ce0f53bcb", "targetHandle": "14203edf-1335-4d4f-8174-a86ce0f53bcb-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -30460,7 +28804,6 @@ exports[`Write save file image-dim.chn 1`] = ` "selected": true, "type": "regularNode", "width": 283, - "zIndex": 70, }, { "data": { @@ -30480,7 +28823,6 @@ exports[`Write save file image-dim.chn 1`] = ` "selected": false, "type": "regularNode", "width": 283, - "zIndex": 50, }, { "data": { @@ -30497,7 +28839,6 @@ exports[`Write save file image-dim.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -30517,7 +28858,6 @@ exports[`Write save file image-dim.chn 1`] = ` "selected": false, "type": "regularNode", "width": 279, - "zIndex": 50, }, ], "viewport": { @@ -30532,7 +28872,7 @@ exports[`Write save file image-dim.chn 1`] = ` exports[`Write save file image-filters.chn 1`] = ` { - "checksum": "128dfcf4705c7bedf24b7a70c277b409", + "checksum": "77c07cb1b672279ea28349913b351de9", "content": { "edges": [ { @@ -30544,7 +28884,6 @@ exports[`Write save file image-filters.chn 1`] = ` "target": "36ecdf30-ef07-478f-882c-5bb7019d447a", "targetHandle": "36ecdf30-ef07-478f-882c-5bb7019d447a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -30555,7 +28894,6 @@ exports[`Write save file image-filters.chn 1`] = ` "target": "bbdbd06c-77d4-4484-8e40-bacf8be550f3", "targetHandle": "bbdbd06c-77d4-4484-8e40-bacf8be550f3-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -30566,7 +28904,6 @@ exports[`Write save file image-filters.chn 1`] = ` "target": "ce5d04ca-a08a-4ecf-a07a-dcce789af967", "targetHandle": "ce5d04ca-a08a-4ecf-a07a-dcce789af967-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -30577,7 +28914,6 @@ exports[`Write save file image-filters.chn 1`] = ` "target": "36ecdf30-ef07-478f-882c-5bb7019d447a", "targetHandle": "36ecdf30-ef07-478f-882c-5bb7019d447a-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -30588,7 +28924,6 @@ exports[`Write save file image-filters.chn 1`] = ` "target": "cd11a3f3-e196-4c37-81cc-b7d07d4f704e", "targetHandle": "cd11a3f3-e196-4c37-81cc-b7d07d4f704e-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -30599,7 +28934,6 @@ exports[`Write save file image-filters.chn 1`] = ` "target": "a7fb83e8-1498-4a2d-8a01-2545ee7a38cf", "targetHandle": "a7fb83e8-1498-4a2d-8a01-2545ee7a38cf-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -30610,7 +28944,6 @@ exports[`Write save file image-filters.chn 1`] = ` "target": "a206f898-1e62-4297-acfa-2f32ab0d63f4", "targetHandle": "a206f898-1e62-4297-acfa-2f32ab0d63f4-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -30631,7 +28964,6 @@ exports[`Write save file image-filters.chn 1`] = ` "selected": false, "type": "regularNode", "width": 279, - "zIndex": 50, }, { "data": { @@ -30651,7 +28983,6 @@ exports[`Write save file image-filters.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -30670,7 +29001,6 @@ exports[`Write save file image-filters.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -30690,7 +29020,6 @@ exports[`Write save file image-filters.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -30707,7 +29036,6 @@ exports[`Write save file image-filters.chn 1`] = ` "selected": true, "type": "regularNode", "width": 282, - "zIndex": 70, }, { "data": { @@ -30728,7 +29056,6 @@ exports[`Write save file image-filters.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -30748,7 +29075,6 @@ exports[`Write save file image-filters.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, ], "viewport": { @@ -30763,7 +29089,7 @@ exports[`Write save file image-filters.chn 1`] = ` exports[`Write save file image-input-output.chn 1`] = ` { - "checksum": "b022fddff9056b6b0ee6b5633f4ea3ed", + "checksum": "5587bb3ced818219155b8c0103392bfe", "content": { "edges": [ { @@ -30775,7 +29101,6 @@ exports[`Write save file image-input-output.chn 1`] = ` "target": "891982b8-2d6a-4228-aefb-2e0ef91796aa", "targetHandle": "891982b8-2d6a-4228-aefb-2e0ef91796aa-3", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -30786,7 +29111,6 @@ exports[`Write save file image-input-output.chn 1`] = ` "target": "891982b8-2d6a-4228-aefb-2e0ef91796aa", "targetHandle": "891982b8-2d6a-4228-aefb-2e0ef91796aa-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -30797,7 +29121,6 @@ exports[`Write save file image-input-output.chn 1`] = ` "target": "491b5a02-0d03-4299-a89e-bc9095175220", "targetHandle": "491b5a02-0d03-4299-a89e-bc9095175220-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -30808,7 +29131,6 @@ exports[`Write save file image-input-output.chn 1`] = ` "target": "891982b8-2d6a-4228-aefb-2e0ef91796aa", "targetHandle": "891982b8-2d6a-4228-aefb-2e0ef91796aa-1", "type": "main", - "zIndex": 69, }, ], "nodes": [ @@ -30827,7 +29149,6 @@ exports[`Write save file image-input-output.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -30847,7 +29168,6 @@ exports[`Write save file image-input-output.chn 1`] = ` "selected": false, "type": "regularNode", "width": 265, - "zIndex": 50, }, { "data": { @@ -30864,7 +29184,6 @@ exports[`Write save file image-input-output.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, ], "viewport": { @@ -30879,7 +29198,7 @@ exports[`Write save file image-input-output.chn 1`] = ` exports[`Write save file image-iterator.chn 1`] = ` { - "checksum": "062b760f2a2357d4d6ed7ce089248eab", + "checksum": "53ba8ed665e5727dcfd081ce3ae68c44", "content": { "edges": [ { @@ -30891,7 +29210,6 @@ exports[`Write save file image-iterator.chn 1`] = ` "target": "17750f85-fd24-4089-9fde-2ca8a1fd8abe", "targetHandle": "17750f85-fd24-4089-9fde-2ca8a1fd8abe-1", "type": "main", - "zIndex": 79, }, { "animated": false, @@ -30902,7 +29220,6 @@ exports[`Write save file image-iterator.chn 1`] = ` "target": "17750f85-fd24-4089-9fde-2ca8a1fd8abe", "targetHandle": "17750f85-fd24-4089-9fde-2ca8a1fd8abe-0", "type": "main", - "zIndex": 79, }, { "animated": false, @@ -30913,7 +29230,6 @@ exports[`Write save file image-iterator.chn 1`] = ` "target": "17750f85-fd24-4089-9fde-2ca8a1fd8abe", "targetHandle": "17750f85-fd24-4089-9fde-2ca8a1fd8abe-3", "type": "main", - "zIndex": 79, }, { "animated": false, @@ -30924,7 +29240,6 @@ exports[`Write save file image-iterator.chn 1`] = ` "target": "17750f85-fd24-4089-9fde-2ca8a1fd8abe", "targetHandle": "17750f85-fd24-4089-9fde-2ca8a1fd8abe-2", "type": "main", - "zIndex": 79, }, ], "nodes": [ @@ -30945,7 +29260,6 @@ exports[`Write save file image-iterator.chn 1`] = ` "selected": false, "type": "regularNode", "width": 265, - "zIndex": 80, }, { "data": { @@ -30976,7 +29290,7 @@ exports[`Write save file image-iterator.chn 1`] = ` exports[`Write save file image-metrics.chn 1`] = ` { - "checksum": "b32ee40fefb7b627c825ae653b232c0a", + "checksum": "88d5f3ceed381c64e1d03516828879cb", "content": { "edges": [], "nodes": [ @@ -30995,7 +29309,6 @@ exports[`Write save file image-metrics.chn 1`] = ` "selected": true, "type": "regularNode", "width": 241, - "zIndex": 70, }, ], "viewport": { @@ -31010,7 +29323,7 @@ exports[`Write save file image-metrics.chn 1`] = ` exports[`Write save file image-utilities.chn 1`] = ` { - "checksum": "58194428d6da5dd3eeda524547ec702d", + "checksum": "45a276e058f4e7145173c4c430ed2ef3", "content": { "edges": [ { @@ -31022,7 +29335,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "target": "94e84d6f-5179-42c9-8d63-2f3ddfd121d9", "targetHandle": "94e84d6f-5179-42c9-8d63-2f3ddfd121d9-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31033,7 +29345,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "target": "89d518ad-2769-4eee-81e5-5b7876cfc4f1", "targetHandle": "89d518ad-2769-4eee-81e5-5b7876cfc4f1-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31044,7 +29355,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "target": "c56c2f68-0478-4db5-b038-24f83f8ae275", "targetHandle": "c56c2f68-0478-4db5-b038-24f83f8ae275-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -31055,7 +29365,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "target": "94e84d6f-5179-42c9-8d63-2f3ddfd121d9", "targetHandle": "94e84d6f-5179-42c9-8d63-2f3ddfd121d9-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31066,7 +29375,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "target": "760f82b1-119a-53ae-af2b-45e583af6e7b", "targetHandle": "760f82b1-119a-53ae-af2b-45e583af6e7b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31077,7 +29385,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "target": "ad24cc0b-36ac-415f-9347-c6da40edec4e", "targetHandle": "ad24cc0b-36ac-415f-9347-c6da40edec4e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31088,7 +29395,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "target": "f7249477-4af7-5e5a-bd2c-0aea42aa6d3f", "targetHandle": "f7249477-4af7-5e5a-bd2c-0aea42aa6d3f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31099,7 +29405,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "target": "7094b9d4-3173-450f-b491-3c6936c510ab", "targetHandle": "7094b9d4-3173-450f-b491-3c6936c510ab-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31110,7 +29415,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "target": "7ae37f51-b9d9-41d8-aed7-b6f5a0cea0d6", "targetHandle": "7ae37f51-b9d9-41d8-aed7-b6f5a0cea0d6-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31121,7 +29425,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "target": "246c1a4b-9d15-4e93-b296-9ca05a51170a", "targetHandle": "246c1a4b-9d15-4e93-b296-9ca05a51170a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31132,7 +29435,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "target": "246c1a4b-9d15-4e93-b296-9ca05a51170a", "targetHandle": "246c1a4b-9d15-4e93-b296-9ca05a51170a-1", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -31156,7 +29458,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -31175,7 +29476,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -31195,7 +29495,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 283, - "zIndex": 50, }, { "data": { @@ -31215,7 +29514,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 283, - "zIndex": 50, }, { "data": { @@ -31236,7 +29534,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -31255,7 +29552,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -31276,7 +29572,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 244, - "zIndex": 50, }, { "data": { @@ -31295,7 +29590,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -31314,7 +29608,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "selected": true, "type": "regularNode", "width": 242, - "zIndex": 70, }, { "data": { @@ -31333,7 +29626,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -31352,7 +29644,6 @@ exports[`Write save file image-utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, ], "viewport": { @@ -31367,7 +29658,7 @@ exports[`Write save file image-utilities.chn 1`] = ` exports[`Write save file metal-specular.chn 1`] = ` { - "checksum": "10179b905a2002a4ba1b14d23f7139d9", + "checksum": "c2574c108021dd51bf0acf1b6b8af51c", "content": { "edges": [ { @@ -31379,7 +29670,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "target": "ed626709-fb53-4a88-854d-c5c3fed3543c", "targetHandle": "ed626709-fb53-4a88-854d-c5c3fed3543c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31390,7 +29680,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "target": "bd7c2c0d-a290-412b-84de-53862e8387aa", "targetHandle": "bd7c2c0d-a290-412b-84de-53862e8387aa-2", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31402,7 +29691,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "target": "7de99961-fbc6-4a58-822f-fe9fc73c1b3c", "targetHandle": "7de99961-fbc6-4a58-822f-fe9fc73c1b3c-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31413,7 +29701,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "target": "9846306b-7f97-4f97-a191-ed59ef7ab0ad", "targetHandle": "9846306b-7f97-4f97-a191-ed59ef7ab0ad-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31424,7 +29711,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "target": "bd7c2c0d-a290-412b-84de-53862e8387aa", "targetHandle": "bd7c2c0d-a290-412b-84de-53862e8387aa-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31436,7 +29722,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "target": "fdb01134-a344-4213-84ec-95f54f907ba3", "targetHandle": "fdb01134-a344-4213-84ec-95f54f907ba3-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31447,7 +29732,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "target": "ed626709-fb53-4a88-854d-c5c3fed3543c", "targetHandle": "ed626709-fb53-4a88-854d-c5c3fed3543c-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31458,7 +29742,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "target": "584d881a-95f8-4b9e-b6b1-3be4693db0ff", "targetHandle": "584d881a-95f8-4b9e-b6b1-3be4693db0ff-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31469,7 +29752,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "target": "bd7c2c0d-a290-412b-84de-53862e8387aa", "targetHandle": "bd7c2c0d-a290-412b-84de-53862e8387aa-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31480,7 +29762,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "target": "ed626709-fb53-4a88-854d-c5c3fed3543c", "targetHandle": "ed626709-fb53-4a88-854d-c5c3fed3543c-2", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31491,7 +29772,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "target": "d6322950-b0d6-4965-b4b4-033dba4177c6", "targetHandle": "d6322950-b0d6-4965-b4b4-033dba4177c6-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31502,7 +29782,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "target": "9714307a-4cf4-4b80-b08b-c6ab083a4903", "targetHandle": "9714307a-4cf4-4b80-b08b-c6ab083a4903-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31513,7 +29792,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "target": "c7768f95-4ce3-4fa7-875b-271a4285cff9", "targetHandle": "c7768f95-4ce3-4fa7-875b-271a4285cff9-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31524,7 +29802,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "target": "ba49d293-6c4d-4372-a94f-8c7c4b5765ce", "targetHandle": "ba49d293-6c4d-4372-a94f-8c7c4b5765ce-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31536,7 +29813,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "target": "a808ceb7-f63d-45d3-829f-24d85b1e0d24", "targetHandle": "a808ceb7-f63d-45d3-829f-24d85b1e0d24-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -31557,7 +29833,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -31574,7 +29849,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -31593,7 +29867,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -31610,7 +29883,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -31631,7 +29903,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 244, - "zIndex": 50, }, { "data": { @@ -31648,7 +29919,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -31665,7 +29935,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -31684,7 +29953,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -31701,7 +29969,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -31718,7 +29985,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -31735,7 +30001,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -31752,7 +30017,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -31772,7 +30036,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -31789,7 +30052,6 @@ exports[`Write save file metal-specular.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, ], "viewport": { @@ -31804,7 +30066,7 @@ exports[`Write save file metal-specular.chn 1`] = ` exports[`Write save file model-scale.chn 1`] = ` { - "checksum": "94dcaecb771e45bf85981d3b74643183", + "checksum": "723b3312dc01002f397b4a73a0906450", "content": { "edges": [ { @@ -31816,7 +30078,6 @@ exports[`Write save file model-scale.chn 1`] = ` "target": "66afd92a-138e-42b7-a5d3-a45737f31ed4", "targetHandle": "66afd92a-138e-42b7-a5d3-a45737f31ed4-0", "type": "main", - "zIndex": 69, }, ], "nodes": [ @@ -31837,7 +30098,6 @@ exports[`Write save file model-scale.chn 1`] = ` "selected": false, "type": "regularNode", "width": 517, - "zIndex": 50, }, { "data": { @@ -31854,7 +30114,6 @@ exports[`Write save file model-scale.chn 1`] = ` "selected": true, "type": "regularNode", "width": 503, - "zIndex": 70, }, ], "viewport": { @@ -31869,7 +30128,7 @@ exports[`Write save file model-scale.chn 1`] = ` exports[`Write save file ncnn.chn 1`] = ` { - "checksum": "57515cc3f2f040e9ef177d168af6b93b", + "checksum": "91daec5ce818ee7ec6bb8d0398ee0ca9", "content": { "edges": [ { @@ -31881,7 +30140,6 @@ exports[`Write save file ncnn.chn 1`] = ` "target": "444d3246-76ad-4ba1-8b50-4ff2527bab87", "targetHandle": "444d3246-76ad-4ba1-8b50-4ff2527bab87-1", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -31892,7 +30150,6 @@ exports[`Write save file ncnn.chn 1`] = ` "target": "24b604f1-4c1b-40e1-a03b-3dfc6b2ba8df", "targetHandle": "24b604f1-4c1b-40e1-a03b-3dfc6b2ba8df-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31903,7 +30160,6 @@ exports[`Write save file ncnn.chn 1`] = ` "target": "5961ee68-6b8f-43ad-9120-52e06689ae77", "targetHandle": "5961ee68-6b8f-43ad-9120-52e06689ae77-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -31914,7 +30170,6 @@ exports[`Write save file ncnn.chn 1`] = ` "target": "444d3246-76ad-4ba1-8b50-4ff2527bab87", "targetHandle": "444d3246-76ad-4ba1-8b50-4ff2527bab87-0", "type": "main", - "zIndex": 69, }, ], "nodes": [ @@ -31933,7 +30188,6 @@ exports[`Write save file ncnn.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -31952,7 +30206,6 @@ exports[`Write save file ncnn.chn 1`] = ` "selected": true, "type": "regularNode", "width": 248, - "zIndex": 70, }, { "data": { @@ -31971,7 +30224,6 @@ exports[`Write save file ncnn.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -31988,7 +30240,6 @@ exports[`Write save file ncnn.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, ], "viewport": { @@ -32003,7 +30254,7 @@ exports[`Write save file ncnn.chn 1`] = ` exports[`Write save file normal-map-generator.chn 1`] = ` { - "checksum": "df23731f0484d07c4b073660c366645d", + "checksum": "a10e41efc82e75a61af88724d73401fc", "content": { "edges": [ { @@ -32015,7 +30266,6 @@ exports[`Write save file normal-map-generator.chn 1`] = ` "target": "091149ea-be6a-44d9-af3d-fb0902b9077d", "targetHandle": "091149ea-be6a-44d9-af3d-fb0902b9077d-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -32026,7 +30276,6 @@ exports[`Write save file normal-map-generator.chn 1`] = ` "target": "a6759cf4-cd53-4bb8-afc2-929733532786", "targetHandle": "a6759cf4-cd53-4bb8-afc2-929733532786-0", "type": "main", - "zIndex": 69, }, ], "nodes": [ @@ -32045,7 +30294,6 @@ exports[`Write save file normal-map-generator.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -32070,7 +30318,6 @@ exports[`Write save file normal-map-generator.chn 1`] = ` "selected": true, "type": "regularNode", "width": 282, - "zIndex": 70, }, { "data": { @@ -32087,7 +30334,6 @@ exports[`Write save file normal-map-generator.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, ], "viewport": { @@ -32102,7 +30348,7 @@ exports[`Write save file normal-map-generator.chn 1`] = ` exports[`Write save file onnx-interpolate.chn 1`] = ` { - "checksum": "1826a1b882ec4c54636066932cdeafb1", + "checksum": "5d03270fc2a910ba06d4d0ce31202921", "content": { "edges": [], "nodes": [ @@ -32124,7 +30370,6 @@ exports[`Write save file onnx-interpolate.chn 1`] = ` "selected": false, "type": "regularNode", "width": 247, - "zIndex": 50, }, ], "viewport": { @@ -32139,7 +30384,7 @@ exports[`Write save file onnx-interpolate.chn 1`] = ` exports[`Write save file opacity.chn 1`] = ` { - "checksum": "07014c123db5bd7ebbb1d5a50421555f", + "checksum": "dda288a4f085618f72fb0f45407c600e", "content": { "edges": [], "nodes": [ @@ -32160,7 +30405,6 @@ exports[`Write save file opacity.chn 1`] = ` "selected": true, "type": "regularNode", "width": 241, - "zIndex": 70, }, ], "viewport": { @@ -32175,7 +30419,7 @@ exports[`Write save file opacity.chn 1`] = ` exports[`Write save file pass-through.chn 1`] = ` { - "checksum": "280bd59efd018bed5a456d8245f9c2ff", + "checksum": "f5d05931efd1a97d41d47c8b843dd05e", "content": { "edges": [ { @@ -32187,7 +30431,6 @@ exports[`Write save file pass-through.chn 1`] = ` "target": "4e60586a-6341-448f-a6b0-b88d61a2c53f", "targetHandle": "4e60586a-6341-448f-a6b0-b88d61a2c53f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -32198,7 +30441,6 @@ exports[`Write save file pass-through.chn 1`] = ` "target": "4e60586a-6341-448f-a6b0-b88d61a2c53f", "targetHandle": "4e60586a-6341-448f-a6b0-b88d61a2c53f-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -32209,7 +30451,6 @@ exports[`Write save file pass-through.chn 1`] = ` "target": "e8ae0225-aa99-4d54-856b-c7488ca77dd0", "targetHandle": "e8ae0225-aa99-4d54-856b-c7488ca77dd0-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -32220,7 +30461,6 @@ exports[`Write save file pass-through.chn 1`] = ` "target": "0a30743c-0fef-48bf-9b3d-f30d9028136d", "targetHandle": "0a30743c-0fef-48bf-9b3d-f30d9028136d-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -32239,7 +30479,6 @@ exports[`Write save file pass-through.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -32259,7 +30498,6 @@ exports[`Write save file pass-through.chn 1`] = ` "selected": false, "type": "regularNode", "width": 265, - "zIndex": 50, }, { "data": { @@ -32278,7 +30516,6 @@ exports[`Write save file pass-through.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -32295,7 +30532,6 @@ exports[`Write save file pass-through.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, ], "viewport": { @@ -32310,7 +30546,7 @@ exports[`Write save file pass-through.chn 1`] = ` exports[`Write save file pytorch.chn 1`] = ` { - "checksum": "40d62300c7beaaccbb42be1660bb02f3", + "checksum": "743d3912cdd3e5071f75790e7c83fd9a", "content": { "edges": [ { @@ -32322,7 +30558,6 @@ exports[`Write save file pytorch.chn 1`] = ` "target": "3162a7ce-116b-4f7f-969f-e9a0d7973d61", "targetHandle": "3162a7ce-116b-4f7f-969f-e9a0d7973d61-0", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -32333,7 +30568,6 @@ exports[`Write save file pytorch.chn 1`] = ` "target": "1e54b9e8-03ba-4705-8ef9-d8cd0c8c2d43", "targetHandle": "1e54b9e8-03ba-4705-8ef9-d8cd0c8c2d43-2", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -32344,7 +30578,6 @@ exports[`Write save file pytorch.chn 1`] = ` "target": "8119c5d4-b2f9-4ffa-8621-a84dfd01d704", "targetHandle": "8119c5d4-b2f9-4ffa-8621-a84dfd01d704-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -32355,7 +30588,6 @@ exports[`Write save file pytorch.chn 1`] = ` "target": "0ff35754-a542-4812-b3d5-2f1897c1972b", "targetHandle": "0ff35754-a542-4812-b3d5-2f1897c1972b-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -32366,7 +30598,6 @@ exports[`Write save file pytorch.chn 1`] = ` "target": "b4f14ca8-484c-52da-81e6-68d215d2c059", "targetHandle": "b4f14ca8-484c-52da-81e6-68d215d2c059-2", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -32377,7 +30608,6 @@ exports[`Write save file pytorch.chn 1`] = ` "target": "1e54b9e8-03ba-4705-8ef9-d8cd0c8c2d43", "targetHandle": "1e54b9e8-03ba-4705-8ef9-d8cd0c8c2d43-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -32388,7 +30618,6 @@ exports[`Write save file pytorch.chn 1`] = ` "target": "3162a7ce-116b-4f7f-969f-e9a0d7973d61", "targetHandle": "3162a7ce-116b-4f7f-969f-e9a0d7973d61-1", "type": "main", - "zIndex": 69, }, { "animated": false, @@ -32399,7 +30628,6 @@ exports[`Write save file pytorch.chn 1`] = ` "target": "b4f14ca8-484c-52da-81e6-68d215d2c059", "targetHandle": "b4f14ca8-484c-52da-81e6-68d215d2c059-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -32420,7 +30648,6 @@ exports[`Write save file pytorch.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -32437,7 +30664,6 @@ exports[`Write save file pytorch.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -32456,7 +30682,6 @@ exports[`Write save file pytorch.chn 1`] = ` "selected": true, "type": "regularNode", "width": 248, - "zIndex": 70, }, { "data": { @@ -32473,7 +30698,6 @@ exports[`Write save file pytorch.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -32492,7 +30716,6 @@ exports[`Write save file pytorch.chn 1`] = ` "selected": false, "type": "regularNode", "width": 258, - "zIndex": 50, }, { "data": { @@ -32509,7 +30732,6 @@ exports[`Write save file pytorch.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, ], "viewport": { @@ -32524,7 +30746,7 @@ exports[`Write save file pytorch.chn 1`] = ` exports[`Write save file pytorch-scunet.chn 1`] = ` { - "checksum": "f23825fcf916837cf2d0c6db5da8dfee", + "checksum": "8f85f13ad69c8193ada4a5df523a2b7e", "content": { "edges": [ { @@ -32537,7 +30759,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "target": "febcf0d5-23b4-4485-9316-377de0605105", "targetHandle": "febcf0d5-23b4-4485-9316-377de0605105-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -32549,7 +30770,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "target": "b2fdb48a-ed8c-4cd9-a881-f98d2dcc29a0", "targetHandle": "b2fdb48a-ed8c-4cd9-a881-f98d2dcc29a0-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -32560,7 +30780,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "target": "4ad2543a-4eef-5433-bb5c-2d54ed0dcf30", "targetHandle": "4ad2543a-4eef-5433-bb5c-2d54ed0dcf30-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -32571,7 +30790,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "target": "4ad2543a-4eef-5433-bb5c-2d54ed0dcf30", "targetHandle": "4ad2543a-4eef-5433-bb5c-2d54ed0dcf30-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -32583,7 +30801,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "target": "3afa73af-58f0-4f0a-b215-c5ba3ec26893", "targetHandle": "3afa73af-58f0-4f0a-b215-c5ba3ec26893-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -32595,7 +30812,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "target": "febcf0d5-23b4-4485-9316-377de0605105", "targetHandle": "febcf0d5-23b4-4485-9316-377de0605105-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -32606,7 +30822,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "target": "60e1ac4e-94b8-4c0d-b845-2c14097f0a5e", "targetHandle": "60e1ac4e-94b8-4c0d-b845-2c14097f0a5e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -32617,7 +30832,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "target": "f09bca4e-6603-48c2-a812-1039aa8ff118", "targetHandle": "f09bca4e-6603-48c2-a812-1039aa8ff118-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -32629,7 +30843,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "target": "f1ccef04-75d9-4653-819b-06c981222442", "targetHandle": "f1ccef04-75d9-4653-819b-06c981222442-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -32651,7 +30864,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 244, - "zIndex": 50, }, { "data": { @@ -32671,7 +30883,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 244, - "zIndex": 50, }, { "data": { @@ -32688,7 +30899,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -32707,7 +30917,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -32731,7 +30940,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 261, - "zIndex": 50, }, { "data": { @@ -32751,7 +30959,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, { "data": { @@ -32768,7 +30975,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -32792,7 +30998,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 261, - "zIndex": 50, }, { "data": { @@ -32813,7 +31018,6 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "selected": false, "type": "regularNode", "width": 243, - "zIndex": 50, }, { "data": { @@ -32838,7 +31042,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. "selected": false, "type": "regularNode", "width": 856, - "zIndex": 50, }, { "data": { @@ -32855,7 +31058,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -32877,7 +31079,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -32896,7 +31097,6 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, ], "viewport": { @@ -32911,7 +31111,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. exports[`Write save file resize-to-side.chn 1`] = ` { - "checksum": "e3674a348d6215fefb7cfecf90fb65a1", + "checksum": "08dd77beb6b466fb072e96575f7dd266", "content": { "edges": [ { @@ -32923,7 +31123,6 @@ exports[`Write save file resize-to-side.chn 1`] = ` "target": "0a558c45-2c62-4d94-a006-f3e24a40d2f5", "targetHandle": "0a558c45-2c62-4d94-a006-f3e24a40d2f5-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -32934,7 +31133,6 @@ exports[`Write save file resize-to-side.chn 1`] = ` "target": "89ad8b89-a34e-4327-846d-4c66ab4006e8", "targetHandle": "89ad8b89-a34e-4327-846d-4c66ab4006e8-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -32955,7 +31153,6 @@ exports[`Write save file resize-to-side.chn 1`] = ` "selected": false, "type": "regularNode", "width": 265, - "zIndex": 50, }, { "data": { @@ -32976,7 +31173,6 @@ exports[`Write save file resize-to-side.chn 1`] = ` "selected": false, "type": "regularNode", "width": 283, - "zIndex": 50, }, { "data": { @@ -32993,7 +31189,6 @@ exports[`Write save file resize-to-side.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, ], "viewport": { @@ -33008,7 +31203,7 @@ exports[`Write save file resize-to-side.chn 1`] = ` exports[`Write save file rnd.chn 1`] = ` { - "checksum": "12beb05cab258628f98e7cf064373eec", + "checksum": "d3afe6ed42246284e1451e066080218a", "content": { "edges": [ { @@ -33020,7 +31215,6 @@ exports[`Write save file rnd.chn 1`] = ` "target": "7e4ee660-b958-5ac7-9914-7887f3c49eff", "targetHandle": "7e4ee660-b958-5ac7-9914-7887f3c49eff-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33031,7 +31225,6 @@ exports[`Write save file rnd.chn 1`] = ` "target": "9b373116-cab0-4df2-8517-4a65c8d9bb55", "targetHandle": "9b373116-cab0-4df2-8517-4a65c8d9bb55-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33042,7 +31235,6 @@ exports[`Write save file rnd.chn 1`] = ` "target": "5f7b26fa-7032-4849-891d-9286669d2cfe", "targetHandle": "5f7b26fa-7032-4849-891d-9286669d2cfe-2", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -33065,7 +31257,6 @@ exports[`Write save file rnd.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -33084,7 +31275,6 @@ exports[`Write save file rnd.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -33101,7 +31291,6 @@ exports[`Write save file rnd.chn 1`] = ` "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -33120,7 +31309,6 @@ exports[`Write save file rnd.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, ], "viewport": { @@ -33135,7 +31323,7 @@ exports[`Write save file rnd.chn 1`] = ` exports[`Write save file save-image-webp-lossless.chn 1`] = ` { - "checksum": "49d5d7792305459a0cfdcc842b0ba1fe", + "checksum": "607de6c94a59fb15ded26c993ddafc62", "content": { "edges": [], "nodes": [ @@ -33171,7 +31359,6 @@ exports[`Write save file save-image-webp-lossless.chn 1`] = ` "selected": true, "type": "regularNode", "width": 240, - "zIndex": 70, }, ], "viewport": { @@ -33186,7 +31373,7 @@ exports[`Write save file save-image-webp-lossless.chn 1`] = ` exports[`Write save file text-as-image.chn 1`] = ` { - "checksum": "c30c4407031fec60a968934637888440", + "checksum": "b43905206ef21031c87471b2f7fb9328", "content": { "edges": [ { @@ -33199,7 +31386,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "7b49c766-e87a-5ea8-8f9c-8215eb1bcedf", "targetHandle": "7b49c766-e87a-5ea8-8f9c-8215eb1bcedf-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33211,7 +31397,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "5d42de9c-0e4f-43e4-921f-27720472a2bb", "targetHandle": "5d42de9c-0e4f-43e4-921f-27720472a2bb-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33223,7 +31408,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "b23717be-a418-5c3c-ae01-fbb964ce03a2", "targetHandle": "b23717be-a418-5c3c-ae01-fbb964ce03a2-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33235,7 +31419,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "6e88187e-41a3-5633-88e9-8c64c7d02afc", "targetHandle": "6e88187e-41a3-5633-88e9-8c64c7d02afc-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33247,7 +31430,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "ebc0c7a6-2e1b-5b5f-a1d3-72370f8b3ba2", "targetHandle": "ebc0c7a6-2e1b-5b5f-a1d3-72370f8b3ba2-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33259,7 +31441,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "6fc74529-1249-5efc-9f80-90ccc41164d8", "targetHandle": "6fc74529-1249-5efc-9f80-90ccc41164d8-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33271,7 +31452,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "a7c458eb-11f4-4128-b240-14ee44614b0e", "targetHandle": "a7c458eb-11f4-4128-b240-14ee44614b0e-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33283,7 +31463,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "ce5c2939-9da6-5692-b44e-da9884758194", "targetHandle": "ce5c2939-9da6-5692-b44e-da9884758194-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33295,7 +31474,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "6e5333d5-2d40-45d8-9297-c6c4529826ff", "targetHandle": "6e5333d5-2d40-45d8-9297-c6c4529826ff-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33307,7 +31485,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "0c1c3426-e638-5360-acd8-4206dbc64497", "targetHandle": "0c1c3426-e638-5360-acd8-4206dbc64497-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33319,7 +31496,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "30aacdca-93d6-5a56-b368-e5fa1758d13d", "targetHandle": "30aacdca-93d6-5a56-b368-e5fa1758d13d-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33331,7 +31507,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "e131bcf7-3be4-4cc9-bed4-fbbd2ceb80a3", "targetHandle": "e131bcf7-3be4-4cc9-bed4-fbbd2ceb80a3-6", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33343,7 +31518,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "171cfc3a-39dd-5052-92b2-9808c97cd101", "targetHandle": "171cfc3a-39dd-5052-92b2-9808c97cd101-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33355,7 +31529,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "6e19a706-d22d-5df9-9fff-50637fb9181f", "targetHandle": "6e19a706-d22d-5df9-9fff-50637fb9181f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33367,7 +31540,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "bdffba03-341d-528b-bbf6-a378e8142ff0", "targetHandle": "bdffba03-341d-528b-bbf6-a378e8142ff0-6", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33379,7 +31551,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "2707e454-9efd-5154-a309-4b148ab8c7d2", "targetHandle": "2707e454-9efd-5154-a309-4b148ab8c7d2-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33391,7 +31562,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "2ab92c81-9367-5ca5-8bd2-9179c4fb40bf", "targetHandle": "2ab92c81-9367-5ca5-8bd2-9179c4fb40bf-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33403,7 +31573,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "bdffba03-341d-528b-bbf6-a378e8142ff0", "targetHandle": "bdffba03-341d-528b-bbf6-a378e8142ff0-5", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33415,7 +31584,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "7e646f5c-76b6-5828-8e90-c47162ad6aa5", "targetHandle": "7e646f5c-76b6-5828-8e90-c47162ad6aa5-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33427,7 +31595,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "e794be6f-0b13-54fa-b225-0114ef68a049", "targetHandle": "e794be6f-0b13-54fa-b225-0114ef68a049-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33439,7 +31606,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "8df0fd7d-c0c1-5cb8-9a9d-91e7a81d9c4a", "targetHandle": "8df0fd7d-c0c1-5cb8-9a9d-91e7a81d9c4a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33451,7 +31617,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "d896c3b6-11a0-4db1-9451-5fed6fb21ad0", "targetHandle": "d896c3b6-11a0-4db1-9451-5fed6fb21ad0-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33463,7 +31628,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "2b6ad7fb-3aaf-4761-8cde-a3960f5733c7", "targetHandle": "2b6ad7fb-3aaf-4761-8cde-a3960f5733c7-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33475,7 +31639,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "071c5460-e851-4538-af8a-8063bdd3a6d4", "targetHandle": "071c5460-e851-4538-af8a-8063bdd3a6d4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33487,7 +31650,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "b4ddcbf0-dc98-5f8b-89ad-f9ae37d3b9ff", "targetHandle": "b4ddcbf0-dc98-5f8b-89ad-f9ae37d3b9ff-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33499,7 +31661,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "f8349077-8d91-51a8-a43c-f47a2f4c60d4", "targetHandle": "f8349077-8d91-51a8-a43c-f47a2f4c60d4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33511,7 +31672,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "bbe742c4-413f-5c1f-aa55-2b0ab023c3a3", "targetHandle": "bbe742c4-413f-5c1f-aa55-2b0ab023c3a3-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33523,7 +31683,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "2390e815-d3b4-5def-8fbe-7d129c72a953", "targetHandle": "2390e815-d3b4-5def-8fbe-7d129c72a953-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33535,7 +31694,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "62ab70a6-cdb8-5f45-8557-7f8dd6446097", "targetHandle": "62ab70a6-cdb8-5f45-8557-7f8dd6446097-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33547,7 +31705,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "c9631041-f3e9-518f-a600-614b32e90a76", "targetHandle": "c9631041-f3e9-518f-a600-614b32e90a76-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33559,7 +31716,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "6bb87d6c-915c-556d-8321-83cc43bfeb5f", "targetHandle": "6bb87d6c-915c-556d-8321-83cc43bfeb5f-6", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33571,7 +31727,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "c48e94a6-8547-48e0-b9b4-a5967c428047", "targetHandle": "c48e94a6-8547-48e0-b9b4-a5967c428047-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33583,7 +31738,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "d614db33-b046-52ec-bced-d877e76052fa", "targetHandle": "d614db33-b046-52ec-bced-d877e76052fa-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33595,7 +31749,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "ee3b31a3-c215-4a01-89ad-8b0f80586214", "targetHandle": "ee3b31a3-c215-4a01-89ad-8b0f80586214-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33607,7 +31760,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "6bb87d6c-915c-556d-8321-83cc43bfeb5f", "targetHandle": "6bb87d6c-915c-556d-8321-83cc43bfeb5f-5", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33619,7 +31771,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "5eaa9ba6-2235-45ee-91ef-49c059aef667", "targetHandle": "5eaa9ba6-2235-45ee-91ef-49c059aef667-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33631,7 +31782,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "70a49e17-36f1-5b40-9388-599ba9e9cee4", "targetHandle": "70a49e17-36f1-5b40-9388-599ba9e9cee4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33643,7 +31793,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "51826397-e502-485a-9109-f4ec326fb7b8", "targetHandle": "51826397-e502-485a-9109-f4ec326fb7b8-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33655,7 +31804,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "1c145d7d-e733-5d66-9395-ec3dcf9e808a", "targetHandle": "1c145d7d-e733-5d66-9395-ec3dcf9e808a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33667,7 +31815,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "ce5c2939-9da6-5692-b44e-da9884758194", "targetHandle": "ce5c2939-9da6-5692-b44e-da9884758194-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33679,7 +31826,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "e798b1fe-0815-5b84-b4d4-c79f0909068b", "targetHandle": "e798b1fe-0815-5b84-b4d4-c79f0909068b-5", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33691,7 +31837,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "d614db33-b046-52ec-bced-d877e76052fa", "targetHandle": "d614db33-b046-52ec-bced-d877e76052fa-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33703,7 +31848,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "970247e4-6cc3-5814-be4e-f7255de22daa", "targetHandle": "970247e4-6cc3-5814-be4e-f7255de22daa-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33715,7 +31859,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "c48e94a6-8547-48e0-b9b4-a5967c428047", "targetHandle": "c48e94a6-8547-48e0-b9b4-a5967c428047-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33727,7 +31870,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "e798b1fe-0815-5b84-b4d4-c79f0909068b", "targetHandle": "e798b1fe-0815-5b84-b4d4-c79f0909068b-6", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33739,7 +31881,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "6fc74529-1249-5efc-9f80-90ccc41164d8", "targetHandle": "6fc74529-1249-5efc-9f80-90ccc41164d8-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33751,7 +31892,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "07551eb5-a01c-531f-8f51-c72305d48a7f", "targetHandle": "07551eb5-a01c-531f-8f51-c72305d48a7f-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33763,7 +31903,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "470bc244-86bd-4d62-a28b-9962b5d2407a", "targetHandle": "470bc244-86bd-4d62-a28b-9962b5d2407a-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33775,7 +31914,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "9fe3afef-95b1-5752-bb08-49eaf549b7f2", "targetHandle": "9fe3afef-95b1-5752-bb08-49eaf549b7f2-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33787,7 +31925,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "63a5de07-155d-4a76-8b3f-9bff93ccb1a4", "targetHandle": "63a5de07-155d-4a76-8b3f-9bff93ccb1a4-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -33799,7 +31936,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "target": "86105808-6363-4b8d-ac3b-d83e4bbc1d9f", "targetHandle": "86105808-6363-4b8d-ac3b-d83e4bbc1d9f-0", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -33823,7 +31959,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -33844,7 +31979,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -33867,7 +32001,6 @@ exports[`Write save file text-as-image.chn 1`] = ` "selected": false, "type": "regularNode", "width": 2068, - "zIndex": 50, }, { "data": { @@ -33899,7 +32032,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -33916,7 +32048,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -33948,7 +32079,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -33965,7 +32095,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -33982,7 +32111,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34005,7 +32133,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 915, - "zIndex": 50, }, { "data": { @@ -34037,7 +32164,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -34054,7 +32180,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34071,7 +32196,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34089,7 +32213,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34106,7 +32229,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34123,7 +32245,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34155,7 +32276,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -34187,7 +32307,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -34204,7 +32323,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34236,7 +32354,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 267, - "zIndex": 50, }, { "data": { @@ -34259,7 +32376,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 519, - "zIndex": 50, }, { "data": { @@ -34280,7 +32396,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34299,7 +32414,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34316,7 +32430,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34334,7 +32447,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34352,7 +32464,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34369,7 +32480,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34401,7 +32511,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -34418,7 +32527,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34439,7 +32547,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -34456,7 +32563,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34481,7 +32587,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34498,7 +32603,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34530,7 +32634,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -34547,7 +32650,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34564,7 +32666,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34587,7 +32688,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 1285, - "zIndex": 50, }, { "data": { @@ -34604,7 +32704,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34636,7 +32735,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -34653,7 +32751,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34670,7 +32767,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34702,7 +32798,6 @@ for chaiNNer.", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -34719,7 +32814,6 @@ for chaiNNer.", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34751,7 +32845,6 @@ for chaiNNer.", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -34768,7 +32861,6 @@ for chaiNNer.", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34800,7 +32892,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -34821,7 +32912,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 250, - "zIndex": 50, }, { "data": { @@ -34838,7 +32928,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34855,7 +32944,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34887,7 +32975,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -34912,7 +32999,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34929,7 +33015,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34948,7 +33033,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34973,7 +33057,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -34992,7 +33075,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -35024,7 +33106,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -35056,7 +33137,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -35081,7 +33161,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -35098,7 +33177,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -35130,7 +33208,6 @@ for chaiNNer.", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -35162,7 +33239,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -35179,7 +33255,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -35211,7 +33286,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -35234,7 +33308,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 574, - "zIndex": 50, }, { "data": { @@ -35251,7 +33324,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -35283,7 +33355,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -35315,7 +33386,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -35347,7 +33417,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, { "data": { @@ -35368,7 +33437,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -35385,7 +33453,6 @@ consectetur adipiscing...", "selected": false, "type": "regularNode", "width": 240, - "zIndex": 50, }, { "data": { @@ -35417,7 +33484,6 @@ consectetur adipiscing ...", "selected": false, "type": "regularNode", "width": 266, - "zIndex": 50, }, ], "viewport": { @@ -35432,7 +33498,7 @@ consectetur adipiscing ...", exports[`Write save file text-pattern.chn 1`] = ` { - "checksum": "c0dff178466fea6b688fcb5459d05f79", + "checksum": "4ff80b474b9f33545b8d009157e05ce5", "content": { "edges": [ { @@ -35444,7 +33510,6 @@ exports[`Write save file text-pattern.chn 1`] = ` "target": "3839b3f2-9d2a-43af-857c-71e4f8c17f29", "targetHandle": "3839b3f2-9d2a-43af-857c-71e4f8c17f29-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -35455,7 +33520,6 @@ exports[`Write save file text-pattern.chn 1`] = ` "target": "ad7a95c8-8931-470a-b40d-c39f98cdafd6", "targetHandle": "ad7a95c8-8931-470a-b40d-c39f98cdafd6-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -35466,7 +33530,6 @@ exports[`Write save file text-pattern.chn 1`] = ` "target": "37e5d099-9199-4c51-bffb-c7ea060e6aec", "targetHandle": "37e5d099-9199-4c51-bffb-c7ea060e6aec-3", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -35477,7 +33540,6 @@ exports[`Write save file text-pattern.chn 1`] = ` "target": "37e5d099-9199-4c51-bffb-c7ea060e6aec", "targetHandle": "37e5d099-9199-4c51-bffb-c7ea060e6aec-1", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -35488,7 +33550,6 @@ exports[`Write save file text-pattern.chn 1`] = ` "target": "3839b3f2-9d2a-43af-857c-71e4f8c17f29", "targetHandle": "3839b3f2-9d2a-43af-857c-71e4f8c17f29-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -35499,7 +33560,6 @@ exports[`Write save file text-pattern.chn 1`] = ` "target": "66dc9cea-5e2c-4358-9dc8-3ae5c17d9e4d", "targetHandle": "66dc9cea-5e2c-4358-9dc8-3ae5c17d9e4d-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -35510,7 +33570,6 @@ exports[`Write save file text-pattern.chn 1`] = ` "target": "37e5d099-9199-4c51-bffb-c7ea060e6aec", "targetHandle": "37e5d099-9199-4c51-bffb-c7ea060e6aec-2", "type": "main", - "zIndex": 49, }, ], "nodes": [ @@ -35532,7 +33591,6 @@ exports[`Write save file text-pattern.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -35549,7 +33607,6 @@ exports[`Write save file text-pattern.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -35568,7 +33625,6 @@ exports[`Write save file text-pattern.chn 1`] = ` "selected": false, "type": "regularNode", "width": 257, - "zIndex": 50, }, { "data": { @@ -35585,7 +33641,6 @@ exports[`Write save file text-pattern.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -35602,7 +33657,6 @@ exports[`Write save file text-pattern.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, ], "viewport": { @@ -35617,7 +33671,7 @@ exports[`Write save file text-pattern.chn 1`] = ` exports[`Write save file utilities.chn 1`] = ` { - "checksum": "90e8935b62a1e283442d4dfc48de964d", + "checksum": "e387dbb663a5aa222751c753b9655184", "content": { "edges": [], "nodes": [ @@ -35640,7 +33694,6 @@ exports[`Write save file utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 242, - "zIndex": 50, }, { "data": { @@ -35661,7 +33714,6 @@ exports[`Write save file utilities.chn 1`] = ` "selected": true, "type": "regularNode", "width": 257, - "zIndex": 70, }, { "data": { @@ -35680,7 +33732,6 @@ exports[`Write save file utilities.chn 1`] = ` "selected": false, "type": "regularNode", "width": 258, - "zIndex": 50, }, ], "viewport": { @@ -35695,7 +33746,7 @@ exports[`Write save file utilities.chn 1`] = ` exports[`Write save file video-frame-iterator.chn 1`] = ` { - "checksum": "9962e76ffb4938a9a23de00aa45027d4", + "checksum": "1e84085c6e4d78c6e4b1e794e39ca0fd", "content": { "edges": [ { @@ -35708,7 +33759,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "32b947b1-0ce4-5abd-9680-a4f3f36849f2", "targetHandle": "32b947b1-0ce4-5abd-9680-a4f3f36849f2-0", "type": "main", - "zIndex": 99, }, { "animated": false, @@ -35720,7 +33770,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "adedfe61-a1cb-566e-b8a5-ec421bc2810b", "targetHandle": "adedfe61-a1cb-566e-b8a5-ec421bc2810b-0", "type": "main", - "zIndex": 59, }, { "animated": false, @@ -35732,7 +33781,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "3ad6de3d-e6e0-5e73-b116-53641150503e", "targetHandle": "3ad6de3d-e6e0-5e73-b116-53641150503e-0", "type": "main", - "zIndex": 107, }, { "animated": false, @@ -35744,7 +33792,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "b46465b6-4513-5b05-8603-8c8ff2cd25a3", "targetHandle": "b46465b6-4513-5b05-8603-8c8ff2cd25a3-0", "type": "main", - "zIndex": 139, }, { "animated": false, @@ -35756,7 +33803,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "333d55cb-0d44-5350-acba-ed45b00ad999", "targetHandle": "333d55cb-0d44-5350-acba-ed45b00ad999-0", "type": "main", - "zIndex": 103, }, { "animated": false, @@ -35768,7 +33814,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "ec7eb796-f435-569c-80ae-647f8137769b", "targetHandle": "ec7eb796-f435-569c-80ae-647f8137769b-0", "type": "main", - "zIndex": 87, }, { "animated": false, @@ -35780,7 +33825,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "5b3d26bf-e26a-5989-8b70-e204f4edc116", "targetHandle": "5b3d26bf-e26a-5989-8b70-e204f4edc116-0", "type": "main", - "zIndex": 95, }, { "animated": false, @@ -35792,7 +33836,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "58db8e6a-5583-5d4c-9dbd-85f6dfb2e821", "targetHandle": "58db8e6a-5583-5d4c-9dbd-85f6dfb2e821-0", "type": "main", - "zIndex": 119, }, { "animated": false, @@ -35804,7 +33847,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "dea6394b-9c96-5009-8c16-9bcc63cc0df6", "targetHandle": "dea6394b-9c96-5009-8c16-9bcc63cc0df6-0", "type": "main", - "zIndex": 79, }, { "animated": false, @@ -35816,7 +33858,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "b3d86c7e-32ca-5ed9-89d0-33a9aa7c0c85", "targetHandle": "b3d86c7e-32ca-5ed9-89d0-33a9aa7c0c85-0", "type": "main", - "zIndex": 123, }, { "animated": false, @@ -35828,7 +33869,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "142a2211-d6ae-526a-8f43-2a97607f2995", "targetHandle": "142a2211-d6ae-526a-8f43-2a97607f2995-0", "type": "main", - "zIndex": 49, }, { "animated": false, @@ -35840,7 +33880,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "cb3408ff-ddcc-5fd0-90af-d4b1249a3c70", "targetHandle": "cb3408ff-ddcc-5fd0-90af-d4b1249a3c70-0", "type": "main", - "zIndex": 91, }, { "animated": false, @@ -35852,7 +33891,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "3de2a28d-321a-5e72-bf98-e83ae6601019", "targetHandle": "3de2a28d-321a-5e72-bf98-e83ae6601019-0", "type": "main", - "zIndex": 75, }, { "animated": false, @@ -35864,7 +33902,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "f9af3baa-2f65-57c6-8695-7c34141aeb48", "targetHandle": "f9af3baa-2f65-57c6-8695-7c34141aeb48-0", "type": "main", - "zIndex": 131, }, { "animated": false, @@ -35876,7 +33913,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "322e6c00-055d-54bc-9663-2773a431762d", "targetHandle": "322e6c00-055d-54bc-9663-2773a431762d-0", "type": "main", - "zIndex": 63, }, { "animated": false, @@ -35888,7 +33924,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "074e82df-fcac-5f41-ae71-8f239a1b71ea", "targetHandle": "074e82df-fcac-5f41-ae71-8f239a1b71ea-0", "type": "main", - "zIndex": 55, }, { "animated": false, @@ -35900,7 +33935,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "b3fefb04-6b3d-51ce-ad7a-caea1820978e", "targetHandle": "b3fefb04-6b3d-51ce-ad7a-caea1820978e-0", "type": "main", - "zIndex": 71, }, { "animated": false, @@ -35912,7 +33946,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "c732f0df-ba9f-5c70-a8a8-ec1ad6914880", "targetHandle": "c732f0df-ba9f-5c70-a8a8-ec1ad6914880-0", "type": "main", - "zIndex": 135, }, { "animated": false, @@ -35924,7 +33957,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "f6b90385-d6b9-5c1d-9e37-e21c1d7ce906", "targetHandle": "f6b90385-d6b9-5c1d-9e37-e21c1d7ce906-0", "type": "main", - "zIndex": 115, }, { "animated": false, @@ -35936,7 +33968,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "381935ba-184d-5ed6-a5ac-8cd9c1220df2", "targetHandle": "381935ba-184d-5ed6-a5ac-8cd9c1220df2-0", "type": "main", - "zIndex": 83, }, { "animated": false, @@ -35948,7 +33979,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "cabd3b1d-2f8d-5ac0-8548-75cab47bc290", "targetHandle": "cabd3b1d-2f8d-5ac0-8548-75cab47bc290-0", "type": "main", - "zIndex": 111, }, { "animated": false, @@ -35960,7 +33990,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "d1eca353-69ab-544a-9eee-9c3390dd0bf2", "targetHandle": "d1eca353-69ab-544a-9eee-9c3390dd0bf2-0", "type": "main", - "zIndex": 51, }, { "animated": false, @@ -35972,7 +34001,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "c8d1290c-d664-43c3-a19a-9a780402e5b3", "targetHandle": "c8d1290c-d664-43c3-a19a-9a780402e5b3-0", "type": "main", - "zIndex": 127, }, { "animated": false, @@ -35984,7 +34012,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "target": "dbdafebf-83f1-562a-a5b7-422a7a15848b", "targetHandle": "dbdafebf-83f1-562a-a5b7-422a7a15848b-0", "type": "main", - "zIndex": 67, }, { "animated": false, @@ -36399,7 +34426,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "selected": false, "type": "regularNode", "width": 2499, - "zIndex": 234, }, { "data": { @@ -36422,7 +34448,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "selected": false, "type": "regularNode", "width": 2499, - "zIndex": 234, }, { "data": { @@ -36445,7 +34470,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "selected": false, "type": "regularNode", "width": 2499, - "zIndex": 234, }, { "data": { @@ -36468,7 +34492,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "selected": false, "type": "regularNode", "width": 2499, - "zIndex": 234, }, { "data": { @@ -36491,7 +34514,6 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "selected": false, "type": "regularNode", "width": 2499, - "zIndex": 234, }, { "data": {