@vibedeckx/linux-x64 0.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (579) hide show
  1. package/dist/agent-provider.d.ts +92 -0
  2. package/dist/agent-provider.js +8 -0
  3. package/dist/agent-session-manager.d.ts +165 -0
  4. package/dist/agent-session-manager.js +985 -0
  5. package/dist/agent-types.d.ts +148 -0
  6. package/dist/agent-types.js +4 -0
  7. package/dist/bin.d.ts +2 -0
  8. package/dist/bin.js +4 -0
  9. package/dist/browser-manager.d.ts +46 -0
  10. package/dist/browser-manager.js +182 -0
  11. package/dist/chat-session-manager.d.ts +101 -0
  12. package/dist/chat-session-manager.js +1425 -0
  13. package/dist/command.d.ts +1 -0
  14. package/dist/command.js +163 -0
  15. package/dist/constants.d.ts +3 -0
  16. package/dist/constants.js +5 -0
  17. package/dist/conversation-patch.d.ts +103 -0
  18. package/dist/conversation-patch.js +69 -0
  19. package/dist/dialog.d.ts +1 -0
  20. package/dist/dialog.js +41 -0
  21. package/dist/entry-index-provider.d.ts +74 -0
  22. package/dist/entry-index-provider.js +105 -0
  23. package/dist/event-bus.d.ts +47 -0
  24. package/dist/event-bus.js +16 -0
  25. package/dist/index.d.ts +3 -0
  26. package/dist/index.js +2 -0
  27. package/dist/plugins/shared-services.d.ts +8 -0
  28. package/dist/plugins/shared-services.js +65 -0
  29. package/dist/process-manager.d.ts +146 -0
  30. package/dist/process-manager.js +779 -0
  31. package/dist/providers/claude-code-provider.d.ts +13 -0
  32. package/dist/providers/claude-code-provider.js +127 -0
  33. package/dist/providers/codex-provider.d.ts +41 -0
  34. package/dist/providers/codex-provider.js +354 -0
  35. package/dist/providers/index.d.ts +5 -0
  36. package/dist/providers/index.js +19 -0
  37. package/dist/remote-patch-cache.d.ts +67 -0
  38. package/dist/remote-patch-cache.js +190 -0
  39. package/dist/reverse-connect-client.d.ts +27 -0
  40. package/dist/reverse-connect-client.js +255 -0
  41. package/dist/reverse-connect-manager.d.ts +31 -0
  42. package/dist/reverse-connect-manager.js +287 -0
  43. package/dist/reverse-connect-types.d.ts +55 -0
  44. package/dist/reverse-connect-types.js +7 -0
  45. package/dist/routes/agent-session-routes.d.ts +4 -0
  46. package/dist/routes/agent-session-routes.js +442 -0
  47. package/dist/routes/browser-proxy-routes.d.ts +25 -0
  48. package/dist/routes/browser-proxy-routes.js +421 -0
  49. package/dist/routes/browser-routes.d.ts +4 -0
  50. package/dist/routes/browser-routes.js +73 -0
  51. package/dist/routes/chat-session-routes.d.ts +7 -0
  52. package/dist/routes/chat-session-routes.js +69 -0
  53. package/dist/routes/diff-routes.d.ts +4 -0
  54. package/dist/routes/diff-routes.js +208 -0
  55. package/dist/routes/event-routes.d.ts +4 -0
  56. package/dist/routes/event-routes.js +52 -0
  57. package/dist/routes/executor-group-routes.d.ts +4 -0
  58. package/dist/routes/executor-group-routes.js +76 -0
  59. package/dist/routes/executor-routes.d.ts +4 -0
  60. package/dist/routes/executor-routes.js +106 -0
  61. package/dist/routes/file-routes.d.ts +4 -0
  62. package/dist/routes/file-routes.js +331 -0
  63. package/dist/routes/process-routes.d.ts +4 -0
  64. package/dist/routes/process-routes.js +183 -0
  65. package/dist/routes/project-remote-routes.d.ts +4 -0
  66. package/dist/routes/project-remote-routes.js +82 -0
  67. package/dist/routes/project-routes.d.ts +4 -0
  68. package/dist/routes/project-routes.js +286 -0
  69. package/dist/routes/remote-routes.d.ts +4 -0
  70. package/dist/routes/remote-routes.js +59 -0
  71. package/dist/routes/remote-server-routes.d.ts +4 -0
  72. package/dist/routes/remote-server-routes.js +157 -0
  73. package/dist/routes/reverse-connect-routes.d.ts +4 -0
  74. package/dist/routes/reverse-connect-routes.js +33 -0
  75. package/dist/routes/settings-routes.d.ts +4 -0
  76. package/dist/routes/settings-routes.js +129 -0
  77. package/dist/routes/task-routes.d.ts +4 -0
  78. package/dist/routes/task-routes.js +107 -0
  79. package/dist/routes/terminal-routes.d.ts +4 -0
  80. package/dist/routes/terminal-routes.js +187 -0
  81. package/dist/routes/translate-routes.d.ts +4 -0
  82. package/dist/routes/translate-routes.js +38 -0
  83. package/dist/routes/websocket-routes.d.ts +4 -0
  84. package/dist/routes/websocket-routes.js +604 -0
  85. package/dist/routes/worktree-routes.d.ts +4 -0
  86. package/dist/routes/worktree-routes.js +511 -0
  87. package/dist/server-types.d.ts +41 -0
  88. package/dist/server-types.js +1 -0
  89. package/dist/server.d.ts +23 -0
  90. package/dist/server.js +238 -0
  91. package/dist/storage/sqlite.d.ts +2 -0
  92. package/dist/storage/sqlite.js +1073 -0
  93. package/dist/storage/types.d.ts +281 -0
  94. package/dist/storage/types.js +1 -0
  95. package/dist/ui/404/index.html +1 -0
  96. package/dist/ui/404.html +1 -0
  97. package/dist/ui/__next.__PAGE__.txt +10 -0
  98. package/dist/ui/__next._full.txt +25 -0
  99. package/dist/ui/__next._head.txt +6 -0
  100. package/dist/ui/__next._index.txt +9 -0
  101. package/dist/ui/__next._tree.txt +6 -0
  102. package/dist/ui/_next/static/7vIIuOQPJu8rdb6uAhwtg/_buildManifest.js +11 -0
  103. package/dist/ui/_next/static/7vIIuOQPJu8rdb6uAhwtg/_clientMiddlewareManifest.json +1 -0
  104. package/dist/ui/_next/static/7vIIuOQPJu8rdb6uAhwtg/_ssgManifest.js +1 -0
  105. package/dist/ui/_next/static/chunks/002f5a047b8d07d4.js +1 -0
  106. package/dist/ui/_next/static/chunks/01178e167ba3e5b4.js +1 -0
  107. package/dist/ui/_next/static/chunks/020d675d21be28d4.js +1 -0
  108. package/dist/ui/_next/static/chunks/024926197424b4a5.js +1 -0
  109. package/dist/ui/_next/static/chunks/02c93f6ca211a65d.js +1 -0
  110. package/dist/ui/_next/static/chunks/0364437dee56dc96.js +1 -0
  111. package/dist/ui/_next/static/chunks/03fc6b527b16efdc.js +1 -0
  112. package/dist/ui/_next/static/chunks/04f9a7932751cf2d.js +1 -0
  113. package/dist/ui/_next/static/chunks/0624b8204e5ae457.js +136 -0
  114. package/dist/ui/_next/static/chunks/067d8978cf41b901.js +1 -0
  115. package/dist/ui/_next/static/chunks/06d96238e85cdbb3.js +1 -0
  116. package/dist/ui/_next/static/chunks/071b9575dbdf1dcb.js +1 -0
  117. package/dist/ui/_next/static/chunks/073d5b9dc87ceab0.js +1 -0
  118. package/dist/ui/_next/static/chunks/0876a7111934d6f7.js +1 -0
  119. package/dist/ui/_next/static/chunks/08ffc3bf406c665d.js +1 -0
  120. package/dist/ui/_next/static/chunks/0969e8274c92c2d8.js +1 -0
  121. package/dist/ui/_next/static/chunks/0a3f62f00d7bec78.js +1 -0
  122. package/dist/ui/_next/static/chunks/0b80166023d89049.js +5 -0
  123. package/dist/ui/_next/static/chunks/0c2a941e61c395b6.js +1 -0
  124. package/dist/ui/_next/static/chunks/0c5eac8493334420.js +1 -0
  125. package/dist/ui/_next/static/chunks/0cc61d37b2333469.js +1 -0
  126. package/dist/ui/_next/static/chunks/0d440843348b2871.js +1 -0
  127. package/dist/ui/_next/static/chunks/0da3d15845f17208.js +1 -0
  128. package/dist/ui/_next/static/chunks/0e1982b1a6cbd127.js +53 -0
  129. package/dist/ui/_next/static/chunks/0e81d5bc1c725b75.js +1 -0
  130. package/dist/ui/_next/static/chunks/0e862e51b01e904b.js +63 -0
  131. package/dist/ui/_next/static/chunks/0ed7b6d86744b723.js +1 -0
  132. package/dist/ui/_next/static/chunks/0f0b3025f4e268b1.js +1 -0
  133. package/dist/ui/_next/static/chunks/10a30eb52825da36.js +1 -0
  134. package/dist/ui/_next/static/chunks/10c48da576fd8eef.js +1 -0
  135. package/dist/ui/_next/static/chunks/133e9f1435ca5f45.js +29 -0
  136. package/dist/ui/_next/static/chunks/16f4db3a54f167fd.js +1 -0
  137. package/dist/ui/_next/static/chunks/1988e3ecf5ad06d3.js +1 -0
  138. package/dist/ui/_next/static/chunks/1acfae010fd77014.js +152 -0
  139. package/dist/ui/_next/static/chunks/1ae53c2f1fff8cc2.js +1 -0
  140. package/dist/ui/_next/static/chunks/1af4fbc6c1256fae.js +1 -0
  141. package/dist/ui/_next/static/chunks/1b758c732032b236.js +1 -0
  142. package/dist/ui/_next/static/chunks/1ba26455a9f70c08.js +1 -0
  143. package/dist/ui/_next/static/chunks/1d22644cb4049d6b.css +1 -0
  144. package/dist/ui/_next/static/chunks/1d241f3b57c14cf7.js +1 -0
  145. package/dist/ui/_next/static/chunks/1d640bbe1c2c7869.js +1 -0
  146. package/dist/ui/_next/static/chunks/1da6354c9cb6f0de.js +1 -0
  147. package/dist/ui/_next/static/chunks/1dcd49914412f67b.js +1 -0
  148. package/dist/ui/_next/static/chunks/1e3b3771294825a4.js +1 -0
  149. package/dist/ui/_next/static/chunks/1eaa8ad7eca7f957.js +1 -0
  150. package/dist/ui/_next/static/chunks/1ebc88f60cadb128.js +1 -0
  151. package/dist/ui/_next/static/chunks/1ecb57b258088259.js +1 -0
  152. package/dist/ui/_next/static/chunks/1f5ba6b80fe19200.js +1 -0
  153. package/dist/ui/_next/static/chunks/20a5531534828366.js +1 -0
  154. package/dist/ui/_next/static/chunks/20b511fc299dfe9a.js +1 -0
  155. package/dist/ui/_next/static/chunks/20bff4eb9a0a6872.css +1 -0
  156. package/dist/ui/_next/static/chunks/219b7d9e437c6bd8.js +15 -0
  157. package/dist/ui/_next/static/chunks/21b32f530e0df2c5.js +1 -0
  158. package/dist/ui/_next/static/chunks/21fc6dc60e7647b1.js +1 -0
  159. package/dist/ui/_next/static/chunks/221a27e65aa5fbfd.js +1 -0
  160. package/dist/ui/_next/static/chunks/23a1e247c32bcc61.js +93 -0
  161. package/dist/ui/_next/static/chunks/2473c16c0c2f6b5f.css +2 -0
  162. package/dist/ui/_next/static/chunks/2615c71c0f8fe9bd.js +1 -0
  163. package/dist/ui/_next/static/chunks/263327288d5e2703.js +1 -0
  164. package/dist/ui/_next/static/chunks/2663fbaf43239e38.js +1 -0
  165. package/dist/ui/_next/static/chunks/27332c590d59f4e5.js +1 -0
  166. package/dist/ui/_next/static/chunks/27ca4a4e8191093f.js +1 -0
  167. package/dist/ui/_next/static/chunks/29b7618dcaa8edba.js +1 -0
  168. package/dist/ui/_next/static/chunks/2ba1d2b55b82f4da.js +21 -0
  169. package/dist/ui/_next/static/chunks/2cb23686e72468c8.js +1 -0
  170. package/dist/ui/_next/static/chunks/2d46f05dcbf1cbc2.js +1 -0
  171. package/dist/ui/_next/static/chunks/2d4c0fd06ca34510.js +2 -0
  172. package/dist/ui/_next/static/chunks/2f3d1d07474b8f79.js +1 -0
  173. package/dist/ui/_next/static/chunks/2f85c2849249a0dd.js +1 -0
  174. package/dist/ui/_next/static/chunks/3001d378f166eec9.js +1 -0
  175. package/dist/ui/_next/static/chunks/3018714f3827e360.js +1 -0
  176. package/dist/ui/_next/static/chunks/301cc25e0d489351.js +1 -0
  177. package/dist/ui/_next/static/chunks/305242b22ba8b49b.js +1 -0
  178. package/dist/ui/_next/static/chunks/3067c6e369066bd6.js +1 -0
  179. package/dist/ui/_next/static/chunks/311a77c9d5cb9de9.js +1 -0
  180. package/dist/ui/_next/static/chunks/320c001380e81470.js +1 -0
  181. package/dist/ui/_next/static/chunks/329db6c551df0faf.js +1 -0
  182. package/dist/ui/_next/static/chunks/33da178724072b3d.js +1 -0
  183. package/dist/ui/_next/static/chunks/33e8248c9296537a.js +1 -0
  184. package/dist/ui/_next/static/chunks/35a9992a8958f93b.js +1 -0
  185. package/dist/ui/_next/static/chunks/35bb90cf09892b72.js +1 -0
  186. package/dist/ui/_next/static/chunks/379f91b92366dc15.js +1 -0
  187. package/dist/ui/_next/static/chunks/391f22359769763f.js +1 -0
  188. package/dist/ui/_next/static/chunks/39231cb1044f7823.js +1 -0
  189. package/dist/ui/_next/static/chunks/394e8b7a1c2c58c6.js +1 -0
  190. package/dist/ui/_next/static/chunks/3a2cfdeb5f76ebd2.js +1 -0
  191. package/dist/ui/_next/static/chunks/3a3bd015fd042386.js +1 -0
  192. package/dist/ui/_next/static/chunks/3ad1bee238af9b5a.js +1 -0
  193. package/dist/ui/_next/static/chunks/3b2b2f7a9b7b130d.js +1 -0
  194. package/dist/ui/_next/static/chunks/3b586f80547e3a22.js +1 -0
  195. package/dist/ui/_next/static/chunks/3ca412e72bd3707a.js +1 -0
  196. package/dist/ui/_next/static/chunks/3cbb3bdceb4230af.js +1 -0
  197. package/dist/ui/_next/static/chunks/3ed1465109fecc2d.js +1 -0
  198. package/dist/ui/_next/static/chunks/3fd0801238b3b099.js +1 -0
  199. package/dist/ui/_next/static/chunks/401df66bd5da2115.js +15 -0
  200. package/dist/ui/_next/static/chunks/4211f4efe510f7ac.js +1 -0
  201. package/dist/ui/_next/static/chunks/43085364d0a41d1d.js +1 -0
  202. package/dist/ui/_next/static/chunks/4310c821dbee7a16.js +1 -0
  203. package/dist/ui/_next/static/chunks/46382f31f63e59cf.js +1 -0
  204. package/dist/ui/_next/static/chunks/468836b90ddf24d6.js +1 -0
  205. package/dist/ui/_next/static/chunks/470d091143104517.js +1 -0
  206. package/dist/ui/_next/static/chunks/4712e4f7e6b6ddc1.js +1 -0
  207. package/dist/ui/_next/static/chunks/4899f1e3f21c077e.js +1 -0
  208. package/dist/ui/_next/static/chunks/492ce6930bf61811.js +1 -0
  209. package/dist/ui/_next/static/chunks/494485a20952ffa3.js +1 -0
  210. package/dist/ui/_next/static/chunks/49535db309898f43.js +1 -0
  211. package/dist/ui/_next/static/chunks/4b8d2612d69e2013.js +1 -0
  212. package/dist/ui/_next/static/chunks/4c4a0f67891826a3.js +1 -0
  213. package/dist/ui/_next/static/chunks/4cc11ce32f4453b0.js +1 -0
  214. package/dist/ui/_next/static/chunks/4d03a0bc963fc3d4.js +1 -0
  215. package/dist/ui/_next/static/chunks/4d603a66c067134e.js +1 -0
  216. package/dist/ui/_next/static/chunks/4d8d7e62c2743f71.js +15 -0
  217. package/dist/ui/_next/static/chunks/4da42f10a5460b36.js +1 -0
  218. package/dist/ui/_next/static/chunks/4e832ffb65e75807.js +1 -0
  219. package/dist/ui/_next/static/chunks/4e954e1cec89a9ea.js +1 -0
  220. package/dist/ui/_next/static/chunks/4f2bc7a7a6b05a8b.js +55 -0
  221. package/dist/ui/_next/static/chunks/4f9c934abf34ceb9.js +1 -0
  222. package/dist/ui/_next/static/chunks/4fa248b0d2586928.js +1 -0
  223. package/dist/ui/_next/static/chunks/4fafbac2156844ca.js +1 -0
  224. package/dist/ui/_next/static/chunks/502039e483cc5e48.js +1 -0
  225. package/dist/ui/_next/static/chunks/509c91c38224448a.js +1 -0
  226. package/dist/ui/_next/static/chunks/5159d6f8d4307f36.js +1 -0
  227. package/dist/ui/_next/static/chunks/5179ab56aaaed42d.js +1 -0
  228. package/dist/ui/_next/static/chunks/5269ea07faff562d.js +1 -0
  229. package/dist/ui/_next/static/chunks/529f3f0f7d42444a.js +1 -0
  230. package/dist/ui/_next/static/chunks/5317db6783ee8dc9.js +1 -0
  231. package/dist/ui/_next/static/chunks/53a7b7c0ab020902.js +1 -0
  232. package/dist/ui/_next/static/chunks/544869c670c1dd8e.js +1 -0
  233. package/dist/ui/_next/static/chunks/547c0db6a433370e.js +1 -0
  234. package/dist/ui/_next/static/chunks/54d5670f5fa2abbe.css +1 -0
  235. package/dist/ui/_next/static/chunks/55761e35a8946a1d.js +15 -0
  236. package/dist/ui/_next/static/chunks/558f73c16b7ff14f.js +1 -0
  237. package/dist/ui/_next/static/chunks/55c76f605958d671.js +1 -0
  238. package/dist/ui/_next/static/chunks/55dc6750fb117bf9.js +1 -0
  239. package/dist/ui/_next/static/chunks/584bad9cf2498405.js +1 -0
  240. package/dist/ui/_next/static/chunks/593b85b9abea3ea6.js +1 -0
  241. package/dist/ui/_next/static/chunks/5a79af73c96155d4.js +1 -0
  242. package/dist/ui/_next/static/chunks/5ee54b9b6b400134.js +1 -0
  243. package/dist/ui/_next/static/chunks/5f27ee48dc820109.js +1 -0
  244. package/dist/ui/_next/static/chunks/5ffd50a08d82e2f3.js +1 -0
  245. package/dist/ui/_next/static/chunks/61d65fe807f69413.js +62 -0
  246. package/dist/ui/_next/static/chunks/626a650bcaaecdb8.js +1 -0
  247. package/dist/ui/_next/static/chunks/62baecafed4dbced.js +1 -0
  248. package/dist/ui/_next/static/chunks/634a4b5b6a38ccab.js +1 -0
  249. package/dist/ui/_next/static/chunks/643c359cf3f7364e.js +1 -0
  250. package/dist/ui/_next/static/chunks/649e65f4820a772b.js +1 -0
  251. package/dist/ui/_next/static/chunks/65028938188a230c.js +1 -0
  252. package/dist/ui/_next/static/chunks/65b3658348e8d4fd.js +1 -0
  253. package/dist/ui/_next/static/chunks/65eed220466cbdbc.js +1 -0
  254. package/dist/ui/_next/static/chunks/66714687cfd91953.js +1 -0
  255. package/dist/ui/_next/static/chunks/66ccaa3e69ed7a69.js +1 -0
  256. package/dist/ui/_next/static/chunks/6754600af0c6b3a8.js +1 -0
  257. package/dist/ui/_next/static/chunks/67a1d37727697340.js +1 -0
  258. package/dist/ui/_next/static/chunks/67e965a7f9531cee.js +1 -0
  259. package/dist/ui/_next/static/chunks/6816bf02e4c22a55.js +1 -0
  260. package/dist/ui/_next/static/chunks/68621b90909ec4e6.js +1 -0
  261. package/dist/ui/_next/static/chunks/6929ceb718c6e4c6.js +1 -0
  262. package/dist/ui/_next/static/chunks/69362fff2240a17b.js +1 -0
  263. package/dist/ui/_next/static/chunks/69dab47a307b1a37.js +1 -0
  264. package/dist/ui/_next/static/chunks/6afa71c8b3358dd5.js +1 -0
  265. package/dist/ui/_next/static/chunks/6bf54dc328e667f7.js +1 -0
  266. package/dist/ui/_next/static/chunks/6c44508faf13f6f0.js +1 -0
  267. package/dist/ui/_next/static/chunks/6c9c2b61c905a2de.js +1 -0
  268. package/dist/ui/_next/static/chunks/6cc2e3d7873522b9.js +1 -0
  269. package/dist/ui/_next/static/chunks/6d01e8902e85bfe0.js +1 -0
  270. package/dist/ui/_next/static/chunks/6dc69e4a91f7a353.js +1 -0
  271. package/dist/ui/_next/static/chunks/6e832e016b60ae19.js +1 -0
  272. package/dist/ui/_next/static/chunks/6eab0d8815c18a6d.js +1 -0
  273. package/dist/ui/_next/static/chunks/6f862eb588fa3b7e.js +1 -0
  274. package/dist/ui/_next/static/chunks/6ff7b0a8653036b2.js +1 -0
  275. package/dist/ui/_next/static/chunks/710ce144a9645f3c.js +1 -0
  276. package/dist/ui/_next/static/chunks/71293e300c639b6b.js +1 -0
  277. package/dist/ui/_next/static/chunks/7186d7cce354a012.js +1 -0
  278. package/dist/ui/_next/static/chunks/7215d586009e8158.js +1 -0
  279. package/dist/ui/_next/static/chunks/726fdeaff53a89ac.js +1 -0
  280. package/dist/ui/_next/static/chunks/7322a00d61e7ffad.js +1 -0
  281. package/dist/ui/_next/static/chunks/73c60ee9f233051d.js +1 -0
  282. package/dist/ui/_next/static/chunks/740f5627b5c57baa.js +1 -0
  283. package/dist/ui/_next/static/chunks/74438794a8e9ba80.js +1 -0
  284. package/dist/ui/_next/static/chunks/74ffcd7d13b3fea0.js +1 -0
  285. package/dist/ui/_next/static/chunks/7510496048ab1ad4.js +1 -0
  286. package/dist/ui/_next/static/chunks/7636f89f38cbc3e3.js +1 -0
  287. package/dist/ui/_next/static/chunks/782a93ec4348b666.js +1 -0
  288. package/dist/ui/_next/static/chunks/7850bbac1925646c.js +1 -0
  289. package/dist/ui/_next/static/chunks/790dcc1e825d2504.js +1 -0
  290. package/dist/ui/_next/static/chunks/798597a1c1248d29.js +1 -0
  291. package/dist/ui/_next/static/chunks/7a70641f70a5c72d.js +60 -0
  292. package/dist/ui/_next/static/chunks/7c62789391c35dce.js +1 -0
  293. package/dist/ui/_next/static/chunks/7d533d3f2ab624f2.js +1 -0
  294. package/dist/ui/_next/static/chunks/7d6087c3fabf9ded.js +1 -0
  295. package/dist/ui/_next/static/chunks/7d84c9cb810e6902.js +1 -0
  296. package/dist/ui/_next/static/chunks/7dc4f5ba8c25c409.js +1 -0
  297. package/dist/ui/_next/static/chunks/7e10c0644fbb99d1.js +1 -0
  298. package/dist/ui/_next/static/chunks/7e7aaacf104c17f4.js +1 -0
  299. package/dist/ui/_next/static/chunks/7e92979509de57ed.js +1 -0
  300. package/dist/ui/_next/static/chunks/7f9a52e36f9f001e.js +1 -0
  301. package/dist/ui/_next/static/chunks/7fc4ae2e7cf2e37e.js +1 -0
  302. package/dist/ui/_next/static/chunks/801232fdde8ce252.js +1 -0
  303. package/dist/ui/_next/static/chunks/808ed0f189237446.js +1 -0
  304. package/dist/ui/_next/static/chunks/8199e6b3fa54b2ff.js +1 -0
  305. package/dist/ui/_next/static/chunks/81fa0fa05a94eb02.js +1 -0
  306. package/dist/ui/_next/static/chunks/821b5389566b82d2.js +1 -0
  307. package/dist/ui/_next/static/chunks/82b9e04f88e657df.js +1 -0
  308. package/dist/ui/_next/static/chunks/830c79cc12f2c5a4.js +1 -0
  309. package/dist/ui/_next/static/chunks/8388ae863590404b.js +4 -0
  310. package/dist/ui/_next/static/chunks/83ab70f11a82a8c6.js +1 -0
  311. package/dist/ui/_next/static/chunks/83faf7904ac18d7f.js +1 -0
  312. package/dist/ui/_next/static/chunks/850d850bd879606f.js +1 -0
  313. package/dist/ui/_next/static/chunks/864d4b5cf4ae2226.js +1 -0
  314. package/dist/ui/_next/static/chunks/86d8962196053f53.js +139 -0
  315. package/dist/ui/_next/static/chunks/8723d7000b263475.js +1 -0
  316. package/dist/ui/_next/static/chunks/87e5597a4336e2c1.js +1 -0
  317. package/dist/ui/_next/static/chunks/899fe56c4c707c65.js +1 -0
  318. package/dist/ui/_next/static/chunks/8bda52f55493ae9b.js +1 -0
  319. package/dist/ui/_next/static/chunks/8ce5668c3da0679a.js +1 -0
  320. package/dist/ui/_next/static/chunks/8d1c22aafb4783c5.js +1 -0
  321. package/dist/ui/_next/static/chunks/8deda0adfe811d18.js +1 -0
  322. package/dist/ui/_next/static/chunks/8eed597098a27801.js +1 -0
  323. package/dist/ui/_next/static/chunks/8ff7a1947b8d114b.js +1 -0
  324. package/dist/ui/_next/static/chunks/90367a2ee1e720b2.js +1 -0
  325. package/dist/ui/_next/static/chunks/9097640e1931c0de.js +1 -0
  326. package/dist/ui/_next/static/chunks/912457473a4c91c3.js +1 -0
  327. package/dist/ui/_next/static/chunks/91f7dd388c6b88c6.js +1 -0
  328. package/dist/ui/_next/static/chunks/932d4334e5f98b7c.js +1 -0
  329. package/dist/ui/_next/static/chunks/94b1efc14d44707b.js +1 -0
  330. package/dist/ui/_next/static/chunks/956107bc3ba52911.js +1 -0
  331. package/dist/ui/_next/static/chunks/962e5cad8ea716fc.js +36 -0
  332. package/dist/ui/_next/static/chunks/96acf903dff8ecf7.js +1 -0
  333. package/dist/ui/_next/static/chunks/96b274c82c194b4f.js +1 -0
  334. package/dist/ui/_next/static/chunks/96b3c1b1afe3201d.js +1 -0
  335. package/dist/ui/_next/static/chunks/9880c26551206d33.js +1 -0
  336. package/dist/ui/_next/static/chunks/98ea228d01556617.js +1 -0
  337. package/dist/ui/_next/static/chunks/9951c25a8b05148f.js +1 -0
  338. package/dist/ui/_next/static/chunks/9b10895d33be5f6e.js +1 -0
  339. package/dist/ui/_next/static/chunks/9b50a76ddbe4934d.js +1 -0
  340. package/dist/ui/_next/static/chunks/9bbb1c0146042008.js +1 -0
  341. package/dist/ui/_next/static/chunks/9ccab70823e99451.js +1 -0
  342. package/dist/ui/_next/static/chunks/9cd7bcb29e0b3418.js +24 -0
  343. package/dist/ui/_next/static/chunks/9d06bd5d701ace73.js +1 -0
  344. package/dist/ui/_next/static/chunks/9e5d9fc30c12fbdd.js +1 -0
  345. package/dist/ui/_next/static/chunks/9ec3bc5544bcc15a.js +1 -0
  346. package/dist/ui/_next/static/chunks/9f47133184a7455a.js +1 -0
  347. package/dist/ui/_next/static/chunks/a002d3850b7c7c59.js +1 -0
  348. package/dist/ui/_next/static/chunks/a0bc5573cadd1377.js +1 -0
  349. package/dist/ui/_next/static/chunks/a1d3de9e7615662e.js +160 -0
  350. package/dist/ui/_next/static/chunks/a2ce60768a8373e7.js +1 -0
  351. package/dist/ui/_next/static/chunks/a305087b1a55b367.js +1 -0
  352. package/dist/ui/_next/static/chunks/a41df0d443f66c68.js +1 -0
  353. package/dist/ui/_next/static/chunks/a49d2e9f31886b5e.js +1 -0
  354. package/dist/ui/_next/static/chunks/a50922e0883f65cd.js +1 -0
  355. package/dist/ui/_next/static/chunks/a60e84ee8b6c5ffc.js +43 -0
  356. package/dist/ui/_next/static/chunks/a6dad97d9634a72d.js +1 -0
  357. package/dist/ui/_next/static/chunks/a6dad97d9634a72d.js.map +1 -0
  358. package/dist/ui/_next/static/chunks/a7c40c289b5e2384.js +1 -0
  359. package/dist/ui/_next/static/chunks/a7fdfeea5fd894c1.js +59 -0
  360. package/dist/ui/_next/static/chunks/a81381241f4f484c.js +1 -0
  361. package/dist/ui/_next/static/chunks/a8a3989305bcc136.js +215 -0
  362. package/dist/ui/_next/static/chunks/a8cf26088e63128c.js +1 -0
  363. package/dist/ui/_next/static/chunks/aac4ca816d9ccdb6.js +1 -0
  364. package/dist/ui/_next/static/chunks/ab432bc28a971c8f.js +1 -0
  365. package/dist/ui/_next/static/chunks/abccff1b09b6effa.js +1 -0
  366. package/dist/ui/_next/static/chunks/ac8a8986f09ec520.js +1 -0
  367. package/dist/ui/_next/static/chunks/accbf306b5ddb732.js +1 -0
  368. package/dist/ui/_next/static/chunks/af7b09aba1d477ff.js +1 -0
  369. package/dist/ui/_next/static/chunks/af8114430894d79e.js +1 -0
  370. package/dist/ui/_next/static/chunks/afe2ff5d0727a240.js +1 -0
  371. package/dist/ui/_next/static/chunks/b096fa008120f0ae.js +1 -0
  372. package/dist/ui/_next/static/chunks/b0bc568eaff56dad.js +1 -0
  373. package/dist/ui/_next/static/chunks/b225dddc0852f85c.js +215 -0
  374. package/dist/ui/_next/static/chunks/b2342c5099957971.js +1 -0
  375. package/dist/ui/_next/static/chunks/b2d8c64d7d6a06b7.js +1 -0
  376. package/dist/ui/_next/static/chunks/b331c855cfc8fd57.js +1 -0
  377. package/dist/ui/_next/static/chunks/b356ee8615740392.js +1 -0
  378. package/dist/ui/_next/static/chunks/b3beaac9b7957d3f.js +1 -0
  379. package/dist/ui/_next/static/chunks/b4e7d4a109c4c080.js +1 -0
  380. package/dist/ui/_next/static/chunks/b5010f2ea9df9d00.js +77 -0
  381. package/dist/ui/_next/static/chunks/b5f9d21bd1b51a48.js +1 -0
  382. package/dist/ui/_next/static/chunks/b6a16eb77c5c9831.js +1 -0
  383. package/dist/ui/_next/static/chunks/b6a8e7c2216683ca.js +262 -0
  384. package/dist/ui/_next/static/chunks/b873c4d327a450e0.js +1 -0
  385. package/dist/ui/_next/static/chunks/b8aec8caed569fd2.js +24 -0
  386. package/dist/ui/_next/static/chunks/b8e7601e2379fd74.js +1 -0
  387. package/dist/ui/_next/static/chunks/ba3d03bf2f33f2a3.js +1 -0
  388. package/dist/ui/_next/static/chunks/ba698805336b2cb2.js +1 -0
  389. package/dist/ui/_next/static/chunks/bc48735eee7d1345.js +1 -0
  390. package/dist/ui/_next/static/chunks/bcb48aab1bdae96a.js +1 -0
  391. package/dist/ui/_next/static/chunks/bde2ca9d150d96ff.js +1 -0
  392. package/dist/ui/_next/static/chunks/be4af851547fc916.js +1 -0
  393. package/dist/ui/_next/static/chunks/be70ba8c4ba5cdb6.js +1 -0
  394. package/dist/ui/_next/static/chunks/be87578ee895734b.js +1 -0
  395. package/dist/ui/_next/static/chunks/c0aeb40fcca7d006.js +1 -0
  396. package/dist/ui/_next/static/chunks/c32156843c32ebca.js +1 -0
  397. package/dist/ui/_next/static/chunks/c57a3e045f3722c1.js +1 -0
  398. package/dist/ui/_next/static/chunks/c5add23cde4a234a.js +1 -0
  399. package/dist/ui/_next/static/chunks/c60897f3554a9388.js +1 -0
  400. package/dist/ui/_next/static/chunks/c648a36722afd12a.js +1 -0
  401. package/dist/ui/_next/static/chunks/c652f05e0a0d7b81.js +1 -0
  402. package/dist/ui/_next/static/chunks/c678d9303ed453b4.js +1 -0
  403. package/dist/ui/_next/static/chunks/c681430c24597d06.js +1 -0
  404. package/dist/ui/_next/static/chunks/c890870fb65940bc.js +1 -0
  405. package/dist/ui/_next/static/chunks/c94c394aeec71e21.js +1 -0
  406. package/dist/ui/_next/static/chunks/ca1eb1e2978389e4.js +1 -0
  407. package/dist/ui/_next/static/chunks/ca3512025a981c82.js +1 -0
  408. package/dist/ui/_next/static/chunks/ca6db0d999bad46b.js +1 -0
  409. package/dist/ui/_next/static/chunks/ca926babdf75597c.js +1 -0
  410. package/dist/ui/_next/static/chunks/cb0877764d4a31f2.js +1 -0
  411. package/dist/ui/_next/static/chunks/cb15e0c2ff49cf52.js +1 -0
  412. package/dist/ui/_next/static/chunks/cb1ae84204260ecd.js +1 -0
  413. package/dist/ui/_next/static/chunks/cb2ef733c53d80f7.js +1 -0
  414. package/dist/ui/_next/static/chunks/cbaa87ba8930fb75.js +1 -0
  415. package/dist/ui/_next/static/chunks/cbd29ba61906e19f.js +1 -0
  416. package/dist/ui/_next/static/chunks/ccf1e618faea3d02.js +148 -0
  417. package/dist/ui/_next/static/chunks/cd91712ea04f43ba.js +13 -0
  418. package/dist/ui/_next/static/chunks/cdd85dc039d450f3.js +1 -0
  419. package/dist/ui/_next/static/chunks/ce663833f73b1ec5.js +1 -0
  420. package/dist/ui/_next/static/chunks/ceda8fcac21d8e70.js +1 -0
  421. package/dist/ui/_next/static/chunks/cf565875b66f8cad.js +1 -0
  422. package/dist/ui/_next/static/chunks/d127ded39a594c84.js +1 -0
  423. package/dist/ui/_next/static/chunks/d34124988f5b8f6d.js +1 -0
  424. package/dist/ui/_next/static/chunks/d36807add3e11d59.js +60 -0
  425. package/dist/ui/_next/static/chunks/d3f2e4603faebed8.js +1 -0
  426. package/dist/ui/_next/static/chunks/d414302c23047b9b.js +1 -0
  427. package/dist/ui/_next/static/chunks/d42adc0237103e65.js +1 -0
  428. package/dist/ui/_next/static/chunks/d4a06b205f0a641b.js +1 -0
  429. package/dist/ui/_next/static/chunks/d4e5289ace3acef0.js +1 -0
  430. package/dist/ui/_next/static/chunks/d53b4725d3328076.js +1 -0
  431. package/dist/ui/_next/static/chunks/d5bd04634f922925.js +1 -0
  432. package/dist/ui/_next/static/chunks/d642c9229900dc48.js +1 -0
  433. package/dist/ui/_next/static/chunks/d6651bb78c09d144.js +5 -0
  434. package/dist/ui/_next/static/chunks/d7276c56aa62ceed.js +1 -0
  435. package/dist/ui/_next/static/chunks/d85cd9cda46f2d1b.js +1 -0
  436. package/dist/ui/_next/static/chunks/d8978f4b468bbad4.js +1 -0
  437. package/dist/ui/_next/static/chunks/d8fb9668a83c0603.js +1 -0
  438. package/dist/ui/_next/static/chunks/d95c62472fc41baf.js +1 -0
  439. package/dist/ui/_next/static/chunks/da13170b983f7ebf.js +1 -0
  440. package/dist/ui/_next/static/chunks/dae86e12c7741e6c.js +19 -0
  441. package/dist/ui/_next/static/chunks/db44023a744297d1.js +1 -0
  442. package/dist/ui/_next/static/chunks/dbe7840308be36b8.js +1 -0
  443. package/dist/ui/_next/static/chunks/dc0a4df8f7080b29.js +1 -0
  444. package/dist/ui/_next/static/chunks/dc4a6f59be156511.js +1 -0
  445. package/dist/ui/_next/static/chunks/dcda5e7b57ed88e0.js +1 -0
  446. package/dist/ui/_next/static/chunks/de9ff8c97f75b947.js +1 -0
  447. package/dist/ui/_next/static/chunks/df6abcdb3eb0b236.js +1 -0
  448. package/dist/ui/_next/static/chunks/df8a0933ca385a63.js +1 -0
  449. package/dist/ui/_next/static/chunks/dff6434c44c2dfaa.js +1 -0
  450. package/dist/ui/_next/static/chunks/e037ec5e62b2bdc3.js +1 -0
  451. package/dist/ui/_next/static/chunks/e212cf1f5a503899.js +1 -0
  452. package/dist/ui/_next/static/chunks/e2bfdac0a2305cc1.js +1 -0
  453. package/dist/ui/_next/static/chunks/e2dce648399ad4d4.js +1 -0
  454. package/dist/ui/_next/static/chunks/e318291bb8d74aee.js +1 -0
  455. package/dist/ui/_next/static/chunks/e33e40c2e7ab7629.js +1 -0
  456. package/dist/ui/_next/static/chunks/e410dfbcccddc478.js +1 -0
  457. package/dist/ui/_next/static/chunks/e411d58b52ab342b.js +1 -0
  458. package/dist/ui/_next/static/chunks/e57f7ffd0803a922.js +117 -0
  459. package/dist/ui/_next/static/chunks/e6b56ceb762e84c4.js +1 -0
  460. package/dist/ui/_next/static/chunks/e6d9a6ca68017eef.js +1 -0
  461. package/dist/ui/_next/static/chunks/e6ec2663605cf5a7.js +29 -0
  462. package/dist/ui/_next/static/chunks/e834330589be0639.js +1 -0
  463. package/dist/ui/_next/static/chunks/e8f662ba8bc76802.js +1 -0
  464. package/dist/ui/_next/static/chunks/e9e8e72d7ff45812.js +1 -0
  465. package/dist/ui/_next/static/chunks/eadd25eb66104a63.js +1 -0
  466. package/dist/ui/_next/static/chunks/ec3a7a7f48a8aca9.js +1 -0
  467. package/dist/ui/_next/static/chunks/ed62e349fb1ce14c.js +1 -0
  468. package/dist/ui/_next/static/chunks/ed6caa113f5769a5.js +1 -0
  469. package/dist/ui/_next/static/chunks/f02ac565bb5bc450.js +1 -0
  470. package/dist/ui/_next/static/chunks/f1a7a173e3da4ff4.js +1 -0
  471. package/dist/ui/_next/static/chunks/f268093817d3b260.js +1 -0
  472. package/dist/ui/_next/static/chunks/f6f811ccfe79e963.js +1 -0
  473. package/dist/ui/_next/static/chunks/f8955634331fd956.js +1 -0
  474. package/dist/ui/_next/static/chunks/f8c965a996875e30.js +56 -0
  475. package/dist/ui/_next/static/chunks/f9bb8411d37b06d7.js +1 -0
  476. package/dist/ui/_next/static/chunks/f9d4f77d8c130497.js +1 -0
  477. package/dist/ui/_next/static/chunks/fba113a516eb485f.js +1 -0
  478. package/dist/ui/_next/static/chunks/fc069e49a569d83c.js +1 -0
  479. package/dist/ui/_next/static/chunks/fc245016ffebdde3.js +1 -0
  480. package/dist/ui/_next/static/chunks/fc2d01d74dcf3921.js +1 -0
  481. package/dist/ui/_next/static/chunks/fe2ad0e00041a87d.js +1 -0
  482. package/dist/ui/_next/static/chunks/fe571740188dea3a.js +1 -0
  483. package/dist/ui/_next/static/chunks/turbopack-a5ce95b200d58f7a.js +4 -0
  484. package/dist/ui/_next/static/media/4fa387ec64143e14-s.c1fdd6c2.woff2 +0 -0
  485. package/dist/ui/_next/static/media/7178b3e590c64307-s.b97b3418.woff2 +0 -0
  486. package/dist/ui/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2 +0 -0
  487. package/dist/ui/_next/static/media/8a480f0b521d4e75-s.8e0177b5.woff2 +0 -0
  488. package/dist/ui/_next/static/media/KaTeX_AMS-Regular.892f691b.ttf +0 -0
  489. package/dist/ui/_next/static/media/KaTeX_AMS-Regular.c30af439.woff2 +0 -0
  490. package/dist/ui/_next/static/media/KaTeX_AMS-Regular.e6a3cada.woff +0 -0
  491. package/dist/ui/_next/static/media/KaTeX_Caligraphic-Bold.2f97783e.woff +0 -0
  492. package/dist/ui/_next/static/media/KaTeX_Caligraphic-Bold.a36b8125.ttf +0 -0
  493. package/dist/ui/_next/static/media/KaTeX_Caligraphic-Bold.db991531.woff2 +0 -0
  494. package/dist/ui/_next/static/media/KaTeX_Caligraphic-Regular.2b13f013.woff +0 -0
  495. package/dist/ui/_next/static/media/KaTeX_Caligraphic-Regular.7c50032c.ttf +0 -0
  496. package/dist/ui/_next/static/media/KaTeX_Caligraphic-Regular.c20eee08.woff2 +0 -0
  497. package/dist/ui/_next/static/media/KaTeX_Fraktur-Bold.5fa2f5e4.woff +0 -0
  498. package/dist/ui/_next/static/media/KaTeX_Fraktur-Bold.d514bd28.woff2 +0 -0
  499. package/dist/ui/_next/static/media/KaTeX_Fraktur-Bold.e311399d.ttf +0 -0
  500. package/dist/ui/_next/static/media/KaTeX_Fraktur-Regular.18139813.woff +0 -0
  501. package/dist/ui/_next/static/media/KaTeX_Fraktur-Regular.2a73476d.ttf +0 -0
  502. package/dist/ui/_next/static/media/KaTeX_Fraktur-Regular.5d62e468.woff2 +0 -0
  503. package/dist/ui/_next/static/media/KaTeX_Main-Bold.6d137c77.ttf +0 -0
  504. package/dist/ui/_next/static/media/KaTeX_Main-Bold.c24b5ba7.woff +0 -0
  505. package/dist/ui/_next/static/media/KaTeX_Main-Bold.f4e2828d.woff2 +0 -0
  506. package/dist/ui/_next/static/media/KaTeX_Main-BoldItalic.079b33ae.woff +0 -0
  507. package/dist/ui/_next/static/media/KaTeX_Main-BoldItalic.c003d3ec.ttf +0 -0
  508. package/dist/ui/_next/static/media/KaTeX_Main-BoldItalic.f1884480.woff2 +0 -0
  509. package/dist/ui/_next/static/media/KaTeX_Main-Italic.26a3619b.woff +0 -0
  510. package/dist/ui/_next/static/media/KaTeX_Main-Italic.61da3e93.ttf +0 -0
  511. package/dist/ui/_next/static/media/KaTeX_Main-Italic.a3746929.woff2 +0 -0
  512. package/dist/ui/_next/static/media/KaTeX_Main-Regular.12644167.woff2 +0 -0
  513. package/dist/ui/_next/static/media/KaTeX_Main-Regular.876b86ad.ttf +0 -0
  514. package/dist/ui/_next/static/media/KaTeX_Main-Regular.d511f158.woff +0 -0
  515. package/dist/ui/_next/static/media/KaTeX_Math-BoldItalic.5c6a6a93.woff2 +0 -0
  516. package/dist/ui/_next/static/media/KaTeX_Math-BoldItalic.ad4dffd5.woff +0 -0
  517. package/dist/ui/_next/static/media/KaTeX_Math-BoldItalic.e73b3bf0.ttf +0 -0
  518. package/dist/ui/_next/static/media/KaTeX_Math-Italic.03974bc4.ttf +0 -0
  519. package/dist/ui/_next/static/media/KaTeX_Math-Italic.1cd2c488.woff +0 -0
  520. package/dist/ui/_next/static/media/KaTeX_Math-Italic.d8564edb.woff2 +0 -0
  521. package/dist/ui/_next/static/media/KaTeX_SansSerif-Bold.a03f9428.woff2 +0 -0
  522. package/dist/ui/_next/static/media/KaTeX_SansSerif-Bold.d4608ed5.ttf +0 -0
  523. package/dist/ui/_next/static/media/KaTeX_SansSerif-Bold.ff51ef5c.woff +0 -0
  524. package/dist/ui/_next/static/media/KaTeX_SansSerif-Italic.8ed740d6.woff +0 -0
  525. package/dist/ui/_next/static/media/KaTeX_SansSerif-Italic.9245afda.woff2 +0 -0
  526. package/dist/ui/_next/static/media/KaTeX_SansSerif-Italic.c0b22b1e.ttf +0 -0
  527. package/dist/ui/_next/static/media/KaTeX_SansSerif-Regular.128c9bc2.woff2 +0 -0
  528. package/dist/ui/_next/static/media/KaTeX_SansSerif-Regular.156dbd4e.ttf +0 -0
  529. package/dist/ui/_next/static/media/KaTeX_SansSerif-Regular.ee7b0a16.woff +0 -0
  530. package/dist/ui/_next/static/media/KaTeX_Script-Regular.00d9a561.ttf +0 -0
  531. package/dist/ui/_next/static/media/KaTeX_Script-Regular.186c7155.woff2 +0 -0
  532. package/dist/ui/_next/static/media/KaTeX_Script-Regular.afc2fd5a.woff +0 -0
  533. package/dist/ui/_next/static/media/KaTeX_Size1-Regular.4450ef36.woff2 +0 -0
  534. package/dist/ui/_next/static/media/KaTeX_Size1-Regular.9aaff96b.ttf +0 -0
  535. package/dist/ui/_next/static/media/KaTeX_Size1-Regular.e5bf4c74.woff +0 -0
  536. package/dist/ui/_next/static/media/KaTeX_Size2-Regular.6a97527b.woff2 +0 -0
  537. package/dist/ui/_next/static/media/KaTeX_Size2-Regular.8fbd32af.woff +0 -0
  538. package/dist/ui/_next/static/media/KaTeX_Size2-Regular.f11810ed.ttf +0 -0
  539. package/dist/ui/_next/static/media/KaTeX_Size3-Regular.45ae8eba.woff +0 -0
  540. package/dist/ui/_next/static/media/KaTeX_Size3-Regular.54b7ce9d.woff2 +0 -0
  541. package/dist/ui/_next/static/media/KaTeX_Size3-Regular.9812ade2.ttf +0 -0
  542. package/dist/ui/_next/static/media/KaTeX_Size4-Regular.44a4d487.ttf +0 -0
  543. package/dist/ui/_next/static/media/KaTeX_Size4-Regular.927fc5b9.woff2 +0 -0
  544. package/dist/ui/_next/static/media/KaTeX_Size4-Regular.b211e3d3.woff +0 -0
  545. package/dist/ui/_next/static/media/KaTeX_Typewriter-Regular.68b6c3a9.woff +0 -0
  546. package/dist/ui/_next/static/media/KaTeX_Typewriter-Regular.a1a7ff52.ttf +0 -0
  547. package/dist/ui/_next/static/media/KaTeX_Typewriter-Regular.ff99d643.woff2 +0 -0
  548. package/dist/ui/_next/static/media/bbc41e54d2fcbd21-s.799d8ef8.woff2 +0 -0
  549. package/dist/ui/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2 +0 -0
  550. package/dist/ui/_next/static/media/favicon.0b3bf435.ico +0 -0
  551. package/dist/ui/_not-found/__next._full.txt +18 -0
  552. package/dist/ui/_not-found/__next._head.txt +6 -0
  553. package/dist/ui/_not-found/__next._index.txt +9 -0
  554. package/dist/ui/_not-found/__next._not-found.__PAGE__.txt +5 -0
  555. package/dist/ui/_not-found/__next._not-found.txt +4 -0
  556. package/dist/ui/_not-found/__next._tree.txt +3 -0
  557. package/dist/ui/_not-found/index.html +1 -0
  558. package/dist/ui/_not-found/index.txt +18 -0
  559. package/dist/ui/favicon.ico +0 -0
  560. package/dist/ui/file.svg +1 -0
  561. package/dist/ui/globe.svg +1 -0
  562. package/dist/ui/index.html +1 -0
  563. package/dist/ui/index.txt +25 -0
  564. package/dist/ui/next.svg +1 -0
  565. package/dist/ui/vercel.svg +1 -0
  566. package/dist/ui/window.svg +1 -0
  567. package/dist/utils/chat-model.d.ts +11 -0
  568. package/dist/utils/chat-model.js +37 -0
  569. package/dist/utils/diff-parser.d.ts +20 -0
  570. package/dist/utils/diff-parser.js +100 -0
  571. package/dist/utils/proxy-manager.d.ts +18 -0
  572. package/dist/utils/proxy-manager.js +42 -0
  573. package/dist/utils/remote-proxy.d.ts +40 -0
  574. package/dist/utils/remote-proxy.js +145 -0
  575. package/dist/utils/worktree-paths.d.ts +13 -0
  576. package/dist/utils/worktree-paths.js +64 -0
  577. package/dist/virtual-ws-adapter.d.ts +26 -0
  578. package/dist/virtual-ws-adapter.js +54 -0
  579. package/package.json +19 -0
