@xiaobuyu/nodesign 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +156 -106
- package/bin/nodesign.js +0 -0
- package/package.json +1 -1
- package/server/api/README.md +45 -45
- package/server/api/_guard.js +75 -75
- package/server/api/admin.js +187 -187
- package/server/api/assets/docx-page.js +103 -103
- package/server/api/assets/helpers.js +42 -22
- package/server/api/assets/notes.js +194 -144
- package/server/api/assets.js +891 -896
- package/server/api/board.js +134 -57
- package/server/api/browse.js +138 -138
- package/server/api/canvas.js +444 -444
- package/server/api/chatai.js +324 -324
- package/server/api/exports/build-standalone.js +980 -980
- package/server/api/exports/cards.js +118 -118
- package/server/api/exports/docx-pdf.js +46 -46
- package/server/api/exports/export-page.js +142 -142
- package/server/api/exports/handoff.js +147 -147
- package/server/api/exports.js +690 -690
- package/server/api/instruction.js +75 -75
- package/server/api/me.js +116 -116
- package/server/api/memory.js +185 -185
- package/server/api/pending-changes.js +366 -366
- package/server/api/plugins.js +164 -164
- package/server/api/projects.js +220 -220
- package/server/api/publish.js +64 -64
- package/server/api/recent.js +73 -73
- package/server/api/sessions.js +589 -589
- package/server/api/skills.js +77 -77
- package/server/api/standalone-fit.js +168 -168
- package/server/api/turn-compose.js +180 -180
- package/server/api/turn-inflight.js +44 -44
- package/server/auth/README.md +17 -17
- package/server/auth/middleware.js +138 -138
- package/server/auth/origin-guard.js +71 -71
- package/server/auth/session.js +108 -108
- package/server/auth/tier.js +113 -113
- package/server/auth/users-store.js +348 -348
- package/server/edit/README.md +29 -29
- package/server/engine/README.md +113 -113
- package/server/engine/agent/agent-shared.js +550 -550
- package/server/engine/agent/auto-mode-default-hard-deny.txt +4 -4
- package/server/engine/agent/auto-mode-rules.js +78 -78
- package/server/engine/agent/context.js +418 -418
- package/server/engine/agent/events.js +465 -464
- package/server/engine/agent/hooks/canvas-validate.js +199 -199
- package/server/engine/agent/hooks/failure.js +120 -120
- package/server/engine/agent/hooks/file-events.js +75 -75
- package/server/engine/agent/hooks/lifecycle.js +233 -233
- package/server/engine/agent/hooks/post-canvas-focus.js +80 -80
- package/server/engine/agent/hooks/post-guidance.js +206 -206
- package/server/engine/agent/hooks/post-subagent-report.js +104 -104
- package/server/engine/agent/hooks/post-trim.js +58 -58
- package/server/engine/agent/hooks/pre-board-neighborhood.js +34 -34
- package/server/engine/agent/hooks/pre-defaults.js +84 -84
- package/server/engine/agent/hooks/pre-injectors.js +277 -277
- package/server/engine/agent/hooks/pre-performance-log-guard.js +78 -78
- package/server/engine/agent/hooks/pre-starter-files.js +61 -61
- package/server/engine/agent/hooks/pre-workspace-scope-guard.js +78 -78
- package/server/engine/agent/hooks/site-validate.js +94 -94
- package/server/engine/agent/hooks/tool-prompts.js +31 -31
- package/server/engine/agent/hooks/turn-state-memory.js +56 -56
- package/server/engine/agent/hooks/user-prompt-submit.js +258 -215
- package/server/engine/agent/hooks.js +354 -354
- package/server/engine/agent/init-contract.js +69 -69
- package/server/engine/agent/isolation.js +159 -159
- package/server/engine/agent/model-table.js +292 -292
- package/server/engine/agent/plugin-loader.js +266 -266
- package/server/engine/agent/prompts/nodesign-prelude.md +388 -336
- package/server/engine/agent/prompts/tools/ask-user-question-protocol.md +71 -71
- package/server/engine/agent/prompts/tools/direct-edit-protocol.md +98 -98
- package/server/engine/agent/prompts/tools/generate-image-cookbook.gemini-gateway.md +583 -583
- package/server/engine/agent/prompts/tools/generate-image-cookbook.md +483 -483
- package/server/engine/agent/prompts/tools/hybrid-reference.md +100 -100
- package/server/engine/agent/prompts/tools/paint-still-cookbook.md +270 -270
- package/server/engine/agent/prompts/tools/roll-film-cookbook.md +70 -70
- package/server/engine/agent/prompts/tools/site-reference.md +106 -106
- package/server/engine/agent/prompts/tools/tweaks-syntax.md +125 -125
- package/server/engine/agent/prompts/tools/vision-checker-dispatch.md +48 -48
- package/server/engine/agent/session-loop.js +1035 -1024
- package/server/engine/agent/session-model.js +164 -164
- package/server/engine/agent/skill.js +204 -204
- package/server/engine/agent/task-events.js +78 -78
- package/server/engine/agents/ds-extractor.md +132 -132
- package/server/engine/agents/explorer.md +190 -190
- package/server/engine/agents/index.js +230 -230
- package/server/engine/agents/schemas/design-system.json +156 -156
- package/server/engine/agents/schemas/tweak-schema.json +113 -113
- package/server/engine/agents/tweak-proposer.md +127 -127
- package/server/engine/agents/vision-checker.md +254 -254
- package/server/engine/browse/capture.js +422 -422
- package/server/engine/browse/card.js +137 -137
- package/server/engine/browse/handover.js +59 -59
- package/server/engine/browse/page-digest.js +119 -119
- package/server/engine/browse/refs.js +196 -196
- package/server/engine/browse/registry.js +307 -307
- package/server/engine/browse/screencast.js +170 -170
- package/server/engine/browse/state.js +121 -121
- package/server/engine/chatai/chat-log.js +79 -79
- package/server/engine/chatai/index.js +193 -193
- package/server/engine/chatai/openai-compat.js +152 -152
- package/server/engine/chatai/orchestrate.js +309 -309
- package/server/engine/chatai/perform.js +40 -40
- package/server/engine/chatai/summarize.js +79 -79
- package/server/engine/mcp/capability-gate.js +52 -52
- package/server/engine/mcp/index.js +351 -339
- package/server/engine/mcp/param-sanitizer.js +142 -142
- package/server/engine/mcp/tools/arrange-on-board.js +124 -124
- package/server/engine/mcp/tools/artifact-session.js +278 -278
- package/server/engine/mcp/tools/browse-computer.js +421 -421
- package/server/engine/mcp/tools/browse-find-batch.js +183 -183
- package/server/engine/mcp/tools/browse-screenshot.js +157 -157
- package/server/engine/mcp/tools/browse.js +480 -480
- package/server/engine/mcp/tools/build-docx.js +101 -101
- package/server/engine/mcp/tools/clear-pending-changes.js +99 -99
- package/server/engine/mcp/tools/create-on-board.js +152 -155
- package/server/engine/mcp/tools/crystallize-skill.js +168 -168
- package/server/engine/mcp/tools/edit-sketch.js +167 -0
- package/server/engine/mcp/tools/explain-style.js +237 -237
- package/server/engine/mcp/tools/export-handoff.js +133 -133
- package/server/engine/mcp/tools/expose-tweaks.js +149 -149
- package/server/engine/mcp/tools/generate-image.js +842 -842
- package/server/engine/mcp/tools/get-computed-styles.js +164 -164
- package/server/engine/mcp/tools/get-pending-changes.js +205 -205
- package/server/engine/mcp/tools/h3box-ssh.js +84 -84
- package/server/engine/mcp/tools/helpers/acquire-page.js +82 -82
- package/server/engine/mcp/tools/helpers/motion-lab.js +554 -554
- package/server/engine/mcp/tools/helpers/motion-scroll.js +112 -112
- package/server/engine/mcp/tools/helpers/perception-page.js +215 -215
- package/server/engine/mcp/tools/helpers/reference-download.js +103 -103
- package/server/engine/mcp/tools/helpers/rembg-bridge.py +80 -80
- package/server/engine/mcp/tools/helpers/shot-pipeline.js +280 -280
- package/server/engine/mcp/tools/highlight.js +68 -68
- package/server/engine/mcp/tools/list-pages.js +222 -222
- package/server/engine/mcp/tools/look-at-board.js +124 -0
- package/server/engine/mcp/tools/lookup-tags.js +59 -59
- package/server/engine/mcp/tools/navigate-to-page.js +60 -60
- package/server/engine/mcp/tools/organize-board.js +64 -64
- package/server/engine/mcp/tools/paint-still.js +434 -434
- package/server/engine/mcp/tools/pin-to-board.js +130 -130
- package/server/engine/mcp/tools/preview-deck.js +130 -130
- package/server/engine/mcp/tools/profile-scroll.js +305 -305
- package/server/engine/mcp/tools/publish-site.js +102 -102
- package/server/engine/mcp/tools/query-elements.js +195 -195
- package/server/engine/mcp/tools/read-board.js +190 -103
- package/server/engine/mcp/tools/read-document.js +93 -93
- package/server/engine/mcp/tools/read-page.js +264 -264
- package/server/engine/mcp/tools/read-tavern-json.js +143 -143
- package/server/engine/mcp/tools/read-user-view.js +59 -0
- package/server/engine/mcp/tools/record-decision.js +140 -140
- package/server/engine/mcp/tools/relate-on-board.js +112 -110
- package/server/engine/mcp/tools/report-issue.js +115 -115
- package/server/engine/mcp/tools/roll-film.js +266 -266
- package/server/engine/mcp/tools/screenshot-docx.js +138 -138
- package/server/engine/mcp/tools/screenshot-url.js +195 -195
- package/server/engine/mcp/tools/screenshot.js +583 -583
- package/server/engine/mcp/tools/sketch-on-board.js +337 -0
- package/server/engine/mcp/tools/tier-gate.js +96 -96
- package/server/engine/mcp/tools/trace-motion.js +215 -215
- package/server/engine/mcp/tools/web-search.js +548 -548
- package/server/engine/mcp/tools/write-on-board.js +130 -0
- package/server/engine/motion/inventory.js +349 -349
- package/server/engine/perception/session.js +235 -235
- package/server/engine/plugins/nodesign/.claude-plugin/plugin.json +5 -5
- package/server/engine/plugins/nodesign/skills/deskskill-engine-mini/SKILL.md +199 -192
- package/server/engine/plugins/nodesign/skills/deskskill-engine-mini/canvas.template.html +667 -667
- package/server/engine/plugins/nodesign/skills/deskskill-engine-mini/patterns/hybrid-grid.md +22 -22
- package/server/engine/plugins/nodesign/skills/deskskill-engine-mini/patterns/image-led-cover.md +25 -25
- package/server/engine/plugins/nodesign/skills/deskskill-engine-mini/patterns/portrait.md +23 -23
- package/server/engine/plugins/nodesign/skills/deskskill-engine-mini/patterns/quote-backdrop.md +21 -21
- package/server/engine/plugins/nodesign/skills/deskskill-engine-mini/patterns/section-divider.md +23 -23
- package/server/engine/plugins/nodesign/skills/deskskill-engine-mini/patterns/text-led.md +21 -21
- package/server/engine/plugins/nodesign/skills/docx-craft/SKILL.md +169 -162
- package/server/engine/plugins/nodesign/skills/docx-craft/references/token-schema.md +407 -407
- package/server/engine/plugins/nodesign/skills/docx-craft//346/226/207/346/241/243.template.json +80 -80
- package/server/engine/plugins/nodesign/skills/rp-craft/SKILL.md +235 -228
- package/server/engine/plugins/nodesign/skills/rp-craft/patterns//346/274/224/345/207/272/351/241/265-/346/234/200/345/260/217/345/256/236/347/216/260.html +78 -78
- package/server/engine/plugins/nodesign/skills/rp-craft//346/274/224/345/207/272.template.js +268 -268
- package/server/engine/plugins/nodesign/skills/site-craft/SKILL.md +330 -323
- package/server/engine/plugins/nodesign/skills/site-craft/patterns/build-lane.md +134 -134
- package/server/engine/plugins/nodesign/skills/site-craft/patterns/cutout-collage.md +61 -61
- package/server/engine/plugins/nodesign/skills/site-craft/patterns/mock-app.md +163 -163
- package/server/engine/plugins/nodesign/skills/site-craft/patterns/page-transitions.md +86 -86
- package/server/engine/runs/active-runs.js +698 -698
- package/server/engine/runs/board-tasklist.js +130 -0
- package/server/engine/runs/live-turn.js +252 -252
- package/server/engine/runs/store.js +364 -364
- package/server/engine/runs/turn-relay.js +217 -217
- package/server/engine/runtime/workspace.js +164 -164
- package/server/index.js +3 -0
- package/server/lib/artifact-file-path.js +80 -80
- package/server/lib/artifact-target.js +284 -284
- package/server/lib/asset-refs.js +239 -239
- package/server/lib/async-queue.js +104 -104
- package/server/lib/auto-relations.js +130 -130
- package/server/lib/binding-types.js +72 -60
- package/server/lib/board-graph-export.js +191 -0
- package/server/lib/board-groups.js +167 -0
- package/server/lib/board-hero.js +76 -0
- package/server/lib/board-kind-sizes.js +85 -62
- package/server/lib/board-relations.js +133 -133
- package/server/lib/browse-proxy.js +180 -180
- package/server/lib/canvas-id.js +36 -36
- package/server/lib/chalk.js +121 -0
- package/server/lib/cover.js +227 -227
- package/server/lib/danbooru-tags.js +291 -291
- package/server/lib/doc-extract.js +156 -156
- package/server/lib/docx/build-from-source.js +260 -260
- package/server/lib/docx/build.js +490 -490
- package/server/lib/docx/dump-styles.js +287 -287
- package/server/lib/docx/fonts/nodesign-cjk.conf +164 -164
- package/server/lib/docx/merge-runs.js +129 -129
- package/server/lib/docx/numbering.js +218 -218
- package/server/lib/docx/order.js +152 -152
- package/server/lib/docx/rawzip.js +172 -172
- package/server/lib/docx/render.js +92 -92
- package/server/lib/docx/text-lint.js +225 -225
- package/server/lib/docx/tokens.js +335 -335
- package/server/lib/docx/units.js +29 -29
- package/server/lib/docx/xml.js +291 -291
- package/server/lib/docx-pages.js +187 -187
- package/server/lib/export-collect.js +289 -289
- package/server/lib/export-package.js +210 -210
- package/server/lib/html-srcset.js +145 -145
- package/server/lib/image-variant.js +460 -460
- package/server/lib/ingress/forward-openai-chat.js +305 -305
- package/server/lib/ingress/openai-chat.js +491 -491
- package/server/lib/ingress/session-notice.js +66 -66
- package/server/lib/ingress/session-routes.js +68 -68
- package/server/lib/ingress/slot-probe.js +130 -130
- package/server/lib/ingress/upstream-billing.js +52 -52
- package/server/lib/ingress/upstream-fail-streak.js +72 -72
- package/server/lib/ingress/upstream-truncation.js +48 -48
- package/server/lib/issues-store.js +182 -182
- package/server/lib/kinds/deck.js +72 -72
- package/server/lib/kinds/docx.js +283 -283
- package/server/lib/kinds/file-kinds.js +113 -113
- package/server/lib/kinds/index.js +202 -202
- package/server/lib/kinds/site.js +161 -161
- package/server/lib/model-ingress.js +543 -543
- package/server/lib/moderation.js +255 -255
- package/server/lib/notice-store.js +103 -103
- package/server/lib/plugin-install.js +104 -104
- package/server/lib/plugin-validator.js +721 -721
- package/server/lib/publish-store.js +115 -115
- package/server/lib/quick-summary.js +52 -52
- package/server/lib/quota.js +270 -270
- package/server/lib/rate-window.js +29 -29
- package/server/lib/reference-assets.js +92 -92
- package/server/lib/region-shot.js +135 -135
- package/server/lib/safe-path.js +73 -73
- package/server/lib/sdk-session.js +33 -33
- package/server/lib/showcase-store.js +92 -92
- package/server/lib/site-publish.js +465 -465
- package/server/lib/sketch-layout.js +277 -0
- package/server/lib/ssrf-guard.js +432 -432
- package/server/lib/task-scan.js +158 -158
- package/server/lib/tavern-json.js +154 -154
- package/server/lib/video-variant.js +237 -237
- package/server/lib/workspace-path.js +33 -33
- package/server/ops/fix-sdk-musl.mjs +40 -40
- package/server/ops/install-macos-fonts.sh +114 -114
- package/server/ops/macos-fonts.conf +336 -336
- package/server/ops/sandbox-shim/bwrap +57 -57
- package/server/projects/assets-summary.js +119 -119
- package/server/projects/auto-name.js +53 -53
- package/server/projects/board-limits.js +12 -0
- package/server/projects/board-sanitize.js +252 -0
- package/server/projects/board-store.js +507 -640
- package/server/projects/move-entry.js +103 -103
- package/server/projects/store.js +270 -270
- package/server/projects/ui-config.js +60 -54
- package/server/projects/viewpoint-store.js +78 -0
- package/server/projects/workspace-templates.js +53 -53
- package/server/projects/workspace.js +1025 -1025
- package/server/runtime/local-config.js +177 -177
- package/server/runtime/profile.js +72 -72
- package/server/services/rembg-service.py +334 -334
- package/server/shared/README.md +25 -25
- package/server/shared/deck.js +54 -54
- package/server/shared/time.js +49 -49
- package/server/style-pipeline/README.md +53 -53
- package/server/ws/broker.js +39 -36
- package/server/ws/browse-channel.js +177 -177
- package/server/ws/index.js +386 -386
- package/web/README.md +89 -89
- package/web/dist/assets/BrowserWindow-P_vIdh-G.js +11 -0
- package/web/dist/assets/{DeckWindow-4G0xX7P3.js → DeckWindow-BpLv5082.js} +3 -3
- package/web/dist/assets/{DocxWindow-BXQsoPkh.js → DocxWindow-DSAU1-tD.js} +4 -4
- package/web/dist/assets/MermaidBlock-DR1GikCv.js +313 -0
- package/web/dist/assets/SiteWindow-92uBuRRR.js +18 -0
- package/web/dist/assets/abnfDiagram-VCTEODGH-uA8Esix4.js +1 -0
- package/web/dist/assets/arc-D_khH_xN.js +1 -0
- package/web/dist/assets/architectureDiagram-5GKGNRK7-DydJHqOt.js +36 -0
- package/web/dist/assets/blockDiagram-NRAW4CY4-B7wBbKiW.js +129 -0
- package/web/dist/assets/c4Diagram-UCG6FXSJ-6mrH0x7Y.js +38 -0
- package/web/dist/assets/channel-DGkccMO1.js +1 -0
- package/web/dist/assets/chunk-2Q5K7J3B-Cuikho5Q.js +1 -0
- package/web/dist/assets/chunk-5VM5RSS4-3-KZ5AUz.js +15 -0
- package/web/dist/assets/chunk-F27PBJKO-Bkwq2gGU.js +1 -0
- package/web/dist/assets/chunk-G27WJ6UU-BLyQzdGE.js +231 -0
- package/web/dist/assets/chunk-JWPE2WC7-B7HxxQds.js +1 -0
- package/web/dist/assets/chunk-LCL6LL3I-CtXrnUwF.js +206 -0
- package/web/dist/assets/chunk-POPQ4Y6H-dxddZlXt.js +1 -0
- package/web/dist/assets/chunk-SVP7TREG-DpkmrgHn.js +88 -0
- package/web/dist/assets/chunk-XXDRQBXY-BwZ7RbpQ.js +1 -0
- package/web/dist/assets/classDiagram-DTDB5LWJ-BGscw3OD.js +1 -0
- package/web/dist/assets/classDiagram-v2-JRS7N3AN-BGscw3OD.js +1 -0
- package/web/dist/assets/cose-bilkent-JH36ORCC-DGFOsMUt.js +1 -0
- package/web/dist/assets/cynefin-OW5HDTMX-DUwn3ehS.js +178 -0
- package/web/dist/assets/cynefinDiagram-5FMLGOSQ-DlLAOZ9x.js +62 -0
- package/web/dist/assets/cytoscape.esm-BjAbmLdb.js +331 -0
- package/web/dist/assets/dagre-3AP2YEHR-CyourLfz.js +4 -0
- package/web/dist/assets/defaultLocale-DX6XiGOO.js +1 -0
- package/web/dist/assets/diagram-S7CK7UJ4-BTMbx2np.js +30 -0
- package/web/dist/assets/diagram-UQ7AKVKN-UK94_1-P.js +41 -0
- package/web/dist/assets/diagram-VSXAHHWV-C7zS-v9v.js +3 -0
- package/web/dist/assets/diagram-VX7I27RA-DKJRa6CK.js +24 -0
- package/web/dist/assets/diagram-Z3DM3KII-kUbAfGAp.js +24 -0
- package/web/dist/assets/ebnfDiagram-PWID7BFC-CVW16_vb.js +1 -0
- package/web/dist/assets/erDiagram-SSCWMZ5O-BRQMFQ5y.js +99 -0
- package/web/dist/assets/flowDiagram-A5DVABFB-S34LpLtK.js +168 -0
- package/web/dist/assets/ganttDiagram-EL5Y4UJY-BFiqk1-G.js +292 -0
- package/web/dist/assets/gitGraphDiagram-WWUBYQGX-LZsrdyyv.js +106 -0
- package/web/dist/assets/index-GAamh1p4.js +2152 -0
- package/web/dist/assets/infoDiagram-RXCK75RN-0DvN6KIp.js +2 -0
- package/web/dist/assets/init-Gi6I4Gst.js +1 -0
- package/web/dist/assets/ishikawaDiagram-5VMMS53U-CaY3A-Bx.js +70 -0
- package/web/dist/assets/journeyDiagram-EYS64GPL-BBeiaCrj.js +139 -0
- package/web/dist/assets/kanban-definition-3QL26DDD-ux42DRXQ.js +89 -0
- package/web/dist/assets/layout-CnXiF_NB.js +1 -0
- package/web/dist/assets/linear-BMW0u6G6.js +1 -0
- package/web/dist/assets/mindmap-definition-FBJOCRG2-hUxSpdKn.js +96 -0
- package/web/dist/assets/ordinal-Cboi1Yqb.js +1 -0
- package/web/dist/assets/pegDiagram-XKGWAZYB-aCaQPH0w.js +1 -0
- package/web/dist/assets/{pending-edit-apply-DTjo2geW.js → pending-edit-apply-AcdOQ9Ij.js} +6 -6
- package/web/dist/assets/pieDiagram-E7YTZNPT-CmOEZ8zg.js +39 -0
- package/web/dist/assets/quadrantDiagram-AXDQQJYC-VW6fAhsV.js +7 -0
- package/web/dist/assets/railroadDiagram-O6MQD6OU-CKJ7Ba5K.js +1 -0
- package/web/dist/assets/requirementDiagram-EFPCY7ZU-pNGkq9Vw.js +84 -0
- package/web/dist/assets/{rotate-cw-LMT3x1Zj.js → rotate-cw-KAfChbGV.js} +1 -1
- package/web/dist/assets/sankeyDiagram-P5KCCOFB-BIMmDTfZ.js +40 -0
- package/web/dist/assets/sequenceDiagram-WJ2MYXX4-BBW7wzKY.js +162 -0
- package/web/dist/assets/sizeCapture-X5ZJPWSS-DdkXmLYR.js +1 -0
- package/web/dist/assets/{square-dashed-mouse-pointer-CBoAkfhi.js → square-dashed-mouse-pointer-CDUlhUP7.js} +1 -1
- package/web/dist/assets/stateDiagram-HBIQ2CUA-W313Uz16.js +1 -0
- package/web/dist/assets/stateDiagram-v2-4QOOHH4V-DDhJBZzf.js +1 -0
- package/web/dist/assets/swimlanes-XN3QIQJK-C29TL26K.js +1 -0
- package/web/dist/assets/swimlanesDiagram-VK2B7HYN-BfN-Xdmu.js +8 -0
- package/web/dist/assets/timeline-definition-24CTP7MA-CF0JMObX.js +120 -0
- package/web/dist/assets/vennDiagram-4TSXK5OY-DrDFsaH3.js +34 -0
- package/web/dist/assets/wardleyDiagram-VM6X3IG4-CVrnRIS_.js +78 -0
- package/web/dist/assets/xychartDiagram-S5SC5T6Z-BvkN1zsT.js +7 -0
- package/web/dist/index.html +17 -17
- package/web/dist/assets/BrowserWindow-Dc7J7CYc.js +0 -11
- package/web/dist/assets/SiteWindow-D6eS-2gM.js +0 -18
- package/web/dist/assets/index-Cbl3ATvp.js +0 -2125
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/index-GAamh1p4.js","assets/index-C0KUf6Wd.css","assets/sizeCapture-X5ZJPWSS-DdkXmLYR.js","assets/dagre-3AP2YEHR-CyourLfz.js","assets/layout-CnXiF_NB.js","assets/swimlanes-XN3QIQJK-C29TL26K.js","assets/cose-bilkent-JH36ORCC-DGFOsMUt.js","assets/cytoscape.esm-BjAbmLdb.js","assets/c4Diagram-UCG6FXSJ-6mrH0x7Y.js","assets/chunk-F27PBJKO-Bkwq2gGU.js","assets/flowDiagram-A5DVABFB-S34LpLtK.js","assets/chunk-5VM5RSS4-3-KZ5AUz.js","assets/chunk-XXDRQBXY-BwZ7RbpQ.js","assets/chunk-POPQ4Y6H-dxddZlXt.js","assets/channel-DGkccMO1.js","assets/swimlanesDiagram-VK2B7HYN-BfN-Xdmu.js","assets/erDiagram-SSCWMZ5O-BRQMFQ5y.js","assets/gitGraphDiagram-WWUBYQGX-LZsrdyyv.js","assets/chunk-2Q5K7J3B-Cuikho5Q.js","assets/chunk-JWPE2WC7-B7HxxQds.js","assets/cynefin-OW5HDTMX-DUwn3ehS.js","assets/ganttDiagram-EL5Y4UJY-BFiqk1-G.js","assets/linear-BMW0u6G6.js","assets/init-Gi6I4Gst.js","assets/defaultLocale-DX6XiGOO.js","assets/infoDiagram-RXCK75RN-0DvN6KIp.js","assets/pieDiagram-E7YTZNPT-CmOEZ8zg.js","assets/arc-D_khH_xN.js","assets/ordinal-Cboi1Yqb.js","assets/quadrantDiagram-AXDQQJYC-VW6fAhsV.js","assets/xychartDiagram-S5SC5T6Z-BvkN1zsT.js","assets/requirementDiagram-EFPCY7ZU-pNGkq9Vw.js","assets/sequenceDiagram-WJ2MYXX4-BBW7wzKY.js","assets/classDiagram-DTDB5LWJ-BGscw3OD.js","assets/chunk-LCL6LL3I-CtXrnUwF.js","assets/classDiagram-v2-JRS7N3AN-BGscw3OD.js","assets/stateDiagram-HBIQ2CUA-W313Uz16.js","assets/chunk-G27WJ6UU-BLyQzdGE.js","assets/stateDiagram-v2-4QOOHH4V-DDhJBZzf.js","assets/journeyDiagram-EYS64GPL-BBeiaCrj.js","assets/timeline-definition-24CTP7MA-CF0JMObX.js","assets/mindmap-definition-FBJOCRG2-hUxSpdKn.js","assets/kanban-definition-3QL26DDD-ux42DRXQ.js","assets/sankeyDiagram-P5KCCOFB-BIMmDTfZ.js","assets/diagram-Z3DM3KII-kUbAfGAp.js","assets/diagram-UQ7AKVKN-UK94_1-P.js","assets/blockDiagram-NRAW4CY4-B7wBbKiW.js","assets/diagram-S7CK7UJ4-BTMbx2np.js","assets/architectureDiagram-5GKGNRK7-DydJHqOt.js","assets/diagram-VSXAHHWV-C7zS-v9v.js","assets/ishikawaDiagram-5VMMS53U-CaY3A-Bx.js","assets/vennDiagram-4TSXK5OY-DrDFsaH3.js","assets/diagram-VX7I27RA-DKJRa6CK.js","assets/wardleyDiagram-VM6X3IG4-CVrnRIS_.js","assets/cynefinDiagram-5FMLGOSQ-DlLAOZ9x.js","assets/railroadDiagram-O6MQD6OU-CKJ7Ba5K.js","assets/chunk-SVP7TREG-DpkmrgHn.js","assets/ebnfDiagram-PWID7BFC-CVW16_vb.js","assets/abnfDiagram-VCTEODGH-uA8Esix4.js","assets/pegDiagram-XKGWAZYB-aCaQPH0w.js"])))=>i.map(i=>d[i]);
|
|
2
|
+
var Sx=Object.defineProperty;var vx=(e,t,r)=>t in e?Sx(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r;var Vt=(e,t,r)=>vx(e,typeof t!="symbol"?t+"":t,r);import{Z as Pl,aA as Rt,r as Va,j as uo,d as Bx,F as Tc,a as Lx,aB as Fo}from"./index-GAamh1p4.js";var mf=Object.defineProperty,p=(e,t)=>mf(e,"name",{value:t,configurable:!0}),Fx=(e,t)=>{for(var r in t)mf(e,r,{get:t[r],enumerable:!0})},Ao={exports:{}},Ax=Ao.exports,_c;function Ex(){return _c||(_c=1,(function(e,t){(function(r,i){e.exports=i()})(Ax,(function(){var r=1e3,i=6e4,s=36e5,o="millisecond",a="second",n="minute",l="hour",c="day",h="week",u="month",d="quarter",f="year",m="date",y="Invalid Date",C=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,x=/\[([^\]]+)]|YYYY|YY|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,b={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(M){var $=["th","st","nd","rd"],B=M%100;return"["+M+($[(B-20)%10]||$[B]||$[0])+"]"}},w=function(M,$,B){var P=String(M);return!P||P.length>=$?M:""+Array($+1-P.length).join(B)+M},_={s:w,z:function(M){var $=-M.utcOffset(),B=Math.abs($),P=Math.floor(B/60),O=B%60;return($<=0?"+":"-")+w(P,2,"0")+":"+w(O,2,"0")},m:function M($,B){if($.date()<B.date())return-M(B,$);var P=12*(B.year()-$.year())+(B.month()-$.month()),O=$.clone().add(P,u),H=B-O<0,K=$.clone().add(P+(H?-1:1),u);return+(-(P+(B-O)/(H?O-K:K-O))||0)},a:function(M){return M<0?Math.ceil(M)||0:Math.floor(M)},p:function(M){return{M:u,y:f,w:h,d:c,D:m,h:l,m:n,s:a,ms:o,Q:d}[M]||String(M||"").toLowerCase().replace(/s$/,"")},u:function(M){return M===void 0}},v="en",F={};F[v]=b;var A="$isDayjsObject",L=function(M){return M instanceof ot||!(!M||!M[A])},j=function M($,B,P){var O;if(!$)return v;if(typeof $=="string"){var H=$.toLowerCase();F[H]&&(O=H),B&&(F[H]=B,O=H);var K=$.split("-");if(!O&&K.length>1)return M(K[0])}else{var ut=$.name;F[ut]=$,O=ut}return!P&&O&&(v=O),O||!P&&v},z=function(M,$){if(L(M))return M.clone();var B=typeof $=="object"?$:{};return B.date=M,B.args=arguments,new ot(B)},W=_;W.l=j,W.i=L,W.w=function(M,$){return z(M,{locale:$.$L,utc:$.$u,x:$.$x,$offset:$.$offset})};var ot=(function(){function M(B){this.$L=j(B.locale,null,!0),this.parse(B),this.$x=this.$x||B.x||{},this[A]=!0}var $=M.prototype;return $.parse=function(B){this.$d=(function(P){var O=P.date,H=P.utc;if(O===null)return new Date(NaN);if(W.u(O))return new Date;if(O instanceof Date)return new Date(O);if(typeof O=="string"&&!/Z$/i.test(O)){var K=O.match(C);if(K){var ut=K[2]-1||0,pt=(K[7]||"0").substring(0,3);return H?new Date(Date.UTC(K[1],ut,K[3]||1,K[4]||0,K[5]||0,K[6]||0,pt)):new Date(K[1],ut,K[3]||1,K[4]||0,K[5]||0,K[6]||0,pt)}}return new Date(O)})(B),this.init()},$.init=function(){var B=this.$d;this.$y=B.getFullYear(),this.$M=B.getMonth(),this.$D=B.getDate(),this.$W=B.getDay(),this.$H=B.getHours(),this.$m=B.getMinutes(),this.$s=B.getSeconds(),this.$ms=B.getMilliseconds()},$.$utils=function(){return W},$.isValid=function(){return this.$d.toString()!==y},$.isSame=function(B,P){var O=z(B);return this.startOf(P)<=O&&O<=this.endOf(P)},$.isAfter=function(B,P){return z(B)<this.startOf(P)},$.isBefore=function(B,P){return this.endOf(P)<z(B)},$.$g=function(B,P,O){return W.u(B)?this[P]:this.set(O,B)},$.unix=function(){return Math.floor(this.valueOf()/1e3)},$.valueOf=function(){return this.$d.getTime()},$.startOf=function(B,P){var O=this,H=!!W.u(P)||P,K=W.p(B),ut=function(Lt,lt){var gt=W.w(O.$u?Date.UTC(O.$y,lt,Lt):new Date(O.$y,lt,Lt),O);return H?gt:gt.endOf(c)},pt=function(Lt,lt){return W.w(O.toDate()[Lt].apply(O.toDate("s"),(H?[0,0,0,0]:[23,59,59,999]).slice(lt)),O)},kt=this.$W,nt=this.$M,wt=this.$D,Et="set"+(this.$u?"UTC":"");switch(K){case f:return H?ut(1,0):ut(31,11);case u:return H?ut(1,nt):ut(0,nt+1);case h:var At=this.$locale().weekStart||0,qt=(kt<At?kt+7:kt)-At;return ut(H?wt-qt:wt+(6-qt),nt);case c:case m:return pt(Et+"Hours",0);case l:return pt(Et+"Minutes",1);case n:return pt(Et+"Seconds",2);case a:return pt(Et+"Milliseconds",3);default:return this.clone()}},$.endOf=function(B){return this.startOf(B,!1)},$.$set=function(B,P){var O,H=W.p(B),K="set"+(this.$u?"UTC":""),ut=(O={},O[c]=K+"Date",O[m]=K+"Date",O[u]=K+"Month",O[f]=K+"FullYear",O[l]=K+"Hours",O[n]=K+"Minutes",O[a]=K+"Seconds",O[o]=K+"Milliseconds",O)[H],pt=H===c?this.$D+(P-this.$W):P;if(H===u||H===f){var kt=this.clone().set(m,1);kt.$d[ut](pt),kt.init(),this.$d=kt.set(m,Math.min(this.$D,kt.daysInMonth())).$d}else ut&&this.$d[ut](pt);return this.init(),this},$.set=function(B,P){return this.clone().$set(B,P)},$.get=function(B){return this[W.p(B)]()},$.add=function(B,P){var O,H=this;B=Number(B);var K=W.p(P),ut=function(nt){var wt=z(H);return W.w(wt.date(wt.date()+Math.round(nt*B)),H)};if(K===u)return this.set(u,this.$M+B);if(K===f)return this.set(f,this.$y+B);if(K===c)return ut(1);if(K===h)return ut(7);var pt=(O={},O[n]=i,O[l]=s,O[a]=r,O)[K]||1,kt=this.$d.getTime()+B*pt;return W.w(kt,this)},$.subtract=function(B,P){return this.add(-1*B,P)},$.format=function(B){var P=this,O=this.$locale();if(!this.isValid())return O.invalidDate||y;var H=B||"YYYY-MM-DDTHH:mm:ssZ",K=W.z(this),ut=this.$H,pt=this.$m,kt=this.$M,nt=O.weekdays,wt=O.months,Et=O.meridiem,At=function(lt,gt,Mt,Nt){return lt&&(lt[gt]||lt(P,H))||Mt[gt].slice(0,Nt)},qt=function(lt){return W.s(ut%12||12,lt,"0")},Lt=Et||function(lt,gt,Mt){var Nt=lt<12?"AM":"PM";return Mt?Nt.toLowerCase():Nt};return H.replace(x,(function(lt,gt){return gt||(function(Mt){switch(Mt){case"YY":return String(P.$y).slice(-2);case"YYYY":return W.s(P.$y,4,"0");case"M":return kt+1;case"MM":return W.s(kt+1,2,"0");case"MMM":return At(O.monthsShort,kt,wt,3);case"MMMM":return At(wt,kt);case"D":return P.$D;case"DD":return W.s(P.$D,2,"0");case"d":return String(P.$W);case"dd":return At(O.weekdaysMin,P.$W,nt,2);case"ddd":return At(O.weekdaysShort,P.$W,nt,3);case"dddd":return nt[P.$W];case"H":return String(ut);case"HH":return W.s(ut,2,"0");case"h":return qt(1);case"hh":return qt(2);case"a":return Lt(ut,pt,!0);case"A":return Lt(ut,pt,!1);case"m":return String(pt);case"mm":return W.s(pt,2,"0");case"s":return String(P.$s);case"ss":return W.s(P.$s,2,"0");case"SSS":return W.s(P.$ms,3,"0");case"Z":return K}return null})(lt)||K.replace(":","")}))},$.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},$.diff=function(B,P,O){var H,K=this,ut=W.p(P),pt=z(B),kt=(pt.utcOffset()-this.utcOffset())*i,nt=this-pt,wt=function(){return W.m(K,pt)};switch(ut){case f:H=wt()/12;break;case u:H=wt();break;case d:H=wt()/3;break;case h:H=(nt-kt)/6048e5;break;case c:H=(nt-kt)/864e5;break;case l:H=nt/s;break;case n:H=nt/i;break;case a:H=nt/r;break;default:H=nt}return O?H:W.a(H)},$.daysInMonth=function(){return this.endOf(u).$D},$.$locale=function(){return F[this.$L]},$.locale=function(B,P){if(!B)return this.$L;var O=this.clone(),H=j(B,P,!0);return H&&(O.$L=H),O},$.clone=function(){return W.w(this.$d,this)},$.toDate=function(){return new Date(this.valueOf())},$.toJSON=function(){return this.isValid()?this.toISOString():null},$.toISOString=function(){return this.$d.toISOString()},$.toString=function(){return this.$d.toUTCString()},M})(),Y=ot.prototype;return z.prototype=Y,[["$ms",o],["$s",a],["$m",n],["$H",l],["$W",c],["$M",u],["$y",f],["$D",m]].forEach((function(M){Y[M[1]]=function($){return this.$g($,M[0],M[1])}})),z.extend=function(M,$){return M.$i||(M($,ot,z),M.$i=!0),z},z.locale=j,z.isDayjs=L,z.unix=function(M){return z(1e3*M)},z.en=F[v],z.Ls=F,z.p={},z}))})(Ao)),Ao.exports}var Mx=Ex();const $x=Pl(Mx);var Cr={trace:0,debug:1,info:2,warn:3,error:4,fatal:5},N={trace:p((...e)=>{},"trace"),debug:p((...e)=>{},"debug"),info:p((...e)=>{},"info"),warn:p((...e)=>{},"warn"),error:p((...e)=>{},"error"),fatal:p((...e)=>{},"fatal")},Rl=p(function(e="fatal"){let t=Cr.fatal;typeof e=="string"?e.toLowerCase()in Cr&&(t=Cr[e]):typeof e=="number"&&(t=e),N.trace=()=>{},N.debug=()=>{},N.info=()=>{},N.warn=()=>{},N.error=()=>{},N.fatal=()=>{},t<=Cr.fatal&&(N.fatal=console.error?console.error.bind(console,qe("FATAL"),"color: orange"):console.log.bind(console,"\x1B[35m",qe("FATAL"))),t<=Cr.error&&(N.error=console.error?console.error.bind(console,qe("ERROR"),"color: orange"):console.log.bind(console,"\x1B[31m",qe("ERROR"))),t<=Cr.warn&&(N.warn=console.warn?console.warn.bind(console,qe("WARN"),"color: orange"):console.log.bind(console,"\x1B[33m",qe("WARN"))),t<=Cr.info&&(N.info=console.info?console.info.bind(console,qe("INFO"),"color: lightblue"):console.log.bind(console,"\x1B[34m",qe("INFO"))),t<=Cr.debug&&(N.debug=console.debug?console.debug.bind(console,qe("DEBUG"),"color: lightgreen"):console.log.bind(console,"\x1B[32m",qe("DEBUG"))),t<=Cr.trace&&(N.trace=console.debug?console.debug.bind(console,qe("TRACE"),"color: lightgreen"):console.log.bind(console,"\x1B[32m",qe("TRACE")))},"setLogLevel"),qe=p(e=>`%c${$x().format("ss.SSS")} : ${e} : `,"format");const Eo={min:{r:0,g:0,b:0,s:0,l:0,a:0},max:{r:255,g:255,b:255,h:360,s:100,l:100,a:1},clamp:{r:e=>e>=255?255:e<0?0:e,g:e=>e>=255?255:e<0?0:e,b:e=>e>=255?255:e<0?0:e,h:e=>e%360,s:e=>e>=100?100:e<0?0:e,l:e=>e>=100?100:e<0?0:e,a:e=>e>=1?1:e<0?0:e},toLinear:e=>{const t=e/255;return e>.03928?Math.pow((t+.055)/1.055,2.4):t/12.92},hue2rgb:(e,t,r)=>(r<0&&(r+=1),r>1&&(r-=1),r<1/6?e+(t-e)*6*r:r<1/2?t:r<2/3?e+(t-e)*(2/3-r)*6:e),hsl2rgb:({h:e,s:t,l:r},i)=>{if(!t)return r*2.55;e/=360,t/=100,r/=100;const s=r<.5?r*(1+t):r+t-r*t,o=2*r-s;switch(i){case"r":return Eo.hue2rgb(o,s,e+1/3)*255;case"g":return Eo.hue2rgb(o,s,e)*255;case"b":return Eo.hue2rgb(o,s,e-1/3)*255}},rgb2hsl:({r:e,g:t,b:r},i)=>{e/=255,t/=255,r/=255;const s=Math.max(e,t,r),o=Math.min(e,t,r),a=(s+o)/2;if(i==="l")return a*100;if(s===o)return 0;const n=s-o,l=a>.5?n/(2-s-o):n/(s+o);if(i==="s")return l*100;switch(s){case e:return((t-r)/n+(t<r?6:0))*60;case t:return((r-e)/n+2)*60;case r:return((e-t)/n+4)*60;default:return-1}}},Ox={clamp:(e,t,r)=>t>r?Math.min(t,Math.max(r,e)):Math.min(r,Math.max(t,e)),round:e=>Math.round(e*1e10)/1e10},Dx={dec2hex:e=>{const t=Math.round(e).toString(16);return t.length>1?t:`0${t}`}},It={channel:Eo,lang:Ox,unit:Dx},Ir={};for(let e=0;e<=255;e++)Ir[e]=It.unit.dec2hex(e);const me={ALL:0,RGB:1,HSL:2};let Ix=class{constructor(){this.type=me.ALL}get(){return this.type}set(t){if(this.type&&this.type!==t)throw new Error("Cannot change both RGB and HSL channels at the same time");this.type=t}reset(){this.type=me.ALL}is(t){return this.type===t}};class Px{constructor(t,r){this.color=r,this.changed=!1,this.data=t,this.type=new Ix}set(t,r){return this.color=r,this.changed=!1,this.data=t,this.type.type=me.ALL,this}_ensureHSL(){const t=this.data,{h:r,s:i,l:s}=t;r===void 0&&(t.h=It.channel.rgb2hsl(t,"h")),i===void 0&&(t.s=It.channel.rgb2hsl(t,"s")),s===void 0&&(t.l=It.channel.rgb2hsl(t,"l"))}_ensureRGB(){const t=this.data,{r,g:i,b:s}=t;r===void 0&&(t.r=It.channel.hsl2rgb(t,"r")),i===void 0&&(t.g=It.channel.hsl2rgb(t,"g")),s===void 0&&(t.b=It.channel.hsl2rgb(t,"b"))}get r(){const t=this.data,r=t.r;return!this.type.is(me.HSL)&&r!==void 0?r:(this._ensureHSL(),It.channel.hsl2rgb(t,"r"))}get g(){const t=this.data,r=t.g;return!this.type.is(me.HSL)&&r!==void 0?r:(this._ensureHSL(),It.channel.hsl2rgb(t,"g"))}get b(){const t=this.data,r=t.b;return!this.type.is(me.HSL)&&r!==void 0?r:(this._ensureHSL(),It.channel.hsl2rgb(t,"b"))}get h(){const t=this.data,r=t.h;return!this.type.is(me.RGB)&&r!==void 0?r:(this._ensureRGB(),It.channel.rgb2hsl(t,"h"))}get s(){const t=this.data,r=t.s;return!this.type.is(me.RGB)&&r!==void 0?r:(this._ensureRGB(),It.channel.rgb2hsl(t,"s"))}get l(){const t=this.data,r=t.l;return!this.type.is(me.RGB)&&r!==void 0?r:(this._ensureRGB(),It.channel.rgb2hsl(t,"l"))}get a(){return this.data.a}set r(t){this.type.set(me.RGB),this.changed=!0,this.data.r=t}set g(t){this.type.set(me.RGB),this.changed=!0,this.data.g=t}set b(t){this.type.set(me.RGB),this.changed=!0,this.data.b=t}set h(t){this.type.set(me.HSL),this.changed=!0,this.data.h=t}set s(t){this.type.set(me.HSL),this.changed=!0,this.data.s=t}set l(t){this.type.set(me.HSL),this.changed=!0,this.data.l=t}set a(t){this.changed=!0,this.data.a=t}}const ma=new Px({r:0,g:0,b:0,a:0},"transparent"),Li={re:/^#((?:[a-f0-9]{2}){2,4}|[a-f0-9]{3})$/i,parse:e=>{if(e.charCodeAt(0)!==35)return;const t=e.match(Li.re);if(!t)return;const r=t[1],i=parseInt(r,16),s=r.length,o=s%4===0,a=s>4,n=a?1:17,l=a?8:4,c=o?0:-1,h=a?255:15;return ma.set({r:(i>>l*(c+3)&h)*n,g:(i>>l*(c+2)&h)*n,b:(i>>l*(c+1)&h)*n,a:o?(i&h)*n/255:1},e)},stringify:e=>{const{r:t,g:r,b:i,a:s}=e;return s<1?`#${Ir[Math.round(t)]}${Ir[Math.round(r)]}${Ir[Math.round(i)]}${Ir[Math.round(s*255)]}`:`#${Ir[Math.round(t)]}${Ir[Math.round(r)]}${Ir[Math.round(i)]}`}},Jr={re:/^hsla?\(\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?(?:deg|grad|rad|turn)?)\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?%)\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?%)(?:\s*?(?:,|\/)\s*?\+?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?(%)?))?\s*?\)$/i,hueRe:/^(.+?)(deg|grad|rad|turn)$/i,_hue2deg:e=>{const t=e.match(Jr.hueRe);if(t){const[,r,i]=t;switch(i){case"grad":return It.channel.clamp.h(parseFloat(r)*.9);case"rad":return It.channel.clamp.h(parseFloat(r)*180/Math.PI);case"turn":return It.channel.clamp.h(parseFloat(r)*360)}}return It.channel.clamp.h(parseFloat(e))},parse:e=>{const t=e.charCodeAt(0);if(t!==104&&t!==72)return;const r=e.match(Jr.re);if(!r)return;const[,i,s,o,a,n]=r;return ma.set({h:Jr._hue2deg(i),s:It.channel.clamp.s(parseFloat(s)),l:It.channel.clamp.l(parseFloat(o)),a:a?It.channel.clamp.a(n?parseFloat(a)/100:parseFloat(a)):1},e)},stringify:e=>{const{h:t,s:r,l:i,a:s}=e;return s<1?`hsla(${It.lang.round(t)}, ${It.lang.round(r)}%, ${It.lang.round(i)}%, ${s})`:`hsl(${It.lang.round(t)}, ${It.lang.round(r)}%, ${It.lang.round(i)}%)`}},Ms={colors:{aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyanaqua:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",transparent:"#00000000",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"},parse:e=>{e=e.toLowerCase();const t=Ms.colors[e];if(t)return Li.parse(t)},stringify:e=>{const t=Li.stringify(e);for(const r in Ms.colors)if(Ms.colors[r]===t)return r}},ks={re:/^rgba?\(\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))(?:\s*?(?:,|\/)\s*?\+?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?)))?\s*?\)$/i,parse:e=>{const t=e.charCodeAt(0);if(t!==114&&t!==82)return;const r=e.match(ks.re);if(!r)return;const[,i,s,o,a,n,l,c,h]=r;return ma.set({r:It.channel.clamp.r(s?parseFloat(i)*2.55:parseFloat(i)),g:It.channel.clamp.g(a?parseFloat(o)*2.55:parseFloat(o)),b:It.channel.clamp.b(l?parseFloat(n)*2.55:parseFloat(n)),a:c?It.channel.clamp.a(h?parseFloat(c)/100:parseFloat(c)):1},e)},stringify:e=>{const{r:t,g:r,b:i,a:s}=e;return s<1?`rgba(${It.lang.round(t)}, ${It.lang.round(r)}, ${It.lang.round(i)}, ${It.lang.round(s)})`:`rgb(${It.lang.round(t)}, ${It.lang.round(r)}, ${It.lang.round(i)})`}},cr={format:{keyword:Ms,hex:Li,rgb:ks,rgba:ks,hsl:Jr,hsla:Jr},parse:e=>{if(typeof e!="string")return e;const t=Li.parse(e)||ks.parse(e)||Jr.parse(e)||Ms.parse(e);if(t)return t;throw new Error(`Unsupported color format: "${e}"`)},stringify:e=>!e.changed&&e.color?e.color:e.type.is(me.HSL)||e.data.r===void 0?Jr.stringify(e):e.a<1||!Number.isInteger(e.r)||!Number.isInteger(e.g)||!Number.isInteger(e.b)?ks.stringify(e):Li.stringify(e)},yf=(e,t)=>{const r=cr.parse(e);for(const i in t)r[i]=It.channel.clamp[i](t[i]);return cr.stringify(r)},qr=(e,t,r=0,i=1)=>{if(typeof e!="number")return yf(e,{a:t});const s=ma.set({r:It.channel.clamp.r(e),g:It.channel.clamp.g(t),b:It.channel.clamp.b(r),a:It.channel.clamp.a(i)});return cr.stringify(s)},Rx=e=>{const{r:t,g:r,b:i}=cr.parse(e),s=.2126*It.channel.toLinear(t)+.7152*It.channel.toLinear(r)+.0722*It.channel.toLinear(i);return It.lang.round(s)},Nx=e=>Rx(e)>=.5,Ke=e=>!Nx(e),xf=(e,t,r)=>{const i=cr.parse(e),s=i[t],o=It.channel.clamp[t](s+r);return s!==o&&(i[t]=o),cr.stringify(i)},U=(e,t)=>xf(e,"l",t),G=(e,t)=>xf(e,"l",-t),k=(e,t)=>{const r=cr.parse(e),i={};for(const s in t)t[s]&&(i[s]=r[s]+t[s]);return yf(e,i)},qx=(e,t,r=50)=>{const{r:i,g:s,b:o,a}=cr.parse(e),{r:n,g:l,b:c,a:h}=cr.parse(t),u=r/100,d=u*2-1,f=a-h,y=((d*f===-1?d:(d+f)/(1+d*f))+1)/2,C=1-y,x=i*y+n*C,b=s*y+l*C,w=o*y+c*C,_=a*u+h*(1-u);return qr(x,b,w,_)},E=(e,t=100)=>{const r=cr.parse(e);return r.r=255-r.r,r.g=255-r.g,r.b=255-r.b,qx(r,e,t)};/*! @license DOMPurify 3.4.14 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.4.14/LICENSE */function Sc(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,i=Array(t);r<t;r++)i[r]=e[r];return i}function zx(e){if(Array.isArray(e))return e}function Wx(e,t){var r=e==null?null:typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(r!=null){var i,s,o,a,n=[],l=!0,c=!1;try{if(o=(r=r.call(e)).next,t!==0)for(;!(l=(i=o.call(r)).done)&&(n.push(i.value),n.length!==t);l=!0);}catch(h){c=!0,s=h}finally{try{if(!l&&r.return!=null&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw s}}return n}}function Hx(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
|
|
3
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Yx(e,t){return zx(e)||Wx(e,t)||jx(e,t)||Hx()}function jx(e,t){if(e){if(typeof e=="string")return Sc(e,t);var r={}.toString.call(e).slice(8,-1);return r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set"?Array.from(e):r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Sc(e,t):void 0}}const Cf=Object.entries,vc=Object.setPrototypeOf,Ux=Object.isFrozen,Gx=Object.getPrototypeOf,Xx=Object.getOwnPropertyDescriptor;let he=Object.freeze,ue=Object.seal,Ti=Object.create,bf=typeof Reflect<"u"&&Reflect,Gn=bf.apply,Xn=bf.construct;he||(he=function(t){return t});ue||(ue=function(t){return t});Gn||(Gn=function(t,r){for(var i=arguments.length,s=new Array(i>2?i-2:0),o=2;o<i;o++)s[o-2]=arguments[o];return t.apply(r,s)});Xn||(Xn=function(t){for(var r=arguments.length,i=new Array(r>1?r-1:0),s=1;s<r;s++)i[s-1]=arguments[s];return new t(...i)});const Zr=ne(Array.prototype.forEach),Vx=ne(Array.prototype.lastIndexOf),Bc=ne(Array.prototype.pop),cs=ne(Array.prototype.push),Zx=ne(Array.prototype.splice),Fi=Array.isArray,ws=ne(String.prototype.toLowerCase),Za=ne(String.prototype.toString),Lc=ne(String.prototype.match),us=ne(String.prototype.replace),Fc=ne(String.prototype.indexOf),Kx=ne(String.prototype.trim),Qx=ne(Number.prototype.toString),Jx=ne(Boolean.prototype.toString),Ac=typeof BigInt>"u"?null:ne(BigInt.prototype.toString),Ec=typeof Symbol>"u"?null:ne(Symbol.prototype.toString),Ae=ne(Object.prototype.hasOwnProperty),ds=ne(Object.prototype.toString),ge=ne(RegExp.prototype.test),Ur=tC(TypeError);function ne(e){return function(t){t instanceof RegExp&&(t.lastIndex=0);for(var r=arguments.length,i=new Array(r>1?r-1:0),s=1;s<r;s++)i[s-1]=arguments[s];return Gn(e,t,i)}}function tC(e){return function(){for(var t=arguments.length,r=new Array(t),i=0;i<t;i++)r[i]=arguments[i];return Xn(e,r)}}function jt(e,t){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:ws;if(vc&&vc(e,null),!Fi(t))return e;let i=t.length;for(;i--;){let s=t[i];if(typeof s=="string"){const o=r(s);o!==s&&(Ux(t)||(t[i]=o),s=o)}e[s]=!0}return e}function eC(e){for(let t=0;t<e.length;t++)Ae(e,t)||(e[t]=null);return e}function Pe(e){const t=Ti(null);for(const i of Cf(e)){var r=Yx(i,2);const s=r[0],o=r[1];Ae(e,s)&&(Fi(o)?t[s]=eC(o):o&&typeof o=="object"&&o.constructor===Object?t[s]=Pe(o):t[s]=o)}return t}function rC(e){switch(typeof e){case"string":return e;case"number":return Qx(e);case"boolean":return Jx(e);case"bigint":return Ac?Ac(e):"0";case"symbol":return Ec?Ec(e):"Symbol()";case"undefined":return ds(e);case"function":case"object":{if(e===null)return ds(e);const t=e,r=je(t,"toString");if(typeof r=="function"){const i=r(t);return typeof i=="string"?i:ds(i)}return ds(e)}default:return ds(e)}}function je(e,t){for(;e!==null;){const i=Xx(e,t);if(i){if(i.get)return ne(i.get);if(typeof i.value=="function")return ne(i.value)}e=Gx(e)}function r(){return null}return r}function iC(e){try{return ge(e,""),!0}catch{return!1}}const Mc=he(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","search","section","select","shadow","slot","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),Ka=he(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","enterkeyhint","exportparts","filter","font","g","glyph","glyphref","hkern","image","inputmode","line","lineargradient","marker","mask","metadata","mpath","part","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),Qa=he(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),sC=he(["animate","color-profile","cursor","discard","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),Ja=he(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover","mprescripts"]),oC=he(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),$c=he(["#text"]),Oc=he(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","command","commandfor","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","exportparts","face","for","headers","height","hidden","high","href","hreflang","id","inert","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","part","pattern","placeholder","playsinline","popover","popovertarget","popovertargetaction","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","slot","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","wrap","xmlns"]),tn=he(["accent-height","accumulate","additive","alignment-baseline","amplitude","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dominant-baseline","dur","edgemode","elevation","end","exponent","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","intercept","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","mask-type","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","pointer-events","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","slope","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","tablevalues","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-orientation","text-rendering","textlength","type","u1","u2","unicode","values","vector-effect","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),Dc=he(["accent","accentunder","align","bevelled","close","columnalign","columnlines","columnspacing","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lquote","lspace","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),fo=he(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),aC=ue(/{{[\w\W]*|^[\w\W]*}}/g),nC=ue(/<%[\w\W]*|^[\w\W]*%>/g),lC=ue(/\${[\w\W]*/g),hC=ue(/^data-[\-\w.\u00B7-\uFFFF]+$/),cC=ue(/^aria-[\-\w]+$/),Ic=ue(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),uC=ue(/^(?:\w+script|data):/i),dC=ue(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),fC=ue(/^html$/i),pC=ue(/^[a-z][.\w]*(-[.\w]+)+$/i),Pc=ue(/<[/\w!]/g),Rc=ue(/<[/\w]/g),gC=ue(/<\/no(script|embed|frames)/i),mC=ue(/\/>/i),De={element:1,attribute:2,text:3,cdataSection:4,entityReference:5,entityNode:6,processingInstruction:7,comment:8,document:9,documentType:10,documentFragment:11,notation:12},kf=["style","script","xmp","iframe","noembed","noframes","plaintext","noscript"],yC=he(jt({},kf)),xC=(function(){const e={};return Zr(kf,t=>{e[t]=ue(new RegExp("</"+t+"(?=[\\t\\n\\f\\r />])","i"))}),he(e)})(),CC=function(){return typeof window>"u"?null:window},bC=function(t,r){if(typeof t!="object"||typeof t.createPolicy!="function")return null;let i=null;const s="data-tt-policy-suffix";r&&r.hasAttribute(s)&&(i=r.getAttribute(s));const o="dompurify"+(i?"#"+i:"");try{return t.createPolicy(o,{createHTML(a){return a},createScriptURL(a){return a}})}catch{return console.warn("TrustedTypes policy "+o+" could not be created."),null}},Nc=function(){return{afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]}},Or=function(t,r,i,s){return Ae(t,r)&&Fi(t[r])?jt(s.base?Pe(s.base):{},t[r],s.transform):i},en=function(t,r,i){const s=Ae(t,r)?t[r]:void 0;return s&&typeof s=="object"?Pe(s):i()};function wf(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:CC();const t=at=>wf(at);if(t.version="3.4.14",t.removed=[],!e||!e.document||e.document.nodeType!==De.document||!e.Element)return t.isSupported=!1,t;let r=e.document;const i=r,s=i.currentScript;e.DocumentFragment;const o=e.HTMLTemplateElement,a=e.Node,n=e.Element,l=e.NodeFilter,c=e.NamedNodeMap;c===void 0&&(e.NamedNodeMap||e.MozNamedAttrMap),e.HTMLFormElement;const h=e.DOMParser,u=e.trustedTypes,d=n.prototype,f=je(d,"cloneNode"),m=je(d,"remove"),y=je(d,"nextSibling"),C=je(d,"childNodes"),x=je(d,"parentNode"),b=je(d,"shadowRoot"),w=je(d,"attributes"),_=a&&a.prototype?je(a.prototype,"nodeType"):null,v=a&&a.prototype?je(a.prototype,"nodeName"):null,F=a&&a.prototype?je(a.prototype,"ownerDocument"):null,A=function(S){return _?_(S):S.nodeType},L=function(S){return v?v(S):S.nodeName};if(typeof o=="function"){const at=r.createElement("template");at.content&&at.content.ownerDocument&&(r=at.content.ownerDocument)}let j,z="",W,ot=!1,Y=0;const M=function(){if(Y>0)throw Ur('A configured TRUSTED_TYPES_POLICY callback (createHTML or createScriptURL) must not call DOMPurify.sanitize, as that causes infinite recursion. Do not pass a policy whose callbacks wrap DOMPurify as TRUSTED_TYPES_POLICY; see the "DOMPurify and Trusted Types" section of the README.')},$=function(S){M(),Y++;try{return j.createHTML(S)}finally{Y--}},B=function(S){M(),Y++;try{return j.createScriptURL(S)}finally{Y--}},P=function(){return ot||(W=bC(u,s),ot=!0),W},O=r,H=O.implementation,K=O.createNodeIterator,ut=O.createDocumentFragment,pt=O.getElementsByTagName,kt=i.importNode;let nt=Nc();t.isSupported=typeof Cf=="function"&&typeof x=="function"&&H&&H.createHTMLDocument!==void 0;const wt=aC,Et=nC,At=lC,qt=hC,Lt=cC,lt=uC,gt=dC,Mt=pC;let Nt=Ic,Ft=null;const q=jt({},[...Mc,...Ka,...Qa,...Ja,...$c]);let mt=null;const ke=jt({},[...Oc,...tn,...Dc,...fo]);let re=Object.seal(Ti(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),Ye=null,yr=null;const we=Object.seal(Ti(null,{tagCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeCheck:{writable:!0,configurable:!1,enumerable:!0,value:null}}));let Er=!0,Te=!0,Mr=!1,xr=!0,_e=!1,Oe=!0,g=!1,D=!1,V=null,Q=null,X=!1,st=!1,T=!1,R=!1,rt=!0,Z=!1;const J="user-content-";let it=!0,tt=!1,dt={},ct=null;const Tt=jt({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","selectedcontent","style","svg","template","thead","title","video","xmp"]);let Bt=null;const zt=jt({},["audio","video","img","source","image","track"]);let Xt=null;const ns=jt({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),tr="http://www.w3.org/1998/Math/MathML",er="http://www.w3.org/2000/svg",rr="http://www.w3.org/1999/xhtml";let mi=rr,za=!1,Wa=null;const hx=jt({},[tr,er,rr],Za),lc=he(["mi","mo","mn","ms","mtext"]);let Ha=jt({},lc);const hc=he(["annotation-xml"]);let Ya=jt({},hc);const cx=jt({},["title","style","font","a","script"]);let ls=null;const ux=["application/xhtml+xml","text/html"],dx="text/html";let ie=null,yi=null;const fx=r.createElement("form"),cc=function(S){return S instanceof RegExp||S instanceof Function},ja=function(){let S=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if(yi&&yi===S)return;(!S||typeof S!="object")&&(S={}),S=Pe(S),ls=ux.indexOf(S.PARSER_MEDIA_TYPE)===-1?dx:S.PARSER_MEDIA_TYPE,ie=ls==="application/xhtml+xml"?Za:ws,Ft=Or(S,"ALLOWED_TAGS",q,{transform:ie}),mt=Or(S,"ALLOWED_ATTR",ke,{transform:ie}),Wa=Or(S,"ALLOWED_NAMESPACES",hx,{transform:Za}),Xt=Or(S,"ADD_URI_SAFE_ATTR",ns,{transform:ie,base:ns}),Bt=Or(S,"ADD_DATA_URI_TAGS",zt,{transform:ie,base:zt}),ct=Or(S,"FORBID_CONTENTS",Tt,{transform:ie}),Ye=Or(S,"FORBID_TAGS",Pe({}),{transform:ie}),yr=Or(S,"FORBID_ATTR",Pe({}),{transform:ie}),dt=Ae(S,"USE_PROFILES")?S.USE_PROFILES&&typeof S.USE_PROFILES=="object"?Pe(S.USE_PROFILES):S.USE_PROFILES:!1,Er=S.ALLOW_ARIA_ATTR!==!1,Te=S.ALLOW_DATA_ATTR!==!1,Mr=S.ALLOW_UNKNOWN_PROTOCOLS||!1,xr=S.ALLOW_SELF_CLOSE_IN_ATTR!==!1,_e=S.SAFE_FOR_TEMPLATES||!1,Oe=S.SAFE_FOR_XML!==!1,g=S.WHOLE_DOCUMENT||!1,st=S.RETURN_DOM||!1,T=S.RETURN_DOM_FRAGMENT||!1,R=S.RETURN_TRUSTED_TYPE||!1,X=S.FORCE_BODY||!1,rt=S.SANITIZE_DOM!==!1,Z=S.SANITIZE_NAMED_PROPS||!1,it=S.KEEP_CONTENT!==!1,tt=S.IN_PLACE||!1,Nt=iC(S.ALLOWED_URI_REGEXP)?S.ALLOWED_URI_REGEXP:Ic,mi=typeof S.NAMESPACE=="string"?S.NAMESPACE:rr,Ha=en(S,"MATHML_TEXT_INTEGRATION_POINTS",()=>jt({},lc)),Ya=en(S,"HTML_INTEGRATION_POINTS",()=>jt({},hc));const I=en(S,"CUSTOM_ELEMENT_HANDLING",()=>Ti(null));if(re=Ti(null),Ae(I,"tagNameCheck")&&cc(I.tagNameCheck)&&(re.tagNameCheck=I.tagNameCheck),Ae(I,"attributeNameCheck")&&cc(I.attributeNameCheck)&&(re.attributeNameCheck=I.attributeNameCheck),Ae(I,"allowCustomizedBuiltInElements")&&typeof I.allowCustomizedBuiltInElements=="boolean"&&(re.allowCustomizedBuiltInElements=I.allowCustomizedBuiltInElements),ue(re),_e&&(Te=!1),T&&(st=!0),dt&&(Ft=jt({},$c),mt=Ti(null),dt.html===!0&&(jt(Ft,Mc),jt(mt,Oc)),dt.svg===!0&&(jt(Ft,Ka),jt(mt,tn),jt(mt,fo)),dt.svgFilters===!0&&(jt(Ft,Qa),jt(mt,tn),jt(mt,fo)),dt.mathMl===!0&&(jt(Ft,Ja),jt(mt,Dc),jt(mt,fo))),we.tagCheck=null,we.attributeCheck=null,Ae(S,"ADD_TAGS")&&(typeof S.ADD_TAGS=="function"?we.tagCheck=S.ADD_TAGS:Fi(S.ADD_TAGS)&&(Ft===q&&(Ft=Pe(Ft)),jt(Ft,S.ADD_TAGS,ie))),Ae(S,"ADD_ATTR")&&(typeof S.ADD_ATTR=="function"?we.attributeCheck=S.ADD_ATTR:Fi(S.ADD_ATTR)&&(mt===ke&&(mt=Pe(mt)),jt(mt,S.ADD_ATTR,ie))),Ae(S,"ADD_FORBID_CONTENTS")&&Fi(S.ADD_FORBID_CONTENTS)&&(ct===Tt&&(ct=Pe(ct)),jt(ct,S.ADD_FORBID_CONTENTS,ie)),it&&(Ft["#text"]=!0),g&&jt(Ft,["html","head","body"]),Ft.table&&(jt(Ft,["tbody"]),delete Ye.tbody),S.TRUSTED_TYPES_POLICY){if(typeof S.TRUSTED_TYPES_POLICY.createHTML!="function")throw Ur('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if(typeof S.TRUSTED_TYPES_POLICY.createScriptURL!="function")throw Ur('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');const et=j;j=S.TRUSTED_TYPES_POLICY;try{z=$("")}catch(xt){throw j=et,xt}}else S.TRUSTED_TYPES_POLICY===null?(j=void 0,z=""):(j===void 0&&(j=P()),j&&typeof z=="string"&&(z=$("")));he&&he(S),yi=S},uc=jt({},[...Ka,...Qa,...sC]),dc=jt({},[...Ja,...oC]),px=function(S,I,et){return I.namespaceURI===rr?S==="svg":I.namespaceURI===tr?S==="svg"&&(et==="annotation-xml"||Ha[et]):!!uc[S]},gx=function(S,I,et){return I.namespaceURI===rr?S==="math":I.namespaceURI===er?S==="math"&&Ya[et]:!!dc[S]},mx=function(S,I,et){return I.namespaceURI===er&&!Ya[et]||I.namespaceURI===tr&&!Ha[et]?!1:!dc[S]&&(cx[S]||!uc[S])},yx=function(S){let I=x(S);(!I||!I.tagName)&&(I={namespaceURI:mi,tagName:"template"});const et=ws(S.tagName),xt=ws(I.tagName);return Wa[S.namespaceURI]?S.namespaceURI===er?px(et,I,xt):S.namespaceURI===tr?gx(et,I,xt):S.namespaceURI===rr?mx(et,I,xt):!!(ls==="application/xhtml+xml"&&Wa[S.namespaceURI]):!1},$r=function(S){cs(t.removed,{element:S});try{x(S).removeChild(S)}catch{if(m(S),!x(S))throw Ur("a node selected for removal could not be detached from its tree and cannot be safely returned; refusing to sanitize in place")}},fc=function(S,I,et){try{S.removeAttributeNode(I)}catch{try{S.removeAttribute(et)}catch{}}},oo=function(S){ao(S);const I=C(S);if(I){const xt=[];Zr(I,vt=>{cs(xt,vt)}),Zr(xt,vt=>{try{m(vt)}catch{}})}const et=w(S);if(et)for(let xt=et.length-1;xt>=0;--xt){const vt=et[xt],Dt=vt&&vt.name;typeof Dt=="string"&&fc(S,vt,Dt)}},jr=function(S,I,et){if(!et)try{et=I.getAttributeNode(S)}catch{et=null}cs(t.removed,{attribute:et||null,from:I});try{et?I.removeAttributeNode(et):I.removeAttribute(S)}catch{try{I.removeAttribute(S)}catch{}}if(S==="is")if(st||T)try{$r(I)}catch{}else try{I.setAttribute(S,"")}catch{}},xx=function(S){const I=w(S);if(I)for(let et=I.length-1;et>=0;--et){const xt=I[et],vt=xt&&xt.name;typeof vt!="string"||mt[ie(vt)]||fc(S,xt,vt)}},ao=function(S){const I=[S];for(;I.length>0;){const et=I.pop();A(et)===De.element&&xx(et);const vt=C(et);if(vt)for(let Dt=vt.length-1;Dt>=0;--Dt)I.push(vt[Dt])}},pc=function(S,I){return Oe?S==="patchsrc"?!0:S==="for"&&I!=="label"&&I!=="output":!1},Cx=function(S){if(!Oe)return;const I=[S];for(;I.length>0;){const et=I.pop(),xt=A(et);if(xt===De.processingInstruction||xt===De.comment&&ge(Rc,et.data)){try{m(et)}catch{}continue}if(xt===De.element){const Dt=et,Zt=ie(L(et));try{Dt.hasAttribute&&Dt.hasAttribute("patchsrc")&&Dt.removeAttribute("patchsrc"),Dt.hasAttribute&&Dt.hasAttribute("for")&&pc("for",Zt)&&Dt.removeAttribute("for")}catch{}}const vt=C(et);if(vt)for(let Dt=vt.length-1;Dt>=0;--Dt)I.push(vt[Dt])}},gc=function(S){let I=null,et=null;if(X)S="<remove></remove>"+S;else{const Dt=Lc(S,/^[\r\n\t ]+/);et=Dt&&Dt[0]}ls==="application/xhtml+xml"&&mi===rr&&(S='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+S+"</body></html>");const xt=j?$(S):S;if(mi===rr)try{I=new h().parseFromString(xt,ls)}catch{}if(!I||!I.documentElement){I=H.createDocument(mi,"template",null);try{I.documentElement.innerHTML=za?z:xt}catch{}}const vt=I.body||I.documentElement;return S&&et&&vt.insertBefore(r.createTextNode(et),vt.childNodes[0]||null),mi===rr?pt.call(I,g?"html":"body")[0]:g?I.documentElement:vt},mc=function(S){const I=F?F(S):S.ownerDocument;return K.call(I||S,S,l.SHOW_ELEMENT|l.SHOW_COMMENT|l.SHOW_TEXT|l.SHOW_PROCESSING_INSTRUCTION|l.SHOW_CDATA_SECTION,null)},no=function(S){return S=us(S,wt," "),S=us(S,Et," "),S=us(S,At," "),S},Ua=function(S){var I;S.normalize();const et=F?F(S):S.ownerDocument,xt=K.call(et||S,S,l.SHOW_TEXT|l.SHOW_COMMENT|l.SHOW_CDATA_SECTION|l.SHOW_PROCESSING_INSTRUCTION,null);let vt=xt.nextNode();for(;vt;)vt.data=no(vt.data),vt=xt.nextNode();const Dt=(I=S.querySelectorAll)===null||I===void 0?void 0:I.call(S,"template");Dt&&Zr(Dt,Zt=>{xi(Zt.content)&&Ua(Zt.content)})},lo=function(S){const I=v?v(S):null;return typeof I!="string"||ie(I)!=="form"?!1:typeof S.nodeName!="string"||typeof S.textContent!="string"||typeof S.removeChild!="function"||S.attributes!==w(S)||typeof S.removeAttribute!="function"||typeof S.setAttribute!="function"||typeof S.namespaceURI!="string"||typeof S.insertBefore!="function"||typeof S.hasChildNodes!="function"||S.nodeType!==_(S)||S.childNodes!==C(S)},xi=function(S){if(!_||typeof S!="object"||S===null)return!1;try{return _(S)===De.documentFragment}catch{return!1}},hs=function(S){if(!_||typeof S!="object"||S===null)return!1;try{return typeof _(S)=="number"}catch{return!1}};function ir(at,S,I){at.length!==0&&Zr(at,et=>{et.call(t,S,I,yi)})}const bx=function(S,I){return!!(Oe&&S.hasChildNodes()&&!hs(S.firstElementChild)&&ge(Pc,S.textContent)&&ge(Pc,S.innerHTML)||Oe&&S.namespaceURI===rr&&yC[I]&&(hs(S.firstElementChild)||typeof S.textContent=="string"&&ge(xC[I],S.textContent))||S.nodeType===De.processingInstruction||Oe&&S.nodeType===De.comment&&ge(Rc,S.data))},ho=function(S,I){if(S instanceof RegExp)return ge(S,I);if(S instanceof Function){for(var et=arguments.length,xt=new Array(et>2?et-2:0),vt=2;vt<et;vt++)xt[vt-2]=arguments[vt];return!!S(I,...xt)}return!1},kx=function(S,I,et){if(!Ye[I]&&kc(I)&&ho(re.tagNameCheck,I))return!1;if(it&&!ct[I]){const xt=x(S),vt=C(S);if(vt&&xt){const Dt=vt.length;for(let Zt=Dt-1;Zt>=0;--Zt){const te=S===et?f(vt[Zt],!0):vt[Zt];xt.insertBefore(te,y(S))}}}return $r(S),!0},yc=function(S,I,et,xt){return S.length===0?I:I===et||I===xt?Pe(I):I},xc=function(S,I){return S===I||x(S)!==null?!1:(tt&&ao(S),!0)},Cc=function(S,I){if(ir(nt.beforeSanitizeElements,S,null),xc(S,I))return!0;if(lo(S))return $r(S),!0;const et=ie(L(S));if(Ft=yc(nt.uponSanitizeElement,Ft,q,V),ir(nt.uponSanitizeElement,S,{tagName:et,allowedTags:Ft}),xc(S,I))return!0;if(bx(S,et))return $r(S),!0;if(Ye[et]||!(we.tagCheck instanceof Function&&we.tagCheck(et))&&!Ft[et]){const vt=kx(S,et,I);return vt===!1&&ir(nt.afterSanitizeElements,S,null),vt}if(A(S)===De.element&&!yx(S)||(et==="noscript"||et==="noembed"||et==="noframes")&&ge(gC,S.innerHTML))return $r(S),!0;if(_e&&S.nodeType===De.text){const vt=no(S.textContent);S.textContent!==vt&&(cs(t.removed,{element:S.cloneNode()}),S.textContent=vt)}return ir(nt.afterSanitizeElements,S,null),!1},bc=function(S,I,et){if(yr[I]||pc(I,S)||rt&&(I==="id"||I==="name")&&(et in r||et in fx))return!1;const xt=mt[I]||we.attributeCheck instanceof Function&&we.attributeCheck(I,S);return Te&&ge(qt,I)||Er&&ge(Lt,I)?!0:xt?Xt[I]||ge(Nt,us(et,gt,""))||(I==="src"||I==="xlink:href"||I==="href")&&S!=="script"&&Fc(et,"data:")===0&&Bt[S]||Mr&&!ge(lt,us(et,gt,""))?!0:!et:kc(S)&&ho(re.tagNameCheck,S)&&ho(re.attributeNameCheck,I,S)||I==="is"&&re.allowCustomizedBuiltInElements&&ho(re.tagNameCheck,et)},wx=jt({},["annotation-xml","color-profile","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","missing-glyph"]),kc=function(S){return!wx[ws(S)]&&ge(Mt,S)},Tx=function(S,I,et,xt){if(j&&typeof u=="object"&&typeof u.getAttributeType=="function"&&!et)switch(u.getAttributeType(S,I)){case"TrustedHTML":return $(xt);case"TrustedScriptURL":return B(xt)}return xt},_x=function(S,I,et,xt){try{et?S.setAttributeNS(et,I,xt):S.setAttribute(I,xt),lo(S)?$r(S):Bc(t.removed)}catch{jr(I,S)}},wc=function(S){ir(nt.beforeSanitizeAttributes,S,null);const I=S.attributes;if(!I||lo(S))return;mt=yc(nt.uponSanitizeAttribute,mt,ke,Q);const et={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:mt,forceKeepAttr:void 0};let xt=I.length;const vt=ie(S.nodeName);for(;xt--;){const Dt=I[xt],Zt=Dt.name,te=Dt.namespaceURI,Be=Dt.value,Le=ie(Zt),Xa=Be;let Se=Zt==="value"?Xa:Kx(Xa);if(et.attrName=Le,et.attrValue=Se,et.keepAttr=!0,et.forceKeepAttr=void 0,ir(nt.uponSanitizeAttribute,S,et),Se=et.attrValue,Z&&(Le==="id"||Le==="name")&&Fc(Se,J)!==0&&(jr(Zt,S,Dt),Se=J+Se),Oe&&ge(/((--!?|])>)|<\/(style|script|title|xmp|textarea|noscript|iframe|noembed|noframes)/i,Se)){jr(Zt,S,Dt);continue}if(Le==="attributename"&&Lc(Se,"href")){jr(Zt,S,Dt);continue}if(!et.forceKeepAttr){if(!et.keepAttr){jr(Zt,S,Dt);continue}if(!xr&&ge(mC,Se)){jr(Zt,S,Dt);continue}if(_e&&(Se=no(Se)),!bc(vt,Le,Se)){jr(Zt,S,Dt);continue}Se=Tx(vt,Le,te,Se),Se!==Xa&&_x(S,Zt,te,Se)}}ir(nt.afterSanitizeAttributes,S,null)},co=function(S){let I=null;const et=mc(S);for(ir(nt.beforeSanitizeShadowDOM,S,null);I=et.nextNode();)if(ir(nt.uponSanitizeShadowNode,I,null),Cc(I,S),wc(I),xi(I.content)&&co(I.content),A(I)===De.element){const xt=b(I);xi(xt)&&(Ga(xt),co(xt))}ir(nt.afterSanitizeShadowDOM,S,null)},Ga=function(S){const I=[{node:S,shadow:null}];for(;I.length>0;){const et=I.pop();if(et.shadow){co(et.shadow);continue}const xt=et.node,Dt=A(xt)===De.element,Zt=C(xt);if(Zt)for(let te=Zt.length-1;te>=0;--te)I.push({node:Zt[te],shadow:null});if(Dt){const te=v?v(xt):null;if(typeof te=="string"&&ie(te)==="template"){const Be=xt.content;xi(Be)&&I.push({node:Be,shadow:null})}}if(Dt){const te=b(xt);xi(te)&&I.push({node:null,shadow:te},{node:te,shadow:null})}}};return t.sanitize=function(at){let S=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},I=null,et=null,xt=null,vt=null;if(za=!at,za&&(at="<!-->"),typeof at!="string"&&!hs(at)&&(at=rC(at),typeof at!="string"))throw Ur("dirty is not a string, aborting");if(!t.isSupported)return at;D?(Ft=V,mt=Q):ja(S),(nt.uponSanitizeElement.length>0||nt.uponSanitizeAttribute.length>0)&&(Ft=Pe(Ft)),nt.uponSanitizeAttribute.length>0&&(mt=Pe(mt)),t.removed=[];const Dt=tt&&typeof at!="string"&&hs(at);if(Dt){Cx(at);const Be=L(at);if(typeof Be=="string"){const Le=ie(Be);if(!Ft[Le]||Ye[Le])throw oo(at),Ur("root node is forbidden and cannot be sanitized in-place")}if(lo(at))throw oo(at),Ur("root node is clobbered and cannot be sanitized in-place");try{Ga(at)}catch(Le){throw oo(at),Le}}else if(hs(at))I=gc("<!---->"),et=I.ownerDocument.importNode(at,!0),et.nodeType===De.element&&et.nodeName==="BODY"||et.nodeName==="HTML"?I=et:I.appendChild(et),Ga(et);else{if(!st&&!_e&&!g&&at.indexOf("<")===-1)return j&&R?$(at):at;if(I=gc(at),!I)return st?null:R?z:""}I&&X&&$r(I.firstChild);const Zt=Dt?at:I;try{const Be=mc(Zt);for(;xt=Be.nextNode();)Cc(xt,Zt),wc(xt),xi(xt.content)&&co(xt.content)}catch(Be){throw Dt&&(oo(at),Zr(t.removed,Le=>{Le.element&&ao(Le.element)})),Be}if(Dt)return Zr(t.removed,Be=>{Be.element&&ao(Be.element)}),_e&&Ua(at),at;if(st){if(_e&&Ua(I),T)for(vt=ut.call(I.ownerDocument);I.firstChild;)vt.appendChild(I.firstChild);else vt=I;return(mt.shadowroot||mt.shadowrootmode)&&(vt=kt.call(i,vt,!0)),vt}let te=g?I.outerHTML:I.innerHTML;return g&&Ft["!doctype"]&&I.ownerDocument&&I.ownerDocument.doctype&&I.ownerDocument.doctype.name&&ge(fC,I.ownerDocument.doctype.name)&&(te="<!DOCTYPE "+I.ownerDocument.doctype.name+`>
|
|
4
|
+
`+te),_e&&(te=no(te)),j&&R?$(te):te},t.setConfig=function(){let at=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};ja(at),D=!0,V=Ft,Q=mt},t.clearConfig=function(){yi=null,D=!1,V=null,Q=null,j=W,z=""},t.isValidAttribute=function(at,S,I){yi||ja({});const et=ie(at),xt=ie(S);return bc(et,xt,I)},t.addHook=function(at,S){typeof S=="function"&&Ae(nt,at)&&cs(nt[at],S)},t.removeHook=function(at,S){if(Ae(nt,at)){if(S!==void 0){const I=Vx(nt[at],S);return I===-1?void 0:Zx(nt[at],I,1)[0]}return Bc(nt[at])}},t.removeHooks=function(at){Ae(nt,at)&&(nt[at]=[])},t.removeAllHooks=function(){nt=Nc()},t}var Xi=wf(),Vn=p((e,t,{depth:r=2}={})=>{const i={depth:r};if(Array.isArray(t)&&!Array.isArray(e))return t.forEach(s=>Vn(e,s,i)),e;if(Array.isArray(t)&&Array.isArray(e))return t.forEach(s=>{e.includes(s)||e.push(s)}),e;if(e==null||r<=0)return e!=null&&typeof e=="object"&&typeof t=="object"?Object.assign(e,t):t;if(t!=null&&typeof e=="object"&&typeof t=="object"){const s=e;Object.entries(t).forEach(([o,a])=>{if(typeof a=="object"){if(a===null)return;Object.hasOwn(e,o)||Object.defineProperty(e,o,{value:void 0,writable:!0,enumerable:!0,configurable:!0}),s[o]===void 0&&(s[o]=Array.isArray(a)?[]:{}),typeof s[o]=="object"&&(s[o]=Vn(s[o],a,{depth:r-1}))}else typeof s[o]!="object"&&(Object.hasOwn(e,o)?s[o]=a:Object.defineProperty(e,o,{value:a,writable:!0,enumerable:!0,configurable:!0}))})}return e},"assignWithDepth"),ce=Vn,dr="#ffffff",fr="#f2f2f2",Ot=p((e,t)=>t?k(e,{s:-40,l:10}):k(e,{s:-40,l:-10}),"mkBorder"),$i,kC=($i=class{constructor(){this.background="#f4f4f4",this.primaryColor="#fff4dd",this.noteBkgColor="#fff5ad",this.noteTextColor="#333",this.THEME_COLOR_LIMIT=12,this.radius=5,this.strokeWidth=1,this.fontFamily='"trebuchet ms", verdana, arial, sans-serif',this.fontSize="16px",this.useGradient=!0,this.dropShadow="drop-shadow( 1px 2px 2px rgba(185,185,185,1))"}updateColors(){var r,i,s,o,a,n,l,c,h,u,d,f,m,y,C,x,b,w,_,v,F,A,L,j,z,W,ot,Y,M,$,B,P,O,H,K,ut,pt,kt,nt,wt,Et,At,qt,Lt,lt,gt,Mt,Nt,Ft,q;if(this.primaryTextColor=this.primaryTextColor||(this.darkMode?"#eee":"#333"),this.secondaryColor=this.secondaryColor||k(this.primaryColor,{h:-120}),this.tertiaryColor=this.tertiaryColor||k(this.primaryColor,{h:180,l:5}),this.primaryBorderColor=this.primaryBorderColor||Ot(this.primaryColor,this.darkMode),this.secondaryBorderColor=this.secondaryBorderColor||Ot(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=this.tertiaryBorderColor||Ot(this.tertiaryColor,this.darkMode),this.noteBorderColor=this.noteBorderColor||Ot(this.noteBkgColor,this.darkMode),this.noteBkgColor=this.noteBkgColor||"#fff5ad",this.noteTextColor=this.noteTextColor||"#333",this.secondaryTextColor=this.secondaryTextColor||E(this.secondaryColor),this.tertiaryTextColor=this.tertiaryTextColor||E(this.tertiaryColor),this.lineColor=this.lineColor||E(this.background),this.arrowheadColor=this.arrowheadColor||E(this.background),this.textColor=this.textColor||this.primaryTextColor,this.border2=this.border2||this.tertiaryBorderColor,this.nodeBkg=this.nodeBkg||this.primaryColor,this.mainBkg=this.mainBkg||this.primaryColor,this.nodeBorder=this.nodeBorder||this.primaryBorderColor,this.clusterBkg=this.clusterBkg||this.tertiaryColor,this.clusterBorder=this.clusterBorder||this.tertiaryBorderColor,this.defaultLinkColor=this.defaultLinkColor||this.lineColor,this.titleColor=this.titleColor||this.tertiaryTextColor,this.edgeLabelBackground=this.edgeLabelBackground||(this.darkMode?G(this.secondaryColor,30):this.secondaryColor),this.nodeTextColor=this.nodeTextColor||this.primaryTextColor,this.actorBorder=this.actorBorder||this.primaryBorderColor,this.actorBkg=this.actorBkg||this.mainBkg,this.actorTextColor=this.actorTextColor||this.primaryTextColor,this.actorLineColor=this.actorLineColor||this.actorBorder,this.labelBoxBkgColor=this.labelBoxBkgColor||this.actorBkg,this.signalColor=this.signalColor||this.textColor,this.signalTextColor=this.signalTextColor||this.textColor,this.labelBoxBorderColor=this.labelBoxBorderColor||this.actorBorder,this.labelTextColor=this.labelTextColor||this.actorTextColor,this.loopTextColor=this.loopTextColor||this.actorTextColor,this.activationBorderColor=this.activationBorderColor||G(this.secondaryColor,10),this.activationBkgColor=this.activationBkgColor||this.secondaryColor,this.sequenceNumberColor=this.sequenceNumberColor||E(this.lineColor),this.rectBkgColor=this.rectBkgColor||this.tertiaryColor,this.sectionBkgColor=this.sectionBkgColor||this.tertiaryColor,this.altSectionBkgColor=this.altSectionBkgColor||"white",this.sectionBkgColor=this.sectionBkgColor||this.secondaryColor,this.sectionBkgColor2=this.sectionBkgColor2||this.primaryColor,this.excludeBkgColor=this.excludeBkgColor||"#eeeeee",this.taskBorderColor=this.taskBorderColor||this.primaryBorderColor,this.taskBkgColor=this.taskBkgColor||this.primaryColor,this.activeTaskBorderColor=this.activeTaskBorderColor||this.primaryColor,this.activeTaskBkgColor=this.activeTaskBkgColor||U(this.primaryColor,23),this.gridColor=this.gridColor||"lightgrey",this.doneTaskBkgColor=this.doneTaskBkgColor||"lightgrey",this.doneTaskBorderColor=this.doneTaskBorderColor||"grey",this.critBorderColor=this.critBorderColor||"#ff8888",this.critBkgColor=this.critBkgColor||"red",this.todayLineColor=this.todayLineColor||"red",this.vertLineColor=this.vertLineColor||"navy",this.taskTextColor=this.taskTextColor||this.textColor,this.taskTextOutsideColor=this.taskTextOutsideColor||this.textColor,this.taskTextLightColor=this.taskTextLightColor||this.textColor,this.taskTextColor=this.taskTextColor||this.primaryTextColor,this.taskTextDarkColor=this.taskTextDarkColor||this.textColor,this.taskTextClickableColor=this.taskTextClickableColor||"#003163",this.noteFontWeight=this.noteFontWeight||"normal",this.fontWeight=this.fontWeight||"normal",this.personBorder=this.personBorder||this.primaryBorderColor,this.personBkg=this.personBkg||this.mainBkg,this.darkMode?(this.rowOdd=this.rowOdd||G(this.mainBkg,5)||"#ffffff",this.rowEven=this.rowEven||G(this.mainBkg,10)):(this.rowOdd=this.rowOdd||U(this.mainBkg,75)||"#ffffff",this.rowEven=this.rowEven||U(this.mainBkg,5)),this.transitionColor=this.transitionColor||this.lineColor,this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||this.tertiaryColor,this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.compositeBorder=this.compositeBorder||this.nodeBorder,this.innerEndBackground=this.nodeBorder,this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.transitionColor=this.transitionColor||this.lineColor,this.specialStateColor=this.lineColor,this.cScale0=this.cScale0||this.primaryColor,this.cScale1=this.cScale1||this.secondaryColor,this.cScale2=this.cScale2||this.tertiaryColor,this.cScale3=this.cScale3||k(this.primaryColor,{h:30}),this.cScale4=this.cScale4||k(this.primaryColor,{h:60}),this.cScale5=this.cScale5||k(this.primaryColor,{h:90}),this.cScale6=this.cScale6||k(this.primaryColor,{h:120}),this.cScale7=this.cScale7||k(this.primaryColor,{h:150}),this.cScale8=this.cScale8||k(this.primaryColor,{h:210,l:150}),this.cScale9=this.cScale9||k(this.primaryColor,{h:270}),this.cScale10=this.cScale10||k(this.primaryColor,{h:300}),this.cScale11=this.cScale11||k(this.primaryColor,{h:330}),this.darkMode)for(let mt=0;mt<this.THEME_COLOR_LIMIT;mt++)this["cScale"+mt]=G(this["cScale"+mt],75);else for(let mt=0;mt<this.THEME_COLOR_LIMIT;mt++)this["cScale"+mt]=G(this["cScale"+mt],25);for(let mt=0;mt<this.THEME_COLOR_LIMIT;mt++)this["cScaleInv"+mt]=this["cScaleInv"+mt]||E(this["cScale"+mt]);for(let mt=0;mt<this.THEME_COLOR_LIMIT;mt++)this.darkMode?this["cScalePeer"+mt]=this["cScalePeer"+mt]||U(this["cScale"+mt],10):this["cScalePeer"+mt]=this["cScalePeer"+mt]||G(this["cScale"+mt],10);this.scaleLabelColor=this.scaleLabelColor||this.labelTextColor;for(let mt=0;mt<this.THEME_COLOR_LIMIT;mt++)this["cScaleLabel"+mt]=this["cScaleLabel"+mt]||this.scaleLabelColor;const t=this.darkMode?-4:-1;for(let mt=0;mt<5;mt++)this["surface"+mt]=this["surface"+mt]||k(this.mainBkg,{h:180,s:-15,l:t*(5+mt*3)}),this["surfacePeer"+mt]=this["surfacePeer"+mt]||k(this.mainBkg,{h:180,s:-15,l:t*(8+mt*3)});this.classText=this.classText||this.textColor,this.fillType0=this.fillType0||this.primaryColor,this.fillType1=this.fillType1||this.secondaryColor,this.fillType2=this.fillType2||k(this.primaryColor,{h:64}),this.fillType3=this.fillType3||k(this.secondaryColor,{h:64}),this.fillType4=this.fillType4||k(this.primaryColor,{h:-64}),this.fillType5=this.fillType5||k(this.secondaryColor,{h:-64}),this.fillType6=this.fillType6||k(this.primaryColor,{h:128}),this.fillType7=this.fillType7||k(this.secondaryColor,{h:128}),this.pie1=this.pie1||this.primaryColor,this.pie2=this.pie2||this.secondaryColor,this.pie3=this.pie3||this.tertiaryColor,this.pie4=this.pie4||k(this.primaryColor,{l:-10}),this.pie5=this.pie5||k(this.secondaryColor,{l:-10}),this.pie6=this.pie6||k(this.tertiaryColor,{l:-10}),this.pie7=this.pie7||k(this.primaryColor,{h:60,l:-10}),this.pie8=this.pie8||k(this.primaryColor,{h:-60,l:-10}),this.pie9=this.pie9||k(this.primaryColor,{h:120,l:0}),this.pie10=this.pie10||k(this.primaryColor,{h:60,l:-20}),this.pie11=this.pie11||k(this.primaryColor,{h:-60,l:-20}),this.pie12=this.pie12||k(this.primaryColor,{h:120,l:-10}),this.pieTitleTextSize=this.pieTitleTextSize||"25px",this.pieTitleTextColor=this.pieTitleTextColor||this.taskTextDarkColor,this.pieSectionTextSize=this.pieSectionTextSize||"17px",this.pieSectionTextColor=this.pieSectionTextColor||this.textColor,this.pieLegendTextSize=this.pieLegendTextSize||"17px",this.pieLegendTextColor=this.pieLegendTextColor||this.taskTextDarkColor,this.pieStrokeColor=this.pieStrokeColor||"black",this.pieStrokeWidth=this.pieStrokeWidth||"2px",this.pieOuterStrokeWidth=this.pieOuterStrokeWidth||"2px",this.pieOuterStrokeColor=this.pieOuterStrokeColor||"black",this.pieOpacity=this.pieOpacity||"0.7",this.venn1=this.venn1??k(this.primaryColor,{l:-30}),this.venn2=this.venn2??k(this.secondaryColor,{l:-30}),this.venn3=this.venn3??k(this.tertiaryColor,{l:-30}),this.venn4=this.venn4??k(this.primaryColor,{h:60,l:-30}),this.venn5=this.venn5??k(this.primaryColor,{h:-60,l:-30}),this.venn6=this.venn6??k(this.secondaryColor,{h:60,l:-30}),this.venn7=this.venn7??k(this.primaryColor,{h:120,l:-30}),this.venn8=this.venn8??k(this.secondaryColor,{h:120,l:-30}),this.vennTitleTextColor=this.vennTitleTextColor??this.titleColor,this.vennSetTextColor=this.vennSetTextColor??this.textColor,this.cynefin={domainFontSize:((r=this.cynefin)==null?void 0:r.domainFontSize)||16,itemFontSize:((i=this.cynefin)==null?void 0:i.itemFontSize)||12,boundaryColor:((s=this.cynefin)==null?void 0:s.boundaryColor)||this.lineColor,boundaryWidth:((o=this.cynefin)==null?void 0:o.boundaryWidth)||2,cliffColor:((a=this.cynefin)==null?void 0:a.cliffColor)||"#8B0000",cliffWidth:((n=this.cynefin)==null?void 0:n.cliffWidth)||4,arrowColor:((l=this.cynefin)==null?void 0:l.arrowColor)||this.lineColor,arrowWidth:((c=this.cynefin)==null?void 0:c.arrowWidth)||2,complexBg:((h=this.cynefin)==null?void 0:h.complexBg)||"#E8F5E9",complicatedBg:((u=this.cynefin)==null?void 0:u.complicatedBg)||"#E3F2FD",chaoticBg:((d=this.cynefin)==null?void 0:d.chaoticBg)||"#FBE9E7",clearBg:((f=this.cynefin)==null?void 0:f.clearBg)||"#FFF8E1",confusionBg:((m=this.cynefin)==null?void 0:m.confusionBg)||"#F3E5F5",textColor:((y=this.cynefin)==null?void 0:y.textColor)||this.textColor,labelColor:((C=this.cynefin)==null?void 0:C.labelColor)||this.primaryTextColor},this.radar={axisColor:((x=this.radar)==null?void 0:x.axisColor)||this.lineColor,axisStrokeWidth:((b=this.radar)==null?void 0:b.axisStrokeWidth)||2,axisLabelFontSize:((w=this.radar)==null?void 0:w.axisLabelFontSize)||12,curveOpacity:((_=this.radar)==null?void 0:_.curveOpacity)||.5,curveStrokeWidth:((v=this.radar)==null?void 0:v.curveStrokeWidth)||2,graticuleColor:((F=this.radar)==null?void 0:F.graticuleColor)||"#DEDEDE",graticuleStrokeWidth:((A=this.radar)==null?void 0:A.graticuleStrokeWidth)||1,graticuleOpacity:((L=this.radar)==null?void 0:L.graticuleOpacity)||.3,legendBoxSize:((j=this.radar)==null?void 0:j.legendBoxSize)||12,legendFontSize:((z=this.radar)==null?void 0:z.legendFontSize)||12},this.wardleyEvolutionColor=this.wardleyEvolutionColor||"#dc3545",this.wardley={backgroundColor:((W=this.wardley)==null?void 0:W.backgroundColor)||this.background,axisColor:((ot=this.wardley)==null?void 0:ot.axisColor)||this.lineColor,axisTextColor:((Y=this.wardley)==null?void 0:Y.axisTextColor)||this.primaryTextColor,gridColor:((M=this.wardley)==null?void 0:M.gridColor)||this.gridColor,componentFill:(($=this.wardley)==null?void 0:$.componentFill)||this.background,componentStroke:((B=this.wardley)==null?void 0:B.componentStroke)||this.lineColor,componentLabelColor:((P=this.wardley)==null?void 0:P.componentLabelColor)||this.primaryTextColor,linkStroke:((O=this.wardley)==null?void 0:O.linkStroke)||this.lineColor,evolutionStroke:((H=this.wardley)==null?void 0:H.evolutionStroke)||this.wardleyEvolutionColor,annotationStroke:((K=this.wardley)==null?void 0:K.annotationStroke)||this.lineColor,annotationTextColor:((ut=this.wardley)==null?void 0:ut.annotationTextColor)||this.primaryTextColor,annotationFill:((pt=this.wardley)==null?void 0:pt.annotationFill)||this.background},this.archEdgeColor=this.archEdgeColor||"#777",this.archEdgeArrowColor=this.archEdgeArrowColor||"#777",this.archEdgeWidth=this.archEdgeWidth||"3",this.archGroupBorderColor=this.archGroupBorderColor||"#000",this.archGroupBorderWidth=this.archGroupBorderWidth||"2px",this.quadrant1Fill=this.quadrant1Fill||this.primaryColor,this.quadrant2Fill=this.quadrant2Fill||k(this.primaryColor,{r:5,g:5,b:5}),this.quadrant3Fill=this.quadrant3Fill||k(this.primaryColor,{r:10,g:10,b:10}),this.quadrant4Fill=this.quadrant4Fill||k(this.primaryColor,{r:15,g:15,b:15}),this.quadrant1TextFill=this.quadrant1TextFill||this.primaryTextColor,this.quadrant2TextFill=this.quadrant2TextFill||k(this.primaryTextColor,{r:-5,g:-5,b:-5}),this.quadrant3TextFill=this.quadrant3TextFill||k(this.primaryTextColor,{r:-10,g:-10,b:-10}),this.quadrant4TextFill=this.quadrant4TextFill||k(this.primaryTextColor,{r:-15,g:-15,b:-15}),this.quadrantPointFill=this.quadrantPointFill||Ke(this.quadrant1Fill)?U(this.quadrant1Fill):G(this.quadrant1Fill),this.quadrantPointTextFill=this.quadrantPointTextFill||this.primaryTextColor,this.quadrantXAxisTextFill=this.quadrantXAxisTextFill||this.primaryTextColor,this.quadrantYAxisTextFill=this.quadrantYAxisTextFill||this.primaryTextColor,this.quadrantInternalBorderStrokeFill=this.quadrantInternalBorderStrokeFill||this.primaryBorderColor,this.quadrantExternalBorderStrokeFill=this.quadrantExternalBorderStrokeFill||this.primaryBorderColor,this.quadrantTitleFill=this.quadrantTitleFill||this.primaryTextColor,this.xyChart={backgroundColor:((kt=this.xyChart)==null?void 0:kt.backgroundColor)||this.background,titleColor:((nt=this.xyChart)==null?void 0:nt.titleColor)||this.primaryTextColor,dataLabelColor:((wt=this.xyChart)==null?void 0:wt.dataLabelColor)||this.primaryTextColor,legendTextColor:((Et=this.xyChart)==null?void 0:Et.legendTextColor)||this.primaryTextColor,xAxisTitleColor:((At=this.xyChart)==null?void 0:At.xAxisTitleColor)||this.primaryTextColor,xAxisLabelColor:((qt=this.xyChart)==null?void 0:qt.xAxisLabelColor)||this.primaryTextColor,xAxisTickColor:((Lt=this.xyChart)==null?void 0:Lt.xAxisTickColor)||this.primaryTextColor,xAxisLineColor:((lt=this.xyChart)==null?void 0:lt.xAxisLineColor)||this.primaryTextColor,yAxisTitleColor:((gt=this.xyChart)==null?void 0:gt.yAxisTitleColor)||this.primaryTextColor,yAxisLabelColor:((Mt=this.xyChart)==null?void 0:Mt.yAxisLabelColor)||this.primaryTextColor,yAxisTickColor:((Nt=this.xyChart)==null?void 0:Nt.yAxisTickColor)||this.primaryTextColor,yAxisLineColor:((Ft=this.xyChart)==null?void 0:Ft.yAxisLineColor)||this.primaryTextColor,plotColorPalette:((q=this.xyChart)==null?void 0:q.plotColorPalette)||"#FFF4DD,#FFD8B1,#FFA07A,#ECEFF1,#D6DBDF,#C3E0A8,#FFB6A4,#FFD74D,#738FA7,#FFFFF0"},this.requirementBackground=this.requirementBackground||this.primaryColor,this.requirementBorderColor=this.requirementBorderColor||this.primaryBorderColor,this.requirementBorderSize=this.requirementBorderSize||"1",this.requirementTextColor=this.requirementTextColor||this.primaryTextColor,this.relationColor=this.relationColor||this.lineColor,this.relationLabelBackground=this.relationLabelBackground||(this.darkMode?G(this.secondaryColor,30):this.secondaryColor),this.relationLabelColor=this.relationLabelColor||this.actorTextColor,this.git0=this.git0||this.primaryColor,this.git1=this.git1||this.secondaryColor,this.git2=this.git2||this.tertiaryColor,this.git3=this.git3||k(this.primaryColor,{h:-30}),this.git4=this.git4||k(this.primaryColor,{h:-60}),this.git5=this.git5||k(this.primaryColor,{h:-90}),this.git6=this.git6||k(this.primaryColor,{h:60}),this.git7=this.git7||k(this.primaryColor,{h:120}),this.darkMode?(this.git0=U(this.git0,25),this.git1=U(this.git1,25),this.git2=U(this.git2,25),this.git3=U(this.git3,25),this.git4=U(this.git4,25),this.git5=U(this.git5,25),this.git6=U(this.git6,25),this.git7=U(this.git7,25)):(this.git0=G(this.git0,25),this.git1=G(this.git1,25),this.git2=G(this.git2,25),this.git3=G(this.git3,25),this.git4=G(this.git4,25),this.git5=G(this.git5,25),this.git6=G(this.git6,25),this.git7=G(this.git7,25)),this.gitInv0=this.gitInv0||E(this.git0),this.gitInv1=this.gitInv1||E(this.git1),this.gitInv2=this.gitInv2||E(this.git2),this.gitInv3=this.gitInv3||E(this.git3),this.gitInv4=this.gitInv4||E(this.git4),this.gitInv5=this.gitInv5||E(this.git5),this.gitInv6=this.gitInv6||E(this.git6),this.gitInv7=this.gitInv7||E(this.git7),this.branchLabelColor=this.branchLabelColor||(this.darkMode?"black":this.labelTextColor),this.gitBranchLabel0=this.gitBranchLabel0||this.branchLabelColor,this.gitBranchLabel1=this.gitBranchLabel1||this.branchLabelColor,this.gitBranchLabel2=this.gitBranchLabel2||this.branchLabelColor,this.gitBranchLabel3=this.gitBranchLabel3||this.branchLabelColor,this.gitBranchLabel4=this.gitBranchLabel4||this.branchLabelColor,this.gitBranchLabel5=this.gitBranchLabel5||this.branchLabelColor,this.gitBranchLabel6=this.gitBranchLabel6||this.branchLabelColor,this.gitBranchLabel7=this.gitBranchLabel7||this.branchLabelColor,this.tagLabelColor=this.tagLabelColor||this.primaryTextColor,this.tagLabelBackground=this.tagLabelBackground||this.primaryColor,this.tagLabelBorder=this.tagBorder||this.primaryBorderColor,this.tagLabelFontSize=this.tagLabelFontSize||"10px",this.commitLabelColor=this.commitLabelColor||this.secondaryTextColor,this.commitLabelBackground=this.commitLabelBackground||this.secondaryColor,this.commitLabelFontSize=this.commitLabelFontSize||"10px",this.emUiFill=this.emUiFill||"white",this.emUiStroke=this.emUiStroke||"#dbdada",this.emProcessorFill=this.emProcessorFill||"#edb3f6",this.emProcessorStroke=this.emProcessorStroke||"#b88cbf",this.emReadModelFill=this.emReadModelFill||"#d3f1a2",this.emReadModelStroke=this.emReadModelStroke||"#a3b732",this.emCommandFill=this.emCommandFill||"#bcd6fe",this.emCommandStroke=this.emCommandStroke||"#679ac3",this.emEventFill=this.emEventFill||"#ffb778",this.emEventStroke=this.emEventStroke||"#c19a0f",this.emSwimlaneBackgroundOdd=this.emSwimlaneBackgroundOdd||"rgb(250,250,250)",this.emSwimlaneBackgroundStroke=this.emSwimlaneBackgroundStroke||"rgb(240,240,240)",this.emArrowhead=this.emArrowhead||this.lineColor,this.emRelationStroke=this.emRelationStroke||this.lineColor,this.attributeBackgroundColorOdd=this.attributeBackgroundColorOdd||dr,this.attributeBackgroundColorEven=this.attributeBackgroundColorEven||fr,this.gradientStart=this.primaryBorderColor,this.gradientStop=this.secondaryBorderColor}calculate(t){if(typeof t!="object"){this.updateColors();return}const r=Object.keys(t);r.forEach(i=>{this[i]=t[i]}),this.updateColors(),r.forEach(i=>{this[i]=t[i]})}},p($i,"Theme"),$i),wC=p(e=>{const t=new kC;return t.calculate(e),t},"getThemeVariables"),Oi,TC=(Oi=class{constructor(){this.background="#333",this.primaryColor="#1f2020",this.secondaryColor=U(this.primaryColor,16),this.tertiaryColor=k(this.primaryColor,{h:-160}),this.primaryBorderColor=E(this.background),this.secondaryBorderColor=Ot(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Ot(this.tertiaryColor,this.darkMode),this.primaryTextColor=E(this.primaryColor),this.secondaryTextColor=E(this.secondaryColor),this.tertiaryTextColor=E(this.tertiaryColor),this.lineColor=E(this.background),this.textColor=E(this.background),this.mainBkg="#1f2020",this.secondBkg="calculated",this.mainContrastColor="lightgrey",this.darkTextColor=U(E("#323D47"),10),this.lineColor="calculated",this.border1="#ccc",this.border2=qr(255,255,255,.25),this.arrowheadColor="calculated",this.fontFamily='"trebuchet ms", verdana, arial, sans-serif',this.fontSize="16px",this.labelBackground="#181818",this.textColor="#ccc",this.THEME_COLOR_LIMIT=12,this.radius=5,this.strokeWidth=1,this.nodeBkg="calculated",this.nodeBorder="calculated",this.clusterBkg="calculated",this.clusterBorder="calculated",this.defaultLinkColor="calculated",this.titleColor="#F9FFFE",this.edgeLabelBackground="calculated",this.actorBorder="calculated",this.actorBkg="calculated",this.actorTextColor="calculated",this.actorLineColor="calculated",this.signalColor="calculated",this.signalTextColor="calculated",this.labelBoxBkgColor="calculated",this.labelBoxBorderColor="calculated",this.labelTextColor="calculated",this.loopTextColor="calculated",this.noteBorderColor="calculated",this.noteBkgColor="#fff5ad",this.noteTextColor="calculated",this.activationBorderColor="calculated",this.activationBkgColor="calculated",this.sequenceNumberColor="black",this.clusterBkg="#302F3D",this.sectionBkgColor=G("#EAE8D9",30),this.altSectionBkgColor="calculated",this.sectionBkgColor2="#EAE8D9",this.excludeBkgColor=G(this.sectionBkgColor,10),this.taskBorderColor=qr(255,255,255,70),this.taskBkgColor="calculated",this.taskTextColor="calculated",this.taskTextLightColor="calculated",this.taskTextOutsideColor="calculated",this.taskTextClickableColor="#003163",this.activeTaskBorderColor=qr(255,255,255,50),this.activeTaskBkgColor="#81B1DB",this.gridColor="calculated",this.doneTaskBkgColor="calculated",this.doneTaskBorderColor="grey",this.critBorderColor="#E83737",this.critBkgColor="#E83737",this.taskTextDarkColor="calculated",this.todayLineColor="#DB5757",this.vertLineColor="#00BFFF",this.personBorder=this.primaryBorderColor,this.personBkg=this.mainBkg,this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.rowOdd=this.rowOdd||U(this.mainBkg,5)||"#ffffff",this.rowEven=this.rowEven||G(this.mainBkg,10),this.labelColor="calculated",this.errorBkgColor="#a44141",this.errorTextColor="#ddd",this.useGradient=!0,this.gradientStart=this.primaryBorderColor,this.gradientStop=this.secondaryBorderColor,this.dropShadow="drop-shadow( 1px 2px 2px rgba(185,185,185,1))",this.noteFontWeight=this.noteFontWeight||"normal",this.fontWeight=this.fontWeight||"normal"}updateColors(){var t,r,i,s,o,a,n,l,c,h,u,d,f,m,y,C,x,b,w,_,v,F,A,L,j,z,W,ot,Y,M,$,B,P,O,H,K,ut,pt,kt,nt,wt,Et,At,qt,Lt,lt,gt,Mt,Nt,Ft;this.secondBkg=U(this.mainBkg,16),this.lineColor=this.mainContrastColor,this.arrowheadColor=this.mainContrastColor,this.nodeBkg=this.mainBkg,this.nodeBorder=this.border1,this.clusterBkg=this.secondBkg,this.clusterBorder=this.border2,this.defaultLinkColor=this.lineColor,this.edgeLabelBackground=U(this.labelBackground,25),this.actorBorder=this.border1,this.actorBkg=this.mainBkg,this.actorTextColor=this.mainContrastColor,this.actorLineColor=this.actorBorder,this.signalColor=this.mainContrastColor,this.signalTextColor=this.mainContrastColor,this.labelBoxBkgColor=this.actorBkg,this.labelBoxBorderColor=this.actorBorder,this.labelTextColor=this.mainContrastColor,this.loopTextColor=this.mainContrastColor,this.noteBorderColor=this.secondaryBorderColor,this.noteBkgColor=this.secondBkg,this.noteTextColor=this.secondaryTextColor,this.activationBorderColor=this.border1,this.activationBkgColor=this.secondBkg,this.rectBkgColor=this.rectBkgColor||this.tertiaryColor,this.altSectionBkgColor=this.background,this.taskBkgColor=U(this.mainBkg,23),this.taskTextColor=this.darkTextColor,this.taskTextLightColor=this.mainContrastColor,this.taskTextOutsideColor=this.taskTextLightColor,this.gridColor=this.mainContrastColor,this.doneTaskBkgColor=this.mainContrastColor,this.taskTextDarkColor=E(this.doneTaskBkgColor),this.archEdgeColor=this.lineColor,this.archEdgeArrowColor=this.lineColor,this.transitionColor=this.transitionColor||this.lineColor,this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||"#555",this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.compositeBorder=this.compositeBorder||this.nodeBorder,this.innerEndBackground=this.primaryBorderColor,this.specialStateColor="#f4f4f4",this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.fillType0=this.primaryColor,this.fillType1=this.secondaryColor,this.fillType2=k(this.primaryColor,{h:64}),this.fillType3=k(this.secondaryColor,{h:64}),this.fillType4=k(this.primaryColor,{h:-64}),this.fillType5=k(this.secondaryColor,{h:-64}),this.fillType6=k(this.primaryColor,{h:128}),this.fillType7=k(this.secondaryColor,{h:128}),this.cScale1=this.cScale1||"#0b0000",this.cScale2=this.cScale2||"#4d1037",this.cScale3=this.cScale3||"#3f5258",this.cScale4=this.cScale4||"#4f2f1b",this.cScale5=this.cScale5||"#6e0a0a",this.cScale6=this.cScale6||"#3b0048",this.cScale7=this.cScale7||"#995a01",this.cScale8=this.cScale8||"#154706",this.cScale9=this.cScale9||"#161722",this.cScale10=this.cScale10||"#00296f",this.cScale11=this.cScale11||"#01629c",this.cScale12=this.cScale12||"#010029",this.cScale0=this.cScale0||this.primaryColor,this.cScale1=this.cScale1||this.secondaryColor,this.cScale2=this.cScale2||this.tertiaryColor,this.cScale3=this.cScale3||k(this.primaryColor,{h:30}),this.cScale4=this.cScale4||k(this.primaryColor,{h:60}),this.cScale5=this.cScale5||k(this.primaryColor,{h:90}),this.cScale6=this.cScale6||k(this.primaryColor,{h:120}),this.cScale7=this.cScale7||k(this.primaryColor,{h:150}),this.cScale8=this.cScale8||k(this.primaryColor,{h:210}),this.cScale9=this.cScale9||k(this.primaryColor,{h:270}),this.cScale10=this.cScale10||k(this.primaryColor,{h:300}),this.cScale11=this.cScale11||k(this.primaryColor,{h:330});for(let q=0;q<this.THEME_COLOR_LIMIT;q++)this["cScaleInv"+q]=this["cScaleInv"+q]||E(this["cScale"+q]);for(let q=0;q<this.THEME_COLOR_LIMIT;q++)this["cScalePeer"+q]=this["cScalePeer"+q]||U(this["cScale"+q],10);for(let q=0;q<5;q++)this["surface"+q]=this["surface"+q]||k(this.mainBkg,{h:30,s:-30,l:-(-10+q*4)}),this["surfacePeer"+q]=this["surfacePeer"+q]||k(this.mainBkg,{h:30,s:-30,l:-(-7+q*4)});this.scaleLabelColor=this.scaleLabelColor||(this.darkMode?"black":this.labelTextColor);for(let q=0;q<this.THEME_COLOR_LIMIT;q++)this["cScaleLabel"+q]=this["cScaleLabel"+q]||this.scaleLabelColor;for(let q=0;q<this.THEME_COLOR_LIMIT;q++)this["pie"+q]=this["cScale"+q];this.pieTitleTextSize=this.pieTitleTextSize||"25px",this.pieTitleTextColor=this.pieTitleTextColor||this.mainContrastColor,this.pieSectionTextSize=this.pieSectionTextSize||"17px",this.pieSectionTextColor=this.pieSectionTextColor||this.textColor,this.pieLegendTextSize=this.pieLegendTextSize||"17px",this.pieLegendTextColor=this.pieLegendTextColor||this.mainContrastColor,this.pieStrokeColor=this.pieStrokeColor||"black",this.pieStrokeWidth=this.pieStrokeWidth||"2px",this.pieOuterStrokeWidth=this.pieOuterStrokeWidth||"2px",this.pieOuterStrokeColor=this.pieOuterStrokeColor||"black",this.pieOpacity=this.pieOpacity||"0.7";for(let q=0;q<8;q++)this["venn"+(q+1)]=this["venn"+(q+1)]??U(this["cScale"+q],30);this.vennTitleTextColor=this.vennTitleTextColor??this.titleColor,this.vennSetTextColor=this.vennSetTextColor??this.textColor,this.cynefin={domainFontSize:((t=this.cynefin)==null?void 0:t.domainFontSize)||16,itemFontSize:((r=this.cynefin)==null?void 0:r.itemFontSize)||12,boundaryColor:((i=this.cynefin)==null?void 0:i.boundaryColor)||this.lineColor,boundaryWidth:((s=this.cynefin)==null?void 0:s.boundaryWidth)||2,cliffColor:((o=this.cynefin)==null?void 0:o.cliffColor)||"#FF6B6B",cliffWidth:((a=this.cynefin)==null?void 0:a.cliffWidth)||4,arrowColor:((n=this.cynefin)==null?void 0:n.arrowColor)||this.lineColor,arrowWidth:((l=this.cynefin)==null?void 0:l.arrowWidth)||2,complexBg:((c=this.cynefin)==null?void 0:c.complexBg)||"#1B5E20",complicatedBg:((h=this.cynefin)==null?void 0:h.complicatedBg)||"#0D47A1",chaoticBg:((u=this.cynefin)==null?void 0:u.chaoticBg)||"#BF360C",clearBg:((d=this.cynefin)==null?void 0:d.clearBg)||"#F57F17",confusionBg:((f=this.cynefin)==null?void 0:f.confusionBg)||"#4A148C",textColor:((m=this.cynefin)==null?void 0:m.textColor)||this.textColor,labelColor:((y=this.cynefin)==null?void 0:y.labelColor)||this.primaryTextColor},this.quadrant1Fill=this.quadrant1Fill||this.primaryColor,this.quadrant2Fill=this.quadrant2Fill||k(this.primaryColor,{r:5,g:5,b:5}),this.quadrant3Fill=this.quadrant3Fill||k(this.primaryColor,{r:10,g:10,b:10}),this.quadrant4Fill=this.quadrant4Fill||k(this.primaryColor,{r:15,g:15,b:15}),this.quadrant1TextFill=this.quadrant1TextFill||this.primaryTextColor,this.quadrant2TextFill=this.quadrant2TextFill||k(this.primaryTextColor,{r:-5,g:-5,b:-5}),this.quadrant3TextFill=this.quadrant3TextFill||k(this.primaryTextColor,{r:-10,g:-10,b:-10}),this.quadrant4TextFill=this.quadrant4TextFill||k(this.primaryTextColor,{r:-15,g:-15,b:-15}),this.quadrantPointFill=this.quadrantPointFill||Ke(this.quadrant1Fill)?U(this.quadrant1Fill):G(this.quadrant1Fill),this.quadrantPointTextFill=this.quadrantPointTextFill||this.primaryTextColor,this.quadrantXAxisTextFill=this.quadrantXAxisTextFill||this.primaryTextColor,this.quadrantYAxisTextFill=this.quadrantYAxisTextFill||this.primaryTextColor,this.quadrantInternalBorderStrokeFill=this.quadrantInternalBorderStrokeFill||this.primaryBorderColor,this.quadrantExternalBorderStrokeFill=this.quadrantExternalBorderStrokeFill||this.primaryBorderColor,this.quadrantTitleFill=this.quadrantTitleFill||this.primaryTextColor,this.xyChart={backgroundColor:((C=this.xyChart)==null?void 0:C.backgroundColor)||this.background,titleColor:((x=this.xyChart)==null?void 0:x.titleColor)||this.primaryTextColor,dataLabelColor:((b=this.xyChart)==null?void 0:b.dataLabelColor)||this.primaryTextColor,legendTextColor:((w=this.xyChart)==null?void 0:w.legendTextColor)||this.primaryTextColor,xAxisTitleColor:((_=this.xyChart)==null?void 0:_.xAxisTitleColor)||this.primaryTextColor,xAxisLabelColor:((v=this.xyChart)==null?void 0:v.xAxisLabelColor)||this.primaryTextColor,xAxisTickColor:((F=this.xyChart)==null?void 0:F.xAxisTickColor)||this.primaryTextColor,xAxisLineColor:((A=this.xyChart)==null?void 0:A.xAxisLineColor)||this.primaryTextColor,yAxisTitleColor:((L=this.xyChart)==null?void 0:L.yAxisTitleColor)||this.primaryTextColor,yAxisLabelColor:((j=this.xyChart)==null?void 0:j.yAxisLabelColor)||this.primaryTextColor,yAxisTickColor:((z=this.xyChart)==null?void 0:z.yAxisTickColor)||this.primaryTextColor,yAxisLineColor:((W=this.xyChart)==null?void 0:W.yAxisLineColor)||this.primaryTextColor,plotColorPalette:((ot=this.xyChart)==null?void 0:ot.plotColorPalette)||"#3498db,#2ecc71,#e74c3c,#f1c40f,#bdc3c7,#ffffff,#34495e,#9b59b6,#1abc9c,#e67e22"},this.packet={startByteColor:this.primaryTextColor,endByteColor:this.primaryTextColor,labelColor:this.primaryTextColor,titleColor:this.primaryTextColor,blockStrokeColor:this.primaryTextColor,blockFillColor:this.background},this.radar={axisColor:((Y=this.radar)==null?void 0:Y.axisColor)||this.lineColor,axisStrokeWidth:((M=this.radar)==null?void 0:M.axisStrokeWidth)||2,axisLabelFontSize:(($=this.radar)==null?void 0:$.axisLabelFontSize)||12,curveOpacity:((B=this.radar)==null?void 0:B.curveOpacity)||.5,curveStrokeWidth:((P=this.radar)==null?void 0:P.curveStrokeWidth)||2,graticuleColor:((O=this.radar)==null?void 0:O.graticuleColor)||"#DEDEDE",graticuleStrokeWidth:((H=this.radar)==null?void 0:H.graticuleStrokeWidth)||1,graticuleOpacity:((K=this.radar)==null?void 0:K.graticuleOpacity)||.3,legendBoxSize:((ut=this.radar)==null?void 0:ut.legendBoxSize)||12,legendFontSize:((pt=this.radar)==null?void 0:pt.legendFontSize)||12},this.wardleyEvolutionColor=this.wardleyEvolutionColor||"#ff6b6b",this.wardley={backgroundColor:((kt=this.wardley)==null?void 0:kt.backgroundColor)||this.background,axisColor:((nt=this.wardley)==null?void 0:nt.axisColor)||this.lineColor,axisTextColor:((wt=this.wardley)==null?void 0:wt.axisTextColor)||this.primaryTextColor,gridColor:((Et=this.wardley)==null?void 0:Et.gridColor)||this.gridColor,componentFill:((At=this.wardley)==null?void 0:At.componentFill)||this.mainBkg,componentStroke:((qt=this.wardley)==null?void 0:qt.componentStroke)||this.lineColor,componentLabelColor:((Lt=this.wardley)==null?void 0:Lt.componentLabelColor)||this.primaryTextColor,linkStroke:((lt=this.wardley)==null?void 0:lt.linkStroke)||this.lineColor,evolutionStroke:((gt=this.wardley)==null?void 0:gt.evolutionStroke)||this.wardleyEvolutionColor,annotationStroke:((Mt=this.wardley)==null?void 0:Mt.annotationStroke)||this.lineColor,annotationTextColor:((Nt=this.wardley)==null?void 0:Nt.annotationTextColor)||this.primaryTextColor,annotationFill:((Ft=this.wardley)==null?void 0:Ft.annotationFill)||this.mainBkg},this.classText=this.primaryTextColor,this.requirementBackground=this.requirementBackground||this.primaryColor,this.requirementBorderColor=this.requirementBorderColor||this.primaryBorderColor,this.requirementBorderSize=this.requirementBorderSize||"1",this.requirementTextColor=this.requirementTextColor||this.primaryTextColor,this.relationColor=this.relationColor||this.lineColor,this.relationLabelBackground=this.relationLabelBackground||(this.darkMode?G(this.secondaryColor,30):this.secondaryColor),this.relationLabelColor=this.relationLabelColor||this.actorTextColor,this.git0=U(this.secondaryColor,20),this.git1=U(this.pie2||this.secondaryColor,20),this.git2=U(this.pie3||this.tertiaryColor,20),this.git3=U(this.pie4||k(this.primaryColor,{h:-30}),20),this.git4=U(this.pie5||k(this.primaryColor,{h:-60}),20),this.git5=U(this.pie6||k(this.primaryColor,{h:-90}),10),this.git6=U(this.pie7||k(this.primaryColor,{h:60}),10),this.git7=U(this.pie8||k(this.primaryColor,{h:120}),20),this.gitInv0=this.gitInv0||E(this.git0),this.gitInv1=this.gitInv1||E(this.git1),this.gitInv2=this.gitInv2||E(this.git2),this.gitInv3=this.gitInv3||E(this.git3),this.gitInv4=this.gitInv4||E(this.git4),this.gitInv5=this.gitInv5||E(this.git5),this.gitInv6=this.gitInv6||E(this.git6),this.gitInv7=this.gitInv7||E(this.git7),this.gitBranchLabel0=this.gitBranchLabel0||E(this.labelTextColor),this.gitBranchLabel1=this.gitBranchLabel1||this.labelTextColor,this.gitBranchLabel2=this.gitBranchLabel2||this.labelTextColor,this.gitBranchLabel3=this.gitBranchLabel3||E(this.labelTextColor),this.gitBranchLabel4=this.gitBranchLabel4||this.labelTextColor,this.gitBranchLabel5=this.gitBranchLabel5||this.labelTextColor,this.gitBranchLabel6=this.gitBranchLabel6||this.labelTextColor,this.gitBranchLabel7=this.gitBranchLabel7||this.labelTextColor,this.tagLabelColor=this.tagLabelColor||this.primaryTextColor,this.tagLabelBackground=this.tagLabelBackground||this.primaryColor,this.tagLabelBorder=this.tagBorder||this.primaryBorderColor,this.tagLabelFontSize=this.tagLabelFontSize||"10px",this.commitLabelColor=this.commitLabelColor||this.secondaryTextColor,this.commitLabelBackground=this.commitLabelBackground||this.secondaryColor,this.commitLabelFontSize=this.commitLabelFontSize||"10px",this.emUiFill=this.emUiFill||"#2d2d2d",this.emUiStroke=this.emUiStroke||"#555",this.emProcessorFill=this.emProcessorFill||U("#5a3d5c",10),this.emProcessorStroke=this.emProcessorStroke||"#8a6d8c",this.emReadModelFill=this.emReadModelFill||U("#3d5a2d",10),this.emReadModelStroke=this.emReadModelStroke||"#6d8c5c",this.emCommandFill=this.emCommandFill||U("#2d3d5a",10),this.emCommandStroke=this.emCommandStroke||"#5c6d8c",this.emEventFill=this.emEventFill||U("#5a452d",10),this.emEventStroke=this.emEventStroke||"#8c755c",this.emSwimlaneBackgroundOdd=this.emSwimlaneBackgroundOdd||U(this.background,5),this.emSwimlaneBackgroundStroke=this.emSwimlaneBackgroundStroke||U(this.background,12),this.emArrowhead=this.emArrowhead||this.lineColor,this.emRelationStroke=this.emRelationStroke||this.lineColor,this.attributeBackgroundColorOdd=this.attributeBackgroundColorOdd||U(this.background,12),this.attributeBackgroundColorEven=this.attributeBackgroundColorEven||U(this.background,2),this.nodeBorder=this.nodeBorder||"#999"}calculate(t){if(typeof t!="object"){this.updateColors();return}const r=Object.keys(t);r.forEach(i=>{this[i]=t[i]}),this.updateColors(),r.forEach(i=>{this[i]=t[i]})}},p(Oi,"Theme"),Oi),_C=p(e=>{const t=new TC;return t.calculate(e),t},"getThemeVariables"),Di,SC=(Di=class{constructor(){this.background="#f4f4f4",this.primaryColor="#ECECFF",this.secondaryColor=k(this.primaryColor,{h:120}),this.secondaryColor="#ffffde",this.tertiaryColor=k(this.primaryColor,{h:-160}),this.primaryBorderColor=Ot(this.primaryColor,this.darkMode),this.secondaryBorderColor=Ot(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Ot(this.tertiaryColor,this.darkMode),this.primaryTextColor=E(this.primaryColor),this.secondaryTextColor=E(this.secondaryColor),this.tertiaryTextColor=E(this.tertiaryColor),this.lineColor=E(this.background),this.textColor=E(this.background),this.background="white",this.mainBkg="#ECECFF",this.secondBkg="#ffffde",this.lineColor="#333333",this.border1="#9370DB",this.primaryBorderColor=Ot(this.primaryColor,this.darkMode),this.border2="#aaaa33",this.arrowheadColor="#333333",this.fontFamily='"trebuchet ms", verdana, arial, sans-serif',this.fontSize="16px",this.labelBackground="rgba(232,232,232, 0.8)",this.textColor="#333",this.THEME_COLOR_LIMIT=12,this.radius=5,this.strokeWidth=1,this.nodeBkg="calculated",this.nodeBorder="calculated",this.clusterBkg="calculated",this.clusterBorder="calculated",this.defaultLinkColor="calculated",this.titleColor="calculated",this.edgeLabelBackground="calculated",this.actorBorder="calculated",this.actorBkg="calculated",this.actorTextColor="black",this.actorLineColor="calculated",this.signalColor="calculated",this.signalTextColor="calculated",this.labelBoxBkgColor="calculated",this.labelBoxBorderColor="calculated",this.labelTextColor="calculated",this.loopTextColor="calculated",this.noteBorderColor="calculated",this.noteBkgColor="#fff5ad",this.noteTextColor="calculated",this.activationBorderColor="#666",this.activationBkgColor="#f4f4f4",this.sequenceNumberColor="white",this.clusterBkg="#FBFBFF",this.sectionBkgColor="calculated",this.altSectionBkgColor="calculated",this.sectionBkgColor2="calculated",this.excludeBkgColor="#eeeeee",this.taskBorderColor="calculated",this.taskBkgColor="calculated",this.taskTextLightColor="calculated",this.taskTextColor=this.taskTextLightColor,this.taskTextDarkColor="calculated",this.taskTextOutsideColor=this.taskTextDarkColor,this.taskTextClickableColor="calculated",this.activeTaskBorderColor="calculated",this.activeTaskBkgColor="calculated",this.gridColor="calculated",this.doneTaskBkgColor="calculated",this.doneTaskBorderColor="calculated",this.critBorderColor="calculated",this.critBkgColor="calculated",this.todayLineColor="calculated",this.vertLineColor="calculated",this.sectionBkgColor=qr(102,102,255,.49),this.altSectionBkgColor="white",this.sectionBkgColor2="#fff400",this.taskBorderColor="#534fbc",this.taskBkgColor="#8a90dd",this.taskTextLightColor="white",this.taskTextColor="calculated",this.taskTextDarkColor="black",this.taskTextOutsideColor="calculated",this.taskTextClickableColor="#003163",this.activeTaskBorderColor="#534fbc",this.activeTaskBkgColor="#bfc7ff",this.gridColor="lightgrey",this.doneTaskBkgColor="lightgrey",this.doneTaskBorderColor="grey",this.critBorderColor="#ff8888",this.critBkgColor="red",this.todayLineColor="red",this.vertLineColor="navy",this.noteFontWeight=this.noteFontWeight||"normal",this.fontWeight=this.fontWeight||"normal",this.personBorder=this.primaryBorderColor,this.personBkg=this.mainBkg,this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.rowOdd="calculated",this.rowEven="calculated",this.labelColor="black",this.errorBkgColor="#552222",this.errorTextColor="#552222",this.useGradient=!1,this.gradientStart=this.primaryBorderColor,this.gradientStop=this.secondaryBorderColor,this.dropShadow="drop-shadow(1px 2px 2px rgba(185, 185, 185, 1))",this.updateColors()}updateColors(){var t,r,i,s,o,a,n,l,c,h,u,d,f,m,y,C,x,b,w,_,v,F,A,L,j,z,W,ot,Y,M,$,B,P,O,H,K,ut,pt,kt,nt,wt,Et,At,qt,Lt,lt,gt,Mt,Nt,Ft;this.cScale0=this.cScale0||this.primaryColor,this.cScale1=this.cScale1||this.secondaryColor,this.cScale2=this.cScale2||this.tertiaryColor,this.cScale3=this.cScale3||k(this.primaryColor,{h:30}),this.cScale4=this.cScale4||k(this.primaryColor,{h:60}),this.cScale5=this.cScale5||k(this.primaryColor,{h:90}),this.cScale6=this.cScale6||k(this.primaryColor,{h:120}),this.cScale7=this.cScale7||k(this.primaryColor,{h:150}),this.cScale8=this.cScale8||k(this.primaryColor,{h:210}),this.cScale9=this.cScale9||k(this.primaryColor,{h:270}),this.cScale10=this.cScale10||k(this.primaryColor,{h:300}),this.cScale11=this.cScale11||k(this.primaryColor,{h:330}),this.cScalePeer1=this.cScalePeer1||G(this.secondaryColor,45),this.cScalePeer2=this.cScalePeer2||G(this.tertiaryColor,40);for(let q=0;q<this.THEME_COLOR_LIMIT;q++)this["cScale"+q]=G(this["cScale"+q],10),this["cScalePeer"+q]=this["cScalePeer"+q]||G(this["cScale"+q],25);for(let q=0;q<this.THEME_COLOR_LIMIT;q++)this["cScaleInv"+q]=this["cScaleInv"+q]||k(this["cScale"+q],{h:180});for(let q=0;q<5;q++)this["surface"+q]=this["surface"+q]||k(this.mainBkg,{h:30,l:-(5+q*5)}),this["surfacePeer"+q]=this["surfacePeer"+q]||k(this.mainBkg,{h:30,l:-(7+q*5)});if(this.scaleLabelColor=this.scaleLabelColor!=="calculated"&&this.scaleLabelColor?this.scaleLabelColor:this.labelTextColor,this.labelTextColor!=="calculated"){this.cScaleLabel0=this.cScaleLabel0||E(this.labelTextColor),this.cScaleLabel3=this.cScaleLabel3||E(this.labelTextColor);for(let q=0;q<this.THEME_COLOR_LIMIT;q++)this["cScaleLabel"+q]=this["cScaleLabel"+q]||this.labelTextColor}this.nodeBkg=this.mainBkg,this.nodeBorder=this.border1,this.clusterBkg=this.secondBkg,this.clusterBorder=this.border2,this.defaultLinkColor=this.lineColor,this.titleColor=this.textColor,this.edgeLabelBackground=this.labelBackground,this.actorBorder=this.border1,this.actorBkg=this.mainBkg,this.labelBoxBkgColor=this.actorBkg,this.signalColor=this.textColor,this.signalTextColor=this.textColor,this.labelBoxBorderColor=this.actorBorder,this.labelTextColor=this.actorTextColor,this.loopTextColor=this.actorTextColor,this.noteBorderColor=this.border2,this.noteTextColor=this.actorTextColor,this.actorLineColor=this.actorBorder,this.rectBkgColor=this.rectBkgColor||this.tertiaryColor,this.taskTextColor=this.taskTextLightColor,this.taskTextOutsideColor=this.taskTextDarkColor,this.archEdgeColor=this.lineColor,this.archEdgeArrowColor=this.lineColor,this.rowOdd=this.rowOdd||U(this.primaryColor,75)||"#ffffff",this.rowEven=this.rowEven||U(this.primaryColor,1),this.transitionColor=this.transitionColor||this.lineColor,this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||"#f0f0f0",this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.compositeBorder=this.compositeBorder||this.nodeBorder,this.innerEndBackground=this.nodeBorder,this.specialStateColor=this.lineColor,this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.transitionColor=this.transitionColor||this.lineColor,this.classText=this.primaryTextColor,this.fillType0=this.primaryColor,this.fillType1=this.secondaryColor,this.fillType2=k(this.primaryColor,{h:64}),this.fillType3=k(this.secondaryColor,{h:64}),this.fillType4=k(this.primaryColor,{h:-64}),this.fillType5=k(this.secondaryColor,{h:-64}),this.fillType6=k(this.primaryColor,{h:128}),this.fillType7=k(this.secondaryColor,{h:128}),this.pie1=this.pie1||this.primaryColor,this.pie2=this.pie2||this.secondaryColor,this.pie3=this.pie3||k(this.tertiaryColor,{l:-40}),this.pie4=this.pie4||k(this.primaryColor,{l:-10}),this.pie5=this.pie5||k(this.secondaryColor,{l:-30}),this.pie6=this.pie6||k(this.tertiaryColor,{l:-20}),this.pie7=this.pie7||k(this.primaryColor,{h:60,l:-20}),this.pie8=this.pie8||k(this.primaryColor,{h:-60,l:-40}),this.pie9=this.pie9||k(this.primaryColor,{h:120,l:-40}),this.pie10=this.pie10||k(this.primaryColor,{h:60,l:-40}),this.pie11=this.pie11||k(this.primaryColor,{h:-90,l:-40}),this.pie12=this.pie12||k(this.primaryColor,{h:120,l:-30}),this.pieTitleTextSize=this.pieTitleTextSize||"25px",this.pieTitleTextColor=this.pieTitleTextColor||this.taskTextDarkColor,this.pieSectionTextSize=this.pieSectionTextSize||"17px",this.pieSectionTextColor=this.pieSectionTextColor||this.textColor,this.pieLegendTextSize=this.pieLegendTextSize||"17px",this.pieLegendTextColor=this.pieLegendTextColor||this.taskTextDarkColor,this.pieStrokeColor=this.pieStrokeColor||"black",this.pieStrokeWidth=this.pieStrokeWidth||"2px",this.pieOuterStrokeWidth=this.pieOuterStrokeWidth||"2px",this.pieOuterStrokeColor=this.pieOuterStrokeColor||"black",this.pieOpacity=this.pieOpacity||"0.7",this.venn1=this.venn1??k(this.primaryColor,{l:-30}),this.venn2=this.venn2??k(this.secondaryColor,{l:-30}),this.venn3=this.venn3??k(this.tertiaryColor,{l:-40}),this.venn4=this.venn4??k(this.primaryColor,{h:60,l:-30}),this.venn5=this.venn5??k(this.primaryColor,{h:-60,l:-30}),this.venn6=this.venn6??k(this.secondaryColor,{h:60,l:-30}),this.venn7=this.venn7??k(this.primaryColor,{h:120,l:-30}),this.venn8=this.venn8??k(this.secondaryColor,{h:120,l:-30}),this.vennTitleTextColor=this.vennTitleTextColor??this.titleColor,this.vennSetTextColor=this.vennSetTextColor??this.textColor,this.cynefin={domainFontSize:((t=this.cynefin)==null?void 0:t.domainFontSize)||16,itemFontSize:((r=this.cynefin)==null?void 0:r.itemFontSize)||12,boundaryColor:((i=this.cynefin)==null?void 0:i.boundaryColor)||this.lineColor,boundaryWidth:((s=this.cynefin)==null?void 0:s.boundaryWidth)||2,cliffColor:((o=this.cynefin)==null?void 0:o.cliffColor)||"#8B0000",cliffWidth:((a=this.cynefin)==null?void 0:a.cliffWidth)||4,arrowColor:((n=this.cynefin)==null?void 0:n.arrowColor)||this.lineColor,arrowWidth:((l=this.cynefin)==null?void 0:l.arrowWidth)||2,complexBg:((c=this.cynefin)==null?void 0:c.complexBg)||"#E8F5E9",complicatedBg:((h=this.cynefin)==null?void 0:h.complicatedBg)||"#E3F2FD",chaoticBg:((u=this.cynefin)==null?void 0:u.chaoticBg)||"#FBE9E7",clearBg:((d=this.cynefin)==null?void 0:d.clearBg)||"#FFF8E1",confusionBg:((f=this.cynefin)==null?void 0:f.confusionBg)||"#F3E5F5",textColor:((m=this.cynefin)==null?void 0:m.textColor)||this.textColor,labelColor:((y=this.cynefin)==null?void 0:y.labelColor)||this.primaryTextColor},this.quadrant1Fill=this.quadrant1Fill||this.primaryColor,this.quadrant2Fill=this.quadrant2Fill||k(this.primaryColor,{r:5,g:5,b:5}),this.quadrant3Fill=this.quadrant3Fill||k(this.primaryColor,{r:10,g:10,b:10}),this.quadrant4Fill=this.quadrant4Fill||k(this.primaryColor,{r:15,g:15,b:15}),this.quadrant1TextFill=this.quadrant1TextFill||this.primaryTextColor,this.quadrant2TextFill=this.quadrant2TextFill||k(this.primaryTextColor,{r:-5,g:-5,b:-5}),this.quadrant3TextFill=this.quadrant3TextFill||k(this.primaryTextColor,{r:-10,g:-10,b:-10}),this.quadrant4TextFill=this.quadrant4TextFill||k(this.primaryTextColor,{r:-15,g:-15,b:-15}),this.quadrantPointFill=this.quadrantPointFill||Ke(this.quadrant1Fill)?U(this.quadrant1Fill):G(this.quadrant1Fill),this.quadrantPointTextFill=this.quadrantPointTextFill||this.primaryTextColor,this.quadrantXAxisTextFill=this.quadrantXAxisTextFill||this.primaryTextColor,this.quadrantYAxisTextFill=this.quadrantYAxisTextFill||this.primaryTextColor,this.quadrantInternalBorderStrokeFill=this.quadrantInternalBorderStrokeFill||this.primaryBorderColor,this.quadrantExternalBorderStrokeFill=this.quadrantExternalBorderStrokeFill||this.primaryBorderColor,this.quadrantTitleFill=this.quadrantTitleFill||this.primaryTextColor,this.radar={axisColor:((C=this.radar)==null?void 0:C.axisColor)||this.lineColor,axisStrokeWidth:((x=this.radar)==null?void 0:x.axisStrokeWidth)||2,axisLabelFontSize:((b=this.radar)==null?void 0:b.axisLabelFontSize)||12,curveOpacity:((w=this.radar)==null?void 0:w.curveOpacity)||.5,curveStrokeWidth:((_=this.radar)==null?void 0:_.curveStrokeWidth)||2,graticuleColor:((v=this.radar)==null?void 0:v.graticuleColor)||"#DEDEDE",graticuleStrokeWidth:((F=this.radar)==null?void 0:F.graticuleStrokeWidth)||1,graticuleOpacity:((A=this.radar)==null?void 0:A.graticuleOpacity)||.3,legendBoxSize:((L=this.radar)==null?void 0:L.legendBoxSize)||12,legendFontSize:((j=this.radar)==null?void 0:j.legendFontSize)||12},this.wardleyEvolutionColor=this.wardleyEvolutionColor||"#dc3545",this.wardley={backgroundColor:((z=this.wardley)==null?void 0:z.backgroundColor)||this.background,axisColor:((W=this.wardley)==null?void 0:W.axisColor)||this.lineColor,axisTextColor:((ot=this.wardley)==null?void 0:ot.axisTextColor)||this.primaryTextColor,gridColor:((Y=this.wardley)==null?void 0:Y.gridColor)||this.gridColor,componentFill:((M=this.wardley)==null?void 0:M.componentFill)||this.background,componentStroke:(($=this.wardley)==null?void 0:$.componentStroke)||this.lineColor,componentLabelColor:((B=this.wardley)==null?void 0:B.componentLabelColor)||this.primaryTextColor,linkStroke:((P=this.wardley)==null?void 0:P.linkStroke)||this.lineColor,evolutionStroke:((O=this.wardley)==null?void 0:O.evolutionStroke)||this.wardleyEvolutionColor,annotationStroke:((H=this.wardley)==null?void 0:H.annotationStroke)||this.lineColor,annotationTextColor:((K=this.wardley)==null?void 0:K.annotationTextColor)||this.primaryTextColor,annotationFill:((ut=this.wardley)==null?void 0:ut.annotationFill)||this.background},this.xyChart={backgroundColor:((pt=this.xyChart)==null?void 0:pt.backgroundColor)||this.background,titleColor:((kt=this.xyChart)==null?void 0:kt.titleColor)||this.primaryTextColor,dataLabelColor:((nt=this.xyChart)==null?void 0:nt.dataLabelColor)||this.primaryTextColor,legendTextColor:((wt=this.xyChart)==null?void 0:wt.legendTextColor)||this.primaryTextColor,xAxisTitleColor:((Et=this.xyChart)==null?void 0:Et.xAxisTitleColor)||this.primaryTextColor,xAxisLabelColor:((At=this.xyChart)==null?void 0:At.xAxisLabelColor)||this.primaryTextColor,xAxisTickColor:((qt=this.xyChart)==null?void 0:qt.xAxisTickColor)||this.primaryTextColor,xAxisLineColor:((Lt=this.xyChart)==null?void 0:Lt.xAxisLineColor)||this.primaryTextColor,yAxisTitleColor:((lt=this.xyChart)==null?void 0:lt.yAxisTitleColor)||this.primaryTextColor,yAxisLabelColor:((gt=this.xyChart)==null?void 0:gt.yAxisLabelColor)||this.primaryTextColor,yAxisTickColor:((Mt=this.xyChart)==null?void 0:Mt.yAxisTickColor)||this.primaryTextColor,yAxisLineColor:((Nt=this.xyChart)==null?void 0:Nt.yAxisLineColor)||this.primaryTextColor,plotColorPalette:((Ft=this.xyChart)==null?void 0:Ft.plotColorPalette)||"#ECECFF,#8493A6,#FFC3A0,#DCDDE1,#B8E994,#D1A36F,#C3CDE6,#FFB6C1,#496078,#F8F3E3"},this.requirementBackground=this.requirementBackground||this.primaryColor,this.requirementBorderColor=this.requirementBorderColor||this.primaryBorderColor,this.requirementBorderSize=this.requirementBorderSize||"1",this.requirementTextColor=this.requirementTextColor||this.primaryTextColor,this.relationColor=this.relationColor||this.lineColor,this.relationLabelBackground=this.relationLabelBackground||this.labelBackground,this.relationLabelColor=this.relationLabelColor||this.actorTextColor,this.git0=this.git0||this.primaryColor,this.git1=this.git1||this.secondaryColor,this.git2=this.git2||this.tertiaryColor,this.git3=this.git3||k(this.primaryColor,{h:-30}),this.git4=this.git4||k(this.primaryColor,{h:-60}),this.git5=this.git5||k(this.primaryColor,{h:-90}),this.git6=this.git6||k(this.primaryColor,{h:60}),this.git7=this.git7||k(this.primaryColor,{h:120}),this.darkMode?(this.git0=U(this.git0,25),this.git1=U(this.git1,25),this.git2=U(this.git2,25),this.git3=U(this.git3,25),this.git4=U(this.git4,25),this.git5=U(this.git5,25),this.git6=U(this.git6,25),this.git7=U(this.git7,25)):(this.git0=G(this.git0,25),this.git1=G(this.git1,25),this.git2=G(this.git2,25),this.git3=G(this.git3,25),this.git4=G(this.git4,25),this.git5=G(this.git5,25),this.git6=G(this.git6,25),this.git7=G(this.git7,25)),this.gitInv0=this.gitInv0||G(E(this.git0),25),this.gitInv1=this.gitInv1||E(this.git1),this.gitInv2=this.gitInv2||E(this.git2),this.gitInv3=this.gitInv3||E(this.git3),this.gitInv4=this.gitInv4||E(this.git4),this.gitInv5=this.gitInv5||E(this.git5),this.gitInv6=this.gitInv6||E(this.git6),this.gitInv7=this.gitInv7||E(this.git7),this.gitBranchLabel0=this.gitBranchLabel0||E(this.labelTextColor),this.gitBranchLabel1=this.gitBranchLabel1||this.labelTextColor,this.gitBranchLabel2=this.gitBranchLabel2||this.labelTextColor,this.gitBranchLabel3=this.gitBranchLabel3||E(this.labelTextColor),this.gitBranchLabel4=this.gitBranchLabel4||this.labelTextColor,this.gitBranchLabel5=this.gitBranchLabel5||this.labelTextColor,this.gitBranchLabel6=this.gitBranchLabel6||this.labelTextColor,this.gitBranchLabel7=this.gitBranchLabel7||this.labelTextColor,this.tagLabelColor=this.tagLabelColor||this.primaryTextColor,this.tagLabelBackground=this.tagLabelBackground||this.primaryColor,this.tagLabelBorder=this.tagBorder||this.primaryBorderColor,this.tagLabelFontSize=this.tagLabelFontSize||"10px",this.commitLabelColor=this.commitLabelColor||this.secondaryTextColor,this.commitLabelBackground=this.commitLabelBackground||this.secondaryColor,this.commitLabelFontSize=this.commitLabelFontSize||"10px",this.emUiFill=this.emUiFill||"white",this.emUiStroke=this.emUiStroke||"#dbdada",this.emProcessorFill=this.emProcessorFill||"#edb3f6",this.emProcessorStroke=this.emProcessorStroke||"#b88cbf",this.emReadModelFill=this.emReadModelFill||"#d3f1a2",this.emReadModelStroke=this.emReadModelStroke||"#a3b732",this.emCommandFill=this.emCommandFill||"#bcd6fe",this.emCommandStroke=this.emCommandStroke||"#679ac3",this.emEventFill=this.emEventFill||"#ffb778",this.emEventStroke=this.emEventStroke||"#c19a0f",this.emSwimlaneBackgroundOdd=this.emSwimlaneBackgroundOdd||"rgb(250,250,250)",this.emSwimlaneBackgroundStroke=this.emSwimlaneBackgroundStroke||"rgb(240,240,240)",this.emArrowhead=this.emArrowhead||this.lineColor,this.emRelationStroke=this.emRelationStroke||this.lineColor,this.attributeBackgroundColorOdd=this.attributeBackgroundColorOdd||dr,this.attributeBackgroundColorEven=this.attributeBackgroundColorEven||fr}calculate(t){if(Object.keys(this).forEach(i=>{this[i]==="calculated"&&(this[i]=void 0)}),typeof t!="object"){this.updateColors();return}const r=Object.keys(t);r.forEach(i=>{this[i]=t[i]}),this.updateColors(),r.forEach(i=>{this[i]=t[i]})}},p(Di,"Theme"),Di),vC=p(e=>{const t=new SC;return t.calculate(e),t},"getThemeVariables"),Ii,BC=(Ii=class{constructor(){this.background="#f4f4f4",this.primaryColor="#cde498",this.secondaryColor="#cdffb2",this.background="white",this.mainBkg="#cde498",this.secondBkg="#cdffb2",this.lineColor="green",this.border1="#13540c",this.border2="#6eaa49",this.arrowheadColor="green",this.fontFamily='"trebuchet ms", verdana, arial, sans-serif',this.fontSize="16px",this.tertiaryColor=U("#cde498",10),this.primaryBorderColor=Ot(this.primaryColor,this.darkMode),this.secondaryBorderColor=Ot(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Ot(this.tertiaryColor,this.darkMode),this.primaryTextColor=E(this.primaryColor),this.secondaryTextColor=E(this.secondaryColor),this.tertiaryTextColor=E(this.primaryColor),this.lineColor=E(this.background),this.textColor=E(this.background),this.THEME_COLOR_LIMIT=12,this.radius=5,this.strokeWidth=1,this.nodeBkg="calculated",this.nodeBorder="calculated",this.clusterBkg="calculated",this.clusterBorder="calculated",this.defaultLinkColor="calculated",this.titleColor="#333",this.edgeLabelBackground="#e8e8e8",this.actorBorder="calculated",this.actorBkg="calculated",this.actorTextColor="black",this.actorLineColor="calculated",this.signalColor="#333",this.signalTextColor="#333",this.labelBoxBkgColor="calculated",this.labelBoxBorderColor="#326932",this.labelTextColor="calculated",this.loopTextColor="calculated",this.noteBorderColor="calculated",this.noteBkgColor="#fff5ad",this.noteTextColor="calculated",this.activationBorderColor="#666",this.activationBkgColor="#f4f4f4",this.sequenceNumberColor="white",this.sectionBkgColor="#6eaa49",this.altSectionBkgColor="white",this.sectionBkgColor2="#6eaa49",this.excludeBkgColor="#eeeeee",this.taskBorderColor="calculated",this.taskBkgColor="#487e3a",this.taskTextLightColor="white",this.taskTextColor="calculated",this.taskTextDarkColor="black",this.taskTextOutsideColor="calculated",this.taskTextClickableColor="#003163",this.activeTaskBorderColor="calculated",this.activeTaskBkgColor="calculated",this.gridColor="lightgrey",this.doneTaskBkgColor="lightgrey",this.doneTaskBorderColor="grey",this.critBorderColor="#ff8888",this.critBkgColor="red",this.todayLineColor="red",this.vertLineColor="#00BFFF",this.personBorder=this.primaryBorderColor,this.personBkg=this.mainBkg,this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.noteFontWeight="normal",this.fontWeight="normal",this.labelColor="black",this.errorBkgColor="#552222",this.errorTextColor="#552222",this.useGradient=!0,this.gradientStart=this.primaryBorderColor,this.gradientStop=this.secondaryBorderColor,this.dropShadow="drop-shadow( 1px 2px 2px rgba(185,185,185,0.5))"}updateColors(){var t,r,i,s,o,a,n,l,c,h,u,d,f,m,y,C,x,b,w,_,v,F,A,L,j,z,W,ot,Y,M,$,B,P,O,H,K,ut,pt,kt,nt,wt,Et,At,qt,Lt,lt,gt,Mt,Nt,Ft;this.actorBorder=G(this.mainBkg,20),this.actorBkg=this.mainBkg,this.labelBoxBkgColor=this.actorBkg,this.labelTextColor=this.actorTextColor,this.loopTextColor=this.actorTextColor,this.noteBorderColor=this.border2,this.noteTextColor=this.actorTextColor,this.actorLineColor=this.actorBorder,this.rectBkgColor=this.rectBkgColor||this.tertiaryColor,this.cScale0=this.cScale0||this.primaryColor,this.cScale1=this.cScale1||this.secondaryColor,this.cScale2=this.cScale2||this.tertiaryColor,this.cScale3=this.cScale3||k(this.primaryColor,{h:30}),this.cScale4=this.cScale4||k(this.primaryColor,{h:60}),this.cScale5=this.cScale5||k(this.primaryColor,{h:90}),this.cScale6=this.cScale6||k(this.primaryColor,{h:120}),this.cScale7=this.cScale7||k(this.primaryColor,{h:150}),this.cScale8=this.cScale8||k(this.primaryColor,{h:210}),this.cScale9=this.cScale9||k(this.primaryColor,{h:270}),this.cScale10=this.cScale10||k(this.primaryColor,{h:300}),this.cScale11=this.cScale11||k(this.primaryColor,{h:330}),this.cScalePeer1=this.cScalePeer1||G(this.secondaryColor,45),this.cScalePeer2=this.cScalePeer2||G(this.tertiaryColor,40);for(let q=0;q<this.THEME_COLOR_LIMIT;q++)this["cScale"+q]=G(this["cScale"+q],10),this["cScalePeer"+q]=this["cScalePeer"+q]||G(this["cScale"+q],25);for(let q=0;q<this.THEME_COLOR_LIMIT;q++)this["cScaleInv"+q]=this["cScaleInv"+q]||k(this["cScale"+q],{h:180});this.scaleLabelColor=this.scaleLabelColor!=="calculated"&&this.scaleLabelColor?this.scaleLabelColor:this.labelTextColor;for(let q=0;q<this.THEME_COLOR_LIMIT;q++)this["cScaleLabel"+q]=this["cScaleLabel"+q]||this.scaleLabelColor;for(let q=0;q<5;q++)this["surface"+q]=this["surface"+q]||k(this.mainBkg,{h:30,s:-30,l:-(5+q*5)}),this["surfacePeer"+q]=this["surfacePeer"+q]||k(this.mainBkg,{h:30,s:-30,l:-(8+q*5)});this.nodeBkg=this.mainBkg,this.nodeBorder=this.border1,this.clusterBkg=this.secondBkg,this.clusterBorder=this.border2,this.defaultLinkColor=this.lineColor,this.taskBorderColor=this.border1,this.taskTextColor=this.taskTextLightColor,this.taskTextOutsideColor=this.taskTextDarkColor,this.activeTaskBorderColor=this.taskBorderColor,this.activeTaskBkgColor=this.mainBkg,this.archEdgeColor=this.lineColor,this.archEdgeArrowColor=this.lineColor,this.rowOdd=this.rowOdd||U(this.mainBkg,75)||"#ffffff",this.rowEven=this.rowEven||U(this.mainBkg,20),this.transitionColor=this.transitionColor||this.lineColor,this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||"#f0f0f0",this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.compositeBorder=this.compositeBorder||this.nodeBorder,this.innerEndBackground=this.primaryBorderColor,this.specialStateColor=this.lineColor,this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.transitionColor=this.transitionColor||this.lineColor,this.classText=this.primaryTextColor,this.fillType0=this.primaryColor,this.fillType1=this.secondaryColor,this.fillType2=k(this.primaryColor,{h:64}),this.fillType3=k(this.secondaryColor,{h:64}),this.fillType4=k(this.primaryColor,{h:-64}),this.fillType5=k(this.secondaryColor,{h:-64}),this.fillType6=k(this.primaryColor,{h:128}),this.fillType7=k(this.secondaryColor,{h:128}),this.pie1=this.pie1||this.primaryColor,this.pie2=this.pie2||this.secondaryColor,this.pie3=this.pie3||this.tertiaryColor,this.pie4=this.pie4||k(this.primaryColor,{l:-30}),this.pie5=this.pie5||k(this.secondaryColor,{l:-30}),this.pie6=this.pie6||k(this.tertiaryColor,{h:40,l:-40}),this.pie7=this.pie7||k(this.primaryColor,{h:60,l:-10}),this.pie8=this.pie8||k(this.primaryColor,{h:-60,l:-10}),this.pie9=this.pie9||k(this.primaryColor,{h:120,l:0}),this.pie10=this.pie10||k(this.primaryColor,{h:60,l:-50}),this.pie11=this.pie11||k(this.primaryColor,{h:-60,l:-50}),this.pie12=this.pie12||k(this.primaryColor,{h:120,l:-50}),this.pieTitleTextSize=this.pieTitleTextSize||"25px",this.pieTitleTextColor=this.pieTitleTextColor||this.taskTextDarkColor,this.pieSectionTextSize=this.pieSectionTextSize||"17px",this.pieSectionTextColor=this.pieSectionTextColor||this.textColor,this.pieLegendTextSize=this.pieLegendTextSize||"17px",this.pieLegendTextColor=this.pieLegendTextColor||this.taskTextDarkColor,this.pieStrokeColor=this.pieStrokeColor||"black",this.pieStrokeWidth=this.pieStrokeWidth||"2px",this.pieOuterStrokeWidth=this.pieOuterStrokeWidth||"2px",this.pieOuterStrokeColor=this.pieOuterStrokeColor||"black",this.pieOpacity=this.pieOpacity||"0.7",this.venn1=this.venn1??k(this.primaryColor,{l:-30}),this.venn2=this.venn2??k(this.secondaryColor,{l:-30}),this.venn3=this.venn3??k(this.tertiaryColor,{l:-30}),this.venn4=this.venn4??k(this.primaryColor,{h:60,l:-30}),this.venn5=this.venn5??k(this.primaryColor,{h:-60,l:-30}),this.venn6=this.venn6??k(this.secondaryColor,{h:60,l:-30}),this.venn7=this.venn7??k(this.primaryColor,{h:120,l:-30}),this.venn8=this.venn8??k(this.secondaryColor,{h:120,l:-30}),this.vennTitleTextColor=this.vennTitleTextColor??this.titleColor,this.vennSetTextColor=this.vennSetTextColor??this.textColor,this.cynefin={domainFontSize:((t=this.cynefin)==null?void 0:t.domainFontSize)||16,itemFontSize:((r=this.cynefin)==null?void 0:r.itemFontSize)||12,boundaryColor:((i=this.cynefin)==null?void 0:i.boundaryColor)||this.lineColor,boundaryWidth:((s=this.cynefin)==null?void 0:s.boundaryWidth)||2,cliffColor:((o=this.cynefin)==null?void 0:o.cliffColor)||"#8B4513",cliffWidth:((a=this.cynefin)==null?void 0:a.cliffWidth)||4,arrowColor:((n=this.cynefin)==null?void 0:n.arrowColor)||this.lineColor,arrowWidth:((l=this.cynefin)==null?void 0:l.arrowWidth)||2,complexBg:((c=this.cynefin)==null?void 0:c.complexBg)||"#C8E6C9",complicatedBg:((h=this.cynefin)==null?void 0:h.complicatedBg)||"#DCEDC8",chaoticBg:((u=this.cynefin)==null?void 0:u.chaoticBg)||"#FFE0B2",clearBg:((d=this.cynefin)==null?void 0:d.clearBg)||"#FFF9C4",confusionBg:((f=this.cynefin)==null?void 0:f.confusionBg)||"#D7CCC8",textColor:((m=this.cynefin)==null?void 0:m.textColor)||this.textColor,labelColor:((y=this.cynefin)==null?void 0:y.labelColor)||this.primaryTextColor},this.quadrant1Fill=this.quadrant1Fill||this.primaryColor,this.quadrant2Fill=this.quadrant2Fill||k(this.primaryColor,{r:5,g:5,b:5}),this.quadrant3Fill=this.quadrant3Fill||k(this.primaryColor,{r:10,g:10,b:10}),this.quadrant4Fill=this.quadrant4Fill||k(this.primaryColor,{r:15,g:15,b:15}),this.quadrant1TextFill=this.quadrant1TextFill||this.primaryTextColor,this.quadrant2TextFill=this.quadrant2TextFill||k(this.primaryTextColor,{r:-5,g:-5,b:-5}),this.quadrant3TextFill=this.quadrant3TextFill||k(this.primaryTextColor,{r:-10,g:-10,b:-10}),this.quadrant4TextFill=this.quadrant4TextFill||k(this.primaryTextColor,{r:-15,g:-15,b:-15}),this.quadrantPointFill=this.quadrantPointFill||Ke(this.quadrant1Fill)?U(this.quadrant1Fill):G(this.quadrant1Fill),this.quadrantPointTextFill=this.quadrantPointTextFill||this.primaryTextColor,this.quadrantXAxisTextFill=this.quadrantXAxisTextFill||this.primaryTextColor,this.quadrantYAxisTextFill=this.quadrantYAxisTextFill||this.primaryTextColor,this.quadrantInternalBorderStrokeFill=this.quadrantInternalBorderStrokeFill||this.primaryBorderColor,this.quadrantExternalBorderStrokeFill=this.quadrantExternalBorderStrokeFill||this.primaryBorderColor,this.quadrantTitleFill=this.quadrantTitleFill||this.primaryTextColor,this.packet={startByteColor:this.primaryTextColor,endByteColor:this.primaryTextColor,labelColor:this.primaryTextColor,titleColor:this.primaryTextColor,blockStrokeColor:this.primaryTextColor,blockFillColor:this.mainBkg},this.radar={axisColor:((C=this.radar)==null?void 0:C.axisColor)||this.lineColor,axisStrokeWidth:((x=this.radar)==null?void 0:x.axisStrokeWidth)||2,axisLabelFontSize:((b=this.radar)==null?void 0:b.axisLabelFontSize)||12,curveOpacity:((w=this.radar)==null?void 0:w.curveOpacity)||.5,curveStrokeWidth:((_=this.radar)==null?void 0:_.curveStrokeWidth)||2,graticuleColor:((v=this.radar)==null?void 0:v.graticuleColor)||"#DEDEDE",graticuleStrokeWidth:((F=this.radar)==null?void 0:F.graticuleStrokeWidth)||1,graticuleOpacity:((A=this.radar)==null?void 0:A.graticuleOpacity)||.3,legendBoxSize:((L=this.radar)==null?void 0:L.legendBoxSize)||12,legendFontSize:((j=this.radar)==null?void 0:j.legendFontSize)||12},this.wardleyEvolutionColor=this.wardleyEvolutionColor||"#dc3545",this.wardley={backgroundColor:((z=this.wardley)==null?void 0:z.backgroundColor)||this.background,axisColor:((W=this.wardley)==null?void 0:W.axisColor)||this.lineColor,axisTextColor:((ot=this.wardley)==null?void 0:ot.axisTextColor)||this.primaryTextColor,gridColor:((Y=this.wardley)==null?void 0:Y.gridColor)||this.gridColor,componentFill:((M=this.wardley)==null?void 0:M.componentFill)||this.background,componentStroke:(($=this.wardley)==null?void 0:$.componentStroke)||this.lineColor,componentLabelColor:((B=this.wardley)==null?void 0:B.componentLabelColor)||this.primaryTextColor,linkStroke:((P=this.wardley)==null?void 0:P.linkStroke)||this.lineColor,evolutionStroke:((O=this.wardley)==null?void 0:O.evolutionStroke)||this.wardleyEvolutionColor,annotationStroke:((H=this.wardley)==null?void 0:H.annotationStroke)||this.lineColor,annotationTextColor:((K=this.wardley)==null?void 0:K.annotationTextColor)||this.primaryTextColor,annotationFill:((ut=this.wardley)==null?void 0:ut.annotationFill)||this.background},this.xyChart={backgroundColor:((pt=this.xyChart)==null?void 0:pt.backgroundColor)||this.background,titleColor:((kt=this.xyChart)==null?void 0:kt.titleColor)||this.primaryTextColor,dataLabelColor:((nt=this.xyChart)==null?void 0:nt.dataLabelColor)||this.primaryTextColor,legendTextColor:((wt=this.xyChart)==null?void 0:wt.legendTextColor)||this.primaryTextColor,xAxisTitleColor:((Et=this.xyChart)==null?void 0:Et.xAxisTitleColor)||this.primaryTextColor,xAxisLabelColor:((At=this.xyChart)==null?void 0:At.xAxisLabelColor)||this.primaryTextColor,xAxisTickColor:((qt=this.xyChart)==null?void 0:qt.xAxisTickColor)||this.primaryTextColor,xAxisLineColor:((Lt=this.xyChart)==null?void 0:Lt.xAxisLineColor)||this.primaryTextColor,yAxisTitleColor:((lt=this.xyChart)==null?void 0:lt.yAxisTitleColor)||this.primaryTextColor,yAxisLabelColor:((gt=this.xyChart)==null?void 0:gt.yAxisLabelColor)||this.primaryTextColor,yAxisTickColor:((Mt=this.xyChart)==null?void 0:Mt.yAxisTickColor)||this.primaryTextColor,yAxisLineColor:((Nt=this.xyChart)==null?void 0:Nt.yAxisLineColor)||this.primaryTextColor,plotColorPalette:((Ft=this.xyChart)==null?void 0:Ft.plotColorPalette)||"#CDE498,#FF6B6B,#A0D2DB,#D7BDE2,#F0F0F0,#FFC3A0,#7FD8BE,#FF9A8B,#FAF3E0,#FFF176"},this.requirementBackground=this.requirementBackground||this.primaryColor,this.requirementBorderColor=this.requirementBorderColor||this.primaryBorderColor,this.requirementBorderSize=this.requirementBorderSize||"1",this.requirementTextColor=this.requirementTextColor||this.primaryTextColor,this.relationColor=this.relationColor||this.lineColor,this.relationLabelBackground=this.relationLabelBackground||this.edgeLabelBackground,this.relationLabelColor=this.relationLabelColor||this.actorTextColor,this.git0=this.git0||this.primaryColor,this.git1=this.git1||this.secondaryColor,this.git2=this.git2||this.tertiaryColor,this.git3=this.git3||k(this.primaryColor,{h:-30}),this.git4=this.git4||k(this.primaryColor,{h:-60}),this.git5=this.git5||k(this.primaryColor,{h:-90}),this.git6=this.git6||k(this.primaryColor,{h:60}),this.git7=this.git7||k(this.primaryColor,{h:120}),this.darkMode?(this.git0=U(this.git0,25),this.git1=U(this.git1,25),this.git2=U(this.git2,25),this.git3=U(this.git3,25),this.git4=U(this.git4,25),this.git5=U(this.git5,25),this.git6=U(this.git6,25),this.git7=U(this.git7,25)):(this.git0=G(this.git0,25),this.git1=G(this.git1,25),this.git2=G(this.git2,25),this.git3=G(this.git3,25),this.git4=G(this.git4,25),this.git5=G(this.git5,25),this.git6=G(this.git6,25),this.git7=G(this.git7,25)),this.gitInv0=this.gitInv0||E(this.git0),this.gitInv1=this.gitInv1||E(this.git1),this.gitInv2=this.gitInv2||E(this.git2),this.gitInv3=this.gitInv3||E(this.git3),this.gitInv4=this.gitInv4||E(this.git4),this.gitInv5=this.gitInv5||E(this.git5),this.gitInv6=this.gitInv6||E(this.git6),this.gitInv7=this.gitInv7||E(this.git7),this.gitBranchLabel0=this.gitBranchLabel0||E(this.labelTextColor),this.gitBranchLabel1=this.gitBranchLabel1||this.labelTextColor,this.gitBranchLabel2=this.gitBranchLabel2||this.labelTextColor,this.gitBranchLabel3=this.gitBranchLabel3||E(this.labelTextColor),this.gitBranchLabel4=this.gitBranchLabel4||this.labelTextColor,this.gitBranchLabel5=this.gitBranchLabel5||this.labelTextColor,this.gitBranchLabel6=this.gitBranchLabel6||this.labelTextColor,this.gitBranchLabel7=this.gitBranchLabel7||this.labelTextColor,this.tagLabelColor=this.tagLabelColor||this.primaryTextColor,this.tagLabelBackground=this.tagLabelBackground||this.primaryColor,this.tagLabelBorder=this.tagBorder||this.primaryBorderColor,this.tagLabelFontSize=this.tagLabelFontSize||"10px",this.commitLabelColor=this.commitLabelColor||this.secondaryTextColor,this.commitLabelBackground=this.commitLabelBackground||this.secondaryColor,this.commitLabelFontSize=this.commitLabelFontSize||"10px",this.emUiFill=this.emUiFill||"white",this.emUiStroke=this.emUiStroke||"#dbdada",this.emProcessorFill=this.emProcessorFill||"#edb3f6",this.emProcessorStroke=this.emProcessorStroke||"#b88cbf",this.emReadModelFill=this.emReadModelFill||"#d3f1a2",this.emReadModelStroke=this.emReadModelStroke||"#a3b732",this.emCommandFill=this.emCommandFill||"#bcd6fe",this.emCommandStroke=this.emCommandStroke||"#679ac3",this.emEventFill=this.emEventFill||"#ffb778",this.emEventStroke=this.emEventStroke||"#c19a0f",this.emSwimlaneBackgroundOdd=this.emSwimlaneBackgroundOdd||"rgb(250,250,250)",this.emSwimlaneBackgroundStroke=this.emSwimlaneBackgroundStroke||"rgb(240,240,240)",this.emArrowhead=this.emArrowhead||this.lineColor,this.emRelationStroke=this.emRelationStroke||this.lineColor,this.attributeBackgroundColorOdd=this.attributeBackgroundColorOdd||dr,this.attributeBackgroundColorEven=this.attributeBackgroundColorEven||fr}calculate(t){if(typeof t!="object"){this.updateColors();return}const r=Object.keys(t);r.forEach(i=>{this[i]=t[i]}),this.updateColors(),r.forEach(i=>{this[i]=t[i]})}},p(Ii,"Theme"),Ii),LC=p(e=>{const t=new BC;return t.calculate(e),t},"getThemeVariables"),Pi,FC=(Pi=class{constructor(){this.primaryColor="#eee",this.contrast="#707070",this.secondaryColor=U(this.contrast,55),this.background="#ffffff",this.tertiaryColor=k(this.primaryColor,{h:-160}),this.primaryBorderColor=Ot(this.primaryColor,this.darkMode),this.secondaryBorderColor=Ot(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Ot(this.tertiaryColor,this.darkMode),this.primaryTextColor=E(this.primaryColor),this.secondaryTextColor=E(this.secondaryColor),this.tertiaryTextColor=E(this.tertiaryColor),this.lineColor=E(this.background),this.textColor=E(this.background),this.mainBkg="#eee",this.secondBkg="calculated",this.lineColor="#666",this.border1="#999",this.border2="calculated",this.note="#ffa",this.text="#333",this.critical="#d42",this.done="#bbb",this.arrowheadColor="#333333",this.fontFamily='"trebuchet ms", verdana, arial, sans-serif',this.fontSize="16px",this.THEME_COLOR_LIMIT=12,this.radius=5,this.strokeWidth=1,this.nodeBkg="calculated",this.nodeBorder="calculated",this.clusterBkg="calculated",this.clusterBorder="calculated",this.defaultLinkColor="calculated",this.titleColor="calculated",this.edgeLabelBackground="white",this.actorBorder="calculated",this.actorBkg="calculated",this.actorTextColor="calculated",this.actorLineColor=this.actorBorder,this.signalColor="calculated",this.signalTextColor="calculated",this.labelBoxBkgColor="calculated",this.labelBoxBorderColor="calculated",this.labelTextColor="calculated",this.loopTextColor="calculated",this.noteBorderColor="calculated",this.noteBkgColor="calculated",this.noteTextColor="calculated",this.activationBorderColor="#666",this.activationBkgColor="#f4f4f4",this.sequenceNumberColor="white",this.sectionBkgColor="calculated",this.altSectionBkgColor="white",this.sectionBkgColor2="calculated",this.excludeBkgColor="#eeeeee",this.taskBorderColor="calculated",this.taskBkgColor="calculated",this.taskTextLightColor="white",this.taskTextColor="calculated",this.taskTextDarkColor="calculated",this.taskTextOutsideColor="calculated",this.taskTextClickableColor="#003163",this.activeTaskBorderColor="calculated",this.activeTaskBkgColor="calculated",this.gridColor="calculated",this.doneTaskBkgColor="calculated",this.doneTaskBorderColor="calculated",this.critBkgColor="calculated",this.critBorderColor="calculated",this.todayLineColor="calculated",this.vertLineColor="calculated",this.personBorder=this.primaryBorderColor,this.personBkg=this.mainBkg,this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.noteFontWeight="normal",this.fontWeight="normal",this.rowOdd=this.rowOdd||U(this.mainBkg,75)||"#ffffff",this.rowEven=this.rowEven||"#f4f4f4",this.labelColor="black",this.errorBkgColor="#552222",this.errorTextColor="#552222",this.useGradient=!0,this.gradientStart=this.primaryBorderColor,this.gradientStop=this.secondaryBorderColor,this.dropShadow="drop-shadow( 1px 2px 2px rgba(185,185,185,1))"}updateColors(){var t,r,i,s,o,a,n,l,c,h,u,d,f,m,y,C,x,b,w,_,v,F,A,L,j,z,W,ot,Y,M,$,B,P,O,H,K,ut,pt,kt,nt,wt,Et,At,qt,Lt,lt,gt,Mt,Nt,Ft;this.secondBkg=U(this.contrast,55),this.border2=this.contrast,this.actorBorder=U(this.border1,23),this.actorBkg=this.mainBkg,this.actorTextColor=this.text,this.actorLineColor=this.actorBorder,this.rectBkgColor=this.rectBkgColor||this.tertiaryColor,this.signalColor=this.text,this.signalTextColor=this.text,this.labelBoxBkgColor=this.actorBkg,this.labelBoxBorderColor=this.actorBorder,this.labelTextColor=this.text,this.loopTextColor=this.text,this.noteBorderColor="#999",this.noteBkgColor="#666",this.noteTextColor="#fff",this.cScale0=this.cScale0||"#555",this.cScale1=this.cScale1||"#F4F4F4",this.cScale2=this.cScale2||"#555",this.cScale3=this.cScale3||"#BBB",this.cScale4=this.cScale4||"#777",this.cScale5=this.cScale5||"#999",this.cScale6=this.cScale6||"#DDD",this.cScale7=this.cScale7||"#FFF",this.cScale8=this.cScale8||"#DDD",this.cScale9=this.cScale9||"#BBB",this.cScale10=this.cScale10||"#999",this.cScale11=this.cScale11||"#777";for(let q=0;q<this.THEME_COLOR_LIMIT;q++)this["cScaleInv"+q]=this["cScaleInv"+q]||E(this["cScale"+q]);for(let q=0;q<this.THEME_COLOR_LIMIT;q++)this.darkMode?this["cScalePeer"+q]=this["cScalePeer"+q]||U(this["cScale"+q],10):this["cScalePeer"+q]=this["cScalePeer"+q]||G(this["cScale"+q],10);this.scaleLabelColor=this.scaleLabelColor||(this.darkMode?"black":this.labelTextColor),this.cScaleLabel0=this.cScaleLabel0||this.cScale1,this.cScaleLabel2=this.cScaleLabel2||this.cScale1;for(let q=0;q<this.THEME_COLOR_LIMIT;q++)this["cScaleLabel"+q]=this["cScaleLabel"+q]||this.scaleLabelColor;for(let q=0;q<5;q++)this["surface"+q]=this["surface"+q]||k(this.mainBkg,{l:-(5+q*5)}),this["surfacePeer"+q]=this["surfacePeer"+q]||k(this.mainBkg,{l:-(8+q*5)});this.nodeBkg=this.mainBkg,this.nodeBorder=this.border1,this.clusterBkg=this.secondBkg,this.clusterBorder=this.border2,this.defaultLinkColor=this.lineColor,this.titleColor=this.text,this.sectionBkgColor=U(this.contrast,30),this.sectionBkgColor2=U(this.contrast,30),this.taskBorderColor=G(this.contrast,10),this.taskBkgColor=this.contrast,this.taskTextColor=this.taskTextLightColor,this.taskTextDarkColor=this.text,this.taskTextOutsideColor=this.taskTextDarkColor,this.activeTaskBorderColor=this.taskBorderColor,this.activeTaskBkgColor=this.mainBkg,this.gridColor=U(this.border1,30),this.doneTaskBkgColor=this.done,this.doneTaskBorderColor=this.lineColor,this.critBkgColor=this.critical,this.critBorderColor=G(this.critBkgColor,10),this.todayLineColor=this.critBkgColor,this.vertLineColor=this.critBkgColor,this.archEdgeColor=this.lineColor,this.archEdgeArrowColor=this.lineColor,this.transitionColor=this.transitionColor||"#000",this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||"#f4f4f4",this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.stateBorder=this.stateBorder||"#000",this.innerEndBackground=this.primaryBorderColor,this.specialStateColor="#222",this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.classText=this.primaryTextColor,this.fillType0=this.primaryColor,this.fillType1=this.secondaryColor,this.fillType2=k(this.primaryColor,{h:64}),this.fillType3=k(this.secondaryColor,{h:64}),this.fillType4=k(this.primaryColor,{h:-64}),this.fillType5=k(this.secondaryColor,{h:-64}),this.fillType6=k(this.primaryColor,{h:128}),this.fillType7=k(this.secondaryColor,{h:128});for(let q=0;q<this.THEME_COLOR_LIMIT;q++)this["pie"+q]=this["cScale"+q];this.pie12=this.pie0,this.pieTitleTextSize=this.pieTitleTextSize||"25px",this.pieTitleTextColor=this.pieTitleTextColor||this.taskTextDarkColor,this.pieSectionTextSize=this.pieSectionTextSize||"17px",this.pieSectionTextColor=this.pieSectionTextColor||this.textColor,this.pieLegendTextSize=this.pieLegendTextSize||"17px",this.pieLegendTextColor=this.pieLegendTextColor||this.taskTextDarkColor,this.pieStrokeColor=this.pieStrokeColor||"black",this.pieStrokeWidth=this.pieStrokeWidth||"2px",this.pieOuterStrokeWidth=this.pieOuterStrokeWidth||"2px",this.pieOuterStrokeColor=this.pieOuterStrokeColor||"black",this.pieOpacity=this.pieOpacity||"0.7";for(let q=0;q<8;q++)this["venn"+(q+1)]=this["venn"+(q+1)]??this["cScale"+q];this.vennTitleTextColor=this.vennTitleTextColor??this.titleColor,this.vennSetTextColor=this.vennSetTextColor??this.textColor,this.cynefin={domainFontSize:((t=this.cynefin)==null?void 0:t.domainFontSize)||16,itemFontSize:((r=this.cynefin)==null?void 0:r.itemFontSize)||12,boundaryColor:((i=this.cynefin)==null?void 0:i.boundaryColor)||this.lineColor,boundaryWidth:((s=this.cynefin)==null?void 0:s.boundaryWidth)||2,cliffColor:((o=this.cynefin)==null?void 0:o.cliffColor)||"#8B0000",cliffWidth:((a=this.cynefin)==null?void 0:a.cliffWidth)||4,arrowColor:((n=this.cynefin)==null?void 0:n.arrowColor)||this.lineColor,arrowWidth:((l=this.cynefin)==null?void 0:l.arrowWidth)||2,complexBg:((c=this.cynefin)==null?void 0:c.complexBg)||"#E8F5E9",complicatedBg:((h=this.cynefin)==null?void 0:h.complicatedBg)||"#E3F2FD",chaoticBg:((u=this.cynefin)==null?void 0:u.chaoticBg)||"#FBE9E7",clearBg:((d=this.cynefin)==null?void 0:d.clearBg)||"#FFF8E1",confusionBg:((f=this.cynefin)==null?void 0:f.confusionBg)||"#F3E5F5",textColor:((m=this.cynefin)==null?void 0:m.textColor)||this.textColor,labelColor:((y=this.cynefin)==null?void 0:y.labelColor)||this.primaryTextColor},this.quadrant1Fill=this.quadrant1Fill||this.primaryColor,this.quadrant2Fill=this.quadrant2Fill||k(this.primaryColor,{r:5,g:5,b:5}),this.quadrant3Fill=this.quadrant3Fill||k(this.primaryColor,{r:10,g:10,b:10}),this.quadrant4Fill=this.quadrant4Fill||k(this.primaryColor,{r:15,g:15,b:15}),this.quadrant1TextFill=this.quadrant1TextFill||this.primaryTextColor,this.quadrant2TextFill=this.quadrant2TextFill||k(this.primaryTextColor,{r:-5,g:-5,b:-5}),this.quadrant3TextFill=this.quadrant3TextFill||k(this.primaryTextColor,{r:-10,g:-10,b:-10}),this.quadrant4TextFill=this.quadrant4TextFill||k(this.primaryTextColor,{r:-15,g:-15,b:-15}),this.quadrantPointFill=this.quadrantPointFill||Ke(this.quadrant1Fill)?U(this.quadrant1Fill):G(this.quadrant1Fill),this.quadrantPointTextFill=this.quadrantPointTextFill||this.primaryTextColor,this.quadrantXAxisTextFill=this.quadrantXAxisTextFill||this.primaryTextColor,this.quadrantYAxisTextFill=this.quadrantYAxisTextFill||this.primaryTextColor,this.quadrantInternalBorderStrokeFill=this.quadrantInternalBorderStrokeFill||this.primaryBorderColor,this.quadrantExternalBorderStrokeFill=this.quadrantExternalBorderStrokeFill||this.primaryBorderColor,this.quadrantTitleFill=this.quadrantTitleFill||this.primaryTextColor,this.xyChart={backgroundColor:((C=this.xyChart)==null?void 0:C.backgroundColor)||this.background,titleColor:((x=this.xyChart)==null?void 0:x.titleColor)||this.primaryTextColor,dataLabelColor:((b=this.xyChart)==null?void 0:b.dataLabelColor)||this.primaryTextColor,legendTextColor:((w=this.xyChart)==null?void 0:w.legendTextColor)||this.primaryTextColor,xAxisTitleColor:((_=this.xyChart)==null?void 0:_.xAxisTitleColor)||this.primaryTextColor,xAxisLabelColor:((v=this.xyChart)==null?void 0:v.xAxisLabelColor)||this.primaryTextColor,xAxisTickColor:((F=this.xyChart)==null?void 0:F.xAxisTickColor)||this.primaryTextColor,xAxisLineColor:((A=this.xyChart)==null?void 0:A.xAxisLineColor)||this.primaryTextColor,yAxisTitleColor:((L=this.xyChart)==null?void 0:L.yAxisTitleColor)||this.primaryTextColor,yAxisLabelColor:((j=this.xyChart)==null?void 0:j.yAxisLabelColor)||this.primaryTextColor,yAxisTickColor:((z=this.xyChart)==null?void 0:z.yAxisTickColor)||this.primaryTextColor,yAxisLineColor:((W=this.xyChart)==null?void 0:W.yAxisLineColor)||this.primaryTextColor,plotColorPalette:((ot=this.xyChart)==null?void 0:ot.plotColorPalette)||"#EEE,#6BB8E4,#8ACB88,#C7ACD6,#E8DCC2,#FFB2A8,#FFF380,#7E8D91,#FFD8B1,#FAF3E0"},this.radar={axisColor:((Y=this.radar)==null?void 0:Y.axisColor)||this.lineColor,axisStrokeWidth:((M=this.radar)==null?void 0:M.axisStrokeWidth)||2,axisLabelFontSize:(($=this.radar)==null?void 0:$.axisLabelFontSize)||12,curveOpacity:((B=this.radar)==null?void 0:B.curveOpacity)||.5,curveStrokeWidth:((P=this.radar)==null?void 0:P.curveStrokeWidth)||2,graticuleColor:((O=this.radar)==null?void 0:O.graticuleColor)||"#DEDEDE",graticuleStrokeWidth:((H=this.radar)==null?void 0:H.graticuleStrokeWidth)||1,graticuleOpacity:((K=this.radar)==null?void 0:K.graticuleOpacity)||.3,legendBoxSize:((ut=this.radar)==null?void 0:ut.legendBoxSize)||12,legendFontSize:((pt=this.radar)==null?void 0:pt.legendFontSize)||12},this.wardleyEvolutionColor=this.wardleyEvolutionColor||"#dc3545",this.wardley={backgroundColor:((kt=this.wardley)==null?void 0:kt.backgroundColor)||this.background,axisColor:((nt=this.wardley)==null?void 0:nt.axisColor)||this.lineColor,axisTextColor:((wt=this.wardley)==null?void 0:wt.axisTextColor)||this.primaryTextColor,gridColor:((Et=this.wardley)==null?void 0:Et.gridColor)||this.gridColor,componentFill:((At=this.wardley)==null?void 0:At.componentFill)||this.background,componentStroke:((qt=this.wardley)==null?void 0:qt.componentStroke)||this.lineColor,componentLabelColor:((Lt=this.wardley)==null?void 0:Lt.componentLabelColor)||this.primaryTextColor,linkStroke:((lt=this.wardley)==null?void 0:lt.linkStroke)||this.lineColor,evolutionStroke:((gt=this.wardley)==null?void 0:gt.evolutionStroke)||this.wardleyEvolutionColor,annotationStroke:((Mt=this.wardley)==null?void 0:Mt.annotationStroke)||this.lineColor,annotationTextColor:((Nt=this.wardley)==null?void 0:Nt.annotationTextColor)||this.primaryTextColor,annotationFill:((Ft=this.wardley)==null?void 0:Ft.annotationFill)||this.background},this.requirementBackground=this.requirementBackground||this.primaryColor,this.requirementBorderColor=this.requirementBorderColor||this.primaryBorderColor,this.requirementBorderSize=this.requirementBorderSize||"1",this.requirementTextColor=this.requirementTextColor||this.primaryTextColor,this.relationColor=this.relationColor||this.lineColor,this.relationLabelBackground=this.relationLabelBackground||this.edgeLabelBackground,this.relationLabelColor=this.relationLabelColor||this.actorTextColor,this.git0=G(this.pie1,25)||this.primaryColor,this.git1=this.pie2||this.secondaryColor,this.git2=this.pie3||this.tertiaryColor,this.git3=this.pie4||k(this.primaryColor,{h:-30}),this.git4=this.pie5||k(this.primaryColor,{h:-60}),this.git5=this.pie6||k(this.primaryColor,{h:-90}),this.git6=this.pie7||k(this.primaryColor,{h:60}),this.git7=this.pie8||k(this.primaryColor,{h:120}),this.gitInv0=this.gitInv0||E(this.git0),this.gitInv1=this.gitInv1||E(this.git1),this.gitInv2=this.gitInv2||E(this.git2),this.gitInv3=this.gitInv3||E(this.git3),this.gitInv4=this.gitInv4||E(this.git4),this.gitInv5=this.gitInv5||E(this.git5),this.gitInv6=this.gitInv6||E(this.git6),this.gitInv7=this.gitInv7||E(this.git7),this.branchLabelColor=this.branchLabelColor||this.labelTextColor,this.gitBranchLabel0=this.branchLabelColor,this.gitBranchLabel1="white",this.gitBranchLabel2=this.branchLabelColor,this.gitBranchLabel3="white",this.gitBranchLabel4=this.branchLabelColor,this.gitBranchLabel5=this.branchLabelColor,this.gitBranchLabel6=this.branchLabelColor,this.gitBranchLabel7=this.branchLabelColor,this.tagLabelColor=this.tagLabelColor||this.primaryTextColor,this.tagLabelBackground=this.tagLabelBackground||this.primaryColor,this.tagLabelBorder=this.tagBorder||this.primaryBorderColor,this.tagLabelFontSize=this.tagLabelFontSize||"10px",this.commitLabelColor=this.commitLabelColor||this.secondaryTextColor,this.commitLabelBackground=this.commitLabelBackground||this.secondaryColor,this.commitLabelFontSize=this.commitLabelFontSize||"10px",this.emUiFill=this.emUiFill||"white",this.emUiStroke=this.emUiStroke||"#dbdada",this.emProcessorFill=this.emProcessorFill||"#edb3f6",this.emProcessorStroke=this.emProcessorStroke||"#b88cbf",this.emReadModelFill=this.emReadModelFill||"#d3f1a2",this.emReadModelStroke=this.emReadModelStroke||"#a3b732",this.emCommandFill=this.emCommandFill||"#bcd6fe",this.emCommandStroke=this.emCommandStroke||"#679ac3",this.emEventFill=this.emEventFill||"#ffb778",this.emEventStroke=this.emEventStroke||"#c19a0f",this.emSwimlaneBackgroundOdd=this.emSwimlaneBackgroundOdd||"rgb(250,250,250)",this.emSwimlaneBackgroundStroke=this.emSwimlaneBackgroundStroke||"rgb(240,240,240)",this.emArrowhead=this.emArrowhead||this.lineColor,this.emRelationStroke=this.emRelationStroke||this.lineColor,this.attributeBackgroundColorOdd=this.attributeBackgroundColorOdd||dr,this.attributeBackgroundColorEven=this.attributeBackgroundColorEven||fr}calculate(t){if(typeof t!="object"){this.updateColors();return}const r=Object.keys(t);r.forEach(i=>{this[i]=t[i]}),this.updateColors(),r.forEach(i=>{this[i]=t[i]})}},p(Pi,"Theme"),Pi),AC=p(e=>{const t=new FC;return t.calculate(e),t},"getThemeVariables"),Ri,EC=(Ri=class{constructor(){this.background="#ffffff",this.primaryColor="#cccccc",this.mainBkg="#ffffff",this.noteBkgColor="#fff5ad",this.noteTextColor="#333",this.THEME_COLOR_LIMIT=12,this.radius=3,this.strokeWidth=2,this.primaryBorderColor=Ot(this.primaryColor,this.darkMode),this.fontFamily="arial, sans-serif",this.fontSize="14px",this.nodeBorder="#000000",this.stateBorder="#000000",this.useGradient=!0,this.gradientStart="#0042eb",this.gradientStop="#eb0042",this.dropShadow="drop-shadow( 0px 1px 2px rgba(0, 0, 0, 0.25));",this.tertiaryColor="#ffffff",this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.noteFontWeight="normal",this.fontWeight="normal"}updateColors(){var o,a,n,l,c,h,u,d,f,m,y,C;this.primaryTextColor=this.primaryTextColor||(this.darkMode?"#eee":"#333"),this.secondaryColor=this.secondaryColor||k(this.primaryColor,{h:-120}),this.tertiaryColor=this.tertiaryColor||k(this.primaryColor,{h:180,l:5}),this.primaryBorderColor=this.primaryBorderColor||Ot(this.primaryColor,this.darkMode),this.secondaryBorderColor=this.secondaryBorderColor||Ot(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=this.tertiaryBorderColor||Ot(this.tertiaryColor,this.darkMode),this.noteBorderColor=this.noteBorderColor||Ot(this.noteBkgColor,this.darkMode),this.noteBkgColor=this.noteBkgColor||"#fff5ad",this.noteTextColor=this.noteTextColor||"#333",this.secondaryTextColor=this.secondaryTextColor||E(this.secondaryColor),this.tertiaryTextColor=this.tertiaryTextColor||E(this.tertiaryColor),this.lineColor=this.lineColor||E(this.background),this.arrowheadColor=this.arrowheadColor||E(this.background),this.textColor=this.textColor||this.primaryTextColor,this.border2=this.border2||this.tertiaryBorderColor,this.nodeBkg=this.nodeBkg||this.primaryColor,this.mainBkg=this.mainBkg||this.primaryColor,this.nodeBorder=this.nodeBorder||this.primaryBorderColor,this.clusterBkg=this.clusterBkg||this.tertiaryColor,this.clusterBorder=this.clusterBorder||this.tertiaryBorderColor,this.defaultLinkColor=this.defaultLinkColor||this.lineColor,this.titleColor=this.titleColor||this.tertiaryTextColor,this.edgeLabelBackground=this.edgeLabelBackground||(this.darkMode?G(this.secondaryColor,30):this.secondaryColor),this.nodeTextColor=this.nodeTextColor||this.primaryTextColor,this.actorBorder=this.actorBorder||this.primaryBorderColor,this.actorBkg=this.actorBkg||this.mainBkg,this.actorTextColor=this.actorTextColor||this.primaryTextColor,this.actorLineColor=this.actorLineColor||this.actorBorder,this.labelBoxBkgColor=this.labelBoxBkgColor||this.actorBkg,this.signalColor=this.signalColor||this.textColor,this.signalTextColor=this.signalTextColor||this.textColor,this.labelBoxBorderColor=this.labelBoxBorderColor||this.actorBorder,this.labelTextColor=this.labelTextColor||this.actorTextColor,this.loopTextColor=this.loopTextColor||this.actorTextColor,this.activationBorderColor=this.activationBorderColor||G(this.secondaryColor,10),this.activationBkgColor=this.activationBkgColor||this.secondaryColor,this.sequenceNumberColor=this.sequenceNumberColor||E(this.lineColor),this.rectBkgColor=this.rectBkgColor||this.tertiaryColor;const t="#ECECFE",r="#E9E9F1",i=k(t,{h:180,l:5});if(this.sectionBkgColor=this.sectionBkgColor||i,this.altSectionBkgColor=this.altSectionBkgColor||"white",this.sectionBkgColor=this.sectionBkgColor||r,this.sectionBkgColor2=this.sectionBkgColor2||t,this.excludeBkgColor=this.excludeBkgColor||"#eeeeee",this.taskBorderColor=this.taskBorderColor||this.primaryBorderColor,this.taskBkgColor=this.taskBkgColor||t,this.activeTaskBorderColor=this.activeTaskBorderColor||t,this.activeTaskBkgColor=this.activeTaskBkgColor||U(t,23),this.gridColor=this.gridColor||"lightgrey",this.doneTaskBkgColor=this.doneTaskBkgColor||"lightgrey",this.doneTaskBorderColor=this.doneTaskBorderColor||"grey",this.critBorderColor=this.critBorderColor||"#ff8888",this.critBkgColor=this.critBkgColor||"red",this.todayLineColor=this.todayLineColor||"red",this.taskTextColor=this.taskTextColor||this.textColor,this.taskTextOutsideColor=this.taskTextOutsideColor||this.textColor,this.vertLineColor=this.vertLineColor||this.primaryBorderColor,this.taskTextLightColor=this.taskTextLightColor||this.textColor,this.taskTextColor=this.taskTextColor||this.primaryTextColor,this.taskTextDarkColor=this.taskTextDarkColor||this.textColor,this.taskTextClickableColor=this.taskTextClickableColor||"#003163",this.archEdgeColor=this.lineColor,this.archEdgeArrowColor=this.lineColor,this.personBorder=this.personBorder||this.primaryBorderColor,this.personBkg=this.personBkg||this.mainBkg,this.transitionColor=this.transitionColor||this.lineColor,this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||"#f0f0f0",this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.compositeBorder=this.compositeBorder||this.nodeBorder,this.innerEndBackground=this.nodeBorder,this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.transitionColor=this.transitionColor||this.lineColor,this.specialStateColor=this.lineColor,this.cScale0=this.cScale0||t,this.cScale1=this.cScale1||r,this.cScale2=this.cScale2||i,this.cScale3=this.cScale3||k(t,{h:30}),this.cScale4=this.cScale4||k(t,{h:60}),this.cScale5=this.cScale5||k(t,{h:90}),this.cScale6=this.cScale6||k(t,{h:120}),this.cScale7=this.cScale7||k(t,{h:150}),this.cScale8=this.cScale8||k(t,{h:210,l:150}),this.cScale9=this.cScale9||k(t,{h:270}),this.cScale10=this.cScale10||k(t,{h:300}),this.cScale11=this.cScale11||k(t,{h:330}),this.darkMode)for(let x=0;x<this.THEME_COLOR_LIMIT;x++)this["cScale"+x]=G(this["cScale"+x],75);else for(let x=0;x<this.THEME_COLOR_LIMIT;x++)this["cScale"+x]=G(this["cScale"+x],25);for(let x=0;x<this.THEME_COLOR_LIMIT;x++)this["cScaleInv"+x]=this["cScaleInv"+x]||E(this["cScale"+x]);for(let x=0;x<this.THEME_COLOR_LIMIT;x++)this.darkMode?this["cScalePeer"+x]=this["cScalePeer"+x]||U(this["cScale"+x],10):this["cScalePeer"+x]=this["cScalePeer"+x]||G(this["cScale"+x],10);this.scaleLabelColor=this.scaleLabelColor||this.labelTextColor;for(let x=0;x<this.THEME_COLOR_LIMIT;x++)this["cScaleLabel"+x]=this["cScaleLabel"+x]||this.scaleLabelColor;const s=this.darkMode?-4:-1;for(let x=0;x<5;x++)this["surface"+x]=this["surface"+x]||k(this.mainBkg,{h:180,s:-15,l:s*(5+x*3)}),this["surfacePeer"+x]=this["surfacePeer"+x]||k(this.mainBkg,{h:180,s:-15,l:s*(8+x*3)});this.classText=this.classText||this.textColor,this.fillType0=this.fillType0||t,this.fillType1=this.fillType1||r,this.fillType2=this.fillType2||k(t,{h:64}),this.fillType3=this.fillType3||k(r,{h:64}),this.fillType4=this.fillType4||k(t,{h:-64}),this.fillType5=this.fillType5||k(r,{h:-64}),this.fillType6=this.fillType6||k(t,{h:128}),this.fillType7=this.fillType7||k(r,{h:128}),this.pie1=this.pie1||t,this.pie2=this.pie2||r,this.pie3=this.pie3||i,this.pie4=this.pie4||k(t,{l:-10}),this.pie5=this.pie5||k(r,{l:-10}),this.pie6=this.pie6||k(i,{l:-10}),this.pie7=this.pie7||k(t,{h:60,l:-10}),this.pie8=this.pie8||k(t,{h:-60,l:-10}),this.pie9=this.pie9||k(t,{h:120,l:0}),this.pie10=this.pie10||k(t,{h:60,l:-20}),this.pie11=this.pie11||k(t,{h:-60,l:-20}),this.pie12=this.pie12||k(t,{h:120,l:-10}),this.pieTitleTextSize=this.pieTitleTextSize||"25px",this.pieTitleTextColor=this.pieTitleTextColor||this.taskTextDarkColor,this.pieSectionTextSize=this.pieSectionTextSize||"17px",this.pieSectionTextColor=this.pieSectionTextColor||this.textColor,this.pieLegendTextSize=this.pieLegendTextSize||"17px",this.pieLegendTextColor=this.pieLegendTextColor||this.taskTextDarkColor,this.pieStrokeColor=this.pieStrokeColor||"black",this.pieStrokeWidth=this.pieStrokeWidth||"2px",this.pieOuterStrokeWidth=this.pieOuterStrokeWidth||"2px",this.pieOuterStrokeColor=this.pieOuterStrokeColor||"black",this.pieOpacity=this.pieOpacity||"0.7",this.vennTitleTextColor=this.vennTitleTextColor??this.titleColor,this.vennSetTextColor=this.vennSetTextColor??this.textColor,this.quadrant1Fill=this.quadrant1Fill||t,this.quadrant2Fill=this.quadrant2Fill||k(t,{r:5,g:5,b:5}),this.quadrant3Fill=this.quadrant3Fill||k(t,{r:10,g:10,b:10}),this.quadrant4Fill=this.quadrant4Fill||k(t,{r:15,g:15,b:15}),this.quadrant1TextFill=this.quadrant1TextFill||this.primaryTextColor,this.quadrant2TextFill=this.quadrant2TextFill||k(this.primaryTextColor,{r:-5,g:-5,b:-5}),this.quadrant3TextFill=this.quadrant3TextFill||k(this.primaryTextColor,{r:-10,g:-10,b:-10}),this.quadrant4TextFill=this.quadrant4TextFill||k(this.primaryTextColor,{r:-15,g:-15,b:-15}),this.quadrantPointFill=this.quadrantPointFill||Ke(this.quadrant1Fill)?U(this.quadrant1Fill):G(this.quadrant1Fill),this.quadrantPointTextFill=this.quadrantPointTextFill||this.primaryTextColor,this.quadrantXAxisTextFill=this.quadrantXAxisTextFill||this.primaryTextColor,this.quadrantYAxisTextFill=this.quadrantYAxisTextFill||this.primaryTextColor,this.quadrantInternalBorderStrokeFill=this.quadrantInternalBorderStrokeFill||this.primaryBorderColor,this.quadrantExternalBorderStrokeFill=this.quadrantExternalBorderStrokeFill||this.primaryBorderColor,this.quadrantTitleFill=this.quadrantTitleFill||this.primaryTextColor,this.xyChart={backgroundColor:((o=this.xyChart)==null?void 0:o.backgroundColor)||this.background,titleColor:((a=this.xyChart)==null?void 0:a.titleColor)||this.primaryTextColor,legendTextColor:((n=this.xyChart)==null?void 0:n.legendTextColor)||this.primaryTextColor,xAxisTitleColor:((l=this.xyChart)==null?void 0:l.xAxisTitleColor)||this.primaryTextColor,xAxisLabelColor:((c=this.xyChart)==null?void 0:c.xAxisLabelColor)||this.primaryTextColor,xAxisTickColor:((h=this.xyChart)==null?void 0:h.xAxisTickColor)||this.primaryTextColor,xAxisLineColor:((u=this.xyChart)==null?void 0:u.xAxisLineColor)||this.primaryTextColor,yAxisTitleColor:((d=this.xyChart)==null?void 0:d.yAxisTitleColor)||this.primaryTextColor,yAxisLabelColor:((f=this.xyChart)==null?void 0:f.yAxisLabelColor)||this.primaryTextColor,yAxisTickColor:((m=this.xyChart)==null?void 0:m.yAxisTickColor)||this.primaryTextColor,yAxisLineColor:((y=this.xyChart)==null?void 0:y.yAxisLineColor)||this.primaryTextColor,plotColorPalette:((C=this.xyChart)==null?void 0:C.plotColorPalette)||"#FFF4DD,#FFD8B1,#FFA07A,#ECEFF1,#D6DBDF,#C3E0A8,#FFB6A4,#FFD74D,#738FA7,#FFFFF0"},this.requirementBackground=this.requirementBackground||t,this.requirementBorderColor=this.requirementBorderColor||this.primaryBorderColor,this.requirementBorderSize=this.requirementBorderSize||"1",this.requirementTextColor=this.requirementTextColor||this.primaryTextColor,this.relationColor=this.relationColor||this.lineColor,this.relationLabelBackground=this.relationLabelBackground||(this.darkMode?G(this.secondaryColor,30):this.secondaryColor),this.relationLabelColor=this.relationLabelColor||this.actorTextColor,this.git0=this.git0||t,this.git1=this.git1||r,this.git2=this.git2||i,this.git3=this.git3||k(t,{h:-30}),this.git4=this.git4||k(t,{h:-60}),this.git5=this.git5||k(t,{h:-90}),this.git6=this.git6||k(t,{h:60}),this.git7=this.git7||k(t,{h:120}),this.darkMode?(this.git0=U(this.git0,25),this.git1=U(this.git1,25),this.git2=U(this.git2,25),this.git3=U(this.git3,25),this.git4=U(this.git4,25),this.git5=U(this.git5,25),this.git6=U(this.git6,25),this.git7=U(this.git7,25)):(this.git0=G(this.git0,25),this.git1=G(this.git1,25),this.git2=G(this.git2,25),this.git3=G(this.git3,25),this.git4=G(this.git4,25),this.git5=G(this.git5,25),this.git6=G(this.git6,25),this.git7=G(this.git7,25)),this.gitInv0=this.gitInv0||E(this.git0),this.gitInv1=this.gitInv1||E(this.git1),this.gitInv2=this.gitInv2||E(this.git2),this.gitInv3=this.gitInv3||E(this.git3),this.gitInv4=this.gitInv4||E(this.git4),this.gitInv5=this.gitInv5||E(this.git5),this.gitInv6=this.gitInv6||E(this.git6),this.gitInv7=this.gitInv7||E(this.git7),this.branchLabelColor=this.branchLabelColor||(this.darkMode?"black":this.labelTextColor),this.gitBranchLabel0=this.gitBranchLabel0||this.branchLabelColor,this.gitBranchLabel1=this.gitBranchLabel1||this.branchLabelColor,this.gitBranchLabel2=this.gitBranchLabel2||this.branchLabelColor,this.gitBranchLabel3=this.gitBranchLabel3||this.branchLabelColor,this.gitBranchLabel4=this.gitBranchLabel4||this.branchLabelColor,this.gitBranchLabel5=this.gitBranchLabel5||this.branchLabelColor,this.gitBranchLabel6=this.gitBranchLabel6||this.branchLabelColor,this.gitBranchLabel7=this.gitBranchLabel7||this.branchLabelColor,this.tagLabelColor=this.tagLabelColor||this.primaryTextColor,this.tagLabelBackground=this.tagLabelBackground||this.primaryColor,this.tagLabelBorder=this.tagBorder||this.primaryBorderColor,this.tagLabelFontSize=this.tagLabelFontSize||"10px",this.commitLabelColor=this.commitLabelColor||this.secondaryTextColor,this.commitLabelBackground=this.commitLabelBackground||this.secondaryColor,this.commitLabelFontSize=this.commitLabelFontSize||"10px",this.attributeBackgroundColorOdd=this.attributeBackgroundColorOdd||dr,this.attributeBackgroundColorEven=this.attributeBackgroundColorEven||fr}calculate(t){if(typeof t!="object"){this.updateColors();return}const r=Object.keys(t);r.forEach(i=>{this[i]=t[i]}),this.updateColors(),r.forEach(i=>{this[i]=t[i]})}},p(Ri,"Theme"),Ri),MC=p(e=>{const t=new EC;return t.calculate(e),t},"getThemeVariables"),Ni,$C=(Ni=class{constructor(){this.background="#333",this.primaryColor="#1f2020",this.secondaryColor=U(this.primaryColor,16),this.tertiaryColor=k(this.primaryColor,{h:-160}),this.primaryBorderColor=E(this.background),this.secondaryBorderColor=Ot(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Ot(this.tertiaryColor,this.darkMode),this.primaryTextColor=E(this.primaryColor),this.secondaryTextColor=E(this.secondaryColor),this.tertiaryTextColor=E(this.tertiaryColor),this.mainBkg="#2a2020",this.secondBkg="calculated",this.mainContrastColor="lightgrey",this.darkTextColor=U(E("#323D47"),10),this.border1="#ccc",this.border2=qr(255,255,255,.25),this.arrowheadColor=E(this.background),this.fontFamily="arial, sans-serif",this.fontSize="14px",this.labelBackground="#181818",this.textColor="#ccc",this.THEME_COLOR_LIMIT=12,this.radius=3,this.strokeWidth=1,this.noteBkgColor="#fff5ad",this.noteTextColor="#333",this.THEME_COLOR_LIMIT=12,this.fontFamily="arial, sans-serif",this.fontSize="14px",this.useGradient=!0,this.gradientStart="#0042eb",this.gradientStop="#eb0042",this.dropShadow="drop-shadow( 1px 2px 2px rgba(185,185,185,0.2))",this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.noteFontWeight="normal",this.fontWeight="normal"}updateColors(){var r,i,s,o,a,n,l,c,h,u,d,f;if(this.primaryTextColor=this.primaryTextColor||(this.darkMode?"#eee":"#333"),this.secondaryColor=this.secondaryColor||k(this.primaryColor,{h:-120}),this.tertiaryColor=this.tertiaryColor||k(this.primaryColor,{h:180,l:5}),this.primaryBorderColor=this.primaryBorderColor||Ot(this.primaryColor,this.darkMode),this.secondaryBorderColor=this.secondaryBorderColor||Ot(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=this.tertiaryBorderColor||Ot(this.tertiaryColor,this.darkMode),this.noteBorderColor=this.noteBorderColor||Ot(this.noteBkgColor,this.darkMode),this.noteBkgColor=this.noteBkgColor||"#fff5ad",this.noteTextColor=this.noteTextColor||"#333",this.secondaryTextColor=this.secondaryTextColor||E(this.secondaryColor),this.tertiaryTextColor=this.tertiaryTextColor||E(this.tertiaryColor),this.lineColor=this.lineColor||E(this.background),this.arrowheadColor=this.arrowheadColor||E(this.background),this.textColor=this.textColor||this.primaryTextColor,this.border2=this.border2||this.tertiaryBorderColor,this.nodeBkg=this.nodeBkg||this.primaryColor,this.mainBkg=this.mainBkg||this.primaryColor,this.nodeBorder=this.nodeBorder||this.border1,this.clusterBkg=this.clusterBkg||this.tertiaryColor,this.clusterBorder=this.clusterBorder||this.tertiaryBorderColor,this.defaultLinkColor=this.defaultLinkColor||this.lineColor,this.titleColor=this.titleColor||this.tertiaryTextColor,this.edgeLabelBackground=this.edgeLabelBackground||(this.darkMode?G(this.secondaryColor,30):this.secondaryColor),this.nodeTextColor=this.nodeTextColor||this.primaryTextColor,this.actorBorder=this.actorBorder||this.primaryBorderColor,this.actorBkg=this.actorBkg||this.mainBkg,this.actorTextColor=this.actorTextColor||this.primaryTextColor,this.actorLineColor=this.actorLineColor||this.actorBorder,this.labelBoxBkgColor=this.labelBoxBkgColor||this.actorBkg,this.signalColor=this.signalColor||this.textColor,this.signalTextColor=this.signalTextColor||this.textColor,this.labelBoxBorderColor=this.labelBoxBorderColor||this.actorBorder,this.labelTextColor=this.labelTextColor||this.actorTextColor,this.loopTextColor=this.loopTextColor||this.actorTextColor,this.activationBorderColor=this.activationBorderColor||G(this.secondaryColor,10),this.activationBkgColor=this.activationBkgColor||this.secondaryColor,this.sequenceNumberColor=this.sequenceNumberColor||E(this.lineColor),this.rectBkgColor=this.rectBkgColor||this.tertiaryColor,this.sectionBkgColor=this.sectionBkgColor||this.tertiaryColor,this.altSectionBkgColor=this.altSectionBkgColor||"white",this.sectionBkgColor=this.sectionBkgColor||this.secondaryColor,this.sectionBkgColor2=this.sectionBkgColor2||this.primaryColor,this.excludeBkgColor=this.excludeBkgColor||"#eeeeee",this.taskBorderColor=this.taskBorderColor||this.primaryBorderColor,this.taskBkgColor=this.taskBkgColor||this.primaryColor,this.activeTaskBorderColor=this.activeTaskBorderColor||this.primaryColor,this.activeTaskBkgColor=this.activeTaskBkgColor||U(this.primaryColor,23),this.gridColor=this.gridColor||"lightgrey",this.doneTaskBkgColor=this.doneTaskBkgColor||"lightgrey",this.doneTaskBorderColor=this.doneTaskBorderColor||"grey",this.critBorderColor=this.critBorderColor||"#ff8888",this.critBkgColor=this.critBkgColor||"red",this.todayLineColor=this.todayLineColor||"red",this.vertLineColor=this.vertLineColor||this.primaryBorderColor,this.taskTextColor=this.taskTextColor||this.textColor,this.taskTextOutsideColor=this.taskTextOutsideColor||this.textColor,this.taskTextLightColor=this.taskTextLightColor||this.textColor,this.taskTextColor=this.taskTextColor||this.primaryTextColor,this.taskTextDarkColor=this.taskTextDarkColor||this.textColor,this.taskTextClickableColor=this.taskTextClickableColor||"#003163",this.archEdgeColor=this.lineColor,this.archEdgeArrowColor=this.lineColor,this.personBorder=this.personBorder||this.primaryBorderColor,this.personBkg=this.personBkg||this.mainBkg,this.transitionColor=this.transitionColor||this.lineColor,this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||"#f0f0f0",this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.compositeBorder=this.compositeBorder||this.nodeBorder,this.innerEndBackground=this.nodeBorder,this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.transitionColor=this.transitionColor||this.lineColor,this.specialStateColor=this.lineColor,this.cScale0=this.cScale0||this.primaryColor,this.cScale1=this.cScale1||this.secondaryColor,this.cScale2=this.cScale2||this.tertiaryColor,this.cScale3=this.cScale3||k(this.primaryColor,{h:30}),this.cScale4=this.cScale4||k(this.primaryColor,{h:60}),this.cScale5=this.cScale5||k(this.primaryColor,{h:90}),this.cScale6=this.cScale6||k(this.primaryColor,{h:120}),this.cScale7=this.cScale7||k(this.primaryColor,{h:150}),this.cScale8=this.cScale8||k(this.primaryColor,{h:210,l:150}),this.cScale9=this.cScale9||k(this.primaryColor,{h:270}),this.cScale10=this.cScale10||k(this.primaryColor,{h:300}),this.cScale11=this.cScale11||k(this.primaryColor,{h:330}),this.darkMode)for(let m=0;m<this.THEME_COLOR_LIMIT;m++)this["cScale"+m]=G(this["cScale"+m],75);else for(let m=0;m<this.THEME_COLOR_LIMIT;m++)this["cScale"+m]=G(this["cScale"+m],25);for(let m=0;m<this.THEME_COLOR_LIMIT;m++)this["cScaleInv"+m]=this["cScaleInv"+m]||E(this["cScale"+m]);for(let m=0;m<this.THEME_COLOR_LIMIT;m++)this.darkMode?this["cScalePeer"+m]=this["cScalePeer"+m]||U(this["cScale"+m],10):this["cScalePeer"+m]=this["cScalePeer"+m]||G(this["cScale"+m],10);this.scaleLabelColor=this.scaleLabelColor||this.labelTextColor;for(let m=0;m<this.THEME_COLOR_LIMIT;m++)this["cScaleLabel"+m]=this["cScaleLabel"+m]||this.scaleLabelColor;const t=this.darkMode?-4:-1;for(let m=0;m<5;m++)this["surface"+m]=this["surface"+m]||k(this.mainBkg,{h:180,s:-15,l:t*(5+m*3)}),this["surfacePeer"+m]=this["surfacePeer"+m]||k(this.mainBkg,{h:180,s:-15,l:t*(8+m*3)});this.classText=this.classText||this.textColor,this.fillType0=this.fillType0||this.primaryColor,this.fillType1=this.fillType1||this.secondaryColor,this.fillType2=this.fillType2||k(this.primaryColor,{h:64}),this.fillType3=this.fillType3||k(this.secondaryColor,{h:64}),this.fillType4=this.fillType4||k(this.primaryColor,{h:-64}),this.fillType5=this.fillType5||k(this.secondaryColor,{h:-64}),this.fillType6=this.fillType6||k(this.primaryColor,{h:128}),this.fillType7=this.fillType7||k(this.secondaryColor,{h:128}),this.pie1=this.pie1||this.primaryColor,this.pie2=this.pie2||this.secondaryColor,this.pie3=this.pie3||this.tertiaryColor,this.pie4=this.pie4||k(this.primaryColor,{l:-10}),this.pie5=this.pie5||k(this.secondaryColor,{l:-10}),this.pie6=this.pie6||k(this.tertiaryColor,{l:-10}),this.pie7=this.pie7||k(this.primaryColor,{h:60,l:-10}),this.pie8=this.pie8||k(this.primaryColor,{h:-60,l:-10}),this.pie9=this.pie9||k(this.primaryColor,{h:120,l:0}),this.pie10=this.pie10||k(this.primaryColor,{h:60,l:-20}),this.pie11=this.pie11||k(this.primaryColor,{h:-60,l:-20}),this.pie12=this.pie12||k(this.primaryColor,{h:120,l:-10}),this.pieTitleTextSize=this.pieTitleTextSize||"25px",this.pieTitleTextColor=this.pieTitleTextColor||this.taskTextDarkColor,this.pieSectionTextSize=this.pieSectionTextSize||"17px",this.pieSectionTextColor=this.pieSectionTextColor||this.textColor,this.pieLegendTextSize=this.pieLegendTextSize||"17px",this.pieLegendTextColor=this.pieLegendTextColor||this.taskTextDarkColor,this.pieStrokeColor=this.pieStrokeColor||"black",this.pieStrokeWidth=this.pieStrokeWidth||"2px",this.pieOuterStrokeWidth=this.pieOuterStrokeWidth||"2px",this.pieOuterStrokeColor=this.pieOuterStrokeColor||"black",this.pieOpacity=this.pieOpacity||"0.7",this.vennTitleTextColor=this.vennTitleTextColor??this.titleColor,this.vennSetTextColor=this.vennSetTextColor??this.textColor,this.quadrant1Fill=this.quadrant1Fill||this.primaryColor,this.quadrant2Fill=this.quadrant2Fill||k(this.primaryColor,{r:5,g:5,b:5}),this.quadrant3Fill=this.quadrant3Fill||k(this.primaryColor,{r:10,g:10,b:10}),this.quadrant4Fill=this.quadrant4Fill||k(this.primaryColor,{r:15,g:15,b:15}),this.quadrant1TextFill=this.quadrant1TextFill||this.primaryTextColor,this.quadrant2TextFill=this.quadrant2TextFill||k(this.primaryTextColor,{r:-5,g:-5,b:-5}),this.quadrant3TextFill=this.quadrant3TextFill||k(this.primaryTextColor,{r:-10,g:-10,b:-10}),this.quadrant4TextFill=this.quadrant4TextFill||k(this.primaryTextColor,{r:-15,g:-15,b:-15}),this.quadrantPointFill=this.quadrantPointFill||Ke(this.quadrant1Fill)?U(this.quadrant1Fill):G(this.quadrant1Fill),this.quadrantPointTextFill=this.quadrantPointTextFill||this.primaryTextColor,this.quadrantXAxisTextFill=this.quadrantXAxisTextFill||this.primaryTextColor,this.quadrantYAxisTextFill=this.quadrantYAxisTextFill||this.primaryTextColor,this.quadrantInternalBorderStrokeFill=this.quadrantInternalBorderStrokeFill||this.primaryBorderColor,this.quadrantExternalBorderStrokeFill=this.quadrantExternalBorderStrokeFill||this.primaryBorderColor,this.quadrantTitleFill=this.quadrantTitleFill||this.primaryTextColor,this.xyChart={backgroundColor:((r=this.xyChart)==null?void 0:r.backgroundColor)||this.background,titleColor:((i=this.xyChart)==null?void 0:i.titleColor)||this.primaryTextColor,legendTextColor:((s=this.xyChart)==null?void 0:s.legendTextColor)||this.primaryTextColor,xAxisTitleColor:((o=this.xyChart)==null?void 0:o.xAxisTitleColor)||this.primaryTextColor,xAxisLabelColor:((a=this.xyChart)==null?void 0:a.xAxisLabelColor)||this.primaryTextColor,xAxisTickColor:((n=this.xyChart)==null?void 0:n.xAxisTickColor)||this.primaryTextColor,xAxisLineColor:((l=this.xyChart)==null?void 0:l.xAxisLineColor)||this.primaryTextColor,yAxisTitleColor:((c=this.xyChart)==null?void 0:c.yAxisTitleColor)||this.primaryTextColor,yAxisLabelColor:((h=this.xyChart)==null?void 0:h.yAxisLabelColor)||this.primaryTextColor,yAxisTickColor:((u=this.xyChart)==null?void 0:u.yAxisTickColor)||this.primaryTextColor,yAxisLineColor:((d=this.xyChart)==null?void 0:d.yAxisLineColor)||this.primaryTextColor,plotColorPalette:((f=this.xyChart)==null?void 0:f.plotColorPalette)||"#FFF4DD,#FFD8B1,#FFA07A,#ECEFF1,#D6DBDF,#C3E0A8,#FFB6A4,#FFD74D,#738FA7,#FFFFF0"},this.requirementBackground=this.requirementBackground||this.primaryColor,this.requirementBorderColor=this.requirementBorderColor||this.primaryBorderColor,this.requirementBorderSize=this.requirementBorderSize||"1",this.requirementTextColor=this.requirementTextColor||this.primaryTextColor,this.relationColor=this.relationColor||this.lineColor,this.relationLabelBackground=this.relationLabelBackground||(this.darkMode?G(this.secondaryColor,30):this.secondaryColor),this.relationLabelColor=this.relationLabelColor||this.actorTextColor,this.git0=this.git0||"#0b0000",this.git1=this.git1||"#4d1037",this.git2=this.git2||"#3f5258",this.git3=this.git3||"#4f2f1b",this.git4=this.git4||"#6e0a0a",this.git5=this.git5||"#3b0048",this.git6=this.git6||"#995a01",this.git7=this.git7||"#154706",this.gitDarkMode=!0,this.gitDarkMode?(this.git0=U(this.git0,25),this.git1=U(this.git1,25),this.git2=U(this.git2,25),this.git3=U(this.git3,25),this.git4=U(this.git4,25),this.git5=U(this.git5,25),this.git6=U(this.git6,25),this.git7=U(this.git7,25)):(this.git0=G(this.git0,25),this.git1=G(this.git1,25),this.git2=G(this.git2,25),this.git3=G(this.git3,25),this.git4=G(this.git4,25),this.git5=G(this.git5,25),this.git6=G(this.git6,25),this.git7=G(this.git7,25)),this.gitInv0=this.gitInv0||E(this.git0),this.gitInv1=this.gitInv1||E(this.git1),this.gitInv2=this.gitInv2||E(this.git2),this.gitInv3=this.gitInv3||E(this.git3),this.gitInv4=this.gitInv4||E(this.git4),this.gitInv5=this.gitInv5||E(this.git5),this.gitInv6=this.gitInv6||E(this.git6),this.gitInv7=this.gitInv7||E(this.git7),this.branchLabelColor=this.branchLabelColor||(this.darkMode?"black":this.labelTextColor),this.gitBranchLabel0=this.gitBranchLabel0||this.branchLabelColor,this.gitBranchLabel1=this.gitBranchLabel1||this.branchLabelColor,this.gitBranchLabel2=this.gitBranchLabel2||this.branchLabelColor,this.gitBranchLabel3=this.gitBranchLabel3||this.branchLabelColor,this.gitBranchLabel4=this.gitBranchLabel4||this.branchLabelColor,this.gitBranchLabel5=this.gitBranchLabel5||this.branchLabelColor,this.gitBranchLabel6=this.gitBranchLabel6||this.branchLabelColor,this.gitBranchLabel7=this.gitBranchLabel7||this.branchLabelColor,this.tagLabelColor=this.tagLabelColor||this.primaryTextColor,this.tagLabelBackground=this.tagLabelBackground||this.primaryColor,this.tagLabelBorder=this.tagBorder||this.primaryBorderColor,this.tagLabelFontSize=this.tagLabelFontSize||"10px",this.commitLabelColor=this.commitLabelColor||this.secondaryTextColor,this.commitLabelBackground=this.commitLabelBackground||this.secondaryColor,this.commitLabelFontSize=this.commitLabelFontSize||"10px",this.attributeBackgroundColorOdd=this.attributeBackgroundColorOdd||dr,this.attributeBackgroundColorEven=this.attributeBackgroundColorEven||fr}calculate(t){if(typeof t!="object"){this.updateColors();return}const r=Object.keys(t);r.forEach(i=>{this[i]=t[i]}),this.updateColors(),r.forEach(i=>{this[i]=t[i]})}},p(Ni,"Theme"),Ni),OC=p(e=>{const t=new $C;return t.calculate(e),t},"getThemeVariables"),qi,DC=(qi=class{constructor(){this.background="#ffffff",this.primaryColor="#cccccc",this.mainBkg="#ffffff",this.noteBkgColor="#fff5ad",this.noteTextColor="#28253D",this.THEME_COLOR_LIMIT=12,this.radius=12,this.strokeWidth=2,this.primaryBorderColor=Ot("#28253D",this.darkMode),this.fontFamily='"Recursive Variable", arial, sans-serif',this.fontSize="14px",this.nodeBorder="#28253D",this.stateBorder="#28253D",this.useGradient=!1,this.gradientStart="#0042eb",this.gradientStop="#eb0042",this.dropShadow="url(#drop-shadow)",this.nodeShadow=!0,this.tertiaryColor="#ffffff",this.clusterBkg="#F9F9FB",this.clusterBorder="#BDBCCC",this.noteBorderColor="#FACC15",this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.actorBorder="#28253D",this.filterColor="#000000"}updateColors(){var o,a,n,l,c,h,u,d,f,m,y,C;this.primaryTextColor=this.primaryTextColor||(this.darkMode?"#eee":"#28253D"),this.secondaryColor=this.secondaryColor||k(this.primaryColor,{h:-120}),this.tertiaryColor=this.tertiaryColor||k(this.primaryColor,{h:180,l:5}),this.primaryBorderColor=this.primaryBorderColor||Ot(this.primaryColor,this.darkMode),this.secondaryBorderColor=this.secondaryBorderColor||Ot(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=this.tertiaryBorderColor||Ot(this.tertiaryColor,this.darkMode),this.noteBorderColor=this.noteBorderColor||Ot(this.noteBkgColor,this.darkMode),this.noteBkgColor=this.noteBkgColor||"#FEF9C3",this.noteTextColor=this.noteTextColor||"#28253D",this.secondaryTextColor=this.secondaryTextColor||E(this.secondaryColor),this.tertiaryTextColor=this.tertiaryTextColor||E(this.tertiaryColor),this.lineColor=this.lineColor||E(this.background),this.arrowheadColor=this.arrowheadColor||E(this.background),this.textColor=this.textColor||this.primaryTextColor,this.border2=this.border2||this.tertiaryBorderColor,this.nodeBkg=this.nodeBkg||this.primaryColor,this.mainBkg=this.mainBkg||this.primaryColor,this.nodeBorder=this.nodeBorder||this.primaryBorderColor,this.clusterBkg=this.clusterBkg||this.tertiaryColor,this.clusterBorder=this.clusterBorder||this.tertiaryBorderColor,this.defaultLinkColor=this.defaultLinkColor||this.lineColor,this.titleColor=this.titleColor||this.tertiaryTextColor,this.edgeLabelBackground=this.edgeLabelBackground||(this.darkMode?G(this.secondaryColor,30):this.secondaryColor),this.nodeTextColor=this.nodeTextColor||this.primaryTextColor,this.noteFontWeight=600,this.actorBorder=this.actorBorder||this.primaryBorderColor,this.actorBkg=this.actorBkg||this.mainBkg,this.actorTextColor=this.actorTextColor||this.primaryTextColor,this.actorLineColor=this.actorLineColor||this.actorBorder,this.labelBoxBkgColor=this.labelBoxBkgColor||this.actorBkg,this.signalColor=this.signalColor||this.textColor,this.signalTextColor=this.signalTextColor||this.textColor,this.labelBoxBorderColor=this.labelBoxBorderColor||this.actorBorder,this.labelTextColor=this.labelTextColor||this.actorTextColor,this.loopTextColor=this.loopTextColor||this.actorTextColor,this.activationBorderColor=this.activationBorderColor||G(this.secondaryColor,10),this.activationBkgColor=this.activationBkgColor||this.secondaryColor,this.sequenceNumberColor=this.sequenceNumberColor||E(this.lineColor),this.rectBkgColor=this.rectBkgColor||this.tertiaryColor;const t="#ECECFE",r="#E9E9F1",i=k(t,{h:180,l:5});this.sectionBkgColor=this.sectionBkgColor||i,this.altSectionBkgColor=this.altSectionBkgColor||"white",this.sectionBkgColor=this.sectionBkgColor||r,this.sectionBkgColor2=this.sectionBkgColor2||t,this.excludeBkgColor=this.excludeBkgColor||"#eeeeee",this.taskBorderColor=this.taskBorderColor||this.primaryBorderColor,this.taskBkgColor=this.taskBkgColor||t,this.activeTaskBorderColor=this.activeTaskBorderColor||t,this.activeTaskBkgColor=this.activeTaskBkgColor||U(t,23),this.gridColor=this.gridColor||"lightgrey",this.doneTaskBkgColor=this.doneTaskBkgColor||"lightgrey",this.doneTaskBorderColor=this.doneTaskBorderColor||"grey",this.critBorderColor=this.critBorderColor||"#ff8888",this.critBkgColor=this.critBkgColor||"red",this.todayLineColor=this.todayLineColor||"red",this.taskTextColor=this.taskTextColor||this.textColor,this.vertLineColor=this.vertLineColor||this.primaryBorderColor,this.taskTextOutsideColor=this.taskTextOutsideColor||this.textColor,this.taskTextLightColor=this.taskTextLightColor||this.textColor,this.taskTextColor=this.taskTextColor||this.primaryTextColor,this.taskTextDarkColor=this.taskTextDarkColor||this.textColor,this.taskTextClickableColor=this.taskTextClickableColor||"#003163",this.archEdgeColor=this.lineColor,this.archEdgeArrowColor=this.lineColor,this.personBorder=this.personBorder||this.primaryBorderColor,this.personBkg=this.personBkg||this.mainBkg,this.transitionColor=this.transitionColor||this.lineColor,this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.compositeTitleBackground="#F9F9FB",this.altBackground="#F9F9FB",this.stateEdgeLabelBackground="#FFFFFF",this.fontWeight=600,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||"#f0f0f0",this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.compositeBorder=this.compositeBorder||this.nodeBorder,this.innerEndBackground=this.nodeBorder,this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.transitionColor=this.transitionColor||this.lineColor,this.specialStateColor=this.lineColor;for(let x=0;x<this.THEME_COLOR_LIMIT;x++)this["cScale"+x]=this.mainBkg;if(this.darkMode)for(let x=0;x<this.THEME_COLOR_LIMIT;x++)this["cScale"+x]=G(this["cScale"+x],75);else for(let x=0;x<this.THEME_COLOR_LIMIT;x++)this["cScale"+x]=G(this["cScale"+x],25);for(let x=0;x<this.THEME_COLOR_LIMIT;x++)this["cScaleInv"+x]=this["cScaleInv"+x]||E(this["cScale"+x]);for(let x=0;x<this.THEME_COLOR_LIMIT;x++)this.darkMode?this["cScalePeer"+x]=this["cScalePeer"+x]||U(this["cScale"+x],10):this["cScalePeer"+x]=this["cScalePeer"+x]||G(this["cScale"+x],10);this.scaleLabelColor=this.scaleLabelColor||this.labelTextColor;for(let x=0;x<this.THEME_COLOR_LIMIT;x++)this["cScaleLabel"+x]=this["cScaleLabel"+x]||this.scaleLabelColor;const s=this.darkMode?-4:-1;for(let x=0;x<5;x++)this["surface"+x]=this["surface"+x]||k(this.mainBkg,{h:180,s:-15,l:s*(5+x*3)}),this["surfacePeer"+x]=this["surfacePeer"+x]||k(this.mainBkg,{h:180,s:-15,l:s*(8+x*3)});this.classText=this.classText||this.textColor,this.fillType0=this.fillType0||t,this.fillType1=this.fillType1||r,this.fillType2=this.fillType2||k(t,{h:64}),this.fillType3=this.fillType3||k(r,{h:64}),this.fillType4=this.fillType4||k(t,{h:-64}),this.fillType5=this.fillType5||k(r,{h:-64}),this.fillType6=this.fillType6||k(t,{h:128}),this.fillType7=this.fillType7||k(r,{h:128}),this.pie1=this.pie1||t,this.pie2=this.pie2||r,this.pie3=this.pie3||i,this.pie4=this.pie4||k(t,{l:-10}),this.pie5=this.pie5||k(r,{l:-10}),this.pie6=this.pie6||k(i,{l:-10}),this.pie7=this.pie7||k(t,{h:60,l:-10}),this.pie8=this.pie8||k(t,{h:-60,l:-10}),this.pie9=this.pie9||k(t,{h:120,l:0}),this.pie10=this.pie10||k(t,{h:60,l:-20}),this.pie11=this.pie11||k(t,{h:-60,l:-20}),this.pie12=this.pie12||k(t,{h:120,l:-10}),this.pieTitleTextSize=this.pieTitleTextSize||"25px",this.pieTitleTextColor=this.pieTitleTextColor||this.taskTextDarkColor,this.pieSectionTextSize=this.pieSectionTextSize||"17px",this.pieSectionTextColor=this.pieSectionTextColor||this.textColor,this.pieLegendTextSize=this.pieLegendTextSize||"17px",this.pieLegendTextColor=this.pieLegendTextColor||this.taskTextDarkColor,this.pieStrokeColor=this.pieStrokeColor||"black",this.pieStrokeWidth=this.pieStrokeWidth||"2px",this.pieOuterStrokeWidth=this.pieOuterStrokeWidth||"2px",this.pieOuterStrokeColor=this.pieOuterStrokeColor||"black",this.pieOpacity=this.pieOpacity||"0.7",this.vennTitleTextColor=this.vennTitleTextColor??this.titleColor,this.vennSetTextColor=this.vennSetTextColor??this.textColor,this.quadrant1Fill=this.quadrant1Fill||t,this.quadrant2Fill=this.quadrant2Fill||k(t,{r:5,g:5,b:5}),this.quadrant3Fill=this.quadrant3Fill||k(t,{r:10,g:10,b:10}),this.quadrant4Fill=this.quadrant4Fill||k(t,{r:15,g:15,b:15}),this.quadrant1TextFill=this.quadrant1TextFill||this.primaryTextColor,this.quadrant2TextFill=this.quadrant2TextFill||k(this.primaryTextColor,{r:-5,g:-5,b:-5}),this.quadrant3TextFill=this.quadrant3TextFill||k(this.primaryTextColor,{r:-10,g:-10,b:-10}),this.quadrant4TextFill=this.quadrant4TextFill||k(this.primaryTextColor,{r:-15,g:-15,b:-15}),this.quadrantPointFill=this.quadrantPointFill||Ke(this.quadrant1Fill)?U(this.quadrant1Fill):G(this.quadrant1Fill),this.quadrantPointTextFill=this.quadrantPointTextFill||this.primaryTextColor,this.quadrantXAxisTextFill=this.quadrantXAxisTextFill||this.primaryTextColor,this.quadrantYAxisTextFill=this.quadrantYAxisTextFill||this.primaryTextColor,this.quadrantInternalBorderStrokeFill=this.quadrantInternalBorderStrokeFill||this.primaryBorderColor,this.quadrantExternalBorderStrokeFill=this.quadrantExternalBorderStrokeFill||this.primaryBorderColor,this.quadrantTitleFill=this.quadrantTitleFill||this.primaryTextColor,this.xyChart={backgroundColor:((o=this.xyChart)==null?void 0:o.backgroundColor)||this.background,titleColor:((a=this.xyChart)==null?void 0:a.titleColor)||this.primaryTextColor,legendTextColor:((n=this.xyChart)==null?void 0:n.legendTextColor)||this.primaryTextColor,xAxisTitleColor:((l=this.xyChart)==null?void 0:l.xAxisTitleColor)||this.primaryTextColor,xAxisLabelColor:((c=this.xyChart)==null?void 0:c.xAxisLabelColor)||this.primaryTextColor,xAxisTickColor:((h=this.xyChart)==null?void 0:h.xAxisTickColor)||this.primaryTextColor,xAxisLineColor:((u=this.xyChart)==null?void 0:u.xAxisLineColor)||this.primaryTextColor,yAxisTitleColor:((d=this.xyChart)==null?void 0:d.yAxisTitleColor)||this.primaryTextColor,yAxisLabelColor:((f=this.xyChart)==null?void 0:f.yAxisLabelColor)||this.primaryTextColor,yAxisTickColor:((m=this.xyChart)==null?void 0:m.yAxisTickColor)||this.primaryTextColor,yAxisLineColor:((y=this.xyChart)==null?void 0:y.yAxisLineColor)||this.primaryTextColor,plotColorPalette:((C=this.xyChart)==null?void 0:C.plotColorPalette)||"#FFF4DD,#FFD8B1,#FFA07A,#ECEFF1,#D6DBDF,#C3E0A8,#FFB6A4,#FFD74D,#738FA7,#FFFFF0"},this.requirementBackground=this.requirementBackground||t,this.requirementBorderColor=this.requirementBorderColor||this.primaryBorderColor,this.requirementBorderSize=this.requirementBorderSize||"1",this.requirementTextColor=this.requirementTextColor||this.primaryTextColor,this.relationColor=this.relationColor||this.lineColor,this.relationLabelBackground=this.relationLabelBackground||(this.darkMode?G(this.secondaryColor,30):this.secondaryColor),this.relationLabelColor=this.relationLabelColor||this.actorTextColor,this.requirementEdgeLabelBackground="#FFFFFF",this.git0=this.git0||t,this.git1=this.git1||r,this.git2=this.git2||i,this.git3=this.git3||k(t,{h:-30}),this.git4=this.git4||k(t,{h:-60}),this.git5=this.git5||k(t,{h:-90}),this.git6=this.git6||k(t,{h:60}),this.git7=this.git7||k(t,{h:120}),this.darkMode?(this.git0=U(this.git0,25),this.git1=U(this.git1,25),this.git2=U(this.git2,25),this.git3=U(this.git3,25),this.git4=U(this.git4,25),this.git5=U(this.git5,25),this.git6=U(this.git6,25),this.git7=U(this.git7,25)):(this.git0=G(this.git0,25),this.git1=G(this.git1,25),this.git2=G(this.git2,25),this.git3=G(this.git3,25),this.git4=G(this.git4,25),this.git5=G(this.git5,25),this.git6=G(this.git6,25),this.git7=G(this.git7,25)),this.gitInv0=this.gitInv0||E(this.git0),this.gitInv1=this.gitInv1||E(this.git1),this.gitInv2=this.gitInv2||E(this.git2),this.gitInv3=this.gitInv3||E(this.git3),this.gitInv4=this.gitInv4||E(this.git4),this.gitInv5=this.gitInv5||E(this.git5),this.gitInv6=this.gitInv6||E(this.git6),this.gitInv7=this.gitInv7||E(this.git7),this.branchLabelColor=this.branchLabelColor||(this.darkMode?"black":this.labelTextColor),this.gitBranchLabel0=this.gitBranchLabel0||this.branchLabelColor,this.gitBranchLabel1=this.gitBranchLabel1||this.branchLabelColor,this.gitBranchLabel2=this.gitBranchLabel2||this.branchLabelColor,this.gitBranchLabel3=this.gitBranchLabel3||this.branchLabelColor,this.gitBranchLabel4=this.gitBranchLabel4||this.branchLabelColor,this.gitBranchLabel5=this.gitBranchLabel5||this.branchLabelColor,this.gitBranchLabel6=this.gitBranchLabel6||this.branchLabelColor,this.gitBranchLabel7=this.gitBranchLabel7||this.branchLabelColor,this.tagLabelColor=this.tagLabelColor||this.primaryTextColor,this.tagLabelBackground=this.tagLabelBackground||this.primaryColor,this.tagLabelBorder=this.tagBorder||this.primaryBorderColor,this.tagLabelFontSize=this.tagLabelFontSize||"10px",this.commitLabelColor=this.commitLabelColor||this.secondaryTextColor,this.commitLabelBackground=this.commitLabelBackground||this.secondaryColor,this.commitLabelFontSize=this.commitLabelFontSize||"10px",this.commitLineColor=this.commitLineColor??"#BDBCCC",this.erEdgeLabelBackground="#FFFFFF",this.attributeBackgroundColorOdd=this.attributeBackgroundColorOdd||dr,this.attributeBackgroundColorEven=this.attributeBackgroundColorEven||fr}calculate(t){if(typeof t!="object"){this.updateColors();return}const r=Object.keys(t);r.forEach(i=>{this[i]=t[i]}),this.updateColors(),r.forEach(i=>{this[i]=t[i]})}},p(qi,"Theme"),qi),IC=p(e=>{const t=new DC;return t.calculate(e),t},"getThemeVariables"),zi,PC=(zi=class{constructor(){this.background="#333",this.primaryColor="#1f2020",this.secondaryColor=U(this.primaryColor,16),this.tertiaryColor=k(this.primaryColor,{h:-160}),this.primaryBorderColor=E(this.background),this.secondaryBorderColor=Ot(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Ot(this.tertiaryColor,this.darkMode),this.primaryTextColor=E(this.primaryColor),this.secondaryTextColor=E(this.secondaryColor),this.tertiaryTextColor=E(this.tertiaryColor),this.mainBkg="#111113",this.secondBkg="calculated",this.mainContrastColor="lightgrey",this.darkTextColor=U(E("#323D47"),10),this.border1="#ccc",this.border2=qr(255,255,255,.25),this.arrowheadColor=E(this.background),this.fontFamily='"Recursive Variable", arial, sans-serif',this.fontSize="14px",this.labelBackground="#111113",this.textColor="#ccc",this.THEME_COLOR_LIMIT=12,this.radius=12,this.strokeWidth=2,this.noteBkgColor=this.noteBkgColor??"#FEF9C3",this.noteTextColor=this.noteTextColor??"#28253D",this.THEME_COLOR_LIMIT=12,this.fontFamily='"Recursive Variable", arial, sans-serif',this.fontSize="14px",this.nodeBorder="#FFFFFF",this.stateBorder="#FFFFFF",this.useGradient=!1,this.gradientStart="#0042eb",this.gradientStop="#eb0042",this.dropShadow="url(#drop-shadow)",this.nodeShadow=!0,this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.clusterBkg="#1E1A2E",this.clusterBorder="#BDBCCC",this.noteBorderColor="#FACC15",this.noteFontWeight=600,this.filterColor="#FFFFFF"}updateColors(){var r,i,s,o,a,n,l,c,h,u,d,f;if(this.primaryTextColor=this.primaryTextColor||(this.darkMode?"#eee":"#FFFFFF"),this.secondaryColor=this.secondaryColor||k(this.primaryColor,{h:-120}),this.tertiaryColor=this.tertiaryColor||k(this.primaryColor,{h:180,l:5}),this.primaryBorderColor=this.primaryBorderColor||Ot(this.primaryColor,this.darkMode),this.secondaryBorderColor=this.secondaryBorderColor||Ot(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=this.tertiaryBorderColor||Ot(this.tertiaryColor,this.darkMode),this.noteBorderColor=this.noteBorderColor||Ot(this.noteBkgColor,this.darkMode),this.noteBkgColor=this.noteBkgColor||"#fff5ad",this.noteTextColor=this.noteTextColor||"#FFFFFF",this.secondaryTextColor=this.secondaryTextColor||E(this.secondaryColor),this.tertiaryTextColor=this.tertiaryTextColor||E(this.tertiaryColor),this.lineColor=this.lineColor||E(this.background),this.arrowheadColor=this.arrowheadColor||E(this.background),this.textColor=this.textColor||this.primaryTextColor,this.border2=this.border2||this.tertiaryBorderColor,this.nodeBkg=this.nodeBkg||this.primaryColor,this.mainBkg=this.mainBkg||this.primaryColor,this.nodeBorder=this.nodeBorder||this.border1,this.clusterBkg=this.clusterBkg||this.tertiaryColor,this.clusterBorder=this.clusterBorder||this.tertiaryBorderColor,this.defaultLinkColor=this.defaultLinkColor||this.lineColor,this.titleColor=this.titleColor||this.tertiaryTextColor,this.edgeLabelBackground=this.edgeLabelBackground||(this.darkMode?G(this.secondaryColor,30):this.secondaryColor),this.nodeTextColor=this.nodeTextColor||this.primaryTextColor,this.actorBorder="#FFFFFF",this.signalColor="#FFFFFF",this.labelBoxBorderColor="#BDBCCC",this.actorBorder=this.actorBorder||this.primaryBorderColor,this.actorBkg=this.actorBkg||this.mainBkg,this.actorTextColor=this.actorTextColor||this.primaryTextColor,this.actorLineColor=this.actorLineColor||this.actorBorder,this.labelBoxBkgColor=this.labelBoxBkgColor||this.actorBkg,this.signalColor=this.signalColor||this.textColor,this.signalTextColor=this.signalTextColor||this.textColor,this.labelBoxBorderColor=this.labelBoxBorderColor||this.actorBorder,this.labelTextColor=this.labelTextColor||this.actorTextColor,this.loopTextColor=this.loopTextColor||this.actorTextColor,this.activationBorderColor=this.activationBorderColor||G(this.secondaryColor,10),this.activationBkgColor=this.activationBkgColor||this.secondaryColor,this.sequenceNumberColor=this.sequenceNumberColor||E(this.lineColor),this.rectBkgColor=this.rectBkgColor||this.tertiaryColor,this.sectionBkgColor=this.sectionBkgColor||this.tertiaryColor,this.altSectionBkgColor=this.altSectionBkgColor||"white",this.sectionBkgColor=this.sectionBkgColor||this.secondaryColor,this.sectionBkgColor2=this.sectionBkgColor2||this.primaryColor,this.excludeBkgColor=this.excludeBkgColor||"#eeeeee",this.taskBorderColor=this.taskBorderColor||this.primaryBorderColor,this.taskBkgColor=this.taskBkgColor||this.primaryColor,this.activeTaskBorderColor=this.activeTaskBorderColor||this.primaryColor,this.activeTaskBkgColor=this.activeTaskBkgColor||U(this.primaryColor,23),this.gridColor=this.gridColor||"lightgrey",this.doneTaskBkgColor=this.doneTaskBkgColor||"lightgrey",this.doneTaskBorderColor=this.doneTaskBorderColor||"grey",this.critBorderColor=this.critBorderColor||"#ff8888",this.critBkgColor=this.critBkgColor||"red",this.todayLineColor=this.todayLineColor||"red",this.taskTextColor=this.taskTextColor||this.textColor,this.taskTextOutsideColor=this.taskTextOutsideColor||this.textColor,this.taskTextLightColor=this.taskTextLightColor||this.textColor,this.taskTextColor=this.taskTextColor||this.primaryTextColor,this.taskTextDarkColor=this.taskTextDarkColor||this.textColor,this.taskTextClickableColor=this.taskTextClickableColor||"#003163",this.archEdgeColor=this.lineColor,this.archEdgeArrowColor=this.lineColor,this.personBorder=this.personBorder||this.primaryBorderColor,this.personBkg=this.personBkg||this.mainBkg,this.transitionColor=this.transitionColor||this.lineColor,this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.vertLineColor=this.vertLineColor||this.primaryBorderColor,this.compositeBackground="#16141F",this.altBackground="#16141F",this.compositeTitleBackground="#16141F",this.stateEdgeLabelBackground="#16141F",this.fontWeight=600,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||"#f0f0f0",this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.compositeBorder=this.compositeBorder||this.nodeBorder,this.innerEndBackground=this.nodeBorder,this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.transitionColor=this.transitionColor||this.lineColor,this.specialStateColor=this.lineColor,this.cScale0=this.cScale0||this.primaryColor,this.cScale1=this.cScale1||this.secondaryColor,this.cScale2=this.cScale2||this.tertiaryColor,this.cScale3=this.cScale3||k(this.primaryColor,{h:30}),this.cScale4=this.cScale4||k(this.primaryColor,{h:60}),this.cScale5=this.cScale5||k(this.primaryColor,{h:90}),this.cScale6=this.cScale6||k(this.primaryColor,{h:120}),this.cScale7=this.cScale7||k(this.primaryColor,{h:150}),this.cScale8=this.cScale8||k(this.primaryColor,{h:210,l:150}),this.cScale9=this.cScale9||k(this.primaryColor,{h:270}),this.cScale10=this.cScale10||k(this.primaryColor,{h:300}),this.cScale11=this.cScale11||k(this.primaryColor,{h:330}),this.darkMode)for(let m=0;m<this.THEME_COLOR_LIMIT;m++)this["cScale"+m]=G(this["cScale"+m],75);else for(let m=0;m<this.THEME_COLOR_LIMIT;m++)this["cScale"+m]=G(this["cScale"+m],25);for(let m=0;m<this.THEME_COLOR_LIMIT;m++)this["cScaleInv"+m]=this["cScaleInv"+m]||E(this["cScale"+m]);for(let m=0;m<this.THEME_COLOR_LIMIT;m++)this.darkMode?this["cScalePeer"+m]=this["cScalePeer"+m]||U(this["cScale"+m],10):this["cScalePeer"+m]=this["cScalePeer"+m]||G(this["cScale"+m],10);this.scaleLabelColor=this.scaleLabelColor||this.labelTextColor;for(let m=0;m<this.THEME_COLOR_LIMIT;m++)this["cScaleLabel"+m]=this["cScaleLabel"+m]||this.scaleLabelColor;const t=this.darkMode?-4:-1;for(let m=0;m<5;m++)this["surface"+m]=this["surface"+m]||k(this.mainBkg,{h:180,s:-15,l:t*(5+m*3)}),this["surfacePeer"+m]=this["surfacePeer"+m]||k(this.mainBkg,{h:180,s:-15,l:t*(8+m*3)});this.classText=this.classText||this.textColor,this.fillType0=this.fillType0||this.primaryColor,this.fillType1=this.fillType1||this.secondaryColor,this.fillType2=this.fillType2||k(this.primaryColor,{h:64}),this.fillType3=this.fillType3||k(this.secondaryColor,{h:64}),this.fillType4=this.fillType4||k(this.primaryColor,{h:-64}),this.fillType5=this.fillType5||k(this.secondaryColor,{h:-64}),this.fillType6=this.fillType6||k(this.primaryColor,{h:128}),this.fillType7=this.fillType7||k(this.secondaryColor,{h:128}),this.pie1=this.pie1||this.primaryColor,this.pie2=this.pie2||this.secondaryColor,this.pie3=this.pie3||this.tertiaryColor,this.pie4=this.pie4||k(this.primaryColor,{l:-10}),this.pie5=this.pie5||k(this.secondaryColor,{l:-10}),this.pie6=this.pie6||k(this.tertiaryColor,{l:-10}),this.pie7=this.pie7||k(this.primaryColor,{h:60,l:-10}),this.pie8=this.pie8||k(this.primaryColor,{h:-60,l:-10}),this.pie9=this.pie9||k(this.primaryColor,{h:120,l:0}),this.pie10=this.pie10||k(this.primaryColor,{h:60,l:-20}),this.pie11=this.pie11||k(this.primaryColor,{h:-60,l:-20}),this.pie12=this.pie12||k(this.primaryColor,{h:120,l:-10}),this.pieTitleTextSize=this.pieTitleTextSize||"25px",this.pieTitleTextColor=this.pieTitleTextColor||this.taskTextDarkColor,this.pieSectionTextSize=this.pieSectionTextSize||"17px",this.pieSectionTextColor=this.pieSectionTextColor||this.textColor,this.pieLegendTextSize=this.pieLegendTextSize||"17px",this.pieLegendTextColor=this.pieLegendTextColor||this.taskTextDarkColor,this.pieStrokeColor=this.pieStrokeColor||"black",this.pieStrokeWidth=this.pieStrokeWidth||"2px",this.pieOuterStrokeWidth=this.pieOuterStrokeWidth||"2px",this.pieOuterStrokeColor=this.pieOuterStrokeColor||"black",this.pieOpacity=this.pieOpacity||"0.7",this.vennTitleTextColor=this.vennTitleTextColor??this.titleColor,this.vennSetTextColor=this.vennSetTextColor??this.textColor,this.quadrant1Fill=this.quadrant1Fill||this.primaryColor,this.quadrant2Fill=this.quadrant2Fill||k(this.primaryColor,{r:5,g:5,b:5}),this.quadrant3Fill=this.quadrant3Fill||k(this.primaryColor,{r:10,g:10,b:10}),this.quadrant4Fill=this.quadrant4Fill||k(this.primaryColor,{r:15,g:15,b:15}),this.quadrant1TextFill=this.quadrant1TextFill||this.primaryTextColor,this.quadrant2TextFill=this.quadrant2TextFill||k(this.primaryTextColor,{r:-5,g:-5,b:-5}),this.quadrant3TextFill=this.quadrant3TextFill||k(this.primaryTextColor,{r:-10,g:-10,b:-10}),this.quadrant4TextFill=this.quadrant4TextFill||k(this.primaryTextColor,{r:-15,g:-15,b:-15}),this.quadrantPointFill=this.quadrantPointFill||Ke(this.quadrant1Fill)?U(this.quadrant1Fill):G(this.quadrant1Fill),this.quadrantPointTextFill=this.quadrantPointTextFill||this.primaryTextColor,this.quadrantXAxisTextFill=this.quadrantXAxisTextFill||this.primaryTextColor,this.quadrantYAxisTextFill=this.quadrantYAxisTextFill||this.primaryTextColor,this.quadrantInternalBorderStrokeFill=this.quadrantInternalBorderStrokeFill||this.primaryBorderColor,this.quadrantExternalBorderStrokeFill=this.quadrantExternalBorderStrokeFill||this.primaryBorderColor,this.quadrantTitleFill=this.quadrantTitleFill||this.primaryTextColor,this.xyChart={backgroundColor:((r=this.xyChart)==null?void 0:r.backgroundColor)||this.background,titleColor:((i=this.xyChart)==null?void 0:i.titleColor)||this.primaryTextColor,legendTextColor:((s=this.xyChart)==null?void 0:s.legendTextColor)||this.primaryTextColor,xAxisTitleColor:((o=this.xyChart)==null?void 0:o.xAxisTitleColor)||this.primaryTextColor,xAxisLabelColor:((a=this.xyChart)==null?void 0:a.xAxisLabelColor)||this.primaryTextColor,xAxisTickColor:((n=this.xyChart)==null?void 0:n.xAxisTickColor)||this.primaryTextColor,xAxisLineColor:((l=this.xyChart)==null?void 0:l.xAxisLineColor)||this.primaryTextColor,yAxisTitleColor:((c=this.xyChart)==null?void 0:c.yAxisTitleColor)||this.primaryTextColor,yAxisLabelColor:((h=this.xyChart)==null?void 0:h.yAxisLabelColor)||this.primaryTextColor,yAxisTickColor:((u=this.xyChart)==null?void 0:u.yAxisTickColor)||this.primaryTextColor,yAxisLineColor:((d=this.xyChart)==null?void 0:d.yAxisLineColor)||this.primaryTextColor,plotColorPalette:((f=this.xyChart)==null?void 0:f.plotColorPalette)||"#FFF4DD,#FFD8B1,#FFA07A,#ECEFF1,#D6DBDF,#C3E0A8,#FFB6A4,#FFD74D,#738FA7,#FFFFF0"},this.requirementBackground=this.requirementBackground||this.primaryColor,this.requirementBorderColor=this.requirementBorderColor||this.primaryBorderColor,this.requirementBorderSize=this.requirementBorderSize||"1",this.requirementTextColor=this.requirementTextColor||this.primaryTextColor,this.relationColor=this.relationColor||this.lineColor,this.relationLabelBackground=this.relationLabelBackground||(this.darkMode?G(this.secondaryColor,30):this.secondaryColor),this.relationLabelColor=this.relationLabelColor||this.actorTextColor,this.requirementEdgeLabelBackground="#16141F",this.git0=this.git0||this.primaryColor,this.git1=this.git1||this.secondaryColor,this.git2=this.git2||this.tertiaryColor,this.git3=this.git3||k(this.primaryColor,{h:-30}),this.git4=this.git4||k(this.primaryColor,{h:-60}),this.git5=this.git5||k(this.primaryColor,{h:-90}),this.git6=this.git6||k(this.primaryColor,{h:60}),this.git7=this.git7||k(this.primaryColor,{h:120}),this.darkMode?(this.git0=U(this.git0,25),this.git1=U(this.git1,25),this.git2=U(this.git2,25),this.git3=U(this.git3,25),this.git4=U(this.git4,25),this.git5=U(this.git5,25),this.git6=U(this.git6,25),this.git7=U(this.git7,25)):(this.git0=G(this.git0,25),this.git1=G(this.git1,25),this.git2=G(this.git2,25),this.git3=G(this.git3,25),this.git4=G(this.git4,25),this.git5=G(this.git5,25),this.git6=G(this.git6,25),this.git7=G(this.git7,25)),this.gitInv0=this.gitInv0||E(this.git0),this.gitInv1=this.gitInv1||E(this.git1),this.gitInv2=this.gitInv2||E(this.git2),this.gitInv3=this.gitInv3||E(this.git3),this.gitInv4=this.gitInv4||E(this.git4),this.gitInv5=this.gitInv5||E(this.git5),this.gitInv6=this.gitInv6||E(this.git6),this.gitInv7=this.gitInv7||E(this.git7),this.branchLabelColor=this.branchLabelColor||(this.darkMode?"black":this.labelTextColor),this.gitBranchLabel0=this.gitBranchLabel0||this.branchLabelColor,this.gitBranchLabel1=this.gitBranchLabel1||this.branchLabelColor,this.gitBranchLabel2=this.gitBranchLabel2||this.branchLabelColor,this.gitBranchLabel3=this.gitBranchLabel3||this.branchLabelColor,this.gitBranchLabel4=this.gitBranchLabel4||this.branchLabelColor,this.gitBranchLabel5=this.gitBranchLabel5||this.branchLabelColor,this.gitBranchLabel6=this.gitBranchLabel6||this.branchLabelColor,this.gitBranchLabel7=this.gitBranchLabel7||this.branchLabelColor,this.tagLabelColor=this.tagLabelColor||this.primaryTextColor,this.tagLabelBackground=this.tagLabelBackground||this.primaryColor,this.tagLabelBorder=this.tagBorder||this.primaryBorderColor,this.tagLabelFontSize=this.tagLabelFontSize||"10px",this.commitLabelColor=this.commitLabelColor||this.secondaryTextColor,this.commitLabelBackground=this.commitLabelBackground||this.secondaryColor,this.commitLabelFontSize=this.commitLabelFontSize||"10px",this.commitLineColor=this.commitLineColor??"#BDBCCC",this.erEdgeLabelBackground="#16141F",this.attributeBackgroundColorOdd=this.attributeBackgroundColorOdd||dr,this.attributeBackgroundColorEven=this.attributeBackgroundColorEven||fr}calculate(t){if(typeof t!="object"){this.updateColors();return}const r=Object.keys(t);r.forEach(i=>{this[i]=t[i]}),this.updateColors(),r.forEach(i=>{this[i]=t[i]})}},p(zi,"Theme"),zi),RC=p(e=>{const t=new PC;return t.calculate(e),t},"getThemeVariables"),Wi,NC=(Wi=class{constructor(){this.background="#ffffff",this.primaryColor="#cccccc",this.mainBkg="#ffffff",this.noteBkgColor="#fff5ad",this.noteTextColor="#28253D",this.THEME_COLOR_LIMIT=12,this.radius=12,this.strokeWidth=2,this.primaryBorderColor=Ot(this.primaryColor,this.darkMode),this.fontFamily='"Recursive Variable", arial, sans-serif',this.fontSize="14px",this.nodeBorder="#28253D",this.stateBorder="#28253D",this.useGradient=!1,this.gradientStart="#0042eb",this.gradientStop="#eb0042",this.dropShadow="url(#drop-shadow)",this.nodeShadow=!0,this.tertiaryColor="#ffffff",this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.actorBorder="#28253D",this.noteBorderColor="#FACC15",this.noteFontWeight=600,this.borderColorArray=["#E879F9","#2DD4BF","#FB923C","#22D3EE","#4ADE80","#A78BFA","#F87171","#FACC15","#818CF8","#A3E635 ","#38BDF8","#FB7185"],this.bkgColorArray=["#FDF4FF","#F0FDFA","#FFF7ED","#ECFEFF","#F0FDF4","#F5F3FF","#FEF2F2","#FEFCE8","#EEF2FF","#F7FEE7","#F0F9FF","#FFF1F2"],this.filterColor="#000000"}updateColors(){var o,a,n,l,c,h,u,d,f,m,y,C;this.primaryTextColor=this.primaryTextColor||(this.darkMode?"#eee":"#28253D"),this.secondaryColor=this.secondaryColor||k(this.primaryColor,{h:-120}),this.tertiaryColor=this.tertiaryColor||k(this.primaryColor,{h:180,l:5}),this.primaryBorderColor=this.primaryBorderColor||Ot(this.primaryColor,this.darkMode),this.secondaryBorderColor=this.secondaryBorderColor||Ot(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=this.tertiaryBorderColor||Ot(this.tertiaryColor,this.darkMode),this.noteBorderColor=this.noteBorderColor||Ot(this.noteBkgColor,this.darkMode),this.noteBkgColor=this.noteBkgColor||"#fff5ad",this.noteTextColor=this.noteTextColor||"#28253D",this.secondaryTextColor=this.secondaryTextColor||E(this.secondaryColor),this.tertiaryTextColor=this.tertiaryTextColor||E(this.tertiaryColor),this.lineColor=this.lineColor||E(this.background),this.arrowheadColor=this.arrowheadColor||E(this.background),this.textColor=this.textColor||this.primaryTextColor,this.border2=this.border2||this.tertiaryBorderColor,this.nodeBkg=this.nodeBkg||this.primaryColor,this.mainBkg=this.mainBkg||this.primaryColor,this.nodeBorder=this.nodeBorder||this.primaryBorderColor,this.clusterBkg=this.clusterBkg||this.tertiaryColor,this.clusterBorder=this.clusterBorder||this.tertiaryBorderColor,this.defaultLinkColor=this.defaultLinkColor||this.lineColor,this.titleColor=this.titleColor||this.tertiaryTextColor,this.edgeLabelBackground=this.edgeLabelBackground||(this.darkMode?G(this.secondaryColor,30):this.secondaryColor),this.nodeTextColor=this.nodeTextColor||this.primaryTextColor,this.actorBorder=this.actorBorder||this.primaryBorderColor,this.actorBkg=this.actorBkg||this.mainBkg,this.actorTextColor=this.actorTextColor||this.primaryTextColor,this.actorLineColor=this.actorLineColor||this.actorBorder,this.labelBoxBkgColor=this.labelBoxBkgColor||this.actorBkg,this.signalColor=this.signalColor||this.textColor,this.signalTextColor=this.signalTextColor||this.textColor,this.labelBoxBorderColor=this.labelBoxBorderColor||this.actorBorder,this.labelTextColor=this.labelTextColor||this.actorTextColor,this.loopTextColor=this.loopTextColor||this.actorTextColor,this.activationBorderColor=this.activationBorderColor||G(this.secondaryColor,10),this.activationBkgColor=this.activationBkgColor||this.secondaryColor,this.sequenceNumberColor=this.sequenceNumberColor||E(this.lineColor),this.rectBkgColor=this.rectBkgColor||this.tertiaryColor;const t="#ECECFE",r="#E9E9F1",i=k(t,{h:180,l:5});this.sectionBkgColor=this.sectionBkgColor||i,this.altSectionBkgColor=this.altSectionBkgColor||"white",this.sectionBkgColor=this.sectionBkgColor||r,this.sectionBkgColor2=this.sectionBkgColor2||t,this.excludeBkgColor=this.excludeBkgColor||"#eeeeee",this.taskBorderColor=this.taskBorderColor||this.primaryBorderColor,this.taskBkgColor=this.taskBkgColor||t,this.activeTaskBorderColor=this.activeTaskBorderColor||t,this.activeTaskBkgColor=this.activeTaskBkgColor||U(t,23),this.gridColor=this.gridColor||"lightgrey",this.doneTaskBkgColor=this.doneTaskBkgColor||"lightgrey",this.doneTaskBorderColor=this.doneTaskBorderColor||"grey",this.critBorderColor=this.critBorderColor||"#ff8888",this.critBkgColor=this.critBkgColor||"red",this.todayLineColor=this.todayLineColor||"red",this.taskTextColor=this.taskTextColor||this.textColor,this.vertLineColor=this.vertLineColor||this.primaryBorderColor,this.taskTextOutsideColor=this.taskTextOutsideColor||this.textColor,this.taskTextLightColor=this.taskTextLightColor||this.textColor,this.taskTextColor=this.taskTextColor||this.primaryTextColor,this.taskTextDarkColor=this.taskTextDarkColor||this.textColor,this.taskTextClickableColor=this.taskTextClickableColor||"#003163",this.archEdgeColor=this.lineColor,this.archEdgeArrowColor=this.lineColor,this.personBorder=this.personBorder||this.primaryBorderColor,this.personBkg=this.personBkg||this.mainBkg,this.transitionColor=this.transitionColor||this.lineColor,this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||"#f0f0f0",this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.compositeBorder=this.compositeBorder||this.nodeBorder,this.innerEndBackground=this.nodeBorder,this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.transitionColor=this.transitionColor||this.lineColor,this.specialStateColor=this.lineColor,this.cScale0=this.cScale0||"#f4a8ff",this.cScale1=this.cScale1||"#46ecd5",this.cScale2=this.cScale2||"#ffb86a",this.cScale3=this.cScale3||"#dab2ff",this.cScale4=this.cScale4||"#7bf1a8",this.cScale5=this.cScale5||"#c4b4ff",this.cScale6=this.cScale6||"#ffa2a2",this.cScale7=this.cScale7||"#ffdf20",this.cScale8=this.cScale8||"#a3b3ff",this.cScale9=this.cScale9||"#bbf451",this.cScale10=this.cScale10||"#74d4ff",this.cScale11=this.cScale11||"#ffa1ad";for(let x=0;x<this.THEME_COLOR_LIMIT;x++)this["cScaleInv"+x]=this["cScaleInv"+x]||E(this["cScale"+x]);for(let x=0;x<this.THEME_COLOR_LIMIT;x++)this.darkMode?this["cScalePeer"+x]=this["cScalePeer"+x]||U(this["cScale"+x],10):this["cScalePeer"+x]=this["cScalePeer"+x]||G(this["cScale"+x],10);this.scaleLabelColor=this.scaleLabelColor||this.labelTextColor;for(let x=0;x<this.THEME_COLOR_LIMIT;x++)this["cScaleLabel"+x]=this["cScaleLabel"+x]||this.scaleLabelColor;const s=this.darkMode?-4:-1;for(let x=0;x<5;x++)this["surface"+x]=this["surface"+x]||k(this.mainBkg,{h:180,s:-15,l:s*(5+x*3)}),this["surfacePeer"+x]=this["surfacePeer"+x]||k(this.mainBkg,{h:180,s:-15,l:s*(8+x*3)});this.classText=this.classText||this.textColor,this.fillType0=this.fillType0||t,this.fillType1=this.fillType1||r,this.fillType2=this.fillType2||k(t,{h:64}),this.fillType3=this.fillType3||k(r,{h:64}),this.fillType4=this.fillType4||k(t,{h:-64}),this.fillType5=this.fillType5||k(r,{h:-64}),this.fillType6=this.fillType6||k(t,{h:128}),this.fillType7=this.fillType7||k(r,{h:128}),this.pie1=this.pie1||t,this.pie2=this.pie2||r,this.pie3=this.pie3||i,this.pie4=this.pie4||k(t,{l:-10}),this.pie5=this.pie5||k(r,{l:-10}),this.pie6=this.pie6||k(i,{l:-10}),this.pie7=this.pie7||k(t,{h:60,l:-10}),this.pie8=this.pie8||k(t,{h:-60,l:-10}),this.pie9=this.pie9||k(t,{h:120,l:0}),this.pie10=this.pie10||k(t,{h:60,l:-20}),this.pie11=this.pie11||k(t,{h:-60,l:-20}),this.pie12=this.pie12||k(t,{h:120,l:-10}),this.pieTitleTextSize=this.pieTitleTextSize||"25px",this.pieTitleTextColor=this.pieTitleTextColor||this.taskTextDarkColor,this.pieSectionTextSize=this.pieSectionTextSize||"17px",this.pieSectionTextColor=this.pieSectionTextColor||this.textColor,this.pieLegendTextSize=this.pieLegendTextSize||"17px",this.pieLegendTextColor=this.pieLegendTextColor||this.taskTextDarkColor,this.pieStrokeColor=this.pieStrokeColor||"black",this.pieStrokeWidth=this.pieStrokeWidth||"2px",this.pieOuterStrokeWidth=this.pieOuterStrokeWidth||"2px",this.pieOuterStrokeColor=this.pieOuterStrokeColor||"black",this.pieOpacity=this.pieOpacity||"0.7",this.vennTitleTextColor=this.vennTitleTextColor??this.titleColor,this.vennSetTextColor=this.vennSetTextColor??this.textColor,this.quadrant1Fill=this.quadrant1Fill||t,this.quadrant2Fill=this.quadrant2Fill||k(t,{r:5,g:5,b:5}),this.quadrant3Fill=this.quadrant3Fill||k(t,{r:10,g:10,b:10}),this.quadrant4Fill=this.quadrant4Fill||k(t,{r:15,g:15,b:15}),this.quadrant1TextFill=this.quadrant1TextFill||this.primaryTextColor,this.quadrant2TextFill=this.quadrant2TextFill||k(this.primaryTextColor,{r:-5,g:-5,b:-5}),this.quadrant3TextFill=this.quadrant3TextFill||k(this.primaryTextColor,{r:-10,g:-10,b:-10}),this.quadrant4TextFill=this.quadrant4TextFill||k(this.primaryTextColor,{r:-15,g:-15,b:-15}),this.quadrantPointFill=this.quadrantPointFill||Ke(this.quadrant1Fill)?U(this.quadrant1Fill):G(this.quadrant1Fill),this.quadrantPointTextFill=this.quadrantPointTextFill||this.primaryTextColor,this.quadrantXAxisTextFill=this.quadrantXAxisTextFill||this.primaryTextColor,this.quadrantYAxisTextFill=this.quadrantYAxisTextFill||this.primaryTextColor,this.quadrantInternalBorderStrokeFill=this.quadrantInternalBorderStrokeFill||this.primaryBorderColor,this.quadrantExternalBorderStrokeFill=this.quadrantExternalBorderStrokeFill||this.primaryBorderColor,this.quadrantTitleFill=this.quadrantTitleFill||this.primaryTextColor,this.xyChart={backgroundColor:((o=this.xyChart)==null?void 0:o.backgroundColor)||this.background,titleColor:((a=this.xyChart)==null?void 0:a.titleColor)||this.primaryTextColor,legendTextColor:((n=this.xyChart)==null?void 0:n.legendTextColor)||this.primaryTextColor,xAxisTitleColor:((l=this.xyChart)==null?void 0:l.xAxisTitleColor)||this.primaryTextColor,xAxisLabelColor:((c=this.xyChart)==null?void 0:c.xAxisLabelColor)||this.primaryTextColor,xAxisTickColor:((h=this.xyChart)==null?void 0:h.xAxisTickColor)||this.primaryTextColor,xAxisLineColor:((u=this.xyChart)==null?void 0:u.xAxisLineColor)||this.primaryTextColor,yAxisTitleColor:((d=this.xyChart)==null?void 0:d.yAxisTitleColor)||this.primaryTextColor,yAxisLabelColor:((f=this.xyChart)==null?void 0:f.yAxisLabelColor)||this.primaryTextColor,yAxisTickColor:((m=this.xyChart)==null?void 0:m.yAxisTickColor)||this.primaryTextColor,yAxisLineColor:((y=this.xyChart)==null?void 0:y.yAxisLineColor)||this.primaryTextColor,plotColorPalette:((C=this.xyChart)==null?void 0:C.plotColorPalette)||"#FFF4DD,#FFD8B1,#FFA07A,#ECEFF1,#D6DBDF,#C3E0A8,#FFB6A4,#FFD74D,#738FA7,#FFFFF0"},this.requirementBackground=this.requirementBackground||t,this.requirementBorderColor=this.requirementBorderColor||this.primaryBorderColor,this.requirementBorderSize=this.requirementBorderSize||"1",this.requirementTextColor=this.requirementTextColor||this.primaryTextColor,this.relationColor=this.relationColor||this.lineColor,this.relationLabelBackground=this.relationLabelBackground||(this.darkMode?G(this.secondaryColor,30):this.secondaryColor),this.relationLabelColor=this.relationLabelColor||this.actorTextColor,this.git0=this.git0||t,this.git1=this.git1||r,this.git2=this.git2||i,this.git3=this.git3||k(t,{h:-30}),this.git4=this.git4||k(t,{h:-60}),this.git5=this.git5||k(t,{h:-90}),this.git6=this.git6||k(t,{h:60}),this.git7=this.git7||k(t,{h:120}),this.darkMode?(this.git0=U(this.git0,25),this.git1=U(this.git1,25),this.git2=U(this.git2,25),this.git3=U(this.git3,25),this.git4=U(this.git4,25),this.git5=U(this.git5,25),this.git6=U(this.git6,25),this.git7=U(this.git7,25)):(this.git0=G(this.git0,25),this.git1=G(this.git1,25),this.git2=G(this.git2,25),this.git3=G(this.git3,25),this.git4=G(this.git4,25),this.git5=G(this.git5,25),this.git6=G(this.git6,25),this.git7=G(this.git7,25)),this.gitInv0=this.gitInv0||E(this.git0),this.gitInv1=this.gitInv1||E(this.git1),this.gitInv2=this.gitInv2||E(this.git2),this.gitInv3=this.gitInv3||E(this.git3),this.gitInv4=this.gitInv4||E(this.git4),this.gitInv5=this.gitInv5||E(this.git5),this.gitInv6=this.gitInv6||E(this.git6),this.gitInv7=this.gitInv7||E(this.git7),this.branchLabelColor=this.branchLabelColor||(this.darkMode?"black":this.labelTextColor),this.gitBranchLabel0=this.gitBranchLabel0||this.branchLabelColor,this.gitBranchLabel1=this.gitBranchLabel1||this.branchLabelColor,this.gitBranchLabel2=this.gitBranchLabel2||this.branchLabelColor,this.gitBranchLabel3=this.gitBranchLabel3||this.branchLabelColor,this.gitBranchLabel4=this.gitBranchLabel4||this.branchLabelColor,this.gitBranchLabel5=this.gitBranchLabel5||this.branchLabelColor,this.gitBranchLabel6=this.gitBranchLabel6||this.branchLabelColor,this.gitBranchLabel7=this.gitBranchLabel7||this.branchLabelColor,this.tagLabelColor=this.tagLabelColor||this.primaryTextColor,this.tagLabelBackground=this.tagLabelBackground||this.primaryColor,this.tagLabelBorder=this.tagBorder||this.primaryBorderColor,this.tagLabelFontSize=this.tagLabelFontSize||"10px",this.commitLabelColor=this.commitLabelColor||this.secondaryTextColor,this.commitLabelBackground=this.commitLabelBackground||this.secondaryColor,this.commitLineColor=this.commitLineColor??"#BDBCCC",this.commitLabelFontSize=this.commitLabelFontSize||"10px",this.fontWeight=600,this.erEdgeLabelBackground="#FFFFFF",this.attributeBackgroundColorOdd=this.attributeBackgroundColorOdd||dr,this.attributeBackgroundColorEven=this.attributeBackgroundColorEven||fr}calculate(t){if(typeof t!="object"){this.updateColors();return}const r=Object.keys(t);r.forEach(i=>{this[i]=t[i]}),this.updateColors(),r.forEach(i=>{this[i]=t[i]})}},p(Wi,"Theme"),Wi),qC=p(e=>{const t=new NC;return t.calculate(e),t},"getThemeVariables"),Hi,zC=(Hi=class{constructor(){this.background="#333",this.primaryColor="#1f2020",this.secondaryColor=U(this.primaryColor,16),this.tertiaryColor=k(this.primaryColor,{h:-160}),this.primaryBorderColor=E(this.background),this.secondaryBorderColor=Ot(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Ot(this.tertiaryColor,this.darkMode),this.primaryTextColor=E(this.primaryColor),this.secondaryTextColor=E(this.secondaryColor),this.tertiaryTextColor=E(this.tertiaryColor),this.mainBkg="#111113",this.secondBkg="calculated",this.mainContrastColor="lightgrey",this.darkTextColor=U(E("#323D47"),10),this.border1="#ccc",this.border2=qr(255,255,255,.25),this.arrowheadColor=E(this.background),this.fontFamily='"Recursive Variable", arial, sans-serif',this.fontSize="14px",this.labelBackground="#111113",this.textColor="#ccc",this.THEME_COLOR_LIMIT=12,this.radius=12,this.strokeWidth=2,this.noteBkgColor=this.noteBkgColor??"#FEF9C3",this.noteTextColor=this.noteTextColor??"#28253D",this.THEME_COLOR_LIMIT=12,this.fontFamily='"Recursive Variable", arial, sans-serif',this.fontSize="14px",this.nodeBorder="#FFFFFF",this.stateBorder="#FFFFFF",this.useGradient=!1,this.gradientStart="#0042eb",this.gradientStop="#eb0042",this.dropShadow="url(#drop-shadow)",this.nodeShadow=!0,this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.clusterBkg="#1E1A2E",this.clusterBorder="#BDBCCC",this.noteBorderColor="#FACC15",this.noteFontWeight=600,this.borderColorArray=["#E879F9","#2DD4BF","#FB923C","#22D3EE","#4ADE80","#A78BFA","#F87171","#FACC15","#818CF8","#A3E635 ","#38BDF8","#FB7185"],this.bkgColorArray=[],this.filterColor="#FFFFFF"}updateColors(){var r,i,s,o,a,n,l,c,h,u,d,f;this.primaryTextColor=this.primaryTextColor||(this.darkMode?"#eee":"#FFFFFF"),this.secondaryColor=this.secondaryColor||k(this.primaryColor,{h:-120}),this.tertiaryColor=this.tertiaryColor||k(this.primaryColor,{h:180,l:5}),this.primaryBorderColor=this.primaryBorderColor||Ot(this.primaryColor,this.darkMode),this.secondaryBorderColor=this.secondaryBorderColor||Ot(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=this.tertiaryBorderColor||Ot(this.tertiaryColor,this.darkMode),this.noteBorderColor=this.noteBorderColor||Ot(this.noteBkgColor,this.darkMode),this.noteBkgColor=this.noteBkgColor||"#fff5ad",this.noteTextColor=this.noteTextColor||"#FFFFFF",this.secondaryTextColor=this.secondaryTextColor||E(this.secondaryColor),this.tertiaryTextColor=this.tertiaryTextColor||E(this.tertiaryColor),this.lineColor=this.lineColor||E(this.background),this.arrowheadColor=this.arrowheadColor||E(this.background),this.textColor=this.textColor||this.primaryTextColor,this.border2=this.border2||this.tertiaryBorderColor,this.nodeBkg=this.nodeBkg||this.primaryColor,this.mainBkg=this.mainBkg||this.primaryColor,this.nodeBorder=this.nodeBorder||this.border1,this.clusterBkg=this.clusterBkg||this.tertiaryColor,this.clusterBorder=this.clusterBorder||this.tertiaryBorderColor,this.defaultLinkColor=this.defaultLinkColor||this.lineColor,this.titleColor=this.titleColor||this.tertiaryTextColor,this.edgeLabelBackground=this.edgeLabelBackground||(this.darkMode?G(this.secondaryColor,30):this.secondaryColor),this.nodeTextColor=this.nodeTextColor||this.primaryTextColor,this.actorBorder="#FFFFFF",this.signalColor="#FFFFFF",this.labelBoxBorderColor="#BDBCCC",this.actorBorder=this.actorBorder||this.primaryBorderColor,this.actorBkg=this.actorBkg||this.mainBkg,this.actorTextColor=this.actorTextColor||this.primaryTextColor,this.actorLineColor=this.actorLineColor||this.actorBorder,this.labelBoxBkgColor=this.labelBoxBkgColor||this.actorBkg,this.signalColor=this.signalColor||this.textColor,this.signalTextColor=this.signalTextColor||this.textColor,this.labelBoxBorderColor=this.labelBoxBorderColor||this.actorBorder,this.labelTextColor=this.labelTextColor||this.actorTextColor,this.loopTextColor=this.loopTextColor||this.actorTextColor,this.activationBorderColor=this.activationBorderColor||G(this.secondaryColor,10),this.activationBkgColor=this.activationBkgColor||this.secondaryColor,this.sequenceNumberColor=this.sequenceNumberColor||E(this.lineColor),this.rectBkgColor=this.rectBkgColor||this.tertiaryColor,this.rootLabelColor="#FFFFFF",this.sectionBkgColor=this.sectionBkgColor||this.tertiaryColor,this.altSectionBkgColor=this.altSectionBkgColor||"white",this.sectionBkgColor=this.sectionBkgColor||this.secondaryColor,this.sectionBkgColor2=this.sectionBkgColor2||this.primaryColor,this.excludeBkgColor=this.excludeBkgColor||"#eeeeee",this.taskBorderColor=this.taskBorderColor||this.primaryBorderColor,this.taskBkgColor=this.taskBkgColor||this.primaryColor,this.activeTaskBorderColor=this.activeTaskBorderColor||this.primaryColor,this.activeTaskBkgColor=this.activeTaskBkgColor||U(this.primaryColor,23),this.gridColor=this.gridColor||"lightgrey",this.doneTaskBkgColor=this.doneTaskBkgColor||"lightgrey",this.doneTaskBorderColor=this.doneTaskBorderColor||"grey",this.critBorderColor=this.critBorderColor||"#ff8888",this.critBkgColor=this.critBkgColor||"red",this.todayLineColor=this.todayLineColor||"red",this.taskTextColor=this.taskTextColor||this.textColor,this.vertLineColor=this.vertLineColor||this.primaryBorderColor,this.taskTextOutsideColor=this.taskTextOutsideColor||this.textColor,this.taskTextLightColor=this.taskTextLightColor||this.textColor,this.taskTextColor=this.taskTextColor||this.primaryTextColor,this.taskTextDarkColor=this.taskTextDarkColor||this.textColor,this.taskTextClickableColor=this.taskTextClickableColor||"#003163",this.archEdgeColor=this.lineColor,this.archEdgeArrowColor=this.lineColor,this.personBorder=this.personBorder||this.primaryBorderColor,this.personBkg=this.personBkg||this.mainBkg,this.transitionColor=this.transitionColor||this.lineColor,this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||"#f0f0f0",this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.compositeBorder=this.compositeBorder||this.nodeBorder,this.innerEndBackground=this.nodeBorder,this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.transitionColor=this.transitionColor||this.lineColor,this.specialStateColor=this.lineColor,this.cScale0=this.cScale0||"#f4a8ff",this.cScale1=this.cScale1||"#46ecd5",this.cScale2=this.cScale2||"#ffb86a",this.cScale3=this.cScale3||"#dab2ff",this.cScale4=this.cScale4||"#7bf1a8",this.cScale5=this.cScale5||"#c4b4ff",this.cScale6=this.cScale6||"#ffa2a2",this.cScale7=this.cScale7||"#ffdf20",this.cScale8=this.cScale8||"#a3b3ff",this.cScale9=this.cScale9||"#bbf451",this.cScale10=this.cScale10||"#74d4ff",this.cScale11=this.cScale11||"#ffa1ad";for(let m=0;m<this.THEME_COLOR_LIMIT;m++)this["cScaleInv"+m]=this["cScaleInv"+m]||E(this["cScale"+m]);for(let m=0;m<this.THEME_COLOR_LIMIT;m++)this.darkMode?this["cScalePeer"+m]=this["cScalePeer"+m]||U(this["cScale"+m],10):this["cScalePeer"+m]=this["cScalePeer"+m]||G(this["cScale"+m],10);this.scaleLabelColor=this.scaleLabelColor||this.labelTextColor;for(let m=0;m<this.THEME_COLOR_LIMIT;m++)this["cScaleLabel"+m]=G(this["cScale"+m],75);const t=this.darkMode?-4:-1;for(let m=0;m<5;m++)this["surface"+m]=this["surface"+m]||k(this.mainBkg,{h:180,s:-15,l:t*(5+m*3)}),this["surfacePeer"+m]=this["surfacePeer"+m]||k(this.mainBkg,{h:180,s:-15,l:t*(8+m*3)});this.classText=this.classText||this.textColor,this.fillType0=this.fillType0||this.primaryColor,this.fillType1=this.fillType1||this.secondaryColor,this.fillType2=this.fillType2||k(this.primaryColor,{h:64}),this.fillType3=this.fillType3||k(this.secondaryColor,{h:64}),this.fillType4=this.fillType4||k(this.primaryColor,{h:-64}),this.fillType5=this.fillType5||k(this.secondaryColor,{h:-64}),this.fillType6=this.fillType6||k(this.primaryColor,{h:128}),this.fillType7=this.fillType7||k(this.secondaryColor,{h:128}),this.pie1=this.pie1||this.primaryColor,this.pie2=this.pie2||this.secondaryColor,this.pie3=this.pie3||this.tertiaryColor,this.pie4=this.pie4||k(this.primaryColor,{l:-10}),this.pie5=this.pie5||k(this.secondaryColor,{l:-10}),this.pie6=this.pie6||k(this.tertiaryColor,{l:-10}),this.pie7=this.pie7||k(this.primaryColor,{h:60,l:-10}),this.pie8=this.pie8||k(this.primaryColor,{h:-60,l:-10}),this.pie9=this.pie9||k(this.primaryColor,{h:120,l:0}),this.pie10=this.pie10||k(this.primaryColor,{h:60,l:-20}),this.pie11=this.pie11||k(this.primaryColor,{h:-60,l:-20}),this.pie12=this.pie12||k(this.primaryColor,{h:120,l:-10}),this.pieTitleTextSize=this.pieTitleTextSize||"25px",this.pieTitleTextColor=this.pieTitleTextColor||this.taskTextDarkColor,this.pieSectionTextSize=this.pieSectionTextSize||"17px",this.pieSectionTextColor=this.pieSectionTextColor||this.textColor,this.pieLegendTextSize=this.pieLegendTextSize||"17px",this.pieLegendTextColor=this.pieLegendTextColor||this.taskTextDarkColor,this.pieStrokeColor=this.pieStrokeColor||"black",this.pieStrokeWidth=this.pieStrokeWidth||"2px",this.pieOuterStrokeWidth=this.pieOuterStrokeWidth||"2px",this.pieOuterStrokeColor=this.pieOuterStrokeColor||"black",this.pieOpacity=this.pieOpacity||"0.7",this.vennTitleTextColor=this.vennTitleTextColor??this.titleColor,this.vennSetTextColor=this.vennSetTextColor??this.textColor,this.quadrant1Fill=this.quadrant1Fill||this.primaryColor,this.quadrant2Fill=this.quadrant2Fill||k(this.primaryColor,{r:5,g:5,b:5}),this.quadrant3Fill=this.quadrant3Fill||k(this.primaryColor,{r:10,g:10,b:10}),this.quadrant4Fill=this.quadrant4Fill||k(this.primaryColor,{r:15,g:15,b:15}),this.quadrant1TextFill=this.quadrant1TextFill||this.primaryTextColor,this.quadrant2TextFill=this.quadrant2TextFill||k(this.primaryTextColor,{r:-5,g:-5,b:-5}),this.quadrant3TextFill=this.quadrant3TextFill||k(this.primaryTextColor,{r:-10,g:-10,b:-10}),this.quadrant4TextFill=this.quadrant4TextFill||k(this.primaryTextColor,{r:-15,g:-15,b:-15}),this.quadrantPointFill=this.quadrantPointFill||Ke(this.quadrant1Fill)?U(this.quadrant1Fill):G(this.quadrant1Fill),this.quadrantPointTextFill=this.quadrantPointTextFill||this.primaryTextColor,this.quadrantXAxisTextFill=this.quadrantXAxisTextFill||this.primaryTextColor,this.quadrantYAxisTextFill=this.quadrantYAxisTextFill||this.primaryTextColor,this.quadrantInternalBorderStrokeFill=this.quadrantInternalBorderStrokeFill||this.primaryBorderColor,this.quadrantExternalBorderStrokeFill=this.quadrantExternalBorderStrokeFill||this.primaryBorderColor,this.quadrantTitleFill=this.quadrantTitleFill||this.primaryTextColor,this.xyChart={backgroundColor:((r=this.xyChart)==null?void 0:r.backgroundColor)||this.background,titleColor:((i=this.xyChart)==null?void 0:i.titleColor)||this.primaryTextColor,legendTextColor:((s=this.xyChart)==null?void 0:s.legendTextColor)||this.primaryTextColor,xAxisTitleColor:((o=this.xyChart)==null?void 0:o.xAxisTitleColor)||this.primaryTextColor,xAxisLabelColor:((a=this.xyChart)==null?void 0:a.xAxisLabelColor)||this.primaryTextColor,xAxisTickColor:((n=this.xyChart)==null?void 0:n.xAxisTickColor)||this.primaryTextColor,xAxisLineColor:((l=this.xyChart)==null?void 0:l.xAxisLineColor)||this.primaryTextColor,yAxisTitleColor:((c=this.xyChart)==null?void 0:c.yAxisTitleColor)||this.primaryTextColor,yAxisLabelColor:((h=this.xyChart)==null?void 0:h.yAxisLabelColor)||this.primaryTextColor,yAxisTickColor:((u=this.xyChart)==null?void 0:u.yAxisTickColor)||this.primaryTextColor,yAxisLineColor:((d=this.xyChart)==null?void 0:d.yAxisLineColor)||this.primaryTextColor,plotColorPalette:((f=this.xyChart)==null?void 0:f.plotColorPalette)||"#FFF4DD,#FFD8B1,#FFA07A,#ECEFF1,#D6DBDF,#C3E0A8,#FFB6A4,#FFD74D,#738FA7,#FFFFF0"},this.requirementBackground=this.requirementBackground||this.primaryColor,this.requirementBorderColor=this.requirementBorderColor||this.primaryBorderColor,this.requirementBorderSize=this.requirementBorderSize||"1",this.requirementTextColor=this.requirementTextColor||this.primaryTextColor,this.relationColor=this.relationColor||this.lineColor,this.relationLabelBackground=this.relationLabelBackground||(this.darkMode?G(this.secondaryColor,30):this.secondaryColor),this.relationLabelColor=this.relationLabelColor||this.actorTextColor,this.git0=this.git0||this.primaryColor,this.git1=this.git1||this.secondaryColor,this.git2=this.git2||this.tertiaryColor,this.git3=this.git3||k(this.primaryColor,{h:-30}),this.git4=this.git4||k(this.primaryColor,{h:-60}),this.git5=this.git5||k(this.primaryColor,{h:-90}),this.git6=this.git6||k(this.primaryColor,{h:60}),this.git7=this.git7||k(this.primaryColor,{h:120}),this.darkMode?(this.git0=U(this.git0,25),this.git1=U(this.git1,25),this.git2=U(this.git2,25),this.git3=U(this.git3,25),this.git4=U(this.git4,25),this.git5=U(this.git5,25),this.git6=U(this.git6,25),this.git7=U(this.git7,25)):(this.git0=G(this.git0,25),this.git1=G(this.git1,25),this.git2=G(this.git2,25),this.git3=G(this.git3,25),this.git4=G(this.git4,25),this.git5=G(this.git5,25),this.git6=G(this.git6,25),this.git7=G(this.git7,25)),this.gitInv0=this.gitInv0||E(this.git0),this.gitInv1=this.gitInv1||E(this.git1),this.gitInv2=this.gitInv2||E(this.git2),this.gitInv3=this.gitInv3||E(this.git3),this.gitInv4=this.gitInv4||E(this.git4),this.gitInv5=this.gitInv5||E(this.git5),this.gitInv6=this.gitInv6||E(this.git6),this.gitInv7=this.gitInv7||E(this.git7),this.branchLabelColor=this.branchLabelColor||(this.darkMode?"black":this.labelTextColor),this.gitBranchLabel0=this.gitBranchLabel0||this.branchLabelColor,this.gitBranchLabel1=this.gitBranchLabel1||this.branchLabelColor,this.gitBranchLabel2=this.gitBranchLabel2||this.branchLabelColor,this.gitBranchLabel3=this.gitBranchLabel3||this.branchLabelColor,this.gitBranchLabel4=this.gitBranchLabel4||this.branchLabelColor,this.gitBranchLabel5=this.gitBranchLabel5||this.branchLabelColor,this.gitBranchLabel6=this.gitBranchLabel6||this.branchLabelColor,this.gitBranchLabel7=this.gitBranchLabel7||this.branchLabelColor,this.tagLabelColor=this.tagLabelColor||this.primaryTextColor,this.tagLabelBackground=this.tagLabelBackground||this.primaryColor,this.tagLabelBorder=this.tagBorder||this.primaryBorderColor,this.tagLabelFontSize=this.tagLabelFontSize||"10px",this.commitLabelColor=this.commitLabelColor||this.secondaryTextColor,this.commitLabelBackground=this.commitLabelBackground||this.secondaryColor,this.commitLabelFontSize=this.commitLabelFontSize||"10px",this.commitLineColor=this.commitLineColor??"#BDBCCC",this.fontWeight=600,this.erEdgeLabelBackground="#16141F",this.attributeBackgroundColorOdd=this.attributeBackgroundColorOdd||dr,this.attributeBackgroundColorEven=this.attributeBackgroundColorEven||fr}calculate(t){if(typeof t!="object"){this.updateColors();return}const r=Object.keys(t);r.forEach(i=>{this[i]=t[i]}),this.updateColors(),r.forEach(i=>{this[i]=t[i]})}},p(Hi,"Theme"),Hi),WC=p(e=>{const t=new zC;return t.calculate(e),t},"getThemeVariables"),_r={base:{getThemeVariables:wC},dark:{getThemeVariables:_C},default:{getThemeVariables:vC},forest:{getThemeVariables:LC},neutral:{getThemeVariables:AC},neo:{getThemeVariables:MC},"neo-dark":{getThemeVariables:OC},redux:{getThemeVariables:IC},"redux-dark":{getThemeVariables:RC},"redux-color":{getThemeVariables:qC},"redux-dark-color":{getThemeVariables:WC}},de={flowchart:{useMaxWidth:!0,titleTopMargin:25,subGraphTitleMargin:{top:0,bottom:0},diagramPadding:8,htmlLabels:null,nodeSpacing:50,rankSpacing:50,curve:"basis",padding:15,defaultRenderer:"dagre-wrapper",wrappingWidth:200,inheritDir:!1},swimlane:{useMaxWidth:!0,lineHops:"arc",ignoreCrossLaneEdges:!0,optimizeRanksByCrossings:!0,automaticLaneOrdering:!1},sequence:{useMaxWidth:!0,hideUnusedParticipants:!1,activationWidth:10,diagramMarginX:50,diagramMarginY:10,actorMargin:50,width:150,height:65,boxMargin:10,boxTextMargin:5,noteMargin:10,messageMargin:35,messageAlign:"center",mirrorActors:!0,forceMenus:!1,bottomMarginAdj:1,rightAngles:!1,showSequenceNumbers:!1,actorFontSize:14,actorFontFamily:'"Open Sans", sans-serif',actorFontWeight:400,noteFontSize:14,noteFontFamily:'"trebuchet ms", verdana, arial, sans-serif',noteFontWeight:400,noteAlign:"center",messageFontSize:16,messageFontFamily:'"trebuchet ms", verdana, arial, sans-serif',messageFontWeight:400,wrap:!1,wrapPadding:10,labelBoxWidth:50,labelBoxHeight:20},gantt:{useMaxWidth:!0,titleTopMargin:25,barHeight:20,barGap:4,topPadding:50,rightPadding:75,leftPadding:75,gridLineStartPadding:35,fontSize:11,sectionFontSize:11,numberSectionStyles:4,axisFormat:"%Y-%m-%d",topAxis:!1,displayMode:"",weekday:"sunday"},journey:{useMaxWidth:!0,diagramMarginX:50,diagramMarginY:10,leftMargin:150,maxLabelWidth:360,width:150,height:50,boxMargin:10,boxTextMargin:5,noteMargin:10,messageMargin:35,messageAlign:"center",bottomMarginAdj:1,rightAngles:!1,taskFontSize:14,taskFontFamily:'"Open Sans", sans-serif',taskMargin:50,activationWidth:10,textPlacement:"fo",actorColours:["#8FBC8F","#7CFC00","#00FFFF","#20B2AA","#B0E0E6","#FFFFE0"],sectionFills:["#191970","#8B008B","#4B0082","#2F4F4F","#800000","#8B4513","#00008B"],sectionColours:["#fff"],titleColor:"",titleFontFamily:'"trebuchet ms", verdana, arial, sans-serif',titleFontSize:"4ex"},class:{useMaxWidth:!0,titleTopMargin:25,arrowMarkerAbsolute:!1,dividerMargin:10,padding:5,textHeight:10,defaultRenderer:"dagre-wrapper",htmlLabels:!1,hideEmptyMembersBox:!1,hierarchicalNamespaces:!0},state:{useMaxWidth:!0,titleTopMargin:25,dividerMargin:10,sizeUnit:5,padding:8,textHeight:10,titleShift:-15,noteMargin:10,forkWidth:70,forkHeight:7,miniPadding:2,fontSizeFactor:5.02,fontSize:24,labelHeight:16,edgeLengthFactor:"20",compositTitleSize:35,radius:5,defaultRenderer:"dagre-wrapper"},er:{useMaxWidth:!0,titleTopMargin:25,diagramPadding:20,layoutDirection:"TB",minEntityWidth:100,minEntityHeight:75,entityPadding:15,nodeSpacing:140,rankSpacing:80,stroke:"gray",fill:"honeydew",fontSize:12},pie:{useMaxWidth:!0,textPosition:.75,donutHole:0,legendPosition:"right",highlightSlice:""},quadrantChart:{useMaxWidth:!0,chartWidth:500,chartHeight:500,titleFontSize:20,titlePadding:10,quadrantPadding:5,xAxisLabelPadding:5,yAxisLabelPadding:5,xAxisLabelFontSize:16,yAxisLabelFontSize:16,quadrantLabelFontSize:16,quadrantTextTopPadding:5,pointTextPadding:5,pointLabelFontSize:12,pointRadius:5,xAxisPosition:"top",yAxisPosition:"left",quadrantInternalBorderStrokeWidth:1,quadrantExternalBorderStrokeWidth:2},xyChart:{useMaxWidth:!0,width:700,height:500,titleFontSize:20,titlePadding:10,showDataLabel:!1,showDataLabelOutsideBar:!1,showTitle:!0,showLegend:!0,legendFontSize:14,legendPadding:10,xAxis:{$ref:"#/$defs/XYChartAxisConfig",showLabel:!0,labelFontSize:14,labelPadding:5,showTitle:!0,titleFontSize:16,titlePadding:5,showTick:!0,tickLength:5,tickWidth:2,showAxisLine:!0,axisLineWidth:2,labelRotation:0},yAxis:{$ref:"#/$defs/XYChartAxisConfig",showLabel:!0,labelFontSize:14,labelPadding:5,showTitle:!0,titleFontSize:16,titlePadding:5,showTick:!0,tickLength:5,tickWidth:2,showAxisLine:!0,axisLineWidth:2,labelRotation:0},chartOrientation:"vertical",plotReservedSpacePercent:50},requirement:{useMaxWidth:!0,rect_fill:"#f9f9f9",text_color:"#333",rect_border_size:"0.5px",rect_border_color:"#bbb",rect_min_width:200,rect_min_height:200,fontSize:14,rect_padding:10,line_height:20},mindmap:{useMaxWidth:!0,padding:10,maxNodeWidth:200,layoutAlgorithm:"cose-bilkent"},ishikawa:{useMaxWidth:!0,diagramPadding:20},kanban:{useMaxWidth:!0,padding:8,sectionWidth:200,ticketBaseUrl:""},timeline:{useMaxWidth:!0,diagramMarginX:50,diagramMarginY:10,leftMargin:150,width:150,height:50,boxMargin:10,boxTextMargin:5,noteMargin:10,messageMargin:35,messageAlign:"center",bottomMarginAdj:1,rightAngles:!1,taskFontSize:14,taskFontFamily:'"Open Sans", sans-serif',taskMargin:50,activationWidth:10,textPlacement:"fo",actorColours:["#8FBC8F","#7CFC00","#00FFFF","#20B2AA","#B0E0E6","#FFFFE0"],sectionFills:["#191970","#8B008B","#4B0082","#2F4F4F","#800000","#8B4513","#00008B"],sectionColours:["#fff"],disableMulticolor:!1},gitGraph:{useMaxWidth:!0,titleTopMargin:25,diagramPadding:8,nodeLabel:{width:75,height:100,x:-25,y:0},mainBranchName:"main",mainBranchOrder:0,showCommitLabel:!0,showBranches:!0,rotateCommitLabel:!0,parallelCommits:!1,arrowMarkerAbsolute:!1},c4:{useMaxWidth:!0,diagramMarginX:50,diagramMarginY:10,c4ShapeMargin:50,c4ShapePadding:20,width:216,height:60,boxMargin:10,c4ShapeInRow:4,nextLinePaddingX:0,c4BoundaryInRow:2,personFontSize:14,personFontFamily:'"Open Sans", sans-serif',personFontWeight:"normal",external_personFontSize:14,external_personFontFamily:'"Open Sans", sans-serif',external_personFontWeight:"normal",systemFontSize:14,systemFontFamily:'"Open Sans", sans-serif',systemFontWeight:"normal",external_systemFontSize:14,external_systemFontFamily:'"Open Sans", sans-serif',external_systemFontWeight:"normal",system_dbFontSize:14,system_dbFontFamily:'"Open Sans", sans-serif',system_dbFontWeight:"normal",external_system_dbFontSize:14,external_system_dbFontFamily:'"Open Sans", sans-serif',external_system_dbFontWeight:"normal",system_queueFontSize:14,system_queueFontFamily:'"Open Sans", sans-serif',system_queueFontWeight:"normal",external_system_queueFontSize:14,external_system_queueFontFamily:'"Open Sans", sans-serif',external_system_queueFontWeight:"normal",boundaryFontSize:14,boundaryFontFamily:'"Open Sans", sans-serif',boundaryFontWeight:"normal",messageFontSize:12,messageFontFamily:'"Open Sans", sans-serif',messageFontWeight:"normal",containerFontSize:14,containerFontFamily:'"Open Sans", sans-serif',containerFontWeight:"normal",external_containerFontSize:14,external_containerFontFamily:'"Open Sans", sans-serif',external_containerFontWeight:"normal",container_dbFontSize:14,container_dbFontFamily:'"Open Sans", sans-serif',container_dbFontWeight:"normal",external_container_dbFontSize:14,external_container_dbFontFamily:'"Open Sans", sans-serif',external_container_dbFontWeight:"normal",container_queueFontSize:14,container_queueFontFamily:'"Open Sans", sans-serif',container_queueFontWeight:"normal",external_container_queueFontSize:14,external_container_queueFontFamily:'"Open Sans", sans-serif',external_container_queueFontWeight:"normal",componentFontSize:14,componentFontFamily:'"Open Sans", sans-serif',componentFontWeight:"normal",external_componentFontSize:14,external_componentFontFamily:'"Open Sans", sans-serif',external_componentFontWeight:"normal",component_dbFontSize:14,component_dbFontFamily:'"Open Sans", sans-serif',component_dbFontWeight:"normal",external_component_dbFontSize:14,external_component_dbFontFamily:'"Open Sans", sans-serif',external_component_dbFontWeight:"normal",component_queueFontSize:14,component_queueFontFamily:'"Open Sans", sans-serif',component_queueFontWeight:"normal",external_component_queueFontSize:14,external_component_queueFontFamily:'"Open Sans", sans-serif',external_component_queueFontWeight:"normal",wrap:!0,wrapPadding:10,person_bg_color:"#08427B",person_border_color:"#073B6F",external_person_bg_color:"#686868",external_person_border_color:"#8A8A8A",system_bg_color:"#1168BD",system_border_color:"#3C7FC0",system_db_bg_color:"#1168BD",system_db_border_color:"#3C7FC0",system_queue_bg_color:"#1168BD",system_queue_border_color:"#3C7FC0",external_system_bg_color:"#999999",external_system_border_color:"#8A8A8A",external_system_db_bg_color:"#999999",external_system_db_border_color:"#8A8A8A",external_system_queue_bg_color:"#999999",external_system_queue_border_color:"#8A8A8A",container_bg_color:"#438DD5",container_border_color:"#3C7FC0",container_db_bg_color:"#438DD5",container_db_border_color:"#3C7FC0",container_queue_bg_color:"#438DD5",container_queue_border_color:"#3C7FC0",external_container_bg_color:"#B3B3B3",external_container_border_color:"#A6A6A6",external_container_db_bg_color:"#B3B3B3",external_container_db_border_color:"#A6A6A6",external_container_queue_bg_color:"#B3B3B3",external_container_queue_border_color:"#A6A6A6",component_bg_color:"#85BBF0",component_border_color:"#78A8D8",component_db_bg_color:"#85BBF0",component_db_border_color:"#78A8D8",component_queue_bg_color:"#85BBF0",component_queue_border_color:"#78A8D8",external_component_bg_color:"#CCCCCC",external_component_border_color:"#BFBFBF",external_component_db_bg_color:"#CCCCCC",external_component_db_border_color:"#BFBFBF",external_component_queue_bg_color:"#CCCCCC",external_component_queue_border_color:"#BFBFBF"},sankey:{useMaxWidth:!0,width:600,height:400,linkColor:"gradient",nodeAlignment:"justify",showValues:!0,prefix:"",suffix:"",nodeWidth:10,nodePadding:12,labelStyle:"legacy"},block:{useMaxWidth:!0,padding:8},packet:{useMaxWidth:!0,rowHeight:32,bitWidth:32,bitsPerRow:32,showBits:!0,paddingX:5,paddingY:5},treeView:{useMaxWidth:!0,rowIndent:10,paddingX:5,paddingY:5,lineThickness:1,showIcons:!1,defaultIconPack:"",filenameIcons:{},extensionIcons:{}},architecture:{useMaxWidth:!0,padding:40,iconSize:80,fontSize:16,randomize:!1,nodeSeparation:75,idealEdgeLengthMultiplier:1.5,edgeElasticity:.45,numIter:2500,seed:1},eventmodeling:{useMaxWidth:!0,padding:30,rowHeight:32},radar:{useMaxWidth:!0,width:600,height:600,marginTop:50,marginRight:50,marginBottom:50,marginLeft:50,axisScaleFactor:1,axisLabelFactor:1.05,curveTension:.17},venn:{useMaxWidth:!0,width:800,height:450,padding:8,useDebugLayout:!1},cynefin:{useMaxWidth:!0,width:800,height:600,padding:40,showDomainDescriptions:!0,boundaryAmplitude:8,seed:0},theme:"default",look:"classic",handDrawnSeed:0,layout:"dagre",maxTextSize:5e4,maxEdges:500,darkMode:!1,fontFamily:'"trebuchet ms", verdana, arial, sans-serif;',logLevel:5,securityLevel:"strict",startOnLoad:!0,arrowMarkerAbsolute:!1,secure:["secure","securityLevel","startOnLoad","maxTextSize","suppressErrorRendering","maxEdges"],legacyMathML:!1,forceLegacyMathML:!1,deterministicIds:!1,fontSize:16,markdownAutoWrap:!0,suppressErrorRendering:!1},Tf={...de,deterministicIDSeed:void 0,elk:{mergeEdges:!1,nodePlacementStrategy:"BRANDES_KOEPF",nodePlacementAlignment:"NONE",forceNodeModelOrder:!1,considerModelOrder:"NODES_AND_EDGES",keepEntryNodeOnTop:!1},themeCSS:void 0,themeVariables:_r.default.getThemeVariables(),sequence:{...de.sequence,messageFont:p(function(){return{fontFamily:this.messageFontFamily,fontSize:this.messageFontSize,fontWeight:this.messageFontWeight}},"messageFont"),noteFont:p(function(){return{fontFamily:this.noteFontFamily,fontSize:this.noteFontSize,fontWeight:this.noteFontWeight}},"noteFont"),actorFont:p(function(){return{fontFamily:this.actorFontFamily,fontSize:this.actorFontSize,fontWeight:this.actorFontWeight}},"actorFont")},class:{defaultRenderer:"dagre-wrapper",hideEmptyMembersBox:!1,hierarchicalNamespaces:!0},gantt:{...de.gantt,tickInterval:void 0,useWidth:void 0},c4:{...de.c4,useWidth:void 0,personFont:p(function(){return{fontFamily:this.personFontFamily,fontSize:this.personFontSize,fontWeight:this.personFontWeight}},"personFont"),flowchart:{...de.flowchart,inheritDir:!1},external_personFont:p(function(){return{fontFamily:this.external_personFontFamily,fontSize:this.external_personFontSize,fontWeight:this.external_personFontWeight}},"external_personFont"),systemFont:p(function(){return{fontFamily:this.systemFontFamily,fontSize:this.systemFontSize,fontWeight:this.systemFontWeight}},"systemFont"),external_systemFont:p(function(){return{fontFamily:this.external_systemFontFamily,fontSize:this.external_systemFontSize,fontWeight:this.external_systemFontWeight}},"external_systemFont"),system_dbFont:p(function(){return{fontFamily:this.system_dbFontFamily,fontSize:this.system_dbFontSize,fontWeight:this.system_dbFontWeight}},"system_dbFont"),external_system_dbFont:p(function(){return{fontFamily:this.external_system_dbFontFamily,fontSize:this.external_system_dbFontSize,fontWeight:this.external_system_dbFontWeight}},"external_system_dbFont"),system_queueFont:p(function(){return{fontFamily:this.system_queueFontFamily,fontSize:this.system_queueFontSize,fontWeight:this.system_queueFontWeight}},"system_queueFont"),external_system_queueFont:p(function(){return{fontFamily:this.external_system_queueFontFamily,fontSize:this.external_system_queueFontSize,fontWeight:this.external_system_queueFontWeight}},"external_system_queueFont"),containerFont:p(function(){return{fontFamily:this.containerFontFamily,fontSize:this.containerFontSize,fontWeight:this.containerFontWeight}},"containerFont"),external_containerFont:p(function(){return{fontFamily:this.external_containerFontFamily,fontSize:this.external_containerFontSize,fontWeight:this.external_containerFontWeight}},"external_containerFont"),container_dbFont:p(function(){return{fontFamily:this.container_dbFontFamily,fontSize:this.container_dbFontSize,fontWeight:this.container_dbFontWeight}},"container_dbFont"),external_container_dbFont:p(function(){return{fontFamily:this.external_container_dbFontFamily,fontSize:this.external_container_dbFontSize,fontWeight:this.external_container_dbFontWeight}},"external_container_dbFont"),container_queueFont:p(function(){return{fontFamily:this.container_queueFontFamily,fontSize:this.container_queueFontSize,fontWeight:this.container_queueFontWeight}},"container_queueFont"),external_container_queueFont:p(function(){return{fontFamily:this.external_container_queueFontFamily,fontSize:this.external_container_queueFontSize,fontWeight:this.external_container_queueFontWeight}},"external_container_queueFont"),componentFont:p(function(){return{fontFamily:this.componentFontFamily,fontSize:this.componentFontSize,fontWeight:this.componentFontWeight}},"componentFont"),external_componentFont:p(function(){return{fontFamily:this.external_componentFontFamily,fontSize:this.external_componentFontSize,fontWeight:this.external_componentFontWeight}},"external_componentFont"),component_dbFont:p(function(){return{fontFamily:this.component_dbFontFamily,fontSize:this.component_dbFontSize,fontWeight:this.component_dbFontWeight}},"component_dbFont"),external_component_dbFont:p(function(){return{fontFamily:this.external_component_dbFontFamily,fontSize:this.external_component_dbFontSize,fontWeight:this.external_component_dbFontWeight}},"external_component_dbFont"),component_queueFont:p(function(){return{fontFamily:this.component_queueFontFamily,fontSize:this.component_queueFontSize,fontWeight:this.component_queueFontWeight}},"component_queueFont"),external_component_queueFont:p(function(){return{fontFamily:this.external_component_queueFontFamily,fontSize:this.external_component_queueFontSize,fontWeight:this.external_component_queueFontWeight}},"external_component_queueFont"),boundaryFont:p(function(){return{fontFamily:this.boundaryFontFamily,fontSize:this.boundaryFontSize,fontWeight:this.boundaryFontWeight}},"boundaryFont"),messageFont:p(function(){return{fontFamily:this.messageFontFamily,fontSize:this.messageFontSize,fontWeight:this.messageFontWeight}},"messageFont")},pie:{...de.pie,useWidth:984},xyChart:{...de.xyChart,useWidth:void 0},requirement:{...de.requirement,useWidth:void 0},packet:{...de.packet},eventmodeling:{...de.eventmodeling},treeView:{...de.treeView,useWidth:void 0},radar:{...de.radar},railroad:{...de.railroad,fontSize:void 0,fontFamily:void 0,terminalFill:void 0,terminalStroke:void 0,terminalTextColor:void 0,nonTerminalFill:void 0,nonTerminalStroke:void 0,nonTerminalTextColor:void 0,lineColor:void 0,markerFill:void 0,commentFill:void 0,commentStroke:void 0,commentTextColor:void 0,specialFill:void 0,specialStroke:void 0,ruleNameColor:void 0},ishikawa:{...de.ishikawa},sankey:{...de.sankey,nodeColors:void 0},treemap:{useMaxWidth:!0,padding:10,diagramPadding:8,showValues:!0,nodeWidth:100,nodeHeight:40,borderWidth:1,valueFontSize:12,labelFontSize:14,valueFormat:","},venn:{...de.venn},cynefin:{...de.cynefin}},_f=p((e,t="")=>Object.keys(e).reduce((r,i)=>Array.isArray(e[i])?r:typeof e[i]=="object"&&e[i]!==null?[...r,t+i,..._f(e[i],"")]:[...r,t+i],[]),"keyify"),HC=new Set(_f(Tf,"")),Sf=Tf,YC={nodeColors:/^#[\da-f]{3,8}$|^rgb\([\d\s%,.]+\)$|^hsl\([\d\s%,.]+\)$|^[a-z]+$/i,filenameIcons:/^[\w-]+(?::[\w-]+)?$/,extensionIcons:/^[\w-]+(?::[\w-]+)?$/},jC=p((e,t)=>{for(const r of Object.keys(e)){const i=e[r];(r.startsWith("__")||r.includes("proto")||r.includes("constr")||typeof i!="string"||!t.test(i))&&(N.debug("sanitize deleting dictionary entry:",r,i),delete e[r])}},"sanitizeDictionaryConfig"),Ho=p(e=>{if(N.debug("sanitizeDirective called with",e),!(typeof e!="object"||e==null)){if(Array.isArray(e)){e.forEach(t=>Ho(t));return}for(const t of Object.keys(e)){if(N.debug("Checking key",t),t.startsWith("__")||t.includes("proto")||t.includes("constr")||!HC.has(t)||e[t]==null){N.debug("sanitize deleting key: ",t),delete e[t];continue}if(typeof e[t]=="object"){const i=YC[t];i?jC(e[t],i):(N.debug("sanitizing object",t),Ho(e[t]));continue}const r=["themeCSS","fontFamily","altFontFamily"];for(const i of r)t.includes(i)&&(N.debug("sanitizing css option",t),e[t]=vf(e[t]))}if(e.themeVariables)for(const t of Object.keys(e.themeVariables)){const r=e.themeVariables[t];r!=null&&r.match&&!r.match(/^[\d "#%(),.;A-Za-z]+$/)&&(e.themeVariables[t]="")}N.debug("After sanitization",e)}},"sanitizeDirective"),vf=p(e=>{let t=0,r=0;for(const i of e){if(t<r)return"{ /* ERROR: Unbalanced CSS */ }";i==="{"?t++:i==="}"&&r++}return t!==r?"{ /* ERROR: Unbalanced CSS */ }":e},"sanitizeCss"),Vi=Object.freeze(Sf),pr=p(e=>!(e===!1||["false","null","0"].includes(String(e).trim().toLowerCase())),"evaluate"),Ee=ce({},Vi),Yo,si=[],$s=ce({},Vi),Zs=p((e,t)=>{let r=ce({},e),i={};for(const s of t)Ff(s),i=ce(i,s);if(r=ce(r,i),i.theme&&i.theme in _r){const s=ce({},Yo),o=ce(s.themeVariables||{},i.themeVariables);r.theme&&r.theme in _r&&(r.themeVariables=_r[r.theme].getThemeVariables(o))}return $s=r,KC($s),$s},"updateCurrentConfig"),UC=p(e=>(Ee=ce({},Vi),Ee=ce(Ee,e),e.theme&&_r[e.theme]&&(Ee.themeVariables=_r[e.theme].getThemeVariables(e.themeVariables)),Zs(Ee,si),Ee),"setSiteConfig"),GC=p(e=>{Yo=ce({},e)},"saveConfigFromInitialize"),XC=p(e=>(Ee=ce(Ee,e),Zs(Ee,si),Ee),"updateSiteConfig"),Bf=p(()=>ce({},Ee),"getSiteConfig"),Lf=p(e=>(Zs($s,[e]),Jt()),"setConfig"),Jt=p(()=>ce({},$s),"getConfig"),Ff=p(e=>{e&&(["secure",...Ee.secure??[]].forEach(t=>{Object.hasOwn(e,t)&&(N.debug(`Denied attempt to modify a secure key ${t}`,e[t]),delete e[t])}),Object.keys(e).forEach(t=>{t.startsWith("__")&&delete e[t]}),Object.keys(e).forEach(t=>{typeof e[t]=="string"&&(e[t].includes("<")||e[t].includes(">")||e[t].includes("url(data:"))&&delete e[t],typeof e[t]=="object"&&Ff(e[t])}))},"sanitize"),VC=p(e=>{var t;Ho(e),e.fontFamily&&!((t=e.themeVariables)!=null&&t.fontFamily)&&(e.themeVariables={...e.themeVariables,fontFamily:e.fontFamily}),si.push(e),Zs(Ee,si)},"addDirective"),jo=p((e=Ee)=>{si=[],Zs(e,si)},"reset"),ZC={LAZY_LOAD_DEPRECATED:"The configuration options lazyLoadedDiagrams and loadExternalDiagramsAtStartup are deprecated. Please use registerExternalDiagrams instead.",FLOWCHART_HTML_LABELS_DEPRECATED:"flowchart.htmlLabels is deprecated. Please use global htmlLabels instead."},qc={},Af=p(e=>{qc[e]||(N.warn(ZC[e]),qc[e]=!0)},"issueWarning"),KC=p(e=>{e&&(e.lazyLoadedDiagrams||e.loadExternalDiagramsAtStartup)&&Af("LAZY_LOAD_DEPRECATED")},"checkConfig"),X5=p(()=>{let e={};Yo&&(e=ce(e,Yo));for(const t of si)e=ce(e,t);return e},"getUserDefinedConfig"),Ce=p(e=>{var t,r;return((t=e.flowchart)==null?void 0:t.htmlLabels)!=null&&Af("FLOWCHART_HTML_LABELS_DEPRECATED"),pr(e.htmlLabels??((r=e.flowchart)==null?void 0:r.htmlLabels)??!0)},"getEffectiveHtmlLabels"),Ef=/^([^\S\n\r]*)-{3}\s*[\n\r](.*?)[\n\r]\1-{3}\s*[\n\r]+/s,Os=/%{2}{\s*(?:(\w+)\s*:|(\w+))\s*(?:(\w+)|((?:(?!}%{2}).|\r?\n)*))?\s*(?:}%{2})?/gi,QC=/\s*%%.*\n/gm,Yi,Mf=(Yi=class extends Error{constructor(t){super(t),this.name="UnknownDiagramError"}},p(Yi,"UnknownDiagramError"),Yi),oi={},Nl=p(function(e,t){e=e.replace(Ef,"").replace(Os,"").replace(QC,`
|
|
5
|
+
`);for(const[r,{detector:i}]of Object.entries(oi))if(i(e,t))return r;throw new Mf(`No diagram type detected matching given configuration for text: ${e}`)},"detectType"),Zn=p((...e)=>{for(const{id:t,detector:r,loader:i}of e)$f(t,r,i)},"registerLazyLoadedDiagrams"),$f=p((e,t,r)=>{oi[e]&&N.warn(`Detector with key ${e} already exists. Overwriting.`),oi[e]={detector:t,loader:r},N.debug(`Detector with key ${e} added${r?" with loader":""}`)},"addDetector"),JC=p(e=>oi[e].loader,"getDiagramLoader"),Ks=/<br\s*\/?>/gi,tb=p(e=>e?If(e).replace(/\\n/g,"#br#").split("#br#"):[""],"getRows"),eb=(()=>{let e=!1;return()=>{e||(Of(),e=!0)}})();function Of(){const e="data-temp-href-target";Xi.addHook("beforeSanitizeAttributes",t=>{t.tagName==="A"&&t.hasAttribute("target")&&t.setAttribute(e,t.getAttribute("target")??"")}),Xi.addHook("afterSanitizeAttributes",t=>{t.tagName==="A"&&t.hasAttribute(e)&&(t.setAttribute("target",t.getAttribute(e)??""),t.removeAttribute(e),t.getAttribute("target")==="_blank"&&t.setAttribute("rel","noopener"))})}p(Of,"setupDompurifyHooks");var Df=p(e=>(eb(),Xi.sanitize(e)),"removeScript"),zc=p((e,t)=>{if(Ce(t)){const r=t.securityLevel;r==="antiscript"||r==="strict"||r==="sandbox"?e=Df(e):r!=="loose"&&(e=If(e),e=e.replace(/</g,"<").replace(/>/g,">"),e=e.replace(/=/g,"="),e=ob(e))}return e},"sanitizeMore"),ze=p((e,t)=>e&&(t.dompurifyConfig?e=Xi.sanitize(zc(e,t),t.dompurifyConfig).toString():e=Xi.sanitize(zc(e,t),{FORBID_TAGS:["style"]}).toString(),e),"sanitizeText"),rb=p((e,t)=>typeof e=="string"?ze(e,t):e.flat().map(r=>ze(r,t)),"sanitizeTextOrArray"),ib=p(e=>Ks.test(e),"hasBreaks"),sb=p(e=>e.split(Ks),"splitBreaks"),ob=p(e=>e.replace(/#br#/g,"<br/>"),"placeholderToBreak"),If=p(e=>e.replace(Ks,"#br#"),"breakToPlaceholder"),ab=p(e=>{let t="";return e&&(t=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,t=CSS.escape(t)),t},"getUrl"),nb=p(function(...e){const t=e.filter(r=>!isNaN(r));return Math.max(...t)},"getMax"),lb=p(function(...e){const t=e.filter(r=>!isNaN(r));return Math.min(...t)},"getMin"),Wc=p(function(e){const t=e.split(/(,)/),r=[];for(let i=0;i<t.length;i++){let s=t[i];if(s===","&&i>0&&i+1<t.length){const o=t[i-1],a=t[i+1];hb(o,a)&&(s=o+","+a,i++,r.pop())}r.push(cb(s))}return r.join("")},"parseGenericTypes"),Kn=p((e,t)=>Math.max(0,e.split(t).length-1),"countOccurrence"),hb=p((e,t)=>{const r=Kn(e,"~"),i=Kn(t,"~");return r===1&&i===1},"shouldCombineSets"),cb=p(e=>{const t=Kn(e,"~");let r=!1;if(t<=1)return e;t%2!==0&&e.startsWith("~")&&(e=e.substring(1),r=!0);const i=[...e];let s=i.indexOf("~"),o=i.lastIndexOf("~");for(;s!==-1&&o!==-1&&s!==o;)i[s]="<",i[o]=">",s=i.indexOf("~"),o=i.lastIndexOf("~");return r&&i.unshift("~"),i.join("")},"processSet"),Hc=p(()=>window.MathMLElement!==void 0,"isMathMLSupported"),Qn=/\$\$(.*?)\$\$/g,Ns=p(e=>{var t;return(((t=e.match(Qn))==null?void 0:t.length)??0)>0},"hasKatex"),V5=p(async(e,t)=>{const r=document.createElement("div");r.innerHTML=await Pf(e,t),r.id="katex-temp",r.style.visibility="hidden",r.style.position="absolute",r.style.top="0";const i=document.querySelector("body");i==null||i.insertAdjacentElement("beforeend",r);const s={width:r.clientWidth,height:r.clientHeight};return r.remove(),s},"calculateMathMLDimensions"),ub=p(async(e,t)=>{if(!Ns(e))return e;if(!(Hc()||t.legacyMathML||t.forceLegacyMathML))return e.replace(Qn,"MathML is unsupported in this environment.");{const{default:r}=await Rt(async()=>{const{default:s}=await import("./index-GAamh1p4.js").then(o=>o.aC);return{default:s}},__vite__mapDeps([0,1])),i=t.forceLegacyMathML||!Hc()&&t.legacyMathML?"htmlAndMathml":"mathml";return e.split(Ks).map(s=>Ns(s)?`<div style="display: flex; align-items: center; justify-content: center; white-space: nowrap;">${s}</div>`:`<div>${s}</div>`).join("").replace(Qn,(s,o)=>r.renderToString(o,{throwOnError:!0,displayMode:!0,output:i}).replace(/\n/g," ").replace(/<annotation.*<\/annotation>/g,""))}},"renderKatexUnsanitized"),Pf=p(async(e,t)=>ze(await ub(e,t),t),"renderKatexSanitized"),Qs={getRows:tb,sanitizeText:ze,sanitizeTextOrArray:rb,hasBreaks:ib,splitBreaks:sb,lineBreakRegex:Ks,removeScript:Df,getUrl:ab,evaluate:pr,getMax:nb,getMin:lb},db=p(function(e,t){for(let r of t)e.attr(r[0],r[1])},"d3Attrs"),fb=p(function(e,t,r){let i=new Map;return r?(i.set("width","100%"),i.set("style",`max-width: ${t}px;`)):(i.set("height",e),i.set("width",t)),i},"calculateSvgSizeAttrs"),Rf=p(function(e,t,r,i){const s=fb(t,r,i);db(e,s)},"configureSvgSize"),pb=p(function(e,t,r,i){const s=t.node().getBBox(),o=s.width,a=s.height;N.info(`SVG bounds: ${o}x${a}`,s);let n=0,l=0;N.info(`Graph bounds: ${n}x${l}`,e),n=o+r*2,l=a+r*2,N.info(`Calculated bounds: ${n}x${l}`),Rf(t,l,n,i);const c=`${s.x-r} ${s.y-r} ${s.width+2*r} ${s.height+2*r}`;t.attr("viewBox",c)},"setupGraphViewbox"),Mo={};function Jn(e){return[...e.cssRules].map(t=>t.cssText).join(`
|
|
6
|
+
`)}p(Jn,"cssStyleSheetToString");var gb=p((e,t,r,i)=>{let s="";return e in Mo&&Mo[e]?s=Mo[e]({...r,svgId:i}):N.warn(`No theme found for ${e}`),`& {
|
|
7
|
+
font-family: ${r.fontFamily};
|
|
8
|
+
font-size: ${r.fontSize};
|
|
9
|
+
fill: ${r.textColor}
|
|
10
|
+
}
|
|
11
|
+
@keyframes edge-animation-frame {
|
|
12
|
+
from {
|
|
13
|
+
stroke-dashoffset: 0;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
@keyframes dash {
|
|
17
|
+
to {
|
|
18
|
+
stroke-dashoffset: 0;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
& .edge-animation-slow {
|
|
22
|
+
stroke-dasharray: 9,5 !important;
|
|
23
|
+
stroke-dashoffset: 900;
|
|
24
|
+
animation: dash 50s linear infinite;
|
|
25
|
+
stroke-linecap: round;
|
|
26
|
+
}
|
|
27
|
+
& .edge-animation-fast {
|
|
28
|
+
stroke-dasharray: 9,5 !important;
|
|
29
|
+
stroke-dashoffset: 900;
|
|
30
|
+
animation: dash 20s linear infinite;
|
|
31
|
+
stroke-linecap: round;
|
|
32
|
+
}
|
|
33
|
+
/* Classes common for multiple diagrams */
|
|
34
|
+
|
|
35
|
+
& .error-icon {
|
|
36
|
+
fill: ${r.errorBkgColor};
|
|
37
|
+
}
|
|
38
|
+
& .error-text {
|
|
39
|
+
fill: ${r.errorTextColor};
|
|
40
|
+
stroke: ${r.errorTextColor};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
& .edge-thickness-normal {
|
|
44
|
+
stroke-width: ${r.strokeWidth??1}px;
|
|
45
|
+
}
|
|
46
|
+
& .edge-thickness-thick {
|
|
47
|
+
stroke-width: 3.5px
|
|
48
|
+
}
|
|
49
|
+
& .edge-pattern-solid {
|
|
50
|
+
stroke-dasharray: 0;
|
|
51
|
+
}
|
|
52
|
+
& .edge-thickness-invisible {
|
|
53
|
+
stroke-width: 0;
|
|
54
|
+
fill: none;
|
|
55
|
+
}
|
|
56
|
+
& .edge-pattern-dashed{
|
|
57
|
+
stroke-dasharray: 3;
|
|
58
|
+
}
|
|
59
|
+
.edge-pattern-dotted {
|
|
60
|
+
stroke-dasharray: 2;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
& .marker {
|
|
64
|
+
fill: ${r.lineColor};
|
|
65
|
+
stroke: ${r.lineColor};
|
|
66
|
+
}
|
|
67
|
+
& .marker.cross {
|
|
68
|
+
stroke: ${r.lineColor};
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
& svg {
|
|
72
|
+
font-family: ${r.fontFamily};
|
|
73
|
+
font-size: ${r.fontSize};
|
|
74
|
+
}
|
|
75
|
+
& p {
|
|
76
|
+
margin: 0
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
${s}
|
|
80
|
+
.node .neo-node {
|
|
81
|
+
stroke: ${r.nodeBorder};
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
[data-look="neo"].node rect, [data-look="neo"].cluster rect, [data-look="neo"].node polygon {
|
|
85
|
+
stroke: ${r.useGradient?"url("+i+"-gradient)":r.nodeBorder};
|
|
86
|
+
filter: ${r.dropShadow?r.dropShadow.replace("url(#drop-shadow)",`url(${i}-drop-shadow)`):"none"};
|
|
87
|
+
}
|
|
88
|
+
[data-look="neo"].swimlane.cluster rect {
|
|
89
|
+
filter: none;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
[data-look="neo"].node path {
|
|
94
|
+
stroke: ${r.useGradient?"url("+i+"-gradient)":r.nodeBorder};
|
|
95
|
+
stroke-width: ${r.strokeWidth??1}px;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
[data-look="neo"].node .outer-path {
|
|
99
|
+
filter: ${r.dropShadow?r.dropShadow.replace("url(#drop-shadow)",`url(${i}-drop-shadow)`):"none"};
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
[data-look="neo"].node .neo-line path {
|
|
103
|
+
stroke: ${r.nodeBorder};
|
|
104
|
+
filter: none;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
[data-look="neo"].node circle{
|
|
108
|
+
stroke: ${r.useGradient?"url("+i+"-gradient)":r.nodeBorder};
|
|
109
|
+
filter: ${r.dropShadow?r.dropShadow.replace("url(#drop-shadow)",`url(${i}-drop-shadow)`):"none"};
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
[data-look="neo"].node circle .state-start{
|
|
113
|
+
fill: #000000;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
[data-look="neo"].icon-shape .icon {
|
|
117
|
+
fill: ${r.useGradient?"url("+i+"-gradient)":r.nodeBorder};
|
|
118
|
+
filter: ${r.dropShadow?r.dropShadow.replace("url(#drop-shadow)",`url(${i}-drop-shadow)`):"none"};
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
[data-look="neo"].icon-shape .icon-neo path {
|
|
122
|
+
stroke: ${r.useGradient?"url("+i+"-gradient)":r.nodeBorder};
|
|
123
|
+
filter: ${r.dropShadow?r.dropShadow.replace("url(#drop-shadow)",`url(${i}-drop-shadow)`):"none"};
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
${t}
|
|
127
|
+
`},"getStyles"),mb=p((e,t)=>{t!==void 0&&(Mo[e]=t)},"addStylesForDiagram"),yb=gb,Nf={};Fx(Nf,{clear:()=>xb,getAccDescription:()=>wb,getAccTitle:()=>bb,getDiagramTitle:()=>_b,setAccDescription:()=>kb,setAccTitle:()=>Cb,setDiagramTitle:()=>Tb});var ql="",zl="",Wl="",Hl=p(e=>ze(e,Jt()),"sanitizeText"),xb=p(()=>{ql="",Wl="",zl=""},"clear"),Cb=p(e=>{ql=Hl(e).replace(/^\s+/g,"")},"setAccTitle"),bb=p(()=>ql,"getAccTitle"),kb=p(e=>{Wl=Hl(e).replace(/\n\s+/g,`
|
|
128
|
+
`)},"setAccDescription"),wb=p(()=>Wl,"getAccDescription"),Tb=p(e=>{zl=Hl(e)},"setDiagramTitle"),_b=p(()=>zl,"getDiagramTitle"),Yc=N,Sb=Rl,Wt=Jt,Z5=Lf,K5=Vi,Yl=p(e=>ze(e,Wt()),"sanitizeText"),vb=pb,Bb=p(()=>Nf,"getCommonDb"),Uo={},Go=p((e,t,r)=>{var i;Uo[e]&&Yc.warn(`Diagram with id ${e} already registered. Overwriting.`),Uo[e]=t,r&&$f(e,r),mb(e,t.styles),(i=t.injectUtils)==null||i.call(t,Yc,Sb,Wt,Yl,vb,Bb(),()=>{})},"registerDiagram"),tl=p(e=>{if(e in Uo)return Uo[e];throw new Lb(e)},"getDiagram"),ji,Lb=(ji=class extends Error{constructor(t){super(`Diagram ${t} not found.`)}},p(ji,"DiagramNotFoundError"),ji),Fb={value:()=>{}};function qf(){for(var e=0,t=arguments.length,r={},i;e<t;++e){if(!(i=arguments[e]+"")||i in r||/[\s.]/.test(i))throw new Error("illegal type: "+i);r[i]=[]}return new $o(r)}function $o(e){this._=e}function Ab(e,t){return e.trim().split(/^|\s+/).map(function(r){var i="",s=r.indexOf(".");if(s>=0&&(i=r.slice(s+1),r=r.slice(0,s)),r&&!t.hasOwnProperty(r))throw new Error("unknown type: "+r);return{type:r,name:i}})}$o.prototype=qf.prototype={constructor:$o,on:function(e,t){var r=this._,i=Ab(e+"",r),s,o=-1,a=i.length;if(arguments.length<2){for(;++o<a;)if((s=(e=i[o]).type)&&(s=Eb(r[s],e.name)))return s;return}if(t!=null&&typeof t!="function")throw new Error("invalid callback: "+t);for(;++o<a;)if(s=(e=i[o]).type)r[s]=jc(r[s],e.name,t);else if(t==null)for(s in r)r[s]=jc(r[s],e.name,null);return this},copy:function(){var e={},t=this._;for(var r in t)e[r]=t[r].slice();return new $o(e)},call:function(e,t){if((s=arguments.length-2)>0)for(var r=new Array(s),i=0,s,o;i<s;++i)r[i]=arguments[i+2];if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(o=this._[e],i=0,s=o.length;i<s;++i)o[i].value.apply(t,r)},apply:function(e,t,r){if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(var i=this._[e],s=0,o=i.length;s<o;++s)i[s].value.apply(t,r)}};function Eb(e,t){for(var r=0,i=e.length,s;r<i;++r)if((s=e[r]).name===t)return s.value}function jc(e,t,r){for(var i=0,s=e.length;i<s;++i)if(e[i].name===t){e[i]=Fb,e=e.slice(0,i).concat(e.slice(i+1));break}return r!=null&&e.push({name:t,value:r}),e}var el="http://www.w3.org/1999/xhtml";const Uc={svg:"http://www.w3.org/2000/svg",xhtml:el,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function ya(e){var t=e+="",r=t.indexOf(":");return r>=0&&(t=e.slice(0,r))!=="xmlns"&&(e=e.slice(r+1)),Uc.hasOwnProperty(t)?{space:Uc[t],local:e}:e}function Mb(e){return function(){var t=this.ownerDocument,r=this.namespaceURI;return r===el&&t.documentElement.namespaceURI===el?t.createElement(e):t.createElementNS(r,e)}}function $b(e){return function(){return this.ownerDocument.createElementNS(e.space,e.local)}}function zf(e){var t=ya(e);return(t.local?$b:Mb)(t)}function Ob(){}function jl(e){return e==null?Ob:function(){return this.querySelector(e)}}function Db(e){typeof e!="function"&&(e=jl(e));for(var t=this._groups,r=t.length,i=new Array(r),s=0;s<r;++s)for(var o=t[s],a=o.length,n=i[s]=new Array(a),l,c,h=0;h<a;++h)(l=o[h])&&(c=e.call(l,l.__data__,h,o))&&("__data__"in l&&(c.__data__=l.__data__),n[h]=c);return new Ne(i,this._parents)}function Ib(e){return e==null?[]:Array.isArray(e)?e:Array.from(e)}function Pb(){return[]}function Wf(e){return e==null?Pb:function(){return this.querySelectorAll(e)}}function Rb(e){return function(){return Ib(e.apply(this,arguments))}}function Nb(e){typeof e=="function"?e=Rb(e):e=Wf(e);for(var t=this._groups,r=t.length,i=[],s=[],o=0;o<r;++o)for(var a=t[o],n=a.length,l,c=0;c<n;++c)(l=a[c])&&(i.push(e.call(l,l.__data__,c,a)),s.push(l));return new Ne(i,s)}function Hf(e){return function(){return this.matches(e)}}function Yf(e){return function(t){return t.matches(e)}}var qb=Array.prototype.find;function zb(e){return function(){return qb.call(this.children,e)}}function Wb(){return this.firstElementChild}function Hb(e){return this.select(e==null?Wb:zb(typeof e=="function"?e:Yf(e)))}var Yb=Array.prototype.filter;function jb(){return Array.from(this.children)}function Ub(e){return function(){return Yb.call(this.children,e)}}function Gb(e){return this.selectAll(e==null?jb:Ub(typeof e=="function"?e:Yf(e)))}function Xb(e){typeof e!="function"&&(e=Hf(e));for(var t=this._groups,r=t.length,i=new Array(r),s=0;s<r;++s)for(var o=t[s],a=o.length,n=i[s]=[],l,c=0;c<a;++c)(l=o[c])&&e.call(l,l.__data__,c,o)&&n.push(l);return new Ne(i,this._parents)}function jf(e){return new Array(e.length)}function Vb(){return new Ne(this._enter||this._groups.map(jf),this._parents)}function Xo(e,t){this.ownerDocument=e.ownerDocument,this.namespaceURI=e.namespaceURI,this._next=null,this._parent=e,this.__data__=t}Xo.prototype={constructor:Xo,appendChild:function(e){return this._parent.insertBefore(e,this._next)},insertBefore:function(e,t){return this._parent.insertBefore(e,t)},querySelector:function(e){return this._parent.querySelector(e)},querySelectorAll:function(e){return this._parent.querySelectorAll(e)}};function Zb(e){return function(){return e}}function Kb(e,t,r,i,s,o){for(var a=0,n,l=t.length,c=o.length;a<c;++a)(n=t[a])?(n.__data__=o[a],i[a]=n):r[a]=new Xo(e,o[a]);for(;a<l;++a)(n=t[a])&&(s[a]=n)}function Qb(e,t,r,i,s,o,a){var n,l,c=new Map,h=t.length,u=o.length,d=new Array(h),f;for(n=0;n<h;++n)(l=t[n])&&(d[n]=f=a.call(l,l.__data__,n,t)+"",c.has(f)?s[n]=l:c.set(f,l));for(n=0;n<u;++n)f=a.call(e,o[n],n,o)+"",(l=c.get(f))?(i[n]=l,l.__data__=o[n],c.delete(f)):r[n]=new Xo(e,o[n]);for(n=0;n<h;++n)(l=t[n])&&c.get(d[n])===l&&(s[n]=l)}function Jb(e){return e.__data__}function t1(e,t){if(!arguments.length)return Array.from(this,Jb);var r=t?Qb:Kb,i=this._parents,s=this._groups;typeof e!="function"&&(e=Zb(e));for(var o=s.length,a=new Array(o),n=new Array(o),l=new Array(o),c=0;c<o;++c){var h=i[c],u=s[c],d=u.length,f=e1(e.call(h,h&&h.__data__,c,i)),m=f.length,y=n[c]=new Array(m),C=a[c]=new Array(m),x=l[c]=new Array(d);r(h,u,y,C,x,f,t);for(var b=0,w=0,_,v;b<m;++b)if(_=y[b]){for(b>=w&&(w=b+1);!(v=C[w])&&++w<m;);_._next=v||null}}return a=new Ne(a,i),a._enter=n,a._exit=l,a}function e1(e){return typeof e=="object"&&"length"in e?e:Array.from(e)}function r1(){return new Ne(this._exit||this._groups.map(jf),this._parents)}function i1(e,t,r){var i=this.enter(),s=this,o=this.exit();return typeof e=="function"?(i=e(i),i&&(i=i.selection())):i=i.append(e+""),t!=null&&(s=t(s),s&&(s=s.selection())),r==null?o.remove():r(o),i&&s?i.merge(s).order():s}function s1(e){for(var t=e.selection?e.selection():e,r=this._groups,i=t._groups,s=r.length,o=i.length,a=Math.min(s,o),n=new Array(s),l=0;l<a;++l)for(var c=r[l],h=i[l],u=c.length,d=n[l]=new Array(u),f,m=0;m<u;++m)(f=c[m]||h[m])&&(d[m]=f);for(;l<s;++l)n[l]=r[l];return new Ne(n,this._parents)}function o1(){for(var e=this._groups,t=-1,r=e.length;++t<r;)for(var i=e[t],s=i.length-1,o=i[s],a;--s>=0;)(a=i[s])&&(o&&a.compareDocumentPosition(o)^4&&o.parentNode.insertBefore(a,o),o=a);return this}function a1(e){e||(e=n1);function t(u,d){return u&&d?e(u.__data__,d.__data__):!u-!d}for(var r=this._groups,i=r.length,s=new Array(i),o=0;o<i;++o){for(var a=r[o],n=a.length,l=s[o]=new Array(n),c,h=0;h<n;++h)(c=a[h])&&(l[h]=c);l.sort(t)}return new Ne(s,this._parents).order()}function n1(e,t){return e<t?-1:e>t?1:e>=t?0:NaN}function l1(){var e=arguments[0];return arguments[0]=this,e.apply(null,arguments),this}function h1(){return Array.from(this)}function c1(){for(var e=this._groups,t=0,r=e.length;t<r;++t)for(var i=e[t],s=0,o=i.length;s<o;++s){var a=i[s];if(a)return a}return null}function u1(){let e=0;for(const t of this)++e;return e}function d1(){return!this.node()}function f1(e){for(var t=this._groups,r=0,i=t.length;r<i;++r)for(var s=t[r],o=0,a=s.length,n;o<a;++o)(n=s[o])&&e.call(n,n.__data__,o,s);return this}function p1(e){return function(){this.removeAttribute(e)}}function g1(e){return function(){this.removeAttributeNS(e.space,e.local)}}function m1(e,t){return function(){this.setAttribute(e,t)}}function y1(e,t){return function(){this.setAttributeNS(e.space,e.local,t)}}function x1(e,t){return function(){var r=t.apply(this,arguments);r==null?this.removeAttribute(e):this.setAttribute(e,r)}}function C1(e,t){return function(){var r=t.apply(this,arguments);r==null?this.removeAttributeNS(e.space,e.local):this.setAttributeNS(e.space,e.local,r)}}function b1(e,t){var r=ya(e);if(arguments.length<2){var i=this.node();return r.local?i.getAttributeNS(r.space,r.local):i.getAttribute(r)}return this.each((t==null?r.local?g1:p1:typeof t=="function"?r.local?C1:x1:r.local?y1:m1)(r,t))}function Uf(e){return e.ownerDocument&&e.ownerDocument.defaultView||e.document&&e||e.defaultView}function k1(e){return function(){this.style.removeProperty(e)}}function w1(e,t,r){return function(){this.style.setProperty(e,t,r)}}function T1(e,t,r){return function(){var i=t.apply(this,arguments);i==null?this.style.removeProperty(e):this.style.setProperty(e,i,r)}}function _1(e,t,r){return arguments.length>1?this.each((t==null?k1:typeof t=="function"?T1:w1)(e,t,r??"")):Zi(this.node(),e)}function Zi(e,t){return e.style.getPropertyValue(t)||Uf(e).getComputedStyle(e,null).getPropertyValue(t)}function S1(e){return function(){delete this[e]}}function v1(e,t){return function(){this[e]=t}}function B1(e,t){return function(){var r=t.apply(this,arguments);r==null?delete this[e]:this[e]=r}}function L1(e,t){return arguments.length>1?this.each((t==null?S1:typeof t=="function"?B1:v1)(e,t)):this.node()[e]}function Gf(e){return e.trim().split(/^|\s+/)}function Ul(e){return e.classList||new Xf(e)}function Xf(e){this._node=e,this._names=Gf(e.getAttribute("class")||"")}Xf.prototype={add:function(e){var t=this._names.indexOf(e);t<0&&(this._names.push(e),this._node.setAttribute("class",this._names.join(" ")))},remove:function(e){var t=this._names.indexOf(e);t>=0&&(this._names.splice(t,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(e){return this._names.indexOf(e)>=0}};function Vf(e,t){for(var r=Ul(e),i=-1,s=t.length;++i<s;)r.add(t[i])}function Zf(e,t){for(var r=Ul(e),i=-1,s=t.length;++i<s;)r.remove(t[i])}function F1(e){return function(){Vf(this,e)}}function A1(e){return function(){Zf(this,e)}}function E1(e,t){return function(){(t.apply(this,arguments)?Vf:Zf)(this,e)}}function M1(e,t){var r=Gf(e+"");if(arguments.length<2){for(var i=Ul(this.node()),s=-1,o=r.length;++s<o;)if(!i.contains(r[s]))return!1;return!0}return this.each((typeof t=="function"?E1:t?F1:A1)(r,t))}function $1(){this.textContent=""}function O1(e){return function(){this.textContent=e}}function D1(e){return function(){var t=e.apply(this,arguments);this.textContent=t??""}}function I1(e){return arguments.length?this.each(e==null?$1:(typeof e=="function"?D1:O1)(e)):this.node().textContent}function P1(){this.innerHTML=""}function R1(e){return function(){this.innerHTML=e}}function N1(e){return function(){var t=e.apply(this,arguments);this.innerHTML=t??""}}function q1(e){return arguments.length?this.each(e==null?P1:(typeof e=="function"?N1:R1)(e)):this.node().innerHTML}function z1(){this.nextSibling&&this.parentNode.appendChild(this)}function W1(){return this.each(z1)}function H1(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function Y1(){return this.each(H1)}function j1(e){var t=typeof e=="function"?e:zf(e);return this.select(function(){return this.appendChild(t.apply(this,arguments))})}function U1(){return null}function G1(e,t){var r=typeof e=="function"?e:zf(e),i=t==null?U1:typeof t=="function"?t:jl(t);return this.select(function(){return this.insertBefore(r.apply(this,arguments),i.apply(this,arguments)||null)})}function X1(){var e=this.parentNode;e&&e.removeChild(this)}function V1(){return this.each(X1)}function Z1(){var e=this.cloneNode(!1),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function K1(){var e=this.cloneNode(!0),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function Q1(e){return this.select(e?K1:Z1)}function J1(e){return arguments.length?this.property("__data__",e):this.node().__data__}function tk(e){return function(t){e.call(this,t,this.__data__)}}function ek(e){return e.trim().split(/^|\s+/).map(function(t){var r="",i=t.indexOf(".");return i>=0&&(r=t.slice(i+1),t=t.slice(0,i)),{type:t,name:r}})}function rk(e){return function(){var t=this.__on;if(t){for(var r=0,i=-1,s=t.length,o;r<s;++r)o=t[r],(!e.type||o.type===e.type)&&o.name===e.name?this.removeEventListener(o.type,o.listener,o.options):t[++i]=o;++i?t.length=i:delete this.__on}}}function ik(e,t,r){return function(){var i=this.__on,s,o=tk(t);if(i){for(var a=0,n=i.length;a<n;++a)if((s=i[a]).type===e.type&&s.name===e.name){this.removeEventListener(s.type,s.listener,s.options),this.addEventListener(s.type,s.listener=o,s.options=r),s.value=t;return}}this.addEventListener(e.type,o,r),s={type:e.type,name:e.name,value:t,listener:o,options:r},i?i.push(s):this.__on=[s]}}function sk(e,t,r){var i=ek(e+""),s,o=i.length,a;if(arguments.length<2){var n=this.node().__on;if(n){for(var l=0,c=n.length,h;l<c;++l)for(s=0,h=n[l];s<o;++s)if((a=i[s]).type===h.type&&a.name===h.name)return h.value}return}for(n=t?ik:rk,s=0;s<o;++s)this.each(n(i[s],t,r));return this}function Kf(e,t,r){var i=Uf(e),s=i.CustomEvent;typeof s=="function"?s=new s(t,r):(s=i.document.createEvent("Event"),r?(s.initEvent(t,r.bubbles,r.cancelable),s.detail=r.detail):s.initEvent(t,!1,!1)),e.dispatchEvent(s)}function ok(e,t){return function(){return Kf(this,e,t)}}function ak(e,t){return function(){return Kf(this,e,t.apply(this,arguments))}}function nk(e,t){return this.each((typeof t=="function"?ak:ok)(e,t))}function*lk(){for(var e=this._groups,t=0,r=e.length;t<r;++t)for(var i=e[t],s=0,o=i.length,a;s<o;++s)(a=i[s])&&(yield a)}var Qf=[null];function Ne(e,t){this._groups=e,this._parents=t}function Js(){return new Ne([[document.documentElement]],Qf)}function hk(){return this}Ne.prototype=Js.prototype={constructor:Ne,select:Db,selectAll:Nb,selectChild:Hb,selectChildren:Gb,filter:Xb,data:t1,enter:Vb,exit:r1,join:i1,merge:s1,selection:hk,order:o1,sort:a1,call:l1,nodes:h1,node:c1,size:u1,empty:d1,each:f1,attr:b1,style:_1,property:L1,classed:M1,text:I1,html:q1,raise:W1,lower:Y1,append:j1,insert:G1,remove:V1,clone:Q1,datum:J1,on:sk,dispatch:nk,[Symbol.iterator]:lk};function Pt(e){return typeof e=="string"?new Ne([[document.querySelector(e)]],[document.documentElement]):new Ne([[e]],Qf)}function Gl(e,t,r){e.prototype=t.prototype=r,r.constructor=e}function Jf(e,t){var r=Object.create(e.prototype);for(var i in t)r[i]=t[i];return r}function to(){}var qs=.7,Vo=1/qs,Ai="\\s*([+-]?\\d+)\\s*",zs="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",hr="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",ck=/^#([0-9a-f]{3,8})$/,uk=new RegExp(`^rgb\\(${Ai},${Ai},${Ai}\\)$`),dk=new RegExp(`^rgb\\(${hr},${hr},${hr}\\)$`),fk=new RegExp(`^rgba\\(${Ai},${Ai},${Ai},${zs}\\)$`),pk=new RegExp(`^rgba\\(${hr},${hr},${hr},${zs}\\)$`),gk=new RegExp(`^hsl\\(${zs},${hr},${hr}\\)$`),mk=new RegExp(`^hsla\\(${zs},${hr},${hr},${zs}\\)$`),Gc={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};Gl(to,Ws,{copy(e){return Object.assign(new this.constructor,this,e)},displayable(){return this.rgb().displayable()},hex:Xc,formatHex:Xc,formatHex8:yk,formatHsl:xk,formatRgb:Vc,toString:Vc});function Xc(){return this.rgb().formatHex()}function yk(){return this.rgb().formatHex8()}function xk(){return tp(this).formatHsl()}function Vc(){return this.rgb().formatRgb()}function Ws(e){var t,r;return e=(e+"").trim().toLowerCase(),(t=ck.exec(e))?(r=t[1].length,t=parseInt(t[1],16),r===6?Zc(t):r===3?new Me(t>>8&15|t>>4&240,t>>4&15|t&240,(t&15)<<4|t&15,1):r===8?po(t>>24&255,t>>16&255,t>>8&255,(t&255)/255):r===4?po(t>>12&15|t>>8&240,t>>8&15|t>>4&240,t>>4&15|t&240,((t&15)<<4|t&15)/255):null):(t=uk.exec(e))?new Me(t[1],t[2],t[3],1):(t=dk.exec(e))?new Me(t[1]*255/100,t[2]*255/100,t[3]*255/100,1):(t=fk.exec(e))?po(t[1],t[2],t[3],t[4]):(t=pk.exec(e))?po(t[1]*255/100,t[2]*255/100,t[3]*255/100,t[4]):(t=gk.exec(e))?Jc(t[1],t[2]/100,t[3]/100,1):(t=mk.exec(e))?Jc(t[1],t[2]/100,t[3]/100,t[4]):Gc.hasOwnProperty(e)?Zc(Gc[e]):e==="transparent"?new Me(NaN,NaN,NaN,0):null}function Zc(e){return new Me(e>>16&255,e>>8&255,e&255,1)}function po(e,t,r,i){return i<=0&&(e=t=r=NaN),new Me(e,t,r,i)}function Ck(e){return e instanceof to||(e=Ws(e)),e?(e=e.rgb(),new Me(e.r,e.g,e.b,e.opacity)):new Me}function rl(e,t,r,i){return arguments.length===1?Ck(e):new Me(e,t,r,i??1)}function Me(e,t,r,i){this.r=+e,this.g=+t,this.b=+r,this.opacity=+i}Gl(Me,rl,Jf(to,{brighter(e){return e=e==null?Vo:Math.pow(Vo,e),new Me(this.r*e,this.g*e,this.b*e,this.opacity)},darker(e){return e=e==null?qs:Math.pow(qs,e),new Me(this.r*e,this.g*e,this.b*e,this.opacity)},rgb(){return this},clamp(){return new Me(ri(this.r),ri(this.g),ri(this.b),Zo(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:Kc,formatHex:Kc,formatHex8:bk,formatRgb:Qc,toString:Qc}));function Kc(){return`#${ti(this.r)}${ti(this.g)}${ti(this.b)}`}function bk(){return`#${ti(this.r)}${ti(this.g)}${ti(this.b)}${ti((isNaN(this.opacity)?1:this.opacity)*255)}`}function Qc(){const e=Zo(this.opacity);return`${e===1?"rgb(":"rgba("}${ri(this.r)}, ${ri(this.g)}, ${ri(this.b)}${e===1?")":`, ${e})`}`}function Zo(e){return isNaN(e)?1:Math.max(0,Math.min(1,e))}function ri(e){return Math.max(0,Math.min(255,Math.round(e)||0))}function ti(e){return e=ri(e),(e<16?"0":"")+e.toString(16)}function Jc(e,t,r,i){return i<=0?e=t=r=NaN:r<=0||r>=1?e=t=NaN:t<=0&&(e=NaN),new Ve(e,t,r,i)}function tp(e){if(e instanceof Ve)return new Ve(e.h,e.s,e.l,e.opacity);if(e instanceof to||(e=Ws(e)),!e)return new Ve;if(e instanceof Ve)return e;e=e.rgb();var t=e.r/255,r=e.g/255,i=e.b/255,s=Math.min(t,r,i),o=Math.max(t,r,i),a=NaN,n=o-s,l=(o+s)/2;return n?(t===o?a=(r-i)/n+(r<i)*6:r===o?a=(i-t)/n+2:a=(t-r)/n+4,n/=l<.5?o+s:2-o-s,a*=60):n=l>0&&l<1?0:a,new Ve(a,n,l,e.opacity)}function kk(e,t,r,i){return arguments.length===1?tp(e):new Ve(e,t,r,i??1)}function Ve(e,t,r,i){this.h=+e,this.s=+t,this.l=+r,this.opacity=+i}Gl(Ve,kk,Jf(to,{brighter(e){return e=e==null?Vo:Math.pow(Vo,e),new Ve(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=e==null?qs:Math.pow(qs,e),new Ve(this.h,this.s,this.l*e,this.opacity)},rgb(){var e=this.h%360+(this.h<0)*360,t=isNaN(e)||isNaN(this.s)?0:this.s,r=this.l,i=r+(r<.5?r:1-r)*t,s=2*r-i;return new Me(rn(e>=240?e-240:e+120,s,i),rn(e,s,i),rn(e<120?e+240:e-120,s,i),this.opacity)},clamp(){return new Ve(tu(this.h),go(this.s),go(this.l),Zo(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const e=Zo(this.opacity);return`${e===1?"hsl(":"hsla("}${tu(this.h)}, ${go(this.s)*100}%, ${go(this.l)*100}%${e===1?")":`, ${e})`}`}}));function tu(e){return e=(e||0)%360,e<0?e+360:e}function go(e){return Math.max(0,Math.min(1,e||0))}function rn(e,t,r){return(e<60?t+(r-t)*e/60:e<180?r:e<240?t+(r-t)*(240-e)/60:t)*255}const Xl=e=>()=>e;function ep(e,t){return function(r){return e+r*t}}function wk(e,t,r){return e=Math.pow(e,r),t=Math.pow(t,r)-e,r=1/r,function(i){return Math.pow(e+i*t,r)}}function Q5(e,t){var r=t-e;return r?ep(e,r>180||r<-180?r-360*Math.round(r/360):r):Xl(isNaN(e)?t:e)}function Tk(e){return(e=+e)==1?rp:function(t,r){return r-t?wk(t,r,e):Xl(isNaN(t)?r:t)}}function rp(e,t){var r=t-e;return r?ep(e,r):Xl(isNaN(e)?t:e)}const eu=(function e(t){var r=Tk(t);function i(s,o){var a=r((s=rl(s)).r,(o=rl(o)).r),n=r(s.g,o.g),l=r(s.b,o.b),c=rp(s.opacity,o.opacity);return function(h){return s.r=a(h),s.g=n(h),s.b=l(h),s.opacity=c(h),s+""}}return i.gamma=e,i})(1);function Pr(e,t){return e=+e,t=+t,function(r){return e*(1-r)+t*r}}var il=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,sn=new RegExp(il.source,"g");function _k(e){return function(){return e}}function Sk(e){return function(t){return e(t)+""}}function vk(e,t){var r=il.lastIndex=sn.lastIndex=0,i,s,o,a=-1,n=[],l=[];for(e=e+"",t=t+"";(i=il.exec(e))&&(s=sn.exec(t));)(o=s.index)>r&&(o=t.slice(r,o),n[a]?n[a]+=o:n[++a]=o),(i=i[0])===(s=s[0])?n[a]?n[a]+=s:n[++a]=s:(n[++a]=null,l.push({i:a,x:Pr(i,s)})),r=sn.lastIndex;return r<t.length&&(o=t.slice(r),n[a]?n[a]+=o:n[++a]=o),n.length<2?l[0]?Sk(l[0].x):_k(t):(t=l.length,function(c){for(var h=0,u;h<t;++h)n[(u=l[h]).i]=u.x(c);return n.join("")})}var ru=180/Math.PI,sl={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function ip(e,t,r,i,s,o){var a,n,l;return(a=Math.sqrt(e*e+t*t))&&(e/=a,t/=a),(l=e*r+t*i)&&(r-=e*l,i-=t*l),(n=Math.sqrt(r*r+i*i))&&(r/=n,i/=n,l/=n),e*i<t*r&&(e=-e,t=-t,l=-l,a=-a),{translateX:s,translateY:o,rotate:Math.atan2(t,e)*ru,skewX:Math.atan(l)*ru,scaleX:a,scaleY:n}}var mo;function Bk(e){const t=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(e+"");return t.isIdentity?sl:ip(t.a,t.b,t.c,t.d,t.e,t.f)}function Lk(e){return e==null||(mo||(mo=document.createElementNS("http://www.w3.org/2000/svg","g")),mo.setAttribute("transform",e),!(e=mo.transform.baseVal.consolidate()))?sl:(e=e.matrix,ip(e.a,e.b,e.c,e.d,e.e,e.f))}function sp(e,t,r,i){function s(c){return c.length?c.pop()+" ":""}function o(c,h,u,d,f,m){if(c!==u||h!==d){var y=f.push("translate(",null,t,null,r);m.push({i:y-4,x:Pr(c,u)},{i:y-2,x:Pr(h,d)})}else(u||d)&&f.push("translate("+u+t+d+r)}function a(c,h,u,d){c!==h?(c-h>180?h+=360:h-c>180&&(c+=360),d.push({i:u.push(s(u)+"rotate(",null,i)-2,x:Pr(c,h)})):h&&u.push(s(u)+"rotate("+h+i)}function n(c,h,u,d){c!==h?d.push({i:u.push(s(u)+"skewX(",null,i)-2,x:Pr(c,h)}):h&&u.push(s(u)+"skewX("+h+i)}function l(c,h,u,d,f,m){if(c!==u||h!==d){var y=f.push(s(f)+"scale(",null,",",null,")");m.push({i:y-4,x:Pr(c,u)},{i:y-2,x:Pr(h,d)})}else(u!==1||d!==1)&&f.push(s(f)+"scale("+u+","+d+")")}return function(c,h){var u=[],d=[];return c=e(c),h=e(h),o(c.translateX,c.translateY,h.translateX,h.translateY,u,d),a(c.rotate,h.rotate,u,d),n(c.skewX,h.skewX,u,d),l(c.scaleX,c.scaleY,h.scaleX,h.scaleY,u,d),c=h=null,function(f){for(var m=-1,y=d.length,C;++m<y;)u[(C=d[m]).i]=C.x(f);return u.join("")}}}var Fk=sp(Bk,"px, ","px)","deg)"),Ak=sp(Lk,", ",")",")"),Ki=0,Ts=0,fs=0,op=1e3,Ko,_s,Qo=0,ai=0,xa=0,Hs=typeof performance=="object"&&performance.now?performance:Date,ap=typeof window=="object"&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(e){setTimeout(e,17)};function Vl(){return ai||(ap(Ek),ai=Hs.now()+xa)}function Ek(){ai=0}function Jo(){this._call=this._time=this._next=null}Jo.prototype=np.prototype={constructor:Jo,restart:function(e,t,r){if(typeof e!="function")throw new TypeError("callback is not a function");r=(r==null?Vl():+r)+(t==null?0:+t),!this._next&&_s!==this&&(_s?_s._next=this:Ko=this,_s=this),this._call=e,this._time=r,ol()},stop:function(){this._call&&(this._call=null,this._time=1/0,ol())}};function np(e,t,r){var i=new Jo;return i.restart(e,t,r),i}function Mk(){Vl(),++Ki;for(var e=Ko,t;e;)(t=ai-e._time)>=0&&e._call.call(void 0,t),e=e._next;--Ki}function iu(){ai=(Qo=Hs.now())+xa,Ki=Ts=0;try{Mk()}finally{Ki=0,Ok(),ai=0}}function $k(){var e=Hs.now(),t=e-Qo;t>op&&(xa-=t,Qo=e)}function Ok(){for(var e,t=Ko,r,i=1/0;t;)t._call?(i>t._time&&(i=t._time),e=t,t=t._next):(r=t._next,t._next=null,t=e?e._next=r:Ko=r);_s=e,ol(i)}function ol(e){if(!Ki){Ts&&(Ts=clearTimeout(Ts));var t=e-ai;t>24?(e<1/0&&(Ts=setTimeout(iu,e-Hs.now()-xa)),fs&&(fs=clearInterval(fs))):(fs||(Qo=Hs.now(),fs=setInterval($k,op)),Ki=1,ap(iu))}}function su(e,t,r){var i=new Jo;return t=t==null?0:+t,i.restart(s=>{i.stop(),e(s+t)},t,r),i}var Dk=qf("start","end","cancel","interrupt"),Ik=[],lp=0,ou=1,al=2,Oo=3,au=4,nl=5,Do=6;function Ca(e,t,r,i,s,o){var a=e.__transition;if(!a)e.__transition={};else if(r in a)return;Pk(e,r,{name:t,index:i,group:s,on:Dk,tween:Ik,time:o.time,delay:o.delay,duration:o.duration,ease:o.ease,timer:null,state:lp})}function Zl(e,t){var r=Qe(e,t);if(r.state>lp)throw new Error("too late; already scheduled");return r}function gr(e,t){var r=Qe(e,t);if(r.state>Oo)throw new Error("too late; already running");return r}function Qe(e,t){var r=e.__transition;if(!r||!(r=r[t]))throw new Error("transition not found");return r}function Pk(e,t,r){var i=e.__transition,s;i[t]=r,r.timer=np(o,0,r.time);function o(c){r.state=ou,r.timer.restart(a,r.delay,r.time),r.delay<=c&&a(c-r.delay)}function a(c){var h,u,d,f;if(r.state!==ou)return l();for(h in i)if(f=i[h],f.name===r.name){if(f.state===Oo)return su(a);f.state===au?(f.state=Do,f.timer.stop(),f.on.call("interrupt",e,e.__data__,f.index,f.group),delete i[h]):+h<t&&(f.state=Do,f.timer.stop(),f.on.call("cancel",e,e.__data__,f.index,f.group),delete i[h])}if(su(function(){r.state===Oo&&(r.state=au,r.timer.restart(n,r.delay,r.time),n(c))}),r.state=al,r.on.call("start",e,e.__data__,r.index,r.group),r.state===al){for(r.state=Oo,s=new Array(d=r.tween.length),h=0,u=-1;h<d;++h)(f=r.tween[h].value.call(e,e.__data__,r.index,r.group))&&(s[++u]=f);s.length=u+1}}function n(c){for(var h=c<r.duration?r.ease.call(null,c/r.duration):(r.timer.restart(l),r.state=nl,1),u=-1,d=s.length;++u<d;)s[u].call(e,h);r.state===nl&&(r.on.call("end",e,e.__data__,r.index,r.group),l())}function l(){r.state=Do,r.timer.stop(),delete i[t];for(var c in i)return;delete e.__transition}}function Rk(e,t){var r=e.__transition,i,s,o=!0,a;if(r){t=t==null?null:t+"";for(a in r){if((i=r[a]).name!==t){o=!1;continue}s=i.state>al&&i.state<nl,i.state=Do,i.timer.stop(),i.on.call(s?"interrupt":"cancel",e,e.__data__,i.index,i.group),delete r[a]}o&&delete e.__transition}}function Nk(e){return this.each(function(){Rk(this,e)})}function qk(e,t){var r,i;return function(){var s=gr(this,e),o=s.tween;if(o!==r){i=r=o;for(var a=0,n=i.length;a<n;++a)if(i[a].name===t){i=i.slice(),i.splice(a,1);break}}s.tween=i}}function zk(e,t,r){var i,s;if(typeof r!="function")throw new Error;return function(){var o=gr(this,e),a=o.tween;if(a!==i){s=(i=a).slice();for(var n={name:t,value:r},l=0,c=s.length;l<c;++l)if(s[l].name===t){s[l]=n;break}l===c&&s.push(n)}o.tween=s}}function Wk(e,t){var r=this._id;if(e+="",arguments.length<2){for(var i=Qe(this.node(),r).tween,s=0,o=i.length,a;s<o;++s)if((a=i[s]).name===e)return a.value;return null}return this.each((t==null?qk:zk)(r,e,t))}function Kl(e,t,r){var i=e._id;return e.each(function(){var s=gr(this,i);(s.value||(s.value={}))[t]=r.apply(this,arguments)}),function(s){return Qe(s,i).value[t]}}function hp(e,t){var r;return(typeof t=="number"?Pr:t instanceof Ws?eu:(r=Ws(t))?(t=r,eu):vk)(e,t)}function Hk(e){return function(){this.removeAttribute(e)}}function Yk(e){return function(){this.removeAttributeNS(e.space,e.local)}}function jk(e,t,r){var i,s=r+"",o;return function(){var a=this.getAttribute(e);return a===s?null:a===i?o:o=t(i=a,r)}}function Uk(e,t,r){var i,s=r+"",o;return function(){var a=this.getAttributeNS(e.space,e.local);return a===s?null:a===i?o:o=t(i=a,r)}}function Gk(e,t,r){var i,s,o;return function(){var a,n=r(this),l;return n==null?void this.removeAttribute(e):(a=this.getAttribute(e),l=n+"",a===l?null:a===i&&l===s?o:(s=l,o=t(i=a,n)))}}function Xk(e,t,r){var i,s,o;return function(){var a,n=r(this),l;return n==null?void this.removeAttributeNS(e.space,e.local):(a=this.getAttributeNS(e.space,e.local),l=n+"",a===l?null:a===i&&l===s?o:(s=l,o=t(i=a,n)))}}function Vk(e,t){var r=ya(e),i=r==="transform"?Ak:hp;return this.attrTween(e,typeof t=="function"?(r.local?Xk:Gk)(r,i,Kl(this,"attr."+e,t)):t==null?(r.local?Yk:Hk)(r):(r.local?Uk:jk)(r,i,t))}function Zk(e,t){return function(r){this.setAttribute(e,t.call(this,r))}}function Kk(e,t){return function(r){this.setAttributeNS(e.space,e.local,t.call(this,r))}}function Qk(e,t){var r,i;function s(){var o=t.apply(this,arguments);return o!==i&&(r=(i=o)&&Kk(e,o)),r}return s._value=t,s}function Jk(e,t){var r,i;function s(){var o=t.apply(this,arguments);return o!==i&&(r=(i=o)&&Zk(e,o)),r}return s._value=t,s}function t2(e,t){var r="attr."+e;if(arguments.length<2)return(r=this.tween(r))&&r._value;if(t==null)return this.tween(r,null);if(typeof t!="function")throw new Error;var i=ya(e);return this.tween(r,(i.local?Qk:Jk)(i,t))}function e2(e,t){return function(){Zl(this,e).delay=+t.apply(this,arguments)}}function r2(e,t){return t=+t,function(){Zl(this,e).delay=t}}function i2(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?e2:r2)(t,e)):Qe(this.node(),t).delay}function s2(e,t){return function(){gr(this,e).duration=+t.apply(this,arguments)}}function o2(e,t){return t=+t,function(){gr(this,e).duration=t}}function a2(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?s2:o2)(t,e)):Qe(this.node(),t).duration}function n2(e,t){if(typeof t!="function")throw new Error;return function(){gr(this,e).ease=t}}function l2(e){var t=this._id;return arguments.length?this.each(n2(t,e)):Qe(this.node(),t).ease}function h2(e,t){return function(){var r=t.apply(this,arguments);if(typeof r!="function")throw new Error;gr(this,e).ease=r}}function c2(e){if(typeof e!="function")throw new Error;return this.each(h2(this._id,e))}function u2(e){typeof e!="function"&&(e=Hf(e));for(var t=this._groups,r=t.length,i=new Array(r),s=0;s<r;++s)for(var o=t[s],a=o.length,n=i[s]=[],l,c=0;c<a;++c)(l=o[c])&&e.call(l,l.__data__,c,o)&&n.push(l);return new vr(i,this._parents,this._name,this._id)}function d2(e){if(e._id!==this._id)throw new Error;for(var t=this._groups,r=e._groups,i=t.length,s=r.length,o=Math.min(i,s),a=new Array(i),n=0;n<o;++n)for(var l=t[n],c=r[n],h=l.length,u=a[n]=new Array(h),d,f=0;f<h;++f)(d=l[f]||c[f])&&(u[f]=d);for(;n<i;++n)a[n]=t[n];return new vr(a,this._parents,this._name,this._id)}function f2(e){return(e+"").trim().split(/^|\s+/).every(function(t){var r=t.indexOf(".");return r>=0&&(t=t.slice(0,r)),!t||t==="start"})}function p2(e,t,r){var i,s,o=f2(t)?Zl:gr;return function(){var a=o(this,e),n=a.on;n!==i&&(s=(i=n).copy()).on(t,r),a.on=s}}function g2(e,t){var r=this._id;return arguments.length<2?Qe(this.node(),r).on.on(e):this.each(p2(r,e,t))}function m2(e){return function(){var t=this.parentNode;for(var r in this.__transition)if(+r!==e)return;t&&t.removeChild(this)}}function y2(){return this.on("end.remove",m2(this._id))}function x2(e){var t=this._name,r=this._id;typeof e!="function"&&(e=jl(e));for(var i=this._groups,s=i.length,o=new Array(s),a=0;a<s;++a)for(var n=i[a],l=n.length,c=o[a]=new Array(l),h,u,d=0;d<l;++d)(h=n[d])&&(u=e.call(h,h.__data__,d,n))&&("__data__"in h&&(u.__data__=h.__data__),c[d]=u,Ca(c[d],t,r,d,c,Qe(h,r)));return new vr(o,this._parents,t,r)}function C2(e){var t=this._name,r=this._id;typeof e!="function"&&(e=Wf(e));for(var i=this._groups,s=i.length,o=[],a=[],n=0;n<s;++n)for(var l=i[n],c=l.length,h,u=0;u<c;++u)if(h=l[u]){for(var d=e.call(h,h.__data__,u,l),f,m=Qe(h,r),y=0,C=d.length;y<C;++y)(f=d[y])&&Ca(f,t,r,y,d,m);o.push(d),a.push(h)}return new vr(o,a,t,r)}var b2=Js.prototype.constructor;function k2(){return new b2(this._groups,this._parents)}function w2(e,t){var r,i,s;return function(){var o=Zi(this,e),a=(this.style.removeProperty(e),Zi(this,e));return o===a?null:o===r&&a===i?s:s=t(r=o,i=a)}}function cp(e){return function(){this.style.removeProperty(e)}}function T2(e,t,r){var i,s=r+"",o;return function(){var a=Zi(this,e);return a===s?null:a===i?o:o=t(i=a,r)}}function _2(e,t,r){var i,s,o;return function(){var a=Zi(this,e),n=r(this),l=n+"";return n==null&&(l=n=(this.style.removeProperty(e),Zi(this,e))),a===l?null:a===i&&l===s?o:(s=l,o=t(i=a,n))}}function S2(e,t){var r,i,s,o="style."+t,a="end."+o,n;return function(){var l=gr(this,e),c=l.on,h=l.value[o]==null?n||(n=cp(t)):void 0;(c!==r||s!==h)&&(i=(r=c).copy()).on(a,s=h),l.on=i}}function v2(e,t,r){var i=(e+="")=="transform"?Fk:hp;return t==null?this.styleTween(e,w2(e,i)).on("end.style."+e,cp(e)):typeof t=="function"?this.styleTween(e,_2(e,i,Kl(this,"style."+e,t))).each(S2(this._id,e)):this.styleTween(e,T2(e,i,t),r).on("end.style."+e,null)}function B2(e,t,r){return function(i){this.style.setProperty(e,t.call(this,i),r)}}function L2(e,t,r){var i,s;function o(){var a=t.apply(this,arguments);return a!==s&&(i=(s=a)&&B2(e,a,r)),i}return o._value=t,o}function F2(e,t,r){var i="style."+(e+="");if(arguments.length<2)return(i=this.tween(i))&&i._value;if(t==null)return this.tween(i,null);if(typeof t!="function")throw new Error;return this.tween(i,L2(e,t,r??""))}function A2(e){return function(){this.textContent=e}}function E2(e){return function(){var t=e(this);this.textContent=t??""}}function M2(e){return this.tween("text",typeof e=="function"?E2(Kl(this,"text",e)):A2(e==null?"":e+""))}function $2(e){return function(t){this.textContent=e.call(this,t)}}function O2(e){var t,r;function i(){var s=e.apply(this,arguments);return s!==r&&(t=(r=s)&&$2(s)),t}return i._value=e,i}function D2(e){var t="text";if(arguments.length<1)return(t=this.tween(t))&&t._value;if(e==null)return this.tween(t,null);if(typeof e!="function")throw new Error;return this.tween(t,O2(e))}function I2(){for(var e=this._name,t=this._id,r=up(),i=this._groups,s=i.length,o=0;o<s;++o)for(var a=i[o],n=a.length,l,c=0;c<n;++c)if(l=a[c]){var h=Qe(l,t);Ca(l,e,r,c,a,{time:h.time+h.delay+h.duration,delay:0,duration:h.duration,ease:h.ease})}return new vr(i,this._parents,e,r)}function P2(){var e,t,r=this,i=r._id,s=r.size();return new Promise(function(o,a){var n={value:a},l={value:function(){--s===0&&o()}};r.each(function(){var c=gr(this,i),h=c.on;h!==e&&(t=(e=h).copy(),t._.cancel.push(n),t._.interrupt.push(n),t._.end.push(l)),c.on=t}),s===0&&o()})}var R2=0;function vr(e,t,r,i){this._groups=e,this._parents=t,this._name=r,this._id=i}function up(){return++R2}var br=Js.prototype;vr.prototype={constructor:vr,select:x2,selectAll:C2,selectChild:br.selectChild,selectChildren:br.selectChildren,filter:u2,merge:d2,selection:k2,transition:I2,call:br.call,nodes:br.nodes,node:br.node,size:br.size,empty:br.empty,each:br.each,on:g2,attr:Vk,attrTween:t2,style:v2,styleTween:F2,text:M2,textTween:D2,remove:y2,tween:Wk,delay:i2,duration:a2,ease:l2,easeVarying:c2,end:P2,[Symbol.iterator]:br[Symbol.iterator]};function N2(e){return((e*=2)<=1?e*e*e:(e-=2)*e*e+2)/2}var q2={time:null,delay:0,duration:250,ease:N2};function z2(e,t){for(var r;!(r=e.__transition)||!(r=r[t]);)if(!(e=e.parentNode))throw new Error(`transition ${t} not found`);return r}function W2(e){var t,r;e instanceof vr?(t=e._id,e=e._name):(t=up(),(r=q2).time=Vl(),e=e==null?null:e+"");for(var i=this._groups,s=i.length,o=0;o<s;++o)for(var a=i[o],n=a.length,l,c=0;c<n;++c)(l=a[c])&&Ca(l,e,t,c,a,r||z2(l,t));return new vr(i,this._parents,e,t)}Js.prototype.interrupt=Nk;Js.prototype.transition=W2;const ll=Math.PI,hl=2*ll,Kr=1e-6,H2=hl-Kr;function dp(e){this._+=e[0];for(let t=1,r=e.length;t<r;++t)this._+=arguments[t]+e[t]}function Y2(e){let t=Math.floor(e);if(!(t>=0))throw new Error(`invalid digits: ${e}`);if(t>15)return dp;const r=10**t;return function(i){this._+=i[0];for(let s=1,o=i.length;s<o;++s)this._+=Math.round(arguments[s]*r)/r+i[s]}}class j2{constructor(t){this._x0=this._y0=this._x1=this._y1=null,this._="",this._append=t==null?dp:Y2(t)}moveTo(t,r){this._append`M${this._x0=this._x1=+t},${this._y0=this._y1=+r}`}closePath(){this._x1!==null&&(this._x1=this._x0,this._y1=this._y0,this._append`Z`)}lineTo(t,r){this._append`L${this._x1=+t},${this._y1=+r}`}quadraticCurveTo(t,r,i,s){this._append`Q${+t},${+r},${this._x1=+i},${this._y1=+s}`}bezierCurveTo(t,r,i,s,o,a){this._append`C${+t},${+r},${+i},${+s},${this._x1=+o},${this._y1=+a}`}arcTo(t,r,i,s,o){if(t=+t,r=+r,i=+i,s=+s,o=+o,o<0)throw new Error(`negative radius: ${o}`);let a=this._x1,n=this._y1,l=i-t,c=s-r,h=a-t,u=n-r,d=h*h+u*u;if(this._x1===null)this._append`M${this._x1=t},${this._y1=r}`;else if(d>Kr)if(!(Math.abs(u*l-c*h)>Kr)||!o)this._append`L${this._x1=t},${this._y1=r}`;else{let f=i-a,m=s-n,y=l*l+c*c,C=f*f+m*m,x=Math.sqrt(y),b=Math.sqrt(d),w=o*Math.tan((ll-Math.acos((y+d-C)/(2*x*b)))/2),_=w/b,v=w/x;Math.abs(_-1)>Kr&&this._append`L${t+_*h},${r+_*u}`,this._append`A${o},${o},0,0,${+(u*f>h*m)},${this._x1=t+v*l},${this._y1=r+v*c}`}}arc(t,r,i,s,o,a){if(t=+t,r=+r,i=+i,a=!!a,i<0)throw new Error(`negative radius: ${i}`);let n=i*Math.cos(s),l=i*Math.sin(s),c=t+n,h=r+l,u=1^a,d=a?s-o:o-s;this._x1===null?this._append`M${c},${h}`:(Math.abs(this._x1-c)>Kr||Math.abs(this._y1-h)>Kr)&&this._append`L${c},${h}`,i&&(d<0&&(d=d%hl+hl),d>H2?this._append`A${i},${i},0,1,${u},${t-n},${r-l}A${i},${i},0,1,${u},${this._x1=c},${this._y1=h}`:d>Kr&&this._append`A${i},${i},0,${+(d>=ll)},${u},${this._x1=t+i*Math.cos(o)},${this._y1=r+i*Math.sin(o)}`)}rect(t,r,i,s){this._append`M${this._x0=this._x1=+t},${this._y0=this._y1=+r}h${i=+i}v${+s}h${-i}Z`}toString(){return this._}}function Ci(e){return function(){return e}}const J5=Math.abs,t3=Math.atan2,e3=Math.cos,r3=Math.max,i3=Math.min,s3=Math.sin,o3=Math.sqrt,nu=1e-12,Ql=Math.PI,lu=Ql/2,a3=2*Ql;function n3(e){return e>1?0:e<-1?Ql:Math.acos(e)}function l3(e){return e>=1?lu:e<=-1?-lu:Math.asin(e)}function U2(e){let t=3;return e.digits=function(r){if(!arguments.length)return t;if(r==null)t=null;else{const i=Math.floor(r);if(!(i>=0))throw new RangeError(`invalid digits: ${r}`);t=i}return e},()=>new j2(t)}function G2(e){return typeof e=="object"&&"length"in e?e:Array.from(e)}function fp(e){this._context=e}fp.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2;default:this._context.lineTo(e,t);break}}};function Ds(e){return new fp(e)}function X2(e){return e[0]}function V2(e){return e[1]}function Z2(e,t){var r=Ci(!0),i=null,s=Ds,o=null,a=U2(n);e=typeof e=="function"?e:e===void 0?X2:Ci(e),t=typeof t=="function"?t:t===void 0?V2:Ci(t);function n(l){var c,h=(l=G2(l)).length,u,d=!1,f;for(i==null&&(o=s(f=a())),c=0;c<=h;++c)!(c<h&&r(u=l[c],c,l))===d&&((d=!d)?o.lineStart():o.lineEnd()),d&&o.point(+e(u,c,l),+t(u,c,l));if(f)return o=null,f+""||null}return n.x=function(l){return arguments.length?(e=typeof l=="function"?l:Ci(+l),n):e},n.y=function(l){return arguments.length?(t=typeof l=="function"?l:Ci(+l),n):t},n.defined=function(l){return arguments.length?(r=typeof l=="function"?l:Ci(!!l),n):r},n.curve=function(l){return arguments.length?(s=l,i!=null&&(o=s(i)),n):s},n.context=function(l){return arguments.length?(l==null?i=o=null:o=s(i=l),n):i},n}class pp{constructor(t,r){this._context=t,this._x=r}areaStart(){this._line=0}areaEnd(){this._line=NaN}lineStart(){this._point=0}lineEnd(){(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line}point(t,r){switch(t=+t,r=+r,this._point){case 0:{this._point=1,this._line?this._context.lineTo(t,r):this._context.moveTo(t,r);break}case 1:this._point=2;default:{this._x?this._context.bezierCurveTo(this._x0=(this._x0+t)/2,this._y0,this._x0,r,t,r):this._context.bezierCurveTo(this._x0,this._y0=(this._y0+r)/2,t,this._y0,t,r);break}}this._x0=t,this._y0=r}}function gp(e){return new pp(e,!0)}function mp(e){return new pp(e,!1)}function zr(){}function ta(e,t,r){e._context.bezierCurveTo((2*e._x0+e._x1)/3,(2*e._y0+e._y1)/3,(e._x0+2*e._x1)/3,(e._y0+2*e._y1)/3,(e._x0+4*e._x1+t)/6,(e._y0+4*e._y1+r)/6)}function ba(e){this._context=e}ba.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:ta(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1);break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:ta(this,e,t);break}this._x0=this._x1,this._x1=e,this._y0=this._y1,this._y1=t}};function cl(e){return new ba(e)}function yp(e){this._context=e}yp.prototype={areaStart:zr,areaEnd:zr,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:{this._context.moveTo(this._x2,this._y2),this._context.closePath();break}case 2:{this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break}case 3:{this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4);break}}},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._x2=e,this._y2=t;break;case 1:this._point=2,this._x3=e,this._y3=t;break;case 2:this._point=3,this._x4=e,this._y4=t,this._context.moveTo((this._x0+4*this._x1+e)/6,(this._y0+4*this._y1+t)/6);break;default:ta(this,e,t);break}this._x0=this._x1,this._x1=e,this._y0=this._y1,this._y1=t}};function K2(e){return new yp(e)}function xp(e){this._context=e}xp.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||this._line!==0&&this._point===3)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var r=(this._x0+4*this._x1+e)/6,i=(this._y0+4*this._y1+t)/6;this._line?this._context.lineTo(r,i):this._context.moveTo(r,i);break;case 3:this._point=4;default:ta(this,e,t);break}this._x0=this._x1,this._x1=e,this._y0=this._y1,this._y1=t}};function Q2(e){return new xp(e)}function Cp(e,t){this._basis=new ba(e),this._beta=t}Cp.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var e=this._x,t=this._y,r=e.length-1;if(r>0)for(var i=e[0],s=t[0],o=e[r]-i,a=t[r]-s,n=-1,l;++n<=r;)l=n/r,this._basis.point(this._beta*e[n]+(1-this._beta)*(i+l*o),this._beta*t[n]+(1-this._beta)*(s+l*a));this._x=this._y=null,this._basis.lineEnd()},point:function(e,t){this._x.push(+e),this._y.push(+t)}};const J2=(function e(t){function r(i){return t===1?new ba(i):new Cp(i,t)}return r.beta=function(i){return e(+i)},r})(.85);function ea(e,t,r){e._context.bezierCurveTo(e._x1+e._k*(e._x2-e._x0),e._y1+e._k*(e._y2-e._y0),e._x2+e._k*(e._x1-t),e._y2+e._k*(e._y1-r),e._x2,e._y2)}function Jl(e,t){this._context=e,this._k=(1-t)/6}Jl.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:ea(this,this._x1,this._y1);break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2,this._x1=e,this._y1=t;break;case 2:this._point=3;default:ea(this,e,t);break}this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const bp=(function e(t){function r(i){return new Jl(i,t)}return r.tension=function(i){return e(+i)},r})(0);function th(e,t){this._context=e,this._k=(1-t)/6}th.prototype={areaStart:zr,areaEnd:zr,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:{this._context.moveTo(this._x3,this._y3),this._context.closePath();break}case 2:{this._context.lineTo(this._x3,this._y3),this._context.closePath();break}case 3:{this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5);break}}},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._x3=e,this._y3=t;break;case 1:this._point=2,this._context.moveTo(this._x4=e,this._y4=t);break;case 2:this._point=3,this._x5=e,this._y5=t;break;default:ea(this,e,t);break}this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const tw=(function e(t){function r(i){return new th(i,t)}return r.tension=function(i){return e(+i)},r})(0);function eh(e,t){this._context=e,this._k=(1-t)/6}eh.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||this._line!==0&&this._point===3)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:ea(this,e,t);break}this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const ew=(function e(t){function r(i){return new eh(i,t)}return r.tension=function(i){return e(+i)},r})(0);function rh(e,t,r){var i=e._x1,s=e._y1,o=e._x2,a=e._y2;if(e._l01_a>nu){var n=2*e._l01_2a+3*e._l01_a*e._l12_a+e._l12_2a,l=3*e._l01_a*(e._l01_a+e._l12_a);i=(i*n-e._x0*e._l12_2a+e._x2*e._l01_2a)/l,s=(s*n-e._y0*e._l12_2a+e._y2*e._l01_2a)/l}if(e._l23_a>nu){var c=2*e._l23_2a+3*e._l23_a*e._l12_a+e._l12_2a,h=3*e._l23_a*(e._l23_a+e._l12_a);o=(o*c+e._x1*e._l23_2a-t*e._l12_2a)/h,a=(a*c+e._y1*e._l23_2a-r*e._l12_2a)/h}e._context.bezierCurveTo(i,s,o,a,e._x2,e._y2)}function kp(e,t){this._context=e,this._alpha=t}kp.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2);break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){if(e=+e,t=+t,this._point){var r=this._x2-e,i=this._y2-t;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+i*i,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2;break;case 2:this._point=3;default:rh(this,e,t);break}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const wp=(function e(t){function r(i){return t?new kp(i,t):new Jl(i,0)}return r.alpha=function(i){return e(+i)},r})(.5);function Tp(e,t){this._context=e,this._alpha=t}Tp.prototype={areaStart:zr,areaEnd:zr,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:{this._context.moveTo(this._x3,this._y3),this._context.closePath();break}case 2:{this._context.lineTo(this._x3,this._y3),this._context.closePath();break}case 3:{this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5);break}}},point:function(e,t){if(e=+e,t=+t,this._point){var r=this._x2-e,i=this._y2-t;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+i*i,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=e,this._y3=t;break;case 1:this._point=2,this._context.moveTo(this._x4=e,this._y4=t);break;case 2:this._point=3,this._x5=e,this._y5=t;break;default:rh(this,e,t);break}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const rw=(function e(t){function r(i){return t?new Tp(i,t):new th(i,0)}return r.alpha=function(i){return e(+i)},r})(.5);function _p(e,t){this._context=e,this._alpha=t}_p.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||this._line!==0&&this._point===3)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){if(e=+e,t=+t,this._point){var r=this._x2-e,i=this._y2-t;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+i*i,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:rh(this,e,t);break}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const iw=(function e(t){function r(i){return t?new _p(i,t):new eh(i,0)}return r.alpha=function(i){return e(+i)},r})(.5);function Sp(e){this._context=e}Sp.prototype={areaStart:zr,areaEnd:zr,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(e,t){e=+e,t=+t,this._point?this._context.lineTo(e,t):(this._point=1,this._context.moveTo(e,t))}};function sw(e){return new Sp(e)}function hu(e){return e<0?-1:1}function cu(e,t,r){var i=e._x1-e._x0,s=t-e._x1,o=(e._y1-e._y0)/(i||s<0&&-0),a=(r-e._y1)/(s||i<0&&-0),n=(o*s+a*i)/(i+s);return(hu(o)+hu(a))*Math.min(Math.abs(o),Math.abs(a),.5*Math.abs(n))||0}function uu(e,t){var r=e._x1-e._x0;return r?(3*(e._y1-e._y0)/r-t)/2:t}function on(e,t,r){var i=e._x0,s=e._y0,o=e._x1,a=e._y1,n=(o-i)/3;e._context.bezierCurveTo(i+n,s+n*t,o-n,a-n*r,o,a)}function ra(e){this._context=e}ra.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:on(this,this._t0,uu(this,this._t0));break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){var r=NaN;if(e=+e,t=+t,!(e===this._x1&&t===this._y1)){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2;break;case 2:this._point=3,on(this,uu(this,r=cu(this,e,t)),r);break;default:on(this,this._t0,r=cu(this,e,t));break}this._x0=this._x1,this._x1=e,this._y0=this._y1,this._y1=t,this._t0=r}}};function vp(e){this._context=new Bp(e)}(vp.prototype=Object.create(ra.prototype)).point=function(e,t){ra.prototype.point.call(this,t,e)};function Bp(e){this._context=e}Bp.prototype={moveTo:function(e,t){this._context.moveTo(t,e)},closePath:function(){this._context.closePath()},lineTo:function(e,t){this._context.lineTo(t,e)},bezierCurveTo:function(e,t,r,i,s,o){this._context.bezierCurveTo(t,e,i,r,o,s)}};function Lp(e){return new ra(e)}function Fp(e){return new vp(e)}function Ap(e){this._context=e}Ap.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=[],this._y=[]},lineEnd:function(){var e=this._x,t=this._y,r=e.length;if(r)if(this._line?this._context.lineTo(e[0],t[0]):this._context.moveTo(e[0],t[0]),r===2)this._context.lineTo(e[1],t[1]);else for(var i=du(e),s=du(t),o=0,a=1;a<r;++o,++a)this._context.bezierCurveTo(i[0][o],s[0][o],i[1][o],s[1][o],e[a],t[a]);(this._line||this._line!==0&&r===1)&&this._context.closePath(),this._line=1-this._line,this._x=this._y=null},point:function(e,t){this._x.push(+e),this._y.push(+t)}};function du(e){var t,r=e.length-1,i,s=new Array(r),o=new Array(r),a=new Array(r);for(s[0]=0,o[0]=2,a[0]=e[0]+2*e[1],t=1;t<r-1;++t)s[t]=1,o[t]=4,a[t]=4*e[t]+2*e[t+1];for(s[r-1]=2,o[r-1]=7,a[r-1]=8*e[r-1]+e[r],t=1;t<r;++t)i=s[t]/o[t-1],o[t]-=i,a[t]-=i*a[t-1];for(s[r-1]=a[r-1]/o[r-1],t=r-2;t>=0;--t)s[t]=(a[t]-s[t+1])/o[t];for(o[r-1]=(e[r]+s[r-1])/2,t=0;t<r-1;++t)o[t]=2*e[t+1]-s[t+1];return[s,o]}function Ep(e){return new Ap(e)}function ka(e,t){this._context=e,this._t=t}ka.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=this._y=NaN,this._point=0},lineEnd:function(){0<this._t&&this._t<1&&this._point===2&&this._context.lineTo(this._x,this._y),(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line>=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2;default:{if(this._t<=0)this._context.lineTo(this._x,t),this._context.lineTo(e,t);else{var r=this._x*(1-this._t)+e*this._t;this._context.lineTo(r,this._y),this._context.lineTo(r,t)}break}}this._x=e,this._y=t}};function Mp(e){return new ka(e,.5)}function $p(e){return new ka(e,0)}function Op(e){return new ka(e,1)}function Ss(e,t,r){this.k=e,this.x=t,this.y=r}Ss.prototype={constructor:Ss,scale:function(e){return e===1?this:new Ss(this.k*e,this.x,this.y)},translate:function(e,t){return e===0&t===0?this:new Ss(this.k,this.x+this.k*e,this.y+this.k*t)},apply:function(e){return[e[0]*this.k+this.x,e[1]*this.k+this.y]},applyX:function(e){return e*this.k+this.x},applyY:function(e){return e*this.k+this.y},invert:function(e){return[(e[0]-this.x)/this.k,(e[1]-this.y)/this.k]},invertX:function(e){return(e-this.x)/this.k},invertY:function(e){return(e-this.y)/this.k},rescaleX:function(e){return e.copy().domain(e.range().map(this.invertX,this).map(e.invert,e))},rescaleY:function(e){return e.copy().domain(e.range().map(this.invertY,this).map(e.invert,e))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};Ss.prototype;var ow=p(e=>{var s;const{securityLevel:t}=Wt();let r=Pt("body");if(t==="sandbox"){const a=((s=Pt(`#i${e}`).node())==null?void 0:s.contentDocument)??document;r=Pt(a.body)}return r.select(`#${e}`)},"selectSvgElement"),aw=p(e=>{const{handDrawnSeed:t}=Wt();return{fill:e,hachureAngle:120,hachureGap:4,fillWeight:2,roughness:.7,stroke:e,seed:t}},"solidStateFill"),nw=p(e=>Array.isArray(e)?e:e?e.split(";").map(t=>t.trim()).filter(Boolean):[],"normalizeStyleList"),es=p(e=>{const t=lw([...e.cssCompiledStyles||[],...e.cssStyles||[],...nw(e.labelStyle)]);return{stylesMap:t,stylesArray:[...t]}},"compileStyles"),lw=p(e=>{const t=new Map;return e.forEach(r=>{const[i,s]=r.split(":");t.set(i.trim(),s==null?void 0:s.trim())}),t},"styles2Map"),Dp=p(e=>e==="color"||e==="font-size"||e==="font-family"||e==="font-weight"||e==="font-style"||e==="text-decoration"||e==="text-align"||e==="text-transform"||e==="line-height"||e==="letter-spacing"||e==="word-spacing"||e==="text-shadow"||e==="text-overflow"||e==="white-space"||e==="word-wrap"||e==="word-break"||e==="overflow-wrap"||e==="hyphens","isLabelStyle"),bt=p(e=>{const{stylesArray:t}=es(e),r=[],i=[],s=[],o=[];return t.forEach(a=>{const n=a[0];Dp(n)?r.push(a.join(":")+" !important"):(i.push(a.join(":")+" !important"),n.includes("stroke")&&s.push(a.join(":")+" !important"),n==="fill"&&o.push(a.join(":")+" !important"))}),{labelStyles:r.join(";"),nodeStyles:i.join(";"),stylesArray:t,borderStyles:s,backgroundStyles:o}},"styles2String"),ft=p((e,t)=>{var l;const{themeVariables:r,handDrawnSeed:i}=Wt(),{nodeBorder:s,mainBkg:o}=r,{stylesMap:a}=es(e);return Object.assign({roughness:.7,fill:a.get("fill")||o,fillStyle:"hachure",fillWeight:4,hachureGap:5.2,stroke:a.get("stroke")||s,seed:i,strokeWidth:((l=a.get("stroke-width"))==null?void 0:l.replace("px",""))||1.3,fillLineDash:[0,0],strokeLineDash:hw(a.get("stroke-dasharray"))},t)},"userNodeOverrides"),hw=p(e=>{if(!e)return[0,0];const t=e.trim().split(/\s+/).map(Number);if(t.length===1){const s=isNaN(t[0])?0:t[0];return[s,s]}const r=isNaN(t[0])?0:t[0],i=isNaN(t[1])?0:t[1];return[r,i]},"getStrokeDashArray");const cw=Object.freeze({left:0,top:0,width:16,height:16}),ia=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),Ip=Object.freeze({...cw,...ia}),uw=Object.freeze({...Ip,body:"",hidden:!1}),dw=Object.freeze({width:null,height:null}),fw=Object.freeze({...dw,...ia}),pw=(e,t,r,i="")=>{const s=e.split(":");if(e.slice(0,1)==="@"){if(s.length<2||s.length>3)return null;i=s.shift().slice(1)}if(s.length>3||!s.length)return null;if(s.length>1){const n=s.pop(),l=s.pop(),c={provider:s.length>0?s[0]:i,prefix:l,name:n};return an(c)?c:null}const o=s[0],a=o.split("-");if(a.length>1){const n={provider:i,prefix:a.shift(),name:a.join("-")};return an(n)?n:null}if(r&&i===""){const n={provider:i,prefix:"",name:o};return an(n,r)?n:null}return null},an=(e,t)=>e?!!((t&&e.prefix===""||e.prefix)&&e.name):!1;function gw(e,t){const r={};!e.hFlip!=!t.hFlip&&(r.hFlip=!0),!e.vFlip!=!t.vFlip&&(r.vFlip=!0);const i=((e.rotate||0)+(t.rotate||0))%4;return i&&(r.rotate=i),r}function fu(e,t){const r=gw(e,t);for(const i in uw)i in ia?i in e&&!(i in r)&&(r[i]=ia[i]):i in t?r[i]=t[i]:i in e&&(r[i]=e[i]);return r}function mw(e,t){const r=e.icons,i=e.aliases||Object.create(null),s=Object.create(null);function o(a){if(r[a])return s[a]=[];if(!(a in s)){s[a]=null;const n=i[a]&&i[a].parent,l=n&&o(n);l&&(s[a]=[n].concat(l))}return s[a]}return(t||Object.keys(r).concat(Object.keys(i))).forEach(o),s}function pu(e,t,r){const i=e.icons,s=e.aliases||Object.create(null);let o={};function a(n){o=fu(i[n]||s[n],o)}return a(t),r.forEach(a),fu(e,o)}function yw(e,t){if(e.icons[t])return pu(e,t,[]);const r=mw(e,[t])[t];return r?pu(e,t,r):null}const xw=/(-?[0-9.]*[0-9]+[0-9.]*)/g,Cw=/^-?[0-9.]*[0-9]+[0-9.]*$/g;function gu(e,t,r){if(t===1)return e;if(r=r||100,typeof e=="number")return Math.ceil(e*t*r)/r;if(typeof e!="string")return e;const i=e.split(xw);if(i===null||!i.length)return e;const s=[];let o=i.shift(),a=Cw.test(o);for(;;){if(a){const n=parseFloat(o);isNaN(n)?s.push(o):s.push(Math.ceil(n*t*r)/r)}else s.push(o);if(o=i.shift(),o===void 0)return s.join("");a=!a}}function bw(e,t="defs"){let r="";const i=e.indexOf("<"+t);for(;i>=0;){const s=e.indexOf(">",i),o=e.indexOf("</"+t);if(s===-1||o===-1)break;const a=e.indexOf(">",o);if(a===-1)break;r+=e.slice(s+1,o).trim(),e=e.slice(0,i).trim()+e.slice(a+1)}return{defs:r,content:e}}function kw(e,t){return e?"<defs>"+e+"</defs>"+t:t}function ww(e,t,r){const i=bw(e);return kw(i.defs,t+i.content+r)}const Tw=e=>e==="unset"||e==="undefined"||e==="none";function _w(e,t){const r={...Ip,...e},i={...fw,...t},s={left:r.left,top:r.top,width:r.width,height:r.height};let o=r.body;[r,i].forEach(y=>{const C=[],x=y.hFlip,b=y.vFlip;let w=y.rotate;x?b?w+=2:(C.push("translate("+(s.width+s.left).toString()+" "+(0-s.top).toString()+")"),C.push("scale(-1 1)"),s.top=s.left=0):b&&(C.push("translate("+(0-s.left).toString()+" "+(s.height+s.top).toString()+")"),C.push("scale(1 -1)"),s.top=s.left=0);let _;switch(w<0&&(w-=Math.floor(w/4)*4),w=w%4,w){case 1:_=s.height/2+s.top,C.unshift("rotate(90 "+_.toString()+" "+_.toString()+")");break;case 2:C.unshift("rotate(180 "+(s.width/2+s.left).toString()+" "+(s.height/2+s.top).toString()+")");break;case 3:_=s.width/2+s.left,C.unshift("rotate(-90 "+_.toString()+" "+_.toString()+")");break}w%2===1&&(s.left!==s.top&&(_=s.left,s.left=s.top,s.top=_),s.width!==s.height&&(_=s.width,s.width=s.height,s.height=_)),C.length&&(o=ww(o,'<g transform="'+C.join(" ")+'">',"</g>"))});const a=i.width,n=i.height,l=s.width,c=s.height;let h,u;a===null?(u=n===null?"1em":n==="auto"?c:n,h=gu(u,l/c)):(h=a==="auto"?l:a,u=n===null?gu(h,c/l):n==="auto"?c:n);const d={},f=(y,C)=>{Tw(C)||(d[y]=C.toString())};f("width",h),f("height",u);const m=[s.left,s.top,l,c];return d.viewBox=m.join(" "),{attributes:d,viewBox:m,body:o}}const Sw=/\sid="(\S+)"/g,mu=new Map;function vw(e){e=e.replace(/[0-9]+$/,"")||"a";const t=mu.get(e)||0;return mu.set(e,t+1),t?`${e}${t}`:e}function Bw(e){const t=[];let r;for(;r=Sw.exec(e);)t.push(r[1]);if(!t.length)return e;const i="suffix"+(Math.random()*16777216|Date.now()).toString(16);return t.forEach(s=>{const o=vw(s),a=s.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");e=e.replace(new RegExp('([#;"])('+a+')([")]|\\.[a-z])',"g"),"$1"+o+i+"$3")}),e=e.replace(new RegExp(i,"g"),""),e}function Lw(e,t){let r=e.indexOf("xlink:")===-1?"":' xmlns:xlink="http://www.w3.org/1999/xlink"';for(const i in t)r+=" "+i+'="'+t[i]+'"';return'<svg xmlns="http://www.w3.org/2000/svg"'+r+">"+e+"</svg>"}var Fw={body:'<g><rect width="80" height="80" style="fill: #087ebf; stroke-width: 0px;"/><text transform="translate(21.16 64.67)" style="fill: #fff; font-family: ArialMT, Arial; font-size: 67.75px;"><tspan x="0" y="0">?</tspan></text></g>',height:80,width:80},ul=new Map,Pp=new Map,Aw=p(e=>{for(const t of e){if(!t.name)throw new Error('Invalid icon loader. Must have a "name" property with non-empty string value.');if(N.debug("Registering icon pack:",t.name),"loader"in t)Pp.set(t.name,t.loader);else if("icons"in t)ul.set(t.name,t.icons);else throw N.error("Invalid icon loader:",t),new Error('Invalid icon loader. Must have either "icons" or "loader" property.')}},"registerIconPacks"),Rp=p(async(e,t)=>{const r=pw(e,!0,t!==void 0);if(!r)throw new Error(`Invalid icon name: ${e}`);const i=r.prefix||t;if(!i)throw new Error(`Icon name must contain a prefix: ${e}`);let s=ul.get(i);if(!s){const a=Pp.get(i);if(!a)throw new Error(`Icon set not found: ${r.prefix}`);try{s={...await a(),prefix:i},ul.set(i,s)}catch(n){throw N.error(n),new Error(`Failed to load icon set: ${r.prefix}`)}}const o=yw(s,r.name);if(!o)throw new Error(`Icon not found: ${e}`);return o},"getRegisteredIconData"),Ew=p(async e=>{try{return await Rp(e),!0}catch{return!1}},"isIconAvailable"),eo=p(async(e,t,r)=>{let i;try{i=await Rp(e,t==null?void 0:t.fallbackPrefix)}catch(a){N.error(a),i=Fw}const s=_w(i,t),o=Lw(Bw(s.body),{...s.attributes,...r});return ze(o,Jt())},"getIconSVG"),yo={},le={},yu;function Mw(){return yu||(yu=1,Object.defineProperty(le,"__esModule",{value:!0}),le.BLANK_URL=le.relativeFirstCharacters=le.whitespaceEscapeCharsRegex=le.urlSchemeRegex=le.ctrlCharactersRegex=le.htmlCtrlEntityRegex=le.htmlEntitiesRegex=le.invalidProtocolRegex=void 0,le.invalidProtocolRegex=/^([^\w]*)(javascript|data|vbscript)/im,le.htmlEntitiesRegex=/&#(\w+)(^\w|;)?/g,le.htmlCtrlEntityRegex=/&(newline|tab);/gi,le.ctrlCharactersRegex=/[\u0000-\u001F\u007F-\u009F\u2000-\u200D\uFEFF]/gim,le.urlSchemeRegex=/^.+(:|:)/gim,le.whitespaceEscapeCharsRegex=/(\\|%5[cC])((%(6[eE]|72|74))|[nrt])/g,le.relativeFirstCharacters=[".","/"],le.BLANK_URL="about:blank"),le}var xu;function $w(){if(xu)return yo;xu=1,Object.defineProperty(yo,"__esModule",{value:!0}),yo.sanitizeUrl=o;var e=Mw();function t(a){return e.relativeFirstCharacters.indexOf(a[0])>-1}function r(a){var n=a.replace(e.ctrlCharactersRegex,"");return n.replace(e.htmlEntitiesRegex,function(l,c){return String.fromCharCode(c)})}function i(a){return URL.canParse(a)}function s(a){try{return decodeURIComponent(a)}catch{return a}}function o(a){if(!a)return e.BLANK_URL;var n,l=s(a.trim());do l=r(l).replace(e.htmlCtrlEntityRegex,"").replace(e.ctrlCharactersRegex,"").replace(e.whitespaceEscapeCharsRegex,"").trim(),l=s(l),n=l.match(e.ctrlCharactersRegex)||l.match(e.htmlEntitiesRegex)||l.match(e.htmlCtrlEntityRegex)||l.match(e.whitespaceEscapeCharsRegex);while(n&&n.length>0);var c=l;if(!c)return e.BLANK_URL;if(t(c))return c;var h=c.trimStart(),u=h.match(e.urlSchemeRegex);if(!u)return c;var d=u[0].toLowerCase().trim();if(e.invalidProtocolRegex.test(d))return e.BLANK_URL;var f=h.replace(/\\/g,"/");if(d==="mailto:"||d.includes("://"))return f;if(d==="http:"||d==="https:"){if(!i(f))return e.BLANK_URL;var m=new URL(f);return m.protocol=m.protocol.toLowerCase(),m.hostname=m.hostname.toLowerCase(),m.toString()}return f}return yo}var Ow=$w();function nn(e){var r;if(typeof e!="object"||e==null)return!1;if(Object.getPrototypeOf(e)===null)return!0;if(Object.prototype.toString.call(e)!=="[object Object]"){const i=e[Symbol.toStringTag];return i==null||!((r=Object.getOwnPropertyDescriptor(e,Symbol.toStringTag))!=null&&r.writable)?!1:e.toString()===`[object ${i}]`}let t=e;for(;Object.getPrototypeOf(t)!==null;)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function Dw(){}function Np(e){return Object.getOwnPropertySymbols(e).filter(t=>Object.prototype.propertyIsEnumerable.call(e,t))}function ih(e){return e==null?e===void 0?"[object Undefined]":"[object Null]":Object.prototype.toString.call(e)}const Iw="[object RegExp]",qp="[object String]",zp="[object Number]",Wp="[object Boolean]",Hp="[object Arguments]",Pw="[object Symbol]",Rw="[object Date]",Nw="[object Map]",qw="[object Set]",zw="[object Array]",Ww="[object ArrayBuffer]",Hw="[object Object]",Yw="[object DataView]",jw="[object Uint8Array]",Uw="[object Uint8ClampedArray]",Gw="[object Uint16Array]",Xw="[object Uint32Array]",Vw="[object Int8Array]",Zw="[object Int16Array]",Kw="[object Int32Array]",Qw="[object Float32Array]",Jw="[object Float64Array]",Cu=typeof globalThis=="object"&&globalThis||typeof window=="object"&&window||typeof self=="object"&&self||typeof global=="object"&&global||(function(){return this})();function sh(e){return typeof Cu.Buffer<"u"&&Cu.Buffer.isBuffer(e)}function tT(e){return Number.isSafeInteger(e)&&e>=0}function Yp(e){return e!=null&&typeof e!="function"&&tT(e.length)}function eT(e){return e==="__proto__"}function oh(e){return e==null||typeof e!="object"&&typeof e!="function"}function ah(e){return ArrayBuffer.isView(e)&&!(e instanceof DataView)}function rT(e,t){return Bi(e,void 0,e,new Map,t)}function Bi(e,t,r,i=new Map,s=void 0){const o=s==null?void 0:s(e,t,r,i);if(o!==void 0)return o;if(oh(e))return e;if(i.has(e))return i.get(e);if(Array.isArray(e)){const a=new Array(e.length);i.set(e,a);for(let n=0;n<e.length;n++)a[n]=Bi(e[n],n,r,i,s);return Object.hasOwn(e,"index")&&(a.index=e.index),Object.hasOwn(e,"input")&&(a.input=e.input),a}if(e instanceof Date)return new Date(e.getTime());if(e instanceof RegExp){const a=new RegExp(e.source,e.flags);return a.lastIndex=e.lastIndex,a}if(e instanceof Map){const a=new Map;i.set(e,a);for(const[n,l]of e)a.set(n,Bi(l,n,r,i,s));return a}if(e instanceof Set){const a=new Set;i.set(e,a);for(const n of e)a.add(Bi(n,void 0,r,i,s));return a}if(sh(e))return e.subarray();if(ah(e)){const a=new(Object.getPrototypeOf(e)).constructor(e.length);i.set(e,a);for(let n=0;n<e.length;n++)a[n]=Bi(e[n],n,r,i,s);return a}if(e instanceof ArrayBuffer||typeof SharedArrayBuffer<"u"&&e instanceof SharedArrayBuffer)return e.slice(0);if(e instanceof DataView){const a=new DataView(e.buffer.slice(0),e.byteOffset,e.byteLength);return i.set(e,a),Ue(a,e,r,i,s),a}if(typeof File<"u"&&e instanceof File){const a=new File([e],e.name,{type:e.type});return i.set(e,a),Ue(a,e,r,i,s),a}if(typeof Blob<"u"&&e instanceof Blob){const a=new Blob([e],{type:e.type});return i.set(e,a),Ue(a,e,r,i,s),a}if(e instanceof Error){const a=structuredClone(e);return i.set(e,a),a.message=e.message,a.name=e.name,a.stack=e.stack,a.cause=e.cause,a.constructor=e.constructor,Ue(a,e,r,i,s),a}if(e instanceof Boolean){const a=new Boolean(e.valueOf());return i.set(e,a),Ue(a,e,r,i,s),a}if(e instanceof Number){const a=new Number(e.valueOf());return i.set(e,a),Ue(a,e,r,i,s),a}if(e instanceof String){const a=new String(e.valueOf());return i.set(e,a),Ue(a,e,r,i,s),a}if(typeof e=="object"&&iT(e)){const a=Object.create(Object.getPrototypeOf(e));return i.set(e,a),Ue(a,e,r,i,s),a}return e}function Ue(e,t,r=e,i,s){const o=[...Object.keys(t),...Np(t)];for(let a=0;a<o.length;a++){const n=o[a],l=Object.getOwnPropertyDescriptor(e,n);(l==null||l.writable)&&(e[n]=Bi(t[n],n,r,i,s))}}function iT(e){switch(ih(e)){case Hp:case zw:case Ww:case Yw:case Wp:case Rw:case Qw:case Jw:case Vw:case Zw:case Kw:case Nw:case zp:case Hw:case Iw:case qw:case qp:case Pw:case jw:case Uw:case Gw:case Xw:return!0;default:return!1}}function sT(e,t){return rT(e,(r,i,s,o)=>{if(typeof e=="object"){if(ih(e)==="[object Object]"&&typeof e.constructor!="function"){const a={};return o.set(e,a),Ue(a,e,s,o),a}switch(Object.prototype.toString.call(e)){case zp:case qp:case Wp:{const a=new e.constructor(e==null?void 0:e.valueOf());return Ue(a,e),a}case Hp:{const a={};return Ue(a,e),a.length=e.length,a[Symbol.iterator]=e[Symbol.iterator],a}default:return}}})}function bu(e){return sT(e)}function dl(e){return e!==null&&typeof e=="object"&&ih(e)==="[object Arguments]"}function fl(e){return typeof e=="object"&&e!==null}function oT(e){return fl(e)&&Yp(e)}function Io(e){return ah(e)}function aT(e){const t=e==null?void 0:e.constructor;return e===(typeof t=="function"?t.prototype:Object.prototype)}function ro(e,t){if(typeof e!="function"||t!=null&&typeof t!="function")throw new TypeError("Expected a function");const r=function(...i){const s=t?t.apply(this,i):i[0],o=r.cache;if(o.has(s))return o.get(s);const a=e.apply(this,i);return r.cache=o.set(s,a)||o,a};return r.cache=new(ro.Cache||Map),r}ro.Cache=Map;function nT(e){if(oh(e))return e;if(Array.isArray(e)||ah(e)||e instanceof ArrayBuffer||typeof SharedArrayBuffer<"u"&&e instanceof SharedArrayBuffer)return e.slice(0);const t=Object.getPrototypeOf(e);if(t==null)return Object.assign(Object.create(t),e);const r=t.constructor;if(e instanceof Date||e instanceof Map||e instanceof Set)return new r(e);if(e instanceof RegExp){const i=new r(e);return i.lastIndex=e.lastIndex,i}if(e instanceof DataView)return new r(e.buffer.slice(0));if(e instanceof Error){let i;return e instanceof AggregateError?i=new r(e.errors,e.message,{cause:e.cause}):i=new r(e.message,{cause:e.cause}),i.stack=e.stack,Object.assign(i,e),i}return typeof File<"u"&&e instanceof File?new r([e],e.name,{type:e.type,lastModified:e.lastModified}):typeof e=="object"?Object.assign(Object.create(t),e):e}function lT(e,...t){const r=t.slice(0,-1),i=t[t.length-1];let s=e;for(let o=0;o<r.length;o++){const a=r[o];s=Po(s,a,i,new Map)}return s}function Po(e,t,r,i){if(oh(e)&&(e=Object(e)),t==null||typeof t!="object")return e;if(i.has(t))return nT(i.get(t));if(i.set(t,e),Array.isArray(t)){t=t.slice();for(let o=0;o<t.length;o++)t[o]=t[o]??void 0}const s=[...Object.keys(t),...Np(t)];for(let o=0;o<s.length;o++){const a=s[o];if(eT(a))continue;let n=t[a],l=e[a];if(dl(n)&&(n={...n}),dl(l)&&(l={...l}),sh(n)&&(n=bu(n)),Array.isArray(n))if(Array.isArray(l)){const h=[],u=Reflect.ownKeys(l);for(let d=0;d<u.length;d++){const f=u[d];h[f]=l[f]}l=h}else if(oT(l)){const h=[];for(let u=0;u<l.length;u++)h[u]=l[u];l=h}else l=[];const c=r(l,n,a,e,t,i);c!==void 0?e[a]=c:Array.isArray(n)||fl(l)&&fl(n)&&(nn(l)||nn(n)||Io(l)||Io(n))?e[a]=Po(l,n,r,i):l==null&&nn(n)?e[a]=Po({},n,r,i):l==null&&Io(n)?e[a]=bu(n):(l===void 0||n!==void 0)&&(e[a]=n)}return e}function hT(e,...t){return lT(e,...t,Dw)}function ku(e){if(e==null)return!0;if(Yp(e))return typeof e.splice!="function"&&typeof e!="string"&&!sh(e)&&!Io(e)&&!dl(e)?!1:e.length===0;if(typeof e=="object"||typeof e=="function"){if(e instanceof Map||e instanceof Set)return e.size===0;const t=Object.keys(e);return aT(e)?t.filter(r=>r!=="constructor").length===0:t.length===0}return!0}var cT="",uT={curveBasis:cl,curveBasisClosed:K2,curveBasisOpen:Q2,curveBumpX:gp,curveBumpY:mp,curveBundle:J2,curveCardinalClosed:tw,curveCardinalOpen:ew,curveCardinal:bp,curveCatmullRomClosed:rw,curveCatmullRomOpen:iw,curveCatmullRom:wp,curveLinear:Ds,curveLinearClosed:sw,curveMonotoneX:Lp,curveMonotoneY:Fp,curveNatural:Ep,curveStep:Mp,curveStepAfter:Op,curveStepBefore:$p},dT=/\s*(?:(\w+)(?=:):|(\w+))\s*(?:(\w+)|((?:(?!}%{2}).|\r?\n)*))?\s*(?:}%{2})?/gi,fT=p(function(e,t){const r=jp(e,/(?:init\b)|(?:initialize\b)/);let i={};if(Array.isArray(r)){const a=r.map(n=>n.args);Ho(a),i=ce(i,[...a])}else i=r.args;if(!i)return;let s=Nl(e,t);const o="config";return i[o]!==void 0&&(s==="flowchart-v2"&&(s="flowchart"),i[s]=i[o],delete i[o]),i},"detectInit"),jp=p(function(e,t=null){var r,i;try{const s=new RegExp(`[%]{2}(?![{]${dT.source})(?=[}][%]{2}).*
|
|
129
|
+
`,"ig");e=e.trim().replace(s,"").replace(/'/gm,'"'),N.debug(`Detecting diagram directive${t!==null?" type:"+t:""} based on the text:${e}`);let o;const a=[];for(;(o=Os.exec(e))!==null;)if(o.index===Os.lastIndex&&Os.lastIndex++,o&&!t||t&&((r=o[1])!=null&&r.match(t))||t&&((i=o[2])!=null&&i.match(t))){const n=o[1]?o[1]:o[2],l=o[3]?o[3].trim():o[4]?JSON.parse(o[4].trim()):null;a.push({type:n,args:l})}return a.length===0?{type:e,args:null}:a.length===1?a[0]:a}catch(s){return N.error(`ERROR: ${s.message} - Unable to parse directive type: '${t}' based on the text: '${e}'`),{type:void 0,args:null}}},"detectDirective"),pT=p(function(e){return e.replace(Os,"")},"removeDirectives"),gT=p(function(e,t){for(const[r,i]of t.entries())if(i.match(e))return r;return-1},"isSubstringInArray");function nh(e,t){if(!e)return t;const r=`curve${e.charAt(0).toUpperCase()+e.slice(1)}`;return uT[r]??t}p(nh,"interpolateToCurve");function Up(e,t){const r=e.trim();if(r)return t.securityLevel!=="loose"?Ow.sanitizeUrl(r):r}p(Up,"formatUrl");var mT=p((e,...t)=>{const r=e.split("."),i=r.length-1,s=r[i];let o=window;for(let a=0;a<i;a++)if(o=o[r[a]],!o){N.error(`Function name: ${e} not found in window`);return}o[s](...t)},"runFunc");function lh(e,t){return!e||!t?0:Math.sqrt(Math.pow(t.x-e.x,2)+Math.pow(t.y-e.y,2))}p(lh,"distance");function Gp(e){let t,r=0;e.forEach(s=>{r+=lh(s,t),t=s});const i=r/2;return hh(e,i)}p(Gp,"traverseEdge");function Xp(e){return e.length===1?e[0]:Gp(e)}p(Xp,"calcLabelPosition");var wu=p((e,t=2)=>{const r=Math.pow(10,t);return Math.round(e*r)/r},"roundNumber"),hh=p((e,t)=>{let r,i=t;for(const s of e){if(r){const o=lh(s,r);if(o===0)return r;if(o<i)i-=o;else{const a=i/o;if(a<=0)return r;if(a>=1)return{x:s.x,y:s.y};if(a>0&&a<1)return{x:wu((1-a)*r.x+a*s.x,5),y:wu((1-a)*r.y+a*s.y,5)}}}r=s}throw new Error("Could not find a suitable point for the given distance")},"calculatePoint"),yT=p((e,t,r)=>{N.info(`our points ${JSON.stringify(t)}`),t[0]!==r&&(t=t.reverse());const s=hh(t,25),o=e?10:5,a=Math.atan2(t[0].y-s.y,t[0].x-s.x),n={x:0,y:0};return n.x=Math.sin(a)*o+(t[0].x+s.x)/2,n.y=-Math.cos(a)*o+(t[0].y+s.y)/2,n},"calcCardinalityPosition");function Vp(e,t,r){const i=structuredClone(r);N.info("our points",i),t!=="start_left"&&t!=="start_right"&&i.reverse();const s=25+e,o=hh(i,s),a=10+e*.5,n=Math.atan2(i[0].y-o.y,i[0].x-o.x),l={x:0,y:0};return t==="start_left"?(l.x=Math.sin(n+Math.PI)*a+(i[0].x+o.x)/2,l.y=-Math.cos(n+Math.PI)*a+(i[0].y+o.y)/2):t==="end_right"?(l.x=Math.sin(n-Math.PI)*a+(i[0].x+o.x)/2-5,l.y=-Math.cos(n-Math.PI)*a+(i[0].y+o.y)/2-5):t==="end_left"?(l.x=Math.sin(n)*a+(i[0].x+o.x)/2-5,l.y=-Math.cos(n)*a+(i[0].y+o.y)/2-5):(l.x=Math.sin(n)*a+(i[0].x+o.x)/2,l.y=-Math.cos(n)*a+(i[0].y+o.y)/2),l}p(Vp,"calcTerminalLabelPosition");function Zp(e){let t="",r="";for(const i of e)i!==void 0&&(i.startsWith("color:")||i.startsWith("text-align:")?r=r+i+";":t=t+i+";");return{style:t,labelStyle:r}}p(Zp,"getStylesFromArray");var Tu=0,xT=p(()=>(Tu++,"id-"+Math.random().toString(36).substr(2,12)+"-"+Tu),"generateId");function Kp(e){let t="";const r="0123456789abcdef",i=r.length;for(let s=0;s<e;s++)t+=r.charAt(Math.floor(Math.random()*i));return t}p(Kp,"makeRandomHex");var CT=p(e=>Kp(e.length),"random"),bT=p(function(){return{x:0,y:0,fill:void 0,anchor:"start",style:"#666",width:100,height:100,textMargin:0,rx:0,ry:0,valign:void 0,text:""}},"getTextObj"),kT=p(function(e,t){const r=t.text.replace(Qs.lineBreakRegex," "),[,i]=wa(t.fontSize),s=e.append("text");s.attr("x",t.x),s.attr("y",t.y),s.style("text-anchor",t.anchor),s.style("font-family",t.fontFamily),s.style("font-size",i),s.style("font-weight",t.fontWeight),s.attr("fill",t.fill),t.class!==void 0&&s.attr("class",t.class);const o=s.append("tspan");return o.attr("x",t.x+t.textMargin*2),o.attr("fill",t.fill),o.text(r),s},"drawSimpleText"),wT=ro((e,t,r)=>{if(!e||(r=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial",joinWith:"<br/>"},r),Qs.lineBreakRegex.test(e)))return e;const i=e.split(" ").filter(Boolean),s=[];let o="";return i.forEach((a,n)=>{const l=Br(`${a} `,r),c=Br(o,r);if(l>t){const{hyphenatedStrings:d,remainingWord:f}=TT(a,t,"-",r);s.push(o,...d),o=f}else c+l>=t?(s.push(o),o=a):o=[o,a].filter(Boolean).join(" ");n+1===i.length&&s.push(o)}),s.filter(a=>a!=="").join(r.joinWith)},(e,t,r)=>`${e}${t}${r.fontSize}${r.fontWeight}${r.fontFamily}${r.joinWith}`),TT=ro((e,t,r="-",i)=>{i=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial",margin:0},i);const s=[...e],o=[];let a="";return s.forEach((n,l)=>{const c=`${a}${n}`;if(Br(c,i)>=t){const u=l+1,d=s.length===u,f=`${c}${r}`;o.push(d?c:f),a=""}else a=c}),{hyphenatedStrings:o,remainingWord:a}},(e,t,r="-",i)=>`${e}${t}${r}${i.fontSize}${i.fontWeight}${i.fontFamily}`);function Qp(e,t){return ch(e,t).height}p(Qp,"calculateTextHeight");function Br(e,t){return ch(e,t).width}p(Br,"calculateTextWidth");var ch=ro((e,t)=>{const{fontSize:r=12,fontFamily:i="Arial",fontWeight:s=400}=t;if(!e)return{width:0,height:0};const[,o]=wa(r),a=["sans-serif",i],n=e.split(Qs.lineBreakRegex),l=[],c=Pt("body");if(!c.remove)return{width:0,height:0,lineHeight:0};const h=c.append("svg");for(const d of a){let f=0;const m={width:0,height:0,lineHeight:0};for(const y of n){const C=bT();C.text=y||cT;const x=kT(h,C).style("font-size",o).style("font-weight",s).style("font-family",d),b=(x._groups||x)[0][0].getBBox();if(b.width===0&&b.height===0)throw new Error("svg element not in render tree");m.width=Math.round(Math.max(m.width,b.width)),f=Math.round(b.height),m.height+=f,m.lineHeight=Math.round(Math.max(m.lineHeight,f))}l.push(m)}h.remove();const u=isNaN(l[1].height)||isNaN(l[1].width)||isNaN(l[1].lineHeight)||l[0].height>l[1].height&&l[0].width>l[1].width&&l[0].lineHeight>l[1].lineHeight?0:1;return l[u]},(e,t)=>`${e}${t.fontSize}${t.fontWeight}${t.fontFamily}`),Ui,_T=(Ui=class{constructor(t=!1,r){this.count=0,this.count=r?r.length:0,this.next=t?()=>this.count++:()=>Date.now()}},p(Ui,"InitIDGenerator"),Ui),xo,ST=p(function(e){return xo=xo||document.createElement("div"),e=escape(e).replace(/%26/g,"&").replace(/%23/g,"#").replace(/%3B/g,";"),xo.innerHTML=e,unescape(xo.textContent)},"entityDecode");function uh(e){return"str"in e}p(uh,"isDetailedError");var vT=p((e,t,r,i)=>{var o;if(!i)return;const s=(o=e.node())==null?void 0:o.getBBox();s&&e.append("text").text(i).attr("text-anchor","middle").attr("x",s.x+s.width/2).attr("y",-r).attr("class",t)},"insertTitle"),wa=p(e=>{if(typeof e=="number")return[e,e+"px"];const t=parseInt(e??"",10);return Number.isNaN(t)?[void 0,void 0]:e===String(t)?[t,e+"px"]:[t,e]},"parseFontSize");function dh(e,t){return hT({},e,t)}p(dh,"cleanAndMerge");var xe={assignWithDepth:ce,wrapLabel:wT,calculateTextHeight:Qp,calculateTextWidth:Br,calculateTextDimensions:ch,cleanAndMerge:dh,detectInit:fT,detectDirective:jp,isSubstringInArray:gT,interpolateToCurve:nh,calcLabelPosition:Xp,calcCardinalityPosition:yT,calcTerminalLabelPosition:Vp,formatUrl:Up,getStylesFromArray:Zp,generateId:xT,random:CT,runFunc:mT,entityDecode:ST,insertTitle:vT,isLabelCoordinateInPath:Jp,parseFontSize:wa,InitIDGenerator:_T},BT=p(function(e){let t=e;return t=t.replace(/style.*:\S*#.*;/g,function(r){return r.substring(0,r.length-1)}),t=t.replace(/classDef.*:\S*#.*;/g,function(r){return r.substring(0,r.length-1)}),t=t.replace(/#\w+;/g,function(r){const i=r.substring(1,r.length-1);return/^\+?\d+$/.test(i)?"fl°°"+i+"¶ß":"fl°"+i+"¶ß"}),t},"encodeEntities"),Wr=p(function(e){return e.replace(/fl°°/g,"&#").replace(/fl°/g,"&").replace(/¶ß/g,";")},"decodeEntities"),h3=p((e,t,{counter:r=0,prefix:i,suffix:s},o)=>o||`${i?`${i}_`:""}${e}_${t}_${r}${s?`_${s}`:""}`,"getEdgeId");function ae(e){return e??null}p(ae,"handleUndefinedAttr");function Jp(e,t){const r=Math.round(e.x),i=Math.round(e.y),s=t.replace(/(\d+\.\d+)/g,o=>Math.round(parseFloat(o)).toString());return s.includes(r.toString())||s.includes(i.toString())}p(Jp,"isLabelCoordinateInPath");var Ro={exports:{}},_u=Ro.exports,Su;function LT(){return Su||(Su=1,(function(e){(function(t){var r=function(){},i=t.requestAnimationFrame||t.webkitRequestAnimationFrame||t.mozRequestAnimationFrame||t.msRequestAnimationFrame||function(h){return setTimeout(h,16)};function s(){var h=this;h.reads=[],h.writes=[],h.raf=i.bind(t)}s.prototype={constructor:s,runTasks:function(h){for(var u;u=h.shift();)u()},measure:function(h,u){var d=u?h.bind(u):h;return this.reads.push(d),o(this),d},mutate:function(h,u){var d=u?h.bind(u):h;return this.writes.push(d),o(this),d},clear:function(h){return n(this.reads,h)||n(this.writes,h)},extend:function(h){if(typeof h!="object")throw new Error("expected object");var u=Object.create(this);return l(u,h),u.fastdom=this,u.initialize&&u.initialize(),u},catch:null};function o(h){h.scheduled||(h.scheduled=!0,h.raf(a.bind(null,h)))}function a(h){var u=h.writes,d=h.reads,f;try{r("flushing reads",d.length),h.runTasks(d),r("flushing writes",u.length),h.runTasks(u)}catch(m){f=m}if(h.scheduled=!1,(d.length||u.length)&&o(h),f)if(r("task errored",f.message),h.catch)h.catch(f);else throw f}function n(h,u){var d=h.indexOf(u);return!!~d&&!!h.splice(d,1)}function l(h,u){for(var d in u)u.hasOwnProperty(d)&&(h[d]=u[d])}var c=t.fastdom=t.fastdom||new s;e.exports=c})(typeof window<"u"?window:typeof _u<"u"?_u:globalThis)})(Ro)),Ro.exports}var FT=LT();const AT=Pl(FT);var ln={exports:{}},vu;function ET(){return vu||(vu=1,(function(e){(function(){var t={initialize:function(){this._tasks=new Map},mutate:function(i,s){return r(this,"mutate",i,s)},measure:function(i,s){return r(this,"measure",i,s)},clear:function(i){var s=this._tasks,o=s.get(i);this.fastdom.clear(o),s.delete(i)}};function r(i,s,o,a){var n=i._tasks,l=i.fastdom,c,h=new Promise(function(u,d){c=l[s](function(){n.delete(h);try{u(a?o.call(a):o())}catch(f){d(f)}},a)});return n.set(h,c),h}e.exports=t})()})(ln)),ln.exports}var MT=ET();const $T=Pl(MT);function fh(){return{async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null}}var di=fh();function tg(e){di=e}var Is={exec:()=>null};function Ut(e,t=""){let r=typeof e=="string"?e:e.source,i={replace:(s,o)=>{let a=typeof o=="string"?o:o.source;return a=a.replace(ve.caret,"$1"),r=r.replace(s,a),i},getRegex:()=>new RegExp(r,t)};return i}var OT=(()=>{try{return!!new RegExp("(?<=1)(?<!1)")}catch{return!1}})(),ve={codeRemoveIndent:/^(?: {1,4}| {0,3}\t)/gm,outputLinkReplace:/\\([\[\]])/g,indentCodeCompensation:/^(\s+)(?:```)/,beginningSpace:/^\s+/,endingHash:/#$/,startingSpaceChar:/^ /,endingSpaceChar:/ $/,nonSpaceChar:/[^ ]/,newLineCharGlobal:/\n/g,tabCharGlobal:/\t/g,multipleSpaceGlobal:/\s+/g,blankLine:/^[ \t]*$/,doubleBlankLine:/\n[ \t]*\n[ \t]*$/,blockquoteStart:/^ {0,3}>/,blockquoteSetextReplace:/\n {0,3}((?:=+|-+) *)(?=\n|$)/g,blockquoteSetextReplace2:/^ {0,3}>[ \t]?/gm,listReplaceTabs:/^\t+/,listReplaceNesting:/^ {1,4}(?=( {4})*[^ ])/g,listIsTask:/^\[[ xX]\] /,listReplaceTask:/^\[[ xX]\] +/,anyLine:/\n.*\n/,hrefBrackets:/^<(.*)>$/,tableDelimiter:/[:|]/,tableAlignChars:/^\||\| *$/g,tableRowBlankLine:/\n[ \t]*$/,tableAlignRight:/^ *-+: *$/,tableAlignCenter:/^ *:-+: *$/,tableAlignLeft:/^ *:-+ *$/,startATag:/^<a /i,endATag:/^<\/a>/i,startPreScriptTag:/^<(pre|code|kbd|script)(\s|>)/i,endPreScriptTag:/^<\/(pre|code|kbd|script)(\s|>)/i,startAngleBracket:/^</,endAngleBracket:/>$/,pedanticHrefTitle:/^([^'"]*[^\s])\s+(['"])(.*)\2/,unicodeAlphaNumeric:/[\p{L}\p{N}]/u,escapeTest:/[&<>"']/,escapeReplace:/[&<>"']/g,escapeTestNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,escapeReplaceNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/g,unescapeTest:/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/ig,caret:/(^|[^\[])\^/g,percentDecode:/%25/g,findPipe:/\|/g,splitPipe:/ \|/,slashPipe:/\\\|/g,carriageReturn:/\r\n|\r/g,spaceLine:/^ +$/gm,notSpaceStart:/^\S*/,endingNewline:/\n$/,listItemRegex:e=>new RegExp(`^( {0,3}${e})((?:[ ][^\\n]*)?(?:\\n|$))`),nextBulletRegex:e=>new RegExp(`^ {0,${Math.min(3,e-1)}}(?:[*+-]|\\d{1,9}[.)])((?:[ ][^\\n]*)?(?:\\n|$))`),hrRegex:e=>new RegExp(`^ {0,${Math.min(3,e-1)}}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)`),fencesBeginRegex:e=>new RegExp(`^ {0,${Math.min(3,e-1)}}(?:\`\`\`|~~~)`),headingBeginRegex:e=>new RegExp(`^ {0,${Math.min(3,e-1)}}#`),htmlBeginRegex:e=>new RegExp(`^ {0,${Math.min(3,e-1)}}<(?:[a-z].*>|!--)`,"i")},DT=/^(?:[ \t]*(?:\n|$))+/,IT=/^((?: {4}| {0,3}\t)[^\n]+(?:\n(?:[ \t]*(?:\n|$))*)?)+/,PT=/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,io=/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,RT=/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,ph=/(?:[*+-]|\d{1,9}[.)])/,eg=/^(?!bull |blockCode|fences|blockquote|heading|html|table)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html|table))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,rg=Ut(eg).replace(/bull/g,ph).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/\|table/g,"").getRegex(),NT=Ut(eg).replace(/bull/g,ph).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/table/g,/ {0,3}\|?(?:[:\- ]*\|)+[\:\- ]*\n/).getRegex(),gh=/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,qT=/^[^\n]+/,mh=/(?!\s*\])(?:\\[\s\S]|[^\[\]\\])+/,zT=Ut(/^ {0,3}\[(label)\]: *(?:\n[ \t]*)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n[ \t]*)?| *\n[ \t]*)(title))? *(?:\n+|$)/).replace("label",mh).replace("title",/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(),WT=Ut(/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g,ph).getRegex(),Ta="address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|search|section|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul",yh=/<!--(?:-?>|[\s\S]*?(?:-->|$))/,HT=Ut("^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:</\\1>[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|<![A-Z][\\s\\S]*?(?:>\\n*|$)|<!\\[CDATA\\[[\\s\\S]*?(?:\\]\\]>\\n*|$)|</?(tag)(?: +|\\n|/?>)[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|</(?!script|pre|style|textarea)[a-z][\\w-]*\\s*>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$))","i").replace("comment",yh).replace("tag",Ta).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),ig=Ut(gh).replace("hr",io).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("|table","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",Ta).getRegex(),YT=Ut(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph",ig).getRegex(),xh={blockquote:YT,code:IT,def:zT,fences:PT,heading:RT,hr:io,html:HT,lheading:rg,list:WT,newline:DT,paragraph:ig,table:Is,text:qT},Bu=Ut("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr",io).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("blockquote"," {0,3}>").replace("code","(?: {4}| {0,3} )[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",Ta).getRegex(),jT={...xh,lheading:NT,table:Bu,paragraph:Ut(gh).replace("hr",io).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("table",Bu).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",Ta).getRegex()},UT={...xh,html:Ut(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+?</\\1> *(?:\\n{2,}|\\s*$)|<tag(?:"[^"]*"|'[^']*'|\\s[^'"/>\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment",yh).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:Is,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:Ut(gh).replace("hr",io).replace("heading",` *#{1,6} *[^
|
|
130
|
+
]`).replace("lheading",rg).replace("|table","").replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").replace("|tag","").getRegex()},GT=/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,XT=/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,sg=/^( {2,}|\\)\n(?!\s*$)/,VT=/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\<!\[`*_]|\b_|$)|[^ ](?= {2,}\n)))/,_a=/[\p{P}\p{S}]/u,Ch=/[\s\p{P}\p{S}]/u,og=/[^\s\p{P}\p{S}]/u,ZT=Ut(/^((?![*_])punctSpace)/,"u").replace(/punctSpace/g,Ch).getRegex(),ag=/(?!~)[\p{P}\p{S}]/u,KT=/(?!~)[\s\p{P}\p{S}]/u,QT=/(?:[^\s\p{P}\p{S}]|~)/u,JT=Ut(/link|precode-code|html/,"g").replace("link",/\[(?:[^\[\]`]|(?<a>`+)[^`]+\k<a>(?!`))*?\]\((?:\\[\s\S]|[^\\\(\)]|\((?:\\[\s\S]|[^\\\(\)])*\))*\)/).replace("precode-",OT?"(?<!`)()":"(^^|[^`])").replace("code",/(?<b>`+)[^`]+\k<b>(?!`)/).replace("html",/<(?! )[^<>]*?>/).getRegex(),ng=/^(?:\*+(?:((?!\*)punct)|[^\s*]))|^_+(?:((?!_)punct)|([^\s_]))/,t_=Ut(ng,"u").replace(/punct/g,_a).getRegex(),e_=Ut(ng,"u").replace(/punct/g,ag).getRegex(),lg="^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)punct(\\*+)(?=[\\s]|$)|notPunctSpace(\\*+)(?!\\*)(?=punctSpace|$)|(?!\\*)punctSpace(\\*+)(?=notPunctSpace)|[\\s](\\*+)(?!\\*)(?=punct)|(?!\\*)punct(\\*+)(?!\\*)(?=punct)|notPunctSpace(\\*+)(?=notPunctSpace)",r_=Ut(lg,"gu").replace(/notPunctSpace/g,og).replace(/punctSpace/g,Ch).replace(/punct/g,_a).getRegex(),i_=Ut(lg,"gu").replace(/notPunctSpace/g,QT).replace(/punctSpace/g,KT).replace(/punct/g,ag).getRegex(),s_=Ut("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)punct(_+)(?=[\\s]|$)|notPunctSpace(_+)(?!_)(?=punctSpace|$)|(?!_)punctSpace(_+)(?=notPunctSpace)|[\\s](_+)(?!_)(?=punct)|(?!_)punct(_+)(?!_)(?=punct)","gu").replace(/notPunctSpace/g,og).replace(/punctSpace/g,Ch).replace(/punct/g,_a).getRegex(),o_=Ut(/\\(punct)/,"gu").replace(/punct/g,_a).getRegex(),a_=Ut(/^<(scheme:[^\s\x00-\x1f<>]*|email)>/).replace("scheme",/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/).replace("email",/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/).getRegex(),n_=Ut(yh).replace("(?:-->|$)","-->").getRegex(),l_=Ut("^comment|^</[a-zA-Z][\\w:-]*\\s*>|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^<![a-zA-Z]+\\s[\\s\\S]*?>|^<!\\[CDATA\\[[\\s\\S]*?\\]\\]>").replace("comment",n_).replace("attribute",/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(),sa=/(?:\[(?:\\[\s\S]|[^\[\]\\])*\]|\\[\s\S]|`+[^`]*?`+(?!`)|[^\[\]\\`])*?/,h_=Ut(/^!?\[(label)\]\(\s*(href)(?:(?:[ \t]*(?:\n[ \t]*)?)(title))?\s*\)/).replace("label",sa).replace("href",/<(?:\\.|[^\n<>\\])+>|[^ \t\n\x00-\x1f]*/).replace("title",/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(),hg=Ut(/^!?\[(label)\]\[(ref)\]/).replace("label",sa).replace("ref",mh).getRegex(),cg=Ut(/^!?\[(ref)\](?:\[\])?/).replace("ref",mh).getRegex(),c_=Ut("reflink|nolink(?!\\()","g").replace("reflink",hg).replace("nolink",cg).getRegex(),Lu=/[hH][tT][tT][pP][sS]?|[fF][tT][pP]/,bh={_backpedal:Is,anyPunctuation:o_,autolink:a_,blockSkip:JT,br:sg,code:XT,del:Is,emStrongLDelim:t_,emStrongRDelimAst:r_,emStrongRDelimUnd:s_,escape:GT,link:h_,nolink:cg,punctuation:ZT,reflink:hg,reflinkSearch:c_,tag:l_,text:VT,url:Is},u_={...bh,link:Ut(/^!?\[(label)\]\((.*?)\)/).replace("label",sa).getRegex(),reflink:Ut(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",sa).getRegex()},pl={...bh,emStrongRDelimAst:i_,emStrongLDelim:e_,url:Ut(/^((?:protocol):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/).replace("protocol",Lu).replace("email",/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/).getRegex(),_backpedal:/(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/,del:/^(~~?)(?=[^\s~])((?:\\[\s\S]|[^\\])*?(?:\\[\s\S]|[^\s~\\]))\1(?=[^~]|$)/,text:Ut(/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\<!\[`*~_]|\b_|protocol:\/\/|www\.|$)|[^ ](?= {2,}\n)|[^a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-](?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)))/).replace("protocol",Lu).getRegex()},d_={...pl,br:Ut(sg).replace("{2,}","*").getRegex(),text:Ut(pl.text).replace("\\b_","\\b_| {2,}\\n").replace(/\{2,\}/g,"*").getRegex()},Co={normal:xh,gfm:jT,pedantic:UT},ps={normal:bh,gfm:pl,breaks:d_,pedantic:u_},f_={"&":"&","<":"<",">":">",'"':""","'":"'"},Fu=e=>f_[e];function sr(e,t){if(t){if(ve.escapeTest.test(e))return e.replace(ve.escapeReplace,Fu)}else if(ve.escapeTestNoEncode.test(e))return e.replace(ve.escapeReplaceNoEncode,Fu);return e}function Au(e){try{e=encodeURI(e).replace(ve.percentDecode,"%")}catch{return null}return e}function Eu(e,t){var o;let r=e.replace(ve.findPipe,(a,n,l)=>{let c=!1,h=n;for(;--h>=0&&l[h]==="\\";)c=!c;return c?"|":" |"}),i=r.split(ve.splitPipe),s=0;if(i[0].trim()||i.shift(),i.length>0&&!((o=i.at(-1))!=null&&o.trim())&&i.pop(),t)if(i.length>t)i.splice(t);else for(;i.length<t;)i.push("");for(;s<i.length;s++)i[s]=i[s].trim().replace(ve.slashPipe,"|");return i}function gs(e,t,r){let i=e.length;if(i===0)return"";let s=0;for(;s<i&&e.charAt(i-s-1)===t;)s++;return e.slice(0,i-s)}function p_(e,t){if(e.indexOf(t[1])===-1)return-1;let r=0;for(let i=0;i<e.length;i++)if(e[i]==="\\")i++;else if(e[i]===t[0])r++;else if(e[i]===t[1]&&(r--,r<0))return i;return r>0?-2:-1}function Mu(e,t,r,i,s){let o=t.href,a=t.title||null,n=e[1].replace(s.other.outputLinkReplace,"$1");i.state.inLink=!0;let l={type:e[0].charAt(0)==="!"?"image":"link",raw:r,href:o,title:a,text:n,tokens:i.inlineTokens(n)};return i.state.inLink=!1,l}function g_(e,t,r){let i=e.match(r.other.indentCodeCompensation);if(i===null)return t;let s=i[1];return t.split(`
|
|
131
|
+
`).map(o=>{let a=o.match(r.other.beginningSpace);if(a===null)return o;let[n]=a;return n.length>=s.length?o.slice(s.length):o}).join(`
|
|
132
|
+
`)}var oa=class{constructor(t){Vt(this,"options");Vt(this,"rules");Vt(this,"lexer");this.options=t||di}space(t){let r=this.rules.block.newline.exec(t);if(r&&r[0].length>0)return{type:"space",raw:r[0]}}code(t){let r=this.rules.block.code.exec(t);if(r){let i=r[0].replace(this.rules.other.codeRemoveIndent,"");return{type:"code",raw:r[0],codeBlockStyle:"indented",text:this.options.pedantic?i:gs(i,`
|
|
133
|
+
`)}}}fences(t){let r=this.rules.block.fences.exec(t);if(r){let i=r[0],s=g_(i,r[3]||"",this.rules);return{type:"code",raw:i,lang:r[2]?r[2].trim().replace(this.rules.inline.anyPunctuation,"$1"):r[2],text:s}}}heading(t){let r=this.rules.block.heading.exec(t);if(r){let i=r[2].trim();if(this.rules.other.endingHash.test(i)){let s=gs(i,"#");(this.options.pedantic||!s||this.rules.other.endingSpaceChar.test(s))&&(i=s.trim())}return{type:"heading",raw:r[0],depth:r[1].length,text:i,tokens:this.lexer.inline(i)}}}hr(t){let r=this.rules.block.hr.exec(t);if(r)return{type:"hr",raw:gs(r[0],`
|
|
134
|
+
`)}}blockquote(t){let r=this.rules.block.blockquote.exec(t);if(r){let i=gs(r[0],`
|
|
135
|
+
`).split(`
|
|
136
|
+
`),s="",o="",a=[];for(;i.length>0;){let n=!1,l=[],c;for(c=0;c<i.length;c++)if(this.rules.other.blockquoteStart.test(i[c]))l.push(i[c]),n=!0;else if(!n)l.push(i[c]);else break;i=i.slice(c);let h=l.join(`
|
|
137
|
+
`),u=h.replace(this.rules.other.blockquoteSetextReplace,`
|
|
138
|
+
$1`).replace(this.rules.other.blockquoteSetextReplace2,"");s=s?`${s}
|
|
139
|
+
${h}`:h,o=o?`${o}
|
|
140
|
+
${u}`:u;let d=this.lexer.state.top;if(this.lexer.state.top=!0,this.lexer.blockTokens(u,a,!0),this.lexer.state.top=d,i.length===0)break;let f=a.at(-1);if((f==null?void 0:f.type)==="code")break;if((f==null?void 0:f.type)==="blockquote"){let m=f,y=m.raw+`
|
|
141
|
+
`+i.join(`
|
|
142
|
+
`),C=this.blockquote(y);a[a.length-1]=C,s=s.substring(0,s.length-m.raw.length)+C.raw,o=o.substring(0,o.length-m.text.length)+C.text;break}else if((f==null?void 0:f.type)==="list"){let m=f,y=m.raw+`
|
|
143
|
+
`+i.join(`
|
|
144
|
+
`),C=this.list(y);a[a.length-1]=C,s=s.substring(0,s.length-f.raw.length)+C.raw,o=o.substring(0,o.length-m.raw.length)+C.raw,i=y.substring(a.at(-1).raw.length).split(`
|
|
145
|
+
`);continue}}return{type:"blockquote",raw:s,tokens:a,text:o}}}list(t){let r=this.rules.block.list.exec(t);if(r){let i=r[1].trim(),s=i.length>1,o={type:"list",raw:"",ordered:s,start:s?+i.slice(0,-1):"",loose:!1,items:[]};i=s?`\\d{1,9}\\${i.slice(-1)}`:`\\${i}`,this.options.pedantic&&(i=s?i:"[*+-]");let a=this.rules.other.listItemRegex(i),n=!1;for(;t;){let c=!1,h="",u="";if(!(r=a.exec(t))||this.rules.block.hr.test(t))break;h=r[0],t=t.substring(h.length);let d=r[2].split(`
|
|
146
|
+
`,1)[0].replace(this.rules.other.listReplaceTabs,b=>" ".repeat(3*b.length)),f=t.split(`
|
|
147
|
+
`,1)[0],m=!d.trim(),y=0;if(this.options.pedantic?(y=2,u=d.trimStart()):m?y=r[1].length+1:(y=r[2].search(this.rules.other.nonSpaceChar),y=y>4?1:y,u=d.slice(y),y+=r[1].length),m&&this.rules.other.blankLine.test(f)&&(h+=f+`
|
|
148
|
+
`,t=t.substring(f.length+1),c=!0),!c){let b=this.rules.other.nextBulletRegex(y),w=this.rules.other.hrRegex(y),_=this.rules.other.fencesBeginRegex(y),v=this.rules.other.headingBeginRegex(y),F=this.rules.other.htmlBeginRegex(y);for(;t;){let A=t.split(`
|
|
149
|
+
`,1)[0],L;if(f=A,this.options.pedantic?(f=f.replace(this.rules.other.listReplaceNesting," "),L=f):L=f.replace(this.rules.other.tabCharGlobal," "),_.test(f)||v.test(f)||F.test(f)||b.test(f)||w.test(f))break;if(L.search(this.rules.other.nonSpaceChar)>=y||!f.trim())u+=`
|
|
150
|
+
`+L.slice(y);else{if(m||d.replace(this.rules.other.tabCharGlobal," ").search(this.rules.other.nonSpaceChar)>=4||_.test(d)||v.test(d)||w.test(d))break;u+=`
|
|
151
|
+
`+f}!m&&!f.trim()&&(m=!0),h+=A+`
|
|
152
|
+
`,t=t.substring(A.length+1),d=L.slice(y)}}o.loose||(n?o.loose=!0:this.rules.other.doubleBlankLine.test(h)&&(n=!0));let C=null,x;this.options.gfm&&(C=this.rules.other.listIsTask.exec(u),C&&(x=C[0]!=="[ ] ",u=u.replace(this.rules.other.listReplaceTask,""))),o.items.push({type:"list_item",raw:h,task:!!C,checked:x,loose:!1,text:u,tokens:[]}),o.raw+=h}let l=o.items.at(-1);if(l)l.raw=l.raw.trimEnd(),l.text=l.text.trimEnd();else return;o.raw=o.raw.trimEnd();for(let c=0;c<o.items.length;c++)if(this.lexer.state.top=!1,o.items[c].tokens=this.lexer.blockTokens(o.items[c].text,[]),!o.loose){let h=o.items[c].tokens.filter(d=>d.type==="space"),u=h.length>0&&h.some(d=>this.rules.other.anyLine.test(d.raw));o.loose=u}if(o.loose)for(let c=0;c<o.items.length;c++)o.items[c].loose=!0;return o}}html(t){let r=this.rules.block.html.exec(t);if(r)return{type:"html",block:!0,raw:r[0],pre:r[1]==="pre"||r[1]==="script"||r[1]==="style",text:r[0]}}def(t){let r=this.rules.block.def.exec(t);if(r){let i=r[1].toLowerCase().replace(this.rules.other.multipleSpaceGlobal," "),s=r[2]?r[2].replace(this.rules.other.hrefBrackets,"$1").replace(this.rules.inline.anyPunctuation,"$1"):"",o=r[3]?r[3].substring(1,r[3].length-1).replace(this.rules.inline.anyPunctuation,"$1"):r[3];return{type:"def",tag:i,raw:r[0],href:s,title:o}}}table(t){var n;let r=this.rules.block.table.exec(t);if(!r||!this.rules.other.tableDelimiter.test(r[2]))return;let i=Eu(r[1]),s=r[2].replace(this.rules.other.tableAlignChars,"").split("|"),o=(n=r[3])!=null&&n.trim()?r[3].replace(this.rules.other.tableRowBlankLine,"").split(`
|
|
153
|
+
`):[],a={type:"table",raw:r[0],header:[],align:[],rows:[]};if(i.length===s.length){for(let l of s)this.rules.other.tableAlignRight.test(l)?a.align.push("right"):this.rules.other.tableAlignCenter.test(l)?a.align.push("center"):this.rules.other.tableAlignLeft.test(l)?a.align.push("left"):a.align.push(null);for(let l=0;l<i.length;l++)a.header.push({text:i[l],tokens:this.lexer.inline(i[l]),header:!0,align:a.align[l]});for(let l of o)a.rows.push(Eu(l,a.header.length).map((c,h)=>({text:c,tokens:this.lexer.inline(c),header:!1,align:a.align[h]})));return a}}lheading(t){let r=this.rules.block.lheading.exec(t);if(r)return{type:"heading",raw:r[0],depth:r[2].charAt(0)==="="?1:2,text:r[1],tokens:this.lexer.inline(r[1])}}paragraph(t){let r=this.rules.block.paragraph.exec(t);if(r){let i=r[1].charAt(r[1].length-1)===`
|
|
154
|
+
`?r[1].slice(0,-1):r[1];return{type:"paragraph",raw:r[0],text:i,tokens:this.lexer.inline(i)}}}text(t){let r=this.rules.block.text.exec(t);if(r)return{type:"text",raw:r[0],text:r[0],tokens:this.lexer.inline(r[0])}}escape(t){let r=this.rules.inline.escape.exec(t);if(r)return{type:"escape",raw:r[0],text:r[1]}}tag(t){let r=this.rules.inline.tag.exec(t);if(r)return!this.lexer.state.inLink&&this.rules.other.startATag.test(r[0])?this.lexer.state.inLink=!0:this.lexer.state.inLink&&this.rules.other.endATag.test(r[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&this.rules.other.startPreScriptTag.test(r[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&this.rules.other.endPreScriptTag.test(r[0])&&(this.lexer.state.inRawBlock=!1),{type:"html",raw:r[0],inLink:this.lexer.state.inLink,inRawBlock:this.lexer.state.inRawBlock,block:!1,text:r[0]}}link(t){let r=this.rules.inline.link.exec(t);if(r){let i=r[2].trim();if(!this.options.pedantic&&this.rules.other.startAngleBracket.test(i)){if(!this.rules.other.endAngleBracket.test(i))return;let a=gs(i.slice(0,-1),"\\");if((i.length-a.length)%2===0)return}else{let a=p_(r[2],"()");if(a===-2)return;if(a>-1){let n=(r[0].indexOf("!")===0?5:4)+r[1].length+a;r[2]=r[2].substring(0,a),r[0]=r[0].substring(0,n).trim(),r[3]=""}}let s=r[2],o="";if(this.options.pedantic){let a=this.rules.other.pedanticHrefTitle.exec(s);a&&(s=a[1],o=a[3])}else o=r[3]?r[3].slice(1,-1):"";return s=s.trim(),this.rules.other.startAngleBracket.test(s)&&(this.options.pedantic&&!this.rules.other.endAngleBracket.test(i)?s=s.slice(1):s=s.slice(1,-1)),Mu(r,{href:s&&s.replace(this.rules.inline.anyPunctuation,"$1"),title:o&&o.replace(this.rules.inline.anyPunctuation,"$1")},r[0],this.lexer,this.rules)}}reflink(t,r){let i;if((i=this.rules.inline.reflink.exec(t))||(i=this.rules.inline.nolink.exec(t))){let s=(i[2]||i[1]).replace(this.rules.other.multipleSpaceGlobal," "),o=r[s.toLowerCase()];if(!o){let a=i[0].charAt(0);return{type:"text",raw:a,text:a}}return Mu(i,o,i[0],this.lexer,this.rules)}}emStrong(t,r,i=""){let s=this.rules.inline.emStrongLDelim.exec(t);if(!(!s||s[3]&&i.match(this.rules.other.unicodeAlphaNumeric))&&(!(s[1]||s[2])||!i||this.rules.inline.punctuation.exec(i))){let o=[...s[0]].length-1,a,n,l=o,c=0,h=s[0][0]==="*"?this.rules.inline.emStrongRDelimAst:this.rules.inline.emStrongRDelimUnd;for(h.lastIndex=0,r=r.slice(-1*t.length+o);(s=h.exec(r))!=null;){if(a=s[1]||s[2]||s[3]||s[4]||s[5]||s[6],!a)continue;if(n=[...a].length,s[3]||s[4]){l+=n;continue}else if((s[5]||s[6])&&o%3&&!((o+n)%3)){c+=n;continue}if(l-=n,l>0)continue;n=Math.min(n,n+l+c);let u=[...s[0]][0].length,d=t.slice(0,o+s.index+u+n);if(Math.min(o,n)%2){let m=d.slice(1,-1);return{type:"em",raw:d,text:m,tokens:this.lexer.inlineTokens(m)}}let f=d.slice(2,-2);return{type:"strong",raw:d,text:f,tokens:this.lexer.inlineTokens(f)}}}}codespan(t){let r=this.rules.inline.code.exec(t);if(r){let i=r[2].replace(this.rules.other.newLineCharGlobal," "),s=this.rules.other.nonSpaceChar.test(i),o=this.rules.other.startingSpaceChar.test(i)&&this.rules.other.endingSpaceChar.test(i);return s&&o&&(i=i.substring(1,i.length-1)),{type:"codespan",raw:r[0],text:i}}}br(t){let r=this.rules.inline.br.exec(t);if(r)return{type:"br",raw:r[0]}}del(t){let r=this.rules.inline.del.exec(t);if(r)return{type:"del",raw:r[0],text:r[2],tokens:this.lexer.inlineTokens(r[2])}}autolink(t){let r=this.rules.inline.autolink.exec(t);if(r){let i,s;return r[2]==="@"?(i=r[1],s="mailto:"+i):(i=r[1],s=i),{type:"link",raw:r[0],text:i,href:s,tokens:[{type:"text",raw:i,text:i}]}}}url(t){var i;let r;if(r=this.rules.inline.url.exec(t)){let s,o;if(r[2]==="@")s=r[0],o="mailto:"+s;else{let a;do a=r[0],r[0]=((i=this.rules.inline._backpedal.exec(r[0]))==null?void 0:i[0])??"";while(a!==r[0]);s=r[0],r[1]==="www."?o="http://"+r[0]:o=r[0]}return{type:"link",raw:r[0],text:s,href:o,tokens:[{type:"text",raw:s,text:s}]}}}inlineText(t){let r=this.rules.inline.text.exec(t);if(r){let i=this.lexer.state.inRawBlock;return{type:"text",raw:r[0],text:r[0],escaped:i}}}},Ge=class gl{constructor(t){Vt(this,"tokens");Vt(this,"options");Vt(this,"state");Vt(this,"tokenizer");Vt(this,"inlineQueue");this.tokens=[],this.tokens.links=Object.create(null),this.options=t||di,this.options.tokenizer=this.options.tokenizer||new oa,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options,this.tokenizer.lexer=this,this.inlineQueue=[],this.state={inLink:!1,inRawBlock:!1,top:!0};let r={other:ve,block:Co.normal,inline:ps.normal};this.options.pedantic?(r.block=Co.pedantic,r.inline=ps.pedantic):this.options.gfm&&(r.block=Co.gfm,this.options.breaks?r.inline=ps.breaks:r.inline=ps.gfm),this.tokenizer.rules=r}static get rules(){return{block:Co,inline:ps}}static lex(t,r){return new gl(r).lex(t)}static lexInline(t,r){return new gl(r).inlineTokens(t)}lex(t){t=t.replace(ve.carriageReturn,`
|
|
155
|
+
`),this.blockTokens(t,this.tokens);for(let r=0;r<this.inlineQueue.length;r++){let i=this.inlineQueue[r];this.inlineTokens(i.src,i.tokens)}return this.inlineQueue=[],this.tokens}blockTokens(t,r=[],i=!1){var s,o,a;for(this.options.pedantic&&(t=t.replace(ve.tabCharGlobal," ").replace(ve.spaceLine,""));t;){let n;if((o=(s=this.options.extensions)==null?void 0:s.block)!=null&&o.some(c=>(n=c.call({lexer:this},t,r))?(t=t.substring(n.raw.length),r.push(n),!0):!1))continue;if(n=this.tokenizer.space(t)){t=t.substring(n.raw.length);let c=r.at(-1);n.raw.length===1&&c!==void 0?c.raw+=`
|
|
156
|
+
`:r.push(n);continue}if(n=this.tokenizer.code(t)){t=t.substring(n.raw.length);let c=r.at(-1);(c==null?void 0:c.type)==="paragraph"||(c==null?void 0:c.type)==="text"?(c.raw+=(c.raw.endsWith(`
|
|
157
|
+
`)?"":`
|
|
158
|
+
`)+n.raw,c.text+=`
|
|
159
|
+
`+n.text,this.inlineQueue.at(-1).src=c.text):r.push(n);continue}if(n=this.tokenizer.fences(t)){t=t.substring(n.raw.length),r.push(n);continue}if(n=this.tokenizer.heading(t)){t=t.substring(n.raw.length),r.push(n);continue}if(n=this.tokenizer.hr(t)){t=t.substring(n.raw.length),r.push(n);continue}if(n=this.tokenizer.blockquote(t)){t=t.substring(n.raw.length),r.push(n);continue}if(n=this.tokenizer.list(t)){t=t.substring(n.raw.length),r.push(n);continue}if(n=this.tokenizer.html(t)){t=t.substring(n.raw.length),r.push(n);continue}if(n=this.tokenizer.def(t)){t=t.substring(n.raw.length);let c=r.at(-1);(c==null?void 0:c.type)==="paragraph"||(c==null?void 0:c.type)==="text"?(c.raw+=(c.raw.endsWith(`
|
|
160
|
+
`)?"":`
|
|
161
|
+
`)+n.raw,c.text+=`
|
|
162
|
+
`+n.raw,this.inlineQueue.at(-1).src=c.text):this.tokens.links[n.tag]||(this.tokens.links[n.tag]={href:n.href,title:n.title},r.push(n));continue}if(n=this.tokenizer.table(t)){t=t.substring(n.raw.length),r.push(n);continue}if(n=this.tokenizer.lheading(t)){t=t.substring(n.raw.length),r.push(n);continue}let l=t;if((a=this.options.extensions)!=null&&a.startBlock){let c=1/0,h=t.slice(1),u;this.options.extensions.startBlock.forEach(d=>{u=d.call({lexer:this},h),typeof u=="number"&&u>=0&&(c=Math.min(c,u))}),c<1/0&&c>=0&&(l=t.substring(0,c+1))}if(this.state.top&&(n=this.tokenizer.paragraph(l))){let c=r.at(-1);i&&(c==null?void 0:c.type)==="paragraph"?(c.raw+=(c.raw.endsWith(`
|
|
163
|
+
`)?"":`
|
|
164
|
+
`)+n.raw,c.text+=`
|
|
165
|
+
`+n.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=c.text):r.push(n),i=l.length!==t.length,t=t.substring(n.raw.length);continue}if(n=this.tokenizer.text(t)){t=t.substring(n.raw.length);let c=r.at(-1);(c==null?void 0:c.type)==="text"?(c.raw+=(c.raw.endsWith(`
|
|
166
|
+
`)?"":`
|
|
167
|
+
`)+n.raw,c.text+=`
|
|
168
|
+
`+n.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=c.text):r.push(n);continue}if(t){let c="Infinite loop on byte: "+t.charCodeAt(0);if(this.options.silent){console.error(c);break}else throw new Error(c)}}return this.state.top=!0,r}inline(t,r=[]){return this.inlineQueue.push({src:t,tokens:r}),r}inlineTokens(t,r=[]){var l,c,h,u,d;let i=t,s=null;if(this.tokens.links){let f=Object.keys(this.tokens.links);if(f.length>0)for(;(s=this.tokenizer.rules.inline.reflinkSearch.exec(i))!=null;)f.includes(s[0].slice(s[0].lastIndexOf("[")+1,-1))&&(i=i.slice(0,s.index)+"["+"a".repeat(s[0].length-2)+"]"+i.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;(s=this.tokenizer.rules.inline.anyPunctuation.exec(i))!=null;)i=i.slice(0,s.index)+"++"+i.slice(this.tokenizer.rules.inline.anyPunctuation.lastIndex);let o;for(;(s=this.tokenizer.rules.inline.blockSkip.exec(i))!=null;)o=s[2]?s[2].length:0,i=i.slice(0,s.index+o)+"["+"a".repeat(s[0].length-o-2)+"]"+i.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);i=((c=(l=this.options.hooks)==null?void 0:l.emStrongMask)==null?void 0:c.call({lexer:this},i))??i;let a=!1,n="";for(;t;){a||(n=""),a=!1;let f;if((u=(h=this.options.extensions)==null?void 0:h.inline)!=null&&u.some(y=>(f=y.call({lexer:this},t,r))?(t=t.substring(f.raw.length),r.push(f),!0):!1))continue;if(f=this.tokenizer.escape(t)){t=t.substring(f.raw.length),r.push(f);continue}if(f=this.tokenizer.tag(t)){t=t.substring(f.raw.length),r.push(f);continue}if(f=this.tokenizer.link(t)){t=t.substring(f.raw.length),r.push(f);continue}if(f=this.tokenizer.reflink(t,this.tokens.links)){t=t.substring(f.raw.length);let y=r.at(-1);f.type==="text"&&(y==null?void 0:y.type)==="text"?(y.raw+=f.raw,y.text+=f.text):r.push(f);continue}if(f=this.tokenizer.emStrong(t,i,n)){t=t.substring(f.raw.length),r.push(f);continue}if(f=this.tokenizer.codespan(t)){t=t.substring(f.raw.length),r.push(f);continue}if(f=this.tokenizer.br(t)){t=t.substring(f.raw.length),r.push(f);continue}if(f=this.tokenizer.del(t)){t=t.substring(f.raw.length),r.push(f);continue}if(f=this.tokenizer.autolink(t)){t=t.substring(f.raw.length),r.push(f);continue}if(!this.state.inLink&&(f=this.tokenizer.url(t))){t=t.substring(f.raw.length),r.push(f);continue}let m=t;if((d=this.options.extensions)!=null&&d.startInline){let y=1/0,C=t.slice(1),x;this.options.extensions.startInline.forEach(b=>{x=b.call({lexer:this},C),typeof x=="number"&&x>=0&&(y=Math.min(y,x))}),y<1/0&&y>=0&&(m=t.substring(0,y+1))}if(f=this.tokenizer.inlineText(m)){t=t.substring(f.raw.length),f.raw.slice(-1)!=="_"&&(n=f.raw.slice(-1)),a=!0;let y=r.at(-1);(y==null?void 0:y.type)==="text"?(y.raw+=f.raw,y.text+=f.text):r.push(f);continue}if(t){let y="Infinite loop on byte: "+t.charCodeAt(0);if(this.options.silent){console.error(y);break}else throw new Error(y)}}return r}},aa=class{constructor(t){Vt(this,"options");Vt(this,"parser");this.options=t||di}space(t){return""}code({text:t,lang:r,escaped:i}){var a;let s=(a=(r||"").match(ve.notSpaceStart))==null?void 0:a[0],o=t.replace(ve.endingNewline,"")+`
|
|
169
|
+
`;return s?'<pre><code class="language-'+sr(s)+'">'+(i?o:sr(o,!0))+`</code></pre>
|
|
170
|
+
`:"<pre><code>"+(i?o:sr(o,!0))+`</code></pre>
|
|
171
|
+
`}blockquote({tokens:t}){return`<blockquote>
|
|
172
|
+
${this.parser.parse(t)}</blockquote>
|
|
173
|
+
`}html({text:t}){return t}def(t){return""}heading({tokens:t,depth:r}){return`<h${r}>${this.parser.parseInline(t)}</h${r}>
|
|
174
|
+
`}hr(t){return`<hr>
|
|
175
|
+
`}list(t){let r=t.ordered,i=t.start,s="";for(let n=0;n<t.items.length;n++){let l=t.items[n];s+=this.listitem(l)}let o=r?"ol":"ul",a=r&&i!==1?' start="'+i+'"':"";return"<"+o+a+`>
|
|
176
|
+
`+s+"</"+o+`>
|
|
177
|
+
`}listitem(t){var i;let r="";if(t.task){let s=this.checkbox({checked:!!t.checked});t.loose?((i=t.tokens[0])==null?void 0:i.type)==="paragraph"?(t.tokens[0].text=s+" "+t.tokens[0].text,t.tokens[0].tokens&&t.tokens[0].tokens.length>0&&t.tokens[0].tokens[0].type==="text"&&(t.tokens[0].tokens[0].text=s+" "+sr(t.tokens[0].tokens[0].text),t.tokens[0].tokens[0].escaped=!0)):t.tokens.unshift({type:"text",raw:s+" ",text:s+" ",escaped:!0}):r+=s+" "}return r+=this.parser.parse(t.tokens,!!t.loose),`<li>${r}</li>
|
|
178
|
+
`}checkbox({checked:t}){return"<input "+(t?'checked="" ':"")+'disabled="" type="checkbox">'}paragraph({tokens:t}){return`<p>${this.parser.parseInline(t)}</p>
|
|
179
|
+
`}table(t){let r="",i="";for(let o=0;o<t.header.length;o++)i+=this.tablecell(t.header[o]);r+=this.tablerow({text:i});let s="";for(let o=0;o<t.rows.length;o++){let a=t.rows[o];i="";for(let n=0;n<a.length;n++)i+=this.tablecell(a[n]);s+=this.tablerow({text:i})}return s&&(s=`<tbody>${s}</tbody>`),`<table>
|
|
180
|
+
<thead>
|
|
181
|
+
`+r+`</thead>
|
|
182
|
+
`+s+`</table>
|
|
183
|
+
`}tablerow({text:t}){return`<tr>
|
|
184
|
+
${t}</tr>
|
|
185
|
+
`}tablecell(t){let r=this.parser.parseInline(t.tokens),i=t.header?"th":"td";return(t.align?`<${i} align="${t.align}">`:`<${i}>`)+r+`</${i}>
|
|
186
|
+
`}strong({tokens:t}){return`<strong>${this.parser.parseInline(t)}</strong>`}em({tokens:t}){return`<em>${this.parser.parseInline(t)}</em>`}codespan({text:t}){return`<code>${sr(t,!0)}</code>`}br(t){return"<br>"}del({tokens:t}){return`<del>${this.parser.parseInline(t)}</del>`}link({href:t,title:r,tokens:i}){let s=this.parser.parseInline(i),o=Au(t);if(o===null)return s;t=o;let a='<a href="'+t+'"';return r&&(a+=' title="'+sr(r)+'"'),a+=">"+s+"</a>",a}image({href:t,title:r,text:i,tokens:s}){s&&(i=this.parser.parseInline(s,this.parser.textRenderer));let o=Au(t);if(o===null)return sr(i);t=o;let a=`<img src="${t}" alt="${i}"`;return r&&(a+=` title="${sr(r)}"`),a+=">",a}text(t){return"tokens"in t&&t.tokens?this.parser.parseInline(t.tokens):"escaped"in t&&t.escaped?t.text:sr(t.text)}},kh=class{strong({text:t}){return t}em({text:t}){return t}codespan({text:t}){return t}del({text:t}){return t}html({text:t}){return t}text({text:t}){return t}link({text:t}){return""+t}image({text:t}){return""+t}br(){return""}},Xe=class ml{constructor(t){Vt(this,"options");Vt(this,"renderer");Vt(this,"textRenderer");this.options=t||di,this.options.renderer=this.options.renderer||new aa,this.renderer=this.options.renderer,this.renderer.options=this.options,this.renderer.parser=this,this.textRenderer=new kh}static parse(t,r){return new ml(r).parse(t)}static parseInline(t,r){return new ml(r).parseInline(t)}parse(t,r=!0){var s,o;let i="";for(let a=0;a<t.length;a++){let n=t[a];if((o=(s=this.options.extensions)==null?void 0:s.renderers)!=null&&o[n.type]){let c=n,h=this.options.extensions.renderers[c.type].call({parser:this},c);if(h!==!1||!["space","hr","heading","code","table","blockquote","list","html","def","paragraph","text"].includes(c.type)){i+=h||"";continue}}let l=n;switch(l.type){case"space":{i+=this.renderer.space(l);continue}case"hr":{i+=this.renderer.hr(l);continue}case"heading":{i+=this.renderer.heading(l);continue}case"code":{i+=this.renderer.code(l);continue}case"table":{i+=this.renderer.table(l);continue}case"blockquote":{i+=this.renderer.blockquote(l);continue}case"list":{i+=this.renderer.list(l);continue}case"html":{i+=this.renderer.html(l);continue}case"def":{i+=this.renderer.def(l);continue}case"paragraph":{i+=this.renderer.paragraph(l);continue}case"text":{let c=l,h=this.renderer.text(c);for(;a+1<t.length&&t[a+1].type==="text";)c=t[++a],h+=`
|
|
187
|
+
`+this.renderer.text(c);r?i+=this.renderer.paragraph({type:"paragraph",raw:h,text:h,tokens:[{type:"text",raw:h,text:h,escaped:!0}]}):i+=h;continue}default:{let c='Token with "'+l.type+'" type was not found.';if(this.options.silent)return console.error(c),"";throw new Error(c)}}}return i}parseInline(t,r=this.renderer){var s,o;let i="";for(let a=0;a<t.length;a++){let n=t[a];if((o=(s=this.options.extensions)==null?void 0:s.renderers)!=null&&o[n.type]){let c=this.options.extensions.renderers[n.type].call({parser:this},n);if(c!==!1||!["escape","html","link","image","strong","em","codespan","br","del","text"].includes(n.type)){i+=c||"";continue}}let l=n;switch(l.type){case"escape":{i+=r.text(l);break}case"html":{i+=r.html(l);break}case"link":{i+=r.link(l);break}case"image":{i+=r.image(l);break}case"strong":{i+=r.strong(l);break}case"em":{i+=r.em(l);break}case"codespan":{i+=r.codespan(l);break}case"br":{i+=r.br(l);break}case"del":{i+=r.del(l);break}case"text":{i+=r.text(l);break}default:{let c='Token with "'+l.type+'" type was not found.';if(this.options.silent)return console.error(c),"";throw new Error(c)}}}return i}},Lo,vs=(Lo=class{constructor(t){Vt(this,"options");Vt(this,"block");this.options=t||di}preprocess(t){return t}postprocess(t){return t}processAllTokens(t){return t}emStrongMask(t){return t}provideLexer(){return this.block?Ge.lex:Ge.lexInline}provideParser(){return this.block?Xe.parse:Xe.parseInline}},Vt(Lo,"passThroughHooks",new Set(["preprocess","postprocess","processAllTokens","emStrongMask"])),Vt(Lo,"passThroughHooksRespectAsync",new Set(["preprocess","postprocess","processAllTokens"])),Lo),m_=class{constructor(...t){Vt(this,"defaults",fh());Vt(this,"options",this.setOptions);Vt(this,"parse",this.parseMarkdown(!0));Vt(this,"parseInline",this.parseMarkdown(!1));Vt(this,"Parser",Xe);Vt(this,"Renderer",aa);Vt(this,"TextRenderer",kh);Vt(this,"Lexer",Ge);Vt(this,"Tokenizer",oa);Vt(this,"Hooks",vs);this.use(...t)}walkTokens(t,r){var s,o;let i=[];for(let a of t)switch(i=i.concat(r.call(this,a)),a.type){case"table":{let n=a;for(let l of n.header)i=i.concat(this.walkTokens(l.tokens,r));for(let l of n.rows)for(let c of l)i=i.concat(this.walkTokens(c.tokens,r));break}case"list":{let n=a;i=i.concat(this.walkTokens(n.items,r));break}default:{let n=a;(o=(s=this.defaults.extensions)==null?void 0:s.childTokens)!=null&&o[n.type]?this.defaults.extensions.childTokens[n.type].forEach(l=>{let c=n[l].flat(1/0);i=i.concat(this.walkTokens(c,r))}):n.tokens&&(i=i.concat(this.walkTokens(n.tokens,r)))}}return i}use(...t){let r=this.defaults.extensions||{renderers:{},childTokens:{}};return t.forEach(i=>{let s={...i};if(s.async=this.defaults.async||s.async||!1,i.extensions&&(i.extensions.forEach(o=>{if(!o.name)throw new Error("extension name required");if("renderer"in o){let a=r.renderers[o.name];a?r.renderers[o.name]=function(...n){let l=o.renderer.apply(this,n);return l===!1&&(l=a.apply(this,n)),l}:r.renderers[o.name]=o.renderer}if("tokenizer"in o){if(!o.level||o.level!=="block"&&o.level!=="inline")throw new Error("extension level must be 'block' or 'inline'");let a=r[o.level];a?a.unshift(o.tokenizer):r[o.level]=[o.tokenizer],o.start&&(o.level==="block"?r.startBlock?r.startBlock.push(o.start):r.startBlock=[o.start]:o.level==="inline"&&(r.startInline?r.startInline.push(o.start):r.startInline=[o.start]))}"childTokens"in o&&o.childTokens&&(r.childTokens[o.name]=o.childTokens)}),s.extensions=r),i.renderer){let o=this.defaults.renderer||new aa(this.defaults);for(let a in i.renderer){if(!(a in o))throw new Error(`renderer '${a}' does not exist`);if(["options","parser"].includes(a))continue;let n=a,l=i.renderer[n],c=o[n];o[n]=(...h)=>{let u=l.apply(o,h);return u===!1&&(u=c.apply(o,h)),u||""}}s.renderer=o}if(i.tokenizer){let o=this.defaults.tokenizer||new oa(this.defaults);for(let a in i.tokenizer){if(!(a in o))throw new Error(`tokenizer '${a}' does not exist`);if(["options","rules","lexer"].includes(a))continue;let n=a,l=i.tokenizer[n],c=o[n];o[n]=(...h)=>{let u=l.apply(o,h);return u===!1&&(u=c.apply(o,h)),u}}s.tokenizer=o}if(i.hooks){let o=this.defaults.hooks||new vs;for(let a in i.hooks){if(!(a in o))throw new Error(`hook '${a}' does not exist`);if(["options","block"].includes(a))continue;let n=a,l=i.hooks[n],c=o[n];vs.passThroughHooks.has(a)?o[n]=h=>{if(this.defaults.async&&vs.passThroughHooksRespectAsync.has(a))return(async()=>{let d=await l.call(o,h);return c.call(o,d)})();let u=l.call(o,h);return c.call(o,u)}:o[n]=(...h)=>{if(this.defaults.async)return(async()=>{let d=await l.apply(o,h);return d===!1&&(d=await c.apply(o,h)),d})();let u=l.apply(o,h);return u===!1&&(u=c.apply(o,h)),u}}s.hooks=o}if(i.walkTokens){let o=this.defaults.walkTokens,a=i.walkTokens;s.walkTokens=function(n){let l=[];return l.push(a.call(this,n)),o&&(l=l.concat(o.call(this,n))),l}}this.defaults={...this.defaults,...s}}),this}setOptions(t){return this.defaults={...this.defaults,...t},this}lexer(t,r){return Ge.lex(t,r??this.defaults)}parser(t,r){return Xe.parse(t,r??this.defaults)}parseMarkdown(t){return(r,i)=>{let s={...i},o={...this.defaults,...s},a=this.onError(!!o.silent,!!o.async);if(this.defaults.async===!0&&s.async===!1)return a(new Error("marked(): The async option was set to true by an extension. Remove async: false from the parse options object to return a Promise."));if(typeof r>"u"||r===null)return a(new Error("marked(): input parameter is undefined or null"));if(typeof r!="string")return a(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(r)+", string expected"));if(o.hooks&&(o.hooks.options=o,o.hooks.block=t),o.async)return(async()=>{let n=o.hooks?await o.hooks.preprocess(r):r,l=await(o.hooks?await o.hooks.provideLexer():t?Ge.lex:Ge.lexInline)(n,o),c=o.hooks?await o.hooks.processAllTokens(l):l;o.walkTokens&&await Promise.all(this.walkTokens(c,o.walkTokens));let h=await(o.hooks?await o.hooks.provideParser():t?Xe.parse:Xe.parseInline)(c,o);return o.hooks?await o.hooks.postprocess(h):h})().catch(a);try{o.hooks&&(r=o.hooks.preprocess(r));let n=(o.hooks?o.hooks.provideLexer():t?Ge.lex:Ge.lexInline)(r,o);o.hooks&&(n=o.hooks.processAllTokens(n)),o.walkTokens&&this.walkTokens(n,o.walkTokens);let l=(o.hooks?o.hooks.provideParser():t?Xe.parse:Xe.parseInline)(n,o);return o.hooks&&(l=o.hooks.postprocess(l)),l}catch(n){return a(n)}}}onError(t,r){return i=>{if(i.message+=`
|
|
188
|
+
Please report this to https://github.com/markedjs/marked.`,t){let s="<p>An error occurred:</p><pre>"+sr(i.message+"",!0)+"</pre>";return r?Promise.resolve(s):s}if(r)return Promise.reject(i);throw i}}},ni=new m_;function Gt(e,t){return ni.parse(e,t)}Gt.options=Gt.setOptions=function(e){return ni.setOptions(e),Gt.defaults=ni.defaults,tg(Gt.defaults),Gt};Gt.getDefaults=fh;Gt.defaults=di;Gt.use=function(...e){return ni.use(...e),Gt.defaults=ni.defaults,tg(Gt.defaults),Gt};Gt.walkTokens=function(e,t){return ni.walkTokens(e,t)};Gt.parseInline=ni.parseInline;Gt.Parser=Xe;Gt.parser=Xe.parse;Gt.Renderer=aa;Gt.TextRenderer=kh;Gt.Lexer=Ge;Gt.lexer=Ge.lex;Gt.Tokenizer=oa;Gt.Hooks=vs;Gt.parse=Gt;Gt.options;Gt.setOptions;Gt.use;Gt.walkTokens;Gt.parseInline;Xe.parse;Ge.lex;function ug(e){for(var t=[],r=1;r<arguments.length;r++)t[r-1]=arguments[r];var i=Array.from(typeof e=="string"?[e]:e);i[i.length-1]=i[i.length-1].replace(/\r?\n([\t ]*)$/,"");var s=i.reduce(function(n,l){var c=l.match(/\n([\t ]+|(?!\s).)/g);return c?n.concat(c.map(function(h){var u,d;return(d=(u=h.match(/[\t ]/g))===null||u===void 0?void 0:u.length)!==null&&d!==void 0?d:0})):n},[]);if(s.length){var o=new RegExp(`
|
|
189
|
+
[ ]{`.concat(Math.min.apply(Math,s),"}"),"g");i=i.map(function(n){return n.replace(o,`
|
|
190
|
+
`)})}i[0]=i[0].replace(/^\r?\n/,"");var a=i[0];return t.forEach(function(n,l){var c=a.match(/(?:^|\n)( *)$/),h=c?c[1]:"",u=n;typeof n=="string"&&n.includes(`
|
|
191
|
+
`)&&(u=String(n).split(`
|
|
192
|
+
`).map(function(d,f){return f===0?d:"".concat(h).concat(d)}).join(`
|
|
193
|
+
`)),a+=u+i[l+1]}),a}var yl=typeof performance<"u"&&typeof performance.now=="function",bi=p(()=>yl?performance.now():0,"now"),hn="🧜 ",y_="Mermaid render",x_="Mermaid",C_={parse:"tertiary",prepare:"secondary",measure:"primary",layout:"primary-dark",layoutCore:"error",draw:"primary-light",paint:"secondary-dark",serialize:"tertiary-dark",render:"primary-light"},Gi;Gi=class{constructor(){this.enabled=!1,this.autoPrint=!0,this.records=[],this.maxRecords=200,this.roots=[],this.stack=[],this.buckets={}}enable(){return this.enabled=!0,this}disable(){return this.enabled=!1,this}start(t){this.enabled&&(this.roots=[],this.stack=[],this.buckets={},this.begin(t))}tickSync(t,r){if(!this.enabled)return r();const i=bi();try{return r()}finally{this.buckets[t]=(this.buckets[t]??0)+(bi()-i)}}async tick(t,r){if(!this.enabled)return r();const i=bi();try{return await r()}finally{this.buckets[t]=(this.buckets[t]??0)+(bi()-i)}}stop(){if(!this.enabled)return;for(;this.stack.length>0;)this.end();const t=this.roots.at(-1),r=this.runLabel??(t==null?void 0:t.name);return t&&(this.records.push({label:r??t.name,tree:t,buckets:{...this.buckets}}),this.records.length>this.maxRecords&&this.records.splice(0,this.records.length-this.maxRecords),this.autoPrint&&this.printSummary(t,r)),this.runLabel=void 0,t}begin(t){if(!this.enabled)return;const r={name:t,start:bi(),duration:-1,children:[]},i=this.stack.at(-1);if(i?i.children.push(r):this.roots.push(r),this.stack.push(r),yl&&typeof performance.mark=="function")try{performance.mark(`${hn}${t} ▶`)}catch{}}end(){if(!this.enabled)return;const t=this.stack.pop();if(!t)return;const r=bi();if(t.duration=r-t.start,yl&&typeof performance.measure=="function")try{performance.measure(`${hn}${t.name}`,{start:t.start,end:r,detail:{devtools:{dataType:"track-entry",track:y_,trackGroup:x_,color:C_[t.name]??"primary",tooltipText:`${t.name} — ${t.duration.toFixed(1)} ms`}}})}catch{}}async span(t,r){if(!this.enabled)return r();this.begin(t);try{return await r()}finally{this.end()}}report(){var t;return((t=this.records.at(-1))==null?void 0:t.tree)??this.roots.at(-1)}clear(){this.records.length=0,this.roots=[],this.stack=[],this.runLabel=void 0}reset(){this.roots=[],this.stack=[]}printSummary(t=this.report(),r){if(!t)return;const i=t.duration,s=r&&r!==t.name?`${t.name} [${r}]`:t.name,o=["ms % phase"],a=p((l,c)=>{const h=" ".repeat(c),u=l.duration.toFixed(1).padStart(8),d=i>0?`${(l.duration/i*100).toFixed(0).padStart(3)}%`:" -";o.push(`${u} ${d} ${h}${l.name}`);for(const f of l.children)a(f,c+1);if(l.children.length>0){const f=l.children.reduce((y,C)=>y+C.duration,0),m=l.duration-f;if(m>.5){const y=m.toFixed(1).padStart(8);o.push(`${y} ${h} (self)`)}}},"walk");a(t,0);const n=Object.keys(this.buckets);if(n.length>0){o.push("—— buckets (summed) ——");for(const l of n)o.push(`${this.buckets[l].toFixed(1).padStart(8)} ${l}`)}console.log(`${hn}mermaid render profile · ${s}
|
|
194
|
+
${o.join(`
|
|
195
|
+
`)}`)}},p(Gi,"Profiler");globalThis.injected??(globalThis.injected={includeLargeFeatures:!0,profiling:!1,version:"0.0.0"});var b_=AT.extend({raf(e){typeof queueMicrotask=="function"?queueMicrotask(e):setTimeout(e,0)}}).extend($T),li=b_;function dg(e,{markdownAutoWrap:t}){const i=e.replace(/<br\/>/g,`
|
|
196
|
+
`).replace(/\n{2,}/g,`
|
|
197
|
+
`);return ug(i)}p(dg,"preprocessMarkdown");function fg(e){return e.split(/\\n|\n|<br\s*\/?>/gi).map(t=>{var r;return((r=t.trim().match(/<[^>]+>|[^\s<>]+/g))==null?void 0:r.map(i=>({content:i,type:"normal"})))??[]})}p(fg,"nonMarkdownToLines");function pg(e,t={}){const r=dg(e,t),i=Gt.lexer(r),s=[[]];let o=0;function a(n,l="normal"){n.type==="text"?n.text.split(`
|
|
198
|
+
`).forEach((h,u)=>{u!==0&&(o++,s.push([])),h.split(" ").forEach(d=>{d=d.replace(/'/g,"'"),d&&s[o].push({content:d,type:l})})}):n.type==="strong"||n.type==="em"?n.tokens.forEach(c=>{a(c,n.type)}):n.type==="html"&&s[o].push({content:n.text,type:"normal"})}return p(a,"processNode"),i.forEach(n=>{var l;n.type==="paragraph"?(l=n.tokens)==null||l.forEach(c=>{a(c)}):n.type==="html"?s[o].push({content:n.text,type:"normal"}):s[o].push({content:n.raw,type:"normal"})}),s}p(pg,"markdownToLines");function gg(e){return e?`<p>${e.replace(/\\n|\n/g,"<br />")}</p>`:""}p(gg,"nonMarkdownToHTML");function mg(e,{markdownAutoWrap:t}={}){const r=Gt.lexer(e);function i(s){var o,a,n;return s.type==="text"?t===!1?s.text.replace(/\n */g,"<br/>").replace(/ /g," "):s.text.replace(/\n */g,"<br/>"):s.type==="strong"?`<strong>${(o=s.tokens)==null?void 0:o.map(i).join("")}</strong>`:s.type==="em"?`<em>${(a=s.tokens)==null?void 0:a.map(i).join("")}</em>`:s.type==="paragraph"?`<p>${(n=s.tokens)==null?void 0:n.map(i).join("")}</p>`:s.type==="space"?"":s.type==="html"?`${s.text}`:s.type==="escape"?s.text:(N.warn(`Unsupported markdown: ${s.type}`),s.raw)}return p(i,"output"),r.map(i).join("")}p(mg,"markdownToHTML");function yg(e){return Intl.Segmenter?[...new Intl.Segmenter().segment(e)].map(t=>t.segment):[...e]}p(yg,"splitTextToChars");function xg(e,t){const r=yg(t.content);return wh(e,[],r,t.type)}p(xg,"splitWordToFitWidth");function wh(e,t,r,i){if(r.length===0)return[{content:t.join(""),type:i},{content:"",type:i}];const[s,...o]=r,a=[...t,s];return e([{content:a.join(""),type:i}])?wh(e,a,o,i):(t.length===0&&s&&(t.push(s),r.shift()),[{content:t.join(""),type:i},{content:r.join(""),type:i}])}p(wh,"splitWordToFitWidthRecursion");function Cg(e,t){if(e.some(({content:r})=>r.includes(`
|
|
199
|
+
`)))throw new Error("splitLineToFitWidth does not support newlines in the line");return na(e,t)}p(Cg,"splitLineToFitWidth");function na(e,t,r=[],i=[]){if(e.length===0)return i.length>0&&r.push(i),r.length>0?r:[];let s="";e[0].content===" "&&(s=" ",e.shift());const o=e.shift()??{content:" ",type:"normal"},a=[...i];if(s!==""&&a.push({content:s,type:"normal"}),a.push(o),t(a))return na(e,t,r,a);if(i.length>0)r.push(i),e.unshift(o);else if(o.content){const[n,l]=xg(t,o);r.push([n]),l.content&&e.unshift(l)}return na(e,t,r)}p(na,"splitLineToFitWidthRecursion");function xl(e,t){t&&e.attr("style",t)}p(xl,"applyStyle");var $u=16384;async function bg(e,t,r,i,s=!1,o=Jt()){const a=e.append("foreignObject");a.attr("width",`${Math.min(10*r,$u)}px`),a.attr("height",`${Math.min(10*r,$u)}px`);const n=a.append("xhtml:div"),l=Ns(t.label)?await Pf(t.label.replace(Qs.lineBreakRegex,`
|
|
200
|
+
`),o):ze(t.label,o),c=t.isNode?"nodeLabel":"edgeLabel",h=n.append("span");return h.html(l),xl(h,t.labelStyle),h.attr("class",`${c} ${i}`),xl(n,t.labelStyle),n.style("display","table-cell"),n.style("white-space","nowrap"),n.style("line-height","1.5"),r!==Number.POSITIVE_INFINITY&&(n.style("max-width",r+"px"),n.style("text-align","center")),n.attr("xmlns","http://www.w3.org/1999/xhtml"),s&&n.attr("class","labelBkg"),(await li.measure(()=>n.node().getBoundingClientRect())).width===r&&(n.style("display","table"),n.style("white-space","break-spaces"),n.style("width",r+"px")),a.node()}p(bg,"addHtmlSpan");function Sa(e,t,r,i=!1){const s=e.append("tspan").attr("class","text-outer-tspan").attr("x",0).attr("y",t*r-.1+"em").attr("dy",r+"em");return i&&s.attr("text-anchor","middle"),s}p(Sa,"createTspan");function kg(e,t,r){const i=e.append("text"),s=Sa(i,1,t);va(s,r);const o=s.node().getComputedTextLength();return i.remove(),o}p(kg,"computeWidthOfText");function k_(e,t,r){var a;const i=e.append("text"),s=Sa(i,1,t);va(s,[{content:r,type:"normal"}]);const o=(a=s.node())==null?void 0:a.getBoundingClientRect();return o&&i.remove(),o}p(k_,"computeDimensionOfText");function wg(e,t,r,i=!1,s=!1){const a=t.append("g"),n=a.insert("rect").attr("class","background").attr("style","stroke: none"),l=a.append("text").attr("y","-10.1");s&&l.attr("text-anchor","middle");let c=0;for(const h of r){const u=p(f=>kg(a,1.1,f)<=e,"checkWidth"),d=u(h)?[h]:Cg(h,u);for(const f of d){const m=Sa(l,c,1.1,s);va(m,f),c++}}if(i){const h=l.node().getBBox(),u=2;return n.attr("x",h.x-u).attr("y",h.y-u).attr("width",h.width+2*u).attr("height",h.height+2*u),a.node()}else return l.node()}p(wg,"createFormattedText");function Cl(e){const t=/&(amp|lt|gt);/g;return e.replace(t,(r,i)=>{switch(i){case"amp":return"&";case"lt":return"<";case"gt":return">";default:return r}})}p(Cl,"decodeHTMLEntities");function va(e,t){e.text(""),t.forEach((r,i)=>{const s=e.append("tspan").attr("font-style",r.type==="em"?"italic":"normal").attr("class","text-inner-tspan").attr("font-weight",r.type==="strong"?"bold":"normal");i===0?s.text(Cl(r.content)):s.text(" "+Cl(r.content))})}p(va,"updateTextContentAndStyles");async function Tg(e,t={}){const r=[];e.replace(/(fa[bklrs]?):fa-([\w-]+)/g,(s,o,a)=>(r.push((async()=>{const n=`${o}:${a}`;return await Ew(n)?await eo(n,void 0,{class:"label-icon"}):`<i class='${ze(s,t).replace(":"," ")}'></i>`})()),s));const i=await Promise.all(r);return e.replace(/(fa[bklrs]?):fa-([\w-]+)/g,()=>i.shift()??"")}p(Tg,"replaceIconSubstring");var Je=p(async(e,t="",{style:r="",isTitle:i=!1,classes:s="",useHtmlLabels:o=!0,markdown:a=!0,isNode:n=!0,width:l=200,addSvgBackground:c=!1}={},h)=>{if(N.debug("XYZ createText",t,r,i,s,o,n,"addSvgBackground: ",c),o){const u=a?mg(t,h):gg(t),d=await Tg(Wr(u),h),f=t.replace(/\\\\/g,"\\"),m={isNode:n,label:Ns(t)?f:d,labelStyle:r.replace("fill:","color:")};return await bg(e,m,l,s,c,h)}else{const u=Wr(t.replace(/<br\s*\/?>/g,"<br/>")),d=a?pg(u.replace("<br>","<br/>"),h):fg(u),f=wg(l,e,d,t?c:!1,!n);if(n){/stroke:/.exec(r)&&(r=r.replace("stroke:","lineColor:"));const m=r.replace(/stroke:[^;]+;?/g,"").replace(/stroke-width:[^;]+;?/g,"").replace(/fill:[^;]+;?/g,"").replace(/color:/g,"fill:");Pt(f).attr("style",m)}else{const m=r.replace(/stroke:[^;]+;?/g,"").replace(/stroke-width:[^;]+;?/g,"").replace(/fill:[^;]+;?/g,"").replace(/background:/g,"fill:");Pt(f).select("rect").attr("style",m.replace(/background:/g,"fill:"));const y=r.replace(/stroke:[^;]+;?/g,"").replace(/stroke-width:[^;]+;?/g,"").replace(/fill:[^;]+;?/g,"").replace(/color:/g,"fill:");Pt(f).select("text").attr("style",y)}return i?Pt(f).selectAll("tspan.text-outer-tspan").classed("title-row",!0):Pt(f).selectAll("tspan.text-outer-tspan").classed("row",!0),f}},"createText");function cn(e,t,r){if(e&&e.length){const[i,s]=t,o=Math.PI/180*r,a=Math.cos(o),n=Math.sin(o);for(const l of e){const[c,h]=l;l[0]=(c-i)*a-(h-s)*n+i,l[1]=(c-i)*n+(h-s)*a+s}}}function w_(e,t){return e[0]===t[0]&&e[1]===t[1]}function T_(e,t,r,i=1){const s=r,o=Math.max(t,.1),a=e[0]&&e[0][0]&&typeof e[0][0]=="number"?[e]:e,n=[0,0];if(s)for(const c of a)cn(c,n,s);const l=(function(c,h,u){const d=[];for(const b of c){const w=[...b];w_(w[0],w[w.length-1])||w.push([w[0][0],w[0][1]]),w.length>2&&d.push(w)}const f=[];h=Math.max(h,.1);const m=[];for(const b of d)for(let w=0;w<b.length-1;w++){const _=b[w],v=b[w+1];if(_[1]!==v[1]){const F=Math.min(_[1],v[1]);m.push({ymin:F,ymax:Math.max(_[1],v[1]),x:F===_[1]?_[0]:v[0],islope:(v[0]-_[0])/(v[1]-_[1])})}}if(m.sort(((b,w)=>b.ymin<w.ymin?-1:b.ymin>w.ymin?1:b.x<w.x?-1:b.x>w.x?1:b.ymax===w.ymax?0:(b.ymax-w.ymax)/Math.abs(b.ymax-w.ymax))),!m.length)return f;let y=[],C=m[0].ymin,x=0;for(;y.length||m.length;){if(m.length){let b=-1;for(let w=0;w<m.length&&!(m[w].ymin>C);w++)b=w;m.splice(0,b+1).forEach((w=>{y.push({s:C,edge:w})}))}if(y=y.filter((b=>!(b.edge.ymax<=C))),y.sort(((b,w)=>b.edge.x===w.edge.x?0:(b.edge.x-w.edge.x)/Math.abs(b.edge.x-w.edge.x))),(u!==1||x%h==0)&&y.length>1)for(let b=0;b<y.length;b+=2){const w=b+1;if(w>=y.length)break;const _=y[b].edge,v=y[w].edge;f.push([[Math.round(_.x),C],[Math.round(v.x),C]])}C+=u,y.forEach((b=>{b.edge.x=b.edge.x+u*b.edge.islope})),x++}return f})(a,o,i);if(s){for(const c of a)cn(c,n,-s);(function(c,h,u){const d=[];c.forEach((f=>d.push(...f))),cn(d,h,u)})(l,n,-s)}return l}function so(e,t){var r;const i=t.hachureAngle+90;let s=t.hachureGap;s<0&&(s=4*t.strokeWidth),s=Math.round(Math.max(s,.1));let o=1;return t.roughness>=1&&(((r=t.randomizer)===null||r===void 0?void 0:r.next())||Math.random())>.7&&(o=s),T_(e,s,i,o||1)}class Th{constructor(t){this.helper=t}fillPolygons(t,r){return this._fillPolygons(t,r)}_fillPolygons(t,r){const i=so(t,r);return{type:"fillSketch",ops:this.renderLines(i,r)}}renderLines(t,r){const i=[];for(const s of t)i.push(...this.helper.doubleLineOps(s[0][0],s[0][1],s[1][0],s[1][1],r));return i}}function Ba(e){const t=e[0],r=e[1];return Math.sqrt(Math.pow(t[0]-r[0],2)+Math.pow(t[1]-r[1],2))}class __ extends Th{fillPolygons(t,r){let i=r.hachureGap;i<0&&(i=4*r.strokeWidth),i=Math.max(i,.1);const s=so(t,Object.assign({},r,{hachureGap:i})),o=Math.PI/180*r.hachureAngle,a=[],n=.5*i*Math.cos(o),l=.5*i*Math.sin(o);for(const[c,h]of s)Ba([c,h])&&a.push([[c[0]-n,c[1]+l],[...h]],[[c[0]+n,c[1]-l],[...h]]);return{type:"fillSketch",ops:this.renderLines(a,r)}}}class S_ extends Th{fillPolygons(t,r){const i=this._fillPolygons(t,r),s=Object.assign({},r,{hachureAngle:r.hachureAngle+90}),o=this._fillPolygons(t,s);return i.ops=i.ops.concat(o.ops),i}}class v_{constructor(t){this.helper=t}fillPolygons(t,r){const i=so(t,r=Object.assign({},r,{hachureAngle:0}));return this.dotsOnLines(i,r)}dotsOnLines(t,r){const i=[];let s=r.hachureGap;s<0&&(s=4*r.strokeWidth),s=Math.max(s,.1);let o=r.fillWeight;o<0&&(o=r.strokeWidth/2);const a=s/4;for(const n of t){const l=Ba(n),c=l/s,h=Math.ceil(c)-1,u=l-h*s,d=(n[0][0]+n[1][0])/2-s/4,f=Math.min(n[0][1],n[1][1]);for(let m=0;m<h;m++){const y=f+u+m*s,C=d-a+2*Math.random()*a,x=y-a+2*Math.random()*a,b=this.helper.ellipse(C,x,o,o,r);i.push(...b.ops)}}return{type:"fillSketch",ops:i}}}class B_{constructor(t){this.helper=t}fillPolygons(t,r){const i=so(t,r);return{type:"fillSketch",ops:this.dashedLine(i,r)}}dashedLine(t,r){const i=r.dashOffset<0?r.hachureGap<0?4*r.strokeWidth:r.hachureGap:r.dashOffset,s=r.dashGap<0?r.hachureGap<0?4*r.strokeWidth:r.hachureGap:r.dashGap,o=[];return t.forEach((a=>{const n=Ba(a),l=Math.floor(n/(i+s)),c=(n+s-l*(i+s))/2;let h=a[0],u=a[1];h[0]>u[0]&&(h=a[1],u=a[0]);const d=Math.atan((u[1]-h[1])/(u[0]-h[0]));for(let f=0;f<l;f++){const m=f*(i+s),y=m+i,C=[h[0]+m*Math.cos(d)+c*Math.cos(d),h[1]+m*Math.sin(d)+c*Math.sin(d)],x=[h[0]+y*Math.cos(d)+c*Math.cos(d),h[1]+y*Math.sin(d)+c*Math.sin(d)];o.push(...this.helper.doubleLineOps(C[0],C[1],x[0],x[1],r))}})),o}}class L_{constructor(t){this.helper=t}fillPolygons(t,r){const i=r.hachureGap<0?4*r.strokeWidth:r.hachureGap,s=r.zigzagOffset<0?i:r.zigzagOffset,o=so(t,r=Object.assign({},r,{hachureGap:i+s}));return{type:"fillSketch",ops:this.zigzagLines(o,s,r)}}zigzagLines(t,r,i){const s=[];return t.forEach((o=>{const a=Ba(o),n=Math.round(a/(2*r));let l=o[0],c=o[1];l[0]>c[0]&&(l=o[1],c=o[0]);const h=Math.atan((c[1]-l[1])/(c[0]-l[0]));for(let u=0;u<n;u++){const d=2*u*r,f=2*(u+1)*r,m=Math.sqrt(2*Math.pow(r,2)),y=[l[0]+d*Math.cos(h),l[1]+d*Math.sin(h)],C=[l[0]+f*Math.cos(h),l[1]+f*Math.sin(h)],x=[y[0]+m*Math.cos(h+Math.PI/4),y[1]+m*Math.sin(h+Math.PI/4)];s.push(...this.helper.doubleLineOps(y[0],y[1],x[0],x[1],i),...this.helper.doubleLineOps(x[0],x[1],C[0],C[1],i))}})),s}}const Fe={};class F_{constructor(t){this.seed=t}next(){return this.seed?(2**31-1&(this.seed=Math.imul(48271,this.seed)))/2**31:Math.random()}}const A_=0,un=1,Ou=2,bo={A:7,a:7,C:6,c:6,H:1,h:1,L:2,l:2,M:2,m:2,Q:4,q:4,S:4,s:4,T:2,t:2,V:1,v:1,Z:0,z:0};function dn(e,t){return e.type===t}function _h(e){const t=[],r=(function(a){const n=new Array;for(;a!=="";)if(a.match(/^([ \t\r\n,]+)/))a=a.substr(RegExp.$1.length);else if(a.match(/^([aAcChHlLmMqQsStTvVzZ])/))n[n.length]={type:A_,text:RegExp.$1},a=a.substr(RegExp.$1.length);else{if(!a.match(/^(([-+]?[0-9]+(\.[0-9]*)?|[-+]?\.[0-9]+)([eE][-+]?[0-9]+)?)/))return[];n[n.length]={type:un,text:`${parseFloat(RegExp.$1)}`},a=a.substr(RegExp.$1.length)}return n[n.length]={type:Ou,text:""},n})(e);let i="BOD",s=0,o=r[s];for(;!dn(o,Ou);){let a=0;const n=[];if(i==="BOD"){if(o.text!=="M"&&o.text!=="m")return _h("M0,0"+e);s++,a=bo[o.text],i=o.text}else dn(o,un)?a=bo[i]:(s++,a=bo[o.text],i=o.text);if(!(s+a<r.length))throw new Error("Path data ended short");for(let l=s;l<s+a;l++){const c=r[l];if(!dn(c,un))throw new Error("Param not a number: "+i+","+c.text);n[n.length]=+c.text}if(typeof bo[i]!="number")throw new Error("Bad segment: "+i);{const l={key:i,data:n};t.push(l),s+=a,o=r[s],i==="M"&&(i="L"),i==="m"&&(i="l")}}return t}function _g(e){let t=0,r=0,i=0,s=0;const o=[];for(const{key:a,data:n}of e)switch(a){case"M":o.push({key:"M",data:[...n]}),[t,r]=n,[i,s]=n;break;case"m":t+=n[0],r+=n[1],o.push({key:"M",data:[t,r]}),i=t,s=r;break;case"L":o.push({key:"L",data:[...n]}),[t,r]=n;break;case"l":t+=n[0],r+=n[1],o.push({key:"L",data:[t,r]});break;case"C":o.push({key:"C",data:[...n]}),t=n[4],r=n[5];break;case"c":{const l=n.map(((c,h)=>h%2?c+r:c+t));o.push({key:"C",data:l}),t=l[4],r=l[5];break}case"Q":o.push({key:"Q",data:[...n]}),t=n[2],r=n[3];break;case"q":{const l=n.map(((c,h)=>h%2?c+r:c+t));o.push({key:"Q",data:l}),t=l[2],r=l[3];break}case"A":o.push({key:"A",data:[...n]}),t=n[5],r=n[6];break;case"a":t+=n[5],r+=n[6],o.push({key:"A",data:[n[0],n[1],n[2],n[3],n[4],t,r]});break;case"H":o.push({key:"H",data:[...n]}),t=n[0];break;case"h":t+=n[0],o.push({key:"H",data:[t]});break;case"V":o.push({key:"V",data:[...n]}),r=n[0];break;case"v":r+=n[0],o.push({key:"V",data:[r]});break;case"S":o.push({key:"S",data:[...n]}),t=n[2],r=n[3];break;case"s":{const l=n.map(((c,h)=>h%2?c+r:c+t));o.push({key:"S",data:l}),t=l[2],r=l[3];break}case"T":o.push({key:"T",data:[...n]}),t=n[0],r=n[1];break;case"t":t+=n[0],r+=n[1],o.push({key:"T",data:[t,r]});break;case"Z":case"z":o.push({key:"Z",data:[]}),t=i,r=s}return o}function Sg(e){const t=[];let r="",i=0,s=0,o=0,a=0,n=0,l=0;for(const{key:c,data:h}of e){switch(c){case"M":t.push({key:"M",data:[...h]}),[i,s]=h,[o,a]=h;break;case"C":t.push({key:"C",data:[...h]}),i=h[4],s=h[5],n=h[2],l=h[3];break;case"L":t.push({key:"L",data:[...h]}),[i,s]=h;break;case"H":i=h[0],t.push({key:"L",data:[i,s]});break;case"V":s=h[0],t.push({key:"L",data:[i,s]});break;case"S":{let u=0,d=0;r==="C"||r==="S"?(u=i+(i-n),d=s+(s-l)):(u=i,d=s),t.push({key:"C",data:[u,d,...h]}),n=h[0],l=h[1],i=h[2],s=h[3];break}case"T":{const[u,d]=h;let f=0,m=0;r==="Q"||r==="T"?(f=i+(i-n),m=s+(s-l)):(f=i,m=s);const y=i+2*(f-i)/3,C=s+2*(m-s)/3,x=u+2*(f-u)/3,b=d+2*(m-d)/3;t.push({key:"C",data:[y,C,x,b,u,d]}),n=f,l=m,i=u,s=d;break}case"Q":{const[u,d,f,m]=h,y=i+2*(u-i)/3,C=s+2*(d-s)/3,x=f+2*(u-f)/3,b=m+2*(d-m)/3;t.push({key:"C",data:[y,C,x,b,f,m]}),n=u,l=d,i=f,s=m;break}case"A":{const u=Math.abs(h[0]),d=Math.abs(h[1]),f=h[2],m=h[3],y=h[4],C=h[5],x=h[6];u===0||d===0?(t.push({key:"C",data:[i,s,C,x,C,x]}),i=C,s=x):(i!==C||s!==x)&&(vg(i,s,C,x,u,d,f,m,y).forEach((function(b){t.push({key:"C",data:b})})),i=C,s=x);break}case"Z":t.push({key:"Z",data:[]}),i=o,s=a}r=c}return t}function ms(e,t,r){return[e*Math.cos(r)-t*Math.sin(r),e*Math.sin(r)+t*Math.cos(r)]}function vg(e,t,r,i,s,o,a,n,l,c){const h=(u=a,Math.PI*u/180);var u;let d=[],f=0,m=0,y=0,C=0;if(c)[f,m,y,C]=c;else{[e,t]=ms(e,t,-h),[r,i]=ms(r,i,-h);const Y=(e-r)/2,M=(t-i)/2;let $=Y*Y/(s*s)+M*M/(o*o);$>1&&($=Math.sqrt($),s*=$,o*=$);const B=s*s,P=o*o,O=B*P-B*M*M-P*Y*Y,H=B*M*M+P*Y*Y,K=(n===l?-1:1)*Math.sqrt(Math.abs(O/H));y=K*s*M/o+(e+r)/2,C=K*-o*Y/s+(t+i)/2,f=Math.asin(parseFloat(((t-C)/o).toFixed(9))),m=Math.asin(parseFloat(((i-C)/o).toFixed(9))),e<y&&(f=Math.PI-f),r<y&&(m=Math.PI-m),f<0&&(f=2*Math.PI+f),m<0&&(m=2*Math.PI+m),l&&f>m&&(f-=2*Math.PI),!l&&m>f&&(m-=2*Math.PI)}let x=m-f;if(Math.abs(x)>120*Math.PI/180){const Y=m,M=r,$=i;m=l&&m>f?f+120*Math.PI/180*1:f+120*Math.PI/180*-1,d=vg(r=y+s*Math.cos(m),i=C+o*Math.sin(m),M,$,s,o,a,0,l,[m,Y,y,C])}x=m-f;const b=Math.cos(f),w=Math.sin(f),_=Math.cos(m),v=Math.sin(m),F=Math.tan(x/4),A=4/3*s*F,L=4/3*o*F,j=[e,t],z=[e+A*w,t-L*b],W=[r+A*v,i-L*_],ot=[r,i];if(z[0]=2*j[0]-z[0],z[1]=2*j[1]-z[1],c)return[z,W,ot].concat(d);{d=[z,W,ot].concat(d);const Y=[];for(let M=0;M<d.length;M+=3){const $=ms(d[M][0],d[M][1],h),B=ms(d[M+1][0],d[M+1][1],h),P=ms(d[M+2][0],d[M+2][1],h);Y.push([$[0],$[1],B[0],B[1],P[0],P[1]])}return Y}}const E_={randOffset:function(e,t){return $t(e,t)},randOffsetWithRange:function(e,t,r){return la(e,t,r)},ellipse:function(e,t,r,i,s){const o=Lg(r,i,s);return bl(e,t,s,o).opset},doubleLineOps:function(e,t,r,i,s){return Hr(e,t,r,i,s,!0)}};function Bg(e,t,r,i,s){return{type:"path",ops:Hr(e,t,r,i,s)}}function No(e,t,r){const i=(e||[]).length;if(i>2){const s=[];for(let o=0;o<i-1;o++)s.push(...Hr(e[o][0],e[o][1],e[o+1][0],e[o+1][1],r));return t&&s.push(...Hr(e[i-1][0],e[i-1][1],e[0][0],e[0][1],r)),{type:"path",ops:s}}return i===2?Bg(e[0][0],e[0][1],e[1][0],e[1][1],r):{type:"path",ops:[]}}function M_(e,t,r,i,s){return(function(o,a){return No(o,!0,a)})([[e,t],[e+r,t],[e+r,t+i],[e,t+i]],s)}function Du(e,t){if(e.length){const r=typeof e[0][0]=="number"?[e]:e,i=ko(r[0],1*(1+.2*t.roughness),t),s=t.disableMultiStroke?[]:ko(r[0],1.5*(1+.22*t.roughness),Ru(t));for(let o=1;o<r.length;o++){const a=r[o];if(a.length){const n=ko(a,1*(1+.2*t.roughness),t),l=t.disableMultiStroke?[]:ko(a,1.5*(1+.22*t.roughness),Ru(t));for(const c of n)c.op!=="move"&&i.push(c);for(const c of l)c.op!=="move"&&s.push(c)}}return{type:"path",ops:i.concat(s)}}return{type:"path",ops:[]}}function Lg(e,t,r){const i=Math.sqrt(2*Math.PI*Math.sqrt((Math.pow(e/2,2)+Math.pow(t/2,2))/2)),s=Math.ceil(Math.max(r.curveStepCount,r.curveStepCount/Math.sqrt(200)*i)),o=2*Math.PI/s;let a=Math.abs(e/2),n=Math.abs(t/2);const l=1-r.curveFitting;return a+=$t(a*l,r),n+=$t(n*l,r),{increment:o,rx:a,ry:n}}function bl(e,t,r,i){const[s,o]=Nu(i.increment,e,t,i.rx,i.ry,1,i.increment*la(.1,la(.4,1,r),r),r);let a=ha(s,null,r);if(!r.disableMultiStroke&&r.roughness!==0){const[n]=Nu(i.increment,e,t,i.rx,i.ry,1.5,0,r),l=ha(n,null,r);a=a.concat(l)}return{estimatedPoints:o,opset:{type:"path",ops:a}}}function Iu(e,t,r,i,s,o,a,n,l){const c=e,h=t;let u=Math.abs(r/2),d=Math.abs(i/2);u+=$t(.01*u,l),d+=$t(.01*d,l);let f=s,m=o;for(;f<0;)f+=2*Math.PI,m+=2*Math.PI;m-f>2*Math.PI&&(f=0,m=2*Math.PI);const y=2*Math.PI/l.curveStepCount,C=Math.min(y/2,(m-f)/2),x=qu(C,c,h,u,d,f,m,1,l);if(!l.disableMultiStroke){const b=qu(C,c,h,u,d,f,m,1.5,l);x.push(...b)}return a&&(n?x.push(...Hr(c,h,c+u*Math.cos(f),h+d*Math.sin(f),l),...Hr(c,h,c+u*Math.cos(m),h+d*Math.sin(m),l)):x.push({op:"lineTo",data:[c,h]},{op:"lineTo",data:[c+u*Math.cos(f),h+d*Math.sin(f)]})),{type:"path",ops:x}}function Pu(e,t){const r=Sg(_g(_h(e))),i=[];let s=[0,0],o=[0,0];for(const{key:a,data:n}of r)switch(a){case"M":o=[n[0],n[1]],s=[n[0],n[1]];break;case"L":i.push(...Hr(o[0],o[1],n[0],n[1],t)),o=[n[0],n[1]];break;case"C":{const[l,c,h,u,d,f]=n;i.push(...$_(l,c,h,u,d,f,o,t)),o=[d,f];break}case"Z":i.push(...Hr(o[0],o[1],s[0],s[1],t)),o=[s[0],s[1]]}return{type:"path",ops:i}}function fn(e,t){const r=[];for(const i of e)if(i.length){const s=t.maxRandomnessOffset||0,o=i.length;if(o>2){r.push({op:"move",data:[i[0][0]+$t(s,t),i[0][1]+$t(s,t)]});for(let a=1;a<o;a++)r.push({op:"lineTo",data:[i[a][0]+$t(s,t),i[a][1]+$t(s,t)]})}}return{type:"fillPath",ops:r}}function ki(e,t){return(function(r,i){let s=r.fillStyle||"hachure";if(!Fe[s])switch(s){case"zigzag":Fe[s]||(Fe[s]=new __(i));break;case"cross-hatch":Fe[s]||(Fe[s]=new S_(i));break;case"dots":Fe[s]||(Fe[s]=new v_(i));break;case"dashed":Fe[s]||(Fe[s]=new B_(i));break;case"zigzag-line":Fe[s]||(Fe[s]=new L_(i));break;default:s="hachure",Fe[s]||(Fe[s]=new Th(i))}return Fe[s]})(t,E_).fillPolygons(e,t)}function Ru(e){const t=Object.assign({},e);return t.randomizer=void 0,e.seed&&(t.seed=e.seed+1),t}function Fg(e){return e.randomizer||(e.randomizer=new F_(e.seed||0)),e.randomizer.next()}function la(e,t,r,i=1){return r.roughness*i*(Fg(r)*(t-e)+e)}function $t(e,t,r=1){return la(-e,e,t,r)}function Hr(e,t,r,i,s,o=!1){const a=o?s.disableMultiStrokeFill:s.disableMultiStroke,n=kl(e,t,r,i,s,!0,!1);if(a)return n;const l=kl(e,t,r,i,s,!0,!0);return n.concat(l)}function kl(e,t,r,i,s,o,a){const n=Math.pow(e-r,2)+Math.pow(t-i,2),l=Math.sqrt(n);let c=1;c=l<200?1:l>500?.4:-.0016668*l+1.233334;let h=s.maxRandomnessOffset||0;h*h*100>n&&(h=l/10);const u=h/2,d=.2+.2*Fg(s);let f=s.bowing*s.maxRandomnessOffset*(i-t)/200,m=s.bowing*s.maxRandomnessOffset*(e-r)/200;f=$t(f,s,c),m=$t(m,s,c);const y=[],C=()=>$t(u,s,c),x=()=>$t(h,s,c),b=s.preserveVertices;return a?y.push({op:"move",data:[e+(b?0:C()),t+(b?0:C())]}):y.push({op:"move",data:[e+(b?0:$t(h,s,c)),t+(b?0:$t(h,s,c))]}),a?y.push({op:"bcurveTo",data:[f+e+(r-e)*d+C(),m+t+(i-t)*d+C(),f+e+2*(r-e)*d+C(),m+t+2*(i-t)*d+C(),r+(b?0:C()),i+(b?0:C())]}):y.push({op:"bcurveTo",data:[f+e+(r-e)*d+x(),m+t+(i-t)*d+x(),f+e+2*(r-e)*d+x(),m+t+2*(i-t)*d+x(),r+(b?0:x()),i+(b?0:x())]}),y}function ko(e,t,r){if(!e.length)return[];const i=[];i.push([e[0][0]+$t(t,r),e[0][1]+$t(t,r)]),i.push([e[0][0]+$t(t,r),e[0][1]+$t(t,r)]);for(let s=1;s<e.length;s++)i.push([e[s][0]+$t(t,r),e[s][1]+$t(t,r)]),s===e.length-1&&i.push([e[s][0]+$t(t,r),e[s][1]+$t(t,r)]);return ha(i,null,r)}function ha(e,t,r){const i=e.length,s=[];if(i>3){const o=[],a=1-r.curveTightness;s.push({op:"move",data:[e[1][0],e[1][1]]});for(let n=1;n+2<i;n++){const l=e[n];o[0]=[l[0],l[1]],o[1]=[l[0]+(a*e[n+1][0]-a*e[n-1][0])/6,l[1]+(a*e[n+1][1]-a*e[n-1][1])/6],o[2]=[e[n+1][0]+(a*e[n][0]-a*e[n+2][0])/6,e[n+1][1]+(a*e[n][1]-a*e[n+2][1])/6],o[3]=[e[n+1][0],e[n+1][1]],s.push({op:"bcurveTo",data:[o[1][0],o[1][1],o[2][0],o[2][1],o[3][0],o[3][1]]})}}else i===3?(s.push({op:"move",data:[e[1][0],e[1][1]]}),s.push({op:"bcurveTo",data:[e[1][0],e[1][1],e[2][0],e[2][1],e[2][0],e[2][1]]})):i===2&&s.push(...kl(e[0][0],e[0][1],e[1][0],e[1][1],r,!0,!0));return s}function Nu(e,t,r,i,s,o,a,n){const l=[],c=[];if(n.roughness===0){e/=4,c.push([t+i*Math.cos(-e),r+s*Math.sin(-e)]);for(let h=0;h<=2*Math.PI;h+=e){const u=[t+i*Math.cos(h),r+s*Math.sin(h)];l.push(u),c.push(u)}c.push([t+i*Math.cos(0),r+s*Math.sin(0)]),c.push([t+i*Math.cos(e),r+s*Math.sin(e)])}else{const h=$t(.5,n)-Math.PI/2;c.push([$t(o,n)+t+.9*i*Math.cos(h-e),$t(o,n)+r+.9*s*Math.sin(h-e)]);const u=2*Math.PI+h-.01;for(let d=h;d<u;d+=e){const f=[$t(o,n)+t+i*Math.cos(d),$t(o,n)+r+s*Math.sin(d)];l.push(f),c.push(f)}c.push([$t(o,n)+t+i*Math.cos(h+2*Math.PI+.5*a),$t(o,n)+r+s*Math.sin(h+2*Math.PI+.5*a)]),c.push([$t(o,n)+t+.98*i*Math.cos(h+a),$t(o,n)+r+.98*s*Math.sin(h+a)]),c.push([$t(o,n)+t+.9*i*Math.cos(h+.5*a),$t(o,n)+r+.9*s*Math.sin(h+.5*a)])}return[c,l]}function qu(e,t,r,i,s,o,a,n,l){const c=o+$t(.1,l),h=[];h.push([$t(n,l)+t+.9*i*Math.cos(c-e),$t(n,l)+r+.9*s*Math.sin(c-e)]);for(let u=c;u<=a;u+=e)h.push([$t(n,l)+t+i*Math.cos(u),$t(n,l)+r+s*Math.sin(u)]);return h.push([t+i*Math.cos(a),r+s*Math.sin(a)]),h.push([t+i*Math.cos(a),r+s*Math.sin(a)]),ha(h,null,l)}function $_(e,t,r,i,s,o,a,n){const l=[],c=[n.maxRandomnessOffset||1,(n.maxRandomnessOffset||1)+.3];let h=[0,0];const u=n.disableMultiStroke?1:2,d=n.preserveVertices;for(let f=0;f<u;f++)f===0?l.push({op:"move",data:[a[0],a[1]]}):l.push({op:"move",data:[a[0]+(d?0:$t(c[0],n)),a[1]+(d?0:$t(c[0],n))]}),h=d?[s,o]:[s+$t(c[f],n),o+$t(c[f],n)],l.push({op:"bcurveTo",data:[e+$t(c[f],n),t+$t(c[f],n),r+$t(c[f],n),i+$t(c[f],n),h[0],h[1]]});return l}function ys(e){return[...e]}function zu(e,t=0){const r=e.length;if(r<3)throw new Error("A curve must have at least three points.");const i=[];if(r===3)i.push(ys(e[0]),ys(e[1]),ys(e[2]),ys(e[2]));else{const s=[];s.push(e[0],e[0]);for(let n=1;n<e.length;n++)s.push(e[n]),n===e.length-1&&s.push(e[n]);const o=[],a=1-t;i.push(ys(s[0]));for(let n=1;n+2<s.length;n++){const l=s[n];o[0]=[l[0],l[1]],o[1]=[l[0]+(a*s[n+1][0]-a*s[n-1][0])/6,l[1]+(a*s[n+1][1]-a*s[n-1][1])/6],o[2]=[s[n+1][0]+(a*s[n][0]-a*s[n+2][0])/6,s[n+1][1]+(a*s[n][1]-a*s[n+2][1])/6],o[3]=[s[n+1][0],s[n+1][1]],i.push(o[1],o[2],o[3])}}return i}function qo(e,t){return Math.pow(e[0]-t[0],2)+Math.pow(e[1]-t[1],2)}function O_(e,t,r){const i=qo(t,r);if(i===0)return qo(e,t);let s=((e[0]-t[0])*(r[0]-t[0])+(e[1]-t[1])*(r[1]-t[1]))/i;return s=Math.max(0,Math.min(1,s)),qo(e,Qr(t,r,s))}function Qr(e,t,r){return[e[0]+(t[0]-e[0])*r,e[1]+(t[1]-e[1])*r]}function wl(e,t,r,i){const s=i||[];if((function(n,l){const c=n[l+0],h=n[l+1],u=n[l+2],d=n[l+3];let f=3*h[0]-2*c[0]-d[0];f*=f;let m=3*h[1]-2*c[1]-d[1];m*=m;let y=3*u[0]-2*d[0]-c[0];y*=y;let C=3*u[1]-2*d[1]-c[1];return C*=C,f<y&&(f=y),m<C&&(m=C),f+m})(e,t)<r){const n=e[t+0];s.length?(o=s[s.length-1],a=n,Math.sqrt(qo(o,a))>1&&s.push(n)):s.push(n),s.push(e[t+3])}else{const l=e[t+0],c=e[t+1],h=e[t+2],u=e[t+3],d=Qr(l,c,.5),f=Qr(c,h,.5),m=Qr(h,u,.5),y=Qr(d,f,.5),C=Qr(f,m,.5),x=Qr(y,C,.5);wl([l,d,y,x],0,r,s),wl([x,C,m,u],0,r,s)}var o,a;return s}function D_(e,t){return ca(e,0,e.length,t)}function ca(e,t,r,i,s){const o=s||[],a=e[t],n=e[r-1];let l=0,c=1;for(let h=t+1;h<r-1;++h){const u=O_(e[h],a,n);u>l&&(l=u,c=h)}return Math.sqrt(l)>i?(ca(e,t,c+1,i,o),ca(e,c,r,i,o)):(o.length||o.push(a),o.push(n)),o}function pn(e,t=.15,r){const i=[],s=(e.length-1)/3;for(let o=0;o<s;o++)wl(e,3*o,t,i);return r&&r>0?ca(i,0,i.length,r):i}const Ie="none";class ua{constructor(t){this.defaultOptions={maxRandomnessOffset:2,roughness:1,bowing:1,stroke:"#000",strokeWidth:1,curveTightness:0,curveFitting:.95,curveStepCount:9,fillStyle:"hachure",fillWeight:-1,hachureAngle:-41,hachureGap:-1,dashOffset:-1,dashGap:-1,zigzagOffset:-1,seed:0,disableMultiStroke:!1,disableMultiStrokeFill:!1,preserveVertices:!1,fillShapeRoughnessGain:.8},this.config=t||{},this.config.options&&(this.defaultOptions=this._o(this.config.options))}static newSeed(){return Math.floor(Math.random()*2**31)}_o(t){return t?Object.assign({},this.defaultOptions,t):this.defaultOptions}_d(t,r,i){return{shape:t,sets:r||[],options:i||this.defaultOptions}}line(t,r,i,s,o){const a=this._o(o);return this._d("line",[Bg(t,r,i,s,a)],a)}rectangle(t,r,i,s,o){const a=this._o(o),n=[],l=M_(t,r,i,s,a);if(a.fill){const c=[[t,r],[t+i,r],[t+i,r+s],[t,r+s]];a.fillStyle==="solid"?n.push(fn([c],a)):n.push(ki([c],a))}return a.stroke!==Ie&&n.push(l),this._d("rectangle",n,a)}ellipse(t,r,i,s,o){const a=this._o(o),n=[],l=Lg(i,s,a),c=bl(t,r,a,l);if(a.fill)if(a.fillStyle==="solid"){const h=bl(t,r,a,l).opset;h.type="fillPath",n.push(h)}else n.push(ki([c.estimatedPoints],a));return a.stroke!==Ie&&n.push(c.opset),this._d("ellipse",n,a)}circle(t,r,i,s){const o=this.ellipse(t,r,i,i,s);return o.shape="circle",o}linearPath(t,r){const i=this._o(r);return this._d("linearPath",[No(t,!1,i)],i)}arc(t,r,i,s,o,a,n=!1,l){const c=this._o(l),h=[],u=Iu(t,r,i,s,o,a,n,!0,c);if(n&&c.fill)if(c.fillStyle==="solid"){const d=Object.assign({},c);d.disableMultiStroke=!0;const f=Iu(t,r,i,s,o,a,!0,!1,d);f.type="fillPath",h.push(f)}else h.push((function(d,f,m,y,C,x,b){const w=d,_=f;let v=Math.abs(m/2),F=Math.abs(y/2);v+=$t(.01*v,b),F+=$t(.01*F,b);let A=C,L=x;for(;A<0;)A+=2*Math.PI,L+=2*Math.PI;L-A>2*Math.PI&&(A=0,L=2*Math.PI);const j=(L-A)/b.curveStepCount,z=[];for(let W=A;W<=L;W+=j)z.push([w+v*Math.cos(W),_+F*Math.sin(W)]);return z.push([w+v*Math.cos(L),_+F*Math.sin(L)]),z.push([w,_]),ki([z],b)})(t,r,i,s,o,a,c));return c.stroke!==Ie&&h.push(u),this._d("arc",h,c)}curve(t,r){const i=this._o(r),s=[],o=Du(t,i);if(i.fill&&i.fill!==Ie)if(i.fillStyle==="solid"){const a=Du(t,Object.assign(Object.assign({},i),{disableMultiStroke:!0,roughness:i.roughness?i.roughness+i.fillShapeRoughnessGain:0}));s.push({type:"fillPath",ops:this._mergedShape(a.ops)})}else{const a=[],n=t;if(n.length){const l=typeof n[0][0]=="number"?[n]:n;for(const c of l)c.length<3?a.push(...c):c.length===3?a.push(...pn(zu([c[0],c[0],c[1],c[2]]),10,(1+i.roughness)/2)):a.push(...pn(zu(c),10,(1+i.roughness)/2))}a.length&&s.push(ki([a],i))}return i.stroke!==Ie&&s.push(o),this._d("curve",s,i)}polygon(t,r){const i=this._o(r),s=[],o=No(t,!0,i);return i.fill&&(i.fillStyle==="solid"?s.push(fn([t],i)):s.push(ki([t],i))),i.stroke!==Ie&&s.push(o),this._d("polygon",s,i)}path(t,r){const i=this._o(r),s=[];if(!t)return this._d("path",s,i);t=(t||"").replace(/\n/g," ").replace(/(-\s)/g,"-").replace("/(ss)/g"," ");const o=i.fill&&i.fill!=="transparent"&&i.fill!==Ie,a=i.stroke!==Ie,n=!!(i.simplification&&i.simplification<1),l=(function(h,u,d){const f=Sg(_g(_h(h))),m=[];let y=[],C=[0,0],x=[];const b=()=>{x.length>=4&&y.push(...pn(x,u)),x=[]},w=()=>{b(),y.length&&(m.push(y),y=[])};for(const{key:v,data:F}of f)switch(v){case"M":w(),C=[F[0],F[1]],y.push(C);break;case"L":b(),y.push([F[0],F[1]]);break;case"C":if(!x.length){const A=y.length?y[y.length-1]:C;x.push([A[0],A[1]])}x.push([F[0],F[1]]),x.push([F[2],F[3]]),x.push([F[4],F[5]]);break;case"Z":b(),y.push([C[0],C[1]])}if(w(),!d)return m;const _=[];for(const v of m){const F=D_(v,d);F.length&&_.push(F)}return _})(t,1,n?4-4*(i.simplification||1):(1+i.roughness)/2),c=Pu(t,i);if(o)if(i.fillStyle==="solid")if(l.length===1){const h=Pu(t,Object.assign(Object.assign({},i),{disableMultiStroke:!0,roughness:i.roughness?i.roughness+i.fillShapeRoughnessGain:0}));s.push({type:"fillPath",ops:this._mergedShape(h.ops)})}else s.push(fn(l,i));else s.push(ki(l,i));return a&&(n?l.forEach((h=>{s.push(No(h,!1,i))})):s.push(c)),this._d("path",s,i)}opsToPath(t,r){let i="";for(const s of t.ops){const o=typeof r=="number"&&r>=0?s.data.map((a=>+a.toFixed(r))):s.data;switch(s.op){case"move":i+=`M${o[0]} ${o[1]} `;break;case"bcurveTo":i+=`C${o[0]} ${o[1]}, ${o[2]} ${o[3]}, ${o[4]} ${o[5]} `;break;case"lineTo":i+=`L${o[0]} ${o[1]} `}}return i.trim()}toPaths(t){const r=t.sets||[],i=t.options||this.defaultOptions,s=[];for(const o of r){let a=null;switch(o.type){case"path":a={d:this.opsToPath(o),stroke:i.stroke,strokeWidth:i.strokeWidth,fill:Ie};break;case"fillPath":a={d:this.opsToPath(o),stroke:Ie,strokeWidth:0,fill:i.fill||Ie};break;case"fillSketch":a=this.fillSketch(o,i)}a&&s.push(a)}return s}fillSketch(t,r){let i=r.fillWeight;return i<0&&(i=r.strokeWidth/2),{d:this.opsToPath(t),stroke:r.fill||Ie,strokeWidth:i,fill:Ie}}_mergedShape(t){return t.filter(((r,i)=>i===0||r.op!=="move"))}}class I_{constructor(t,r){this.canvas=t,this.ctx=this.canvas.getContext("2d"),this.gen=new ua(r)}draw(t){const r=t.sets||[],i=t.options||this.getDefaultOptions(),s=this.ctx,o=t.options.fixedDecimalPlaceDigits;for(const a of r)switch(a.type){case"path":s.save(),s.strokeStyle=i.stroke==="none"?"transparent":i.stroke,s.lineWidth=i.strokeWidth,i.strokeLineDash&&s.setLineDash(i.strokeLineDash),i.strokeLineDashOffset&&(s.lineDashOffset=i.strokeLineDashOffset),this._drawToContext(s,a,o),s.restore();break;case"fillPath":{s.save(),s.fillStyle=i.fill||"";const n=t.shape==="curve"||t.shape==="polygon"||t.shape==="path"?"evenodd":"nonzero";this._drawToContext(s,a,o,n),s.restore();break}case"fillSketch":this.fillSketch(s,a,i)}}fillSketch(t,r,i){let s=i.fillWeight;s<0&&(s=i.strokeWidth/2),t.save(),i.fillLineDash&&t.setLineDash(i.fillLineDash),i.fillLineDashOffset&&(t.lineDashOffset=i.fillLineDashOffset),t.strokeStyle=i.fill||"",t.lineWidth=s,this._drawToContext(t,r,i.fixedDecimalPlaceDigits),t.restore()}_drawToContext(t,r,i,s="nonzero"){t.beginPath();for(const o of r.ops){const a=typeof i=="number"&&i>=0?o.data.map((n=>+n.toFixed(i))):o.data;switch(o.op){case"move":t.moveTo(a[0],a[1]);break;case"bcurveTo":t.bezierCurveTo(a[0],a[1],a[2],a[3],a[4],a[5]);break;case"lineTo":t.lineTo(a[0],a[1])}}r.type==="fillPath"?t.fill(s):t.stroke()}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}line(t,r,i,s,o){const a=this.gen.line(t,r,i,s,o);return this.draw(a),a}rectangle(t,r,i,s,o){const a=this.gen.rectangle(t,r,i,s,o);return this.draw(a),a}ellipse(t,r,i,s,o){const a=this.gen.ellipse(t,r,i,s,o);return this.draw(a),a}circle(t,r,i,s){const o=this.gen.circle(t,r,i,s);return this.draw(o),o}linearPath(t,r){const i=this.gen.linearPath(t,r);return this.draw(i),i}polygon(t,r){const i=this.gen.polygon(t,r);return this.draw(i),i}arc(t,r,i,s,o,a,n=!1,l){const c=this.gen.arc(t,r,i,s,o,a,n,l);return this.draw(c),c}curve(t,r){const i=this.gen.curve(t,r);return this.draw(i),i}path(t,r){const i=this.gen.path(t,r);return this.draw(i),i}}const wo="http://www.w3.org/2000/svg";class P_{constructor(t,r){this.svg=t,this.gen=new ua(r)}draw(t){const r=t.sets||[],i=t.options||this.getDefaultOptions(),s=this.svg.ownerDocument||window.document,o=s.createElementNS(wo,"g"),a=t.options.fixedDecimalPlaceDigits;for(const n of r){let l=null;switch(n.type){case"path":l=s.createElementNS(wo,"path"),l.setAttribute("d",this.opsToPath(n,a)),l.setAttribute("stroke",i.stroke),l.setAttribute("stroke-width",i.strokeWidth+""),l.setAttribute("fill","none"),i.strokeLineDash&&l.setAttribute("stroke-dasharray",i.strokeLineDash.join(" ").trim()),i.strokeLineDashOffset&&l.setAttribute("stroke-dashoffset",`${i.strokeLineDashOffset}`);break;case"fillPath":l=s.createElementNS(wo,"path"),l.setAttribute("d",this.opsToPath(n,a)),l.setAttribute("stroke","none"),l.setAttribute("stroke-width","0"),l.setAttribute("fill",i.fill||""),t.shape!=="curve"&&t.shape!=="polygon"||l.setAttribute("fill-rule","evenodd");break;case"fillSketch":l=this.fillSketch(s,n,i)}l&&o.appendChild(l)}return o}fillSketch(t,r,i){let s=i.fillWeight;s<0&&(s=i.strokeWidth/2);const o=t.createElementNS(wo,"path");return o.setAttribute("d",this.opsToPath(r,i.fixedDecimalPlaceDigits)),o.setAttribute("stroke",i.fill||""),o.setAttribute("stroke-width",s+""),o.setAttribute("fill","none"),i.fillLineDash&&o.setAttribute("stroke-dasharray",i.fillLineDash.join(" ").trim()),i.fillLineDashOffset&&o.setAttribute("stroke-dashoffset",`${i.fillLineDashOffset}`),o}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}opsToPath(t,r){return this.gen.opsToPath(t,r)}line(t,r,i,s,o){const a=this.gen.line(t,r,i,s,o);return this.draw(a)}rectangle(t,r,i,s,o){const a=this.gen.rectangle(t,r,i,s,o);return this.draw(a)}ellipse(t,r,i,s,o){const a=this.gen.ellipse(t,r,i,s,o);return this.draw(a)}circle(t,r,i,s){const o=this.gen.circle(t,r,i,s);return this.draw(o)}linearPath(t,r){const i=this.gen.linearPath(t,r);return this.draw(i)}polygon(t,r){const i=this.gen.polygon(t,r);return this.draw(i)}arc(t,r,i,s,o,a,n=!1,l){const c=this.gen.arc(t,r,i,s,o,a,n,l);return this.draw(c)}curve(t,r){const i=this.gen.curve(t,r);return this.draw(i)}path(t,r){const i=this.gen.path(t,r);return this.draw(i)}}var yt={canvas:(e,t)=>new I_(e,t),svg:(e,t)=>new P_(e,t),generator:e=>new ua(e),newSeed:()=>ua.newSeed()},R_=1,N_=3;async function Sh(e){const t=e.getElementsByTagName("img");if(!t||t.length===0)return;const r=!vh(e);await Promise.all([...t].map(i=>new Promise(s=>{function o(){if(i.style.display="flex",i.style.flexDirection="column",r){const a=Wt().fontSize?Wt().fontSize:window.getComputedStyle(document.body).fontSize,n=5,[l=Sf.fontSize]=wa(a),c=l*n+"px";i.style.minWidth=c,i.style.maxWidth=c}else i.style.width="100%";s(i)}p(o,"setupImage"),setTimeout(()=>{i.complete&&o()}),i.addEventListener("error",o),i.addEventListener("load",o)})))}p(Sh,"configureLabelImages");function vh(e){var r;return e.nodeType===N_?((r=e.textContent)==null?void 0:r.trim())!=="":e.nodeType!==R_||e.tagName.toLowerCase()==="img"?!1:[...e.childNodes].some(vh)}p(vh,"hasTextBesidesImages");var Wu=3,q_=32,z_=p(async(e,t,r)=>{var C,x;const i=Wt(),s=e.insert("g").attr("class",r??"node default").attr("id",t.domId||t.id),o=s.insert("g").attr("class","label").attr("style",ae(t.labelStyle)),n=[{text:typeof t.label=="string"?t.label:((C=t.label)==null?void 0:C[0])??"",cssClass:"c4-name"},{text:t.stereotype,cssClass:"c4-type"},...(t.description??[]).map(b=>({text:b,cssClass:"c4-descr"}))].filter(b=>b.text),l=t.width?Math.max(t.width-2*(t.padding??0),q_):((x=Wt().flowchart)==null?void 0:x.wrappingWidth)??200,c=i.wrap?l:Number.POSITIVE_INFINITY,h=await Promise.all(n.map(async b=>{const w=o.append("g").attr("class",b.cssClass),_=await Je(w,ze(Wr(b.text??""),i),{useHtmlLabels:!1,markdown:!1,isNode:!0,width:c,style:t.labelStyle},i);return Pt(_).selectAll("tspan.text-outer-tspan").attr("text-anchor","middle"),Pt(_).selectAll("tspan.text-inner-tspan").attr("font-weight",null).attr("font-style",null),{el:w,box:w.node().getBBox()}})),u=Math.max(...h.map(({box:b})=>b.width),0);let d=0;for(const{el:b,box:w}of h)b.attr("transform",`translate(${u/2-w.x-w.width/2}, ${d-w.y})`),d+=w.height+Wu;const f=h.length>0?d-Wu:0;o.insert("rect",":first-child"),o.attr("transform",`translate(${-u/2}, ${-f/2})`);const m=o.node().getBBox(),y=(t.padding??0)/2;return{shapeSvg:s,bbox:m,halfPadding:y,label:o}},"c4LabelHelper"),_t=p(async(e,t,r)=>{var f,m;if(t.stereotype!==void 0)return z_(e,t,r);let i;const s=t.useHtmlLabels||pr((f=Wt())==null?void 0:f.htmlLabels);r?i=r:i="node default";const o=e.insert("g").attr("class",i).attr("id",t.domId||t.id),a=o.insert("g").attr("class","label").attr("style",ae(t.labelStyle));let n;t.label===void 0?n="":n=typeof t.label=="string"?t.label:t.label[0];const l=!!t.icon||!!t.img,c=t.labelType==="markdown",h=await Je(a,ze(Wr(n),Wt()),{useHtmlLabels:s,width:t.width||t.wrappingWidth||((m=Wt().flowchart)==null?void 0:m.wrappingWidth),classes:c?"markdown-node-label":"",style:t.labelStyle,addSvgBackground:l,markdown:c},Wt()),u=((t==null?void 0:t.padding)??0)/2;let d;if(s){const y=h.children[0],C=Pt(h);await Sh(y),d=await li.measure(()=>y.getBoundingClientRect()),C.attr("width",d.width),C.attr("height",d.height)}else d=await li.measure(()=>h.getBBox());return s?a.attr("transform","translate("+-d.width/2+", "+-d.height/2+")"):a.attr("transform","translate(0, "+-d.height/2+")"),t.centerLabel&&a.attr("transform","translate("+-d.width/2+", "+-d.height/2+")"),a.insert("rect",":first-child"),{shapeSvg:o,bbox:d,halfPadding:u,label:a}},"labelHelper"),gn=p(async(e,t,r)=>{var l,c;const i=r.useHtmlLabels??Ce(Wt()),s=e.insert("g").attr("class","label").attr("style",r.labelStyle||""),o=await Je(s,ze(Wr(t),Wt()),{useHtmlLabels:i,width:r.width||((c=(l=Wt())==null?void 0:l.flowchart)==null?void 0:c.wrappingWidth),style:r.labelStyle,addSvgBackground:!!r.icon||!!r.img}),a=r.padding/2;let n;if(Ce(Wt())){const h=o.children[0],u=Pt(o);n=await li.measure(()=>h.getBoundingClientRect()),u.attr("width",n.width),u.attr("height",n.height)}else n=await li.measure(()=>o.getBBox());return i?s.attr("transform","translate("+-n.width/2+", "+-n.height/2+")"):s.attr("transform","translate(0, "+-n.height/2+")"),r.centerLabel&&s.attr("transform","translate("+-n.width/2+", "+-n.height/2+")"),s.insert("rect",":first-child"),{shapeSvg:e,bbox:n,halfPadding:a,label:s}},"insertLabel"),Ct=p((e,t,r)=>{if(r){e.width=r.width,e.height=r.height;return}const i=t.node().getBBox();e.width=i.width,e.height=i.height},"updateNodeBounds"),St=p((e,t)=>(e.look==="handDrawn"?"rough-node":"node")+" "+e.cssClasses+" "+(t||""),"getNodeClasses");function Yt(e){const t=e.map((r,i)=>`${i===0?"M":"L"}${r.x},${r.y}`);return t.push("Z"),t.join(" ")}p(Yt,"createPathFromPoints");function Yr(e,t,r,i,s,o){const a=[],l=r-e,c=i-t,h=l/o,u=2*Math.PI/h,d=t+c/2;for(let f=0;f<=50;f++){const m=f/50,y=e+m*l,C=d+s*Math.sin(u*(y-e));a.push({x:y,y:C})}return a}p(Yr,"generateFullSineWavePoints");function lr(e,t,r,i,s,o){const a=[],n=s*Math.PI/180,h=(o*Math.PI/180-n)/(i-1);for(let u=0;u<i;u++){const d=n+u*h,f=e+r*Math.cos(d),m=t+r*Math.sin(d);a.push({x:-f,y:-m})}return a}p(lr,"generateCirclePoints");function Tl(e){const t=Array.from(e.childNodes).filter(l=>l.tagName==="path"),r=document.createElementNS("http://www.w3.org/2000/svg","path"),i=t.map(l=>l.getAttribute("d")).filter(l=>l!==null).join(" ");r.setAttribute("d",i);const s=t.find(l=>l.getAttribute("fill")!=="none"),o=t.find(l=>l.getAttribute("stroke")!=="none"),a=p((l,c)=>(l==null?void 0:l.getAttribute(c))??void 0,"getAttr");if(s){const l={fill:a(s,"fill"),"fill-opacity":a(s,"fill-opacity")??"1"};Object.entries(l).forEach(([c,h])=>{h&&r.setAttribute(c,h)})}if(o){const l={stroke:a(o,"stroke"),"stroke-width":a(o,"stroke-width")??"1","stroke-opacity":a(o,"stroke-opacity")??"1"};Object.entries(l).forEach(([c,h])=>{h&&r.setAttribute(c,h)})}const n=document.createElementNS("http://www.w3.org/2000/svg","g");return n.appendChild(r),n}p(Tl,"mergePaths");var W_=p((e,t)=>{var r=e.x,i=e.y,s=t.x-r,o=t.y-i,a=e.width/2,n=e.height/2,l,c;return Math.abs(o)*a>Math.abs(s)*n?(o<0&&(n=-n),l=o===0?0:n*s/o,c=n):(s<0&&(a=-a),l=a,c=s===0?0:a*o/s),{x:r+l,y:i+c}},"intersectRect"),fi=W_,He=p((e,t,r,i,s)=>["M",e+s,t,"H",e+r-s,"A",s,s,0,0,1,e+r,t+s,"V",t+i-s,"A",s,s,0,0,1,e+r-s,t+i,"H",e+s,"A",s,s,0,0,1,e,t+i-s,"V",t+s,"A",s,s,0,0,1,e+s,t,"Z"].join(" "),"createRoundedRectPathD"),H_=p(async(e,t,r,i=!1,s=!1)=>{let o=t||"";typeof o=="object"&&(o=o[0]);const a=Wt(),n=Ce(a);return await Je(e,o,{style:r,isTitle:i,useHtmlLabels:n,markdown:!1,isNode:s,width:Number.POSITIVE_INFINITY},a)},"createLabel"),Rr=H_;function Ag(e,t){return e.intersect(t)}p(Ag,"intersectNode");var Y_=Ag;function Eg(e,t,r,i){var s=e.x,o=e.y,a=s-i.x,n=o-i.y,l=Math.sqrt(t*t*n*n+r*r*a*a),c=Math.abs(t*r*a/l);i.x<s&&(c=-c);var h=Math.abs(t*r*n/l);return i.y<o&&(h=-h),{x:s+c,y:o+h}}p(Eg,"intersectEllipse");var Mg=Eg;function $g(e,t,r){return Mg(e,t,t,r)}p($g,"intersectCircle");var j_=$g;function Og(e,t,r,i){{const s=t.y-e.y,o=e.x-t.x,a=t.x*e.y-e.x*t.y,n=s*r.x+o*r.y+a,l=s*i.x+o*i.y+a,c=1e-6;if(n!==0&&l!==0&&_l(n,l))return;const h=i.y-r.y,u=r.x-i.x,d=i.x*r.y-r.x*i.y,f=h*e.x+u*e.y+d,m=h*t.x+u*t.y+d;if(Math.abs(f)<c&&Math.abs(m)<c&&_l(f,m))return;const y=s*u-h*o;if(y===0)return;const C=Math.abs(y/2);let x=o*d-u*a;const b=x<0?(x-C)/y:(x+C)/y;x=h*a-s*d;const w=x<0?(x-C)/y:(x+C)/y;return{x:b,y:w}}}p(Og,"intersectLine");function _l(e,t){return e*t>0}p(_l,"sameSign");var U_=Og;function Dg(e,t,r){let i=e.x,s=e.y,o=[],a=Number.POSITIVE_INFINITY,n=Number.POSITIVE_INFINITY;typeof t.forEach=="function"?t.forEach(function(h){a=Math.min(a,h.x),n=Math.min(n,h.y)}):(a=Math.min(a,t.x),n=Math.min(n,t.y));let l=i-e.width/2-a,c=s-e.height/2-n;for(let h=0;h<t.length;h++){let u=t[h],d=t[h<t.length-1?h+1:0],f=U_(e,r,{x:l+u.x,y:c+u.y},{x:l+d.x,y:c+d.y});f&&o.push(f)}return o.length?(o.length>1&&o.sort(function(h,u){let d=h.x-r.x,f=h.y-r.y,m=Math.sqrt(d*d+f*f),y=u.x-r.x,C=u.y-r.y,x=Math.sqrt(y*y+C*C);return m<x?-1:m===x?0:1}),o[0]):e}p(Dg,"intersectPolygon");var G_=Dg,ht={node:Y_,circle:j_,ellipse:Mg,polygon:G_,rect:fi};function Ig(e,t){const{labelStyles:r}=bt(t);t.labelStyle=r;const i=St(t);let s=i;i||(s="anchor");const o=e.insert("g").attr("class",s).attr("id",t.domId||t.id),a=1,{cssStyles:n}=t,l=yt.svg(o),c=ft(t,{fill:"black",stroke:"none",fillStyle:"solid"});t.look!=="handDrawn"&&(c.roughness=0);const h=l.circle(0,0,a*2,c),u=o.insert(()=>h,":first-child");return u.attr("class","anchor").attr("style",ae(n)),Ct(t,u),t.intersect=function(d){return N.info("Circle intersect",t,a,d),ht.circle(t,a,d)},o}p(Ig,"anchor");function Sl(e,t,r,i,s,o,a){const l=(e+r)/2,c=(t+i)/2,h=Math.atan2(i-t,r-e),u=(r-e)/2,d=(i-t)/2,f=u/s,m=d/o,y=Math.sqrt(f**2+m**2);if(y>1)throw new Error("The given radii are too small to create an arc between the points.");const C=Math.sqrt(1-y**2),x=l+C*o*Math.sin(h)*(a?-1:1),b=c-C*s*Math.cos(h)*(a?-1:1),w=Math.atan2((t-b)/o,(e-x)/s);let v=Math.atan2((i-b)/o,(r-x)/s)-w;a&&v<0&&(v+=2*Math.PI),!a&&v>0&&(v-=2*Math.PI);const F=[];for(let A=0;A<20;A++){const L=A/19,j=w+L*v,z=x+s*Math.cos(j),W=b+o*Math.sin(j);F.push({x:z,y:W})}return F}p(Sl,"generateArcPoints");function Pg(e,t,r){const[i,s]=[t,r].sort((o,a)=>a-o);return s*(1-Math.sqrt(1-(e/i/2)**2))}p(Pg,"calculateArcSagitta");async function Rg(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=t.look==="neo"?16:s,a=t.look==="neo"?12:s,n=p(j=>j+a,"calcTotalHeight"),l=p(j=>{const z=j/2;return[z/(2.5+j/50),z]},"calcEllipseRadius"),{shapeSvg:c,bbox:h}=await _t(e,t,St(t)),u=n(t!=null&&t.height?t==null?void 0:t.height:h.height),[d,f]=l(u),m=Pg(u,d,f),C=(t!=null&&t.width?t==null?void 0:t.width:h.width)+o*2+m-m,x=u,{cssStyles:b}=t,w=[{x:C/2,y:-x/2},{x:-C/2,y:-x/2},...Sl(-C/2,-x/2,-C/2,x/2,d,f,!1),{x:C/2,y:x/2},...Sl(C/2,x/2,C/2,-x/2,d,f,!0)],_=yt.svg(c),v=ft(t,{});t.look!=="handDrawn"&&(v.roughness=0,v.fillStyle="solid");const F=Yt(w),A=_.path(F,v),L=c.insert(()=>A,":first-child");return L.attr("class","basic label-container outer-path"),b&&t.look!=="handDrawn"&&L.selectAll("path").attr("style",b),i&&t.look!=="handDrawn"&&L.selectAll("path").attr("style",i),L.attr("transform",`translate(${d/2}, 0)`),Ct(t,L),t.intersect=function(j){return ht.polygon(t,w,j)},c}p(Rg,"bowTieRect");async function Ng(e,t,{config:{themeVariables:r}}){var A;const{labelStyles:i,nodeStyles:s}=bt(t);t.labelStyle=i;const{shapeSvg:o,bbox:a,label:n}=await _t(e,t,St(t)),l=(r==null?void 0:r.nodeBorder)??(r==null?void 0:r.lineColor)??"currentColor",c=t.padding??12,h=Math.max(a.width+c*2,t.width??0,80),u=Math.max(Math.min(h*.08,12),5),d=Math.max(a.height+c*2+u,t.height??0),f=-d/2+u,m=d/2,y=h*.72,C=[`M${-h/2},${f}`,`L${-y/2},${m}`,`A${y/2},${u} 0 0 0 ${y/2},${m}`,`L${h/2},${f}`,`A${h/2},${u} 0 0 0 ${-h/2},${f}`,"Z"].join(" "),{cssStyles:x}=t,b=o.insert("g",":first-child").attr("class","basic label-container");if(t.look==="handDrawn"){const j=yt.svg(o).path(C,ft(t,{}));(A=b.node())==null||A.appendChild(j),x&&b.attr("style",x)}else b.append("path").attr("d",C).attr("style",s);b.append("ellipse").attr("cx",0).attr("cy",f).attr("rx",h/2).attr("ry",u).attr("style",`fill:none;stroke:${l};stroke-width:1px`),Ct(t,b);const w=f+(m-f)/2;n.attr("transform",`translate(${-(a.width/2)-(a.x-(a.left??0))}, ${w-a.height/2-(a.y-(a.top??0))})`);const _=12,v=p((L,j,z)=>Array.from({length:_+1},(W,ot)=>{const Y=Math.PI-ot*Math.PI/_;return{x:L*Math.cos(Y),y:j+z*u*Math.sin(Y)}}),"arc"),F=[...v(h/2,f,-1),...v(y/2,m,1).reverse()];return t.intersect=function(L){return ht.polygon(t,F,L)},o}p(Ng,"bucket");var Hu=20,Yu=8,X_=80,mn=8;async function qg(e,t){const{themeVariables:r}=Wt(),i=r.clusterBkg,s=r.clusterBorder,{nodeStyles:o}=bt(t),{shapeSvg:a,bbox:n}=await _t(e,t,St(t)),l=t.padding??8,c=n.height,h=Math.max(n.width+l*2,X_,(t==null?void 0:t.width)??0),u=Math.max(c+Yu+Hu+l*2,(t==null?void 0:t.height)??0),d=-h/2,f=-u/2,m=-28/2,y=a.select(".label");y&&(t.useHtmlLabels??Ce(Wt())?y.attr("transform",`translate(${-n.width/2}, ${-n.height/2+m})`):y.attr("transform",`translate(0, ${-n.height/2+m})`));let C;if(t.look==="handDrawn"){const v=yt.svg(a),F=ft(t,{fill:i,stroke:s,fillStyle:"solid"}),A=v.path(He(d,f,h,u,mn),F);C=a.insert(()=>A,":first-child"),C.attr("class","basic label-container collapsed-group").attr("style",ae(t.cssStyles))}else C=a.insert("rect",":first-child"),C.attr("class","basic label-container collapsed-group").attr("style",o).attr("rx",mn).attr("ry",mn).attr("x",d).attr("y",f).attr("width",h).attr("height",u).attr("fill",i).attr("stroke",s);const x=f+l+c+Yu;a.append("line").attr("class","collapsed-separator").attr("x1",d+8).attr("y1",x).attr("x2",d+h-8).attr("y2",x).attr("stroke",s).attr("stroke-dasharray","3, 3");const b=x+Hu/2,w=2.5,_=10;for(let v=-1;v<=1;v++)a.append("circle").attr("class","collapsed-indicator").attr("cx",v*_).attr("cy",b).attr("r",w).attr("fill",s);return Ct(t,C),t.calcIntersect=function(v,F){return ht.rect(v,F)},t.intersect=function(v){return ht.rect(t,v)},a}p(qg,"collapsedGroup");function mr(e,t,r,i){return e.insert("polygon",":first-child").attr("points",i.map(function(s){return s.x+","+s.y}).join(" ")).attr("class","label-container").attr("transform","translate("+-t/2+","+r/2+")")}p(mr,"insertPolygonShape");var V_=["right","left","up","down"],Bh="point",Z_=p(e=>{const t=new Set;for(const r of e)switch(r){case"x":t.add("right"),t.add("left");break;case"y":t.add("up"),t.add("down");break;default:t.add(r);break}return t},"expandAndDeduplicateDirections"),K_=p(e=>V_.filter(t=>e.has(t)).join("|")||Bh,"getDirectionKey"),ju={"right|left|up|down":p(({height:e,midpoint:t,padding:r,width:i})=>[{x:0,y:0},{x:t,y:0},{x:i/2,y:2*r},{x:i-t,y:0},{x:i,y:0},{x:i,y:-e/3},{x:i+2*r,y:-e/2},{x:i,y:-2*e/3},{x:i,y:-e},{x:i-t,y:-e},{x:i/2,y:-e-2*r},{x:t,y:-e},{x:0,y:-e},{x:0,y:-2*e/3},{x:-2*r,y:-e/2},{x:0,y:-e/3}],"right|left|up|down"),"right|left|up":p(({height:e,midpoint:t,width:r})=>[{x:t,y:0},{x:r-t,y:0},{x:r,y:-e/2},{x:r-t,y:-e},{x:t,y:-e},{x:0,y:-e/2}],"right|left|up"),"right|left|down":p(({height:e,midpoint:t,width:r})=>[{x:0,y:0},{x:t,y:-e},{x:r-t,y:-e},{x:r,y:0}],"right|left|down"),"right|up|down":p(({height:e,midpoint:t,width:r})=>[{x:0,y:0},{x:r,y:-t},{x:r,y:-e+t},{x:0,y:-e}],"right|up|down"),"left|up|down":p(({height:e,midpoint:t,width:r})=>[{x:r,y:0},{x:0,y:-t},{x:0,y:-e+t},{x:r,y:-e}],"left|up|down"),"right|left":p(({height:e,midpoint:t,padding:r,width:i})=>[{x:t,y:0},{x:t,y:-r},{x:i-t,y:-r},{x:i-t,y:0},{x:i,y:-e/2},{x:i-t,y:-e},{x:i-t,y:-e+r},{x:t,y:-e+r},{x:t,y:-e},{x:0,y:-e/2}],"right|left"),"up|down":p(({height:e,midpoint:t,padding:r,width:i})=>[{x:i/2,y:0},{x:0,y:-r},{x:t,y:-r},{x:t,y:-e+r},{x:0,y:-e+r},{x:i/2,y:-e},{x:i,y:-e+r},{x:i-t,y:-e+r},{x:i-t,y:-r},{x:i,y:-r}],"up|down"),"right|up":p(({height:e,midpoint:t,width:r})=>[{x:0,y:0},{x:r,y:-t},{x:0,y:-e}],"right|up"),"right|down":p(({height:e,width:t})=>[{x:0,y:0},{x:t,y:0},{x:0,y:-e}],"right|down"),"left|up":p(({height:e,midpoint:t,width:r})=>[{x:r,y:0},{x:0,y:-t},{x:r,y:-e}],"left|up"),"left|down":p(({height:e,width:t})=>[{x:t,y:0},{x:0,y:0},{x:t,y:-e}],"left|down"),right:p(({height:e,midpoint:t,padding:r,width:i})=>[{x:t,y:-r},{x:t,y:-r},{x:i-t,y:-r},{x:i-t,y:0},{x:i,y:-e/2},{x:i-t,y:-e},{x:i-t,y:-e+r},{x:t,y:-e+r},{x:t,y:-e+r}],"right"),left:p(({height:e,midpoint:t,padding:r,width:i})=>[{x:t,y:0},{x:t,y:-r},{x:i-t,y:-r},{x:i-t,y:-e+r},{x:t,y:-e+r},{x:t,y:-e},{x:0,y:-e/2}],"left"),up:p(({height:e,midpoint:t,padding:r,width:i})=>[{x:t,y:-r},{x:t,y:-e+r},{x:0,y:-e+r},{x:i/2,y:-e},{x:i,y:-e+r},{x:i-t,y:-e+r},{x:i-t,y:-r}],"up"),down:p(({height:e,midpoint:t,padding:r,width:i})=>[{x:i/2,y:0},{x:0,y:-r},{x:t,y:-r},{x:t,y:-e+r},{x:i-t,y:-e+r},{x:i-t,y:-r},{x:i,y:-r}],"down"),[Bh]:()=>[{x:0,y:0}]},Q_=p((e,t,r,i)=>{const s=Z_(e),o=(r.padding??0)/2,a=t.height+4*o,n=a/2,l=i??t.width+2*n+2*o,c=K_(s);return(ju[c]??ju[Bh])({height:a,midpoint:n,padding:o,width:l})},"getArrowPoints");async function zg(e,t){const r=t,{shapeSvg:i,bbox:s}=await _t(e,r,St(r)),o=r.padding??0,a=s.height+2*o,n=a/2,l=s.width+2*n+o,c=r.width??0,u=r.positioned&&(r.widthInColumns??1)>1&&c>l?c:l,d=Q_(r.directions??[],s,r,u),f=mr(i,u,a,d);return f.attr("style",r.style??null),Ct(r,f),r.intersect=function(m){return ht.polygon(r,d,m)},i}p(zg,"block_arrow");async function Wg(e,t,{config:{themeVariables:r}}){var b;const{labelStyles:i,nodeStyles:s}=bt(t);t.labelStyle=i;const{shapeSvg:o,bbox:a,label:n}=await _t(e,t,St(t)),l=(r==null?void 0:r.nodeBorder)??(r==null?void 0:r.lineColor)??"currentColor",c=t.padding??12,h=18,u=12,d=Math.max(a.width+c*2,t.width??0,90),f=Math.max(a.height+c*2+h,t.height??0),m=-f/2,{cssStyles:y}=t,C=o.insert("g",":first-child").attr("class","basic label-container");if(t.look==="handDrawn"){const _=yt.svg(o).path(He(-d/2,m,d,f,u),ft(t,{}));(b=C.node())==null||b.appendChild(_),y&&C.attr("style",y)}else C.append("rect").attr("x",-d/2).attr("y",m).attr("width",d).attr("height",f).attr("rx",u).attr("ry",u).attr("style",s);C.append("line").attr("x1",-d/2).attr("y1",m+h).attr("x2",d/2).attr("y2",m+h).attr("style",`stroke:${l};stroke-width:1px`);for(let w=0;w<3;w++)C.append("circle").attr("cx",-d/2+12+w*9).attr("cy",m+h/2).attr("r",2.5).attr("style",`fill:${l};stroke:none`);C.append("rect").attr("class","browser-address-bar").attr("x",-d/2+44).attr("y",m+4).attr("width",Math.max(d-56,10)).attr("height",h-8).attr("rx",3).attr("ry",3).attr("style",`fill:none;stroke:${l};stroke-width:1px;opacity:0.6`),Ct(t,C);const x=m+h+(f-h)/2;return n.attr("transform",`translate(${-(a.width/2)-(a.x-(a.left??0))}, ${x-a.height/2-(a.y-(a.top??0))})`),t.intersect=function(w){return ht.rect(t,w)},o}p(Wg,"browser");var To=12;async function Hg(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=t.look==="neo"?28:s,a=t.look==="neo"?24:s,{shapeSvg:n,bbox:l}=await _t(e,t,St(t)),c=((t==null?void 0:t.width)??l.width)+(t.look==="neo"?o*2:o+To),h=((t==null?void 0:t.height)??l.height)+(t.look==="neo"?a*2:a),u=0,d=c,f=-h,m=0,y=[{x:u+To,y:f},{x:d,y:f},{x:d,y:m},{x:u,y:m},{x:u,y:f+To},{x:u+To,y:f}];let C;const{cssStyles:x}=t;if(t.look==="handDrawn"){const b=yt.svg(n),w=ft(t,{}),_=Yt(y),v=b.path(_,w);C=n.insert(()=>v,":first-child").attr("transform",`translate(${-c/2}, ${h/2})`),x&&C.attr("style",x)}else C=mr(n,c,h,y);return i&&C.attr("style",i),Ct(t,C),t.intersect=function(b){return ht.polygon(t,y,b)},n}p(Hg,"card");function Yg(e,t){const{nodeStyles:r}=bt(t);t.label="";const i=e.insert("g").attr("class",St(t)).attr("id",t.domId??t.id),{cssStyles:s}=t,o=Math.max(28,t.width??0),a=[{x:0,y:o/2},{x:o/2,y:0},{x:0,y:-o/2},{x:-o/2,y:0}],n=yt.svg(i),l=ft(t,{});t.look!=="handDrawn"&&(l.roughness=0,l.fillStyle="solid");const c=Yt(a),h=n.path(c,l),u=i.insert(()=>h,":first-child");return s&&t.look!=="handDrawn"&&u.selectAll("path").attr("style",s),r&&t.look!=="handDrawn"&&u.selectAll("path").attr("style",r),t.width=28,t.height=28,t.intersect=function(d){return ht.polygon(t,a,d)},i}p(Yg,"choice");async function Lh(e,t,r){const{labelStyles:i,nodeStyles:s}=bt(t);t.labelStyle=i;const{shapeSvg:o,bbox:a,halfPadding:n}=await _t(e,t,St(t)),l=16,c=(r==null?void 0:r.padding)??n,h=t.look==="neo"?a.width/2+l*2:a.width/2+c;let u;const{cssStyles:d}=t;if(t.look==="handDrawn"){const f=yt.svg(o),m=ft(t,{}),y=f.circle(0,0,h*2,m);u=o.insert(()=>y,":first-child"),u.attr("class","basic label-container").attr("style",ae(d))}else u=o.insert("circle",":first-child").attr("class","basic label-container").attr("style",s).attr("r",h).attr("cx",0).attr("cy",0);return Ct(t,u),t.calcIntersect=function(f,m){const y=f.width/2;return ht.circle(f,y,m)},t.intersect=function(f){return N.info("Circle intersect",t,h,f),ht.circle(t,h,f)},o}p(Lh,"circle");async function jg(e,t){const r=t,i=["node",r.cssClasses,r.class].filter(Boolean).join(" "),{shapeSvg:s,bbox:o,halfPadding:a}=await _t(e,r,i),n=s.insert("rect",":first-child"),l=r.padding??0,c=r.positioned?r.width??0:o.width+l,h=r.positioned?r.height??0:o.height+l,u=r.positioned?-c/2:-o.width/2-a,d=r.positioned?-h/2:-o.height/2-a;return n.attr("class","basic cluster composite label-container").attr("style",r.style??null).attr("rx",r.rx??null).attr("ry",r.ry??null).attr("x",u).attr("y",d).attr("width",c).attr("height",h),Ct(r,n),r.intersect=function(f){return ht.rect(r,f)},s}p(jg,"composite");async function Ug(e,t,{config:{themeVariables:r}}){var b;const{labelStyles:i,nodeStyles:s}=bt(t);t.labelStyle=i;const{shapeSvg:o,bbox:a,label:n}=await _t(e,t,St(t)),l=(r==null?void 0:r.nodeBorder)??(r==null?void 0:r.lineColor)??"currentColor",c=t.padding??12,h=20,u=12,d=Math.max(a.width+c*2,t.width??0,90),f=Math.max(a.height+c*2+h,t.height??0),m=-f/2,{cssStyles:y}=t,C=o.insert("g",":first-child").attr("class","basic label-container");if(t.look==="handDrawn"){const _=yt.svg(o).path(He(-d/2,m,d,f,u),ft(t,{}));(b=C.node())==null||b.appendChild(_),y&&C.attr("style",y)}else C.append("rect").attr("x",-d/2).attr("y",m).attr("width",d).attr("height",f).attr("rx",u).attr("ry",u).attr("style",s);C.append("text").attr("x",-d/2+12).attr("y",m+16).attr("class","console-glyph").attr("style",`font-family:monospace;font-weight:bold;font-size:14px;fill:${l}`).text(">_"),Ct(t,C);const x=m+h+(f-h)/2;return n.attr("transform",`translate(${-(a.width/2)-(a.x-(a.left??0))}, ${x-a.height/2-(a.y-(a.top??0))})`),t.intersect=function(w){return ht.rect(t,w)},o}p(Ug,"consoleWindow");function Gg(e){const t=Math.cos(Math.PI/4),r=Math.sin(Math.PI/4),i=e*2,s={x:i/2*t,y:i/2*r},o={x:-(i/2)*t,y:i/2*r},a={x:-(i/2)*t,y:-(i/2)*r},n={x:i/2*t,y:-(i/2)*r};return`M ${o.x},${o.y} L ${n.x},${n.y}
|
|
201
|
+
M ${s.x},${s.y} L ${a.x},${a.y}`}p(Gg,"createLine");function Xg(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r,t.label="";const s=e.insert("g").attr("class",St(t)).attr("id",t.domId??t.id),o=Math.max(30,(t==null?void 0:t.width)??0),{cssStyles:a}=t,n=yt.svg(s),l=ft(t,{});t.look!=="handDrawn"&&(l.roughness=0,l.fillStyle="solid");const c=n.circle(0,0,o*2,l),h=Gg(o),u=n.path(h,l),d=s.insert(()=>c,":first-child");return d.insert(()=>u),d.attr("class","outer-path"),a&&t.look!=="handDrawn"&&d.selectAll("path").attr("style",a),i&&t.look!=="handDrawn"&&d.selectAll("path").attr("style",i),Ct(t,d),t.intersect=function(f){return N.info("crossedCircle intersect",t,{radius:o,point:f}),ht.circle(t,o,f)},s}p(Xg,"crossedCircle");function kr(e,t,r,i=100,s=0,o=180){const a=[],n=s*Math.PI/180,h=(o*Math.PI/180-n)/(i-1);for(let u=0;u<i;u++){const d=n+u*h,f=e+r*Math.cos(d),m=t+r*Math.sin(d);a.push({x:-f,y:-m})}return a}p(kr,"generateCirclePoints");async function Vg(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:a}=await _t(e,t,St(t)),n=t.look==="neo"?18:t.padding??0,l=t.look==="neo"?12:t.padding??0,c=o.width+n,h=o.height+l,u=Math.max(5,h*.1),{cssStyles:d}=t,f=[...kr(c/2,-h/2,u,30,-90,0),{x:-c/2-u,y:u},...kr(c/2+u*2,-u,u,20,-180,-270),...kr(c/2+u*2,u,u,20,-90,-180),{x:-c/2-u,y:-h/2},...kr(c/2,h/2,u,20,0,90)],m=[{x:c/2,y:-h/2-u},{x:-c/2,y:-h/2-u},...kr(c/2,-h/2,u,20,-90,0),{x:-c/2-u,y:-u},...kr(c/2+c*.1,-u,u,20,-180,-270),...kr(c/2+c*.1,u,u,20,-90,-180),{x:-c/2-u,y:h/2},...kr(c/2,h/2,u,20,0,90),{x:-c/2,y:h/2+u},{x:c/2,y:h/2+u}],y=yt.svg(s),C=ft(t,{fill:"none"});t.look!=="handDrawn"&&(C.roughness=0,C.fillStyle="solid");const b=Yt(f).replace("Z",""),w=y.path(b,C),_=Yt(m),v=y.path(_,{...C}),F=s.insert("g",":first-child");return F.insert(()=>v,":first-child").attr("stroke-opacity",0),F.insert(()=>w,":first-child"),F.attr("class","text"),d&&t.look!=="handDrawn"&&F.selectAll("path").attr("style",d),i&&t.look!=="handDrawn"&&F.selectAll("path").attr("style",i),F.attr("transform",`translate(${u}, 0)`),a.attr("transform",`translate(${-c/2+u-(o.x-(o.left??0))},${-h/2+(t.padding??0)/2-(o.y-(o.top??0))})`),Ct(t,F),t.intersect=function(A){return ht.polygon(t,m,A)},s}p(Vg,"curlyBraceLeft");function wr(e,t,r,i=100,s=0,o=180){const a=[],n=s*Math.PI/180,h=(o*Math.PI/180-n)/(i-1);for(let u=0;u<i;u++){const d=n+u*h,f=e+r*Math.cos(d),m=t+r*Math.sin(d);a.push({x:f,y:m})}return a}p(wr,"generateCirclePoints");async function Zg(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:a}=await _t(e,t,St(t)),n=t.look==="neo"?18:t.padding??0,l=t.look==="neo"?12:t.padding??0,c=o.width+(t.look==="neo"?n*2:n),h=o.height+(t.look==="neo"?l*2:l),u=Math.max(5,h*.1),{cssStyles:d}=t,f=[...wr(c/2,-h/2,u,20,-90,0),{x:c/2+u,y:-u},...wr(c/2+u*2,-u,u,20,-180,-270),...wr(c/2+u*2,u,u,20,-90,-180),{x:c/2+u,y:h/2},...wr(c/2,h/2,u,20,0,90)],m=[{x:-c/2,y:-h/2-u},{x:c/2,y:-h/2-u},...wr(c/2,-h/2,u,20,-90,0),{x:c/2+u,y:-u},...wr(c/2+u*2,-u,u,20,-180,-270),...wr(c/2+u*2,u,u,20,-90,-180),{x:c/2+u,y:h/2},...wr(c/2,h/2,u,20,0,90),{x:c/2,y:h/2+u},{x:-c/2,y:h/2+u}],y=yt.svg(s),C=ft(t,{fill:"none"});t.look!=="handDrawn"&&(C.roughness=0,C.fillStyle="solid");const b=Yt(f).replace("Z",""),w=y.path(b,C),_=Yt(m),v=y.path(_,{...C}),F=s.insert("g",":first-child");return F.insert(()=>v,":first-child").attr("stroke-opacity",0),F.insert(()=>w,":first-child"),F.attr("class","text"),d&&t.look!=="handDrawn"&&F.selectAll("path").attr("style",d),i&&t.look!=="handDrawn"&&F.selectAll("path").attr("style",i),F.attr("transform",`translate(${-u}, 0)`),a.attr("transform",`translate(${-c/2+(t.padding??0)/2-(o.x-(o.left??0))},${-h/2+(t.padding??0)/2-(o.y-(o.top??0))})`),Ct(t,F),t.intersect=function(A){return ht.polygon(t,m,A)},s}p(Zg,"curlyBraceRight");function fe(e,t,r,i=100,s=0,o=180){const a=[],n=s*Math.PI/180,h=(o*Math.PI/180-n)/(i-1);for(let u=0;u<i;u++){const d=n+u*h,f=e+r*Math.cos(d),m=t+r*Math.sin(d);a.push({x:-f,y:-m})}return a}p(fe,"generateCirclePoints");async function Kg(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:a}=await _t(e,t,St(t)),n=t.look==="neo"?18:t.padding??0,l=t.look==="neo"?12:t.padding??0,c=o.width+(t.look==="neo"?n*2:n),h=o.height+(t.look==="neo"?l*2:l),u=Math.max(5,h*.1),{cssStyles:d}=t,f=[...fe(c/2,-h/2,u,30,-90,0),{x:-c/2-u,y:u},...fe(c/2+u*2,-u,u,20,-180,-270),...fe(c/2+u*2,u,u,20,-90,-180),{x:-c/2-u,y:-h/2},...fe(c/2,h/2,u,20,0,90)],m=[...fe(-c/2+u+u/2,-h/2,u,20,-90,-180),{x:c/2-u/2,y:u},...fe(-c/2-u/2,-u,u,20,0,90),...fe(-c/2-u/2,u,u,20,-90,0),{x:c/2-u/2,y:-u},...fe(-c/2+u+u/2,h/2,u,30,-180,-270)],y=[{x:c/2,y:-h/2-u},{x:-c/2,y:-h/2-u},...fe(c/2,-h/2,u,20,-90,0),{x:-c/2-u,y:-u},...fe(c/2+u*2,-u,u,20,-180,-270),...fe(c/2+u*2,u,u,20,-90,-180),{x:-c/2-u,y:h/2},...fe(c/2,h/2,u,20,0,90),{x:-c/2,y:h/2+u},{x:c/2-u-u/2,y:h/2+u},...fe(-c/2+u+u/2,-h/2,u,20,-90,-180),{x:c/2-u/2,y:u},...fe(-c/2-u/2,-u,u,20,0,90),...fe(-c/2-u/2,u,u,20,-90,0),{x:c/2-u/2,y:-u},...fe(-c/2+u+u/2,h/2,u,30,-180,-270)],C=yt.svg(s),x=ft(t,{fill:"none"});t.look!=="handDrawn"&&(x.roughness=0,x.fillStyle="solid");const w=Yt(f).replace("Z",""),_=C.path(w,x),F=Yt(m).replace("Z",""),A=C.path(F,x),L=Yt(y),j=C.path(L,{...x}),z=s.insert("g",":first-child");return z.insert(()=>j,":first-child").attr("stroke-opacity",0),z.insert(()=>_,":first-child"),z.insert(()=>A,":first-child"),z.attr("class","text"),d&&t.look!=="handDrawn"&&z.selectAll("path").attr("style",d),i&&t.look!=="handDrawn"&&z.selectAll("path").attr("style",i),z.attr("transform",`translate(${u-u/4}, 0)`),a.attr("transform",`translate(${-c/2+(t.padding??0)/2-(o.x-(o.left??0))},${-h/2+(t.padding??0)/2-(o.y-(o.top??0))})`),Ct(t,z),t.intersect=function(W){return ht.polygon(t,y,W)},s}p(Kg,"curlyBraces");async function Qg(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=t.look==="neo"?16:s,a=t.look==="neo"?12:s,n=20,l=5,{shapeSvg:c,bbox:h}=await _t(e,t,St(t)),u=Math.max(n,(h.width+o*2)*1.25,(t==null?void 0:t.width)??0),d=Math.max(l,h.height+a*2,(t==null?void 0:t.height)??0),f=d/2,{cssStyles:m}=t,y=yt.svg(c),C=ft(t,{});t.look!=="handDrawn"&&(C.roughness=0,C.fillStyle="solid");const x=u,b=d,w=x-f,_=b/4,v=[{x:w,y:0},{x:_,y:0},{x:0,y:b/2},{x:_,y:b},{x:w,y:b},...lr(-w,-b/2,f,50,270,90)],F=Yt(v),A=y.path(F,C),L=c.insert(()=>A,":first-child");return L.attr("class","basic label-container outer-path"),m&&t.look!=="handDrawn"&&L.selectChildren("path").attr("style",m),i&&t.look!=="handDrawn"&&L.selectChildren("path").attr("style",i),L.attr("transform",`translate(${-u/2}, ${-d/2})`),Ct(t,L),t.intersect=function(j){return ht.polygon(t,v,j)},c}p(Qg,"curvedTrapezoid");async function Jg(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:a}=await _t(e,t,St(t)),n=t.padding??20,l=Math.max(o.width+n*2,t.width??0,100),c=Math.min(Math.max(l*.23,16),56),h=c*.27,u=Math.max(o.height+n*2,t.height?t.height-(2*c-h):0),d=Math.min(l*.177,u*.45),f=u+2*c-h,m=-f/2,y=m+2*c-h,C=s.insert("g",":first-child").attr("class","basic label-container"),{cssStyles:x}=t;if(t.look==="handDrawn"){const L=yt.svg(s),j=ft(t,{}),z=L.path(He(-l/2,y,l,u,d),j),W=L.circle(0,m+c,c*2,j);C.insert(()=>W,":first-child"),C.insert(()=>z,":first-child"),x&&C.attr("style",x)}else C.append("rect").attr("x",-l/2).attr("y",y).attr("width",l).attr("height",u).attr("rx",d).attr("ry",d).attr("style",i),C.append("circle").attr("cx",0).attr("cy",m+c).attr("r",c).attr("style",i);Ct(t,C);const b=y+u/2;a.attr("transform",`translate(${-(o.width/2)-(o.x-(o.left??0))}, ${b-o.height/2-(o.y-(o.top??0))})`);const w=m+c,_=Math.asin(Math.min(1,(y-w)/c))*180/Math.PI,A=[...lr(0,-w,c,24,180+_,-_),...lr(-(-l/2+d),-(y+d),d,12,90,0),...lr(-(-l/2+d),-(f/2-d),d,12,360,270),...lr(-(l/2-d),-(f/2-d),d,12,270,180),...lr(-(l/2-d),-(y+d),d,12,180,90)];return t.intersect=function(L){return ht.polygon(t,A,L)},s}p(Jg,"person");var J_=p((e,t,r,i,s,o)=>[`M${e},${t+o}`,`a${s},${o} 0,0,0 ${r},0`,`a${s},${o} 0,0,0 ${-r},0`,`l0,${i}`,`a${s},${o} 0,0,0 ${r},0`,`l0,${-i}`].join(" "),"createCylinderPathD"),tS=p((e,t,r,i,s,o)=>[`M${e},${t+o}`,`M${e+r},${t+o}`,`a${s},${o} 0,0,0 ${-r},0`,`l0,${i}`,`a${s},${o} 0,0,0 ${r},0`,`l0,${-i}`].join(" "),"createOuterCylinderPathD"),eS=p((e,t,r,i,s,o)=>[`M${e-r/2},${-i/2}`,`a${s},${o} 0,0,0 ${r},0`].join(" "),"createInnerCylinderPathD"),Uu=8,Gu=8;async function tm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=t.look==="neo"?24:s,a=t.look==="neo"?24:s,n=t.width??0;if(t.width&&(t.width=t.width-a,t.width<Gu&&(t.width=Gu)),t.height){const b=n/2/(2.5+n/50);t.height=t.height-o-b*3,t.height<Uu&&(t.height=Uu)}const{shapeSvg:l,bbox:c,label:h}=await _t(e,t,St(t)),u=Math.max(t.width??0,c.width)+a,d=u/2,f=d/(2.5+u/50),m=Math.max(t.height??0,c.height)+o+f;let y;const{cssStyles:C}=t;if(t.look==="handDrawn"){const x=yt.svg(l),b=tS(0,0,u,m,d,f),w=eS(0,f,u,m,d,f),_=ft(t,{}),v=x.path(b,_),F=x.path(w,ft(t,{fill:"none"}));y=l.insert(()=>F,":first-child"),y=l.insert(()=>v,":first-child"),y.attr("class","basic label-container"),C&&y.attr("style",C)}else{const x=J_(0,0,u,m,d,f);y=l.insert("path",":first-child").attr("d",x).attr("class","basic label-container outer-path").attr("style",ae(C)).attr("style",i)}return y.attr("label-offset-y",f),y.attr("transform",`translate(${-u/2}, ${-(m/2+f)})`),Ct(t,y),h.attr("transform",`translate(${-(c.width/2)-(c.x-(c.left??0))}, ${-(c.height/2)+(t.padding??0)/1.5-(c.y-(c.top??0))})`),t.intersect=function(x){const b=ht.rect(t,x),w=b.x-(t.x??0);if(d!=0&&(Math.abs(w)<(t.width??0)/2||Math.abs(w)==(t.width??0)/2&&Math.abs(b.y-(t.y??0))>(t.height??0)/2-f)){let _=f*f*(1-w*w/(d*d));_>0&&(_=Math.sqrt(_)),_=f-_,x.y-(t.y??0)>0&&(_=-_),b.y+=_}return b},l}p(tm,"cylinder");async function rs(e,t,r){const{labelStyles:i,nodeStyles:s}=bt(t);t.labelStyle=i;const{shapeSvg:o,bbox:a}=await _t(e,t,St(t)),n=Math.max(a.width+r.labelPaddingX*2,(t==null?void 0:t.width)||0),l=Math.max(a.height+r.labelPaddingY*2,(t==null?void 0:t.height)||0),c=-n/2,h=-l/2;let u,{rx:d,ry:f}=t;const{cssStyles:m}=t;if(r!=null&&r.rx&&r.ry&&(d=r.rx,f=r.ry),t.look==="handDrawn"){const y=yt.svg(o),C=ft(t,{}),x=d||f?y.path(He(c,h,n,l,d||0),C):y.rectangle(c,h,n,l,C);u=o.insert(()=>x,":first-child"),u.attr("class","basic label-container").attr("style",ae(m))}else u=o.insert("rect",":first-child"),u.attr("class","basic label-container").attr("style",s).attr("rx",ae(d)).attr("ry",ae(f)).attr("x",c).attr("y",h).attr("width",n).attr("height",l);return Ct(t,u,t.look==="handDrawn"?void 0:{width:n,height:l}),t.calcIntersect=function(y,C){return ht.rect(y,C)},t.intersect=function(y){return ht.rect(t,y)},o}p(rs,"drawRect");async function em(e,t){const{cssClasses:r,labelPaddingX:i,labelPaddingY:s,padding:o,width:a,height:n}=t,l={rx:0,ry:0,labelPaddingX:i??(o??0)*2,labelPaddingY:s??o??0},c=await rs(e,t,l);if(t.look==="handDrawn"){const f=yt.svg(c),m=ft(t,{}),y=c.select(".basic.label-container > path:nth-child(2)"),C=y.node();if(!C)return c;let x=null;if(C instanceof SVGGraphicsElement)x=C.getBBox();else return c;return c.insert(()=>f.line(x.x,x.y,x.x+x.width,x.y,m),".basic.label-container g.label"),c.insert(()=>f.line(x.x,x.y+x.height,x.x+x.width,x.y+x.height,m),".basic.label-container g.label"),y.remove(),c}const h=c.select(".basic.label-container"),u=(Number(h.attr("width"))||a)??0,d=(Number(h.attr("height"))||n)??0;return u>0&&d>0&&h.attr("stroke-dasharray",`${u} ${d}`),c}p(em,"datastore");async function rm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.look==="neo"?16:t.padding??0,o=t.look==="neo"?16:t.padding??0,{shapeSvg:a,bbox:n,label:l}=await _t(e,t,St(t)),c=n.width+s,h=n.height+o,u=h*.2,d=-c/2,f=-h/2-u/2,{cssStyles:m}=t,y=yt.svg(a),C=ft(t,{});t.look!=="handDrawn"&&(C.roughness=0,C.fillStyle="solid");const x=[{x:d,y:f+u},{x:-d,y:f+u},{x:-d,y:-f},{x:d,y:-f},{x:d,y:f},{x:-d,y:f},{x:-d,y:f+u}],b=y.polygon(x.map(_=>[_.x,_.y]),C),w=a.insert(()=>b,":first-child");return w.attr("class","basic label-container outer-path"),m&&t.look!=="handDrawn"&&w.selectAll("path").attr("style",m),i&&t.look!=="handDrawn"&&w.selectAll("path").attr("style",i),l.attr("transform",`translate(${d+(t.padding??0)/2-(n.x-(n.left??0))}, ${f+u+(t.padding??0)/2-(n.y-(n.top??0))})`),Ct(t,w),t.intersect=function(_){return ht.rect(t,_)},a}p(rm,"dividedRectangle");async function im(e,t){var f,m;const{labelStyles:r,nodeStyles:i}=bt(t),s=t.look==="neo"?12:5;t.labelStyle=r;const o=t.padding??0,a=t.look==="neo"?16:o,{shapeSvg:n,bbox:l}=await _t(e,t,St(t)),c=(t!=null&&t.width?(t==null?void 0:t.width)/2:l.width/2)+(a??0),h=c-s;let u;const{cssStyles:d}=t;if(t.look==="handDrawn"){const y=yt.svg(n),C=ft(t,{roughness:.2,strokeWidth:2.5}),x=ft(t,{roughness:.2,strokeWidth:1.5}),b=y.circle(0,0,c*2,C),w=y.circle(0,0,h*2,x);u=n.insert("g",":first-child"),u.attr("class",ae(t.cssClasses)).attr("style",ae(d)),(f=u.node())==null||f.appendChild(b),(m=u.node())==null||m.appendChild(w)}else{u=n.insert("g",":first-child");const y=u.insert("circle",":first-child"),C=u.insert("circle");u.attr("class","basic label-container").attr("style",i),y.attr("class","outer-circle").attr("style",i).attr("r",c).attr("cx",0).attr("cy",0),C.attr("class","inner-circle").attr("style",i).attr("r",h).attr("cx",0).attr("cy",0)}return Ct(t,u),t.intersect=function(y){return N.info("DoubleCircle intersect",t,c,y),ht.circle(t,c,y)},n}p(im,"doublecircle");function sm(e,t,{config:{themeVariables:r}}){const{labelStyles:i,nodeStyles:s}=bt(t);t.label="",t.labelStyle=i;const o=e.insert("g").attr("class",St(t)).attr("id",t.domId??t.id),a=7,{cssStyles:n}=t,l=yt.svg(o),{nodeBorder:c}=r,h=ft(t,{fillStyle:"solid"});t.look!=="handDrawn"&&(h.roughness=0);const u=l.circle(0,0,a*2,h),d=o.insert(()=>u,":first-child");return d.selectAll("path").attr("style",`fill: ${c} !important;`),n&&n.length>0&&t.look!=="handDrawn"&&d.selectAll("path").attr("style",n),s&&t.look!=="handDrawn"&&d.selectAll("path").attr("style",s),Ct(t,d),t.intersect=function(f){return N.info("filledCircle intersect",t,{radius:a,point:f}),ht.circle(t,a,f)},o}p(sm,"filledCircle");var Xu=10,Vu=10;async function om(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=t.look==="neo"?s*2:s;(t.width||t.height)&&(t.height=(t==null?void 0:t.height)??0,t.height<Xu&&(t.height=Xu),t.width=((t==null?void 0:t.width)??0)-o-o/2,t.width<Vu&&(t.width=Vu));const{shapeSvg:a,bbox:n,label:l}=await _t(e,t,St(t)),c=(t!=null&&t.width?t==null?void 0:t.width:n.width)+(o??0),h=t!=null&&t.height?t==null?void 0:t.height:c+n.height,u=h,d=[{x:0,y:-h},{x:u,y:-h},{x:u/2,y:0}],{cssStyles:f}=t,m=yt.svg(a),y=ft(t,{});t.look!=="handDrawn"&&(y.roughness=0,y.fillStyle="solid");const C=Yt(d),x=m.path(C,y),b=a.insert(()=>x,":first-child").attr("transform",`translate(${-h/2}, ${h/2})`).attr("class","outer-path");return f&&t.look!=="handDrawn"&&b.selectChildren("path").attr("style",f),i&&t.look!=="handDrawn"&&b.selectChildren("path").attr("style",i),t.width=c,t.height=h,Ct(t,b),l.attr("transform",`translate(${-n.width/2-(n.x-(n.left??0))}, ${-h/2+(t.padding??0)/2+(n.y-(n.top??0))})`),t.intersect=function(w){return N.info("Triangle intersect",t,d,w),ht.polygon(t,d,w)},a}p(om,"flippedTriangle");async function am(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:a}=await _t(e,t,St(t)),n=t.padding??12,l=Math.max(o.width+n*2,t.width??0,90),c=o.height+n*2,h=Math.max(Math.min(c*.16,14),8),u=Math.max(c+h,t.height??0),d=u-h,f=Math.max(l*.38,28),m=-u/2,y=[{x:-l/2,y:m},{x:-l/2+f,y:m},{x:-l/2+f,y:m+h},{x:l/2,y:m+h},{x:l/2,y:u/2},{x:-l/2,y:u/2}],C=[`M${y[0].x},${y[0].y}`,...y.slice(1).map(_=>`L${_.x},${_.y}`),"Z"].join(" "),{cssStyles:x}=t;let b;if(t.look==="handDrawn"){const v=yt.svg(s).path(C,ft(t,{}));b=s.insert(()=>v,":first-child").attr("class","basic label-container"),x&&b.attr("style",x)}else b=s.insert("path",":first-child").attr("d",C).attr("class","basic label-container").attr("style",i);t.look==="handDrawn"?Ct(t,b):Ct(t,b,{width:l,height:u});const w=m+h+d/2;return a.attr("transform",`translate(${-(o.width/2)-(o.x-(o.left??0))}, ${w-o.height/2-(o.y-(o.top??0))})`),t.intersect=function(_){return ht.polygon(t,y,_)},s}p(am,"folder");function nm(e,t,{dir:r,config:{state:i,themeVariables:s}}){const{nodeStyles:o}=bt(t);t.label="";const a=e.insert("g").attr("class",St(t)).attr("id",t.domId??t.id),{cssStyles:n}=t;let l=Math.max(70,(t==null?void 0:t.width)??0),c=Math.max(10,(t==null?void 0:t.height)??0);r==="LR"&&(l=Math.max(10,(t==null?void 0:t.width)??0),c=Math.max(70,(t==null?void 0:t.height)??0));const h=-1*l/2,u=-1*c/2,d=yt.svg(a),f=ft(t,{stroke:s.lineColor,fill:s.lineColor});t.look!=="handDrawn"&&(f.roughness=0,f.fillStyle="solid");const m=d.rectangle(h,u,l,c,f),y=a.insert(()=>m,":first-child");n&&t.look!=="handDrawn"&&y.selectAll("path").attr("style",n),o&&t.look!=="handDrawn"&&y.selectAll("path").attr("style",o),Ct(t,y);const C=(i==null?void 0:i.padding)??0;return t.width&&t.height&&(t.width+=C/2||0,t.height+=C/2||0),t.intersect=function(x){return ht.rect(t,x)},a}p(nm,"forkJoin");async function lm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=15,o=10,a=t.look==="neo"?16:t.padding??0,n=t.look==="neo"?12:t.padding??0;(t.width||t.height)&&(t.height=((t==null?void 0:t.height)??0)-n*2,t.height<o&&(t.height=o),t.width=((t==null?void 0:t.width)??0)-a*2,t.width<s&&(t.width=s));const{shapeSvg:l,bbox:c}=await _t(e,t,St(t)),h=(t!=null&&t.width?t==null?void 0:t.width:Math.max(s,c.width))+a*2,u=(t!=null&&t.height?t==null?void 0:t.height:Math.max(o,c.height))+n*2,d=u/2,{cssStyles:f}=t,m=yt.svg(l),y=ft(t,{});t.look!=="handDrawn"&&(y.roughness=0,y.fillStyle="solid");const C=[{x:-h/2,y:-u/2},{x:h/2-d,y:-u/2},...lr(-h/2+d,0,d,50,90,270),{x:h/2-d,y:u/2},{x:-h/2,y:u/2}],x=Yt(C),b=m.path(x,y),w=l.insert(()=>b,":first-child");return w.attr("class","basic label-container outer-path"),f&&t.look!=="handDrawn"&&w.selectChildren("path").attr("style",f),i&&t.look!=="handDrawn"&&w.selectChildren("path").attr("style",i),Ct(t,w),t.intersect=function(_){return N.info("Pill intersect",t,{radius:d,point:_}),ht.polygon(t,C,_)},l}p(lm,"halfRoundedRectangle");var rS=p((e,t,r,i,s)=>[`M${e+s},${t}`,`L${e+r-s},${t}`,`L${e+r},${t-i/2}`,`L${e+r-s},${t-i}`,`L${e+s},${t-i}`,`L${e},${t-i/2}`,"Z"].join(" "),"createHexagonPathD");async function hm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t),s=t.look==="neo"?3.5:4;t.labelStyle=r;const o=t.padding??0,a=70,n=32,l=t.look==="neo"?a:o,c=t.look==="neo"?n:o;if(t.width||t.height){const w=(t.height??0)/s;t.width=((t==null?void 0:t.width)??0)-2*w-c,t.height=(t.height??0)-l}const{shapeSvg:h,bbox:u}=await _t(e,t,St(t)),d=(t!=null&&t.height?t==null?void 0:t.height:u.height)+l,f=d/s,m=(t!=null&&t.width?t==null?void 0:t.width:u.width)+2*f+c,y=[{x:f,y:0},{x:m-f,y:0},{x:m,y:-d/2},{x:m-f,y:-d},{x:f,y:-d},{x:0,y:-d/2}];let C;const{cssStyles:x}=t;if(t.look==="handDrawn"){const b=yt.svg(h),w=ft(t,{}),_=rS(0,0,m,d,f),v=b.path(_,w);C=h.insert(()=>v,":first-child").attr("transform",`translate(${-m/2}, ${d/2})`),x&&C.attr("style",x)}else C=mr(h,m,d,y);return i&&C.attr("style",i),t.width=m,t.height=d,Ct(t,C),t.intersect=function(b){return ht.polygon(t,y,b)},h}p(hm,"hexagon");async function cm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.label="",t.labelStyle=r;const{shapeSvg:s}=await _t(e,t,St(t)),o=Math.max(30,(t==null?void 0:t.width)??0),a=Math.max(30,(t==null?void 0:t.height)??0),{cssStyles:n}=t,l=yt.svg(s),c=ft(t,{});t.look!=="handDrawn"&&(c.roughness=0,c.fillStyle="solid");const h=[{x:0,y:0},{x:o,y:0},{x:0,y:a},{x:o,y:a}],u=Yt(h),d=l.path(u,c),f=s.insert(()=>d,":first-child");return f.attr("class","basic label-container outer-path"),n&&t.look!=="handDrawn"&&f.selectChildren("path").attr("style",n),i&&t.look!=="handDrawn"&&f.selectChildren("path").attr("style",i),f.attr("transform",`translate(${-o/2}, ${-a/2})`),Ct(t,f),t.intersect=function(m){return N.info("Pill intersect",t,{points:h}),ht.polygon(t,h,m)},s}p(cm,"hourglass");async function um(e,t,{config:{themeVariables:r,flowchart:i}}){const{labelStyles:s}=bt(t);t.labelStyle=s;const o=t.assetHeight??48,a=t.assetWidth??48,n=Math.max(o,a),l=i==null?void 0:i.wrappingWidth;t.width=Math.max(n,l??0);const{shapeSvg:c,bbox:h,label:u}=await _t(e,t,"icon-shape default"),d=t.pos==="t",f=n,m=n,{nodeBorder:y}=r,{stylesMap:C}=es(t),x=-m/2,b=-f/2,w=t.label?8:0,_=yt.svg(c),v=ft(t,{stroke:"none",fill:"none"});t.look!=="handDrawn"&&(v.roughness=0,v.fillStyle="solid");const F=_.rectangle(x,b,m,f,v),A=Math.max(m,h.width),L=f+h.height+w,j=_.rectangle(-A/2,-L/2,A,L,{...v,fill:"transparent",stroke:"none"}),z=c.insert(()=>F,":first-child"),W=c.insert(()=>j);if(t.icon){const ot=c.append("g");ot.html(`<g>${await eo(t.icon,{height:n,width:n,fallbackPrefix:""})}</g>`);const Y=ot.node().getBBox(),M=Y.width,$=Y.height,B=Y.x,P=Y.y;ot.attr("transform",`translate(${-M/2-B},${d?h.height/2+w/2-$/2-P:-h.height/2-w/2-$/2-P})`),ot.attr("style",`color: ${C.get("stroke")??y};`)}return u.attr("transform",`translate(${-h.width/2-(h.x-(h.left??0))},${d?-L/2:L/2-h.height})`),z.attr("transform",`translate(0,${d?h.height/2+w/2:-h.height/2-w/2})`),Ct(t,W),t.intersect=function(ot){if(N.info("iconSquare intersect",t,ot),!t.label)return ht.rect(t,ot);const Y=t.x??0,M=t.y??0,$=t.height??0;let B=[];return d?B=[{x:Y-h.width/2,y:M-$/2},{x:Y+h.width/2,y:M-$/2},{x:Y+h.width/2,y:M-$/2+h.height+w},{x:Y+m/2,y:M-$/2+h.height+w},{x:Y+m/2,y:M+$/2},{x:Y-m/2,y:M+$/2},{x:Y-m/2,y:M-$/2+h.height+w},{x:Y-h.width/2,y:M-$/2+h.height+w}]:B=[{x:Y-m/2,y:M-$/2},{x:Y+m/2,y:M-$/2},{x:Y+m/2,y:M-$/2+f},{x:Y+h.width/2,y:M-$/2+f},{x:Y+h.width/2/2,y:M+$/2},{x:Y-h.width/2,y:M+$/2},{x:Y-h.width/2,y:M-$/2+f},{x:Y-m/2,y:M-$/2+f}],ht.polygon(t,B,ot)},c}p(um,"icon");async function dm(e,t,{config:{themeVariables:r,flowchart:i}}){const{labelStyles:s}=bt(t);t.labelStyle=s;const o=t.assetHeight??48,a=t.assetWidth??48,n=Math.max(o,a),l=i==null?void 0:i.wrappingWidth;t.width=Math.max(n,l??0);const{shapeSvg:c,bbox:h,label:u}=await _t(e,t,"icon-shape default"),d=20,f=t.label?8:0,m=t.pos==="t",{nodeBorder:y,mainBkg:C}=r,{stylesMap:x}=es(t),b=yt.svg(c),w=ft(t,{});t.look!=="handDrawn"&&(w.roughness=0,w.fillStyle="solid");const _=x.get("fill");w.stroke=_??C;const v=c.append("g");t.icon&&v.html(`<g>${await eo(t.icon,{height:n,width:n,fallbackPrefix:""})}</g>`);const F=v.node().getBBox(),A=F.width,L=F.height,j=F.x,z=F.y,W=Math.max(A,L)*Math.SQRT2+d*2,ot=b.circle(0,0,W,w),Y=Math.max(W,h.width),M=W+h.height+f,$=b.rectangle(-Y/2,-M/2,Y,M,{...w,fill:"transparent",stroke:"none"}),B=c.insert(()=>ot,":first-child"),P=c.insert(()=>$);return v.attr("transform",`translate(${-A/2-j},${m?h.height/2+f/2-L/2-z:-h.height/2-f/2-L/2-z})`),v.attr("style",`color: ${x.get("stroke")??y};`),u.attr("transform",`translate(${-h.width/2-(h.x-(h.left??0))},${m?-M/2:M/2-h.height})`),B.attr("transform",`translate(0,${m?h.height/2+f/2:-h.height/2-f/2})`),Ct(t,P),t.intersect=function(O){return N.info("iconSquare intersect",t,O),ht.rect(t,O)},c}p(dm,"iconCircle");async function fm(e,t,{config:{themeVariables:r,flowchart:i}}){const{labelStyles:s}=bt(t);t.labelStyle=s;const o=t.assetHeight??48,a=t.assetWidth??48,n=Math.max(o,a),l=i==null?void 0:i.wrappingWidth;t.width=Math.max(n,l??0);const{shapeSvg:c,bbox:h,halfPadding:u,label:d}=await _t(e,t,"icon-shape default"),f=t.pos==="t",m=n+u*2,y=n+u*2,{nodeBorder:C,mainBkg:x}=r,{stylesMap:b}=es(t),w=-y/2,_=-m/2,v=t.label?8:0,F=yt.svg(c),A=ft(t,{});t.look!=="handDrawn"&&(A.roughness=0,A.fillStyle="solid");const L=b.get("fill");A.stroke=L??x;const j=F.path(He(w,_,y,m,5),A),z=Math.max(y,h.width),W=m+h.height+v,ot=F.rectangle(-z/2,-W/2,z,W,{...A,fill:"transparent",stroke:"none"}),Y=c.insert(()=>j,":first-child").attr("class","icon-shape2"),M=c.insert(()=>ot);if(t.icon){const $=c.append("g");$.html(`<g>${await eo(t.icon,{height:n,width:n,fallbackPrefix:""})}</g>`);const B=$.node().getBBox(),P=B.width,O=B.height,H=B.x,K=B.y;$.attr("transform",`translate(${-P/2-H},${f?h.height/2+v/2-O/2-K:-h.height/2-v/2-O/2-K})`),$.attr("style",`color: ${b.get("stroke")??C};`)}return d.attr("transform",`translate(${-h.width/2-(h.x-(h.left??0))},${f?-W/2:W/2-h.height})`),Y.attr("transform",`translate(0,${f?h.height/2+v/2:-h.height/2-v/2})`),Ct(t,M),t.intersect=function($){if(N.info("iconSquare intersect",t,$),!t.label)return ht.rect(t,$);const B=t.x??0,P=t.y??0,O=t.height??0;let H=[];return f?H=[{x:B-h.width/2,y:P-O/2},{x:B+h.width/2,y:P-O/2},{x:B+h.width/2,y:P-O/2+h.height+v},{x:B+y/2,y:P-O/2+h.height+v},{x:B+y/2,y:P+O/2},{x:B-y/2,y:P+O/2},{x:B-y/2,y:P-O/2+h.height+v},{x:B-h.width/2,y:P-O/2+h.height+v}]:H=[{x:B-y/2,y:P-O/2},{x:B+y/2,y:P-O/2},{x:B+y/2,y:P-O/2+m},{x:B+h.width/2,y:P-O/2+m},{x:B+h.width/2/2,y:P+O/2},{x:B-h.width/2,y:P+O/2},{x:B-h.width/2,y:P-O/2+m},{x:B-y/2,y:P-O/2+m}],ht.polygon(t,H,$)},c}p(fm,"iconRounded");async function pm(e,t,{config:{themeVariables:r,flowchart:i}}){const{labelStyles:s}=bt(t);t.labelStyle=s;const o=t.assetHeight??48,a=t.assetWidth??48,n=Math.max(o,a),l=i==null?void 0:i.wrappingWidth;t.width=Math.max(n,l??0);const{shapeSvg:c,bbox:h,halfPadding:u,label:d}=await _t(e,t,"icon-shape default"),f=t.pos==="t",m=n+u*2,y=n+u*2,{nodeBorder:C,mainBkg:x}=r,{stylesMap:b}=es(t),w=-y/2,_=-m/2,v=t.label?8:0,F=yt.svg(c),A=ft(t,{});t.look!=="handDrawn"&&(A.roughness=0,A.fillStyle="solid");const L=b.get("fill");A.stroke=L??x;const j=F.path(He(w,_,y,m,.1),A),z=Math.max(y,h.width),W=m+h.height+v,ot=F.rectangle(-z/2,-W/2,z,W,{...A,fill:"transparent",stroke:"none"}),Y=c.insert(()=>j,":first-child"),M=c.insert(()=>ot);if(t.icon){const $=c.append("g");$.html(`<g>${await eo(t.icon,{height:n,width:n,fallbackPrefix:""})}</g>`);const B=$.node().getBBox(),P=B.width,O=B.height,H=B.x,K=B.y;$.attr("transform",`translate(${-P/2-H},${f?h.height/2+v/2-O/2-K:-h.height/2-v/2-O/2-K})`),$.attr("style",`color: ${b.get("stroke")??C};`)}return d.attr("transform",`translate(${-h.width/2-(h.x-(h.left??0))},${f?-W/2:W/2-h.height})`),Y.attr("transform",`translate(0,${f?h.height/2+v/2:-h.height/2-v/2})`),Ct(t,M),t.intersect=function($){if(N.info("iconSquare intersect",t,$),!t.label)return ht.rect(t,$);const B=t.x??0,P=t.y??0,O=t.height??0;let H=[];return f?H=[{x:B-h.width/2,y:P-O/2},{x:B+h.width/2,y:P-O/2},{x:B+h.width/2,y:P-O/2+h.height+v},{x:B+y/2,y:P-O/2+h.height+v},{x:B+y/2,y:P+O/2},{x:B-y/2,y:P+O/2},{x:B-y/2,y:P-O/2+h.height+v},{x:B-h.width/2,y:P-O/2+h.height+v}]:H=[{x:B-y/2,y:P-O/2},{x:B+y/2,y:P-O/2},{x:B+y/2,y:P-O/2+m},{x:B+h.width/2,y:P-O/2+m},{x:B+h.width/2/2,y:P+O/2},{x:B-h.width/2,y:P+O/2},{x:B-h.width/2,y:P-O/2+m},{x:B-y/2,y:P-O/2+m}],ht.polygon(t,H,$)},c}p(pm,"iconSquare");async function gm(e,t,{config:{flowchart:r}}){const i=new Image;i.src=(t==null?void 0:t.img)??"",await i.decode();const s=Number(i.naturalWidth.toString().replace("px","")),o=Number(i.naturalHeight.toString().replace("px",""));t.imageAspectRatio=s/o;const{labelStyles:a}=bt(t);t.labelStyle=a;const n=r==null?void 0:r.wrappingWidth;t.defaultWidth=r==null?void 0:r.wrappingWidth;const l=Math.max(t.label?n??0:0,(t==null?void 0:t.assetWidth)??s),c=t.constraint==="on"&&t!=null&&t.assetHeight?t.assetHeight*t.imageAspectRatio:l,h=t.constraint==="on"?c/t.imageAspectRatio:(t==null?void 0:t.assetHeight)??o;t.width=Math.max(c,n??0);const{shapeSvg:u,bbox:d,label:f}=await _t(e,t,"image-shape default"),m=t.pos==="t",y=-c/2,C=-h/2,x=t.label?8:0,b=yt.svg(u),w=ft(t,{});t.look!=="handDrawn"&&(w.roughness=0,w.fillStyle="solid");const _=b.rectangle(y,C,c,h,w),v=Math.max(c,d.width),F=h+d.height+x,A=b.rectangle(-v/2,-F/2,v,F,{...w,fill:"none",stroke:"none"}),L=u.insert(()=>_,":first-child"),j=u.insert(()=>A);if(t.img){const z=u.append("image");z.attr("href",t.img),z.attr("width",c),z.attr("height",h),z.attr("preserveAspectRatio","none"),z.attr("transform",`translate(${-c/2},${m?F/2-h:-F/2})`)}return f.attr("transform",`translate(${-d.width/2-(d.x-(d.left??0))},${m?-h/2-d.height/2-x/2:h/2-d.height/2+x/2})`),L.attr("transform",`translate(0,${m?d.height/2+x/2:-d.height/2-x/2})`),Ct(t,j),t.intersect=function(z){if(N.info("iconSquare intersect",t,z),!t.label)return ht.rect(t,z);const W=t.x??0,ot=t.y??0,Y=t.height??0;let M=[];return m?M=[{x:W-d.width/2,y:ot-Y/2},{x:W+d.width/2,y:ot-Y/2},{x:W+d.width/2,y:ot-Y/2+d.height+x},{x:W+c/2,y:ot-Y/2+d.height+x},{x:W+c/2,y:ot+Y/2},{x:W-c/2,y:ot+Y/2},{x:W-c/2,y:ot-Y/2+d.height+x},{x:W-d.width/2,y:ot-Y/2+d.height+x}]:M=[{x:W-c/2,y:ot-Y/2},{x:W+c/2,y:ot-Y/2},{x:W+c/2,y:ot-Y/2+h},{x:W+d.width/2,y:ot-Y/2+h},{x:W+d.width/2/2,y:ot+Y/2},{x:W-d.width/2,y:ot+Y/2},{x:W-d.width/2,y:ot-Y/2+h},{x:W-c/2,y:ot-Y/2+h}],ht.polygon(t,M,z)},u}p(gm,"imageSquare");async function mm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=s,a=t.look==="neo"?s*2:s,{shapeSvg:n,bbox:l}=await _t(e,t,St(t)),c=Math.max(l.height+o*2,t.height??0),h=Math.max(l.width+a*2,(t.width??0)-c),u=[{x:0,y:0},{x:h,y:0},{x:h+3*c/6,y:-c},{x:-3*c/6,y:-c}];let d;const{cssStyles:f}=t;if(t.look==="handDrawn"){const m=yt.svg(n),y=ft(t,{}),C=Yt(u),x=m.path(C,y);d=n.insert(()=>x,":first-child").attr("transform",`translate(${-h/2}, ${c/2})`),f&&d.attr("style",f)}else d=mr(n,h,c,u);return i&&d.attr("style",i),t.width=h,t.height=c,Ct(t,d),t.intersect=function(m){return ht.polygon(t,u,m)},n}p(mm,"inv_trapezoid");async function ym(e,t){const{shapeSvg:r,bbox:i,label:s}=await _t(e,t,"label"),o=r.insert("rect",":first-child");return o.attr("width",.1).attr("height",.1),r.attr("class","label edgeLabel"),s.attr("transform",`translate(${-(i.width/2)-(i.x-(i.left??0))}, ${-(i.height/2)-(i.y-(i.top??0))})`),Ct(t,o),t.intersect=function(l){return ht.rect(t,l)},r}p(ym,"labelRect");async function xm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=s,a=t.look==="neo"?s*2:s,{shapeSvg:n,bbox:l}=await _t(e,t,St(t)),c=Math.max(l.height+o,t.height??0),h=Math.max(l.width+a,(t.width??0)-c),u=[{x:0,y:0},{x:h+3*c/6,y:0},{x:h,y:-c},{x:-(3*c)/6,y:-c}];let d;const{cssStyles:f}=t;if(t.look==="handDrawn"){const m=yt.svg(n),y=ft(t,{}),C=Yt(u),x=m.path(C,y);d=n.insert(()=>x,":first-child").attr("transform",`translate(${-h/2}, ${c/2})`),f&&d.attr("style",f)}else d=mr(n,h,c,u);return i&&d.attr("style",i),t.width=h,t.height=c,Ct(t,d),t.intersect=function(m){return ht.polygon(t,u,m)},n}p(xm,"lean_left");async function Cm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=s,a=t.look==="neo"?s*2:s,{shapeSvg:n,bbox:l}=await _t(e,t,St(t)),c=Math.max(l.height+o,t.height??0),h=Math.max(l.width+a,(t.width??0)-c),u=[{x:-3*c/6,y:0},{x:h,y:0},{x:h+3*c/6,y:-c},{x:0,y:-c}];let d;const{cssStyles:f}=t;if(t.look==="handDrawn"){const m=yt.svg(n),y=ft(t,{}),C=Yt(u),x=m.path(C,y);d=n.insert(()=>x,":first-child").attr("transform",`translate(${-h/2}, ${c/2})`),f&&d.attr("style",f)}else d=mr(n,h,c,u);return i&&d.attr("style",i),t.width=h,t.height=c,Ct(t,d),t.intersect=function(m){return ht.polygon(t,u,m)},n}p(Cm,"lean_right");function bm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.label="",t.labelStyle=r;const s=e.insert("g").attr("class",St(t)).attr("id",t.domId??t.id),{cssStyles:o}=t,a=Math.max(35,(t==null?void 0:t.width)??0),n=Math.max(35,(t==null?void 0:t.height)??0),l=7,c=[{x:a,y:0},{x:0,y:n+l/2},{x:a-2*l,y:n+l/2},{x:0,y:2*n},{x:a,y:n-l/2},{x:2*l,y:n-l/2}],h=yt.svg(s),u=ft(t,{});t.look!=="handDrawn"&&(u.roughness=0,u.fillStyle="solid");const d=Yt(c),f=h.path(d,u),m=s.insert(()=>f,":first-child");return m.attr("class","outer-path"),o&&t.look!=="handDrawn"&&m.selectAll("path").attr("style",o),i&&t.look!=="handDrawn"&&m.selectAll("path").attr("style",i),m.attr("transform",`translate(-${a/2},${-n})`),Ct(t,m),t.intersect=function(y){return N.info("lightningBolt intersect",t,y),ht.polygon(t,c,y)},s}p(bm,"lightningBolt");var iS=p((e,t,r,i,s,o,a)=>[`M${e},${t+o}`,`a${s},${o} 0,0,0 ${r},0`,`a${s},${o} 0,0,0 ${-r},0`,`l0,${i}`,`a${s},${o} 0,0,0 ${r},0`,`l0,${-i}`,`M${e},${t+o+a}`,`a${s},${o} 0,0,0 ${r},0`].join(" "),"createCylinderPathD"),sS=p((e,t,r,i,s,o,a)=>[`M${e},${t+o}`,`M${e+r},${t+o}`,`a${s},${o} 0,0,0 ${-r},0`,`l0,${i}`,`a${s},${o} 0,0,0 ${r},0`,`l0,${-i}`,`M${e},${t+o+a}`,`a${s},${o} 0,0,0 ${r},0`].join(" "),"createOuterCylinderPathD"),oS=p((e,t,r,i,s,o)=>[`M${e-r/2},${-i/2}`,`a${s},${o} 0,0,0 ${r},0`].join(" "),"createInnerCylinderPathD"),Zu=10,Ku=10;async function km(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=t.look==="neo"?16:s,a=t.look==="neo"?24:s;if(t.width||t.height){const x=t.width??0;t.width=(t.width??0)-o,t.width<Ku&&(t.width=Ku);const w=x/2/(2.5+x/50);t.height=(t.height??0)-a-w*3,t.height<Zu&&(t.height=Zu)}const{shapeSvg:n,bbox:l,label:c}=await _t(e,t,St(t)),h=(t!=null&&t.width?t==null?void 0:t.width:l.width)+o*2,u=h/2,d=u/(2.5+h/50),f=(t!=null&&t.height?t==null?void 0:t.height:l.height)+d+a*2,m=f*.1;let y;const{cssStyles:C}=t;if(t.look==="handDrawn"){const x=yt.svg(n),b=sS(0,0,h,f,u,d,m),w=oS(0,d,h,f,u,d),_=ft(t,{}),v=x.path(b,_),F=x.path(w,_);n.insert(()=>F,":first-child").attr("class","line"),y=n.insert(()=>v,":first-child"),y.attr("class","basic label-container"),C&&y.attr("style",C)}else{const x=iS(0,0,h,f,u,d,m);y=n.insert("path",":first-child").attr("d",x).attr("class","basic label-container outer-path").attr("style",ae(C)).attr("style",i)}return y.attr("label-offset-y",d),y.attr("transform",`translate(${-h/2}, ${-(f/2+d)})`),Ct(t,y),c.attr("transform",`translate(${-(l.width/2)-(l.x-(l.left??0))}, ${-(l.height/2)+d-(l.y-(l.top??0))})`),t.intersect=function(x){const b=ht.rect(t,x),w=b.x-(t.x??0);if(u!=0&&(Math.abs(w)<(t.width??0)/2||Math.abs(w)==(t.width??0)/2&&Math.abs(b.y-(t.y??0))>(t.height??0)/2-d)){let _=d*d*(1-w*w/(u*u));_>0&&(_=Math.sqrt(_)),_=d-_,x.y-(t.y??0)>0&&(_=-_),b.y+=_}return b},n}p(km,"linedCylinder");async function wm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=t.look==="neo"?16:s,a=t.look==="neo"?12:s;if(t.width||t.height){const _=t.width;t.width=(_??0)*10/11-o*2,t.width<10&&(t.width=10),t.height=((t==null?void 0:t.height)??0)-a*2,t.height<10&&(t.height=10)}const{shapeSvg:n,bbox:l,label:c}=await _t(e,t,St(t)),h=(t!=null&&t.width?t==null?void 0:t.width:l.width)+(o??0)*2,u=(t!=null&&t.height?t==null?void 0:t.height:l.height)+(a??0)*2,d=t.look==="neo"?u/4:u/8,f=u+d,{cssStyles:m}=t,y=yt.svg(n),C=ft(t,{});t.look!=="handDrawn"&&(C.roughness=0,C.fillStyle="solid");const x=[{x:-h/2-h/2*.1,y:-f/2},{x:-h/2-h/2*.1,y:f/2},...Yr(-h/2-h/2*.1,f/2,h/2+h/2*.1,f/2,d,.8),{x:h/2+h/2*.1,y:-f/2},{x:-h/2-h/2*.1,y:-f/2},{x:-h/2,y:-f/2},{x:-h/2,y:f/2*1.1},{x:-h/2,y:-f/2}],b=y.polygon(x.map(_=>[_.x,_.y]),C),w=n.insert(()=>b,":first-child");return w.attr("class","basic label-container outer-path"),m&&t.look!=="handDrawn"&&w.selectAll("path").attr("style",m),i&&t.look!=="handDrawn"&&w.selectAll("path").attr("style",i),w.attr("transform",`translate(0,${-d/2})`),c.attr("transform",`translate(${-h/2+(t.padding??0)+h/2*.1/2-(l.x-(l.left??0))},${-u/2+(t.padding??0)-d/2-(l.y-(l.top??0))})`),Ct(t,w),t.intersect=function(_){return ht.polygon(t,x,_)},n}p(wm,"linedWaveEdgedRect");async function Tm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=t.look==="neo"?16:s,a=t.look==="neo"?12:s,n=t.look==="neo"?10:5;(t.width||t.height)&&(t.width=Math.max(((t==null?void 0:t.width)??0)-o*2-2*n,10),t.height=Math.max(((t==null?void 0:t.height)??0)-a*2-2*n,10));const{shapeSvg:l,bbox:c,label:h}=await _t(e,t,St(t)),u=(t!=null&&t.width?t==null?void 0:t.width:c.width)+o*2+2*n,d=(t!=null&&t.height?t==null?void 0:t.height:c.height)+a*2+2*n,f=u-2*n,m=d-2*n,y=-f/2,C=-m/2,{cssStyles:x}=t,b=yt.svg(l),w=ft(t,{}),_=[{x:y-n,y:C+n},{x:y-n,y:C+m+n},{x:y+f-n,y:C+m+n},{x:y+f-n,y:C+m},{x:y+f,y:C+m},{x:y+f,y:C+m-n},{x:y+f+n,y:C+m-n},{x:y+f+n,y:C-n},{x:y+n,y:C-n},{x:y+n,y:C},{x:y,y:C},{x:y,y:C+n}],v=[{x:y,y:C+n},{x:y+f-n,y:C+n},{x:y+f-n,y:C+m},{x:y+f,y:C+m},{x:y+f,y:C},{x:y,y:C}];t.look!=="handDrawn"&&(w.roughness=0,w.fillStyle="solid");const F=Yt(_);let A=b.path(F,w);const L=Yt(v);let j=b.path(L,w);t.look!=="handDrawn"&&(A=Tl(A),j=Tl(j));const z=l.insert("g",":first-child");return z.insert(()=>A),z.insert(()=>j),z.attr("class","basic label-container outer-path"),x&&t.look!=="handDrawn"&&z.selectAll("path").attr("style",x),i&&t.look!=="handDrawn"&&z.selectAll("path").attr("style",i),h.attr("transform",`translate(${-(c.width/2)-n-(c.x-(c.left??0))}, ${-(c.height/2)+n-(c.y-(c.top??0))})`),Ct(t,z),t.intersect=function(W){return ht.polygon(t,_,W)},l}p(Tm,"multiRect");async function _m(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:a}=await _t(e,t,St(t)),n=t.padding??0,l=t.look==="neo"?16:n,c=t.look==="neo"?12:n;let h=!0;(t.width||t.height)&&(h=!1,t.width=((t==null?void 0:t.width)??0)-l*2,t.height=((t==null?void 0:t.height)??0)-c*3);const u=Math.max(o.width,(t==null?void 0:t.width)??0)+l*2,d=Math.max(o.height,(t==null?void 0:t.height)??0)+c*3,f=t.look==="neo"?d/4:d/8,m=d+(h?f/2:-f/2),y=-u/2,C=-m/2,x=10,{cssStyles:b}=t,w=Yr(y-x,C+m+x,y+u-x,C+m+x,f,.8),_=w==null?void 0:w[w.length-1],v=[{x:y-x,y:C+x},{x:y-x,y:C+m+x},...w,{x:y+u-x,y:_.y-x},{x:y+u,y:_.y-x},{x:y+u,y:_.y-2*x},{x:y+u+x,y:_.y-2*x},{x:y+u+x,y:C-x},{x:y+x,y:C-x},{x:y+x,y:C},{x:y,y:C},{x:y,y:C+x}],F=[{x:y,y:C+x},{x:y+u-x,y:C+x},{x:y+u-x,y:_.y-x},{x:y+u,y:_.y-x},{x:y+u,y:C},{x:y,y:C}],A=yt.svg(s),L=ft(t,{});t.look!=="handDrawn"&&(L.roughness=0,L.fillStyle="solid");const j=Yt(v),z=A.path(j,L),W=Yt(F),ot=A.path(W,L),Y=s.insert(()=>z,":first-child");return Y.insert(()=>ot),Y.attr("class","basic label-container outer-path"),b&&t.look!=="handDrawn"&&Y.selectAll("path").attr("style",b),i&&t.look!=="handDrawn"&&Y.selectAll("path").attr("style",i),Y.attr("transform",`translate(0,${-f/2})`),a.attr("transform",`translate(${-(o.width/2)-x-(o.x-(o.left??0))}, ${-(o.height/2)+x-f/2-(o.y-(o.top??0))})`),Ct(t,Y),t.intersect=function(M){return ht.polygon(t,v,M)},s}p(_m,"multiWaveEdgedRectangle");async function Sm(e,t,{config:{themeVariables:r}}){const{labelStyles:i,nodeStyles:s}=bt(t);t.labelStyle=i,t.useHtmlLabels||Ce(Jt())||(t.centerLabel=!0);const{shapeSvg:a,bbox:n,label:l}=await _t(e,t,St(t)),c=Math.max(n.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),h=Math.max(n.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),u=-c/2,d=-h/2,{cssStyles:f}=t,m=yt.svg(a),y=ft(t,{fill:r.noteBkgColor,stroke:r.noteBorderColor});t.look!=="handDrawn"&&(y.roughness=0,y.fillStyle="solid");const C=m.rectangle(u,d,c,h,y),x=a.insert(()=>C,":first-child");return x.attr("class","basic label-container outer-path"),l.attr("class","label noteLabel"),f&&t.look!=="handDrawn"&&x.selectAll("path").attr("style",f),s&&t.look!=="handDrawn"&&x.selectAll("path").attr("style",s),l.attr("transform",`translate(${-n.width/2-(n.x-(n.left??0))}, ${-(n.height/2)-(n.y-(n.top??0))})`),Ct(t,x),t.intersect=function(b){return ht.rect(t,b)},a}p(Sm,"note");var aS=p((e,t,r)=>[`M${e+r/2},${t}`,`L${e+r},${t-r/2}`,`L${e+r/2},${t-r}`,`L${e},${t-r/2}`,"Z"].join(" "),"createDecisionBoxPathD");async function vm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await _t(e,t,St(t)),a=o.width+(t.padding??0),n=o.height+(t.padding??0),l=a+n,c=.5,h=[{x:l/2,y:0},{x:l,y:-l/2},{x:l/2,y:-l},{x:0,y:-l/2}];let u;const{cssStyles:d}=t;if(t.look==="handDrawn"){const f=yt.svg(s),m=ft(t,{}),y=aS(0,0,l),C=f.path(y,m);u=s.insert(()=>C,":first-child").attr("transform",`translate(${-l/2+c}, ${l/2})`),d&&u.attr("style",d)}else u=mr(s,l,l,h),u.attr("transform",`translate(${-l/2+c}, ${l/2})`);return i&&u.attr("style",i),Ct(t,u),t.calcIntersect=function(f,m){const y=f.width,C=[{x:y/2,y:0},{x:y,y:-y/2},{x:y/2,y:-y},{x:0,y:-y/2}],x=ht.polygon(f,C,m);return{x:x.x-.5,y:x.y-.5}},t.intersect=function(f){return this.calcIntersect(t,f)},s}p(vm,"question");async function Bm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=t.look==="neo"?21:s??0,a=t.look==="neo"?12:s??0,{shapeSvg:n,bbox:l,label:c}=await _t(e,t,St(t)),h=l.width+(t.look==="neo"?o*2:o),u=Math.max(l.height+(t.look==="neo"?a*2:a),t.height??0),d=u/4,m=-Math.max(h,(t.width??0)-d)/2,y=-u/2,C=y/2,x=[{x:m+C,y},{x:m,y:0},{x:m+C,y:-y},{x:-m,y:-y},{x:-m,y}],{cssStyles:b}=t,w=yt.svg(n),_=ft(t,{});t.look!=="handDrawn"&&(_.roughness=0,_.fillStyle="solid");const v=Yt(x),F=w.path(v,_),A=n.insert(()=>F,":first-child");return A.attr("class","basic label-container outer-path"),b&&t.look!=="handDrawn"&&A.selectAll("path").attr("style",b),i&&t.look!=="handDrawn"&&A.selectAll("path").attr("style",i),A.attr("transform",`translate(${-C/2},0)`),c.attr("transform",`translate(${-C/2-l.width/2-(l.x-(l.left??0))}, ${-(l.height/2)-(l.y-(l.top??0))})`),Ct(t,A),t.intersect=function(L){return ht.polygon(t,x,L)},n}p(Bm,"rect_left_inv_arrow");async function Lm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;let s;t.cssClasses?s="node "+t.cssClasses:s="node default";const o=e.insert("g").attr("class",s).attr("id",t.domId||t.id),a=o.insert("g"),n=o.insert("g").attr("class","label").attr("style",i),l=t.description,c=t.label,h=await Rr(n,c,t.labelStyle,!0,!0);let u={width:0,height:0};if(Ce(Wt())){const L=h.children[0],j=Pt(h);u=L.getBoundingClientRect(),j.attr("width",u.width),j.attr("height",u.height)}N.info("Text 2",l);const d=l||[],f=h.getBBox(),m=await Rr(n,Array.isArray(d)?d.join("<br/>"):d,t.labelStyle,!0,!0),y=m.children[0],C=Pt(m);u=y.getBoundingClientRect(),C.attr("width",u.width),C.attr("height",u.height);const x=(t.padding||0)/2;Pt(m).attr("transform","translate( "+(u.width>f.width?0:(f.width-u.width)/2)+", "+(f.height+x+5)+")"),Pt(h).attr("transform","translate( "+(u.width<f.width?0:-(f.width-u.width)/2)+", 0)"),u=n.node().getBBox(),n.attr("transform","translate("+-u.width/2+", "+(-u.height/2-x+3)+")");const b=u.width+(t.padding||0),w=u.height+(t.padding||0),_=-u.width/2-x,v=-u.height/2-x;let F,A;if(t.look==="handDrawn"){const L=yt.svg(o),j=ft(t,{}),z=L.path(He(_,v,b,w,t.rx||0),j),W=L.line(-u.width/2-x,-u.height/2-x+f.height+x,u.width/2+x,-u.height/2-x+f.height+x,j);A=o.insert(()=>(N.debug("Rough node insert CXC",z),W),":first-child"),F=o.insert(()=>(N.debug("Rough node insert CXC",z),z),":first-child")}else F=a.insert("rect",":first-child"),A=a.insert("line"),F.attr("class","outer title-state").attr("style",i).attr("x",-u.width/2-x).attr("y",-u.height/2-x).attr("width",u.width+(t.padding||0)).attr("height",u.height+(t.padding||0)),A.attr("class","divider").attr("x1",-u.width/2-x).attr("x2",u.width/2+x).attr("y1",-u.height/2-x+f.height+x).attr("y2",-u.height/2-x+f.height+x);return Ct(t,F),t.intersect=function(L){return ht.rect(t,L)},o}p(Lm,"rectWithTitle");async function Fm(e,t,{config:{themeVariables:r}}){const i=(r==null?void 0:r.radius)??5,s={rx:i,ry:i,labelPaddingX:((t==null?void 0:t.padding)??0)*1,labelPaddingY:((t==null?void 0:t.padding)??0)*1};return rs(e,t,s)}p(Fm,"roundedRect");var Gr=8;async function Am(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.look==="neo"?16:t.padding??0,o=t.look==="neo"?12:t.padding??0,{shapeSvg:a,bbox:n,label:l}=await _t(e,t,St(t)),c=((t==null?void 0:t.width)??n.width)+s*2+(t.look==="neo"?Gr:Gr*2),h=((t==null?void 0:t.height)??n.height)+o*2,u=c-Gr,d=h,f=Gr-c/2,m=-h/2,{cssStyles:y}=t,C=yt.svg(a),x=ft(t,{});t.look!=="handDrawn"&&(x.roughness=0,x.fillStyle="solid");const b=[{x:f,y:m},{x:f+u,y:m},{x:f+u,y:m+d},{x:f-Gr,y:m+d},{x:f-Gr,y:m},{x:f,y:m},{x:f,y:m+d}],w=C.polygon(b.map(v=>[v.x,v.y]),x),_=a.insert(()=>w,":first-child");return _.attr("class","basic label-container outer-path").attr("style",ae(y)),i&&t.look!=="handDrawn"&&_.selectAll("path").attr("style",i),y&&t.look!=="handDrawn"&&_.selectAll("path").attr("style",i),l.attr("transform",`translate(${Gr/2-n.width/2-(n.x-(n.left??0))}, ${-(n.height/2)-(n.y-(n.top??0))})`),Ct(t,_),t.intersect=function(v){return ht.rect(t,v)},a}p(Am,"shadedProcess");async function Em(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=t.look==="neo"?16:s,a=t.look==="neo"?12:s;(t.width||t.height)&&(t.width=Math.max(((t==null?void 0:t.width)??0)-o*2,10),t.height=Math.max(((t==null?void 0:t.height)??0)/1.5-a*2,10));const{shapeSvg:n,bbox:l,label:c}=await _t(e,t,St(t)),h=(t!=null&&t.width?t==null?void 0:t.width:l.width)+o*2,u=((t!=null&&t.height?t==null?void 0:t.height:l.height)+a*2)*1.5,d=h,f=u/1.5,m=-d/2,y=-f/2,{cssStyles:C}=t,x=yt.svg(n),b=ft(t,{});t.look!=="handDrawn"&&(b.roughness=0,b.fillStyle="solid");const w=[{x:m,y},{x:m,y:y+f},{x:m+d,y:y+f},{x:m+d,y:y-f/2}],_=Yt(w),v=x.path(_,b),F=n.insert(()=>v,":first-child");return F.attr("class","basic label-container outer-path"),C&&t.look!=="handDrawn"&&F.selectChildren("path").attr("style",C),i&&t.look!=="handDrawn"&&F.selectChildren("path").attr("style",i),F.attr("transform",`translate(0, ${f/4})`),c.attr("transform",`translate(${-d/2+(t.padding??0)-(l.x-(l.left??0))}, ${-f/4+(t.padding??0)-(l.y-(l.top??0))})`),Ct(t,F),t.intersect=function(A){return ht.polygon(t,w,A)},n}p(Em,"slopedRect");async function Mm(e,t){const r=t.padding??0,i=t.look==="neo"?16:r*2,s=t.look==="neo"?12:r,o={rx:0,ry:0,labelPaddingX:t.labelPaddingX??i,labelPaddingY:s};return rs(e,t,o)}p(Mm,"squareRect");async function $m(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=t.look==="neo"?20:s,a=t.look==="neo"?12:s,{shapeSvg:n,bbox:l}=await _t(e,t,St(t)),c=l.height+(t.look==="neo"?a*2:a),h=l.width+c/4+(t.look==="neo"?o*2:o),u=c/2,{cssStyles:d}=t,f=yt.svg(n),m=ft(t,{});t.look!=="handDrawn"&&(m.roughness=0,m.fillStyle="solid");const y=[{x:-h/2+u,y:-c/2},{x:h/2-u,y:-c/2},...lr(-h/2+u,0,u,50,90,270),{x:h/2-u,y:c/2},...lr(h/2-u,0,u,50,270,450)],C=Yt(y),x=f.path(C,m),b=n.insert(()=>x,":first-child");return b.attr("class","basic label-container outer-path"),d&&t.look!=="handDrawn"&&b.selectChildren("path").attr("style",d),i&&t.look!=="handDrawn"&&b.selectChildren("path").attr("style",i),Ct(t,b),t.intersect=function(w){return ht.polygon(t,y,w)},n}p($m,"stadium");async function Om(e,t){const r={rx:t.look==="neo"?3:5,ry:t.look==="neo"?3:5};return rs(e,t,r)}p(Om,"state");function Dm(e,t,{config:{themeVariables:r}}){var b,w;const{labelStyles:i,nodeStyles:s}=bt(t);t.labelStyle=i;const{cssStyles:o}=t,{lineColor:a,stateBorder:n,nodeBorder:l,nodeShadow:c}=r;(t.width||t.height)&&((t.width??0)<14&&(t.width=14),(t.height??0)<14&&(t.height=14)),t.width||(t.width=14),t.height||(t.height=14);const h=e.insert("g").attr("class","node default").attr("id",t.domId??t.id),u=yt.svg(h),d=ft(t,{});t.look!=="handDrawn"&&(d.roughness=0,d.fillStyle="solid");const f=u.circle(0,0,t.width,{...d,stroke:a,strokeWidth:2}),m=n??l,y=(t.width??0)*5/14,C=u.circle(0,0,y,{...d,fill:m,stroke:m,strokeWidth:2,fillStyle:"solid"}),x=h.insert(()=>f,":first-child");if(x.insert(()=>C),t.look!=="handDrawn"&&x.attr("class","outer-path"),o&&x.selectAll("path").attr("style",o),s&&x.selectAll("path").attr("style",s),t.width<25&&c&&t.look!=="handDrawn"){const _=((w=(b=e.node())==null?void 0:b.ownerSVGElement)==null?void 0:w.id)??"",v=_?`${_}-drop-shadow-small`:"drop-shadow-small";x.attr("style",`filter:url(#${v})`)}return Ct(t,x),t.intersect=function(_){return ht.circle(t,(t.width??0)/2,_)},h}p(Dm,"stateEnd");function Im(e,t,{config:{themeVariables:r}}){var n,l;const{lineColor:i,nodeShadow:s}=r;(t.width||t.height)&&((t.width??0)<14&&(t.width=14),(t.height??0)<14&&(t.height=14)),t.width||(t.width=14),t.height||(t.height=14);const o=e.insert("g").attr("class","node default").attr("id",t.domId||t.id);let a;if(t.look==="handDrawn"){const h=yt.svg(o).circle(0,0,t.width,aw(i));a=o.insert(()=>h),a.attr("class","state-start").attr("r",(t.width??7)/2).attr("width",t.width??14).attr("height",t.height??14)}else a=o.insert("circle",":first-child"),a.attr("class","state-start").attr("r",(t.width??7)/2).attr("width",t.width??14).attr("height",t.height??14);if(t.width<25&&s&&t.look!=="handDrawn"){const c=((l=(n=e.node())==null?void 0:n.ownerSVGElement)==null?void 0:l.id)??"",h=c?`${c}-drop-shadow-small`:"drop-shadow-small";a.attr("style",`filter:url(#${h})`)}return Ct(t,a),t.intersect=function(c){return ht.circle(t,(t.width??7)/2,c)},o}p(Im,"stateStart");var wi=8;async function Pm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=(t==null?void 0:t.padding)??8,o=t.look==="neo"?28:s,a=t.look==="neo"?12:s,{shapeSvg:n,bbox:l}=await _t(e,t,St(t)),c=Math.max(l.width+2*wi+o,t.width??0),h=Math.max(l.height+a,t.height??0),u=c-2*wi,d=h,f=-c/2,m=-h/2,y=[{x:0,y:0},{x:u,y:0},{x:u,y:-d},{x:0,y:-d},{x:0,y:0},{x:-8,y:0},{x:u+8,y:0},{x:u+8,y:-d},{x:-8,y:-d},{x:-8,y:0}];if(t.look==="handDrawn"){const C=yt.svg(n),x=ft(t,{}),b=C.rectangle(f,m,u+16,d,x),w=C.line(f+wi,m,f+wi,m+d,x),_=C.line(f+wi+u,m,f+wi+u,m+d,x);n.insert(()=>w,":first-child"),n.insert(()=>_,":first-child");const v=n.insert(()=>b,":first-child"),{cssStyles:F}=t;v.attr("class","basic label-container").attr("style",ae(F)),Ct(t,v)}else{const C=mr(n,u,d,y);i&&C.attr("style",i),Ct(t,C)}return t.intersect=function(C){return ht.polygon(t,y,C)},n}p(Pm,"subroutine");var yn=.2;async function Rm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=t.look==="neo"?16:s,a=t.look==="neo"?12:s;(t.width||t.height)&&(t.height=Math.max(((t==null?void 0:t.height)??0)-a*2,10),t.width=Math.max(((t==null?void 0:t.width)??0)-o*2-yn*(t.height+a*2),10));const{shapeSvg:n,bbox:l}=await _t(e,t,St(t)),c=(t!=null&&t.height?t==null?void 0:t.height:l.height)+a*2,h=yn*c,u=yn*c,f=(t!=null&&t.width?t==null?void 0:t.width:l.width)+o*2+h-h,m=c,y=-f/2,C=-m/2,{cssStyles:x}=t,b=yt.svg(n),w=ft(t,{}),_=[{x:y-h/2,y:C},{x:y+f+h/2,y:C},{x:y+f+h/2,y:C+m},{x:y-h/2,y:C+m}],v=[{x:y+f-h/2,y:C+m},{x:y+f+h/2,y:C+m},{x:y+f+h/2,y:C+m-u}];t.look!=="handDrawn"&&(w.roughness=0,w.fillStyle="solid");const F=Yt(_),A=b.path(F,w),L=Yt(v),j=b.path(L,{...w,fillStyle:"solid"}),z=n.insert(()=>j,":first-child");return z.insert(()=>A,":first-child"),z.attr("class","basic label-container outer-path"),x&&t.look!=="handDrawn"&&z.selectAll("path").attr("style",x),i&&t.look!=="handDrawn"&&z.selectAll("path").attr("style",i),Ct(t,z),t.intersect=function(W){return ht.polygon(t,_,W)},n}p(Rm,"taggedRect");async function Nm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:a}=await _t(e,t,St(t)),n=Math.max(o.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),l=Math.max(o.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),c=l/8,h=.2*n,u=.2*l,d=l+c,{cssStyles:f}=t,m=yt.svg(s),y=ft(t,{});t.look!=="handDrawn"&&(y.roughness=0,y.fillStyle="solid");const C=[{x:-n/2-n/2*.1,y:d/2},...Yr(-n/2-n/2*.1,d/2,n/2+n/2*.1,d/2,c,.8),{x:n/2+n/2*.1,y:-d/2},{x:-n/2-n/2*.1,y:-d/2}],x=-n/2+n/2*.1,b=-d/2-u*.4,w=[{x:x+n-h,y:(b+l)*1.3},{x:x+n,y:b+l-u},{x:x+n,y:(b+l)*.9},...Yr(x+n,(b+l)*1.25,x+n-h,(b+l)*1.3,-l*.02,.5)],_=Yt(C),v=m.path(_,y),F=Yt(w),A=m.path(F,{...y,fillStyle:"solid"}),L=s.insert(()=>A,":first-child");return L.insert(()=>v,":first-child"),L.attr("class","basic label-container outer-path"),f&&t.look!=="handDrawn"&&L.selectAll("path").attr("style",f),i&&t.look!=="handDrawn"&&L.selectAll("path").attr("style",i),L.attr("transform",`translate(0,${-c/2})`),a.attr("transform",`translate(${-n/2+(t.padding??0)-(o.x-(o.left??0))},${-l/2+(t.padding??0)-c/2-(o.y-(o.top??0))})`),Ct(t,L),t.intersect=function(j){return ht.polygon(t,C,j)},s}p(Nm,"taggedWaveEdgedRectangle");async function qm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await _t(e,t,St(t)),a=Math.max(o.width+(t.padding??0),(t==null?void 0:t.width)||0),n=Math.max(o.height+(t.padding??0),(t==null?void 0:t.height)||0),l=-a/2,c=-n/2,h=s.insert("rect",":first-child");return h.attr("class","text").attr("style",i).attr("rx",0).attr("ry",0).attr("x",l).attr("y",c).attr("width",a).attr("height",n),Ct(t,h),t.intersect=function(u){return ht.rect(t,u)},s}p(qm,"text");var nS=p((e,t,r,i,s,o)=>`M${e},${t}
|
|
202
|
+
a${s},${o} 0,0,1 0,${-i}
|
|
203
|
+
l${r},0
|
|
204
|
+
a${s},${o} 0,0,1 0,${i}
|
|
205
|
+
M${r},${-i}
|
|
206
|
+
a${s},${o} 0,0,0 0,${i}
|
|
207
|
+
l${-r},0`,"createCylinderPathD"),lS=p((e,t,r,i,s,o)=>[`M${e},${t}`,`M${e+r},${t}`,`a${s},${o} 0,0,0 0,${-i}`,`l${-r},0`,`a${s},${o} 0,0,0 0,${i}`,`l${r},0`].join(" "),"createOuterCylinderPathD"),hS=p((e,t,r,i,s,o)=>[`M${e+r/2},${-i/2}`,`a${s},${o} 0,0,0 0,${i}`].join(" "),"createInnerCylinderPathD"),Qu=5,Ju=10;async function zm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=t.look==="neo"?12:s/2,a=t.height??0;if(t.height&&(t.height=t.height-o,t.height<Qu&&(t.height=Qu)),t.width){const x=a/2/(2.5+a/50);t.width=t.width-o-x*3,t.width<Ju&&(t.width=Ju)}const{shapeSvg:n,bbox:l,label:c}=await _t(e,t,St(t)),h=Math.max(t.height??0,l.height)+o,u=h/2,d=u/(2.5+h/50),f=Math.max(t.width??0,l.width)+d+o,{cssStyles:m}=t;let y;if(t.look==="handDrawn"){const C=yt.svg(n),x=lS(0,0,f,h,d,u),b=hS(0,0,f,h,d,u),w=C.path(x,ft(t,{})),_=C.path(b,ft(t,{fill:"none"}));y=n.insert(()=>_,":first-child"),y=n.insert(()=>w,":first-child"),y.attr("class","basic label-container"),m&&y.attr("style",m)}else{const C=nS(0,0,f,h,d,u);y=n.insert("path",":first-child").attr("d",C).attr("class","basic label-container").attr("style",ae(m)).attr("style",i),y.attr("class","basic label-container outer-path"),m&&y.selectAll("path").attr("style",m),i&&y.selectAll("path").attr("style",i)}return y.attr("label-offset-x",d),y.attr("transform",`translate(${-f/2}, ${h/2} )`),c.attr("transform",`translate(${-(l.width/2)-d-(l.x-(l.left??0))}, ${-(l.height/2)-(l.y-(l.top??0))})`),Ct(t,y),t.intersect=function(C){const x=ht.rect(t,C),b=x.y-(t.y??0);if(u!=0&&(Math.abs(b)<(t.height??0)/2||Math.abs(b)==(t.height??0)/2&&Math.abs(x.x-(t.x??0))>(t.width??0)/2-d)){let w=d*d*(1-b*b/(u*u));w!=0&&(w=Math.sqrt(Math.abs(w))),w=d-w,C.x-(t.x??0)>0&&(w=-w),x.x+=w}return x},n}p(zm,"tiltedCylinder");async function Wm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=(t.look==="neo",s),a=t.look==="neo"?s*2:s,{shapeSvg:n,bbox:l}=await _t(e,t,St(t)),c=Math.max(l.height+o,t.height??0),h=Math.max(l.width+a,(t.width??0)-c),u=[{x:-3*c/6,y:0},{x:h+3*c/6,y:0},{x:h,y:-c},{x:0,y:-c}];let d;const{cssStyles:f}=t;if(t.look==="handDrawn"){const m=yt.svg(n),y=ft(t,{}),C=Yt(u),x=m.path(C,y);d=n.insert(()=>x,":first-child").attr("transform",`translate(${-h/2}, ${c/2})`),f&&d.attr("style",f)}else d=mr(n,h,c,u);return i&&d.attr("style",i),t.width=h,t.height=c,Ct(t,d),t.intersect=function(m){return ht.polygon(t,u,m)},n}p(Wm,"trapezoid");async function Hm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=t.look==="neo"?16:s,a=t.look==="neo"?12:s,n=15,l=5;(t.width||t.height)&&(t.height=(t.height??0)-a*2,t.height<l&&(t.height=l),t.width=(t.width??0)-o*2,t.width<n&&(t.width=n));const{shapeSvg:c,bbox:h}=await _t(e,t,St(t)),u=(t!=null&&t.width?t==null?void 0:t.width:h.width)+o*2,d=(t!=null&&t.height?t==null?void 0:t.height:h.height)+a*2,{cssStyles:f}=t,m=yt.svg(c),y=ft(t,{});t.look!=="handDrawn"&&(y.roughness=0,y.fillStyle="solid");const C=[{x:-u/2*.8,y:-d/2},{x:u/2*.8,y:-d/2},{x:u/2,y:-d/2*.6},{x:u/2,y:d/2},{x:-u/2,y:d/2},{x:-u/2,y:-d/2*.6}],x=Yt(C),b=m.path(x,y),w=c.insert(()=>b,":first-child");return w.attr("class","basic label-container outer-path"),f&&t.look!=="handDrawn"&&w.selectChildren("path").attr("style",f),i&&t.look!=="handDrawn"&&w.selectChildren("path").attr("style",i),Ct(t,w),t.intersect=function(_){return ht.polygon(t,C,_)},c}p(Hm,"trapezoidalPentagon");var td=10,ed=10;async function Ym(e,t){var _;const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=t.look==="neo"?s*2:s;(t.width||t.height)&&(t.width=(((t==null?void 0:t.width)??0)-o)/2,t.width<ed&&(t.width=ed),t.height=(t==null?void 0:t.height)??0,t.height<td&&(t.height=td));const{shapeSvg:a,bbox:n,label:l}=await _t(e,t,St(t)),c=pr((_=Wt().flowchart)==null?void 0:_.htmlLabels),h=(t!=null&&t.width?t==null?void 0:t.width:n.width)+o,u=t!=null&&t.height?t==null?void 0:t.height:h+n.height,d=u,f=[{x:0,y:0},{x:d,y:0},{x:d/2,y:-u}],{cssStyles:m}=t,y=yt.svg(a),C=ft(t,{});t.look!=="handDrawn"&&(C.roughness=0,C.fillStyle="solid");const x=Yt(f),b=y.path(x,C),w=a.insert(()=>b,":first-child").attr("transform",`translate(${-u/2}, ${u/2})`).attr("class","outer-path");return m&&t.look!=="handDrawn"&&w.selectChildren("path").attr("style",m),i&&t.look!=="handDrawn"&&w.selectChildren("path").attr("style",i),t.width=h,t.height=u,Ct(t,w),l.attr("transform",`translate(${-n.width/2-(n.x-(n.left??0))}, ${u/2-(n.height+(t.padding??0)/(c?2:1)-(n.y-(n.top??0)))})`),t.intersect=function(v){return N.info("Triangle intersect",t,f,v),ht.polygon(t,f,v)},a}p(Ym,"triangle");async function jm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=t.look==="neo"?16:s,a=t.look==="neo"?12:s;let n=!0;(t.width||t.height)&&(n=!1,t.width=((t==null?void 0:t.width)??0)-o*2,t.width<10&&(t.width=10),t.height=((t==null?void 0:t.height)??0)-a*2,t.height<10&&(t.height=10));const{shapeSvg:l,bbox:c,label:h}=await _t(e,t,St(t)),u=(t!=null&&t.width?t==null?void 0:t.width:c.width)+(o??0)*2,d=(t!=null&&t.height?t==null?void 0:t.height:c.height)+(a??0)*2,f=t.look==="neo"?d/4:d/8,m=d+(n?f:-f),{cssStyles:y}=t,x=14-u,b=x>0?x/2:0,w=yt.svg(l),_=ft(t,{});t.look!=="handDrawn"&&(_.roughness=0,_.fillStyle="solid");const v=[{x:-u/2-b,y:m/2},...Yr(-u/2-b,m/2,u/2+b,m/2,f,.8),{x:u/2+b,y:-m/2},{x:-u/2-b,y:-m/2}],F=Yt(v),A=w.path(F,_),L=l.insert(()=>A,":first-child");return L.attr("class","basic label-container outer-path"),y&&t.look!=="handDrawn"&&L.selectAll("path").attr("style",y),i&&t.look!=="handDrawn"&&L.selectAll("path").attr("style",i),L.attr("transform",`translate(0,${-f/2})`),h.attr("transform",`translate(${-u/2+(t.padding??0)-(c.x-(c.left??0))},${-d/2+(t.padding??0)-f-(c.y-(c.top??0))})`),Ct(t,L),t.intersect=function(j){return ht.polygon(t,v,j)},l}p(jm,"waveEdgedRectangle");async function Um(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.padding??0,o=t.look==="neo"?16:s,a=t.look==="neo"?20:s;if(t.width||t.height){t.width=(t==null?void 0:t.width)??0,t.width<20&&(t.width=20),t.height=(t==null?void 0:t.height)??0,t.height<10&&(t.height=10);const _=Math.min(t.height*.2,t.height/4);t.height=Math.ceil(t.height-a-_*(20/9)),t.width=t.width-o*2}const{shapeSvg:n,bbox:l}=await _t(e,t,St(t)),c=(t!=null&&t.width?t==null?void 0:t.width:l.width)+o*2,h=(t!=null&&t.height?t==null?void 0:t.height:l.height)+a,u=h/8,d=h+u*2,{cssStyles:f}=t,m=yt.svg(n),y=ft(t,{});t.look!=="handDrawn"&&(y.roughness=0,y.fillStyle="solid");const C=[{x:-c/2,y:d/2},...Yr(-c/2,d/2,c/2,d/2,u,1),{x:c/2,y:-d/2},...Yr(c/2,-d/2,-c/2,-d/2,u,-1)],x=Yt(C),b=m.path(x,y),w=n.insert(()=>b,":first-child");return w.attr("class","basic label-container"),f&&t.look!=="handDrawn"&&w.selectAll("path").attr("style",f),i&&t.look!=="handDrawn"&&w.selectAll("path").attr("style",i),Ct(t,w),t.intersect=function(_){return ht.polygon(t,C,_)},n}p(Um,"waveRectangle");var ee=10;async function Gm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t.look==="neo"?16:t.padding??0,o=t.look==="neo"?12:t.padding??0;(t.width||t.height)&&(t.width=Math.max(((t==null?void 0:t.width)??0)-s*2-ee,10),t.height=Math.max(((t==null?void 0:t.height)??0)-o*2-ee,10));const{shapeSvg:a,bbox:n,label:l}=await _t(e,t,St(t)),c=(t!=null&&t.width?t==null?void 0:t.width:n.width)+s*2+ee,h=(t!=null&&t.height?t==null?void 0:t.height:n.height)+o*2+ee,u=c-ee,d=h-ee,f=-u/2,m=-d/2,{cssStyles:y}=t,C=yt.svg(a),x=ft(t,{}),b=[{x:f-ee,y:m-ee},{x:f-ee,y:m+d},{x:f+u,y:m+d},{x:f+u,y:m-ee}],w=`M${f-ee},${m-ee} L${f+u},${m-ee} L${f+u},${m+d} L${f-ee},${m+d} L${f-ee},${m-ee}
|
|
208
|
+
M${f-ee},${m} L${f+u},${m}
|
|
209
|
+
M${f},${m-ee} L${f},${m+d}`;t.look!=="handDrawn"&&(x.roughness=0,x.fillStyle="solid");const _=C.path(w,x),v=a.insert(()=>_,":first-child");return v.attr("transform",`translate(${ee/2}, ${ee/2})`),v.attr("class","basic label-container outer-path"),y&&t.look!=="handDrawn"&&v.selectAll("path").attr("style",y),i&&t.look!=="handDrawn"&&v.selectAll("path").attr("style",i),l.attr("transform",`translate(${-(n.width/2)+ee/2-(n.x-(n.left??0))}, ${-(n.height/2)+ee/2-(n.y-(n.top??0))})`),Ct(t,v),t.intersect=function(F){return ht.polygon(t,b,F)},a}p(Gm,"windowPane");var rd=new Set(["redux-color","redux-dark-color"]),cS=new Set(["redux","redux-dark","redux-color","redux-dark-color"]);async function Fh(e,t){var Et,At,qt,Lt;const r=t;r.alias&&(t.label=r.alias);const{theme:i,themeVariables:s}=Jt(),{rowEven:o,rowOdd:a,nodeBorder:n,borderColorArray:l}=s;if(t.look==="handDrawn"){const{themeVariables:lt}=Jt(),{background:gt}=lt,Mt={...t,id:t.id+"-background",domId:(t.domId||t.id)+"-background",look:"default",cssStyles:["stroke: none",`fill: ${gt}`]};await Fh(e,Mt)}const c=Jt();t.useHtmlLabels=c.htmlLabels;let h=((Et=c.er)==null?void 0:Et.diagramPadding)??10,u=((At=c.er)==null?void 0:At.entityPadding)??6;const{cssStyles:d}=t,{labelStyles:f,nodeStyles:m}=bt(t);if(r.attributes.length===0&&t.label){const lt={rx:0,ry:0,labelPaddingX:h,labelPaddingY:h*1.5};Br(t.label,c)+lt.labelPaddingX*2<c.er.minEntityWidth&&(t.width=c.er.minEntityWidth);const gt=await rs(e,t,lt);if(i!=null&&rd.has(i)){const Mt=r.colorIndex??0;gt.attr("data-color-id",`color-${Mt%l.length}`)}if(!pr(c.htmlLabels)){const Mt=gt.select("text"),Nt=(qt=Mt.node())==null?void 0:qt.getBBox();Mt.attr("transform",`translate(${-Nt.width/2}, 0)`)}return gt}c.htmlLabels||(h*=1.25,u*=1.25);let y=St(t);y||(y="node default");const C=e.insert("g").attr("class",y).attr("id",t.domId||t.id),x=await _i(C,t.label??"",c,0,0,["name"],f);x.height+=u;let b=0;const w=[],_=[];let v=0,F=0,A=0,L=0,j=!0,z=!0;for(const lt of r.attributes){const gt=await _i(C,lt.type,c,0,b,["attribute-type"],f);v=Math.max(v,gt.width+h);const Mt=await _i(C,lt.name,c,0,b,["attribute-name"],f);F=Math.max(F,Mt.width+h);const Nt=await _i(C,lt.keys.join(),c,0,b,["attribute-keys"],f);A=Math.max(A,Nt.width+h);const Ft=await _i(C,lt.comment,c,0,b,["attribute-comment"],f);L=Math.max(L,Ft.width+h);const q=Math.max(gt.height,Mt.height,Nt.height,Ft.height)+u;_.push({yOffset:b,rowHeight:q}),b+=q}let W=4;A<=h&&(j=!1,A=0,W--),L<=h&&(z=!1,L=0,W--);const ot=C.node().getBBox();if(x.width+h*2-(v+F+A+L)>0){const lt=x.width+h*2-(v+F+A+L);v+=lt/W,F+=lt/W,A>0&&(A+=lt/W),L>0&&(L+=lt/W)}const Y=v+F+A+L,M=yt.svg(C),$=ft(t,{});t.look!=="handDrawn"&&($.roughness=0,$.fillStyle="solid");let B=0;_.length>0&&(B=_.reduce((lt,gt)=>lt+((gt==null?void 0:gt.rowHeight)??0),0));const P=Math.max(ot.width+h*2,(t==null?void 0:t.width)||0,Y),O=Math.max((B??0)+x.height,(t==null?void 0:t.height)||0),H=-P/2,K=-O/2;if(C.selectAll("g:not(:first-child)").each((lt,gt,Mt)=>{const Nt=Pt(Mt[gt]),Ft=Nt.attr("transform");let q=0,mt=0;if(Ft){const re=RegExp(/translate\(([^,]+),([^)]+)\)/).exec(Ft);re&&(q=parseFloat(re[1]),mt=parseFloat(re[2]),Nt.attr("class").includes("attribute-name")?q+=v:Nt.attr("class").includes("attribute-keys")?q+=v+F:Nt.attr("class").includes("attribute-comment")&&(q+=v+F+A))}Nt.attr("transform",`translate(${H+h/2+q}, ${mt+K+x.height+u/2})`)}),C.select(".name").attr("transform","translate("+-x.width/2+", "+(K+u/2)+")"),i!=null&&rd.has(i)){const lt=r.colorIndex??0;C.attr("data-color-id",`color-${lt%l.length}`)}const ut=M.rectangle(H,K,P,O,$),pt=C.insert(()=>ut,":first-child").attr("class","outer-path").attr("style",d.join(""));w.push(0);for(const[lt,gt]of _.entries()){const Nt=(lt+1)%2===0&>.yOffset!==0,Ft=M.rectangle(H,x.height+K+(gt==null?void 0:gt.yOffset),P,gt==null?void 0:gt.rowHeight,{...$,fill:Nt?o:a,stroke:n});C.insert(()=>Ft,"g.label").attr("style",d.join("")).attr("class",`row-rect-${Nt?"even":"odd"}`)}const kt=1e-4;let nt=Si(H,x.height+K,P+H,x.height+K,kt),wt=M.polygon(nt.map(lt=>[lt.x,lt.y]),$);if(C.insert(()=>wt).attr("class","divider"),nt=Si(v+H,x.height+K,v+H,O+K,kt),wt=M.polygon(nt.map(lt=>[lt.x,lt.y]),$),C.insert(()=>wt).attr("class","divider"),j){const lt=v+F+H;nt=Si(lt,x.height+K,lt,O+K,kt),wt=M.polygon(nt.map(gt=>[gt.x,gt.y]),$),C.insert(()=>wt).attr("class","divider")}if(z){const lt=v+F+A+H;nt=Si(lt,x.height+K,lt,O+K,kt),wt=M.polygon(nt.map(gt=>[gt.x,gt.y]),$),C.insert(()=>wt).attr("class","divider")}for(const lt of w){const gt=x.height+K+lt;nt=Si(H,gt,P+H,gt,kt),wt=M.polygon(nt.map(Mt=>[Mt.x,Mt.y]),$),C.insert(()=>wt).attr("class","divider")}if(Ct(t,pt),m&&t.look!=="handDrawn")if(i!=null&&cS.has(i))C.selectAll("path").attr("style",m);else{const lt=m.split(";"),gt=(Lt=lt==null?void 0:lt.filter(Mt=>Mt.includes("stroke")))==null?void 0:Lt.map(Mt=>`${Mt}`).join("; ");C.selectAll("path").attr("style",gt??""),C.selectAll(".row-rect-even path").attr("style",m)}return t.intersect=function(lt){return ht.rect(t,lt)},C}p(Fh,"erBox");async function _i(e,t,r,i=0,s=0,o=[],a=""){const n=e.insert("g").attr("class",`label ${o.join(" ")}`).attr("transform",`translate(${i}, ${s})`).attr("style",a);t!==Wc(t)&&(t=Wc(t),t=t.replaceAll("<","<").replaceAll(">",">"));const l=n.node().appendChild(await Je(n,t,{width:Br(t,r)+100,style:a,useHtmlLabels:r.htmlLabels},r));if(t.includes("<")||t.includes(">")){let h=l.children[0];for(h.textContent=h.textContent.replaceAll("<","<").replaceAll(">",">");h.childNodes[0];)h=h.childNodes[0],h.textContent=h.textContent.replaceAll("<","<").replaceAll(">",">")}let c=l.getBBox();if(pr(r.htmlLabels)){const h=l.children[0];h.style.textAlign="start";const u=Pt(l);c=h.getBoundingClientRect(),u.attr("width",c.width),u.attr("height",c.height)}return c}p(_i,"addText");function Si(e,t,r,i,s){return e===r?[{x:e-s/2,y:t},{x:e+s/2,y:t},{x:r+s/2,y:i},{x:r-s/2,y:i}]:[{x:e,y:t-s/2},{x:e,y:t+s/2},{x:r,y:i+s/2},{x:r,y:i-s/2}]}p(Si,"lineToPolygon");async function Xm(e,t,r,i,s=r.class.padding??12){const o=i?0:3,a=e.insert("g").attr("class",St(t)).attr("id",t.domId||t.id);let n=null,l=null,c=null,h=null,u=0,d=0,f=0;if(n=a.insert("g").attr("class","annotation-group text"),t.annotations.length>0){const b=t.annotations[0];await Bs(n,{text:`«${b}»`},0),u=n.node().getBBox().height}l=a.insert("g").attr("class","label-group text"),await Bs(l,t,0,["font-weight: bolder"]);const m=l.node().getBBox();d=m.height,c=a.insert("g").attr("class","members-group text");let y=0;for(const b of t.members){const w=await Bs(c,b,y,[b.parseClassifier()]);y+=w+o}f=c.node().getBBox().height,f<=0&&(f=s/2),h=a.insert("g").attr("class","methods-group text");let C=0;for(const b of t.methods){const w=await Bs(h,b,C,[b.parseClassifier()]);C+=w+o}let x=a.node().getBBox();if(n!==null){const b=n.node().getBBox();n.attr("transform",`translate(${-b.width/2})`)}return l.attr("transform",`translate(${-m.width/2}, ${u})`),x=a.node().getBBox(),c.attr("transform",`translate(0, ${u+d+s*2})`),x=a.node().getBBox(),h.attr("transform",`translate(0, ${u+d+(f?f+s*4:s*2)})`),x=a.node().getBBox(),{shapeSvg:a,bbox:x}}p(Xm,"textHelper");async function Bs(e,t,r,i=[]){const s=e.insert("g").attr("class","label").attr("style",i.join("; ")),o=Jt();let a="useHtmlLabels"in t?t.useHtmlLabels:pr(o.htmlLabels)??!0,n="";"text"in t?n=t.text:n=t.label,!a&&n.startsWith("\\")&&(n=n.substring(1)),Ns(n)&&(a=!0);const l=await Je(s,Yl(Wr(n)),{width:Br(n,o)+50,classes:"markdown-node-label",useHtmlLabels:a},o);let c,h=1;if(a){const u=l.children[0],d=Pt(l);h=u.innerHTML.split("<br>").length,u.innerHTML.includes("</math>")&&(h+=u.innerHTML.split("<mrow>").length-1),await Sh(u),c=u.getBoundingClientRect(),d.attr("width",c.width),d.attr("height",c.height)}else{i.includes("font-weight: bolder")&&Pt(l).selectAll("tspan").attr("font-weight",""),h=l.children.length;const u=l.children[0];(l.textContent===""||l.textContent.includes(">"))&&(u.textContent=n[0]+n.substring(1).replaceAll(">",">").replaceAll("<","<").trim(),n[1]===" "&&(u.textContent=u.textContent[0]+" "+u.textContent.substring(1))),u.textContent==="undefined"&&(u.textContent=""),c=l.getBBox()}return s.attr("transform","translate(0,"+(-c.height/(2*h)+r)+")"),c.height}p(Bs,"addText");async function Vm(e,t){var M,$;const r=Wt(),{themeVariables:i}=r,{useGradient:s}=i,o=r.class.padding??12,a=o,n=t.useHtmlLabels??pr(r.htmlLabels)??!0,l=t;l.annotations=l.annotations??[],l.members=l.members??[],l.methods=l.methods??[];const{shapeSvg:c,bbox:h}=await Xm(e,t,r,n,a),{labelStyles:u,nodeStyles:d}=bt(t);t.labelStyle=u,t.cssStyles=l.styles||"";const f=((M=l.styles)==null?void 0:M.join(";"))||d||"";t.cssStyles||(t.cssStyles=f.replaceAll("!important","").split(";"));const m=l.members.length===0&&l.methods.length===0&&!(($=r.class)!=null&&$.hideEmptyMembersBox),y=yt.svg(c),C=ft(t,{});t.look!=="handDrawn"&&(C.roughness=0,C.fillStyle="solid");const x=Math.max(t.width??0,h.width);let b=Math.max(t.height??0,h.height);const w=(t.height??0)>h.height;l.members.length===0&&l.methods.length===0?b+=a:l.members.length>0&&l.methods.length===0&&(b+=a*2);const _=-x/2,v=-b/2;let F=m?o*2:l.members.length===0&&l.methods.length===0?-o:0;w&&(F=o*2);const A=y.rectangle(_-o,v-o-(m?o:l.members.length===0&&l.methods.length===0?-o/2:0),x+2*o,b+2*o+F,C),L=c.insert(()=>A,":first-child");L.attr("class","basic label-container outer-path");const j=L.node().getBBox(),z=c.select(".annotation-group").node().getBBox().height-(m?o/2:0)||0,W=c.select(".label-group").node().getBBox().height-(m?o/2:0)||0,ot=c.select(".members-group").node().getBBox().height-(m?o/2:0)||0,Y=(z+W+v+o-(v-o-(m?o:l.members.length===0&&l.methods.length===0?-o/2:0)))/2;if(c.selectAll(".text").each((B,P,O)=>{var nt,wt;const H=Pt(O[P]),K=H.attr("transform");let ut=0;if(K){const At=RegExp(/translate\(([^,]+),([^)]+)\)/).exec(K);At&&(ut=parseFloat(At[2]))}let pt=ut+v+o-(m?o:l.members.length===0&&l.methods.length===0?-o/2:0);if(H.attr("class").includes("methods-group")){const Et=Math.max(ot,a/2);w?pt=Math.max(Y,z+W+Et+v+a*2+o)+a*2:pt=z+W+Et+v+a*4+o}l.members.length===0&&l.methods.length===0&&((nt=r.class)!=null&&nt.hideEmptyMembersBox)&&(l.annotations.length>0?pt=ut-a:pt=ut),n||(pt-=4);let kt=_;(H.attr("class").includes("label-group")||H.attr("class").includes("annotation-group"))&&(kt=-((wt=H.node())==null?void 0:wt.getBBox().width)/2||0,c.selectAll("text").each(function(Et,At,qt){window.getComputedStyle(qt[At]).textAnchor==="middle"&&(kt=0)})),H.attr("transform",`translate(${kt}, ${pt})`)}),l.members.length>0||l.methods.length>0||m){const B=z+W+v+o,P=y.line(j.x,B,j.x+j.width,B+.001,C);c.insert(()=>P).attr("class",`divider${t.look==="neo"&&!s?" neo-line":""}`).attr("style",f)}if(m||l.members.length>0||l.methods.length>0){const B=z+W+ot+v+a*2+o,P=y.line(j.x,w?Math.max(Y,B):B,j.x+j.width,(w?Math.max(Y,B):B)+.001,C);c.insert(()=>P).attr("class",`divider${t.look==="neo"&&!s?" neo-line":""}`).attr("style",f)}if(l.look!=="handDrawn"&&c.selectAll("path").attr("style",f),L.select(":nth-child(2)").attr("style",f),c.selectAll(".divider").select("path").attr("style",f),t.labelStyle?c.selectAll("span").attr("style",t.labelStyle):c.selectAll("span").attr("style",f),!n){const B=RegExp(/color\s*:\s*([^;]*)/),P=B.exec(f);if(P){const O=P[0].replace("color","fill");c.selectAll("tspan").attr("style",O)}else if(u){const O=B.exec(u);if(O){const H=O[0].replace("color","fill");c.selectAll("tspan").attr("style",H)}}}return Ct(t,L),t.intersect=function(B){return ht.rect(t,B)},c}p(Vm,"classBox");async function Zm(e,t){var W,ot;const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const s=t,o=t,a=20,n=20,l="verifyMethod"in t,c=St(t),h=Wt(),{themeVariables:u}=h,{borderColorArray:d,requirementEdgeLabelBackground:f}=u,m=h.layout==="elk"?"start":"center",y=e.insert("g").attr("class",c).attr("id",t.domId??t.id);let C;l?C=await or(y,`<<${s.type}>>`,0,t.labelStyle):C=await or(y,"<<Element>>",0,t.labelStyle);let x=C;const b=await or(y,s.name,x,t.labelStyle+"; font-weight: bold;");if(x+=b+n,l){const Y=await or(y,`${s.requirementId?`ID: ${s.requirementId}`:""}`,x,t.labelStyle,m);x+=Y;const M=await or(y,`${s.text?`Text: ${s.text}`:""}`,x,t.labelStyle,m);x+=M;const $=await or(y,`${s.risk?`Risk: ${s.risk}`:""}`,x,t.labelStyle,m);x+=$,await or(y,`${s.verifyMethod?`Verification: ${s.verifyMethod}`:""}`,x,t.labelStyle,m)}else{const Y=await or(y,`${o.type?`Type: ${o.type}`:""}`,x,t.labelStyle,m);x+=Y,await or(y,`${o.docRef?`Doc Ref: ${o.docRef}`:""}`,x,t.labelStyle,m)}const w=(((W=y.node())==null?void 0:W.getBBox().width)??200)+a,_=(((ot=y.node())==null?void 0:ot.getBBox().height)??200)+a,v=-w/2,F=-_/2,A=yt.svg(y),L=ft(t,{});t.look!=="handDrawn"&&(L.roughness=0,L.fillStyle="solid");const j=A.rectangle(v,F,w,_,L),z=y.insert(()=>j,":first-child");if(z.attr("class","basic label-container outer-path").attr("style",i),d!=null&&d.length){const Y=t.colorIndex??0;y.attr("data-color-id",`color-${Y%d.length}`)}if(y.selectAll(".label").each((Y,M,$)=>{const B=Pt($[M]),P=B.attr("transform");let O=0,H=0;if(P){const kt=RegExp(/translate\(([^,]+),([^)]+)\)/).exec(P);kt&&(O=parseFloat(kt[1]),H=parseFloat(kt[2]))}const K=H-_/2;let ut=v+a/2;(M===0||M===1)&&(ut=O),B.attr("transform",`translate(${ut}, ${K+a})`)}),x>C+b+n){const Y=F+C+b+n;let M;if(t.look==="neo"){const P=[[v,Y],[v+w,Y],[v+w,Y+.001],[v,Y+.001]];M=A.polygon(P,L)}else M=A.line(v,Y,v+w,Y,L);y.insert(()=>M).attr("class","divider")}return Ct(t,z),t.intersect=function(Y){return ht.rect(t,Y)},i&&t.look!=="handDrawn"&&(f||d!=null&&d.length)&&y.selectAll("path").attr("style",i),y}p(Zm,"requirementBox");async function or(e,t,r,i="",s="center"){if(t==="")return 0;const o=e.insert("g").attr("class","label").attr("style",i),a=Wt(),n=a.htmlLabels??!0,l=await Je(o,Yl(Wr(t)),{width:Br(t,a)+50,classes:"markdown-node-label",useHtmlLabels:n,style:i},a);let c;if(n){const h=l.children[0],u=Pt(l);s==="start"&&Pt(h).style("text-align","left"),c=h.getBoundingClientRect(),u.attr("width",c.width),u.attr("height",c.height)}else{const h=l.children[0];for(const u of h.children)i&&u.setAttribute("style",i);if(s==="start"){h.setAttribute("text-anchor","start");for(const u of h.children)u.setAttribute("text-anchor","start")}c=l.getBBox(),c.height+=6}return o.attr("transform",`translate(${-c.width/2},${-c.height/2+r})`),c.height}p(or,"addText");var uS=p(e=>{switch(e){case"Very High":return"red";case"High":return"orange";case"Medium":return null;case"Low":return"blue";case"Very Low":return"lightblue"}},"colorFromPriority");async function Km(e,t,{config:r}){var ot,Y;const{labelStyles:i,nodeStyles:s}=bt(t);t.labelStyle=i||"";const o=10,a=t.width;t.width=(t.width??200)-10;const{shapeSvg:n,bbox:l,label:c}=await _t(e,t,St(t)),h=t.padding||10;let u="",d;"ticket"in t&&t.ticket&&((ot=r==null?void 0:r.kanban)!=null&&ot.ticketBaseUrl)&&(u=(Y=r==null?void 0:r.kanban)==null?void 0:Y.ticketBaseUrl.replace("#TICKET#",t.ticket),d=n.insert("svg:a",":first-child").attr("class","kanban-ticket-link").attr("xlink:href",u).attr("target","_blank"));const f={useHtmlLabels:t.useHtmlLabels,labelStyle:t.labelStyle||"",width:t.width,img:t.img,padding:t.padding||8,centerLabel:!1};let m,y;d?{label:m,bbox:y}=await gn(d,"ticket"in t&&t.ticket||"",f):{label:m,bbox:y}=await gn(n,"ticket"in t&&t.ticket||"",f);const{label:C,bbox:x}=await gn(n,"assigned"in t&&t.assigned||"",f);t.width=a;const b=10,w=(t==null?void 0:t.width)||0,_=Math.max(y.height,x.height)/2,v=Math.max(l.height+b*2,(t==null?void 0:t.height)||0)+_,F=-w/2,A=-v/2;c.attr("transform","translate("+(h-w/2)+", "+(-_-l.height/2)+")"),m.attr("transform","translate("+(h-w/2)+", "+(-_+l.height/2)+")"),C.attr("transform","translate("+(h+w/2-x.width-2*o)+", "+(-_+l.height/2)+")");let L;const{rx:j,ry:z}=t,{cssStyles:W}=t;if(t.look==="handDrawn"){const M=yt.svg(n),$=ft(t,{}),B=j||z?M.path(He(F,A,w,v,j||0),$):M.rectangle(F,A,w,v,$);L=n.insert(()=>B,":first-child"),L.attr("class","basic label-container").attr("style",W||null)}else{L=n.insert("rect",":first-child"),L.attr("class","basic label-container __APA__").attr("style",s).attr("rx",j??5).attr("ry",z??5).attr("x",F).attr("y",A).attr("width",w).attr("height",v);const M="priority"in t&&t.priority;if(M){const $=n.append("line"),B=F+2,P=A+Math.floor((j??0)/2),O=A+v-Math.floor((j??0)/2);$.attr("x1",B).attr("y1",P).attr("x2",B).attr("y2",O).attr("stroke-width","4").attr("stroke",uS(M))}}return Ct(t,L),t.height=v,t.intersect=function(M){return ht.rect(t,M)},n}p(Km,"kanbanItem");async function Qm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,halfPadding:a,label:n}=await _t(e,t,St(t)),l=o.width+10*a,c=o.height+8*a,h=.15*l,{cssStyles:u}=t,d=o.width+20,f=o.height+20,m=Math.max(l,d),y=Math.max(c,f);n.attr("transform",`translate(${-o.width/2}, ${-o.height/2})`);let C;const x=`M0 0
|
|
210
|
+
a${h},${h} 1 0,0 ${m*.25},${-1*y*.1}
|
|
211
|
+
a${h},${h} 1 0,0 ${m*.25},0
|
|
212
|
+
a${h},${h} 1 0,0 ${m*.25},0
|
|
213
|
+
a${h},${h} 1 0,0 ${m*.25},${y*.1}
|
|
214
|
+
|
|
215
|
+
a${h},${h} 1 0,0 ${m*.15},${y*.33}
|
|
216
|
+
a${h*.8},${h*.8} 1 0,0 0,${y*.34}
|
|
217
|
+
a${h},${h} 1 0,0 ${-1*m*.15},${y*.33}
|
|
218
|
+
|
|
219
|
+
a${h},${h} 1 0,0 ${-1*m*.25},${y*.15}
|
|
220
|
+
a${h},${h} 1 0,0 ${-1*m*.25},0
|
|
221
|
+
a${h},${h} 1 0,0 ${-1*m*.25},0
|
|
222
|
+
a${h},${h} 1 0,0 ${-1*m*.25},${-1*y*.15}
|
|
223
|
+
|
|
224
|
+
a${h},${h} 1 0,0 ${-1*m*.1},${-1*y*.33}
|
|
225
|
+
a${h*.8},${h*.8} 1 0,0 0,${-1*y*.34}
|
|
226
|
+
a${h},${h} 1 0,0 ${m*.1},${-1*y*.33}
|
|
227
|
+
H0 V0 Z`;if(t.look==="handDrawn"){const b=yt.svg(s),w=ft(t,{}),_=b.path(x,w);C=s.insert(()=>_,":first-child"),C.attr("class","basic label-container").attr("style",ae(u))}else C=s.insert("path",":first-child").attr("class","basic label-container").attr("style",i).attr("d",x);return C.attr("transform",`translate(${-m/2}, ${-y/2})`),Ct(t,C),t.calcIntersect=function(b,w){return ht.rect(b,w)},t.intersect=function(b){return N.info("Bang intersect",t,b),ht.rect(t,b)},s}p(Qm,"bang");async function Jm(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,halfPadding:a,label:n}=await _t(e,t,St(t)),l=o.width+2*a,c=o.height+2*a,h=.15*l,u=.25*l,d=.35*l,f=.2*l,{cssStyles:m}=t;let y;const C=`M0 0
|
|
228
|
+
a${h},${h} 0 0,1 ${l*.25},${-1*l*.1}
|
|
229
|
+
a${d},${d} 1 0,1 ${l*.4},${-1*l*.1}
|
|
230
|
+
a${u},${u} 1 0,1 ${l*.35},${l*.2}
|
|
231
|
+
|
|
232
|
+
a${h},${h} 1 0,1 ${l*.15},${c*.35}
|
|
233
|
+
a${f},${f} 1 0,1 ${-1*l*.15},${c*.65}
|
|
234
|
+
|
|
235
|
+
a${u},${h} 1 0,1 ${-1*l*.25},${l*.15}
|
|
236
|
+
a${d},${d} 1 0,1 ${-1*l*.5},0
|
|
237
|
+
a${h},${h} 1 0,1 ${-1*l*.25},${-1*l*.15}
|
|
238
|
+
|
|
239
|
+
a${h},${h} 1 0,1 ${-1*l*.1},${-1*c*.35}
|
|
240
|
+
a${f},${f} 1 0,1 ${l*.1},${-1*c*.65}
|
|
241
|
+
H0 V0 Z`;if(t.look==="handDrawn"){const x=yt.svg(s),b=ft(t,{}),w=x.path(C,b);y=s.insert(()=>w,":first-child"),y.attr("class","basic label-container").attr("style",ae(m))}else y=s.insert("path",":first-child").attr("class","basic label-container").attr("style",i).attr("d",C);return n.attr("transform",`translate(${-o.width/2}, ${-o.height/2})`),y.attr("transform",`translate(${-l/2}, ${-c/2})`),Ct(t,y),t.calcIntersect=function(x,b){return ht.rect(x,b)},t.intersect=function(x){return N.info("Cloud intersect",t,x),ht.rect(t,x)},s}p(Jm,"cloud");async function ty(e,t){const{labelStyles:r,nodeStyles:i}=bt(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,halfPadding:a,label:n}=await _t(e,t,St(t)),l=o.width+8*a,c=o.height+2*a,h=5,u=t.look==="neo"?`
|
|
242
|
+
M${-l/2} ${c/2-h}
|
|
243
|
+
v${-c+2*h}
|
|
244
|
+
q0,-${h} ${h},-${h}
|
|
245
|
+
h${l-2*h}
|
|
246
|
+
q${h},0 ${h},${h}
|
|
247
|
+
v${c-h}
|
|
248
|
+
H${-l/2}
|
|
249
|
+
Z
|
|
250
|
+
`:`
|
|
251
|
+
M${-l/2} ${c/2-h}
|
|
252
|
+
v${-c+2*h}
|
|
253
|
+
q0,-${h} ${h},-${h}
|
|
254
|
+
h${l-2*h}
|
|
255
|
+
q${h},0 ${h},${h}
|
|
256
|
+
v${c-2*h}
|
|
257
|
+
q0,${h} ${-h},${h}
|
|
258
|
+
h${-(l-2*h)}
|
|
259
|
+
q${-h},0 ${-h},${-h}
|
|
260
|
+
Z
|
|
261
|
+
`;if(!t.domId)throw new Error(`defaultMindmapNode: node "${t.id}" is missing a domId — was render.ts domId prefixing skipped?`);const d=s.append("path").attr("id",t.domId).attr("class","node-bkg node-"+t.type).attr("style",i).attr("d",u);return s.append("line").attr("class","node-line-").attr("x1",-l/2).attr("y1",c/2).attr("x2",l/2).attr("y2",c/2),n.attr("transform",`translate(${-o.width/2}, ${-o.height/2})`),s.append(()=>n.node()),Ct(t,d),t.calcIntersect=function(f,m){return ht.rect(f,m)},t.intersect=function(f){return ht.rect(t,f)},s}p(ty,"defaultMindmapNode");async function ey(e,t){const r={padding:t.padding??0};return Lh(e,t,r)}p(ey,"mindmapCircle");var dS=[{semanticName:"Process",name:"Rectangle",shortName:"rect",description:"Standard process shape",aliases:["proc","process","rectangle"],internalAliases:["squareRect"],handler:Mm},{semanticName:"Event",name:"Rounded Rectangle",shortName:"rounded",description:"Represents an event",aliases:["event"],internalAliases:["roundedRect"],handler:Fm},{semanticName:"Terminal Point",name:"Stadium",shortName:"stadium",description:"Terminal point",aliases:["terminal","pill"],handler:$m},{semanticName:"Subprocess",name:"Framed Rectangle",shortName:"fr-rect",description:"Subprocess",aliases:["subprocess","subproc","framed-rectangle","subroutine"],handler:Pm},{semanticName:"Database",name:"Cylinder",shortName:"cyl",description:"Database storage",aliases:["db","database","cylinder"],handler:tm},{semanticName:"Data Store",name:"Data Store",shortName:"datastore",description:"Data flow diagram data store",aliases:["data-store"],handler:em},{semanticName:"Folder",name:"Folder",shortName:"folder",description:"Folder or directory",aliases:["directory"],handler:am},{semanticName:"Bucket",name:"Bucket",shortName:"bucket",description:"Object storage bucket",handler:Ng},{semanticName:"Console",name:"Console (terminal window)",shortName:"console",description:"Terminal or console window",handler:Ug},{semanticName:"Browser",name:"Browser",shortName:"browser",description:"Browser window",handler:Wg},{semanticName:"Person",name:"Person",shortName:"person",description:"Person (circular head above a rounded body)",handler:Jg},{semanticName:"Start",name:"Circle",shortName:"circle",description:"Starting point",aliases:["circ"],handler:Lh},{semanticName:"Bang",name:"Bang",shortName:"bang",description:"Bang",aliases:["bang"],handler:Qm},{semanticName:"Cloud",name:"Cloud",shortName:"cloud",description:"cloud",aliases:["cloud"],handler:Jm},{semanticName:"Decision",name:"Diamond",shortName:"diam",description:"Decision-making step",aliases:["decision","diamond","question"],handler:vm},{semanticName:"Prepare Conditional",name:"Hexagon",shortName:"hex",description:"Preparation or condition step",aliases:["hexagon","prepare"],handler:hm},{semanticName:"Data Input/Output",name:"Lean Right",shortName:"lean-r",description:"Represents input or output",aliases:["lean-right","in-out"],internalAliases:["lean_right"],handler:Cm},{semanticName:"Data Input/Output",name:"Lean Left",shortName:"lean-l",description:"Represents output or input",aliases:["lean-left","out-in"],internalAliases:["lean_left"],handler:xm},{semanticName:"Priority Action",name:"Trapezoid Base Bottom",shortName:"trap-b",description:"Priority action",aliases:["priority","trapezoid-bottom","trapezoid"],handler:Wm},{semanticName:"Manual Operation",name:"Trapezoid Base Top",shortName:"trap-t",description:"Represents a manual task",aliases:["manual","trapezoid-top","inv-trapezoid"],internalAliases:["inv_trapezoid"],handler:mm},{semanticName:"Stop",name:"Double Circle",shortName:"dbl-circ",description:"Represents a stop point",aliases:["double-circle"],internalAliases:["doublecircle"],handler:im},{semanticName:"Text Block",name:"Text Block",shortName:"text",description:"Text block",handler:qm},{semanticName:"Card",name:"Notched Rectangle",shortName:"notch-rect",description:"Represents a card",aliases:["card","notched-rectangle"],handler:Hg},{semanticName:"Lined/Shaded Process",name:"Lined Rectangle",shortName:"lin-rect",description:"Lined process shape",aliases:["lined-rectangle","lined-process","lin-proc","shaded-process"],handler:Am},{semanticName:"Start",name:"Small Circle",shortName:"sm-circ",description:"Small starting point",aliases:["start","small-circle"],internalAliases:["stateStart"],handler:Im},{semanticName:"Stop",name:"Framed Circle",shortName:"fr-circ",description:"Stop point",aliases:["stop","framed-circle"],internalAliases:["stateEnd"],handler:Dm},{semanticName:"Fork/Join",name:"Filled Rectangle",shortName:"fork",description:"Fork or join in process flow",aliases:["join"],internalAliases:["forkJoin"],handler:nm},{semanticName:"Collate",name:"Hourglass",shortName:"hourglass",description:"Represents a collate operation",aliases:["hourglass","collate"],handler:cm},{semanticName:"Comment",name:"Curly Brace",shortName:"brace",description:"Adds a comment",aliases:["comment","brace-l"],handler:Vg},{semanticName:"Comment Right",name:"Curly Brace",shortName:"brace-r",description:"Adds a comment",handler:Zg},{semanticName:"Comment with braces on both sides",name:"Curly Braces",shortName:"braces",description:"Adds a comment",handler:Kg},{semanticName:"Com Link",name:"Lightning Bolt",shortName:"bolt",description:"Communication link",aliases:["com-link","lightning-bolt"],handler:bm},{semanticName:"Document",name:"Document",shortName:"doc",description:"Represents a document",aliases:["doc","document"],handler:jm},{semanticName:"Delay",name:"Half-Rounded Rectangle",shortName:"delay",description:"Represents a delay",aliases:["half-rounded-rectangle"],handler:lm},{semanticName:"Direct Access Storage",name:"Horizontal Cylinder",shortName:"h-cyl",description:"Direct access storage",aliases:["das","horizontal-cylinder"],handler:zm},{semanticName:"Disk Storage",name:"Lined Cylinder",shortName:"lin-cyl",description:"Disk storage",aliases:["disk","lined-cylinder"],handler:km},{semanticName:"Display",name:"Curved Trapezoid",shortName:"curv-trap",description:"Represents a display",aliases:["curved-trapezoid","display"],handler:Qg},{semanticName:"Divided Process",name:"Divided Rectangle",shortName:"div-rect",description:"Divided process shape",aliases:["div-proc","divided-rectangle","divided-process"],handler:rm},{semanticName:"Extract",name:"Triangle",shortName:"tri",description:"Extraction process",aliases:["extract","triangle"],handler:Ym},{semanticName:"Internal Storage",name:"Window Pane",shortName:"win-pane",description:"Internal storage",aliases:["internal-storage","window-pane"],handler:Gm},{semanticName:"Junction",name:"Filled Circle",shortName:"f-circ",description:"Junction point",aliases:["junction","filled-circle"],handler:sm},{semanticName:"Loop Limit",name:"Trapezoidal Pentagon",shortName:"notch-pent",description:"Loop limit step",aliases:["loop-limit","notched-pentagon"],handler:Hm},{semanticName:"Manual File",name:"Flipped Triangle",shortName:"flip-tri",description:"Manual file operation",aliases:["manual-file","flipped-triangle"],handler:om},{semanticName:"Manual Input",name:"Sloped Rectangle",shortName:"sl-rect",description:"Manual input step",aliases:["manual-input","sloped-rectangle"],handler:Em},{semanticName:"Multi-Document",name:"Stacked Document",shortName:"docs",description:"Multiple documents",aliases:["documents","st-doc","stacked-document"],handler:_m},{semanticName:"Multi-Process",name:"Stacked Rectangle",shortName:"st-rect",description:"Multiple processes",aliases:["procs","processes","stacked-rectangle"],handler:Tm},{semanticName:"Stored Data",name:"Bow Tie Rectangle",shortName:"bow-rect",description:"Stored data",aliases:["stored-data","bow-tie-rectangle"],handler:Rg},{semanticName:"Summary",name:"Crossed Circle",shortName:"cross-circ",description:"Summary",aliases:["summary","crossed-circle"],handler:Xg},{semanticName:"Tagged Document",name:"Tagged Document",shortName:"tag-doc",description:"Tagged document",aliases:["tag-doc","tagged-document"],handler:Nm},{semanticName:"Tagged Process",name:"Tagged Rectangle",shortName:"tag-rect",description:"Tagged process",aliases:["tagged-rectangle","tag-proc","tagged-process"],handler:Rm},{semanticName:"Paper Tape",name:"Flag",shortName:"flag",description:"Paper tape",aliases:["paper-tape"],handler:Um},{semanticName:"Odd",name:"Odd",shortName:"odd",description:"Odd shape",internalAliases:["rect_left_inv_arrow"],handler:Bm},{semanticName:"Lined Document",name:"Lined Document",shortName:"lin-doc",description:"Lined document",aliases:["lined-document"],handler:wm}],fS=p(()=>{const t=[...Object.entries({state:Om,choice:Yg,note:Sm,composite:jg,rectWithTitle:Lm,labelRect:ym,block_arrow:zg,collapsedGroup:qg,iconSquare:pm,iconCircle:dm,icon:um,iconRounded:fm,imageSquare:gm,anchor:Ig,kanbanItem:Km,mindmapCircle:ey,defaultMindmapNode:ty,classBox:Vm,erBox:Fh,requirementBox:Zm}),...dS.flatMap(r=>[r.shortName,..."aliases"in r?r.aliases:[],..."internalAliases"in r?r.internalAliases:[]].map(s=>[s,r.handler]))];return Object.fromEntries(t)},"generateShapeMap"),ry=fS();function pS(e){return e in ry}p(pS,"isValidShape");var La=p(({flowchart:e})=>{var s,o;const t=((s=e==null?void 0:e.subGraphTitleMargin)==null?void 0:s.top)??0,r=((o=e==null?void 0:e.subGraphTitleMargin)==null?void 0:o.bottom)??0,i=t+r;return{subGraphTitleTopMargin:t,subGraphTitleBottomMargin:r,subGraphTitleTotalMargin:i}},"getSubGraphTitleMargins"),Fa=new Map;async function Ah(e,t,r){let i,s;t.shape==="rect"&&(t.rx&&t.ry?t.shape="roundedRect":t.shape="squareRect");const o=t.shape?ry[t.shape]:void 0;if(!o)throw new Error(`No such shape: ${t.shape}. Please check your syntax.`);if(t.link){let a;r.config.securityLevel==="sandbox"?a="_top":t.linkTarget&&(a=t.linkTarget||"_blank"),i=e.insert("svg:a").attr("xlink:href",t.link).attr("target",a??null),s=await o(i,t,r)}else s=await o(e,t,r),i=s;return i.attr("data-look",ae(t.look)),t.tooltip&&s.attr("title",t.tooltip),Fa.set(t.id,i),t.haveCallback&&i.attr("class",i.attr("class")+" clickable"),i}p(Ah,"insertNode");var g3=p((e,t)=>{Fa.set(t.id,e)},"setNodeElem"),gS=p(()=>{Fa.clear()},"clear"),id=p(e=>{const t=Fa.get(e.id);N.trace("Transforming node",e.diff,e,"translate("+(e.x-e.width/2-5)+", "+e.width/2+")");const r=8,i=e.diff||0;return e.clusterNode?t.attr("transform","translate("+(e.x+i-e.width/2)+", "+(e.y-e.height/2-r)+")"):t.attr("transform","translate("+e.x+", "+e.y+")"),i},"positionNode"),mS=p(async(e,t)=>{const r=Wt(),{themeVariables:i,handDrawnSeed:s}=r,{clusterBkg:o,clusterBorder:a}=i,n=a,{labelStyles:l,nodeStyles:c,borderStyles:h,backgroundStyles:u}=bt(t),d=e.insert("g").attr("class","cluster swimlane "+(t.cssClasses||"")).attr("id",t.id).attr("data-id",t.id).attr("data-et","cluster").attr("data-look",t.look),f=pr(r.flowchart.htmlLabels),m=t.direction==="LR",y=d.insert("g").attr("class","cluster-label swimlane-label"),C=await Je(y,t.label,{style:t.labelStyle,useHtmlLabels:f,isNode:!0,width:t.width});let x=C.getBBox();if(f){const Y=C.children[0],M=Pt(C);x=Y.getBoundingClientRect(),M.attr("width",x.width),M.attr("height",x.height)}const b=t.padding??0,w=t.width<=x.width+b?x.width+b:t.width;t.width<=x.width+b?t.diff=(w-t.width)/2-b:t.diff=-b;const _=t.height,v=t.y-_/2,F=t.y+_/2,A=t.x-w/2,L=t.swimlaneContentTop!==void 0?t.swimlaneContentTop:v+_/3,j=m?4:0,z=x.height+2*j;let W,ot;if(m){const Y=Math.max(z,x.height+2*j),M=A+Y,$=Math.max(0,w-Y);if(t.look==="handDrawn"){const O=yt.svg(d),H=ft(t,{roughness:.7,fill:o,stroke:n,fillWeight:3,seed:s}),K=ft(t,{roughness:.7,fill:"none",stroke:n,seed:s}),ut=O.rectangle(A,v,Y,_,H);W=d.insert(()=>ut,":first-child");const pt=O.rectangle(M,v,$,_,K);ot=d.insert(()=>pt,":first-child"),W.select("path:nth-child(2)").attr("style",h.join(";")),W.select("path").attr("style",u.join(";").replace("fill","stroke"))}else W=d.insert("rect",":first-child"),ot=d.insert("rect",":first-child"),W.attr("class","swimlane-title").attr("style",c).attr("x",A).attr("y",v).attr("width",Y).attr("height",_).attr("fill",o).attr("stroke",n),ot.attr("class","swimlane-body").attr("style",c).attr("x",M).attr("y",v).attr("width",$).attr("height",_).attr("fill","none").attr("stroke",n);const B=A+Y/2,P=t.y;y.attr("transform",`translate(${B}, ${P}) rotate(-90) translate(${-x.width/2}, ${-x.height/2})`)}else{const Y=Math.max(0,L-v),M=Math.min(z,Y),$=v+M,B=Math.max(0,F-$),P=t.x-w/2;if(t.look==="handDrawn"){const K=yt.svg(d),ut=ft(t,{roughness:.7,fill:o,stroke:n,fillWeight:3,seed:s}),pt=ft(t,{roughness:.7,fill:"none",stroke:n,seed:s}),kt=K.rectangle(P,v,w,M,ut);W=d.insert(()=>kt,":first-child");const nt=K.rectangle(P,$,w,B,pt);ot=d.insert(()=>nt,":first-child"),W.select("path:nth-child(2)").attr("style",h.join(";")),W.select("path").attr("style",u.join(";").replace("fill","stroke"))}else W=d.insert("rect",":first-child"),ot=d.insert("rect",":first-child"),W.attr("class","swimlane-title").attr("style",c).attr("x",P).attr("y",v).attr("width",w).attr("height",M).attr("fill",o).attr("stroke",n),ot.attr("class","swimlane-body").attr("style",c).attr("x",P).attr("y",$).attr("width",w).attr("height",B).attr("fill","none").attr("stroke",n);const O=t.x-x.width/2,H=v+(M-x.height)/2;y.attr("transform",`translate(${O}, ${H})`)}if(N.trace("Swimlane data ",t,JSON.stringify(t)),l){const Y=y.select("span");Y&&Y.attr("style",l)}return t.offsetX=0,t.width=w,t.height=_,t.offsetY=x.height-b/2,t.intersect=function(Y){return fi(t,Y)},{cluster:d,labelBBox:x}},"swimlane"),iy=p(async(e,t)=>{N.info("Creating subgraph rect for ",t.id,t);const r=Wt(),{themeVariables:i,handDrawnSeed:s}=r,{clusterBkg:o,clusterBorder:a}=i,{labelStyles:n,nodeStyles:l,borderStyles:c,backgroundStyles:h}=bt(t),u=e.insert("g").attr("class","cluster "+t.cssClasses).attr("id",t.domId).attr("data-look",t.look),d=Ce(r),f=u.insert("g").attr("class","cluster-label ");let m;t.labelType==="markdown"?m=await Je(f,t.label,{style:t.labelStyle,useHtmlLabels:d,isNode:!0,width:t.width}):m=await Rr(f,t.label,t.labelStyle||"",!1,!0);let y=m.getBBox();if(Ce(r)){const A=m.children[0],L=Pt(m);y=A.getBoundingClientRect(),L.attr("width",y.width),L.attr("height",y.height)}const C=t.width<=y.width+t.padding?y.width+t.padding:t.width;t.width<=y.width+t.padding?t.diff=(C-t.width)/2-t.padding:t.diff=-t.padding;const x=t.height,b=t.x-C/2,w=t.y-x/2;N.trace("Data ",t,JSON.stringify(t));let _;if(t.look==="handDrawn"){const A=yt.svg(u),L=ft(t,{roughness:.7,fill:o,stroke:a,fillWeight:3,seed:s}),j=A.path(He(b,w,C,x,0),L);_=u.insert(()=>(N.debug("Rough node insert CXC",j),j),":first-child"),_.select("path:nth-child(2)").attr("style",c.join(";")),_.select("path").attr("style",h.join(";").replace("fill","stroke"))}else _=u.insert("rect",":first-child"),_.attr("style",l).attr("rx",t.rx).attr("ry",t.ry).attr("x",b).attr("y",w).attr("width",C).attr("height",x);const{subGraphTitleTopMargin:v}=La(r);if(f.attr("transform",`translate(${t.x-y.width/2}, ${t.y-t.height/2+v})`),n){const A=f.select("span");A&&A.attr("style",n)}const F=_.node().getBBox();return t.offsetX=0,t.width=F.width,t.height=F.height,t.offsetY=y.height-t.padding/2,t.intersect=function(A){return fi(t,A)},{cluster:u,labelBBox:y}},"rect"),yS=p((e,t)=>{const r=e.insert("g").attr("class","note-cluster").attr("id",t.domId),i=r.insert("rect",":first-child"),s=0*t.padding,o=s/2;i.attr("rx",t.rx).attr("ry",t.ry).attr("x",t.x-t.width/2-o).attr("y",t.y-t.height/2-o).attr("width",t.width+s).attr("height",t.height+s).attr("fill","none");const a=i.node().getBBox();return t.width=a.width,t.height=a.height,t.intersect=function(n){return fi(t,n)},{cluster:r,labelBBox:{width:0,height:0}}},"noteGroup"),xS=p(async(e,t)=>{const r=Wt(),{themeVariables:i,handDrawnSeed:s}=r,{altBackground:o,compositeBackground:a,compositeTitleBackground:n,nodeBorder:l}=i,c=e.insert("g").attr("class",t.cssClasses).attr("id",t.domId).attr("data-id",t.id).attr("data-look",t.look),h=c.insert("g",":first-child"),u=c.insert("g").attr("class","cluster-label");let d=c.append("rect");const f=await Rr(u,t.label,t.labelStyle,void 0,!0);let m=f.getBBox();if(Ce(r)){const j=f.children[0],z=Pt(f);m=j.getBoundingClientRect(),z.attr("width",m.width),z.attr("height",m.height)}const y=0*t.padding,C=y/2,x=(t.width<=m.width+t.padding?m.width+t.padding:t.width)+y;t.width<=m.width+t.padding?t.diff=(x-t.width)/2-t.padding:t.diff=-t.padding;const b=t.height+y,w=t.height+y-m.height-6,_=t.x-x/2,v=t.y-b/2;t.width=x;const F=t.y-t.height/2-C+m.height+2;let A;if(t.look==="handDrawn"){const j=t.cssClasses.includes("statediagram-cluster-alt"),z=yt.svg(c),W=t.rx||t.ry?z.path(He(_,v,x,b,10),{roughness:.7,fill:n,fillStyle:"solid",stroke:l,seed:s}):z.rectangle(_,v,x,b,{seed:s});A=c.insert(()=>W,":first-child");const ot=z.rectangle(_,F,x,w,{fill:j?o:a,fillStyle:j?"hachure":"solid",stroke:l,seed:s});A=c.insert(()=>W,":first-child"),d=c.insert(()=>ot)}else A=h.insert("rect",":first-child"),A.attr("class","outer").attr("x",_).attr("y",v).attr("width",x).attr("height",b).attr("data-look",t.look),d.attr("class","inner").attr("x",_).attr("y",F).attr("width",x).attr("height",w);u.attr("transform",`translate(${t.x-m.width/2}, ${v+1-(Ce(r)?0:3)})`);const L=A.node().getBBox();return t.height=L.height,t.offsetX=0,t.offsetY=m.height-t.padding/2,t.labelBBox=m,t.intersect=function(j){return fi(t,j)},{cluster:c,labelBBox:m}},"roundedWithTitle"),CS=p(async(e,t)=>{N.info("Creating subgraph rect for ",t.id,t);const r=Wt(),{themeVariables:i,handDrawnSeed:s}=r,{clusterBkg:o,clusterBorder:a}=i,{labelStyles:n,nodeStyles:l,borderStyles:c,backgroundStyles:h}=bt(t),u=e.insert("g").attr("class","cluster "+t.cssClasses).attr("id",t.domId).attr("data-look",t.look),d=Ce(r),f=u.insert("g").attr("class","cluster-label "),m=await Je(f,t.label,{style:t.labelStyle,useHtmlLabels:d,isNode:!0,width:t.width});let y=m.getBBox();if(Ce(r)){const A=m.children[0],L=Pt(m);y=A.getBoundingClientRect(),L.attr("width",y.width),L.attr("height",y.height)}const C=t.width<=y.width+t.padding?y.width+t.padding:t.width;t.width<=y.width+t.padding?t.diff=(C-t.width)/2-t.padding:t.diff=-t.padding;const x=t.height,b=t.x-C/2,w=t.y-x/2;N.trace("Data ",t,JSON.stringify(t));let _;if(t.look==="handDrawn"){const A=yt.svg(u),L=ft(t,{roughness:.7,fill:o,stroke:a,fillWeight:4,seed:s}),j=A.path(He(b,w,C,x,t.rx),L);_=u.insert(()=>(N.debug("Rough node insert CXC",j),j),":first-child"),_.select("path:nth-child(2)").attr("style",c.join(";")),_.select("path").attr("style",h.join(";").replace("fill","stroke"))}else _=u.insert("rect",":first-child"),_.attr("style",l).attr("rx",t.rx).attr("ry",t.ry).attr("x",b).attr("y",w).attr("width",C).attr("height",x);const{subGraphTitleTopMargin:v}=La(r);if(f.attr("transform",`translate(${t.x-y.width/2}, ${t.y-t.height/2+v})`),n){const A=f.select("span");A&&A.attr("style",n)}const F=_.node().getBBox();return t.offsetX=0,t.width=F.width,t.height=F.height,t.offsetY=y.height-t.padding/2,t.intersect=function(A){return fi(t,A)},{cluster:u,labelBBox:y}},"kanbanSection"),bS=p((e,t)=>{const r=Wt(),{themeVariables:i,handDrawnSeed:s}=r,{nodeBorder:o}=i,a=e.insert("g").attr("class",t.cssClasses).attr("id",t.domId).attr("data-look",t.look),n=a.insert("g",":first-child"),l=0*t.padding,c=t.width+l;t.diff=-t.padding;const h=t.height+l,u=t.x-c/2,d=t.y-h/2;t.width=c;let f;if(t.look==="handDrawn"){const C=yt.svg(a).rectangle(u,d,c,h,{fill:"lightgrey",roughness:.5,strokeLineDash:[5],stroke:o,seed:s});f=a.insert(()=>C,":first-child")}else{f=n.insert("rect",":first-child");let y="outer";t.look,y="divider",f.attr("class",y).attr("x",u).attr("y",d).attr("width",c).attr("height",h).attr("data-look",t.look)}const m=f.node().getBBox();return t.height=m.height,t.offsetX=0,t.offsetY=0,t.intersect=function(y){return fi(t,y)},{cluster:a,labelBBox:{}}},"divider"),kS=iy,wS={rect:iy,squareRect:kS,roundedWithTitle:xS,noteGroup:yS,divider:bS,kanbanSection:CS,swimlane:mS},sy=new Map,oy=p(async(e,t)=>{const r=t.shape||"rect",i=await wS[r](e,t);return sy.set(t.id,i),i},"insertCluster"),TS=p(()=>{sy=new Map},"clear"),xs=p((e,t)=>{if(t)return"translate("+-e.width/2+", "+-e.height/2+")";const r=e.x??0,i=e.y??0;return"translate("+-(r+e.width/2)+", "+-(i+e.height/2)+")"},"computeLabelTransform"),ye={aggregation:17.25,extension:17.25,composition:17.25,dependency:6,lollipop:13.5,arrow_point:4,arrow_barb:0,arrow_barb_neo:5.5},sd={arrow_point:4,arrow_cross:12.5,arrow_circle:12.5};function Ls(e,t){if(e===void 0||t===void 0)return{angle:0,deltaX:0,deltaY:0};e=Qt(e),t=Qt(t);const[r,i]=[e.x,e.y],[s,o]=[t.x,t.y],a=s-r,n=o-i;return{angle:Math.atan(n/a),deltaX:a,deltaY:n}}p(Ls,"calculateDeltaAndAngle");var Qt=p(e=>Array.isArray(e)?{x:e[0],y:e[1]}:e,"pointTransformer"),_S=p(e=>({x:p(function(t,r,i){let s=0;const o=Qt(i[0]).x<Qt(i[i.length-1]).x?"left":"right";if(r===0&&Object.hasOwn(ye,e.arrowTypeStart)){const{angle:f,deltaX:m}=Ls(i[0],i[1]);s=ye[e.arrowTypeStart]*Math.cos(f)*(m>=0?1:-1)}else if(r===i.length-1&&Object.hasOwn(ye,e.arrowTypeEnd)){const{angle:f,deltaX:m}=Ls(i[i.length-1],i[i.length-2]);s=ye[e.arrowTypeEnd]*Math.cos(f)*(m>=0?1:-1)}const a=Math.abs(Qt(t).x-Qt(i[i.length-1]).x),n=Math.abs(Qt(t).y-Qt(i[i.length-1]).y),l=Math.abs(Qt(t).x-Qt(i[0]).x),c=Math.abs(Qt(t).y-Qt(i[0]).y),h=ye[e.arrowTypeStart],u=ye[e.arrowTypeEnd],d=1;if(a<u&&a>0&&n<u){let f=u+d-a;f*=o==="right"?-1:1,s-=f}if(l<h&&l>0&&c<h){let f=h+d-l;f*=o==="right"?-1:1,s+=f}return Qt(t).x+s},"x"),y:p(function(t,r,i){let s=0;const o=Qt(i[0]).y<Qt(i[i.length-1]).y?"down":"up";if(r===0&&Object.hasOwn(ye,e.arrowTypeStart)){const{angle:f,deltaY:m}=Ls(i[0],i[1]);s=ye[e.arrowTypeStart]*Math.abs(Math.sin(f))*(m>=0?1:-1)}else if(r===i.length-1&&Object.hasOwn(ye,e.arrowTypeEnd)){const{angle:f,deltaY:m}=Ls(i[i.length-1],i[i.length-2]);s=ye[e.arrowTypeEnd]*Math.abs(Math.sin(f))*(m>=0?1:-1)}const a=Math.abs(Qt(t).y-Qt(i[i.length-1]).y),n=Math.abs(Qt(t).x-Qt(i[i.length-1]).x),l=Math.abs(Qt(t).y-Qt(i[0]).y),c=Math.abs(Qt(t).x-Qt(i[0]).x),h=ye[e.arrowTypeStart],u=ye[e.arrowTypeEnd],d=1;if(a<u&&a>0&&n<u){let f=u+d-a;f*=o==="up"?-1:1,s-=f}if(l<h&&l>0&&c<h){let f=h+d-l;f*=o==="up"?-1:1,s+=f}return Qt(t).y+s},"y")}),"getLineFunctionsWithOffset"),SS=p((e,t,r,i,s,o=!1,a)=>{t.arrowTypeStart&&od(e,"start",t.arrowTypeStart,r,i,s,o,a),t.arrowTypeEnd&&od(e,"end",t.arrowTypeEnd,r,i,s,o,a)},"addEdgeMarkers"),vS={arrow_cross:{type:"cross",fill:!1},arrow_point:{type:"point",fill:!0},arrow_barb:{type:"barb",fill:!0},arrow_barb_neo:{type:"barb",fill:!0},arrow_circle:{type:"circle",fill:!1},aggregation:{type:"aggregation",fill:!1},extension:{type:"extension",fill:!1},composition:{type:"composition",fill:!0},dependency:{type:"dependency",fill:!0},lollipop:{type:"lollipop",fill:!1},only_one:{type:"onlyOne",fill:!1},zero_or_one:{type:"zeroOrOne",fill:!1},one_or_more:{type:"oneOrMore",fill:!1},zero_or_more:{type:"zeroOrMore",fill:!1},requirement_arrow:{type:"requirement_arrow",fill:!1},requirement_contains:{type:"requirement_contains",fill:!1}},BS=["cross","point","circle","lollipop","aggregation","extension","composition","dependency","barb"],od=p((e,t,r,i,s,o,a=!1,n)=>{var m;if(!r||r==="none")return;const l=vS[r],c=l&&BS.includes(l.type);if(!l){N.warn(`Unknown arrow type: ${r}`);return}const h=l.type,f=`${s}_${o}-${h}${t==="start"?"Start":"End"}${a&&c?"-margin":""}`;if(n&&n.trim()!==""){const y=n.replace(/[^\dA-Za-z]/g,"_"),C=`${f}_${y}`;if(!document.getElementById(C)){const x=document.getElementById(f);if(x){const b=x.cloneNode(!0);b.id=C,b.querySelectorAll("path, circle, line").forEach(_=>{_.setAttribute("stroke",n),l.fill&&_.setAttribute("fill",n)}),(m=x.parentNode)==null||m.appendChild(b)}}e.attr(`marker-${t}`,`url(${i}#${C})`)}else e.attr(`marker-${t}`,`url(${i}#${f})`)},"addEdgeMarker"),LS=p(e=>{var t,r;return typeof e=="string"?e:(r=(t=Wt())==null?void 0:t.flowchart)==null?void 0:r.curve},"resolveEdgeCurveType"),Qi=new Map,se=new Map,FS=p(()=>{Qi.clear(),se.clear()},"clear"),ay=p(e=>!!(e.label||e.startLabelLeft||e.startLabelRight||e.endLabelLeft||e.endLabelRight),"hasEdgeLabel"),Cs=p(e=>e?typeof e=="string"?e:e.reduce((t,r)=>t+";"+r,""):"","getLabelStyles"),Eh=p(async(e,t)=>{const r=Wt();let i=Ce(r);const{labelStyles:s}=bt(t);t.labelStyle=s;const o=e.insert("g").attr("class","edgeLabel"),a=o.insert("g").attr("class","label").attr("data-id",t.id),n=t.labelType==="markdown",c=await Je(e,t.label,{style:Cs(t.labelStyle),useHtmlLabels:i,addSvgBackground:!0,isNode:!1,markdown:n,width:n?void 0:void 0},r);a.node().appendChild(c),N.info("abc82",t,t.labelType);let h,u;if(i){const f=c.children[0],m=Pt(c);h=await li.measure(()=>f.getBoundingClientRect()),u=h,m.attr("width",h.width),m.attr("height",h.height)}else{const f=Pt(c).select("text").node();await li.measure(()=>{h=c.getBBox(),f&&typeof f.getBBox=="function"?u=f.getBBox():u=h})}a.attr("transform",xs(u,i)),Qi.set(t.id,o),t.width=h.width,t.height=h.height;let d;if(t.startLabelLeft){const f=e.insert("g").attr("class","edgeTerminals"),m=f.insert("g").attr("class","inner"),y=await Rr(m,t.startLabelLeft,Cs(t.labelStyle)||"",!1,!1);d=y;let C=y.getBBox();if(i){const x=y.children[0],b=Pt(y);C=x.getBoundingClientRect(),b.attr("width",C.width),b.attr("height",C.height)}m.attr("transform",xs(C,i)),se.get(t.id)||se.set(t.id,{}),se.get(t.id).startLeft=f,Fs(d,t.startLabelLeft)}if(t.startLabelRight){const f=e.insert("g").attr("class","edgeTerminals"),m=f.insert("g").attr("class","inner"),y=await Rr(m,t.startLabelRight,Cs(t.labelStyle)||"",!1,!1);d=y;let C=y.getBBox();if(i){const x=y.children[0],b=Pt(y);C=x.getBoundingClientRect(),b.attr("width",C.width),b.attr("height",C.height)}m.attr("transform",xs(C,i)),se.get(t.id)||se.set(t.id,{}),se.get(t.id).startRight=f,Fs(d,t.startLabelRight)}if(t.endLabelLeft){const f=e.insert("g").attr("class","edgeTerminals"),m=f.insert("g").attr("class","inner"),y=await Rr(f,t.endLabelLeft,Cs(t.labelStyle)||"",!1,!1);d=y;let C=y.getBBox();if(i){const x=y.children[0],b=Pt(y);C=x.getBoundingClientRect(),b.attr("width",C.width),b.attr("height",C.height)}m.attr("transform",xs(C,i)),se.get(t.id)||se.set(t.id,{}),se.get(t.id).endLeft=f,Fs(d,t.endLabelLeft)}if(t.endLabelRight){const f=e.insert("g").attr("class","edgeTerminals"),m=f.insert("g").attr("class","inner"),y=await Rr(f,t.endLabelRight,Cs(t.labelStyle)||"",!1,!1);d=y;let C=y.getBBox();if(i){const x=y.children[0],b=Pt(y);C=x.getBoundingClientRect(),b.attr("width",C.width),b.attr("height",C.height)}m.attr("transform",xs(C,i)),se.get(t.id)||se.set(t.id,{}),se.get(t.id).endRight=f,Fs(d,t.endLabelRight)}return c},"insertEdgeLabel");function Fs(e,t){Ce(Wt())&&e&&(e.style.width=t.length*9+"px",e.style.height="12px")}p(Fs,"setTerminalWidth");var AS=p((e,t)=>{N.debug("Moving label abc88 ",e.id,e.label,Qi.get(e.id),t);let r=t.updatedPath?t.updatedPath:t.originalPath;const i=Wt(),{subGraphTitleTotalMargin:s}=La(i);if(e.label){const o=Qi.get(e.id);let a=e.x,n=e.y;if(r){const l=xe.calcLabelPosition(r);N.debug("Moving label "+e.label+" from (",a,",",n,") to (",l.x,",",l.y,") abc88"),t.updatedPath&&(a=l.x,n=l.y)}o.attr("transform",`translate(${a}, ${n+s/2})`)}if(e.startLabelLeft){const o=se.get(e.id).startLeft;let a=e.x,n=e.y;if(r){const l=xe.calcTerminalLabelPosition(e.arrowTypeStart?10:0,"start_left",r);a=l.x,n=l.y}o.attr("transform",`translate(${a}, ${n})`)}if(e.startLabelRight){const o=se.get(e.id).startRight;let a=e.x,n=e.y;if(r){const l=xe.calcTerminalLabelPosition(e.arrowTypeStart?10:0,"start_right",r);a=l.x,n=l.y}o.attr("transform",`translate(${a}, ${n})`)}if(e.endLabelLeft){const o=se.get(e.id).endLeft;let a=e.x,n=e.y;if(r){const l=xe.calcTerminalLabelPosition(e.arrowTypeEnd?10:0,"end_left",r);a=l.x,n=l.y}o.attr("transform",`translate(${a}, ${n})`)}if(e.endLabelRight){const o=se.get(e.id).endRight;let a=e.x,n=e.y;if(r){const l=xe.calcTerminalLabelPosition(e.arrowTypeEnd?10:0,"end_right",r);a=l.x,n=l.y}o.attr("transform",`translate(${a}, ${n})`)}},"positionEdgeLabel"),ES=p((e,t)=>{var a;if(!(e!=null&&e.isLabelEdge)||!((a=e==null?void 0:e.id)!=null&&a.endsWith("-to-label"))||!Array.isArray(t)||t.length!==2)return t;const[r,i]=t,s=Math.abs(i.x-r.x),o=Math.abs(i.y-r.y);return s<.001||o<.001?t:o>=s?[r,{x:r.x,y:i.y},i]:[r,{x:i.x,y:r.y},i]},"orthogonalizeToLabelClippedPoints"),MS=p((e,t)=>{const r=e.x,i=e.y,s=Math.abs(t.x-r),o=Math.abs(t.y-i),a=e.width/2,n=e.height/2;return s>=a||o>=n},"outsideNode"),$S=p((e,t,r)=>{N.debug(`intersection calc abc89:
|
|
262
|
+
outsidePoint: ${JSON.stringify(t)}
|
|
263
|
+
insidePoint : ${JSON.stringify(r)}
|
|
264
|
+
node : x:${e.x} y:${e.y} w:${e.width} h:${e.height}`);const i=e.x,s=e.y,o=Math.abs(i-r.x),a=e.width/2;let n=r.x<t.x?a-o:a+o;const l=e.height/2,c=Math.abs(t.y-r.y),h=Math.abs(t.x-r.x);if(Math.abs(s-t.y)*a>Math.abs(i-t.x)*l){let u=r.y<t.y?t.y-l-s:s-l-t.y;n=h*u/c;const d={x:r.x<t.x?r.x+n:r.x-h+n,y:r.y<t.y?r.y+c-u:r.y-c+u};return n===0&&(d.x=t.x,d.y=t.y),h===0&&(d.x=t.x),c===0&&(d.y=t.y),N.debug(`abc89 top/bottom calc, Q ${c}, q ${u}, R ${h}, r ${n}`,d),d}else{r.x<t.x?n=t.x-a-i:n=i-a-t.x;let u=c*n/h,d=r.x<t.x?r.x+h-n:r.x-h+n,f=r.y<t.y?r.y+u:r.y-u;return N.debug(`sides calc abc89, Q ${c}, q ${u}, R ${h}, r ${n}`,{_x:d,_y:f}),n===0&&(d=t.x,f=t.y),h===0&&(d=t.x),c===0&&(f=t.y),{x:d,y:f}}},"intersection"),ad=p((e,t)=>{N.warn("abc88 cutPathAtIntersect",e,t);let r=[],i=e[0],s=!1;return e.forEach(o=>{if(N.info("abc88 checking point",o,t),!MS(t,o)&&!s){const a=$S(t,i,o);N.debug("abc88 inside",o,i,a),N.debug("abc88 intersection",a,t);let n=!1;r.forEach(l=>{n=n||l.x===a.x&&l.y===a.y}),r.some(l=>l.x===a.x&&l.y===a.y)?N.warn("abc88 no intersect",a,r):r.push(a),s=!0}else N.warn("abc88 outside",o,i),i=o,s||r.push(o)}),N.debug("returning points",r),r},"cutPathAtIntersect");function ny(e){const t=[],r=[];for(let i=1;i<e.length-1;i++){const s=e[i-1],o=e[i],a=e[i+1];(s.x===o.x&&o.y===a.y&&Math.abs(o.x-a.x)>5&&Math.abs(o.y-s.y)>5||s.y===o.y&&o.x===a.x&&Math.abs(o.x-s.x)>5&&Math.abs(o.y-a.y)>5)&&(t.push(o),r.push(i))}return{cornerPoints:t,cornerPointPositions:r}}p(ny,"extractCornerPoints");var nd=p(function(e,t,r){const i=t.x-e.x,s=t.y-e.y,o=Math.sqrt(i*i+s*s),a=r/o;return{x:t.x-a*i,y:t.y-a*s}},"findAdjacentPoint"),OS=p(function(e){const{cornerPointPositions:t}=ny(e),r=[];for(let i=0;i<e.length;i++)if(t.includes(i)){const s=e[i-1],o=e[i+1],a=e[i],n=nd(s,a,5),l=nd(o,a,5),c=l.x-n.x,h=l.y-n.y;r.push(n);const u=Math.sqrt(2)*2;let d={x:a.x,y:a.y};if(Math.abs(o.x-s.x)>10&&Math.abs(o.y-s.y)>=10){N.debug("Corner point fixing",Math.abs(o.x-s.x),Math.abs(o.y-s.y));const f=5;a.x===n.x?d={x:c<0?n.x-f+u:n.x+f-u,y:h<0?n.y-u:n.y+u}:d={x:c<0?n.x-u:n.x+u,y:h<0?n.y-f+u:n.y+f-u}}else N.debug("Corner point skipping fixing",Math.abs(o.x-s.x),Math.abs(o.y-s.y));r.push(d,l)}else r.push(e[i]);return r},"fixCorners"),DS=p((e,t,r)=>{const i=e-t-r,s=2,o=2,a=s+o,n=Math.floor(i/a),l=Number.isFinite(n)?Math.max(0,n):0,c=Array(l).fill(`${s} ${o}`).join(" ");return`0 ${t} ${c} ${r}`},"generateDashArray"),ly=p(function(e,t,r,i,s,o,a,n=!1){var O;if(!a)throw new Error(`insertEdge: missing diagramId for edge "${t.id}" — edge IDs require a diagram prefix for uniqueness`);const{handDrawnSeed:l,layout:c}=Wt();let h=t.points,u=!1;const d=s;var f=o;const m=[];for(const H in t.cssCompiledStyles)Dp(H)||m.push(t.cssCompiledStyles[H]);if(c==="swimlane"){if(f.intersect&&d.intersect&&Array.isArray(h)&&h.length>=2)if(h.length===2)h=[d.intersect(h[0]),f.intersect(h[1])];else{const H=h.slice(1,-1),K=H[0],ut=H[H.length-1],pt=.5,kt=Math.abs(h[h.length-1].x-ut.x)<pt&&Math.abs(h[h.length-1].y-ut.y)<pt,nt=d.intersect(K),wt=kt?ut:f.intersect(ut),Et=Math.abs(wt.x-ut.x)<pt&&Math.abs(wt.y-ut.y)<pt,qt=Math.abs(nt.x-K.x)<pt&&Math.abs(nt.y-K.y)<pt?[]:[nt],Lt=Et?[]:[wt];h=[...qt,...H,...Lt]}h=ES(t,h)}else f.intersect&&d.intersect&&!n&&(h=h.slice(1,t.points.length-1),h.unshift(d.intersect(h[0])),h.push(f.intersect(h[h.length-1])));const y=btoa(JSON.stringify(h));t.toCluster&&(N.info("to cluster abc88",r.get(t.toCluster)),h=ad(t.points,r.get(t.toCluster).node),u=!0),t.fromCluster&&(N.debug("from cluster abc88",r.get(t.fromCluster),JSON.stringify(h,null,2)),h=ad(h.reverse(),r.get(t.fromCluster).node).reverse(),u=!0);let C=h.filter(H=>!Number.isNaN(H.y));const x=LS(t.curve);x!=="rounded"&&(C=OS(C));let b=Ds;switch(x){case"linear":b=Ds;break;case"basis":b=cl;break;case"cardinal":b=bp;break;case"bumpX":b=gp;break;case"bumpY":b=mp;break;case"catmullRom":b=wp;break;case"monotoneX":b=Lp;break;case"monotoneY":b=Fp;break;case"natural":b=Ep;break;case"step":b=Mp;break;case"stepAfter":b=Op;break;case"stepBefore":b=$p;break;case"rounded":b=Ds;break;default:b=cl}const{x:w,y:_}=_S(t),v=Z2().x(w).y(_).curve(b);let F;switch(t.thickness){case"normal":F="edge-thickness-normal";break;case"thick":F="edge-thickness-thick";break;case"invisible":F="edge-thickness-invisible";break;default:F="edge-thickness-normal"}switch(t.pattern){case"solid":F+=" edge-pattern-solid";break;case"dotted":F+=" edge-pattern-dotted";break;case"dashed":F+=" edge-pattern-dashed";break;default:F+=" edge-pattern-solid"}let A,L=x==="rounded"?hy(cy(C,t),5):v(C);const j=Array.isArray(t.style)?t.style:[t.style];let z=j.find(H=>H==null?void 0:H.startsWith("stroke:")),W="";t.animate&&(W="edge-animation-fast"),t.animation&&(W="edge-animation-"+t.animation);let ot=!1;if(t.look==="handDrawn"){const H=yt.svg(e);Object.assign([],C);const K=H.path(L,{roughness:.3,seed:l});F+=" transition",A=Pt(K).select("path").attr("id",`${a}-${t.id}`).attr("class"," "+F+(t.classes?" "+t.classes:"")+(W?" "+W:"")).attr("style",j?j.reduce((pt,kt)=>pt+";"+kt,""):"");let ut=A.attr("d");A.attr("d",ut),e.node().appendChild(A.node())}else{const H=m.join(";"),K=j?j.reduce((Et,At)=>Et+At+";",""):"",ut=(H?H+";"+K+";":K)+";"+(j?j.reduce((Et,At)=>Et+";"+At,""):"");A=e.append("path").attr("d",L).attr("id",`${a}-${t.id}`).attr("class"," "+F+(t.classes?" "+t.classes:"")+(W?" "+W:"")).attr("style",ut),z=(O=ut.match(/stroke:([^;]+)/))==null?void 0:O[1],ot=t.animate===!0||!!t.animation||H.includes("animation");const pt=A.node(),kt=typeof pt.getTotalLength=="function"?pt.getTotalLength():0,nt=sd[t.arrowTypeStart]||0,wt=sd[t.arrowTypeEnd]||0;if(t.look==="neo"&&!ot){const At=`stroke-dasharray: ${t.pattern==="dotted"||t.pattern==="dashed"?DS(kt,nt,wt):`0 ${nt} ${kt-nt-wt} ${wt}`}; stroke-dashoffset: 0;`;A.attr("style",At+A.attr("style"))}}A.attr("data-edge",!0),A.attr("data-et","edge"),A.attr("data-id",t.id),A.attr("data-points",y),A.attr("data-look",ae(t.look)),t.showPoints&&C.forEach(H=>{e.append("circle").style("stroke","red").style("fill","red").attr("r",1).attr("cx",H.x).attr("cy",H.y)});let Y="";(Wt().flowchart.arrowMarkerAbsolute||Wt().state.arrowMarkerAbsolute)&&(Y=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,Y=Y.replace(/\(/g,"\\(").replace(/\)/g,"\\)")),N.info("arrowTypeStart",t.arrowTypeStart),N.info("arrowTypeEnd",t.arrowTypeEnd);const M=!ot&&(t==null?void 0:t.look)==="neo";SS(A,t,Y,a,i,M,z);const $=Math.floor(h.length/2),B=h[$];xe.isLabelCoordinateInPath(B,A.attr("d"))||(u=!0);let P={};return u&&(P.updatedPath=h),P.originalPath=t.points,P},"insertEdge");function hy(e,t){if(e.length<2)return"";let r="";const i=e.length,s=1e-5;for(let o=0;o<i;o++){const a=e[o],n=e[o-1],l=e[o+1];if(o===0)r+=`M${a.x},${a.y}`;else if(o===i-1)r+=`L${a.x},${a.y}`;else{const c=a.x-n.x,h=a.y-n.y,u=l.x-a.x,d=l.y-a.y,f=Math.hypot(c,h),m=Math.hypot(u,d);if(f<s||m<s){r+=`L${a.x},${a.y}`;continue}const y=c/f,C=h/f,x=u/m,b=d/m,w=y*x+C*b,_=Math.max(-1,Math.min(1,w)),v=Math.acos(_);if(v<s||Math.abs(Math.PI-v)<s){r+=`L${a.x},${a.y}`;continue}const F=Math.min(t/Math.sin(v/2),f/2,m/2),A=a.x-y*F,L=a.y-C*F,j=a.x+x*F,z=a.y+b*F;r+=`L${A},${L}`,r+=`Q${a.x},${a.y} ${j},${z}`}}return r}p(hy,"generateRoundedPath");function vl(e,t){if(!e||!t)return{angle:0,deltaX:0,deltaY:0};const r=t.x-e.x,i=t.y-e.y;return{angle:Math.atan2(i,r),deltaX:r,deltaY:i}}p(vl,"calculateDeltaAndAngle");function cy(e,t){const r=e.map(s=>({...s}));if(e.length>=2&&ye[t.arrowTypeStart]){const s=ye[t.arrowTypeStart],o=e[0],a=e[1],{angle:n}=vl(o,a),l=s*Math.cos(n),c=s*Math.sin(n);r[0].x=o.x+l,r[0].y=o.y+c}const i=e.length;if(i>=2&&ye[t.arrowTypeEnd]){const s=ye[t.arrowTypeEnd],o=e[i-1],a=e[i-2],{angle:n}=vl(a,o),l=s*Math.cos(n),c=s*Math.sin(n);r[i-1].x=o.x-l,r[i-1].y=o.y-c}return r}p(cy,"applyMarkerOffsetsToPoints");var IS=p((e,t,r,i)=>{t.forEach(s=>{ov[s](e,r,i)})},"insertMarkers"),PS=p((e,t,r)=>{N.trace("Making markers for ",r),e.append("defs").append("marker").attr("id",r+"_"+t+"-extensionStart").attr("class","marker extension "+t).attr("refX",18).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").attr("markerUnits","userSpaceOnUse").append("path").attr("d","M 1,7 L18,13 V 1 Z"),e.append("defs").append("marker").attr("id",r+"_"+t+"-extensionEnd").attr("class","marker extension "+t).attr("refX",1).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 1,1 V 13 L18,7 Z"),e.append("marker").attr("id",r+"_"+t+"-extensionStart-margin").attr("class","marker extension "+t).attr("refX",18).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").attr("markerUnits","userSpaceOnUse").attr("viewBox","0 0 20 14").append("polygon").attr("points","10,7 18,13 18,1").style("stroke-width",2).style("stroke-dasharray","0"),e.append("defs").append("marker").attr("id",r+"_"+t+"-extensionEnd-margin").attr("class","marker extension "+t).attr("refX",9).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").attr("markerUnits","userSpaceOnUse").attr("viewBox","0 0 20 14").append("polygon").attr("points","10,1 10,13 18,7").style("stroke-width",2).style("stroke-dasharray","0")},"extension"),RS=p((e,t,r)=>{e.append("defs").append("marker").attr("id",r+"_"+t+"-compositionStart").attr("class","marker composition "+t).attr("refX",18).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id",r+"_"+t+"-compositionEnd").attr("class","marker composition "+t).attr("refX",1).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id",r+"_"+t+"-compositionStart-margin").attr("class","marker composition "+t).attr("refX",15).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").attr("markerUnits","userSpaceOnUse").append("path").style("stroke-width",0).attr("viewBox","0 0 15 15").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id",r+"_"+t+"-compositionEnd-margin").attr("class","marker composition "+t).attr("refX",3.5).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").attr("markerUnits","userSpaceOnUse").append("path").style("stroke-width",0).attr("d","M 18,7 L9,13 L1,7 L9,1 Z")},"composition"),NS=p((e,t,r)=>{e.append("defs").append("marker").attr("id",r+"_"+t+"-aggregationStart").attr("class","marker aggregation "+t).attr("refX",18).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id",r+"_"+t+"-aggregationEnd").attr("class","marker aggregation "+t).attr("refX",1).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id",r+"_"+t+"-aggregationStart-margin").attr("class","marker aggregation "+t).attr("refX",15).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").attr("markerUnits","userSpaceOnUse").append("path").style("stroke-width",2).attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id",r+"_"+t+"-aggregationEnd-margin").attr("class","marker aggregation "+t).attr("refX",1).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").attr("markerUnits","userSpaceOnUse").append("path").style("stroke-width",2).attr("d","M 18,7 L9,13 L1,7 L9,1 Z")},"aggregation"),qS=p((e,t,r)=>{e.append("defs").append("marker").attr("id",r+"_"+t+"-dependencyStart").attr("class","marker dependency "+t).attr("refX",6).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 5,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id",r+"_"+t+"-dependencyEnd").attr("class","marker dependency "+t).attr("refX",13).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L14,7 L9,1 Z"),e.append("defs").append("marker").attr("id",r+"_"+t+"-dependencyStart-margin").attr("class","marker dependency "+t).attr("refX",4).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").attr("markerUnits","userSpaceOnUse").append("path").style("stroke-width",0).attr("d","M 5,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id",r+"_"+t+"-dependencyEnd-margin").attr("class","marker dependency "+t).attr("refX",16).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").attr("markerUnits","userSpaceOnUse").append("path").style("stroke-width",0).attr("d","M 18,7 L9,13 L14,7 L9,1 Z")},"dependency"),zS=p((e,t,r)=>{e.append("defs").append("marker").attr("id",r+"_"+t+"-lollipopStart").attr("class","marker lollipop "+t).attr("refX",13).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("circle").attr("fill","transparent").attr("cx",7).attr("cy",7).attr("r",6),e.append("defs").append("marker").attr("id",r+"_"+t+"-lollipopEnd").attr("class","marker lollipop "+t).attr("refX",1).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("circle").attr("fill","transparent").attr("cx",7).attr("cy",7).attr("r",6),e.append("defs").append("marker").attr("id",r+"_"+t+"-lollipopStart-margin").attr("class","marker lollipop "+t).attr("refX",13).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").attr("markerUnits","userSpaceOnUse").append("circle").attr("fill","transparent").attr("cx",7).attr("cy",7).attr("r",6).attr("stroke-width",2),e.append("defs").append("marker").attr("id",r+"_"+t+"-lollipopEnd-margin").attr("class","marker lollipop "+t).attr("refX",1).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").attr("markerUnits","userSpaceOnUse").append("circle").attr("fill","transparent").attr("cx",7).attr("cy",7).attr("r",6).attr("stroke-width",2)},"lollipop"),WS=p((e,t,r)=>{e.append("marker").attr("id",r+"_"+t+"-pointEnd").attr("class","marker "+t).attr("viewBox","0 0 10 10").attr("refX",5).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",8).attr("markerHeight",8).attr("orient","auto").append("path").attr("d","M 0 0 L 10 5 L 0 10 z").attr("class","arrowMarkerPath").style("stroke-width",1).style("stroke-dasharray","1,0"),e.append("marker").attr("id",r+"_"+t+"-pointStart").attr("class","marker "+t).attr("viewBox","0 0 10 10").attr("refX",4.5).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",8).attr("markerHeight",8).attr("orient","auto").append("path").attr("d","M 0 5 L 10 10 L 10 0 z").attr("class","arrowMarkerPath").style("stroke-width",1).style("stroke-dasharray","1,0"),e.append("marker").attr("id",r+"_"+t+"-pointEnd-margin").attr("class","marker "+t).attr("viewBox","0 0 11.5 14").attr("refX",11.5).attr("refY",7).attr("markerUnits","userSpaceOnUse").attr("markerWidth",10.5).attr("markerHeight",14).attr("orient","auto").append("path").attr("d","M 0 0 L 11.5 7 L 0 14 z").attr("class","arrowMarkerPath").style("stroke-width",0).style("stroke-dasharray","1,0"),e.append("marker").attr("id",r+"_"+t+"-pointStart-margin").attr("class","marker "+t).attr("viewBox","0 0 11.5 14").attr("refX",1).attr("refY",7).attr("markerUnits","userSpaceOnUse").attr("markerWidth",11.5).attr("markerHeight",14).attr("orient","auto").append("polygon").attr("points","0,7 11.5,14 11.5,0").attr("class","arrowMarkerPath").style("stroke-width",0).style("stroke-dasharray","1,0")},"point"),HS=p((e,t,r)=>{e.append("marker").attr("id",r+"_"+t+"-circleEnd").attr("class","marker "+t).attr("viewBox","0 0 10 10").attr("refX",11).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",11).attr("markerHeight",11).attr("orient","auto").append("circle").attr("cx","5").attr("cy","5").attr("r","5").attr("class","arrowMarkerPath").style("stroke-width",1).style("stroke-dasharray","1,0"),e.append("marker").attr("id",r+"_"+t+"-circleStart").attr("class","marker "+t).attr("viewBox","0 0 10 10").attr("refX",-1).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",11).attr("markerHeight",11).attr("orient","auto").append("circle").attr("cx","5").attr("cy","5").attr("r","5").attr("class","arrowMarkerPath").style("stroke-width",1).style("stroke-dasharray","1,0"),e.append("marker").attr("id",r+"_"+t+"-circleEnd-margin").attr("class","marker "+t).attr("viewBox","0 0 10 10").attr("refY",5).attr("refX",12.25).attr("markerUnits","userSpaceOnUse").attr("markerWidth",14).attr("markerHeight",14).attr("orient","auto").append("circle").attr("cx","5").attr("cy","5").attr("r","5").attr("class","arrowMarkerPath").style("stroke-width",0).style("stroke-dasharray","1,0"),e.append("marker").attr("id",r+"_"+t+"-circleStart-margin").attr("class","marker "+t).attr("viewBox","0 0 10 10").attr("refX",-2).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",14).attr("markerHeight",14).attr("orient","auto").append("circle").attr("cx","5").attr("cy","5").attr("r","5").attr("class","arrowMarkerPath").style("stroke-width",0).style("stroke-dasharray","1,0")},"circle"),YS=p((e,t,r)=>{e.append("marker").attr("id",r+"_"+t+"-crossEnd").attr("class","marker cross "+t).attr("viewBox","0 0 11 11").attr("refX",12).attr("refY",5.2).attr("markerUnits","userSpaceOnUse").attr("markerWidth",11).attr("markerHeight",11).attr("orient","auto").append("path").attr("d","M 1,1 l 9,9 M 10,1 l -9,9").attr("class","arrowMarkerPath").style("stroke-width",2).style("stroke-dasharray","1,0"),e.append("marker").attr("id",r+"_"+t+"-crossStart").attr("class","marker cross "+t).attr("viewBox","0 0 11 11").attr("refX",-1).attr("refY",5.2).attr("markerUnits","userSpaceOnUse").attr("markerWidth",11).attr("markerHeight",11).attr("orient","auto").append("path").attr("d","M 1,1 l 9,9 M 10,1 l -9,9").attr("class","arrowMarkerPath").style("stroke-width",2).style("stroke-dasharray","1,0"),e.append("marker").attr("id",r+"_"+t+"-crossEnd-margin").attr("class","marker cross "+t).attr("viewBox","0 0 15 15").attr("refX",17.7).attr("refY",7.5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",12).attr("markerHeight",12).attr("orient","auto").append("path").attr("d","M 1,1 L 14,14 M 1,14 L 14,1").attr("class","arrowMarkerPath").style("stroke-width",2.5),e.append("marker").attr("id",r+"_"+t+"-crossStart-margin").attr("class","marker cross "+t).attr("viewBox","0 0 15 15").attr("refX",-3.5).attr("refY",7.5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",12).attr("markerHeight",12).attr("orient","auto").append("path").attr("d","M 1,1 L 14,14 M 1,14 L 14,1").attr("class","arrowMarkerPath").style("stroke-width",2.5).style("stroke-dasharray","1,0")},"cross"),jS=p((e,t,r)=>{e.append("defs").append("marker").attr("id",r+"_"+t+"-barbEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",14).attr("markerUnits","userSpaceOnUse").attr("orient","auto").append("path").attr("d","M 19,7 L9,13 L14,7 L9,1 Z")},"barb"),US=p((e,t,r)=>{const i=Jt(),{themeVariables:s}=i,{transitionColor:o}=s;e.append("defs").append("marker").attr("id",r+"_"+t+"-barbEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",14).attr("markerUnits","strokeWidth").attr("orient","auto").append("path").attr("d","M 19,7 L11,14 L13,7 L11,0 Z"),e.append("defs").append("marker").attr("id",r+"_"+t+"-barbEnd-margin").attr("refX",17).attr("refY",7).attr("markerWidth",20).attr("markerHeight",14).attr("markerUnits","userSpaceOnUse").attr("orient","auto").append("path").attr("d","M 19,7 L11,14 L13,7 L11,0 Z").attr("fill",`${o}`)},"barbNeo"),GS=p((e,t,r)=>{e.append("defs").append("marker").attr("id",r+"_"+t+"-onlyOneStart").attr("class","marker onlyOne "+t).attr("refX",0).attr("refY",9).attr("markerWidth",18).attr("markerHeight",18).attr("orient","auto").append("path").attr("d","M9,0 L9,18 M15,0 L15,18"),e.append("defs").append("marker").attr("id",r+"_"+t+"-onlyOneEnd").attr("class","marker onlyOne "+t).attr("refX",18).attr("refY",9).attr("markerWidth",18).attr("markerHeight",18).attr("orient","auto").append("path").attr("d","M3,0 L3,18 M9,0 L9,18")},"only_one"),XS=p((e,t,r)=>{const i=e.append("defs").append("marker").attr("id",r+"_"+t+"-zeroOrOneStart").attr("class","marker zeroOrOne "+t).attr("refX",0).attr("refY",9).attr("markerWidth",30).attr("markerHeight",18).attr("orient","auto");i.append("circle").attr("fill","white").attr("cx",21).attr("cy",9).attr("r",6),i.append("path").attr("d","M9,0 L9,18");const s=e.append("defs").append("marker").attr("id",r+"_"+t+"-zeroOrOneEnd").attr("class","marker zeroOrOne "+t).attr("refX",30).attr("refY",9).attr("markerWidth",30).attr("markerHeight",18).attr("orient","auto");s.append("circle").attr("fill","white").attr("cx",9).attr("cy",9).attr("r",6),s.append("path").attr("d","M21,0 L21,18")},"zero_or_one"),VS=p((e,t,r)=>{e.append("defs").append("marker").attr("id",r+"_"+t+"-oneOrMoreStart").attr("class","marker oneOrMore "+t).attr("refX",18).attr("refY",18).attr("markerWidth",45).attr("markerHeight",36).attr("orient","auto").append("path").attr("d","M0,18 Q 18,0 36,18 Q 18,36 0,18 M42,9 L42,27"),e.append("defs").append("marker").attr("id",r+"_"+t+"-oneOrMoreEnd").attr("class","marker oneOrMore "+t).attr("refX",27).attr("refY",18).attr("markerWidth",45).attr("markerHeight",36).attr("orient","auto").append("path").attr("d","M3,9 L3,27 M9,18 Q27,0 45,18 Q27,36 9,18")},"one_or_more"),ZS=p((e,t,r)=>{const i=e.append("defs").append("marker").attr("id",r+"_"+t+"-zeroOrMoreStart").attr("class","marker zeroOrMore "+t).attr("refX",18).attr("refY",18).attr("markerWidth",57).attr("markerHeight",36).attr("orient","auto");i.append("circle").attr("fill","white").attr("cx",48).attr("cy",18).attr("r",6),i.append("path").attr("d","M0,18 Q18,0 36,18 Q18,36 0,18");const s=e.append("defs").append("marker").attr("id",r+"_"+t+"-zeroOrMoreEnd").attr("class","marker zeroOrMore "+t).attr("refX",39).attr("refY",18).attr("markerWidth",57).attr("markerHeight",36).attr("orient","auto");s.append("circle").attr("fill","white").attr("cx",9).attr("cy",18).attr("r",6),s.append("path").attr("d","M21,18 Q39,0 57,18 Q39,36 21,18")},"zero_or_more"),KS=p((e,t,r)=>{const i=Jt(),{themeVariables:s}=i,{strokeWidth:o}=s;e.append("defs").append("marker").attr("id",r+"_"+t+"-onlyOneStart").attr("class","marker onlyOne "+t).attr("refX",0).attr("refY",9).attr("markerWidth",18).attr("markerHeight",18).attr("orient","auto").attr("markerUnits","userSpaceOnUse").append("path").attr("d","M9,0 L9,18 M15,0 L15,18").attr("stroke-width",`${o}`),e.append("defs").append("marker").attr("id",r+"_"+t+"-onlyOneEnd").attr("class","marker onlyOne "+t).attr("refX",18).attr("refY",9).attr("markerWidth",18).attr("markerHeight",18).attr("orient","auto").attr("markerUnits","userSpaceOnUse").append("path").attr("d","M3,0 L3,18 M9,0 L9,18").attr("stroke-width",`${o}`)},"only_one_neo"),QS=p((e,t,r)=>{const i=Jt(),{themeVariables:s}=i,{strokeWidth:o,mainBkg:a}=s,n=e.append("defs").append("marker").attr("id",r+"_"+t+"-zeroOrOneStart").attr("class","marker zeroOrOne "+t).attr("refX",0).attr("refY",9).attr("markerWidth",30).attr("markerHeight",18).attr("orient","auto").attr("markerUnits","userSpaceOnUse");n.append("circle").attr("fill",a??"white").attr("cx",21).attr("cy",9).attr("stroke-width",`${o}`).attr("r",6),n.append("path").attr("d","M9,0 L9,18").attr("stroke-width",`${o}`);const l=e.append("defs").append("marker").attr("id",r+"_"+t+"-zeroOrOneEnd").attr("class","marker zeroOrOne "+t).attr("refX",30).attr("refY",9).attr("markerWidth",30).attr("markerHeight",18).attr("markerUnits","userSpaceOnUse").attr("orient","auto");l.append("circle").attr("fill",a??"white").attr("cx",9).attr("cy",9).attr("stroke-width",`${o}`).attr("r",6),l.append("path").attr("d","M21,0 L21,18").attr("stroke-width",`${o}`)},"zero_or_one_neo"),JS=p((e,t,r)=>{const i=Jt(),{themeVariables:s}=i,{strokeWidth:o}=s;e.append("defs").append("marker").attr("id",r+"_"+t+"-oneOrMoreStart").attr("class","marker oneOrMore "+t).attr("refX",18).attr("refY",18).attr("markerWidth",45).attr("markerHeight",36).attr("orient","auto").attr("markerUnits","userSpaceOnUse").append("path").attr("d","M0,18 Q 18,0 36,18 Q 18,36 0,18 M42,9 L42,27").attr("stroke-width",`${o}`),e.append("defs").append("marker").attr("id",r+"_"+t+"-oneOrMoreEnd").attr("class","marker oneOrMore "+t).attr("refX",27).attr("refY",18).attr("markerWidth",45).attr("markerHeight",36).attr("markerUnits","userSpaceOnUse").attr("orient","auto").append("path").attr("d","M3,9 L3,27 M9,18 Q27,0 45,18 Q27,36 9,18").attr("stroke-width",`${o}`)},"one_or_more_neo"),tv=p((e,t,r)=>{const i=Jt(),{themeVariables:s}=i,{strokeWidth:o,mainBkg:a}=s,n=e.append("defs").append("marker").attr("id",r+"_"+t+"-zeroOrMoreStart").attr("class","marker zeroOrMore "+t).attr("refX",18).attr("refY",18).attr("markerWidth",57).attr("markerHeight",36).attr("markerUnits","userSpaceOnUse").attr("orient","auto");n.append("circle").attr("fill",a??"white").attr("cx",45.5).attr("cy",18).attr("r",6).attr("stroke-width",`${o}`),n.append("path").attr("d","M0,18 Q18,0 36,18 Q18,36 0,18").attr("stroke-width",`${o}`);const l=e.append("defs").append("marker").attr("id",r+"_"+t+"-zeroOrMoreEnd").attr("class","marker zeroOrMore "+t).attr("refX",39).attr("refY",18).attr("markerWidth",57).attr("markerHeight",36).attr("orient","auto").attr("markerUnits","userSpaceOnUse");l.append("circle").attr("fill",a??"white").attr("cx",11).attr("cy",18).attr("r",6).attr("stroke-width",`${o}`),l.append("path").attr("d","M21,18 Q39,0 57,18 Q39,36 21,18").attr("stroke-width",`${o}`)},"zero_or_more_neo"),ev=p((e,t,r)=>{e.append("defs").append("marker").attr("id",r+"_"+t+"-requirement_arrowEnd").attr("refX",20).attr("refY",10).attr("markerWidth",20).attr("markerHeight",20).attr("orient","auto").append("path").attr("d",`M0,0
|
|
265
|
+
L20,10
|
|
266
|
+
M20,10
|
|
267
|
+
L0,20`)},"requirement_arrow"),rv=p((e,t,r)=>{const i=Jt(),{themeVariables:s}=i,{strokeWidth:o}=s;e.append("defs").append("marker").attr("id",r+"_"+t+"-requirement_arrowEnd").attr("refX",20).attr("refY",10).attr("markerWidth",20).attr("markerHeight",20).attr("orient","auto").attr("markerUnits","userSpaceOnUse").attr("stroke-width",`${o}`).attr("viewBox","0 0 25 20").append("path").attr("d",`M0,0
|
|
268
|
+
L20,10
|
|
269
|
+
M20,10
|
|
270
|
+
L0,20`).attr("stroke-linejoin","miter")},"requirement_arrow_neo"),iv=p((e,t,r)=>{const i=e.append("defs").append("marker").attr("id",r+"_"+t+"-requirement_containsStart").attr("refX",0).attr("refY",10).attr("markerWidth",20).attr("markerHeight",20).attr("orient","auto").append("g");i.append("circle").attr("cx",10).attr("cy",10).attr("r",9).attr("fill","none"),i.append("line").attr("x1",1).attr("x2",19).attr("y1",10).attr("y2",10),i.append("line").attr("y1",1).attr("y2",19).attr("x1",10).attr("x2",10)},"requirement_contains"),sv=p((e,t,r)=>{const i=Jt(),{themeVariables:s}=i,{strokeWidth:o}=s,a=e.append("defs").append("marker").attr("id",r+"_"+t+"-requirement_containsStart").attr("refX",0).attr("refY",10).attr("markerWidth",20).attr("markerHeight",20).attr("orient","auto").attr("markerUnits","userSpaceOnUse").append("g");a.append("circle").attr("cx",10).attr("cy",10).attr("r",9).attr("fill","none"),a.append("line").attr("x1",1).attr("x2",19).attr("y1",10).attr("y2",10),a.append("line").attr("y1",1).attr("y2",19).attr("x1",10).attr("x2",10),a.selectAll("*").attr("stroke-width",`${o}`)},"requirement_contains_neo"),ov={extension:PS,composition:RS,aggregation:NS,dependency:qS,lollipop:zS,point:WS,circle:HS,cross:YS,barb:jS,barbNeo:US,only_one:GS,zero_or_one:XS,one_or_more:VS,zero_or_more:ZS,only_one_neo:KS,zero_or_one_neo:QS,one_or_more_neo:JS,zero_or_more_neo:tv,requirement_arrow:ev,requirement_contains:iv,requirement_arrow_neo:rv,requirement_contains_neo:sv},uy=IS,dy=typeof global=="object"&&global&&global.Object===Object&&global,av=typeof self=="object"&&self&&self.Object===Object&&self,Lr=dy||av||Function("return this")(),ur=Lr.Symbol,fy=Object.prototype,nv=fy.hasOwnProperty,lv=fy.toString,bs=ur?ur.toStringTag:void 0;function hv(e){var t=nv.call(e,bs),r=e[bs];try{e[bs]=void 0;var i=!0}catch{}var s=lv.call(e);return i&&(t?e[bs]=r:delete e[bs]),s}var cv=Object.prototype,uv=cv.toString;function dv(e){return uv.call(e)}var fv="[object Null]",pv="[object Undefined]",ld=ur?ur.toStringTag:void 0;function is(e){return e==null?e===void 0?pv:fv:ld&&ld in Object(e)?hv(e):dv(e)}function hi(e){return e!=null&&typeof e=="object"}var gv="[object Symbol]";function Mh(e){return typeof e=="symbol"||hi(e)&&is(e)==gv}function py(e,t){for(var r=-1,i=e==null?0:e.length,s=Array(i);++r<i;)s[r]=t(e[r],r,e);return s}var $e=Array.isArray,hd=ur?ur.prototype:void 0,cd=hd?hd.toString:void 0;function gy(e){if(typeof e=="string")return e;if($e(e))return py(e,gy)+"";if(Mh(e))return cd?cd.call(e):"";var t=e+"";return t=="0"&&1/e==-1/0?"-0":t}function $h(e){var t=typeof e;return e!=null&&(t=="object"||t=="function")}function Aa(e){return e}var mv="[object AsyncFunction]",yv="[object Function]",xv="[object GeneratorFunction]",Cv="[object Proxy]";function da(e){if(!$h(e))return!1;var t=is(e);return t==yv||t==xv||t==mv||t==Cv}var xn=Lr["__core-js_shared__"],ud=(function(){var e=/[^.]+$/.exec(xn&&xn.keys&&xn.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""})();function bv(e){return!!ud&&ud in e}var kv=Function.prototype,wv=kv.toString;function pi(e){if(e!=null){try{return wv.call(e)}catch{}try{return e+""}catch{}}return""}var Tv=/[\\^$.*+?()[\]{}|]/g,_v=/^\[object .+?Constructor\]$/,Sv=Function.prototype,vv=Object.prototype,Bv=Sv.toString,Lv=vv.hasOwnProperty,Fv=RegExp("^"+Bv.call(Lv).replace(Tv,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function Av(e){if(!$h(e)||bv(e))return!1;var t=da(e)?Fv:_v;return t.test(pi(e))}function Ev(e,t){return e==null?void 0:e[t]}function gi(e,t){var r=Ev(e,t);return Av(r)?r:void 0}var Bl=gi(Lr,"WeakMap");function Mv(e,t,r){switch(r.length){case 0:return e.call(t);case 1:return e.call(t,r[0]);case 2:return e.call(t,r[0],r[1]);case 3:return e.call(t,r[0],r[1],r[2])}return e.apply(t,r)}function $v(){}var Ov=800,Dv=16,Iv=Date.now;function Pv(e){var t=0,r=0;return function(){var i=Iv(),s=Dv-(i-r);if(r=i,s>0){if(++t>=Ov)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}function As(e){return function(){return e}}var dd=(function(){try{var e=gi(Object,"defineProperty");return e({},"",{}),e}catch{}})(),Rv=dd?function(e,t){return dd(e,"toString",{configurable:!0,enumerable:!1,value:As(t),writable:!0})}:Aa,Nv=Pv(Rv);function qv(e,t){for(var r=-1,i=e==null?0:e.length;++r<i&&t(e[r],r,e)!==!1;);return e}function zv(e,t,r,i){for(var s=e.length,o=r+-1;++o<s;)if(t(e[o],o,e))return o;return-1}function Wv(e){return e!==e}function Hv(e,t,r){for(var i=r-1,s=e.length;++i<s;)if(e[i]===t)return i;return-1}function Yv(e,t,r){return t===t?Hv(e,t,r):zv(e,Wv,r)}function jv(e,t){var r=e==null?0:e.length;return!!r&&Yv(e,t,0)>-1}var Uv=9007199254740991,Gv=/^(?:0|[1-9]\d*)$/;function my(e,t){var r=typeof e;return t=t??Uv,!!t&&(r=="number"||r!="symbol"&&Gv.test(e))&&e>-1&&e%1==0&&e<t}function yy(e,t){return e===t||e!==e&&t!==t}var fd=Math.max;function Xv(e,t,r){return t=fd(t===void 0?e.length-1:t,0),function(){for(var i=arguments,s=-1,o=fd(i.length-t,0),a=Array(o);++s<o;)a[s]=i[t+s];s=-1;for(var n=Array(t+1);++s<t;)n[s]=i[s];return n[t]=r(a),Mv(e,this,n)}}function Vv(e,t){return Nv(Xv(e,t,Aa),e+"")}var Zv=9007199254740991;function Oh(e){return typeof e=="number"&&e>-1&&e%1==0&&e<=Zv}function Ea(e){return e!=null&&Oh(e.length)&&!da(e)}var Kv=Object.prototype;function xy(e){var t=e&&e.constructor,r=typeof t=="function"&&t.prototype||Kv;return e===r}function Qv(e,t){for(var r=-1,i=Array(e);++r<e;)i[r]=t(r);return i}var Jv="[object Arguments]";function pd(e){return hi(e)&&is(e)==Jv}var Cy=Object.prototype,tB=Cy.hasOwnProperty,eB=Cy.propertyIsEnumerable,Ma=pd((function(){return arguments})())?pd:function(e){return hi(e)&&tB.call(e,"callee")&&!eB.call(e,"callee")};function rB(){return!1}var by=typeof exports=="object"&&exports&&!exports.nodeType&&exports,gd=by&&typeof module=="object"&&module&&!module.nodeType&&module,iB=gd&&gd.exports===by,md=iB?Lr.Buffer:void 0,sB=md?md.isBuffer:void 0,fa=sB||rB,oB="[object Arguments]",aB="[object Array]",nB="[object Boolean]",lB="[object Date]",hB="[object Error]",cB="[object Function]",uB="[object Map]",dB="[object Number]",fB="[object Object]",pB="[object RegExp]",gB="[object Set]",mB="[object String]",yB="[object WeakMap]",xB="[object ArrayBuffer]",CB="[object DataView]",bB="[object Float32Array]",kB="[object Float64Array]",wB="[object Int8Array]",TB="[object Int16Array]",_B="[object Int32Array]",SB="[object Uint8Array]",vB="[object Uint8ClampedArray]",BB="[object Uint16Array]",LB="[object Uint32Array]",Kt={};Kt[bB]=Kt[kB]=Kt[wB]=Kt[TB]=Kt[_B]=Kt[SB]=Kt[vB]=Kt[BB]=Kt[LB]=!0;Kt[oB]=Kt[aB]=Kt[xB]=Kt[nB]=Kt[CB]=Kt[lB]=Kt[hB]=Kt[cB]=Kt[uB]=Kt[dB]=Kt[fB]=Kt[pB]=Kt[gB]=Kt[mB]=Kt[yB]=!1;function FB(e){return hi(e)&&Oh(e.length)&&!!Kt[is(e)]}function AB(e){return function(t){return e(t)}}var ky=typeof exports=="object"&&exports&&!exports.nodeType&&exports,Ps=ky&&typeof module=="object"&&module&&!module.nodeType&&module,EB=Ps&&Ps.exports===ky,Cn=EB&&dy.process,yd=(function(){try{var e=Ps&&Ps.require&&Ps.require("util").types;return e||Cn&&Cn.binding&&Cn.binding("util")}catch{}})(),xd=yd&&yd.isTypedArray,Dh=xd?AB(xd):FB,MB=Object.prototype,$B=MB.hasOwnProperty;function OB(e,t){var r=$e(e),i=!r&&Ma(e),s=!r&&!i&&fa(e),o=!r&&!i&&!s&&Dh(e),a=r||i||s||o,n=a?Qv(e.length,String):[],l=n.length;for(var c in e)(t||$B.call(e,c))&&!(a&&(c=="length"||s&&(c=="offset"||c=="parent")||o&&(c=="buffer"||c=="byteLength"||c=="byteOffset")||my(c,l)))&&n.push(c);return n}function DB(e,t){return function(r){return e(t(r))}}var IB=DB(Object.keys,Object),PB=Object.prototype,RB=PB.hasOwnProperty;function wy(e){if(!xy(e))return IB(e);var t=[];for(var r in Object(e))RB.call(e,r)&&r!="constructor"&&t.push(r);return t}function nr(e){return Ea(e)?OB(e):wy(e)}var NB=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,qB=/^\w*$/;function Ih(e,t){if($e(e))return!1;var r=typeof e;return r=="number"||r=="symbol"||r=="boolean"||e==null||Mh(e)?!0:qB.test(e)||!NB.test(e)||t!=null&&e in Object(t)}var Ys=gi(Object,"create");function zB(){this.__data__=Ys?Ys(null):{},this.size=0}function WB(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}var HB="__lodash_hash_undefined__",YB=Object.prototype,jB=YB.hasOwnProperty;function UB(e){var t=this.__data__;if(Ys){var r=t[e];return r===HB?void 0:r}return jB.call(t,e)?t[e]:void 0}var GB=Object.prototype,XB=GB.hasOwnProperty;function VB(e){var t=this.__data__;return Ys?t[e]!==void 0:XB.call(t,e)}var ZB="__lodash_hash_undefined__";function KB(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=Ys&&t===void 0?ZB:t,this}function ci(e){var t=-1,r=e==null?0:e.length;for(this.clear();++t<r;){var i=e[t];this.set(i[0],i[1])}}ci.prototype.clear=zB;ci.prototype.delete=WB;ci.prototype.get=UB;ci.prototype.has=VB;ci.prototype.set=KB;function QB(){this.__data__=[],this.size=0}function $a(e,t){for(var r=e.length;r--;)if(yy(e[r][0],t))return r;return-1}var JB=Array.prototype,tL=JB.splice;function eL(e){var t=this.__data__,r=$a(t,e);if(r<0)return!1;var i=t.length-1;return r==i?t.pop():tL.call(t,r,1),--this.size,!0}function rL(e){var t=this.__data__,r=$a(t,e);return r<0?void 0:t[r][1]}function iL(e){return $a(this.__data__,e)>-1}function sL(e,t){var r=this.__data__,i=$a(r,e);return i<0?(++this.size,r.push([e,t])):r[i][1]=t,this}function Fr(e){var t=-1,r=e==null?0:e.length;for(this.clear();++t<r;){var i=e[t];this.set(i[0],i[1])}}Fr.prototype.clear=QB;Fr.prototype.delete=eL;Fr.prototype.get=rL;Fr.prototype.has=iL;Fr.prototype.set=sL;var js=gi(Lr,"Map");function oL(){this.size=0,this.__data__={hash:new ci,map:new(js||Fr),string:new ci}}function aL(e){var t=typeof e;return t=="string"||t=="number"||t=="symbol"||t=="boolean"?e!=="__proto__":e===null}function Oa(e,t){var r=e.__data__;return aL(t)?r[typeof t=="string"?"string":"hash"]:r.map}function nL(e){var t=Oa(this,e).delete(e);return this.size-=t?1:0,t}function lL(e){return Oa(this,e).get(e)}function hL(e){return Oa(this,e).has(e)}function cL(e,t){var r=Oa(this,e),i=r.size;return r.set(e,t),this.size+=r.size==i?0:1,this}function Ar(e){var t=-1,r=e==null?0:e.length;for(this.clear();++t<r;){var i=e[t];this.set(i[0],i[1])}}Ar.prototype.clear=oL;Ar.prototype.delete=nL;Ar.prototype.get=lL;Ar.prototype.has=hL;Ar.prototype.set=cL;var uL="Expected a function";function Ph(e,t){if(typeof e!="function"||t!=null&&typeof t!="function")throw new TypeError(uL);var r=function(){var i=arguments,s=t?t.apply(this,i):i[0],o=r.cache;if(o.has(s))return o.get(s);var a=e.apply(this,i);return r.cache=o.set(s,a)||o,a};return r.cache=new(Ph.Cache||Ar),r}Ph.Cache=Ar;var dL=500;function fL(e){var t=Ph(e,function(i){return r.size===dL&&r.clear(),i}),r=t.cache;return t}var pL=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,gL=/\\(\\)?/g,mL=fL(function(e){var t=[];return e.charCodeAt(0)===46&&t.push(""),e.replace(pL,function(r,i,s,o){t.push(s?o.replace(gL,"$1"):i||r)}),t});function yL(e){return e==null?"":gy(e)}function Ty(e,t){return $e(e)?e:Ih(e,t)?[e]:mL(yL(e))}function Da(e){if(typeof e=="string"||Mh(e))return e;var t=e+"";return t=="0"&&1/e==-1/0?"-0":t}function _y(e,t){t=Ty(t,e);for(var r=0,i=t.length;e!=null&&r<i;)e=e[Da(t[r++])];return r&&r==i?e:void 0}function xL(e,t,r){var i=e==null?void 0:_y(e,t);return i===void 0?r:i}function Sy(e,t){for(var r=-1,i=t.length,s=e.length;++r<i;)e[s+r]=t[r];return e}var Cd=ur?ur.isConcatSpreadable:void 0;function CL(e){return $e(e)||Ma(e)||!!(Cd&&e&&e[Cd])}function bL(e,t,r,i,s){var o=-1,a=e.length;for(r||(r=CL),s||(s=[]);++o<a;){var n=e[o];r(n)?Sy(s,n):i||(s[s.length]=n)}return s}function kL(e,t,r,i){var s=-1,o=e==null?0:e.length;for(i&&o&&(r=e[++s]);++s<o;)r=t(r,e[s],s,e);return r}function wL(){this.__data__=new Fr,this.size=0}function TL(e){var t=this.__data__,r=t.delete(e);return this.size=t.size,r}function _L(e){return this.__data__.get(e)}function SL(e){return this.__data__.has(e)}var vL=200;function BL(e,t){var r=this.__data__;if(r instanceof Fr){var i=r.__data__;if(!js||i.length<vL-1)return i.push([e,t]),this.size=++r.size,this;r=this.__data__=new Ar(i)}return r.set(e,t),this.size=r.size,this}function Sr(e){var t=this.__data__=new Fr(e);this.size=t.size}Sr.prototype.clear=wL;Sr.prototype.delete=TL;Sr.prototype.get=_L;Sr.prototype.has=SL;Sr.prototype.set=BL;function vy(e,t){for(var r=-1,i=e==null?0:e.length,s=0,o=[];++r<i;){var a=e[r];t(a,r,e)&&(o[s++]=a)}return o}function LL(){return[]}var FL=Object.prototype,AL=FL.propertyIsEnumerable,bd=Object.getOwnPropertySymbols,EL=bd?function(e){return e==null?[]:(e=Object(e),vy(bd(e),function(t){return AL.call(e,t)}))}:LL;function ML(e,t,r){var i=t(e);return $e(e)?i:Sy(i,r(e))}function kd(e){return ML(e,nr,EL)}var Ll=gi(Lr,"DataView"),Fl=gi(Lr,"Promise"),Ei=gi(Lr,"Set"),wd="[object Map]",$L="[object Object]",Td="[object Promise]",_d="[object Set]",Sd="[object WeakMap]",vd="[object DataView]",OL=pi(Ll),DL=pi(js),IL=pi(Fl),PL=pi(Ei),RL=pi(Bl),Tr=is;(Ll&&Tr(new Ll(new ArrayBuffer(1)))!=vd||js&&Tr(new js)!=wd||Fl&&Tr(Fl.resolve())!=Td||Ei&&Tr(new Ei)!=_d||Bl&&Tr(new Bl)!=Sd)&&(Tr=function(e){var t=is(e),r=t==$L?e.constructor:void 0,i=r?pi(r):"";if(i)switch(i){case OL:return vd;case DL:return wd;case IL:return Td;case PL:return _d;case RL:return Sd}return t});var Bd=Lr.Uint8Array,NL="__lodash_hash_undefined__";function qL(e){return this.__data__.set(e,NL),this}function zL(e){return this.__data__.has(e)}function Us(e){var t=-1,r=e==null?0:e.length;for(this.__data__=new Ar;++t<r;)this.add(e[t])}Us.prototype.add=Us.prototype.push=qL;Us.prototype.has=zL;function WL(e,t){for(var r=-1,i=e==null?0:e.length;++r<i;)if(t(e[r],r,e))return!0;return!1}function By(e,t){return e.has(t)}var HL=1,YL=2;function Ly(e,t,r,i,s,o){var a=r&HL,n=e.length,l=t.length;if(n!=l&&!(a&&l>n))return!1;var c=o.get(e),h=o.get(t);if(c&&h)return c==t&&h==e;var u=-1,d=!0,f=r&YL?new Us:void 0;for(o.set(e,t),o.set(t,e);++u<n;){var m=e[u],y=t[u];if(i)var C=a?i(y,m,u,t,e,o):i(m,y,u,e,t,o);if(C!==void 0){if(C)continue;d=!1;break}if(f){if(!WL(t,function(x,b){if(!By(f,b)&&(m===x||s(m,x,r,i,o)))return f.push(b)})){d=!1;break}}else if(!(m===y||s(m,y,r,i,o))){d=!1;break}}return o.delete(e),o.delete(t),d}function jL(e){var t=-1,r=Array(e.size);return e.forEach(function(i,s){r[++t]=[s,i]}),r}function Rh(e){var t=-1,r=Array(e.size);return e.forEach(function(i){r[++t]=i}),r}var UL=1,GL=2,XL="[object Boolean]",VL="[object Date]",ZL="[object Error]",KL="[object Map]",QL="[object Number]",JL="[object RegExp]",tF="[object Set]",eF="[object String]",rF="[object Symbol]",iF="[object ArrayBuffer]",sF="[object DataView]",Ld=ur?ur.prototype:void 0,bn=Ld?Ld.valueOf:void 0;function oF(e,t,r,i,s,o,a){switch(r){case sF:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case iF:return!(e.byteLength!=t.byteLength||!o(new Bd(e),new Bd(t)));case XL:case VL:case QL:return yy(+e,+t);case ZL:return e.name==t.name&&e.message==t.message;case JL:case eF:return e==t+"";case KL:var n=jL;case tF:var l=i&UL;if(n||(n=Rh),e.size!=t.size&&!l)return!1;var c=a.get(e);if(c)return c==t;i|=GL,a.set(e,t);var h=Ly(n(e),n(t),i,s,o,a);return a.delete(e),h;case rF:if(bn)return bn.call(e)==bn.call(t)}return!1}var aF=1,nF=Object.prototype,lF=nF.hasOwnProperty;function hF(e,t,r,i,s,o){var a=r&aF,n=kd(e),l=n.length,c=kd(t),h=c.length;if(l!=h&&!a)return!1;for(var u=l;u--;){var d=n[u];if(!(a?d in t:lF.call(t,d)))return!1}var f=o.get(e),m=o.get(t);if(f&&m)return f==t&&m==e;var y=!0;o.set(e,t),o.set(t,e);for(var C=a;++u<l;){d=n[u];var x=e[d],b=t[d];if(i)var w=a?i(b,x,d,t,e,o):i(x,b,d,e,t,o);if(!(w===void 0?x===b||s(x,b,r,i,o):w)){y=!1;break}C||(C=d=="constructor")}if(y&&!C){var _=e.constructor,v=t.constructor;_!=v&&"constructor"in e&&"constructor"in t&&!(typeof _=="function"&&_ instanceof _&&typeof v=="function"&&v instanceof v)&&(y=!1)}return o.delete(e),o.delete(t),y}var cF=1,Fd="[object Arguments]",Ad="[object Array]",_o="[object Object]",uF=Object.prototype,Ed=uF.hasOwnProperty;function dF(e,t,r,i,s,o){var a=$e(e),n=$e(t),l=a?Ad:Tr(e),c=n?Ad:Tr(t);l=l==Fd?_o:l,c=c==Fd?_o:c;var h=l==_o,u=c==_o,d=l==c;if(d&&fa(e)){if(!fa(t))return!1;a=!0,h=!1}if(d&&!h)return o||(o=new Sr),a||Dh(e)?Ly(e,t,r,i,s,o):oF(e,t,l,r,i,s,o);if(!(r&cF)){var f=h&&Ed.call(e,"__wrapped__"),m=u&&Ed.call(t,"__wrapped__");if(f||m){var y=f?e.value():e,C=m?t.value():t;return o||(o=new Sr),s(y,C,r,i,o)}}return d?(o||(o=new Sr),hF(e,t,r,i,s,o)):!1}function Nh(e,t,r,i,s){return e===t?!0:e==null||t==null||!hi(e)&&!hi(t)?e!==e&&t!==t:dF(e,t,r,i,Nh,s)}var fF=1,pF=2;function gF(e,t,r,i){var s=r.length,o=s;if(e==null)return!o;for(e=Object(e);s--;){var a=r[s];if(a[2]?a[1]!==e[a[0]]:!(a[0]in e))return!1}for(;++s<o;){a=r[s];var n=a[0],l=e[n],c=a[1];if(a[2]){if(l===void 0&&!(n in e))return!1}else{var h=new Sr,u;if(!(u===void 0?Nh(c,l,fF|pF,i,h):u))return!1}}return!0}function Fy(e){return e===e&&!$h(e)}function mF(e){for(var t=nr(e),r=t.length;r--;){var i=t[r],s=e[i];t[r]=[i,s,Fy(s)]}return t}function Ay(e,t){return function(r){return r==null?!1:r[e]===t&&(t!==void 0||e in Object(r))}}function yF(e){var t=mF(e);return t.length==1&&t[0][2]?Ay(t[0][0],t[0][1]):function(r){return r===e||gF(r,e,t)}}function xF(e,t){return e!=null&&t in Object(e)}function CF(e,t,r){t=Ty(t,e);for(var i=-1,s=t.length,o=!1;++i<s;){var a=Da(t[i]);if(!(o=e!=null&&r(e,a)))break;e=e[a]}return o||++i!=s?o:(s=e==null?0:e.length,!!s&&Oh(s)&&my(a,s)&&($e(e)||Ma(e)))}function bF(e,t){return e!=null&&CF(e,t,xF)}var kF=1,wF=2;function TF(e,t){return Ih(e)&&Fy(t)?Ay(Da(e),t):function(r){var i=xL(r,e);return i===void 0&&i===t?bF(r,e):Nh(t,i,kF|wF)}}function _F(e){return function(t){return t==null?void 0:t[e]}}function SF(e){return function(t){return _y(t,e)}}function vF(e){return Ih(e)?_F(Da(e)):SF(e)}function Ey(e){return typeof e=="function"?e:e==null?Aa:typeof e=="object"?$e(e)?TF(e[0],e[1]):yF(e):vF(e)}function BF(e){return function(t,r,i){for(var s=-1,o=Object(t),a=i(t),n=a.length;n--;){var l=a[++s];if(r(o[l],l,o)===!1)break}return t}}var LF=BF();function FF(e,t){return e&&LF(e,t,nr)}function AF(e,t){return function(r,i){if(r==null)return r;if(!Ea(r))return e(r,i);for(var s=r.length,o=-1,a=Object(r);++o<s&&i(a[o],o,a)!==!1;);return r}}var qh=AF(FF);function EF(e){return hi(e)&&Ea(e)}function MF(e){return typeof e=="function"?e:Aa}function Xr(e,t){var r=$e(e)?qv:qh;return r(e,MF(t))}function $F(e,t){var r=[];return qh(e,function(i,s,o){t(i,s,o)&&r.push(i)}),r}function So(e,t){var r=$e(e)?vy:$F;return r(e,Ey(t))}function OF(e,t){return py(t,function(r){return e[r]})}function kn(e){return e==null?[]:OF(e,nr(e))}var DF="[object Map]",IF="[object Set]",PF=Object.prototype,RF=PF.hasOwnProperty;function Md(e){if(e==null)return!0;if(Ea(e)&&($e(e)||typeof e=="string"||typeof e.splice=="function"||fa(e)||Dh(e)||Ma(e)))return!e.length;var t=Tr(e);if(t==DF||t==IF)return!e.size;if(xy(e))return!wy(e).length;for(var r in e)if(RF.call(e,r))return!1;return!0}function vi(e){return e===void 0}function NF(e,t,r,i,s){return s(e,function(o,a,n){r=i?(i=!1,o):t(r,o,a,n)}),r}function qF(e,t,r){var i=$e(e)?kL:NF,s=arguments.length<3;return i(e,Ey(t),r,s,qh)}var zF=1/0,WF=Ei&&1/Rh(new Ei([,-0]))[1]==zF?function(e){return new Ei(e)}:$v,HF=200;function YF(e,t,r){var i=-1,s=jv,o=e.length,a=!0,n=[],l=n;if(o>=HF){var c=WF(e);if(c)return Rh(c);a=!1,s=By,l=new Us}else l=n;t:for(;++i<o;){var h=e[i],u=h;if(h=h!==0?h:0,a&&u===u){for(var d=l.length;d--;)if(l[d]===u)continue t;n.push(h)}else s(l,u,r)||(l!==n&&l.push(u),n.push(h))}return n}var jF=Vv(function(e){return YF(bL(e,1,EF,!0))}),UF="\0",Vr="\0",$d="";class Ia{constructor(t={}){this._isDirected=Object.prototype.hasOwnProperty.call(t,"directed")?t.directed:!0,this._isMultigraph=Object.prototype.hasOwnProperty.call(t,"multigraph")?t.multigraph:!1,this._isCompound=Object.prototype.hasOwnProperty.call(t,"compound")?t.compound:!1,this._label=void 0,this._defaultNodeLabelFn=As(void 0),this._defaultEdgeLabelFn=As(void 0),this._nodes={},this._isCompound&&(this._parent={},this._children={},this._children[Vr]={}),this._in={},this._preds={},this._out={},this._sucs={},this._edgeObjs={},this._edgeLabels={}}isDirected(){return this._isDirected}isMultigraph(){return this._isMultigraph}isCompound(){return this._isCompound}setGraph(t){return this._label=t,this}graph(){return this._label}setDefaultNodeLabel(t){return da(t)||(t=As(t)),this._defaultNodeLabelFn=t,this}nodeCount(){return this._nodeCount}nodes(){return nr(this._nodes)}sources(){var t=this;return So(this.nodes(),function(r){return Md(t._in[r])})}sinks(){var t=this;return So(this.nodes(),function(r){return Md(t._out[r])})}setNodes(t,r){var i=arguments,s=this;return Xr(t,function(o){i.length>1?s.setNode(o,r):s.setNode(o)}),this}setNode(t,r){return Object.prototype.hasOwnProperty.call(this._nodes,t)?(arguments.length>1&&(this._nodes[t]=r),this):(this._nodes[t]=arguments.length>1?r:this._defaultNodeLabelFn(t),this._isCompound&&(this._parent[t]=Vr,this._children[t]={},this._children[Vr][t]=!0),this._in[t]={},this._preds[t]={},this._out[t]={},this._sucs[t]={},++this._nodeCount,this)}node(t){return this._nodes[t]}hasNode(t){return Object.prototype.hasOwnProperty.call(this._nodes,t)}removeNode(t){if(Object.prototype.hasOwnProperty.call(this._nodes,t)){var r=i=>this.removeEdge(this._edgeObjs[i]);delete this._nodes[t],this._isCompound&&(this._removeFromParentsChildList(t),delete this._parent[t],Xr(this.children(t),i=>{this.setParent(i)}),delete this._children[t]),Xr(nr(this._in[t]),r),delete this._in[t],delete this._preds[t],Xr(nr(this._out[t]),r),delete this._out[t],delete this._sucs[t],--this._nodeCount}return this}setParent(t,r){if(!this._isCompound)throw new Error("Cannot set parent in a non-compound graph");if(vi(r))r=Vr;else{r+="";for(var i=r;!vi(i);i=this.parent(i))if(i===t)throw new Error("Setting "+r+" as parent of "+t+" would create a cycle");this.setNode(r)}return this.setNode(t),this._removeFromParentsChildList(t),this._parent[t]=r,this._children[r][t]=!0,this}_removeFromParentsChildList(t){delete this._children[this._parent[t]][t]}parent(t){if(this._isCompound){var r=this._parent[t];if(r!==Vr)return r}}children(t){if(vi(t)&&(t=Vr),this._isCompound){var r=this._children[t];if(r)return nr(r)}else{if(t===Vr)return this.nodes();if(this.hasNode(t))return[]}}predecessors(t){var r=this._preds[t];if(r)return nr(r)}successors(t){var r=this._sucs[t];if(r)return nr(r)}neighbors(t){var r=this.predecessors(t);if(r)return jF(r,this.successors(t))}isLeaf(t){var r;return this.isDirected()?r=this.successors(t):r=this.neighbors(t),r.length===0}filterNodes(t){var r=new this.constructor({directed:this._isDirected,multigraph:this._isMultigraph,compound:this._isCompound});r.setGraph(this.graph());var i=this;Xr(this._nodes,function(a,n){t(n)&&r.setNode(n,a)}),Xr(this._edgeObjs,function(a){r.hasNode(a.v)&&r.hasNode(a.w)&&r.setEdge(a,i.edge(a))});var s={};function o(a){var n=i.parent(a);return n===void 0||r.hasNode(n)?(s[a]=n,n):n in s?s[n]:o(n)}return this._isCompound&&Xr(r.nodes(),function(a){r.setParent(a,o(a))}),r}setDefaultEdgeLabel(t){return da(t)||(t=As(t)),this._defaultEdgeLabelFn=t,this}edgeCount(){return this._edgeCount}edges(){return kn(this._edgeObjs)}setPath(t,r){var i=this,s=arguments;return qF(t,function(o,a){return s.length>1?i.setEdge(o,a,r):i.setEdge(o,a),a}),this}setEdge(){var t,r,i,s,o=!1,a=arguments[0];typeof a=="object"&&a!==null&&"v"in a?(t=a.v,r=a.w,i=a.name,arguments.length===2&&(s=arguments[1],o=!0)):(t=a,r=arguments[1],i=arguments[3],arguments.length>2&&(s=arguments[2],o=!0)),t=""+t,r=""+r,vi(i)||(i=""+i);var n=Es(this._isDirected,t,r,i);if(Object.prototype.hasOwnProperty.call(this._edgeLabels,n))return o&&(this._edgeLabels[n]=s),this;if(!vi(i)&&!this._isMultigraph)throw new Error("Cannot set a named edge when isMultigraph = false");this.setNode(t),this.setNode(r),this._edgeLabels[n]=o?s:this._defaultEdgeLabelFn(t,r,i);var l=GF(this._isDirected,t,r,i);return t=l.v,r=l.w,Object.freeze(l),this._edgeObjs[n]=l,Od(this._preds[r],t),Od(this._sucs[t],r),this._in[r][n]=l,this._out[t][n]=l,this._edgeCount++,this}edge(t,r,i){var s=arguments.length===1?wn(this._isDirected,arguments[0]):Es(this._isDirected,t,r,i);return this._edgeLabels[s]}hasEdge(t,r,i){var s=arguments.length===1?wn(this._isDirected,arguments[0]):Es(this._isDirected,t,r,i);return Object.prototype.hasOwnProperty.call(this._edgeLabels,s)}removeEdge(t,r,i){var s=arguments.length===1?wn(this._isDirected,arguments[0]):Es(this._isDirected,t,r,i),o=this._edgeObjs[s];return o&&(t=o.v,r=o.w,delete this._edgeLabels[s],delete this._edgeObjs[s],Dd(this._preds[r],t),Dd(this._sucs[t],r),delete this._in[r][s],delete this._out[t][s],this._edgeCount--),this}inEdges(t,r){var i=this._in[t];if(i){var s=kn(i);return r?So(s,function(o){return o.v===r}):s}}outEdges(t,r){var i=this._out[t];if(i){var s=kn(i);return r?So(s,function(o){return o.w===r}):s}}nodeEdges(t,r){var i=this.inEdges(t,r);if(i)return i.concat(this.outEdges(t,r))}}Ia.prototype._nodeCount=0;Ia.prototype._edgeCount=0;function Od(e,t){e[t]?e[t]++:e[t]=1}function Dd(e,t){--e[t]||delete e[t]}function Es(e,t,r,i){var s=""+t,o=""+r;if(!e&&s>o){var a=s;s=o,o=a}return s+$d+o+$d+(vi(i)?UF:i)}function GF(e,t,r,i){var s=""+t,o=""+r;if(!e&&s>o){var a=s;s=o,o=a}var n={v:s,w:o};return i&&(n.name=i),n}function wn(e,t){return Es(e,t.v,t.w,t.name)}function My(e,{edgePathsClass:t="edges edgePath"}={}){const r=e.insert("g").attr("class","root"),i=r.insert("g").attr("class","clusters"),s=r.insert("g").attr("class",t),o=r.insert("g").attr("class","edgeLabels"),a=r.insert("g").attr("class","nodes");return{clusters:i,edgePaths:s,edgeLabels:o,nodes:a,rootGroups:r}}p(My,"createLayoutElementGroups");async function $y(e,t){if(t.label){const{shapeSvg:r,bbox:i}=await _t(e,t);t.labelBBox={width:i.width,height:i.height},r.remove()}else t.labelBBox={width:0,height:0}}p($y,"measureGroupLabel");async function Oy(e,t,r){var o;const i=await Ah(e,t,r),s=((o=i.node())==null?void 0:o.getBBox())??{width:0,height:0};return t.width=s.width,t.height=s.height,i}p(Oy,"insertMeasuredNode");async function Dy(e,t){const r=new Ia({multigraph:!0,compound:!0}),i=[...t.edges],s=Wt(),o=My(e),{edgeLabels:a,nodes:n}=o,l=new Map,c=e.node()!=null;await Promise.all(t.nodes.map(async h=>{if(h.isGroup)c&&await $y(n,h),r.setNode(h.id,{...h});else{if(c){const u=await Oy(n,h,{config:s,dir:h.dir});l.set(h.id,u)}r.setNode(h.id,{...h})}}));for(const h of i)c&&ay(h)&&await Eh(a,h),r.setEdge(h.start,h.end,{...h},h.id),t.edges.some(d=>d.id===h.id)||t.edges.push(h);if(globalThis.mermaidCaptureSizes){const{captureNodeSizes:h}=await Rt(async()=>{const{captureNodeSizes:u}=await import("./sizeCapture-X5ZJPWSS-DdkXmLYR.js");return{captureNodeSizes:u}},__vite__mapDeps([2,0,1]));h(e,t)}return{graph:r,groups:o,nodeElements:l}}p(Dy,"createGraphWithElements");var Ht=new Map,ei=new Map,Iy=new Map,XF=p(()=>{ei.clear(),Iy.clear(),Ht.clear()},"clear"),Gs=p((e,t)=>{const r=ei.get(t)||[];return N.trace("In isDescendant",t," ",e," = ",r.includes(e)),r.includes(e)},"isDescendant"),VF=p((e,t)=>{const r=ei.get(t)||[];return N.info("Descendants of ",t," is ",r),N.info("Edge is ",e),e.v===t||e.w===t?!1:r?r.includes(e.v)||Gs(e.v,t)||Gs(e.w,t)||r.includes(e.w):(N.debug("Tilt, ",t,",not in descendants"),!1)},"edgeInCluster"),Py=p((e,t,r,i)=>{N.debug("Copying children of ",e,"root",i,"data",t.node(e),i);const s=t.children(e)||[];e!==i&&s.push(e),N.debug("Copying (nodes) clusterId",e,"nodes",s),s.forEach(o=>{if(t.children(o).length>0)Py(o,t,r,i);else{const a=t.node(o);N.info("cp ",o," to ",i," with parent ",e),r.setNode(o,a),i!==t.parent(o)&&(N.debug("Setting parent",o,t.parent(o)),r.setParent(o,t.parent(o))),e!==i&&o!==e?(N.debug("Setting parent",o,e),r.setParent(o,e)):(N.info("In copy ",e,"root",i,"data",t.node(e),i),N.debug("Not Setting parent for node=",o,"cluster!==rootId",e!==i,"node!==clusterId",o!==e));const n=t.edges(o);N.debug("Copying Edges",n),n.forEach(l=>{N.info("Edge",l);const c=t.edge(l.v,l.w,l.name);N.info("Edge data",c,i);try{VF(l,i)?(N.info("Copying as ",l.v,l.w,c,l.name),r.setEdge(l.v,l.w,c,l.name),N.info("newGraph edges ",r.edges(),r.edge(r.edges()[0]))):N.info("Skipping copy of edge ",l.v,"-->",l.w," rootId: ",i," clusterId:",e)}catch(h){N.error(h)}})}N.debug("Removing node",o),t.removeNode(o)})},"copy"),Ry=p((e,t)=>{const r=t.children(e);let i=[...r];for(const s of r)Iy.set(s,e),i=[...i,...Ry(s,t)];return i},"extractDescendants"),ZF=p((e,t,r)=>{const i=e.edges().filter(l=>l.v===t||l.w===t),s=e.edges().filter(l=>l.v===r||l.w===r),o=i.map(l=>({v:l.v===t?r:l.v,w:l.w===t?t:l.w})),a=s.map(l=>({v:l.v,w:l.w}));return o.filter(l=>a.some(c=>l.v===c.v&&l.w===c.w))},"findCommonEdges"),pa=p((e,t,r)=>{const i=t.children(e);if(N.trace("Searching children of id ",e,i),i.length<1)return e;let s;for(const o of i){const a=pa(o,t,r),n=ZF(t,r,a);if(a)if(n.length>0)s=a;else return a}return s},"findNonClusterChild"),Id=p(e=>!Ht.has(e)||!Ht.get(e).externalConnections?e:Ht.has(e)?Ht.get(e).id:e,"getAnchorId"),m3=p((e,t)=>{var r;if(!e||t>10){N.debug("Opting out, no graph ");return}else N.debug("Opting in, graph ");e.nodes().forEach(function(i){e.children(i).length>0&&(N.debug("Cluster identified",i," Replacement id in edges: ",pa(i,e,i)),ei.set(i,Ry(i,e)),Ht.set(i,{id:pa(i,e,i),clusterData:e.node(i)}))}),e.nodes().forEach(function(i){const s=e.children(i),o=e.edges();s.length>0?(N.debug("Cluster identified",i,ei),o.forEach(a=>{const n=Gs(a.v,i),l=Gs(a.w,i);n^l&&(N.debug("Edge: ",a," leaves cluster ",i),N.debug("Descendants of XXX ",i,": ",ei.get(i)),Ht.get(i).externalConnections=!0)})):N.debug("Not a cluster ",i,ei)});for(let i of Ht.keys()){const s=Ht.get(i).id,o=e.parent(s);o!==i&&Ht.has(o)&&!Ht.get(o).externalConnections&&(Ht.get(i).id=o);const a=e.edges().some(n=>n.v===i);if(s&&((r=Ht.get(i))!=null&&r.externalConnections)&&a&&zy(e,s,i)){const n=KF(e,i,e.parent(s));n&&(Ht.get(i).id=n)}}e.edges().forEach(function(i){const s=e.edge(i);N.debug("Edge "+i.v+" -> "+i.w+": "+JSON.stringify(i)),N.debug("Edge "+i.v+" -> "+i.w+": "+JSON.stringify(e.edge(i)));let o=i.v,a=i.w;if(N.debug("Fix XXX",Ht,"ids:",i.v,i.w,"Translating: ",Ht.get(i.v)," --- ",Ht.get(i.w)),Ht.get(i.v)||Ht.get(i.w)){if(N.debug("Fixing and trying - removing XXX",i.v,i.w,i.name),o=Id(i.v),a=Id(i.w),e.removeEdge(i.v,i.w,i.name),o!==i.v){const n=e.parent(o);Ht.get(n).externalConnections=!0,s.fromCluster=i.v}if(a!==i.w){const n=e.parent(a);Ht.get(n).externalConnections=!0,s.toCluster=i.w}N.debug("Fix Replacing with XXX",o,a,i.name),e.setEdge(o,a,s,i.name)}}),Ny(e,0),N.trace(Ht)},"adjustClustersAndEdges"),Ny=p((e,t)=>{var s,o;if(t>10){N.error("Bailing out");return}let r=e.nodes(),i=!1;for(const a of r){const n=e.children(a);i=i||n.length>0}if(!i){N.debug("Done, no node has children",e.nodes());return}N.debug("Nodes = ",r,t);for(const a of r)if(N.debug("Extracting node",a,Ht,Ht.has(a)&&!Ht.get(a).externalConnections,!e.parent(a),e.node(a),e.children("D")," Depth ",t),!Ht.has(a))N.debug("Not a cluster",a,t);else if(!Ht.get(a).externalConnections&&e.children(a)&&e.children(a).length>0){N.debug("Cluster without external connections, without a parent and with children",a,t);let l=e.graph().rankdir==="TB"?"LR":"TB";(o=(s=Ht.get(a))==null?void 0:s.clusterData)!=null&&o.dir&&(l=Ht.get(a).clusterData.dir,N.debug("Fixing dir",Ht.get(a).clusterData.dir,l));const c=new Ia({multigraph:!0,compound:!0}).setGraph({rankdir:l,nodesep:50,ranksep:50,marginx:8,marginy:8}).setDefaultEdgeLabel(function(){return{}});Py(a,e,c,a),e.setNode(a,{clusterNode:!0,id:a,clusterData:Ht.get(a).clusterData,label:Ht.get(a).label,graph:c})}else N.debug("Cluster ** ",a," **not meeting the criteria !externalConnections:",!Ht.get(a).externalConnections," no parent: ",!e.parent(a)," children ",e.children(a)&&e.children(a).length>0,e.children("D"),t),N.debug(Ht);r=e.nodes(),N.debug("New list of nodes",r);for(const a of r){const n=e.node(a);N.debug(" Now next level",a,n),n!=null&&n.clusterNode&&Ny(n.graph,t+1)}},"extractor"),qy=p((e,t)=>{if(t.length===0)return[];let r=Object.assign([],t);return t.forEach(i=>{const s=e.children(i),o=qy(e,s);r=[...r,...o]}),r},"sorter"),y3=p(e=>qy(e,e.children()),"sortNodesByHierarchy"),zy=p((e,t,r)=>{let i=e.parent(t);for(;i&&i!==r;){const s=Ht.get(i);if(s&&!s.externalConnections)return!0;i=e.parent(i)}return!1},"isNodeInExtractableCluster"),KF=p((e,t,r)=>{const i=e.children(t)??[];for(const s of i){if(s===r||Gs(s,r))continue;const o=pa(s,e,t);if(o&&!zy(e,o,t))return o}return null},"findSafeAnchorNode");function QF({prepareLayout:e,measureLayout:t,runLayoutCore:r,paintLayout:i,afterPaint:s,paintOptions:o}){const a=t??Hy;return p(async function(l,c,h,u){const d=c.select("g");uy(d,l.markers,l.type,l.diagramId),Wy();const f={element:d,helpers:h,options:u};f.preparedLayout=await(e==null?void 0:e(l,f));const m=await a(l,f),y=await r(l,f),C={...f,measure:m};i?await i(l,C,y):await Yy(l,C,o),await(s==null?void 0:s(l,C,y))},"render")}p(QF,"createCommonLayoutRenderer");function Wy(){gS(),FS(),TS(),XF()}p(Wy,"clearLayoutRenderState");async function Hy(e,{element:t}){return await Dy(t,e)}p(Hy,"defaultMeasureLayout");async function Yy(e,t,r={}){var a,n;const{measure:i}=t,{groups:s}=i;for(const l of((a=r.getNodes)==null?void 0:a.call(r,e,t))??e.nodes)(n=r.skipNode)!=null&&n.call(r,l,t)||await jy(s,l,t,r);const o=Gy(e.nodes);for(const l of e.edges)Xy(l,r)||await Vy(s,l,o,e,r,t)}p(Yy,"paintLayoutData");async function jy(e,t,r,i){t.clusterNode?id(t):Uy(t,r,i)?await oy(e.clusters,t):id(t)}p(jy,"paintLayoutNode");function Uy(e,t,r){var i;return e.isGroup===!0&&(((i=r.isCluster)==null?void 0:i.call(r,e,t))??!0)}p(Uy,"shouldPaintAsCluster");function Gy(e){const t=new Map;for(const r of e)r!=null&&r.id&&t.set(r.id,r);return t}p(Gy,"buildNodeLookup");function Xy(e,t){var r;return e.isLayoutOnly||!!((r=t.skipEdge)!=null&&r.call(t,e))}p(Xy,"shouldSkipPaintEdge");async function Vy(e,t,r,i,s,o){const a=ly(e.edgePaths,{...t},s.clusterDb??new Map,i.type,Al(t.start,t,r,o,s),Al(t.end,t,r,o,s),i.diagramId,Zy(t,s));ay(t)&&(Qi.has(t.id)||await Eh(e.edgeLabels,t),Ky(t,a))}p(Vy,"paintLayoutEdge");function Al(e,t,r,i,s){var o;return((o=s.getEdgeNode)==null?void 0:o.call(s,e,t,i))??(e?r.get(e)??{}:{})}p(Al,"getRenderedNode");function Zy(e,t){return typeof t.skipIntersect=="function"?t.skipIntersect(e):t.skipIntersect??!1}p(Zy,"shouldSkipIntersect");function Ky(e,t){const r=(t==null?void 0:t.updatedPath)??(t==null?void 0:t.originalPath),i=Jt(),{subGraphTitleTotalMargin:s}=La({flowchart:i.flowchart??{}});if(e.label){const o=Qi.get(e.id);let a=e.x,n=e.y;if(r){const l=xe.calcLabelPosition(r);N.debug("Moving label "+e.label+" from (",a,",",n,") to (",l.x,",",l.y,") abc88"),t!=null&&t.updatedPath&&(a=l.x,n=l.y)}o.attr("transform",`translate(${a}, ${n+s/2})`)}if(e!=null&&e.startLabelLeft){const o=se.get(e.id).startLeft;let a=e==null?void 0:e.x,n=e==null?void 0:e.y;if(r){const l=xe.calcTerminalLabelPosition(e.arrowTypeStart?10:0,"start_left",r);a=l.x,n=l.y}o.attr("transform",`translate(${a}, ${n})`)}if(e.startLabelRight){const o=se.get(e.id).startRight;let a=e.x,n=e.y;if(r){const l=xe.calcTerminalLabelPosition(e.arrowTypeStart?10:0,"start_right",r);a=l.x,n=l.y}o.attr("transform",`translate(${a}, ${n})`)}if(e.endLabelLeft){const o=se.get(e.id).endLeft;let a=e.x,n=e.y;if(r){const l=xe.calcTerminalLabelPosition(e.arrowTypeEnd?10:0,"end_left",r);a=l.x,n=l.y}o.attr("transform",`translate(${a}, ${n})`)}if(e.endLabelRight){const o=se.get(e.id).endRight;let a=e.x,n=e.y;if(r){const l=xe.calcTerminalLabelPosition(e.arrowTypeEnd?10:0,"end_right",r);a=l.x,n=l.y}o.attr("transform",`translate(${a}, ${n})`)}}p(Ky,"positionRenderedEdgeLabel");function Qy(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}p(Qy,"getDefaultExportFromCjs");var pe={},vo={},Dr={},Pd;function ss(){if(Pd)return Dr;Pd=1;function e(a){return typeof a>"u"||a===null}p(e,"isNothing");function t(a){return typeof a=="object"&&a!==null}p(t,"isObject");function r(a){return Array.isArray(a)?a:e(a)?[]:[a]}p(r,"toArray");function i(a,n){if(n){const l=Object.keys(n);for(let c=0,h=l.length;c<h;c+=1){const u=l[c];a[u]=n[u]}}return a}p(i,"extend");function s(a,n){let l="";for(let c=0;c<n;c+=1)l+=a;return l}p(s,"repeat");function o(a){return a===0&&Number.NEGATIVE_INFINITY===1/a}return p(o,"isNegativeZero"),Dr.isNothing=e,Dr.isObject=t,Dr.toArray=r,Dr.repeat=s,Dr.isNegativeZero=o,Dr.extend=i,Dr}p(ss,"requireCommon");var Tn,Rd;function os(){if(Rd)return Tn;Rd=1;function e(r,i){let s="";const o=r.reason||"(unknown reason)";return r.mark?(r.mark.name&&(s+='in "'+r.mark.name+'" '),s+="("+(r.mark.line+1)+":"+(r.mark.column+1)+")",!i&&r.mark.snippet&&(s+=`
|
|
271
|
+
|
|
272
|
+
`+r.mark.snippet),o+" "+s):o}p(e,"formatError");function t(r,i){Error.call(this),this.name="YAMLException",this.reason=r,this.mark=i,this.message=e(this,!1),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack||""}return p(t,"YAMLException2"),t.prototype=Object.create(Error.prototype),t.prototype.constructor=t,t.prototype.toString=p(function(i){return this.name+": "+e(this,i)},"toString"),Tn=t,Tn}p(os,"requireException");var _n,Nd;function Jy(){if(Nd)return _n;Nd=1;const e=ss();function t(s,o,a,n,l){let c="",h="";const u=Math.floor(l/2)-1;return n-o>u&&(c=" ... ",o=n-u+c.length),a-n>u&&(h=" ...",a=n+u-h.length),{str:c+s.slice(o,a).replace(/\t/g,"→")+h,pos:n-o+c.length}}p(t,"getLine");function r(s,o){return e.repeat(" ",o-s.length)+s}p(r,"padStart");function i(s,o){if(o=Object.create(o||null),!s.buffer)return null;o.maxLength||(o.maxLength=79),typeof o.indent!="number"&&(o.indent=1),typeof o.linesBefore!="number"&&(o.linesBefore=3),typeof o.linesAfter!="number"&&(o.linesAfter=2);const a=/\r?\n|\r|\0/g,n=[0],l=[];let c,h=-1;for(;c=a.exec(s.buffer);)l.push(c.index),n.push(c.index+c[0].length),s.position<=c.index&&h<0&&(h=n.length-2);h<0&&(h=n.length-1);let u="";const d=Math.min(s.line+o.linesAfter,l.length).toString().length,f=o.maxLength-(o.indent+d+3);for(let y=1;y<=o.linesBefore&&!(h-y<0);y++){const C=t(s.buffer,n[h-y],l[h-y],s.position-(n[h]-n[h-y]),f);u=e.repeat(" ",o.indent)+r((s.line-y+1).toString(),d)+" | "+C.str+`
|
|
273
|
+
`+u}const m=t(s.buffer,n[h],l[h],s.position,f);u+=e.repeat(" ",o.indent)+r((s.line+1).toString(),d)+" | "+m.str+`
|
|
274
|
+
`,u+=e.repeat("-",o.indent+d+3+m.pos)+`^
|
|
275
|
+
`;for(let y=1;y<=o.linesAfter&&!(h+y>=l.length);y++){const C=t(s.buffer,n[h+y],l[h+y],s.position-(n[h]-n[h+y]),f);u+=e.repeat(" ",o.indent)+r((s.line+y+1).toString(),d)+" | "+C.str+`
|
|
276
|
+
`}return u.replace(/\n$/,"")}return p(i,"makeSnippet"),_n=i,_n}p(Jy,"requireSnippet");var Sn,qd;function be(){if(qd)return Sn;qd=1;const e=os(),t=["kind","multi","resolve","construct","instanceOf","predicate","represent","representName","defaultStyle","styleAliases"],r=["scalar","sequence","mapping"];function i(o){const a={};return o!==null&&Object.keys(o).forEach(function(n){o[n].forEach(function(l){a[String(l)]=n})}),a}p(i,"compileStyleAliases");function s(o,a){if(a=a||{},Object.keys(a).forEach(function(n){if(t.indexOf(n)===-1)throw new e('Unknown option "'+n+'" is met in definition of "'+o+'" YAML type.')}),this.options=a,this.tag=o,this.kind=a.kind||null,this.resolve=a.resolve||function(){return!0},this.construct=a.construct||function(n){return n},this.instanceOf=a.instanceOf||null,this.predicate=a.predicate||null,this.represent=a.represent||null,this.representName=a.representName||null,this.defaultStyle=a.defaultStyle||null,this.multi=a.multi||!1,this.styleAliases=i(a.styleAliases||null),r.indexOf(this.kind)===-1)throw new e('Unknown kind "'+this.kind+'" is specified for "'+o+'" YAML type.')}return p(s,"Type2"),Sn=s,Sn}p(be,"requireType");var vn,zd;function zh(){if(zd)return vn;zd=1;const e=os(),t=be();function r(o,a){const n=[];return o[a].forEach(function(l){let c=n.length;n.forEach(function(h,u){h.tag===l.tag&&h.kind===l.kind&&h.multi===l.multi&&(c=u)}),n[c]=l}),n}p(r,"compileList");function i(){const o={scalar:{},sequence:{},mapping:{},fallback:{},multi:{scalar:[],sequence:[],mapping:[],fallback:[]}};function a(n){n.multi?(o.multi[n.kind].push(n),o.multi.fallback.push(n)):o[n.kind][n.tag]=o.fallback[n.tag]=n}p(a,"collectType");for(let n=0,l=arguments.length;n<l;n+=1)arguments[n].forEach(a);return o}p(i,"compileMap");function s(o){return this.extend(o)}return p(s,"Schema2"),s.prototype.extend=p(function(a){let n=[],l=[];if(a instanceof t)l.push(a);else if(Array.isArray(a))l=l.concat(a);else if(a&&(Array.isArray(a.implicit)||Array.isArray(a.explicit)))a.implicit&&(n=n.concat(a.implicit)),a.explicit&&(l=l.concat(a.explicit));else throw new e("Schema.extend argument should be a Type, [ Type ], or a schema definition ({ implicit: [...], explicit: [...] })");n.forEach(function(h){if(!(h instanceof t))throw new e("Specified list of YAML types (or a single Type object) contains a non-Type object.");if(h.loadKind&&h.loadKind!=="scalar")throw new e("There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.");if(h.multi)throw new e("There is a multi type in the implicit list of a schema. Multi tags can only be listed as explicit.")}),l.forEach(function(h){if(!(h instanceof t))throw new e("Specified list of YAML types (or a single Type object) contains a non-Type object.")});const c=Object.create(s.prototype);return c.implicit=(this.implicit||[]).concat(n),c.explicit=(this.explicit||[]).concat(l),c.compiledImplicit=r(c,"implicit"),c.compiledExplicit=r(c,"explicit"),c.compiledTypeMap=i(c.compiledImplicit,c.compiledExplicit),c},"extend"),vn=s,vn}p(zh,"requireSchema");var Bn,Wd;function Wh(){if(Wd)return Bn;Wd=1;const e=be();return Bn=new e("tag:yaml.org,2002:str",{kind:"scalar",construct:p(function(t){return t!==null?t:""},"construct")}),Bn}p(Wh,"requireStr");var Ln,Hd;function Hh(){if(Hd)return Ln;Hd=1;const e=be();return Ln=new e("tag:yaml.org,2002:seq",{kind:"sequence",construct:p(function(t){return t!==null?t:[]},"construct")}),Ln}p(Hh,"requireSeq");var Fn,Yd;function Yh(){if(Yd)return Fn;Yd=1;const e=be();return Fn=new e("tag:yaml.org,2002:map",{kind:"mapping",construct:p(function(t){return t!==null?t:{}},"construct")}),Fn}p(Yh,"requireMap");var An,jd;function jh(){if(jd)return An;jd=1;const e=zh();return An=new e({explicit:[Wh(),Hh(),Yh()]}),An}p(jh,"requireFailsafe");var En,Ud;function Uh(){if(Ud)return En;Ud=1;const e=be();function t(s){if(s===null)return!0;const o=s.length;return o===1&&s==="~"||o===4&&(s==="null"||s==="Null"||s==="NULL")}p(t,"resolveYamlNull");function r(){return null}p(r,"constructYamlNull");function i(s){return s===null}return p(i,"isNull"),En=new e("tag:yaml.org,2002:null",{kind:"scalar",resolve:t,construct:r,predicate:i,represent:{canonical:p(function(){return"~"},"canonical"),lowercase:p(function(){return"null"},"lowercase"),uppercase:p(function(){return"NULL"},"uppercase"),camelcase:p(function(){return"Null"},"camelcase"),empty:p(function(){return""},"empty")},defaultStyle:"lowercase"}),En}p(Uh,"require_null");var Mn,Gd;function Gh(){if(Gd)return Mn;Gd=1;const e=be();function t(s){if(s===null)return!1;const o=s.length;return o===4&&(s==="true"||s==="True"||s==="TRUE")||o===5&&(s==="false"||s==="False"||s==="FALSE")}p(t,"resolveYamlBoolean");function r(s){return s==="true"||s==="True"||s==="TRUE"}p(r,"constructYamlBoolean");function i(s){return Object.prototype.toString.call(s)==="[object Boolean]"}return p(i,"isBoolean"),Mn=new e("tag:yaml.org,2002:bool",{kind:"scalar",resolve:t,construct:r,predicate:i,represent:{lowercase:p(function(s){return s?"true":"false"},"lowercase"),uppercase:p(function(s){return s?"TRUE":"FALSE"},"uppercase"),camelcase:p(function(s){return s?"True":"False"},"camelcase")},defaultStyle:"lowercase"}),Mn}p(Gh,"requireBool");var $n,Xd;function Xh(){if(Xd)return $n;Xd=1;const e=ss(),t=be();function r(c){return c>=48&&c<=57||c>=65&&c<=70||c>=97&&c<=102}p(r,"isHexCode");function i(c){return c>=48&&c<=55}p(i,"isOctCode");function s(c){return c>=48&&c<=57}p(s,"isDecCode");function o(c){if(c===null)return!1;const h=c.length;let u=0,d=!1;if(!h)return!1;let f=c[u];if((f==="-"||f==="+")&&(f=c[++u]),f==="0"){if(u+1===h)return!0;if(f=c[++u],f==="b"){for(u++;u<h;u++){if(f=c[u],f!=="0"&&f!=="1")return!1;d=!0}return d&&isFinite(a(c))}if(f==="x"){for(u++;u<h;u++){if(!r(c.charCodeAt(u)))return!1;d=!0}return d&&isFinite(a(c))}if(f==="o"){for(u++;u<h;u++){if(!i(c.charCodeAt(u)))return!1;d=!0}return d&&isFinite(a(c))}}for(;u<h;u++){if(!s(c.charCodeAt(u)))return!1;d=!0}return d?isFinite(a(c)):!1}p(o,"resolveYamlInteger");function a(c){let h=c,u=1,d=h[0];if((d==="-"||d==="+")&&(d==="-"&&(u=-1),h=h.slice(1),d=h[0]),h==="0")return 0;if(d==="0"){if(h[1]==="b")return u*parseInt(h.slice(2),2);if(h[1]==="x")return u*parseInt(h.slice(2),16);if(h[1]==="o")return u*parseInt(h.slice(2),8)}return u*parseInt(h,10)}p(a,"parseYamlInteger");function n(c){return a(c)}p(n,"constructYamlInteger");function l(c){return Object.prototype.toString.call(c)==="[object Number]"&&c%1===0&&!e.isNegativeZero(c)}return p(l,"isInteger"),$n=new t("tag:yaml.org,2002:int",{kind:"scalar",resolve:o,construct:n,predicate:l,represent:{binary:p(function(c){return c>=0?"0b"+c.toString(2):"-0b"+c.toString(2).slice(1)},"binary"),octal:p(function(c){return c>=0?"0o"+c.toString(8):"-0o"+c.toString(8).slice(1)},"octal"),decimal:p(function(c){return c.toString(10)},"decimal"),hexadecimal:p(function(c){return c>=0?"0x"+c.toString(16).toUpperCase():"-0x"+c.toString(16).toUpperCase().slice(1)},"hexadecimal")},defaultStyle:"decimal",styleAliases:{binary:[2,"bin"],octal:[8,"oct"],decimal:[10,"dec"],hexadecimal:[16,"hex"]}}),$n}p(Xh,"requireInt");var On,Vd;function Vh(){if(Vd)return On;Vd=1;const e=ss(),t=be(),r=new RegExp("^(?:[-+]?(?:[0-9]+)(?:\\.[0-9]*)?(?:[eE][-+]?[0-9]+)?|\\.[0-9]+(?:[eE][-+]?[0-9]+)?|[-+]?\\.(?:inf|Inf|INF)|\\.(?:nan|NaN|NAN))$"),i=new RegExp("^(?:[-+]?\\.(?:inf|Inf|INF)|\\.(?:nan|NaN|NAN))$");function s(c){return c===null||!r.test(c)?!1:isFinite(parseFloat(c,10))?!0:i.test(c)}p(s,"resolveYamlFloat");function o(c){let h=c.toLowerCase();const u=h[0]==="-"?-1:1;return"+-".indexOf(h[0])>=0&&(h=h.slice(1)),h===".inf"?u===1?Number.POSITIVE_INFINITY:Number.NEGATIVE_INFINITY:h===".nan"?NaN:u*parseFloat(h,10)}p(o,"constructYamlFloat");const a=/^[-+]?[0-9]+e/;function n(c,h){if(isNaN(c))switch(h){case"lowercase":return".nan";case"uppercase":return".NAN";case"camelcase":return".NaN"}else if(Number.POSITIVE_INFINITY===c)switch(h){case"lowercase":return".inf";case"uppercase":return".INF";case"camelcase":return".Inf"}else if(Number.NEGATIVE_INFINITY===c)switch(h){case"lowercase":return"-.inf";case"uppercase":return"-.INF";case"camelcase":return"-.Inf"}else if(e.isNegativeZero(c))return"-0.0";const u=c.toString(10);return a.test(u)?u.replace("e",".e"):u}p(n,"representYamlFloat");function l(c){return Object.prototype.toString.call(c)==="[object Number]"&&(c%1!==0||e.isNegativeZero(c))}return p(l,"isFloat"),On=new t("tag:yaml.org,2002:float",{kind:"scalar",resolve:s,construct:o,predicate:l,represent:n,defaultStyle:"lowercase"}),On}p(Vh,"requireFloat");var Dn,Zd;function Zh(){return Zd||(Zd=1,Dn=jh().extend({implicit:[Uh(),Gh(),Xh(),Vh()]})),Dn}p(Zh,"requireJson");var In,Kd;function Kh(){return Kd||(Kd=1,In=Zh()),In}p(Kh,"requireCore");var Pn,Qd;function Qh(){if(Qd)return Pn;Qd=1;const e=be(),t=new RegExp("^([0-9][0-9][0-9][0-9])-([0-9][0-9])-([0-9][0-9])$"),r=new RegExp("^([0-9][0-9][0-9][0-9])-([0-9][0-9]?)-([0-9][0-9]?)(?:[Tt]|[ \\t]+)([0-9][0-9]?):([0-9][0-9]):([0-9][0-9])(?:\\.([0-9]*))?(?:[ \\t]*(Z|([-+])([0-9][0-9]?)(?::([0-9][0-9]))?))?$");function i(a){return a===null?!1:t.exec(a)!==null||r.exec(a)!==null}p(i,"resolveYamlTimestamp");function s(a){let n=0,l=null,c=t.exec(a);if(c===null&&(c=r.exec(a)),c===null)throw new Error("Date resolve error");const h=+c[1],u=+c[2]-1,d=+c[3];if(!c[4])return new Date(Date.UTC(h,u,d));const f=+c[4],m=+c[5],y=+c[6];if(c[7]){for(n=c[7].slice(0,3);n.length<3;)n+="0";n=+n}if(c[9]){const x=+c[10],b=+(c[11]||0);l=(x*60+b)*6e4,c[9]==="-"&&(l=-l)}const C=new Date(Date.UTC(h,u,d,f,m,y,n));return l&&C.setTime(C.getTime()-l),C}p(s,"constructYamlTimestamp");function o(a){return a.toISOString()}return p(o,"representYamlTimestamp"),Pn=new e("tag:yaml.org,2002:timestamp",{kind:"scalar",resolve:i,construct:s,instanceOf:Date,represent:o}),Pn}p(Qh,"requireTimestamp");var Rn,Jd;function Jh(){if(Jd)return Rn;Jd=1;const e=be();function t(r){return r==="<<"||r===null}return p(t,"resolveYamlMerge"),Rn=new e("tag:yaml.org,2002:merge",{kind:"scalar",resolve:t}),Rn}p(Jh,"requireMerge");var Nn,tf;function tc(){if(tf)return Nn;tf=1;const e=be(),t=`ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=
|
|
277
|
+
\r`;function r(a){if(a===null)return!1;let n=0;const l=a.length,c=t;for(let h=0;h<l;h++){const u=c.indexOf(a.charAt(h));if(!(u>64)){if(u<0)return!1;n+=6}}return n%8===0}p(r,"resolveYamlBinary");function i(a){const n=a.replace(/[\r\n=]/g,""),l=n.length,c=t;let h=0;const u=[];for(let f=0;f<l;f++)f%4===0&&f&&(u.push(h>>16&255),u.push(h>>8&255),u.push(h&255)),h=h<<6|c.indexOf(n.charAt(f));const d=l%4*6;return d===0?(u.push(h>>16&255),u.push(h>>8&255),u.push(h&255)):d===18?(u.push(h>>10&255),u.push(h>>2&255)):d===12&&u.push(h>>4&255),new Uint8Array(u)}p(i,"constructYamlBinary");function s(a){let n="",l=0;const c=a.length,h=t;for(let d=0;d<c;d++)d%3===0&&d&&(n+=h[l>>18&63],n+=h[l>>12&63],n+=h[l>>6&63],n+=h[l&63]),l=(l<<8)+a[d];const u=c%3;return u===0?(n+=h[l>>18&63],n+=h[l>>12&63],n+=h[l>>6&63],n+=h[l&63]):u===2?(n+=h[l>>10&63],n+=h[l>>4&63],n+=h[l<<2&63],n+=h[64]):u===1&&(n+=h[l>>2&63],n+=h[l<<4&63],n+=h[64],n+=h[64]),n}p(s,"representYamlBinary");function o(a){return Object.prototype.toString.call(a)==="[object Uint8Array]"}return p(o,"isBinary"),Nn=new e("tag:yaml.org,2002:binary",{kind:"scalar",resolve:r,construct:i,predicate:o,represent:s}),Nn}p(tc,"requireBinary");var qn,ef;function ec(){if(ef)return qn;ef=1;const e=be(),t=Object.prototype.hasOwnProperty,r=Object.prototype.toString;function i(o){if(o===null)return!0;const a=[],n=o;for(let l=0,c=n.length;l<c;l+=1){const h=n[l];let u=!1;if(r.call(h)!=="[object Object]")return!1;let d;for(d in h)if(t.call(h,d))if(!u)u=!0;else return!1;if(!u)return!1;if(a.indexOf(d)===-1)a.push(d);else return!1}return!0}p(i,"resolveYamlOmap");function s(o){return o!==null?o:[]}return p(s,"constructYamlOmap"),qn=new e("tag:yaml.org,2002:omap",{kind:"sequence",resolve:i,construct:s}),qn}p(ec,"requireOmap");var zn,rf;function rc(){if(rf)return zn;rf=1;const e=be(),t=Object.prototype.toString;function r(s){if(s===null)return!0;const o=s,a=new Array(o.length);for(let n=0,l=o.length;n<l;n+=1){const c=o[n];if(t.call(c)!=="[object Object]")return!1;const h=Object.keys(c);if(h.length!==1)return!1;a[n]=[h[0],c[h[0]]]}return!0}p(r,"resolveYamlPairs");function i(s){if(s===null)return[];const o=s,a=new Array(o.length);for(let n=0,l=o.length;n<l;n+=1){const c=o[n],h=Object.keys(c);a[n]=[h[0],c[h[0]]]}return a}return p(i,"constructYamlPairs"),zn=new e("tag:yaml.org,2002:pairs",{kind:"sequence",resolve:r,construct:i}),zn}p(rc,"requirePairs");var Wn,sf;function ic(){if(sf)return Wn;sf=1;const e=be(),t=Object.prototype.hasOwnProperty;function r(s){if(s===null)return!0;const o=s;for(const a in o)if(t.call(o,a)&&o[a]!==null)return!1;return!0}p(r,"resolveYamlSet");function i(s){return s!==null?s:{}}return p(i,"constructYamlSet"),Wn=new e("tag:yaml.org,2002:set",{kind:"mapping",resolve:r,construct:i}),Wn}p(ic,"requireSet");var Hn,of;function Pa(){return of||(of=1,Hn=Kh().extend({implicit:[Qh(),Jh()],explicit:[tc(),ec(),rc(),ic()]})),Hn}p(Pa,"require_default");var af;function t0(){if(af)return vo;af=1;const e=ss(),t=os(),r=Jy(),i=Pa(),s=Object.prototype.hasOwnProperty,o=1,a=2,n=3,l=4,c=1,h=2,u=3,d=/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,f=/[\x85\u2028\u2029]/,m=/[,\[\]{}]/,y=/^(?:!|!!|![0-9A-Za-z-]+!)$/,C=/^(?:!|[^,\[\]{}])(?:%[0-9a-f]{2}|[0-9a-z\-#;/?:@&=+$,_.!~*'()\[\]])*$/i;function x(g){return Object.prototype.toString.call(g)}p(x,"_class");function b(g){return g===10||g===13}p(b,"isEol");function w(g){return g===9||g===32}p(w,"isWhiteSpace");function _(g){return g===9||g===32||g===10||g===13}p(_,"isWsOrEol");function v(g){return g===44||g===91||g===93||g===123||g===125}p(v,"isFlowIndicator");function F(g){if(g>=48&&g<=57)return g-48;const D=g|32;return D>=97&&D<=102?D-97+10:-1}p(F,"fromHexCode");function A(g){return g===120?2:g===117?4:g===85?8:0}p(A,"escapedHexLen");function L(g){return g>=48&&g<=57?g-48:-1}p(L,"fromDecimalCode");function j(g){switch(g){case 48:return"\0";case 97:return"\x07";case 98:return"\b";case 116:return" ";case 9:return" ";case 110:return`
|
|
278
|
+
`;case 118:return"\v";case 102:return"\f";case 114:return"\r";case 101:return"\x1B";case 32:return" ";case 34:return'"';case 47:return"/";case 92:return"\\";case 78:return"
";case 95:return" ";case 76:return"\u2028";case 80:return"\u2029";default:return""}}p(j,"simpleEscapeSequence");function z(g){return g<=65535?String.fromCharCode(g):String.fromCharCode((g-65536>>10)+55296,(g-65536&1023)+56320)}p(z,"charFromCodepoint");function W(g,D,V){D==="__proto__"?Object.defineProperty(g,D,{configurable:!0,enumerable:!0,writable:!0,value:V}):g[D]=V}p(W,"setProperty");const ot=new Array(256),Y=new Array(256);for(let g=0;g<256;g++)ot[g]=j(g)?1:0,Y[g]=j(g);function M(g,D){this.input=g,this.filename=D.filename||null,this.schema=D.schema||i,this.onWarning=D.onWarning||null,this.legacy=D.legacy||!1,this.json=D.json||!1,this.listener=D.listener||null,this.maxDepth=typeof D.maxDepth=="number"?D.maxDepth:100,this.maxTotalMergeKeys=typeof D.maxTotalMergeKeys=="number"?D.maxTotalMergeKeys:1e4,this.implicitTypes=this.schema.compiledImplicit,this.typeMap=this.schema.compiledTypeMap,this.length=g.length,this.position=0,this.line=0,this.lineStart=0,this.lineIndent=0,this.depth=0,this.totalMergeKeys=0,this.firstTabInLine=-1,this.documents=[],this.anchorMapTransactions=[]}p(M,"State");function $(g,D){const V={name:g.filename,buffer:g.input.slice(0,-1),position:g.position,line:g.line,column:g.position-g.lineStart};return V.snippet=r(V),new t(D,V)}p($,"generateError");function B(g,D){throw $(g,D)}p(B,"throwError");function P(g,D){g.onWarning&&g.onWarning.call(null,$(g,D))}p(P,"throwWarning");function O(g,D,V){const Q=g.anchorMapTransactions;if(Q.length!==0){const X=Q[Q.length-1];s.call(X,D)||(X[D]={existed:s.call(g.anchorMap,D),value:g.anchorMap[D]})}g.anchorMap[D]=V}p(O,"storeAnchor");function H(g){g.anchorMapTransactions.push(Object.create(null))}p(H,"beginAnchorTransaction");function K(g){const D=g.anchorMapTransactions.pop(),V=g.anchorMapTransactions;if(V.length===0)return;const Q=V[V.length-1],X=Object.keys(D);for(let st=0,T=X.length;st<T;st+=1){const R=X[st];s.call(Q,R)||(Q[R]=D[R])}}p(K,"commitAnchorTransaction");function ut(g){const D=g.anchorMapTransactions.pop(),V=Object.keys(D);for(let Q=V.length-1;Q>=0;Q-=1){const X=D[V[Q]];X.existed?g.anchorMap[V[Q]]=X.value:delete g.anchorMap[V[Q]]}}p(ut,"rollbackAnchorTransaction");function pt(g){return{position:g.position,line:g.line,lineStart:g.lineStart,lineIndent:g.lineIndent,firstTabInLine:g.firstTabInLine,tag:g.tag,anchor:g.anchor,kind:g.kind,result:g.result}}p(pt,"snapshotState");function kt(g,D){g.position=D.position,g.line=D.line,g.lineStart=D.lineStart,g.lineIndent=D.lineIndent,g.firstTabInLine=D.firstTabInLine,g.tag=D.tag,g.anchor=D.anchor,g.kind=D.kind,g.result=D.result}p(kt,"restoreState");const nt={YAML:p(function(D,V,Q){D.version!==null&&B(D,"duplication of %YAML directive"),Q.length!==1&&B(D,"YAML directive accepts exactly one argument");const X=/^([0-9]+)\.([0-9]+)$/.exec(Q[0]);X===null&&B(D,"ill-formed argument of the YAML directive");const st=parseInt(X[1],10),T=parseInt(X[2],10);st!==1&&B(D,"unacceptable YAML version of the document"),D.version=Q[0],D.checkLineBreaks=T<2,T!==1&&T!==2&&P(D,"unsupported YAML version of the document")},"handleYamlDirective"),TAG:p(function(D,V,Q){let X;Q.length!==2&&B(D,"TAG directive accepts exactly two arguments");const st=Q[0];X=Q[1],y.test(st)||B(D,"ill-formed tag handle (first argument) of the TAG directive"),s.call(D.tagMap,st)&&B(D,'there is a previously declared suffix for "'+st+'" tag handle'),C.test(X)||B(D,"ill-formed tag prefix (second argument) of the TAG directive");try{X=decodeURIComponent(X)}catch{B(D,"tag prefix is malformed: "+X)}D.tagMap[st]=X},"handleTagDirective")};function wt(g,D,V,Q){if(D<V){const X=g.input.slice(D,V);if(Q)for(let st=0,T=X.length;st<T;st+=1){const R=X.charCodeAt(st);R===9||R>=32&&R<=1114111||B(g,"expected valid JSON character")}else d.test(X)&&B(g,"the stream contains non-printable characters");g.result+=X}}p(wt,"captureSegment");function Et(g,D,V,Q){e.isObject(V)||B(g,"cannot merge mappings; the provided source object is unacceptable");const X=Object.keys(V);for(let st=0,T=X.length;st<T;st+=1){const R=X[st];g.maxTotalMergeKeys!==-1&&++g.totalMergeKeys>g.maxTotalMergeKeys&&B(g,"merge keys exceeded maxTotalMergeKeys ("+g.maxTotalMergeKeys+")"),s.call(D,R)||(W(D,R,V[R]),Q[R]=!0)}}p(Et,"mergeMappings");function At(g,D,V,Q,X,st,T,R,rt){if(Array.isArray(X)){X=Array.prototype.slice.call(X);for(let Z=0,J=X.length;Z<J;Z+=1)Array.isArray(X[Z])&&B(g,"nested arrays are not supported inside keys"),typeof X=="object"&&x(X[Z])==="[object Object]"&&(X[Z]="[object Object]")}if(typeof X=="object"&&x(X)==="[object Object]"&&(X="[object Object]"),X=String(X),D===null&&(D={}),Q==="tag:yaml.org,2002:merge")if(Array.isArray(st))for(let Z=0,J=st.length;Z<J;Z+=1)Et(g,D,st[Z],V);else Et(g,D,st,V);else!g.json&&!s.call(V,X)&&s.call(D,X)&&(g.line=T||g.line,g.lineStart=R||g.lineStart,g.position=rt||g.position,B(g,"duplicated mapping key")),W(D,X,st),delete V[X];return D}p(At,"storeMappingPair");function qt(g){const D=g.input.charCodeAt(g.position);D===10?g.position++:D===13?(g.position++,g.input.charCodeAt(g.position)===10&&g.position++):B(g,"a line break is expected"),g.line+=1,g.lineStart=g.position,g.firstTabInLine=-1}p(qt,"readLineBreak");function Lt(g,D,V){let Q=0,X=g.input.charCodeAt(g.position);for(;X!==0;){for(;w(X);)X===9&&g.firstTabInLine===-1&&(g.firstTabInLine=g.position),X=g.input.charCodeAt(++g.position);if(D&&X===35)do X=g.input.charCodeAt(++g.position);while(X!==10&&X!==13&&X!==0);if(b(X))for(qt(g),X=g.input.charCodeAt(g.position),Q++,g.lineIndent=0;X===32;)g.lineIndent++,X=g.input.charCodeAt(++g.position);else break}return V!==-1&&Q!==0&&g.lineIndent<V&&P(g,"deficient indentation"),Q}p(Lt,"skipSeparationSpace");function lt(g){let D=g.position,V=g.input.charCodeAt(D);return!!((V===45||V===46)&&V===g.input.charCodeAt(D+1)&&V===g.input.charCodeAt(D+2)&&(D+=3,V=g.input.charCodeAt(D),V===0||_(V)))}p(lt,"testDocumentSeparator");function gt(g,D){D===1?g.result+=" ":D>1&&(g.result+=e.repeat(`
|
|
279
|
+
`,D-1))}p(gt,"writeFoldedLines");function Mt(g,D,V){let Q,X,st,T,R,rt;const Z=g.kind,J=g.result;let it=g.input.charCodeAt(g.position);if(_(it)||v(it)||it===35||it===38||it===42||it===33||it===124||it===62||it===39||it===34||it===37||it===64||it===96)return!1;if(it===63||it===45){const tt=g.input.charCodeAt(g.position+1);if(_(tt)||V&&v(tt))return!1}for(g.kind="scalar",g.result="",Q=X=g.position,st=!1;it!==0;){if(it===58){const tt=g.input.charCodeAt(g.position+1);if(_(tt)||V&&v(tt))break}else if(it===35){const tt=g.input.charCodeAt(g.position-1);if(_(tt))break}else{if(g.position===g.lineStart&<(g)||V&&v(it))break;if(b(it))if(T=g.line,R=g.lineStart,rt=g.lineIndent,Lt(g,!1,-1),g.lineIndent>=D){st=!0,it=g.input.charCodeAt(g.position);continue}else{g.position=X,g.line=T,g.lineStart=R,g.lineIndent=rt;break}}st&&(wt(g,Q,X,!1),gt(g,g.line-T),Q=X=g.position,st=!1),w(it)||(X=g.position+1),it=g.input.charCodeAt(++g.position)}return wt(g,Q,X,!1),g.result?!0:(g.kind=Z,g.result=J,!1)}p(Mt,"readPlainScalar");function Nt(g,D){let V,Q,X=g.input.charCodeAt(g.position);if(X!==39)return!1;for(g.kind="scalar",g.result="",g.position++,V=Q=g.position;(X=g.input.charCodeAt(g.position))!==0;)if(X===39)if(wt(g,V,g.position,!0),X=g.input.charCodeAt(++g.position),X===39)V=g.position,g.position++,Q=g.position;else return!0;else b(X)?(wt(g,V,Q,!0),gt(g,Lt(g,!1,D)),V=Q=g.position):g.position===g.lineStart&<(g)?B(g,"unexpected end of the document within a single quoted scalar"):(g.position++,w(X)||(Q=g.position));B(g,"unexpected end of the stream within a single quoted scalar")}p(Nt,"readSingleQuotedScalar");function Ft(g,D){let V,Q,X,st=g.input.charCodeAt(g.position);if(st!==34)return!1;for(g.kind="scalar",g.result="",g.position++,V=Q=g.position;(st=g.input.charCodeAt(g.position))!==0;){if(st===34)return wt(g,V,g.position,!0),g.position++,!0;if(st===92){if(wt(g,V,g.position,!0),st=g.input.charCodeAt(++g.position),b(st))Lt(g,!1,D);else if(st<256&&ot[st])g.result+=Y[st],g.position++;else if((X=A(st))>0){let T=X,R=0;for(;T>0;T--)st=g.input.charCodeAt(++g.position),(X=F(st))>=0?R=(R<<4)+X:B(g,"expected hexadecimal character");g.result+=z(R),g.position++}else B(g,"unknown escape sequence");V=Q=g.position}else b(st)?(wt(g,V,Q,!0),gt(g,Lt(g,!1,D)),V=Q=g.position):g.position===g.lineStart&<(g)?B(g,"unexpected end of the document within a double quoted scalar"):(g.position++,w(st)||(Q=g.position))}B(g,"unexpected end of the stream within a double quoted scalar")}p(Ft,"readDoubleQuotedScalar");function q(g,D){let V=!0,Q,X,st;const T=g.tag;let R;const rt=g.anchor;let Z,J,it,tt;const dt=Object.create(null);let ct,Tt,Bt,zt=g.input.charCodeAt(g.position);if(zt===91)Z=93,tt=!1,R=[];else if(zt===123)Z=125,tt=!0,R={};else return!1;for(g.anchor!==null&&O(g,g.anchor,R),zt=g.input.charCodeAt(++g.position);zt!==0;){if(Lt(g,!0,D),zt=g.input.charCodeAt(g.position),zt===Z)return g.position++,g.tag=T,g.anchor=rt,g.kind=tt?"mapping":"sequence",g.result=R,!0;if(V?zt===44&&B(g,"expected the node content, but found ','"):B(g,"missed comma between flow collection entries"),Tt=ct=Bt=null,J=it=!1,zt===63){const Xt=g.input.charCodeAt(g.position+1);_(Xt)&&(J=it=!0,g.position++,Lt(g,!0,D))}Q=g.line,X=g.lineStart,st=g.position,Te(g,D,o,!1,!0),Tt=g.tag,ct=g.result,Lt(g,!0,D),zt=g.input.charCodeAt(g.position),(it||g.line===Q)&&zt===58&&(J=!0,zt=g.input.charCodeAt(++g.position),Lt(g,!0,D),Te(g,D,o,!1,!0),Bt=g.result),tt?At(g,R,dt,Tt,ct,Bt,Q,X,st):J?R.push(At(g,null,dt,Tt,ct,Bt,Q,X,st)):R.push(ct),Lt(g,!0,D),zt=g.input.charCodeAt(g.position),zt===44?(V=!0,zt=g.input.charCodeAt(++g.position)):V=!1}B(g,"unexpected end of the stream within a flow collection")}p(q,"readFlowCollection");function mt(g,D){let V,Q=c,X=!1,st=!1,T=D,R=0,rt=!1,Z,J=g.input.charCodeAt(g.position);if(J===124)V=!1;else if(J===62)V=!0;else return!1;for(g.kind="scalar",g.result="";J!==0;)if(J=g.input.charCodeAt(++g.position),J===43||J===45)c===Q?Q=J===43?u:h:B(g,"repeat of a chomping mode identifier");else if((Z=L(J))>=0)Z===0?B(g,"bad explicit indentation width of a block scalar; it cannot be less than one"):st?B(g,"repeat of an indentation width identifier"):(T=D+Z-1,st=!0);else break;if(w(J)){do J=g.input.charCodeAt(++g.position);while(w(J));if(J===35)do J=g.input.charCodeAt(++g.position);while(!b(J)&&J!==0)}for(;J!==0;){for(qt(g),g.lineIndent=0,J=g.input.charCodeAt(g.position);(!st||g.lineIndent<T)&&J===32;)g.lineIndent++,J=g.input.charCodeAt(++g.position);if(!st&&g.lineIndent>T&&(T=g.lineIndent),b(J)){R++;continue}if(!st&&T===0&&B(g,"missing indentation for block scalar"),g.lineIndent<T){Q===u?g.result+=e.repeat(`
|
|
280
|
+
`,X?1+R:R):Q===c&&X&&(g.result+=`
|
|
281
|
+
`);break}V?w(J)?(rt=!0,g.result+=e.repeat(`
|
|
282
|
+
`,X?1+R:R)):rt?(rt=!1,g.result+=e.repeat(`
|
|
283
|
+
`,R+1)):R===0?X&&(g.result+=" "):g.result+=e.repeat(`
|
|
284
|
+
`,R):g.result+=e.repeat(`
|
|
285
|
+
`,X?1+R:R),X=!0,st=!0,R=0;const it=g.position;for(;!b(J)&&J!==0;)J=g.input.charCodeAt(++g.position);wt(g,it,g.position,!1)}return!0}p(mt,"readBlockScalar");function ke(g,D){const V=g.tag,Q=g.anchor,X=[];let st=!1;if(g.firstTabInLine!==-1)return!1;g.anchor!==null&&O(g,g.anchor,X);let T=g.input.charCodeAt(g.position);for(;T!==0&&(g.firstTabInLine!==-1&&(g.position=g.firstTabInLine,B(g,"tab characters must not be used in indentation")),T===45);){const R=g.input.charCodeAt(g.position+1);if(!_(R))break;if(st=!0,g.position++,Lt(g,!0,-1)&&g.lineIndent<=D){X.push(null),T=g.input.charCodeAt(g.position);continue}const rt=g.line;if(Te(g,D,n,!1,!0),X.push(g.result),Lt(g,!0,-1),T=g.input.charCodeAt(g.position),(g.line===rt||g.lineIndent>D)&&T!==0)B(g,"bad indentation of a sequence entry");else if(g.lineIndent<D)break}return st?(g.tag=V,g.anchor=Q,g.kind="sequence",g.result=X,!0):!1}p(ke,"readBlockSequence");function re(g,D,V){let Q,X,st,T;const R=g.tag,rt=g.anchor,Z={},J=Object.create(null);let it=null,tt=null,dt=null,ct=!1,Tt=!1;if(g.firstTabInLine!==-1)return!1;g.anchor!==null&&O(g,g.anchor,Z);let Bt=g.input.charCodeAt(g.position);for(;Bt!==0;){!ct&&g.firstTabInLine!==-1&&(g.position=g.firstTabInLine,B(g,"tab characters must not be used in indentation"));const zt=g.input.charCodeAt(g.position+1),Xt=g.line;if((Bt===63||Bt===58)&&_(zt))Bt===63?(ct&&(At(g,Z,J,it,tt,null,X,st,T),it=tt=dt=null),Tt=!0,ct=!0,Q=!0):ct?(ct=!1,Q=!0):B(g,"incomplete explicit mapping pair; a key node is missed; or followed by a non-tabulated empty line"),g.position+=1,Bt=zt;else{if(X=g.line,st=g.lineStart,T=g.position,!Te(g,V,a,!1,!0))break;if(g.line===Xt){for(Bt=g.input.charCodeAt(g.position);w(Bt);)Bt=g.input.charCodeAt(++g.position);if(Bt===58)Bt=g.input.charCodeAt(++g.position),_(Bt)||B(g,"a whitespace character is expected after the key-value separator within a block mapping"),ct&&(At(g,Z,J,it,tt,null,X,st,T),it=tt=dt=null),Tt=!0,ct=!1,Q=!1,it=g.tag,tt=g.result;else if(Tt)B(g,"can not read an implicit mapping pair; a colon is missed");else return g.tag=R,g.anchor=rt,!0}else if(Tt)B(g,"can not read a block mapping entry; a multiline key may not be an implicit key");else return g.tag=R,g.anchor=rt,!0}if((g.line===Xt||g.lineIndent>D)&&(ct&&(X=g.line,st=g.lineStart,T=g.position),Te(g,D,l,!0,Q)&&(ct?tt=g.result:dt=g.result),ct||(At(g,Z,J,it,tt,dt,X,st,T),it=tt=dt=null),Lt(g,!0,-1),Bt=g.input.charCodeAt(g.position)),(g.line===Xt||g.lineIndent>D)&&Bt!==0)B(g,"bad indentation of a mapping entry");else if(g.lineIndent<D)break}return ct&&At(g,Z,J,it,tt,null,X,st,T),Tt&&(g.tag=R,g.anchor=rt,g.kind="mapping",g.result=Z),Tt}p(re,"readBlockMapping");function Ye(g){let D=!1,V=!1,Q,X,st=g.input.charCodeAt(g.position);if(st!==33)return!1;g.tag!==null&&B(g,"duplication of a tag property"),st=g.input.charCodeAt(++g.position),st===60?(D=!0,st=g.input.charCodeAt(++g.position)):st===33?(V=!0,Q="!!",st=g.input.charCodeAt(++g.position)):Q="!";let T=g.position;if(D){do st=g.input.charCodeAt(++g.position);while(st!==0&&st!==62);g.position<g.length?(X=g.input.slice(T,g.position),st=g.input.charCodeAt(++g.position)):B(g,"unexpected end of the stream within a verbatim tag")}else{for(;st!==0&&!_(st);)st===33&&(V?B(g,"tag suffix cannot contain exclamation marks"):(Q=g.input.slice(T-1,g.position+1),y.test(Q)||B(g,"named tag handle cannot contain such characters"),V=!0,T=g.position+1)),st=g.input.charCodeAt(++g.position);X=g.input.slice(T,g.position),m.test(X)&&B(g,"tag suffix cannot contain flow indicator characters")}X&&!C.test(X)&&B(g,"tag name cannot contain such characters: "+X);try{X=decodeURIComponent(X)}catch{B(g,"tag name is malformed: "+X)}return D?g.tag=X:s.call(g.tagMap,Q)?g.tag=g.tagMap[Q]+X:Q==="!"?g.tag="!"+X:Q==="!!"?g.tag="tag:yaml.org,2002:"+X:B(g,'undeclared tag handle "'+Q+'"'),!0}p(Ye,"readTagProperty");function yr(g){let D=g.input.charCodeAt(g.position);if(D!==38)return!1;g.anchor!==null&&B(g,"duplication of an anchor property"),D=g.input.charCodeAt(++g.position);const V=g.position;for(;D!==0&&!_(D)&&!v(D);)D=g.input.charCodeAt(++g.position);return g.position===V&&B(g,"name of an anchor node must contain at least one character"),g.anchor=g.input.slice(V,g.position),!0}p(yr,"readAnchorProperty");function we(g){let D=g.input.charCodeAt(g.position);if(D!==42)return!1;D=g.input.charCodeAt(++g.position);const V=g.position;for(;D!==0&&!_(D)&&!v(D);)D=g.input.charCodeAt(++g.position);g.position===V&&B(g,"name of an alias node must contain at least one character");const Q=g.input.slice(V,g.position);return s.call(g.anchorMap,Q)||B(g,'unidentified alias "'+Q+'"'),g.result=g.anchorMap[Q],Lt(g,!0,-1),!0}p(we,"readAlias");function Er(g,D,V,Q){const X=pt(g);return H(g),kt(g,D),g.tag=null,g.anchor=null,g.kind=null,g.result=null,re(g,V,Q)&&g.kind==="mapping"?(K(g),!0):(ut(g),kt(g,X),!1)}p(Er,"tryReadBlockMappingFromProperty");function Te(g,D,V,Q,X){let st,T,R=1,rt=!1,Z=!1,J=null,it,tt,dt;g.depth>=g.maxDepth&&B(g,"nesting exceeded maxDepth ("+g.maxDepth+")"),g.depth+=1,g.listener!==null&&g.listener("open",g),g.tag=null,g.anchor=null,g.kind=null,g.result=null;const ct=st=T=l===V||n===V;if(Q&&Lt(g,!0,-1)&&(rt=!0,g.lineIndent>D?R=1:g.lineIndent===D?R=0:g.lineIndent<D&&(R=-1)),R===1)for(;;){const Tt=g.input.charCodeAt(g.position),Bt=pt(g);if(rt&&(Tt===33&&g.tag!==null||Tt===38&&g.anchor!==null)||!Ye(g)&&!yr(g))break;J===null&&(J=Bt),Lt(g,!0,-1)?(rt=!0,T=ct,g.lineIndent>D?R=1:g.lineIndent===D?R=0:g.lineIndent<D&&(R=-1)):T=!1}if(T&&(T=rt||X),R===1||l===V)if(o===V||a===V?tt=D:tt=D+1,dt=g.position-g.lineStart,R===1)if(T&&(ke(g,dt)||re(g,dt,tt))||q(g,tt))Z=!0;else{const Tt=g.input.charCodeAt(g.position);J!==null&&ct&&!T&&Tt!==124&&Tt!==62&&Er(g,J,J.position-J.lineStart,tt)||st&&mt(g,tt)||Nt(g,tt)||Ft(g,tt)?Z=!0:we(g)?(Z=!0,(g.tag!==null||g.anchor!==null)&&B(g,"alias node should not have any properties")):Mt(g,tt,o===V)&&(Z=!0,g.tag===null&&(g.tag="?")),g.anchor!==null&&O(g,g.anchor,g.result)}else R===0&&(Z=T&&ke(g,dt));if(g.tag===null)g.anchor!==null&&O(g,g.anchor,g.result);else if(g.tag==="?"){g.result!==null&&g.kind!=="scalar"&&B(g,'unacceptable node kind for !<?> tag; it should be "scalar", not "'+g.kind+'"');for(let Tt=0,Bt=g.implicitTypes.length;Tt<Bt;Tt+=1)if(it=g.implicitTypes[Tt],it.resolve(g.result)){g.result=it.construct(g.result),g.tag=it.tag,g.anchor!==null&&O(g,g.anchor,g.result);break}}else if(g.tag!=="!"){if(s.call(g.typeMap[g.kind||"fallback"],g.tag))it=g.typeMap[g.kind||"fallback"][g.tag];else{it=null;const Tt=g.typeMap.multi[g.kind||"fallback"];for(let Bt=0,zt=Tt.length;Bt<zt;Bt+=1)if(g.tag.slice(0,Tt[Bt].tag.length)===Tt[Bt].tag){it=Tt[Bt];break}}it||B(g,"unknown tag !<"+g.tag+">"),g.result!==null&&it.kind!==g.kind&&B(g,"unacceptable node kind for !<"+g.tag+'> tag; it should be "'+it.kind+'", not "'+g.kind+'"'),it.resolve(g.result,g.tag)?(g.result=it.construct(g.result,g.tag),g.anchor!==null&&O(g,g.anchor,g.result)):B(g,"cannot resolve a node with !<"+g.tag+"> explicit tag")}return g.listener!==null&&g.listener("close",g),g.depth-=1,g.tag!==null||g.anchor!==null||Z}p(Te,"composeNode");function Mr(g){const D=g.position;let V=!1,Q;for(g.version=null,g.checkLineBreaks=g.legacy,g.tagMap=Object.create(null),g.anchorMap=Object.create(null);(Q=g.input.charCodeAt(g.position))!==0&&(Lt(g,!0,-1),Q=g.input.charCodeAt(g.position),!(g.lineIndent>0||Q!==37));){V=!0,Q=g.input.charCodeAt(++g.position);let X=g.position;for(;Q!==0&&!_(Q);)Q=g.input.charCodeAt(++g.position);const st=g.input.slice(X,g.position),T=[];for(st.length<1&&B(g,"directive name must not be less than one character in length");Q!==0;){for(;w(Q);)Q=g.input.charCodeAt(++g.position);if(Q===35){do Q=g.input.charCodeAt(++g.position);while(Q!==0&&!b(Q));break}if(b(Q))break;for(X=g.position;Q!==0&&!_(Q);)Q=g.input.charCodeAt(++g.position);T.push(g.input.slice(X,g.position))}Q!==0&&qt(g),s.call(nt,st)?nt[st](g,st,T):P(g,'unknown document directive "'+st+'"')}if(Lt(g,!0,-1),g.lineIndent===0&&g.input.charCodeAt(g.position)===45&&g.input.charCodeAt(g.position+1)===45&&g.input.charCodeAt(g.position+2)===45?(g.position+=3,Lt(g,!0,-1)):V&&B(g,"directives end mark is expected"),Te(g,g.lineIndent-1,l,!1,!0),Lt(g,!0,-1),g.checkLineBreaks&&f.test(g.input.slice(D,g.position))&&P(g,"non-ASCII line breaks are interpreted as content"),g.documents.push(g.result),g.position===g.lineStart&<(g)){g.input.charCodeAt(g.position)===46&&(g.position+=3,Lt(g,!0,-1));return}g.position<g.length-1&&B(g,"end of the stream or a document separator is expected")}p(Mr,"readDocument");function xr(g,D){g=String(g),D=D||{},g.length!==0&&(g.charCodeAt(g.length-1)!==10&&g.charCodeAt(g.length-1)!==13&&(g+=`
|
|
286
|
+
`),g.charCodeAt(0)===65279&&(g=g.slice(1)));const V=new M(g,D),Q=g.indexOf("\0");for(Q!==-1&&(V.position=Q,B(V,"null byte is not allowed in input")),V.input+="\0";V.input.charCodeAt(V.position)===32;)V.lineIndent+=1,V.position+=1;for(;V.position<V.length-1;)Mr(V);return V.documents}p(xr,"loadDocuments");function _e(g,D,V){D!==null&&typeof D=="object"&&typeof V>"u"&&(V=D,D=null);const Q=xr(g,V);if(typeof D!="function")return Q;for(let X=0,st=Q.length;X<st;X+=1)D(Q[X])}p(_e,"loadAll2");function Oe(g,D){const V=xr(g,D);if(V.length!==0){if(V.length===1)return V[0];throw new t("expected a single document in the stream, but found more")}}return p(Oe,"load2"),vo.loadAll=_e,vo.load=Oe,vo}p(t0,"requireLoader");var Yn={},nf;function e0(){if(nf)return Yn;nf=1;const e=ss(),t=os(),r=Pa(),i=Object.prototype.toString,s=Object.prototype.hasOwnProperty,o=65279,a=9,n=10,l=13,c=32,h=33,u=34,d=35,f=37,m=38,y=39,C=42,x=44,b=45,w=58,_=61,v=62,F=63,A=64,L=91,j=93,z=96,W=123,ot=124,Y=125,M={};M[0]="\\0",M[7]="\\a",M[8]="\\b",M[9]="\\t",M[10]="\\n",M[11]="\\v",M[12]="\\f",M[13]="\\r",M[27]="\\e",M[34]='\\"',M[92]="\\\\",M[133]="\\N",M[160]="\\_",M[8232]="\\L",M[8233]="\\P";const $=["y","Y","yes","Yes","YES","on","On","ON","n","N","no","No","NO","off","Off","OFF"],B=/^[-+]?[0-9_]+(?::[0-9_]+)+(?:\.[0-9_]*)?$/;function P(T,R){if(R===null)return{};const rt={},Z=Object.keys(R);for(let J=0,it=Z.length;J<it;J+=1){let tt=Z[J],dt=String(R[tt]);tt.slice(0,2)==="!!"&&(tt="tag:yaml.org,2002:"+tt.slice(2));const ct=T.compiledTypeMap.fallback[tt];ct&&s.call(ct.styleAliases,dt)&&(dt=ct.styleAliases[dt]),rt[tt]=dt}return rt}p(P,"compileStyleMap");function O(T){let R,rt;const Z=T.toString(16).toUpperCase();if(T<=255)R="x",rt=2;else if(T<=65535)R="u",rt=4;else if(T<=4294967295)R="U",rt=8;else throw new t("code point within a string may not be greater than 0xFFFFFFFF");return"\\"+R+e.repeat("0",rt-Z.length)+Z}p(O,"encodeHex");const H=1,K=2;function ut(T){this.schema=T.schema||r,this.indent=Math.max(1,T.indent||2),this.noArrayIndent=T.noArrayIndent||!1,this.skipInvalid=T.skipInvalid||!1,this.flowLevel=e.isNothing(T.flowLevel)?-1:T.flowLevel,this.styleMap=P(this.schema,T.styles||null),this.sortKeys=T.sortKeys||!1,this.lineWidth=T.lineWidth||80,this.noRefs=T.noRefs||!1,this.noCompatMode=T.noCompatMode||!1,this.condenseFlow=T.condenseFlow||!1,this.quotingType=T.quotingType==='"'?K:H,this.forceQuotes=T.forceQuotes||!1,this.replacer=typeof T.replacer=="function"?T.replacer:null,this.implicitTypes=this.schema.compiledImplicit,this.explicitTypes=this.schema.compiledExplicit,this.tag=null,this.result="",this.duplicates=[],this.usedDuplicates=null}p(ut,"State");function pt(T,R){const rt=e.repeat(" ",R);let Z=0,J="";const it=T.length;for(;Z<it;){let tt;const dt=T.indexOf(`
|
|
287
|
+
`,Z);dt===-1?(tt=T.slice(Z),Z=it):(tt=T.slice(Z,dt+1),Z=dt+1),tt.length&&tt!==`
|
|
288
|
+
`&&(J+=rt),J+=tt}return J}p(pt,"indentString");function kt(T,R){return`
|
|
289
|
+
`+e.repeat(" ",T.indent*R)}p(kt,"generateNextLine");function nt(T,R){for(let rt=0,Z=T.implicitTypes.length;rt<Z;rt+=1)if(T.implicitTypes[rt].resolve(R))return!0;return!1}p(nt,"testImplicitResolving");function wt(T){return T===c||T===a}p(wt,"isWhitespace");function Et(T){return T>=32&&T<=126||T>=161&&T<=55295&&T!==8232&&T!==8233||T>=57344&&T<=65533&&T!==o||T>=65536&&T<=1114111}p(Et,"isPrintable");function At(T){return Et(T)&&T!==o&&T!==l&&T!==n}p(At,"isNsCharOrWhitespace");function qt(T,R,rt){const Z=At(T),J=Z&&!wt(T);return(rt?Z:Z&&T!==x&&T!==L&&T!==j&&T!==W&&T!==Y)&&T!==d&&!(R===w&&!J)||At(R)&&!wt(R)&&T===d||R===w&&J}p(qt,"isPlainSafe");function Lt(T){return Et(T)&&T!==o&&!wt(T)&&T!==b&&T!==F&&T!==w&&T!==x&&T!==L&&T!==j&&T!==W&&T!==Y&&T!==d&&T!==m&&T!==C&&T!==h&&T!==ot&&T!==_&&T!==v&&T!==y&&T!==u&&T!==f&&T!==A&&T!==z}p(Lt,"isPlainSafeFirst");function lt(T){return!wt(T)&&T!==w}p(lt,"isPlainSafeLast");function gt(T,R){const rt=T.charCodeAt(R);let Z;return rt>=55296&&rt<=56319&&R+1<T.length&&(Z=T.charCodeAt(R+1),Z>=56320&&Z<=57343)?(rt-55296)*1024+Z-56320+65536:rt}p(gt,"codePointAt");function Mt(T){return/^\n* /.test(T)}p(Mt,"needIndentIndicator");const Nt=1,Ft=2,q=3,mt=4,ke=5;function re(T,R,rt,Z,J,it,tt,dt){let ct,Tt=0,Bt=null,zt=!1,Xt=!1;const ns=Z!==-1;let tr=-1,er=Lt(gt(T,0))&<(gt(T,T.length-1));if(R||tt)for(ct=0;ct<T.length;Tt>=65536?ct+=2:ct++){if(Tt=gt(T,ct),!Et(Tt))return ke;er=er&&qt(Tt,Bt,dt),Bt=Tt}else{for(ct=0;ct<T.length;Tt>=65536?ct+=2:ct++){if(Tt=gt(T,ct),Tt===n)zt=!0,ns&&(Xt=Xt||ct-tr-1>Z&&T[tr+1]!==" ",tr=ct);else if(!Et(Tt))return ke;er=er&&qt(Tt,Bt,dt),Bt=Tt}Xt=Xt||ns&&ct-tr-1>Z&&T[tr+1]!==" "}return!zt&&!Xt?er&&!tt&&!J(T)?Nt:it===K?ke:Ft:rt>9&&Mt(T)?ke:tt?it===K?ke:Ft:Xt?mt:q}p(re,"chooseScalarStyle");function Ye(T,R,rt,Z,J){T.dump=(function(){if(R.length===0)return T.quotingType===K?'""':"''";if(!T.noCompatMode&&($.indexOf(R)!==-1||B.test(R)))return T.quotingType===K?'"'+R+'"':"'"+R+"'";const it=T.indent*Math.max(1,rt),tt=T.lineWidth===-1?-1:Math.max(Math.min(T.lineWidth,40),T.lineWidth-it),dt=Z||T.flowLevel>-1&&rt>=T.flowLevel;function ct(Tt){return nt(T,Tt)}switch(p(ct,"testAmbiguity"),re(R,dt,T.indent,tt,ct,T.quotingType,T.forceQuotes&&!Z,J)){case Nt:return R;case Ft:return"'"+R.replace(/'/g,"''")+"'";case q:return"|"+yr(R,T.indent)+we(pt(R,it));case mt:return">"+yr(R,T.indent)+we(pt(Er(R,tt),it));case ke:return'"'+Mr(R)+'"';default:throw new t("impossible error: invalid scalar style")}})()}p(Ye,"writeScalar");function yr(T,R){const rt=Mt(T)?String(R):"",Z=T[T.length-1]===`
|
|
290
|
+
`,it=Z&&(T[T.length-2]===`
|
|
291
|
+
`||T===`
|
|
292
|
+
`)?"+":Z?"":"-";return rt+it+`
|
|
293
|
+
`}p(yr,"blockHeader");function we(T){return T[T.length-1]===`
|
|
294
|
+
`?T.slice(0,-1):T}p(we,"dropEndingNewline");function Er(T,R){const rt=/(\n+)([^\n]*)/g;let Z=(function(){let dt=T.indexOf(`
|
|
295
|
+
`);return dt=dt!==-1?dt:T.length,rt.lastIndex=dt,Te(T.slice(0,dt),R)})(),J=T[0]===`
|
|
296
|
+
`||T[0]===" ",it,tt;for(;tt=rt.exec(T);){const dt=tt[1],ct=tt[2];it=ct[0]===" ",Z+=dt+(!J&&!it&&ct!==""?`
|
|
297
|
+
`:"")+Te(ct,R),J=it}return Z}p(Er,"foldString");function Te(T,R){if(T===""||T[0]===" ")return T;const rt=/ [^ ]/g;let Z,J=0,it,tt=0,dt=0,ct="";for(;Z=rt.exec(T);)dt=Z.index,dt-J>R&&(it=tt>J?tt:dt,ct+=`
|
|
298
|
+
`+T.slice(J,it),J=it+1),tt=dt;return ct+=`
|
|
299
|
+
`,T.length-J>R&&tt>J?ct+=T.slice(J,tt)+`
|
|
300
|
+
`+T.slice(tt+1):ct+=T.slice(J),ct.slice(1)}p(Te,"foldLine");function Mr(T){let R="",rt=0;for(let Z=0;Z<T.length;rt>=65536?Z+=2:Z++){rt=gt(T,Z);const J=M[rt];!J&&Et(rt)?(R+=T[Z],rt>=65536&&(R+=T[Z+1])):R+=J||O(rt)}return R}p(Mr,"escapeString");function xr(T,R,rt){let Z="";const J=T.tag;for(let it=0,tt=rt.length;it<tt;it+=1){let dt=rt[it];T.replacer&&(dt=T.replacer.call(rt,String(it),dt)),(V(T,R,dt,!1,!1)||typeof dt>"u"&&V(T,R,null,!1,!1))&&(Z!==""&&(Z+=","+(T.condenseFlow?"":" ")),Z+=T.dump)}T.tag=J,T.dump="["+Z+"]"}p(xr,"writeFlowSequence");function _e(T,R,rt,Z){let J="";const it=T.tag;for(let tt=0,dt=rt.length;tt<dt;tt+=1){let ct=rt[tt];T.replacer&&(ct=T.replacer.call(rt,String(tt),ct)),(V(T,R+1,ct,!0,!0,!1,!0)||typeof ct>"u"&&V(T,R+1,null,!0,!0,!1,!0))&&((!Z||J!=="")&&(J+=kt(T,R)),T.dump&&n===T.dump.charCodeAt(0)?J+="-":J+="- ",J+=T.dump)}T.tag=it,T.dump=J||"[]"}p(_e,"writeBlockSequence");function Oe(T,R,rt){let Z="";const J=T.tag,it=Object.keys(rt);for(let tt=0,dt=it.length;tt<dt;tt+=1){let ct="";Z!==""&&(ct+=", "),T.condenseFlow&&(ct+='"');const Tt=it[tt];let Bt=rt[Tt];T.replacer&&(Bt=T.replacer.call(rt,Tt,Bt)),V(T,R,Tt,!1,!1)&&(T.dump.length>1024&&(ct+="? "),ct+=T.dump+(T.condenseFlow?'"':"")+":"+(T.condenseFlow?"":" "),V(T,R,Bt,!1,!1)&&(ct+=T.dump,Z+=ct))}T.tag=J,T.dump="{"+Z+"}"}p(Oe,"writeFlowMapping");function g(T,R,rt,Z){let J="";const it=T.tag,tt=Object.keys(rt);if(T.sortKeys===!0)tt.sort();else if(typeof T.sortKeys=="function")tt.sort(T.sortKeys);else if(T.sortKeys)throw new t("sortKeys must be a boolean or a function");for(let dt=0,ct=tt.length;dt<ct;dt+=1){let Tt="";(!Z||J!=="")&&(Tt+=kt(T,R));const Bt=tt[dt];let zt=rt[Bt];if(T.replacer&&(zt=T.replacer.call(rt,Bt,zt)),!V(T,R+1,Bt,!0,!0,!0))continue;const Xt=T.tag!==null&&T.tag!=="?"||T.dump&&T.dump.length>1024;Xt&&(T.dump&&n===T.dump.charCodeAt(0)?Tt+="?":Tt+="? "),Tt+=T.dump,Xt&&(Tt+=kt(T,R)),V(T,R+1,zt,!0,Xt)&&(T.dump&&n===T.dump.charCodeAt(0)?Tt+=":":Tt+=": ",Tt+=T.dump,J+=Tt)}T.tag=it,T.dump=J||"{}"}p(g,"writeBlockMapping");function D(T,R,rt){const Z=rt?T.explicitTypes:T.implicitTypes;for(let J=0,it=Z.length;J<it;J+=1){const tt=Z[J];if((tt.instanceOf||tt.predicate)&&(!tt.instanceOf||typeof R=="object"&&R instanceof tt.instanceOf)&&(!tt.predicate||tt.predicate(R))){if(rt?tt.multi&&tt.representName?T.tag=tt.representName(R):T.tag=tt.tag:T.tag="?",tt.represent){const dt=T.styleMap[tt.tag]||tt.defaultStyle;let ct;if(i.call(tt.represent)==="[object Function]")ct=tt.represent(R,dt);else if(s.call(tt.represent,dt))ct=tt.represent[dt](R,dt);else throw new t("!<"+tt.tag+'> tag resolver accepts not "'+dt+'" style');T.dump=ct}return!0}}return!1}p(D,"detectType");function V(T,R,rt,Z,J,it,tt){T.tag=null,T.dump=rt,D(T,rt,!1)||D(T,rt,!0);const dt=i.call(T.dump),ct=Z;Z&&(Z=T.flowLevel<0||T.flowLevel>R);const Tt=dt==="[object Object]"||dt==="[object Array]";let Bt,zt;if(Tt&&(Bt=T.duplicates.indexOf(rt),zt=Bt!==-1),(T.tag!==null&&T.tag!=="?"||zt||T.indent!==2&&R>0)&&(J=!1),zt&&T.usedDuplicates[Bt])T.dump="*ref_"+Bt;else{if(Tt&&zt&&!T.usedDuplicates[Bt]&&(T.usedDuplicates[Bt]=!0),dt==="[object Object]")Z&&Object.keys(T.dump).length!==0?(g(T,R,T.dump,J),zt&&(T.dump="&ref_"+Bt+T.dump)):(Oe(T,R,T.dump),zt&&(T.dump="&ref_"+Bt+" "+T.dump));else if(dt==="[object Array]")Z&&T.dump.length!==0?(T.noArrayIndent&&!tt&&R>0?_e(T,R-1,T.dump,J):_e(T,R,T.dump,J),zt&&(T.dump="&ref_"+Bt+T.dump)):(xr(T,R,T.dump),zt&&(T.dump="&ref_"+Bt+" "+T.dump));else if(dt==="[object String]")T.tag!=="?"&&Ye(T,T.dump,R,it,ct);else{if(dt==="[object Undefined]")return!1;if(T.skipInvalid)return!1;throw new t("unacceptable kind of an object to dump "+dt)}if(T.tag!==null&&T.tag!=="?"){let Xt=encodeURI(T.tag[0]==="!"?T.tag.slice(1):T.tag).replace(/!/g,"%21");T.tag[0]==="!"?Xt="!"+Xt:Xt.slice(0,18)==="tag:yaml.org,2002:"?Xt="!!"+Xt.slice(18):Xt="!<"+Xt+">",T.dump=Xt+" "+T.dump}}return!0}p(V,"writeNode");function Q(T,R){const rt=[],Z=[];X(T,rt,Z);const J=Z.length;for(let it=0;it<J;it+=1)R.duplicates.push(rt[Z[it]]);R.usedDuplicates=new Array(J)}p(Q,"getDuplicateReferences");function X(T,R,rt){if(T!==null&&typeof T=="object"){const Z=R.indexOf(T);if(Z!==-1)rt.indexOf(Z)===-1&&rt.push(Z);else if(R.push(T),Array.isArray(T))for(let J=0,it=T.length;J<it;J+=1)X(T[J],R,rt);else{const J=Object.keys(T);for(let it=0,tt=J.length;it<tt;it+=1)X(T[J[it]],R,rt)}}}p(X,"inspectNode");function st(T,R){R=R||{};const rt=new ut(R);rt.noRefs||Q(T,rt);let Z=T;return rt.replacer&&(Z=rt.replacer.call({"":Z},"",Z)),V(rt,0,Z,!0,!0)?rt.dump+`
|
|
301
|
+
`:""}return p(st,"dump2"),Yn.dump=st,Yn}p(e0,"requireDumper");var lf;function r0(){if(lf)return pe;lf=1;const e=t0(),t=e0();function r(i,s){return function(){throw new Error("Function yaml."+i+" is removed in js-yaml 4. Use yaml."+s+" instead, which is now safe by default.")}}return p(r,"renamed"),pe.Type=be(),pe.Schema=zh(),pe.FAILSAFE_SCHEMA=jh(),pe.JSON_SCHEMA=Zh(),pe.CORE_SCHEMA=Kh(),pe.DEFAULT_SCHEMA=Pa(),pe.load=e.load,pe.loadAll=e.loadAll,pe.dump=t.dump,pe.YAMLException=os(),pe.types={binary:tc(),float:Vh(),map:Yh(),null:Uh(),pairs:rc(),set:ic(),timestamp:Qh(),bool:Gh(),int:Xh(),merge:Jh(),omap:ec(),seq:Hh(),str:Wh()},pe.safeLoad=r("safeLoad","load"),pe.safeLoadAll=r("safeLoadAll","loadAll"),pe.safeDump=r("safeDump","dump"),pe}p(r0,"requireJsYaml");var JF=r0(),tA=Qy(JF),{Type:x3,Schema:C3,FAILSAFE_SCHEMA:b3,JSON_SCHEMA:eA,CORE_SCHEMA:k3,DEFAULT_SCHEMA:w3,load:rA,loadAll:T3,dump:_3,YAMLException:S3,types:v3,safeLoad:B3,safeLoadAll:L3,safeDump:F3}=tA,iA={common:Qs,getConfig:Jt,insertCluster:oy,insertEdge:ly,insertEdgeLabel:Eh,insertMarkers:uy,insertNode:Ah,interpolateToCurve:nh,labelHelper:_t,log:N,positionEdgeLabel:AS},Xs={},i0=p(e=>{for(const t of e)Xs[t.name]=t},"registerLayoutLoaders"),sA=p(()=>{i0([{name:"dagre",loader:p(async()=>await Rt(()=>import("./dagre-3AP2YEHR-CyourLfz.js"),__vite__mapDeps([3,4,0,1])),"loader")},{name:"swimlane",loader:p(async()=>await Rt(()=>import("./swimlanes-XN3QIQJK-C29TL26K.js"),__vite__mapDeps([5,0,1])),"loader")},{name:"cose-bilkent",loader:p(async()=>await Rt(()=>import("./cose-bilkent-JH36ORCC-DGFOsMUt.js"),__vite__mapDeps([6,7,0,1])),"loader")}])},"registerDefaultLayoutLoaders");sA();var A3=p(async(e,t)=>{if(!(e.layoutAlgorithm in Xs))throw new Error(`Unknown layout algorithm: ${e.layoutAlgorithm}`);if(e.diagramId)for(const h of e.nodes){const u=h.domId||h.id;h.domId=`${e.diagramId}-${u}`}const r=Xs[e.layoutAlgorithm],i=await r.loader(),{theme:s,themeVariables:o}=e.config,{useGradient:a,gradientStart:n,gradientStop:l}=o,c=t.attr("id");if(t.append("defs").append("filter").attr("id",`${c}-drop-shadow`).attr("height","130%").attr("width","130%").append("feDropShadow").attr("dx","4").attr("dy","4").attr("stdDeviation",0).attr("flood-opacity","0.06").attr("flood-color",`${s!=null&&s.includes("dark")?"#FFFFFF":"#000000"}`),t.append("defs").append("filter").attr("id",`${c}-drop-shadow-small`).attr("height","150%").attr("width","150%").append("feDropShadow").attr("dx","2").attr("dy","2").attr("stdDeviation",0).attr("flood-opacity","0.06").attr("flood-color",`${s!=null&&s.includes("dark")?"#FFFFFF":"#000000"}`),a){const h=t.append("linearGradient").attr("id",t.attr("id")+"-gradient").attr("gradientUnits","objectBoundingBox").attr("x1","0%").attr("y1","0%").attr("x2","100%").attr("y2","0%");h.append("svg:stop").attr("offset","0%").attr("stop-color",n).attr("stop-opacity",1),h.append("svg:stop").attr("offset","100%").attr("stop-color",l).attr("stop-opacity",1)}return i.render(e,t,iA,{algorithm:r.algorithm})},"render"),E3=p((e="",{fallback:t="dagre"}={})=>{if(e in Xs)return e;if(t in Xs)return N.warn(`Layout algorithm ${e} is not registered. Using ${t} as fallback.`),t;throw new Error(`Both layout algorithms ${e} and ${t} are not registered.`)},"getRegisteredLayoutAlgorithm"),sc="comm",s0="rule",o0="decl",oA="@media",aA="@import",nA="@supports",lA="@namespace",El="@keyframes",a0="@layer",hA="@scope",cA=Math.abs,Rs=String.fromCharCode;function n0(e){return e.trim()}function Ml(e,t,r){return e.replace(t,r)}function Mi(e,t){return e.charCodeAt(t)|0}function Ji(e,t,r){return e.slice(t,r)}function ar(e){return e.length}function l0(e){return e.length}function Bo(e,t){return t.push(e),e}var Ra=1,ts=1,h0=0,We=0,oe=0,as="";function oc(e,t,r,i,s,o,a,n){return{value:e,root:t,parent:r,type:i,props:s,children:o,line:Ra,column:ts,length:a,return:"",siblings:n}}function uA(){return oe}function dA(){return oe=We>0?Mi(as,--We):0,ts--,oe===10&&(ts=1,Ra--),oe}function Ze(){return oe=We<h0?Mi(as,We++):0,ts++,oe===10&&(ts=1,Ra++),oe}function Nr(){return Mi(as,We)}function zo(){return We}function Na(e,t){return Ji(as,e,t)}function Vs(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function fA(e){return Ra=ts=1,h0=ar(as=e),We=0,[]}function pA(e){return as="",e}function jn(e){return n0(Na(We-1,$l(e===91?e+2:e===40?e+1:e)))}function gA(e){for(;(oe=Nr())&&oe<33;)Ze();return Vs(e)>2||Vs(oe)>3?"":" "}function mA(e,t){for(;--t&&Ze()&&!(oe<48||oe>102||oe>57&&oe<65||oe>70&&oe<97););return Na(e,zo()+(t<6&&Nr()==32&&Ze()==32))}function $l(e){for(;Ze();)switch(oe){case e:return We;case 34:case 39:e!==34&&e!==39&&$l(oe);break;case 40:e===41&&$l(e);break;case 92:Ze();break}return We}function yA(e,t){for(;Ze()&&e+oe!==57;)if(e+oe===84&&Nr()===47)break;return"/*"+Na(t,We-1)+"*"+Rs(e===47?e:Ze())}function xA(e){for(;!Vs(Nr());)Ze();return Na(e,We)}function CA(e){return pA(Wo("",null,null,null,[""],e=fA(e),0,[0],e))}function Wo(e,t,r,i,s,o,a,n,l){for(var c=0,h=0,u=a,d=0,f=0,m=0,y=1,C=1,x=1,b=0,w=0,_="",v=s,F=o,A=i,L=_;C;)switch(m=w,w=Ze()){case 40:m!=108&&Mi(L,u-1)==58?(b++,L+="("):L+=jn(w);break;case 41:b--,L+=")";break;case 34:case 39:case 91:L+=jn(w);break;case 9:case 10:case 13:case 32:if(b>0){L+=Rs(w);break}L+=gA(m);break;case 92:L+=mA(zo()-1,7);continue;case 47:switch(Nr()){case 42:case 47:Bo(bA(yA(Ze(),zo()),t,r,l),l),(Vs(m||1)==5||Vs(Nr()||1)==5)&&ar(L)&&Ji(L,-1,void 0)!==" "&&(L+=" ");break;default:L+="/"}break;case 123*y:n[c++]=ar(L)*x;case 125*y:case 59:case 0:if(b>0&&w){L+=Rs(w);break}switch(w){case 0:case 125:C=0;case 59+h:x==-1&&(L=Ml(L,/\f/g,"")),f>0&&(ar(L)-u||y===0)&&Bo(f>32?cf(L+";",i,r,u-1,l):cf(Ml(L," ","")+";",i,r,u-2,l),l);break;case 59:L+=";";default:if(Bo(A=hf(L,t,r,c,h,s,n,_,v=[],F=[],u,o),o),w===123)if(h===0)Wo(L,t,A,A,v,o,u,n,F);else{switch(d){case 99:if(Mi(L,3)===110)break;case 108:if(Mi(L,2)===97)break;default:h=0;case 100:case 109:case 115:}h?Wo(e,A,A,i&&Bo(hf(e,A,A,0,0,s,n,_,s,v=[],u,F),F),s,F,u,n,i?v:F):Wo(L,A,A,A,[""],F,0,n,F)}}c=h=f=0,y=x=1,_=L="",u=a;break;case 58:u=1+ar(L),f=m;default:if(y<1){if(w==123)--y;else if(w==125&&y++==0&&dA()==125)continue}switch(L+=Rs(w),w*y){case 38:x=h>0?1:(L+="\f",-1);break;case 44:if(b>0)break;n[c++]=(ar(L)-1)*x,x=1;break;case 64:Nr()===45&&(L+=jn(Ze())),d=Nr(),h=u=ar(_=L+=xA(zo())),w++;break;case 45:m===45&&ar(L)==2&&(y=0)}}return o}function hf(e,t,r,i,s,o,a,n,l,c,h,u){for(var d=s-1,f=s===0?o:[""],m=l0(f),y=0,C=0,x=0;y<i;++y)for(var b=0,w=Ji(e,d+1,d=cA(C=a[y])),_=e;b<m;++b)(_=n0(C>0?f[b]+" "+w:Ml(w,/&\f/g,f[b])))&&(l[x++]=_);return oc(e,t,r,s===0?s0:n,l,c,h,u)}function bA(e,t,r,i){return oc(e,t,r,sc,Rs(uA()),Ji(e,2,-2),0,i)}function cf(e,t,r,i,s){return oc(e,t,r,o0,Ji(e,0,i),Ji(e,i+1,-1),i,s)}function Ol(e,t){for(var r="",i=0;i<e.length;i++)r+=t(e[i],i,e,t)||"";return r}function kA(e,t,r,i){switch(e.type){case a0:if(e.children.length)break;case aA:case lA:case o0:return e.return=e.return||e.value;case sc:return"";case El:return e.return=e.value+"{"+Ol(e.children,i)+"}";case s0:if(!ar(e.value=e.props.join(",")))return""}return ar(r=Ol(e.children,i))?e.return=e.value+"{"+r+"}":""}function wA(e){var t=l0(e);return function(r,i,s,o){for(var a="",n=0;n<t;n++)a+=e[n](r,i,s,o)||"";return a}}var c0="c4",TA=p(e=>/^\s*C4Context|C4Container|C4Component|C4Dynamic|C4Deployment/.test(e),"detector"),_A=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./c4Diagram-UCG6FXSJ-6mrH0x7Y.js");return{diagram:t}},__vite__mapDeps([8,9,0,1]));return{id:c0,diagram:e}},"loader"),SA={id:c0,detector:TA,loader:_A},vA=SA,u0="flowchart",BA=p((e,t)=>{var r,i;return((r=t==null?void 0:t.flowchart)==null?void 0:r.defaultRenderer)==="dagre-wrapper"||((i=t==null?void 0:t.flowchart)==null?void 0:i.defaultRenderer)==="elk"?!1:/^\s*graph/.test(e)},"detector"),LA=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./flowDiagram-A5DVABFB-S34LpLtK.js").then(r=>r.f);return{diagram:t}},__vite__mapDeps([10,11,12,13,9,14]));return{id:u0,diagram:e}},"loader"),FA={id:u0,detector:BA,loader:LA},AA=FA,d0="flowchart-v2",EA=p((e,t)=>{var r,i,s;return((r=t==null?void 0:t.flowchart)==null?void 0:r.defaultRenderer)==="dagre-d3"?!1:(((i=t==null?void 0:t.flowchart)==null?void 0:i.defaultRenderer)==="elk"&&(t.layout="elk"),/^\s*graph/.test(e)&&((s=t==null?void 0:t.flowchart)==null?void 0:s.defaultRenderer)==="dagre-wrapper"?!0:/^\s*flowchart/.test(e))},"detector"),MA=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./flowDiagram-A5DVABFB-S34LpLtK.js").then(r=>r.f);return{diagram:t}},__vite__mapDeps([10,11,12,13,9,14]));return{id:d0,diagram:e}},"loader"),$A={id:d0,detector:EA,loader:MA},OA=$A,f0="swimlane",DA=p(e=>/^\s*swimlane-beta\b/.test(e),"detector"),IA=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./swimlanesDiagram-VK2B7HYN-BfN-Xdmu.js");return{diagram:t}},__vite__mapDeps([15,10,11,12,13,9,14,0,1]));return{id:f0,diagram:e}},"loader"),PA={id:f0,detector:DA,loader:IA},RA=PA,p0="er",NA=p(e=>/^\s*erDiagram/.test(e),"detector"),qA=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./erDiagram-SSCWMZ5O-BRQMFQ5y.js");return{diagram:t}},__vite__mapDeps([16,12,13,14,0,1]));return{id:p0,diagram:e}},"loader"),zA={id:p0,detector:NA,loader:qA},WA=zA,g0="gitGraph",HA=p(e=>/^\s*gitGraph/.test(e),"detector"),YA=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./gitGraphDiagram-WWUBYQGX-LZsrdyyv.js");return{diagram:t}},__vite__mapDeps([17,18,19,20,0,1]));return{id:g0,diagram:e}},"loader"),jA={id:g0,detector:HA,loader:YA},UA=jA,m0="gantt",GA=p(e=>/^\s*gantt/.test(e),"detector"),XA=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./ganttDiagram-EL5Y4UJY-BFiqk1-G.js");return{diagram:t}},__vite__mapDeps([21,0,1,22,23,24]));return{id:m0,diagram:e}},"loader"),VA={id:m0,detector:GA,loader:XA},ZA=VA,y0="info",KA=p(e=>/^\s*info/.test(e),"detector"),QA=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./infoDiagram-RXCK75RN-0DvN6KIp.js");return{diagram:t}},__vite__mapDeps([25,20,0,1]));return{id:y0,diagram:e}},"loader"),JA={id:y0,detector:KA,loader:QA},x0="pie",tE=p(e=>/^\s*pie/.test(e),"detector"),eE=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./pieDiagram-E7YTZNPT-CmOEZ8zg.js");return{diagram:t}},__vite__mapDeps([26,19,20,0,1,27,28,23]));return{id:x0,diagram:e}},"loader"),rE={id:x0,detector:tE,loader:eE},C0="quadrantChart",iE=p(e=>/^\s*quadrantChart/.test(e),"detector"),sE=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./quadrantDiagram-AXDQQJYC-VW6fAhsV.js");return{diagram:t}},__vite__mapDeps([29,22,23,24,0,1]));return{id:C0,diagram:e}},"loader"),oE={id:C0,detector:iE,loader:sE},aE=oE,b0="xychart",nE=p(e=>/^\s*xychart(-beta)?/.test(e),"detector"),lE=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./xychartDiagram-S5SC5T6Z-BvkN1zsT.js");return{diagram:t}},__vite__mapDeps([30,23,28,22,24,0,1]));return{id:b0,diagram:e}},"loader"),hE={id:b0,detector:nE,loader:lE},cE=hE,k0="requirement",uE=p(e=>/^\s*requirement(Diagram)?/.test(e),"detector"),dE=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./requirementDiagram-EFPCY7ZU-pNGkq9Vw.js");return{diagram:t}},__vite__mapDeps([31,12,13,0,1]));return{id:k0,diagram:e}},"loader"),fE={id:k0,detector:uE,loader:dE},pE=fE,w0="sequence",gE=p(e=>/^\s*sequenceDiagram/.test(e),"detector"),mE=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./sequenceDiagram-WJ2MYXX4-BBW7wzKY.js");return{diagram:t}},__vite__mapDeps([32,18,9,0,1]));return{id:w0,diagram:e}},"loader"),yE={id:w0,detector:gE,loader:mE},xE=yE,T0="class",CE=p((e,t)=>{var r;return((r=t==null?void 0:t.class)==null?void 0:r.defaultRenderer)==="dagre-wrapper"?!1:/^\s*classDiagram/.test(e)},"detector"),bE=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./classDiagram-DTDB5LWJ-BGscw3OD.js");return{diagram:t}},__vite__mapDeps([33,34,11,12,13,9,0,1]));return{id:T0,diagram:e}},"loader"),kE={id:T0,detector:CE,loader:bE},wE=kE,_0="classDiagram",TE=p((e,t)=>{var r;return/^\s*classDiagram/.test(e)&&((r=t==null?void 0:t.class)==null?void 0:r.defaultRenderer)==="dagre-wrapper"?!0:/^\s*classDiagram-v2/.test(e)},"detector"),_E=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./classDiagram-v2-JRS7N3AN-BGscw3OD.js");return{diagram:t}},__vite__mapDeps([35,34,11,12,13,9,0,1]));return{id:_0,diagram:e}},"loader"),SE={id:_0,detector:TE,loader:_E},vE=SE,S0="state",BE=p((e,t)=>{var r;return((r=t==null?void 0:t.state)==null?void 0:r.defaultRenderer)==="dagre-wrapper"?!1:/^\s*stateDiagram/.test(e)},"detector"),LE=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./stateDiagram-HBIQ2CUA-W313Uz16.js");return{diagram:t}},__vite__mapDeps([36,37,12,13,9,4,0,1]));return{id:S0,diagram:e}},"loader"),FE={id:S0,detector:BE,loader:LE},AE=FE,v0="stateDiagram",EE=p((e,t)=>{var r;return!!(/^\s*stateDiagram-v2/.test(e)||/^\s*stateDiagram/.test(e)&&((r=t==null?void 0:t.state)==null?void 0:r.defaultRenderer)==="dagre-wrapper")},"detector"),ME=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./stateDiagram-v2-4QOOHH4V-DDhJBZzf.js");return{diagram:t}},__vite__mapDeps([38,37,12,13,9,0,1]));return{id:v0,diagram:e}},"loader"),$E={id:v0,detector:EE,loader:ME},OE=$E,B0="journey",DE=p(e=>/^\s*journey/.test(e),"detector"),IE=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./journeyDiagram-EYS64GPL-BBeiaCrj.js");return{diagram:t}},__vite__mapDeps([39,11,9,27,0,1]));return{id:B0,diagram:e}},"loader"),PE={id:B0,detector:DE,loader:IE},RE=PE,NE=p((e,t,r)=>{N.debug(`rendering svg for syntax error
|
|
302
|
+
`);const i=ow(t),s=i.append("g");i.attr("viewBox","0 0 2412 512"),Rf(i,100,512,!0),s.append("path").attr("class","error-icon").attr("d","m411.313,123.313c6.25-6.25 6.25-16.375 0-22.625s-16.375-6.25-22.625,0l-32,32-9.375,9.375-20.688-20.688c-12.484-12.5-32.766-12.5-45.25,0l-16,16c-1.261,1.261-2.304,2.648-3.31,4.051-21.739-8.561-45.324-13.426-70.065-13.426-105.867,0-192,86.133-192,192s86.133,192 192,192 192-86.133 192-192c0-24.741-4.864-48.327-13.426-70.065 1.402-1.007 2.79-2.049 4.051-3.31l16-16c12.5-12.492 12.5-32.758 0-45.25l-20.688-20.688 9.375-9.375 32.001-31.999zm-219.313,100.687c-52.938,0-96,43.063-96,96 0,8.836-7.164,16-16,16s-16-7.164-16-16c0-70.578 57.422-128 128-128 8.836,0 16,7.164 16,16s-7.164,16-16,16z"),s.append("path").attr("class","error-icon").attr("d","m459.02,148.98c-6.25-6.25-16.375-6.25-22.625,0s-6.25,16.375 0,22.625l16,16c3.125,3.125 7.219,4.688 11.313,4.688 4.094,0 8.188-1.563 11.313-4.688 6.25-6.25 6.25-16.375 0-22.625l-16.001-16z"),s.append("path").attr("class","error-icon").attr("d","m340.395,75.605c3.125,3.125 7.219,4.688 11.313,4.688 4.094,0 8.188-1.563 11.313-4.688 6.25-6.25 6.25-16.375 0-22.625l-16-16c-6.25-6.25-16.375-6.25-22.625,0s-6.25,16.375 0,22.625l15.999,16z"),s.append("path").attr("class","error-icon").attr("d","m400,64c8.844,0 16-7.164 16-16v-32c0-8.836-7.156-16-16-16-8.844,0-16,7.164-16,16v32c0,8.836 7.156,16 16,16z"),s.append("path").attr("class","error-icon").attr("d","m496,96.586h-32c-8.844,0-16,7.164-16,16 0,8.836 7.156,16 16,16h32c8.844,0 16-7.164 16-16 0-8.836-7.156-16-16-16z"),s.append("path").attr("class","error-icon").attr("d","m436.98,75.605c3.125,3.125 7.219,4.688 11.313,4.688 4.094,0 8.188-1.563 11.313-4.688l32-32c6.25-6.25 6.25-16.375 0-22.625s-16.375-6.25-22.625,0l-32,32c-6.251,6.25-6.251,16.375-0.001,22.625z"),s.append("text").attr("class","error-text").attr("x",1440).attr("y",250).attr("font-size","150px").style("text-anchor","middle").text("Syntax error in text"),s.append("text").attr("class","error-text").attr("x",1250).attr("y",400).attr("font-size","100px").style("text-anchor","middle").text(`mermaid version ${r}`)},"draw"),L0={draw:NE},qE=L0,zE={db:{},renderer:L0,parser:{parse:p(()=>{},"parse")}},WE=zE,F0="flowchart-elk",HE=p((e,t={})=>{var r;return/^\s*flowchart-elk/.test(e)||/^\s*(flowchart|graph)/.test(e)&&((r=t==null?void 0:t.flowchart)==null?void 0:r.defaultRenderer)==="elk"?(t.layout="elk",!0):!1},"detector"),YE=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./flowDiagram-A5DVABFB-S34LpLtK.js").then(r=>r.f);return{diagram:t}},__vite__mapDeps([10,11,12,13,9,14]));return{id:F0,diagram:e}},"loader"),jE={id:F0,detector:HE,loader:YE},UE=jE,A0="timeline",GE=p(e=>/^\s*timeline/.test(e),"detector"),XE=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./timeline-definition-24CTP7MA-CF0JMObX.js");return{diagram:t}},__vite__mapDeps([40,27,0,1]));return{id:A0,diagram:e}},"loader"),VE={id:A0,detector:GE,loader:XE},ZE=VE,E0="mindmap",KE=p(e=>/^\s*mindmap/.test(e),"detector"),QE=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./mindmap-definition-FBJOCRG2-hUxSpdKn.js");return{diagram:t}},__vite__mapDeps([41,12,13,0,1]));return{id:E0,diagram:e}},"loader"),JE={id:E0,detector:KE,loader:QE},tM=JE,M0="kanban",eM=p(e=>/^\s*kanban/.test(e),"detector"),rM=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./kanban-definition-3QL26DDD-ux42DRXQ.js");return{diagram:t}},__vite__mapDeps([42,11,0,1]));return{id:M0,diagram:e}},"loader"),iM={id:M0,detector:eM,loader:rM},sM=iM,$0="sankey",oM=p(e=>/^\s*sankey(-beta)?/.test(e),"detector"),aM=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./sankeyDiagram-P5KCCOFB-BIMmDTfZ.js");return{diagram:t}},__vite__mapDeps([43,28,23,0,1]));return{id:$0,diagram:e}},"loader"),nM={id:$0,detector:oM,loader:aM},lM=nM,O0="packet",hM=p(e=>/^\s*packet(-beta)?/.test(e),"detector"),cM=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./diagram-Z3DM3KII-kUbAfGAp.js");return{diagram:t}},__vite__mapDeps([44,19,20,0,1]));return{id:O0,diagram:e}},"loader"),uM={id:O0,detector:hM,loader:cM},D0="radar",dM=p(e=>/^\s*radar-beta/.test(e),"detector"),fM=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./diagram-UQ7AKVKN-UK94_1-P.js");return{diagram:t}},__vite__mapDeps([45,19,20,0,1]));return{id:D0,diagram:e}},"loader"),pM={id:D0,detector:dM,loader:fM},I0="block",gM=p(e=>/^\s*block(-beta)?/.test(e),"detector"),mM=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./blockDiagram-NRAW4CY4-B7wBbKiW.js");return{diagram:t}},__vite__mapDeps([46,11,14,0,1]));return{id:I0,diagram:e}},"loader"),yM={id:I0,detector:gM,loader:mM},xM=yM,P0="treeView",CM=p(e=>/^\s*treeView-beta/.test(e),"detector"),bM=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./diagram-S7CK7UJ4-BTMbx2np.js");return{diagram:t}},__vite__mapDeps([47,18,19,20,0,1]));return{id:P0,diagram:e}},"loader"),kM={id:P0,detector:CM,loader:bM},wM=kM,R0="architecture",TM=p(e=>/^\s*architecture/.test(e),"detector"),_M=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./architectureDiagram-5GKGNRK7-DydJHqOt.js");return{diagram:t}},__vite__mapDeps([48,19,20,0,1,7]));return{id:R0,diagram:e}},"loader"),SM={id:R0,detector:TM,loader:_M},vM=SM,N0="eventmodeling",BM=p(e=>/^\s*eventmodeling/.test(e),"detector"),LM=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./diagram-VSXAHHWV-C7zS-v9v.js");return{diagram:t}},__vite__mapDeps([49,19,20,0,1]));return{id:N0,diagram:e}},"loader"),FM={id:N0,detector:BM,loader:LM},AM=FM,q0="ishikawa",EM=p(e=>/^\s*ishikawa(-beta)?\b/i.test(e),"detector"),MM=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./ishikawaDiagram-5VMMS53U-CaY3A-Bx.js");return{diagram:t}},__vite__mapDeps([50,0,1]));return{id:q0,diagram:e}},"loader"),$M={id:q0,detector:EM,loader:MM},z0="venn",OM=p(e=>/^\s*venn-beta/.test(e),"detector"),DM=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./vennDiagram-4TSXK5OY-DrDFsaH3.js");return{diagram:t}},__vite__mapDeps([51,0,1]));return{id:z0,diagram:e}},"loader"),IM={id:z0,detector:OM,loader:DM},PM=IM,W0="treemap",RM=p(e=>/^\s*treemap/.test(e),"detector"),NM=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./diagram-VX7I27RA-DKJRa6CK.js");return{diagram:t}},__vite__mapDeps([52,19,13,20,0,1,24,28,23]));return{id:W0,diagram:e}},"loader"),qM={id:W0,detector:RM,loader:NM},H0="wardley",zM=p(e=>/^\s*wardley-beta/i.test(e),"detector"),WM=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./wardleyDiagram-VM6X3IG4-CVrnRIS_.js");return{diagram:t}},__vite__mapDeps([53,19,20,0,1]));return{id:H0,diagram:e}},"loader"),HM={id:H0,detector:zM,loader:WM},YM=HM,Y0="cynefin",jM=p(e=>/^\s*cynefin-beta(?:[\s:]|$)/.test(e),"detector"),UM=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./cynefinDiagram-5FMLGOSQ-DlLAOZ9x.js");return{diagram:t}},__vite__mapDeps([54,19,20,0,1]));return{id:Y0,diagram:e}},"loader"),GM={id:Y0,detector:jM,loader:UM},j0="railroad",XM=p(e=>/^\s*railroad-beta/i.test(e),"detector"),VM=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./railroadDiagram-O6MQD6OU-CKJ7Ba5K.js");return{diagram:t}},__vite__mapDeps([55,56,19,20,0,1]));return{id:j0,diagram:e}},"loader"),ZM={id:j0,detector:XM,loader:VM},U0="railroadEbnf",KM=p(e=>/^\s*railroad-ebnf-beta/i.test(e),"detector"),QM=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./ebnfDiagram-PWID7BFC-CVW16_vb.js");return{diagram:t}},__vite__mapDeps([57,56,19,20,0,1]));return{id:U0,diagram:e}},"loader"),JM={id:U0,detector:KM,loader:QM},G0="railroadAbnf",t5=p(e=>/^\s*railroad-abnf-beta/i.test(e),"detector"),e5=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./abnfDiagram-VCTEODGH-uA8Esix4.js");return{diagram:t}},__vite__mapDeps([58,56,19,20,0,1]));return{id:G0,diagram:e}},"loader"),r5={id:G0,detector:t5,loader:e5},X0="railroadPeg",i5=p(e=>/^\s*railroad-peg-beta/i.test(e),"detector"),s5=p(async()=>{const{diagram:e}=await Rt(async()=>{const{diagram:t}=await import("./pegDiagram-XKGWAZYB-aCaQPH0w.js");return{diagram:t}},__vite__mapDeps([59,56,19,20,0,1]));return{id:X0,diagram:e}},"loader"),o5={id:X0,detector:i5,loader:s5},uf=!1,qa=p(()=>{uf||(uf=!0,Go("error",WE,e=>e.toLowerCase().trim()==="error"),Go("---",{db:{clear:p(()=>{},"clear")},styles:{},renderer:{draw:p(()=>{},"draw")},parser:{parse:p(()=>{throw new Error("Diagrams beginning with --- are not valid. If you were trying to use a YAML front-matter, please ensure that you've correctly opened and closed the YAML front-matter with un-indented `---` blocks")},"parse")},init:p(()=>null,"init")},e=>e.toLowerCase().trimStart().startsWith("---")),Zn(UE,tM,vM),Zn(vA,sM,vE,wE,WA,ZA,JA,rE,pE,xE,RA,OA,AA,ZE,UA,OE,AE,RE,aE,lM,uM,cE,xM,AM,wM,pM,$M,qM,ZM,JM,r5,o5,PM,YM,GM))},"addDiagrams"),a5=p(async()=>{N.debug("Loading registered diagrams");const t=(await Promise.allSettled(Object.entries(oi).map(async([r,{detector:i,loader:s}])=>{if(s)try{tl(r)}catch{try{const{diagram:o,id:a}=await s();Go(a,o,i)}catch(o){throw N.error(`Failed to load external diagram with key ${r}. Removing from detectors.`),delete oi[r],o}}}))).filter(r=>r.status==="rejected");if(t.length>0){N.error(`Failed to load ${t.length} external diagrams`);for(const r of t)N.error(r);throw new Error(`Failed to load ${t.length} external diagrams`)}},"loadRegisteredDiagrams"),n5="graphics-document document";function V0(e,t){e.attr("role",n5),t!==""&&e.attr("aria-roledescription",t)}p(V0,"setA11yDiagramInfo");function Z0(e,t,r,i){if(e.insert!==void 0){if(r){const s=`chart-desc-${i}`;e.attr("aria-describedby",s),e.insert("desc",":first-child").attr("id",s).text(r)}if(t){const s=`chart-title-${i}`;e.attr("aria-labelledby",s),e.insert("title",":first-child").attr("id",s).text(t)}}}p(Z0,"addSVGa11yTitleDescription");var ii,Dl=(ii=class{constructor(t,r,i,s,o){this.type=t,this.text=r,this.db=i,this.parser=s,this.renderer=o}static async fromText(t,r={}){var c,h;const i=Jt(),s=Nl(t,i);t=BT(t)+`
|
|
303
|
+
`;try{tl(s)}catch{const u=JC(s);if(!u)throw new Mf(`Diagram ${s} not found.`);const{id:d,diagram:f}=await u();Go(d,f)}const{db:o,parser:a,renderer:n,init:l}=tl(s);return a.parser&&(a.parser.yy=o),(c=o.clear)==null||c.call(o),l==null||l(i),r.title&&((h=o.setDiagramTitle)==null||h.call(o,r.title)),await a.parse(t),new ii(s,t,o,a,n)}async render(t,r){await this.renderer.draw(this.text,t,r,this)}getParser(){return this.parser}getType(){return this.type}},p(ii,"Diagram"),ii),df=[],l5=p(()=>{df.forEach(e=>{e()}),df=[]},"attachFunctions"),h5=p(e=>e.replace(/^\s*%%(?!{)[^\n]+\n?/gm,"").trimStart(),"cleanupComments");function K0(e){const t=e.match(Ef);if(!t)return{text:e,metadata:{}};const r=t[1],i=r?t[2].split(`
|
|
304
|
+
`).map(a=>a.startsWith(r)?a.slice(r.length):a).join(`
|
|
305
|
+
`):t[2];let s=rA(i,{schema:eA})??{};s=typeof s=="object"&&!Array.isArray(s)?s:{};const o={};return s.displayMode&&(o.displayMode=s.displayMode.toString()),s.title&&(o.title=s.title.toString()),s.config&&(o.config=s.config),{text:e.slice(t[0].length),metadata:o}}p(K0,"extractFrontMatter");var c5=p(e=>e.replace(/\r\n?/g,`
|
|
306
|
+
`).replace(/<(\w+)([^>]*)>/g,(t,r,i)=>"<"+r+i.replace(/="([^"]*)"/g,"='$1'")+">"),"cleanupText"),u5=p(e=>{const{text:t,metadata:r}=K0(e),{displayMode:i,title:s,config:o={}}=r;return i&&(o.gantt||(o.gantt={}),o.gantt.displayMode=i),{title:s,config:o,text:t}},"processFrontmatter"),d5=p(e=>{const t=xe.detectInit(e)??{},r=xe.detectDirective(e,"wrap");return Array.isArray(r)?t.wrap=r.some(({type:i})=>i==="wrap"):(r==null?void 0:r.type)==="wrap"&&(t.wrap=!0),{text:pT(e),directive:t}},"processDirectives");function ac(e){const t=c5(e),r=u5(t),i=d5(r.text),s=dh(r.config,i.directive);return e=h5(i.text),{code:e,title:r.title,config:s}}p(ac,"preprocessDiagram");function Q0(e){const t=new TextEncoder().encode(e),r=Array.from(t,i=>String.fromCodePoint(i)).join("");return btoa(r)}p(Q0,"toBase64");var f5=5e4,p5="graph TB;a[Maximum text size in diagram exceeded];style a fill:#faa",g5="sandbox",m5="loose",y5="http://www.w3.org/2000/svg",x5="http://www.w3.org/1999/xlink",C5="http://www.w3.org/1999/xhtml",b5="100%",k5="100%",w5="border:0;margin:0;",T5="margin:0",_5="allow-top-navigation-by-user-activation allow-popups",S5='The "iframe" tag is not supported by your browser.',v5=["foreignobject"],B5=["dominant-baseline"];function nc(e){const t=ac(e);return jo(),VC(t.config??{}),t}p(nc,"processAndSetConfigs");async function J0(e,t){qa();try{const{code:r,config:i}=nc(e);return{diagramType:(await ex(r)).type,config:i}}catch(r){if(t!=null&&t.suppressErrors)return!1;throw r}}p(J0,"parse");var ff=p((e,t,r=[])=>{const i=vf(`{ ${r.join(" !important; ")} !important; }`);return`.${e} ${t} ${i}`},"cssImportantStyles"),L5=p((e,t=new Map)=>{const r=new CSSStyleSheet;if(e.fontFamily!==void 0&&r.insertRule(`:root { --mermaid-font-family: ${e.fontFamily}}`,r.cssRules.length),e.altFontFamily!==void 0&&r.insertRule(`:root { --mermaid-alt-font-family: ${e.altFontFamily}}`,r.cssRules.length),t instanceof Map){const n=Ce(e)?["> *","span"]:["rect","polygon","ellipse","circle","path"];t.forEach(l=>{ku(l.styles)||n.forEach(c=>{r.insertRule(ff(l.id,c,l.styles),r.cssRules.length)}),ku(l.textStyles)||r.insertRule(ff(l.id,"tspan",((l==null?void 0:l.textStyles)||[]).map(c=>c.replace("color","fill"))),r.cssRules.length)})}let i="";if(e.themeCSS!==void 0)if(typeof r.replaceSync=="function"){const s=new CSSStyleSheet;s.replaceSync(e.themeCSS),i=Jn(s)+`
|
|
307
|
+
`}else i+=`${e.themeCSS}
|
|
308
|
+
`;return i+Jn(r)},"createCssStyles"),F5=p((e,t)=>Ol(CA(`${e}{${t}}`),wA([p(function(i,s,o,a){if(i.type==="rule"&&Array.isArray(i.props)){if(i.parent&&i.parent.type===El)return;i.props=i.props.map(n=>n===e&&Array.isArray(i.children)&&i.children.every(c=>c.type!=="decl"?!1:new Set(["font-family","font-size","fill"]).has(c.props))||(n.startsWith(`${e} `)||n.startsWith(`${e}>`))&&!n.startsWith(`${e} ||`)?n:`${e} ${n}`)}else i.type.startsWith("@")&&([...[oA,nA,a0,hA,"@container","@starting-style"],El].includes(i.type)||(N.warn(`Removing unsupported at-rule ${i.type} from CSS`),i.type=sc))},"addNamespace"),kA])),"compileCSS"),A5=p((e,t,r,i)=>{const s=L5(e,r),o=yb(t,s,{...e.themeVariables,theme:e.theme,look:e.look},i);return F5(i,o)},"createUserStyles"),E5=p((e="",t,r)=>{let i=e;return!r&&!t&&(i=i.replace(/marker-end="url\([\d+./:=?A-Za-z-]*?#/g,'marker-end="url(#')),i=Wr(i),i=i.replace(/<br>/g,"<br/>"),i},"cleanUpSvgCode"),M5=p((e="",t)=>{var s,o;const r=(o=(s=t==null?void 0:t.viewBox)==null?void 0:s.baseVal)!=null&&o.height?t.viewBox.baseVal.height+"px":k5,i=Q0(`<body style="${T5}">${e}</body>`);return`<iframe style="width:${b5};height:${r};${w5}" src="data:text/html;charset=UTF-8;base64,${i}" sandbox="${_5}">
|
|
309
|
+
${S5}
|
|
310
|
+
</iframe>`},"putIntoIFrame"),pf=p((e,t,r,i,s)=>{const o=e.append("div");o.attr("id",r),i&&o.attr("style",i);const a=o.append("svg").attr("id",t).attr("width","100%").attr("xmlns",y5);return s&&a.attr("xmlns:xlink",s),a.append("g"),e},"appendDivSvgG");function Il(e,t){return e.append("iframe").attr("id",t).attr("style","width: 100%; height: 100%;").attr("sandbox","")}p(Il,"sandboxedIframe");var $5=p((e,t,r,i)=>{var s,o,a;(s=e.getElementById(t))==null||s.remove(),(o=e.getElementById(r))==null||o.remove(),(a=e.getElementById(i))==null||a.remove()},"removeExistingElements"),O5=p(async function(e,t,r){var Y,M,$,B,P,O;qa();const i=nc(t);t=i.code;const s=Jt();N.debug(s),t.length>((s==null?void 0:s.maxTextSize)??f5)&&(t=p5);const o=`#${e}`,a="i"+e,n="#"+a,l="d"+e,c="#"+l,h=p(()=>{const K=Pt(d?n:c).node();K&&"remove"in K&&K.remove()},"removeTempElements");let u=Pt(document.body);const d=s.securityLevel===g5,f=s.securityLevel===m5,m=s.fontFamily;if(r!==void 0){if(r&&(r.innerHTML=""),d){const H=Il(Pt(r),a);u=Pt(H.nodes()[0].contentDocument.body),u.node().style.margin="0"}else u=Pt(r);pf(u,e,l,`font-family: ${m}`,x5)}else{if($5(document,e,l,a),d){const H=Il(Pt(document.body),a);u=Pt(H.nodes()[0].contentDocument.body),u.node().style.margin="0"}else u=Pt("body");pf(u,e,l)}let y,C;try{y=await Dl.fromText(t,{title:i.title})}catch(H){if(s.suppressErrorRendering)throw h(),H;y=await Dl.fromText("error"),C=H}const x=u.select(c).node(),b=y.type,w=x.firstChild,_=w.firstChild,v=(M=(Y=y.renderer).getClasses)==null?void 0:M.call(Y,t,y),F=A5(s,b,v,o),A=document.createElement("style");A.innerHTML=F,w.insertBefore(A,_);try{await y.renderer.draw(t,e,"11.17.0",y)}catch(H){throw s.suppressErrorRendering?h():qE.draw(t,e,"11.17.0"),H}const L=u.select(`${c} svg`),j=(B=($=y.db).getAccTitle)==null?void 0:B.call($),z=(O=(P=y.db).getAccDescription)==null?void 0:O.call(P);rx(b,L,j,z);const ot=p(()=>{u.select(`[id="${e}"]`).selectAll("foreignobject > *").attr("xmlns",C5);let H=u.select(c).node().innerHTML;if(N.debug("config.arrowMarkerAbsolute",s.arrowMarkerAbsolute),H=E5(H,d,pr(s.arrowMarkerAbsolute)),d){const K=u.select(c+" svg").node();H=M5(H,K)}else f||(H=Xi.sanitize(H,{ADD_TAGS:v5,ADD_ATTR:B5,HTML_INTEGRATION_POINTS:{foreignobject:!0}}));return l5(),H},"serializeSvg")();if(C)throw C;return h(),{diagramType:b,svg:ot,bindFunctions:y.db.bindFunctions}},"render");function tx(e={}){var i;const t=ce({},e);t!=null&&t.fontFamily&&!((i=t.themeVariables)!=null&&i.fontFamily)&&(t.themeVariables||(t.themeVariables={}),t.themeVariables.fontFamily=t.fontFamily),GC(t),t!=null&&t.theme&&t.theme in _r?t.themeVariables=_r[t.theme].getThemeVariables(t.themeVariables):t&&(t.themeVariables=_r.default.getThemeVariables(t.themeVariables));const r=typeof t=="object"?UC(t):Bf();Rl(r.logLevel),qa()}p(tx,"initialize");var ex=p((e,t={})=>{const{code:r}=ac(e);return Dl.fromText(r,t)},"getDiagramFromText");function rx(e,t,r,i){V0(t,e),Z0(t,r,i,t.attr("id"))}p(rx,"addA11yInfo");var ui=Object.freeze({render:O5,parse:J0,getDiagramFromText:ex,initialize:tx,getConfig:Jt,setConfig:Lf,getSiteConfig:Bf,updateSiteConfig:XC,reset:p(()=>{jo()},"reset"),globalReset:p(()=>{jo(Vi)},"globalReset"),defaultConfig:Vi});Rl(Jt().logLevel);jo(Jt());var D5=p((e,t,r)=>{N.warn(e),uh(e)?(r&&r(e.str,e.hash),t.push({...e,message:e.str,error:e})):(r&&r(e),e instanceof Error&&t.push({str:e.message,message:e.message,hash:e.name,error:e}))},"handleError"),ix=p(async function(e={querySelector:".mermaid"}){try{await I5(e)}catch(t){if(uh(t)&&N.error(t.str),Re.parseError&&Re.parseError(t),!e.suppressErrors)throw N.error("Use the suppressErrors option to suppress these errors"),t}},"run"),I5=p(async function({postRenderCallback:e,querySelector:t,nodes:r}={querySelector:".mermaid"}){const i=ui.getConfig();N.debug(`${e?"":"No "}Callback function found`);let s;if(r)s=r;else if(t)s=document.querySelectorAll(t);else throw new Error("Nodes and querySelector are both undefined");N.debug(`Found ${s.length} diagrams`),(i==null?void 0:i.startOnLoad)!==void 0&&(N.debug("Start On Load: "+(i==null?void 0:i.startOnLoad)),ui.updateSiteConfig({startOnLoad:i==null?void 0:i.startOnLoad}));const o=new xe.InitIDGenerator(i.deterministicIds,i.deterministicIDSeed);let a;const n=[];for(const l of Array.from(s)){if(N.info("Rendering diagram: "+l.id),l.getAttribute("data-processed"))continue;l.setAttribute("data-processed","true");const c=`mermaid-${o.next()}`;a=l.innerHTML,a=ug(xe.entityDecode(a)).trim().replace(/<br\s*\/?>/gi,"<br/>");const h=xe.detectInit(a);h&&N.debug("Detected early reinit: ",h);try{const{svg:u,bindFunctions:d}=await nx(c,a,l);l.innerHTML=u,e&&await e(c),d&&d(l)}catch(u){D5(u,n,Re.parseError)}}if(n.length>0)throw n[0]},"runThrowsErrors"),sx=p(function(e){ui.initialize(e)},"initialize"),P5=p(async function(e,t,r){N.warn("mermaid.init is deprecated. Please use run instead."),e&&sx(e);const i={postRenderCallback:r,querySelector:".mermaid"};typeof t=="string"?i.querySelector=t:t&&(t instanceof HTMLElement?i.nodes=[t]:i.nodes=t),await ix(i)},"init"),R5=p(async(e,{lazyLoad:t=!0}={})=>{qa(),Zn(...e),t===!1&&await a5()},"registerExternalDiagrams"),ox=p(function(){if(Re.startOnLoad){const{startOnLoad:e}=ui.getConfig();e&&Re.run().catch(t=>N.error("Mermaid failed to initialize",t))}},"contentLoaded");typeof document<"u"&&window.addEventListener("load",ox,!1);var N5=p(function(e){Re.parseError=e},"setParseErrorHandler"),ga=[],Un=!1,ax=p(async()=>{if(!Un){for(Un=!0;ga.length>0;){const e=ga.shift();if(e)try{await e()}catch(t){N.error("Error executing queue",t)}}Un=!1}},"executeQueue"),q5=p(async(e,t)=>new Promise((r,i)=>{const s=p(()=>new Promise((o,a)=>{ui.parse(e,t).then(n=>{o(n),r(n)},n=>{var l;N.error("Error parsing",n),(l=Re.parseError)==null||l.call(Re,n),a(n),i(n)})}),"performCall");ga.push(s),ax().catch(i)}),"parse"),nx=p((e,t,r)=>new Promise((i,s)=>{const o=p(()=>new Promise((a,n)=>{ui.render(e,t,r).then(l=>{a(l),i(l)},l=>{var c;N.error("Error parsing",l),(c=Re.parseError)==null||c.call(Re,l),n(l),s(l)})}),"performCall");ga.push(o),ax().catch(s)}),"render"),z5=p(()=>Object.keys(oi).map(e=>({id:e})),"getRegisteredDiagramsMetadata"),Re={startOnLoad:!0,mermaidAPI:ui,parse:q5,render:nx,init:P5,run:ix,registerExternalDiagrams:R5,registerLayoutLoaders:i0,initialize:sx,parseError:void 0,contentLoaded:ox,setParseErrorHandler:N5,detectType:Nl,registerIconPacks:Aw,getRegisteredDiagramsMetadata:z5},lx=Re;/*! Check if previously processed *//*!
|
|
311
|
+
* Wait for document loaded before starting the execution
|
|
312
|
+
*/let gf=!1;function W5(){gf||(gf=!0,lx.initialize({startOnLoad:!1,securityLevel:"strict",theme:"base",fontFamily:"inherit",themeVariables:{background:"transparent",primaryColor:"#FBF3CF",primaryTextColor:Fo.ink,primaryBorderColor:Fo.ink2,lineColor:Fo.ink2,secondaryColor:"#F0EADB",tertiaryColor:"#FFFEF6",fontSize:"14px"}}))}let H5=0;function Y5({source:e}){const t=Va.useRef(null),[r,i]=Va.useState(null);return Va.useEffect(()=>{let s=!0;W5();const o=`nd-mm-${H5++%1e5}`;return(async()=>{var a;try{const{svg:n}=await lx.render(o,String(e||"").trim());s&&t.current&&(t.current.innerHTML=n,i(null))}catch(n){s&&i(String((n==null?void 0:n.message)||n).split(`
|
|
313
|
+
`)[0].slice(0,160));try{(a=document.getElementById(`d${o}`))==null||a.remove()}catch{}}})(),()=>{s=!1}},[e]),uo.jsxs("div",{style:{margin:"4px 0"},children:[uo.jsx("div",{ref:t,style:{maxWidth:"100%",overflowX:"auto"}}),r&&uo.jsxs("div",{style:{fontFamily:Lx,fontSize:Tc.xs,color:Bx.error},children:["mermaid 画不出来:",r,uo.jsx("pre",{style:{whiteSpace:"pre-wrap",margin:"4px 0 0",fontSize:Tc.xs,color:Fo.ink2},children:e})]})]})}const M3=Object.freeze(Object.defineProperty({__proto__:null,default:Y5},Symbol.toStringTag,{value:"Module"}));export{Nf as $,dh as A,Sf as B,CT as C,ow as D,vC as E,Z5 as F,Ow as G,rA as H,Ns as I,eA as J,V5 as K,wa as L,ab as M,Pf as N,Xi as O,Wc as P,Ia as Q,Z2 as R,cl as S,xT as T,Ks as U,Ke as V,U as W,G as X,pb as Y,cT as Z,p as _,bb as a,Hp as a$,U2 as a0,Ql as a1,e3 as a2,s3 as a3,Ci as a4,lu as a5,nu as a6,a3 as a7,o3 as a8,i3 as a9,AS as aA,ye as aB,k_ as aC,oh as aD,ih as aE,Io as aF,Xw as aG,Gw as aH,Uw as aI,jw as aJ,Pw as aK,qp as aL,qw as aM,Iw as aN,Hw as aO,zp as aP,Nw as aQ,Kw as aR,Zw as aS,Vw as aT,Jw as aU,Qw as aV,Rw as aW,Wp as aX,Yw as aY,Ww as aZ,zw as a_,J5 as aa,t3 as ab,r3 as ac,l3 as ad,n3 as ae,oy as af,Ah as ag,id as ah,It as ai,cr as aj,eo as ak,Aw as al,ch as am,yt as an,y3 as ao,m3 as ap,QF as aq,Ht as ar,My as as,Ct as at,g3 as au,pa as av,Oy as aw,La as ax,Eh as ay,ly as az,Cb as b,Ty as b$,uy as b0,Zp as b1,xf as b2,G2 as b3,X5 as b4,Je as b5,Fw as b6,K5 as b7,Xl as b8,Pr as b9,hi as bA,is as bB,Lr as bC,Bd as bD,ur as bE,Tr as bF,AB as bG,yd as bH,fa as bI,Sr as bJ,qv as bK,$e as bL,kd as bM,Dh as bN,EF as bO,Ma as bP,da as bQ,LF as bR,Ey as bS,nr as bT,zv as bU,qh as bV,py as bW,MF as bX,FF as bY,CF as bZ,Aa as b_,Ws as ba,eu as bb,vk as bc,bt as bd,Dp as be,Me as bf,Ck as bg,Gl as bh,Jf as bi,to as bj,rp as bk,Q5 as bl,$x as bm,Mh as bn,$h as bo,dd as bp,yy as bq,Ea as br,my as bs,Vv as bt,xy as bu,OB as bv,bL as bw,Nv as bx,Xv as by,DB as bz,Wt as c,Da as c0,_y as c1,bF as c2,yL as c3,Xr as c4,As as c5,vi as c6,So as c7,kn as c8,qF as c9,pS as ca,M3 as cb,Rf as d,ce as e,Br as f,wb as g,ry as h,ze as i,Pt as j,Qs as k,N as l,Qp as m,Tb as n,_b as o,xb as p,h3 as q,qr as r,kb as s,Fx as t,E3 as u,A3 as v,wT as w,xe as x,Jt as y,vb as z};
|