diff --git a/src/common/common-types.ts b/src/common/common-types.ts index f8b70e76d..94584c184 100644 --- a/src/common/common-types.ts +++ b/src/common/common-types.ts @@ -254,6 +254,7 @@ export type OfKind : never; export type NodeKind = 'regularNode' | 'newIterator' | 'collector'; +export type NodeType = 'backendNode'; export type InputData = Readonly>; export type InputHeight = Readonly>; diff --git a/src/common/migrations.ts b/src/common/migrations.ts index a7eb7b52d..0048442f4 100644 --- a/src/common/migrations.ts +++ b/src/common/migrations.ts @@ -1921,6 +1921,13 @@ const saveVideoInputPR2514: ModernMigration = (data) => { return data; }; +const updateNodeTypesToKinds: ModernMigration = (data) => { + data.nodes.forEach((node) => { + node.type = 'backendNode'; + }); + return data; +}; + // ============== const versionToMigration = (version: string) => { @@ -1978,6 +1985,7 @@ const migrations = [ createBorderEdgesTileFillToPad, unifiedResizeNode, saveVideoInputPR2514, + updateNodeTypesToKinds, ]; export const currentMigration = migrations.length; diff --git a/src/renderer/helpers/reactFlowUtil.ts b/src/renderer/helpers/reactFlowUtil.ts index 21b9b7771..70ecf7631 100644 --- a/src/renderer/helpers/reactFlowUtil.ts +++ b/src/renderer/helpers/reactFlowUtil.ts @@ -14,10 +14,8 @@ export const createNode = ( schemata: SchemaMap, selected = false ): Node => { - const schema = schemata.get(data.schemaId); - const newNode: Node> = { - type: schema.kind, + type: 'backendNode', id, position: { ...position }, data: { diff --git a/src/renderer/main.tsx b/src/renderer/main.tsx index 3864fd637..d9fd27402 100644 --- a/src/renderer/main.tsx +++ b/src/renderer/main.tsx @@ -3,7 +3,7 @@ import { memo, useCallback, useRef } from 'react'; import { useTranslation } from 'react-i18next'; import { EdgeTypes, NodeTypes, ReactFlowProvider } from 'reactflow'; import { useContext } from 'use-context-selector'; -import { NodeKind } from '../common/common-types'; +import { NodeType } from '../common/common-types'; import { getLocalStorage, getStorageKeys } from '../common/util'; import { ChaiNNerLogo } from './components/chaiNNerLogo'; import { CustomEdge } from './components/CustomEdge/CustomEdge'; @@ -22,10 +22,8 @@ import { SettingsProvider } from './contexts/SettingsContext'; import { useIpcRendererListener } from './hooks/useIpcRendererListener'; import { useLastWindowSize } from './hooks/useLastWindowSize'; -const nodeTypes: NodeTypes & Record = { - regularNode: Node, - newIterator: Node, - collector: Node, +const nodeTypes: NodeTypes & Record = { + backendNode: Node, }; const edgeTypes: EdgeTypes = { main: CustomEdge, diff --git a/tests/common/__snapshots__/SaveFile.test.ts.snap b/tests/common/__snapshots__/SaveFile.test.ts.snap index e9a72fad3..b76c7fb89 100644 --- a/tests/common/__snapshots__/SaveFile.test.ts.snap +++ b/tests/common/__snapshots__/SaveFile.test.ts.snap @@ -355,7 +355,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 585, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -379,7 +379,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 840, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 287, }, { @@ -412,7 +412,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 1560, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -434,7 +434,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 645, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -450,7 +450,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 600, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -466,7 +466,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 1215, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -482,7 +482,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 1005, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -507,7 +507,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": -180, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -540,7 +540,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 1995, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -559,7 +559,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 690, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -581,7 +581,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 135, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -597,7 +597,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 60, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -617,7 +617,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 1005, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -642,7 +642,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 1680, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -667,7 +667,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 960, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -687,7 +687,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 1230, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -703,7 +703,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 1515, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -735,7 +735,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": -195, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -754,7 +754,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 1260, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 279, }, { @@ -770,7 +770,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 630, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -788,7 +788,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 104.1796137976695, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -821,7 +821,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 990, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -840,7 +840,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 1020, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 279, }, { @@ -862,7 +862,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 1665, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -887,7 +887,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 1275, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -903,7 +903,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 60, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -925,7 +925,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 1305, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -945,7 +945,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 1005, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -978,7 +978,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 1320, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -1003,7 +1003,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": 2010, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -1025,7 +1025,7 @@ exports[`Read save file DiffusePBR.chn 1`] = ` "y": -315, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, ], "tamperedWith": false, @@ -1105,7 +1105,7 @@ exports[`Read save file add noise with seed edge.chn 1`] = ` "y": 800, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -1126,7 +1126,7 @@ exports[`Read save file add noise with seed edge.chn 1`] = ` "y": 544, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -1144,7 +1144,7 @@ exports[`Read save file add noise with seed edge.chn 1`] = ` "y": 480, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -1160,7 +1160,7 @@ exports[`Read save file add noise with seed edge.chn 1`] = ` "y": 544, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -1179,7 +1179,7 @@ exports[`Read save file add noise with seed edge.chn 1`] = ` "y": 524, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, ], @@ -1455,7 +1455,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 592, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -1488,7 +1488,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 624, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -1517,7 +1517,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 816, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -1545,7 +1545,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 896, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 241, }, { @@ -1573,7 +1573,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 1136, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -1600,7 +1600,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 1136, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -1627,7 +1627,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 1168, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -1654,7 +1654,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 991, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -1684,7 +1684,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 1440, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -1714,7 +1714,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 1552, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -1745,7 +1745,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 1664, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -1774,7 +1774,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 1343, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -1803,7 +1803,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 912, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -1832,7 +1832,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 1520, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -1856,7 +1856,7 @@ exports[`Read save file big ol test.chn 1`] = ` "x": 3808, "y": 880, }, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -1874,7 +1874,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": -96, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -1893,7 +1893,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": -48, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -1923,7 +1923,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 1488, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -1941,7 +1941,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 1062, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": undefined, "zIndex": undefined, }, @@ -1962,7 +1962,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 987, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -1988,7 +1988,7 @@ exports[`Read save file big ol test.chn 1`] = ` "y": 336, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, ], "tamperedWith": false, @@ -4060,7 +4060,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -738.1007734844538, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 502, }, { @@ -4076,7 +4076,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5551.727800332799, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4100,7 +4100,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1658.6150689744925, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4124,7 +4124,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1656.6939125076558, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4144,7 +4144,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3126.408240253019, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -4160,7 +4160,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 575.7617885612143, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4182,7 +4182,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -116.4203657336657, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 243, }, { @@ -4198,7 +4198,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 147.44604519505003, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4222,7 +4222,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1999.3385199379227, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4238,7 +4238,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3915.2055279854667, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4254,7 +4254,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -381.987049972833, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4270,7 +4270,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4697.543249711631, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4290,7 +4290,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2582.6326040178647, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -4306,7 +4306,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5213.634896086391, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4330,7 +4330,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 580.1776788090999, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4352,7 +4352,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1913.4782602682628, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -4376,7 +4376,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5196.942412329455, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4392,7 +4392,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2523.5320309563117, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4416,7 +4416,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1009.8211270695556, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4432,7 +4432,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1016.7855315759243, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4448,7 +4448,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2093.9716406993675, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4472,7 +4472,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2580.857361340085, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4488,7 +4488,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 998.3180727474369, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4512,7 +4512,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -89.08978430399779, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4536,7 +4536,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 575.7617885612143, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4552,7 +4552,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4712.281590963989, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4568,7 +4568,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4386.783231922494, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4584,7 +4584,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3461.4463956588957, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4608,7 +4608,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3450.4275933080767, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4628,7 +4628,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5539.133255127886, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -4644,7 +4644,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1328.2295326579806, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4660,7 +4660,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3450.8784267104415, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4680,7 +4680,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2571.792151480858, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -4704,7 +4704,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5203.99447584405, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4720,7 +4720,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5203.99447584405, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4736,7 +4736,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1646.1378492214726, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4753,7 +4753,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1320.7502975936643, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4769,7 +4769,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1636.1834344913536, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4793,7 +4793,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2515.1191407365586, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4813,7 +4813,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5315.004942650221, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -4833,7 +4833,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3571.056088538381, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -4849,7 +4849,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1401.658584688235, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4869,7 +4869,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4700.574682844652, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -4893,7 +4893,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1329.1324051483498, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4917,7 +4917,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4377.1428116801535, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4941,7 +4941,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 302.1765778550219, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4957,7 +4957,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -124.94788896219092, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4973,7 +4973,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2012.620490285826, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -4990,7 +4990,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1837.2732445403062, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5014,7 +5014,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2088.518322326944, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5030,7 +5030,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3449.2005016505827, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5050,7 +5050,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5554.0251970427935, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -5074,7 +5074,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1402.0599208391454, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5091,7 +5091,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1983.2780221239295, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5109,7 +5109,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -134.10684593741516, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5133,7 +5133,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 927.4118577322531, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5153,7 +5153,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2582.128493172763, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -5169,7 +5169,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 203.6600957934366, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5185,7 +5185,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2754.9408664313646, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5202,7 +5202,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3710.3424375906948, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5218,7 +5218,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2083.9240247998223, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5242,7 +5242,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3920.141940517007, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5258,7 +5258,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 580.1776788090999, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5274,7 +5274,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1871.1291820649842, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5291,7 +5291,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -382.1672771561724, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5307,7 +5307,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -374.3341080749153, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5323,7 +5323,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2075.6513095323157, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5343,7 +5343,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4725.691233023524, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -5360,7 +5360,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1594.6993725170582, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5384,7 +5384,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2084.889498464934, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5408,7 +5408,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5218.229689506378, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5429,7 +5429,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -134.9478889621909, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5445,7 +5445,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3921.802133838088, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5461,7 +5461,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4390.459010740968, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5485,7 +5485,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1666.9052833871517, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5509,7 +5509,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2584.486185202095, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5527,7 +5527,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2718.077736417954, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5551,7 +5551,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5217.310674904864, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5567,7 +5567,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4377.1428116801535, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5583,7 +5583,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3894.5839501832343, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5604,7 +5604,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2581.0343532195407, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 243, }, { @@ -5628,7 +5628,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 199.11294609390546, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5652,7 +5652,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3449.2005016505827, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5668,7 +5668,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 297.53850530166164, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5692,7 +5692,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1325.6128330003262, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5716,7 +5716,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3000.0583807282947, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5732,7 +5732,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5539.133255127886, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5756,7 +5756,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2004.3045242411267, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5780,7 +5780,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3010.0390724081435, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5800,7 +5800,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5552.54289718742, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -5824,7 +5824,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1318.826629209888, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5848,7 +5848,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3926.396927258076, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5872,7 +5872,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2081.141297180983, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5896,7 +5896,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1998.1059032673243, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5912,7 +5912,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1271.074057074343, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5934,7 +5934,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -326.2634293250004, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -5954,7 +5954,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2579.7002571685543, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -5970,7 +5970,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3010.0390724081435, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -5994,7 +5994,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3908.485934777275, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6010,7 +6010,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2072.0224856703057, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6026,7 +6026,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -86.83088543058993, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6042,7 +6042,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2006.6019209511207, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6058,7 +6058,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5196.942412329455, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6080,7 +6080,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2591.5189541245227, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -6104,7 +6104,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3894.5839501832343, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6128,7 +6128,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3466.9602036804, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6147,7 +6147,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -120.23573237621135, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6167,7 +6167,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5524.394913875527, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -6183,7 +6183,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1271.3243444220645, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6199,7 +6199,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 927.4118577322531, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6215,7 +6215,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3018.7604780489687, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6231,7 +6231,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3000.0583807282947, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6247,7 +6247,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3450.4275933080767, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6263,7 +6263,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2579.1162602134928, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6279,7 +6279,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3908.485934777275, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6303,7 +6303,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4390.459010740968, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6322,7 +6322,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -556.4530769462873, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6338,7 +6338,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5217.310674904864, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6362,7 +6362,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 998.3180727474369, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6382,7 +6382,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -129.17630151880604, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6404,7 +6404,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -187.79442409924377, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -6420,7 +6420,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2013.122900197887, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6436,7 +6436,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5550.245500477426, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6456,7 +6456,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4488.153278486325, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -6480,7 +6480,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1331.2609657910016, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6497,7 +6497,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2752.326287375834, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6521,7 +6521,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3017.3820959404907, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6545,7 +6545,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 147.44604519505003, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6567,7 +6567,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -160.22637207287, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -6591,7 +6591,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1398.1763824350505, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6607,7 +6607,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3017.3820959404907, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6623,7 +6623,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1643.93897561619, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6639,7 +6639,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5524.394913875527, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6655,7 +6655,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4723.393836313529, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6679,7 +6679,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4391.378025342482, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6699,7 +6699,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4727.173532878897, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -6719,7 +6719,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4010.701931182368, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -6735,7 +6735,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4370.090748165559, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6759,7 +6759,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4370.090748165559, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6775,7 +6775,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1404.2226151815569, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6795,7 +6795,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4712.281590963989, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -6811,7 +6811,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4724.876136168903, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6831,7 +6831,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -106.37895105171596, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6855,7 +6855,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3463.74379236889, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6871,7 +6871,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1267.5544849263197, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -6895,7 +6895,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3018.7604780489687, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, ], @@ -6939,7 +6939,7 @@ exports[`Read save file box-median-blur.chn 1`] = ` "y": 400, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -6957,7 +6957,7 @@ exports[`Read save file box-median-blur.chn 1`] = ` "y": 400, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, ], @@ -7008,7 +7008,7 @@ exports[`Read save file canny-edge-detection.chn 1`] = ` "y": 240, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 241, }, { @@ -7027,7 +7027,7 @@ exports[`Read save file canny-edge-detection.chn 1`] = ` "y": 240, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -7043,7 +7043,7 @@ exports[`Read save file canny-edge-detection.chn 1`] = ` "y": 240, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 259, }, ], @@ -7228,7 +7228,7 @@ exports[`Read save file color-transfer.chn 1`] = ` "y": 1126.7838714532866, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -7244,7 +7244,7 @@ exports[`Read save file color-transfer.chn 1`] = ` "y": 1.0003511977455162, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -7260,7 +7260,7 @@ exports[`Read save file color-transfer.chn 1`] = ` "y": 392.8066251478931, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -7282,7 +7282,7 @@ exports[`Read save file color-transfer.chn 1`] = ` "y": 1167.5514088487157, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -7304,7 +7304,7 @@ exports[`Read save file color-transfer.chn 1`] = ` "y": -19.86416831421603, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -7320,7 +7320,7 @@ exports[`Read save file color-transfer.chn 1`] = ` "y": 632.8466090039584, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -7342,7 +7342,7 @@ exports[`Read save file color-transfer.chn 1`] = ` "y": 389.50588459673725, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -7363,7 +7363,7 @@ exports[`Read save file color-transfer.chn 1`] = ` "y": 814.6679949139462, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -7379,7 +7379,7 @@ exports[`Read save file color-transfer.chn 1`] = ` "y": 771.8156046515132, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -7405,7 +7405,7 @@ exports[`Read save file color-transfer.chn 1`] = ` "y": 545.5300879334493, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -7423,7 +7423,7 @@ exports[`Read save file color-transfer.chn 1`] = ` "y": 572.982623897233, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, ], @@ -7494,7 +7494,7 @@ exports[`Read save file combine-rgba.chn 1`] = ` "y": 334, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -7510,7 +7510,7 @@ exports[`Read save file combine-rgba.chn 1`] = ` "y": 231, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 242, }, ], @@ -7684,7 +7684,7 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "y": 560, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 241, }, { @@ -7700,7 +7700,7 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "y": 224, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 241, }, { @@ -7718,7 +7718,7 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "y": -96, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 265, }, { @@ -7737,7 +7737,7 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "y": 960, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -7755,7 +7755,7 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "y": 224, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -7773,7 +7773,7 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "y": 224, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -7792,7 +7792,7 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "y": 592, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -7810,7 +7810,7 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "y": 224, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -7828,7 +7828,7 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "y": -128, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -7846,7 +7846,7 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "y": 224, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -7865,7 +7865,7 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "y": 1160, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -7884,7 +7884,7 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "y": 792, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -7902,7 +7902,7 @@ exports[`Read save file convert-onnx-update.chn 1`] = ` "y": 424, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, ], @@ -7953,7 +7953,7 @@ exports[`Read save file convert-to-ncnn.chn 1`] = ` "y": 345, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 256, }, { @@ -7971,7 +7971,7 @@ exports[`Read save file convert-to-ncnn.chn 1`] = ` "y": 345, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -7987,7 +7987,7 @@ exports[`Read save file convert-to-ncnn.chn 1`] = ` "y": 345, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 256, }, ], @@ -8028,7 +8028,7 @@ exports[`Read save file copy-to-clipboard.chn 1`] = ` "y": 434.0347224631112, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -8044,7 +8044,7 @@ exports[`Read save file copy-to-clipboard.chn 1`] = ` "y": 667.0756396555195, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 242, }, ], @@ -8159,7 +8159,7 @@ exports[`Read save file create-border-migration.chn 1`] = ` "y": 160, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -8175,7 +8175,7 @@ exports[`Read save file create-border-migration.chn 1`] = ` "y": 1696, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -8193,7 +8193,7 @@ exports[`Read save file create-border-migration.chn 1`] = ` "y": 416, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -8209,7 +8209,7 @@ exports[`Read save file create-border-migration.chn 1`] = ` "y": 816, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -8225,7 +8225,7 @@ exports[`Read save file create-border-migration.chn 1`] = ` "y": 1184, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -8246,7 +8246,7 @@ exports[`Read save file create-border-migration.chn 1`] = ` "y": 816, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -8269,7 +8269,7 @@ exports[`Read save file create-border-migration.chn 1`] = ` "y": 1696, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -8296,7 +8296,7 @@ exports[`Read save file create-border-migration.chn 1`] = ` "y": 160, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -8320,7 +8320,7 @@ exports[`Read save file create-border-migration.chn 1`] = ` "y": 1184, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, ], @@ -8400,7 +8400,7 @@ exports[`Read save file create-color-old.chn 1`] = ` "y": 992, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -8420,7 +8420,7 @@ exports[`Read save file create-color-old.chn 1`] = ` "y": 880, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -8440,7 +8440,7 @@ exports[`Read save file create-color-old.chn 1`] = ` "y": 880, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -8459,7 +8459,7 @@ exports[`Read save file create-color-old.chn 1`] = ` "y": 480, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -8478,7 +8478,7 @@ exports[`Read save file create-color-old.chn 1`] = ` "y": 480, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -8497,7 +8497,7 @@ exports[`Read save file create-color-old.chn 1`] = ` "y": 1264, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -8518,7 +8518,7 @@ exports[`Read save file create-color-old.chn 1`] = ` "y": 1264, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -8537,7 +8537,7 @@ exports[`Read save file create-color-old.chn 1`] = ` "y": 1264, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -8556,7 +8556,7 @@ exports[`Read save file create-color-old.chn 1`] = ` "y": 480, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, ], "tamperedWith": false, @@ -8648,7 +8648,7 @@ exports[`Read save file create-edges.chn 1`] = ` "y": 431.4683450250724, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -8664,7 +8664,7 @@ exports[`Read save file create-edges.chn 1`] = ` "y": 736.5039878063648, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -8680,7 +8680,7 @@ exports[`Read save file create-edges.chn 1`] = ` "y": 1243.443326026633, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -8701,7 +8701,7 @@ exports[`Read save file create-edges.chn 1`] = ` "y": 364.5039878063652, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 283, }, { @@ -8725,7 +8725,7 @@ exports[`Read save file create-edges.chn 1`] = ` "y": 1142.4430448096266, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 283, }, { @@ -8746,7 +8746,7 @@ exports[`Read save file create-edges.chn 1`] = ` "y": 719.503987806365, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 283, }, { @@ -8762,7 +8762,7 @@ exports[`Read save file create-edges.chn 1`] = ` "y": 323.5039878063652, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, ], @@ -9383,7 +9383,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 1022.6773713424252, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9401,7 +9401,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 926.3127591321982, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9417,7 +9417,7 @@ exports[`Read save file crop.chn 1`] = ` "y": -7.4646289196914495, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9433,7 +9433,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 2773.3201490134006, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9449,7 +9449,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 2187.5426662335994, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9465,7 +9465,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 409.02214823654583, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9490,7 +9490,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 1683.8120958325176, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9507,7 +9507,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 2036.9623333131017, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, { @@ -9523,7 +9523,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 1025.6416113236296, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9548,7 +9548,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 409.51287394423207, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9564,7 +9564,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 2929.663990644103, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9580,7 +9580,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 1683.8120958325176, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9596,7 +9596,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 1025.8817154576845, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9612,7 +9612,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 1873.7214281174704, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9628,7 +9628,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 1906.2172489537722, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9653,7 +9653,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 409.02214823654583, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9670,7 +9670,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 2797.4776840547206, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, { @@ -9687,7 +9687,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 3141.4077726319974, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, { @@ -9712,7 +9712,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 2789.993031245015, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9729,7 +9729,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 2553.8879828219124, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, { @@ -9754,7 +9754,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 2187.4556671451473, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9779,7 +9779,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 1025.8817154576845, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9795,7 +9795,7 @@ exports[`Read save file crop.chn 1`] = ` "y": -31.789245763894968, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9812,7 +9812,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 2540.6929037141836, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, { @@ -9837,7 +9837,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 1025.6416113236296, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9857,7 +9857,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 2137.2592294930278, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9873,7 +9873,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 2196.1611727781087, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9890,7 +9890,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 2050.1574124208305, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, { @@ -9915,7 +9915,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 2752.059884883676, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9931,7 +9931,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 763.9278100856005, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9956,7 +9956,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 2187.5426662335994, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -9978,7 +9978,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 747.1466986614282, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 519, }, { @@ -9994,7 +9994,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 409.51287394423207, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -10019,7 +10019,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 4.0223546302788975, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -10035,7 +10035,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 1692.430602377027, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -10060,7 +10060,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 1683.7250967440657, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -10078,7 +10078,7 @@ exports[`Read save file crop.chn 1`] = ` "y": 2219.6570061290113, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, ], @@ -10108,7 +10108,7 @@ exports[`Read save file crop-content.chn 1`] = ` "y": 528, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 241, }, ], @@ -10175,7 +10175,7 @@ exports[`Read save file empty-string-input-test.chn 1`] = ` "y": 240, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -10207,7 +10207,7 @@ exports[`Read save file empty-string-input-test.chn 1`] = ` "y": 96, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -10232,7 +10232,7 @@ exports[`Read save file empty-string-input-test.chn 1`] = ` "y": 480, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -10252,7 +10252,7 @@ exports[`Read save file empty-string-input-test.chn 1`] = ` "y": 624, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -10269,7 +10269,7 @@ exports[`Read save file empty-string-input-test.chn 1`] = ` "y": 460, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, ], "tamperedWith": false, @@ -10399,7 +10399,7 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "y": 575.2219940487153, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -10420,7 +10420,7 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "y": 1340.2109761249815, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -10436,7 +10436,7 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "y": 488.23022401832566, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -10458,7 +10458,7 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "y": 436.23022401832566, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -10479,7 +10479,7 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "y": 1502.6109761249816, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -10495,7 +10495,7 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "y": 1392.2109761249815, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -10516,7 +10516,7 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "y": 598.6302240183257, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -10532,7 +10532,7 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "y": 845.2302240183257, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -10548,7 +10548,7 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "y": 1749.2109761249815, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -10568,7 +10568,7 @@ exports[`Read save file fast-nlmeans.chn 1`] = ` "y": 1254.1849405554992, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, ], @@ -10639,7 +10639,7 @@ exports[`Read save file gamma.chn 1`] = ` "y": 237.2615446978116, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -10658,7 +10658,7 @@ exports[`Read save file gamma.chn 1`] = ` "y": 625.2615446978116, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -10674,7 +10674,7 @@ exports[`Read save file gamma.chn 1`] = ` "y": 495.2615446978116, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -10693,7 +10693,7 @@ exports[`Read save file gamma.chn 1`] = ` "y": 624.2615446978116, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -10713,7 +10713,7 @@ exports[`Read save file gamma.chn 1`] = ` "y": 219.2615446978116, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, ], "tamperedWith": false, @@ -10757,7 +10757,7 @@ exports[`Read save file image-adjustments.chn 1`] = ` "y": 592.9030240407762, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -10776,7 +10776,7 @@ exports[`Read save file image-adjustments.chn 1`] = ` "y": 163.52957902171042, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 278, }, { @@ -10795,7 +10795,7 @@ exports[`Read save file image-adjustments.chn 1`] = ` "y": 179.7658590325766, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -10817,7 +10817,7 @@ exports[`Read save file image-adjustments.chn 1`] = ` "y": 537.8809142551769, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 262, }, { @@ -10837,7 +10837,7 @@ exports[`Read save file image-adjustments.chn 1`] = ` "y": 143.52957902171042, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, ], @@ -10918,7 +10918,7 @@ exports[`Read save file image-channels.chn 1`] = ` "y": 250.19507910772893, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -10936,7 +10936,7 @@ exports[`Read save file image-channels.chn 1`] = ` "y": 626, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -10952,7 +10952,7 @@ exports[`Read save file image-channels.chn 1`] = ` "y": 944, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -10968,7 +10968,7 @@ exports[`Read save file image-channels.chn 1`] = ` "y": 220.21968356908422, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -10984,7 +10984,7 @@ exports[`Read save file image-channels.chn 1`] = ` "y": 721, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 244, }, ], @@ -11060,7 +11060,7 @@ exports[`Read save file image-dim.chn 1`] = ` "y": 557, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 283, }, { @@ -11083,7 +11083,7 @@ exports[`Read save file image-dim.chn 1`] = ` "y": 424, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 283, }, { @@ -11099,7 +11099,7 @@ exports[`Read save file image-dim.chn 1`] = ` "y": 626, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -11119,7 +11119,7 @@ exports[`Read save file image-dim.chn 1`] = ` "y": 223, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 279, }, ], @@ -11222,7 +11222,7 @@ exports[`Read save file image-filters.chn 1`] = ` "y": 933, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 279, }, { @@ -11241,7 +11241,7 @@ exports[`Read save file image-filters.chn 1`] = ` "y": 499, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -11259,7 +11259,7 @@ exports[`Read save file image-filters.chn 1`] = ` "y": 603, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -11278,7 +11278,7 @@ exports[`Read save file image-filters.chn 1`] = ` "y": 1499, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -11294,7 +11294,7 @@ exports[`Read save file image-filters.chn 1`] = ` "y": 1529, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 282, }, { @@ -11314,7 +11314,7 @@ exports[`Read save file image-filters.chn 1`] = ` "y": 941, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -11333,7 +11333,7 @@ exports[`Read save file image-filters.chn 1`] = ` "y": 431, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, ], @@ -11404,7 +11404,7 @@ exports[`Read save file image-input-output.chn 1`] = ` "y": 145, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -11423,7 +11423,7 @@ exports[`Read save file image-input-output.chn 1`] = ` "y": 311, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 265, }, { @@ -11439,7 +11439,7 @@ exports[`Read save file image-input-output.chn 1`] = ` "y": 144, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, ], @@ -11512,7 +11512,7 @@ exports[`Read save file image-iterator.chn 1`] = ` "y": 441, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 265, }, { @@ -11535,7 +11535,7 @@ exports[`Read save file image-iterator.chn 1`] = ` "y": 157, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, ], "tamperedWith": false, @@ -11564,7 +11564,7 @@ exports[`Read save file image-metrics.chn 1`] = ` "y": 560, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 241, }, ], @@ -11710,7 +11710,7 @@ exports[`Read save file image-utilities.chn 1`] = ` "y": 113, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -11728,7 +11728,7 @@ exports[`Read save file image-utilities.chn 1`] = ` "y": 1112.075862240231, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -11749,7 +11749,7 @@ exports[`Read save file image-utilities.chn 1`] = ` "y": 365.42388294050994, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 283, }, { @@ -11768,7 +11768,7 @@ exports[`Read save file image-utilities.chn 1`] = ` "y": 930.7055908254938, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 283, }, { @@ -11788,7 +11788,7 @@ exports[`Read save file image-utilities.chn 1`] = ` "y": 985.0646017506039, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -11806,7 +11806,7 @@ exports[`Read save file image-utilities.chn 1`] = ` "y": 498, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -11826,7 +11826,7 @@ exports[`Read save file image-utilities.chn 1`] = ` "y": 615, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 244, }, { @@ -11844,7 +11844,7 @@ exports[`Read save file image-utilities.chn 1`] = ` "y": 162, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -11862,7 +11862,7 @@ exports[`Read save file image-utilities.chn 1`] = ` "y": 1299.5404330540307, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -11880,7 +11880,7 @@ exports[`Read save file image-utilities.chn 1`] = ` "y": -37, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -11898,7 +11898,7 @@ exports[`Read save file image-utilities.chn 1`] = ` "y": 263, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, ], @@ -12084,7 +12084,7 @@ exports[`Read save file metal-specular.chn 1`] = ` "y": 656, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -12100,7 +12100,7 @@ exports[`Read save file metal-specular.chn 1`] = ` "y": 1200, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -12118,7 +12118,7 @@ exports[`Read save file metal-specular.chn 1`] = ` "y": 1088, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -12134,7 +12134,7 @@ exports[`Read save file metal-specular.chn 1`] = ` "y": 688, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -12154,7 +12154,7 @@ exports[`Read save file metal-specular.chn 1`] = ` "y": 688, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 244, }, { @@ -12170,7 +12170,7 @@ exports[`Read save file metal-specular.chn 1`] = ` "y": 336, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -12186,7 +12186,7 @@ exports[`Read save file metal-specular.chn 1`] = ` "y": 336, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -12204,7 +12204,7 @@ exports[`Read save file metal-specular.chn 1`] = ` "y": 224, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -12220,7 +12220,7 @@ exports[`Read save file metal-specular.chn 1`] = ` "y": 944, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -12236,7 +12236,7 @@ exports[`Read save file metal-specular.chn 1`] = ` "y": 688, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -12252,7 +12252,7 @@ exports[`Read save file metal-specular.chn 1`] = ` "y": 688, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -12268,7 +12268,7 @@ exports[`Read save file metal-specular.chn 1`] = ` "y": 1040, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -12287,7 +12287,7 @@ exports[`Read save file metal-specular.chn 1`] = ` "y": 624, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -12303,7 +12303,7 @@ exports[`Read save file metal-specular.chn 1`] = ` "y": 1040, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, ], @@ -12346,7 +12346,7 @@ exports[`Read save file model-scale.chn 1`] = ` "y": 219, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 517, }, { @@ -12362,7 +12362,7 @@ exports[`Read save file model-scale.chn 1`] = ` "y": 713.9047452339597, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 503, }, ], @@ -12433,7 +12433,7 @@ exports[`Read save file ncnn.chn 1`] = ` "y": 308, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -12451,7 +12451,7 @@ exports[`Read save file ncnn.chn 1`] = ` "y": 635, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 248, }, { @@ -12469,7 +12469,7 @@ exports[`Read save file ncnn.chn 1`] = ` "y": 676, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -12485,7 +12485,7 @@ exports[`Read save file ncnn.chn 1`] = ` "y": 321, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, ], @@ -12536,7 +12536,7 @@ exports[`Read save file normal-map-generator.chn 1`] = ` "y": 878, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -12560,7 +12560,7 @@ exports[`Read save file normal-map-generator.chn 1`] = ` "y": 339.0188609548806, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 282, }, { @@ -12576,7 +12576,7 @@ exports[`Read save file normal-map-generator.chn 1`] = ` "y": 855.2046073651672, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, ], @@ -12609,7 +12609,7 @@ exports[`Read save file onnx-interpolate.chn 1`] = ` "y": 144, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 247, }, ], @@ -12641,7 +12641,7 @@ exports[`Read save file opacity.chn 1`] = ` "y": 400, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 241, }, ], @@ -12712,7 +12712,7 @@ exports[`Read save file pass-through.chn 1`] = ` "y": 253.85412981498177, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -12731,7 +12731,7 @@ exports[`Read save file pass-through.chn 1`] = ` "y": 406.7388401632344, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 265, }, { @@ -12749,7 +12749,7 @@ exports[`Read save file pass-through.chn 1`] = ` "y": 166, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -12765,7 +12765,7 @@ exports[`Read save file pass-through.chn 1`] = ` "y": 247.93391927096337, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, ], @@ -12878,7 +12878,7 @@ exports[`Read save file pytorch.chn 1`] = ` "y": 54.77750343838076, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -12894,7 +12894,7 @@ exports[`Read save file pytorch.chn 1`] = ` "y": 306.40246044613554, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -12912,7 +12912,7 @@ exports[`Read save file pytorch.chn 1`] = ` "y": 757.7994492005994, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 248, }, { @@ -12928,7 +12928,7 @@ exports[`Read save file pytorch.chn 1`] = ` "y": 669.0123022306777, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -12946,7 +12946,7 @@ exports[`Read save file pytorch.chn 1`] = ` "y": 285, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -12964,7 +12964,7 @@ exports[`Read save file pytorch.chn 1`] = ` "y": 869.0123022306777, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, ], @@ -13093,7 +13093,7 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "y": 901.4967911386506, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 244, }, { @@ -13112,7 +13112,7 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "y": 396.05936096418117, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 244, }, { @@ -13128,7 +13128,7 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "y": -251.4056420380027, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -13146,7 +13146,7 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "y": -268.7414137863447, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -13169,7 +13169,7 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "y": 727.5156388863755, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 261, }, { @@ -13188,7 +13188,7 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "y": 951.4789370127307, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, { @@ -13204,7 +13204,7 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "y": 951.4789370127307, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -13227,7 +13227,7 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "y": 222.0782087119062, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 261, }, { @@ -13248,7 +13248,7 @@ exports[`Read save file pytorch-scunet.chn 1`] = ` "y": -254.72296827231523, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 243, }, { @@ -13272,7 +13272,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. "y": -449.22369941881294, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 856, }, { @@ -13288,7 +13288,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. "y": 455.1592094149395, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -13309,7 +13309,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. "y": -254.44311128315388, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -13327,7 +13327,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. "y": 455.1592094149395, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, ], @@ -13380,7 +13380,7 @@ exports[`Read save file resize-to-side.chn 1`] = ` "y": 480, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 265, }, { @@ -13400,7 +13400,7 @@ exports[`Read save file resize-to-side.chn 1`] = ` "y": 375, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 283, }, { @@ -13416,7 +13416,7 @@ exports[`Read save file resize-to-side.chn 1`] = ` "y": 330, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, ], @@ -13481,7 +13481,7 @@ exports[`Read save file rnd.chn 1`] = ` "y": 720, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -13499,7 +13499,7 @@ exports[`Read save file rnd.chn 1`] = ` "y": 864, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -13515,7 +13515,7 @@ exports[`Read save file rnd.chn 1`] = ` "y": 896, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -13534,7 +13534,7 @@ exports[`Read save file rnd.chn 1`] = ` "y": 700, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, ], @@ -13582,7 +13582,7 @@ exports[`Read save file save video input.chn 1`] = ` "y": 224, }, "selected": false, - "type": "collector", + "type": "backendNode", "width": 258, }, { @@ -13616,7 +13616,7 @@ exports[`Read save file save video input.chn 1`] = ` "y": 224, }, "selected": false, - "type": "collector", + "type": "backendNode", "width": 240, }, { @@ -13650,7 +13650,7 @@ exports[`Read save file save video input.chn 1`] = ` "y": 224, }, "selected": false, - "type": "collector", + "type": "backendNode", "width": 258, }, ], @@ -13697,7 +13697,7 @@ exports[`Read save file save-image-webp-lossless.chn 1`] = ` "y": 336, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 240, }, ], @@ -14294,7 +14294,7 @@ exports[`Read save file text-as-image.chn 1`] = ` "y": -345, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -14314,7 +14314,7 @@ exports[`Read save file text-as-image.chn 1`] = ` "y": -1575, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -14336,7 +14336,7 @@ exports[`Read save file text-as-image.chn 1`] = ` "y": -4620, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 2068, }, { @@ -14367,7 +14367,7 @@ consectetur adipiscing...", "y": -4395, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -14383,7 +14383,7 @@ consectetur adipiscing...", "y": -3765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14414,7 +14414,7 @@ consectetur adipiscing...", "y": -3780, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -14430,7 +14430,7 @@ consectetur adipiscing...", "y": -3150, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14446,7 +14446,7 @@ consectetur adipiscing...", "y": -4395, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14468,7 +14468,7 @@ consectetur adipiscing...", "y": -4605, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 915, }, { @@ -14499,7 +14499,7 @@ consectetur adipiscing...", "y": -3750, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -14515,7 +14515,7 @@ consectetur adipiscing...", "y": -3750, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14531,7 +14531,7 @@ consectetur adipiscing...", "y": -3150, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14548,7 +14548,7 @@ consectetur adipiscing...", "y": -495, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14564,7 +14564,7 @@ consectetur adipiscing...", "y": -885, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14580,7 +14580,7 @@ consectetur adipiscing...", "y": -4380, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14611,7 +14611,7 @@ consectetur adipiscing ...", "y": -4365, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -14642,7 +14642,7 @@ consectetur adipiscing ...", "y": -3765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -14658,7 +14658,7 @@ consectetur adipiscing ...", "y": -1455, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14689,7 +14689,7 @@ consectetur adipiscing...", "y": -4395, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, { @@ -14711,7 +14711,7 @@ consectetur adipiscing...", "y": -660, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 519, }, { @@ -14732,7 +14732,7 @@ consectetur adipiscing...", "y": 555, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14750,7 +14750,7 @@ consectetur adipiscing...", "y": -4380, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14766,7 +14766,7 @@ consectetur adipiscing...", "y": -4395, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14783,7 +14783,7 @@ consectetur adipiscing...", "y": 555, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14800,7 +14800,7 @@ consectetur adipiscing...", "y": -1065, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14816,7 +14816,7 @@ consectetur adipiscing...", "y": 180, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14847,7 +14847,7 @@ consectetur adipiscing...", "y": -3165, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -14863,7 +14863,7 @@ consectetur adipiscing...", "y": -4365, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14883,7 +14883,7 @@ consectetur adipiscing...", "y": 60, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -14899,7 +14899,7 @@ consectetur adipiscing...", "y": -4365, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14923,7 +14923,7 @@ consectetur adipiscing...", "y": -255, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14939,7 +14939,7 @@ consectetur adipiscing...", "y": -3150, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -14970,7 +14970,7 @@ consectetur adipiscing ...", "y": -4395, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -14986,7 +14986,7 @@ consectetur adipiscing ...", "y": -3180, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15002,7 +15002,7 @@ consectetur adipiscing ...", "y": -3780, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15024,7 +15024,7 @@ consectetur adipiscing ...", "y": -4605, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 1285, }, { @@ -15040,7 +15040,7 @@ consectetur adipiscing ...", "y": 180, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15071,7 +15071,7 @@ consectetur adipiscing ...", "y": -3150, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -15087,7 +15087,7 @@ consectetur adipiscing ...", "y": -3765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15103,7 +15103,7 @@ consectetur adipiscing ...", "y": -3165, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15134,7 +15134,7 @@ for chaiNNer.", "y": -1455, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -15150,7 +15150,7 @@ for chaiNNer.", "y": -3765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15181,7 +15181,7 @@ for chaiNNer.", "y": -885, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -15197,7 +15197,7 @@ for chaiNNer.", "y": -4395, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15228,7 +15228,7 @@ consectetur adipiscing ...", "y": -4365, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -15248,7 +15248,7 @@ consectetur adipiscing ...", "y": -765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -15264,7 +15264,7 @@ consectetur adipiscing ...", "y": -3765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15280,7 +15280,7 @@ consectetur adipiscing ...", "y": -645, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15311,7 +15311,7 @@ consectetur adipiscing ...", "y": -4380, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -15335,7 +15335,7 @@ consectetur adipiscing ...", "y": 180, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15351,7 +15351,7 @@ consectetur adipiscing ...", "y": -4365, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15369,7 +15369,7 @@ consectetur adipiscing ...", "y": -495, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15393,7 +15393,7 @@ consectetur adipiscing ...", "y": -1455, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15411,7 +15411,7 @@ consectetur adipiscing ...", "y": -4170, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15442,7 +15442,7 @@ consectetur adipiscing ...", "y": -3150, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -15473,7 +15473,7 @@ consectetur adipiscing ...", "y": -3765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -15497,7 +15497,7 @@ consectetur adipiscing ...", "y": -645, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15513,7 +15513,7 @@ consectetur adipiscing ...", "y": 375, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15544,7 +15544,7 @@ for chaiNNer.", "y": 180, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -15575,7 +15575,7 @@ consectetur adipiscing ...", "y": -3150, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -15591,7 +15591,7 @@ consectetur adipiscing ...", "y": -3750, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15622,7 +15622,7 @@ consectetur adipiscing...", "y": -3765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -15644,7 +15644,7 @@ consectetur adipiscing...", "y": -4605, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 574, }, { @@ -15660,7 +15660,7 @@ consectetur adipiscing...", "y": -1455, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15691,7 +15691,7 @@ consectetur adipiscing...", "y": -3750, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -15722,7 +15722,7 @@ consectetur adipiscing ...", "y": -3765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -15753,7 +15753,7 @@ consectetur adipiscing...", "y": -3180, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -15773,7 +15773,7 @@ consectetur adipiscing...", "y": 375, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15789,7 +15789,7 @@ consectetur adipiscing...", "y": -255, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -15820,7 +15820,7 @@ consectetur adipiscing ...", "y": -4365, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, ], @@ -15924,7 +15924,7 @@ exports[`Read save file text-pattern.chn 1`] = ` "y": 771.1213194348871, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -15940,7 +15940,7 @@ exports[`Read save file text-pattern.chn 1`] = ` "y": 667.4464344534028, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -15958,7 +15958,7 @@ exports[`Read save file text-pattern.chn 1`] = ` "y": 346.744623600131, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -15974,7 +15974,7 @@ exports[`Read save file text-pattern.chn 1`] = ` "y": 935.9302075524464, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -15990,7 +15990,7 @@ exports[`Read save file text-pattern.chn 1`] = ` "y": 978.8257039041982, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, ], @@ -16081,7 +16081,7 @@ exports[`Read save file unified-resize.chn 1`] = ` "y": 464, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -16097,7 +16097,7 @@ exports[`Read save file unified-resize.chn 1`] = ` "y": 128, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -16118,7 +16118,7 @@ exports[`Read save file unified-resize.chn 1`] = ` "y": 128, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 243, }, { @@ -16140,7 +16140,7 @@ exports[`Read save file unified-resize.chn 1`] = ` "y": 464, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -16162,7 +16162,7 @@ exports[`Read save file unified-resize.chn 1`] = ` "y": 464, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -16180,7 +16180,7 @@ exports[`Read save file unified-resize.chn 1`] = ` "y": 240, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -16200,7 +16200,7 @@ exports[`Read save file unified-resize.chn 1`] = ` "y": 128, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, ], @@ -16234,7 +16234,7 @@ exports[`Read save file utilities.chn 1`] = ` "y": 283, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -16254,7 +16254,7 @@ exports[`Read save file utilities.chn 1`] = ` "y": 377, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -16272,7 +16272,7 @@ exports[`Read save file utilities.chn 1`] = ` "y": 81, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, ], @@ -16963,7 +16963,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": -1890, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 2499, }, { @@ -16985,7 +16985,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 3090, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 2499, }, { @@ -17007,7 +17007,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 4275, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 2499, }, { @@ -17029,7 +17029,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 1950, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 2499, }, { @@ -17051,7 +17051,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": -45, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 2499, }, { @@ -17075,7 +17075,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 4485, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -17098,7 +17098,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 3300, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -17132,7 +17132,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 3405, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -17155,7 +17155,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 2160, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -17189,7 +17189,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 2280, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -17212,7 +17212,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 2160, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -17246,7 +17246,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 2295, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -17269,7 +17269,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 3300, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -17303,7 +17303,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 3435, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -17326,7 +17326,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 2160, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -17360,7 +17360,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 2310, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -17383,7 +17383,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": -930, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -17417,7 +17417,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": -795, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -17440,7 +17440,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": -930, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -17474,7 +17474,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": -795, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -17497,7 +17497,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 150, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -17531,7 +17531,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 270, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -17554,7 +17554,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": -1695, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -17588,7 +17588,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": -1560, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -17611,7 +17611,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 915, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -17645,7 +17645,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 1035, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -17668,7 +17668,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 4485, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -17691,7 +17691,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 150, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -17725,7 +17725,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 270, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -17748,7 +17748,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 3300, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -17782,7 +17782,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 3420, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -17805,7 +17805,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 915, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -17839,7 +17839,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 1035, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -17862,7 +17862,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": -1695, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -17896,7 +17896,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": -1560, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -17919,7 +17919,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": -930, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -17953,7 +17953,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": -795, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -17976,7 +17976,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 915, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -18010,7 +18010,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 1035, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -18033,7 +18033,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": -1695, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -18067,7 +18067,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": -1560, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -18090,7 +18090,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 150, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -18124,7 +18124,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 270, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -18147,7 +18147,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": -1695, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -18181,7 +18181,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": -1560, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -18204,7 +18204,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 2160, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -18238,7 +18238,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 2280, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -18261,7 +18261,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 3300, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -18295,7 +18295,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` "y": 3420, }, "selected": false, - "type": "collector", + "type": "backendNode", }, ], "tamperedWith": false, @@ -18309,7 +18309,7 @@ exports[`Read save file video-frame-iterator.chn 1`] = ` exports[`Write save file DiffusePBR.chn 1`] = ` { - "checksum": "452a446346331323f91db42f995f803d", + "checksum": "72b703ae6ed4094522be6387bcfcd1fa", "content": { "edges": [ { @@ -18664,7 +18664,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 585, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -18688,7 +18688,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 840, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 287, }, { @@ -18721,7 +18721,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 1560, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -18743,7 +18743,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 645, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -18759,7 +18759,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 600, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -18775,7 +18775,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 1215, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -18791,7 +18791,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 1005, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -18816,7 +18816,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": -180, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -18849,7 +18849,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 1995, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -18868,7 +18868,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 690, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -18890,7 +18890,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 135, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -18906,7 +18906,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 60, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -18926,7 +18926,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 1005, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -18951,7 +18951,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 1680, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -18976,7 +18976,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 960, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -18996,7 +18996,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 1230, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -19012,7 +19012,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 1515, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -19044,7 +19044,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": -195, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -19063,7 +19063,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 1260, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 279, }, { @@ -19079,7 +19079,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 630, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -19097,7 +19097,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 104.1796137976695, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -19130,7 +19130,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 990, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -19149,7 +19149,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 1020, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 279, }, { @@ -19171,7 +19171,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 1665, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -19196,7 +19196,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 1275, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -19212,7 +19212,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 60, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -19234,7 +19234,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 1305, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -19254,7 +19254,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 1005, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -19287,7 +19287,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 1320, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -19312,7 +19312,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": 2010, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -19328,7 +19328,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` "y": -315, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, ], "viewport": { @@ -19343,7 +19343,7 @@ exports[`Write save file DiffusePBR.chn 1`] = ` exports[`Write save file add noise with seed edge.chn 1`] = ` { - "checksum": "73a461ab844f4e32acf7d962721ca02d", + "checksum": "125be3e522c485773ebb27eb3bbb2299", "content": { "edges": [ { @@ -19411,7 +19411,7 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` "y": 800, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -19432,7 +19432,7 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` "y": 544, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -19450,7 +19450,7 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` "y": 480, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -19466,7 +19466,7 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` "y": 544, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -19484,7 +19484,7 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` "y": 524, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, ], @@ -19500,7 +19500,7 @@ exports[`Write save file add noise with seed edge.chn 1`] = ` exports[`Write save file big ol test.chn 1`] = ` { - "checksum": "769c4801d536496e1ac53e5b78a6e686", + "checksum": "53ee330427bfac5c61b79d69b9218aa9", "content": { "edges": [ { @@ -19752,7 +19752,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 592, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -19774,7 +19774,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 624, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -19792,7 +19792,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 816, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -19809,7 +19809,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 896, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 241, }, { @@ -19826,7 +19826,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 1136, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -19842,7 +19842,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 1136, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -19858,7 +19858,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 1168, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -19874,7 +19874,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 991, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -19893,7 +19893,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 1440, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -19912,7 +19912,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 1552, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -19931,7 +19931,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 1664, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -19949,7 +19949,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 1343, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -19967,7 +19967,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 912, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -19985,7 +19985,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 1520, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -19999,7 +19999,7 @@ exports[`Write save file big ol test.chn 1`] = ` "x": 3808, "y": 880, }, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -20016,7 +20016,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": -96, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -20034,7 +20034,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": -48, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -20053,7 +20053,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 1488, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -20070,7 +20070,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 1062, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -20089,7 +20089,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 987, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -20106,7 +20106,7 @@ exports[`Write save file big ol test.chn 1`] = ` "y": 336, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, ], "viewport": { @@ -20121,7 +20121,7 @@ exports[`Write save file big ol test.chn 1`] = ` exports[`Write save file blend-images.chn 1`] = ` { - "checksum": "571a257752c201494740d9155f706025", + "checksum": "c17c7c5ad4a11ce475e9509562adb41a", "content": { "edges": [ { @@ -22181,7 +22181,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -738.1007734844538, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 502, }, { @@ -22197,7 +22197,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5551.727800332799, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22221,7 +22221,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1658.6150689744925, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22245,7 +22245,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1656.6939125076558, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22265,7 +22265,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3126.408240253019, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -22281,7 +22281,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 575.7617885612143, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22303,7 +22303,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -116.4203657336657, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 243, }, { @@ -22319,7 +22319,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 147.44604519505003, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22343,7 +22343,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1999.3385199379227, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22359,7 +22359,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3915.2055279854667, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22375,7 +22375,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -381.987049972833, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22391,7 +22391,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4697.543249711631, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22411,7 +22411,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2582.6326040178647, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -22427,7 +22427,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5213.634896086391, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22451,7 +22451,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 580.1776788090999, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22473,7 +22473,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1913.4782602682628, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -22497,7 +22497,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5196.942412329455, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22513,7 +22513,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2523.5320309563117, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22537,7 +22537,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1009.8211270695556, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22553,7 +22553,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1016.7855315759243, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22569,7 +22569,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2093.9716406993675, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22593,7 +22593,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2580.857361340085, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22609,7 +22609,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 998.3180727474369, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22633,7 +22633,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -89.08978430399779, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22657,7 +22657,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 575.7617885612143, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22673,7 +22673,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4712.281590963989, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22689,7 +22689,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4386.783231922494, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22705,7 +22705,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3461.4463956588957, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22729,7 +22729,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3450.4275933080767, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22749,7 +22749,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5539.133255127886, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -22765,7 +22765,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1328.2295326579806, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22781,7 +22781,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3450.8784267104415, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22801,7 +22801,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2571.792151480858, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -22825,7 +22825,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5203.99447584405, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22841,7 +22841,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5203.99447584405, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22857,7 +22857,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1646.1378492214726, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22874,7 +22874,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1320.7502975936643, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22890,7 +22890,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1636.1834344913536, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22914,7 +22914,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2515.1191407365586, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22934,7 +22934,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5315.004942650221, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -22954,7 +22954,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3571.056088538381, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -22970,7 +22970,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1401.658584688235, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -22990,7 +22990,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4700.574682844652, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -23014,7 +23014,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1329.1324051483498, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23038,7 +23038,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4377.1428116801535, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23062,7 +23062,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 302.1765778550219, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23078,7 +23078,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -124.94788896219092, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23094,7 +23094,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2012.620490285826, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23111,7 +23111,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1837.2732445403062, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23135,7 +23135,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2088.518322326944, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23151,7 +23151,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3449.2005016505827, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23171,7 +23171,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5554.0251970427935, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -23195,7 +23195,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1402.0599208391454, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23212,7 +23212,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1983.2780221239295, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23230,7 +23230,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -134.10684593741516, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23254,7 +23254,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 927.4118577322531, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23274,7 +23274,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2582.128493172763, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -23290,7 +23290,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 203.6600957934366, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23306,7 +23306,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2754.9408664313646, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23323,7 +23323,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3710.3424375906948, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23339,7 +23339,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2083.9240247998223, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23363,7 +23363,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3920.141940517007, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23379,7 +23379,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 580.1776788090999, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23395,7 +23395,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1871.1291820649842, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23412,7 +23412,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -382.1672771561724, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23428,7 +23428,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -374.3341080749153, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23444,7 +23444,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2075.6513095323157, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23464,7 +23464,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4725.691233023524, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -23481,7 +23481,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1594.6993725170582, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23505,7 +23505,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2084.889498464934, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23529,7 +23529,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5218.229689506378, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23550,7 +23550,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -134.9478889621909, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23566,7 +23566,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3921.802133838088, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23582,7 +23582,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4390.459010740968, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23606,7 +23606,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1666.9052833871517, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23630,7 +23630,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2584.486185202095, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23648,7 +23648,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2718.077736417954, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23672,7 +23672,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5217.310674904864, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23688,7 +23688,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4377.1428116801535, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23704,7 +23704,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3894.5839501832343, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23725,7 +23725,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2581.0343532195407, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 243, }, { @@ -23749,7 +23749,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 199.11294609390546, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23773,7 +23773,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3449.2005016505827, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23789,7 +23789,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 297.53850530166164, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23813,7 +23813,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1325.6128330003262, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23837,7 +23837,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3000.0583807282947, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23853,7 +23853,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5539.133255127886, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23877,7 +23877,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2004.3045242411267, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23901,7 +23901,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3010.0390724081435, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23921,7 +23921,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5552.54289718742, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -23945,7 +23945,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1318.826629209888, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23969,7 +23969,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3926.396927258076, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -23993,7 +23993,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2081.141297180983, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24017,7 +24017,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1998.1059032673243, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24033,7 +24033,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1271.074057074343, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24055,7 +24055,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -326.2634293250004, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -24075,7 +24075,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2579.7002571685543, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -24091,7 +24091,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3010.0390724081435, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24115,7 +24115,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3908.485934777275, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24131,7 +24131,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2072.0224856703057, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24147,7 +24147,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -86.83088543058993, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24163,7 +24163,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2006.6019209511207, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24179,7 +24179,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5196.942412329455, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24201,7 +24201,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2591.5189541245227, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -24225,7 +24225,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3894.5839501832343, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24249,7 +24249,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3466.9602036804, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24268,7 +24268,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -120.23573237621135, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24288,7 +24288,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5524.394913875527, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -24304,7 +24304,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1271.3243444220645, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24320,7 +24320,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 927.4118577322531, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24336,7 +24336,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3018.7604780489687, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24352,7 +24352,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3000.0583807282947, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24368,7 +24368,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3450.4275933080767, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24384,7 +24384,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 2579.1162602134928, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24400,7 +24400,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3908.485934777275, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24424,7 +24424,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4390.459010740968, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24443,7 +24443,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -556.4530769462873, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24459,7 +24459,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5217.310674904864, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24483,7 +24483,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 998.3180727474369, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24503,7 +24503,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -129.17630151880604, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24525,7 +24525,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -187.79442409924377, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -24541,7 +24541,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2013.122900197887, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24557,7 +24557,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5550.245500477426, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24577,7 +24577,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4488.153278486325, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -24601,7 +24601,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1331.2609657910016, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24618,7 +24618,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -2752.326287375834, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24642,7 +24642,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3017.3820959404907, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24666,7 +24666,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 147.44604519505003, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24688,7 +24688,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -160.22637207287, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -24712,7 +24712,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1398.1763824350505, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24728,7 +24728,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3017.3820959404907, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24744,7 +24744,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1643.93897561619, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24760,7 +24760,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -5524.394913875527, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24776,7 +24776,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4723.393836313529, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24800,7 +24800,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4391.378025342482, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24820,7 +24820,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4727.173532878897, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -24840,7 +24840,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4010.701931182368, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -24856,7 +24856,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4370.090748165559, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24880,7 +24880,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4370.090748165559, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24896,7 +24896,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": 1404.2226151815569, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24916,7 +24916,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4712.281590963989, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -24932,7 +24932,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -4724.876136168903, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24952,7 +24952,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -106.37895105171596, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24976,7 +24976,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3463.74379236889, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -24992,7 +24992,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -1267.5544849263197, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -25016,7 +25016,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. "y": -3018.7604780489687, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, ], @@ -25032,7 +25032,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/512x512. exports[`Write save file box-median-blur.chn 1`] = ` { - "checksum": "3a6c957dbe8b257d6cc66663bdb281f8", + "checksum": "326949c7aba222fec09d0a20f5c6c293", "content": { "edges": [ { @@ -25063,7 +25063,7 @@ exports[`Write save file box-median-blur.chn 1`] = ` "y": 400, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -25081,7 +25081,7 @@ exports[`Write save file box-median-blur.chn 1`] = ` "y": 400, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, ], @@ -25097,7 +25097,7 @@ exports[`Write save file box-median-blur.chn 1`] = ` exports[`Write save file canny-edge-detection.chn 1`] = ` { - "checksum": "528d6d0c0e679468e2644d3d0bdf8e23", + "checksum": "872614c156c9d324c45aa407f9e15933", "content": { "edges": [ { @@ -25135,7 +25135,7 @@ exports[`Write save file canny-edge-detection.chn 1`] = ` "y": 240, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 241, }, { @@ -25154,7 +25154,7 @@ exports[`Write save file canny-edge-detection.chn 1`] = ` "y": 240, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -25170,7 +25170,7 @@ exports[`Write save file canny-edge-detection.chn 1`] = ` "y": 240, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 259, }, ], @@ -25186,7 +25186,7 @@ exports[`Write save file canny-edge-detection.chn 1`] = ` exports[`Write save file color-transfer.chn 1`] = ` { - "checksum": "c088ae7e1ba770854354447c4722d471", + "checksum": "fd5c2e0efec2e98e7a10317b0bf9fc23", "content": { "edges": [ { @@ -25358,7 +25358,7 @@ exports[`Write save file color-transfer.chn 1`] = ` "y": 1126.7838714532866, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -25374,7 +25374,7 @@ exports[`Write save file color-transfer.chn 1`] = ` "y": 1.0003511977455162, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -25390,7 +25390,7 @@ exports[`Write save file color-transfer.chn 1`] = ` "y": 392.8066251478931, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -25412,7 +25412,7 @@ exports[`Write save file color-transfer.chn 1`] = ` "y": 1167.5514088487157, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -25434,7 +25434,7 @@ exports[`Write save file color-transfer.chn 1`] = ` "y": -19.86416831421603, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -25450,7 +25450,7 @@ exports[`Write save file color-transfer.chn 1`] = ` "y": 632.8466090039584, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -25472,7 +25472,7 @@ exports[`Write save file color-transfer.chn 1`] = ` "y": 389.50588459673725, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -25493,7 +25493,7 @@ exports[`Write save file color-transfer.chn 1`] = ` "y": 814.6679949139462, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -25509,7 +25509,7 @@ exports[`Write save file color-transfer.chn 1`] = ` "y": 771.8156046515132, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -25535,7 +25535,7 @@ exports[`Write save file color-transfer.chn 1`] = ` "y": 545.5300879334493, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -25553,7 +25553,7 @@ exports[`Write save file color-transfer.chn 1`] = ` "y": 572.982623897233, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, ], @@ -25569,7 +25569,7 @@ exports[`Write save file color-transfer.chn 1`] = ` exports[`Write save file combine-rgba.chn 1`] = ` { - "checksum": "4d26d4723150d7717ee349d222181803", + "checksum": "aaf30112d9ad1ecb1d226b7fcf4a5c91", "content": { "edges": [ { @@ -25627,7 +25627,7 @@ exports[`Write save file combine-rgba.chn 1`] = ` "y": 334, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -25643,7 +25643,7 @@ exports[`Write save file combine-rgba.chn 1`] = ` "y": 231, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 242, }, ], @@ -25659,7 +25659,7 @@ exports[`Write save file combine-rgba.chn 1`] = ` exports[`Write save file convert-onnx-update.chn 1`] = ` { - "checksum": "e02e86fb33cf9c70a22a24ea5ea63d3f", + "checksum": "15520ecb6082cc872cda464e1515fbfe", "content": { "edges": [ { @@ -25820,7 +25820,7 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "y": 560, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 241, }, { @@ -25836,7 +25836,7 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "y": 224, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 241, }, { @@ -25854,7 +25854,7 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "y": -96, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 265, }, { @@ -25873,7 +25873,7 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "y": 960, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -25891,7 +25891,7 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "y": 224, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -25909,7 +25909,7 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "y": 224, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -25928,7 +25928,7 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "y": 592, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -25946,7 +25946,7 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "y": 224, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -25964,7 +25964,7 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "y": -128, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -25982,7 +25982,7 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "y": 224, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -26001,7 +26001,7 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "y": 1160, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -26020,7 +26020,7 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "y": 792, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -26038,7 +26038,7 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` "y": 424, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, ], @@ -26054,7 +26054,7 @@ exports[`Write save file convert-onnx-update.chn 1`] = ` exports[`Write save file convert-to-ncnn.chn 1`] = ` { - "checksum": "61c3a23bbaf8d00e8a342494bb87f2bb", + "checksum": "5d38814b02b3cccec01f3551fab0d62d", "content": { "edges": [ { @@ -26092,7 +26092,7 @@ exports[`Write save file convert-to-ncnn.chn 1`] = ` "y": 345, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 256, }, { @@ -26110,7 +26110,7 @@ exports[`Write save file convert-to-ncnn.chn 1`] = ` "y": 345, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -26126,7 +26126,7 @@ exports[`Write save file convert-to-ncnn.chn 1`] = ` "y": 345, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 256, }, ], @@ -26142,7 +26142,7 @@ exports[`Write save file convert-to-ncnn.chn 1`] = ` exports[`Write save file copy-to-clipboard.chn 1`] = ` { - "checksum": "f70ff211133438e3cbd383229717b34c", + "checksum": "d1a0c8f82dad4c22fc9b4cdd58c07a72", "content": { "edges": [ { @@ -26170,7 +26170,7 @@ exports[`Write save file copy-to-clipboard.chn 1`] = ` "y": 434.0347224631112, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -26186,7 +26186,7 @@ exports[`Write save file copy-to-clipboard.chn 1`] = ` "y": 667.0756396555195, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 242, }, ], @@ -26202,7 +26202,7 @@ exports[`Write save file copy-to-clipboard.chn 1`] = ` exports[`Write save file create-border-migration.chn 1`] = ` { - "checksum": "aadf8d9b0690bf08d5f3b7b6cd417182", + "checksum": "0576ffe44178c70319231ef74542099b", "content": { "edges": [ { @@ -26304,7 +26304,7 @@ exports[`Write save file create-border-migration.chn 1`] = ` "y": 160, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -26320,7 +26320,7 @@ exports[`Write save file create-border-migration.chn 1`] = ` "y": 1696, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -26338,7 +26338,7 @@ exports[`Write save file create-border-migration.chn 1`] = ` "y": 416, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -26354,7 +26354,7 @@ exports[`Write save file create-border-migration.chn 1`] = ` "y": 816, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -26370,7 +26370,7 @@ exports[`Write save file create-border-migration.chn 1`] = ` "y": 1184, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -26391,7 +26391,7 @@ exports[`Write save file create-border-migration.chn 1`] = ` "y": 816, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -26414,7 +26414,7 @@ exports[`Write save file create-border-migration.chn 1`] = ` "y": 1696, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -26441,7 +26441,7 @@ exports[`Write save file create-border-migration.chn 1`] = ` "y": 160, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -26465,7 +26465,7 @@ exports[`Write save file create-border-migration.chn 1`] = ` "y": 1184, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, ], @@ -26481,7 +26481,7 @@ exports[`Write save file create-border-migration.chn 1`] = ` exports[`Write save file create-color-old.chn 1`] = ` { - "checksum": "6dd5eccfd7b5e69342ccadab0c349d26", + "checksum": "4654a51fa359b58013e369c60bde6ed3", "content": { "edges": [ { @@ -26551,7 +26551,7 @@ exports[`Write save file create-color-old.chn 1`] = ` "y": 992, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -26570,7 +26570,7 @@ exports[`Write save file create-color-old.chn 1`] = ` "y": 880, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -26589,7 +26589,7 @@ exports[`Write save file create-color-old.chn 1`] = ` "y": 880, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -26607,7 +26607,7 @@ exports[`Write save file create-color-old.chn 1`] = ` "y": 480, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -26625,7 +26625,7 @@ exports[`Write save file create-color-old.chn 1`] = ` "y": 480, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -26643,7 +26643,7 @@ exports[`Write save file create-color-old.chn 1`] = ` "y": 1264, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -26663,7 +26663,7 @@ exports[`Write save file create-color-old.chn 1`] = ` "y": 1264, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -26681,7 +26681,7 @@ exports[`Write save file create-color-old.chn 1`] = ` "y": 1264, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, { "data": { @@ -26699,7 +26699,7 @@ exports[`Write save file create-color-old.chn 1`] = ` "y": 480, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, ], "viewport": { @@ -26714,7 +26714,7 @@ exports[`Write save file create-color-old.chn 1`] = ` exports[`Write save file create-edges.chn 1`] = ` { - "checksum": "921d4c3acc8d2c864861f3719356ce8a", + "checksum": "570e96b3c54e0b5ff6dd24a100d2afdd", "content": { "edges": [ { @@ -26794,7 +26794,7 @@ exports[`Write save file create-edges.chn 1`] = ` "y": 431.4683450250724, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -26810,7 +26810,7 @@ exports[`Write save file create-edges.chn 1`] = ` "y": 736.5039878063648, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -26826,7 +26826,7 @@ exports[`Write save file create-edges.chn 1`] = ` "y": 1243.443326026633, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -26846,7 +26846,7 @@ exports[`Write save file create-edges.chn 1`] = ` "y": 364.5039878063652, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 283, }, { @@ -26869,7 +26869,7 @@ exports[`Write save file create-edges.chn 1`] = ` "y": 1142.4430448096266, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 283, }, { @@ -26889,7 +26889,7 @@ exports[`Write save file create-edges.chn 1`] = ` "y": 719.503987806365, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 283, }, { @@ -26905,7 +26905,7 @@ exports[`Write save file create-edges.chn 1`] = ` "y": 323.5039878063652, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, ], @@ -26921,7 +26921,7 @@ exports[`Write save file create-edges.chn 1`] = ` exports[`Write save file crop.chn 1`] = ` { - "checksum": "a85e2e9f77a9b682955aabe6aa7e3746", + "checksum": "f16c1c6039f3212f0749f686dd08f57f", "content": { "edges": [ { @@ -27529,7 +27529,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 1022.6773713424252, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27547,7 +27547,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 926.3127591321982, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27563,7 +27563,7 @@ exports[`Write save file crop.chn 1`] = ` "y": -7.4646289196914495, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27579,7 +27579,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 2773.3201490134006, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27595,7 +27595,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 2187.5426662335994, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27611,7 +27611,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 409.02214823654583, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27636,7 +27636,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 1683.8120958325176, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27653,7 +27653,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 2036.9623333131017, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, { @@ -27669,7 +27669,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 1025.6416113236296, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27694,7 +27694,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 409.51287394423207, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27710,7 +27710,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 2929.663990644103, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27726,7 +27726,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 1683.8120958325176, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27742,7 +27742,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 1025.8817154576845, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27758,7 +27758,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 1873.7214281174704, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27774,7 +27774,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 1906.2172489537722, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27799,7 +27799,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 409.02214823654583, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27816,7 +27816,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 2797.4776840547206, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, { @@ -27833,7 +27833,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 3141.4077726319974, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, { @@ -27858,7 +27858,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 2789.993031245015, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27875,7 +27875,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 2553.8879828219124, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, { @@ -27900,7 +27900,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 2187.4556671451473, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27925,7 +27925,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 1025.8817154576845, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27941,7 +27941,7 @@ exports[`Write save file crop.chn 1`] = ` "y": -31.789245763894968, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -27958,7 +27958,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 2540.6929037141836, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, { @@ -27983,7 +27983,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 1025.6416113236296, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28003,7 +28003,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 2137.2592294930278, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28019,7 +28019,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 2196.1611727781087, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28036,7 +28036,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 2050.1574124208305, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, { @@ -28061,7 +28061,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 2752.059884883676, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28077,7 +28077,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 763.9278100856005, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28102,7 +28102,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 2187.5426662335994, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28124,7 +28124,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 747.1466986614282, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 519, }, { @@ -28140,7 +28140,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 409.51287394423207, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28165,7 +28165,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 4.0223546302788975, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28181,7 +28181,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 1692.430602377027, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28206,7 +28206,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 1683.7250967440657, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28224,7 +28224,7 @@ exports[`Write save file crop.chn 1`] = ` "y": 2219.6570061290113, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, ], @@ -28240,7 +28240,7 @@ exports[`Write save file crop.chn 1`] = ` exports[`Write save file crop-content.chn 1`] = ` { - "checksum": "d82ac6a76911d663da3351e0080920e4", + "checksum": "20fb25854e5ce03e098eaa4141f0d4a1", "content": { "edges": [], "nodes": [ @@ -28257,7 +28257,7 @@ exports[`Write save file crop-content.chn 1`] = ` "y": 528, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 241, }, ], @@ -28273,7 +28273,7 @@ exports[`Write save file crop-content.chn 1`] = ` exports[`Write save file empty-string-input-test.chn 1`] = ` { - "checksum": "31bbde5d9664f3ec5b5f7fc6e3905d3a", + "checksum": "a0b9a797b910b2b90e0a1416240c0546", "content": { "edges": [ { @@ -28327,7 +28327,7 @@ exports[`Write save file empty-string-input-test.chn 1`] = ` "y": 240, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28359,7 +28359,7 @@ exports[`Write save file empty-string-input-test.chn 1`] = ` "y": 96, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28384,7 +28384,7 @@ exports[`Write save file empty-string-input-test.chn 1`] = ` "y": 480, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28404,7 +28404,7 @@ exports[`Write save file empty-string-input-test.chn 1`] = ` "y": 624, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28421,7 +28421,7 @@ exports[`Write save file empty-string-input-test.chn 1`] = ` "y": 460, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, ], "viewport": { @@ -28436,7 +28436,7 @@ exports[`Write save file empty-string-input-test.chn 1`] = ` exports[`Write save file fast-nlmeans.chn 1`] = ` { - "checksum": "83289a737d61d8ddd385cb3e5fd9ad2f", + "checksum": "2e6d38f34a5d4a57fb0db2ae755237b3", "content": { "edges": [ { @@ -28554,7 +28554,7 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "y": 575.2219940487153, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28575,7 +28575,7 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "y": 1340.2109761249815, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28591,7 +28591,7 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "y": 488.23022401832566, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28613,7 +28613,7 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "y": 436.23022401832566, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28634,7 +28634,7 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "y": 1502.6109761249816, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28650,7 +28650,7 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "y": 1392.2109761249815, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28671,7 +28671,7 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "y": 598.6302240183257, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28687,7 +28687,7 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "y": 845.2302240183257, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28703,7 +28703,7 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "y": 1749.2109761249815, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -28723,7 +28723,7 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` "y": 1254.1849405554992, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, ], @@ -28739,7 +28739,7 @@ exports[`Write save file fast-nlmeans.chn 1`] = ` exports[`Write save file gamma.chn 1`] = ` { - "checksum": "e166befaba4c927cad1cd99cd63c79e3", + "checksum": "2fec39e934f2ec462f4560919924c9fd", "content": { "edges": [ { @@ -28797,7 +28797,7 @@ exports[`Write save file gamma.chn 1`] = ` "y": 237.2615446978116, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -28816,7 +28816,7 @@ exports[`Write save file gamma.chn 1`] = ` "y": 625.2615446978116, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -28832,7 +28832,7 @@ exports[`Write save file gamma.chn 1`] = ` "y": 495.2615446978116, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -28851,7 +28851,7 @@ exports[`Write save file gamma.chn 1`] = ` "y": 624.2615446978116, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -28870,7 +28870,7 @@ exports[`Write save file gamma.chn 1`] = ` "y": 219.2615446978116, }, "selected": false, - "type": "regularNode", + "type": "backendNode", }, ], "viewport": { @@ -28885,7 +28885,7 @@ exports[`Write save file gamma.chn 1`] = ` exports[`Write save file image-adjustments.chn 1`] = ` { - "checksum": "9940adfda764584dea5f4a0ba1ba61b3", + "checksum": "cf7e7c5286a5a8df6005aa0909078d27", "content": { "edges": [ { @@ -28917,7 +28917,7 @@ exports[`Write save file image-adjustments.chn 1`] = ` "y": 592.9030240407762, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -28936,7 +28936,7 @@ exports[`Write save file image-adjustments.chn 1`] = ` "y": 163.52957902171042, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 278, }, { @@ -28955,7 +28955,7 @@ exports[`Write save file image-adjustments.chn 1`] = ` "y": 179.7658590325766, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -28977,7 +28977,7 @@ exports[`Write save file image-adjustments.chn 1`] = ` "y": 537.8809142551769, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 262, }, { @@ -28997,7 +28997,7 @@ exports[`Write save file image-adjustments.chn 1`] = ` "y": 143.52957902171042, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, ], @@ -29013,7 +29013,7 @@ exports[`Write save file image-adjustments.chn 1`] = ` exports[`Write save file image-channels.chn 1`] = ` { - "checksum": "b64675c6c7d3986a313fcd9ca5619a44", + "checksum": "33b9cb8e2d697f268f193dd67ed9578b", "content": { "edges": [ { @@ -29081,7 +29081,7 @@ exports[`Write save file image-channels.chn 1`] = ` "y": 250.19507910772893, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -29099,7 +29099,7 @@ exports[`Write save file image-channels.chn 1`] = ` "y": 626, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -29115,7 +29115,7 @@ exports[`Write save file image-channels.chn 1`] = ` "y": 944, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -29131,7 +29131,7 @@ exports[`Write save file image-channels.chn 1`] = ` "y": 220.21968356908422, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -29147,7 +29147,7 @@ exports[`Write save file image-channels.chn 1`] = ` "y": 721, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 244, }, ], @@ -29163,7 +29163,7 @@ exports[`Write save file image-channels.chn 1`] = ` exports[`Write save file image-dim.chn 1`] = ` { - "checksum": "8854f8d831a7f213d9e3683251b9fbdf", + "checksum": "dee49ce0a918bd62dfb8f32d3ec5f448", "content": { "edges": [ { @@ -29226,7 +29226,7 @@ exports[`Write save file image-dim.chn 1`] = ` "y": 557, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 283, }, { @@ -29249,7 +29249,7 @@ exports[`Write save file image-dim.chn 1`] = ` "y": 424, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 283, }, { @@ -29265,7 +29265,7 @@ exports[`Write save file image-dim.chn 1`] = ` "y": 626, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -29285,7 +29285,7 @@ exports[`Write save file image-dim.chn 1`] = ` "y": 223, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 279, }, ], @@ -29301,7 +29301,7 @@ exports[`Write save file image-dim.chn 1`] = ` exports[`Write save file image-filters.chn 1`] = ` { - "checksum": "77c07cb1b672279ea28349913b351de9", + "checksum": "1a1df178979ce69fcb720e35a00de63f", "content": { "edges": [ { @@ -29391,7 +29391,7 @@ exports[`Write save file image-filters.chn 1`] = ` "y": 933, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 279, }, { @@ -29410,7 +29410,7 @@ exports[`Write save file image-filters.chn 1`] = ` "y": 499, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -29428,7 +29428,7 @@ exports[`Write save file image-filters.chn 1`] = ` "y": 603, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -29447,7 +29447,7 @@ exports[`Write save file image-filters.chn 1`] = ` "y": 1499, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -29463,7 +29463,7 @@ exports[`Write save file image-filters.chn 1`] = ` "y": 1529, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 282, }, { @@ -29483,7 +29483,7 @@ exports[`Write save file image-filters.chn 1`] = ` "y": 941, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -29502,7 +29502,7 @@ exports[`Write save file image-filters.chn 1`] = ` "y": 431, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, ], @@ -29518,7 +29518,7 @@ exports[`Write save file image-filters.chn 1`] = ` exports[`Write save file image-input-output.chn 1`] = ` { - "checksum": "5587bb3ced818219155b8c0103392bfe", + "checksum": "47ce048558ba2297b5f61258560360f5", "content": { "edges": [ { @@ -29576,7 +29576,7 @@ exports[`Write save file image-input-output.chn 1`] = ` "y": 145, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -29595,7 +29595,7 @@ exports[`Write save file image-input-output.chn 1`] = ` "y": 311, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 265, }, { @@ -29611,7 +29611,7 @@ exports[`Write save file image-input-output.chn 1`] = ` "y": 144, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, ], @@ -29627,7 +29627,7 @@ exports[`Write save file image-input-output.chn 1`] = ` exports[`Write save file image-iterator.chn 1`] = ` { - "checksum": "53ba8ed665e5727dcfd081ce3ae68c44", + "checksum": "738e766dc1e95b2502526a624214c7bb", "content": { "edges": [ { @@ -29687,7 +29687,7 @@ exports[`Write save file image-iterator.chn 1`] = ` "y": 441, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 265, }, { @@ -29704,7 +29704,7 @@ exports[`Write save file image-iterator.chn 1`] = ` "y": 157, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, ], "viewport": { @@ -29719,7 +29719,7 @@ exports[`Write save file image-iterator.chn 1`] = ` exports[`Write save file image-metrics.chn 1`] = ` { - "checksum": "88d5f3ceed381c64e1d03516828879cb", + "checksum": "d07b86288c665e9111112234bf3ea723", "content": { "edges": [], "nodes": [ @@ -29736,7 +29736,7 @@ exports[`Write save file image-metrics.chn 1`] = ` "y": 560, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 241, }, ], @@ -29752,7 +29752,7 @@ exports[`Write save file image-metrics.chn 1`] = ` exports[`Write save file image-utilities.chn 1`] = ` { - "checksum": "571fda58aaccfee915b7fda4d0a17032", + "checksum": "c6d22e8f5ca998f884e8bc7a02089018", "content": { "edges": [ { @@ -29885,7 +29885,7 @@ exports[`Write save file image-utilities.chn 1`] = ` "y": 113, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -29903,7 +29903,7 @@ exports[`Write save file image-utilities.chn 1`] = ` "y": 1112.075862240231, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -29923,7 +29923,7 @@ exports[`Write save file image-utilities.chn 1`] = ` "y": 365.42388294050994, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 283, }, { @@ -29942,7 +29942,7 @@ exports[`Write save file image-utilities.chn 1`] = ` "y": 930.7055908254938, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 283, }, { @@ -29962,7 +29962,7 @@ exports[`Write save file image-utilities.chn 1`] = ` "y": 985.0646017506039, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -29980,7 +29980,7 @@ exports[`Write save file image-utilities.chn 1`] = ` "y": 498, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -30000,7 +30000,7 @@ exports[`Write save file image-utilities.chn 1`] = ` "y": 615, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 244, }, { @@ -30018,7 +30018,7 @@ exports[`Write save file image-utilities.chn 1`] = ` "y": 162, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -30036,7 +30036,7 @@ exports[`Write save file image-utilities.chn 1`] = ` "y": 1299.5404330540307, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -30054,7 +30054,7 @@ exports[`Write save file image-utilities.chn 1`] = ` "y": -37, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -30072,7 +30072,7 @@ exports[`Write save file image-utilities.chn 1`] = ` "y": 263, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, ], @@ -30088,7 +30088,7 @@ exports[`Write save file image-utilities.chn 1`] = ` exports[`Write save file metal-specular.chn 1`] = ` { - "checksum": "c2574c108021dd51bf0acf1b6b8af51c", + "checksum": "311b7ca9cafd26f2faea96588aaf754e", "content": { "edges": [ { @@ -30261,7 +30261,7 @@ exports[`Write save file metal-specular.chn 1`] = ` "y": 656, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -30277,7 +30277,7 @@ exports[`Write save file metal-specular.chn 1`] = ` "y": 1200, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -30295,7 +30295,7 @@ exports[`Write save file metal-specular.chn 1`] = ` "y": 1088, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -30311,7 +30311,7 @@ exports[`Write save file metal-specular.chn 1`] = ` "y": 688, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -30331,7 +30331,7 @@ exports[`Write save file metal-specular.chn 1`] = ` "y": 688, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 244, }, { @@ -30347,7 +30347,7 @@ exports[`Write save file metal-specular.chn 1`] = ` "y": 336, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -30363,7 +30363,7 @@ exports[`Write save file metal-specular.chn 1`] = ` "y": 336, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -30381,7 +30381,7 @@ exports[`Write save file metal-specular.chn 1`] = ` "y": 224, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -30397,7 +30397,7 @@ exports[`Write save file metal-specular.chn 1`] = ` "y": 944, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -30413,7 +30413,7 @@ exports[`Write save file metal-specular.chn 1`] = ` "y": 688, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -30429,7 +30429,7 @@ exports[`Write save file metal-specular.chn 1`] = ` "y": 688, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -30445,7 +30445,7 @@ exports[`Write save file metal-specular.chn 1`] = ` "y": 1040, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -30464,7 +30464,7 @@ exports[`Write save file metal-specular.chn 1`] = ` "y": 624, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -30480,7 +30480,7 @@ exports[`Write save file metal-specular.chn 1`] = ` "y": 1040, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, ], @@ -30496,7 +30496,7 @@ exports[`Write save file metal-specular.chn 1`] = ` exports[`Write save file model-scale.chn 1`] = ` { - "checksum": "723b3312dc01002f397b4a73a0906450", + "checksum": "9df28fd4d207202e56e228df6911130f", "content": { "edges": [ { @@ -30526,7 +30526,7 @@ exports[`Write save file model-scale.chn 1`] = ` "y": 219, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 517, }, { @@ -30542,7 +30542,7 @@ exports[`Write save file model-scale.chn 1`] = ` "y": 713.9047452339597, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 503, }, ], @@ -30558,7 +30558,7 @@ exports[`Write save file model-scale.chn 1`] = ` exports[`Write save file ncnn.chn 1`] = ` { - "checksum": "91daec5ce818ee7ec6bb8d0398ee0ca9", + "checksum": "73a304afbd39d1f55cd829aa51ed945e", "content": { "edges": [ { @@ -30616,7 +30616,7 @@ exports[`Write save file ncnn.chn 1`] = ` "y": 308, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -30634,7 +30634,7 @@ exports[`Write save file ncnn.chn 1`] = ` "y": 635, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 248, }, { @@ -30652,7 +30652,7 @@ exports[`Write save file ncnn.chn 1`] = ` "y": 676, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -30668,7 +30668,7 @@ exports[`Write save file ncnn.chn 1`] = ` "y": 321, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, ], @@ -30684,7 +30684,7 @@ exports[`Write save file ncnn.chn 1`] = ` exports[`Write save file normal-map-generator.chn 1`] = ` { - "checksum": "a10e41efc82e75a61af88724d73401fc", + "checksum": "02cddeece2dae38b2b2e4e807fabff4e", "content": { "edges": [ { @@ -30722,7 +30722,7 @@ exports[`Write save file normal-map-generator.chn 1`] = ` "y": 878, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -30746,7 +30746,7 @@ exports[`Write save file normal-map-generator.chn 1`] = ` "y": 339.0188609548806, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 282, }, { @@ -30762,7 +30762,7 @@ exports[`Write save file normal-map-generator.chn 1`] = ` "y": 855.2046073651672, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, ], @@ -30778,7 +30778,7 @@ exports[`Write save file normal-map-generator.chn 1`] = ` exports[`Write save file onnx-interpolate.chn 1`] = ` { - "checksum": "5d03270fc2a910ba06d4d0ce31202921", + "checksum": "c84ff8946f7fe031a974c19389c5c372", "content": { "edges": [], "nodes": [ @@ -30798,7 +30798,7 @@ exports[`Write save file onnx-interpolate.chn 1`] = ` "y": 144, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 247, }, ], @@ -30814,7 +30814,7 @@ exports[`Write save file onnx-interpolate.chn 1`] = ` exports[`Write save file opacity.chn 1`] = ` { - "checksum": "dda288a4f085618f72fb0f45407c600e", + "checksum": "ace8fd4e488a2a989c07dadfa3489b6b", "content": { "edges": [], "nodes": [ @@ -30833,7 +30833,7 @@ exports[`Write save file opacity.chn 1`] = ` "y": 400, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 241, }, ], @@ -30849,7 +30849,7 @@ exports[`Write save file opacity.chn 1`] = ` exports[`Write save file pass-through.chn 1`] = ` { - "checksum": "f5d05931efd1a97d41d47c8b843dd05e", + "checksum": "87e1b53719595c62ab149e82f6103c50", "content": { "edges": [ { @@ -30907,7 +30907,7 @@ exports[`Write save file pass-through.chn 1`] = ` "y": 253.85412981498177, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -30926,7 +30926,7 @@ exports[`Write save file pass-through.chn 1`] = ` "y": 406.7388401632344, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 265, }, { @@ -30944,7 +30944,7 @@ exports[`Write save file pass-through.chn 1`] = ` "y": 166, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -30960,7 +30960,7 @@ exports[`Write save file pass-through.chn 1`] = ` "y": 247.93391927096337, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, ], @@ -30976,7 +30976,7 @@ exports[`Write save file pass-through.chn 1`] = ` exports[`Write save file pytorch.chn 1`] = ` { - "checksum": "743d3912cdd3e5071f75790e7c83fd9a", + "checksum": "cf972aa059e6ed801cbcdfece985ced0", "content": { "edges": [ { @@ -31076,7 +31076,7 @@ exports[`Write save file pytorch.chn 1`] = ` "y": 54.77750343838076, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -31092,7 +31092,7 @@ exports[`Write save file pytorch.chn 1`] = ` "y": 306.40246044613554, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -31110,7 +31110,7 @@ exports[`Write save file pytorch.chn 1`] = ` "y": 757.7994492005994, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 248, }, { @@ -31126,7 +31126,7 @@ exports[`Write save file pytorch.chn 1`] = ` "y": 669.0123022306777, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -31144,7 +31144,7 @@ exports[`Write save file pytorch.chn 1`] = ` "y": 285, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, { @@ -31160,7 +31160,7 @@ exports[`Write save file pytorch.chn 1`] = ` "y": 869.0123022306777, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, ], @@ -31176,7 +31176,7 @@ exports[`Write save file pytorch.chn 1`] = ` exports[`Write save file pytorch-scunet.chn 1`] = ` { - "checksum": "f0f5705acd9ad9a5f740c8f8ffa19a71", + "checksum": "c92204be85893f7327aa341ea5976668", "content": { "edges": [ { @@ -31292,7 +31292,7 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "y": 901.4967911386506, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 244, }, { @@ -31311,7 +31311,7 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "y": 396.05936096418117, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 244, }, { @@ -31327,7 +31327,7 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "y": -251.4056420380027, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -31345,7 +31345,7 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "y": -268.7414137863447, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -31368,7 +31368,7 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "y": 727.5156388863755, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 261, }, { @@ -31387,7 +31387,7 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "y": 951.4789370127307, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, { @@ -31403,7 +31403,7 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "y": 951.4789370127307, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -31426,7 +31426,7 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "y": 222.0782087119062, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 261, }, { @@ -31447,7 +31447,7 @@ exports[`Write save file pytorch-scunet.chn 1`] = ` "y": -254.72296827231523, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 243, }, { @@ -31471,7 +31471,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. "y": -449.22369941881294, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 856, }, { @@ -31487,7 +31487,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. "y": 455.1592094149395, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -31508,7 +31508,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. "y": -254.44311128315388, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -31526,7 +31526,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. "y": 455.1592094149395, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, ], @@ -31542,7 +31542,7 @@ https://github.com/chaiNNer-org/chaiNNer/blob/main/src/public/icons/png/256x256. exports[`Write save file resize-to-side.chn 1`] = ` { - "checksum": "08dd77beb6b466fb072e96575f7dd266", + "checksum": "0085dbadd86459b960e032583b80f198", "content": { "edges": [ { @@ -31582,7 +31582,7 @@ exports[`Write save file resize-to-side.chn 1`] = ` "y": 480, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 265, }, { @@ -31602,7 +31602,7 @@ exports[`Write save file resize-to-side.chn 1`] = ` "y": 375, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 283, }, { @@ -31618,7 +31618,7 @@ exports[`Write save file resize-to-side.chn 1`] = ` "y": 330, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, ], @@ -31634,7 +31634,7 @@ exports[`Write save file resize-to-side.chn 1`] = ` exports[`Write save file rnd.chn 1`] = ` { - "checksum": "d3afe6ed42246284e1451e066080218a", + "checksum": "1accb98dcb73dc5428de6d196631da61", "content": { "edges": [ { @@ -31686,7 +31686,7 @@ exports[`Write save file rnd.chn 1`] = ` "y": 720, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -31704,7 +31704,7 @@ exports[`Write save file rnd.chn 1`] = ` "y": 864, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -31720,7 +31720,7 @@ exports[`Write save file rnd.chn 1`] = ` "y": 896, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -31738,7 +31738,7 @@ exports[`Write save file rnd.chn 1`] = ` "y": 700, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, ], @@ -31754,7 +31754,7 @@ exports[`Write save file rnd.chn 1`] = ` exports[`Write save file save video input.chn 1`] = ` { - "checksum": "8728002f0db5e4abf686753df3971d70", + "checksum": "c88c22764015f43410e1789449a2e20e", "content": { "edges": [], "nodes": [ @@ -31786,7 +31786,7 @@ exports[`Write save file save video input.chn 1`] = ` "y": 224, }, "selected": false, - "type": "collector", + "type": "backendNode", "width": 258, }, { @@ -31817,7 +31817,7 @@ exports[`Write save file save video input.chn 1`] = ` "y": 224, }, "selected": false, - "type": "collector", + "type": "backendNode", "width": 240, }, { @@ -31848,7 +31848,7 @@ exports[`Write save file save video input.chn 1`] = ` "y": 224, }, "selected": false, - "type": "collector", + "type": "backendNode", "width": 258, }, ], @@ -31864,7 +31864,7 @@ exports[`Write save file save video input.chn 1`] = ` exports[`Write save file save-image-webp-lossless.chn 1`] = ` { - "checksum": "607de6c94a59fb15ded26c993ddafc62", + "checksum": "b863031d6c1fc764eabe1935ccbc9e48", "content": { "edges": [], "nodes": [ @@ -31898,7 +31898,7 @@ exports[`Write save file save-image-webp-lossless.chn 1`] = ` "y": 336, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 240, }, ], @@ -31914,7 +31914,7 @@ exports[`Write save file save-image-webp-lossless.chn 1`] = ` exports[`Write save file text-as-image.chn 1`] = ` { - "checksum": "bd32dd2564b8902f14dea2637b0da7e0", + "checksum": "c26e62f931a231efa99f5791e40c8c8c", "content": { "edges": [ { @@ -32498,7 +32498,7 @@ exports[`Write save file text-as-image.chn 1`] = ` "y": -345, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -32518,7 +32518,7 @@ exports[`Write save file text-as-image.chn 1`] = ` "y": -1575, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -32540,7 +32540,7 @@ exports[`Write save file text-as-image.chn 1`] = ` "y": -4620, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 2068, }, { @@ -32571,7 +32571,7 @@ consectetur adipiscing...", "y": -4395, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -32587,7 +32587,7 @@ consectetur adipiscing...", "y": -3765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -32618,7 +32618,7 @@ consectetur adipiscing...", "y": -3780, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -32634,7 +32634,7 @@ consectetur adipiscing...", "y": -3150, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -32650,7 +32650,7 @@ consectetur adipiscing...", "y": -4395, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -32672,7 +32672,7 @@ consectetur adipiscing...", "y": -4605, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 915, }, { @@ -32703,7 +32703,7 @@ consectetur adipiscing...", "y": -3750, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -32719,7 +32719,7 @@ consectetur adipiscing...", "y": -3750, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -32735,7 +32735,7 @@ consectetur adipiscing...", "y": -3150, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -32752,7 +32752,7 @@ consectetur adipiscing...", "y": -495, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -32768,7 +32768,7 @@ consectetur adipiscing...", "y": -885, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -32784,7 +32784,7 @@ consectetur adipiscing...", "y": -4380, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -32815,7 +32815,7 @@ consectetur adipiscing ...", "y": -4365, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -32846,7 +32846,7 @@ consectetur adipiscing ...", "y": -3765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -32862,7 +32862,7 @@ consectetur adipiscing ...", "y": -1455, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -32893,7 +32893,7 @@ consectetur adipiscing...", "y": -4395, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 267, }, { @@ -32915,7 +32915,7 @@ consectetur adipiscing...", "y": -660, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 519, }, { @@ -32936,7 +32936,7 @@ consectetur adipiscing...", "y": 555, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -32954,7 +32954,7 @@ consectetur adipiscing...", "y": -4380, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -32970,7 +32970,7 @@ consectetur adipiscing...", "y": -4395, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -32987,7 +32987,7 @@ consectetur adipiscing...", "y": 555, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33004,7 +33004,7 @@ consectetur adipiscing...", "y": -1065, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33020,7 +33020,7 @@ consectetur adipiscing...", "y": 180, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33051,7 +33051,7 @@ consectetur adipiscing...", "y": -3165, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -33067,7 +33067,7 @@ consectetur adipiscing...", "y": -4365, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33087,7 +33087,7 @@ consectetur adipiscing...", "y": 60, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -33103,7 +33103,7 @@ consectetur adipiscing...", "y": -4365, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33127,7 +33127,7 @@ consectetur adipiscing...", "y": -255, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33143,7 +33143,7 @@ consectetur adipiscing...", "y": -3150, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33174,7 +33174,7 @@ consectetur adipiscing ...", "y": -4395, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -33190,7 +33190,7 @@ consectetur adipiscing ...", "y": -3180, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33206,7 +33206,7 @@ consectetur adipiscing ...", "y": -3780, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33228,7 +33228,7 @@ consectetur adipiscing ...", "y": -4605, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 1285, }, { @@ -33244,7 +33244,7 @@ consectetur adipiscing ...", "y": 180, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33275,7 +33275,7 @@ consectetur adipiscing ...", "y": -3150, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -33291,7 +33291,7 @@ consectetur adipiscing ...", "y": -3765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33307,7 +33307,7 @@ consectetur adipiscing ...", "y": -3165, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33338,7 +33338,7 @@ for chaiNNer.", "y": -1455, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -33354,7 +33354,7 @@ for chaiNNer.", "y": -3765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33385,7 +33385,7 @@ for chaiNNer.", "y": -885, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -33401,7 +33401,7 @@ for chaiNNer.", "y": -4395, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33432,7 +33432,7 @@ consectetur adipiscing ...", "y": -4365, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -33452,7 +33452,7 @@ consectetur adipiscing ...", "y": -765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 250, }, { @@ -33468,7 +33468,7 @@ consectetur adipiscing ...", "y": -3765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33484,7 +33484,7 @@ consectetur adipiscing ...", "y": -645, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33515,7 +33515,7 @@ consectetur adipiscing ...", "y": -4380, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -33539,7 +33539,7 @@ consectetur adipiscing ...", "y": 180, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33555,7 +33555,7 @@ consectetur adipiscing ...", "y": -4365, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33573,7 +33573,7 @@ consectetur adipiscing ...", "y": -495, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33597,7 +33597,7 @@ consectetur adipiscing ...", "y": -1455, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33615,7 +33615,7 @@ consectetur adipiscing ...", "y": -4170, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33646,7 +33646,7 @@ consectetur adipiscing ...", "y": -3150, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -33677,7 +33677,7 @@ consectetur adipiscing ...", "y": -3765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -33701,7 +33701,7 @@ consectetur adipiscing ...", "y": -645, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33717,7 +33717,7 @@ consectetur adipiscing ...", "y": 375, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33748,7 +33748,7 @@ for chaiNNer.", "y": 180, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -33779,7 +33779,7 @@ consectetur adipiscing ...", "y": -3150, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -33795,7 +33795,7 @@ consectetur adipiscing ...", "y": -3750, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33826,7 +33826,7 @@ consectetur adipiscing...", "y": -3765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -33848,7 +33848,7 @@ consectetur adipiscing...", "y": -4605, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 574, }, { @@ -33864,7 +33864,7 @@ consectetur adipiscing...", "y": -1455, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33895,7 +33895,7 @@ consectetur adipiscing...", "y": -3750, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -33926,7 +33926,7 @@ consectetur adipiscing ...", "y": -3765, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -33957,7 +33957,7 @@ consectetur adipiscing...", "y": -3180, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, { @@ -33977,7 +33977,7 @@ consectetur adipiscing...", "y": 375, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -33993,7 +33993,7 @@ consectetur adipiscing...", "y": -255, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -34024,7 +34024,7 @@ consectetur adipiscing ...", "y": -4365, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 266, }, ], @@ -34040,7 +34040,7 @@ consectetur adipiscing ...", exports[`Write save file text-pattern.chn 1`] = ` { - "checksum": "4ff80b474b9f33545b8d009157e05ce5", + "checksum": "b4f3795780610679465ab583acc9c514", "content": { "edges": [ { @@ -34131,7 +34131,7 @@ exports[`Write save file text-pattern.chn 1`] = ` "y": 771.1213194348871, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -34147,7 +34147,7 @@ exports[`Write save file text-pattern.chn 1`] = ` "y": 667.4464344534028, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -34165,7 +34165,7 @@ exports[`Write save file text-pattern.chn 1`] = ` "y": 346.744623600131, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -34181,7 +34181,7 @@ exports[`Write save file text-pattern.chn 1`] = ` "y": 935.9302075524464, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -34197,7 +34197,7 @@ exports[`Write save file text-pattern.chn 1`] = ` "y": 978.8257039041982, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, ], @@ -34213,7 +34213,7 @@ exports[`Write save file text-pattern.chn 1`] = ` exports[`Write save file unified-resize.chn 1`] = ` { - "checksum": "baa923466a9ed5817f57439f9217465b", + "checksum": "bbab5c2979a1266875aca9e2547b9957", "content": { "edges": [ { @@ -34291,7 +34291,7 @@ exports[`Write save file unified-resize.chn 1`] = ` "y": 464, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -34307,7 +34307,7 @@ exports[`Write save file unified-resize.chn 1`] = ` "y": 128, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -34328,7 +34328,7 @@ exports[`Write save file unified-resize.chn 1`] = ` "y": 128, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 243, }, { @@ -34350,7 +34350,7 @@ exports[`Write save file unified-resize.chn 1`] = ` "y": 464, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -34372,7 +34372,7 @@ exports[`Write save file unified-resize.chn 1`] = ` "y": 464, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -34390,7 +34390,7 @@ exports[`Write save file unified-resize.chn 1`] = ` "y": 240, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 240, }, { @@ -34410,7 +34410,7 @@ exports[`Write save file unified-resize.chn 1`] = ` "y": 128, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 240, }, ], @@ -34426,7 +34426,7 @@ exports[`Write save file unified-resize.chn 1`] = ` exports[`Write save file utilities.chn 1`] = ` { - "checksum": "e387dbb663a5aa222751c753b9655184", + "checksum": "0f86d0c30d666b198ec7706abd19dfc5", "content": { "edges": [], "nodes": [ @@ -34447,7 +34447,7 @@ exports[`Write save file utilities.chn 1`] = ` "y": 283, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 242, }, { @@ -34467,7 +34467,7 @@ exports[`Write save file utilities.chn 1`] = ` "y": 377, }, "selected": true, - "type": "regularNode", + "type": "backendNode", "width": 257, }, { @@ -34485,7 +34485,7 @@ exports[`Write save file utilities.chn 1`] = ` "y": 81, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 258, }, ], @@ -34501,7 +34501,7 @@ exports[`Write save file utilities.chn 1`] = ` exports[`Write save file video-frame-iterator.chn 1`] = ` { - "checksum": "ebd6a4da057f87c86a71d4d50d505c7a", + "checksum": "9b744ef508e44908de81c152d00122e0", "content": { "edges": [ { @@ -35179,7 +35179,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": -1890, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 2499, }, { @@ -35201,7 +35201,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 3090, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 2499, }, { @@ -35223,7 +35223,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 4275, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 2499, }, { @@ -35245,7 +35245,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 1950, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 2499, }, { @@ -35267,7 +35267,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": -45, }, "selected": false, - "type": "regularNode", + "type": "backendNode", "width": 2499, }, { @@ -35285,7 +35285,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 4485, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35302,7 +35302,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 3300, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35328,7 +35328,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 3405, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -35345,7 +35345,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 2160, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35371,7 +35371,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 2280, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -35388,7 +35388,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 2160, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35414,7 +35414,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 2295, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -35431,7 +35431,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 3300, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35457,7 +35457,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 3435, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -35474,7 +35474,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 2160, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35500,7 +35500,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 2310, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -35517,7 +35517,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": -930, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35543,7 +35543,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": -795, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -35560,7 +35560,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": -930, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35586,7 +35586,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": -795, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -35603,7 +35603,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 150, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35629,7 +35629,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 270, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -35646,7 +35646,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": -1695, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35672,7 +35672,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": -1560, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -35689,7 +35689,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 915, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35715,7 +35715,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 1035, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -35732,7 +35732,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 4485, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35749,7 +35749,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 150, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35775,7 +35775,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 270, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -35792,7 +35792,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 3300, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35818,7 +35818,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 3420, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -35835,7 +35835,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 915, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35861,7 +35861,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 1035, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -35878,7 +35878,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": -1695, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35904,7 +35904,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": -1560, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -35921,7 +35921,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": -930, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35947,7 +35947,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": -795, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -35964,7 +35964,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 915, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -35990,7 +35990,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 1035, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -36007,7 +36007,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": -1695, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -36033,7 +36033,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": -1560, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -36050,7 +36050,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 150, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -36076,7 +36076,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 270, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -36093,7 +36093,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": -1695, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -36119,7 +36119,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": -1560, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -36136,7 +36136,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 2160, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -36162,7 +36162,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 2280, }, "selected": false, - "type": "collector", + "type": "backendNode", }, { "data": { @@ -36179,7 +36179,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 3300, }, "selected": false, - "type": "newIterator", + "type": "backendNode", }, { "data": { @@ -36205,7 +36205,7 @@ exports[`Write save file video-frame-iterator.chn 1`] = ` "y": 3420, }, "selected": false, - "type": "collector", + "type": "backendNode", }, ], "viewport": {