retold-data-service 2.1.1 → 2.1.5

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.
Files changed (89) hide show
  1. package/BUILDING-AND-PUBLISHING.md +2 -2
  2. package/Dockerfile +1 -1
  3. package/README.md +12 -27
  4. package/build-all.js +66 -0
  5. package/diagrams/architecture.excalidraw +2966 -0
  6. package/diagrams/architecture.mmd +17 -0
  7. package/diagrams/architecture.svg +2 -0
  8. package/docs/README.md +12 -12
  9. package/docs/_brand.json +18 -0
  10. package/docs/_cover.md +1 -1
  11. package/docs/_topbar.md +1 -1
  12. package/docs/_version.json +3 -3
  13. package/docs/api/reference.md +8 -8
  14. package/docs/architecture.md +6 -84
  15. package/docs/diagrams/component-diagram.excalidraw +2807 -0
  16. package/docs/diagrams/component-diagram.mmd +14 -0
  17. package/docs/diagrams/component-diagram.svg +2 -0
  18. package/docs/diagrams/component-stack.excalidraw +1169 -0
  19. package/docs/diagrams/component-stack.mmd +6 -0
  20. package/docs/diagrams/component-stack.svg +2 -0
  21. package/docs/diagrams/hook-execution-order.excalidraw +3230 -0
  22. package/docs/diagrams/hook-execution-order.mmd +19 -0
  23. package/docs/diagrams/hook-execution-order.svg +2 -0
  24. package/docs/diagrams/initialization-flow.excalidraw +1800 -0
  25. package/docs/diagrams/initialization-flow.mmd +22 -0
  26. package/docs/diagrams/initialization-flow.svg +2 -0
  27. package/docs/index.html +6 -7
  28. package/docs/lifecycle-hooks.md +2 -21
  29. package/docs/retold-catalog.json +141 -141
  30. package/docs/retold-keyword-index.json +6818 -1608
  31. package/package.json +130 -96
  32. package/source/services/RetoldDataService-Brand.js +13 -0
  33. package/source/services/comprehension-loader/pict-app/Pict-Application-ComprehensionLoader.js +65 -15
  34. package/source/services/comprehension-loader/pict-app/providers/Pict-Provider-ComprehensionLoader.js +2 -2
  35. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Layout.js +68 -114
  36. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Load.js +29 -29
  37. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Schema.js +3 -3
  38. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Session.js +2 -2
  39. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-SettingsPanel.js +62 -0
  40. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Shell.js +142 -0
  41. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Source.js +7 -7
  42. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-StatusBar.js +125 -0
  43. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-StatusDetail.js +89 -0
  44. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-TopBar-Nav.js +42 -0
  45. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-TopBar-User.js +48 -0
  46. package/source/services/comprehension-loader/web/comprehension-loader.js +5475 -6243
  47. package/source/services/comprehension-loader/web/comprehension-loader.js.map +1 -1
  48. package/source/services/comprehension-loader/web/comprehension-loader.min.js +75 -1
  49. package/source/services/comprehension-loader/web/comprehension-loader.min.js.map +1 -1
  50. package/source/services/comprehension-loader/web/favicons/favicon-dark.svg +13 -0
  51. package/source/services/comprehension-loader/web/favicons/favicon-light.svg +13 -0
  52. package/source/services/comprehension-loader/web/favicons/favicon.svg +13 -0
  53. package/source/services/comprehension-loader/web/index.html +3 -0
  54. package/source/services/comprehension-loader/web/pict.min.js +12 -0
  55. package/source/services/data-cloner/DataCloner-Command-Headless.js +2 -1
  56. package/source/services/data-cloner/DataCloner-Command-Sync.js +110 -75
  57. package/source/services/data-cloner/pict-app/Pict-Application-DataCloner.js +70 -47
  58. package/source/services/data-cloner/pict-app/providers/Pict-Provider-DataCloner.js +3 -3
  59. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Connection.js +1 -1
  60. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Deploy.js +5 -5
  61. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Export.js +11 -11
  62. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Layout.js +89 -135
  63. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Schema.js +3 -3
  64. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Session.js +2 -2
  65. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-SettingsPanel.js +61 -0
  66. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Shell.js +136 -0
  67. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-StatusBar.js +117 -0
  68. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-StatusDetail.js +81 -0
  69. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Sync.js +38 -38
  70. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-TopBar-Nav.js +42 -0
  71. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-TopBar-User.js +48 -0
  72. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-ViewData.js +5 -5
  73. package/source/services/data-cloner/web/data-cloner.js +5855 -8067
  74. package/source/services/data-cloner/web/data-cloner.js.map +1 -1
  75. package/source/services/data-cloner/web/data-cloner.min.js +75 -1
  76. package/source/services/data-cloner/web/data-cloner.min.js.map +1 -1
  77. package/source/services/data-cloner/web/favicons/favicon-dark.svg +13 -0
  78. package/source/services/data-cloner/web/favicons/favicon-light.svg +13 -0
  79. package/source/services/data-cloner/web/favicons/favicon.svg +13 -0
  80. package/source/services/data-cloner/web/favicons/favicons/favicon-dark.svg +13 -0
  81. package/source/services/data-cloner/web/favicons/favicons/favicon-light.svg +13 -0
  82. package/source/services/data-cloner/web/favicons/favicons/favicon.svg +13 -0
  83. package/source/services/data-cloner/web/index.html +3 -0
  84. package/source/services/data-cloner/web/pict.min.js +12 -0
  85. package/test/Bundles_smoke_tests.js +43 -0
  86. package/test/ComprehensionLoader_smoke_tests.js +95 -0
  87. package/test/DataCloner-RuntimeOverrides_tests.js +344 -0
  88. package/test/DataCloner_smoke_tests.js +87 -0
  89. package/docs/css/docuserve.css +0 -327
