@divmain/jdm-asm 0.2.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.
Files changed (397) hide show
  1. package/.github/workflows/ci.yml +53 -0
  2. package/.oxfmtrc.json +16 -0
  3. package/.oxlintrc.json +183 -0
  4. package/AGENTS.md +81 -0
  5. package/README.md +769 -0
  6. package/asconfig.json +23 -0
  7. package/benchmarks/fixtures.ts +111 -0
  8. package/benchmarks/input-fixtures.ts +80 -0
  9. package/benchmarks/run.ts +913 -0
  10. package/benchmarks/worker-pool.ts +223 -0
  11. package/benchmarks/worker.ts +374 -0
  12. package/dist/index.d.ts +996 -0
  13. package/dist/index.js +12239 -0
  14. package/dist/index.js.map +1 -0
  15. package/package.json +49 -0
  16. package/scripts/run-all-tests.ts +220 -0
  17. package/src/compiler/EXPRESSION_SUBSETS.md +228 -0
  18. package/src/compiler/asc-compiler.ts +315 -0
  19. package/src/compiler/ast-types.ts +215 -0
  20. package/src/compiler/build.ts +56 -0
  21. package/src/compiler/cache.ts +414 -0
  22. package/src/compiler/code-generators.ts +211 -0
  23. package/src/compiler/codegen/index.ts +15 -0
  24. package/src/compiler/codegen/js-marshal.ts +999 -0
  25. package/src/compiler/codegen/js-validation.ts +243 -0
  26. package/src/compiler/codegen.ts +19 -0
  27. package/src/compiler/compile-time-validation.ts +507 -0
  28. package/src/compiler/cst-visitor.ts +434 -0
  29. package/src/compiler/errors.ts +227 -0
  30. package/src/compiler/expression-parser.ts +536 -0
  31. package/src/compiler/graph.ts +197 -0
  32. package/src/compiler/index.ts +199 -0
  33. package/src/compiler/input-validation.ts +33 -0
  34. package/src/compiler/marshal-gen.ts +21 -0
  35. package/src/compiler/nodes/context-resolvers.ts +197 -0
  36. package/src/compiler/nodes/decision-table.ts +507 -0
  37. package/src/compiler/nodes/decision.ts +292 -0
  38. package/src/compiler/nodes/expression-compiler.ts +526 -0
  39. package/src/compiler/nodes/expression.ts +425 -0
  40. package/src/compiler/nodes/function.ts +316 -0
  41. package/src/compiler/nodes/input.ts +60 -0
  42. package/src/compiler/nodes/switch.ts +547 -0
  43. package/src/compiler/optimizer.ts +948 -0
  44. package/src/compiler/orchestrator.ts +352 -0
  45. package/src/compiler/parser.ts +115 -0
  46. package/src/compiler/result-selection.ts +161 -0
  47. package/src/compiler/runtime/index.ts +26 -0
  48. package/src/compiler/runtime-codegen.ts +211 -0
  49. package/src/compiler/runtime-validation-codegen.ts +294 -0
  50. package/src/compiler/runtime.ts +452 -0
  51. package/src/compiler/schema.ts +245 -0
  52. package/src/compiler/switch-branch-detection.ts +92 -0
  53. package/src/compiler/types.ts +136 -0
  54. package/src/compiler/unary-ast-transforms.ts +148 -0
  55. package/src/compiler/unary-parser.ts +301 -0
  56. package/src/compiler/unary-transform.ts +161 -0
  57. package/src/compiler/utils.ts +27 -0
  58. package/src/compiler/virtual-fs.ts +90 -0
  59. package/src/compiler/wasm-instantiate.ts +127 -0
  60. package/src/index.ts +1 -0
  61. package/src/runtime/arrays.ts +579 -0
  62. package/src/runtime/context.ts +189 -0
  63. package/src/runtime/expressions.ts +1811 -0
  64. package/src/runtime/index.ts +8 -0
  65. package/src/runtime/memory.ts +607 -0
  66. package/src/runtime/strings.ts +260 -0
  67. package/src/runtime/tables.ts +96 -0
  68. package/src/runtime/tsconfig.json +4 -0
  69. package/src/runtime/values.ts +209 -0
  70. package/test-data/README.md +83 -0
  71. package/test-data/decision-tables/basic/8k.json +87992 -0
  72. package/test-data/decision-tables/basic/affiliate-commission-calculator.json +228 -0
  73. package/test-data/decision-tables/basic/airline-loyalty-points-calculations.json +285 -0
  74. package/test-data/decision-tables/basic/airline-upgrade-eligibility.json +466 -0
  75. package/test-data/decision-tables/basic/auto-insurance-premium-calculator.json +412 -0
  76. package/test-data/decision-tables/basic/booking-personalization-system.json +553 -0
  77. package/test-data/decision-tables/basic/care-team-assignment-system.json +585 -0
  78. package/test-data/decision-tables/basic/claim-validation-system.json +307 -0
  79. package/test-data/decision-tables/basic/clinical-lab-result-interpreter.json +433 -0
  80. package/test-data/decision-tables/basic/clinical-treatment-protocol.json +474 -0
  81. package/test-data/decision-tables/basic/credit-limit-adjustment.json +479 -0
  82. package/test-data/decision-tables/basic/customer-eligibility-engine.json +551 -0
  83. package/test-data/decision-tables/basic/customer-lifetime-value.json +200 -0
  84. package/test-data/decision-tables/basic/customer-onboarding-kyc-verification.json +611 -0
  85. package/test-data/decision-tables/basic/customer-service-escalation.json +191 -0
  86. package/test-data/decision-tables/basic/decision-table-discounts.json +168 -0
  87. package/test-data/decision-tables/basic/decision-table-shipping.json +398 -0
  88. package/test-data/decision-tables/basic/delivery-route-optimizer.json +271 -0
  89. package/test-data/decision-tables/basic/device-compatibility-checker.json +303 -0
  90. package/test-data/decision-tables/basic/disaster-relief-fund-allocation.json +296 -0
  91. package/test-data/decision-tables/basic/dynamic-fx-rate-pricing-system.json +237 -0
  92. package/test-data/decision-tables/basic/dynamic-marketplace-comission-calculator.json +242 -0
  93. package/test-data/decision-tables/basic/dynamic-shipping-cost-calculator.json +378 -0
  94. package/test-data/decision-tables/basic/dynamic-tarrif-engine.json +289 -0
  95. package/test-data/decision-tables/basic/dynamic-ticket-pricing.json +325 -0
  96. package/test-data/decision-tables/basic/empty-column-with-space.json +100 -0
  97. package/test-data/decision-tables/basic/empty-column-without-space.json +100 -0
  98. package/test-data/decision-tables/basic/environment-compliance-assessment.json +386 -0
  99. package/test-data/decision-tables/basic/expression-table-map.json +313 -0
  100. package/test-data/decision-tables/basic/flash-sale-eligibility.json +366 -0
  101. package/test-data/decision-tables/basic/flight-dispatch-decision-system.json +455 -0
  102. package/test-data/decision-tables/basic/flight-rebooking-fee-calculator.json +406 -0
  103. package/test-data/decision-tables/basic/government-assistance.json +299 -0
  104. package/test-data/decision-tables/basic/grant-funding-distribution.json +307 -0
  105. package/test-data/decision-tables/basic/hazardous-materials-management-system.json +414 -0
  106. package/test-data/decision-tables/basic/immigration-eligibility-evaluator.json +765 -0
  107. package/test-data/decision-tables/basic/import-duties-calculator.json +318 -0
  108. package/test-data/decision-tables/basic/insurance-agent-commission.json +228 -0
  109. package/test-data/decision-tables/basic/insurance-coverage-calculator.json +362 -0
  110. package/test-data/decision-tables/basic/insurance-underwriting-risk.json +321 -0
  111. package/test-data/decision-tables/basic/international-roaming-policy-manager.json +199 -0
  112. package/test-data/decision-tables/basic/legacy-plan-management.json +434 -0
  113. package/test-data/decision-tables/basic/marketplace-listing-verification-system.json +334 -0
  114. package/test-data/decision-tables/basic/medication-dosage-calculator.json +318 -0
  115. package/test-data/decision-tables/basic/merch-bags.json +171 -0
  116. package/test-data/decision-tables/basic/municipal-permit-evaluation-system.json +364 -0
  117. package/test-data/decision-tables/basic/mvno-partner-enablement.json +313 -0
  118. package/test-data/decision-tables/basic/partner-revenue-sharing.json +244 -0
  119. package/test-data/decision-tables/basic/payment-routing-and-fee-calculator.json +475 -0
  120. package/test-data/decision-tables/basic/policy-discount-calculator.json +307 -0
  121. package/test-data/decision-tables/basic/policy-eligibility-analyzer.json +299 -0
  122. package/test-data/decision-tables/basic/product-listing-scoring.json +358 -0
  123. package/test-data/decision-tables/basic/realtime-fraud-detection.json +235 -0
  124. package/test-data/decision-tables/basic/regional-compliance-manager.json +278 -0
  125. package/test-data/decision-tables/basic/returns-and-refund-policy.json +366 -0
  126. package/test-data/decision-tables/basic/returns-processing-system.json +448 -0
  127. package/test-data/decision-tables/basic/school-district-resource-allocation.json +282 -0
  128. package/test-data/decision-tables/basic/seat-map-optimization.json +325 -0
  129. package/test-data/decision-tables/basic/seller-fee-calculator.json +307 -0
  130. package/test-data/decision-tables/basic/service-level-agreement-enforcement.json +575 -0
  131. package/test-data/decision-tables/basic/smart-financial-product-matcher.json +249 -0
  132. package/test-data/decision-tables/basic/supply-chain-risk.json +316 -0
  133. package/test-data/decision-tables/basic/table-loop.json +93 -0
  134. package/test-data/decision-tables/basic/table.json +76 -0
  135. package/test-data/decision-tables/basic/traffic-violation-penalty-calculator.json +436 -0
  136. package/test-data/decision-tables/basic/transaction-compliance-classifier.json +525 -0
  137. package/test-data/decision-tables/basic/vehicle-claims-resolution.json +310 -0
  138. package/test-data/decision-tables/basic/warehouse-storage-location.json +345 -0
  139. package/test-data/decision-tables/hit-policy-collect/collect-multiple-matches.json +127 -0
  140. package/test-data/decision-tables/hit-policy-collect/collect-no-match.json +95 -0
  141. package/test-data/decision-tables/hit-policy-first/first-match.json +103 -0
  142. package/test-data/decision-tables/hit-policy-first/no-match.json +95 -0
  143. package/test-data/decision-tables/hit-policy-output-order/output-order-respected.json +94 -0
  144. package/test-data/decision-tables/hit-policy-output-order/string-output-order.json +94 -0
  145. package/test-data/decision-tables/hit-policy-priority/priority-respected.json +86 -0
  146. package/test-data/decision-tables/hit-policy-rule-order/rule-order-respected.json +94 -0
  147. package/test-data/decision-tables/hit-policy-unique/all-match-error.json +89 -0
  148. package/test-data/decision-tables/hit-policy-unique/multiple-match-error.json +89 -0
  149. package/test-data/decision-tables/hit-policy-unique/no-match.json +88 -0
  150. package/test-data/decision-tables/hit-policy-unique/unique-match.json +99 -0
  151. package/test-data/expressions/arithmetic/error-cyclic.json +114 -0
  152. package/test-data/expressions/arithmetic/error-missing-input.json +54 -0
  153. package/test-data/expressions/arithmetic/error-missing-output.json +54 -0
  154. package/test-data/expressions/arithmetic/expression-default.json +93 -0
  155. package/test-data/expressions/arithmetic/expression-fields.json +94 -0
  156. package/test-data/expressions/arithmetic/expression-loop.json +94 -0
  157. package/test-data/expressions/arithmetic/expression-passthrough.json +108 -0
  158. package/test-data/expressions/arithmetic/expression.json +69 -0
  159. package/test-data/expressions/arithmetic/nested-request.json +125 -0
  160. package/test-data/expressions/arithmetic/number-function.json +58 -0
  161. package/test-data/expressions/arithmetic/test-number-functions.json +68 -0
  162. package/test-data/expressions/functions/all.json +149 -0
  163. package/test-data/expressions/functions/avg.json +89 -0
  164. package/test-data/expressions/functions/filter.json +109 -0
  165. package/test-data/expressions/functions/flat.json +167 -0
  166. package/test-data/expressions/functions/map-strings.json +65 -0
  167. package/test-data/expressions/functions/map.json +73 -0
  168. package/test-data/expressions/functions/reduce.json +49 -0
  169. package/test-data/expressions/functions/some.json +175 -0
  170. package/test-data/expressions/functions/sort-strings.json +97 -0
  171. package/test-data/expressions/functions/sort.json +97 -0
  172. package/test-data/expressions/logical/logical-and.json +116 -0
  173. package/test-data/expressions/logical/logical-complex.json +260 -0
  174. package/test-data/expressions/logical/logical-not.json +111 -0
  175. package/test-data/expressions/logical/logical-or.json +123 -0
  176. package/test-data/expressions/string/string-comparison.json +128 -0
  177. package/test-data/expressions/string/string-concat.json +106 -0
  178. package/test-data/expressions/string/string-contains.json +125 -0
  179. package/test-data/expressions/string/string-endsWith.json +113 -0
  180. package/test-data/expressions/string/string-indexOf.json +131 -0
  181. package/test-data/expressions/string/string-join.json +92 -0
  182. package/test-data/expressions/string/string-lower.json +94 -0
  183. package/test-data/expressions/string/string-replace.json +130 -0
  184. package/test-data/expressions/string/string-split.json +101 -0
  185. package/test-data/expressions/string/string-startsWith.json +113 -0
  186. package/test-data/expressions/string/string-substring.json +138 -0
  187. package/test-data/expressions/string/string-trim.json +100 -0
  188. package/test-data/expressions/string/string-upper.json +94 -0
  189. package/test-data/other/custom.json +51 -0
  190. package/test-data/other/customer-input-schema.json +34 -0
  191. package/test-data/other/customer-output-schema.json +34 -0
  192. package/test-data/other/passthrough.json +31 -0
  193. package/test-data/sub-decisions/basic/$nodes-child.json +31 -0
  194. package/test-data/sub-decisions/basic/$nodes-parent.json +49 -0
  195. package/test-data/sub-decisions/basic/recursive-table1.json +49 -0
  196. package/test-data/sub-decisions/basic/recursive-table2.json +49 -0
  197. package/test-data/sub-decisions/complex-multi/approval-decision.json +31 -0
  198. package/test-data/sub-decisions/complex-multi/complex-dag.json +175 -0
  199. package/test-data/sub-decisions/complex-multi/credit-check.json +31 -0
  200. package/test-data/sub-decisions/complex-multi/customer-segmentation.json +31 -0
  201. package/test-data/sub-decisions/complex-multi/discount-eligibility.json +31 -0
  202. package/test-data/sub-decisions/complex-multi/eligibility-check.json +31 -0
  203. package/test-data/sub-decisions/complex-multi/final-offer.json +31 -0
  204. package/test-data/sub-decisions/complex-multi/income-verification.json +31 -0
  205. package/test-data/sub-decisions/complex-multi/linear-chain.json +121 -0
  206. package/test-data/sub-decisions/complex-multi/pricing-calculation.json +31 -0
  207. package/test-data/sub-decisions/complex-multi/product-eligibility.json +31 -0
  208. package/test-data/sub-decisions/complex-multi/risk-assessment.json +31 -0
  209. package/test-data/sub-decisions/complex-multi/shared-validation.json +31 -0
  210. package/test-data/sub-decisions/complex-multi/validation.json +31 -0
  211. package/test-data/sub-decisions/diamond/decision-a.json +31 -0
  212. package/test-data/sub-decisions/diamond/decision-b.json +31 -0
  213. package/test-data/sub-decisions/diamond/decision-c.json +31 -0
  214. package/test-data/sub-decisions/diamond/decision-shared.json +31 -0
  215. package/test-data/sub-decisions/diamond/diamond-pattern.json +109 -0
  216. package/test-data/sub-decisions/error-propagation/parent-calls-error.json +44 -0
  217. package/test-data/sub-decisions/error-propagation/sub-decision-with-error.json +60 -0
  218. package/test-data/switch-nodes/basic/account-dormancy-management.json +245 -0
  219. package/test-data/switch-nodes/basic/application-risk-assessment.json +474 -0
  220. package/test-data/switch-nodes/basic/cellular-data-rollover-system.json +281 -0
  221. package/test-data/switch-nodes/basic/clinical-pathway-selection.json +454 -0
  222. package/test-data/switch-nodes/basic/insurance-prior-authorization.json +467 -0
  223. package/test-data/switch-nodes/basic/last-mile-delivery-assignment.json +373 -0
  224. package/test-data/switch-nodes/basic/loan-approval.json +469 -0
  225. package/test-data/switch-nodes/basic/multi-switch.json +498 -0
  226. package/test-data/switch-nodes/basic/online-checkin-eligibility.json +285 -0
  227. package/test-data/switch-nodes/basic/order-consolidation-system.json +493 -0
  228. package/test-data/switch-nodes/basic/seller-approval-workflow.json +383 -0
  229. package/test-data/switch-nodes/basic/set-fee.json +243 -0
  230. package/test-data/switch-nodes/basic/shipping-carrier-selector.json +379 -0
  231. package/test-data/switch-nodes/basic/switch-node.json +167 -0
  232. package/test-data/switch-nodes/basic/switch-performance-2.json +1307 -0
  233. package/test-data/switch-nodes/basic/switch-performance.json +691 -0
  234. package/test-data/switch-nodes/basic/tax-exemption.json +295 -0
  235. package/test-data/switch-nodes/basic/warehouse-cross-docking.json +313 -0
  236. package/test-data/switch-nodes/default-cases/switch-with-default.json +134 -0
  237. package/test-data/zen-reference/$nodes-child.json +69 -0
  238. package/test-data/zen-reference/$nodes-parent.json +34 -0
  239. package/test-data/zen-reference/8k.json +87992 -0
  240. package/test-data/zen-reference/credit-analysis.json +324 -0
  241. package/test-data/zen-reference/custom.json +51 -0
  242. package/test-data/zen-reference/customer-input-schema.json +34 -0
  243. package/test-data/zen-reference/customer-output-schema.json +34 -0
  244. package/test-data/zen-reference/error-cyclic.json +114 -0
  245. package/test-data/zen-reference/error-missing-input.json +54 -0
  246. package/test-data/zen-reference/error-missing-output.json +54 -0
  247. package/test-data/zen-reference/expression.json +69 -0
  248. package/test-data/zen-reference/function-v2.json +48 -0
  249. package/test-data/zen-reference/function.json +46 -0
  250. package/test-data/zen-reference/graphs/account-dormancy-management.json +245 -0
  251. package/test-data/zen-reference/graphs/affiliate-commission-calculator.json +228 -0
  252. package/test-data/zen-reference/graphs/airline-loyalty-points-calculations.json +285 -0
  253. package/test-data/zen-reference/graphs/airline-upgrade-eligibility.json +466 -0
  254. package/test-data/zen-reference/graphs/aml.json +537 -0
  255. package/test-data/zen-reference/graphs/application-risk-assessment.json +474 -0
  256. package/test-data/zen-reference/graphs/auto-insurance-premium-calculator.json +412 -0
  257. package/test-data/zen-reference/graphs/booking-personalization-system.json +553 -0
  258. package/test-data/zen-reference/graphs/care-team-assignment-system.json +585 -0
  259. package/test-data/zen-reference/graphs/cellular-data-rollover-system.json +281 -0
  260. package/test-data/zen-reference/graphs/claim-validation-system.json +307 -0
  261. package/test-data/zen-reference/graphs/clinical-lab-result-interpreter.json +433 -0
  262. package/test-data/zen-reference/graphs/clinical-pathway-selection.json +454 -0
  263. package/test-data/zen-reference/graphs/clinical-treatment-protocol.json +474 -0
  264. package/test-data/zen-reference/graphs/company-analysis.json +390 -0
  265. package/test-data/zen-reference/graphs/credit-limit-adjustment.json +479 -0
  266. package/test-data/zen-reference/graphs/customer-eligibility-engine.json +551 -0
  267. package/test-data/zen-reference/graphs/customer-lifetime-value.json +200 -0
  268. package/test-data/zen-reference/graphs/customer-onboarding-kyc-verification.json +611 -0
  269. package/test-data/zen-reference/graphs/customer-service-escalation.json +191 -0
  270. package/test-data/zen-reference/graphs/decision-table-discounts.json +168 -0
  271. package/test-data/zen-reference/graphs/decision-table-shipping.json +398 -0
  272. package/test-data/zen-reference/graphs/delivery-route-optimizer.json +271 -0
  273. package/test-data/zen-reference/graphs/device-compatibility-checker.json +303 -0
  274. package/test-data/zen-reference/graphs/disaster-relief-fund-allocation.json +296 -0
  275. package/test-data/zen-reference/graphs/dynamic-fx-rate-pricing-system.json +237 -0
  276. package/test-data/zen-reference/graphs/dynamic-marketplace-comission-calculator.json +242 -0
  277. package/test-data/zen-reference/graphs/dynamic-shipping-cost-calculator.json +378 -0
  278. package/test-data/zen-reference/graphs/dynamic-tarrif-engine.json +289 -0
  279. package/test-data/zen-reference/graphs/dynamic-ticket-pricing.json +325 -0
  280. package/test-data/zen-reference/graphs/empty-column-with-space.json +100 -0
  281. package/test-data/zen-reference/graphs/empty-column-without-space.json +100 -0
  282. package/test-data/zen-reference/graphs/environment-compliance-assessment.json +386 -0
  283. package/test-data/zen-reference/graphs/expression-default.json +93 -0
  284. package/test-data/zen-reference/graphs/expression-fields.json +94 -0
  285. package/test-data/zen-reference/graphs/expression-loop.json +94 -0
  286. package/test-data/zen-reference/graphs/expression-passthrough.json +108 -0
  287. package/test-data/zen-reference/graphs/expression-table-map.json +313 -0
  288. package/test-data/zen-reference/graphs/flash-sale-eligibility.json +366 -0
  289. package/test-data/zen-reference/graphs/flight-dispatch-decision-system.json +455 -0
  290. package/test-data/zen-reference/graphs/flight-rebooking-fee-calculator.json +406 -0
  291. package/test-data/zen-reference/graphs/government-assistance.json +299 -0
  292. package/test-data/zen-reference/graphs/grant-funding-distribution.json +307 -0
  293. package/test-data/zen-reference/graphs/hazardous-materials-management-system.json +414 -0
  294. package/test-data/zen-reference/graphs/immigration-eligibility-evaluator.json +765 -0
  295. package/test-data/zen-reference/graphs/import-duties-calculator.json +318 -0
  296. package/test-data/zen-reference/graphs/insurance-agent-commission.json +228 -0
  297. package/test-data/zen-reference/graphs/insurance-breakdown.json +421 -0
  298. package/test-data/zen-reference/graphs/insurance-coverage-calculator.json +362 -0
  299. package/test-data/zen-reference/graphs/insurance-prior-authorization.json +467 -0
  300. package/test-data/zen-reference/graphs/insurance-underwriting-risk.json +321 -0
  301. package/test-data/zen-reference/graphs/international-roaming-policy-manager.json +199 -0
  302. package/test-data/zen-reference/graphs/last-mile-delivery-assignment.json +373 -0
  303. package/test-data/zen-reference/graphs/legacy-plan-management.json +434 -0
  304. package/test-data/zen-reference/graphs/loan-approval.json +469 -0
  305. package/test-data/zen-reference/graphs/marketplace-listing-verification-system.json +334 -0
  306. package/test-data/zen-reference/graphs/medication-dosage-calculator.json +318 -0
  307. package/test-data/zen-reference/graphs/merch-bags.json +171 -0
  308. package/test-data/zen-reference/graphs/multi-switch.json +498 -0
  309. package/test-data/zen-reference/graphs/municipal-permit-evaluation-system.json +364 -0
  310. package/test-data/zen-reference/graphs/mvno-partner-enablement.json +313 -0
  311. package/test-data/zen-reference/graphs/nested-request.json +125 -0
  312. package/test-data/zen-reference/graphs/online-checkin-eligibility.json +285 -0
  313. package/test-data/zen-reference/graphs/order-consolidation-system.json +493 -0
  314. package/test-data/zen-reference/graphs/partner-revenue-sharing.json +244 -0
  315. package/test-data/zen-reference/graphs/payment-routing-and-fee-calculator.json +475 -0
  316. package/test-data/zen-reference/graphs/policy-discount-calculator.json +307 -0
  317. package/test-data/zen-reference/graphs/policy-eligibility-analyzer.json +299 -0
  318. package/test-data/zen-reference/graphs/product-listing-scoring.json +358 -0
  319. package/test-data/zen-reference/graphs/realtime-fraud-detection.json +235 -0
  320. package/test-data/zen-reference/graphs/regional-compliance-manager.json +278 -0
  321. package/test-data/zen-reference/graphs/returns-and-refund-policy.json +366 -0
  322. package/test-data/zen-reference/graphs/returns-processing-system.json +448 -0
  323. package/test-data/zen-reference/graphs/school-district-resource-allocation.json +282 -0
  324. package/test-data/zen-reference/graphs/seat-map-optimization.json +325 -0
  325. package/test-data/zen-reference/graphs/seller-approval-workflow.json +383 -0
  326. package/test-data/zen-reference/graphs/seller-fee-calculator.json +307 -0
  327. package/test-data/zen-reference/graphs/service-level-agreement-enforcement.json +575 -0
  328. package/test-data/zen-reference/graphs/set-fee.json +243 -0
  329. package/test-data/zen-reference/graphs/shipping-carrier-selector.json +379 -0
  330. package/test-data/zen-reference/graphs/smart-financial-product-matcher.json +249 -0
  331. package/test-data/zen-reference/graphs/supply-chain-risk.json +316 -0
  332. package/test-data/zen-reference/graphs/table-loop.json +93 -0
  333. package/test-data/zen-reference/graphs/tax-exemption.json +295 -0
  334. package/test-data/zen-reference/graphs/traffic-violation-penalty-calculator.json +436 -0
  335. package/test-data/zen-reference/graphs/transaction-compliance-classifier.json +525 -0
  336. package/test-data/zen-reference/graphs/vehicle-claims-resolution.json +310 -0
  337. package/test-data/zen-reference/graphs/warehouse-cross-docking.json +313 -0
  338. package/test-data/zen-reference/graphs/warehouse-storage-location.json +345 -0
  339. package/test-data/zen-reference/http-function.json +34 -0
  340. package/test-data/zen-reference/infinite-function.json +46 -0
  341. package/test-data/zen-reference/js/imports.js +25 -0
  342. package/test-data/zen-reference/passthrough.json +31 -0
  343. package/test-data/zen-reference/recursive-table1.json +49 -0
  344. package/test-data/zen-reference/recursive-table2.json +49 -0
  345. package/test-data/zen-reference/sleep-function.json +34 -0
  346. package/test-data/zen-reference/switch-node.json +167 -0
  347. package/test-data/zen-reference/switch-performance-2.json +1307 -0
  348. package/test-data/zen-reference/switch-performance.json +691 -0
  349. package/test-data/zen-reference/table.json +76 -0
  350. package/tests/helpers/index.ts +73 -0
  351. package/tests/helpers/mock-context.ts +231 -0
  352. package/tests/helpers/round-trip.ts +398 -0
  353. package/tests/helpers/test-harness-comparison.ts +325 -0
  354. package/tests/helpers/test-harness-wasm.ts +710 -0
  355. package/tests/helpers/test-harness.ts +28 -0
  356. package/tests/helpers/wasm-test.ts +659 -0
  357. package/tests/integration/compilation-errors.test.ts +864 -0
  358. package/tests/integration/decision-tables.test.ts +531 -0
  359. package/tests/integration/edge-cases.test.ts +787 -0
  360. package/tests/integration/expressions.test.ts +513 -0
  361. package/tests/integration/function-node-integration.test.ts +182 -0
  362. package/tests/integration/sub-decisions.test.ts +108 -0
  363. package/tests/integration/switch-nodes.test.ts +399 -0
  364. package/tests/integration/unary-or-matching.test.ts +53 -0
  365. package/tests/integration/wasm-data-types.test.ts +398 -0
  366. package/tests/integration/wasm-errors.test.ts +199 -0
  367. package/tests/integration/wasm-execution.test.ts +348 -0
  368. package/tests/integration/wasm-memory.test.ts +228 -0
  369. package/tests/scripts/analyze-coverage.ts +166 -0
  370. package/tests/scripts/categorize-tests.ts +396 -0
  371. package/tests/scripts/coverage-analysis.ts +836 -0
  372. package/tests/unit/compiler/cache.test.ts +238 -0
  373. package/tests/unit/compiler/errors.test.ts +316 -0
  374. package/tests/unit/compiler/graph-scalability.test.ts +510 -0
  375. package/tests/unit/compiler/graph.test.ts +878 -0
  376. package/tests/unit/compiler/input-validation.test.ts +447 -0
  377. package/tests/unit/compiler/logical-and-parser.test.ts +143 -0
  378. package/tests/unit/compiler/logical-not-parser.test.ts +107 -0
  379. package/tests/unit/compiler/logical-or-parser.test.ts +236 -0
  380. package/tests/unit/compiler/marshal-gen/marshal-gen.test.ts +97 -0
  381. package/tests/unit/compiler/nodes/decision-table.test.ts +103 -0
  382. package/tests/unit/compiler/nodes/decision.test.ts +182 -0
  383. package/tests/unit/compiler/nodes/function-compile.test.ts +204 -0
  384. package/tests/unit/compiler/nodes/function.test.ts +176 -0
  385. package/tests/unit/compiler/nodes/input.test.ts +30 -0
  386. package/tests/unit/compiler/nodes/switch.test.ts +127 -0
  387. package/tests/unit/compiler/optimizer-cache.test.ts +327 -0
  388. package/tests/unit/compiler/optimizer-implementation.test.ts +625 -0
  389. package/tests/unit/compiler/parser.test.ts +508 -0
  390. package/tests/unit/compiler/runtime-error-cleanup.test.ts +426 -0
  391. package/tests/unit/compiler/runtime-validation.test.ts +303 -0
  392. package/tests/unit/compiler/runtime.test.ts +221 -0
  393. package/tests/unit/compiler/schema/schema.test.ts +248 -0
  394. package/tests/unit/compiler/unary-ast-transforms.test.ts +245 -0
  395. package/tsconfig.json +27 -0
  396. package/tsup.config.ts +11 -0
  397. package/vitest.config.ts +12 -0