@@ -0,0 +1 @@
1
+ (globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,695128,e=>{"use strict";let r=Object.freeze(JSON.parse('{"colors":{"activityBar.activeBorder":"#f29718","activityBar.background":"#f8f9fa","activityBar.border":"#6b7d8f1f","activityBar.foreground":"#828e9fcc","activityBar.inactiveForeground":"#828e9f99","activityBarBadge.background":"#f29718","activityBarBadge.foreground":"#7e4b01","activityBarTop.activeBorder":"#f29718","activityBarTop.foreground":"#788597","badge.background":"#f2971833","badge.foreground":"#ea9216","button.background":"#f29718","button.border":"#7e4b011a","button.foreground":"#7e4b01","button.hoverBackground":"#ea9216","button.secondaryBackground":"#828e9f33","button.secondaryForeground":"#5c6166","button.secondaryHoverBackground":"#828e9f80","button.separator":"#7e4b014d","chat.checkpointSeparator":"#adaeb1","chat.editedFileForeground":"#478acc","chat.requestBackground":"#f8f9fa","chat.requestBorder":"#6b7d8f24","chat.requestBubbleBackground":"#6b7d8f1f","chat.requestBubbleHoverBackground":"#6b7d8f24","chat.slashCommandBackground":"#55b4d433","chat.slashCommandForeground":"#55b4d4","commandCenter.activeBackground":"#6b7d8f24","commandCenter.activeBorder":"#6b7d8f00","commandCenter.activeForeground":"#828e9f","commandCenter.background":"#fcfcfc","commandCenter.border":"#6b7d8f1f","commandCenter.foreground":"#828e9f","commandCenter.inactiveBorder":"#6b7d8f1f","debugConsoleInputIcon.foreground":"#f29718","debugExceptionWidget.background":"#fafafa","debugExceptionWidget.border":"#6b7d8f1f","debugIcon.breakpointDisabledForeground":"#f2a19180","debugIcon.breakpointForeground":"#f2a191","debugToolBar.background":"#fafafa","descriptionForeground":"#828e9f","diffEditor.diagonalFill":"#6b7d8f1f","diffEditor.insertedTextBackground":"#6cbf431f","diffEditor.removedTextBackground":"#ff73831f","dropdown.background":"#fafafa","dropdown.border":"#6b7d8f1f","dropdown.foreground":"#828e9f","editor.background":"#fcfcfc","editor.findMatchBackground":"#ffe294","editor.findMatchHighlightBackground":"#ffe29480","editor.foreground":"#5c6166","editor.inactiveSelectionBackground":"#035bd612","editor.lineHighlightBackground":"#828e9f1a","editor.rangeHighlightBackground":"#ffe29433","editor.selectionBackground":"#035bd626","editor.selectionHighlightBackground":"#6cbf4326","editor.selectionHighlightBorder":"#6cbf4300","editor.snippetTabstopHighlightBackground":"#6cbf4333","editor.wordHighlightBackground":"#478acc14","editor.wordHighlightBorder":"#478acc80","editor.wordHighlightStrongBackground":"#6cbf4314","editor.wordHighlightStrongBorder":"#6cbf4380","editorBracketMatch.background":"#828e9f4d","editorBracketMatch.border":"#828e9f4d","editorCodeLens.foreground":"#adaeb1","editorCursor.foreground":"#f29718","editorError.foreground":"#e65050","editorGroup.background":"#fafafa","editorGroup.border":"#6b7d8f1f","editorGroupHeader.noTabsBackground":"#f8f9fa","editorGroupHeader.tabsBackground":"#f8f9fa","editorGroupHeader.tabsBorder":"#6b7d8f1f","editorGutter.addedBackground":"#6cbf43","editorGutter.deletedBackground":"#ff7383","editorGutter.modifiedBackground":"#478acc","editorHoverWidget.background":"#fafafa","editorHoverWidget.border":"#6b7d8f1f","editorIndentGuide.activeBackground":"#828e9f59","editorIndentGuide.background":"#828e9f2e","editorInlayHint.foreground":"#5c616680","editorLineNumber.activeForeground":"#828e9fcc","editorLineNumber.foreground":"#828e9f66","editorLink.activeForeground":"#f29718","editorMarkerNavigation.background":"#fafafa","editorOverviewRuler.addedForeground":"#6cbf43","editorOverviewRuler.border":"#6b7d8f1f","editorOverviewRuler.bracketMatchForeground":"#828e9fb3","editorOverviewRuler.deletedForeground":"#ff7383","editorOverviewRuler.errorForeground":"#e65050","editorOverviewRuler.findMatchForeground":"#ffe294","editorOverviewRuler.modifiedForeground":"#478acc","editorOverviewRuler.warningForeground":"#f29718","editorOverviewRuler.wordHighlightForeground":"#478acc66","editorOverviewRuler.wordHighlightStrongForeground":"#6cbf4366","editorRuler.foreground":"#828e9f2e","editorStickyScroll.border":"#6b7d8f1f","editorStickyScroll.shadow":"#6b7d8f12","editorStickyScrollHover.background":"#6b7d8f1f","editorSuggestWidget.background":"#fafafa","editorSuggestWidget.border":"#6b7d8f1f","editorSuggestWidget.highlightForeground":"#f29718","editorSuggestWidget.selectedBackground":"#6b7d8f24","editorWarning.foreground":"#f29718","editorWhitespace.foreground":"#828e9f66","editorWidget.background":"#fafafa","editorWidget.border":"#6b7d8f1f","editorWidget.resizeBorder":"#fafafa","errorForeground":"#e65050","extensionButton.prominentBackground":"#f29718","extensionButton.prominentForeground":"#7e4b01","extensionButton.prominentHoverBackground":"#ee9417","focusBorder":"#f29718","foreground":"#828e9f","gitDecoration.conflictingResourceForeground":"","gitDecoration.deletedResourceForeground":"#ff7383","gitDecoration.ignoredResourceForeground":"#828e9f80","gitDecoration.modifiedResourceForeground":"#478acc","gitDecoration.submoduleResourceForeground":"#a37acc","gitDecoration.untrackedResourceForeground":"#6cbf43","icon.foreground":"#828e9f","inlineChat.background":"#fafafa","inlineChat.border":"#6b7d8f1f","inlineChat.foreground":"#5c6166","inlineChat.shadow":"#6b7d8f12","inlineChatDiff.inserted":"#6cbf4333","inlineChatDiff.removed":"#ff738333","inlineChatInput.background":"#fcfcfc","inlineChatInput.border":"#6b7d8f1f","inlineChatInput.focusBorder":"#f29718b3","inlineChatInput.placeholderForeground":"#828e9f80","inlineEdit.gutterIndicator.background":"#6b7d8f1f","inlineEdit.gutterIndicator.primaryBackground":"#f297181a","inlineEdit.gutterIndicator.primaryBorder":"#f29718","inlineEdit.gutterIndicator.primaryForeground":"#f29718","inlineEdit.gutterIndicator.secondaryBackground":"#828e9f1a","inlineEdit.gutterIndicator.secondaryBorder":"#828e9f80","inlineEdit.gutterIndicator.secondaryForeground":"#828e9f","inlineEdit.gutterIndicator.successfulBackground":"#6cbf431a","inlineEdit.gutterIndicator.successfulBorder":"#6cbf43","inlineEdit.gutterIndicator.successfulForeground":"#6cbf43","inlineEdit.modifiedBackground":"#6cbf431a","inlineEdit.modifiedBorder":"#6cbf4380","inlineEdit.modifiedChangedLineBackground":"#6cbf4326","inlineEdit.modifiedChangedTextBackground":"#6cbf4340","inlineEdit.originalBackground":"#ff73831a","inlineEdit.originalBorder":"#ff738380","inlineEdit.originalChangedLineBackground":"#ff738326","inlineEdit.originalChangedTextBackground":"#ff738340","input.background":"#fcfcfc","input.border":"#828e9f33","input.foreground":"#5c6166","input.placeholderForeground":"#828e9f80","inputOption.activeBackground":"#f297181a","inputOption.activeBorder":"#f2971833","inputOption.activeForeground":"#f29718","inputOption.hoverBackground":"#828e9f33","inputValidation.errorBackground":"#fcfcfc","inputValidation.errorBorder":"#e65050","inputValidation.infoBackground":"#f8f9fa","inputValidation.infoBorder":"#55b4d4","inputValidation.warningBackground":"#f8f9fa","inputValidation.warningBorder":"#eba400","keybindingLabel.background":"#828e9f1a","keybindingLabel.border":"#5c61661a","keybindingLabel.bottomBorder":"#5c61661a","keybindingLabel.foreground":"#5c6166","list.activeSelectionBackground":"#6b7d8f24","list.activeSelectionForeground":"#5c6166","list.deemphasizedForeground":"#e65050","list.errorForeground":"#e65050","list.filterMatchBackground":"#fad77880","list.filterMatchBorder":"#ffe29480","list.focusBackground":"#6b7d8f24","list.focusForeground":"#5c6166","list.focusOutline":"#6b7d8f24","list.highlightForeground":"#f29718","list.hoverBackground":"#6b7d8f24","list.inactiveSelectionBackground":"#6b7d8f1f","list.inactiveSelectionForeground":"#828e9f","list.invalidItemForeground":"#828e9f4d","listFilterWidget.background":"#fafafa","listFilterWidget.noMatchesOutline":"#e65050","listFilterWidget.outline":"#f29718","minimap.background":"#fcfcfc","minimap.errorHighlight":"#e65050","minimap.findMatchHighlight":"#ffe294","minimap.selectionHighlight":"#035bd626","minimapGutter.addedBackground":"#6cbf43","minimapGutter.deletedBackground":"#ff7383","minimapGutter.modifiedBackground":"#478acc","multiDiffEditor.background":"#f8f9fa","multiDiffEditor.border":"#6b7d8f1f","multiDiffEditor.headerBackground":"#fafafa","panel.background":"#f8f9fa","panel.border":"#6b7d8f1f","panelStickyScroll.border":"#6b7d8f1f","panelStickyScroll.shadow":"#6b7d8f12","panelTitle.activeBorder":"#f29718","panelTitle.activeForeground":"#5c6166","panelTitle.inactiveForeground":"#828e9f","peekView.border":"#6b7d8f24","peekViewEditor.background":"#fafafa","peekViewEditor.matchHighlightBackground":"#ffe29480","peekViewEditor.matchHighlightBorder":"#fad77880","peekViewResult.background":"#fafafa","peekViewResult.fileForeground":"#5c6166","peekViewResult.lineForeground":"#828e9f","peekViewResult.matchHighlightBackground":"#ffe29480","peekViewResult.selectionBackground":"#6b7d8f24","peekViewTitle.background":"#6b7d8f24","peekViewTitleDescription.foreground":"#828e9f","peekViewTitleLabel.foreground":"#5c6166","pickerGroup.border":"#6b7d8f1f","pickerGroup.foreground":"#828e9f80","profileBadge.background":"#f29718","profileBadge.foreground":"#7e4b01","progressBar.background":"#f29718","scrollbar.shadow":"#6b7d8f00","scrollbarSlider.activeBackground":"#828e9fb3","scrollbarSlider.background":"#828e9f66","scrollbarSlider.hoverBackground":"#828e9f99","selection.background":"#035bd626","settings.headerForeground":"#5c6166","settings.modifiedItemIndicator":"#478acc","sideBar.background":"#f8f9fa","sideBar.border":"#6b7d8f1f","sideBarSectionHeader.background":"#f8f9fa","sideBarSectionHeader.border":"#6b7d8f1f","sideBarSectionHeader.foreground":"#828e9f","sideBarStickyScroll.border":"#6b7d8f1f","sideBarStickyScroll.shadow":"#6b7d8f12","sideBarTitle.foreground":"#828e9f","statusBar.background":"#f8f9fa","statusBar.border":"#6b7d8f1f","statusBar.debuggingBackground":"#f2a191","statusBar.debuggingForeground":"#fcfcfc","statusBar.foreground":"#828e9f","statusBar.noFolderBackground":"#fafafa","statusBarItem.activeBackground":"#828e9f33","statusBarItem.hoverBackground":"#828e9f33","statusBarItem.prominentBackground":"#6b7d8f1f","statusBarItem.prominentHoverBackground":"#00000030","statusBarItem.remoteBackground":"#f29718","statusBarItem.remoteForeground":"#7e4b01","symbolIcon.arrayForeground":"#22a4e6","symbolIcon.booleanForeground":"#a37acc","symbolIcon.classForeground":"#22a4e6","symbolIcon.colorForeground":"#e59645","symbolIcon.constantForeground":"#a37acc","symbolIcon.constructorForeground":"#eba400","symbolIcon.enumeratorForeground":"#22a4e6","symbolIcon.enumeratorMemberForeground":"#a37acc","symbolIcon.eventForeground":"#e59645","symbolIcon.fieldForeground":"#f07171","symbolIcon.fileForeground":"#828e9f","symbolIcon.folderForeground":"#828e9f","symbolIcon.functionForeground":"#eba400","symbolIcon.interfaceForeground":"#22a4e6","symbolIcon.keyForeground":"#55b4d4","symbolIcon.keywordForeground":"#fa8532","symbolIcon.methodForeground":"#eba400","symbolIcon.moduleForeground":"#86b300","symbolIcon.namespaceForeground":"#86b300","symbolIcon.nullForeground":"#a37acc","symbolIcon.numberForeground":"#a37acc","symbolIcon.objectForeground":"#22a4e6","symbolIcon.operatorForeground":"#f2a191","symbolIcon.packageForeground":"#86b300","symbolIcon.propertyForeground":"#f07171","symbolIcon.referenceForeground":"#22a4e6","symbolIcon.snippetForeground":"#e59645","symbolIcon.stringForeground":"#86b300","symbolIcon.structForeground":"#22a4e6","symbolIcon.textForeground":"#5c6166","symbolIcon.typeParameterForeground":"#22a4e6","symbolIcon.unitForeground":"#a37acc","symbolIcon.variableForeground":"#5c6166","tab.activeBackground":"#fcfcfc","tab.activeBorder":"#fcfcfc","tab.activeBorderTop":"#f29718","tab.activeForeground":"#5c6166","tab.border":"#6b7d8f1f","tab.inactiveBackground":"#f8f9fa","tab.inactiveForeground":"#828e9f","tab.unfocusedActiveBorderTop":"#828e9f","tab.unfocusedActiveForeground":"#828e9f","tab.unfocusedInactiveForeground":"#828e9f","terminal.ansiBlack":"#000000","terminal.ansiBlue":"#21a1e2","terminal.ansiBrightBlack":"#686868","terminal.ansiBrightBlue":"#22a4e6","terminal.ansiBrightCyan":"#4cbf99","terminal.ansiBrightGreen":"#86b300","terminal.ansiBrightMagenta":"#a37acc","terminal.ansiBrightRed":"#f07171","terminal.ansiBrightWhite":"#d1d1d1","terminal.ansiBrightYellow":"#eba400","terminal.ansiCyan":"#4abc96","terminal.ansiGreen":"#6cbf43","terminal.ansiMagenta":"#a176cb","terminal.ansiRed":"#f06b6c","terminal.ansiWhite":"#c7c7c7","terminal.ansiYellow":"#e7a100","terminal.background":"#f8f9fa","terminal.foreground":"#5c6166","terminalCommandGuide.foreground":"#828e9f4d","terminalStickyScroll.border":"#6b7d8f1f","terminalStickyScroll.shadow":"#6b7d8f12","terminalStickyScrollHover.background":"#6b7d8f1f","textBlockQuote.background":"#fafafa","textLink.activeForeground":"#f29718","textLink.foreground":"#f29718","textPreformat.foreground":"#5c6166","titleBar.activeBackground":"#f8f9fa","titleBar.activeForeground":"#828e9f","titleBar.border":"#6b7d8f1f","titleBar.inactiveBackground":"#f8f9fa","titleBar.inactiveForeground":"#828e9fb3","toolbar.hoverBackground":"#828e9f4d","tree.indentGuidesStroke":"#828e9f59","walkThrough.embeddedEditorBackground":"#fafafa","welcomePage.buttonBackground":"#f2971866","welcomePage.progress.background":"#828e9f1a","welcomePage.tileBackground":"#f8f9fa","welcomePage.tileShadow":"#6b7d8f12","widget.border":"#6b7d8f1f","widget.shadow":"#6b7d8f12"},"displayName":"Ayu Light","name":"ayu-light","semanticHighlighting":true,"semanticTokenColors":{"class":"#22a4e6","class.defaultLibrary":"#55b4d4","comment":"#adaeb1","enum":"#22a4e6","enum.defaultLibrary":"#55b4d4","enumMember":"#4cbf99","event":"#f2a191","function":"#eba400","interface":"#55b4d4","interface.defaultLibrary":{"foreground":"#55b4d4","italic":true},"keyword":"#fa8532","macro":"#e59645","method":"#eba400","number":"#a37acc","operator":"#f2a191","regexp":"#4cbf99","string":"#86b300","struct":"#22a4e6","struct.defaultLibrary":"#55b4d4","type":"#22a4e6","type.defaultLibrary":"#55b4d4"},"tokenColors":[{"settings":{"background":"#f8f9fa","foreground":"#5c6166"}},{"scope":["comment"],"settings":{"fontStyle":"italic","foreground":"#adaeb1"}},{"scope":["string","constant.other.symbol"],"settings":{"foreground":"#86b300"}},{"scope":["string.regexp","constant.character","constant.other"],"settings":{"foreground":"#4cbf99"}},{"scope":["constant.numeric"],"settings":{"foreground":"#a37acc"}},{"scope":["constant.language"],"settings":{"foreground":"#a37acc"}},{"scope":["variable","variable.parameter.function-call"],"settings":{"foreground":"#5c6166"}},{"scope":["variable.member"],"settings":{"foreground":"#f07171"}},{"scope":["variable.language"],"settings":{"fontStyle":"italic","foreground":"#55b4d4"}},{"scope":["storage"],"settings":{"foreground":"#fa8532"}},{"scope":["keyword"],"settings":{"foreground":"#fa8532"}},{"scope":["keyword.operator"],"settings":{"foreground":"#f2a191"}},{"scope":["punctuation.separator","punctuation.terminator"],"settings":{"foreground":"#5c6166b3"}},{"scope":["punctuation.section"],"settings":{"foreground":"#5c6166"}},{"scope":["punctuation.accessor"],"settings":{"foreground":"#f2a191"}},{"scope":["punctuation.definition.template-expression"],"settings":{"foreground":"#fa8532"}},{"scope":["punctuation.section.embedded"],"settings":{"foreground":"#fa8532"}},{"scope":["meta.embedded"],"settings":{"foreground":"#5c6166"}},{"scope":["source.java storage.type","source.haskell storage.type","source.c storage.type"],"settings":{"foreground":"#22a4e6"}},{"scope":["entity.other.inherited-class"],"settings":{"foreground":"#55b4d4"}},{"scope":["storage.type.function"],"settings":{"foreground":"#fa8532"}},{"scope":["source.java storage.type.primitive"],"settings":{"foreground":"#55b4d4"}},{"scope":["entity.name.function"],"settings":{"foreground":"#eba400"}},{"scope":["variable.parameter","meta.parameter"],"settings":{"foreground":"#a37acc"}},{"scope":["variable.function","variable.annotation","meta.function-call.generic","support.function.go"],"settings":{"foreground":"#eba400"}},{"scope":["support.function","support.macro"],"settings":{"foreground":"#f07171"}},{"scope":["entity.name.import","entity.name.package"],"settings":{"foreground":"#86b300"}},{"scope":["entity.name"],"settings":{"foreground":"#22a4e6"}},{"scope":["entity.name.tag","meta.tag.sgml"],"settings":{"foreground":"#55b4d4"}},{"scope":["support.class.component"],"settings":{"foreground":"#22a4e6"}},{"scope":["punctuation.definition.tag.end","punctuation.definition.tag.begin","punctuation.definition.tag"],"settings":{"foreground":"#55b4d480"}},{"scope":["entity.other.attribute-name"],"settings":{"foreground":"#eba400"}},{"scope":["entity.other.attribute-name.pseudo-class"],"settings":{"foreground":"#4cbf99"}},{"scope":["support.constant"],"settings":{"fontStyle":"italic","foreground":"#f2a191"}},{"scope":["support.type","support.class","source.go storage.type"],"settings":{"foreground":"#55b4d4"}},{"scope":["meta.decorator variable.other","meta.decorator punctuation.decorator","storage.type.annotation","entity.name.function.decorator"],"settings":{"foreground":"#e59645"}},{"scope":["invalid"],"settings":{"foreground":"#e65050"}},{"scope":["meta.diff","meta.diff.header"],"settings":{"foreground":"#c594c5"}},{"scope":["source.ruby variable.other.readwrite"],"settings":{"foreground":"#eba400"}},{"scope":["source.css entity.name.tag","source.sass entity.name.tag","source.scss entity.name.tag","source.less entity.name.tag","source.stylus entity.name.tag"],"settings":{"foreground":"#22a4e6"}},{"scope":["source.css support.type","source.sass support.type","source.scss support.type","source.less support.type","source.stylus support.type"],"settings":{"foreground":"#adaeb1"}},{"scope":["support.type.property-name"],"settings":{"fontStyle":"normal","foreground":"#55b4d4"}},{"scope":["constant.numeric.line-number.find-in-files - match"],"settings":{"foreground":"#adaeb1"}},{"scope":["constant.numeric.line-number.match"],"settings":{"foreground":"#fa8532"}},{"scope":["entity.name.filename.find-in-files"],"settings":{"foreground":"#86b300"}},{"scope":["message.error"],"settings":{"foreground":"#e65050"}},{"scope":["markup.heading","markup.heading entity.name"],"settings":{"fontStyle":"bold","foreground":"#86b300"}},{"scope":["markup.underline.link","string.other.link"],"settings":{"foreground":"#55b4d4"}},{"scope":["markup.italic","emphasis"],"settings":{"fontStyle":"italic","foreground":"#f07171"}},{"scope":["markup.bold"],"settings":{"fontStyle":"bold","foreground":"#f07171"}},{"scope":["markup.underline"],"settings":{"fontStyle":"underline"}},{"scope":["markup.italic markup.bold","markup.bold markup.italic"],"settings":{"fontStyle":"bold italic"}},{"scope":["markup.raw"],"settings":{"background":"#5c616605"}},{"scope":["markup.raw.inline"],"settings":{"background":"#5c61660f"}},{"scope":["meta.separator"],"settings":{"background":"#5c61660f","fontStyle":"bold","foreground":"#adaeb1"}},{"scope":["markup.quote"],"settings":{"fontStyle":"italic","foreground":"#4cbf99"}},{"scope":["markup.list punctuation.definition.list.begin"],"settings":{"foreground":"#eba400"}},{"scope":["markup.inserted"],"settings":{"foreground":"#6cbf43"}},{"scope":["markup.changed"],"settings":{"foreground":"#478acc"}},{"scope":["markup.deleted"],"settings":{"foreground":"#ff7383"}},{"scope":["markup.strike"],"settings":{"foreground":"#e59645"}},{"scope":["markup.strong"],"settings":{"fontStyle":"bold"}},{"scope":["markup.table"],"settings":{"background":"#5c61660f","foreground":"#55b4d4"}},{"scope":["text.html.markdown markup.inline.raw"],"settings":{"foreground":"#f2a191"}},{"scope":["text.html.markdown meta.dummy.line-break"],"settings":{"background":"#adaeb1","foreground":"#adaeb1"}},{"scope":["punctuation.definition.markdown"],"settings":{"background":"#5c6166","foreground":"#adaeb1"}}],"type":"light"}'));e.s(["default",0,r])}]);
@@ -0,0 +1,215 @@
1
+ (globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,309235,t=>{"use strict";var e=t.i(217242);t.s(["default",0,function(t){return(null==t?0:t.length)?(0,e.default)(t,1):[]}])},34197,786587,22279,785639,499517,t=>{"use strict";var e=t.i(201912),i=t.i(875811),s=t.i(332505),r=t.i(42125);let a=function(t,e){var i=-1,a=(0,r.default)(t)?Array(t.length):[];return(0,s.default)(t,function(t,s,r){a[++i]=e(t,s,r)}),a};t.s(["default",0,a],786587);var n=t.i(494878);t.s(["default",0,function(t,s){return((0,n.default)(t)?e.default:a)(t,(0,i.default)(s,3))}],34197);var o=t.i(385647);let l=function(t,e,i){for(var s=-1,r=t.length;++s<r;){var a=t[s],n=e(a);if(null!=n&&(void 0===l?n==n&&!(0,o.default)(n):i(n,l)))var l=n,d=a}return d};t.s(["default",0,l],22279);let d=function(t,e){return t<e};t.s(["default",0,d],785639);var c=t.i(16481);t.s(["default",0,function(t){return t&&t.length?l(t,c.default,d):void 0}],499517)},718445,t=>{"use strict";var e=t.i(459721),i=t.i(658295),s=(0,i.__name)((t,s,n,o)=>{t.attr("class",n);let{width:l,height:d,x:c,y:h}=r(t,s);(0,e.configureSvgSize)(t,d,l,o);let u=a(c,h,l,d,s);t.attr("viewBox",u),i.log.debug(`viewBox configured: ${u} with padding: ${s}`)},"setupViewPortForSVG"),r=(0,i.__name)((t,e)=>{let i=t.node()?.getBBox()||{width:0,height:0,x:0,y:0};return{width:i.width+2*e,height:i.height+2*e,x:i.x,y:i.y}},"calculateDimensionsWithPadding"),a=(0,i.__name)((t,e,i,s,r)=>`${t-r} ${e-r} ${i} ${s}`,"createViewBox");t.s(["setupViewPortForSVG",()=>s])},681477,t=>{"use strict";var e=t.i(658295);t.i(991577);var i=t.i(692423),s=(0,e.__name)((t,e)=>{let s;return"sandbox"===e&&(s=(0,i.select)("#i"+t)),("sandbox"===e?(0,i.select)(s.nodes()[0].contentDocument.body):(0,i.select)("body")).select(`[id="${t}"]`)},"getDiagramElement");t.s(["getDiagramElement",()=>s])},552483,853282,370473,45365,57030,657623,778031,461210,t=>{"use strict";var e=t.i(862511);t.s(["constant",()=>e.default],853282);var e=e,i=t.i(83689),i=i,s=t.i(826054),s=s,r=t.i(690919);t.s(["filter",()=>r.default],370473);var r=r,a=t.i(775949),a=a,n=t.i(413759);t.s(["each",()=>n.default],45365);var n=n;let o=function(t){return void 0===t};t.s(["isUndefined",0,o],57030);var l=t.i(217242),d=t.i(468464),c=t.i(385435),h=t.i(229536),u=(0,d.default)(function(t){return(0,c.default)((0,l.default)(t,1,h.default,!0))}),g=t.i(201912),p=s;let f=function(t){var e;return null==t?[]:(e=(0,p.default)(t),(0,g.default)(e,function(e){return t[e]}))};t.s(["values",0,f],657623);var y=t.i(171638);t.s(["reduce",()=>y.default],778031);var y=y;class _{constructor(t={}){this._isDirected=!Object.prototype.hasOwnProperty.call(t,"directed")||t.directed,this._isMultigraph=!!Object.prototype.hasOwnProperty.call(t,"multigraph")&&t.multigraph,this._isCompound=!!Object.prototype.hasOwnProperty.call(t,"compound")&&t.compound,this._label=void 0,this._defaultNodeLabelFn=e.default(void 0),this._defaultEdgeLabelFn=e.default(void 0),this._nodes={},this._isCompound&&(this._parent={},this._children={},this._children["\0"]={}),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 i.default(t)||(t=e.default(t)),this._defaultNodeLabelFn=t,this}nodeCount(){return this._nodeCount}nodes(){return s.default(this._nodes)}sources(){var t=this;return r.default(this.nodes(),function(e){return a.default(t._in[e])})}sinks(){var t=this;return r.default(this.nodes(),function(e){return a.default(t._out[e])})}setNodes(t,e){var i=arguments,s=this;return n.default(t,function(t){i.length>1?s.setNode(t,e):s.setNode(t)}),this}setNode(t,e){return Object.prototype.hasOwnProperty.call(this._nodes,t)?arguments.length>1&&(this._nodes[t]=e):(this._nodes[t]=arguments.length>1?e:this._defaultNodeLabelFn(t),this._isCompound&&(this._parent[t]="\0",this._children[t]={},this._children["\0"][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 e=t=>this.removeEdge(this._edgeObjs[t]);delete this._nodes[t],this._isCompound&&(this._removeFromParentsChildList(t),delete this._parent[t],n.default(this.children(t),t=>{this.setParent(t)}),delete this._children[t]),n.default(s.default(this._in[t]),e),delete this._in[t],delete this._preds[t],n.default(s.default(this._out[t]),e),delete this._out[t],delete this._sucs[t],--this._nodeCount}return this}setParent(t,e){if(!this._isCompound)throw Error("Cannot set parent in a non-compound graph");if(o(e))e="\0";else{e+="";for(var i=e;!o(i);i=this.parent(i))if(i===t)throw Error("Setting "+e+" as parent of "+t+" would create a cycle");this.setNode(e)}return this.setNode(t),this._removeFromParentsChildList(t),this._parent[t]=e,this._children[e][t]=!0,this}_removeFromParentsChildList(t){delete this._children[this._parent[t]][t]}parent(t){if(this._isCompound){var e=this._parent[t];if("\0"!==e)return e}}children(t){if(o(t)&&(t="\0"),this._isCompound){var e=this._children[t];if(e)return s.default(e)}else if("\0"===t)return this.nodes();else if(this.hasNode(t))return[]}predecessors(t){var e=this._preds[t];if(e)return s.default(e)}successors(t){var e=this._sucs[t];if(e)return s.default(e)}neighbors(t){var e=this.predecessors(t);if(e)return u(e,this.successors(t))}isLeaf(t){return 0===(this.isDirected()?this.successors(t):this.neighbors(t)).length}filterNodes(t){var e=new this.constructor({directed:this._isDirected,multigraph:this._isMultigraph,compound:this._isCompound});e.setGraph(this.graph());var i=this;n.default(this._nodes,function(i,s){t(s)&&e.setNode(s,i)}),n.default(this._edgeObjs,function(t){e.hasNode(t.v)&&e.hasNode(t.w)&&e.setEdge(t,i.edge(t))});var s={};return this._isCompound&&n.default(e.nodes(),function(t){e.setParent(t,function t(r){var a=i.parent(r);return void 0===a||e.hasNode(a)?(s[r]=a,a):a in s?s[a]:t(a)}(t))}),e}setDefaultEdgeLabel(t){return i.default(t)||(t=e.default(t)),this._defaultEdgeLabelFn=t,this}edgeCount(){return this._edgeCount}edges(){return f(this._edgeObjs)}setPath(t,e){var i=this,s=arguments;return y.default(t,function(t,r){return s.length>1?i.setEdge(t,r,e):i.setEdge(t,r),r}),this}setEdge(){var t,e,i,s,r=!1,a=arguments[0];"object"==typeof a&&null!==a&&"v"in a?(t=a.v,e=a.w,i=a.name,2==arguments.length&&(s=arguments[1],r=!0)):(t=a,e=arguments[1],i=arguments[3],arguments.length>2&&(s=arguments[2],r=!0)),t=""+t,e=""+e,o(i)||(i=""+i);var n=S(this._isDirected,t,e,i);if(Object.prototype.hasOwnProperty.call(this._edgeLabels,n))return r&&(this._edgeLabels[n]=s),this;if(!o(i)&&!this._isMultigraph)throw Error("Cannot set a named edge when isMultigraph = false");this.setNode(t),this.setNode(e),this._edgeLabels[n]=r?s:this._defaultEdgeLabelFn(t,e,i);var l=function(t,e,i,s){var r=""+e,a=""+i;if(!t&&r>a){var n=r;r=a,a=n}var o={v:r,w:a};return s&&(o.name=s),o}(this._isDirected,t,e,i);return t=l.v,e=l.w,Object.freeze(l),this._edgeObjs[n]=l,m(this._preds[e],t),m(this._sucs[t],e),this._in[e][n]=l,this._out[t][n]=l,this._edgeCount++,this}edge(t,e,i){var s=1==arguments.length?C(this._isDirected,arguments[0]):S(this._isDirected,t,e,i);return this._edgeLabels[s]}hasEdge(t,e,i){var s=1==arguments.length?C(this._isDirected,arguments[0]):S(this._isDirected,t,e,i);return Object.prototype.hasOwnProperty.call(this._edgeLabels,s)}removeEdge(t,e,i){var s=1==arguments.length?C(this._isDirected,arguments[0]):S(this._isDirected,t,e,i),r=this._edgeObjs[s];return r&&(t=r.v,e=r.w,delete this._edgeLabels[s],delete this._edgeObjs[s],b(this._preds[e],t),b(this._sucs[t],e),delete this._in[e][s],delete this._out[t][s],this._edgeCount--),this}inEdges(t,e){var i=this._in[t];if(i){var s=f(i);return e?r.default(s,function(t){return t.v===e}):s}}outEdges(t,e){var i=this._out[t];if(i){var s=f(i);return e?r.default(s,function(t){return t.w===e}):s}}nodeEdges(t,e){var i=this.inEdges(t,e);if(i)return i.concat(this.outEdges(t,e))}}function m(t,e){t[e]?t[e]++:t[e]=1}function b(t,e){--t[e]||delete t[e]}function S(t,e,i,s){var r=""+e,a=""+i;if(!t&&r>a){var n=r;r=a,a=n}return r+"\x01"+a+"\x01"+(o(s)?"\0":s)}function C(t,e){return S(t,e.v,e.w,e.name)}_.prototype._nodeCount=0,_.prototype._edgeCount=0,t.s(["Graph",()=>_],461210),t.s([],552483)},849218,t=>{"use strict";var e=t.i(301685),i=t.i(296668),s=t.i(922523),r=t.i(104366),a=t.i(826054),n=t.i(365218),o=t.i(832726),l=t.i(920750),d=t.i(416236),c=t.i(166534),h=t.i(750920),u=t.i(9209),g=Object.getOwnPropertySymbols?function(t){for(var e=[];t;)(0,c.default)(e,(0,d.default)(t)),t=(0,h.default)(t);return e}:u.default,p=t.i(502890),f=t.i(921777);let y=function(t){return(0,f.default)(t,n.default,g)};var _=t.i(493405),m=Object.prototype.hasOwnProperty;let b=function(t){var e=t.length,i=new t.constructor(e);return e&&"string"==typeof t[0]&&m.call(t,"index")&&(i.index=t.index,i.input=t.input),i};var S=t.i(126885);let C=function(t,e){var i=e?(0,S.default)(t.buffer):t.buffer;return new t.constructor(i,t.byteOffset,t.byteLength)};var x=/\w*$/;let v=function(t){var e=new t.constructor(t.source,x.exec(t));return e.lastIndex=t.lastIndex,e};var E=t.i(476238),T=E.default?E.default.prototype:void 0,k=T?T.valueOf:void 0,D=t.i(278883);let w=function(t,e,i){var s=t.constructor;switch(e){case"[object ArrayBuffer]":return(0,S.default)(t);case"[object Boolean]":case"[object Date]":return new s(+t);case"[object DataView]":return C(t,i);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return(0,D.default)(t,i);case"[object Map]":case"[object Set]":return new s;case"[object Number]":case"[object String]":return new s(t);case"[object RegExp]":return v(t);case"[object Symbol]":return k?Object(k.call(t)):{}}};var A=t.i(971527),L=t.i(494878),$=t.i(215529),I=t.i(924904),N=t.i(568648),O=t.i(175995),B=O.default&&O.default.isMap,j=B?(0,N.default)(B):function(t){return(0,I.default)(t)&&"[object Map]"==(0,_.default)(t)},R=t.i(791947),P=O.default&&O.default.isSet,F=P?(0,N.default)(P):function(t){return(0,I.default)(t)&&"[object Set]"==(0,_.default)(t)},M="[object Arguments]",G="[object Function]",z="[object Object]",U={};U[M]=U["[object Array]"]=U["[object ArrayBuffer]"]=U["[object DataView]"]=U["[object Boolean]"]=U["[object Date]"]=U["[object Float32Array]"]=U["[object Float64Array]"]=U["[object Int8Array]"]=U["[object Int16Array]"]=U["[object Int32Array]"]=U["[object Map]"]=U["[object Number]"]=U[z]=U["[object RegExp]"]=U["[object Set]"]=U["[object String]"]=U["[object Symbol]"]=U["[object Uint8Array]"]=U["[object Uint8ClampedArray]"]=U["[object Uint16Array]"]=U["[object Uint32Array]"]=!0,U["[object Error]"]=U[G]=U["[object WeakMap]"]=!1,t.s(["default",0,function t(c,h,u,f,m,S){var C,x=1&h,v=2&h,E=4&h;if(u&&(C=m?u(c,f,m,S):u(c)),void 0!==C)return C;if(!(0,R.default)(c))return c;var T=(0,L.default)(c);if(T){if(C=b(c),!x)return(0,l.default)(c,C)}else{var k,D,I,N,O=(0,_.default)(c),B=O==G||"[object GeneratorFunction]"==O;if((0,$.default)(c))return(0,o.default)(c,x);if(O==z||O==M||B&&!m){if(C=v||B?{}:(0,A.default)(c),!x)return v?(D=(k=C)&&(0,r.default)(c,(0,n.default)(c),k),(0,r.default)(c,g(c),D)):(N=(I=C)&&(0,r.default)(c,(0,a.default)(c),I),(0,r.default)(c,(0,d.default)(c),N))}else{if(!U[O])return m?c:{};C=w(c,O,x)}}S||(S=new e.default);var P=S.get(c);if(P)return P;S.set(c,C),F(c)?c.forEach(function(e){C.add(t(e,h,u,e,c,S))}):j(c)&&c.forEach(function(e,i){C.set(i,t(e,h,u,i,c,S))});var Y=E?v?y:p.default:v?n.default:a.default,H=T?void 0:Y(c);return(0,i.default)(H||c,function(e,i){H&&(e=c[i=e]),(0,s.default)(C,i,t(e,h,u,i,c,S))}),C}],849218)},52634,t=>{"use strict";var e=t.i(681477),i=t.i(718445),s=t.i(2318),r=t.i(944836),a=t.i(459721),n=t.i(658295),o=function(){var t=(0,n.__name)(function(t,e,i,s){for(i=i||{},s=t.length;s--;i[t[s]]=e);return i},"o"),e=[1,2],i=[1,3],s=[1,4],r=[2,4],a=[1,9],o=[1,11],l=[1,16],d=[1,17],c=[1,18],h=[1,19],u=[1,33],g=[1,20],p=[1,21],f=[1,22],y=[1,23],_=[1,24],m=[1,26],b=[1,27],S=[1,28],C=[1,29],x=[1,30],v=[1,31],E=[1,32],T=[1,35],k=[1,36],D=[1,37],w=[1,38],A=[1,34],L=[1,4,5,16,17,19,21,22,24,25,26,27,28,29,33,35,37,38,41,45,48,51,52,53,54,57],$=[1,4,5,14,15,16,17,19,21,22,24,25,26,27,28,29,33,35,37,38,39,40,41,45,48,51,52,53,54,57],I=[4,5,16,17,19,21,22,24,25,26,27,28,29,33,35,37,38,41,45,48,51,52,53,54,57],N={trace:(0,n.__name)(function(){},"trace"),yy:{},symbols_:{error:2,start:3,SPACE:4,NL:5,SD:6,document:7,line:8,statement:9,classDefStatement:10,styleStatement:11,cssClassStatement:12,idStatement:13,DESCR:14,"-->":15,HIDE_EMPTY:16,scale:17,WIDTH:18,COMPOSIT_STATE:19,STRUCT_START:20,STRUCT_STOP:21,STATE_DESCR:22,AS:23,ID:24,FORK:25,JOIN:26,CHOICE:27,CONCURRENT:28,note:29,notePosition:30,NOTE_TEXT:31,direction:32,acc_title:33,acc_title_value:34,acc_descr:35,acc_descr_value:36,acc_descr_multiline_value:37,CLICK:38,STRING:39,HREF:40,classDef:41,CLASSDEF_ID:42,CLASSDEF_STYLEOPTS:43,DEFAULT:44,style:45,STYLE_IDS:46,STYLEDEF_STYLEOPTS:47,class:48,CLASSENTITY_IDS:49,STYLECLASS:50,direction_tb:51,direction_bt:52,direction_rl:53,direction_lr:54,eol:55,";":56,EDGE_STATE:57,STYLE_SEPARATOR:58,left_of:59,right_of:60,$accept:0,$end:1},terminals_:{2:"error",4:"SPACE",5:"NL",6:"SD",14:"DESCR",15:"-->",16:"HIDE_EMPTY",17:"scale",18:"WIDTH",19:"COMPOSIT_STATE",20:"STRUCT_START",21:"STRUCT_STOP",22:"STATE_DESCR",23:"AS",24:"ID",25:"FORK",26:"JOIN",27:"CHOICE",28:"CONCURRENT",29:"note",31:"NOTE_TEXT",33:"acc_title",34:"acc_title_value",35:"acc_descr",36:"acc_descr_value",37:"acc_descr_multiline_value",38:"CLICK",39:"STRING",40:"HREF",41:"classDef",42:"CLASSDEF_ID",43:"CLASSDEF_STYLEOPTS",44:"DEFAULT",45:"style",46:"STYLE_IDS",47:"STYLEDEF_STYLEOPTS",48:"class",49:"CLASSENTITY_IDS",50:"STYLECLASS",51:"direction_tb",52:"direction_bt",53:"direction_rl",54:"direction_lr",56:";",57:"EDGE_STATE",58:"STYLE_SEPARATOR",59:"left_of",60:"right_of"},productions_:[0,[3,2],[3,2],[3,2],[7,0],[7,2],[8,2],[8,1],[8,1],[9,1],[9,1],[9,1],[9,1],[9,2],[9,3],[9,4],[9,1],[9,2],[9,1],[9,4],[9,3],[9,6],[9,1],[9,1],[9,1],[9,1],[9,4],[9,4],[9,1],[9,2],[9,2],[9,1],[9,5],[9,5],[10,3],[10,3],[11,3],[12,3],[32,1],[32,1],[32,1],[32,1],[55,1],[55,1],[13,1],[13,1],[13,3],[13,3],[30,1],[30,1]],performAction:(0,n.__name)(function(t,e,i,s,r,a,n){var o=a.length-1;switch(r){case 3:return s.setRootDoc(a[o]),a[o];case 4:this.$=[];break;case 5:"nl"!=a[o]&&(a[o-1].push(a[o]),this.$=a[o-1]);break;case 6:case 7:case 12:this.$=a[o];break;case 8:this.$="nl";break;case 13:let l=a[o-1];l.description=s.trimColon(a[o]),this.$=l;break;case 14:this.$={stmt:"relation",state1:a[o-2],state2:a[o]};break;case 15:let d=s.trimColon(a[o]);this.$={stmt:"relation",state1:a[o-3],state2:a[o-1],description:d};break;case 19:this.$={stmt:"state",id:a[o-3],type:"default",description:"",doc:a[o-1]};break;case 20:var c=a[o],h=a[o-2].trim();if(a[o].match(":")){var u=a[o].split(":");c=u[0],h=[h,u[1]]}this.$={stmt:"state",id:c,type:"default",description:h};break;case 21:this.$={stmt:"state",id:a[o-3],type:"default",description:a[o-5],doc:a[o-1]};break;case 22:this.$={stmt:"state",id:a[o],type:"fork"};break;case 23:this.$={stmt:"state",id:a[o],type:"join"};break;case 24:this.$={stmt:"state",id:a[o],type:"choice"};break;case 25:this.$={stmt:"state",id:s.getDividerId(),type:"divider"};break;case 26:this.$={stmt:"state",id:a[o-1].trim(),note:{position:a[o-2].trim(),text:a[o].trim()}};break;case 29:this.$=a[o].trim(),s.setAccTitle(this.$);break;case 30:case 31:this.$=a[o].trim(),s.setAccDescription(this.$);break;case 32:this.$={stmt:"click",id:a[o-3],url:a[o-2],tooltip:a[o-1]};break;case 33:this.$={stmt:"click",id:a[o-3],url:a[o-1],tooltip:""};break;case 34:case 35:this.$={stmt:"classDef",id:a[o-1].trim(),classes:a[o].trim()};break;case 36:this.$={stmt:"style",id:a[o-1].trim(),styleClass:a[o].trim()};break;case 37:this.$={stmt:"applyClass",id:a[o-1].trim(),styleClass:a[o].trim()};break;case 38:s.setDirection("TB"),this.$={stmt:"dir",value:"TB"};break;case 39:s.setDirection("BT"),this.$={stmt:"dir",value:"BT"};break;case 40:s.setDirection("RL"),this.$={stmt:"dir",value:"RL"};break;case 41:s.setDirection("LR"),this.$={stmt:"dir",value:"LR"};break;case 44:case 45:this.$={stmt:"state",id:a[o].trim(),type:"default",description:""};break;case 46:case 47:this.$={stmt:"state",id:a[o-2].trim(),classes:[a[o].trim()],type:"default",description:""}}},"anonymous"),table:[{3:1,4:e,5:i,6:s},{1:[3]},{3:5,4:e,5:i,6:s},{3:6,4:e,5:i,6:s},t([1,4,5,16,17,19,22,24,25,26,27,28,29,33,35,37,38,41,45,48,51,52,53,54,57],r,{7:7}),{1:[2,1]},{1:[2,2]},{1:[2,3],4:a,5:o,8:8,9:10,10:12,11:13,12:14,13:15,16:l,17:d,19:c,22:h,24:u,25:g,26:p,27:f,28:y,29:_,32:25,33:m,35:b,37:S,38:C,41:x,45:v,48:E,51:T,52:k,53:D,54:w,57:A},t(L,[2,5]),{9:39,10:12,11:13,12:14,13:15,16:l,17:d,19:c,22:h,24:u,25:g,26:p,27:f,28:y,29:_,32:25,33:m,35:b,37:S,38:C,41:x,45:v,48:E,51:T,52:k,53:D,54:w,57:A},t(L,[2,7]),t(L,[2,8]),t(L,[2,9]),t(L,[2,10]),t(L,[2,11]),t(L,[2,12],{14:[1,40],15:[1,41]}),t(L,[2,16]),{18:[1,42]},t(L,[2,18],{20:[1,43]}),{23:[1,44]},t(L,[2,22]),t(L,[2,23]),t(L,[2,24]),t(L,[2,25]),{30:45,31:[1,46],59:[1,47],60:[1,48]},t(L,[2,28]),{34:[1,49]},{36:[1,50]},t(L,[2,31]),{13:51,24:u,57:A},{42:[1,52],44:[1,53]},{46:[1,54]},{49:[1,55]},t($,[2,44],{58:[1,56]}),t($,[2,45],{58:[1,57]}),t(L,[2,38]),t(L,[2,39]),t(L,[2,40]),t(L,[2,41]),t(L,[2,6]),t(L,[2,13]),{13:58,24:u,57:A},t(L,[2,17]),t(I,r,{7:59}),{24:[1,60]},{24:[1,61]},{23:[1,62]},{24:[2,48]},{24:[2,49]},t(L,[2,29]),t(L,[2,30]),{39:[1,63],40:[1,64]},{43:[1,65]},{43:[1,66]},{47:[1,67]},{50:[1,68]},{24:[1,69]},{24:[1,70]},t(L,[2,14],{14:[1,71]}),{4:a,5:o,8:8,9:10,10:12,11:13,12:14,13:15,16:l,17:d,19:c,21:[1,72],22:h,24:u,25:g,26:p,27:f,28:y,29:_,32:25,33:m,35:b,37:S,38:C,41:x,45:v,48:E,51:T,52:k,53:D,54:w,57:A},t(L,[2,20],{20:[1,73]}),{31:[1,74]},{24:[1,75]},{39:[1,76]},{39:[1,77]},t(L,[2,34]),t(L,[2,35]),t(L,[2,36]),t(L,[2,37]),t($,[2,46]),t($,[2,47]),t(L,[2,15]),t(L,[2,19]),t(I,r,{7:78}),t(L,[2,26]),t(L,[2,27]),{5:[1,79]},{5:[1,80]},{4:a,5:o,8:8,9:10,10:12,11:13,12:14,13:15,16:l,17:d,19:c,21:[1,81],22:h,24:u,25:g,26:p,27:f,28:y,29:_,32:25,33:m,35:b,37:S,38:C,41:x,45:v,48:E,51:T,52:k,53:D,54:w,57:A},t(L,[2,32]),t(L,[2,33]),t(L,[2,21])],defaultActions:{5:[2,1],6:[2,2],47:[2,48],48:[2,49]},parseError:(0,n.__name)(function(t,e){if(e.recoverable)this.trace(t);else{var i=Error(t);throw i.hash=e,i}},"parseError"),parse:(0,n.__name)(function(t){var e=this,i=[0],s=[],r=[null],a=[],o=this.table,l="",d=0,c=0,h=0,u=a.slice.call(arguments,1),g=Object.create(this.lexer),p={};for(var f in this.yy)Object.prototype.hasOwnProperty.call(this.yy,f)&&(p[f]=this.yy[f]);g.setInput(t,p),p.lexer=g,p.parser=this,void 0===g.yylloc&&(g.yylloc={});var y=g.yylloc;a.push(y);var _=g.options&&g.options.ranges;function m(){var t;return"number"!=typeof(t=s.pop()||g.lex()||1)&&(t instanceof Array&&(t=(s=t).pop()),t=e.symbols_[t]||t),t}"function"==typeof p.parseError?this.parseError=p.parseError:this.parseError=Object.getPrototypeOf(this).parseError,(0,n.__name)(function(t){i.length=i.length-2*t,r.length=r.length-t,a.length=a.length-t},"popStack"),(0,n.__name)(m,"lex");for(var b,S,C,x,v,E,T,k,D,w={};;){if(C=i[i.length-1],this.defaultActions[C]?x=this.defaultActions[C]:(null==b&&(b=m()),x=o[C]&&o[C][b]),void 0===x||!x.length||!x[0]){var A="";for(E in D=[],o[C])this.terminals_[E]&&E>2&&D.push("'"+this.terminals_[E]+"'");A=g.showPosition?"Parse error on line "+(d+1)+":\n"+g.showPosition()+"\nExpecting "+D.join(", ")+", got '"+(this.terminals_[b]||b)+"'":"Parse error on line "+(d+1)+": Unexpected "+(1==b?"end of input":"'"+(this.terminals_[b]||b)+"'"),this.parseError(A,{text:g.match,token:this.terminals_[b]||b,line:g.yylineno,loc:y,expected:D})}if(x[0]instanceof Array&&x.length>1)throw Error("Parse Error: multiple actions possible at state: "+C+", token: "+b);switch(x[0]){case 1:i.push(b),r.push(g.yytext),a.push(g.yylloc),i.push(x[1]),b=null,S?(b=S,S=null):(c=g.yyleng,l=g.yytext,d=g.yylineno,y=g.yylloc,h>0&&h--);break;case 2:if(T=this.productions_[x[1]][1],w.$=r[r.length-T],w._$={first_line:a[a.length-(T||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(T||1)].first_column,last_column:a[a.length-1].last_column},_&&(w._$.range=[a[a.length-(T||1)].range[0],a[a.length-1].range[1]]),void 0!==(v=this.performAction.apply(w,[l,c,d,p,x[1],r,a].concat(u))))return v;T&&(i=i.slice(0,-1*T*2),r=r.slice(0,-1*T),a=a.slice(0,-1*T)),i.push(this.productions_[x[1]][0]),r.push(w.$),a.push(w._$),k=o[i[i.length-2]][i[i.length-1]],i.push(k);break;case 3:return!0}}return!0},"parse")};function O(){this.yy={}}return N.lexer={EOF:1,parseError:(0,n.__name)(function(t,e){if(this.yy.parser)this.yy.parser.parseError(t,e);else throw Error(t)},"parseError"),setInput:(0,n.__name)(function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:(0,n.__name)(function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},"input"),unput:(0,n.__name)(function(t){var e=t.length,i=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var s=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),i.length-1&&(this.yylineno-=i.length-1);var r=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:i?(i.length===s.length?this.yylloc.first_column:0)+s[s.length-i.length].length-i[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[r[0],r[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},"unput"),more:(0,n.__name)(function(){return this._more=!0,this},"more"),reject:(0,n.__name)(function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},"reject"),less:(0,n.__name)(function(t){this.unput(this.match.slice(t))},"less"),pastInput:(0,n.__name)(function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:(0,n.__name)(function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:(0,n.__name)(function(){var t=this.pastInput(),e=Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},"showPosition"),test_match:(0,n.__name)(function(t,e){var i,s,r;if(this.options.backtrack_lexer&&(r={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(r.yylloc.range=this.yylloc.range.slice(0))),(s=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=s.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:s?s[s.length-1].length-s[s.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],i=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),i)return i;if(this._backtrack)for(var a in r)this[a]=r[a];return!1},"test_match"),next:(0,n.__name)(function(){if(this.done)return this.EOF;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var t,e,i,s,r=this._currentRules(),a=0;a<r.length;a++)if((i=this._input.match(this.rules[r[a]]))&&(!e||i[0].length>e[0].length)){if(e=i,s=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(i,r[a])))return t;if(!this._backtrack)return!1;e=!1;continue}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,r[s]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:(0,n.__name)(function(){var t=this.next();return t||this.lex()},"lex"),begin:(0,n.__name)(function(t){this.conditionStack.push(t)},"begin"),popState:(0,n.__name)(function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:(0,n.__name)(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:(0,n.__name)(function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},"topState"),pushState:(0,n.__name)(function(t){this.begin(t)},"pushState"),stateStackSize:(0,n.__name)(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:(0,n.__name)(function(t,e,i,s){switch(i){case 0:return 38;case 1:return 40;case 2:return 39;case 3:return 44;case 4:case 45:return 51;case 5:case 46:return 52;case 6:case 47:return 53;case 7:case 48:return 54;case 8:case 9:case 11:case 12:case 13:case 14:case 57:case 59:case 65:break;case 10:case 80:return 5;case 15:case 35:return this.pushState("SCALE"),17;case 16:case 36:return 18;case 17:case 23:case 37:case 52:case 55:this.popState();break;case 18:return this.begin("acc_title"),33;case 19:return this.popState(),"acc_title_value";case 20:return this.begin("acc_descr"),35;case 21:return this.popState(),"acc_descr_value";case 22:this.begin("acc_descr_multiline");break;case 24:return"acc_descr_multiline_value";case 25:return this.pushState("CLASSDEF"),41;case 26:return this.popState(),this.pushState("CLASSDEFID"),"DEFAULT_CLASSDEF_ID";case 27:return this.popState(),this.pushState("CLASSDEFID"),42;case 28:return this.popState(),43;case 29:return this.pushState("CLASS"),48;case 30:return this.popState(),this.pushState("CLASS_STYLE"),49;case 31:return this.popState(),50;case 32:return this.pushState("STYLE"),45;case 33:return this.popState(),this.pushState("STYLEDEF_STYLES"),46;case 34:return this.popState(),47;case 38:this.pushState("STATE");break;case 39:case 42:return this.popState(),e.yytext=e.yytext.slice(0,-8).trim(),25;case 40:case 43:return this.popState(),e.yytext=e.yytext.slice(0,-8).trim(),26;case 41:case 44:return this.popState(),e.yytext=e.yytext.slice(0,-10).trim(),27;case 49:this.pushState("STATE_STRING");break;case 50:return this.pushState("STATE_ID"),"AS";case 51:case 67:return this.popState(),"ID";case 53:return"STATE_DESCR";case 54:return 19;case 56:return this.popState(),this.pushState("struct"),20;case 58:return this.popState(),21;case 60:return this.begin("NOTE"),29;case 61:return this.popState(),this.pushState("NOTE_ID"),59;case 62:return this.popState(),this.pushState("NOTE_ID"),60;case 63:this.popState(),this.pushState("FLOATING_NOTE");break;case 64:return this.popState(),this.pushState("FLOATING_NOTE_ID"),"AS";case 66:return"NOTE_TEXT";case 68:return this.popState(),this.pushState("NOTE_TEXT"),24;case 69:return this.popState(),e.yytext=e.yytext.substr(2).trim(),31;case 70:return this.popState(),e.yytext=e.yytext.slice(0,-8).trim(),31;case 71:case 72:return 6;case 73:return 16;case 74:return 57;case 75:return 24;case 76:return e.yytext=e.yytext.trim(),14;case 77:return 15;case 78:return 28;case 79:return 58;case 81:return"INVALID"}},"anonymous"),rules:[/^(?:click\b)/i,/^(?:href\b)/i,/^(?:"[^"]*")/i,/^(?:default\b)/i,/^(?:.*direction\s+TB[^\n]*)/i,/^(?:.*direction\s+BT[^\n]*)/i,/^(?:.*direction\s+RL[^\n]*)/i,/^(?:.*direction\s+LR[^\n]*)/i,/^(?:%%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n]+)/i,/^(?:[\s]+)/i,/^(?:((?!\n)\s)+)/i,/^(?:#[^\n]*)/i,/^(?:%[^\n]*)/i,/^(?:scale\s+)/i,/^(?:\d+)/i,/^(?:\s+width\b)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:classDef\s+)/i,/^(?:DEFAULT\s+)/i,/^(?:\w+\s+)/i,/^(?:[^\n]*)/i,/^(?:class\s+)/i,/^(?:(\w+)+((,\s*\w+)*))/i,/^(?:[^\n]*)/i,/^(?:style\s+)/i,/^(?:[\w,]+\s+)/i,/^(?:[^\n]*)/i,/^(?:scale\s+)/i,/^(?:\d+)/i,/^(?:\s+width\b)/i,/^(?:state\s+)/i,/^(?:.*<<fork>>)/i,/^(?:.*<<join>>)/i,/^(?:.*<<choice>>)/i,/^(?:.*\[\[fork\]\])/i,/^(?:.*\[\[join\]\])/i,/^(?:.*\[\[choice\]\])/i,/^(?:.*direction\s+TB[^\n]*)/i,/^(?:.*direction\s+BT[^\n]*)/i,/^(?:.*direction\s+RL[^\n]*)/i,/^(?:.*direction\s+LR[^\n]*)/i,/^(?:["])/i,/^(?:\s*as\s+)/i,/^(?:[^\n\{]*)/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[^\n\s\{]+)/i,/^(?:\n)/i,/^(?:\{)/i,/^(?:%%(?!\{)[^\n]*)/i,/^(?:\})/i,/^(?:[\n])/i,/^(?:note\s+)/i,/^(?:left of\b)/i,/^(?:right of\b)/i,/^(?:")/i,/^(?:\s*as\s*)/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[^\n]*)/i,/^(?:\s*[^:\n\s\-]+)/i,/^(?:\s*:[^:\n;]+)/i,/^(?:[\s\S]*?end note\b)/i,/^(?:stateDiagram\s+)/i,/^(?:stateDiagram-v2\s+)/i,/^(?:hide empty description\b)/i,/^(?:\[\*\])/i,/^(?:[^:\n\s\-\{]+)/i,/^(?:\s*:[^:\n;]+)/i,/^(?:-->)/i,/^(?:--)/i,/^(?::::)/i,/^(?:$)/i,/^(?:.)/i],conditions:{LINE:{rules:[12,13],inclusive:!1},struct:{rules:[12,13,25,29,32,38,45,46,47,48,57,58,59,60,74,75,76,77,78],inclusive:!1},FLOATING_NOTE_ID:{rules:[67],inclusive:!1},FLOATING_NOTE:{rules:[64,65,66],inclusive:!1},NOTE_TEXT:{rules:[69,70],inclusive:!1},NOTE_ID:{rules:[68],inclusive:!1},NOTE:{rules:[61,62,63],inclusive:!1},STYLEDEF_STYLEOPTS:{rules:[],inclusive:!1},STYLEDEF_STYLES:{rules:[34],inclusive:!1},STYLE_IDS:{rules:[],inclusive:!1},STYLE:{rules:[33],inclusive:!1},CLASS_STYLE:{rules:[31],inclusive:!1},CLASS:{rules:[30],inclusive:!1},CLASSDEFID:{rules:[28],inclusive:!1},CLASSDEF:{rules:[26,27],inclusive:!1},acc_descr_multiline:{rules:[23,24],inclusive:!1},acc_descr:{rules:[21],inclusive:!1},acc_title:{rules:[19],inclusive:!1},SCALE:{rules:[16,17,36,37],inclusive:!1},ALIAS:{rules:[],inclusive:!1},STATE_ID:{rules:[51],inclusive:!1},STATE_STRING:{rules:[52,53],inclusive:!1},FORK_STATE:{rules:[],inclusive:!1},STATE:{rules:[12,13,39,40,41,42,43,44,49,50,54,55,56],inclusive:!1},ID:{rules:[12,13],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,15,18,20,22,25,29,32,35,38,56,60,71,72,73,74,75,76,77,79,80,81],inclusive:!0}}},(0,n.__name)(O,"Parser"),O.prototype=N,N.Parser=O,new O}();o.parser=o;var l="TB",d="state",c="root",h="relation",u="default",g="divider",p="fill:none",f="fill: #333",y="text",_="normal",m="rect",b="rectWithTitle",S="divider",C="roundedWithTitle",x="statediagram",v=`${x}-state`,E="transition",T=`${E} note-edge`,k=`${x}-note`,D=`${x}-cluster`,w=`${x}-cluster-alt`,A="parent",L="note",$="----",I=`${$}${L}`,N=`${$}${A}`,O=(0,n.__name)((t,e=l)=>{if(!t.doc)return e;let i=e;for(let e of t.doc)"dir"===e.stmt&&(i=e.value);return i},"getDir"),B={getClasses:(0,n.__name)(function(t,e){return e.db.getClasses()},"getClasses"),draw:(0,n.__name)(async function(t,o,l,d){n.log.info("REF0:"),n.log.info("Drawing state diagram (v2)",o);let{securityLevel:c,state:h,layout:u}=(0,a.getConfig2)();d.db.extract(d.db.getRootDocV2());let g=d.db.getData(),p=(0,e.getDiagramElement)(o,c);g.type=d.type,g.layoutAlgorithm=u,g.nodeSpacing=h?.nodeSpacing||50,g.rankSpacing=h?.rankSpacing||50,g.markers=["barb"],g.diagramId=o,await (0,s.render)(g,p);try{("function"==typeof d.db.getLinks?d.db.getLinks():new Map).forEach((t,e)=>{let i,s="string"==typeof e?e:"string"==typeof e?.id?e.id:"";if(!s)return void n.log.warn("⚠️ Invalid or missing stateId from key:",JSON.stringify(e));let r=p.node()?.querySelectorAll("g");if(r?.forEach(t=>{t.textContent?.trim()===s&&(i=t)}),!i)return void n.log.warn("⚠️ Could not find node matching text:",s);let a=i.parentNode;if(!a)return void n.log.warn("⚠️ Node has no parent, cannot wrap:",s);let o=document.createElementNS("http://www.w3.org/2000/svg","a"),l=t.url.replace(/^"+|"+$/g,"");if(o.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",l),o.setAttribute("target","_blank"),t.tooltip){let e=t.tooltip.replace(/^"+|"+$/g,"");o.setAttribute("title",e)}a.replaceChild(o,i),o.appendChild(i),n.log.info("🔗 Wrapped node in <a> tag for:",s,t.url)})}catch(t){n.log.error("❌ Error injecting clickable links:",t)}r.utils_default.insertTitle(p,"statediagramTitleText",h?.titleTopMargin??25,d.db.getDiagramTitle()),(0,i.setupViewPortForSVG)(p,8,x,h?.useMaxWidth??!0)},"draw"),getDir:O},j=new Map,R=0;function P(t="",e=0,i="",s=$){let r=null!==i&&i.length>0?`${s}${i}`:"";return`state-${t}${r}-${e}`}(0,n.__name)(P,"stateDomId");var F=(0,n.__name)((t,e,i,s,r,o,l,c)=>{n.log.trace("items",e),e.forEach(e=>{switch(e.stmt){case d:case u:Y(t,e,i,s,r,o,l,c);break;case h:{Y(t,e.state1,i,s,r,o,l,c),Y(t,e.state2,i,s,r,o,l,c);let n={id:"edge"+R,start:e.state1.id,end:e.state2.id,arrowhead:"normal",arrowTypeEnd:"arrow_barb",style:p,labelStyle:"",label:a.common_default.sanitizeText(e.description??"",(0,a.getConfig2)()),arrowheadStyle:f,labelpos:"c",labelType:y,thickness:_,classes:E,look:l};r.push(n),R++}}})},"setupDoc"),M=(0,n.__name)((t,e=l)=>{let i=e;if(t.doc)for(let e of t.doc)"dir"===e.stmt&&(i=e.value);return i},"getDir");function G(t,e,i){if(!e.id||"</join></fork>"===e.id||"</choice>"===e.id)return;e.cssClasses&&(Array.isArray(e.cssCompiledStyles)||(e.cssCompiledStyles=[]),e.cssClasses.split(" ").forEach(t=>{let s=i.get(t);s&&(e.cssCompiledStyles=[...e.cssCompiledStyles??[],...s.styles])}));let s=t.find(t=>t.id===e.id);s?Object.assign(s,e):t.push(e)}function z(t){return t?.classes?.join(" ")??""}function U(t){return t?.styles??[]}(0,n.__name)(G,"insertOrUpdateNode"),(0,n.__name)(z,"getClassesFromDbInfo"),(0,n.__name)(U,"getStylesFromDbInfo");var Y=(0,n.__name)((t,e,i,s,r,o,l,d)=>{let c=e.id,h=i.get(c),x=z(h),E=U(h),$=(0,a.getConfig2)();if(n.log.info("dataFetcher parsedItem",e,h,E),"root"!==c){let i=m;!0===e.start?i="stateStart":!1===e.start&&(i="stateEnd"),e.type!==u&&(i=e.type),j.get(c)||j.set(c,{id:c,shape:i,description:a.common_default.sanitizeText(c,$),cssClasses:`${x} ${v}`,cssStyles:E});let h=j.get(c);e.description&&(Array.isArray(h.description)?(h.shape=b,h.description.push(e.description)):h.description?.length&&h.description.length>0?(h.shape=b,h.description===c?h.description=[e.description]:h.description=[h.description,e.description]):(h.shape=m,h.description=e.description),h.description=a.common_default.sanitizeTextOrArray(h.description,$)),h.description?.length===1&&h.shape===b&&("group"===h.type?h.shape=C:h.shape=m),!h.type&&e.doc&&(n.log.info("Setting cluster for XCX",c,M(e)),h.type="group",h.isGroup=!0,h.dir=M(e),h.shape=e.type===g?S:C,h.cssClasses=`${h.cssClasses} ${D} ${o?w:""}`);let O={labelStyle:"",shape:h.shape,label:h.description,cssClasses:h.cssClasses,cssCompiledStyles:[],cssStyles:h.cssStyles,id:c,dir:h.dir,domId:P(c,R),type:h.type,isGroup:"group"===h.type,padding:8,rx:10,ry:10,look:l};if(O.shape===S&&(O.label=""),t&&"root"!==t.id&&(n.log.trace("Setting node ",c," to be child of its parent ",t.id),O.parentId=t.id),O.centerLabel=!0,e.note){let t={labelStyle:"",shape:"note",label:e.note.text,cssClasses:k,cssStyles:[],cssCompiledStyles:[],id:c+I+"-"+R,domId:P(c,R,L),type:h.type,isGroup:"group"===h.type,padding:$.flowchart?.padding,look:l,position:e.note.position},i=c+N,a={labelStyle:"",shape:"noteGroup",label:e.note.text,cssClasses:h.cssClasses,cssStyles:[],id:c+N,domId:P(c,R,A),type:"group",isGroup:!0,padding:16,look:l,position:e.note.position};R++,a.id=i,t.parentId=i,G(s,a,d),G(s,t,d),G(s,O,d);let n=c,o=t.id;"left of"===e.note.position&&(n=t.id,o=c),r.push({id:n+"-"+o,start:n,end:o,arrowhead:"none",arrowTypeEnd:"",style:p,labelStyle:"",classes:T,arrowheadStyle:f,labelpos:"c",labelType:y,thickness:_,look:l})}else G(s,O,d)}e.doc&&(n.log.trace("Adding nodes children "),F(e,e.doc,i,s,r,!o,l,d))},"dataFetcher"),H=(0,n.__name)(()=>{j.clear(),R=0},"reset"),W="start",V="color",X="fill",J=(0,n.__name)(()=>new Map,"newClassesList"),K=(0,n.__name)(()=>({relations:[],states:new Map,documents:{}}),"newDoc"),q=(0,n.__name)(t=>JSON.parse(JSON.stringify(t)),"clone"),Z=class{constructor(t){this.version=t,this.nodes=[],this.edges=[],this.rootDoc=[],this.classes=J(),this.documents={root:K()},this.currentDocument=this.documents.root,this.startEndCount=0,this.dividerCnt=0,this.links=new Map,this.getAccTitle=a.getAccTitle,this.setAccTitle=a.setAccTitle,this.getAccDescription=a.getAccDescription,this.setAccDescription=a.setAccDescription,this.setDiagramTitle=a.setDiagramTitle,this.getDiagramTitle=a.getDiagramTitle,this.clear(),this.setRootDoc=this.setRootDoc.bind(this),this.getDividerId=this.getDividerId.bind(this),this.setDirection=this.setDirection.bind(this),this.trimColon=this.trimColon.bind(this)}static{(0,n.__name)(this,"StateDB")}static{this.relationType={AGGREGATION:0,EXTENSION:1,COMPOSITION:2,DEPENDENCY:3}}extract(t){for(let e of(this.clear(!0),Array.isArray(t)?t:t.doc))switch(e.stmt){case d:this.addState(e.id.trim(),e.type,e.doc,e.description,e.note);break;case h:this.addRelation(e.state1,e.state2,e.description);break;case"classDef":this.addStyleClass(e.id.trim(),e.classes);break;case"style":this.handleStyleDef(e);break;case"applyClass":this.setCssClass(e.id.trim(),e.styleClass);break;case"click":this.addLink(e.id,e.url,e.tooltip)}let e=this.getStates(),i=(0,a.getConfig2)();for(let t of(H(),Y(void 0,this.getRootDocV2(),e,this.nodes,this.edges,!0,i.look,this.classes),this.nodes))if(Array.isArray(t.label)){if(t.description=t.label.slice(1),t.isGroup&&t.description.length>0)throw Error(`Group nodes can only have label. Remove the additional description for node [${t.id}]`);t.label=t.label[0]}}handleStyleDef(t){let e=t.id.trim().split(","),i=t.styleClass.split(",");for(let t of e){let e=this.getState(t);if(!e){let i=t.trim();this.addState(i),e=this.getState(i)}e&&(e.styles=i.map(t=>t.replace(/;/g,"")?.trim()))}}setRootDoc(t){n.log.info("Setting root doc",t),this.rootDoc=t,1===this.version?this.extract(t):this.extract(this.getRootDocV2())}docTranslator(t,e,i){if(e.stmt===h){this.docTranslator(t,e.state1,!0),this.docTranslator(t,e.state2,!1);return}if(e.stmt===d&&("[*]"===e.id?(e.id=t.id+(i?"_start":"_end"),e.start=i):e.id=e.id.trim()),e.stmt!==c&&e.stmt!==d||!e.doc)return;let s=[],a=[];for(let t of e.doc)if(t.type===g){let e=q(t);e.doc=q(a),s.push(e),a=[]}else a.push(t);if(s.length>0&&a.length>0){let t={stmt:d,id:(0,r.generateId)(),type:"divider",doc:q(a)};s.push(q(t)),e.doc=s}e.doc.forEach(t=>this.docTranslator(e,t,!0))}getRootDocV2(){return this.docTranslator({id:c,stmt:c},{id:c,stmt:c,doc:this.rootDoc},!0),{id:c,doc:this.rootDoc}}addState(t,e=u,i,s,r,o,l,c){let h=t?.trim();if(this.currentDocument.states.has(h)){let t=this.currentDocument.states.get(h);if(!t)throw Error(`State not found: ${h}`);t.doc||(t.doc=i),t.type||(t.type=e)}else n.log.info("Adding state ",h,s),this.currentDocument.states.set(h,{stmt:d,id:h,descriptions:[],type:e,doc:i,note:r,classes:[],styles:[],textStyles:[]});if(s&&(n.log.info("Setting state description",h,s),(Array.isArray(s)?s:[s]).forEach(t=>this.addDescription(h,t.trim()))),r){let t=this.currentDocument.states.get(h);if(!t)throw Error(`State not found: ${h}`);t.note=r,t.note.text=a.common_default.sanitizeText(t.note.text,(0,a.getConfig2)())}o&&(n.log.info("Setting state classes",h,o),(Array.isArray(o)?o:[o]).forEach(t=>this.setCssClass(h,t.trim()))),l&&(n.log.info("Setting state styles",h,l),(Array.isArray(l)?l:[l]).forEach(t=>this.setStyle(h,t.trim()))),c&&(n.log.info("Setting state styles",h,l),(Array.isArray(c)?c:[c]).forEach(t=>this.setTextStyle(h,t.trim())))}clear(t){this.nodes=[],this.edges=[],this.documents={root:K()},this.currentDocument=this.documents.root,this.startEndCount=0,this.classes=J(),t||(this.links=new Map,(0,a.clear)())}getState(t){return this.currentDocument.states.get(t)}getStates(){return this.currentDocument.states}logDocuments(){n.log.info("Documents = ",this.documents)}getRelations(){return this.currentDocument.relations}addLink(t,e,i){this.links.set(t,{url:e,tooltip:i}),n.log.warn("Adding link",t,e,i)}getLinks(){return this.links}startIdIfNeeded(t=""){return"[*]"===t?(this.startEndCount++,`${W}${this.startEndCount}`):t}startTypeIfNeeded(t="",e=u){return"[*]"===t?W:e}endIdIfNeeded(t=""){return"[*]"===t?(this.startEndCount++,`end${this.startEndCount}`):t}endTypeIfNeeded(t="",e=u){return"[*]"===t?"end":e}addRelationObjs(t,e,i=""){let s=this.startIdIfNeeded(t.id.trim()),r=this.startTypeIfNeeded(t.id.trim(),t.type),n=this.startIdIfNeeded(e.id.trim()),o=this.startTypeIfNeeded(e.id.trim(),e.type);this.addState(s,r,t.doc,t.description,t.note,t.classes,t.styles,t.textStyles),this.addState(n,o,e.doc,e.description,e.note,e.classes,e.styles,e.textStyles),this.currentDocument.relations.push({id1:s,id2:n,relationTitle:a.common_default.sanitizeText(i,(0,a.getConfig2)())})}addRelation(t,e,i){if("object"==typeof t&&"object"==typeof e)this.addRelationObjs(t,e,i);else if("string"==typeof t&&"string"==typeof e){let s=this.startIdIfNeeded(t.trim()),r=this.startTypeIfNeeded(t),n=this.endIdIfNeeded(e.trim()),o=this.endTypeIfNeeded(e);this.addState(s,r),this.addState(n,o),this.currentDocument.relations.push({id1:s,id2:n,relationTitle:i?a.common_default.sanitizeText(i,(0,a.getConfig2)()):void 0})}}addDescription(t,e){let i=this.currentDocument.states.get(t),s=e.startsWith(":")?e.replace(":","").trim():e;i?.descriptions?.push(a.common_default.sanitizeText(s,(0,a.getConfig2)()))}cleanupLabel(t){return t.startsWith(":")?t.slice(2).trim():t.trim()}getDividerId(){return this.dividerCnt++,`divider-id-${this.dividerCnt}`}addStyleClass(t,e=""){this.classes.has(t)||this.classes.set(t,{id:t,styles:[],textStyles:[]});let i=this.classes.get(t);e&&i&&e.split(",").forEach(t=>{let e=t.replace(/([^;]*);/,"$1").trim();if(RegExp(V).exec(t)){let t=e.replace(X,"bgFill").replace(V,X);i.textStyles.push(t)}i.styles.push(e)})}getClasses(){return this.classes}setCssClass(t,e){t.split(",").forEach(t=>{let i=this.getState(t);if(!i){let e=t.trim();this.addState(e),i=this.getState(e)}i?.classes?.push(e)})}setStyle(t,e){this.getState(t)?.styles?.push(e)}setTextStyle(t,e){this.getState(t)?.textStyles?.push(e)}getDirectionStatement(){return this.rootDoc.find(t=>"dir"===t.stmt)}getDirection(){return this.getDirectionStatement()?.value??"TB"}setDirection(t){let e=this.getDirectionStatement();e?e.value=t:this.rootDoc.unshift({stmt:"dir",value:t})}trimColon(t){return t.startsWith(":")?t.slice(1).trim():t.trim()}getData(){let t=(0,a.getConfig2)();return{nodes:this.nodes,edges:this.edges,other:{},config:t,direction:O(this.getRootDocV2())}}getConfig(){return(0,a.getConfig2)().state}},Q=(0,n.__name)(t=>`
2
+ defs #statediagram-barbEnd {
3
+ fill: ${t.transitionColor};
4
+ stroke: ${t.transitionColor};
5
+ }
6
+ g.stateGroup text {
7
+ fill: ${t.nodeBorder};
8
+ stroke: none;
9
+ font-size: 10px;
10
+ }
11
+ g.stateGroup text {
12
+ fill: ${t.textColor};
13
+ stroke: none;
14
+ font-size: 10px;
15
+
16
+ }
17
+ g.stateGroup .state-title {
18
+ font-weight: bolder;
19
+ fill: ${t.stateLabelColor};
20
+ }
21
+
22
+ g.stateGroup rect {
23
+ fill: ${t.mainBkg};
24
+ stroke: ${t.nodeBorder};
25
+ }
26
+
27
+ g.stateGroup line {
28
+ stroke: ${t.lineColor};
29
+ stroke-width: 1;
30
+ }
31
+
32
+ .transition {
33
+ stroke: ${t.transitionColor};
34
+ stroke-width: 1;
35
+ fill: none;
36
+ }
37
+
38
+ .stateGroup .composit {
39
+ fill: ${t.background};
40
+ border-bottom: 1px
41
+ }
42
+
43
+ .stateGroup .alt-composit {
44
+ fill: #e0e0e0;
45
+ border-bottom: 1px
46
+ }
47
+
48
+ .state-note {
49
+ stroke: ${t.noteBorderColor};
50
+ fill: ${t.noteBkgColor};
51
+
52
+ text {
53
+ fill: ${t.noteTextColor};
54
+ stroke: none;
55
+ font-size: 10px;
56
+ }
57
+ }
58
+
59
+ .stateLabel .box {
60
+ stroke: none;
61
+ stroke-width: 0;
62
+ fill: ${t.mainBkg};
63
+ opacity: 0.5;
64
+ }
65
+
66
+ .edgeLabel .label rect {
67
+ fill: ${t.labelBackgroundColor};
68
+ opacity: 0.5;
69
+ }
70
+ .edgeLabel {
71
+ background-color: ${t.edgeLabelBackground};
72
+ p {
73
+ background-color: ${t.edgeLabelBackground};
74
+ }
75
+ rect {
76
+ opacity: 0.5;
77
+ background-color: ${t.edgeLabelBackground};
78
+ fill: ${t.edgeLabelBackground};
79
+ }
80
+ text-align: center;
81
+ }
82
+ .edgeLabel .label text {
83
+ fill: ${t.transitionLabelColor||t.tertiaryTextColor};
84
+ }
85
+ .label div .edgeLabel {
86
+ color: ${t.transitionLabelColor||t.tertiaryTextColor};
87
+ }
88
+
89
+ .stateLabel text {
90
+ fill: ${t.stateLabelColor};
91
+ font-size: 10px;
92
+ font-weight: bold;
93
+ }
94
+
95
+ .node circle.state-start {
96
+ fill: ${t.specialStateColor};
97
+ stroke: ${t.specialStateColor};
98
+ }
99
+
100
+ .node .fork-join {
101
+ fill: ${t.specialStateColor};
102
+ stroke: ${t.specialStateColor};
103
+ }
104
+
105
+ .node circle.state-end {
106
+ fill: ${t.innerEndBackground};
107
+ stroke: ${t.background};
108
+ stroke-width: 1.5
109
+ }
110
+ .end-state-inner {
111
+ fill: ${t.compositeBackground||t.background};
112
+ // stroke: ${t.background};
113
+ stroke-width: 1.5
114
+ }
115
+
116
+ .node rect {
117
+ fill: ${t.stateBkg||t.mainBkg};
118
+ stroke: ${t.stateBorder||t.nodeBorder};
119
+ stroke-width: 1px;
120
+ }
121
+ .node polygon {
122
+ fill: ${t.mainBkg};
123
+ stroke: ${t.stateBorder||t.nodeBorder};;
124
+ stroke-width: 1px;
125
+ }
126
+ #statediagram-barbEnd {
127
+ fill: ${t.lineColor};
128
+ }
129
+
130
+ .statediagram-cluster rect {
131
+ fill: ${t.compositeTitleBackground};
132
+ stroke: ${t.stateBorder||t.nodeBorder};
133
+ stroke-width: 1px;
134
+ }
135
+
136
+ .cluster-label, .nodeLabel {
137
+ color: ${t.stateLabelColor};
138
+ // line-height: 1;
139
+ }
140
+
141
+ .statediagram-cluster rect.outer {
142
+ rx: 5px;
143
+ ry: 5px;
144
+ }
145
+ .statediagram-state .divider {
146
+ stroke: ${t.stateBorder||t.nodeBorder};
147
+ }
148
+
149
+ .statediagram-state .title-state {
150
+ rx: 5px;
151
+ ry: 5px;
152
+ }
153
+ .statediagram-cluster.statediagram-cluster .inner {
154
+ fill: ${t.compositeBackground||t.background};
155
+ }
156
+ .statediagram-cluster.statediagram-cluster-alt .inner {
157
+ fill: ${t.altBackground?t.altBackground:"#efefef"};
158
+ }
159
+
160
+ .statediagram-cluster .inner {
161
+ rx:0;
162
+ ry:0;
163
+ }
164
+
165
+ .statediagram-state rect.basic {
166
+ rx: 5px;
167
+ ry: 5px;
168
+ }
169
+ .statediagram-state rect.divider {
170
+ stroke-dasharray: 10,10;
171
+ fill: ${t.altBackground?t.altBackground:"#efefef"};
172
+ }
173
+
174
+ .note-edge {
175
+ stroke-dasharray: 5;
176
+ }
177
+
178
+ .statediagram-note rect {
179
+ fill: ${t.noteBkgColor};
180
+ stroke: ${t.noteBorderColor};
181
+ stroke-width: 1px;
182
+ rx: 0;
183
+ ry: 0;
184
+ }
185
+ .statediagram-note rect {
186
+ fill: ${t.noteBkgColor};
187
+ stroke: ${t.noteBorderColor};
188
+ stroke-width: 1px;
189
+ rx: 0;
190
+ ry: 0;
191
+ }
192
+
193
+ .statediagram-note text {
194
+ fill: ${t.noteTextColor};
195
+ }
196
+
197
+ .statediagram-note .nodeLabel {
198
+ color: ${t.noteTextColor};
199
+ }
200
+ .statediagram .edgeLabel {
201
+ color: red; // ${t.noteTextColor};
202
+ }
203
+
204
+ #dependencyStart, #dependencyEnd {
205
+ fill: ${t.lineColor};
206
+ stroke: ${t.lineColor};
207
+ stroke-width: 1;
208
+ }
209
+
210
+ .statediagramTitleText {
211
+ text-anchor: middle;
212
+ font-size: 18px;
213
+ fill: ${t.textColor};
214
+ }
215
+ `,"getStyles");t.s(["StateDB",()=>Z,"stateDiagram_default",()=>o,"stateRenderer_v3_unified_default",()=>B,"styles_default",()=>Q])},37189,t=>{"use strict";var e,i=t.i(52634);t.i(681477),t.i(718445),t.i(2318),t.i(401972),t.i(599154),t.i(962485),t.i(679685),t.i(352545),t.i(133055);var s=t.i(944836),r=t.i(459721),a=t.i(658295);t.i(991577);var n=t.i(692423);t.i(349292);var o=t.i(392078);t.i(552483);var l=t.i(461210),d=t.i(358424),c=t.i(352195),h=(0,a.__name)(t=>t.append("circle").attr("class","start-state").attr("r",(0,r.getConfig2)().state.sizeUnit).attr("cx",(0,r.getConfig2)().state.padding+(0,r.getConfig2)().state.sizeUnit).attr("cy",(0,r.getConfig2)().state.padding+(0,r.getConfig2)().state.sizeUnit),"drawStartState"),u=(0,a.__name)(t=>t.append("line").style("stroke","grey").style("stroke-dasharray","3").attr("x1",(0,r.getConfig2)().state.textHeight).attr("class","divider").attr("x2",2*(0,r.getConfig2)().state.textHeight).attr("y1",0).attr("y2",0),"drawDivider"),g=(0,a.__name)((t,e)=>{let i=t.append("text").attr("x",2*(0,r.getConfig2)().state.padding).attr("y",(0,r.getConfig2)().state.textHeight+2*(0,r.getConfig2)().state.padding).attr("font-size",(0,r.getConfig2)().state.fontSize).attr("class","state-title").text(e.id),s=i.node().getBBox();return t.insert("rect",":first-child").attr("x",(0,r.getConfig2)().state.padding).attr("y",(0,r.getConfig2)().state.padding).attr("width",s.width+2*(0,r.getConfig2)().state.padding).attr("height",s.height+2*(0,r.getConfig2)().state.padding).attr("rx",(0,r.getConfig2)().state.radius),i},"drawSimpleState"),p=(0,a.__name)((t,e)=>{let i=(0,a.__name)(function(t,e,i){let s=t.append("tspan").attr("x",2*(0,r.getConfig2)().state.padding).text(e);i||s.attr("dy",(0,r.getConfig2)().state.textHeight)},"addTspan"),s=t.append("text").attr("x",2*(0,r.getConfig2)().state.padding).attr("y",(0,r.getConfig2)().state.textHeight+1.3*(0,r.getConfig2)().state.padding).attr("font-size",(0,r.getConfig2)().state.fontSize).attr("class","state-title").text(e.descriptions[0]).node().getBBox(),n=s.height,o=t.append("text").attr("x",(0,r.getConfig2)().state.padding).attr("y",n+.4*(0,r.getConfig2)().state.padding+(0,r.getConfig2)().state.dividerMargin+(0,r.getConfig2)().state.textHeight).attr("class","state-description"),l=!0,d=!0;e.descriptions.forEach(function(t){l||(i(o,t,d),d=!1),l=!1});let c=t.append("line").attr("x1",(0,r.getConfig2)().state.padding).attr("y1",(0,r.getConfig2)().state.padding+n+(0,r.getConfig2)().state.dividerMargin/2).attr("y2",(0,r.getConfig2)().state.padding+n+(0,r.getConfig2)().state.dividerMargin/2).attr("class","descr-divider"),h=o.node().getBBox(),u=Math.max(h.width,s.width);return c.attr("x2",u+3*(0,r.getConfig2)().state.padding),t.insert("rect",":first-child").attr("x",(0,r.getConfig2)().state.padding).attr("y",(0,r.getConfig2)().state.padding).attr("width",u+2*(0,r.getConfig2)().state.padding).attr("height",h.height+n+2*(0,r.getConfig2)().state.padding).attr("rx",(0,r.getConfig2)().state.radius),t},"drawDescrState"),f=(0,a.__name)((t,e,i)=>{let s,a=(0,r.getConfig2)().state.padding,n=2*(0,r.getConfig2)().state.padding,o=t.node().getBBox(),l=o.width,d=o.x,c=t.append("text").attr("x",0).attr("y",(0,r.getConfig2)().state.titleShift).attr("font-size",(0,r.getConfig2)().state.fontSize).attr("class","state-title").text(e.id),h=c.node().getBBox().width+n,u=Math.max(h,l);u===l&&(u+=n);let g=t.node().getBBox();e.doc,s=d-a,h>l&&(s=(l-u)/2+a),Math.abs(d-g.x)<a&&h>l&&(s=d-(h-l)/2);let p=1-(0,r.getConfig2)().state.textHeight;return t.insert("rect",":first-child").attr("x",s).attr("y",p).attr("class",i?"alt-composit":"composit").attr("width",u).attr("height",g.height+(0,r.getConfig2)().state.textHeight+(0,r.getConfig2)().state.titleShift+1).attr("rx","0"),c.attr("x",s+a),h<=l&&c.attr("x",d+(u-n)/2-h/2+a),t.insert("rect",":first-child").attr("x",s).attr("y",(0,r.getConfig2)().state.titleShift-(0,r.getConfig2)().state.textHeight-(0,r.getConfig2)().state.padding).attr("width",u).attr("height",3*(0,r.getConfig2)().state.textHeight).attr("rx",(0,r.getConfig2)().state.radius),t.insert("rect",":first-child").attr("x",s).attr("y",(0,r.getConfig2)().state.titleShift-(0,r.getConfig2)().state.textHeight-(0,r.getConfig2)().state.padding).attr("width",u).attr("height",g.height+3+2*(0,r.getConfig2)().state.textHeight).attr("rx",(0,r.getConfig2)().state.radius),t},"addTitleAndBox"),y=(0,a.__name)(t=>(t.append("circle").attr("class","end-state-outer").attr("r",(0,r.getConfig2)().state.sizeUnit+(0,r.getConfig2)().state.miniPadding).attr("cx",(0,r.getConfig2)().state.padding+(0,r.getConfig2)().state.sizeUnit+(0,r.getConfig2)().state.miniPadding).attr("cy",(0,r.getConfig2)().state.padding+(0,r.getConfig2)().state.sizeUnit+(0,r.getConfig2)().state.miniPadding),t.append("circle").attr("class","end-state-inner").attr("r",(0,r.getConfig2)().state.sizeUnit).attr("cx",(0,r.getConfig2)().state.padding+(0,r.getConfig2)().state.sizeUnit+2).attr("cy",(0,r.getConfig2)().state.padding+(0,r.getConfig2)().state.sizeUnit+2)),"drawEndState"),_=(0,a.__name)((t,e)=>{let i=(0,r.getConfig2)().state.forkWidth,s=(0,r.getConfig2)().state.forkHeight;if(e.parentId){let t=i;i=s,s=t}return t.append("rect").style("stroke","black").style("fill","black").attr("width",i).attr("height",s).attr("x",(0,r.getConfig2)().state.padding).attr("y",(0,r.getConfig2)().state.padding)},"drawForkJoinState"),m=(0,a.__name)((t,e,i,s)=>{let a=0,n=s.append("text");n.style("text-anchor","start"),n.attr("class","noteText");let o=t.replace(/\r\n/g,"<br/>"),l=(o=o.replace(/\n/g,"<br/>")).split(r.common_default.lineBreakRegex),d=1.25*(0,r.getConfig2)().state.noteMargin;for(let t of l){let s=t.trim();if(s.length>0){let t=n.append("tspan");t.text(s),0===d&&(d+=t.node().getBBox().height),a+=d,t.attr("x",e+(0,r.getConfig2)().state.noteMargin),t.attr("y",i+a+1.25*(0,r.getConfig2)().state.noteMargin)}}return{textWidth:n.node().getBBox().width,textHeight:a}},"_drawLongText"),b=(0,a.__name)((t,e)=>{e.attr("class","state-note");let i=e.append("rect").attr("x",0).attr("y",(0,r.getConfig2)().state.padding),{textWidth:s,textHeight:a}=m(t,0,0,e.append("g"));return i.attr("height",a+2*(0,r.getConfig2)().state.noteMargin),i.attr("width",s+2*(0,r.getConfig2)().state.noteMargin),i},"drawNote"),S=(0,a.__name)(function(t,e){let i=e.id,s={id:i,label:e.id,width:0,height:0},a=t.append("g").attr("id",i).attr("class","stateGroup");"start"===e.type&&h(a),"end"===e.type&&y(a),("fork"===e.type||"join"===e.type)&&_(a,e),"note"===e.type&&b(e.note.text,a),"divider"===e.type&&u(a),"default"===e.type&&0===e.descriptions.length&&g(a,e),"default"===e.type&&e.descriptions.length>0&&p(a,e);let n=a.node().getBBox();return s.width=n.width+2*(0,r.getConfig2)().state.padding,s.height=n.height+2*(0,r.getConfig2)().state.padding,s},"drawState"),C=0,x=(0,a.__name)(function(t,e,n){let o=(0,a.__name)(function(t){switch(t){case i.StateDB.relationType.AGGREGATION:return"aggregation";case i.StateDB.relationType.EXTENSION:return"extension";case i.StateDB.relationType.COMPOSITION:return"composition";case i.StateDB.relationType.DEPENDENCY:return"dependency"}},"getRelationType");e.points=e.points.filter(t=>!Number.isNaN(t.y));let l=e.points,h=(0,d.line)().x(function(t){return t.x}).y(function(t){return t.y}).curve(c.curveBasis),u=t.append("path").attr("d",h(l)).attr("id","edge"+C).attr("class","transition"),g="";if((0,r.getConfig2)().state.arrowMarkerAbsolute&&(g=(0,r.getUrl)(!0)),u.attr("marker-end","url("+g+"#"+o(i.StateDB.relationType.DEPENDENCY)+"End)"),void 0!==n.title){let i=t.append("g").attr("class","stateLabel"),{x:o,y:l}=s.utils_default.calcLabelPosition(e.points),d=r.common_default.getRows(n.title),c=0,h=[],u=0,g=0;for(let t=0;t<=d.length;t++){let e=i.append("text").attr("text-anchor","middle").text(d[t]).attr("x",o).attr("y",l+c),s=e.node().getBBox();u=Math.max(u,s.width),g=Math.min(g,s.x),a.log.info(s.x,o,l+c),0===c&&(c=e.node().getBBox().height,a.log.info("Title height",c,l)),h.push(e)}let p=c*d.length;if(d.length>1){let t=(d.length-1)*c*.5;h.forEach((e,i)=>e.attr("y",l+i*c-t)),p=c*d.length}let f=i.node().getBBox();i.insert("rect",":first-child").attr("class","box").attr("x",o-u/2-(0,r.getConfig2)().state.padding/2).attr("y",l-p/2-(0,r.getConfig2)().state.padding/2-3.5).attr("width",u+(0,r.getConfig2)().state.padding).attr("height",p+(0,r.getConfig2)().state.padding),a.log.info(f)}C++},"drawEdge"),v={},E=(0,a.__name)(function(){},"setConf"),T=(0,a.__name)(function(t){t.append("defs").append("marker").attr("id","dependencyEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 19,7 L9,13 L14,7 L9,1 Z")},"insertMarkers"),k=(0,a.__name)(function(t,i,s,o){let l;e=(0,r.getConfig2)().state;let d=(0,r.getConfig2)().securityLevel;"sandbox"===d&&(l=(0,n.select)("#i"+i));let c="sandbox"===d?(0,n.select)(l.nodes()[0].contentDocument.body):(0,n.select)("body"),h="sandbox"===d?l.nodes()[0].contentDocument:document;a.log.debug("Rendering diagram "+t);let u=c.select(`[id='${i}']`);T(u),w(o.db.getRootDoc(),u,void 0,!1,c,h,o);let g=e.padding,p=u.node().getBBox(),f=p.width+2*g,y=p.height+2*g;(0,r.configureSvgSize)(u,y,1.75*f,e.useMaxWidth),u.attr("viewBox",`${p.x-e.padding} ${p.y-e.padding} `+f+" "+y)},"draw"),D=(0,a.__name)(t=>t?t.length*e.fontSizeFactor:1,"getLabelWidth"),w=(0,a.__name)((t,i,s,n,d,c,h)=>{let u,g=new l.Graph({compound:!0,multigraph:!0}),p=!0;for(u=0;u<t.length;u++)if("relation"===t[u].stmt){p=!1;break}s?g.setGraph({rankdir:"LR",multigraph:!0,compound:!0,ranker:"tight-tree",ranksep:p?1:e.edgeLengthFactor,nodeSep:p?1:50,isMultiGraph:!0}):g.setGraph({rankdir:"TB",multigraph:!0,compound:!0,ranksep:p?1:e.edgeLengthFactor,nodeSep:p?1:50,ranker:"tight-tree",isMultiGraph:!0}),g.setDefaultEdgeLabel(function(){return{}});let y=h.db.getStates(),_=h.db.getRelations();for(let t of Object.keys(y)){let r,a=y[t];if(s&&(a.parentId=s),a.doc){let t=i.append("g").attr("id",a.id).attr("class","stateGroup");r=w(a.doc,t,a.id,!n,d,c,h);{let i=(t=f(t,a,n)).node().getBBox();r.width=i.width,r.height=i.height+e.padding/2,v[a.id]={y:e.compositTitleSize}}}else r=S(i,a,g);if(a.note){let t=S(i,{descriptions:[],id:a.id+"-note",note:a.note,type:"note"},g);"left of"===a.note.position?(g.setNode(r.id+"-note",t),g.setNode(r.id,r)):(g.setNode(r.id,r),g.setNode(r.id+"-note",t)),g.setParent(r.id,r.id+"-group"),g.setParent(r.id+"-note",r.id+"-group")}else g.setNode(r.id,r)}a.log.debug("Count=",g.nodeCount(),g);let m=0;_.forEach(function(t){m++,a.log.debug("Setting edge",t),g.setEdge(t.id1,t.id2,{relation:t,width:D(t.title),height:e.labelHeight*r.common_default.getRows(t.title).length,labelpos:"c"},"id"+m)}),(0,o.layout)(g),a.log.debug("Graph after layout",g.nodes());let b=i.node();g.nodes().forEach(function(t){void 0!==t&&void 0!==g.node(t)?(a.log.warn("Node "+t+": "+JSON.stringify(g.node(t))),d.select("#"+b.id+" #"+t).attr("transform","translate("+(g.node(t).x-g.node(t).width/2)+","+(g.node(t).y+(v[t]?v[t].y:0)-g.node(t).height/2)+" )"),d.select("#"+b.id+" #"+t).attr("data-x-shift",g.node(t).x-g.node(t).width/2),c.querySelectorAll("#"+b.id+" #"+t+" .divider").forEach(t=>{let e=t.parentElement,i=0,s=0;e&&(e.parentElement&&(i=e.parentElement.getBBox().width),Number.isNaN(s=parseInt(e.getAttribute("data-x-shift"),10))&&(s=0)),t.setAttribute("x1",0-s+8),t.setAttribute("x2",i-s-8)})):a.log.debug("No Node "+t+": "+JSON.stringify(g.node(t)))});let C=b.getBBox();g.edges().forEach(function(t){void 0!==t&&void 0!==g.edge(t)&&(a.log.debug("Edge "+t.v+" -> "+t.w+": "+JSON.stringify(g.edge(t))),x(i,g.edge(t),g.edge(t).relation))});let E={id:s||"root",label:s||"root",width:0,height:0};return E.width=(C=b.getBBox()).width+2*e.padding,E.height=C.height+2*e.padding,a.log.debug("Doc rendered",E,g),E},"renderDoc"),A={parser:i.stateDiagram_default,get db(){return new i.StateDB(1)},renderer:{setConf:E,draw:k},styles:i.styles_default,init:(0,a.__name)(t=>{t.state||(t.state={}),t.state.arrowMarkerAbsolute=t.arrowMarkerAbsolute},"init")};t.s(["diagram",()=>A])}]);
@@ -0,0 +1 @@
1
+ (globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,360363,e=>{"use strict";let r=Object.freeze(JSON.parse('{"displayName":"Berry","name":"berry","patterns":[{"include":"#controls"},{"include":"#strings"},{"include":"#comment-block"},{"include":"#comments"},{"include":"#keywords"},{"include":"#function"},{"include":"#member"},{"include":"#identifier"},{"include":"#number"},{"include":"#operator"}],"repository":{"comment-block":{"begin":"#-","end":"-#","name":"comment.berry","patterns":[{}]},"comments":{"begin":"#","end":"\\\\n","name":"comment.line.berry","patterns":[{}]},"controls":{"patterns":[{"match":"\\\\b(if|elif|else|for|while|do|end|break|continue|return|try|except|raise)\\\\b","name":"keyword.control.berry"}]},"function":{"patterns":[{"match":"\\\\b([A-Z_a-z][0-9A-Z_a-z]*(?=\\\\s*\\\\())","name":"entity.name.function.berry"}]},"identifier":{"patterns":[{"match":"\\\\b[A-Z_a-z]\\\\w+\\\\b","name":"identifier.berry"}]},"keywords":{"patterns":[{"match":"\\\\b(var|static|def|class|true|false|nil|self|super|import|as|_class)\\\\b","name":"keyword.berry"}]},"member":{"patterns":[{"captures":{"0":{"name":"entity.other.attribute-name.berry"}},"match":"\\\\.([A-Z_a-z][0-9A-Z_a-z]*)"}]},"number":{"patterns":[{"match":"0x\\\\h+|\\\\d+|(\\\\d+\\\\.?|\\\\.\\\\d)\\\\d*([Ee][-+]?\\\\d+)?","name":"constant.numeric.berry"}]},"operator":{"patterns":[{"match":"[-\\\\]!%\\\\&(-+./:<=>\\\\[^|~]","name":"keyword.operator.berry"}]},"strings":{"patterns":[{"begin":"f(?=[\\"\'])","patterns":[{"begin":"\\"","end":"\\"","name":"string.quoted.other.berry","patterns":[{"match":"(\\\\\\\\x\\\\h{2})|(\\\\\\\\[0-7]{3})|(\\\\\\\\\\\\\\\\)|(\\\\\\\\\\")|(\\\\\\\\\')|(\\\\\\\\a)|(\\\\\\\\b)|(\\\\\\\\f)|(\\\\\\\\n)|(\\\\\\\\r)|(\\\\\\\\t)|(\\\\\\\\v)","name":"constant.character.escape.berry"},{"match":"\\\\{\\\\{[^}]*}}","name":"string.quoted.other.berry"},{"begin":"\\\\{","end":"}","name":"keyword.other.unit.berry","patterns":[{"include":"#keywords"},{"include":"#numbers"},{"include":"#identifier"},{"include":"#operator"},{"include":"#member"},{"include":"#function"}]}]},{"begin":"\'","end":"\'","name":"string.quoted.other.berry","patterns":[{"match":"(\\\\\\\\x\\\\h{2})|(\\\\\\\\[0-7]{3})|(\\\\\\\\\\\\\\\\)|(\\\\\\\\\\")|(\\\\\\\\\')|(\\\\\\\\a)|(\\\\\\\\b)|(\\\\\\\\f)|(\\\\\\\\n)|(\\\\\\\\r)|(\\\\\\\\t)|(\\\\\\\\v)","name":"constant.character.escape.berry"},{"match":"\\\\{\\\\{[^}]*}}","name":"string.quoted.other.berry"},{"begin":"\\\\{","end":"}","name":"keyword.other.unit.berry","patterns":[{"include":"#keywords"},{"include":"#numbers"},{"include":"#identifier"},{"include":"#operator"},{"include":"#member"},{"include":"#function"}]}]}],"while":"\\\\G|^[\\\\t ]*(?=[\\"\'])"},{"begin":"([\\"\'])","end":"\\\\1","name":"string.quoted.double.berry","patterns":[{"match":"(\\\\\\\\x\\\\h{2})|(\\\\\\\\[0-7]{3})|(\\\\\\\\\\\\\\\\)|(\\\\\\\\\\")|(\\\\\\\\\')|(\\\\\\\\a)|(\\\\\\\\b)|(\\\\\\\\f)|(\\\\\\\\n)|(\\\\\\\\r)|(\\\\\\\\t)|(\\\\\\\\v)","name":"constant.character.escape.berry"}]}]}},"scopeName":"source.berry","aliases":["be"]}'));e.s(["default",0,[r]])}]);