@@ -0,0 +1,1800 @@
1
+ {
2
+ "type": "excalidraw",
3
+ "version": 2,
4
+ "source": "pict-renderer-graph/seqgraph",
5
+ "elements": [
6
+ {
7
+ "id": "seq-life-App",
8
+ "type": "line",
9
+ "x": 196,
10
+ "y": 126,
11
+ "width": 0,
12
+ "height": 958,
13
+ "angle": 0,
14
+ "strokeColor": "#8A7F72",
15
+ "backgroundColor": "transparent",
16
+ "fillStyle": "solid",
17
+ "strokeWidth": 1.5,
18
+ "strokeStyle": "dashed",
19
+ "roughness": 1,
20
+ "opacity": 100,
21
+ "groupIds": [],
22
+ "frameId": null,
23
+ "roundness": null,
24
+ "seed": 100,
25
+ "version": 1,
26
+ "versionNonce": 1,
27
+ "isDeleted": false,
28
+ "boundElements": null,
29
+ "updated": 1,
30
+ "link": null,
31
+ "locked": false,
32
+ "points": [
33
+ [
34
+ 0,
35
+ 0
36
+ ],
37
+ [
38
+ 0,
39
+ 958
40
+ ]
41
+ ],
42
+ "lastCommittedPoint": null,
43
+ "startBinding": null,
44
+ "endBinding": null,
45
+ "startArrowhead": null,
46
+ "endArrowhead": null,
47
+ "elbowed": false,
48
+ "index": null
49
+ },
50
+ {
51
+ "id": "seq-life-RDS",
52
+ "type": "line",
53
+ "x": 508,
54
+ "y": 126,
55
+ "width": 0,
56
+ "height": 958,
57
+ "angle": 0,
58
+ "strokeColor": "#8A7F72",
59
+ "backgroundColor": "transparent",
60
+ "fillStyle": "solid",
61
+ "strokeWidth": 1.5,
62
+ "strokeStyle": "dashed",
63
+ "roughness": 1,
64
+ "opacity": 100,
65
+ "groupIds": [],
66
+ "frameId": null,
67
+ "roundness": null,
68
+ "seed": 372,
69
+ "version": 1,
70
+ "versionNonce": 1,
71
+ "isDeleted": false,
72
+ "boundElements": null,
73
+ "updated": 1,
74
+ "link": null,
75
+ "locked": false,
76
+ "points": [
77
+ [
78
+ 0,
79
+ 0
80
+ ],
81
+ [
82
+ 0,
83
+ 958
84
+ ]
85
+ ],
86
+ "lastCommittedPoint": null,
87
+ "startBinding": null,
88
+ "endBinding": null,
89
+ "startArrowhead": null,
90
+ "endArrowhead": null,
91
+ "elbowed": false,
92
+ "index": null
93
+ },
94
+ {
95
+ "id": "seq-life-O",
96
+ "type": "line",
97
+ "x": 820,
98
+ "y": 126,
99
+ "width": 0,
100
+ "height": 958,
101
+ "angle": 0,
102
+ "strokeColor": "#8A7F72",
103
+ "backgroundColor": "transparent",
104
+ "fillStyle": "solid",
105
+ "strokeWidth": 1.5,
106
+ "strokeStyle": "dashed",
107
+ "roughness": 1,
108
+ "opacity": 100,
109
+ "groupIds": [],
110
+ "frameId": null,
111
+ "roundness": null,
112
+ "seed": 720,
113
+ "version": 1,
114
+ "versionNonce": 1,
115
+ "isDeleted": false,
116
+ "boundElements": null,
117
+ "updated": 1,
118
+ "link": null,
119
+ "locked": false,
120
+ "points": [
121
+ [
122
+ 0,
123
+ 0
124
+ ],
125
+ [
126
+ 0,
127
+ 958
128
+ ]
129
+ ],
130
+ "lastCommittedPoint": null,
131
+ "startBinding": null,
132
+ "endBinding": null,
133
+ "startArrowhead": null,
134
+ "endArrowhead": null,
135
+ "elbowed": false,
136
+ "index": null
137
+ },
138
+ {
139
+ "id": "seq-life-PE",
140
+ "type": "line",
141
+ "x": 1132,
142
+ "y": 126,
143
+ "width": 0,
144
+ "height": 958,
145
+ "angle": 0,
146
+ "strokeColor": "#8A7F72",
147
+ "backgroundColor": "transparent",
148
+ "fillStyle": "solid",
149
+ "strokeWidth": 1.5,
150
+ "strokeStyle": "dashed",
151
+ "roughness": 1,
152
+ "opacity": 100,
153
+ "groupIds": [],
154
+ "frameId": null,
155
+ "roundness": null,
156
+ "seed": 888,
157
+ "version": 1,
158
+ "versionNonce": 1,
159
+ "isDeleted": false,
160
+ "boundElements": null,
161
+ "updated": 1,
162
+ "link": null,
163
+ "locked": false,
164
+ "points": [
165
+ [
166
+ 0,
167
+ 0
168
+ ],
169
+ [
170
+ 0,
171
+ 958
172
+ ]
173
+ ],
174
+ "lastCommittedPoint": null,
175
+ "startBinding": null,
176
+ "endBinding": null,
177
+ "startArrowhead": null,
178
+ "endArrowhead": null,
179
+ "elbowed": false,
180
+ "index": null
181
+ },
182
+ {
183
+ "id": "seq-life-M",
184
+ "type": "line",
185
+ "x": 1444,
186
+ "y": 126,
187
+ "width": 0,
188
+ "height": 958,
189
+ "angle": 0,
190
+ "strokeColor": "#8A7F72",
191
+ "backgroundColor": "transparent",
192
+ "fillStyle": "solid",
193
+ "strokeWidth": 1.5,
194
+ "strokeStyle": "dashed",
195
+ "roughness": 1,
196
+ "opacity": 100,
197
+ "groupIds": [],
198
+ "frameId": null,
199
+ "roundness": null,
200
+ "seed": 140,
201
+ "version": 1,
202
+ "versionNonce": 1,
203
+ "isDeleted": false,
204
+ "boundElements": null,
205
+ "updated": 1,
206
+ "link": null,
207
+ "locked": false,
208
+ "points": [
209
+ [
210
+ 0,
211
+ 0
212
+ ],
213
+ [
214
+ 0,
215
+ 958
216
+ ]
217
+ ],
218
+ "lastCommittedPoint": null,
219
+ "startBinding": null,
220
+ "endBinding": null,
221
+ "startArrowhead": null,
222
+ "endArrowhead": null,
223
+ "elbowed": false,
224
+ "index": null
225
+ },
226
+ {
227
+ "id": "seq-life-ME",
228
+ "type": "line",
229
+ "x": 1756,
230
+ "y": 126,
231
+ "width": 0,
232
+ "height": 958,
233
+ "angle": 0,
234
+ "strokeColor": "#8A7F72",
235
+ "backgroundColor": "transparent",
236
+ "fillStyle": "solid",
237
+ "strokeWidth": 1.5,
238
+ "strokeStyle": "dashed",
239
+ "roughness": 1,
240
+ "opacity": 100,
241
+ "groupIds": [],
242
+ "frameId": null,
243
+ "roundness": null,
244
+ "seed": 232,
245
+ "version": 1,
246
+ "versionNonce": 1,
247
+ "isDeleted": false,
248
+ "boundElements": null,
249
+ "updated": 1,
250
+ "link": null,
251
+ "locked": false,
252
+ "points": [
253
+ [
254
+ 0,
255
+ 0
256
+ ],
257
+ [
258
+ 0,
259
+ 958
260
+ ]
261
+ ],
262
+ "lastCommittedPoint": null,
263
+ "startBinding": null,
264
+ "endBinding": null,
265
+ "startArrowhead": null,
266
+ "endArrowhead": null,
267
+ "elbowed": false,
268
+ "index": null
269
+ },
270
+ {
271
+ "id": "seq-block-0",
272
+ "type": "rectangle",
273
+ "x": 478,
274
+ "y": 602,
275
+ "width": 1308,
276
+ "height": 262,
277
+ "angle": 0,
278
+ "strokeColor": "#8A7F72",
279
+ "backgroundColor": "transparent",
280
+ "fillStyle": "solid",
281
+ "strokeWidth": 1,
282
+ "strokeStyle": "dashed",
283
+ "roughness": 1,
284
+ "opacity": 100,
285
+ "groupIds": [],
286
+ "frameId": null,
287
+ "roundness": {
288
+ "type": 3
289
+ },
290
+ "seed": 916,
291
+ "version": 1,
292
+ "versionNonce": 916,
293
+ "isDeleted": false,
294
+ "boundElements": [],
295
+ "updated": 1,
296
+ "link": null,
297
+ "locked": false,
298
+ "index": null
299
+ },
300
+ {
301
+ "id": "seq-blocklabel-0",
302
+ "type": "text",
303
+ "x": 486,
304
+ "y": 606,
305
+ "width": 1292,
306
+ "height": 20,
307
+ "angle": 0,
308
+ "strokeColor": "#8A7F72",
309
+ "backgroundColor": "transparent",
310
+ "fillStyle": "solid",
311
+ "strokeWidth": 1,
312
+ "strokeStyle": "solid",
313
+ "roughness": 1,
314
+ "opacity": 100,
315
+ "groupIds": [],
316
+ "frameId": null,
317
+ "roundness": null,
318
+ "seed": 521,
319
+ "version": 1,
320
+ "versionNonce": 521,
321
+ "isDeleted": false,
322
+ "boundElements": null,
323
+ "updated": 1,
324
+ "link": null,
325
+ "locked": false,
326
+ "text": "loop [Each Entity]",
327
+ "fontSize": 16,
328
+ "fontFamily": 5,
329
+ "textAlign": "left",
330
+ "verticalAlign": "top",
331
+ "containerId": null,
332
+ "originalText": "loop [Each Entity]",
333
+ "autoResize": true,
334
+ "lineHeight": 1.25,
335
+ "index": null
336
+ },
337
+ {
338
+ "id": "seq-actor-App",
339
+ "type": "rectangle",
340
+ "x": 116,
341
+ "y": 70,
342
+ "width": 160,
343
+ "height": 56,
344
+ "angle": 0,
345
+ "strokeColor": "#1B1F23",
346
+ "backgroundColor": "transparent",
347
+ "fillStyle": "hachure",
348
+ "strokeWidth": 2,
349
+ "strokeStyle": "solid",
350
+ "roughness": 1,
351
+ "opacity": 100,
352
+ "groupIds": [],
353
+ "frameId": null,
354
+ "roundness": {
355
+ "type": 3
356
+ },
357
+ "seed": 225,
358
+ "version": 1,
359
+ "versionNonce": 225,
360
+ "isDeleted": false,
361
+ "boundElements": [
362
+ {
363
+ "id": "seq-actorlabel-App",
364
+ "type": "text"
365
+ }
366
+ ],
367
+ "updated": 1,
368
+ "link": null,
369
+ "locked": false,
370
+ "index": null
371
+ },
372
+ {
373
+ "id": "seq-actorlabel-App",
374
+ "type": "text",
375
+ "x": 124,
376
+ "y": 85.5,
377
+ "width": 144,
378
+ "height": 25,
379
+ "angle": 0,
380
+ "strokeColor": "#1B1F23",
381
+ "backgroundColor": "transparent",
382
+ "fillStyle": "solid",
383
+ "strokeWidth": 1,
384
+ "strokeStyle": "solid",
385
+ "roughness": 1,
386
+ "opacity": 100,
387
+ "groupIds": [],
388
+ "frameId": null,
389
+ "roundness": null,
390
+ "seed": 226,
391
+ "version": 1,
392
+ "versionNonce": 226,
393
+ "isDeleted": false,
394
+ "boundElements": null,
395
+ "updated": 1,
396
+ "link": null,
397
+ "locked": false,
398
+ "text": "Application",
399
+ "fontSize": 20,
400
+ "fontFamily": 5,
401
+ "textAlign": "center",
402
+ "verticalAlign": "middle",
403
+ "containerId": "seq-actor-App",
404
+ "originalText": "Application",
405
+ "autoResize": false,
406
+ "lineHeight": 1.25,
407
+ "index": null
408
+ },
409
+ {
410
+ "id": "seq-actor-RDS",
411
+ "type": "rectangle",
412
+ "x": 392,
413
+ "y": 70,
414
+ "width": 232,
415
+ "height": 56,
416
+ "angle": 0,
417
+ "strokeColor": "#1B1F23",
418
+ "backgroundColor": "transparent",
419
+ "fillStyle": "hachure",
420
+ "strokeWidth": 2,
421
+ "strokeStyle": "solid",
422
+ "roughness": 1,
423
+ "opacity": 100,
424
+ "groupIds": [],
425
+ "frameId": null,
426
+ "roundness": {
427
+ "type": 3
428
+ },
429
+ "seed": 720,
430
+ "version": 1,
431
+ "versionNonce": 720,
432
+ "isDeleted": false,
433
+ "boundElements": [
434
+ {
435
+ "id": "seq-actorlabel-RDS",
436
+ "type": "text"
437
+ }
438
+ ],
439
+ "updated": 1,
440
+ "link": null,
441
+ "locked": false,
442
+ "index": null
443
+ },
444
+ {
445
+ "id": "seq-actorlabel-RDS",
446
+ "type": "text",
447
+ "x": 400,
448
+ "y": 85.5,
449
+ "width": 216,
450
+ "height": 25,
451
+ "angle": 0,
452
+ "strokeColor": "#1B1F23",
453
+ "backgroundColor": "transparent",
454
+ "fillStyle": "solid",
455
+ "strokeWidth": 1,
456
+ "strokeStyle": "solid",
457
+ "roughness": 1,
458
+ "opacity": 100,
459
+ "groupIds": [],
460
+ "frameId": null,
461
+ "roundness": null,
462
+ "seed": 721,
463
+ "version": 1,
464
+ "versionNonce": 721,
465
+ "isDeleted": false,
466
+ "boundElements": null,
467
+ "updated": 1,
468
+ "link": null,
469
+ "locked": false,
470
+ "text": "RetoldDataService",
471
+ "fontSize": 20,
472
+ "fontFamily": 5,
473
+ "textAlign": "center",
474
+ "verticalAlign": "middle",
475
+ "containerId": "seq-actor-RDS",
476
+ "originalText": "RetoldDataService",
477
+ "autoResize": false,
478
+ "lineHeight": 1.25,
479
+ "index": null
480
+ },
481
+ {
482
+ "id": "seq-actor-O",
483
+ "type": "rectangle",
484
+ "x": 765,
485
+ "y": 70,
486
+ "width": 110,
487
+ "height": 56,
488
+ "angle": 0,
489
+ "strokeColor": "#1B1F23",
490
+ "backgroundColor": "transparent",
491
+ "fillStyle": "hachure",
492
+ "strokeWidth": 2,
493
+ "strokeStyle": "solid",
494
+ "roughness": 1,
495
+ "opacity": 100,
496
+ "groupIds": [],
497
+ "frameId": null,
498
+ "roundness": {
499
+ "type": 3
500
+ },
501
+ "seed": 952,
502
+ "version": 1,
503
+ "versionNonce": 952,
504
+ "isDeleted": false,
505
+ "boundElements": [
506
+ {
507
+ "id": "seq-actorlabel-O",
508
+ "type": "text"
509
+ }
510
+ ],
511
+ "updated": 1,
512
+ "link": null,
513
+ "locked": false,
514
+ "index": null
515
+ },
516
+ {
517
+ "id": "seq-actorlabel-O",
518
+ "type": "text",
519
+ "x": 773,
520
+ "y": 85.5,
521
+ "width": 94,
522
+ "height": 25,
523
+ "angle": 0,
524
+ "strokeColor": "#1B1F23",
525
+ "backgroundColor": "transparent",
526
+ "fillStyle": "solid",
527
+ "strokeWidth": 1,
528
+ "strokeStyle": "solid",
529
+ "roughness": 1,
530
+ "opacity": 100,
531
+ "groupIds": [],
532
+ "frameId": null,
533
+ "roundness": null,
534
+ "seed": 953,
535
+ "version": 1,
536
+ "versionNonce": 953,
537
+ "isDeleted": false,
538
+ "boundElements": null,
539
+ "updated": 1,
540
+ "link": null,
541
+ "locked": false,
542
+ "text": "Orator",
543
+ "fontSize": 20,
544
+ "fontFamily": 5,
545
+ "textAlign": "center",
546
+ "verticalAlign": "middle",
547
+ "containerId": "seq-actor-O",
548
+ "originalText": "Orator",
549
+ "autoResize": false,
550
+ "lineHeight": 1.25,
551
+ "index": null
552
+ },
553
+ {
554
+ "id": "seq-actor-PE",
555
+ "type": "rectangle",
556
+ "x": 1016,
557
+ "y": 70,
558
+ "width": 232,
559
+ "height": 56,
560
+ "angle": 0,
561
+ "strokeColor": "#1B1F23",
562
+ "backgroundColor": "transparent",
563
+ "fillStyle": "hachure",
564
+ "strokeWidth": 2,
565
+ "strokeStyle": "solid",
566
+ "roughness": 1,
567
+ "opacity": 100,
568
+ "groupIds": [],
569
+ "frameId": null,
570
+ "roundness": {
571
+ "type": 3
572
+ },
573
+ "seed": 372,
574
+ "version": 1,
575
+ "versionNonce": 372,
576
+ "isDeleted": false,
577
+ "boundElements": [
578
+ {
579
+ "id": "seq-actorlabel-PE",
580
+ "type": "text"
581
+ }
582
+ ],
583
+ "updated": 1,
584
+ "link": null,
585
+ "locked": false,
586
+ "index": null
587
+ },
588
+ {
589
+ "id": "seq-actorlabel-PE",
590
+ "type": "text",
591
+ "x": 1024,
592
+ "y": 85.5,
593
+ "width": 216,
594
+ "height": 25,
595
+ "angle": 0,
596
+ "strokeColor": "#1B1F23",
597
+ "backgroundColor": "transparent",
598
+ "fillStyle": "solid",
599
+ "strokeWidth": 1,
600
+ "strokeStyle": "solid",
601
+ "roughness": 1,
602
+ "opacity": 100,
603
+ "groupIds": [],
604
+ "frameId": null,
605
+ "roundness": null,
606
+ "seed": 373,
607
+ "version": 1,
608
+ "versionNonce": 373,
609
+ "isDeleted": false,
610
+ "boundElements": null,
611
+ "updated": 1,
612
+ "link": null,
613
+ "locked": false,
614
+ "text": "PersistenceEngine",
615
+ "fontSize": 20,
616
+ "fontFamily": 5,
617
+ "textAlign": "center",
618
+ "verticalAlign": "middle",
619
+ "containerId": "seq-actor-PE",
620
+ "originalText": "PersistenceEngine",
621
+ "autoResize": false,
622
+ "lineHeight": 1.25,
623
+ "index": null
624
+ },
625
+ {
626
+ "id": "seq-actor-M",
627
+ "type": "rectangle",
628
+ "x": 1389,
629
+ "y": 70,
630
+ "width": 110,
631
+ "height": 56,
632
+ "angle": 0,
633
+ "strokeColor": "#1B1F23",
634
+ "backgroundColor": "transparent",
635
+ "fillStyle": "hachure",
636
+ "strokeWidth": 2,
637
+ "strokeStyle": "solid",
638
+ "roughness": 1,
639
+ "opacity": 100,
640
+ "groupIds": [],
641
+ "frameId": null,
642
+ "roundness": {
643
+ "type": 3
644
+ },
645
+ "seed": 697,
646
+ "version": 1,
647
+ "versionNonce": 697,
648
+ "isDeleted": false,
649
+ "boundElements": [
650
+ {
651
+ "id": "seq-actorlabel-M",
652
+ "type": "text"
653
+ }
654
+ ],
655
+ "updated": 1,
656
+ "link": null,
657
+ "locked": false,
658
+ "index": null
659
+ },
660
+ {
661
+ "id": "seq-actorlabel-M",
662
+ "type": "text",
663
+ "x": 1397,
664
+ "y": 85.5,
665
+ "width": 94,
666
+ "height": 25,
667
+ "angle": 0,
668
+ "strokeColor": "#1B1F23",
669
+ "backgroundColor": "transparent",
670
+ "fillStyle": "solid",
671
+ "strokeWidth": 1,
672
+ "strokeStyle": "solid",
673
+ "roughness": 1,
674
+ "opacity": 100,
675
+ "groupIds": [],
676
+ "frameId": null,
677
+ "roundness": null,
678
+ "seed": 698,
679
+ "version": 1,
680
+ "versionNonce": 698,
681
+ "isDeleted": false,
682
+ "boundElements": null,
683
+ "updated": 1,
684
+ "link": null,
685
+ "locked": false,
686
+ "text": "Meadow",
687
+ "fontSize": 20,
688
+ "fontFamily": 5,
689
+ "textAlign": "center",
690
+ "verticalAlign": "middle",
691
+ "containerId": "seq-actor-M",
692
+ "originalText": "Meadow",
693
+ "autoResize": false,
694
+ "lineHeight": 1.25,
695
+ "index": null
696
+ },
697
+ {
698
+ "id": "seq-actor-ME",
699
+ "type": "rectangle",
700
+ "x": 1652,
701
+ "y": 70,
702
+ "width": 208,
703
+ "height": 56,
704
+ "angle": 0,
705
+ "strokeColor": "#1B1F23",
706
+ "backgroundColor": "transparent",
707
+ "fillStyle": "hachure",
708
+ "strokeWidth": 2,
709
+ "strokeStyle": "solid",
710
+ "roughness": 1,
711
+ "opacity": 100,
712
+ "groupIds": [],
713
+ "frameId": null,
714
+ "roundness": {
715
+ "type": 3
716
+ },
717
+ "seed": 980,
718
+ "version": 1,
719
+ "versionNonce": 980,
720
+ "isDeleted": false,
721
+ "boundElements": [
722
+ {
723
+ "id": "seq-actorlabel-ME",
724
+ "type": "text"
725
+ }
726
+ ],
727
+ "updated": 1,
728
+ "link": null,
729
+ "locked": false,
730
+ "index": null
731
+ },
732
+ {
733
+ "id": "seq-actorlabel-ME",
734
+ "type": "text",
735
+ "x": 1660,
736
+ "y": 85.5,
737
+ "width": 192,
738
+ "height": 25,
739
+ "angle": 0,
740
+ "strokeColor": "#1B1F23",
741
+ "backgroundColor": "transparent",
742
+ "fillStyle": "solid",
743
+ "strokeWidth": 1,
744
+ "strokeStyle": "solid",
745
+ "roughness": 1,
746
+ "opacity": 100,
747
+ "groupIds": [],
748
+ "frameId": null,
749
+ "roundness": null,
750
+ "seed": 981,
751
+ "version": 1,
752
+ "versionNonce": 981,
753
+ "isDeleted": false,
754
+ "boundElements": null,
755
+ "updated": 1,
756
+ "link": null,
757
+ "locked": false,
758
+ "text": "MeadowEndpoints",
759
+ "fontSize": 20,
760
+ "fontFamily": 5,
761
+ "textAlign": "center",
762
+ "verticalAlign": "middle",
763
+ "containerId": "seq-actor-ME",
764
+ "originalText": "MeadowEndpoints",
765
+ "autoResize": false,
766
+ "lineHeight": 1.25,
767
+ "index": null
768
+ },
769
+ {
770
+ "id": "seq-msg-0",
771
+ "type": "arrow",
772
+ "x": 199,
773
+ "y": 179,
774
+ "width": 306,
775
+ "height": 0,
776
+ "angle": 0,
777
+ "strokeColor": "#1B1F23",
778
+ "backgroundColor": "transparent",
779
+ "fillStyle": "solid",
780
+ "strokeWidth": 2,
781
+ "strokeStyle": "solid",
782
+ "roughness": 1,
783
+ "opacity": 100,
784
+ "groupIds": [],
785
+ "frameId": null,
786
+ "roundness": {
787
+ "type": 2
788
+ },
789
+ "seed": 412,
790
+ "version": 1,
791
+ "versionNonce": 412,
792
+ "isDeleted": false,
793
+ "boundElements": [],
794
+ "updated": 1,
795
+ "link": null,
796
+ "locked": false,
797
+ "points": [
798
+ [
799
+ 0,
800
+ 0
801
+ ],
802
+ [
803
+ 306,
804
+ 0
805
+ ]
806
+ ],
807
+ "lastCommittedPoint": null,
808
+ "startBinding": null,
809
+ "endBinding": null,
810
+ "startArrowhead": null,
811
+ "endArrowhead": "triangle",
812
+ "elbowed": false,
813
+ "index": null
814
+ },
815
+ {
816
+ "id": "seq-msglabel-0",
817
+ "type": "text",
818
+ "x": 260.8,
819
+ "y": 152,
820
+ "width": 182.4,
821
+ "height": 21,
822
+ "angle": 0,
823
+ "strokeColor": "#1B1F23",
824
+ "backgroundColor": "transparent",
825
+ "fillStyle": "solid",
826
+ "strokeWidth": 1,
827
+ "strokeStyle": "solid",
828
+ "roughness": 1,
829
+ "opacity": 100,
830
+ "groupIds": [],
831
+ "frameId": null,
832
+ "roundness": null,
833
+ "seed": 413,
834
+ "version": 1,
835
+ "versionNonce": 413,
836
+ "isDeleted": false,
837
+ "boundElements": null,
838
+ "updated": 1,
839
+ "link": null,
840
+ "locked": false,
841
+ "text": "initializeService()",
842
+ "fontSize": 16,
843
+ "fontFamily": 5,
844
+ "textAlign": "center",
845
+ "verticalAlign": "top",
846
+ "containerId": null,
847
+ "originalText": "initializeService()",
848
+ "autoResize": true,
849
+ "lineHeight": 1.25,
850
+ "index": null
851
+ },
852
+ {
853
+ "id": "seq-msg-1",
854
+ "type": "arrow",
855
+ "x": 508,
856
+ "y": 237,
857
+ "width": 46,
858
+ "height": 44,
859
+ "angle": 0,
860
+ "strokeColor": "#1B1F23",
861
+ "backgroundColor": "transparent",
862
+ "fillStyle": "solid",
863
+ "strokeWidth": 2,
864
+ "strokeStyle": "solid",
865
+ "roughness": 1,
866
+ "opacity": 100,
867
+ "groupIds": [],
868
+ "frameId": null,
869
+ "roundness": {
870
+ "type": 2
871
+ },
872
+ "seed": 812,
873
+ "version": 1,
874
+ "versionNonce": 812,
875
+ "isDeleted": false,
876
+ "boundElements": [],
877
+ "updated": 1,
878
+ "link": null,
879
+ "locked": false,
880
+ "points": [
881
+ [
882
+ 0,
883
+ 0
884
+ ],
885
+ [
886
+ 46,
887
+ 0
888
+ ],
889
+ [
890
+ 46,
891
+ 44
892
+ ],
893
+ [
894
+ 0,
895
+ 44
896
+ ]
897
+ ],
898
+ "lastCommittedPoint": null,
899
+ "startBinding": null,
900
+ "endBinding": null,
901
+ "startArrowhead": null,
902
+ "endArrowhead": "triangle",
903
+ "elbowed": false,
904
+ "index": null
905
+ },
906
+ {
907
+ "id": "seq-msglabel-1",
908
+ "type": "text",
909
+ "x": 564,
910
+ "y": 248.5,
911
+ "width": 192,
912
+ "height": 21,
913
+ "angle": 0,
914
+ "strokeColor": "#1B1F23",
915
+ "backgroundColor": "transparent",
916
+ "fillStyle": "solid",
917
+ "strokeWidth": 1,
918
+ "strokeStyle": "solid",
919
+ "roughness": 1,
920
+ "opacity": 100,
921
+ "groupIds": [],
922
+ "frameId": null,
923
+ "roundness": null,
924
+ "seed": 813,
925
+ "version": 1,
926
+ "versionNonce": 813,
927
+ "isDeleted": false,
928
+ "boundElements": null,
929
+ "updated": 1,
930
+ "link": null,
931
+ "locked": false,
932
+ "text": "onBeforeInitialize()",
933
+ "fontSize": 16,
934
+ "fontFamily": 5,
935
+ "textAlign": "left",
936
+ "verticalAlign": "top",
937
+ "containerId": null,
938
+ "originalText": "onBeforeInitialize()",
939
+ "autoResize": true,
940
+ "lineHeight": 1.25,
941
+ "index": null
942
+ },
943
+ {
944
+ "id": "seq-msg-2",
945
+ "type": "arrow",
946
+ "x": 511,
947
+ "y": 347,
948
+ "width": 306,
949
+ "height": 0,
950
+ "angle": 0,
951
+ "strokeColor": "#1B1F23",
952
+ "backgroundColor": "transparent",
953
+ "fillStyle": "solid",
954
+ "strokeWidth": 2,
955
+ "strokeStyle": "solid",
956
+ "roughness": 1,
957
+ "opacity": 100,
958
+ "groupIds": [],
959
+ "frameId": null,
960
+ "roundness": {
961
+ "type": 2
962
+ },
963
+ "seed": 424,
964
+ "version": 1,
965
+ "versionNonce": 424,
966
+ "isDeleted": false,
967
+ "boundElements": [],
968
+ "updated": 1,
969
+ "link": null,
970
+ "locked": false,
971
+ "points": [
972
+ [
973
+ 0,
974
+ 0
975
+ ],
976
+ [
977
+ 306,
978
+ 0
979
+ ]
980
+ ],
981
+ "lastCommittedPoint": null,
982
+ "startBinding": null,
983
+ "endBinding": null,
984
+ "startArrowhead": null,
985
+ "endArrowhead": "triangle",
986
+ "elbowed": false,
987
+ "index": null
988
+ },
989
+ {
990
+ "id": "seq-msglabel-2",
991
+ "type": "text",
992
+ "x": 587.2,
993
+ "y": 320,
994
+ "width": 153.6,
995
+ "height": 21,
996
+ "angle": 0,
997
+ "strokeColor": "#1B1F23",
998
+ "backgroundColor": "transparent",
999
+ "fillStyle": "solid",
1000
+ "strokeWidth": 1,
1001
+ "strokeStyle": "solid",
1002
+ "roughness": 1,
1003
+ "opacity": 100,
1004
+ "groupIds": [],
1005
+ "frameId": null,
1006
+ "roundness": null,
1007
+ "seed": 425,
1008
+ "version": 1,
1009
+ "versionNonce": 425,
1010
+ "isDeleted": false,
1011
+ "boundElements": null,
1012
+ "updated": 1,
1013
+ "link": null,
1014
+ "locked": false,
1015
+ "text": "startWebServer()",
1016
+ "fontSize": 16,
1017
+ "fontFamily": 5,
1018
+ "textAlign": "center",
1019
+ "verticalAlign": "top",
1020
+ "containerId": null,
1021
+ "originalText": "startWebServer()",
1022
+ "autoResize": true,
1023
+ "lineHeight": 1.25,
1024
+ "index": null
1025
+ },
1026
+ {
1027
+ "id": "seq-msg-3",
1028
+ "type": "arrow",
1029
+ "x": 511,
1030
+ "y": 405,
1031
+ "width": 618,
1032
+ "height": 0,
1033
+ "angle": 0,
1034
+ "strokeColor": "#1B1F23",
1035
+ "backgroundColor": "transparent",
1036
+ "fillStyle": "solid",
1037
+ "strokeWidth": 2,
1038
+ "strokeStyle": "solid",
1039
+ "roughness": 1,
1040
+ "opacity": 100,
1041
+ "groupIds": [],
1042
+ "frameId": null,
1043
+ "roundness": {
1044
+ "type": 2
1045
+ },
1046
+ "seed": 844,
1047
+ "version": 1,
1048
+ "versionNonce": 844,
1049
+ "isDeleted": false,
1050
+ "boundElements": [],
1051
+ "updated": 1,
1052
+ "link": null,
1053
+ "locked": false,
1054
+ "points": [
1055
+ [
1056
+ 0,
1057
+ 0
1058
+ ],
1059
+ [
1060
+ 618,
1061
+ 0
1062
+ ]
1063
+ ],
1064
+ "lastCommittedPoint": null,
1065
+ "startBinding": null,
1066
+ "endBinding": null,
1067
+ "startArrowhead": null,
1068
+ "endArrowhead": "triangle",
1069
+ "elbowed": false,
1070
+ "index": null
1071
+ },
1072
+ {
1073
+ "id": "seq-msglabel-3",
1074
+ "type": "text",
1075
+ "x": 680.8,
1076
+ "y": 378,
1077
+ "width": 278.4,
1078
+ "height": 21,
1079
+ "angle": 0,
1080
+ "strokeColor": "#1B1F23",
1081
+ "backgroundColor": "transparent",
1082
+ "fillStyle": "solid",
1083
+ "strokeWidth": 1,
1084
+ "strokeStyle": "solid",
1085
+ "roughness": 1,
1086
+ "opacity": 100,
1087
+ "groupIds": [],
1088
+ "frameId": null,
1089
+ "roundness": null,
1090
+ "seed": 845,
1091
+ "version": 1,
1092
+ "versionNonce": 845,
1093
+ "isDeleted": false,
1094
+ "boundElements": null,
1095
+ "updated": 1,
1096
+ "link": null,
1097
+ "locked": false,
1098
+ "text": "initializePersistenceEngine()",
1099
+ "fontSize": 16,
1100
+ "fontFamily": 5,
1101
+ "textAlign": "center",
1102
+ "verticalAlign": "top",
1103
+ "containerId": null,
1104
+ "originalText": "initializePersistenceEngine()",
1105
+ "autoResize": true,
1106
+ "lineHeight": 1.25,
1107
+ "index": null
1108
+ },
1109
+ {
1110
+ "id": "seq-msg-4",
1111
+ "type": "arrow",
1112
+ "x": 508,
1113
+ "y": 463,
1114
+ "width": 46,
1115
+ "height": 44,
1116
+ "angle": 0,
1117
+ "strokeColor": "#1B1F23",
1118
+ "backgroundColor": "transparent",
1119
+ "fillStyle": "solid",
1120
+ "strokeWidth": 2,
1121
+ "strokeStyle": "solid",
1122
+ "roughness": 1,
1123
+ "opacity": 100,
1124
+ "groupIds": [],
1125
+ "frameId": null,
1126
+ "roundness": {
1127
+ "type": 2
1128
+ },
1129
+ "seed": 733,
1130
+ "version": 1,
1131
+ "versionNonce": 733,
1132
+ "isDeleted": false,
1133
+ "boundElements": [],
1134
+ "updated": 1,
1135
+ "link": null,
1136
+ "locked": false,
1137
+ "points": [
1138
+ [
1139
+ 0,
1140
+ 0
1141
+ ],
1142
+ [
1143
+ 46,
1144
+ 0
1145
+ ],
1146
+ [
1147
+ 46,
1148
+ 44
1149
+ ],
1150
+ [
1151
+ 0,
1152
+ 44
1153
+ ]
1154
+ ],
1155
+ "lastCommittedPoint": null,
1156
+ "startBinding": null,
1157
+ "endBinding": null,
1158
+ "startArrowhead": null,
1159
+ "endArrowhead": "triangle",
1160
+ "elbowed": false,
1161
+ "index": null
1162
+ },
1163
+ {
1164
+ "id": "seq-msglabel-4",
1165
+ "type": "text",
1166
+ "x": 564,
1167
+ "y": 474.5,
1168
+ "width": 134.4,
1169
+ "height": 21,
1170
+ "angle": 0,
1171
+ "strokeColor": "#1B1F23",
1172
+ "backgroundColor": "transparent",
1173
+ "fillStyle": "solid",
1174
+ "strokeWidth": 1,
1175
+ "strokeStyle": "solid",
1176
+ "roughness": 1,
1177
+ "opacity": 100,
1178
+ "groupIds": [],
1179
+ "frameId": null,
1180
+ "roundness": null,
1181
+ "seed": 734,
1182
+ "version": 1,
1183
+ "versionNonce": 734,
1184
+ "isDeleted": false,
1185
+ "boundElements": null,
1186
+ "updated": 1,
1187
+ "link": null,
1188
+ "locked": false,
1189
+ "text": "onInitialize()",
1190
+ "fontSize": 16,
1191
+ "fontFamily": 5,
1192
+ "textAlign": "left",
1193
+ "verticalAlign": "top",
1194
+ "containerId": null,
1195
+ "originalText": "onInitialize()",
1196
+ "autoResize": true,
1197
+ "lineHeight": 1.25,
1198
+ "index": null
1199
+ },
1200
+ {
1201
+ "id": "seq-msg-5",
1202
+ "type": "arrow",
1203
+ "x": 511,
1204
+ "y": 573,
1205
+ "width": 930,
1206
+ "height": 0,
1207
+ "angle": 0,
1208
+ "strokeColor": "#1B1F23",
1209
+ "backgroundColor": "transparent",
1210
+ "fillStyle": "solid",
1211
+ "strokeWidth": 2,
1212
+ "strokeStyle": "solid",
1213
+ "roughness": 1,
1214
+ "opacity": 100,
1215
+ "groupIds": [],
1216
+ "frameId": null,
1217
+ "roundness": {
1218
+ "type": 2
1219
+ },
1220
+ "seed": 485,
1221
+ "version": 1,
1222
+ "versionNonce": 485,
1223
+ "isDeleted": false,
1224
+ "boundElements": [],
1225
+ "updated": 1,
1226
+ "link": null,
1227
+ "locked": false,
1228
+ "points": [
1229
+ [
1230
+ 0,
1231
+ 0
1232
+ ],
1233
+ [
1234
+ 930,
1235
+ 0
1236
+ ]
1237
+ ],
1238
+ "lastCommittedPoint": null,
1239
+ "startBinding": null,
1240
+ "endBinding": null,
1241
+ "startArrowhead": null,
1242
+ "endArrowhead": "triangle",
1243
+ "elbowed": false,
1244
+ "index": null
1245
+ },
1246
+ {
1247
+ "id": "seq-msglabel-5",
1248
+ "type": "text",
1249
+ "x": 880,
1250
+ "y": 546,
1251
+ "width": 192,
1252
+ "height": 21,
1253
+ "angle": 0,
1254
+ "strokeColor": "#1B1F23",
1255
+ "backgroundColor": "transparent",
1256
+ "fillStyle": "solid",
1257
+ "strokeWidth": 1,
1258
+ "strokeStyle": "solid",
1259
+ "roughness": 1,
1260
+ "opacity": 100,
1261
+ "groupIds": [],
1262
+ "frameId": null,
1263
+ "roundness": null,
1264
+ "seed": 486,
1265
+ "version": 1,
1266
+ "versionNonce": 486,
1267
+ "isDeleted": false,
1268
+ "boundElements": null,
1269
+ "updated": 1,
1270
+ "link": null,
1271
+ "locked": false,
1272
+ "text": "Load Stricture model",
1273
+ "fontSize": 16,
1274
+ "fontFamily": 5,
1275
+ "textAlign": "center",
1276
+ "verticalAlign": "top",
1277
+ "containerId": null,
1278
+ "originalText": "Load Stricture model",
1279
+ "autoResize": true,
1280
+ "lineHeight": 1.25,
1281
+ "index": null
1282
+ },
1283
+ {
1284
+ "id": "seq-msg-6",
1285
+ "type": "arrow",
1286
+ "x": 511,
1287
+ "y": 661,
1288
+ "width": 930,
1289
+ "height": 0,
1290
+ "angle": 0,
1291
+ "strokeColor": "#1B1F23",
1292
+ "backgroundColor": "transparent",
1293
+ "fillStyle": "solid",
1294
+ "strokeWidth": 2,
1295
+ "strokeStyle": "solid",
1296
+ "roughness": 1,
1297
+ "opacity": 100,
1298
+ "groupIds": [],
1299
+ "frameId": null,
1300
+ "roundness": {
1301
+ "type": 2
1302
+ },
1303
+ "seed": 921,
1304
+ "version": 1,
1305
+ "versionNonce": 921,
1306
+ "isDeleted": false,
1307
+ "boundElements": [],
1308
+ "updated": 1,
1309
+ "link": null,
1310
+ "locked": false,
1311
+ "points": [
1312
+ [
1313
+ 0,
1314
+ 0
1315
+ ],
1316
+ [
1317
+ 930,
1318
+ 0
1319
+ ]
1320
+ ],
1321
+ "lastCommittedPoint": null,
1322
+ "startBinding": null,
1323
+ "endBinding": null,
1324
+ "startArrowhead": null,
1325
+ "endArrowhead": "triangle",
1326
+ "elbowed": false,
1327
+ "index": null
1328
+ },
1329
+ {
1330
+ "id": "seq-msglabel-6",
1331
+ "type": "text",
1332
+ "x": 836.8,
1333
+ "y": 634,
1334
+ "width": 278.4,
1335
+ "height": 21,
1336
+ "angle": 0,
1337
+ "strokeColor": "#1B1F23",
1338
+ "backgroundColor": "transparent",
1339
+ "fillStyle": "solid",
1340
+ "strokeWidth": 1,
1341
+ "strokeStyle": "solid",
1342
+ "roughness": 1,
1343
+ "opacity": 100,
1344
+ "groupIds": [],
1345
+ "frameId": null,
1346
+ "roundness": null,
1347
+ "seed": 922,
1348
+ "version": 1,
1349
+ "versionNonce": 922,
1350
+ "isDeleted": false,
1351
+ "boundElements": null,
1352
+ "updated": 1,
1353
+ "link": null,
1354
+ "locked": false,
1355
+ "text": "loadFromPackageObject(schema)",
1356
+ "fontSize": 16,
1357
+ "fontFamily": 5,
1358
+ "textAlign": "center",
1359
+ "verticalAlign": "top",
1360
+ "containerId": null,
1361
+ "originalText": "loadFromPackageObject(schema)",
1362
+ "autoResize": true,
1363
+ "lineHeight": 1.25,
1364
+ "index": null
1365
+ },
1366
+ {
1367
+ "id": "seq-msg-7",
1368
+ "type": "arrow",
1369
+ "x": 1441,
1370
+ "y": 719,
1371
+ "width": -930,
1372
+ "height": 0,
1373
+ "angle": 0,
1374
+ "strokeColor": "#1B1F23",
1375
+ "backgroundColor": "transparent",
1376
+ "fillStyle": "solid",
1377
+ "strokeWidth": 2,
1378
+ "strokeStyle": "dashed",
1379
+ "roughness": 1,
1380
+ "opacity": 100,
1381
+ "groupIds": [],
1382
+ "frameId": null,
1383
+ "roundness": {
1384
+ "type": 2
1385
+ },
1386
+ "seed": 316,
1387
+ "version": 1,
1388
+ "versionNonce": 316,
1389
+ "isDeleted": false,
1390
+ "boundElements": [],
1391
+ "updated": 1,
1392
+ "link": null,
1393
+ "locked": false,
1394
+ "points": [
1395
+ [
1396
+ 0,
1397
+ 0
1398
+ ],
1399
+ [
1400
+ -930,
1401
+ 0
1402
+ ]
1403
+ ],
1404
+ "lastCommittedPoint": null,
1405
+ "startBinding": null,
1406
+ "endBinding": null,
1407
+ "startArrowhead": null,
1408
+ "endArrowhead": "triangle",
1409
+ "elbowed": false,
1410
+ "index": null
1411
+ },
1412
+ {
1413
+ "id": "seq-msglabel-7",
1414
+ "type": "text",
1415
+ "x": 918.4,
1416
+ "y": 692,
1417
+ "width": 115.19999999999999,
1418
+ "height": 21,
1419
+ "angle": 0,
1420
+ "strokeColor": "#1B1F23",
1421
+ "backgroundColor": "transparent",
1422
+ "fillStyle": "solid",
1423
+ "strokeWidth": 1,
1424
+ "strokeStyle": "solid",
1425
+ "roughness": 1,
1426
+ "opacity": 100,
1427
+ "groupIds": [],
1428
+ "frameId": null,
1429
+ "roundness": null,
1430
+ "seed": 317,
1431
+ "version": 1,
1432
+ "versionNonce": 317,
1433
+ "isDeleted": false,
1434
+ "boundElements": null,
1435
+ "updated": 1,
1436
+ "link": null,
1437
+ "locked": false,
1438
+ "text": "DAL instance",
1439
+ "fontSize": 16,
1440
+ "fontFamily": 5,
1441
+ "textAlign": "center",
1442
+ "verticalAlign": "top",
1443
+ "containerId": null,
1444
+ "originalText": "DAL instance",
1445
+ "autoResize": true,
1446
+ "lineHeight": 1.25,
1447
+ "index": null
1448
+ },
1449
+ {
1450
+ "id": "seq-msg-8",
1451
+ "type": "arrow",
1452
+ "x": 511,
1453
+ "y": 777,
1454
+ "width": 1242,
1455
+ "height": 0,
1456
+ "angle": 0,
1457
+ "strokeColor": "#1B1F23",
1458
+ "backgroundColor": "transparent",
1459
+ "fillStyle": "solid",
1460
+ "strokeWidth": 2,
1461
+ "strokeStyle": "solid",
1462
+ "roughness": 1,
1463
+ "opacity": 100,
1464
+ "groupIds": [],
1465
+ "frameId": null,
1466
+ "roundness": {
1467
+ "type": 2
1468
+ },
1469
+ "seed": 980,
1470
+ "version": 1,
1471
+ "versionNonce": 980,
1472
+ "isDeleted": false,
1473
+ "boundElements": [],
1474
+ "updated": 1,
1475
+ "link": null,
1476
+ "locked": false,
1477
+ "points": [
1478
+ [
1479
+ 0,
1480
+ 0
1481
+ ],
1482
+ [
1483
+ 1242,
1484
+ 0
1485
+ ]
1486
+ ],
1487
+ "lastCommittedPoint": null,
1488
+ "startBinding": null,
1489
+ "endBinding": null,
1490
+ "startArrowhead": null,
1491
+ "endArrowhead": "triangle",
1492
+ "elbowed": false,
1493
+ "index": null
1494
+ },
1495
+ {
1496
+ "id": "seq-msglabel-8",
1497
+ "type": "text",
1498
+ "x": 1016.8,
1499
+ "y": 750,
1500
+ "width": 230.39999999999998,
1501
+ "height": 21,
1502
+ "angle": 0,
1503
+ "strokeColor": "#1B1F23",
1504
+ "backgroundColor": "transparent",
1505
+ "fillStyle": "solid",
1506
+ "strokeWidth": 1,
1507
+ "strokeStyle": "solid",
1508
+ "roughness": 1,
1509
+ "opacity": 100,
1510
+ "groupIds": [],
1511
+ "frameId": null,
1512
+ "roundness": null,
1513
+ "seed": 981,
1514
+ "version": 1,
1515
+ "versionNonce": 981,
1516
+ "isDeleted": false,
1517
+ "boundElements": null,
1518
+ "updated": 1,
1519
+ "link": null,
1520
+ "locked": false,
1521
+ "text": "new MeadowEndpoints(DAL)",
1522
+ "fontSize": 16,
1523
+ "fontFamily": 5,
1524
+ "textAlign": "center",
1525
+ "verticalAlign": "top",
1526
+ "containerId": null,
1527
+ "originalText": "new MeadowEndpoints(DAL)",
1528
+ "autoResize": true,
1529
+ "lineHeight": 1.25,
1530
+ "index": null
1531
+ },
1532
+ {
1533
+ "id": "seq-msg-9",
1534
+ "type": "arrow",
1535
+ "x": 1753,
1536
+ "y": 835,
1537
+ "width": -930,
1538
+ "height": 0,
1539
+ "angle": 0,
1540
+ "strokeColor": "#1B1F23",
1541
+ "backgroundColor": "transparent",
1542
+ "fillStyle": "solid",
1543
+ "strokeWidth": 2,
1544
+ "strokeStyle": "solid",
1545
+ "roughness": 1,
1546
+ "opacity": 100,
1547
+ "groupIds": [],
1548
+ "frameId": null,
1549
+ "roundness": {
1550
+ "type": 2
1551
+ },
1552
+ "seed": 100,
1553
+ "version": 1,
1554
+ "versionNonce": 100,
1555
+ "isDeleted": false,
1556
+ "boundElements": [],
1557
+ "updated": 1,
1558
+ "link": null,
1559
+ "locked": false,
1560
+ "points": [
1561
+ [
1562
+ 0,
1563
+ 0
1564
+ ],
1565
+ [
1566
+ -930,
1567
+ 0
1568
+ ]
1569
+ ],
1570
+ "lastCommittedPoint": null,
1571
+ "startBinding": null,
1572
+ "endBinding": null,
1573
+ "startArrowhead": null,
1574
+ "endArrowhead": "triangle",
1575
+ "elbowed": false,
1576
+ "index": null
1577
+ },
1578
+ {
1579
+ "id": "seq-msglabel-9",
1580
+ "type": "text",
1581
+ "x": 1216,
1582
+ "y": 808,
1583
+ "width": 144,
1584
+ "height": 21,
1585
+ "angle": 0,
1586
+ "strokeColor": "#1B1F23",
1587
+ "backgroundColor": "transparent",
1588
+ "fillStyle": "solid",
1589
+ "strokeWidth": 1,
1590
+ "strokeStyle": "solid",
1591
+ "roughness": 1,
1592
+ "opacity": 100,
1593
+ "groupIds": [],
1594
+ "frameId": null,
1595
+ "roundness": null,
1596
+ "seed": 101,
1597
+ "version": 1,
1598
+ "versionNonce": 101,
1599
+ "isDeleted": false,
1600
+ "boundElements": null,
1601
+ "updated": 1,
1602
+ "link": null,
1603
+ "locked": false,
1604
+ "text": "connectRoutes()",
1605
+ "fontSize": 16,
1606
+ "fontFamily": 5,
1607
+ "textAlign": "center",
1608
+ "verticalAlign": "top",
1609
+ "containerId": null,
1610
+ "originalText": "connectRoutes()",
1611
+ "autoResize": true,
1612
+ "lineHeight": 1.25,
1613
+ "index": null
1614
+ },
1615
+ {
1616
+ "id": "seq-msg-10",
1617
+ "type": "arrow",
1618
+ "x": 508,
1619
+ "y": 909,
1620
+ "width": 46,
1621
+ "height": 44,
1622
+ "angle": 0,
1623
+ "strokeColor": "#1B1F23",
1624
+ "backgroundColor": "transparent",
1625
+ "fillStyle": "solid",
1626
+ "strokeWidth": 2,
1627
+ "strokeStyle": "solid",
1628
+ "roughness": 1,
1629
+ "opacity": 100,
1630
+ "groupIds": [],
1631
+ "frameId": null,
1632
+ "roundness": {
1633
+ "type": 2
1634
+ },
1635
+ "seed": 844,
1636
+ "version": 1,
1637
+ "versionNonce": 844,
1638
+ "isDeleted": false,
1639
+ "boundElements": [],
1640
+ "updated": 1,
1641
+ "link": null,
1642
+ "locked": false,
1643
+ "points": [
1644
+ [
1645
+ 0,
1646
+ 0
1647
+ ],
1648
+ [
1649
+ 46,
1650
+ 0
1651
+ ],
1652
+ [
1653
+ 46,
1654
+ 44
1655
+ ],
1656
+ [
1657
+ 0,
1658
+ 44
1659
+ ]
1660
+ ],
1661
+ "lastCommittedPoint": null,
1662
+ "startBinding": null,
1663
+ "endBinding": null,
1664
+ "startArrowhead": null,
1665
+ "endArrowhead": "triangle",
1666
+ "elbowed": false,
1667
+ "index": null
1668
+ },
1669
+ {
1670
+ "id": "seq-msglabel-10",
1671
+ "type": "text",
1672
+ "x": 564,
1673
+ "y": 920.5,
1674
+ "width": 182.4,
1675
+ "height": 21,
1676
+ "angle": 0,
1677
+ "strokeColor": "#1B1F23",
1678
+ "backgroundColor": "transparent",
1679
+ "fillStyle": "solid",
1680
+ "strokeWidth": 1,
1681
+ "strokeStyle": "solid",
1682
+ "roughness": 1,
1683
+ "opacity": 100,
1684
+ "groupIds": [],
1685
+ "frameId": null,
1686
+ "roundness": null,
1687
+ "seed": 845,
1688
+ "version": 1,
1689
+ "versionNonce": 845,
1690
+ "isDeleted": false,
1691
+ "boundElements": null,
1692
+ "updated": 1,
1693
+ "link": null,
1694
+ "locked": false,
1695
+ "text": "onAfterInitialize()",
1696
+ "fontSize": 16,
1697
+ "fontFamily": 5,
1698
+ "textAlign": "left",
1699
+ "verticalAlign": "top",
1700
+ "containerId": null,
1701
+ "originalText": "onAfterInitialize()",
1702
+ "autoResize": true,
1703
+ "lineHeight": 1.25,
1704
+ "index": null
1705
+ },
1706
+ {
1707
+ "id": "seq-msg-11",
1708
+ "type": "arrow",
1709
+ "x": 505,
1710
+ "y": 1019,
1711
+ "width": -306,
1712
+ "height": 0,
1713
+ "angle": 0,
1714
+ "strokeColor": "#1B1F23",
1715
+ "backgroundColor": "transparent",
1716
+ "fillStyle": "solid",
1717
+ "strokeWidth": 2,
1718
+ "strokeStyle": "dashed",
1719
+ "roughness": 1,
1720
+ "opacity": 100,
1721
+ "groupIds": [],
1722
+ "frameId": null,
1723
+ "roundness": {
1724
+ "type": 2
1725
+ },
1726
+ "seed": 213,
1727
+ "version": 1,
1728
+ "versionNonce": 213,
1729
+ "isDeleted": false,
1730
+ "boundElements": [],
1731
+ "updated": 1,
1732
+ "link": null,
1733
+ "locked": false,
1734
+ "points": [
1735
+ [
1736
+ 0,
1737
+ 0
1738
+ ],
1739
+ [
1740
+ -306,
1741
+ 0
1742
+ ]
1743
+ ],
1744
+ "lastCommittedPoint": null,
1745
+ "startBinding": null,
1746
+ "endBinding": null,
1747
+ "startArrowhead": null,
1748
+ "endArrowhead": "triangle",
1749
+ "elbowed": false,
1750
+ "index": null
1751
+ },
1752
+ {
1753
+ "id": "seq-msglabel-11",
1754
+ "type": "text",
1755
+ "x": 304,
1756
+ "y": 992,
1757
+ "width": 96,
1758
+ "height": 21,
1759
+ "angle": 0,
1760
+ "strokeColor": "#1B1F23",
1761
+ "backgroundColor": "transparent",
1762
+ "fillStyle": "solid",
1763
+ "strokeWidth": 1,
1764
+ "strokeStyle": "solid",
1765
+ "roughness": 1,
1766
+ "opacity": 100,
1767
+ "groupIds": [],
1768
+ "frameId": null,
1769
+ "roundness": null,
1770
+ "seed": 214,
1771
+ "version": 1,
1772
+ "versionNonce": 214,
1773
+ "isDeleted": false,
1774
+ "boundElements": null,
1775
+ "updated": 1,
1776
+ "link": null,
1777
+ "locked": false,
1778
+ "text": "callback()",
1779
+ "fontSize": 16,
1780
+ "fontFamily": 5,
1781
+ "textAlign": "center",
1782
+ "verticalAlign": "top",
1783
+ "containerId": null,
1784
+ "originalText": "callback()",
1785
+ "autoResize": true,
1786
+ "lineHeight": 1.25,
1787
+ "index": null
1788
+ }
1789
+ ],
1790
+ "appState": {
1791
+ "viewBackgroundColor": "#FBF7EE",
1792
+ "theme": "light",
1793
+ "gridSize": null,
1794
+ "exportBackground": true,
1795
+ "exportEmbedScene": true,
1796
+ "exportScale": 1,
1797
+ "currentItemFontFamily": 5
1798
+ },
1799
+ "files": {}
1800
+ }