@@ -0,0 +1,1307 @@
1
+ {
2
+ "contentType": "application/vnd.gorules.decision",
3
+ "nodes": [
4
+ {
5
+ "name": "myRequest",
6
+ "id": "c79e4c8f-70e5-426e-9e37-99a129937357",
7
+ "position": {
8
+ "x": -1540,
9
+ "y": -130
10
+ },
11
+ "type": "inputNode"
12
+ },
13
+ {
14
+ "name": "mySwitch1",
15
+ "content": {
16
+ "statements": [
17
+ {
18
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
19
+ "condition": "x > 0"
20
+ },
21
+ {
22
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
23
+ "condition": ""
24
+ }
25
+ ]
26
+ },
27
+ "id": "85109aa1-5cc3-4ca9-bea5-be5f45939117",
28
+ "position": {
29
+ "x": 1245,
30
+ "y": -305
31
+ },
32
+ "type": "switchNode"
33
+ },
34
+ {
35
+ "name": "mySwitch2",
36
+ "content": {
37
+ "statements": [
38
+ {
39
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
40
+ "condition": "x > 0"
41
+ },
42
+ {
43
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
44
+ "condition": ""
45
+ }
46
+ ]
47
+ },
48
+ "id": "74000485-b6b3-497b-ad49-01e62bb5f791",
49
+ "position": {
50
+ "x": 1240,
51
+ "y": -95
52
+ },
53
+ "type": "switchNode"
54
+ },
55
+ {
56
+ "name": "mySwitch3",
57
+ "content": {
58
+ "statements": [
59
+ {
60
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
61
+ "condition": "x > 0"
62
+ },
63
+ {
64
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
65
+ "condition": ""
66
+ }
67
+ ]
68
+ },
69
+ "id": "8e9d27fe-45cf-49fe-8260-007cf81e8bea",
70
+ "position": {
71
+ "x": 1240,
72
+ "y": 120
73
+ },
74
+ "type": "switchNode"
75
+ },
76
+ {
77
+ "name": "mySwitch4",
78
+ "content": {
79
+ "statements": [
80
+ {
81
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
82
+ "condition": "x > 0"
83
+ },
84
+ {
85
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
86
+ "condition": ""
87
+ }
88
+ ]
89
+ },
90
+ "id": "07cb83ea-52c3-429d-9408-5e64064639bb",
91
+ "position": {
92
+ "x": 1240,
93
+ "y": 340
94
+ },
95
+ "type": "switchNode"
96
+ },
97
+ {
98
+ "name": "mySwitch5",
99
+ "content": {
100
+ "statements": [
101
+ {
102
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
103
+ "condition": "x > 0"
104
+ },
105
+ {
106
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
107
+ "condition": ""
108
+ }
109
+ ]
110
+ },
111
+ "id": "87e47130-ce8e-4999-bac2-59e97d589469",
112
+ "position": {
113
+ "x": 1235,
114
+ "y": 550
115
+ },
116
+ "type": "switchNode"
117
+ },
118
+ {
119
+ "name": "mySwitch6",
120
+ "content": {
121
+ "statements": [
122
+ {
123
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
124
+ "condition": "x > 0"
125
+ },
126
+ {
127
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
128
+ "condition": ""
129
+ }
130
+ ]
131
+ },
132
+ "id": "98999811-8ee2-44ed-bf7b-09b8db2d076e",
133
+ "position": {
134
+ "x": 1235,
135
+ "y": 765
136
+ },
137
+ "type": "switchNode"
138
+ },
139
+ {
140
+ "name": "mySwitch7",
141
+ "content": {
142
+ "statements": [
143
+ {
144
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
145
+ "condition": "x > 0"
146
+ },
147
+ {
148
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
149
+ "condition": ""
150
+ }
151
+ ]
152
+ },
153
+ "id": "6ef1efc7-2f21-4cb2-9c4a-144faa062b80",
154
+ "position": {
155
+ "x": 1235,
156
+ "y": 995
157
+ },
158
+ "type": "switchNode"
159
+ },
160
+ {
161
+ "name": "mySwitch8",
162
+ "content": {
163
+ "statements": [
164
+ {
165
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
166
+ "condition": "x > 0"
167
+ },
168
+ {
169
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
170
+ "condition": ""
171
+ }
172
+ ]
173
+ },
174
+ "id": "b1cf7a2e-5d9b-42dd-a4a9-b58cb6e96f10",
175
+ "position": {
176
+ "x": 1235,
177
+ "y": 1265
178
+ },
179
+ "type": "switchNode"
180
+ },
181
+ {
182
+ "name": "myResponse",
183
+ "id": "1cd783f1-c8e2-4cad-86b4-20877f808515",
184
+ "position": {
185
+ "x": 1660,
186
+ "y": -240
187
+ },
188
+ "type": "outputNode"
189
+ },
190
+ {
191
+ "name": "myResponse",
192
+ "id": "1117ba79-ba20-4a55-993f-89ed430f7beb",
193
+ "position": {
194
+ "x": 1655,
195
+ "y": -60
196
+ },
197
+ "type": "outputNode"
198
+ },
199
+ {
200
+ "name": "myResponse",
201
+ "id": "a654c6ee-e307-4a3a-afbf-66b97a8520e9",
202
+ "position": {
203
+ "x": 1655,
204
+ "y": 150
205
+ },
206
+ "type": "outputNode"
207
+ },
208
+ {
209
+ "name": "myResponse",
210
+ "id": "fd99ddc9-e96d-41d6-9286-187fbcc9d2fb",
211
+ "position": {
212
+ "x": 1650,
213
+ "y": 400
214
+ },
215
+ "type": "outputNode"
216
+ },
217
+ {
218
+ "name": "myResponse",
219
+ "id": "8687b4dc-eed5-4e37-94ee-adbddff77ba2",
220
+ "position": {
221
+ "x": 1665,
222
+ "y": 580
223
+ },
224
+ "type": "outputNode"
225
+ },
226
+ {
227
+ "name": "myResponse",
228
+ "id": "1617532b-c763-4cae-ac2f-25140228de1c",
229
+ "position": {
230
+ "x": 1665,
231
+ "y": 720
232
+ },
233
+ "type": "outputNode"
234
+ },
235
+ {
236
+ "name": "myResponse",
237
+ "id": "34dd5d75-5db6-4b6a-b0c6-b632846e0ed4",
238
+ "position": {
239
+ "x": 1665,
240
+ "y": 945
241
+ },
242
+ "type": "outputNode"
243
+ },
244
+ {
245
+ "name": "myResponse",
246
+ "id": "fafb0242-4a59-4d88-92bb-74212a16b193",
247
+ "position": {
248
+ "x": 1665,
249
+ "y": 1085
250
+ },
251
+ "type": "outputNode"
252
+ },
253
+ {
254
+ "name": "mySwitch",
255
+ "content": {
256
+ "statements": [
257
+ {
258
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
259
+ "condition": "x > 0"
260
+ },
261
+ {
262
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
263
+ "condition": ""
264
+ }
265
+ ]
266
+ },
267
+ "id": "1c8759e5-b0ca-41af-afaf-c5e640c01d39",
268
+ "position": {
269
+ "x": -1135,
270
+ "y": -50
271
+ },
272
+ "type": "switchNode"
273
+ },
274
+ {
275
+ "name": "mySwitch",
276
+ "content": {
277
+ "statements": [
278
+ {
279
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
280
+ "condition": "x > 0"
281
+ },
282
+ {
283
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
284
+ "condition": ""
285
+ }
286
+ ]
287
+ },
288
+ "id": "55f21a0f-c991-42ff-a487-eca3df6b4d77",
289
+ "position": {
290
+ "x": -1140,
291
+ "y": 160
292
+ },
293
+ "type": "switchNode"
294
+ },
295
+ {
296
+ "name": "mySwitch",
297
+ "content": {
298
+ "statements": [
299
+ {
300
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
301
+ "condition": "x > 0"
302
+ },
303
+ {
304
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
305
+ "condition": ""
306
+ }
307
+ ]
308
+ },
309
+ "id": "2dc1ccc6-cac8-4948-8fc1-26e985f29c0d",
310
+ "position": {
311
+ "x": -1140,
312
+ "y": 375
313
+ },
314
+ "type": "switchNode"
315
+ },
316
+ {
317
+ "name": "mySwitch",
318
+ "content": {
319
+ "statements": [
320
+ {
321
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
322
+ "condition": "x > 0"
323
+ },
324
+ {
325
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
326
+ "condition": ""
327
+ }
328
+ ]
329
+ },
330
+ "id": "836287dc-7c2c-443f-b106-a6ce99cd0e19",
331
+ "position": {
332
+ "x": -1140,
333
+ "y": 595
334
+ },
335
+ "type": "switchNode"
336
+ },
337
+ {
338
+ "name": "mySwitch",
339
+ "content": {
340
+ "statements": [
341
+ {
342
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
343
+ "condition": "x > 0"
344
+ },
345
+ {
346
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
347
+ "condition": ""
348
+ }
349
+ ]
350
+ },
351
+ "id": "6e1d3377-2edb-4699-8616-87f20ab2c1d5",
352
+ "position": {
353
+ "x": -1145,
354
+ "y": 805
355
+ },
356
+ "type": "switchNode"
357
+ },
358
+ {
359
+ "name": "mySwitch",
360
+ "content": {
361
+ "statements": [
362
+ {
363
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
364
+ "condition": "x > 0"
365
+ },
366
+ {
367
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
368
+ "condition": ""
369
+ }
370
+ ]
371
+ },
372
+ "id": "d74fa055-dc34-4ac7-8c04-dee72d5e6411",
373
+ "position": {
374
+ "x": -1145,
375
+ "y": 1020
376
+ },
377
+ "type": "switchNode"
378
+ },
379
+ {
380
+ "name": "mySwitch",
381
+ "content": {
382
+ "statements": [
383
+ {
384
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
385
+ "condition": "x > 0"
386
+ },
387
+ {
388
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
389
+ "condition": ""
390
+ }
391
+ ]
392
+ },
393
+ "id": "20f229f3-36b8-4198-bd5d-31b4224c0681",
394
+ "position": {
395
+ "x": -1145,
396
+ "y": 1250
397
+ },
398
+ "type": "switchNode"
399
+ },
400
+ {
401
+ "name": "myResponse",
402
+ "id": "c6f89787-1255-47db-ad3b-feb5f344adc9",
403
+ "position": {
404
+ "x": -720,
405
+ "y": 15
406
+ },
407
+ "type": "outputNode"
408
+ },
409
+ {
410
+ "name": "myResponse",
411
+ "id": "1fb36939-9403-415f-b906-15a0e92e11d1",
412
+ "position": {
413
+ "x": -725,
414
+ "y": 195
415
+ },
416
+ "type": "outputNode"
417
+ },
418
+ {
419
+ "name": "myResponse",
420
+ "id": "b9c1821e-c2a3-4fa3-8823-4977c8945c79",
421
+ "position": {
422
+ "x": -725,
423
+ "y": 405
424
+ },
425
+ "type": "outputNode"
426
+ },
427
+ {
428
+ "name": "myResponse",
429
+ "id": "b53e84b4-5fba-4a6d-b173-e59e98d7bb9a",
430
+ "position": {
431
+ "x": -730,
432
+ "y": 655
433
+ },
434
+ "type": "outputNode"
435
+ },
436
+ {
437
+ "name": "myResponse",
438
+ "id": "fc61b63e-4330-4939-b742-0fb75449f8d5",
439
+ "position": {
440
+ "x": -715,
441
+ "y": 835
442
+ },
443
+ "type": "outputNode"
444
+ },
445
+ {
446
+ "name": "myResponse",
447
+ "id": "ec4d0fae-08d8-48ac-8d6d-361ca2212269",
448
+ "position": {
449
+ "x": -715,
450
+ "y": 975
451
+ },
452
+ "type": "outputNode"
453
+ },
454
+ {
455
+ "name": "myResponse",
456
+ "id": "5cdc6e2e-f584-4740-9d8f-39a8b991a6b9",
457
+ "position": {
458
+ "x": -715,
459
+ "y": 1200
460
+ },
461
+ "type": "outputNode"
462
+ },
463
+ {
464
+ "name": "myResponse",
465
+ "id": "aa8e6084-824b-416e-8b48-7f529097559d",
466
+ "position": {
467
+ "x": 1640,
468
+ "y": 1320
469
+ },
470
+ "type": "outputNode"
471
+ },
472
+ {
473
+ "name": "mySwitch",
474
+ "content": {
475
+ "statements": [
476
+ {
477
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
478
+ "condition": "x > 0"
479
+ },
480
+ {
481
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
482
+ "condition": ""
483
+ }
484
+ ]
485
+ },
486
+ "id": "e83e22d1-4d01-454a-a601-bb925d5e9cf2",
487
+ "position": {
488
+ "x": 370,
489
+ "y": 35
490
+ },
491
+ "type": "switchNode"
492
+ },
493
+ {
494
+ "name": "mySwitch",
495
+ "content": {
496
+ "statements": [
497
+ {
498
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
499
+ "condition": "x > 0"
500
+ },
501
+ {
502
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
503
+ "condition": ""
504
+ }
505
+ ]
506
+ },
507
+ "id": "f1c2b278-b2f5-4d83-983c-861c60d2aade",
508
+ "position": {
509
+ "x": 365,
510
+ "y": 245
511
+ },
512
+ "type": "switchNode"
513
+ },
514
+ {
515
+ "name": "mySwitch",
516
+ "content": {
517
+ "statements": [
518
+ {
519
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
520
+ "condition": "x > 0"
521
+ },
522
+ {
523
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
524
+ "condition": ""
525
+ }
526
+ ]
527
+ },
528
+ "id": "6d515278-214c-468c-9d9b-cfec1ffb1b26",
529
+ "position": {
530
+ "x": 365,
531
+ "y": 460
532
+ },
533
+ "type": "switchNode"
534
+ },
535
+ {
536
+ "name": "mySwitch",
537
+ "content": {
538
+ "statements": [
539
+ {
540
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
541
+ "condition": "x > 0"
542
+ },
543
+ {
544
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
545
+ "condition": ""
546
+ }
547
+ ]
548
+ },
549
+ "id": "c8a08200-b8de-4b05-85a7-85adadbd5248",
550
+ "position": {
551
+ "x": 365,
552
+ "y": 680
553
+ },
554
+ "type": "switchNode"
555
+ },
556
+ {
557
+ "name": "mySwitch",
558
+ "content": {
559
+ "statements": [
560
+ {
561
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
562
+ "condition": "x > 0"
563
+ },
564
+ {
565
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
566
+ "condition": ""
567
+ }
568
+ ]
569
+ },
570
+ "id": "2409f8f3-a068-4506-8535-1073920177e8",
571
+ "position": {
572
+ "x": 360,
573
+ "y": 890
574
+ },
575
+ "type": "switchNode"
576
+ },
577
+ {
578
+ "name": "mySwitch",
579
+ "content": {
580
+ "statements": [
581
+ {
582
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
583
+ "condition": "x > 0"
584
+ },
585
+ {
586
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
587
+ "condition": ""
588
+ }
589
+ ]
590
+ },
591
+ "id": "c4e60ca7-f2fa-4c47-89fc-72f7b1d822bf",
592
+ "position": {
593
+ "x": 360,
594
+ "y": 1105
595
+ },
596
+ "type": "switchNode"
597
+ },
598
+ {
599
+ "name": "mySwitch",
600
+ "content": {
601
+ "statements": [
602
+ {
603
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
604
+ "condition": "x > 0"
605
+ },
606
+ {
607
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
608
+ "condition": ""
609
+ }
610
+ ]
611
+ },
612
+ "id": "81585f24-3548-4a56-84d6-a7118fbc149d",
613
+ "position": {
614
+ "x": 360,
615
+ "y": 1335
616
+ },
617
+ "type": "switchNode"
618
+ },
619
+ {
620
+ "name": "myResponse",
621
+ "id": "31d059b4-ddc7-4198-b455-a9555fb250c0",
622
+ "position": {
623
+ "x": 785,
624
+ "y": 100
625
+ },
626
+ "type": "outputNode"
627
+ },
628
+ {
629
+ "name": "myResponse",
630
+ "id": "21080fa9-f7c4-4432-b84d-3325d65bd45e",
631
+ "position": {
632
+ "x": 780,
633
+ "y": 280
634
+ },
635
+ "type": "outputNode"
636
+ },
637
+ {
638
+ "name": "myResponse",
639
+ "id": "5daad9ab-d51b-46ee-890a-150985aeecc7",
640
+ "position": {
641
+ "x": 780,
642
+ "y": 490
643
+ },
644
+ "type": "outputNode"
645
+ },
646
+ {
647
+ "name": "myResponse",
648
+ "id": "bf3d30af-ced2-4454-b7cc-5b672e8a6410",
649
+ "position": {
650
+ "x": 775,
651
+ "y": 740
652
+ },
653
+ "type": "outputNode"
654
+ },
655
+ {
656
+ "name": "myResponse",
657
+ "id": "c4a859ca-9372-4c84-bc6c-c40149000fc7",
658
+ "position": {
659
+ "x": 790,
660
+ "y": 920
661
+ },
662
+ "type": "outputNode"
663
+ },
664
+ {
665
+ "name": "myResponse",
666
+ "id": "6330e112-67b7-4f00-bd7d-7f6dedd2e1b8",
667
+ "position": {
668
+ "x": 790,
669
+ "y": 1060
670
+ },
671
+ "type": "outputNode"
672
+ },
673
+ {
674
+ "name": "myResponse",
675
+ "id": "e23dba6e-f2c7-475d-8f1b-2590becb50e6",
676
+ "position": {
677
+ "x": 790,
678
+ "y": 1285
679
+ },
680
+ "type": "outputNode"
681
+ },
682
+ {
683
+ "name": "mySwitch",
684
+ "content": {
685
+ "statements": [
686
+ {
687
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
688
+ "condition": "x > 0"
689
+ },
690
+ {
691
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
692
+ "condition": ""
693
+ }
694
+ ]
695
+ },
696
+ "id": "9196e80f-ebae-4108-8906-4e806aa9ee63",
697
+ "position": {
698
+ "x": -395,
699
+ "y": 35
700
+ },
701
+ "type": "switchNode"
702
+ },
703
+ {
704
+ "name": "mySwitch",
705
+ "content": {
706
+ "statements": [
707
+ {
708
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
709
+ "condition": "x > 0"
710
+ },
711
+ {
712
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
713
+ "condition": ""
714
+ }
715
+ ]
716
+ },
717
+ "id": "9a8fbc84-b3a7-4552-a1f1-a42af30540a7",
718
+ "position": {
719
+ "x": -400,
720
+ "y": 245
721
+ },
722
+ "type": "switchNode"
723
+ },
724
+ {
725
+ "name": "mySwitch",
726
+ "content": {
727
+ "statements": [
728
+ {
729
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
730
+ "condition": "x > 0"
731
+ },
732
+ {
733
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
734
+ "condition": ""
735
+ }
736
+ ]
737
+ },
738
+ "id": "197c88f4-aa3f-4e81-8e2f-66e6a0debd97",
739
+ "position": {
740
+ "x": -400,
741
+ "y": 460
742
+ },
743
+ "type": "switchNode"
744
+ },
745
+ {
746
+ "name": "mySwitch",
747
+ "content": {
748
+ "statements": [
749
+ {
750
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
751
+ "condition": "x > 0"
752
+ },
753
+ {
754
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
755
+ "condition": ""
756
+ }
757
+ ]
758
+ },
759
+ "id": "847dc1c2-b30c-4d48-8ec9-1f74f2b23050",
760
+ "position": {
761
+ "x": -400,
762
+ "y": 680
763
+ },
764
+ "type": "switchNode"
765
+ },
766
+ {
767
+ "name": "mySwitch",
768
+ "content": {
769
+ "statements": [
770
+ {
771
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
772
+ "condition": "x > 0"
773
+ },
774
+ {
775
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
776
+ "condition": ""
777
+ }
778
+ ]
779
+ },
780
+ "id": "e329e84a-23f6-46af-9af6-b646632996d9",
781
+ "position": {
782
+ "x": -405,
783
+ "y": 890
784
+ },
785
+ "type": "switchNode"
786
+ },
787
+ {
788
+ "name": "mySwitch",
789
+ "content": {
790
+ "statements": [
791
+ {
792
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
793
+ "condition": "x > 0"
794
+ },
795
+ {
796
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
797
+ "condition": ""
798
+ }
799
+ ]
800
+ },
801
+ "id": "d8a99feb-d28a-46de-b122-5255c4e4f4cb",
802
+ "position": {
803
+ "x": -405,
804
+ "y": 1105
805
+ },
806
+ "type": "switchNode"
807
+ },
808
+ {
809
+ "name": "mySwitch",
810
+ "content": {
811
+ "statements": [
812
+ {
813
+ "id": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c",
814
+ "condition": "x > 0"
815
+ },
816
+ {
817
+ "id": "b7886070-b96b-4299-94f6-d89c8dd416d2",
818
+ "condition": ""
819
+ }
820
+ ]
821
+ },
822
+ "id": "b73c6533-389d-415e-a0f8-9d5ef586fb7a",
823
+ "position": {
824
+ "x": -405,
825
+ "y": 1335
826
+ },
827
+ "type": "switchNode"
828
+ },
829
+ {
830
+ "name": "myResponse",
831
+ "id": "4a456d81-f11a-429c-897b-4eb7b0d19b04",
832
+ "position": {
833
+ "x": 20,
834
+ "y": 100
835
+ },
836
+ "type": "outputNode"
837
+ },
838
+ {
839
+ "name": "myResponse",
840
+ "id": "4ff1d27c-df1e-496c-ad60-d49c6dbcf714",
841
+ "position": {
842
+ "x": 15,
843
+ "y": 280
844
+ },
845
+ "type": "outputNode"
846
+ },
847
+ {
848
+ "name": "myResponse",
849
+ "id": "081a0276-d395-4643-8ac1-e71541f1241a",
850
+ "position": {
851
+ "x": 15,
852
+ "y": 490
853
+ },
854
+ "type": "outputNode"
855
+ },
856
+ {
857
+ "name": "myResponse",
858
+ "id": "5573e872-9a45-4913-abaa-4952b6eb1310",
859
+ "position": {
860
+ "x": 10,
861
+ "y": 740
862
+ },
863
+ "type": "outputNode"
864
+ },
865
+ {
866
+ "name": "myResponse",
867
+ "id": "c0955f45-ce72-4538-9428-100361d98220",
868
+ "position": {
869
+ "x": 25,
870
+ "y": 920
871
+ },
872
+ "type": "outputNode"
873
+ },
874
+ {
875
+ "name": "myResponse",
876
+ "id": "3e34276c-0dd8-4a82-a8e9-7680b4f1f01e",
877
+ "position": {
878
+ "x": 25,
879
+ "y": 1060
880
+ },
881
+ "type": "outputNode"
882
+ },
883
+ {
884
+ "name": "myResponse",
885
+ "id": "aab6cb6a-51e2-4876-91c0-d9d81924a5cb",
886
+ "position": {
887
+ "x": 25,
888
+ "y": 1285
889
+ },
890
+ "type": "outputNode"
891
+ }
892
+ ],
893
+ "edges": [
894
+ {
895
+ "id": "eb0f620a-3a0f-4471-97c6-b3956c1c134d",
896
+ "sourceId": "85109aa1-5cc3-4ca9-bea5-be5f45939117",
897
+ "type": "edge",
898
+ "targetId": "74000485-b6b3-497b-ad49-01e62bb5f791",
899
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
900
+ },
901
+ {
902
+ "id": "6ac1aaa8-b787-411c-8e50-f2ddedc5bc64",
903
+ "sourceId": "74000485-b6b3-497b-ad49-01e62bb5f791",
904
+ "type": "edge",
905
+ "targetId": "8e9d27fe-45cf-49fe-8260-007cf81e8bea",
906
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
907
+ },
908
+ {
909
+ "id": "6f7fdcd9-5ec1-4a10-ab09-f1d8d51f426e",
910
+ "type": "edge",
911
+ "sourceId": "07cb83ea-52c3-429d-9408-5e64064639bb",
912
+ "targetId": "87e47130-ce8e-4999-bac2-59e97d589469",
913
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
914
+ },
915
+ {
916
+ "id": "7cf8b1f5-9e83-418a-ac50-c0c70c807f20",
917
+ "type": "edge",
918
+ "sourceId": "87e47130-ce8e-4999-bac2-59e97d589469",
919
+ "targetId": "98999811-8ee2-44ed-bf7b-09b8db2d076e",
920
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
921
+ },
922
+ {
923
+ "id": "da0ee74a-9b04-4786-96c8-90530d797df3",
924
+ "type": "edge",
925
+ "sourceId": "6ef1efc7-2f21-4cb2-9c4a-144faa062b80",
926
+ "targetId": "b1cf7a2e-5d9b-42dd-a4a9-b58cb6e96f10",
927
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
928
+ },
929
+ {
930
+ "id": "63b5ba63-198e-4eff-9b46-31782dad5b7c",
931
+ "sourceId": "8e9d27fe-45cf-49fe-8260-007cf81e8bea",
932
+ "type": "edge",
933
+ "targetId": "07cb83ea-52c3-429d-9408-5e64064639bb",
934
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
935
+ },
936
+ {
937
+ "id": "fdb96afe-2a33-496e-af6b-a91eb70040e8",
938
+ "sourceId": "98999811-8ee2-44ed-bf7b-09b8db2d076e",
939
+ "type": "edge",
940
+ "targetId": "6ef1efc7-2f21-4cb2-9c4a-144faa062b80",
941
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
942
+ },
943
+ {
944
+ "id": "2d3b6096-2652-4191-bb0b-a756fe4d0616",
945
+ "sourceId": "85109aa1-5cc3-4ca9-bea5-be5f45939117",
946
+ "type": "edge",
947
+ "targetId": "1cd783f1-c8e2-4cad-86b4-20877f808515",
948
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
949
+ },
950
+ {
951
+ "id": "0430c8f3-88ec-4738-8456-3e52f22b4bba",
952
+ "sourceId": "74000485-b6b3-497b-ad49-01e62bb5f791",
953
+ "type": "edge",
954
+ "targetId": "1117ba79-ba20-4a55-993f-89ed430f7beb",
955
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
956
+ },
957
+ {
958
+ "id": "685376d8-4562-4ae8-b757-2b5b1e990a24",
959
+ "sourceId": "8e9d27fe-45cf-49fe-8260-007cf81e8bea",
960
+ "type": "edge",
961
+ "targetId": "a654c6ee-e307-4a3a-afbf-66b97a8520e9",
962
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
963
+ },
964
+ {
965
+ "id": "fe2ebfb5-4e0a-4bb3-b79c-20372bb47a65",
966
+ "sourceId": "07cb83ea-52c3-429d-9408-5e64064639bb",
967
+ "type": "edge",
968
+ "targetId": "fd99ddc9-e96d-41d6-9286-187fbcc9d2fb",
969
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
970
+ },
971
+ {
972
+ "id": "9fb1a722-cea0-4c77-8ca6-8f374bb641eb",
973
+ "sourceId": "87e47130-ce8e-4999-bac2-59e97d589469",
974
+ "type": "edge",
975
+ "targetId": "8687b4dc-eed5-4e37-94ee-adbddff77ba2",
976
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
977
+ },
978
+ {
979
+ "id": "3c72fb7d-1dc5-47f7-9e82-427c37c8c0ec",
980
+ "sourceId": "98999811-8ee2-44ed-bf7b-09b8db2d076e",
981
+ "type": "edge",
982
+ "targetId": "1617532b-c763-4cae-ac2f-25140228de1c",
983
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
984
+ },
985
+ {
986
+ "id": "93d5956f-2f84-43dc-be77-0c1682ce7d18",
987
+ "sourceId": "6ef1efc7-2f21-4cb2-9c4a-144faa062b80",
988
+ "type": "edge",
989
+ "targetId": "34dd5d75-5db6-4b6a-b0c6-b632846e0ed4",
990
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
991
+ },
992
+ {
993
+ "id": "26d045b9-1c18-4ee4-a191-9d7da8ea3b9e",
994
+ "sourceId": "b1cf7a2e-5d9b-42dd-a4a9-b58cb6e96f10",
995
+ "type": "edge",
996
+ "targetId": "fafb0242-4a59-4d88-92bb-74212a16b193",
997
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
998
+ },
999
+ {
1000
+ "id": "8fb77b73-16c5-4cd4-9596-81cfeefe6491",
1001
+ "type": "edge",
1002
+ "sourceId": "1c8759e5-b0ca-41af-afaf-c5e640c01d39",
1003
+ "targetId": "55f21a0f-c991-42ff-a487-eca3df6b4d77",
1004
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1005
+ },
1006
+ {
1007
+ "id": "cc6e4716-6da6-434b-abda-480298df501d",
1008
+ "type": "edge",
1009
+ "sourceId": "55f21a0f-c991-42ff-a487-eca3df6b4d77",
1010
+ "targetId": "2dc1ccc6-cac8-4948-8fc1-26e985f29c0d",
1011
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1012
+ },
1013
+ {
1014
+ "id": "5e5d4ecd-9032-4c7b-b78e-6c3f586345a4",
1015
+ "type": "edge",
1016
+ "sourceId": "836287dc-7c2c-443f-b106-a6ce99cd0e19",
1017
+ "targetId": "6e1d3377-2edb-4699-8616-87f20ab2c1d5",
1018
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1019
+ },
1020
+ {
1021
+ "id": "718f7bd6-60e5-4b5d-82b5-211fd01bcf9f",
1022
+ "type": "edge",
1023
+ "sourceId": "6e1d3377-2edb-4699-8616-87f20ab2c1d5",
1024
+ "targetId": "d74fa055-dc34-4ac7-8c04-dee72d5e6411",
1025
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1026
+ },
1027
+ {
1028
+ "id": "de5850ca-e21a-4192-898f-fca6dd4a2cfc",
1029
+ "type": "edge",
1030
+ "sourceId": "2dc1ccc6-cac8-4948-8fc1-26e985f29c0d",
1031
+ "targetId": "836287dc-7c2c-443f-b106-a6ce99cd0e19",
1032
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1033
+ },
1034
+ {
1035
+ "id": "2e002de8-32a6-4497-9582-e28d35d5b7c5",
1036
+ "type": "edge",
1037
+ "sourceId": "d74fa055-dc34-4ac7-8c04-dee72d5e6411",
1038
+ "targetId": "20f229f3-36b8-4198-bd5d-31b4224c0681",
1039
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1040
+ },
1041
+ {
1042
+ "id": "a060093f-45f7-4dbd-9e45-3d1cc4bf4ac6",
1043
+ "type": "edge",
1044
+ "sourceId": "1c8759e5-b0ca-41af-afaf-c5e640c01d39",
1045
+ "targetId": "c6f89787-1255-47db-ad3b-feb5f344adc9",
1046
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1047
+ },
1048
+ {
1049
+ "id": "ba428922-3a70-4add-b166-66014ac6d24f",
1050
+ "type": "edge",
1051
+ "sourceId": "55f21a0f-c991-42ff-a487-eca3df6b4d77",
1052
+ "targetId": "1fb36939-9403-415f-b906-15a0e92e11d1",
1053
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1054
+ },
1055
+ {
1056
+ "id": "7dd08b8e-067a-419a-9d3a-a14faa982228",
1057
+ "type": "edge",
1058
+ "sourceId": "2dc1ccc6-cac8-4948-8fc1-26e985f29c0d",
1059
+ "targetId": "b9c1821e-c2a3-4fa3-8823-4977c8945c79",
1060
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1061
+ },
1062
+ {
1063
+ "id": "16fdf099-072f-40a6-a8fa-c3e0cc51c688",
1064
+ "type": "edge",
1065
+ "sourceId": "836287dc-7c2c-443f-b106-a6ce99cd0e19",
1066
+ "targetId": "b53e84b4-5fba-4a6d-b173-e59e98d7bb9a",
1067
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1068
+ },
1069
+ {
1070
+ "id": "4b46eb1f-2868-4ea1-8339-2f66650d4b7a",
1071
+ "type": "edge",
1072
+ "sourceId": "6e1d3377-2edb-4699-8616-87f20ab2c1d5",
1073
+ "targetId": "fc61b63e-4330-4939-b742-0fb75449f8d5",
1074
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1075
+ },
1076
+ {
1077
+ "id": "20106f37-7f8d-4a2a-a039-ceca7f55f7af",
1078
+ "type": "edge",
1079
+ "sourceId": "d74fa055-dc34-4ac7-8c04-dee72d5e6411",
1080
+ "targetId": "ec4d0fae-08d8-48ac-8d6d-361ca2212269",
1081
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1082
+ },
1083
+ {
1084
+ "id": "380a1d89-f8d1-4d3c-980f-47908a5ea56f",
1085
+ "type": "edge",
1086
+ "sourceId": "20f229f3-36b8-4198-bd5d-31b4224c0681",
1087
+ "targetId": "5cdc6e2e-f584-4740-9d8f-39a8b991a6b9",
1088
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1089
+ },
1090
+ {
1091
+ "id": "d500507a-03fd-45da-a72c-6dafc43092d7",
1092
+ "sourceId": "c79e4c8f-70e5-426e-9e37-99a129937357",
1093
+ "type": "edge",
1094
+ "targetId": "1c8759e5-b0ca-41af-afaf-c5e640c01d39"
1095
+ },
1096
+ {
1097
+ "id": "ef6dac87-ff5e-4cb8-971b-9fca9a1d7c70",
1098
+ "sourceId": "b1cf7a2e-5d9b-42dd-a4a9-b58cb6e96f10",
1099
+ "type": "edge",
1100
+ "targetId": "aa8e6084-824b-416e-8b48-7f529097559d",
1101
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1102
+ },
1103
+ {
1104
+ "id": "59deaa15-a5a7-4cd6-b8be-0a9422077973",
1105
+ "type": "edge",
1106
+ "sourceId": "e83e22d1-4d01-454a-a601-bb925d5e9cf2",
1107
+ "targetId": "f1c2b278-b2f5-4d83-983c-861c60d2aade",
1108
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1109
+ },
1110
+ {
1111
+ "id": "adf3dd09-2777-4615-b8f8-9e81353ca18b",
1112
+ "type": "edge",
1113
+ "sourceId": "f1c2b278-b2f5-4d83-983c-861c60d2aade",
1114
+ "targetId": "6d515278-214c-468c-9d9b-cfec1ffb1b26",
1115
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1116
+ },
1117
+ {
1118
+ "id": "117101f9-685b-45d0-b07c-96e1a7ee10c2",
1119
+ "type": "edge",
1120
+ "sourceId": "c8a08200-b8de-4b05-85a7-85adadbd5248",
1121
+ "targetId": "2409f8f3-a068-4506-8535-1073920177e8",
1122
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1123
+ },
1124
+ {
1125
+ "id": "88761e35-e9e6-41d3-b93a-6fee0997865e",
1126
+ "type": "edge",
1127
+ "sourceId": "2409f8f3-a068-4506-8535-1073920177e8",
1128
+ "targetId": "c4e60ca7-f2fa-4c47-89fc-72f7b1d822bf",
1129
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1130
+ },
1131
+ {
1132
+ "id": "e6b660ca-88f9-41eb-a0c3-3f3939717f76",
1133
+ "type": "edge",
1134
+ "sourceId": "6d515278-214c-468c-9d9b-cfec1ffb1b26",
1135
+ "targetId": "c8a08200-b8de-4b05-85a7-85adadbd5248",
1136
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1137
+ },
1138
+ {
1139
+ "id": "c23019e8-5b2f-47fa-830e-00f264b03459",
1140
+ "type": "edge",
1141
+ "sourceId": "c4e60ca7-f2fa-4c47-89fc-72f7b1d822bf",
1142
+ "targetId": "81585f24-3548-4a56-84d6-a7118fbc149d",
1143
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1144
+ },
1145
+ {
1146
+ "id": "96ce6136-707f-490c-bb1e-5a0ab0a070d1",
1147
+ "type": "edge",
1148
+ "sourceId": "e83e22d1-4d01-454a-a601-bb925d5e9cf2",
1149
+ "targetId": "31d059b4-ddc7-4198-b455-a9555fb250c0",
1150
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1151
+ },
1152
+ {
1153
+ "id": "c9940cdf-608b-45dd-b74c-2ccbbda61a31",
1154
+ "type": "edge",
1155
+ "sourceId": "f1c2b278-b2f5-4d83-983c-861c60d2aade",
1156
+ "targetId": "21080fa9-f7c4-4432-b84d-3325d65bd45e",
1157
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1158
+ },
1159
+ {
1160
+ "id": "33fdbbd9-f35a-4387-baab-3d378259cf4f",
1161
+ "type": "edge",
1162
+ "sourceId": "6d515278-214c-468c-9d9b-cfec1ffb1b26",
1163
+ "targetId": "5daad9ab-d51b-46ee-890a-150985aeecc7",
1164
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1165
+ },
1166
+ {
1167
+ "id": "11004d88-cc92-4545-b95c-72f2868176d1",
1168
+ "type": "edge",
1169
+ "sourceId": "c8a08200-b8de-4b05-85a7-85adadbd5248",
1170
+ "targetId": "bf3d30af-ced2-4454-b7cc-5b672e8a6410",
1171
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1172
+ },
1173
+ {
1174
+ "id": "8f18fcce-60f5-429f-8469-cb190ee83293",
1175
+ "type": "edge",
1176
+ "sourceId": "2409f8f3-a068-4506-8535-1073920177e8",
1177
+ "targetId": "c4a859ca-9372-4c84-bc6c-c40149000fc7",
1178
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1179
+ },
1180
+ {
1181
+ "id": "326f7ec3-9f13-4376-9f28-62d4d86ee49a",
1182
+ "type": "edge",
1183
+ "sourceId": "c4e60ca7-f2fa-4c47-89fc-72f7b1d822bf",
1184
+ "targetId": "6330e112-67b7-4f00-bd7d-7f6dedd2e1b8",
1185
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1186
+ },
1187
+ {
1188
+ "id": "9738aa7d-620f-4edc-9336-d45cae0fca55",
1189
+ "type": "edge",
1190
+ "sourceId": "81585f24-3548-4a56-84d6-a7118fbc149d",
1191
+ "targetId": "e23dba6e-f2c7-475d-8f1b-2590becb50e6",
1192
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1193
+ },
1194
+ {
1195
+ "id": "61825d97-0df7-422a-803b-466ef44fe100",
1196
+ "type": "edge",
1197
+ "sourceId": "9196e80f-ebae-4108-8906-4e806aa9ee63",
1198
+ "targetId": "9a8fbc84-b3a7-4552-a1f1-a42af30540a7",
1199
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1200
+ },
1201
+ {
1202
+ "id": "5c20befe-417d-4149-a921-685061591928",
1203
+ "type": "edge",
1204
+ "sourceId": "9a8fbc84-b3a7-4552-a1f1-a42af30540a7",
1205
+ "targetId": "197c88f4-aa3f-4e81-8e2f-66e6a0debd97",
1206
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1207
+ },
1208
+ {
1209
+ "id": "7938e327-cecc-499d-ae32-b6c3175fdfa4",
1210
+ "type": "edge",
1211
+ "sourceId": "847dc1c2-b30c-4d48-8ec9-1f74f2b23050",
1212
+ "targetId": "e329e84a-23f6-46af-9af6-b646632996d9",
1213
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1214
+ },
1215
+ {
1216
+ "id": "71485be5-328e-457b-9669-72b133680fdc",
1217
+ "type": "edge",
1218
+ "sourceId": "e329e84a-23f6-46af-9af6-b646632996d9",
1219
+ "targetId": "d8a99feb-d28a-46de-b122-5255c4e4f4cb",
1220
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1221
+ },
1222
+ {
1223
+ "id": "31445c2f-a605-4b21-903e-ca1e32f4cb0e",
1224
+ "type": "edge",
1225
+ "sourceId": "197c88f4-aa3f-4e81-8e2f-66e6a0debd97",
1226
+ "targetId": "847dc1c2-b30c-4d48-8ec9-1f74f2b23050",
1227
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1228
+ },
1229
+ {
1230
+ "id": "909762a8-466d-43b7-b015-e23fa10b0073",
1231
+ "type": "edge",
1232
+ "sourceId": "d8a99feb-d28a-46de-b122-5255c4e4f4cb",
1233
+ "targetId": "b73c6533-389d-415e-a0f8-9d5ef586fb7a",
1234
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1235
+ },
1236
+ {
1237
+ "id": "6a0899dd-0ca4-4c3a-94b5-2dc0d8c4e3fc",
1238
+ "type": "edge",
1239
+ "sourceId": "9196e80f-ebae-4108-8906-4e806aa9ee63",
1240
+ "targetId": "4a456d81-f11a-429c-897b-4eb7b0d19b04",
1241
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1242
+ },
1243
+ {
1244
+ "id": "1e64124a-9dae-47e1-b47b-13f3fe670f72",
1245
+ "type": "edge",
1246
+ "sourceId": "9a8fbc84-b3a7-4552-a1f1-a42af30540a7",
1247
+ "targetId": "4ff1d27c-df1e-496c-ad60-d49c6dbcf714",
1248
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1249
+ },
1250
+ {
1251
+ "id": "b451e6cd-eef2-44b7-9a0b-afa2a648a9f0",
1252
+ "type": "edge",
1253
+ "sourceId": "197c88f4-aa3f-4e81-8e2f-66e6a0debd97",
1254
+ "targetId": "081a0276-d395-4643-8ac1-e71541f1241a",
1255
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1256
+ },
1257
+ {
1258
+ "id": "697c18b8-c180-4b5a-a053-8f880a8548d3",
1259
+ "type": "edge",
1260
+ "sourceId": "847dc1c2-b30c-4d48-8ec9-1f74f2b23050",
1261
+ "targetId": "5573e872-9a45-4913-abaa-4952b6eb1310",
1262
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1263
+ },
1264
+ {
1265
+ "id": "401b183c-5c4f-4dc0-b516-37a88ff25017",
1266
+ "type": "edge",
1267
+ "sourceId": "e329e84a-23f6-46af-9af6-b646632996d9",
1268
+ "targetId": "c0955f45-ce72-4538-9428-100361d98220",
1269
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1270
+ },
1271
+ {
1272
+ "id": "b4ac70fe-719c-4828-9d5e-f407570e0dd5",
1273
+ "type": "edge",
1274
+ "sourceId": "d8a99feb-d28a-46de-b122-5255c4e4f4cb",
1275
+ "targetId": "3e34276c-0dd8-4a82-a8e9-7680b4f1f01e",
1276
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1277
+ },
1278
+ {
1279
+ "id": "3719f12f-4aac-4c1e-ba13-13c93586da9a",
1280
+ "type": "edge",
1281
+ "sourceId": "b73c6533-389d-415e-a0f8-9d5ef586fb7a",
1282
+ "targetId": "aab6cb6a-51e2-4876-91c0-d9d81924a5cb",
1283
+ "sourceHandle": "bad6dca2-62a1-48fd-8f83-1f3b69ae050c"
1284
+ },
1285
+ {
1286
+ "id": "ccfecc78-acb0-4d55-89bb-b424f45d916d",
1287
+ "sourceId": "20f229f3-36b8-4198-bd5d-31b4224c0681",
1288
+ "type": "edge",
1289
+ "targetId": "9196e80f-ebae-4108-8906-4e806aa9ee63",
1290
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1291
+ },
1292
+ {
1293
+ "id": "ccd1d3ab-6bd5-4127-90ce-3c4fc247f978",
1294
+ "sourceId": "b73c6533-389d-415e-a0f8-9d5ef586fb7a",
1295
+ "type": "edge",
1296
+ "targetId": "e83e22d1-4d01-454a-a601-bb925d5e9cf2",
1297
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1298
+ },
1299
+ {
1300
+ "id": "fcf29db8-5933-4ef9-b68c-c1131e7e6bfb",
1301
+ "sourceId": "81585f24-3548-4a56-84d6-a7118fbc149d",
1302
+ "type": "edge",
1303
+ "targetId": "85109aa1-5cc3-4ca9-bea5-be5f45939117",
1304
+ "sourceHandle": "b7886070-b96b-4299-94f6-d89c8dd416d2"
1305
+ }
1306
+ ]
1307
+ }