html-overlay-node 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/dist/example.json +522 -0
- package/dist/html-overlay-node.es.js +3596 -0
- package/dist/html-overlay-node.es.js.map +1 -0
- package/dist/html-overlay-node.umd.js +2 -0
- package/dist/html-overlay-node.umd.js.map +1 -0
- package/index.css +232 -0
- package/package.json +65 -0
- package/readme.md +437 -0
- package/src/core/CommandStack.js +26 -0
- package/src/core/Edge.js +28 -0
- package/src/core/Edge.test.js +73 -0
- package/src/core/Graph.js +267 -0
- package/src/core/Graph.test.js +256 -0
- package/src/core/Group.js +77 -0
- package/src/core/Hooks.js +12 -0
- package/src/core/Hooks.test.js +108 -0
- package/src/core/Node.js +70 -0
- package/src/core/Node.test.js +113 -0
- package/src/core/Registry.js +71 -0
- package/src/core/Registry.test.js +88 -0
- package/src/core/Runner.js +211 -0
- package/src/core/commands.js +125 -0
- package/src/groups/GroupManager.js +116 -0
- package/src/index.js +1030 -0
- package/src/interact/ContextMenu.js +400 -0
- package/src/interact/Controller.js +856 -0
- package/src/minimap/Minimap.js +146 -0
- package/src/render/CanvasRenderer.js +606 -0
- package/src/render/HtmlOverlay.js +161 -0
- package/src/render/hitTest.js +38 -0
- package/src/ui/PropertyPanel.css +277 -0
- package/src/ui/PropertyPanel.js +269 -0
- package/src/utils/utils.js +75 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 cheonghakim
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,522 @@
|
|
|
1
|
+
{
|
|
2
|
+
"nodes": [
|
|
3
|
+
{
|
|
4
|
+
"id": "120a4252-cd66-474e-bb2c-58207f1c4279",
|
|
5
|
+
"type": "util/Trigger",
|
|
6
|
+
"title": "Trigger",
|
|
7
|
+
"x": 22,
|
|
8
|
+
"y": 74,
|
|
9
|
+
"w": 140,
|
|
10
|
+
"h": 80,
|
|
11
|
+
"inputs": [],
|
|
12
|
+
"outputs": [
|
|
13
|
+
{
|
|
14
|
+
"id": "3025f537-a7b0-43c8-8665-e28ba39bdd52",
|
|
15
|
+
"name": "exec",
|
|
16
|
+
"datatype": "any",
|
|
17
|
+
"portType": "exec",
|
|
18
|
+
"dir": "out"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"state": {
|
|
22
|
+
"triggered": false
|
|
23
|
+
},
|
|
24
|
+
"parentId": "6c68b34b-105d-4dc6-99ae-b9b149e1ebb4"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"id": "0d2edc81-7e94-43eb-ad32-edafb603aa45",
|
|
28
|
+
"type": "util/Trigger",
|
|
29
|
+
"title": "Trigger",
|
|
30
|
+
"x": 40,
|
|
31
|
+
"y": 60,
|
|
32
|
+
"w": 140,
|
|
33
|
+
"h": 80,
|
|
34
|
+
"inputs": [],
|
|
35
|
+
"outputs": [
|
|
36
|
+
{
|
|
37
|
+
"id": "e73885b4-2b1d-4cb0-add6-9952864e6484",
|
|
38
|
+
"name": "exec",
|
|
39
|
+
"datatype": "any",
|
|
40
|
+
"portType": "exec",
|
|
41
|
+
"dir": "out"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"state": {
|
|
45
|
+
"triggered": false
|
|
46
|
+
},
|
|
47
|
+
"parentId": "da9033a9-e951-4753-8681-e940f1df8c85"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"id": "058c160e-033a-4fa9-9394-1fc0ce2386e9",
|
|
51
|
+
"type": "value/Number",
|
|
52
|
+
"title": "Number",
|
|
53
|
+
"x": 40,
|
|
54
|
+
"y": 180,
|
|
55
|
+
"w": 140,
|
|
56
|
+
"h": 60,
|
|
57
|
+
"inputs": [],
|
|
58
|
+
"outputs": [
|
|
59
|
+
{
|
|
60
|
+
"id": "26e98bab-14c9-4e9a-929b-1a1486f69d10",
|
|
61
|
+
"name": "value",
|
|
62
|
+
"datatype": "number",
|
|
63
|
+
"portType": "data",
|
|
64
|
+
"dir": "out"
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"state": {
|
|
68
|
+
"value": 10
|
|
69
|
+
},
|
|
70
|
+
"parentId": "da9033a9-e951-4753-8681-e940f1df8c85"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "146860f7-c9d9-4e61-93e3-010de33ed79a",
|
|
74
|
+
"type": "value/Number",
|
|
75
|
+
"title": "Number",
|
|
76
|
+
"x": 40,
|
|
77
|
+
"y": 300,
|
|
78
|
+
"w": 140,
|
|
79
|
+
"h": 60,
|
|
80
|
+
"inputs": [],
|
|
81
|
+
"outputs": [
|
|
82
|
+
{
|
|
83
|
+
"id": "7da262fb-a760-4e45-bcbf-6c1fd26c8ada",
|
|
84
|
+
"name": "value",
|
|
85
|
+
"datatype": "number",
|
|
86
|
+
"portType": "data",
|
|
87
|
+
"dir": "out"
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"state": {
|
|
91
|
+
"value": 5
|
|
92
|
+
},
|
|
93
|
+
"parentId": "da9033a9-e951-4753-8681-e940f1df8c85"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"id": "d5277e55-2029-495f-bb90-83307af262d9",
|
|
97
|
+
"type": "math/Add",
|
|
98
|
+
"title": "Add",
|
|
99
|
+
"x": 220,
|
|
100
|
+
"y": 60,
|
|
101
|
+
"w": 140,
|
|
102
|
+
"h": 100,
|
|
103
|
+
"inputs": [
|
|
104
|
+
{
|
|
105
|
+
"id": "e4ea4c5e-dad2-4852-8706-c309f27c3dbc",
|
|
106
|
+
"name": "exec",
|
|
107
|
+
"datatype": "any",
|
|
108
|
+
"portType": "exec",
|
|
109
|
+
"dir": "in"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"id": "c5a56c00-dd02-49c1-9566-9bbcbb155dc6",
|
|
113
|
+
"name": "a",
|
|
114
|
+
"datatype": "number",
|
|
115
|
+
"portType": "data",
|
|
116
|
+
"dir": "in"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"id": "639edb1e-e364-4edb-82af-efdc1cda38b9",
|
|
120
|
+
"name": "b",
|
|
121
|
+
"datatype": "number",
|
|
122
|
+
"portType": "data",
|
|
123
|
+
"dir": "in"
|
|
124
|
+
}
|
|
125
|
+
],
|
|
126
|
+
"outputs": [
|
|
127
|
+
{
|
|
128
|
+
"id": "04b42ba1-46e6-41f1-8ab7-ae702496b5bc",
|
|
129
|
+
"name": "exec",
|
|
130
|
+
"datatype": "any",
|
|
131
|
+
"portType": "exec",
|
|
132
|
+
"dir": "out"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"id": "d9a3b57a-64ba-4bf0-b8a4-4471cfd9b3ca",
|
|
136
|
+
"name": "result",
|
|
137
|
+
"datatype": "number",
|
|
138
|
+
"portType": "data",
|
|
139
|
+
"dir": "out"
|
|
140
|
+
}
|
|
141
|
+
],
|
|
142
|
+
"state": {
|
|
143
|
+
"a": 0,
|
|
144
|
+
"b": 0
|
|
145
|
+
},
|
|
146
|
+
"parentId": "da9033a9-e951-4753-8681-e940f1df8c85"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"id": "ef8d9a1c-cedc-4f21-aad4-5b1f85328d13",
|
|
150
|
+
"type": "math/Multiply",
|
|
151
|
+
"title": "Multiply",
|
|
152
|
+
"x": 420,
|
|
153
|
+
"y": 100,
|
|
154
|
+
"w": 140,
|
|
155
|
+
"h": 100,
|
|
156
|
+
"inputs": [
|
|
157
|
+
{
|
|
158
|
+
"id": "059e7161-94e1-41c8-a5c7-100cdad14600",
|
|
159
|
+
"name": "exec",
|
|
160
|
+
"datatype": "any",
|
|
161
|
+
"portType": "exec",
|
|
162
|
+
"dir": "in"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"id": "c8c0b5b0-ec8b-4968-904e-13a1c68818dc",
|
|
166
|
+
"name": "a",
|
|
167
|
+
"datatype": "number",
|
|
168
|
+
"portType": "data",
|
|
169
|
+
"dir": "in"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"id": "c7e96791-88f1-4b58-9b42-4c486e0b7a68",
|
|
173
|
+
"name": "b",
|
|
174
|
+
"datatype": "number",
|
|
175
|
+
"portType": "data",
|
|
176
|
+
"dir": "in"
|
|
177
|
+
}
|
|
178
|
+
],
|
|
179
|
+
"outputs": [
|
|
180
|
+
{
|
|
181
|
+
"id": "70ed324b-408a-4aa8-a165-e9842e1f0ad5",
|
|
182
|
+
"name": "exec",
|
|
183
|
+
"datatype": "any",
|
|
184
|
+
"portType": "exec",
|
|
185
|
+
"dir": "out"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"id": "66ec8ce7-9925-46fb-af9f-53598591633b",
|
|
189
|
+
"name": "result",
|
|
190
|
+
"datatype": "number",
|
|
191
|
+
"portType": "data",
|
|
192
|
+
"dir": "out"
|
|
193
|
+
}
|
|
194
|
+
],
|
|
195
|
+
"state": {},
|
|
196
|
+
"parentId": "da9033a9-e951-4753-8681-e940f1df8c85"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"id": "778b7537-4a19-4a48-89ae-0b2907d5e951",
|
|
200
|
+
"type": "value/Boolean",
|
|
201
|
+
"title": "Boolean",
|
|
202
|
+
"x": 222,
|
|
203
|
+
"y": 74,
|
|
204
|
+
"w": 140,
|
|
205
|
+
"h": 60,
|
|
206
|
+
"inputs": [],
|
|
207
|
+
"outputs": [
|
|
208
|
+
{
|
|
209
|
+
"id": "6e6026f9-46e0-4e66-9445-e8cc15c53536",
|
|
210
|
+
"name": "value",
|
|
211
|
+
"datatype": "boolean",
|
|
212
|
+
"portType": "data",
|
|
213
|
+
"dir": "out"
|
|
214
|
+
}
|
|
215
|
+
],
|
|
216
|
+
"state": {
|
|
217
|
+
"value": true
|
|
218
|
+
},
|
|
219
|
+
"parentId": "6c68b34b-105d-4dc6-99ae-b9b149e1ebb4"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"id": "5c8b05bc-0deb-47a2-8ede-23e8ed43154e",
|
|
223
|
+
"type": "logic/AND",
|
|
224
|
+
"title": "AND",
|
|
225
|
+
"x": 422,
|
|
226
|
+
"y": 54,
|
|
227
|
+
"w": 120,
|
|
228
|
+
"h": 100,
|
|
229
|
+
"inputs": [
|
|
230
|
+
{
|
|
231
|
+
"id": "8b8fea61-595f-4bfc-a59c-0f0ae2ab6a2b",
|
|
232
|
+
"name": "exec",
|
|
233
|
+
"datatype": "any",
|
|
234
|
+
"portType": "exec",
|
|
235
|
+
"dir": "in"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"id": "431149bc-e301-4d55-9989-a8356dd72dbc",
|
|
239
|
+
"name": "a",
|
|
240
|
+
"datatype": "boolean",
|
|
241
|
+
"portType": "data",
|
|
242
|
+
"dir": "in"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"id": "ad2ebc1d-e21a-45fa-818a-d350408035e6",
|
|
246
|
+
"name": "b",
|
|
247
|
+
"datatype": "boolean",
|
|
248
|
+
"portType": "data",
|
|
249
|
+
"dir": "in"
|
|
250
|
+
}
|
|
251
|
+
],
|
|
252
|
+
"outputs": [
|
|
253
|
+
{
|
|
254
|
+
"id": "84a24488-08e8-4d34-9c15-2ed7cd80b3a6",
|
|
255
|
+
"name": "exec",
|
|
256
|
+
"datatype": "any",
|
|
257
|
+
"portType": "exec",
|
|
258
|
+
"dir": "out"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"id": "8873880c-bd77-4bb3-994c-e180ae60fc4c",
|
|
262
|
+
"name": "result",
|
|
263
|
+
"datatype": "boolean",
|
|
264
|
+
"portType": "data",
|
|
265
|
+
"dir": "out"
|
|
266
|
+
}
|
|
267
|
+
],
|
|
268
|
+
"state": {},
|
|
269
|
+
"parentId": "6c68b34b-105d-4dc6-99ae-b9b149e1ebb4"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"id": "20cd484c-fc96-42ec-af3a-d70f5e33b4e3",
|
|
273
|
+
"type": "util/Watch",
|
|
274
|
+
"title": "Watch",
|
|
275
|
+
"x": 622,
|
|
276
|
+
"y": 54,
|
|
277
|
+
"w": 180,
|
|
278
|
+
"h": 110,
|
|
279
|
+
"inputs": [
|
|
280
|
+
{
|
|
281
|
+
"id": "7ac2f56d-66f1-403e-bfa6-dd699fff45f3",
|
|
282
|
+
"name": "exec",
|
|
283
|
+
"datatype": "any",
|
|
284
|
+
"portType": "exec",
|
|
285
|
+
"dir": "in"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"id": "60f04b28-49bb-4129-8204-e06ff3475519",
|
|
289
|
+
"name": "value",
|
|
290
|
+
"datatype": "any",
|
|
291
|
+
"portType": "data",
|
|
292
|
+
"dir": "in"
|
|
293
|
+
}
|
|
294
|
+
],
|
|
295
|
+
"outputs": [
|
|
296
|
+
{
|
|
297
|
+
"id": "bbb5697c-951f-41dd-a6cf-d9ab11cc6785",
|
|
298
|
+
"name": "exec",
|
|
299
|
+
"datatype": "any",
|
|
300
|
+
"portType": "exec",
|
|
301
|
+
"dir": "out"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"id": "050bf977-1b2d-4cbf-91dc-da05ba31e578",
|
|
305
|
+
"name": "value",
|
|
306
|
+
"datatype": "any",
|
|
307
|
+
"portType": "data",
|
|
308
|
+
"dir": "out"
|
|
309
|
+
}
|
|
310
|
+
],
|
|
311
|
+
"state": {
|
|
312
|
+
"displayValue": "---"
|
|
313
|
+
},
|
|
314
|
+
"parentId": "6c68b34b-105d-4dc6-99ae-b9b149e1ebb4"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"id": "6330f382-b535-4c0a-9f30-bc301ebf33e7",
|
|
318
|
+
"type": "util/Watch",
|
|
319
|
+
"title": "Watch",
|
|
320
|
+
"x": 620,
|
|
321
|
+
"y": 140,
|
|
322
|
+
"w": 180,
|
|
323
|
+
"h": 110,
|
|
324
|
+
"inputs": [
|
|
325
|
+
{
|
|
326
|
+
"id": "fd23367f-e3df-49a3-9fa9-1ef64514b1d8",
|
|
327
|
+
"name": "exec",
|
|
328
|
+
"datatype": "any",
|
|
329
|
+
"portType": "exec",
|
|
330
|
+
"dir": "in"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"id": "29126cf3-5c81-47db-8cd2-d61797bd02df",
|
|
334
|
+
"name": "value",
|
|
335
|
+
"datatype": "any",
|
|
336
|
+
"portType": "data",
|
|
337
|
+
"dir": "in"
|
|
338
|
+
}
|
|
339
|
+
],
|
|
340
|
+
"outputs": [
|
|
341
|
+
{
|
|
342
|
+
"id": "cb087265-943a-4579-8363-f9ee1f63d00b",
|
|
343
|
+
"name": "exec",
|
|
344
|
+
"datatype": "any",
|
|
345
|
+
"portType": "exec",
|
|
346
|
+
"dir": "out"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"id": "f9975457-ca6e-4a8e-a608-73918802697d",
|
|
350
|
+
"name": "value",
|
|
351
|
+
"datatype": "any",
|
|
352
|
+
"portType": "data",
|
|
353
|
+
"dir": "out"
|
|
354
|
+
}
|
|
355
|
+
],
|
|
356
|
+
"state": {
|
|
357
|
+
"displayValue": "---"
|
|
358
|
+
},
|
|
359
|
+
"parentId": "da9033a9-e951-4753-8681-e940f1df8c85"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"id": "26b59026-3c32-4824-bfa7-55f95f24574a",
|
|
363
|
+
"type": "util/Print",
|
|
364
|
+
"title": "Print",
|
|
365
|
+
"x": 880,
|
|
366
|
+
"y": 200,
|
|
367
|
+
"w": 140,
|
|
368
|
+
"h": 80,
|
|
369
|
+
"inputs": [
|
|
370
|
+
{
|
|
371
|
+
"id": "03a8971c-2dc0-49da-ad6b-8c4fd97e075b",
|
|
372
|
+
"name": "exec",
|
|
373
|
+
"datatype": "any",
|
|
374
|
+
"portType": "exec",
|
|
375
|
+
"dir": "in"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"id": "cbbf98a5-01e9-4818-8503-04ec71d80ac9",
|
|
379
|
+
"name": "value",
|
|
380
|
+
"datatype": "any",
|
|
381
|
+
"portType": "data",
|
|
382
|
+
"dir": "in"
|
|
383
|
+
}
|
|
384
|
+
],
|
|
385
|
+
"outputs": [],
|
|
386
|
+
"state": {
|
|
387
|
+
"lastValue": null
|
|
388
|
+
},
|
|
389
|
+
"parentId": "da9033a9-e951-4753-8681-e940f1df8c85"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"id": "6c68b34b-105d-4dc6-99ae-b9b149e1ebb4",
|
|
393
|
+
"type": "core/Group",
|
|
394
|
+
"title": "Group",
|
|
395
|
+
"x": 100,
|
|
396
|
+
"y": 120,
|
|
397
|
+
"w": 889,
|
|
398
|
+
"h": 241,
|
|
399
|
+
"inputs": [],
|
|
400
|
+
"outputs": [],
|
|
401
|
+
"state": {
|
|
402
|
+
"color": "#1a365d"
|
|
403
|
+
},
|
|
404
|
+
"parentId": null
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"id": "da9033a9-e951-4753-8681-e940f1df8c85",
|
|
408
|
+
"type": "core/Group",
|
|
409
|
+
"title": "Group2",
|
|
410
|
+
"x": 100,
|
|
411
|
+
"y": 400,
|
|
412
|
+
"w": 1089,
|
|
413
|
+
"h": 406,
|
|
414
|
+
"inputs": [],
|
|
415
|
+
"outputs": [],
|
|
416
|
+
"state": {
|
|
417
|
+
"color": "#742a2a"
|
|
418
|
+
},
|
|
419
|
+
"parentId": null
|
|
420
|
+
}
|
|
421
|
+
],
|
|
422
|
+
"edges": [
|
|
423
|
+
{
|
|
424
|
+
"id": "aec73b96-0941-4131-a5e1-2131873f01a6",
|
|
425
|
+
"fromNode": "058c160e-033a-4fa9-9394-1fc0ce2386e9",
|
|
426
|
+
"fromPort": "26e98bab-14c9-4e9a-929b-1a1486f69d10",
|
|
427
|
+
"toNode": "d5277e55-2029-495f-bb90-83307af262d9",
|
|
428
|
+
"toPort": "c5a56c00-dd02-49c1-9566-9bbcbb155dc6"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"id": "b48c441b-f266-4b42-88e9-1ae6f6f5e01c",
|
|
432
|
+
"fromNode": "146860f7-c9d9-4e61-93e3-010de33ed79a",
|
|
433
|
+
"fromPort": "7da262fb-a760-4e45-bcbf-6c1fd26c8ada",
|
|
434
|
+
"toNode": "d5277e55-2029-495f-bb90-83307af262d9",
|
|
435
|
+
"toPort": "639edb1e-e364-4edb-82af-efdc1cda38b9"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"id": "43627194-1d18-4438-869a-ca3460b07436",
|
|
439
|
+
"fromNode": "d5277e55-2029-495f-bb90-83307af262d9",
|
|
440
|
+
"fromPort": "d9a3b57a-64ba-4bf0-b8a4-4471cfd9b3ca",
|
|
441
|
+
"toNode": "ef8d9a1c-cedc-4f21-aad4-5b1f85328d13",
|
|
442
|
+
"toPort": "c8c0b5b0-ec8b-4968-904e-13a1c68818dc"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"id": "9148d4dc-3508-4262-92ea-9ca1b63b295a",
|
|
446
|
+
"fromNode": "146860f7-c9d9-4e61-93e3-010de33ed79a",
|
|
447
|
+
"fromPort": "7da262fb-a760-4e45-bcbf-6c1fd26c8ada",
|
|
448
|
+
"toNode": "ef8d9a1c-cedc-4f21-aad4-5b1f85328d13",
|
|
449
|
+
"toPort": "c7e96791-88f1-4b58-9b42-4c486e0b7a68"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"id": "3133e29f-04cf-4cf8-ba2a-6bb778817fc5",
|
|
453
|
+
"fromNode": "120a4252-cd66-474e-bb2c-58207f1c4279",
|
|
454
|
+
"fromPort": "3025f537-a7b0-43c8-8665-e28ba39bdd52",
|
|
455
|
+
"toNode": "5c8b05bc-0deb-47a2-8ede-23e8ed43154e",
|
|
456
|
+
"toPort": "8b8fea61-595f-4bfc-a59c-0f0ae2ab6a2b"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"id": "ac5d8293-cb0f-46e1-bdc7-b5453810686c",
|
|
460
|
+
"fromNode": "778b7537-4a19-4a48-89ae-0b2907d5e951",
|
|
461
|
+
"fromPort": "6e6026f9-46e0-4e66-9445-e8cc15c53536",
|
|
462
|
+
"toNode": "5c8b05bc-0deb-47a2-8ede-23e8ed43154e",
|
|
463
|
+
"toPort": "ad2ebc1d-e21a-45fa-818a-d350408035e6"
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"id": "ae8f8b91-f210-4b63-b24e-0c7c65678612",
|
|
467
|
+
"fromNode": "5c8b05bc-0deb-47a2-8ede-23e8ed43154e",
|
|
468
|
+
"fromPort": "84a24488-08e8-4d34-9c15-2ed7cd80b3a6",
|
|
469
|
+
"toNode": "20cd484c-fc96-42ec-af3a-d70f5e33b4e3",
|
|
470
|
+
"toPort": "7ac2f56d-66f1-403e-bfa6-dd699fff45f3"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"id": "b064fc6d-6417-4c0d-a039-7f00bb893333",
|
|
474
|
+
"fromNode": "5c8b05bc-0deb-47a2-8ede-23e8ed43154e",
|
|
475
|
+
"fromPort": "8873880c-bd77-4bb3-994c-e180ae60fc4c",
|
|
476
|
+
"toNode": "20cd484c-fc96-42ec-af3a-d70f5e33b4e3",
|
|
477
|
+
"toPort": "60f04b28-49bb-4129-8204-e06ff3475519"
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"id": "81ede7a7-e163-4f82-b2a2-902f24ab1872",
|
|
481
|
+
"fromNode": "0d2edc81-7e94-43eb-ad32-edafb603aa45",
|
|
482
|
+
"fromPort": "e73885b4-2b1d-4cb0-add6-9952864e6484",
|
|
483
|
+
"toNode": "d5277e55-2029-495f-bb90-83307af262d9",
|
|
484
|
+
"toPort": "e4ea4c5e-dad2-4852-8706-c309f27c3dbc"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"id": "67fffffa-4f0b-4d21-acc2-ecb8a2b82171",
|
|
488
|
+
"fromNode": "d5277e55-2029-495f-bb90-83307af262d9",
|
|
489
|
+
"fromPort": "04b42ba1-46e6-41f1-8ab7-ae702496b5bc",
|
|
490
|
+
"toNode": "ef8d9a1c-cedc-4f21-aad4-5b1f85328d13",
|
|
491
|
+
"toPort": "059e7161-94e1-41c8-a5c7-100cdad14600"
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"id": "ef20b0c4-11dc-4c18-9db5-4b738b2774dc",
|
|
495
|
+
"fromNode": "ef8d9a1c-cedc-4f21-aad4-5b1f85328d13",
|
|
496
|
+
"fromPort": "70ed324b-408a-4aa8-a165-e9842e1f0ad5",
|
|
497
|
+
"toNode": "6330f382-b535-4c0a-9f30-bc301ebf33e7",
|
|
498
|
+
"toPort": "fd23367f-e3df-49a3-9fa9-1ef64514b1d8"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"id": "9370a65f-4653-4a64-ad44-335da12dafcb",
|
|
502
|
+
"fromNode": "ef8d9a1c-cedc-4f21-aad4-5b1f85328d13",
|
|
503
|
+
"fromPort": "66ec8ce7-9925-46fb-af9f-53598591633b",
|
|
504
|
+
"toNode": "6330f382-b535-4c0a-9f30-bc301ebf33e7",
|
|
505
|
+
"toPort": "29126cf3-5c81-47db-8cd2-d61797bd02df"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"id": "816c34f4-f256-49ae-8c16-a15cfea02981",
|
|
509
|
+
"fromNode": "6330f382-b535-4c0a-9f30-bc301ebf33e7",
|
|
510
|
+
"fromPort": "cb087265-943a-4579-8363-f9ee1f63d00b",
|
|
511
|
+
"toNode": "26b59026-3c32-4824-bfa7-55f95f24574a",
|
|
512
|
+
"toPort": "03a8971c-2dc0-49da-ad6b-8c4fd97e075b"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"id": "8056d513-9262-4140-85f4-60549b9e33fe",
|
|
516
|
+
"fromNode": "6330f382-b535-4c0a-9f30-bc301ebf33e7",
|
|
517
|
+
"fromPort": "f9975457-ca6e-4a8e-a608-73918802697d",
|
|
518
|
+
"toNode": "26b59026-3c32-4824-bfa7-55f95f24574a",
|
|
519
|
+
"toPort": "cbbf98a5-01e9-4818-8503-04ec71d80ac9"
|
|
520
|
+
}
|
|
521
|
+
]
|
|
522
|
+
}
|