@hatiolab/things-scene 3.4.42 → 3.4.44

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 (338) hide show
  1. package/db.sqlite +0 -0
  2. package/dist/animation/animate.d.ts +4 -0
  3. package/dist/animation/animations/animation.d.ts +14 -0
  4. package/dist/animation/animations/fade.d.ts +4 -0
  5. package/dist/animation/animations/heartbeat.d.ts +4 -0
  6. package/dist/animation/animations/moving.d.ts +4 -0
  7. package/dist/animation/animations/outline.d.ts +10 -0
  8. package/dist/animation/animations/rotation.d.ts +4 -0
  9. package/dist/animation/animations/vibration.d.ts +4 -0
  10. package/dist/animation/compile.d.ts +1 -0
  11. package/dist/animation/delta.d.ts +19 -0
  12. package/dist/animation/index.d.ts +1 -0
  13. package/dist/command/command-change.d.ts +7 -0
  14. package/dist/command/command-migrate.d.ts +4 -0
  15. package/dist/command/command-migrate.js +85 -0
  16. package/dist/command/command-migrate.js.map +1 -0
  17. package/dist/command/command.d.ts +5 -0
  18. package/dist/command/snapshot-commander.d.ts +15 -0
  19. package/dist/components/anchor/anchor.d.ts +128 -0
  20. package/dist/components/anchor/ellipse-anchors.d.ts +2 -0
  21. package/dist/components/anchor/ellipse-anchors.js +38 -0
  22. package/dist/components/anchor/ellipse-anchors.js.map +1 -0
  23. package/dist/components/anchor/rect-anchors.d.ts +10 -0
  24. package/dist/components/audio.d.ts +25 -0
  25. package/dist/components/audio.js +141 -0
  26. package/dist/components/audio.js.map +1 -0
  27. package/dist/components/cloud.d.ts +13 -0
  28. package/dist/components/cloud.js +31 -0
  29. package/dist/components/cloud.js.map +1 -0
  30. package/dist/components/component.d.ts +227 -0
  31. package/dist/components/component.js +912 -0
  32. package/dist/components/component.js.map +1 -0
  33. package/dist/components/container-abstract.d.ts +51 -0
  34. package/dist/components/container-abstract.js +372 -0
  35. package/dist/components/container-abstract.js.map +1 -0
  36. package/dist/components/container.d.ts +38 -0
  37. package/dist/components/container.js +75 -0
  38. package/dist/components/container.js.map +1 -0
  39. package/dist/components/data/data-mapping.d.ts +16 -0
  40. package/dist/components/data/data.d.ts +8 -0
  41. package/dist/components/data/evaluator.d.ts +1 -0
  42. package/dist/components/donut.d.ts +15 -0
  43. package/dist/components/donut.js +74 -0
  44. package/dist/components/donut.js.map +1 -0
  45. package/dist/components/drawer/draw-image-pendable.d.ts +1 -0
  46. package/dist/components/drawer/effect.d.ts +1 -0
  47. package/dist/components/drawer/fill.d.ts +14 -0
  48. package/dist/components/drawer/format.d.ts +1 -0
  49. package/dist/components/drawer/line.d.ts +3 -0
  50. package/dist/components/drawer/stroke.d.ts +1 -0
  51. package/dist/components/drawer/text-wrapper.d.ts +10 -0
  52. package/dist/components/drawer/text.d.ts +3 -0
  53. package/dist/components/ellipse.d.ts +35 -0
  54. package/dist/components/ellipse.js +99 -0
  55. package/dist/components/ellipse.js.map +1 -0
  56. package/dist/components/file/ondropfile.d.ts +1 -0
  57. package/dist/components/fit/fit.d.ts +15 -0
  58. package/dist/components/geometry/transcoord.d.ts +41 -0
  59. package/dist/components/geometry/union.d.ts +6 -0
  60. package/dist/components/gif-view.d.ts +18 -0
  61. package/dist/components/gif-view.js +116 -0
  62. package/dist/components/gif-view.js.map +1 -0
  63. package/dist/components/global-ref.d.ts +36 -0
  64. package/dist/components/global-ref.js +128 -0
  65. package/dist/components/global-ref.js.map +1 -0
  66. package/dist/components/group.d.ts +15 -0
  67. package/dist/components/group.js +145 -0
  68. package/dist/components/group.js.map +1 -0
  69. package/dist/components/html/elements.d.ts +2 -0
  70. package/dist/components/html/fill.d.ts +1 -0
  71. package/dist/components/html/reposition.d.ts +1 -0
  72. package/dist/components/html/shadow.d.ts +1 -0
  73. package/dist/components/html-overlay-container.d.ts +27 -0
  74. package/dist/components/html-overlay-container.js +14 -0
  75. package/dist/components/html-overlay-container.js.map +1 -0
  76. package/dist/components/html-overlay-element.d.ts +25 -0
  77. package/dist/components/html-overlay-element.js +9 -0
  78. package/dist/components/html-overlay-element.js.map +1 -0
  79. package/dist/components/image-view.d.ts +19 -0
  80. package/dist/components/image-view.js +180 -0
  81. package/dist/components/image-view.js.map +1 -0
  82. package/dist/components/index.d.ts +32 -0
  83. package/dist/components/index.js +39 -0
  84. package/dist/components/index.js.map +1 -0
  85. package/dist/components/info-window.d.ts +41 -0
  86. package/dist/components/info-window.js +425 -0
  87. package/dist/components/info-window.js.map +1 -0
  88. package/dist/components/line.d.ts +91 -0
  89. package/dist/components/line.js +303 -0
  90. package/dist/components/line.js.map +1 -0
  91. package/dist/components/local-ref.d.ts +47 -0
  92. package/dist/components/local-ref.js +103 -0
  93. package/dist/components/local-ref.js.map +1 -0
  94. package/dist/components/mixins/connectable.d.ts +45 -0
  95. package/dist/components/mixins/data-source.d.ts +9 -0
  96. package/dist/components/mixins/html-element.d.ts +24 -0
  97. package/dist/components/mixins/move-handle.d.ts +11 -0
  98. package/dist/components/mixins/rect-path.d.ts +13 -0
  99. package/dist/components/mixins/value-holder.d.ts +18 -0
  100. package/dist/components/mutater/bounds.d.ts +10 -0
  101. package/dist/components/mutater/path.d.ts +5 -0
  102. package/dist/components/ortholine.d.ts +21 -0
  103. package/dist/components/ortholine.js +814 -0
  104. package/dist/components/ortholine.js.map +1 -0
  105. package/dist/components/outline/ellipse-outline.d.ts +4 -0
  106. package/dist/components/outline/ellipse-outline.js +11 -0
  107. package/dist/components/outline/ellipse-outline.js.map +1 -0
  108. package/dist/components/outline/path-outline.d.ts +1 -0
  109. package/dist/components/path.d.ts +5 -0
  110. package/dist/components/path.js +40 -0
  111. package/dist/components/path.js.map +1 -0
  112. package/dist/components/polygon.d.ts +40 -0
  113. package/dist/components/polygon.js +157 -0
  114. package/dist/components/polygon.js.map +1 -0
  115. package/dist/components/polyline.d.ts +18 -0
  116. package/dist/components/polyline.js +102 -0
  117. package/dist/components/polyline.js.map +1 -0
  118. package/dist/components/popup.d.ts +48 -0
  119. package/dist/components/popup.js +138 -0
  120. package/dist/components/popup.js.map +1 -0
  121. package/dist/components/rect.d.ts +26 -0
  122. package/dist/components/rect.js +91 -0
  123. package/dist/components/rect.js.map +1 -0
  124. package/dist/components/retention/retention-manager.d.ts +8 -0
  125. package/dist/components/root-container.d.ts +90 -0
  126. package/dist/components/root-container.js +478 -0
  127. package/dist/components/root-container.js.map +1 -0
  128. package/dist/components/ruler.d.ts +16 -0
  129. package/dist/components/ruler.js +77 -0
  130. package/dist/components/ruler.js.map +1 -0
  131. package/dist/components/shape.d.ts +25 -0
  132. package/dist/components/shape.js +80 -0
  133. package/dist/components/shape.js.map +1 -0
  134. package/dist/components/star.d.ts +13 -0
  135. package/dist/components/star.js +80 -0
  136. package/dist/components/star.js.map +1 -0
  137. package/dist/components/text/substitutor.d.ts +3 -0
  138. package/dist/components/text.d.ts +8 -0
  139. package/dist/components/text.js +15 -0
  140. package/dist/components/text.js.map +1 -0
  141. package/dist/components/three-container.d.ts +60 -0
  142. package/dist/components/three-container.js +515 -0
  143. package/dist/components/three-container.js.map +1 -0
  144. package/dist/components/triangle.d.ts +15 -0
  145. package/dist/components/triangle.js +76 -0
  146. package/dist/components/triangle.js.map +1 -0
  147. package/dist/const.d.ts +39 -0
  148. package/dist/core/collection.d.ts +8 -0
  149. package/dist/core/debug.d.ts +1 -0
  150. package/dist/core/deep-equals.d.ts +1 -0
  151. package/dist/core/dom-to-image.d.ts +127 -0
  152. package/dist/core/event.d.ts +92 -0
  153. package/dist/core/index.d.ts +2 -0
  154. package/dist/core/list.d.ts +32 -0
  155. package/dist/core/logger.d.ts +3 -0
  156. package/dist/core/memoize.d.ts +6 -0
  157. package/dist/core/mixin.d.ts +1 -0
  158. package/dist/core/obj-accessor.d.ts +1 -0
  159. package/dist/core/reference-map.d.ts +14 -0
  160. package/dist/core/round-rect.d.ts +19 -0
  161. package/dist/core/script-loader.d.ts +3 -0
  162. package/dist/core/snapshot-taker.d.ts +12 -0
  163. package/dist/core/stack.d.ts +2 -0
  164. package/dist/core/timecapsule.d.ts +18 -0
  165. package/dist/core/utils.d.ts +9 -0
  166. package/dist/decorator/anchors-decorator.d.ts +31 -0
  167. package/dist/decorator/data-spread-decorator.d.ts +1 -0
  168. package/dist/decorator/decotag-decorator.d.ts +1 -0
  169. package/dist/decorator/index.d.ts +2 -0
  170. package/dist/decorator/link-decorator.d.ts +1 -0
  171. package/dist/effect/gradation.d.ts +1 -0
  172. package/dist/effect/index.d.ts +1 -0
  173. package/dist/effect/shadow.d.ts +2 -0
  174. package/dist/effect/turn.d.ts +1 -0
  175. package/dist/event/event-engine.d.ts +12 -0
  176. package/dist/event/event-pump.d.ts +11 -0
  177. package/dist/event/event-tracker.d.ts +21 -0
  178. package/dist/event/index.d.ts +2 -0
  179. package/dist/event/ua-event-handler.d.ts +32 -0
  180. package/dist/event-map/event-map.d.ts +9 -0
  181. package/dist/event-map/index.d.ts +1 -0
  182. package/dist/event-map/move-handler.d.ts +1 -0
  183. package/dist/event-map/text-editor-lite.d.ts +1 -0
  184. package/dist/index.d.ts +1 -0
  185. package/dist/index.js +3 -0
  186. package/dist/index.js.map +1 -0
  187. package/dist/layer/action/emphasize.d.ts +2 -0
  188. package/dist/layer/action/popup.d.ts +5 -0
  189. package/dist/layer/action/pressed.d.ts +2 -0
  190. package/dist/layer/add-layer.d.ts +42 -0
  191. package/dist/layer/add-layer.js +142 -0
  192. package/dist/layer/add-layer.js.map +1 -0
  193. package/dist/layer/decotag-layer.d.ts +27 -0
  194. package/dist/layer/decotag-layer.js +105 -0
  195. package/dist/layer/decotag-layer.js.map +1 -0
  196. package/dist/layer/guide-layer.d.ts +44 -0
  197. package/dist/layer/guide-layer.js +261 -0
  198. package/dist/layer/guide-layer.js.map +1 -0
  199. package/dist/layer/index.d.ts +7 -0
  200. package/dist/layer/index.js +11 -0
  201. package/dist/layer/index.js.map +1 -0
  202. package/dist/layer/layer.d.ts +32 -0
  203. package/dist/layer/layer.js +155 -0
  204. package/dist/layer/layer.js.map +1 -0
  205. package/dist/layer/model-layer.d.ts +46 -0
  206. package/dist/layer/model-layer.js +402 -0
  207. package/dist/layer/model-layer.js.map +1 -0
  208. package/dist/layer/modeler/anchor-handler.d.ts +36 -0
  209. package/dist/layer/modeler/control-handler.d.ts +18 -0
  210. package/dist/layer/modeler/focus-outline.d.ts +5 -0
  211. package/dist/layer/modeler/group-outline.d.ts +5 -0
  212. package/dist/layer/modeler/index.d.ts +7 -0
  213. package/dist/layer/modeler/path-handler.d.ts +22 -0
  214. package/dist/layer/modeler/resizer.d.ts +13 -0
  215. package/dist/layer/modeler/rotator.d.ts +15 -0
  216. package/dist/layer/modeler/rotator.js +120 -0
  217. package/dist/layer/modeler/rotator.js.map +1 -0
  218. package/dist/layer/modeling-layer.d.ts +66 -0
  219. package/dist/layer/modeling-layer.js +451 -0
  220. package/dist/layer/modeling-layer.js.map +1 -0
  221. package/dist/layer/selection/selected-finder.d.ts +1 -0
  222. package/dist/layer/selection-layer.d.ts +42 -0
  223. package/dist/layer/selection-layer.js +307 -0
  224. package/dist/layer/selection-layer.js.map +1 -0
  225. package/dist/layer/shift-layer.d.ts +18 -0
  226. package/dist/layer/shift-layer.js +61 -0
  227. package/dist/layer/shift-layer.js.map +1 -0
  228. package/dist/layout/absolute.d.ts +8 -0
  229. package/dist/layout/card.d.ts +7 -0
  230. package/dist/layout/html-absolute.d.ts +8 -0
  231. package/dist/layout/index.d.ts +8 -0
  232. package/dist/layout/index.js +12 -0
  233. package/dist/layout/index.js.map +1 -0
  234. package/dist/layout/layout.d.ts +11 -0
  235. package/dist/layout/linear-horizontal.d.ts +7 -0
  236. package/dist/layout/linear-vertical.d.ts +7 -0
  237. package/dist/layout/table.d.ts +9 -0
  238. package/dist/layout/three.d.ts +8 -0
  239. package/dist/layout/three.js +20 -0
  240. package/dist/layout/three.js.map +1 -0
  241. package/dist/license/license.d.ts +18 -0
  242. package/dist/model/compile.d.ts +1 -0
  243. package/dist/model/compile.js +28 -0
  244. package/dist/model/compile.js.map +1 -0
  245. package/dist/model/duplicate.d.ts +1 -0
  246. package/dist/model/index.d.ts +3 -0
  247. package/dist/model/selector.d.ts +2 -0
  248. package/dist/style/compile.d.ts +1 -0
  249. package/dist/style/index.d.ts +1 -0
  250. package/dist/things-scene/api/add-start.d.ts +1 -0
  251. package/dist/things-scene/api/add.d.ts +5 -0
  252. package/dist/things-scene/api/align.d.ts +1 -0
  253. package/dist/things-scene/api/change.d.ts +2 -0
  254. package/dist/things-scene/api/clipboard.d.ts +3 -0
  255. package/dist/things-scene/api/distribute.d.ts +1 -0
  256. package/dist/things-scene/api/duplicate.d.ts +4 -0
  257. package/dist/things-scene/api/fullscreen.d.ts +1 -0
  258. package/dist/things-scene/api/group.d.ts +8 -0
  259. package/dist/things-scene/api/group.js +78 -0
  260. package/dist/things-scene/api/group.js.map +1 -0
  261. package/dist/things-scene/api/ids.d.ts +4 -0
  262. package/dist/things-scene/api/index.d.ts +15 -0
  263. package/dist/things-scene/api/listener.d.ts +3 -0
  264. package/dist/things-scene/api/remove.d.ts +4 -0
  265. package/dist/things-scene/api/symmetry.d.ts +2 -0
  266. package/dist/things-scene/api/symmetry.js +39 -0
  267. package/dist/things-scene/api/symmetry.js.map +1 -0
  268. package/dist/things-scene/api/to-data-url.d.ts +1 -0
  269. package/dist/things-scene/api/to-data-url.js +69 -0
  270. package/dist/things-scene/api/to-data-url.js.map +1 -0
  271. package/dist/things-scene/api/zorder.d.ts +2 -0
  272. package/dist/things-scene/application-context.d.ts +40 -0
  273. package/dist/things-scene/config.d.ts +4 -0
  274. package/dist/things-scene/create.d.ts +20 -0
  275. package/dist/things-scene/fps.d.ts +1 -0
  276. package/dist/things-scene/index.d.ts +17 -0
  277. package/dist/things-scene/index.js +23 -0
  278. package/dist/things-scene/index.js.map +1 -0
  279. package/dist/things-scene/polyfill.d.ts +2 -0
  280. package/dist/things-scene/scene.d.ts +155 -0
  281. package/dist/things-scene/version.d.ts +2 -0
  282. package/dist/threed/common.d.ts +22 -0
  283. package/dist/threed/control/three-controls.d.ts +11 -0
  284. package/dist/threed/control/three-controls.js +620 -0
  285. package/dist/threed/control/three-controls.js.map +1 -0
  286. package/dist/threed/html/elements.d.ts +2 -0
  287. package/dist/threed/real-object-camera-meshed.d.ts +12 -0
  288. package/dist/threed/real-object-camera-meshed.js +49 -0
  289. package/dist/threed/real-object-camera-meshed.js.map +1 -0
  290. package/dist/threed/real-object-camera.d.ts +9 -0
  291. package/dist/threed/real-object-camera.js +31 -0
  292. package/dist/threed/real-object-camera.js.map +1 -0
  293. package/dist/threed/real-object-dom-element.d.ts +20 -0
  294. package/dist/threed/real-object-dom-element.js +78 -0
  295. package/dist/threed/real-object-dom-element.js.map +1 -0
  296. package/dist/threed/real-object-dummy.d.ts +6 -0
  297. package/dist/threed/real-object-dummy.js +11 -0
  298. package/dist/threed/real-object-dummy.js.map +1 -0
  299. package/dist/threed/real-object-extrude.d.ts +19 -0
  300. package/dist/threed/real-object-extrude.js +171 -0
  301. package/dist/threed/real-object-extrude.js.map +1 -0
  302. package/dist/threed/real-object-gltf.d.ts +15 -0
  303. package/dist/threed/real-object-gltf.js +97 -0
  304. package/dist/threed/real-object-gltf.js.map +1 -0
  305. package/dist/threed/real-object-group.d.ts +5 -0
  306. package/dist/threed/real-object-group.js +11 -0
  307. package/dist/threed/real-object-group.js.map +1 -0
  308. package/dist/threed/real-object-mesh.d.ts +11 -0
  309. package/dist/threed/real-object-mesh.js +55 -0
  310. package/dist/threed/real-object-mesh.js.map +1 -0
  311. package/dist/threed/real-object-plane.d.ts +6 -0
  312. package/dist/threed/real-object-plane.js +23 -0
  313. package/dist/threed/real-object-plane.js.map +1 -0
  314. package/dist/threed/real-object-scene.d.ts +21 -0
  315. package/dist/threed/real-object-scene.js +89 -0
  316. package/dist/threed/real-object-scene.js.map +1 -0
  317. package/dist/threed/real-object-sprite.d.ts +12 -0
  318. package/dist/threed/real-object-sprite.js +35 -0
  319. package/dist/threed/real-object-sprite.js.map +1 -0
  320. package/dist/threed/real-object-text.d.ts +16 -0
  321. package/dist/threed/real-object-text.js +70 -0
  322. package/dist/threed/real-object-text.js.map +1 -0
  323. package/dist/threed/real-object.d.ts +48 -0
  324. package/dist/threed/real-object.js +199 -0
  325. package/dist/threed/real-object.js.map +1 -0
  326. package/dist/threed/texture/text-texture.d.ts +8 -0
  327. package/dist/threed/three-dimensional-container.d.ts +7 -0
  328. package/dist/threed/three-dimensional-container.js +2 -0
  329. package/dist/threed/three-dimensional-container.js.map +1 -0
  330. package/dist/threed/utils/bound-uv-generator.d.ts +16 -0
  331. package/dist/types.d.ts +53 -0
  332. package/dist/types.js +368 -0
  333. package/dist/types.js.map +1 -0
  334. package/package.json +1 -1
  335. package/schema.graphql +1 -1
  336. package/things-scene-ie.js +1 -1
  337. package/things-scene-min.js +1 -1
  338. package/things-scene.mjs +6 -2
package/things-scene.mjs CHANGED
@@ -1,2 +1,6 @@
1
- var t="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},e=function(t){return t&&t.Math===Math&&t},r=e("object"==typeof globalThis&&globalThis)||e("object"==typeof window&&window)||e("object"==typeof self&&self)||e("object"==typeof t&&t)||e("object"==typeof t&&t)||function(){return this}()||Function("return this")(),n={},i=function(t){try{return!!t()}catch(t){return!0}},a=!i((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]})),o=!i((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")})),s=o,c=Function.prototype.call,u=s?c.bind(c):function(){return c.apply(c,arguments)},l={},h={}.propertyIsEnumerable,f=Object.getOwnPropertyDescriptor,d=f&&!h.call({1:2},1);l.f=d?function(t){var e=f(this,t);return!!e&&e.enumerable}:h;var p,g,v=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},y=o,m=Function.prototype,b=m.call,x=y&&m.bind.bind(b,b),w=y?x:function(t){return function(){return b.apply(t,arguments)}},A=w,_=A({}.toString),k=A("".slice),S=function(t){return k(_(t),8,-1)},E=i,M=S,T=Object,P=w("".split),O=E((function(){return!T("z").propertyIsEnumerable(0)}))?function(t){return"String"===M(t)?P(t,""):T(t)}:T,I=function(t){return null==t},R=I,C=TypeError,j=function(t){if(R(t))throw new C("Can't call method on "+t);return t},D=O,L=j,z=function(t){return D(L(t))},B="object"==typeof document&&document.all,F=void 0===B&&void 0!==B?function(t){return"function"==typeof t||t===B}:function(t){return"function"==typeof t},N=F,U=function(t){return"object"==typeof t?null!==t:N(t)},Y=r,G=F,W=function(t,e){return arguments.length<2?(r=Y[t],G(r)?r:void 0):Y[t]&&Y[t][e];var r},H=w({}.isPrototypeOf),q="undefined"!=typeof navigator&&String(navigator.userAgent)||"",X=r,V=q,Q=X.process,K=X.Deno,J=Q&&Q.versions||K&&K.version,Z=J&&J.v8;Z&&(g=(p=Z.split("."))[0]>0&&p[0]<4?1:+(p[0]+p[1])),!g&&V&&(!(p=V.match(/Edge\/(\d+)/))||p[1]>=74)&&(p=V.match(/Chrome\/(\d+)/))&&(g=+p[1]);var $=g,tt=$,et=i,rt=r.String,nt=!!Object.getOwnPropertySymbols&&!et((function(){var t=Symbol("symbol detection");return!rt(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&tt&&tt<41})),it=nt&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,at=W,ot=F,st=H,ct=Object,ut=it?function(t){return"symbol"==typeof t}:function(t){var e=at("Symbol");return ot(e)&&st(e.prototype,ct(t))},lt=String,ht=function(t){try{return lt(t)}catch(t){return"Object"}},ft=F,dt=ht,pt=TypeError,gt=function(t){if(ft(t))return t;throw new pt(dt(t)+" is not a function")},vt=gt,yt=I,mt=function(t,e){var r=t[e];return yt(r)?void 0:vt(r)},bt=u,xt=F,wt=U,At=TypeError,_t=function(t,e){var r,n;if("string"===e&&xt(r=t.toString)&&!wt(n=bt(r,t)))return n;if(xt(r=t.valueOf)&&!wt(n=bt(r,t)))return n;if("string"!==e&&xt(r=t.toString)&&!wt(n=bt(r,t)))return n;throw new At("Can't convert object to primitive value")},kt={exports:{}},St=r,Et=Object.defineProperty,Mt=function(t,e){try{Et(St,t,{value:e,configurable:!0,writable:!0})}catch(r){St[t]=e}return e},Tt=r,Pt=Mt,Ot="__core-js_shared__",It=kt.exports=Tt[Ot]||Pt(Ot,{});(It.versions||(It.versions=[])).push({version:"3.36.0",mode:"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.36.0/LICENSE",source:"https://github.com/zloirock/core-js"});var Rt=kt.exports,Ct=function(t,e){return Rt[t]||(Rt[t]=e||{})},jt=j,Dt=Object,Lt=function(t){return Dt(jt(t))},zt=Lt,Bt=w({}.hasOwnProperty),Ft=Object.hasOwn||function(t,e){return Bt(zt(t),e)},Nt=w,Ut=0,Yt=Math.random(),Gt=Nt(1..toString),Wt=function(t){return"Symbol("+(void 0===t?"":t)+")_"+Gt(++Ut+Yt,36)},Ht=Ct,qt=Ft,Xt=Wt,Vt=nt,Qt=it,Kt=r.Symbol,Jt=Ht("wks"),Zt=Qt?Kt.for||Kt:Kt&&Kt.withoutSetter||Xt,$t=function(t){return qt(Jt,t)||(Jt[t]=Vt&&qt(Kt,t)?Kt[t]:Zt("Symbol."+t)),Jt[t]},te=u,ee=U,re=ut,ne=mt,ie=_t,ae=TypeError,oe=$t("toPrimitive"),se=function(t,e){if(!ee(t)||re(t))return t;var r,n=ne(t,oe);if(n){if(void 0===e&&(e="default"),r=te(n,t,e),!ee(r)||re(r))return r;throw new ae("Can't convert object to primitive value")}return void 0===e&&(e="number"),ie(t,e)},ce=se,ue=ut,le=function(t){var e=ce(t,"string");return ue(e)?e:e+""},he=U,fe=r.document,de=he(fe)&&he(fe.createElement),pe=function(t){return de?fe.createElement(t):{}},ge=pe,ve=!a&&!i((function(){return 7!==Object.defineProperty(ge("div"),"a",{get:function(){return 7}}).a})),ye=a,me=u,be=l,xe=v,we=z,Ae=le,_e=Ft,ke=ve,Se=Object.getOwnPropertyDescriptor;n.f=ye?Se:function(t,e){if(t=we(t),e=Ae(e),ke)try{return Se(t,e)}catch(t){}if(_e(t,e))return xe(!me(be.f,t,e),t[e])};var Ee={},Me=a&&i((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype})),Te=U,Pe=String,Oe=TypeError,Ie=function(t){if(Te(t))return t;throw new Oe(Pe(t)+" is not an object")},Re=a,Ce=ve,je=Me,De=Ie,Le=le,ze=TypeError,Be=Object.defineProperty,Fe=Object.getOwnPropertyDescriptor,Ne="enumerable",Ue="configurable",Ye="writable";Ee.f=Re?je?function(t,e,r){if(De(t),e=Le(e),De(r),"function"==typeof t&&"prototype"===e&&"value"in r&&Ye in r&&!r[Ye]){var n=Fe(t,e);n&&n[Ye]&&(t[e]=r.value,r={configurable:Ue in r?r[Ue]:n[Ue],enumerable:Ne in r?r[Ne]:n[Ne],writable:!1})}return Be(t,e,r)}:Be:function(t,e,r){if(De(t),e=Le(e),De(r),Ce)try{return Be(t,e,r)}catch(t){}if("get"in r||"set"in r)throw new ze("Accessors not supported");return"value"in r&&(t[e]=r.value),t};var Ge=Ee,We=v,He=a?function(t,e,r){return Ge.f(t,e,We(1,r))}:function(t,e,r){return t[e]=r,t},qe={exports:{}},Xe=a,Ve=Ft,Qe=Function.prototype,Ke=Xe&&Object.getOwnPropertyDescriptor,Je=Ve(Qe,"name"),Ze={EXISTS:Je,PROPER:Je&&"something"===function(){}.name,CONFIGURABLE:Je&&(!Xe||Xe&&Ke(Qe,"name").configurable)},$e=w,tr=F,er=kt.exports,rr=$e(Function.toString);tr(er.inspectSource)||(er.inspectSource=function(t){return rr(t)});var nr,ir,ar,or=er.inspectSource,sr=F,cr=r.WeakMap,ur=sr(cr)&&/native code/.test(String(cr)),lr=Wt,hr=Ct("keys"),fr=function(t){return hr[t]||(hr[t]=lr(t))},dr={},pr=ur,gr=r,vr=U,yr=He,mr=Ft,br=kt.exports,xr=fr,wr=dr,Ar="Object already initialized",_r=gr.TypeError,kr=gr.WeakMap;if(pr||br.state){var Sr=br.state||(br.state=new kr);Sr.get=Sr.get,Sr.has=Sr.has,Sr.set=Sr.set,nr=function(t,e){if(Sr.has(t))throw new _r(Ar);return e.facade=t,Sr.set(t,e),e},ir=function(t){return Sr.get(t)||{}},ar=function(t){return Sr.has(t)}}else{var Er=xr("state");wr[Er]=!0,nr=function(t,e){if(mr(t,Er))throw new _r(Ar);return e.facade=t,yr(t,Er,e),e},ir=function(t){return mr(t,Er)?t[Er]:{}},ar=function(t){return mr(t,Er)}}var Mr={set:nr,get:ir,has:ar,enforce:function(t){return ar(t)?ir(t):nr(t,{})},getterFor:function(t){return function(e){var r;if(!vr(e)||(r=ir(e)).type!==t)throw new _r("Incompatible receiver, "+t+" required");return r}}},Tr=w,Pr=i,Or=F,Ir=Ft,Rr=a,Cr=Ze.CONFIGURABLE,jr=or,Dr=Mr.enforce,Lr=Mr.get,zr=String,Br=Object.defineProperty,Fr=Tr("".slice),Nr=Tr("".replace),Ur=Tr([].join),Yr=Rr&&!Pr((function(){return 8!==Br((function(){}),"length",{value:8}).length})),Gr=String(String).split("String"),Wr=qe.exports=function(t,e,r){"Symbol("===Fr(zr(e),0,7)&&(e="["+Nr(zr(e),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),r&&r.getter&&(e="get "+e),r&&r.setter&&(e="set "+e),(!Ir(t,"name")||Cr&&t.name!==e)&&(Rr?Br(t,"name",{value:e,configurable:!0}):t.name=e),Yr&&r&&Ir(r,"arity")&&t.length!==r.arity&&Br(t,"length",{value:r.arity});try{r&&Ir(r,"constructor")&&r.constructor?Rr&&Br(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var n=Dr(t);return Ir(n,"source")||(n.source=Ur(Gr,"string"==typeof e?e:"")),t};Function.prototype.toString=Wr((function(){return Or(this)&&Lr(this).source||jr(this)}),"toString");var Hr=F,qr=Ee,Xr=qe.exports,Vr=Mt,Qr=function(t,e,r,n){n||(n={});var i=n.enumerable,a=void 0!==n.name?n.name:e;if(Hr(r)&&Xr(r,a,n),n.global)i?t[e]=r:Vr(e,r);else{try{n.unsafe?t[e]&&(i=!0):delete t[e]}catch(t){}i?t[e]=r:qr.f(t,e,{value:r,enumerable:!1,configurable:!n.nonConfigurable,writable:!n.nonWritable})}return t},Kr={},Jr=Math.ceil,Zr=Math.floor,$r=Math.trunc||function(t){var e=+t;return(e>0?Zr:Jr)(e)},tn=$r,en=function(t){var e=+t;return e!=e||0===e?0:tn(e)},rn=en,nn=Math.max,an=Math.min,on=function(t,e){var r=rn(t);return r<0?nn(r+e,0):an(r,e)},sn=en,cn=Math.min,un=function(t){var e=sn(t);return e>0?cn(e,9007199254740991):0},ln=un,hn=function(t){return ln(t.length)},fn=z,dn=on,pn=hn,gn=function(t){return function(e,r,n){var i=fn(e),a=pn(i);if(0===a)return!t&&-1;var o,s=dn(n,a);if(t&&r!=r){for(;a>s;)if((o=i[s++])!=o)return!0}else for(;a>s;s++)if((t||s in i)&&i[s]===r)return t||s||0;return!t&&-1}},vn={includes:gn(!0),indexOf:gn(!1)},yn=Ft,mn=z,bn=vn.indexOf,xn=dr,wn=w([].push),An=function(t,e){var r,n=mn(t),i=0,a=[];for(r in n)!yn(xn,r)&&yn(n,r)&&wn(a,r);for(;e.length>i;)yn(n,r=e[i++])&&(~bn(a,r)||wn(a,r));return a},_n=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],kn=An,Sn=_n.concat("length","prototype");Kr.f=Object.getOwnPropertyNames||function(t){return kn(t,Sn)};var En={};En.f=Object.getOwnPropertySymbols;var Mn=W,Tn=Kr,Pn=En,On=Ie,In=w([].concat),Rn=Mn("Reflect","ownKeys")||function(t){var e=Tn.f(On(t)),r=Pn.f;return r?In(e,r(t)):e},Cn=Ft,jn=Rn,Dn=n,Ln=Ee,zn=function(t,e,r){for(var n=jn(e),i=Ln.f,a=Dn.f,o=0;o<n.length;o++){var s=n[o];Cn(t,s)||r&&Cn(r,s)||i(t,s,a(e,s))}},Bn=i,Fn=F,Nn=/#|\.prototype\./,Un=function(t,e){var r=Gn[Yn(t)];return r===Hn||r!==Wn&&(Fn(e)?Bn(e):!!e)},Yn=Un.normalize=function(t){return String(t).replace(Nn,".").toLowerCase()},Gn=Un.data={},Wn=Un.NATIVE="N",Hn=Un.POLYFILL="P",qn=Un,Xn=r,Vn=n.f,Qn=He,Kn=Qr,Jn=Mt,Zn=zn,$n=qn,ti=function(t,e){var r,n,i,a,o,s=t.target,c=t.global,u=t.stat;if(r=c?Xn:u?Xn[s]||Jn(s,{}):Xn[s]&&Xn[s].prototype)for(n in e){if(a=e[n],i=t.dontCallGetSet?(o=Vn(r,n))&&o.value:r[n],!$n(c?n:s+(u?".":"#")+n,t.forced)&&void 0!==i){if(typeof a==typeof i)continue;Zn(a,i)}(t.sham||i&&i.sham)&&Qn(a,"sham",!0),Kn(r,n,a,t)}},ei={};ei[$t("toStringTag")]="z";var ri="[object z]"===String(ei),ni=ri,ii=F,ai=S,oi=$t("toStringTag"),si=Object,ci="Arguments"===ai(function(){return arguments}()),ui=ni?ai:function(t){var e,r,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=si(t),oi))?r:ci?ai(e):"Object"===(n=ai(e))&&ii(e.callee)?"Arguments":n},li=ui,hi=String,fi=function(t){if("Symbol"===li(t))throw new TypeError("Cannot convert a Symbol value to a string");return hi(t)},di={},pi=An,gi=_n,vi=Object.keys||function(t){return pi(t,gi)},yi=a,mi=Me,bi=Ee,xi=Ie,wi=z,Ai=vi;di.f=yi&&!mi?Object.defineProperties:function(t,e){xi(t);for(var r,n=wi(e),i=Ai(e),a=i.length,o=0;a>o;)bi.f(t,r=i[o++],n[r]);return t};var _i,ki=W("document","documentElement"),Si=Ie,Ei=di,Mi=_n,Ti=dr,Pi=ki,Oi=pe,Ii="prototype",Ri="script",Ci=fr("IE_PROTO"),ji=function(){},Di=function(t){return"<"+Ri+">"+t+"</"+Ri+">"},Li=function(t){t.write(Di("")),t.close();var e=t.parentWindow.Object;return t=null,e},zi=function(){try{_i=new ActiveXObject("htmlfile")}catch(t){}var t,e,r;zi="undefined"!=typeof document?document.domain&&_i?Li(_i):(e=Oi("iframe"),r="java"+Ri+":",e.style.display="none",Pi.appendChild(e),e.src=String(r),(t=e.contentWindow.document).open(),t.write(Di("document.F=Object")),t.close(),t.F):Li(_i);for(var n=Mi.length;n--;)delete zi[Ii][Mi[n]];return zi()};Ti[Ci]=!0;var Bi=Object.create||function(t,e){var r;return null!==t?(ji[Ii]=Si(t),r=new ji,ji[Ii]=null,r[Ci]=t):r=zi(),void 0===e?r:Ei.f(r,e)},Fi={},Ni=w([].slice),Ui=S,Yi=z,Gi=Kr.f,Wi=Ni,Hi="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];Fi.f=function(t){return Hi&&"Window"===Ui(t)?function(t){try{return Gi(t)}catch(t){return Wi(Hi)}}(t):Gi(Yi(t))};var qi=qe.exports,Xi=Ee,Vi=function(t,e,r){return r.get&&qi(r.get,e,{getter:!0}),r.set&&qi(r.set,e,{setter:!0}),Xi.f(t,e,r)},Qi={},Ki=$t;Qi.f=Ki;var Ji=r,Zi=Ji,$i=Ft,ta=Qi,ea=Ee.f,ra=function(t){var e=Zi.Symbol||(Zi.Symbol={});$i(e,t)||ea(e,t,{value:ta.f(t)})},na=u,ia=W,aa=$t,oa=Qr,sa=function(){var t=ia("Symbol"),e=t&&t.prototype,r=e&&e.valueOf,n=aa("toPrimitive");e&&!e[n]&&oa(e,n,(function(t){return na(r,this)}),{arity:1})},ca=Ee.f,ua=Ft,la=$t("toStringTag"),ha=function(t,e,r){t&&!r&&(t=t.prototype),t&&!ua(t,la)&&ca(t,la,{configurable:!0,value:e})},fa=S,da=w,pa=function(t){if("Function"===fa(t))return da(t)},ga=gt,va=o,ya=pa(pa.bind),ma=function(t,e){return ga(t),void 0===e?t:va?ya(t,e):function(){return t.apply(e,arguments)}},ba=S,xa=Array.isArray||function(t){return"Array"===ba(t)},wa=w,Aa=i,_a=F,ka=ui,Sa=or,Ea=function(){},Ma=W("Reflect","construct"),Ta=/^\s*(?:class|function)\b/,Pa=wa(Ta.exec),Oa=!Ta.test(Ea),Ia=function(t){if(!_a(t))return!1;try{return Ma(Ea,[],t),!0}catch(t){return!1}},Ra=function(t){if(!_a(t))return!1;switch(ka(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return Oa||!!Pa(Ta,Sa(t))}catch(t){return!0}};Ra.sham=!0;var Ca=!Ma||Aa((function(){var t;return Ia(Ia.call)||!Ia(Object)||!Ia((function(){t=!0}))||t}))?Ra:Ia,ja=xa,Da=Ca,La=U,za=$t("species"),Ba=Array,Fa=function(t){var e;return ja(t)&&(e=t.constructor,(Da(e)&&(e===Ba||ja(e.prototype))||La(e)&&null===(e=e[za]))&&(e=void 0)),void 0===e?Ba:e},Na=function(t,e){return new(Fa(t))(0===e?0:e)},Ua=ma,Ya=O,Ga=Lt,Wa=hn,Ha=Na,qa=w([].push),Xa=function(t){var e=1===t,r=2===t,n=3===t,i=4===t,a=6===t,o=7===t,s=5===t||a;return function(c,u,l,h){for(var f,d,p=Ga(c),g=Ya(p),v=Wa(g),y=Ua(u,l),m=0,b=h||Ha,x=e?b(c,v):r||o?b(c,0):void 0;v>m;m++)if((s||m in g)&&(d=y(f=g[m],m,p),t))if(e)x[m]=d;else if(d)switch(t){case 3:return!0;case 5:return f;case 6:return m;case 2:qa(x,f)}else switch(t){case 4:return!1;case 7:qa(x,f)}return a?-1:n||i?i:x}},Va={forEach:Xa(0),map:Xa(1),filter:Xa(2),some:Xa(3),every:Xa(4),find:Xa(5),findIndex:Xa(6),filterReject:Xa(7)},Qa=ti,Ka=r,Ja=u,Za=w,$a=a,to=nt,eo=i,ro=Ft,no=H,io=Ie,ao=z,oo=le,so=fi,co=v,uo=Bi,lo=vi,ho=Kr,fo=Fi,po=En,go=n,vo=Ee,yo=di,mo=l,bo=Qr,xo=Vi,wo=Ct,Ao=dr,_o=Wt,ko=$t,So=Qi,Eo=ra,Mo=sa,To=ha,Po=Mr,Oo=Va.forEach,Io=fr("hidden"),Ro="Symbol",Co="prototype",jo=Po.set,Do=Po.getterFor(Ro),Lo=Object[Co],zo=Ka.Symbol,Bo=zo&&zo[Co],Fo=Ka.RangeError,No=Ka.TypeError,Uo=Ka.QObject,Yo=go.f,Go=vo.f,Wo=fo.f,Ho=mo.f,qo=Za([].push),Xo=wo("symbols"),Vo=wo("op-symbols"),Qo=wo("wks"),Ko=!Uo||!Uo[Co]||!Uo[Co].findChild,Jo=function(t,e,r){var n=Yo(Lo,e);n&&delete Lo[e],Go(t,e,r),n&&t!==Lo&&Go(Lo,e,n)},Zo=$a&&eo((function(){return 7!==uo(Go({},"a",{get:function(){return Go(this,"a",{value:7}).a}})).a}))?Jo:Go,$o=function(t,e){var r=Xo[t]=uo(Bo);return jo(r,{type:Ro,tag:t,description:e}),$a||(r.description=e),r},ts=function(t,e,r){t===Lo&&ts(Vo,e,r),io(t);var n=oo(e);return io(r),ro(Xo,n)?(r.enumerable?(ro(t,Io)&&t[Io][n]&&(t[Io][n]=!1),r=uo(r,{enumerable:co(0,!1)})):(ro(t,Io)||Go(t,Io,co(1,uo(null))),t[Io][n]=!0),Zo(t,n,r)):Go(t,n,r)},es=function(t,e){io(t);var r=ao(e),n=lo(r).concat(as(r));return Oo(n,(function(e){$a&&!Ja(rs,r,e)||ts(t,e,r[e])})),t},rs=function(t){var e=oo(t),r=Ja(Ho,this,e);return!(this===Lo&&ro(Xo,e)&&!ro(Vo,e))&&(!(r||!ro(this,e)||!ro(Xo,e)||ro(this,Io)&&this[Io][e])||r)},ns=function(t,e){var r=ao(t),n=oo(e);if(r!==Lo||!ro(Xo,n)||ro(Vo,n)){var i=Yo(r,n);return!i||!ro(Xo,n)||ro(r,Io)&&r[Io][n]||(i.enumerable=!0),i}},is=function(t){var e=Wo(ao(t)),r=[];return Oo(e,(function(t){ro(Xo,t)||ro(Ao,t)||qo(r,t)})),r},as=function(t){var e=t===Lo,r=Wo(e?Vo:ao(t)),n=[];return Oo(r,(function(t){!ro(Xo,t)||e&&!ro(Lo,t)||qo(n,Xo[t])})),n};to||(zo=function(){if(no(Bo,this))throw new No("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?so(arguments[0]):void 0,e=_o(t),r=function(t){var n=void 0===this?Ka:this;n===Lo&&Ja(r,Vo,t),ro(n,Io)&&ro(n[Io],e)&&(n[Io][e]=!1);var i=co(1,t);try{Zo(n,e,i)}catch(t){if(!(t instanceof Fo))throw t;Jo(n,e,i)}};return $a&&Ko&&Zo(Lo,e,{configurable:!0,set:r}),$o(e,t)},bo(Bo=zo[Co],"toString",(function(){return Do(this).tag})),bo(zo,"withoutSetter",(function(t){return $o(_o(t),t)})),mo.f=rs,vo.f=ts,yo.f=es,go.f=ns,ho.f=fo.f=is,po.f=as,So.f=function(t){return $o(ko(t),t)},$a&&(xo(Bo,"description",{configurable:!0,get:function(){return Do(this).description}}),bo(Lo,"propertyIsEnumerable",rs,{unsafe:!0}))),Qa({global:!0,constructor:!0,wrap:!0,forced:!to,sham:!to},{Symbol:zo}),Oo(lo(Qo),(function(t){Eo(t)})),Qa({target:Ro,stat:!0,forced:!to},{useSetter:function(){Ko=!0},useSimple:function(){Ko=!1}}),Qa({target:"Object",stat:!0,forced:!to,sham:!$a},{create:function(t,e){return void 0===e?uo(t):es(uo(t),e)},defineProperty:ts,defineProperties:es,getOwnPropertyDescriptor:ns}),Qa({target:"Object",stat:!0,forced:!to},{getOwnPropertyNames:is}),Mo(),To(zo,Ro),Ao[Io]=!0;var os=nt&&!!Symbol.for&&!!Symbol.keyFor,ss=ti,cs=W,us=Ft,ls=fi,hs=Ct,fs=os,ds=hs("string-to-symbol-registry"),ps=hs("symbol-to-string-registry");ss({target:"Symbol",stat:!0,forced:!fs},{for:function(t){var e=ls(t);if(us(ds,e))return ds[e];var r=cs("Symbol")(e);return ds[e]=r,ps[r]=e,r}});var gs=ti,vs=Ft,ys=ut,ms=ht,bs=os,xs=Ct("symbol-to-string-registry");gs({target:"Symbol",stat:!0,forced:!bs},{keyFor:function(t){if(!ys(t))throw new TypeError(ms(t)+" is not a symbol");if(vs(xs,t))return xs[t]}});var ws=o,As=Function.prototype,_s=As.apply,ks=As.call,Ss="object"==typeof Reflect&&Reflect.apply||(ws?ks.bind(_s):function(){return ks.apply(_s,arguments)}),Es=xa,Ms=F,Ts=S,Ps=fi,Os=w([].push),Is=ti,Rs=W,Cs=Ss,js=u,Ds=w,Ls=i,zs=F,Bs=ut,Fs=Ni,Ns=function(t){if(Ms(t))return t;if(Es(t)){for(var e=t.length,r=[],n=0;n<e;n++){var i=t[n];"string"==typeof i?Os(r,i):"number"!=typeof i&&"Number"!==Ts(i)&&"String"!==Ts(i)||Os(r,Ps(i))}var a=r.length,o=!0;return function(t,e){if(o)return o=!1,e;if(Es(this))return e;for(var n=0;n<a;n++)if(r[n]===t)return e}}},Us=nt,Ys=String,Gs=Rs("JSON","stringify"),Ws=Ds(/./.exec),Hs=Ds("".charAt),qs=Ds("".charCodeAt),Xs=Ds("".replace),Vs=Ds(1..toString),Qs=/[\uD800-\uDFFF]/g,Ks=/^[\uD800-\uDBFF]$/,Js=/^[\uDC00-\uDFFF]$/,Zs=!Us||Ls((function(){var t=Rs("Symbol")("stringify detection");return"[null]"!==Gs([t])||"{}"!==Gs({a:t})||"{}"!==Gs(Object(t))})),$s=Ls((function(){return'"\\udf06\\ud834"'!==Gs("\udf06\ud834")||'"\\udead"'!==Gs("\udead")})),tc=function(t,e){var r=Fs(arguments),n=Ns(e);if(zs(n)||void 0!==t&&!Bs(t))return r[1]=function(t,e){if(zs(n)&&(e=js(n,this,Ys(t),e)),!Bs(e))return e},Cs(Gs,null,r)},ec=function(t,e,r){var n=Hs(r,e-1),i=Hs(r,e+1);return Ws(Ks,t)&&!Ws(Js,i)||Ws(Js,t)&&!Ws(Ks,n)?"\\u"+Vs(qs(t,0),16):t};Gs&&Is({target:"JSON",stat:!0,arity:3,forced:Zs||$s},{stringify:function(t,e,r){var n=Fs(arguments),i=Cs(Zs?tc:Gs,null,n);return $s&&"string"==typeof i?Xs(i,Qs,ec):i}});var rc=En,nc=Lt;ti({target:"Object",stat:!0,forced:!nt||i((function(){rc.f(1)}))},{getOwnPropertySymbols:function(t){var e=rc.f;return e?e(nc(t)):[]}});var ic=ti,ac=a,oc=w,sc=Ft,cc=F,uc=H,lc=fi,hc=Vi,fc=zn,dc=r.Symbol,pc=dc&&dc.prototype;if(ac&&cc(dc)&&(!("description"in pc)||void 0!==dc().description)){var gc={},vc=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:lc(arguments[0]),e=uc(pc,this)?new dc(t):void 0===t?dc():dc(t);return""===t&&(gc[e]=!0),e};fc(vc,dc),vc.prototype=pc,pc.constructor=vc;var yc="Symbol(description detection)"===String(dc("description detection")),mc=oc(pc.valueOf),bc=oc(pc.toString),xc=/^Symbol\((.*)\)[^)]+$/,wc=oc("".replace),Ac=oc("".slice);hc(pc,"description",{configurable:!0,get:function(){var t=mc(this);if(sc(gc,t))return"";var e=bc(t),r=yc?Ac(e,7,-1):wc(e,xc,"$1");return""===r?void 0:r}}),ic({global:!0,constructor:!0,forced:!0},{Symbol:vc})}ra("asyncIterator"),ra("hasInstance"),ra("isConcatSpreadable"),ra("iterator"),ra("match"),ra("matchAll"),ra("replace"),ra("search"),ra("species"),ra("split");var _c=sa;ra("toPrimitive"),_c();var kc=W,Sc=ha;ra("toStringTag"),Sc(kc("Symbol"),"Symbol"),ra("unscopables");var Ec=w,Mc=gt,Tc=function(t,e,r){try{return Ec(Mc(Object.getOwnPropertyDescriptor(t,e)[r]))}catch(t){}},Pc=U,Oc=function(t){return Pc(t)||null===t},Ic=Oc,Rc=String,Cc=TypeError,jc=function(t){if(Ic(t))return t;throw new Cc("Can't set "+Rc(t)+" as a prototype")},Dc=Tc,Lc=Ie,zc=jc,Bc=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,r={};try{(t=Dc(Object.prototype,"__proto__","set"))(r,[]),e=r instanceof Array}catch(t){}return function(r,n){return Lc(r),zc(n),e?t(r,n):r.__proto__=n,r}}():void 0),Fc=Ee.f,Nc=function(t,e,r){r in t||Fc(t,r,{configurable:!0,get:function(){return e[r]},set:function(t){e[r]=t}})},Uc=F,Yc=U,Gc=Bc,Wc=function(t,e,r){var n,i;return Gc&&Uc(n=e.constructor)&&n!==r&&Yc(i=n.prototype)&&i!==r.prototype&&Gc(t,i),t},Hc=fi,qc=function(t,e){return void 0===t?arguments.length<2?"":e:Hc(t)},Xc=U,Vc=He,Qc=function(t,e){Xc(e)&&"cause"in e&&Vc(t,"cause",e.cause)},Kc=Error,Jc=w("".replace),Zc=String(new Kc("zxcasd").stack),$c=/\n\s*at [^:]*:[^\n]*/,tu=$c.test(Zc),eu=function(t,e){if(tu&&"string"==typeof t&&!Kc.prepareStackTrace)for(;e--;)t=Jc(t,$c,"");return t},ru=v,nu=!i((function(){var t=new Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",ru(1,7)),7!==t.stack)})),iu=He,au=eu,ou=nu,su=Error.captureStackTrace,cu=function(t,e,r,n){ou&&(su?su(t,e):iu(t,"stack",au(r,n)))},uu=W,lu=Ft,hu=He,fu=H,du=Bc,pu=zn,gu=Nc,vu=Wc,yu=qc,mu=Qc,bu=cu,xu=a,wu=function(t,e,r,n){var i="stackTraceLimit",a=n?2:1,o=t.split("."),s=o[o.length-1],c=uu.apply(null,o);if(c){var u=c.prototype;if(lu(u,"cause")&&delete u.cause,!r)return c;var l=uu("Error"),h=e((function(t,e){var r=yu(n?e:t,void 0),i=n?new c(t):new c;return void 0!==r&&hu(i,"message",r),bu(i,h,i.stack,2),this&&fu(u,this)&&vu(i,this,h),arguments.length>a&&mu(i,arguments[a]),i}));h.prototype=u,"Error"!==s?du?du(h,l):pu(h,l,{name:!0}):xu&&i in c&&(gu(h,c,i),gu(h,c,"prepareStackTrace")),pu(h,c);try{u.name!==s&&hu(u,"name",s),u.constructor=h}catch(t){}return h}},Au=ti,_u=Ss,ku=wu,Su="WebAssembly",Eu=r[Su],Mu=7!==new Error("e",{cause:7}).cause,Tu=function(t,e){var r={};r[t]=ku(t,e,Mu),Au({global:!0,constructor:!0,arity:1,forced:Mu},r)},Pu=function(t,e){if(Eu&&Eu[t]){var r={};r[t]=ku(Su+"."+t,e,Mu),Au({target:Su,stat:!0,constructor:!0,arity:1,forced:Mu},r)}};Tu("Error",(function(t){return function(e){return _u(t,this,arguments)}})),Tu("EvalError",(function(t){return function(e){return _u(t,this,arguments)}})),Tu("RangeError",(function(t){return function(e){return _u(t,this,arguments)}})),Tu("ReferenceError",(function(t){return function(e){return _u(t,this,arguments)}})),Tu("SyntaxError",(function(t){return function(e){return _u(t,this,arguments)}})),Tu("TypeError",(function(t){return function(e){return _u(t,this,arguments)}})),Tu("URIError",(function(t){return function(e){return _u(t,this,arguments)}})),Pu("CompileError",(function(t){return function(e){return _u(t,this,arguments)}})),Pu("LinkError",(function(t){return function(e){return _u(t,this,arguments)}})),Pu("RuntimeError",(function(t){return function(e){return _u(t,this,arguments)}}));var Ou=a,Iu=i,Ru=Ie,Cu=qc,ju=Error.prototype.toString,Du=Iu((function(){if(Ou){var t=Object.create(Object.defineProperty({},"name",{get:function(){return this===t}}));if("true"!==ju.call(t))return!0}return"2: 1"!==ju.call({message:1,name:2})||"Error"!==ju.call({})})),Lu=Du?function(){var t=Ru(this),e=Cu(t.name,"Error"),r=Cu(t.message);return e?r?e+": "+r:e:r}:ju,zu=Qr,Bu=Lu,Fu=Error.prototype;Fu.toString!==Bu&&zu(Fu,"toString",Bu);var Nu=!i((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype})),Uu=Ft,Yu=F,Gu=Lt,Wu=Nu,Hu=fr("IE_PROTO"),qu=Object,Xu=qu.prototype,Vu=Wu?qu.getPrototypeOf:function(t){var e=Gu(t);if(Uu(e,Hu))return e[Hu];var r=e.constructor;return Yu(r)&&e instanceof r?r.prototype:e instanceof qu?Xu:null},Qu={},Ku=Qu,Ju=$t("iterator"),Zu=Array.prototype,$u=function(t){return void 0!==t&&(Ku.Array===t||Zu[Ju]===t)},tl=ui,el=mt,rl=I,nl=Qu,il=$t("iterator"),al=function(t){if(!rl(t))return el(t,il)||el(t,"@@iterator")||nl[tl(t)]},ol=u,sl=gt,cl=Ie,ul=ht,ll=al,hl=TypeError,fl=function(t,e){var r=arguments.length<2?ll(t):e;if(sl(r))return cl(ol(r,t));throw new hl(ul(t)+" is not iterable")},dl=u,pl=Ie,gl=mt,vl=function(t,e,r){var n,i;pl(t);try{if(!(n=gl(t,"return"))){if("throw"===e)throw r;return r}n=dl(n,t)}catch(t){i=!0,n=t}if("throw"===e)throw r;if(i)throw n;return pl(n),r},yl=ma,ml=u,bl=Ie,xl=ht,wl=$u,Al=hn,_l=H,kl=fl,Sl=al,El=vl,Ml=TypeError,Tl=function(t,e){this.stopped=t,this.result=e},Pl=Tl.prototype,Ol=function(t,e,r){var n,i,a,o,s,c,u,l=r&&r.that,h=!(!r||!r.AS_ENTRIES),f=!(!r||!r.IS_RECORD),d=!(!r||!r.IS_ITERATOR),p=!(!r||!r.INTERRUPTED),g=yl(e,l),v=function(t){return n&&El(n,"normal",t),new Tl(!0,t)},y=function(t){return h?(bl(t),p?g(t[0],t[1],v):g(t[0],t[1])):p?g(t,v):g(t)};if(f)n=t.iterator;else if(d)n=t;else{if(!(i=Sl(t)))throw new Ml(xl(t)+" is not iterable");if(wl(i)){for(a=0,o=Al(t);o>a;a++)if((s=y(t[a]))&&_l(Pl,s))return s;return new Tl(!1)}n=kl(t,i)}for(c=f?t.next:n.next;!(u=ml(c,n)).done;){try{s=y(u.value)}catch(t){El(n,"throw",t)}if("object"==typeof s&&s&&_l(Pl,s))return s}return new Tl(!1)},Il=ti,Rl=H,Cl=Vu,jl=Bc,Dl=zn,Ll=Bi,zl=He,Bl=v,Fl=Qc,Nl=cu,Ul=Ol,Yl=qc,Gl=$t("toStringTag"),Wl=Error,Hl=[].push,ql=function(t,e){var r,n=Rl(Xl,this);jl?r=jl(new Wl,n?Cl(this):Xl):(r=n?this:Ll(Xl),zl(r,Gl,"Error")),void 0!==e&&zl(r,"message",Yl(e)),Nl(r,ql,r.stack,1),arguments.length>2&&Fl(r,arguments[2]);var i=[];return Ul(t,Hl,{that:i}),zl(r,"errors",i),r};jl?jl(ql,Wl):Dl(ql,Wl,{name:!0});var Xl=ql.prototype=Ll(Wl.prototype,{constructor:Bl(1,ql),message:Bl(1,""),name:Bl(1,"AggregateError")});Il({global:!0,constructor:!0,arity:2},{AggregateError:ql});var Vl=ti,Ql=Ss,Kl=i,Jl=wu,Zl="AggregateError",$l=W(Zl),th=!Kl((function(){return 1!==$l([1]).errors[0]}))&&Kl((function(){return 7!==$l([1],Zl,{cause:7}).cause}));Vl({global:!0,constructor:!0,arity:2,forced:th},{AggregateError:Jl(Zl,(function(t){return function(e,r){return Ql(t,this,arguments)}}),th,!0)});var eh=$t,rh=Bi,nh=Ee.f,ih=eh("unscopables"),ah=Array.prototype;void 0===ah[ih]&&nh(ah,ih,{configurable:!0,value:rh(null)});var oh=function(t){ah[ih][t]=!0},sh=Lt,ch=hn,uh=en,lh=oh;ti({target:"Array",proto:!0},{at:function(t){var e=sh(this),r=ch(e),n=uh(t),i=n>=0?n:r+n;return i<0||i>=r?void 0:e[i]}}),lh("at");var hh=TypeError,fh=function(t){if(t>9007199254740991)throw hh("Maximum allowed index exceeded");return t},dh=a,ph=Ee,gh=v,vh=function(t,e,r){dh?ph.f(t,e,gh(0,r)):t[e]=r},yh=i,mh=$,bh=$t("species"),xh=function(t){return mh>=51||!yh((function(){var e=[];return(e.constructor={})[bh]=function(){return{foo:1}},1!==e[t](Boolean).foo}))},wh=ti,Ah=i,_h=xa,kh=U,Sh=Lt,Eh=hn,Mh=fh,Th=vh,Ph=Na,Oh=xh,Ih=$,Rh=$t("isConcatSpreadable"),Ch=Ih>=51||!Ah((function(){var t=[];return t[Rh]=!1,t.concat()[0]!==t})),jh=function(t){if(!kh(t))return!1;var e=t[Rh];return void 0!==e?!!e:_h(t)};wh({target:"Array",proto:!0,arity:1,forced:!Ch||!Oh("concat")},{concat:function(t){var e,r,n,i,a,o=Sh(this),s=Ph(o,0),c=0;for(e=-1,n=arguments.length;e<n;e++)if(jh(a=-1===e?o:arguments[e]))for(i=Eh(a),Mh(c+i),r=0;r<i;r++,c++)r in a&&Th(s,c,a[r]);else Mh(c+1),Th(s,c++,a);return s.length=c,s}});var Dh=ht,Lh=TypeError,zh=function(t,e){if(!delete t[e])throw new Lh("Cannot delete property "+Dh(e)+" of "+Dh(t))},Bh=Lt,Fh=on,Nh=hn,Uh=zh,Yh=Math.min,Gh=[].copyWithin||function(t,e){var r=Bh(this),n=Nh(r),i=Fh(t,n),a=Fh(e,n),o=arguments.length>2?arguments[2]:void 0,s=Yh((void 0===o?n:Fh(o,n))-a,n-i),c=1;for(a<i&&i<a+s&&(c=-1,a+=s-1,i+=s-1);s-- >0;)a in r?r[i]=r[a]:Uh(r,i),i+=c,a+=c;return r},Wh=oh;ti({target:"Array",proto:!0},{copyWithin:Gh}),Wh("copyWithin");var Hh=i,qh=function(t,e){var r=[][t];return!!r&&Hh((function(){r.call(null,e||function(){return 1},1)}))},Xh=Va.every;ti({target:"Array",proto:!0,forced:!qh("every")},{every:function(t){return Xh(this,t,arguments.length>1?arguments[1]:void 0)}});var Vh=Lt,Qh=on,Kh=hn,Jh=function(t){for(var e=Vh(this),r=Kh(e),n=arguments.length,i=Qh(n>1?arguments[1]:void 0,r),a=n>2?arguments[2]:void 0,o=void 0===a?r:Qh(a,r);o>i;)e[i++]=t;return e},Zh=oh;ti({target:"Array",proto:!0},{fill:Jh}),Zh("fill");var $h=Va.filter;ti({target:"Array",proto:!0,forced:!xh("filter")},{filter:function(t){return $h(this,t,arguments.length>1?arguments[1]:void 0)}});var tf=ti,ef=Va.find,rf=oh,nf="find",af=!0;nf in[]&&Array(1)[nf]((function(){af=!1})),tf({target:"Array",proto:!0,forced:af},{find:function(t){return ef(this,t,arguments.length>1?arguments[1]:void 0)}}),rf(nf);var of=ti,sf=Va.findIndex,cf=oh,uf="findIndex",lf=!0;uf in[]&&Array(1)[uf]((function(){lf=!1})),of({target:"Array",proto:!0,forced:lf},{findIndex:function(t){return sf(this,t,arguments.length>1?arguments[1]:void 0)}}),cf(uf);var hf=ma,ff=O,df=Lt,pf=hn,gf=function(t){var e=1===t;return function(r,n,i){for(var a,o=df(r),s=ff(o),c=pf(s),u=hf(n,i);c-- >0;)if(u(a=s[c],c,o))switch(t){case 0:return a;case 1:return c}return e?-1:void 0}},vf={findLast:gf(0),findLastIndex:gf(1)},yf=vf.findLast,mf=oh;ti({target:"Array",proto:!0},{findLast:function(t){return yf(this,t,arguments.length>1?arguments[1]:void 0)}}),mf("findLast");var bf=vf.findLastIndex,xf=oh;ti({target:"Array",proto:!0},{findLastIndex:function(t){return bf(this,t,arguments.length>1?arguments[1]:void 0)}}),xf("findLastIndex");var wf=xa,Af=hn,_f=fh,kf=ma,Sf=function(t,e,r,n,i,a,o,s){for(var c,u,l=i,h=0,f=!!o&&kf(o,s);h<n;)h in r&&(c=f?f(r[h],h,e):r[h],a>0&&wf(c)?(u=Af(c),l=Sf(t,e,c,u,l,a-1)-1):(_f(l+1),t[l]=c),l++),h++;return l},Ef=Sf,Mf=Ef,Tf=Lt,Pf=hn,Of=en,If=Na;ti({target:"Array",proto:!0},{flat:function(){var t=arguments.length?arguments[0]:void 0,e=Tf(this),r=Pf(e),n=If(e,0);return n.length=Mf(n,e,e,r,0,void 0===t?1:Of(t)),n}});var Rf=Ef,Cf=gt,jf=Lt,Df=hn,Lf=Na;ti({target:"Array",proto:!0},{flatMap:function(t){var e,r=jf(this),n=Df(r);return Cf(t),(e=Lf(r,0)).length=Rf(e,r,r,n,0,1,t,arguments.length>1?arguments[1]:void 0),e}});var zf=Va.forEach,Bf=qh("forEach")?[].forEach:function(t){return zf(this,t,arguments.length>1?arguments[1]:void 0)};ti({target:"Array",proto:!0,forced:[].forEach!==Bf},{forEach:Bf});var Ff=Ie,Nf=vl,Uf=ma,Yf=u,Gf=Lt,Wf=function(t,e,r,n){try{return n?e(Ff(r)[0],r[1]):e(r)}catch(e){Nf(t,"throw",e)}},Hf=$u,qf=Ca,Xf=hn,Vf=vh,Qf=fl,Kf=al,Jf=Array,Zf=function(t){var e=Gf(t),r=qf(this),n=arguments.length,i=n>1?arguments[1]:void 0,a=void 0!==i;a&&(i=Uf(i,n>2?arguments[2]:void 0));var o,s,c,u,l,h,f=Kf(e),d=0;if(!f||this===Jf&&Hf(f))for(o=Xf(e),s=r?new this(o):Jf(o);o>d;d++)h=a?i(e[d],d):e[d],Vf(s,d,h);else for(l=(u=Qf(e,f)).next,s=r?new this:[];!(c=Yf(l,u)).done;d++)h=a?Wf(u,i,[c.value,d],!0):c.value,Vf(s,d,h);return s.length=d,s},$f=$t("iterator"),td=!1;try{var ed=0,rd={next:function(){return{done:!!ed++}},return:function(){td=!0}};rd[$f]=function(){return this},Array.from(rd,(function(){throw 2}))}catch(t){}var nd=function(t,e){try{if(!e&&!td)return!1}catch(t){return!1}var r=!1;try{var n={};n[$f]=function(){return{next:function(){return{done:r=!0}}}},t(n)}catch(t){}return r},id=Zf;ti({target:"Array",stat:!0,forced:!nd((function(t){Array.from(t)}))},{from:id});var ad=vn.includes,od=oh;ti({target:"Array",proto:!0,forced:i((function(){return!Array(1).includes()}))},{includes:function(t){return ad(this,t,arguments.length>1?arguments[1]:void 0)}}),od("includes");var sd=ti,cd=vn.indexOf,ud=qh,ld=pa([].indexOf),hd=!!ld&&1/ld([1],1,-0)<0;sd({target:"Array",proto:!0,forced:hd||!ud("indexOf")},{indexOf:function(t){var e=arguments.length>1?arguments[1]:void 0;return hd?ld(this,t,e)||0:cd(this,t,e)}}),ti({target:"Array",stat:!0},{isArray:xa});var fd,dd,pd,gd=i,vd=F,yd=U,md=Vu,bd=Qr,xd=$t("iterator"),wd=!1;[].keys&&("next"in(pd=[].keys())?(dd=md(md(pd)))!==Object.prototype&&(fd=dd):wd=!0);var Ad=!yd(fd)||gd((function(){var t={};return fd[xd].call(t)!==t}));Ad&&(fd={}),vd(fd[xd])||bd(fd,xd,(function(){return this}));var _d={IteratorPrototype:fd,BUGGY_SAFARI_ITERATORS:wd},kd=_d.IteratorPrototype,Sd=Bi,Ed=v,Md=ha,Td=Qu,Pd=function(){return this},Od=function(t,e,r,n){var i=e+" Iterator";return t.prototype=Sd(kd,{next:Ed(+!n,r)}),Md(t,i,!1),Td[i]=Pd,t},Id=ti,Rd=u,Cd=F,jd=Od,Dd=Vu,Ld=Bc,zd=ha,Bd=He,Fd=Qr,Nd=Qu,Ud=Ze.PROPER,Yd=Ze.CONFIGURABLE,Gd=_d.IteratorPrototype,Wd=_d.BUGGY_SAFARI_ITERATORS,Hd=$t("iterator"),qd="keys",Xd="values",Vd="entries",Qd=function(){return this},Kd=function(t,e,r,n,i,a,o){jd(r,e,n);var s,c,u,l=function(t){if(t===i&&g)return g;if(!Wd&&t&&t in d)return d[t];switch(t){case qd:case Xd:case Vd:return function(){return new r(this,t)}}return function(){return new r(this)}},h=e+" Iterator",f=!1,d=t.prototype,p=d[Hd]||d["@@iterator"]||i&&d[i],g=!Wd&&p||l(i),v="Array"===e&&d.entries||p;if(v&&(s=Dd(v.call(new t)))!==Object.prototype&&s.next&&(Dd(s)!==Gd&&(Ld?Ld(s,Gd):Cd(s[Hd])||Fd(s,Hd,Qd)),zd(s,h,!0)),Ud&&i===Xd&&p&&p.name!==Xd&&(Yd?Bd(d,"name",Xd):(f=!0,g=function(){return Rd(p,this)})),i)if(c={values:l(Xd),keys:a?g:l(qd),entries:l(Vd)},o)for(u in c)(Wd||f||!(u in d))&&Fd(d,u,c[u]);else Id({target:e,proto:!0,forced:Wd||f},c);return d[Hd]!==g&&Fd(d,Hd,g,{name:i}),Nd[e]=g,c},Jd=function(t,e){return{value:t,done:e}},Zd=z,$d=oh,tp=Qu,ep=Mr,rp=Ee.f,np=Kd,ip=Jd,ap=a,op="Array Iterator",sp=ep.set,cp=ep.getterFor(op),up=np(Array,"Array",(function(t,e){sp(this,{type:op,target:Zd(t),index:0,kind:e})}),(function(){var t=cp(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=void 0,ip(void 0,!0);switch(t.kind){case"keys":return ip(r,!1);case"values":return ip(e[r],!1)}return ip([r,e[r]],!1)}),"values"),lp=tp.Arguments=tp.Array;if($d("keys"),$d("values"),$d("entries"),ap&&"values"!==lp.name)try{rp(lp,"name",{value:"values"})}catch(t){}var hp=ti,fp=O,dp=z,pp=qh,gp=w([].join);hp({target:"Array",proto:!0,forced:fp!==Object||!pp("join",",")},{join:function(t){return gp(dp(this),void 0===t?",":t)}});var vp=Ss,yp=z,mp=en,bp=hn,xp=qh,wp=Math.min,Ap=[].lastIndexOf,_p=!!Ap&&1/[1].lastIndexOf(1,-0)<0,kp=xp("lastIndexOf"),Sp=_p||!kp?function(t){if(_p)return vp(Ap,this,arguments)||0;var e=yp(this),r=bp(e);if(0===r)return-1;var n=r-1;for(arguments.length>1&&(n=wp(n,mp(arguments[1]))),n<0&&(n=r+n);n>=0;n--)if(n in e&&e[n]===t)return n||0;return-1}:Ap;ti({target:"Array",proto:!0,forced:Sp!==[].lastIndexOf},{lastIndexOf:Sp});var Ep=Va.map;ti({target:"Array",proto:!0,forced:!xh("map")},{map:function(t){return Ep(this,t,arguments.length>1?arguments[1]:void 0)}});var Mp=Ca,Tp=vh,Pp=Array;ti({target:"Array",stat:!0,forced:i((function(){function t(){}return!(Pp.of.call(t)instanceof t)}))},{of:function(){for(var t=0,e=arguments.length,r=new(Mp(this)?this:Pp)(e);e>t;)Tp(r,t,arguments[t++]);return r.length=e,r}});var Op=a,Ip=xa,Rp=TypeError,Cp=Object.getOwnPropertyDescriptor,jp=Op&&!function(){if(void 0!==this)return!0;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(t){return t instanceof TypeError}}()?function(t,e){if(Ip(t)&&!Cp(t,"length").writable)throw new Rp("Cannot set read only .length");return t.length=e}:function(t,e){return t.length=e},Dp=Lt,Lp=hn,zp=jp,Bp=fh;ti({target:"Array",proto:!0,arity:1,forced:i((function(){return 4294967297!==[].push.call({length:4294967296},1)}))||!function(){try{Object.defineProperty([],"length",{writable:!1}).push()}catch(t){return t instanceof TypeError}}()},{push:function(t){var e=Dp(this),r=Lp(e),n=arguments.length;Bp(r+n);for(var i=0;i<n;i++)e[r]=arguments[i],r++;return zp(e,r),r}});var Fp=gt,Np=Lt,Up=O,Yp=hn,Gp=TypeError,Wp="Reduce of empty array with no initial value",Hp=function(t){return function(e,r,n,i){var a=Np(e),o=Up(a),s=Yp(a);if(Fp(r),0===s&&n<2)throw new Gp(Wp);var c=t?s-1:0,u=t?-1:1;if(n<2)for(;;){if(c in o){i=o[c],c+=u;break}if(c+=u,t?c<0:s<=c)throw new Gp(Wp)}for(;t?c>=0:s>c;c+=u)c in o&&(i=r(i,o[c],c,a));return i}},qp={left:Hp(!1),right:Hp(!0)},Xp="process"===S(r.process),Vp=qp.left;ti({target:"Array",proto:!0,forced:!Xp&&$>79&&$<83||!qh("reduce")},{reduce:function(t){var e=arguments.length;return Vp(this,t,e,e>1?arguments[1]:void 0)}});var Qp=qp.right;ti({target:"Array",proto:!0,forced:!Xp&&$>79&&$<83||!qh("reduceRight")},{reduceRight:function(t){return Qp(this,t,arguments.length,arguments.length>1?arguments[1]:void 0)}});var Kp=ti,Jp=xa,Zp=w([].reverse),$p=[1,2];Kp({target:"Array",proto:!0,forced:String($p)===String($p.reverse())},{reverse:function(){return Jp(this)&&(this.length=this.length),Zp(this)}});var tg=ti,eg=xa,rg=Ca,ng=U,ig=on,ag=hn,og=z,sg=vh,cg=$t,ug=Ni,lg=xh("slice"),hg=cg("species"),fg=Array,dg=Math.max;tg({target:"Array",proto:!0,forced:!lg},{slice:function(t,e){var r,n,i,a=og(this),o=ag(a),s=ig(t,o),c=ig(void 0===e?o:e,o);if(eg(a)&&(r=a.constructor,(rg(r)&&(r===fg||eg(r.prototype))||ng(r)&&null===(r=r[hg]))&&(r=void 0),r===fg||void 0===r))return ug(a,s,c);for(n=new(void 0===r?fg:r)(dg(c-s,0)),i=0;s<c;s++,i++)s in a&&sg(n,i,a[s]);return n.length=i,n}});var pg=Va.some;ti({target:"Array",proto:!0,forced:!qh("some")},{some:function(t){return pg(this,t,arguments.length>1?arguments[1]:void 0)}});var gg=Ni,vg=Math.floor,yg=function(t,e){var r=t.length;if(r<8)for(var n,i,a=1;a<r;){for(i=a,n=t[a];i&&e(t[i-1],n)>0;)t[i]=t[--i];i!==a++&&(t[i]=n)}else for(var o=vg(r/2),s=yg(gg(t,0,o),e),c=yg(gg(t,o),e),u=s.length,l=c.length,h=0,f=0;h<u||f<l;)t[h+f]=h<u&&f<l?e(s[h],c[f])<=0?s[h++]:c[f++]:h<u?s[h++]:c[f++];return t},mg=yg,bg=q.match(/firefox\/(\d+)/i),xg=!!bg&&+bg[1],wg=/MSIE|Trident/.test(q),Ag=q.match(/AppleWebKit\/(\d+)\./),_g=!!Ag&&+Ag[1],kg=ti,Sg=w,Eg=gt,Mg=Lt,Tg=hn,Pg=zh,Og=fi,Ig=i,Rg=mg,Cg=qh,jg=xg,Dg=wg,Lg=$,zg=_g,Bg=[],Fg=Sg(Bg.sort),Ng=Sg(Bg.push),Ug=Ig((function(){Bg.sort(void 0)})),Yg=Ig((function(){Bg.sort(null)})),Gg=Cg("sort"),Wg=!Ig((function(){if(Lg)return Lg<70;if(!(jg&&jg>3)){if(Dg)return!0;if(zg)return zg<603;var t,e,r,n,i="";for(t=65;t<76;t++){switch(e=String.fromCharCode(t),t){case 66:case 69:case 70:case 72:r=3;break;case 68:case 71:r=4;break;default:r=2}for(n=0;n<47;n++)Bg.push({k:e+n,v:r})}for(Bg.sort((function(t,e){return e.v-t.v})),n=0;n<Bg.length;n++)e=Bg[n].k.charAt(0),i.charAt(i.length-1)!==e&&(i+=e);return"DGBEFHACIJK"!==i}}));kg({target:"Array",proto:!0,forced:Ug||!Yg||!Gg||!Wg},{sort:function(t){void 0!==t&&Eg(t);var e=Mg(this);if(Wg)return void 0===t?Fg(e):Fg(e,t);var r,n,i=[],a=Tg(e);for(n=0;n<a;n++)n in e&&Ng(i,e[n]);for(Rg(i,function(t){return function(e,r){return void 0===r?-1:void 0===e?1:void 0!==t?+t(e,r)||0:Og(e)>Og(r)?1:-1}}(t)),r=Tg(i),n=0;n<r;)e[n]=i[n++];for(;n<a;)Pg(e,n++);return e}});var Hg=W,qg=Vi,Xg=a,Vg=$t("species"),Qg=function(t){var e=Hg(t);Xg&&e&&!e[Vg]&&qg(e,Vg,{configurable:!0,get:function(){return this}})};Qg("Array");var Kg=ti,Jg=Lt,Zg=on,$g=en,tv=hn,ev=jp,rv=fh,nv=Na,iv=vh,av=zh,ov=xh("splice"),sv=Math.max,cv=Math.min;Kg({target:"Array",proto:!0,forced:!ov},{splice:function(t,e){var r,n,i,a,o,s,c=Jg(this),u=tv(c),l=Zg(t,u),h=arguments.length;for(0===h?r=n=0:1===h?(r=0,n=u-l):(r=h-2,n=cv(sv($g(e),0),u-l)),rv(u+r-n),i=nv(c,n),a=0;a<n;a++)(o=l+a)in c&&iv(i,a,c[o]);if(i.length=n,r<n){for(a=l;a<u-n;a++)s=a+r,(o=a+n)in c?c[s]=c[o]:av(c,s);for(a=u;a>u-n+r;a--)av(c,a-1)}else if(r>n)for(a=u-n;a>l;a--)s=a+r-1,(o=a+n-1)in c?c[s]=c[o]:av(c,s);for(a=0;a<r;a++)c[a+l]=arguments[a+2];return ev(c,u-n+r),i}});var uv=hn,lv=function(t,e){for(var r=uv(t),n=new e(r),i=0;i<r;i++)n[i]=t[r-i-1];return n},hv=lv,fv=z,dv=oh,pv=Array;ti({target:"Array",proto:!0},{toReversed:function(){return hv(fv(this),pv)}}),dv("toReversed");var gv=hn,vv=function(t,e,r){for(var n=0,i=arguments.length>2?r:gv(e),a=new t(i);i>n;)a[n]=e[n++];return a},yv=r,mv=ti,bv=gt,xv=z,wv=vv,Av=function(t,e){var r=yv[t],n=r&&r.prototype;return n&&n[e]},_v=oh,kv=Array,Sv=w(Av("Array","sort"));mv({target:"Array",proto:!0},{toSorted:function(t){void 0!==t&&bv(t);var e=xv(this),r=wv(kv,e);return Sv(r,t)}}),_v("toSorted");var Ev=ti,Mv=oh,Tv=fh,Pv=hn,Ov=on,Iv=z,Rv=en,Cv=Array,jv=Math.max,Dv=Math.min;Ev({target:"Array",proto:!0},{toSpliced:function(t,e){var r,n,i,a,o=Iv(this),s=Pv(o),c=Ov(t,s),u=arguments.length,l=0;for(0===u?r=n=0:1===u?(r=0,n=s-c):(r=u-2,n=Dv(jv(Rv(e),0),s-c)),i=Tv(s+r-n),a=Cv(i);l<c;l++)a[l]=o[l];for(;l<c+r;l++)a[l]=arguments[l-c+2];for(;l<i;l++)a[l]=o[l+n-r];return a}}),Mv("toSpliced"),oh("flat"),oh("flatMap");var Lv=Lt,zv=hn,Bv=jp,Fv=zh,Nv=fh;ti({target:"Array",proto:!0,arity:1,forced:1!==[].unshift(0)||!function(){try{Object.defineProperty([],"length",{writable:!1}).unshift()}catch(t){return t instanceof TypeError}}()},{unshift:function(t){var e=Lv(this),r=zv(e),n=arguments.length;if(n){Nv(r+n);for(var i=r;i--;){var a=i+n;i in e?e[a]=e[i]:Fv(e,a)}for(var o=0;o<n;o++)e[o]=arguments[o]}return Bv(e,r+n)}});var Uv=hn,Yv=en,Gv=RangeError,Wv=function(t,e,r,n){var i=Uv(t),a=Yv(r),o=a<0?i+a:a;if(o>=i||o<0)throw new Gv("Incorrect index");for(var s=new e(i),c=0;c<i;c++)s[c]=c===o?n:t[c];return s},Hv=Wv,qv=z,Xv=Array;ti({target:"Array",proto:!0},{with:function(t,e){return Hv(qv(this),Xv,t,e)}});var Vv="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView,Qv=Qr,Kv=function(t,e,r){for(var n in e)Qv(t,n,e[n],r);return t},Jv=H,Zv=TypeError,$v=function(t,e){if(Jv(e,t))return t;throw new Zv("Incorrect invocation")},ty=en,ey=un,ry=RangeError,ny=function(t){if(void 0===t)return 0;var e=ty(t),r=ey(e);if(e!==r)throw new ry("Wrong length or index");return r},iy=Math.sign||function(t){var e=+t;return 0===e||e!=e?e:e<0?-1:1},ay=iy,oy=Math.abs,sy=2220446049250313e-31,cy=1/sy,uy=function(t,e,r,n){var i=+t,a=oy(i),o=ay(i);if(a<n)return o*function(t){return t+cy-cy}(a/n/e)*n*e;var s=(1+e/sy)*a,c=s-(s-a);return c>r||c!=c?o*(1/0):o*c},ly=Math.fround||function(t){return uy(t,1.1920928955078125e-7,34028234663852886e22,11754943508222875e-54)},hy=Array,fy=Math.abs,dy=Math.pow,py=Math.floor,gy=Math.log,vy=Math.LN2,yy={pack:function(t,e,r){var n,i,a,o=hy(r),s=8*r-e-1,c=(1<<s)-1,u=c>>1,l=23===e?dy(2,-24)-dy(2,-77):0,h=t<0||0===t&&1/t<0?1:0,f=0;for((t=fy(t))!=t||t===1/0?(i=t!=t?1:0,n=c):(n=py(gy(t)/vy),t*(a=dy(2,-n))<1&&(n--,a*=2),(t+=n+u>=1?l/a:l*dy(2,1-u))*a>=2&&(n++,a/=2),n+u>=c?(i=0,n=c):n+u>=1?(i=(t*a-1)*dy(2,e),n+=u):(i=t*dy(2,u-1)*dy(2,e),n=0));e>=8;)o[f++]=255&i,i/=256,e-=8;for(n=n<<e|i,s+=e;s>0;)o[f++]=255&n,n/=256,s-=8;return o[--f]|=128*h,o},unpack:function(t,e){var r,n=t.length,i=8*n-e-1,a=(1<<i)-1,o=a>>1,s=i-7,c=n-1,u=t[c--],l=127&u;for(u>>=7;s>0;)l=256*l+t[c--],s-=8;for(r=l&(1<<-s)-1,l>>=-s,s+=e;s>0;)r=256*r+t[c--],s-=8;if(0===l)l=1-o;else{if(l===a)return r?NaN:u?-1/0:1/0;r+=dy(2,e),l-=o}return(u?-1:1)*r*dy(2,l-e)}},my=r,by=w,xy=a,wy=Vv,Ay=He,_y=Vi,ky=Kv,Sy=i,Ey=$v,My=en,Ty=un,Py=ny,Oy=ly,Iy=yy,Ry=Vu,Cy=Bc,jy=Jh,Dy=Ni,Ly=Wc,zy=zn,By=ha,Fy=Mr,Ny=Ze.PROPER,Uy=Ze.CONFIGURABLE,Yy="ArrayBuffer",Gy="DataView",Wy="prototype",Hy="Wrong index",qy=Fy.getterFor(Yy),Xy=Fy.getterFor(Gy),Vy=Fy.set,Qy=my[Yy],Ky=Qy,Jy=Ky&&Ky[Wy],Zy=my[Gy],$y=Zy&&Zy[Wy],tm=Object.prototype,em=my.Array,rm=my.RangeError,nm=by(jy),im=by([].reverse),am=Iy.pack,om=Iy.unpack,sm=function(t){return[255&t]},cm=function(t){return[255&t,t>>8&255]},um=function(t){return[255&t,t>>8&255,t>>16&255,t>>24&255]},lm=function(t){return t[3]<<24|t[2]<<16|t[1]<<8|t[0]},hm=function(t){return am(Oy(t),23,4)},fm=function(t){return am(t,52,8)},dm=function(t,e,r){_y(t[Wy],e,{configurable:!0,get:function(){return r(this)[e]}})},pm=function(t,e,r,n){var i=Xy(t),a=Py(r),o=!!n;if(a+e>i.byteLength)throw new rm(Hy);var s=i.bytes,c=a+i.byteOffset,u=Dy(s,c,c+e);return o?u:im(u)},gm=function(t,e,r,n,i,a){var o=Xy(t),s=Py(r),c=n(+i),u=!!a;if(s+e>o.byteLength)throw new rm(Hy);for(var l=o.bytes,h=s+o.byteOffset,f=0;f<e;f++)l[h+f]=c[u?f:e-f-1]};if(wy){var vm=Ny&&Qy.name!==Yy;Sy((function(){Qy(1)}))&&Sy((function(){new Qy(-1)}))&&!Sy((function(){return new Qy,new Qy(1.5),new Qy(NaN),1!==Qy.length||vm&&!Uy}))?vm&&Uy&&Ay(Qy,"name",Yy):((Ky=function(t){return Ey(this,Jy),Ly(new Qy(Py(t)),this,Ky)})[Wy]=Jy,Jy.constructor=Ky,zy(Ky,Qy)),Cy&&Ry($y)!==tm&&Cy($y,tm);var ym=new Zy(new Ky(2)),mm=by($y.setInt8);ym.setInt8(0,2147483648),ym.setInt8(1,2147483649),!ym.getInt8(0)&&ym.getInt8(1)||ky($y,{setInt8:function(t,e){mm(this,t,e<<24>>24)},setUint8:function(t,e){mm(this,t,e<<24>>24)}},{unsafe:!0})}else Jy=(Ky=function(t){Ey(this,Jy);var e=Py(t);Vy(this,{type:Yy,bytes:nm(em(e),0),byteLength:e}),xy||(this.byteLength=e,this.detached=!1)})[Wy],Zy=function(t,e,r){Ey(this,$y),Ey(t,Jy);var n=qy(t),i=n.byteLength,a=My(e);if(a<0||a>i)throw new rm("Wrong offset");if(a+(r=void 0===r?i-a:Ty(r))>i)throw new rm("Wrong length");Vy(this,{type:Gy,buffer:t,byteLength:r,byteOffset:a,bytes:n.bytes}),xy||(this.buffer=t,this.byteLength=r,this.byteOffset=a)},$y=Zy[Wy],xy&&(dm(Ky,"byteLength",qy),dm(Zy,"buffer",Xy),dm(Zy,"byteLength",Xy),dm(Zy,"byteOffset",Xy)),ky($y,{getInt8:function(t){return pm(this,1,t)[0]<<24>>24},getUint8:function(t){return pm(this,1,t)[0]},getInt16:function(t){var e=pm(this,2,t,arguments.length>1&&arguments[1]);return(e[1]<<8|e[0])<<16>>16},getUint16:function(t){var e=pm(this,2,t,arguments.length>1&&arguments[1]);return e[1]<<8|e[0]},getInt32:function(t){return lm(pm(this,4,t,arguments.length>1&&arguments[1]))},getUint32:function(t){return lm(pm(this,4,t,arguments.length>1&&arguments[1]))>>>0},getFloat32:function(t){return om(pm(this,4,t,arguments.length>1&&arguments[1]),23)},getFloat64:function(t){return om(pm(this,8,t,arguments.length>1&&arguments[1]),52)},setInt8:function(t,e){gm(this,1,t,sm,e)},setUint8:function(t,e){gm(this,1,t,sm,e)},setInt16:function(t,e){gm(this,2,t,cm,e,arguments.length>2&&arguments[2])},setUint16:function(t,e){gm(this,2,t,cm,e,arguments.length>2&&arguments[2])},setInt32:function(t,e){gm(this,4,t,um,e,arguments.length>2&&arguments[2])},setUint32:function(t,e){gm(this,4,t,um,e,arguments.length>2&&arguments[2])},setFloat32:function(t,e){gm(this,4,t,hm,e,arguments.length>2&&arguments[2])},setFloat64:function(t,e){gm(this,8,t,fm,e,arguments.length>2&&arguments[2])}});By(Ky,Yy),By(Zy,Gy);var bm={ArrayBuffer:Ky,DataView:Zy},xm=Qg,wm="ArrayBuffer",Am=bm[wm];ti({global:!0,constructor:!0,forced:r[wm]!==Am},{ArrayBuffer:Am}),xm(wm);var _m,km,Sm,Em=Vv,Mm=a,Tm=r,Pm=F,Om=U,Im=Ft,Rm=ui,Cm=ht,jm=He,Dm=Qr,Lm=Vi,zm=H,Bm=Vu,Fm=Bc,Nm=$t,Um=Wt,Ym=Mr.enforce,Gm=Mr.get,Wm=Tm.Int8Array,Hm=Wm&&Wm.prototype,qm=Tm.Uint8ClampedArray,Xm=qm&&qm.prototype,Vm=Wm&&Bm(Wm),Qm=Hm&&Bm(Hm),Km=Object.prototype,Jm=Tm.TypeError,Zm=Nm("toStringTag"),$m=Um("TYPED_ARRAY_TAG"),tb="TypedArrayConstructor",eb=Em&&!!Fm&&"Opera"!==Rm(Tm.opera),rb=!1,nb={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},ib={BigInt64Array:8,BigUint64Array:8},ab=function(t){var e=Bm(t);if(Om(e)){var r=Gm(e);return r&&Im(r,tb)?r[tb]:ab(e)}},ob=function(t){if(!Om(t))return!1;var e=Rm(t);return Im(nb,e)||Im(ib,e)};for(_m in nb)(Sm=(km=Tm[_m])&&km.prototype)?Ym(Sm)[tb]=km:eb=!1;for(_m in ib)(Sm=(km=Tm[_m])&&km.prototype)&&(Ym(Sm)[tb]=km);if((!eb||!Pm(Vm)||Vm===Function.prototype)&&(Vm=function(){throw new Jm("Incorrect invocation")},eb))for(_m in nb)Tm[_m]&&Fm(Tm[_m],Vm);if((!eb||!Qm||Qm===Km)&&(Qm=Vm.prototype,eb))for(_m in nb)Tm[_m]&&Fm(Tm[_m].prototype,Qm);if(eb&&Bm(Xm)!==Qm&&Fm(Xm,Qm),Mm&&!Im(Qm,Zm))for(_m in rb=!0,Lm(Qm,Zm,{configurable:!0,get:function(){return Om(this)?this[$m]:void 0}}),nb)Tm[_m]&&jm(Tm[_m],$m,_m);var sb={NATIVE_ARRAY_BUFFER_VIEWS:eb,TYPED_ARRAY_TAG:rb&&$m,aTypedArray:function(t){if(ob(t))return t;throw new Jm("Target is not a typed array")},aTypedArrayConstructor:function(t){if(Pm(t)&&(!Fm||zm(Vm,t)))return t;throw new Jm(Cm(t)+" is not a typed array constructor")},exportTypedArrayMethod:function(t,e,r,n){if(Mm){if(r)for(var i in nb){var a=Tm[i];if(a&&Im(a.prototype,t))try{delete a.prototype[t]}catch(r){try{a.prototype[t]=e}catch(t){}}}Qm[t]&&!r||Dm(Qm,t,r?e:eb&&Hm[t]||e,n)}},exportTypedArrayStaticMethod:function(t,e,r){var n,i;if(Mm){if(Fm){if(r)for(n in nb)if((i=Tm[n])&&Im(i,t))try{delete i[t]}catch(t){}if(Vm[t]&&!r)return;try{return Dm(Vm,t,r?e:eb&&Vm[t]||e)}catch(t){}}for(n in nb)!(i=Tm[n])||i[t]&&!r||Dm(i,t,e)}},getTypedArrayConstructor:ab,isView:function(t){if(!Om(t))return!1;var e=Rm(t);return"DataView"===e||Im(nb,e)||Im(ib,e)},isTypedArray:ob,TypedArray:Vm,TypedArrayPrototype:Qm};ti({target:"ArrayBuffer",stat:!0,forced:!sb.NATIVE_ARRAY_BUFFER_VIEWS},{isView:sb.isView});var cb=Ca,ub=ht,lb=TypeError,hb=function(t){if(cb(t))return t;throw new lb(ub(t)+" is not a constructor")},fb=Ie,db=hb,pb=I,gb=$t("species"),vb=function(t,e){var r,n=fb(t).constructor;return void 0===n||pb(r=fb(n)[gb])?e:db(r)},yb=ti,mb=pa,bb=i,xb=Ie,wb=on,Ab=un,_b=vb,kb=bm.ArrayBuffer,Sb=bm.DataView,Eb=Sb.prototype,Mb=mb(kb.prototype.slice),Tb=mb(Eb.getUint8),Pb=mb(Eb.setUint8);yb({target:"ArrayBuffer",proto:!0,unsafe:!0,forced:bb((function(){return!new kb(2).slice(1,void 0).byteLength}))},{slice:function(t,e){if(Mb&&void 0===e)return Mb(xb(this),t);for(var r=xb(this).byteLength,n=wb(t,r),i=wb(void 0===e?r:e,r),a=new(_b(this,kb))(Ab(i-n)),o=new Sb(this),s=new Sb(a),c=0;n<i;)Pb(s,c++,Tb(o,n++));return a}}),ti({global:!0,constructor:!0,forced:!Vv},{DataView:bm.DataView});var Ob=S,Ib=TypeError,Rb=Tc(ArrayBuffer.prototype,"byteLength","get")||function(t){if("ArrayBuffer"!==Ob(t))throw new Ib("ArrayBuffer expected");return t.byteLength},Cb=Rb,jb=w(ArrayBuffer.prototype.slice),Db=function(t){if(0!==Cb(t))return!1;try{return jb(t,0,0),!1}catch(t){return!0}},Lb=a,zb=Vi,Bb=Db,Fb=ArrayBuffer.prototype;Lb&&!("detached"in Fb)&&zb(Fb,"detached",{configurable:!0,get:function(){return Bb(this)}});var Nb,Ub,Yb,Gb,Wb=Xp,Hb=function(t){try{if(Wb)return Function('return require("'+t+'")')()}catch(t){}},qb="object"==typeof Deno&&Deno&&"object"==typeof Deno.version,Xb=!qb&&!Xp&&"object"==typeof window&&"object"==typeof document,Vb=i,Qb=$,Kb=Xb,Jb=qb,Zb=Xp,$b=r.structuredClone,tx=!!$b&&!Vb((function(){if(Jb&&Qb>92||Zb&&Qb>94||Kb&&Qb>97)return!1;var t=new ArrayBuffer(8),e=$b(t,{transfer:[t]});return 0!==t.byteLength||8!==e.byteLength})),ex=r,rx=Hb,nx=tx,ix=ex.structuredClone,ax=ex.ArrayBuffer,ox=ex.MessageChannel,sx=!1;if(nx)sx=function(t){ix(t,{transfer:[t]})};else if(ax)try{ox||(Nb=rx("worker_threads"))&&(ox=Nb.MessageChannel),ox&&(Ub=new ox,Yb=new ax(2),Gb=function(t){Ub.port1.postMessage(null,[t])},2===Yb.byteLength&&(Gb(Yb),0===Yb.byteLength&&(sx=Gb)))}catch(t){}var cx=sx,ux=r,lx=w,hx=Tc,fx=ny,dx=Db,px=Rb,gx=cx,vx=tx,yx=ux.structuredClone,mx=ux.ArrayBuffer,bx=ux.DataView,xx=ux.TypeError,wx=Math.min,Ax=mx.prototype,_x=bx.prototype,kx=lx(Ax.slice),Sx=hx(Ax,"resizable","get"),Ex=hx(Ax,"maxByteLength","get"),Mx=lx(_x.getInt8),Tx=lx(_x.setInt8),Px=(vx||gx)&&function(t,e,r){var n,i=px(t),a=void 0===e?i:fx(e),o=!Sx||!Sx(t);if(dx(t))throw new xx("ArrayBuffer is detached");if(vx&&(t=yx(t,{transfer:[t]}),i===a&&(r||o)))return t;if(i>=a&&(!r||o))n=kx(t,0,a);else{var s=r&&!o&&Ex?{maxByteLength:Ex(t)}:void 0;n=new mx(a,s);for(var c=new bx(t),u=new bx(n),l=wx(a,i),h=0;h<l;h++)Tx(u,h,Mx(c,h))}return vx||gx(t),n},Ox=Px;Ox&&ti({target:"ArrayBuffer",proto:!0},{transfer:function(){return Ox(this,arguments.length?arguments[0]:void 0,!0)}});var Ix=Px;Ix&&ti({target:"ArrayBuffer",proto:!0},{transferToFixedLength:function(){return Ix(this,arguments.length?arguments[0]:void 0,!1)}});var Rx=ti,Cx=w,jx=i((function(){return 120!==new Date(16e11).getYear()})),Dx=Cx(Date.prototype.getFullYear);Rx({target:"Date",proto:!0,forced:jx},{getYear:function(){return Dx(this)-1900}});var Lx=ti,zx=Date,Bx=w(zx.prototype.getTime);Lx({target:"Date",stat:!0},{now:function(){return Bx(new zx)}});var Fx=ti,Nx=w,Ux=en,Yx=Date.prototype,Gx=Nx(Yx.getTime),Wx=Nx(Yx.setFullYear);Fx({target:"Date",proto:!0},{setYear:function(t){Gx(this);var e=Ux(t);return Wx(this,e>=0&&e<=99?e+1900:e)}}),ti({target:"Date",proto:!0},{toGMTString:Date.prototype.toUTCString});var Hx=en,qx=fi,Xx=j,Vx=RangeError,Qx=function(t){var e=qx(Xx(this)),r="",n=Hx(t);if(n<0||n===1/0)throw new Vx("Wrong number of repetitions");for(;n>0;(n>>>=1)&&(e+=e))1&n&&(r+=e);return r},Kx=w,Jx=un,Zx=fi,$x=j,tw=Kx(Qx),ew=Kx("".slice),rw=Math.ceil,nw=function(t){return function(e,r,n){var i,a,o=Zx($x(e)),s=Jx(r),c=o.length,u=void 0===n?" ":Zx(n);return s<=c||""===u?o:((a=tw(u,rw((i=s-c)/u.length))).length>i&&(a=ew(a,0,i)),t?o+a:a+o)}},iw={start:nw(!1),end:nw(!0)},aw=w,ow=i,sw=iw.start,cw=RangeError,uw=isFinite,lw=Math.abs,hw=Date.prototype,fw=hw.toISOString,dw=aw(hw.getTime),pw=aw(hw.getUTCDate),gw=aw(hw.getUTCFullYear),vw=aw(hw.getUTCHours),yw=aw(hw.getUTCMilliseconds),mw=aw(hw.getUTCMinutes),bw=aw(hw.getUTCMonth),xw=aw(hw.getUTCSeconds),ww=ow((function(){return"0385-07-25T07:06:39.999Z"!==fw.call(new Date(-50000000000001))}))||!ow((function(){fw.call(new Date(NaN))}))?function(){if(!uw(dw(this)))throw new cw("Invalid time value");var t=this,e=gw(t),r=yw(t),n=e<0?"-":e>9999?"+":"";return n+sw(lw(e),n?6:4,0)+"-"+sw(bw(t)+1,2,0)+"-"+sw(pw(t),2,0)+"T"+sw(vw(t),2,0)+":"+sw(mw(t),2,0)+":"+sw(xw(t),2,0)+"."+sw(r,3,0)+"Z"}:fw,Aw=ww;ti({target:"Date",proto:!0,forced:Date.prototype.toISOString!==Aw},{toISOString:Aw});var _w=Lt,kw=se;ti({target:"Date",proto:!0,arity:1,forced:i((function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})}))},{toJSON:function(t){var e=_w(this),r=kw(e,"number");return"number"!=typeof r||isFinite(r)?e.toISOString():null}});var Sw=Ie,Ew=_t,Mw=TypeError,Tw=Ft,Pw=Qr,Ow=function(t){if(Sw(this),"string"===t||"default"===t)t="string";else if("number"!==t)throw new Mw("Incorrect hint");return Ew(this,t)},Iw=$t("toPrimitive"),Rw=Date.prototype;Tw(Rw,Iw)||Pw(Rw,Iw,Ow);var Cw=w,jw=Qr,Dw=Date.prototype,Lw="Invalid Date",zw="toString",Bw=Cw(Dw[zw]),Fw=Cw(Dw.getTime);String(new Date(NaN))!==Lw&&jw(Dw,zw,(function(){var t=Fw(this);return t==t?Bw(this):Lw}));var Nw=ti,Uw=w,Yw=fi,Gw=Uw("".charAt),Ww=Uw("".charCodeAt),Hw=Uw(/./.exec),qw=Uw(1..toString),Xw=Uw("".toUpperCase),Vw=/[\w*+\-./@]/,Qw=function(t,e){for(var r=qw(t,16);r.length<e;)r="0"+r;return r};Nw({global:!0},{escape:function(t){for(var e,r,n=Yw(t),i="",a=n.length,o=0;o<a;)e=Gw(n,o++),Hw(Vw,e)?i+=e:i+=(r=Ww(e,0))<256?"%"+Qw(r,2):"%u"+Xw(Qw(r,4));return i}});var Kw=w,Jw=gt,Zw=U,$w=Ft,tA=Ni,eA=o,rA=Function,nA=Kw([].concat),iA=Kw([].join),aA={},oA=eA?rA.bind:function(t){var e=Jw(this),r=e.prototype,n=tA(arguments,1),i=function(){var r=nA(n,tA(arguments));return this instanceof i?function(t,e,r){if(!$w(aA,e)){for(var n=[],i=0;i<e;i++)n[i]="a["+i+"]";aA[e]=rA("C,a","return new C("+iA(n,",")+")")}return aA[e](t,r)}(e,r.length,r):e.apply(t,r)};return Zw(r)&&(i.prototype=r),i},sA=oA;ti({target:"Function",proto:!0,forced:Function.bind!==sA},{bind:sA});var cA=F,uA=U,lA=Ee,hA=H,fA=$t,dA=qe.exports,pA=fA("hasInstance"),gA=Function.prototype;pA in gA||lA.f(gA,pA,{value:dA((function(t){if(!cA(this)||!uA(t))return!1;var e=this.prototype;return uA(e)?hA(e,t):t instanceof this}),pA)});var vA=a,yA=Ze.EXISTS,mA=w,bA=Vi,xA=Function.prototype,wA=mA(xA.toString),AA=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,_A=mA(AA.exec);vA&&!yA&&bA(xA,"name",{configurable:!0,get:function(){try{return _A(AA,wA(this))[1]}catch(t){return""}}});var kA=r;ti({global:!0,forced:kA.globalThis!==kA},{globalThis:kA}),ha(r.JSON,"JSON",!0);var SA={exports:{}},EA=i((function(){if("function"==typeof ArrayBuffer){var t=new ArrayBuffer(8);Object.isExtensible(t)&&Object.defineProperty(t,"a",{value:8})}})),MA=i,TA=U,PA=S,OA=EA,IA=Object.isExtensible,RA=MA((function(){IA(1)}))||OA?function(t){return!!TA(t)&&((!OA||"ArrayBuffer"!==PA(t))&&(!IA||IA(t)))}:IA,CA=!i((function(){return Object.isExtensible(Object.preventExtensions({}))})),jA=ti,DA=w,LA=dr,zA=U,BA=Ft,FA=Ee.f,NA=Kr,UA=Fi,YA=RA,GA=CA,WA=!1,HA=Wt("meta"),qA=0,XA=function(t){FA(t,HA,{value:{objectID:"O"+qA++,weakData:{}}})},VA=SA.exports={enable:function(){VA.enable=function(){},WA=!0;var t=NA.f,e=DA([].splice),r={};r[HA]=1,t(r).length&&(NA.f=function(r){for(var n=t(r),i=0,a=n.length;i<a;i++)if(n[i]===HA){e(n,i,1);break}return n},jA({target:"Object",stat:!0,forced:!0},{getOwnPropertyNames:UA.f}))},fastKey:function(t,e){if(!zA(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!BA(t,HA)){if(!YA(t))return"F";if(!e)return"E";XA(t)}return t[HA].objectID},getWeakData:function(t,e){if(!BA(t,HA)){if(!YA(t))return!0;if(!e)return!1;XA(t)}return t[HA].weakData},onFreeze:function(t){return GA&&WA&&YA(t)&&!BA(t,HA)&&XA(t),t}};LA[HA]=!0;var QA=ti,KA=r,JA=w,ZA=qn,$A=Qr,t_=SA.exports,e_=Ol,r_=$v,n_=F,i_=I,a_=U,o_=i,s_=nd,c_=ha,u_=Wc,l_=function(t,e,r){var n=-1!==t.indexOf("Map"),i=-1!==t.indexOf("Weak"),a=n?"set":"add",o=KA[t],s=o&&o.prototype,c=o,u={},l=function(t){var e=JA(s[t]);$A(s,t,"add"===t?function(t){return e(this,0===t?0:t),this}:"delete"===t?function(t){return!(i&&!a_(t))&&e(this,0===t?0:t)}:"get"===t?function(t){return i&&!a_(t)?void 0:e(this,0===t?0:t)}:"has"===t?function(t){return!(i&&!a_(t))&&e(this,0===t?0:t)}:function(t,r){return e(this,0===t?0:t,r),this})};if(ZA(t,!n_(o)||!(i||s.forEach&&!o_((function(){(new o).entries().next()})))))c=r.getConstructor(e,t,n,a),t_.enable();else if(ZA(t,!0)){var h=new c,f=h[a](i?{}:-0,1)!==h,d=o_((function(){h.has(1)})),p=s_((function(t){new o(t)})),g=!i&&o_((function(){for(var t=new o,e=5;e--;)t[a](e,e);return!t.has(-0)}));p||((c=e((function(t,e){r_(t,s);var r=u_(new o,t,c);return i_(e)||e_(e,r[a],{that:r,AS_ENTRIES:n}),r}))).prototype=s,s.constructor=c),(d||g)&&(l("delete"),l("has"),n&&l("get")),(g||f)&&l(a),i&&s.clear&&delete s.clear}return u[t]=c,QA({global:!0,constructor:!0,forced:c!==o},u),c_(c,t),i||r.setStrong(c,t,n),c},h_=Bi,f_=Vi,d_=Kv,p_=ma,g_=$v,v_=I,y_=Ol,m_=Kd,b_=Jd,x_=Qg,w_=a,A_=SA.exports.fastKey,__=Mr.set,k_=Mr.getterFor,S_={getConstructor:function(t,e,r,n){var i=t((function(t,i){g_(t,a),__(t,{type:e,index:h_(null),first:void 0,last:void 0,size:0}),w_||(t.size=0),v_(i)||y_(i,t[n],{that:t,AS_ENTRIES:r})})),a=i.prototype,o=k_(e),s=function(t,e,r){var n,i,a=o(t),s=c(t,e);return s?s.value=r:(a.last=s={index:i=A_(e,!0),key:e,value:r,previous:n=a.last,next:void 0,removed:!1},a.first||(a.first=s),n&&(n.next=s),w_?a.size++:t.size++,"F"!==i&&(a.index[i]=s)),t},c=function(t,e){var r,n=o(t),i=A_(e);if("F"!==i)return n.index[i];for(r=n.first;r;r=r.next)if(r.key===e)return r};return d_(a,{clear:function(){for(var t=o(this),e=t.first;e;)e.removed=!0,e.previous&&(e.previous=e.previous.next=void 0),e=e.next;t.first=t.last=void 0,t.index=h_(null),w_?t.size=0:this.size=0},delete:function(t){var e=this,r=o(e),n=c(e,t);if(n){var i=n.next,a=n.previous;delete r.index[n.index],n.removed=!0,a&&(a.next=i),i&&(i.previous=a),r.first===n&&(r.first=i),r.last===n&&(r.last=a),w_?r.size--:e.size--}return!!n},forEach:function(t){for(var e,r=o(this),n=p_(t,arguments.length>1?arguments[1]:void 0);e=e?e.next:r.first;)for(n(e.value,e.key,this);e&&e.removed;)e=e.previous},has:function(t){return!!c(this,t)}}),d_(a,r?{get:function(t){var e=c(this,t);return e&&e.value},set:function(t,e){return s(this,0===t?0:t,e)}}:{add:function(t){return s(this,t=0===t?0:t,t)}}),w_&&f_(a,"size",{configurable:!0,get:function(){return o(this).size}}),i},setStrong:function(t,e,r){var n=e+" Iterator",i=k_(e),a=k_(n);m_(t,e,(function(t,e){__(this,{type:n,target:t,state:i(t),kind:e,last:void 0})}),(function(){for(var t=a(this),e=t.kind,r=t.last;r&&r.removed;)r=r.previous;return t.target&&(t.last=r=r?r.next:t.state.first)?b_("keys"===e?r.key:"values"===e?r.value:[r.key,r.value],!1):(t.target=void 0,b_(void 0,!0))}),r?"entries":"values",!r,!0),x_(e)}};l_("Map",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),S_);var E_=w,M_=Map.prototype,T_={Map:Map,set:E_(M_.set),get:E_(M_.get),has:E_(M_.has),remove:E_(M_.delete),proto:M_},P_=ti,O_=gt,I_=j,R_=Ol,C_=T_.Map,j_=T_.has,D_=T_.get,L_=T_.set,z_=w([].push);P_({target:"Map",stat:!0,forced:false},{groupBy:function(t,e){I_(t),O_(e);var r=new C_,n=0;return R_(t,(function(t){var i=e(t,n++);j_(r,i)?z_(D_(r,i),t):L_(r,i,[t])})),r}});var B_=Math.log,F_=Math.log1p||function(t){var e=+t;return e>-1e-8&&e<1e-8?e-e*e/2:B_(1+e)},N_=ti,U_=F_,Y_=Math.acosh,G_=Math.log,W_=Math.sqrt,H_=Math.LN2;N_({target:"Math",stat:!0,forced:!Y_||710!==Math.floor(Y_(Number.MAX_VALUE))||Y_(1/0)!==1/0},{acosh:function(t){var e=+t;return e<1?NaN:e>94906265.62425156?G_(e)+H_:U_(e-1+W_(e-1)*W_(e+1))}});var q_=ti,X_=Math.asinh,V_=Math.log,Q_=Math.sqrt;q_({target:"Math",stat:!0,forced:!(X_&&1/X_(0)>0)},{asinh:function t(e){var r=+e;return isFinite(r)&&0!==r?r<0?-t(-r):V_(r+Q_(r*r+1)):r}});var K_=ti,J_=Math.atanh,Z_=Math.log;K_({target:"Math",stat:!0,forced:!(J_&&1/J_(-0)<0)},{atanh:function(t){var e=+t;return 0===e?e:Z_((1+e)/(1-e))/2}});var $_=ti,tk=iy,ek=Math.abs,rk=Math.pow;$_({target:"Math",stat:!0},{cbrt:function(t){var e=+t;return tk(e)*rk(ek(e),1/3)}});var nk=ti,ik=Math.floor,ak=Math.log,ok=Math.LOG2E;nk({target:"Math",stat:!0},{clz32:function(t){var e=t>>>0;return e?31-ik(ak(e+.5)*ok):32}});var sk=Math.expm1,ck=Math.exp,uk=!sk||sk(10)>22025.465794806718||sk(10)<22025.465794806718||-2e-17!==sk(-2e-17)?function(t){var e=+t;return 0===e?e:e>-1e-6&&e<1e-6?e+e*e/2:ck(e)-1}:sk,lk=ti,hk=uk,fk=Math.cosh,dk=Math.abs,pk=Math.E;lk({target:"Math",stat:!0,forced:!fk||fk(710)===1/0},{cosh:function(t){var e=hk(dk(t)-1)+1;return(e+1/(e*pk*pk))*(pk/2)}});var gk=uk;ti({target:"Math",stat:!0,forced:gk!==Math.expm1},{expm1:gk}),ti({target:"Math",stat:!0},{fround:ly});var vk=ti,yk=Math.hypot,mk=Math.abs,bk=Math.sqrt;vk({target:"Math",stat:!0,arity:2,forced:!!yk&&yk(1/0,NaN)!==1/0},{hypot:function(t,e){for(var r,n,i=0,a=0,o=arguments.length,s=0;a<o;)s<(r=mk(arguments[a++]))?(i=i*(n=s/r)*n+1,s=r):i+=r>0?(n=r/s)*n:r;return s===1/0?1/0:s*bk(i)}});var xk=ti,wk=i,Ak=Math.imul;xk({target:"Math",stat:!0,forced:wk((function(){return-5!==Ak(4294967295,5)||2!==Ak.length}))},{imul:function(t,e){var r=65535,n=+t,i=+e,a=r&n,o=r&i;return 0|a*o+((r&n>>>16)*o+a*(r&i>>>16)<<16>>>0)}});var _k=Math.log,kk=Math.LOG10E,Sk=Math.log10||function(t){return _k(t)*kk};ti({target:"Math",stat:!0},{log10:Sk}),ti({target:"Math",stat:!0},{log1p:F_});var Ek=ti,Mk=Math.log,Tk=Math.LN2;Ek({target:"Math",stat:!0},{log2:function(t){return Mk(t)/Tk}}),ti({target:"Math",stat:!0},{sign:iy});var Pk=ti,Ok=i,Ik=uk,Rk=Math.abs,Ck=Math.exp,jk=Math.E;Pk({target:"Math",stat:!0,forced:Ok((function(){return-2e-17!==Math.sinh(-2e-17)}))},{sinh:function(t){var e=+t;return Rk(e)<1?(Ik(e)-Ik(-e))/2:(Ck(e-1)-Ck(-e-1))*(jk/2)}});var Dk=ti,Lk=uk,zk=Math.exp;Dk({target:"Math",stat:!0},{tanh:function(t){var e=+t,r=Lk(e),n=Lk(-e);return r===1/0?1:n===1/0?-1:(r-n)/(zk(e)+zk(-e))}}),ha(Math,"Math",!0),ti({target:"Math",stat:!0},{trunc:$r});var Bk=w(1..valueOf),Fk="\t\n\v\f\r                 \u2028\u2029\ufeff",Nk=j,Uk=fi,Yk=Fk,Gk=w("".replace),Wk=RegExp("^["+Yk+"]+"),Hk=RegExp("(^|[^"+Yk+"])["+Yk+"]+$"),qk=function(t){return function(e){var r=Uk(Nk(e));return 1&t&&(r=Gk(r,Wk,"")),2&t&&(r=Gk(r,Hk,"$1")),r}},Xk={start:qk(1),end:qk(2),trim:qk(3)},Vk=ti,Qk=a,Kk=r,Jk=Ji,Zk=w,$k=qn,tS=Ft,eS=Wc,rS=H,nS=ut,iS=se,aS=i,oS=Kr.f,sS=n.f,cS=Ee.f,uS=Bk,lS=Xk.trim,hS="Number",fS=Kk[hS];Jk[hS];var dS=fS.prototype,pS=Kk.TypeError,gS=Zk("".slice),vS=Zk("".charCodeAt),yS=function(t){var e,r,n,i,a,o,s,c,u=iS(t,"number");if(nS(u))throw new pS("Cannot convert a Symbol value to a number");if("string"==typeof u&&u.length>2)if(u=lS(u),43===(e=vS(u,0))||45===e){if(88===(r=vS(u,2))||120===r)return NaN}else if(48===e){switch(vS(u,1)){case 66:case 98:n=2,i=49;break;case 79:case 111:n=8,i=55;break;default:return+u}for(o=(a=gS(u,2)).length,s=0;s<o;s++)if((c=vS(a,s))<48||c>i)return NaN;return parseInt(a,n)}return+u},mS=$k(hS,!fS(" 0o1")||!fS("0b1")||fS("+0x1")),bS=function(t){var e,r=arguments.length<1?0:fS(function(t){var e=iS(t,"number");return"bigint"==typeof e?e:yS(e)}(t));return rS(dS,e=this)&&aS((function(){uS(e)}))?eS(Object(r),this,bS):r};bS.prototype=dS,mS&&(dS.constructor=bS),Vk({global:!0,constructor:!0,wrap:!0,forced:mS},{Number:bS});mS&&function(t,e){for(var r,n=Qk?oS(e):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),i=0;n.length>i;i++)tS(e,r=n[i])&&!tS(t,r)&&cS(t,r,sS(e,r))}(Jk[hS],fS),ti({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{EPSILON:Math.pow(2,-52)});var xS=r.isFinite;ti({target:"Number",stat:!0},{isFinite:Number.isFinite||function(t){return"number"==typeof t&&xS(t)}});var wS=U,AS=Math.floor,_S=Number.isInteger||function(t){return!wS(t)&&isFinite(t)&&AS(t)===t};ti({target:"Number",stat:!0},{isInteger:_S}),ti({target:"Number",stat:!0},{isNaN:function(t){return t!=t}});var kS=ti,SS=_S,ES=Math.abs;kS({target:"Number",stat:!0},{isSafeInteger:function(t){return SS(t)&&ES(t)<=9007199254740991}}),ti({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MAX_SAFE_INTEGER:9007199254740991}),ti({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MIN_SAFE_INTEGER:-9007199254740991});var MS=r,TS=i,PS=fi,OS=Xk.trim,IS=Fk,RS=w("".charAt),CS=MS.parseFloat,jS=MS.Symbol,DS=jS&&jS.iterator,LS=1/CS(IS+"-0")!=-1/0||DS&&!TS((function(){CS(Object(DS))}))?function(t){var e=OS(PS(t)),r=CS(e);return 0===r&&"-"===RS(e,0)?-0:r}:CS,zS=LS;ti({target:"Number",stat:!0,forced:Number.parseFloat!==zS},{parseFloat:zS});var BS=r,FS=i,NS=w,US=fi,YS=Xk.trim,GS=Fk,WS=BS.parseInt,HS=BS.Symbol,qS=HS&&HS.iterator,XS=/^[+-]?0x/i,VS=NS(XS.exec),QS=8!==WS(GS+"08")||22!==WS(GS+"0x16")||qS&&!FS((function(){WS(Object(qS))}))?function(t,e){var r=YS(US(t));return WS(r,e>>>0||(VS(XS,r)?16:10))}:WS,KS=QS;ti({target:"Number",stat:!0,forced:Number.parseInt!==KS},{parseInt:KS});var JS=ti,ZS=w,$S=en,tE=Bk,eE=Qx,rE=Sk,nE=i,iE=RangeError,aE=String,oE=isFinite,sE=Math.abs,cE=Math.floor,uE=Math.pow,lE=Math.round,hE=ZS(1..toExponential),fE=ZS(eE),dE=ZS("".slice),pE="-6.9000e-11"===hE(-69e-12,4)&&"1.25e+0"===hE(1.255,2)&&"1.235e+4"===hE(12345,3)&&"3e+1"===hE(25,0);JS({target:"Number",proto:!0,forced:!pE||!(nE((function(){hE(1,1/0)}))&&nE((function(){hE(1,-1/0)})))||!!nE((function(){hE(1/0,1/0),hE(NaN,1/0)}))},{toExponential:function(t){var e=tE(this);if(void 0===t)return hE(e);var r=$S(t);if(!oE(e))return String(e);if(r<0||r>20)throw new iE("Incorrect fraction digits");if(pE)return hE(e,r);var n="",i="",a=0,o="",s="";if(e<0&&(n="-",e=-e),0===e)a=0,i=fE("0",r+1);else{var c=rE(e);a=cE(c);var u=0,l=uE(10,a-r);2*e>=(2*(u=lE(e/l))+1)*l&&(u+=1),u>=uE(10,r+1)&&(u/=10,a+=1),i=aE(u)}return 0!==r&&(i=dE(i,0,1)+"."+dE(i,1)),0===a?(o="+",s="0"):(o=a>0?"+":"-",s=aE(sE(a))),n+(i+="e"+o+s)}});var gE=ti,vE=w,yE=en,mE=Bk,bE=Qx,xE=i,wE=RangeError,AE=String,_E=Math.floor,kE=vE(bE),SE=vE("".slice),EE=vE(1..toFixed),ME=function(t,e,r){return 0===e?r:e%2==1?ME(t,e-1,r*t):ME(t*t,e/2,r)},TE=function(t,e,r){for(var n=-1,i=r;++n<6;)i+=e*t[n],t[n]=i%1e7,i=_E(i/1e7)},PE=function(t,e){for(var r=6,n=0;--r>=0;)n+=t[r],t[r]=_E(n/e),n=n%e*1e7},OE=function(t){for(var e=6,r="";--e>=0;)if(""!==r||0===e||0!==t[e]){var n=AE(t[e]);r=""===r?n:r+kE("0",7-n.length)+n}return r};gE({target:"Number",proto:!0,forced:xE((function(){return"0.000"!==EE(8e-5,3)||"1"!==EE(.9,0)||"1.25"!==EE(1.255,2)||"1000000000000000128"!==EE(0xde0b6b3a7640080,0)}))||!xE((function(){EE({})}))},{toFixed:function(t){var e,r,n,i,a=mE(this),o=yE(t),s=[0,0,0,0,0,0],c="",u="0";if(o<0||o>20)throw new wE("Incorrect fraction digits");if(a!=a)return"NaN";if(a<=-1e21||a>=1e21)return AE(a);if(a<0&&(c="-",a=-a),a>1e-21)if(r=(e=function(t){for(var e=0,r=t;r>=4096;)e+=12,r/=4096;for(;r>=2;)e+=1,r/=2;return e}(a*ME(2,69,1))-69)<0?a*ME(2,-e,1):a/ME(2,e,1),r*=4503599627370496,(e=52-e)>0){for(TE(s,0,r),n=o;n>=7;)TE(s,1e7,0),n-=7;for(TE(s,ME(10,n,1),0),n=e-1;n>=23;)PE(s,1<<23),n-=23;PE(s,1<<n),TE(s,1,1),PE(s,2),u=OE(s)}else TE(s,0,r),TE(s,1<<-e,0),u=OE(s)+kE("0",o);return u=o>0?c+((i=u.length)<=o?"0."+kE("0",o-i)+u:SE(u,0,i-o)+"."+SE(u,i-o)):c+u}});var IE=ti,RE=i,CE=Bk,jE=w(1..toPrecision);IE({target:"Number",proto:!0,forced:RE((function(){return"1"!==jE(1,void 0)}))||!RE((function(){jE({})}))},{toPrecision:function(t){return void 0===t?jE(CE(this)):jE(CE(this),t)}});var DE=a,LE=w,zE=u,BE=i,FE=vi,NE=En,UE=l,YE=Lt,GE=O,WE=Object.assign,HE=Object.defineProperty,qE=LE([].concat),XE=!WE||BE((function(){if(DE&&1!==WE({b:1},WE(HE({},"a",{enumerable:!0,get:function(){HE(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},r=Symbol("assign detection"),n="abcdefghijklmnopqrst";return t[r]=7,n.split("").forEach((function(t){e[t]=t})),7!==WE({},t)[r]||FE(WE({},e)).join("")!==n}))?function(t,e){for(var r=YE(t),n=arguments.length,i=1,a=NE.f,o=UE.f;n>i;)for(var s,c=GE(arguments[i++]),u=a?qE(FE(c),a(c)):FE(c),l=u.length,h=0;l>h;)s=u[h++],DE&&!zE(o,c,s)||(r[s]=c[s]);return r}:WE,VE=XE;ti({target:"Object",stat:!0,arity:2,forced:Object.assign!==VE},{assign:VE}),ti({target:"Object",stat:!0,sham:!a},{create:Bi});var QE=r,KE=_g,JE=!i((function(){if(!(KE&&KE<535)){var t=Math.random();__defineSetter__.call(null,t,(function(){})),delete QE[t]}})),ZE=gt,$E=Lt,tM=Ee;a&&ti({target:"Object",proto:!0,forced:JE},{__defineGetter__:function(t,e){tM.f($E(this),t,{get:ZE(e),enumerable:!0,configurable:!0})}});var eM=ti,rM=a,nM=di.f;eM({target:"Object",stat:!0,forced:Object.defineProperties!==nM,sham:!rM},{defineProperties:nM});var iM=ti,aM=a,oM=Ee.f;iM({target:"Object",stat:!0,forced:Object.defineProperty!==oM,sham:!aM},{defineProperty:oM});var sM=gt,cM=Lt,uM=Ee;a&&ti({target:"Object",proto:!0,forced:JE},{__defineSetter__:function(t,e){uM.f(cM(this),t,{set:sM(e),enumerable:!0,configurable:!0})}});var lM=a,hM=i,fM=w,dM=Vu,pM=vi,gM=z,vM=fM(l.f),yM=fM([].push),mM=lM&&hM((function(){var t=Object.create(null);return t[2]=2,!vM(t,2)})),bM=function(t){return function(e){for(var r,n=gM(e),i=pM(n),a=mM&&null===dM(n),o=i.length,s=0,c=[];o>s;)r=i[s++],lM&&!(a?r in n:vM(n,r))||yM(c,t?[r,n[r]]:n[r]);return c}},xM={entries:bM(!0),values:bM(!1)},wM=xM.entries;ti({target:"Object",stat:!0},{entries:function(t){return wM(t)}});var AM=ti,_M=CA,kM=i,SM=U,EM=SA.exports.onFreeze,MM=Object.freeze;AM({target:"Object",stat:!0,forced:kM((function(){MM(1)})),sham:!_M},{freeze:function(t){return MM&&SM(t)?MM(EM(t)):t}});var TM=Ol,PM=vh;ti({target:"Object",stat:!0},{fromEntries:function(t){var e={};return TM(t,(function(t,r){PM(e,t,r)}),{AS_ENTRIES:!0}),e}});var OM=ti,IM=i,RM=z,CM=n.f,jM=a;OM({target:"Object",stat:!0,forced:!jM||IM((function(){CM(1)})),sham:!jM},{getOwnPropertyDescriptor:function(t,e){return CM(RM(t),e)}});var DM=Rn,LM=z,zM=n,BM=vh;ti({target:"Object",stat:!0,sham:!a},{getOwnPropertyDescriptors:function(t){for(var e,r,n=LM(t),i=zM.f,a=DM(n),o={},s=0;a.length>s;)void 0!==(r=i(n,e=a[s++]))&&BM(o,e,r);return o}});var FM=ti,NM=i,UM=Fi.f;FM({target:"Object",stat:!0,forced:NM((function(){return!Object.getOwnPropertyNames(1)}))},{getOwnPropertyNames:UM});var YM=Lt,GM=Vu,WM=Nu;ti({target:"Object",stat:!0,forced:i((function(){GM(1)})),sham:!WM},{getPrototypeOf:function(t){return GM(YM(t))}});var HM=ti,qM=w,XM=gt,VM=j,QM=le,KM=Ol,JM=W("Object","create"),ZM=qM([].push);HM({target:"Object",stat:!0},{groupBy:function(t,e){VM(t),XM(e);var r=JM(null),n=0;return KM(t,(function(t){var i=QM(e(t,n++));i in r?ZM(r[i],t):r[i]=[t]})),r}}),ti({target:"Object",stat:!0},{hasOwn:Ft});var $M=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e};ti({target:"Object",stat:!0},{is:$M});var tT=RA;ti({target:"Object",stat:!0,forced:Object.isExtensible!==tT},{isExtensible:tT});var eT=ti,rT=i,nT=U,iT=S,aT=EA,oT=Object.isFrozen;eT({target:"Object",stat:!0,forced:aT||rT((function(){oT(1)}))},{isFrozen:function(t){return!nT(t)||(!(!aT||"ArrayBuffer"!==iT(t))||!!oT&&oT(t))}});var sT=ti,cT=i,uT=U,lT=S,hT=EA,fT=Object.isSealed;sT({target:"Object",stat:!0,forced:hT||cT((function(){fT(1)}))},{isSealed:function(t){return!uT(t)||(!(!hT||"ArrayBuffer"!==lT(t))||!!fT&&fT(t))}});var dT=Lt,pT=vi;ti({target:"Object",stat:!0,forced:i((function(){pT(1)}))},{keys:function(t){return pT(dT(t))}});var gT=ti,vT=a,yT=JE,mT=Lt,bT=le,xT=Vu,wT=n.f;vT&&gT({target:"Object",proto:!0,forced:yT},{__lookupGetter__:function(t){var e,r=mT(this),n=bT(t);do{if(e=wT(r,n))return e.get}while(r=xT(r))}});var AT=ti,_T=a,kT=JE,ST=Lt,ET=le,MT=Vu,TT=n.f;_T&&AT({target:"Object",proto:!0,forced:kT},{__lookupSetter__:function(t){var e,r=ST(this),n=ET(t);do{if(e=TT(r,n))return e.set}while(r=MT(r))}});var PT=ti,OT=U,IT=SA.exports.onFreeze,RT=CA,CT=i,jT=Object.preventExtensions;PT({target:"Object",stat:!0,forced:CT((function(){jT(1)})),sham:!RT},{preventExtensions:function(t){return jT&&OT(t)?jT(IT(t)):t}});var DT=a,LT=Vi,zT=U,BT=Oc,FT=Lt,NT=j,UT=Object.getPrototypeOf,YT=Object.setPrototypeOf,GT=Object.prototype,WT="__proto__";if(DT&&UT&&YT&&!(WT in GT))try{LT(GT,WT,{configurable:!0,get:function(){return UT(FT(this))},set:function(t){var e=NT(this);BT(t)&&zT(e)&&YT(e,t)}})}catch(t){}var HT=ti,qT=U,XT=SA.exports.onFreeze,VT=CA,QT=i,KT=Object.seal;HT({target:"Object",stat:!0,forced:QT((function(){KT(1)})),sham:!VT},{seal:function(t){return KT&&qT(t)?KT(XT(t)):t}}),ti({target:"Object",stat:!0},{setPrototypeOf:Bc});var JT=ui,ZT=ri?{}.toString:function(){return"[object "+JT(this)+"]"};ri||Qr(Object.prototype,"toString",ZT,{unsafe:!0});var $T=xM.values;ti({target:"Object",stat:!0},{values:function(t){return $T(t)}});ti({global:!0,forced:parseFloat!==LS},{parseFloat:LS});ti({global:!0,forced:parseInt!==QS},{parseInt:QS});var tP,eP,rP,nP,iP=TypeError,aP=function(t,e){if(t<e)throw new iP("Not enough arguments");return t},oP=/(?:ipad|iphone|ipod).*applewebkit/i.test(q),sP=r,cP=Ss,uP=ma,lP=F,hP=Ft,fP=i,dP=ki,pP=Ni,gP=pe,vP=aP,yP=oP,mP=Xp,bP=sP.setImmediate,xP=sP.clearImmediate,wP=sP.process,AP=sP.Dispatch,_P=sP.Function,kP=sP.MessageChannel,SP=sP.String,EP=0,MP={},TP="onreadystatechange";fP((function(){tP=sP.location}));var PP=function(t){if(hP(MP,t)){var e=MP[t];delete MP[t],e()}},OP=function(t){return function(){PP(t)}},IP=function(t){PP(t.data)},RP=function(t){sP.postMessage(SP(t),tP.protocol+"//"+tP.host)};bP&&xP||(bP=function(t){vP(arguments.length,1);var e=lP(t)?t:_P(t),r=pP(arguments,1);return MP[++EP]=function(){cP(e,void 0,r)},eP(EP),EP},xP=function(t){delete MP[t]},mP?eP=function(t){wP.nextTick(OP(t))}:AP&&AP.now?eP=function(t){AP.now(OP(t))}:kP&&!yP?(nP=(rP=new kP).port2,rP.port1.onmessage=IP,eP=uP(nP.postMessage,nP)):sP.addEventListener&&lP(sP.postMessage)&&!sP.importScripts&&tP&&"file:"!==tP.protocol&&!fP(RP)?(eP=RP,sP.addEventListener("message",IP,!1)):eP=TP in gP("script")?function(t){dP.appendChild(gP("script"))[TP]=function(){dP.removeChild(this),PP(t)}}:function(t){setTimeout(OP(t),0)});var CP={set:bP,clear:xP},jP=r,DP=a,LP=Object.getOwnPropertyDescriptor,zP=function(t){if(!DP)return jP[t];var e=LP(jP,t);return e&&e.value},BP=function(){this.head=null,this.tail=null};BP.prototype={add:function(t){var e={item:t,next:null},r=this.tail;r?r.next=e:this.head=e,this.tail=e},get:function(){var t=this.head;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}};var FP,NP,UP,YP,GP,WP=BP,HP=/ipad|iphone|ipod/i.test(q)&&"undefined"!=typeof Pebble,qP=/web0s(?!.*chrome)/i.test(q),XP=r,VP=zP,QP=ma,KP=CP.set,JP=WP,ZP=oP,$P=HP,tO=qP,eO=Xp,rO=XP.MutationObserver||XP.WebKitMutationObserver,nO=XP.document,iO=XP.process,aO=XP.Promise,oO=VP("queueMicrotask");if(!oO){var sO=new JP,cO=function(){var t,e;for(eO&&(t=iO.domain)&&t.exit();e=sO.get();)try{e()}catch(t){throw sO.head&&FP(),t}t&&t.enter()};ZP||eO||tO||!rO||!nO?!$P&&aO&&aO.resolve?((YP=aO.resolve(void 0)).constructor=aO,GP=QP(YP.then,YP),FP=function(){GP(cO)}):eO?FP=function(){iO.nextTick(cO)}:(KP=QP(KP,XP),FP=function(){KP(cO)}):(NP=!0,UP=nO.createTextNode(""),new rO(cO).observe(UP,{characterData:!0}),FP=function(){UP.data=NP=!NP}),oO=function(t){sO.head||FP(),sO.add(t)}}var uO=oO,lO=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}},hO=r.Promise,fO=r,dO=hO,pO=F,gO=qn,vO=or,yO=$t,mO=Xb,bO=qb,xO=$;dO&&dO.prototype;var wO=yO("species"),AO=!1,_O=pO(fO.PromiseRejectionEvent),kO=gO("Promise",(function(){var t=vO(dO),e=t!==String(dO);if(!e&&66===xO)return!0;if(!xO||xO<51||!/native code/.test(t)){var r=new dO((function(t){t(1)})),n=function(t){t((function(){}),(function(){}))};if((r.constructor={})[wO]=n,!(AO=r.then((function(){}))instanceof n))return!0}return!e&&(mO||bO)&&!_O})),SO={CONSTRUCTOR:kO,REJECTION_EVENT:_O,SUBCLASSING:AO},EO={},MO=gt,TO=TypeError,PO=function(t){var e,r;this.promise=new t((function(t,n){if(void 0!==e||void 0!==r)throw new TO("Bad Promise constructor");e=t,r=n})),this.resolve=MO(e),this.reject=MO(r)};EO.f=function(t){return new PO(t)};var OO,IO,RO,CO=ti,jO=Xp,DO=r,LO=u,zO=Qr,BO=Bc,FO=ha,NO=Qg,UO=gt,YO=F,GO=U,WO=$v,HO=vb,qO=CP.set,XO=uO,VO=function(t,e){try{1===arguments.length?console.error(t):console.error(t,e)}catch(t){}},QO=lO,KO=WP,JO=Mr,ZO=hO,$O=EO,tI="Promise",eI=SO.CONSTRUCTOR,rI=SO.REJECTION_EVENT,nI=SO.SUBCLASSING,iI=JO.getterFor(tI),aI=JO.set,oI=ZO&&ZO.prototype,sI=ZO,cI=oI,uI=DO.TypeError,lI=DO.document,hI=DO.process,fI=$O.f,dI=fI,pI=!!(lI&&lI.createEvent&&DO.dispatchEvent),gI="unhandledrejection",vI=function(t){var e;return!(!GO(t)||!YO(e=t.then))&&e},yI=function(t,e){var r,n,i,a=e.value,o=1===e.state,s=o?t.ok:t.fail,c=t.resolve,u=t.reject,l=t.domain;try{s?(o||(2===e.rejection&&AI(e),e.rejection=1),!0===s?r=a:(l&&l.enter(),r=s(a),l&&(l.exit(),i=!0)),r===t.promise?u(new uI("Promise-chain cycle")):(n=vI(r))?LO(n,r,c,u):c(r)):u(a)}catch(t){l&&!i&&l.exit(),u(t)}},mI=function(t,e){t.notified||(t.notified=!0,XO((function(){for(var r,n=t.reactions;r=n.get();)yI(r,t);t.notified=!1,e&&!t.rejection&&xI(t)})))},bI=function(t,e,r){var n,i;pI?((n=lI.createEvent("Event")).promise=e,n.reason=r,n.initEvent(t,!1,!0),DO.dispatchEvent(n)):n={promise:e,reason:r},!rI&&(i=DO["on"+t])?i(n):t===gI&&VO("Unhandled promise rejection",r)},xI=function(t){LO(qO,DO,(function(){var e,r=t.facade,n=t.value;if(wI(t)&&(e=QO((function(){jO?hI.emit("unhandledRejection",n,r):bI(gI,r,n)})),t.rejection=jO||wI(t)?2:1,e.error))throw e.value}))},wI=function(t){return 1!==t.rejection&&!t.parent},AI=function(t){LO(qO,DO,(function(){var e=t.facade;jO?hI.emit("rejectionHandled",e):bI("rejectionhandled",e,t.value)}))},_I=function(t,e,r){return function(n){t(e,n,r)}},kI=function(t,e,r){t.done||(t.done=!0,r&&(t=r),t.value=e,t.state=2,mI(t,!0))},SI=function(t,e,r){if(!t.done){t.done=!0,r&&(t=r);try{if(t.facade===e)throw new uI("Promise can't be resolved itself");var n=vI(e);n?XO((function(){var r={done:!1};try{LO(n,e,_I(SI,r,t),_I(kI,r,t))}catch(e){kI(r,e,t)}})):(t.value=e,t.state=1,mI(t,!1))}catch(e){kI({done:!1},e,t)}}};if(eI&&(cI=(sI=function(t){WO(this,cI),UO(t),LO(OO,this);var e=iI(this);try{t(_I(SI,e),_I(kI,e))}catch(t){kI(e,t)}}).prototype,(OO=function(t){aI(this,{type:tI,done:!1,notified:!1,parent:!1,reactions:new KO,rejection:!1,state:0,value:void 0})}).prototype=zO(cI,"then",(function(t,e){var r=iI(this),n=fI(HO(this,sI));return r.parent=!0,n.ok=!YO(t)||t,n.fail=YO(e)&&e,n.domain=jO?hI.domain:void 0,0===r.state?r.reactions.add(n):XO((function(){yI(n,r)})),n.promise})),IO=function(){var t=new OO,e=iI(t);this.promise=t,this.resolve=_I(SI,e),this.reject=_I(kI,e)},$O.f=fI=function(t){return t===sI||undefined===t?new IO(t):dI(t)},YO(ZO)&&oI!==Object.prototype)){RO=oI.then,nI||zO(oI,"then",(function(t,e){var r=this;return new sI((function(t,e){LO(RO,r,t,e)})).then(t,e)}),{unsafe:!0});try{delete oI.constructor}catch(t){}BO&&BO(oI,cI)}CO({global:!0,constructor:!0,wrap:!0,forced:eI},{Promise:sI}),FO(sI,tI,!1),NO(tI);var EI=hO,MI=SO.CONSTRUCTOR||!nd((function(t){EI.all(t).then(void 0,(function(){}))})),TI=u,PI=gt,OI=EO,II=lO,RI=Ol;ti({target:"Promise",stat:!0,forced:MI},{all:function(t){var e=this,r=OI.f(e),n=r.resolve,i=r.reject,a=II((function(){var r=PI(e.resolve),a=[],o=0,s=1;RI(t,(function(t){var c=o++,u=!1;s++,TI(r,e,t).then((function(t){u||(u=!0,a[c]=t,--s||n(a))}),i)})),--s||n(a)}));return a.error&&i(a.value),r.promise}});var CI=ti,jI=SO.CONSTRUCTOR,DI=hO,LI=W,zI=F,BI=Qr,FI=DI&&DI.prototype;if(CI({target:"Promise",proto:!0,forced:jI,real:!0},{catch:function(t){return this.then(void 0,t)}}),zI(DI)){var NI=LI("Promise").prototype.catch;FI.catch!==NI&&BI(FI,"catch",NI,{unsafe:!0})}var UI=u,YI=gt,GI=EO,WI=lO,HI=Ol;ti({target:"Promise",stat:!0,forced:MI},{race:function(t){var e=this,r=GI.f(e),n=r.reject,i=WI((function(){var i=YI(e.resolve);HI(t,(function(t){UI(i,e,t).then(r.resolve,n)}))}));return i.error&&n(i.value),r.promise}});var qI=EO;ti({target:"Promise",stat:!0,forced:SO.CONSTRUCTOR},{reject:function(t){var e=qI.f(this);return(0,e.reject)(t),e.promise}});var XI=Ie,VI=U,QI=EO,KI=function(t,e){if(XI(t),VI(e)&&e.constructor===t)return e;var r=QI.f(t);return(0,r.resolve)(e),r.promise},JI=ti,ZI=SO.CONSTRUCTOR,$I=KI;W("Promise"),JI({target:"Promise",stat:!0,forced:ZI},{resolve:function(t){return $I(this,t)}});var tR=u,eR=gt,rR=EO,nR=lO,iR=Ol;ti({target:"Promise",stat:!0,forced:MI},{allSettled:function(t){var e=this,r=rR.f(e),n=r.resolve,i=r.reject,a=nR((function(){var r=eR(e.resolve),i=[],a=0,o=1;iR(t,(function(t){var s=a++,c=!1;o++,tR(r,e,t).then((function(t){c||(c=!0,i[s]={status:"fulfilled",value:t},--o||n(i))}),(function(t){c||(c=!0,i[s]={status:"rejected",reason:t},--o||n(i))}))})),--o||n(i)}));return a.error&&i(a.value),r.promise}});var aR=u,oR=gt,sR=W,cR=EO,uR=lO,lR=Ol,hR="No one promise resolved";ti({target:"Promise",stat:!0,forced:MI},{any:function(t){var e=this,r=sR("AggregateError"),n=cR.f(e),i=n.resolve,a=n.reject,o=uR((function(){var n=oR(e.resolve),o=[],s=0,c=1,u=!1;lR(t,(function(t){var l=s++,h=!1;c++,aR(n,e,t).then((function(t){h||u||(u=!0,i(t))}),(function(t){h||u||(h=!0,o[l]=t,--c||a(new r(o,hR)))}))})),--c||a(new r(o,hR))}));return o.error&&a(o.value),n.promise}});var fR=ti,dR=hO,pR=i,gR=W,vR=F,yR=vb,mR=KI,bR=Qr,xR=dR&&dR.prototype;if(fR({target:"Promise",proto:!0,real:!0,forced:!!dR&&pR((function(){xR.finally.call({then:function(){}},(function(){}))}))},{finally:function(t){var e=yR(this,gR("Promise")),r=vR(t);return this.then(r?function(r){return mR(e,t()).then((function(){return r}))}:t,r?function(r){return mR(e,t()).then((function(){throw r}))}:t)}}),vR(dR)){var wR=gR("Promise").prototype.finally;xR.finally!==wR&&bR(xR,"finally",wR,{unsafe:!0})}var AR=EO;ti({target:"Promise",stat:!0},{withResolvers:function(){var t=AR.f(this);return{promise:t.promise,resolve:t.resolve,reject:t.reject}}});var _R=Ss,kR=gt,SR=Ie;ti({target:"Reflect",stat:!0,forced:!i((function(){Reflect.apply((function(){}))}))},{apply:function(t,e,r){return _R(kR(t),e,SR(r))}});var ER=ti,MR=Ss,TR=oA,PR=hb,OR=Ie,IR=U,RR=Bi,CR=i,jR=W("Reflect","construct"),DR=Object.prototype,LR=[].push,zR=CR((function(){function t(){}return!(jR((function(){}),[],t)instanceof t)})),BR=!CR((function(){jR((function(){}))})),FR=zR||BR;ER({target:"Reflect",stat:!0,forced:FR,sham:FR},{construct:function(t,e){PR(t),OR(e);var r=arguments.length<3?t:PR(arguments[2]);if(BR&&!zR)return jR(t,e,r);if(t===r){switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3])}var n=[null];return MR(LR,n,e),new(MR(TR,t,n))}var i=r.prototype,a=RR(IR(i)?i:DR),o=MR(t,a,e);return IR(o)?o:a}});var NR=a,UR=Ie,YR=le,GR=Ee;ti({target:"Reflect",stat:!0,forced:i((function(){Reflect.defineProperty(GR.f({},1,{value:1}),1,{value:2})})),sham:!NR},{defineProperty:function(t,e,r){UR(t);var n=YR(e);UR(r);try{return GR.f(t,n,r),!0}catch(t){return!1}}});var WR=ti,HR=Ie,qR=n.f;WR({target:"Reflect",stat:!0},{deleteProperty:function(t,e){var r=qR(HR(t),e);return!(r&&!r.configurable)&&delete t[e]}});var XR=Ft,VR=function(t){return void 0!==t&&(XR(t,"value")||XR(t,"writable"))},QR=u,KR=U,JR=Ie,ZR=VR,$R=n,tC=Vu;ti({target:"Reflect",stat:!0},{get:function t(e,r){var n,i,a=arguments.length<3?e:arguments[2];return JR(e)===a?e[r]:(n=$R.f(e,r))?ZR(n)?n.value:void 0===n.get?void 0:QR(n.get,a):KR(i=tC(e))?t(i,r,a):void 0}});var eC=Ie,rC=n;ti({target:"Reflect",stat:!0,sham:!a},{getOwnPropertyDescriptor:function(t,e){return rC.f(eC(t),e)}});var nC=Ie,iC=Vu;ti({target:"Reflect",stat:!0,sham:!Nu},{getPrototypeOf:function(t){return iC(nC(t))}}),ti({target:"Reflect",stat:!0},{has:function(t,e){return e in t}});var aC=Ie,oC=RA;ti({target:"Reflect",stat:!0},{isExtensible:function(t){return aC(t),oC(t)}}),ti({target:"Reflect",stat:!0},{ownKeys:Rn});var sC=W,cC=Ie;ti({target:"Reflect",stat:!0,sham:!CA},{preventExtensions:function(t){cC(t);try{var e=sC("Object","preventExtensions");return e&&e(t),!0}catch(t){return!1}}});var uC=ti,lC=u,hC=Ie,fC=U,dC=VR,pC=Ee,gC=n,vC=Vu,yC=v;var mC=i((function(){var t=function(){},e=pC.f(new t,"a",{configurable:!0});return!1!==Reflect.set(t.prototype,"a",1,e)}));uC({target:"Reflect",stat:!0,forced:mC},{set:function t(e,r,n){var i,a,o,s=arguments.length<4?e:arguments[3],c=gC.f(hC(e),r);if(!c){if(fC(a=vC(e)))return t(a,r,n,s);c=yC(0)}if(dC(c)){if(!1===c.writable||!fC(s))return!1;if(i=gC.f(s,r)){if(i.get||i.set||!1===i.writable)return!1;i.value=n,pC.f(s,r,i)}else pC.f(s,r,yC(0,n))}else{if(void 0===(o=c.set))return!1;lC(o,s,n)}return!0}});var bC=Ie,xC=jc,wC=Bc;wC&&ti({target:"Reflect",stat:!0},{setPrototypeOf:function(t,e){bC(t),xC(e);try{return wC(t,e),!0}catch(t){return!1}}});var AC=r,_C=ha;ti({global:!0},{Reflect:{}}),_C(AC.Reflect,"Reflect",!0);var kC=U,SC=S,EC=$t("match"),MC=function(t){var e;return kC(t)&&(void 0!==(e=t[EC])?!!e:"RegExp"===SC(t))},TC=Ie,PC=function(){var t=TC(this),e="";return t.hasIndices&&(e+="d"),t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.unicodeSets&&(e+="v"),t.sticky&&(e+="y"),e},OC=u,IC=Ft,RC=H,CC=PC,jC=RegExp.prototype,DC=function(t){var e=t.flags;return void 0!==e||"flags"in jC||IC(t,"flags")||!RC(jC,t)?e:OC(CC,t)},LC=i,zC=r.RegExp,BC=LC((function(){var t=zC("a","y");return t.lastIndex=2,null!==t.exec("abcd")})),FC=BC||LC((function(){return!zC("a","y").sticky})),NC=BC||LC((function(){var t=zC("^r","gy");return t.lastIndex=2,null!==t.exec("str")})),UC={BROKEN_CARET:NC,MISSED_STICKY:FC,UNSUPPORTED_Y:BC},YC=i,GC=r.RegExp,WC=YC((function(){var t=GC(".","s");return!(t.dotAll&&t.test("\n")&&"s"===t.flags)})),HC=i,qC=r.RegExp,XC=HC((function(){var t=qC("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")})),VC=a,QC=r,KC=w,JC=qn,ZC=Wc,$C=He,tj=Bi,ej=Kr.f,rj=H,nj=MC,ij=fi,aj=DC,oj=UC,sj=Nc,cj=Qr,uj=i,lj=Ft,hj=Mr.enforce,fj=Qg,dj=WC,pj=XC,gj=$t("match"),vj=QC.RegExp,yj=vj.prototype,mj=QC.SyntaxError,bj=KC(yj.exec),xj=KC("".charAt),wj=KC("".replace),Aj=KC("".indexOf),_j=KC("".slice),kj=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,Sj=/a/g,Ej=/a/g,Mj=new vj(Sj)!==Sj,Tj=oj.MISSED_STICKY,Pj=oj.UNSUPPORTED_Y,Oj=VC&&(!Mj||Tj||dj||pj||uj((function(){return Ej[gj]=!1,vj(Sj)!==Sj||vj(Ej)===Ej||"/a/i"!==String(vj(Sj,"i"))})));if(JC("RegExp",Oj)){for(var Ij=function(t,e){var r,n,i,a,o,s,c=rj(yj,this),u=nj(t),l=void 0===e,h=[],f=t;if(!c&&u&&l&&t.constructor===Ij)return t;if((u||rj(yj,t))&&(t=t.source,l&&(e=aj(f))),t=void 0===t?"":ij(t),e=void 0===e?"":ij(e),f=t,dj&&"dotAll"in Sj&&(n=!!e&&Aj(e,"s")>-1)&&(e=wj(e,/s/g,"")),r=e,Tj&&"sticky"in Sj&&(i=!!e&&Aj(e,"y")>-1)&&Pj&&(e=wj(e,/y/g,"")),pj&&(a=function(t){for(var e,r=t.length,n=0,i="",a=[],o=tj(null),s=!1,c=!1,u=0,l="";n<=r;n++){if("\\"===(e=xj(t,n)))e+=xj(t,++n);else if("]"===e)s=!1;else if(!s)switch(!0){case"["===e:s=!0;break;case"("===e:bj(kj,_j(t,n+1))&&(n+=2,c=!0),i+=e,u++;continue;case">"===e&&c:if(""===l||lj(o,l))throw new mj("Invalid capture group name");o[l]=!0,a[a.length]=[l,u],c=!1,l="";continue}c?l+=e:i+=e}return[i,a]}(t),t=a[0],h=a[1]),o=ZC(vj(t,e),c?this:yj,Ij),(n||i||h.length)&&(s=hj(o),n&&(s.dotAll=!0,s.raw=Ij(function(t){for(var e,r=t.length,n=0,i="",a=!1;n<=r;n++)"\\"!==(e=xj(t,n))?a||"."!==e?("["===e?a=!0:"]"===e&&(a=!1),i+=e):i+="[\\s\\S]":i+=e+xj(t,++n);return i}(t),r)),i&&(s.sticky=!0),h.length&&(s.groups=h)),t!==f)try{$C(o,"source",""===f?"(?:)":f)}catch(t){}return o},Rj=ej(vj),Cj=0;Rj.length>Cj;)sj(Ij,vj,Rj[Cj++]);yj.constructor=Ij,Ij.prototype=yj,cj(QC,"RegExp",Ij,{constructor:!0})}fj("RegExp");var jj=a,Dj=WC,Lj=S,zj=Vi,Bj=Mr.get,Fj=RegExp.prototype,Nj=TypeError;jj&&Dj&&zj(Fj,"dotAll",{configurable:!0,get:function(){if(this!==Fj){if("RegExp"===Lj(this))return!!Bj(this).dotAll;throw new Nj("Incompatible receiver, RegExp required")}}});var Uj=u,Yj=w,Gj=fi,Wj=PC,Hj=UC,qj=Bi,Xj=Mr.get,Vj=WC,Qj=XC,Kj=Ct("native-string-replace",String.prototype.replace),Jj=RegExp.prototype.exec,Zj=Jj,$j=Yj("".charAt),tD=Yj("".indexOf),eD=Yj("".replace),rD=Yj("".slice),nD=function(){var t=/a/,e=/b*/g;return Uj(Jj,t,"a"),Uj(Jj,e,"a"),0!==t.lastIndex||0!==e.lastIndex}(),iD=Hj.BROKEN_CARET,aD=void 0!==/()??/.exec("")[1];(nD||aD||iD||Vj||Qj)&&(Zj=function(t){var e,r,n,i,a,o,s,c=this,u=Xj(c),l=Gj(t),h=u.raw;if(h)return h.lastIndex=c.lastIndex,e=Uj(Zj,h,l),c.lastIndex=h.lastIndex,e;var f=u.groups,d=iD&&c.sticky,p=Uj(Wj,c),g=c.source,v=0,y=l;if(d&&(p=eD(p,"y",""),-1===tD(p,"g")&&(p+="g"),y=rD(l,c.lastIndex),c.lastIndex>0&&(!c.multiline||c.multiline&&"\n"!==$j(l,c.lastIndex-1))&&(g="(?: "+g+")",y=" "+y,v++),r=new RegExp("^(?:"+g+")",p)),aD&&(r=new RegExp("^"+g+"$(?!\\s)",p)),nD&&(n=c.lastIndex),i=Uj(Jj,d?r:c,y),d?i?(i.input=rD(i.input,v),i[0]=rD(i[0],v),i.index=c.lastIndex,c.lastIndex+=i[0].length):c.lastIndex=0:nD&&i&&(c.lastIndex=c.global?i.index+i[0].length:n),aD&&i&&i.length>1&&Uj(Kj,i[0],r,(function(){for(a=1;a<arguments.length-2;a++)void 0===arguments[a]&&(i[a]=void 0)})),i&&f)for(i.groups=o=qj(null),a=0;a<f.length;a++)o[(s=f[a])[0]]=i[s[1]];return i});var oD=Zj;ti({target:"RegExp",proto:!0,forced:/./.exec!==oD},{exec:oD});var sD=a,cD=Vi,uD=PC,lD=i,hD=r.RegExp,fD=hD.prototype,dD=sD&&lD((function(){var t=!0;try{hD(".","d")}catch(e){t=!1}var e={},r="",n=t?"dgimsy":"gimsy",i=function(t,n){Object.defineProperty(e,t,{get:function(){return r+=n,!0}})},a={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"};for(var o in t&&(a.hasIndices="d"),a)i(o,a[o]);return Object.getOwnPropertyDescriptor(fD,"flags").get.call(e)!==n||r!==n}));dD&&cD(fD,"flags",{configurable:!0,get:uD});var pD=a,gD=UC.MISSED_STICKY,vD=S,yD=Vi,mD=Mr.get,bD=RegExp.prototype,xD=TypeError;pD&&gD&&yD(bD,"sticky",{configurable:!0,get:function(){if(this!==bD){if("RegExp"===vD(this))return!!mD(this).sticky;throw new xD("Incompatible receiver, RegExp required")}}});var wD,AD,_D=ti,kD=u,SD=F,ED=Ie,MD=fi,TD=(wD=!1,(AD=/[ac]/).exec=function(){return wD=!0,/./.exec.apply(this,arguments)},!0===AD.test("abc")&&wD),PD=/./.test;_D({target:"RegExp",proto:!0,forced:!TD},{test:function(t){var e=ED(this),r=MD(t),n=e.exec;if(!SD(n))return kD(PD,e,r);var i=kD(n,e,r);return null!==i&&(ED(i),!0)}});var OD=Ze.PROPER,ID=Qr,RD=Ie,CD=fi,jD=i,DD=DC,LD="toString",zD=RegExp.prototype,BD=zD[LD],FD=jD((function(){return"/a/b"!==BD.call({source:"a",flags:"b"})})),ND=OD&&BD.name!==LD;(FD||ND)&&ID(zD,LD,(function(){var t=RD(this);return"/"+CD(t.source)+"/"+CD(DD(t))}),{unsafe:!0}),l_("Set",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),S_);var UD=ti,YD=j,GD=en,WD=fi,HD=i,qD=w("".charAt);UD({target:"String",proto:!0,forced:HD((function(){return"\ud842"!=="𠮷".at(-2)}))},{at:function(t){var e=WD(YD(this)),r=e.length,n=GD(t),i=n>=0?n:r+n;return i<0||i>=r?void 0:qD(e,i)}});var XD=w,VD=en,QD=fi,KD=j,JD=XD("".charAt),ZD=XD("".charCodeAt),$D=XD("".slice),tL=function(t){return function(e,r){var n,i,a=QD(KD(e)),o=VD(r),s=a.length;return o<0||o>=s?t?"":void 0:(n=ZD(a,o))<55296||n>56319||o+1===s||(i=ZD(a,o+1))<56320||i>57343?t?JD(a,o):n:t?$D(a,o,o+2):i-56320+(n-55296<<10)+65536}},eL={codeAt:tL(!1),charAt:tL(!0)},rL=eL.codeAt;ti({target:"String",proto:!0},{codePointAt:function(t){return rL(this,t)}});var nL=MC,iL=TypeError,aL=function(t){if(nL(t))throw new iL("The method doesn't accept regular expressions");return t},oL=$t("match"),sL=function(t){var e=/./;try{"/./"[t](e)}catch(r){try{return e[oL]=!1,"/./"[t](e)}catch(t){}}return!1},cL=ti,uL=pa,lL=n.f,hL=un,fL=fi,dL=aL,pL=j,gL=sL,vL=uL("".slice),yL=Math.min,mL=gL("endsWith"),bL=!mL&&!!function(){var t=lL(String.prototype,"endsWith");return t&&!t.writable}();cL({target:"String",proto:!0,forced:!bL&&!mL},{endsWith:function(t){var e=fL(pL(this));dL(t);var r=arguments.length>1?arguments[1]:void 0,n=e.length,i=void 0===r?n:yL(hL(r),n),a=fL(t);return vL(e,i-a.length,i)===a}});var xL=ti,wL=w,AL=on,_L=RangeError,kL=String.fromCharCode,SL=String.fromCodePoint,EL=wL([].join);xL({target:"String",stat:!0,arity:1,forced:!!SL&&1!==SL.length},{fromCodePoint:function(t){for(var e,r=[],n=arguments.length,i=0;n>i;){if(e=+arguments[i++],AL(e,1114111)!==e)throw new _L(e+" is not a valid code point");r[i]=e<65536?kL(e):kL(55296+((e-=65536)>>10),e%1024+56320)}return EL(r,"")}});var ML=ti,TL=aL,PL=j,OL=fi,IL=sL,RL=w("".indexOf);ML({target:"String",proto:!0,forced:!IL("includes")},{includes:function(t){return!!~RL(OL(PL(this)),OL(TL(t)),arguments.length>1?arguments[1]:void 0)}});var CL=ti,jL=j,DL=fi,LL=w("".charCodeAt);CL({target:"String",proto:!0},{isWellFormed:function(){for(var t=DL(jL(this)),e=t.length,r=0;r<e;r++){var n=LL(t,r);if(55296==(63488&n)&&(n>=56320||++r>=e||56320!=(64512&LL(t,r))))return!1}return!0}});var zL=eL.charAt,BL=fi,FL=Mr,NL=Kd,UL=Jd,YL="String Iterator",GL=FL.set,WL=FL.getterFor(YL);NL(String,"String",(function(t){GL(this,{type:YL,string:BL(t),index:0})}),(function(){var t,e=WL(this),r=e.string,n=e.index;return n>=r.length?UL(void 0,!0):(t=zL(r,n),e.index+=t.length,UL(t,!1))}));var HL=u,qL=Qr,XL=oD,VL=i,QL=$t,KL=He,JL=QL("species"),ZL=RegExp.prototype,$L=function(t,e,r,n){var i=QL(t),a=!VL((function(){var e={};return e[i]=function(){return 7},7!==""[t](e)})),o=a&&!VL((function(){var e=!1,r=/a/;return"split"===t&&((r={}).constructor={},r.constructor[JL]=function(){return r},r.flags="",r[i]=/./[i]),r.exec=function(){return e=!0,null},r[i](""),!e}));if(!a||!o||r){var s=/./[i],c=e(i,""[t],(function(t,e,r,n,i){var o=e.exec;return o===XL||o===ZL.exec?a&&!i?{done:!0,value:HL(s,e,r,n)}:{done:!0,value:HL(t,r,e,n)}:{done:!1}}));qL(String.prototype,t,c[0]),qL(ZL,i,c[1])}n&&KL(ZL[i],"sham",!0)},tz=eL.charAt,ez=function(t,e,r){return e+(r?tz(t,e).length:1)},rz=u,nz=Ie,iz=F,az=S,oz=oD,sz=TypeError,cz=function(t,e){var r=t.exec;if(iz(r)){var n=rz(r,t,e);return null!==n&&nz(n),n}if("RegExp"===az(t))return rz(oz,t,e);throw new sz("RegExp#exec called on incompatible receiver")},uz=u,lz=Ie,hz=I,fz=un,dz=fi,pz=j,gz=mt,vz=ez,yz=cz;$L("match",(function(t,e,r){return[function(e){var r=pz(this),n=hz(e)?void 0:gz(e,t);return n?uz(n,e,r):new RegExp(e)[t](dz(r))},function(t){var n=lz(this),i=dz(t),a=r(e,n,i);if(a.done)return a.value;if(!n.global)return yz(n,i);var o=n.unicode;n.lastIndex=0;for(var s,c=[],u=0;null!==(s=yz(n,i));){var l=dz(s[0]);c[u]=l,""===l&&(n.lastIndex=vz(i,fz(n.lastIndex),o)),u++}return 0===u?null:c}]}));var mz=ti,bz=u,xz=pa,wz=Od,Az=Jd,_z=j,kz=un,Sz=fi,Ez=Ie,Mz=I,Tz=MC,Pz=DC,Oz=mt,Iz=Qr,Rz=i,Cz=vb,jz=ez,Dz=cz,Lz=Mr,zz=$t("matchAll"),Bz="RegExp String",Fz=Bz+" Iterator",Nz=Lz.set,Uz=Lz.getterFor(Fz),Yz=RegExp.prototype,Gz=TypeError,Wz=xz("".indexOf),Hz=xz("".matchAll),qz=!!Hz&&!Rz((function(){Hz("a",/./)})),Xz=wz((function(t,e,r,n){Nz(this,{type:Fz,regexp:t,string:e,global:r,unicode:n,done:!1})}),Bz,(function(){var t=Uz(this);if(t.done)return Az(void 0,!0);var e=t.regexp,r=t.string,n=Dz(e,r);return null===n?(t.done=!0,Az(void 0,!0)):t.global?(""===Sz(n[0])&&(e.lastIndex=jz(r,kz(e.lastIndex),t.unicode)),Az(n,!1)):(t.done=!0,Az(n,!1))})),Vz=function(t){var e,r,n,i=Ez(this),a=Sz(t),o=Cz(i,RegExp),s=Sz(Pz(i));return e=new o(o===RegExp?i.source:i,s),r=!!~Wz(s,"g"),n=!!~Wz(s,"u"),e.lastIndex=kz(i.lastIndex),new Xz(e,a,r,n)};mz({target:"String",proto:!0,forced:qz},{matchAll:function(t){var e,r,n,i=_z(this);if(Mz(t)){if(qz)return Hz(i,t)}else{if(Tz(t)&&(e=Sz(_z(Pz(t))),!~Wz(e,"g")))throw new Gz("`.matchAll` does not allow non-global regexes");if(qz)return Hz(i,t);if(n=Oz(t,zz))return bz(n,t,i)}return r=Sz(i),new RegExp(t,"g")[zz](r)}}),zz in Yz||Iz(Yz,zz,Vz);var Qz=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(q),Kz=iw.end;ti({target:"String",proto:!0,forced:Qz},{padEnd:function(t){return Kz(this,t,arguments.length>1?arguments[1]:void 0)}});var Jz=iw.start;ti({target:"String",proto:!0,forced:Qz},{padStart:function(t){return Jz(this,t,arguments.length>1?arguments[1]:void 0)}});var Zz=ti,$z=w,tB=z,eB=Lt,rB=fi,nB=hn,iB=$z([].push),aB=$z([].join);Zz({target:"String",stat:!0},{raw:function(t){var e=tB(eB(t).raw),r=nB(e);if(!r)return"";for(var n=arguments.length,i=[],a=0;;){if(iB(i,rB(e[a++])),a===r)return aB(i,"");a<n&&iB(i,rB(arguments[a]))}}}),ti({target:"String",proto:!0},{repeat:Qx});var oB=w,sB=Lt,cB=Math.floor,uB=oB("".charAt),lB=oB("".replace),hB=oB("".slice),fB=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,dB=/\$([$&'`]|\d{1,2})/g,pB=function(t,e,r,n,i,a){var o=r+t.length,s=n.length,c=dB;return void 0!==i&&(i=sB(i),c=fB),lB(a,c,(function(a,c){var u;switch(uB(c,0)){case"$":return"$";case"&":return t;case"`":return hB(e,0,r);case"'":return hB(e,o);case"<":u=i[hB(c,1,-1)];break;default:var l=+c;if(0===l)return a;if(l>s){var h=cB(l/10);return 0===h?a:h<=s?void 0===n[h-1]?uB(c,1):n[h-1]+uB(c,1):a}u=n[l-1]}return void 0===u?"":u}))},gB=Ss,vB=u,yB=w,mB=$L,bB=i,xB=Ie,wB=F,AB=I,_B=en,kB=un,SB=fi,EB=j,MB=ez,TB=mt,PB=pB,OB=cz,IB=$t("replace"),RB=Math.max,CB=Math.min,jB=yB([].concat),DB=yB([].push),LB=yB("".indexOf),zB=yB("".slice),BB="$0"==="a".replace(/./,"$0"),FB=!!/./[IB]&&""===/./[IB]("a","$0"),NB=!bB((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}));mB("replace",(function(t,e,r){var n=FB?"$":"$0";return[function(t,r){var n=EB(this),i=AB(t)?void 0:TB(t,IB);return i?vB(i,t,n,r):vB(e,SB(n),t,r)},function(t,i){var a=xB(this),o=SB(t);if("string"==typeof i&&-1===LB(i,n)&&-1===LB(i,"$<")){var s=r(e,a,o,i);if(s.done)return s.value}var c=wB(i);c||(i=SB(i));var u,l=a.global;l&&(u=a.unicode,a.lastIndex=0);for(var h,f=[];null!==(h=OB(a,o))&&(DB(f,h),l);){""===SB(h[0])&&(a.lastIndex=MB(o,kB(a.lastIndex),u))}for(var d,p="",g=0,v=0;v<f.length;v++){for(var y,m=SB((h=f[v])[0]),b=RB(CB(_B(h.index),o.length),0),x=[],w=1;w<h.length;w++)DB(x,void 0===(d=h[w])?d:String(d));var A=h.groups;if(c){var _=jB([m],x,b,o);void 0!==A&&DB(_,A),y=SB(gB(i,void 0,_))}else y=PB(m,o,b,x,A,i);b>=g&&(p+=zB(o,g,b)+y,g=b+m.length)}return p+zB(o,g)}]}),!NB||!BB||FB);var UB=ti,YB=u,GB=w,WB=j,HB=F,qB=I,XB=MC,VB=fi,QB=mt,KB=DC,JB=pB,ZB=$t("replace"),$B=TypeError,tF=GB("".indexOf);GB("".replace);var eF=GB("".slice),rF=Math.max;UB({target:"String",proto:!0},{replaceAll:function(t,e){var r,n,i,a,o,s,c,u,l=WB(this),h=0,f=0,d="";if(!qB(t)){if(XB(t)&&(r=VB(WB(KB(t))),!~tF(r,"g")))throw new $B("`.replaceAll` does not allow non-global regexes");if(n=QB(t,ZB))return YB(n,t,l,e)}for(i=VB(l),a=VB(t),(o=HB(e))||(e=VB(e)),s=a.length,c=rF(1,s),h=tF(i,a);-1!==h;)u=o?VB(e(a,h,i)):JB(a,i,h,[],void 0,e),d+=eF(i,f,h)+u,f=h+s,h=h+c>i.length?-1:tF(i,a,h+c);return f<i.length&&(d+=eF(i,f)),d}});var nF=u,iF=Ie,aF=I,oF=j,sF=$M,cF=fi,uF=mt,lF=cz;$L("search",(function(t,e,r){return[function(e){var r=oF(this),n=aF(e)?void 0:uF(e,t);return n?nF(n,e,r):new RegExp(e)[t](cF(r))},function(t){var n=iF(this),i=cF(t),a=r(e,n,i);if(a.done)return a.value;var o=n.lastIndex;sF(o,0)||(n.lastIndex=0);var s=lF(n,i);return sF(n.lastIndex,o)||(n.lastIndex=o),null===s?-1:s.index}]}));var hF=u,fF=w,dF=$L,pF=Ie,gF=I,vF=j,yF=vb,mF=ez,bF=un,xF=fi,wF=mt,AF=cz,_F=i,kF=UC.UNSUPPORTED_Y,SF=Math.min,EF=fF([].push),MF=fF("".slice),TF=!_F((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var r="ab".split(t);return 2!==r.length||"a"!==r[0]||"b"!==r[1]})),PF="c"==="abbc".split(/(b)*/)[1]||4!=="test".split(/(?:)/,-1).length||2!=="ab".split(/(?:ab)*/).length||4!==".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length;dF("split",(function(t,e,r){var n="0".split(void 0,0).length?function(t,r){return void 0===t&&0===r?[]:hF(e,this,t,r)}:e;return[function(e,r){var i=vF(this),a=gF(e)?void 0:wF(e,t);return a?hF(a,e,i,r):hF(n,xF(i),e,r)},function(t,i){var a=pF(this),o=xF(t);if(!PF){var s=r(n,a,o,i,n!==e);if(s.done)return s.value}var c=yF(a,RegExp),u=a.unicode,l=(a.ignoreCase?"i":"")+(a.multiline?"m":"")+(a.unicode?"u":"")+(kF?"g":"y"),h=new c(kF?"^(?:"+a.source+")":a,l),f=void 0===i?4294967295:i>>>0;if(0===f)return[];if(0===o.length)return null===AF(h,o)?[o]:[];for(var d=0,p=0,g=[];p<o.length;){h.lastIndex=kF?0:p;var v,y=AF(h,kF?MF(o,p):o);if(null===y||(v=SF(bF(h.lastIndex+(kF?p:0)),o.length))===d)p=mF(o,p,u);else{if(EF(g,MF(o,d,p)),g.length===f)return g;for(var m=1;m<=y.length-1;m++)if(EF(g,y[m]),g.length===f)return g;p=d=v}}return EF(g,MF(o,d)),g}]}),PF||!TF,kF);var OF=ti,IF=pa,RF=n.f,CF=un,jF=fi,DF=aL,LF=j,zF=sL,BF=IF("".slice),FF=Math.min,NF=zF("startsWith"),UF=!NF&&!!function(){var t=RF(String.prototype,"startsWith");return t&&!t.writable}();OF({target:"String",proto:!0,forced:!UF&&!NF},{startsWith:function(t){var e=jF(LF(this));DF(t);var r=CF(FF(arguments.length>1?arguments[1]:void 0,e.length)),n=jF(t);return BF(e,r,r+n.length)===n}});var YF=ti,GF=j,WF=en,HF=fi,qF=w("".slice),XF=Math.max,VF=Math.min;YF({target:"String",proto:!0,forced:!"".substr||"b"!=="ab".substr(-1)},{substr:function(t,e){var r,n,i=HF(GF(this)),a=i.length,o=WF(t);return o===1/0&&(o=0),o<0&&(o=XF(a+o,0)),(r=void 0===e?a:WF(e))<=0||r===1/0||o>=(n=VF(o+r,a))?"":qF(i,o,n)}});var QF=ti,KF=u,JF=w,ZF=j,$F=fi,tN=i,eN=Array,rN=JF("".charAt),nN=JF("".charCodeAt),iN=JF([].join),aN="".toWellFormed,oN=aN&&tN((function(){return"1"!==KF(aN,1)}));QF({target:"String",proto:!0,forced:oN},{toWellFormed:function(){var t=$F(ZF(this));if(oN)return KF(aN,t);for(var e=t.length,r=eN(e),n=0;n<e;n++){var i=nN(t,n);55296!=(63488&i)?r[n]=rN(t,n):i>=56320||n+1>=e||56320!=(64512&nN(t,n+1))?r[n]="�":(r[n]=rN(t,n),r[++n]=rN(t,n))}return iN(r,"")}});var sN=Ze.PROPER,cN=i,uN=Fk,lN=function(t){return cN((function(){return!!uN[t]()||"​…᠎"!=="​…᠎"[t]()||sN&&uN[t].name!==t}))},hN=Xk.trim;ti({target:"String",proto:!0,forced:lN("trim")},{trim:function(){return hN(this)}});var fN=Xk.end,dN=lN("trimEnd")?function(){return fN(this)}:"".trimEnd;ti({target:"String",proto:!0,name:"trimEnd",forced:"".trimRight!==dN},{trimRight:dN});ti({target:"String",proto:!0,name:"trimEnd",forced:"".trimEnd!==dN},{trimEnd:dN});var pN=Xk.start,gN=lN("trimStart")?function(){return pN(this)}:"".trimStart;ti({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==gN},{trimLeft:gN});ti({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==gN},{trimStart:gN});var vN=j,yN=fi,mN=/"/g,bN=w("".replace),xN=function(t,e,r,n){var i=yN(vN(t)),a="<"+e;return""!==r&&(a+=" "+r+'="'+bN(yN(n),mN,"&quot;")+'"'),a+">"+i+"</"+e+">"},wN=i,AN=function(t){return wN((function(){var e=""[t]('"');return e!==e.toLowerCase()||e.split('"').length>3}))},_N=xN;ti({target:"String",proto:!0,forced:AN("anchor")},{anchor:function(t){return _N(this,"a","name",t)}});var kN=xN;ti({target:"String",proto:!0,forced:AN("big")},{big:function(){return kN(this,"big","","")}});var SN=xN;ti({target:"String",proto:!0,forced:AN("blink")},{blink:function(){return SN(this,"blink","","")}});var EN=xN;ti({target:"String",proto:!0,forced:AN("bold")},{bold:function(){return EN(this,"b","","")}});var MN=xN;ti({target:"String",proto:!0,forced:AN("fixed")},{fixed:function(){return MN(this,"tt","","")}});var TN=xN;ti({target:"String",proto:!0,forced:AN("fontcolor")},{fontcolor:function(t){return TN(this,"font","color",t)}});var PN=xN;ti({target:"String",proto:!0,forced:AN("fontsize")},{fontsize:function(t){return PN(this,"font","size",t)}});var ON=xN;ti({target:"String",proto:!0,forced:AN("italics")},{italics:function(){return ON(this,"i","","")}});var IN=xN;ti({target:"String",proto:!0,forced:AN("link")},{link:function(t){return IN(this,"a","href",t)}});var RN=xN;ti({target:"String",proto:!0,forced:AN("small")},{small:function(){return RN(this,"small","","")}});var CN=xN;ti({target:"String",proto:!0,forced:AN("strike")},{strike:function(){return CN(this,"strike","","")}});var jN=xN;ti({target:"String",proto:!0,forced:AN("sub")},{sub:function(){return jN(this,"sub","","")}});var DN=xN;ti({target:"String",proto:!0,forced:AN("sup")},{sup:function(){return DN(this,"sup","","")}});var LN={exports:{}},zN=r,BN=i,FN=nd,NN=sb.NATIVE_ARRAY_BUFFER_VIEWS,UN=zN.ArrayBuffer,YN=zN.Int8Array,GN=!NN||!BN((function(){YN(1)}))||!BN((function(){new YN(-1)}))||!FN((function(t){new YN,new YN(null),new YN(1.5),new YN(t)}),!0)||BN((function(){return 1!==new YN(new UN(2),1,void 0).length})),WN=en,HN=RangeError,qN=function(t){var e=WN(t);if(e<0)throw new HN("The argument can't be less than 0");return e},XN=RangeError,VN=function(t,e){var r=qN(t);if(r%e)throw new XN("Wrong offset");return r},QN=Math.round,KN=ui,JN=function(t){var e=KN(t);return"BigInt64Array"===e||"BigUint64Array"===e},ZN=se,$N=TypeError,tU=function(t){var e=ZN(t,"number");if("number"==typeof e)throw new $N("Can't convert number to bigint");return BigInt(e)},eU=ma,rU=u,nU=hb,iU=Lt,aU=hn,oU=fl,sU=al,cU=$u,uU=JN,lU=sb.aTypedArrayConstructor,hU=tU,fU=function(t){var e,r,n,i,a,o,s,c,u=nU(this),l=iU(t),h=arguments.length,f=h>1?arguments[1]:void 0,d=void 0!==f,p=sU(l);if(p&&!cU(p))for(c=(s=oU(l,p)).next,l=[];!(o=rU(c,s)).done;)l.push(o.value);for(d&&h>2&&(f=eU(f,arguments[2])),r=aU(l),n=new(lU(u))(r),i=uU(n),e=0;r>e;e++)a=d?f(l[e],e):l[e],n[e]=i?hU(a):+a;return n},dU=ti,pU=r,gU=u,vU=a,yU=GN,mU=sb,bU=bm,xU=$v,wU=v,AU=He,_U=_S,kU=un,SU=ny,EU=VN,MU=function(t){var e=QN(t);return e<0?0:e>255?255:255&e},TU=le,PU=Ft,OU=ui,IU=U,RU=ut,CU=Bi,jU=H,DU=Bc,LU=Kr.f,zU=fU,BU=Va.forEach,FU=Qg,NU=Vi,UU=Ee,YU=n,GU=vv,WU=Wc,HU=Mr.get,qU=Mr.set,XU=Mr.enforce,VU=UU.f,QU=YU.f,KU=pU.RangeError,JU=bU.ArrayBuffer,ZU=JU.prototype,$U=bU.DataView,tY=mU.NATIVE_ARRAY_BUFFER_VIEWS,eY=mU.TYPED_ARRAY_TAG,rY=mU.TypedArray,nY=mU.TypedArrayPrototype,iY=mU.isTypedArray,aY="BYTES_PER_ELEMENT",oY="Wrong length",sY=function(t,e){NU(t,e,{configurable:!0,get:function(){return HU(this)[e]}})},cY=function(t){var e;return jU(ZU,t)||"ArrayBuffer"===(e=OU(t))||"SharedArrayBuffer"===e},uY=function(t,e){return iY(t)&&!RU(e)&&e in t&&_U(+e)&&e>=0},lY=function(t,e){return e=TU(e),uY(t,e)?wU(2,t[e]):QU(t,e)},hY=function(t,e,r){return e=TU(e),!(uY(t,e)&&IU(r)&&PU(r,"value"))||PU(r,"get")||PU(r,"set")||r.configurable||PU(r,"writable")&&!r.writable||PU(r,"enumerable")&&!r.enumerable?VU(t,e,r):(t[e]=r.value,t)};vU?(tY||(YU.f=lY,UU.f=hY,sY(nY,"buffer"),sY(nY,"byteOffset"),sY(nY,"byteLength"),sY(nY,"length")),dU({target:"Object",stat:!0,forced:!tY},{getOwnPropertyDescriptor:lY,defineProperty:hY}),LN.exports=function(t,e,r){var n=t.match(/\d+/)[0]/8,i=t+(r?"Clamped":"")+"Array",a="get"+t,o="set"+t,s=pU[i],c=s,u=c&&c.prototype,l={},h=function(t,e){VU(t,e,{get:function(){return function(t,e){var r=HU(t);return r.view[a](e*n+r.byteOffset,!0)}(this,e)},set:function(t){return function(t,e,i){var a=HU(t);a.view[o](e*n+a.byteOffset,r?MU(i):i,!0)}(this,e,t)},enumerable:!0})};tY?yU&&(c=e((function(t,e,r,i){return xU(t,u),WU(IU(e)?cY(e)?void 0!==i?new s(e,EU(r,n),i):void 0!==r?new s(e,EU(r,n)):new s(e):iY(e)?GU(c,e):gU(zU,c,e):new s(SU(e)),t,c)})),DU&&DU(c,rY),BU(LU(s),(function(t){t in c||AU(c,t,s[t])})),c.prototype=u):(c=e((function(t,e,r,i){xU(t,u);var a,o,s,l=0,f=0;if(IU(e)){if(!cY(e))return iY(e)?GU(c,e):gU(zU,c,e);a=e,f=EU(r,n);var d=e.byteLength;if(void 0===i){if(d%n)throw new KU(oY);if((o=d-f)<0)throw new KU(oY)}else if((o=kU(i)*n)+f>d)throw new KU(oY);s=o/n}else s=SU(e),a=new JU(o=s*n);for(qU(t,{buffer:a,byteOffset:f,byteLength:o,length:s,view:new $U(a)});l<s;)h(t,l++)})),DU&&DU(c,rY),u=c.prototype=CU(nY)),u.constructor!==c&&AU(u,"constructor",c),XU(u).TypedArrayConstructor=c,eY&&AU(u,eY,i);var f=c!==s;l[i]=c,dU({global:!0,constructor:!0,forced:f,sham:!tY},l),aY in c||AU(c,aY,n),aY in u||AU(u,aY,n),FU(i)}):LN.exports=function(){},(0,LN.exports)("Float32",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,LN.exports)("Float64",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,LN.exports)("Int8",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,LN.exports)("Int16",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,LN.exports)("Int32",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,LN.exports)("Uint8",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,LN.exports)("Uint8",(function(t){return function(e,r,n){return t(this,e,r,n)}}),!0),(0,LN.exports)("Uint16",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,LN.exports)("Uint32",(function(t){return function(e,r,n){return t(this,e,r,n)}}));var fY=hn,dY=en,pY=sb.aTypedArray;(0,sb.exportTypedArrayMethod)("at",(function(t){var e=pY(this),r=fY(e),n=dY(t),i=n>=0?n:r+n;return i<0||i>=r?void 0:e[i]}));var gY=sb,vY=w(Gh),yY=gY.aTypedArray;(0,gY.exportTypedArrayMethod)("copyWithin",(function(t,e){return vY(yY(this),t,e,arguments.length>2?arguments[2]:void 0)}));var mY=Va.every,bY=sb.aTypedArray;(0,sb.exportTypedArrayMethod)("every",(function(t){return mY(bY(this),t,arguments.length>1?arguments[1]:void 0)}));var xY=Jh,wY=tU,AY=ui,_Y=u,kY=i,SY=sb.aTypedArray,EY=sb.exportTypedArrayMethod,MY=w("".slice),TY=kY((function(){var t=0;return new Int8Array(2).fill({valueOf:function(){return t++}}),1!==t}));EY("fill",(function(t){var e=arguments.length;SY(this);var r="Big"===MY(AY(this),0,3)?wY(t):+t;return _Y(xY,this,r,e>1?arguments[1]:void 0,e>2?arguments[2]:void 0)}),TY);var PY=vb,OY=sb.aTypedArrayConstructor,IY=sb.getTypedArrayConstructor,RY=function(t){return OY(PY(t,IY(t)))},CY=vv,jY=RY,DY=Va.filter,LY=function(t,e){return CY(jY(t),e)},zY=sb.aTypedArray;(0,sb.exportTypedArrayMethod)("filter",(function(t){var e=DY(zY(this),t,arguments.length>1?arguments[1]:void 0);return LY(this,e)}));var BY=Va.find,FY=sb.aTypedArray;(0,sb.exportTypedArrayMethod)("find",(function(t){return BY(FY(this),t,arguments.length>1?arguments[1]:void 0)}));var NY=Va.findIndex,UY=sb.aTypedArray;(0,sb.exportTypedArrayMethod)("findIndex",(function(t){return NY(UY(this),t,arguments.length>1?arguments[1]:void 0)}));var YY=vf.findLast,GY=sb.aTypedArray;(0,sb.exportTypedArrayMethod)("findLast",(function(t){return YY(GY(this),t,arguments.length>1?arguments[1]:void 0)}));var WY=vf.findLastIndex,HY=sb.aTypedArray;(0,sb.exportTypedArrayMethod)("findLastIndex",(function(t){return WY(HY(this),t,arguments.length>1?arguments[1]:void 0)}));var qY=Va.forEach,XY=sb.aTypedArray;(0,sb.exportTypedArrayMethod)("forEach",(function(t){qY(XY(this),t,arguments.length>1?arguments[1]:void 0)})),(0,sb.exportTypedArrayStaticMethod)("from",fU,GN);var VY=vn.includes,QY=sb.aTypedArray;(0,sb.exportTypedArrayMethod)("includes",(function(t){return VY(QY(this),t,arguments.length>1?arguments[1]:void 0)}));var KY=vn.indexOf,JY=sb.aTypedArray;(0,sb.exportTypedArrayMethod)("indexOf",(function(t){return KY(JY(this),t,arguments.length>1?arguments[1]:void 0)}));var ZY=r,$Y=i,tG=w,eG=sb,rG=up,nG=$t("iterator"),iG=ZY.Uint8Array,aG=tG(rG.values),oG=tG(rG.keys),sG=tG(rG.entries),cG=eG.aTypedArray,uG=eG.exportTypedArrayMethod,lG=iG&&iG.prototype,hG=!$Y((function(){lG[nG].call([1])})),fG=!!lG&&lG.values&&lG[nG]===lG.values&&"values"===lG.values.name,dG=function(){return aG(cG(this))};uG("entries",(function(){return sG(cG(this))}),hG),uG("keys",(function(){return oG(cG(this))}),hG),uG("values",dG,hG||!fG,{name:"values"}),uG(nG,dG,hG||!fG,{name:"values"});var pG=sb.aTypedArray,gG=sb.exportTypedArrayMethod,vG=w([].join);gG("join",(function(t){return vG(pG(this),t)}));var yG=Ss,mG=Sp,bG=sb.aTypedArray;(0,sb.exportTypedArrayMethod)("lastIndexOf",(function(t){var e=arguments.length;return yG(mG,bG(this),e>1?[t,arguments[1]]:[t])}));var xG=Va.map,wG=RY,AG=sb.aTypedArray;(0,sb.exportTypedArrayMethod)("map",(function(t){return xG(AG(this),t,arguments.length>1?arguments[1]:void 0,(function(t,e){return new(wG(t))(e)}))}));var _G=sb.aTypedArrayConstructor;(0,sb.exportTypedArrayStaticMethod)("of",(function(){for(var t=0,e=arguments.length,r=new(_G(this))(e);e>t;)r[t]=arguments[t++];return r}),GN);var kG=qp.left,SG=sb.aTypedArray;(0,sb.exportTypedArrayMethod)("reduce",(function(t){var e=arguments.length;return kG(SG(this),t,e,e>1?arguments[1]:void 0)}));var EG=qp.right,MG=sb.aTypedArray;(0,sb.exportTypedArrayMethod)("reduceRight",(function(t){var e=arguments.length;return EG(MG(this),t,e,e>1?arguments[1]:void 0)}));var TG=sb.aTypedArray,PG=sb.exportTypedArrayMethod,OG=Math.floor;PG("reverse",(function(){for(var t,e=this,r=TG(e).length,n=OG(r/2),i=0;i<n;)t=e[i],e[i++]=e[--r],e[r]=t;return e}));var IG=r,RG=u,CG=sb,jG=hn,DG=VN,LG=Lt,zG=i,BG=IG.RangeError,FG=IG.Int8Array,NG=FG&&FG.prototype,UG=NG&&NG.set,YG=CG.aTypedArray,GG=CG.exportTypedArrayMethod,WG=!zG((function(){var t=new Uint8ClampedArray(2);return RG(UG,t,{length:1,0:3},1),3!==t[1]})),HG=WG&&CG.NATIVE_ARRAY_BUFFER_VIEWS&&zG((function(){var t=new FG(2);return t.set(1),t.set("2",1),0!==t[0]||2!==t[1]}));GG("set",(function(t){YG(this);var e=DG(arguments.length>1?arguments[1]:void 0,1),r=LG(t);if(WG)return RG(UG,this,r,e);var n=this.length,i=jG(r),a=0;if(i+e>n)throw new BG("Wrong length");for(;a<i;)this[e+a]=r[a++]}),!WG||HG);var qG=RY,XG=Ni,VG=sb.aTypedArray;(0,sb.exportTypedArrayMethod)("slice",(function(t,e){for(var r=XG(VG(this),t,e),n=qG(this),i=0,a=r.length,o=new n(a);a>i;)o[i]=r[i++];return o}),i((function(){new Int8Array(1).slice()})));var QG=Va.some,KG=sb.aTypedArray;(0,sb.exportTypedArrayMethod)("some",(function(t){return QG(KG(this),t,arguments.length>1?arguments[1]:void 0)}));var JG=pa,ZG=i,$G=gt,tW=mg,eW=xg,rW=wg,nW=$,iW=_g,aW=sb.aTypedArray,oW=sb.exportTypedArrayMethod,sW=r.Uint16Array,cW=sW&&JG(sW.prototype.sort),uW=!(!cW||ZG((function(){cW(new sW(2),null)}))&&ZG((function(){cW(new sW(2),{})}))),lW=!!cW&&!ZG((function(){if(nW)return nW<74;if(eW)return eW<67;if(rW)return!0;if(iW)return iW<602;var t,e,r=new sW(516),n=Array(516);for(t=0;t<516;t++)e=t%4,r[t]=515-t,n[t]=t-2*e+3;for(cW(r,(function(t,e){return(t/4|0)-(e/4|0)})),t=0;t<516;t++)if(r[t]!==n[t])return!0}));oW("sort",(function(t){return void 0!==t&&$G(t),lW?cW(this,t):tW(aW(this),function(t){return function(e,r){return void 0!==t?+t(e,r)||0:r!=r?-1:e!=e?1:0===e&&0===r?1/e>0&&1/r<0?1:-1:e>r}}(t))}),!lW||uW);var hW=un,fW=on,dW=RY,pW=sb.aTypedArray;(0,sb.exportTypedArrayMethod)("subarray",(function(t,e){var r=pW(this),n=r.length,i=fW(t,n);return new(dW(r))(r.buffer,r.byteOffset+i*r.BYTES_PER_ELEMENT,hW((void 0===e?n:fW(e,n))-i))}));var gW=Ss,vW=sb,yW=i,mW=Ni,bW=r.Int8Array,xW=vW.aTypedArray,wW=vW.exportTypedArrayMethod,AW=[].toLocaleString,_W=!!bW&&yW((function(){AW.call(new bW(1))}));wW("toLocaleString",(function(){return gW(AW,_W?mW(xW(this)):xW(this),mW(arguments))}),yW((function(){return[1,2].toLocaleString()!==new bW([1,2]).toLocaleString()}))||!yW((function(){bW.prototype.toLocaleString.call([1,2])})));var kW=lv,SW=sb.aTypedArray,EW=sb.getTypedArrayConstructor;(0,sb.exportTypedArrayMethod)("toReversed",(function(){return kW(SW(this),EW(this))}));var MW=gt,TW=vv,PW=sb.aTypedArray,OW=sb.getTypedArrayConstructor,IW=sb.exportTypedArrayMethod,RW=w(sb.TypedArrayPrototype.sort);IW("toSorted",(function(t){void 0!==t&&MW(t);var e=PW(this),r=TW(OW(e),e);return RW(r,t)}));var CW=sb.exportTypedArrayMethod,jW=i,DW=w,LW=r.Uint8Array,zW=LW&&LW.prototype||{},BW=[].toString,FW=DW([].join);jW((function(){BW.call({})}))&&(BW=function(){return FW(this)});var NW=zW.toString!==BW;CW("toString",BW,NW);var UW=Wv,YW=JN,GW=en,WW=tU,HW=sb.aTypedArray,qW=sb.getTypedArrayConstructor,XW=sb.exportTypedArrayMethod,VW=!!function(){try{new Int8Array(1).with(2,{valueOf:function(){throw 8}})}catch(t){return 8===t}}();XW("with",{with:function(t,e){var r=HW(this),n=GW(t),i=YW(r)?WW(e):+e;return UW(r,qW(r),n,i)}}.with,!VW);var QW=ti,KW=w,JW=fi,ZW=String.fromCharCode,$W=KW("".charAt),tH=KW(/./.exec),eH=KW("".slice),rH=/^[\da-f]{2}$/i,nH=/^[\da-f]{4}$/i;QW({global:!0},{unescape:function(t){for(var e,r,n=JW(t),i="",a=n.length,o=0;o<a;){if("%"===(e=$W(n,o++)))if("u"===$W(n,o)){if(r=eH(n,o+1,o+5),tH(nH,r)){i+=ZW(parseInt(r,16)),o+=5;continue}}else if(r=eH(n,o,o+2),tH(rH,r)){i+=ZW(parseInt(r,16)),o+=2;continue}i+=e}return i}});var iH=w,aH=Kv,oH=SA.exports.getWeakData,sH=$v,cH=Ie,uH=I,lH=U,hH=Ol,fH=Ft,dH=Mr.set,pH=Mr.getterFor,gH=Va.find,vH=Va.findIndex,yH=iH([].splice),mH=0,bH=function(t){return t.frozen||(t.frozen=new xH)},xH=function(){this.entries=[]},wH=function(t,e){return gH(t.entries,(function(t){return t[0]===e}))};xH.prototype={get:function(t){var e=wH(this,t);if(e)return e[1]},has:function(t){return!!wH(this,t)},set:function(t,e){var r=wH(this,t);r?r[1]=e:this.entries.push([t,e])},delete:function(t){var e=vH(this.entries,(function(e){return e[0]===t}));return~e&&yH(this.entries,e,1),!!~e}};var AH,_H={getConstructor:function(t,e,r,n){var i=t((function(t,i){sH(t,a),dH(t,{type:e,id:mH++,frozen:void 0}),uH(i)||hH(i,t[n],{that:t,AS_ENTRIES:r})})),a=i.prototype,o=pH(e),s=function(t,e,r){var n=o(t),i=oH(cH(e),!0);return!0===i?bH(n).set(e,r):i[n.id]=r,t};return aH(a,{delete:function(t){var e=o(this);if(!lH(t))return!1;var r=oH(t);return!0===r?bH(e).delete(t):r&&fH(r,e.id)&&delete r[e.id]},has:function(t){var e=o(this);if(!lH(t))return!1;var r=oH(t);return!0===r?bH(e).has(t):r&&fH(r,e.id)}}),aH(a,r?{get:function(t){var e=o(this);if(lH(t)){var r=oH(t);return!0===r?bH(e).get(t):r?r[e.id]:void 0}},set:function(t,e){return s(this,t,e)}}:{add:function(t){return s(this,t,!0)}}),i}},kH=CA,SH=r,EH=w,MH=Kv,TH=SA.exports,PH=l_,OH=_H,IH=U,RH=Mr.enforce,CH=i,jH=ur,DH=Object,LH=Array.isArray,zH=DH.isExtensible,BH=DH.isFrozen,FH=DH.isSealed,NH=DH.freeze,UH=DH.seal,YH=!SH.ActiveXObject&&"ActiveXObject"in SH,GH=function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},WH=PH("WeakMap",GH,OH),HH=WH.prototype,qH=EH(HH.set);if(jH)if(YH){AH=OH.getConstructor(GH,"WeakMap",!0),TH.enable();var XH=EH(HH.delete),VH=EH(HH.has),QH=EH(HH.get);MH(HH,{delete:function(t){if(IH(t)&&!zH(t)){var e=RH(this);return e.frozen||(e.frozen=new AH),XH(this,t)||e.frozen.delete(t)}return XH(this,t)},has:function(t){if(IH(t)&&!zH(t)){var e=RH(this);return e.frozen||(e.frozen=new AH),VH(this,t)||e.frozen.has(t)}return VH(this,t)},get:function(t){if(IH(t)&&!zH(t)){var e=RH(this);return e.frozen||(e.frozen=new AH),VH(this,t)?QH(this,t):e.frozen.get(t)}return QH(this,t)},set:function(t,e){if(IH(t)&&!zH(t)){var r=RH(this);r.frozen||(r.frozen=new AH),VH(this,t)?qH(this,t,e):r.frozen.set(t,e)}else qH(this,t,e);return this}})}else kH&&CH((function(){var t=NH([]);return qH(new WH,t,1),!BH(t)}))&&MH(HH,{set:function(t,e){var r;return LH(t)&&(BH(t)?r=NH:FH(t)&&(r=UH)),qH(this,t,e),r&&r(t),this}});l_("WeakSet",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),_H);var KH="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",JH=KH+"+/",ZH=KH+"-_",$H=function(t){for(var e={},r=0;r<64;r++)e[t.charAt(r)]=r;return e},tq={i2c:JH,c2i:$H(JH),i2cUrl:ZH,c2iUrl:$H(ZH)},eq=ti,rq=r,nq=W,iq=w,aq=u,oq=i,sq=fi,cq=aP,uq=tq.c2i,lq=/[^\d+/a-z]/i,hq=/[\t\n\f\r ]+/g,fq=/[=]{1,2}$/,dq=nq("atob"),pq=String.fromCharCode,gq=iq("".charAt),vq=iq("".replace),yq=iq(lq.exec),mq=!!dq&&!oq((function(){return"hi"!==dq("aGk=")})),bq=mq&&oq((function(){return""!==dq(" ")})),xq=mq&&!oq((function(){dq("a")})),wq=mq&&!oq((function(){dq()})),Aq=mq&&1!==dq.length;eq({global:!0,bind:!0,enumerable:!0,forced:!mq||bq||xq||wq||Aq},{atob:function(t){if(cq(arguments.length,1),mq&&!bq&&!xq)return aq(dq,rq,t);var e,r,n,i=vq(sq(t),hq,""),a="",o=0,s=0;if(i.length%4==0&&(i=vq(i,fq,"")),(e=i.length)%4==1||yq(lq,i))throw new(nq("DOMException"))("The string is not correctly encoded","InvalidCharacterError");for(;o<e;)r=gq(i,o++),n=s%4?64*n+uq[r]:uq[r],s++%4&&(a+=pq(255&n>>(-2*s&6)));return a}});var _q=ti,kq=r,Sq=W,Eq=w,Mq=u,Tq=i,Pq=fi,Oq=aP,Iq=tq.i2c,Rq=Sq("btoa"),Cq=Eq("".charAt),jq=Eq("".charCodeAt),Dq=!!Rq&&!Tq((function(){return"aGk="!==Rq("hi")})),Lq=Dq&&!Tq((function(){Rq()})),zq=Dq&&Tq((function(){return"bnVsbA=="!==Rq(null)})),Bq=Dq&&1!==Rq.length;_q({global:!0,bind:!0,enumerable:!0,forced:!Dq||Lq||zq||Bq},{btoa:function(t){if(Oq(arguments.length,1),Dq)return Mq(Rq,kq,Pq(t));for(var e,r,n=Pq(t),i="",a=0,o=Iq;Cq(n,a)||(o="=",a%1);){if((r=jq(n,a+=3/4))>255)throw new(Sq("DOMException"))("The string contains characters outside of the Latin1 range","InvalidCharacterError");i+=Cq(o,63&(e=e<<8|r)>>8-a%1*8)}return i}});var Fq={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0},Nq=pe("span").classList,Uq=Nq&&Nq.constructor&&Nq.constructor.prototype,Yq=Uq===Object.prototype?void 0:Uq,Gq=r,Wq=Fq,Hq=Yq,qq=Bf,Xq=He,Vq=function(t){if(t&&t.forEach!==qq)try{Xq(t,"forEach",qq)}catch(e){t.forEach=qq}};for(var Qq in Wq)Wq[Qq]&&Vq(Gq[Qq]&&Gq[Qq].prototype);Vq(Hq);var Kq=r,Jq=Fq,Zq=Yq,$q=up,tX=He,eX=ha,rX=$t("iterator"),nX=$q.values,iX=function(t,e){if(t){if(t[rX]!==nX)try{tX(t,rX,nX)}catch(e){t[rX]=nX}if(eX(t,e,!0),Jq[e])for(var r in $q)if(t[r]!==$q[r])try{tX(t,r,$q[r])}catch(e){t[r]=$q[r]}}};for(var aX in Jq)iX(Kq[aX]&&Kq[aX].prototype,aX);iX(Zq,"DOMTokenList");var oX={IndexSizeError:{s:"INDEX_SIZE_ERR",c:1,m:1},DOMStringSizeError:{s:"DOMSTRING_SIZE_ERR",c:2,m:0},HierarchyRequestError:{s:"HIERARCHY_REQUEST_ERR",c:3,m:1},WrongDocumentError:{s:"WRONG_DOCUMENT_ERR",c:4,m:1},InvalidCharacterError:{s:"INVALID_CHARACTER_ERR",c:5,m:1},NoDataAllowedError:{s:"NO_DATA_ALLOWED_ERR",c:6,m:0},NoModificationAllowedError:{s:"NO_MODIFICATION_ALLOWED_ERR",c:7,m:1},NotFoundError:{s:"NOT_FOUND_ERR",c:8,m:1},NotSupportedError:{s:"NOT_SUPPORTED_ERR",c:9,m:1},InUseAttributeError:{s:"INUSE_ATTRIBUTE_ERR",c:10,m:1},InvalidStateError:{s:"INVALID_STATE_ERR",c:11,m:1},SyntaxError:{s:"SYNTAX_ERR",c:12,m:1},InvalidModificationError:{s:"INVALID_MODIFICATION_ERR",c:13,m:1},NamespaceError:{s:"NAMESPACE_ERR",c:14,m:1},InvalidAccessError:{s:"INVALID_ACCESS_ERR",c:15,m:1},ValidationError:{s:"VALIDATION_ERR",c:16,m:0},TypeMismatchError:{s:"TYPE_MISMATCH_ERR",c:17,m:1},SecurityError:{s:"SECURITY_ERR",c:18,m:1},NetworkError:{s:"NETWORK_ERR",c:19,m:1},AbortError:{s:"ABORT_ERR",c:20,m:1},URLMismatchError:{s:"URL_MISMATCH_ERR",c:21,m:1},QuotaExceededError:{s:"QUOTA_EXCEEDED_ERR",c:22,m:1},TimeoutError:{s:"TIMEOUT_ERR",c:23,m:1},InvalidNodeTypeError:{s:"INVALID_NODE_TYPE_ERR",c:24,m:1},DataCloneError:{s:"DATA_CLONE_ERR",c:25,m:1}},sX=ti,cX=Hb,uX=W,lX=i,hX=Bi,fX=v,dX=Ee.f,pX=Qr,gX=Vi,vX=Ft,yX=$v,mX=Ie,bX=Lu,xX=qc,wX=oX,AX=eu,_X=Mr,kX=a,SX="DOMException",EX="DATA_CLONE_ERR",MX=uX("Error"),TX=uX(SX)||function(){try{(new(uX("MessageChannel")||cX("worker_threads").MessageChannel)).port1.postMessage(new WeakMap)}catch(t){if(t.name===EX&&25===t.code)return t.constructor}}(),PX=TX&&TX.prototype,OX=MX.prototype,IX=_X.set,RX=_X.getterFor(SX),CX="stack"in new MX(SX),jX=function(t){return vX(wX,t)&&wX[t].m?wX[t].c:0},DX=function(){yX(this,LX);var t=arguments.length,e=xX(t<1?void 0:arguments[0]),r=xX(t<2?void 0:arguments[1],"Error"),n=jX(r);if(IX(this,{type:SX,name:r,message:e,code:n}),kX||(this.name=r,this.message=e,this.code=n),CX){var i=new MX(e);i.name=SX,dX(this,"stack",fX(1,AX(i.stack,1)))}},LX=DX.prototype=hX(OX),zX=function(t){return{enumerable:!0,configurable:!0,get:t}},BX=function(t){return zX((function(){return RX(this)[t]}))};kX&&(gX(LX,"code",BX("code")),gX(LX,"message",BX("message")),gX(LX,"name",BX("name"))),dX(LX,"constructor",fX(1,DX));var FX=lX((function(){return!(new TX instanceof MX)})),NX=FX||lX((function(){return OX.toString!==bX||"2: 1"!==String(new TX(1,2))})),UX=FX||lX((function(){return 25!==new TX(1,"DataCloneError").code}));FX||25!==TX[EX]||PX[EX];sX({global:!0,constructor:!0,forced:FX},{DOMException:FX?DX:TX});var YX=uX(SX),GX=YX.prototype;for(var WX in NX&&TX===YX&&pX(GX,"toString",bX),UX&&kX&&TX===YX&&gX(GX,"code",zX((function(){return jX(mX(this).name)}))),wX)if(vX(wX,WX)){var HX=wX[WX],qX=HX.s,XX=fX(6,HX.c);vX(YX,qX)||dX(YX,qX,XX),vX(GX,qX)||dX(GX,qX,XX)}var VX=ti,QX=r,KX=W,JX=v,ZX=Ee.f,$X=Ft,tV=$v,eV=Wc,rV=qc,nV=oX,iV=eu,aV=a,oV="DOMException",sV=KX("Error"),cV=KX(oV),uV=function(){tV(this,lV);var t=arguments.length,e=rV(t<1?void 0:arguments[0]),r=rV(t<2?void 0:arguments[1],"Error"),n=new cV(e,r),i=new sV(e);return i.name=oV,ZX(n,"stack",JX(1,iV(i.stack,1))),eV(n,this,uV),n},lV=uV.prototype=cV.prototype,hV="stack"in new sV(oV),fV="stack"in new cV(1,2),dV=cV&&aV&&Object.getOwnPropertyDescriptor(QX,oV),pV=!(!dV||dV.writable&&dV.configurable),gV=hV&&!pV&&!fV;VX({global:!0,constructor:!0,forced:gV},{DOMException:gV?uV:cV});var vV=KX(oV),yV=vV.prototype;if(yV.constructor!==vV)for(var mV in ZX(yV,"constructor",JX(1,vV)),nV)if($X(nV,mV)){var bV=nV[mV],xV=bV.s;$X(vV,xV)||ZX(vV,xV,JX(6,bV.c))}var wV="DOMException";ha(W(wV),wV);var AV=CP.clear;ti({global:!0,bind:!0,enumerable:!0,forced:r.clearImmediate!==AV},{clearImmediate:AV});var _V="function"==typeof Bun&&Bun&&"string"==typeof Bun.version,kV=r,SV=Ss,EV=F,MV=_V,TV=q,PV=Ni,OV=aP,IV=kV.Function,RV=/MSIE .\./.test(TV)||MV&&function(){var t=kV.Bun.version.split(".");return t.length<3||"0"===t[0]&&(t[1]<3||"3"===t[1]&&"0"===t[2])}(),CV=function(t,e){var r=e?2:1;return RV?function(n,i){var a=OV(arguments.length,1)>r,o=EV(n)?n:IV(n),s=a?PV(arguments,r):[],c=a?function(){SV(o,this,s)}:o;return e?t(c,i):t(c)}:t},jV=ti,DV=r,LV=CP.set,zV=CV,BV=DV.setImmediate?zV(LV,!1):LV;jV({global:!0,bind:!0,enumerable:!0,forced:DV.setImmediate!==BV},{setImmediate:BV});var FV=uO,NV=gt,UV=aP;ti({global:!0,enumerable:!0,dontCallGetSet:!0},{queueMicrotask:function(t){UV(arguments.length,1),FV(NV(t))}});var YV=ti,GV=r,WV=Vi,HV=a,qV=TypeError,XV=Object.defineProperty,VV=GV.self!==GV;try{if(HV){var QV=Object.getOwnPropertyDescriptor(GV,"self");!VV&&QV&&QV.get&&QV.enumerable||WV(GV,"self",{get:function(){return GV},set:function(t){if(this!==GV)throw new qV("Illegal invocation");XV(GV,"self",{value:t,writable:!0,configurable:!0,enumerable:!0})},configurable:!0,enumerable:!0})}else YV({global:!0,simple:!0,forced:VV},{self:GV})}catch(t){}var KV,JV=w,ZV=Set.prototype,$V={Set:Set,add:JV(ZV.add),has:JV(ZV.has),remove:JV(ZV.delete),proto:ZV},tQ=u,eQ=w,rQ=function(t,e,r){for(var n,i,a=r?t:t.iterator,o=t.next;!(n=tQ(o,a)).done;)if(void 0!==(i=e(n.value)))return i},nQ=$V.Set,iQ=$V.proto,aQ=eQ(iQ.forEach),oQ=eQ(iQ.keys),sQ=oQ(new nQ).next,cQ=ti,uQ=r,lQ=W,hQ=w,fQ=i,dQ=Wt,pQ=F,gQ=Ca,vQ=I,yQ=U,mQ=ut,bQ=Ol,xQ=Ie,wQ=ui,AQ=Ft,_Q=vh,kQ=He,SQ=hn,EQ=aP,MQ=DC,TQ=T_,PQ=$V,OQ=function(t,e,r){return r?rQ({iterator:oQ(t),next:sQ},e):aQ(t,e)},IQ=cx,RQ=nu,CQ=tx,jQ=uQ.Object,DQ=uQ.Array,LQ=uQ.Date,zQ=uQ.Error,BQ=uQ.TypeError,FQ=uQ.PerformanceMark,NQ=lQ("DOMException"),UQ=TQ.Map,YQ=TQ.has,GQ=TQ.get,WQ=TQ.set,HQ=PQ.Set,qQ=PQ.add,XQ=PQ.has,VQ=lQ("Object","keys"),QQ=hQ([].push),KQ=hQ((!0).valueOf),JQ=hQ(1..valueOf),ZQ=hQ("".valueOf),$Q=hQ(LQ.prototype.getTime),tK=dQ("structuredClone"),eK="DataCloneError",rK="Transferring",nK=function(t){return!fQ((function(){var e=new uQ.Set([7]),r=t(e),n=t(jQ(7));return r===e||!r.has(7)||!yQ(n)||7!=+n}))&&t},iK=function(t,e){return!fQ((function(){var r=new e,n=t({a:r,b:r});return!(n&&n.a===n.b&&n.a instanceof e&&n.a.stack===r.stack)}))},aK=uQ.structuredClone,oK=!iK(aK,zQ)||!iK(aK,NQ)||(KV=aK,!!fQ((function(){var t=KV(new uQ.AggregateError([1],tK,{cause:3}));return"AggregateError"!==t.name||1!==t.errors[0]||t.message!==tK||3!==t.cause}))),sK=!aK&&nK((function(t){return new FQ(tK,{detail:t}).detail})),cK=nK(aK)||sK,uK=function(t){throw new NQ("Uncloneable type: "+t,eK)},lK=function(t,e){throw new NQ((e||"Cloning")+" of "+t+" cannot be properly polyfilled in this engine",eK)},hK=function(t,e){return cK||lK(e),cK(t)},fK=function(t,e,r){if(YQ(e,t))return GQ(e,t);var n,i,a,o,s,c;if("SharedArrayBuffer"===(r||wQ(t)))n=cK?cK(t):t;else{var u=uQ.DataView;u||pQ(t.slice)||lK("ArrayBuffer");try{if(pQ(t.slice)&&!t.resizable)n=t.slice(0);else{i=t.byteLength,a="maxByteLength"in t?{maxByteLength:t.maxByteLength}:void 0,n=new ArrayBuffer(i,a),o=new u(t),s=new u(n);for(c=0;c<i;c++)s.setUint8(c,o.getUint8(c))}}catch(t){throw new NQ("ArrayBuffer is detached",eK)}}return WQ(e,t,n),n},dK=function(t,e){if(mQ(t)&&uK("Symbol"),!yQ(t))return t;if(e){if(YQ(e,t))return GQ(e,t)}else e=new UQ;var r,n,i,a,o,s,c,u,l=wQ(t);switch(l){case"Array":i=DQ(SQ(t));break;case"Object":i={};break;case"Map":i=new UQ;break;case"Set":i=new HQ;break;case"RegExp":i=new RegExp(t.source,MQ(t));break;case"Error":switch(n=t.name){case"AggregateError":i=new(lQ(n))([]);break;case"EvalError":case"RangeError":case"ReferenceError":case"SuppressedError":case"SyntaxError":case"TypeError":case"URIError":i=new(lQ(n));break;case"CompileError":case"LinkError":case"RuntimeError":i=new(lQ("WebAssembly",n));break;default:i=new zQ}break;case"DOMException":i=new NQ(t.message,t.name);break;case"ArrayBuffer":case"SharedArrayBuffer":i=fK(t,e,l);break;case"DataView":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float16Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":s="DataView"===l?t.byteLength:t.length,i=function(t,e,r,n,i){var a=uQ[e];return yQ(a)||lK(e),new a(fK(t.buffer,i),r,n)}(t,l,t.byteOffset,s,e);break;case"DOMQuad":try{i=new DOMQuad(dK(t.p1,e),dK(t.p2,e),dK(t.p3,e),dK(t.p4,e))}catch(e){i=hK(t,l)}break;case"File":if(cK)try{i=cK(t),wQ(i)!==l&&(i=void 0)}catch(t){}if(!i)try{i=new File([t],t.name,t)}catch(t){}i||lK(l);break;case"FileList":if(a=function(){var t;try{t=new uQ.DataTransfer}catch(e){try{t=new uQ.ClipboardEvent("").clipboardData}catch(t){}}return t&&t.items&&t.files?t:null}()){for(o=0,s=SQ(t);o<s;o++)a.items.add(dK(t[o],e));i=a.files}else i=hK(t,l);break;case"ImageData":try{i=new ImageData(dK(t.data,e),t.width,t.height,{colorSpace:t.colorSpace})}catch(e){i=hK(t,l)}break;default:if(cK)i=cK(t);else switch(l){case"BigInt":i=jQ(t.valueOf());break;case"Boolean":i=jQ(KQ(t));break;case"Number":i=jQ(JQ(t));break;case"String":i=jQ(ZQ(t));break;case"Date":i=new LQ($Q(t));break;case"Blob":try{i=t.slice(0,t.size,t.type)}catch(t){lK(l)}break;case"DOMPoint":case"DOMPointReadOnly":r=uQ[l];try{i=r.fromPoint?r.fromPoint(t):new r(t.x,t.y,t.z,t.w)}catch(t){lK(l)}break;case"DOMRect":case"DOMRectReadOnly":r=uQ[l];try{i=r.fromRect?r.fromRect(t):new r(t.x,t.y,t.width,t.height)}catch(t){lK(l)}break;case"DOMMatrix":case"DOMMatrixReadOnly":r=uQ[l];try{i=r.fromMatrix?r.fromMatrix(t):new r(t)}catch(t){lK(l)}break;case"AudioData":case"VideoFrame":pQ(t.clone)||lK(l);try{i=t.clone()}catch(t){uK(l)}break;case"CropTarget":case"CryptoKey":case"FileSystemDirectoryHandle":case"FileSystemFileHandle":case"FileSystemHandle":case"GPUCompilationInfo":case"GPUCompilationMessage":case"ImageBitmap":case"RTCCertificate":case"WebAssembly.Module":lK(l);default:uK(l)}}switch(WQ(e,t,i),l){case"Array":case"Object":for(c=VQ(t),o=0,s=SQ(c);o<s;o++)u=c[o],_Q(i,u,dK(t[u],e));break;case"Map":t.forEach((function(t,r){WQ(i,dK(r,e),dK(t,e))}));break;case"Set":t.forEach((function(t){qQ(i,dK(t,e))}));break;case"Error":kQ(i,"message",dK(t.message,e)),AQ(t,"cause")&&kQ(i,"cause",dK(t.cause,e)),"AggregateError"===n?i.errors=dK(t.errors,e):"SuppressedError"===n&&(i.error=dK(t.error,e),i.suppressed=dK(t.suppressed,e));case"DOMException":RQ&&kQ(i,"stack",dK(t.stack,e))}return i};cQ({global:!0,enumerable:!0,sham:!CQ,forced:oK},{structuredClone:function(t){var e,r,n=EQ(arguments.length,1)>1&&!vQ(arguments[1])?xQ(arguments[1]):void 0,i=n?n.transfer:void 0;void 0!==i&&(r=function(t,e){if(!yQ(t))throw new BQ("Transfer option cannot be converted to a sequence");var r=[];bQ(t,(function(t){QQ(r,xQ(t))}));for(var n,i,a,o,s,c=0,u=SQ(r),l=new HQ;c<u;){if(n=r[c++],"ArrayBuffer"===(i=wQ(n))?XQ(l,n):YQ(e,n))throw new NQ("Duplicate transferable",eK);if("ArrayBuffer"!==i){if(CQ)o=aK(n,{transfer:[n]});else switch(i){case"ImageBitmap":a=uQ.OffscreenCanvas,gQ(a)||lK(i,rK);try{(s=new a(n.width,n.height)).getContext("bitmaprenderer").transferFromImageBitmap(n),o=s.transferToImageBitmap()}catch(t){}break;case"AudioData":case"VideoFrame":pQ(n.clone)&&pQ(n.close)||lK(i,rK);try{o=n.clone(),n.close()}catch(t){}break;case"MediaSourceHandle":case"MessagePort":case"OffscreenCanvas":case"ReadableStream":case"TransformStream":case"WritableStream":lK(i,rK)}if(void 0===o)throw new NQ("This object cannot be transferred: "+i,eK);WQ(e,n,o)}else qQ(l,n)}return l}(i,e=new UQ));var a=dK(t,e);return r&&function(t){OQ(t,(function(t){CQ?cK(t,{transfer:[t]}):pQ(t.transfer)?t.transfer():IQ?IQ(t):lK("ArrayBuffer",rK)}))}(r),a}});var pK=ti,gK=r,vK=CV(gK.setInterval,!0);pK({global:!0,bind:!0,forced:gK.setInterval!==vK},{setInterval:vK});var yK=ti,mK=r,bK=CV(mK.setTimeout,!0);yK({global:!0,bind:!0,forced:mK.setTimeout!==bK},{setTimeout:bK});var xK=i,wK=a,AK=$t("iterator"),_K=!xK((function(){var t=new URL("b?a=1&b=2&c=3","http://a"),e=t.searchParams,r=new URLSearchParams("a=1&a=2&b=3"),n="";return t.pathname="c%20d",e.forEach((function(t,r){e.delete("b"),n+=r+t})),r.delete("a",2),r.delete("b",void 0),!e.size&&!wK||!e.sort||"http://a/c%20d?a=1&c=3"!==t.href||"3"!==e.get("c")||"a=1"!==String(new URLSearchParams("?a=1"))||!e[AK]||"a"!==new URL("https://a@b").username||"b"!==new URLSearchParams(new URLSearchParams("a=b")).get("a")||"xn--e1aybc"!==new URL("http://тест").host||"#%D0%B1"!==new URL("http://a#б").hash||"a1c3"!==n||"x"!==new URL("http://x",void 0).host})),kK=w,SK=2147483647,EK=/[^\0-\u007E]/,MK=/[.\u3002\uFF0E\uFF61]/g,TK="Overflow: input needs wider integers to process",PK=RangeError,OK=kK(MK.exec),IK=Math.floor,RK=String.fromCharCode,CK=kK("".charCodeAt),jK=kK([].join),DK=kK([].push),LK=kK("".replace),zK=kK("".split),BK=kK("".toLowerCase),FK=function(t){return t+22+75*(t<26)},NK=function(t,e,r){var n=0;for(t=r?IK(t/700):t>>1,t+=IK(t/e);t>455;)t=IK(t/35),n+=36;return IK(n+36*t/(t+38))},UK=function(t){var e=[];t=function(t){for(var e=[],r=0,n=t.length;r<n;){var i=CK(t,r++);if(i>=55296&&i<=56319&&r<n){var a=CK(t,r++);56320==(64512&a)?DK(e,((1023&i)<<10)+(1023&a)+65536):(DK(e,i),r--)}else DK(e,i)}return e}(t);var r,n,i=t.length,a=128,o=0,s=72;for(r=0;r<t.length;r++)(n=t[r])<128&&DK(e,RK(n));var c=e.length,u=c;for(c&&DK(e,"-");u<i;){var l=SK;for(r=0;r<t.length;r++)(n=t[r])>=a&&n<l&&(l=n);var h=u+1;if(l-a>IK((SK-o)/h))throw new PK(TK);for(o+=(l-a)*h,a=l,r=0;r<t.length;r++){if((n=t[r])<a&&++o>SK)throw new PK(TK);if(n===a){for(var f=o,d=36;;){var p=d<=s?1:d>=s+26?26:d-s;if(f<p)break;var g=f-p,v=36-p;DK(e,RK(FK(p+g%v))),f=IK(g/v),d+=36}DK(e,RK(FK(f))),s=NK(o,h,u===c),o=0,u++}}o++,a++}return jK(e,"")},YK=ti,GK=r,WK=zP,HK=u,qK=w,XK=a,VK=_K,QK=Qr,KK=Vi,JK=Kv,ZK=ha,$K=Od,tJ=Mr,eJ=$v,rJ=F,nJ=Ft,iJ=ma,aJ=ui,oJ=Ie,sJ=U,cJ=fi,uJ=Bi,lJ=v,hJ=fl,fJ=al,dJ=Jd,pJ=aP,gJ=mg,vJ=$t("iterator"),yJ="URLSearchParams",mJ=yJ+"Iterator",bJ=tJ.set,xJ=tJ.getterFor(yJ),wJ=tJ.getterFor(mJ),AJ=WK("fetch"),_J=WK("Request"),kJ=WK("Headers"),SJ=_J&&_J.prototype,EJ=kJ&&kJ.prototype,MJ=GK.RegExp,TJ=GK.TypeError,PJ=GK.decodeURIComponent,OJ=GK.encodeURIComponent,IJ=qK("".charAt),RJ=qK([].join),CJ=qK([].push),jJ=qK("".replace),DJ=qK([].shift),LJ=qK([].splice),zJ=qK("".split),BJ=qK("".slice),FJ=/\+/g,NJ=Array(4),UJ=function(t){return NJ[t-1]||(NJ[t-1]=MJ("((?:%[\\da-f]{2}){"+t+"})","gi"))},YJ=function(t){try{return PJ(t)}catch(e){return t}},GJ=function(t){var e=jJ(t,FJ," "),r=4;try{return PJ(e)}catch(t){for(;r;)e=jJ(e,UJ(r--),YJ);return e}},WJ=/[!'()~]|%20/g,HJ={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"},qJ=function(t){return HJ[t]},XJ=function(t){return jJ(OJ(t),WJ,qJ)},VJ=$K((function(t,e){bJ(this,{type:mJ,target:xJ(t).entries,index:0,kind:e})}),yJ,(function(){var t=wJ(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=void 0,dJ(void 0,!0);var n=e[r];switch(t.kind){case"keys":return dJ(n.key,!1);case"values":return dJ(n.value,!1)}return dJ([n.key,n.value],!1)}),!0),QJ=function(t){this.entries=[],this.url=null,void 0!==t&&(sJ(t)?this.parseObject(t):this.parseQuery("string"==typeof t?"?"===IJ(t,0)?BJ(t,1):t:cJ(t)))};QJ.prototype={type:yJ,bindURL:function(t){this.url=t,this.update()},parseObject:function(t){var e,r,n,i,a,o,s,c=this.entries,u=fJ(t);if(u)for(r=(e=hJ(t,u)).next;!(n=HK(r,e)).done;){if(a=(i=hJ(oJ(n.value))).next,(o=HK(a,i)).done||(s=HK(a,i)).done||!HK(a,i).done)throw new TJ("Expected sequence with length 2");CJ(c,{key:cJ(o.value),value:cJ(s.value)})}else for(var l in t)nJ(t,l)&&CJ(c,{key:l,value:cJ(t[l])})},parseQuery:function(t){if(t)for(var e,r,n=this.entries,i=zJ(t,"&"),a=0;a<i.length;)(e=i[a++]).length&&(r=zJ(e,"="),CJ(n,{key:GJ(DJ(r)),value:GJ(RJ(r,"="))}))},serialize:function(){for(var t,e=this.entries,r=[],n=0;n<e.length;)t=e[n++],CJ(r,XJ(t.key)+"="+XJ(t.value));return RJ(r,"&")},update:function(){this.entries.length=0,this.parseQuery(this.url.query)},updateURL:function(){this.url&&this.url.update()}};var KJ=function(){eJ(this,JJ);var t=bJ(this,new QJ(arguments.length>0?arguments[0]:void 0));XK||(this.size=t.entries.length)},JJ=KJ.prototype;if(JK(JJ,{append:function(t,e){var r=xJ(this);pJ(arguments.length,2),CJ(r.entries,{key:cJ(t),value:cJ(e)}),XK||this.length++,r.updateURL()},delete:function(t){for(var e=xJ(this),r=pJ(arguments.length,1),n=e.entries,i=cJ(t),a=r<2?void 0:arguments[1],o=void 0===a?a:cJ(a),s=0;s<n.length;){var c=n[s];if(c.key!==i||void 0!==o&&c.value!==o)s++;else if(LJ(n,s,1),void 0!==o)break}XK||(this.size=n.length),e.updateURL()},get:function(t){var e=xJ(this).entries;pJ(arguments.length,1);for(var r=cJ(t),n=0;n<e.length;n++)if(e[n].key===r)return e[n].value;return null},getAll:function(t){var e=xJ(this).entries;pJ(arguments.length,1);for(var r=cJ(t),n=[],i=0;i<e.length;i++)e[i].key===r&&CJ(n,e[i].value);return n},has:function(t){for(var e=xJ(this).entries,r=pJ(arguments.length,1),n=cJ(t),i=r<2?void 0:arguments[1],a=void 0===i?i:cJ(i),o=0;o<e.length;){var s=e[o++];if(s.key===n&&(void 0===a||s.value===a))return!0}return!1},set:function(t,e){var r=xJ(this);pJ(arguments.length,1);for(var n,i=r.entries,a=!1,o=cJ(t),s=cJ(e),c=0;c<i.length;c++)(n=i[c]).key===o&&(a?LJ(i,c--,1):(a=!0,n.value=s));a||CJ(i,{key:o,value:s}),XK||(this.size=i.length),r.updateURL()},sort:function(){var t=xJ(this);gJ(t.entries,(function(t,e){return t.key>e.key?1:-1})),t.updateURL()},forEach:function(t){for(var e,r=xJ(this).entries,n=iJ(t,arguments.length>1?arguments[1]:void 0),i=0;i<r.length;)n((e=r[i++]).value,e.key,this)},keys:function(){return new VJ(this,"keys")},values:function(){return new VJ(this,"values")},entries:function(){return new VJ(this,"entries")}},{enumerable:!0}),QK(JJ,vJ,JJ.entries,{name:"entries"}),QK(JJ,"toString",(function(){return xJ(this).serialize()}),{enumerable:!0}),XK&&KK(JJ,"size",{get:function(){return xJ(this).entries.length},configurable:!0,enumerable:!0}),ZK(KJ,yJ),YK({global:!0,constructor:!0,forced:!VK},{URLSearchParams:KJ}),!VK&&rJ(kJ)){var ZJ=qK(EJ.has),$J=qK(EJ.set),tZ=function(t){if(sJ(t)){var e,r=t.body;if(aJ(r)===yJ)return e=t.headers?new kJ(t.headers):new kJ,ZJ(e,"content-type")||$J(e,"content-type","application/x-www-form-urlencoded;charset=UTF-8"),uJ(t,{body:lJ(0,cJ(r)),headers:lJ(0,e)})}return t};if(rJ(AJ)&&YK({global:!0,enumerable:!0,dontCallGetSet:!0,forced:!0},{fetch:function(t){return AJ(t,arguments.length>1?tZ(arguments[1]):{})}}),rJ(_J)){var eZ=function(t){return eJ(this,SJ),new _J(t,arguments.length>1?tZ(arguments[1]):{})};SJ.constructor=eZ,eZ.prototype=SJ,YK({global:!0,constructor:!0,dontCallGetSet:!0,forced:!0},{Request:eZ})}}var rZ,nZ=ti,iZ=a,aZ=_K,oZ=r,sZ=ma,cZ=w,uZ=Qr,lZ=Vi,hZ=$v,fZ=Ft,dZ=XE,pZ=Zf,gZ=Ni,vZ=eL.codeAt,yZ=function(t){var e,r,n=[],i=zK(LK(BK(t),MK,"."),".");for(e=0;e<i.length;e++)r=i[e],DK(n,OK(EK,r)?"xn--"+UK(r):r);return jK(n,".")},mZ=fi,bZ=ha,xZ=aP,wZ={URLSearchParams:KJ,getState:xJ},AZ=Mr,_Z=AZ.set,kZ=AZ.getterFor("URL"),SZ=wZ.URLSearchParams,EZ=wZ.getState,MZ=oZ.URL,TZ=oZ.TypeError,PZ=oZ.parseInt,OZ=Math.floor,IZ=Math.pow,RZ=cZ("".charAt),CZ=cZ(/./.exec),jZ=cZ([].join),DZ=cZ(1..toString),LZ=cZ([].pop),zZ=cZ([].push),BZ=cZ("".replace),FZ=cZ([].shift),NZ=cZ("".split),UZ=cZ("".slice),YZ=cZ("".toLowerCase),GZ=cZ([].unshift),WZ="Invalid scheme",HZ="Invalid host",qZ="Invalid port",XZ=/[a-z]/i,VZ=/[\d+-.a-z]/i,QZ=/\d/,KZ=/^0x/i,JZ=/^[0-7]+$/,ZZ=/^\d+$/,$Z=/^[\da-f]+$/i,t$=/[\0\t\n\r #%/:<>?@[\\\]^|]/,e$=/[\0\t\n\r #/:<>?@[\\\]^|]/,r$=/^[\u0000-\u0020]+/,n$=/(^|[^\u0000-\u0020])[\u0000-\u0020]+$/,i$=/[\t\n\r]/g,a$=function(t){var e,r,n,i;if("number"==typeof t){for(e=[],r=0;r<4;r++)GZ(e,t%256),t=OZ(t/256);return jZ(e,".")}if("object"==typeof t){for(e="",n=function(t){for(var e=null,r=1,n=null,i=0,a=0;a<8;a++)0!==t[a]?(i>r&&(e=n,r=i),n=null,i=0):(null===n&&(n=a),++i);return i>r&&(e=n,r=i),e}(t),r=0;r<8;r++)i&&0===t[r]||(i&&(i=!1),n===r?(e+=r?":":"::",i=!0):(e+=DZ(t[r],16),r<7&&(e+=":")));return"["+e+"]"}return t},o$={},s$=dZ({},o$,{" ":1,'"':1,"<":1,">":1,"`":1}),c$=dZ({},s$,{"#":1,"?":1,"{":1,"}":1}),u$=dZ({},c$,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),l$=function(t,e){var r=vZ(t,0);return r>32&&r<127&&!fZ(e,t)?t:encodeURIComponent(t)},h$={ftp:21,file:null,http:80,https:443,ws:80,wss:443},f$=function(t,e){var r;return 2===t.length&&CZ(XZ,RZ(t,0))&&(":"===(r=RZ(t,1))||!e&&"|"===r)},d$=function(t){var e;return t.length>1&&f$(UZ(t,0,2))&&(2===t.length||"/"===(e=RZ(t,2))||"\\"===e||"?"===e||"#"===e)},p$=function(t){return"."===t||"%2e"===YZ(t)},g$={},v$={},y$={},m$={},b$={},x$={},w$={},A$={},_$={},k$={},S$={},E$={},M$={},T$={},P$={},O$={},I$={},R$={},C$={},j$={},D$={},L$=function(t,e,r){var n,i,a,o=mZ(t);if(e){if(i=this.parse(o))throw new TZ(i);this.searchParams=null}else{if(void 0!==r&&(n=new L$(r,!0)),i=this.parse(o,null,n))throw new TZ(i);(a=EZ(new SZ)).bindURL(this),this.searchParams=a}};L$.prototype={type:"URL",parse:function(t,e,r){var n,i,a,o,s,c=this,u=e||g$,l=0,h="",f=!1,d=!1,p=!1;for(t=mZ(t),e||(c.scheme="",c.username="",c.password="",c.host=null,c.port=null,c.path=[],c.query=null,c.fragment=null,c.cannotBeABaseURL=!1,t=BZ(t,r$,""),t=BZ(t,n$,"$1")),t=BZ(t,i$,""),n=pZ(t);l<=n.length;){switch(i=n[l],u){case g$:if(!i||!CZ(XZ,i)){if(e)return WZ;u=y$;continue}h+=YZ(i),u=v$;break;case v$:if(i&&(CZ(VZ,i)||"+"===i||"-"===i||"."===i))h+=YZ(i);else{if(":"!==i){if(e)return WZ;h="",u=y$,l=0;continue}if(e&&(c.isSpecial()!==fZ(h$,h)||"file"===h&&(c.includesCredentials()||null!==c.port)||"file"===c.scheme&&!c.host))return;if(c.scheme=h,e)return void(c.isSpecial()&&h$[c.scheme]===c.port&&(c.port=null));h="","file"===c.scheme?u=T$:c.isSpecial()&&r&&r.scheme===c.scheme?u=m$:c.isSpecial()?u=A$:"/"===n[l+1]?(u=b$,l++):(c.cannotBeABaseURL=!0,zZ(c.path,""),u=C$)}break;case y$:if(!r||r.cannotBeABaseURL&&"#"!==i)return WZ;if(r.cannotBeABaseURL&&"#"===i){c.scheme=r.scheme,c.path=gZ(r.path),c.query=r.query,c.fragment="",c.cannotBeABaseURL=!0,u=D$;break}u="file"===r.scheme?T$:x$;continue;case m$:if("/"!==i||"/"!==n[l+1]){u=x$;continue}u=_$,l++;break;case b$:if("/"===i){u=k$;break}u=R$;continue;case x$:if(c.scheme=r.scheme,i===rZ)c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=gZ(r.path),c.query=r.query;else if("/"===i||"\\"===i&&c.isSpecial())u=w$;else if("?"===i)c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=gZ(r.path),c.query="",u=j$;else{if("#"!==i){c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=gZ(r.path),c.path.length--,u=R$;continue}c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=gZ(r.path),c.query=r.query,c.fragment="",u=D$}break;case w$:if(!c.isSpecial()||"/"!==i&&"\\"!==i){if("/"!==i){c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,u=R$;continue}u=k$}else u=_$;break;case A$:if(u=_$,"/"!==i||"/"!==RZ(h,l+1))continue;l++;break;case _$:if("/"!==i&&"\\"!==i){u=k$;continue}break;case k$:if("@"===i){f&&(h="%40"+h),f=!0,a=pZ(h);for(var g=0;g<a.length;g++){var v=a[g];if(":"!==v||p){var y=l$(v,u$);p?c.password+=y:c.username+=y}else p=!0}h=""}else if(i===rZ||"/"===i||"?"===i||"#"===i||"\\"===i&&c.isSpecial()){if(f&&""===h)return"Invalid authority";l-=pZ(h).length+1,h="",u=S$}else h+=i;break;case S$:case E$:if(e&&"file"===c.scheme){u=O$;continue}if(":"!==i||d){if(i===rZ||"/"===i||"?"===i||"#"===i||"\\"===i&&c.isSpecial()){if(c.isSpecial()&&""===h)return HZ;if(e&&""===h&&(c.includesCredentials()||null!==c.port))return;if(o=c.parseHost(h))return o;if(h="",u=I$,e)return;continue}"["===i?d=!0:"]"===i&&(d=!1),h+=i}else{if(""===h)return HZ;if(o=c.parseHost(h))return o;if(h="",u=M$,e===E$)return}break;case M$:if(!CZ(QZ,i)){if(i===rZ||"/"===i||"?"===i||"#"===i||"\\"===i&&c.isSpecial()||e){if(""!==h){var m=PZ(h,10);if(m>65535)return qZ;c.port=c.isSpecial()&&m===h$[c.scheme]?null:m,h=""}if(e)return;u=I$;continue}return qZ}h+=i;break;case T$:if(c.scheme="file","/"===i||"\\"===i)u=P$;else{if(!r||"file"!==r.scheme){u=R$;continue}switch(i){case rZ:c.host=r.host,c.path=gZ(r.path),c.query=r.query;break;case"?":c.host=r.host,c.path=gZ(r.path),c.query="",u=j$;break;case"#":c.host=r.host,c.path=gZ(r.path),c.query=r.query,c.fragment="",u=D$;break;default:d$(jZ(gZ(n,l),""))||(c.host=r.host,c.path=gZ(r.path),c.shortenPath()),u=R$;continue}}break;case P$:if("/"===i||"\\"===i){u=O$;break}r&&"file"===r.scheme&&!d$(jZ(gZ(n,l),""))&&(f$(r.path[0],!0)?zZ(c.path,r.path[0]):c.host=r.host),u=R$;continue;case O$:if(i===rZ||"/"===i||"\\"===i||"?"===i||"#"===i){if(!e&&f$(h))u=R$;else if(""===h){if(c.host="",e)return;u=I$}else{if(o=c.parseHost(h))return o;if("localhost"===c.host&&(c.host=""),e)return;h="",u=I$}continue}h+=i;break;case I$:if(c.isSpecial()){if(u=R$,"/"!==i&&"\\"!==i)continue}else if(e||"?"!==i)if(e||"#"!==i){if(i!==rZ&&(u=R$,"/"!==i))continue}else c.fragment="",u=D$;else c.query="",u=j$;break;case R$:if(i===rZ||"/"===i||"\\"===i&&c.isSpecial()||!e&&("?"===i||"#"===i)){if(".."===(s=YZ(s=h))||"%2e."===s||".%2e"===s||"%2e%2e"===s?(c.shortenPath(),"/"===i||"\\"===i&&c.isSpecial()||zZ(c.path,"")):p$(h)?"/"===i||"\\"===i&&c.isSpecial()||zZ(c.path,""):("file"===c.scheme&&!c.path.length&&f$(h)&&(c.host&&(c.host=""),h=RZ(h,0)+":"),zZ(c.path,h)),h="","file"===c.scheme&&(i===rZ||"?"===i||"#"===i))for(;c.path.length>1&&""===c.path[0];)FZ(c.path);"?"===i?(c.query="",u=j$):"#"===i&&(c.fragment="",u=D$)}else h+=l$(i,c$);break;case C$:"?"===i?(c.query="",u=j$):"#"===i?(c.fragment="",u=D$):i!==rZ&&(c.path[0]+=l$(i,o$));break;case j$:e||"#"!==i?i!==rZ&&("'"===i&&c.isSpecial()?c.query+="%27":c.query+="#"===i?"%23":l$(i,o$)):(c.fragment="",u=D$);break;case D$:i!==rZ&&(c.fragment+=l$(i,s$))}l++}},parseHost:function(t){var e,r,n;if("["===RZ(t,0)){if("]"!==RZ(t,t.length-1))return HZ;if(e=function(t){var e,r,n,i,a,o,s,c=[0,0,0,0,0,0,0,0],u=0,l=null,h=0,f=function(){return RZ(t,h)};if(":"===f()){if(":"!==RZ(t,1))return;h+=2,l=++u}for(;f();){if(8===u)return;if(":"!==f()){for(e=r=0;r<4&&CZ($Z,f());)e=16*e+PZ(f(),16),h++,r++;if("."===f()){if(0===r)return;if(h-=r,u>6)return;for(n=0;f();){if(i=null,n>0){if(!("."===f()&&n<4))return;h++}if(!CZ(QZ,f()))return;for(;CZ(QZ,f());){if(a=PZ(f(),10),null===i)i=a;else{if(0===i)return;i=10*i+a}if(i>255)return;h++}c[u]=256*c[u]+i,2!=++n&&4!==n||u++}if(4!==n)return;break}if(":"===f()){if(h++,!f())return}else if(f())return;c[u++]=e}else{if(null!==l)return;h++,l=++u}}if(null!==l)for(o=u-l,u=7;0!==u&&o>0;)s=c[u],c[u--]=c[l+o-1],c[l+--o]=s;else if(8!==u)return;return c}(UZ(t,1,-1)),!e)return HZ;this.host=e}else if(this.isSpecial()){if(t=yZ(t),CZ(t$,t))return HZ;if(e=function(t){var e,r,n,i,a,o,s,c=NZ(t,".");if(c.length&&""===c[c.length-1]&&c.length--,(e=c.length)>4)return t;for(r=[],n=0;n<e;n++){if(""===(i=c[n]))return t;if(a=10,i.length>1&&"0"===RZ(i,0)&&(a=CZ(KZ,i)?16:8,i=UZ(i,8===a?1:2)),""===i)o=0;else{if(!CZ(10===a?ZZ:8===a?JZ:$Z,i))return t;o=PZ(i,a)}zZ(r,o)}for(n=0;n<e;n++)if(o=r[n],n===e-1){if(o>=IZ(256,5-e))return null}else if(o>255)return null;for(s=LZ(r),n=0;n<r.length;n++)s+=r[n]*IZ(256,3-n);return s}(t),null===e)return HZ;this.host=e}else{if(CZ(e$,t))return HZ;for(e="",r=pZ(t),n=0;n<r.length;n++)e+=l$(r[n],o$);this.host=e}},cannotHaveUsernamePasswordPort:function(){return!this.host||this.cannotBeABaseURL||"file"===this.scheme},includesCredentials:function(){return""!==this.username||""!==this.password},isSpecial:function(){return fZ(h$,this.scheme)},shortenPath:function(){var t=this.path,e=t.length;!e||"file"===this.scheme&&1===e&&f$(t[0],!0)||t.length--},serialize:function(){var t=this,e=t.scheme,r=t.username,n=t.password,i=t.host,a=t.port,o=t.path,s=t.query,c=t.fragment,u=e+":";return null!==i?(u+="//",t.includesCredentials()&&(u+=r+(n?":"+n:"")+"@"),u+=a$(i),null!==a&&(u+=":"+a)):"file"===e&&(u+="//"),u+=t.cannotBeABaseURL?o[0]:o.length?"/"+jZ(o,"/"):"",null!==s&&(u+="?"+s),null!==c&&(u+="#"+c),u},setHref:function(t){var e=this.parse(t);if(e)throw new TZ(e);this.searchParams.update()},getOrigin:function(){var t=this.scheme,e=this.port;if("blob"===t)try{return new z$(t.path[0]).origin}catch(t){return"null"}return"file"!==t&&this.isSpecial()?t+"://"+a$(this.host)+(null!==e?":"+e:""):"null"},getProtocol:function(){return this.scheme+":"},setProtocol:function(t){this.parse(mZ(t)+":",g$)},getUsername:function(){return this.username},setUsername:function(t){var e=pZ(mZ(t));if(!this.cannotHaveUsernamePasswordPort()){this.username="";for(var r=0;r<e.length;r++)this.username+=l$(e[r],u$)}},getPassword:function(){return this.password},setPassword:function(t){var e=pZ(mZ(t));if(!this.cannotHaveUsernamePasswordPort()){this.password="";for(var r=0;r<e.length;r++)this.password+=l$(e[r],u$)}},getHost:function(){var t=this.host,e=this.port;return null===t?"":null===e?a$(t):a$(t)+":"+e},setHost:function(t){this.cannotBeABaseURL||this.parse(t,S$)},getHostname:function(){var t=this.host;return null===t?"":a$(t)},setHostname:function(t){this.cannotBeABaseURL||this.parse(t,E$)},getPort:function(){var t=this.port;return null===t?"":mZ(t)},setPort:function(t){this.cannotHaveUsernamePasswordPort()||(""===(t=mZ(t))?this.port=null:this.parse(t,M$))},getPathname:function(){var t=this.path;return this.cannotBeABaseURL?t[0]:t.length?"/"+jZ(t,"/"):""},setPathname:function(t){this.cannotBeABaseURL||(this.path=[],this.parse(t,I$))},getSearch:function(){var t=this.query;return t?"?"+t:""},setSearch:function(t){""===(t=mZ(t))?this.query=null:("?"===RZ(t,0)&&(t=UZ(t,1)),this.query="",this.parse(t,j$)),this.searchParams.update()},getSearchParams:function(){return this.searchParams.facade},getHash:function(){var t=this.fragment;return t?"#"+t:""},setHash:function(t){""!==(t=mZ(t))?("#"===RZ(t,0)&&(t=UZ(t,1)),this.fragment="",this.parse(t,D$)):this.fragment=null},update:function(){this.query=this.searchParams.serialize()||null}};var z$=function(t){var e=hZ(this,B$),r=xZ(arguments.length,1)>1?arguments[1]:void 0,n=_Z(e,new L$(t,!1,r));iZ||(e.href=n.serialize(),e.origin=n.getOrigin(),e.protocol=n.getProtocol(),e.username=n.getUsername(),e.password=n.getPassword(),e.host=n.getHost(),e.hostname=n.getHostname(),e.port=n.getPort(),e.pathname=n.getPathname(),e.search=n.getSearch(),e.searchParams=n.getSearchParams(),e.hash=n.getHash())},B$=z$.prototype,F$=function(t,e){return{get:function(){return kZ(this)[t]()},set:e&&function(t){return kZ(this)[e](t)},configurable:!0,enumerable:!0}};if(iZ&&(lZ(B$,"href",F$("serialize","setHref")),lZ(B$,"origin",F$("getOrigin")),lZ(B$,"protocol",F$("getProtocol","setProtocol")),lZ(B$,"username",F$("getUsername","setUsername")),lZ(B$,"password",F$("getPassword","setPassword")),lZ(B$,"host",F$("getHost","setHost")),lZ(B$,"hostname",F$("getHostname","setHostname")),lZ(B$,"port",F$("getPort","setPort")),lZ(B$,"pathname",F$("getPathname","setPathname")),lZ(B$,"search",F$("getSearch","setSearch")),lZ(B$,"searchParams",F$("getSearchParams")),lZ(B$,"hash",F$("getHash","setHash"))),uZ(B$,"toJSON",(function(){return kZ(this).serialize()}),{enumerable:!0}),uZ(B$,"toString",(function(){return kZ(this).serialize()}),{enumerable:!0}),MZ){var N$=MZ.createObjectURL,U$=MZ.revokeObjectURL;N$&&uZ(z$,"createObjectURL",sZ(N$,MZ)),U$&&uZ(z$,"revokeObjectURL",sZ(U$,MZ))}bZ(z$,"URL"),nZ({global:!0,constructor:!0,forced:!aZ,sham:!iZ},{URL:z$});var Y$=ti,G$=i,W$=aP,H$=fi,q$=_K,X$=W("URL");Y$({target:"URL",stat:!0,forced:!(q$&&G$((function(){X$.canParse()})))},{canParse:function(t){var e=W$(arguments.length,1),r=H$(t),n=e<2||void 0===arguments[1]?void 0:H$(arguments[1]);try{return!!new X$(r,n)}catch(t){return!1}}});var V$=u;ti({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return V$(URL.prototype.toString,this)}});var Q$=Qr,K$=w,J$=fi,Z$=aP,$$=URLSearchParams,t0=$$.prototype,e0=K$(t0.append),r0=K$(t0.delete),n0=K$(t0.forEach),i0=K$([].push),a0=new $$("a=1&a=2&b=3");a0.delete("a",1),a0.delete("b",void 0),a0+""!="a=2"&&Q$(t0,"delete",(function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return r0(this,t);var n=[];n0(this,(function(t,e){i0(n,{key:e,value:t})})),Z$(e,1);for(var i,a=J$(t),o=J$(r),s=0,c=0,u=!1,l=n.length;s<l;)i=n[s++],u||i.key===a?(u=!0,r0(this,i.key)):c++;for(;c<l;)(i=n[c++]).key===a&&i.value===o||e0(this,i.key,i.value)}),{enumerable:!0,unsafe:!0});var o0=Qr,s0=w,c0=fi,u0=aP,l0=URLSearchParams,h0=l0.prototype,f0=s0(h0.getAll),d0=s0(h0.has),p0=new l0("a=1");!p0.has("a",2)&&p0.has("a",void 0)||o0(h0,"has",(function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return d0(this,t);var n=f0(this,t);u0(e,1);for(var i=c0(r),a=0;a<n.length;)if(n[a++]===i)return!0;return!1}),{enumerable:!0,unsafe:!0});var g0=a,v0=w,y0=Vi,m0=URLSearchParams.prototype,b0=v0(m0.forEach);g0&&!("size"in m0)&&y0(m0,"size",{get:function(){var t=0;return b0(this,(function(){t++})),t},configurable:!0,enumerable:!0});!function(t){var e=function(t){var e,r=Object.prototype,n=r.hasOwnProperty,i=Object.defineProperty||function(t,e,r){t[e]=r.value},a="function"==typeof Symbol?Symbol:{},o=a.iterator||"@@iterator",s=a.asyncIterator||"@@asyncIterator",c=a.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function l(t,e,r,n){var a=e&&e.prototype instanceof y?e:y,o=Object.create(a.prototype),s=new O(n||[]);return i(o,"_invoke",{value:E(t,r,s)}),o}function h(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var f="suspendedStart",d="suspendedYield",p="executing",g="completed",v={};function y(){}function m(){}function b(){}var x={};u(x,o,(function(){return this}));var w=Object.getPrototypeOf,A=w&&w(w(I([])));A&&A!==r&&n.call(A,o)&&(x=A);var _=b.prototype=y.prototype=Object.create(x);function k(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function S(t,e){function r(i,a,o,s){var c=h(t[i],t,a);if("throw"!==c.type){var u=c.arg,l=u.value;return l&&"object"==typeof l&&n.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,o,s)}),(function(t){r("throw",t,o,s)})):e.resolve(l).then((function(t){u.value=t,o(u)}),(function(t){return r("throw",t,o,s)}))}s(c.arg)}var a;i(this,"_invoke",{value:function(t,n){function i(){return new e((function(e,i){r(t,n,e,i)}))}return a=a?a.then(i,i):i()}})}function E(t,e,r){var n=f;return function(i,a){if(n===p)throw new Error("Generator is already running");if(n===g){if("throw"===i)throw a;return R()}for(r.method=i,r.arg=a;;){var o=r.delegate;if(o){var s=M(o,r);if(s){if(s===v)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===f)throw n=g,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=p;var c=h(t,e,r);if("normal"===c.type){if(n=r.done?g:d,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(n=g,r.method="throw",r.arg=c.arg)}}}function M(t,r){var n=r.method,i=t.iterator[n];if(i===e)return r.delegate=null,"throw"===n&&t.iterator.return&&(r.method="return",r.arg=e,M(t,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var a=h(i,t.iterator,r.arg);if("throw"===a.type)return r.method="throw",r.arg=a.arg,r.delegate=null,v;var o=a.arg;return o?o.done?(r[t.resultName]=o.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,v):o:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function P(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function I(t){if(t){var r=t[o];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var i=-1,a=function r(){for(;++i<t.length;)if(n.call(t,i))return r.value=t[i],r.done=!1,r;return r.value=e,r.done=!0,r};return a.next=a}}return{next:R}}function R(){return{value:e,done:!0}}return m.prototype=b,i(_,"constructor",{value:b,configurable:!0}),i(b,"constructor",{value:m,configurable:!0}),m.displayName=u(b,c,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===m||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,b):(t.__proto__=b,u(t,c,"GeneratorFunction")),t.prototype=Object.create(_),t},t.awrap=function(t){return{__await:t}},k(S.prototype),u(S.prototype,s,(function(){return this})),t.AsyncIterator=S,t.async=function(e,r,n,i,a){void 0===a&&(a=Promise);var o=new S(l(e,r,n,i),a);return t.isGeneratorFunction(r)?o:o.next().then((function(t){return t.done?t.value:o.next()}))},k(_),u(_,c,"Generator"),u(_,o,(function(){return this})),u(_,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=I,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(P),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function i(n,i){return s.type="throw",s.arg=t,r.next=n,i&&(r.method="next",r.arg=e),!!i}for(var a=this.tryEntries.length-1;a>=0;--a){var o=this.tryEntries[a],s=o.completion;if("root"===o.tryLoc)return i("end");if(o.tryLoc<=this.prev){var c=n.call(o,"catchLoc"),u=n.call(o,"finallyLoc");if(c&&u){if(this.prev<o.catchLoc)return i(o.catchLoc,!0);if(this.prev<o.finallyLoc)return i(o.finallyLoc)}else if(c){if(this.prev<o.catchLoc)return i(o.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return i(o.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var i=this.tryEntries[r];if(i.tryLoc<=this.prev&&n.call(i,"finallyLoc")&&this.prev<i.finallyLoc){var a=i;break}}a&&("break"===t||"continue"===t)&&a.tryLoc<=e&&e<=a.finallyLoc&&(a=null);var o=a?a.completion:{};return o.type=t,o.arg=e,a?(this.method="next",this.next=a.finallyLoc,v):this.complete(o)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),P(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;P(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:I(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),v}},t}(t.exports);try{regeneratorRuntime=e}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=e:Function("r","regeneratorRuntime = r")(e)}}({exports:{}}),((t,e)=>{var r,n,i,a;(null!==(e=(t=Path2D.prototype).roundRect)&&void 0!==e||(t.roundRect=o),globalThis.CanvasRenderingContext2D)&&(null!==(n=(r=globalThis.CanvasRenderingContext2D.prototype).roundRect)&&void 0!==n||(r.roundRect=o));globalThis.OffscreenCanvasRenderingContext2D&&(null!==(a=(i=globalThis.OffscreenCanvasRenderingContext2D.prototype).roundRect)&&void 0!==a||(i.roundRect=o));function o(t,e,r,n,i){if([t,e,r,n].every((t=>Number.isFinite(t)))){var a,o,c,u;if(i=function(t){var e=typeof t;if("undefined"===e||null===t)return[0];if("function"===e)return[NaN];if("object"===e)return"function"==typeof t[Symbol.iterator]?[...t].map((t=>{var e=typeof t;return"undefined"===e||null===t?0:"function"===e?NaN:"object"===e?f(t):d(t)})):[f(t)];return[d(t)]}(i),4===i.length)a=p(i[0]),o=p(i[1]),c=p(i[2]),u=p(i[3]);else if(3===i.length)a=p(i[0]),o=p(i[1]),u=p(i[1]),c=p(i[2]);else if(2===i.length)a=p(i[0]),c=p(i[0]),o=p(i[1]),u=p(i[1]);else{if(1!==i.length)throw new RangeError("".concat(s(this)," ").concat(i.length," is not a valid size for radii sequence."));a=p(i[0]),o=p(i[0]),c=p(i[0]),u=p(i[0])}var l=[a,o,c,u],h=l.find((t=>{var{x:e,y:r}=t;return e<0||r<0}));if((null==h?void 0:h.x)<0?h.x:null==h||h.y,!l.some((t=>{var{x:e,y:r}=t;return!Number.isFinite(e)||!Number.isFinite(r)}))){if(h)throw new RangeError("".concat(s(this)," Radius value ").concat(h," is negative."));!function(t){var[e,i,a,o]=t,s=[Math.abs(r)/(e.x+i.x),Math.abs(n)/(i.y+a.y),Math.abs(r)/(a.x+o.x),Math.abs(n)/(e.y+o.y)],c=Math.min(...s);if(c<=1)for(var u of t)u.x*=c,u.y*=c}(l),r<0&&n<0?(this.moveTo(t-a.x,e),this.ellipse(t+r+o.x,e-o.y,o.x,o.y,0,1.5*-Math.PI,-Math.PI),this.ellipse(t+r+c.x,e+n+c.y,c.x,c.y,0,-Math.PI,-Math.PI/2),this.ellipse(t-u.x,e+n+u.y,u.x,u.y,0,-Math.PI/2,0),this.ellipse(t-a.x,e-a.y,a.x,a.y,0,0,-Math.PI/2)):r<0?(this.moveTo(t-a.x,e),this.ellipse(t+r+o.x,e+o.y,o.x,o.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(t+r+c.x,e+n-c.y,c.x,c.y,0,-Math.PI,1.5*-Math.PI,1),this.ellipse(t-u.x,e+n-u.y,u.x,u.y,0,Math.PI/2,0,1),this.ellipse(t-a.x,e+a.y,a.x,a.y,0,0,-Math.PI/2,1)):n<0?(this.moveTo(t+a.x,e),this.ellipse(t+r-o.x,e-o.y,o.x,o.y,0,Math.PI/2,0,1),this.ellipse(t+r-c.x,e+n+c.y,c.x,c.y,0,0,-Math.PI/2,1),this.ellipse(t+u.x,e+n+u.y,u.x,u.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(t+a.x,e-a.y,a.x,a.y,0,-Math.PI,1.5*-Math.PI,1)):(this.moveTo(t+a.x,e),this.ellipse(t+r-o.x,e+o.y,o.x,o.y,0,-Math.PI/2,0),this.ellipse(t+r-c.x,e+n-c.y,c.x,c.y,0,0,Math.PI/2),this.ellipse(t+u.x,e+n-u.y,u.x,u.y,0,Math.PI/2,Math.PI),this.ellipse(t+a.x,e+a.y,a.x,a.y,0,Math.PI,1.5*Math.PI)),this.closePath(),this.moveTo(t,e)}}function f(t){var{x:e,y:r,z:n,w:i}=t;return{x:e,y:r,z:n,w:i}}function d(t){return+t}function p(t){var e,r,n=d(t);return Number.isFinite(n)?{x:n,y:n}:Object(t)===t?{x:d(null!==(e=t.x)&&void 0!==e?e:0),y:d(null!==(r=t.y)&&void 0!==r?r:0)}:{x:NaN,y:NaN}}}function s(t){return"Failed to execute 'roundRect' on '".concat(function(t){return Object(t)===t&&t instanceof Path2D?"Path2D":t instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.CanvasRenderingContext2D)?"CanvasRenderingContext2D":t instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.OffscreenCanvasRenderingContext2D)?"OffscreenCanvasRenderingContext2D":(null==t?void 0:t.constructor.name)||t}(t),"':")}})();var x0="done";function w0(t,e){return t===e||t!=t&&e!=e}function A0(t,e){for(var r=t.length;r--;)if(w0(t[r][0],e))return r;return-1}"function"!=typeof Object.assign&&(Object.assign=function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),r=1;r<arguments.length;r++){var n=arguments[r];if(null!=n)for(var i in n)n.hasOwnProperty(i)&&(e[i]=n[i])}return e}),"function"!=typeof Object.values&&(Object.values=function(t){let e=[];for(let r in t)e.push(t[r]);return e}),"function"!=typeof Object.keys&&(Object.values=function(t){let e=[];for(let r in t)e.push(r);return e}),"undefined"!=typeof CanvasRenderingContext2D&&null==CanvasRenderingContext2D.prototype.ellipse&&(CanvasRenderingContext2D.prototype.ellipse=function(t,e,r,n,i,a,o,s){this.save(),this.translate(t,e),this.rotate(i),this.translate(-r,-n),this.scale(r,n),this.arc(1,1,1,a,o,s),this.restore()}),function(){for(var t=0,e=["ms","moz","webkit","o"],r=0;r<e.length&&!window.requestAnimationFrame;++r)window.requestAnimationFrame=window[e[r]+"RequestAnimationFrame"],window.cancelAnimationFrame=window[e[r]+"CancelAnimationFrame"]||window[e[r]+"CancelRequestAnimationFrame"];window.requestAnimationFrame||(console.warn("requestAnimationFrame not supported"),window.requestAnimationFrame=function(e,r){var n=performance.now(),i=Math.max(0,33-(n-t)),a=window.setTimeout((function(){e(n+i)}),i);return t=n+i,a}),window.cancelAnimationFrame||(window.cancelAnimationFrame=function(t){clearTimeout(t)})}(),String.prototype.startsWith||(String.prototype.startsWith=function(t,e){return e=e||0,this.substr(e,t.length)===t});var _0=Array.prototype.splice;function k0(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}k0.prototype.clear=function(){this.__data__=[],this.size=0},k0.prototype.delete=function(t){var e=this.__data__,r=A0(e,t);return!(r<0)&&(r==e.length-1?e.pop():_0.call(e,r,1),--this.size,!0)},k0.prototype.get=function(t){var e=this.__data__,r=A0(e,t);return r<0?void 0:e[r][1]},k0.prototype.has=function(t){return A0(this.__data__,t)>-1},k0.prototype.set=function(t,e){var r=this.__data__,n=A0(r,t);return n<0?(++this.size,r.push([t,e])):r[n][1]=e,this};var S0="object"==typeof global&&global&&global.Object===Object&&global,E0="object"==typeof self&&self&&self.Object===Object&&self,M0=S0||E0||Function("return this")(),T0=M0.Symbol,P0=Object.prototype,O0=P0.hasOwnProperty,I0=P0.toString,R0=T0?T0.toStringTag:void 0;var C0=Object.prototype.toString;var j0="[object Null]",D0="[object Undefined]",L0=T0?T0.toStringTag:void 0;function z0(t){return null==t?void 0===t?D0:j0:L0&&L0 in Object(t)?function(t){var e=O0.call(t,R0),r=t[R0];try{t[R0]=void 0;var n=!0}catch(t){}var i=I0.call(t);return n&&(e?t[R0]=r:delete t[R0]),i}(t):function(t){return C0.call(t)}(t)}function B0(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}var F0="[object AsyncFunction]",N0="[object Function]",U0="[object GeneratorFunction]",Y0="[object Proxy]";function G0(t){if(!B0(t))return!1;var e=z0(t);return e==N0||e==U0||e==F0||e==Y0}var W0=M0["__core-js_shared__"],H0=function(){var t=/[^.]+$/.exec(W0&&W0.keys&&W0.keys.IE_PROTO||"");return t?"Symbol(src)_1."+t:""}();var q0=Function.prototype.toString;function X0(t){if(null!=t){try{return q0.call(t)}catch(t){}try{return t+""}catch(t){}}return""}var V0=/^\[object .+?Constructor\]$/,Q0=Function.prototype,K0=Object.prototype,J0=Q0.toString,Z0=K0.hasOwnProperty,$0=RegExp("^"+J0.call(Z0).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function t1(t){return!(!B0(t)||(e=t,H0&&H0 in e))&&(G0(t)?$0:V0).test(X0(t));var e}function e1(t,e){var r=function(t,e){return null==t?void 0:t[e]}(t,e);return t1(r)?r:void 0}var r1=e1(M0,"Map"),n1=e1(Object,"create");var i1=Object.prototype.hasOwnProperty;var a1=Object.prototype.hasOwnProperty;function o1(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}function s1(t,e){var r=t.__data__;return function(t){var e=typeof t;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}(e)?r["string"==typeof e?"string":"hash"]:r.map}function c1(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}o1.prototype.clear=function(){this.__data__=n1?n1(null):{},this.size=0},o1.prototype.delete=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e},o1.prototype.get=function(t){var e=this.__data__;if(n1){var r=e[t];return"__lodash_hash_undefined__"===r?void 0:r}return i1.call(e,t)?e[t]:void 0},o1.prototype.has=function(t){var e=this.__data__;return n1?void 0!==e[t]:a1.call(e,t)},o1.prototype.set=function(t,e){var r=this.__data__;return this.size+=this.has(t)?0:1,r[t]=n1&&void 0===e?"__lodash_hash_undefined__":e,this},c1.prototype.clear=function(){this.size=0,this.__data__={hash:new o1,map:new(r1||k0),string:new o1}},c1.prototype.delete=function(t){var e=s1(this,t).delete(t);return this.size-=e?1:0,e},c1.prototype.get=function(t){return s1(this,t).get(t)},c1.prototype.has=function(t){return s1(this,t).has(t)},c1.prototype.set=function(t,e){var r=s1(this,t),n=r.size;return r.set(t,e),this.size+=r.size==n?0:1,this};function u1(t){var e=this.__data__=new k0(t);this.size=e.size}u1.prototype.clear=function(){this.__data__=new k0,this.size=0},u1.prototype.delete=function(t){var e=this.__data__,r=e.delete(t);return this.size=e.size,r},u1.prototype.get=function(t){return this.__data__.get(t)},u1.prototype.has=function(t){return this.__data__.has(t)},u1.prototype.set=function(t,e){var r=this.__data__;if(r instanceof k0){var n=r.__data__;if(!r1||n.length<199)return n.push([t,e]),this.size=++r.size,this;r=this.__data__=new c1(n)}return r.set(t,e),this.size=r.size,this};function l1(t){var e=-1,r=null==t?0:t.length;for(this.__data__=new c1;++e<r;)this.add(t[e])}function h1(t,e){for(var r=-1,n=null==t?0:t.length;++r<n;)if(e(t[r],r,t))return!0;return!1}function f1(t,e){return t.has(e)}l1.prototype.add=l1.prototype.push=function(t){return this.__data__.set(t,"__lodash_hash_undefined__"),this},l1.prototype.has=function(t){return this.__data__.has(t)};var d1=1,p1=2;function g1(t,e,r,n,i,a){var o=r&d1,s=t.length,c=e.length;if(s!=c&&!(o&&c>s))return!1;var u=a.get(t),l=a.get(e);if(u&&l)return u==e&&l==t;var h=-1,f=!0,d=r&p1?new l1:void 0;for(a.set(t,e),a.set(e,t);++h<s;){var p=t[h],g=e[h];if(n)var v=o?n(g,p,h,e,t,a):n(p,g,h,t,e,a);if(void 0!==v){if(v)continue;f=!1;break}if(d){if(!h1(e,(function(t,e){if(!f1(d,e)&&(p===t||i(p,t,r,n,a)))return d.push(e)}))){f=!1;break}}else if(p!==g&&!i(p,g,r,n,a)){f=!1;break}}return a.delete(t),a.delete(e),f}var v1=M0.Uint8Array;function y1(t){var e=-1,r=Array(t.size);return t.forEach((function(t,n){r[++e]=[n,t]})),r}function m1(t){var e=-1,r=Array(t.size);return t.forEach((function(t){r[++e]=t})),r}var b1=1,x1=2,w1="[object Boolean]",A1="[object Date]",_1="[object Error]",k1="[object Map]",S1="[object Number]",E1="[object RegExp]",M1="[object Set]",T1="[object String]",P1="[object Symbol]",O1="[object ArrayBuffer]",I1="[object DataView]",R1=T0?T0.prototype:void 0,C1=R1?R1.valueOf:void 0;function j1(t,e){for(var r=-1,n=e.length,i=t.length;++r<n;)t[i+r]=e[r];return t}var D1=Array.isArray;function L1(t,e,r){var n=e(t);return D1(t)?n:j1(n,r(t))}function z1(){return[]}var B1=Object.prototype.propertyIsEnumerable,F1=Object.getOwnPropertySymbols,N1=F1?function(t){return null==t?[]:(t=Object(t),function(t,e){for(var r=-1,n=null==t?0:t.length,i=0,a=[];++r<n;){var o=t[r];e(o,r,t)&&(a[i++]=o)}return a}(F1(t),(function(e){return B1.call(t,e)})))}:z1,U1=N1;function Y1(t){return null!=t&&"object"==typeof t}function G1(t){return Y1(t)&&"[object Arguments]"==z0(t)}var W1=Object.prototype,H1=W1.hasOwnProperty,q1=W1.propertyIsEnumerable,X1=G1(function(){return arguments}())?G1:function(t){return Y1(t)&&H1.call(t,"callee")&&!q1.call(t,"callee")},V1=X1;var Q1="object"==typeof exports&&exports&&!exports.nodeType&&exports,K1=Q1&&"object"==typeof module&&module&&!module.nodeType&&module,J1=K1&&K1.exports===Q1?M0.Buffer:void 0,Z1=(J1?J1.isBuffer:void 0)||function(){return!1},$1=9007199254740991,t2=/^(?:0|[1-9]\d*)$/;function e2(t,e){var r=typeof t;return!!(e=null==e?$1:e)&&("number"==r||"symbol"!=r&&t2.test(t))&&t>-1&&t%1==0&&t<e}var r2=9007199254740991;function n2(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=r2}var i2={};function a2(t){return function(e){return t(e)}}i2["[object Float32Array]"]=i2["[object Float64Array]"]=i2["[object Int8Array]"]=i2["[object Int16Array]"]=i2["[object Int32Array]"]=i2["[object Uint8Array]"]=i2["[object Uint8ClampedArray]"]=i2["[object Uint16Array]"]=i2["[object Uint32Array]"]=!0,i2["[object Arguments]"]=i2["[object Array]"]=i2["[object ArrayBuffer]"]=i2["[object Boolean]"]=i2["[object DataView]"]=i2["[object Date]"]=i2["[object Error]"]=i2["[object Function]"]=i2["[object Map]"]=i2["[object Number]"]=i2["[object Object]"]=i2["[object RegExp]"]=i2["[object Set]"]=i2["[object String]"]=i2["[object WeakMap]"]=!1;var o2="object"==typeof exports&&exports&&!exports.nodeType&&exports,s2=o2&&"object"==typeof module&&module&&!module.nodeType&&module,c2=s2&&s2.exports===o2&&S0.process,u2=function(){try{var t=s2&&s2.require&&s2.require("util").types;return t||c2&&c2.binding&&c2.binding("util")}catch(t){}}(),l2=u2&&u2.isTypedArray,h2=l2?a2(l2):function(t){return Y1(t)&&n2(t.length)&&!!i2[z0(t)]},f2=h2,d2=Object.prototype.hasOwnProperty;function p2(t,e){var r=D1(t),n=!r&&V1(t),i=!r&&!n&&Z1(t),a=!r&&!n&&!i&&f2(t),o=r||n||i||a,s=o?function(t,e){for(var r=-1,n=Array(t);++r<t;)n[r]=e(r);return n}(t.length,String):[],c=s.length;for(var u in t)!e&&!d2.call(t,u)||o&&("length"==u||i&&("offset"==u||"parent"==u)||a&&("buffer"==u||"byteLength"==u||"byteOffset"==u)||e2(u,c))||s.push(u);return s}var g2=Object.prototype;function v2(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||g2)}function y2(t,e){return function(r){return t(e(r))}}var m2=y2(Object.keys,Object),b2=Object.prototype.hasOwnProperty;function x2(t){if(!v2(t))return m2(t);var e=[];for(var r in Object(t))b2.call(t,r)&&"constructor"!=r&&e.push(r);return e}function w2(t){return null!=t&&n2(t.length)&&!G0(t)}function A2(t){return w2(t)?p2(t):x2(t)}function _2(t){return L1(t,A2,U1)}var k2=1,S2=Object.prototype.hasOwnProperty;var E2=e1(M0,"DataView"),M2=e1(M0,"Promise"),T2=e1(M0,"Set"),P2=e1(M0,"WeakMap"),O2="[object Map]",I2="[object Promise]",R2="[object Set]",C2="[object WeakMap]",j2="[object DataView]",D2=X0(E2),L2=X0(r1),z2=X0(M2),B2=X0(T2),F2=X0(P2),N2=z0;(E2&&N2(new E2(new ArrayBuffer(1)))!=j2||r1&&N2(new r1)!=O2||M2&&N2(M2.resolve())!=I2||T2&&N2(new T2)!=R2||P2&&N2(new P2)!=C2)&&(N2=function(t){var e=z0(t),r="[object Object]"==e?t.constructor:void 0,n=r?X0(r):"";if(n)switch(n){case D2:return j2;case L2:return O2;case z2:return I2;case B2:return R2;case F2:return C2}return e});var U2=N2,Y2=1,G2="[object Arguments]",W2="[object Array]",H2="[object Object]",q2=Object.prototype.hasOwnProperty;function X2(t,e,r,n,i,a){var o=D1(t),s=D1(e),c=o?W2:U2(t),u=s?W2:U2(e),l=(c=c==G2?H2:c)==H2,h=(u=u==G2?H2:u)==H2,f=c==u;if(f&&Z1(t)){if(!Z1(e))return!1;o=!0,l=!1}if(f&&!l)return a||(a=new u1),o||f2(t)?g1(t,e,r,n,i,a):function(t,e,r,n,i,a,o){switch(r){case I1:if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case O1:return!(t.byteLength!=e.byteLength||!a(new v1(t),new v1(e)));case w1:case A1:case S1:return w0(+t,+e);case _1:return t.name==e.name&&t.message==e.message;case E1:case T1:return t==e+"";case k1:var s=y1;case M1:var c=n&b1;if(s||(s=m1),t.size!=e.size&&!c)return!1;var u=o.get(t);if(u)return u==e;n|=x1,o.set(t,e);var l=g1(s(t),s(e),n,i,a,o);return o.delete(t),l;case P1:if(C1)return C1.call(t)==C1.call(e)}return!1}(t,e,c,r,n,i,a);if(!(r&Y2)){var d=l&&q2.call(t,"__wrapped__"),p=h&&q2.call(e,"__wrapped__");if(d||p){var g=d?t.value():t,v=p?e.value():e;return a||(a=new u1),i(g,v,r,n,a)}}return!!f&&(a||(a=new u1),function(t,e,r,n,i,a){var o=r&k2,s=_2(t),c=s.length;if(c!=_2(e).length&&!o)return!1;for(var u=c;u--;){var l=s[u];if(!(o?l in e:S2.call(e,l)))return!1}var h=a.get(t),f=a.get(e);if(h&&f)return h==e&&f==t;var d=!0;a.set(t,e),a.set(e,t);for(var p=o;++u<c;){var g=t[l=s[u]],v=e[l];if(n)var y=o?n(v,g,l,e,t,a):n(g,v,l,t,e,a);if(!(void 0===y?g===v||i(g,v,r,n,a):y)){d=!1;break}p||(p="constructor"==l)}if(d&&!p){var m=t.constructor,b=e.constructor;m==b||!("constructor"in t)||!("constructor"in e)||"function"==typeof m&&m instanceof m&&"function"==typeof b&&b instanceof b||(d=!1)}return a.delete(t),a.delete(e),d}(t,e,r,n,i,a))}function V2(t,e,r,n,i){return t===e||(null==t||null==e||!Y1(t)&&!Y1(e)?t!=t&&e!=e:X2(t,e,r,n,V2,i))}function Q2(t,e){return V2(t,e)}var K2=function(){try{var t=e1(Object,"defineProperty");return t({},"",{}),t}catch(t){}}();function J2(t,e,r){"__proto__"==e&&K2?K2(t,e,{configurable:!0,enumerable:!0,value:r,writable:!0}):t[e]=r}var Z2=Object.prototype.hasOwnProperty;function $2(t,e,r){var n=t[e];Z2.call(t,e)&&w0(n,r)&&(void 0!==r||e in t)||J2(t,e,r)}function t3(t,e,r,n){var i=!r;r||(r={});for(var a=-1,o=e.length;++a<o;){var s=e[a],c=n?n(r[s],t[s],s,r,t):void 0;void 0===c&&(c=t[s]),i?J2(r,s,c):$2(r,s,c)}return r}function e3(t){return t}function r3(t,e,r){switch(r.length){case 0:return t.call(e);case 1:return t.call(e,r[0]);case 2:return t.call(e,r[0],r[1]);case 3:return t.call(e,r[0],r[1],r[2])}return t.apply(e,r)}var n3=Math.max;function i3(t){return function(){return t}}var a3=K2?function(t,e){return K2(t,"toString",{configurable:!0,enumerable:!1,value:i3(e),writable:!0})}:e3,o3=Date.now;var s3=function(t){var e=0,r=0;return function(){var n=o3(),i=16-(n-r);if(r=n,i>0){if(++e>=800)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}(a3),c3=s3;function u3(t,e){return c3(function(t,e,r){return e=n3(void 0===e?t.length-1:e,0),function(){for(var n=arguments,i=-1,a=n3(n.length-e,0),o=Array(a);++i<a;)o[i]=n[e+i];i=-1;for(var s=Array(e+1);++i<e;)s[i]=n[i];return s[e]=r(o),r3(t,this,s)}}(t,e,e3),t+"")}function l3(t,e,r){if(!B0(r))return!1;var n=typeof e;return!!("number"==n?w2(r)&&e2(e,r.length):"string"==n&&e in r)&&w0(r[e],t)}var h3=Object.prototype.hasOwnProperty;function f3(t){if(!B0(t))return function(t){var e=[];if(null!=t)for(var r in Object(t))e.push(r);return e}(t);var e=v2(t),r=[];for(var n in t)("constructor"!=n||!e&&h3.call(t,n))&&r.push(n);return r}function d3(t){return w2(t)?p2(t,!0):f3(t)}var p3,g3=(p3=function(t,e,r,n){t3(e,d3(e),t,n)},u3((function(t,e){var r=-1,n=e.length,i=n>1?e[n-1]:void 0,a=n>2?e[2]:void 0;for(i=p3.length>3&&"function"==typeof i?(n--,i):void 0,a&&l3(e[0],e[1],a)&&(i=n<3?void 0:i,n=1),t=Object(t);++r<n;){var o=e[r];o&&p3(t,o,r,i)}return t}))),v3=g3,y3=y2(Object.getPrototypeOf,Object),m3="[object Object]",b3=Function.prototype,x3=Object.prototype,w3=b3.toString,A3=x3.hasOwnProperty,_3=w3.call(Object);var k3="[object DOMException]",S3="[object Error]";function E3(t){if(!Y1(t))return!1;var e=z0(t);return e==S3||e==k3||"string"==typeof t.message&&"string"==typeof t.name&&!function(t){if(!Y1(t)||z0(t)!=m3)return!1;var e=y3(t);if(null===e)return!0;var r=A3.call(e,"constructor")&&e.constructor;return"function"==typeof r&&r instanceof r&&w3.call(r)==_3}(t)}var M3=u3((function(t,e){try{return r3(t,void 0,e)}catch(t){return E3(t)?t:new Error(t)}}));function T3(t,e){for(var r=-1,n=null==t?0:t.length,i=Array(n);++r<n;)i[r]=e(t[r],r,t);return i}var P3=Object.prototype,O3=P3.hasOwnProperty;function I3(t,e,r,n){return void 0===t||w0(t,P3[r])&&!O3.call(n,r)?e:t}var R3={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"};function C3(t){return"\\"+R3[t]}var j3=/<%=([\s\S]+?)%>/g;var D3,L3=(D3={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},function(t){return null==D3?void 0:D3[t]}),z3=L3,B3="[object Symbol]";function F3(t){return"symbol"==typeof t||Y1(t)&&z0(t)==B3}var N3=1/0,U3=T0?T0.prototype:void 0,Y3=U3?U3.toString:void 0;function G3(t){if("string"==typeof t)return t;if(D1(t))return T3(t,G3)+"";if(F3(t))return Y3?Y3.call(t):"";var e=t+"";return"0"==e&&1/t==-N3?"-0":e}function W3(t){return null==t?"":G3(t)}var H3=/[&<>"']/g,q3=RegExp(H3.source);var X3={escape:/<%-([\s\S]+?)%>/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:j3,variable:"",imports:{_:{escape:function(t){return(t=W3(t))&&q3.test(t)?t.replace(H3,z3):t}}}},V3=/\b__p \+= '';/g,Q3=/\b(__p \+=) '' \+/g,K3=/(__e\(.*?\)|\b__t\)) \+\n'';/g,J3=/[()=,{}\[\]\/\s]/,Z3=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,$3=/($^)/,t4=/['\n\r\u2028\u2029\\]/g,e4=Object.prototype.hasOwnProperty;var r4={linear:function(t){return t},quad:function(t){return Math.pow(t,2)},circ:function(t){return 1-Math.sin(Math.acos(t))},back:function(t,e={x:1.5}){return Math.pow(t,2)*((e.x+1)*t-e.x)},bounce:function(t){for(let e=0,r=1;;e+=r,r/=2)if(t>=(7-4*e)/11)return-Math.pow((11-6*e-11*t)/4,2)+Math.pow(r,2)},elastic:function(t,e={x:1.5}){return Math.pow(2,10*(t-1))*Math.cos(20*Math.PI*e.x/3*t)}};class n4{constructor(t,e){this.client=t,this.config=e,this._started=!1;var{delta:r="linear",options:n,ease:i}=this.config;"string"==typeof r&&(r=r4[r]),this.delta="out"==i?function(t,e){return function(r){return 1-t(1-r,e)}}(r,n):"inout"==i?function(t,e){return function(r){return r<.5?t(2*r,e)/2:(2-t(2*(1-r),e))/2}}(r,n):r,this.init()}dispose(){this.stop(),delete this.client}init(){}start(){if(!this._started){var{duration:t=2e3,delay:e=0,repeat:r=!1,interval:n=0}=this.config;this._started=!0;var i=0,a=0,o=()=>{if(this._raf=null,this._timeout=null,!this._started)return;0==i&&(i=performance.now(),this.client.touch());let s=performance.now()-i,c=Math.max((s-e)%(t+n),0)/t,u=n<=0&&a>c;if(a=c,c>=1||u){if(this.step(1),this.client&&this.client.invalidate(),!r||!this._started)return this.stop(),void(i=0);if(n>0)return void(this._timeout=setTimeout((()=>{this.step(0),this.client&&this.client.invalidate(),this._timeout=setTimeout(o,n/2)}),n/2))}else this.step(this.delta(c)),this.client&&this.client.invalidate();this._raf=requestAnimationFrame(o)};this._raf=requestAnimationFrame(o)}}stop(){this._raf&&cancelAnimationFrame(this._raf),this._timeout&&clearTimeout(this._timeout),this._raf=null,this._timeout=null,this._started=!1}get started(){return this._started}set started(t){this.started!=!!t&&(t?this.start():this.stop())}}var i4={rotation:class extends n4{step(t){var{theta:e=6.28}=this.config;this.client.delta("theta",t*e)}},vibration:class extends n4{step(t){var{theta:e=.2617993877991494}=this.config,r=4*e,n=t*r;t<1/4?n*=-1:t<3/4?n-=2*e:n=r-n,this.client.delta("theta",n)}},heartbeat:class extends n4{step(t){var e,{scale:r=1.3}=this.config,n=2*(r-1);e=t<.5?1+n*t:1+(1-t)*n,this.client.delta("sx",e),this.client.delta("sy",e)}},moving:class extends n4{step(t){var{x:e=0,y:r=0}=this.config;this.client.delta("tx",t*e),this.client.delta("ty",t*r)}},outline:class extends n4{step(t){const{rideOn:e}=this.config,r=this.client;if(!e||!r||!r.root)return;const n=r.root.findById(e);if(!n)return;const{tx:i,ty:a}=r.delta(),o=n.outline(t),s=r.center,c=r.transcoordS2T(s.x,s.y);n&&(r.delta("tx",o.x-c.x+i),r.delta("ty",o.y-c.y+a))}},fade:class extends n4{step(t){var e,{startAlpha:r=1,endAlpha:n=0}=this.config,i=Math.max(Math.min(r,n,1),0),a=2*(Math.min(Math.max(r,n,1),1)-i);e=t<.5?a*t:(1-t)*a,this.client.delta("fade",e)}}};function a4(t){var{duration:e=1e3,delay:r=30,step:n,delta:i,ease:a,options:o,repeat:s=!1}=t;"string"==typeof i&&(i=r4[i]),"out"==a?i=function(t,e){return function(r){return 1-t(1-r,e)}}(i,o):"inout"==a&&(i=function(t,e){return function(r){return r<.5?t(2*r,e)/2:(2-t(2*(1-r),e))/2}}(i,o));var c=!1;return{start:function(){if(c)return this;c=!0;var t=0,r=()=>{if(c){0==t&&(t=performance.now());var a=(performance.now()-t)/e,u=s?a%1:Math.min(a,1);n(i(u,o)),!(a>=1)||s&&c||(this.stop(),t=0),c&&requestAnimationFrame(r)}};return requestAnimationFrame(r),this},stop:function(){return c=!1,this}}}var o4="object"==typeof exports&&exports&&!exports.nodeType&&exports,s4=o4&&"object"==typeof module&&module&&!module.nodeType&&module,c4=s4&&s4.exports===o4?M0.Buffer:void 0,u4=c4?c4.allocUnsafe:void 0;var l4=Object.getOwnPropertySymbols?function(t){for(var e=[];t;)j1(e,U1(t)),t=y3(t);return e}:z1,h4=l4;function f4(t){return L1(t,d3,h4)}var d4=Object.prototype.hasOwnProperty;function p4(t){var e=new t.constructor(t.byteLength);return new v1(e).set(new v1(t)),e}var g4=/\w*$/;var v4=T0?T0.prototype:void 0,y4=v4?v4.valueOf:void 0;var m4="[object Boolean]",b4="[object Date]",x4="[object Map]",w4="[object Number]",A4="[object RegExp]",_4="[object Set]",k4="[object String]",S4="[object Symbol]",E4="[object ArrayBuffer]",M4="[object DataView]",T4="[object Float32Array]",P4="[object Float64Array]",O4="[object Int8Array]",I4="[object Int16Array]",R4="[object Int32Array]",C4="[object Uint8Array]",j4="[object Uint8ClampedArray]",D4="[object Uint16Array]",L4="[object Uint32Array]";function z4(t,e,r){var n,i=t.constructor;switch(e){case E4:return p4(t);case m4:case b4:return new i(+t);case M4:return function(t,e){var r=e?p4(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.byteLength)}(t,r);case T4:case P4:case O4:case I4:case R4:case C4:case j4:case D4:case L4:return function(t,e){var r=e?p4(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.length)}(t,r);case x4:return new i;case w4:case k4:return new i(t);case A4:return function(t){var e=new t.constructor(t.source,g4.exec(t));return e.lastIndex=t.lastIndex,e}(t);case _4:return new i;case S4:return n=t,y4?Object(y4.call(n)):{}}}var B4=Object.create,F4=function(){function t(){}return function(e){if(!B0(e))return{};if(B4)return B4(e);t.prototype=e;var r=new t;return t.prototype=void 0,r}}(),N4=F4;var U4=u2&&u2.isMap,Y4=U4?a2(U4):function(t){return Y1(t)&&"[object Map]"==U2(t)},G4=Y4;var W4=u2&&u2.isSet,H4=W4?a2(W4):function(t){return Y1(t)&&"[object Set]"==U2(t)},q4=H4,X4=1,V4=2,Q4=4,K4="[object Arguments]",J4="[object Function]",Z4="[object GeneratorFunction]",$4="[object Object]",t5={};function e5(t,e,r,n,i,a){var o,s=e&X4,c=e&V4,u=e&Q4;if(r&&(o=i?r(t,n,i,a):r(t)),void 0!==o)return o;if(!B0(t))return t;var l=D1(t);if(l){if(o=function(t){var e=t.length,r=new t.constructor(e);return e&&"string"==typeof t[0]&&d4.call(t,"index")&&(r.index=t.index,r.input=t.input),r}(t),!s)return function(t,e){var r=-1,n=t.length;for(e||(e=Array(n));++r<n;)e[r]=t[r];return e}(t,o)}else{var h=U2(t),f=h==J4||h==Z4;if(Z1(t))return function(t,e){if(e)return t.slice();var r=t.length,n=u4?u4(r):new t.constructor(r);return t.copy(n),n}(t,s);if(h==$4||h==K4||f&&!i){if(o=c||f?{}:function(t){return"function"!=typeof t.constructor||v2(t)?{}:N4(y3(t))}(t),!s)return c?function(t,e){return t3(t,h4(t),e)}(t,function(t,e){return t&&t3(e,d3(e),t)}(o,t)):function(t,e){return t3(t,U1(t),e)}(t,function(t,e){return t&&t3(e,A2(e),t)}(o,t))}else{if(!t5[h])return i?t:{};o=z4(t,h,s)}}a||(a=new u1);var d=a.get(t);if(d)return d;a.set(t,o),q4(t)?t.forEach((function(n){o.add(e5(n,e,r,n,t,a))})):G4(t)&&t.forEach((function(n,i){o.set(i,e5(n,e,r,i,t,a))}));var p=l?void 0:(u?c?f4:_2:c?d3:A2)(t);return function(t,e){for(var r=-1,n=null==t?0:t.length;++r<n&&!1!==e(t[r],r,t););}(p||t,(function(n,i){p&&(n=t[i=n]),$2(o,i,e5(n,e,r,i,t,a))})),o}t5[K4]=t5["[object Array]"]=t5["[object ArrayBuffer]"]=t5["[object DataView]"]=t5["[object Boolean]"]=t5["[object Date]"]=t5["[object Float32Array]"]=t5["[object Float64Array]"]=t5["[object Int8Array]"]=t5["[object Int16Array]"]=t5["[object Int32Array]"]=t5["[object Map]"]=t5["[object Number]"]=t5[$4]=t5["[object RegExp]"]=t5["[object Set]"]=t5["[object String]"]=t5["[object Symbol]"]=t5["[object Uint8Array]"]=t5["[object Uint8ClampedArray]"]=t5["[object Uint16Array]"]=t5["[object Uint32Array]"]=!0,t5["[object Error]"]=t5[J4]=t5["[object WeakMap]"]=!1;var r5=4;function n5(t){return e5(t,r5)}var i5=function(){return M0.Date.now()},a5=/\s/;var o5=/^\s+/;function s5(t){return t?t.slice(0,function(t){for(var e=t.length;e--&&a5.test(t.charAt(e)););return e}(t)+1).replace(o5,""):t}var c5=NaN,u5=/^[-+]0x[0-9a-f]+$/i,l5=/^0b[01]+$/i,h5=/^0o[0-7]+$/i,f5=parseInt;function d5(t){if("number"==typeof t)return t;if(F3(t))return c5;if(B0(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=B0(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=s5(t);var r=l5.test(t);return r||h5.test(t)?f5(t.slice(2),r?2:8):u5.test(t)?c5:+t}var p5="Expected a function",g5=Math.max,v5=Math.min;function y5(t,e,r){var n,i,a,o,s,c,u=0,l=!1,h=!1,f=!0;if("function"!=typeof t)throw new TypeError(p5);function d(e){var r=n,a=i;return n=i=void 0,u=e,o=t.apply(a,r)}function p(t){var r=t-c;return void 0===c||r>=e||r<0||h&&t-u>=a}function g(){var t=i5();if(p(t))return v(t);s=setTimeout(g,function(t){var r=e-(t-c);return h?v5(r,a-(t-u)):r}(t))}function v(t){return s=void 0,f&&n?d(t):(n=i=void 0,o)}function y(){var t=i5(),r=p(t);if(n=arguments,i=this,c=t,r){if(void 0===s)return function(t){return u=t,s=setTimeout(g,e),l?d(t):o}(c);if(h)return clearTimeout(s),s=setTimeout(g,e),d(c)}return void 0===s&&(s=setTimeout(g,e)),o}return e=d5(e)||0,B0(r)&&(l=!!r.leading,a=(h="maxWait"in r)?g5(d5(r.maxWait)||0,e):a,f="trailing"in r?!!r.trailing:f),y.cancel=function(){void 0!==s&&clearTimeout(s),u=0,n=c=i=s=void 0},y.flush=function(){return void 0===s?o:v(i5())},y}function m5(t,e,r){var n=!0,i=!0;if("function"!=typeof t)throw new TypeError("Expected a function");return B0(r)&&(n="leading"in r?!!r.leading:n,i="trailing"in r?!!r.trailing:i),y5(t,e,{leading:n,maxWait:e,trailing:i})}var b5=1/0,x5=17976931348623157e292;function w5(t){var e=function(t){return t?(t=d5(t))===b5||t===-b5?(t<0?-1:1)*x5:t==t?t:0:0===t?t:0}(t),r=e%1;return e==e?r?e-r:e:0}var A5="Expected a function";function _5(t){return function(t,e){var r;if("function"!=typeof e)throw new TypeError(A5);return t=w5(t),function(){return--t>0&&(r=e.apply(this,arguments)),t<=1&&(e=void 0),r}}(2,t)}var k5=Object.prototype.hasOwnProperty;function S5(t){if(null==t)return!0;if(w2(t)&&(D1(t)||"string"==typeof t||"function"==typeof t.splice||Z1(t)||f2(t)||V1(t)))return!t.length;var e=U2(t);if("[object Map]"==e||"[object Set]"==e)return!t.size;if(v2(t))return!x2(t).length;for(var r in t)if(k5.call(t,r))return!1;return!0}var E5=0;function M5(t={},...e){return"object"!=typeof t&&(t={}),e.forEach((e=>{for(let r in e)"object"!=typeof e[r]?t[r]=e[r]:e[r].length>0?t[r]=e[r].map((t=>{let n;return n="object"!=typeof e[r]?t:M5({},t),n})):t[r]=M5(t[r],e[r])})),t}function T5(t){for(;t&&"object"==typeof t;){let e=t;for(let e in t){t=t[e];break}if(t===e){t=void 0;break}}return t}var P5=Object.freeze({__proto__:null,insertAt:function(t,e){return this.__collection__?(-1==(t=this.__collection__.indexOf(e))&&this.__collection__.splice(t,0,e),this):this},append:function(t){return this.__collection__||(this.__collection__=[]),-1==this.__collection__.indexOf(t)&&this.__collection__.push(t),this},prepend:function(t){return this.__collection__||(this.__collection__=[]),-1==this.__collection__.indexOf(t)&&this.__collection__.unshift(t),this},remove:function(t){if(!this.__collection__)return this;var e=this.__collection__.indexOf(t);return e>=0&&this.__collection__.splice(e,1),this},getAt:function(t){if(this.__collection__)return this.__collection__[t]},forEach:function(t,e){this.__collection__&&this.__collection__.forEach(t,e)},indexOf:function(t){if(this.__collection__)return this.__collection__.indexOf(t)},size:function(){return this.__collection__?this.__collection__.length:0},clear:function(){this.__collection__=[]},moveForward:function(t){var e=this.indexOf(t);-1!=e&&0!=e&&(this.__collection__[e]=this.__collection__[e-1],this.__collection__[e-1]=t)},moveBackward:function(t){var e=this.indexOf(t);-1!=e&&e!=this.size()-1&&(this.__collection__[e]=this.__collection__[e+1],this.__collection__[e+1]=t)},moveToHead:function(t){var e=this.indexOf(t);if(-1!=e&&0!=e){var r=this.__collection__.splice(0,e),n=this.__collection__.splice(1);this.__collection__=this.__collection__.concat(r,n)}},moveToTail:function(t){var e=this.indexOf(t);if(-1!=e&&e!=this.size()-1){var r=this.__collection__.splice(0,e),n=this.__collection__.splice(1);this.__collection__=r.concat(n,this.__collection__)}}});function O5(){}O5.prototype=P5;var I5=/\s+/;function R5(t,e,r,n){if(!r)return!0;if("object"==typeof r){for(let n in r){let i=r[n];t[e].apply(t,[n,i])}return!1}return!I5.test(r)||(r.split(I5).forEach((r=>t[e].apply(t,[r].concat(n)))),!1)}const C5=["on","off","once","delegate_on","delegate_off","trigger","listenTo"];var j5={withEvent(){C5.forEach((t=>this[t]=j5[t]))},on(t,e,r){return R5(this,"on",t,[e,r])&&e?(this._listeners||(this._listeners={}),(this._listeners[t]||(this._listeners[t]=[])).push({callback:e,context:r,ctx:r||this}),this):this},once(t,e,r){if(!R5(this,"once",t,[e,r])||!e)return this;var n=this,i=_5((function(){n.off(t,i),e.apply(n,arguments)}));i._callback=e,this.on(t,i,r)},off(t,e,r){if(!this._listeners||!R5(this,"off",t,[e,r]))return this;if(!t&&!e&&!r)return this._listeners=void 0,this;var n;n=t?[t]:Object.keys(this._listeners);for(let t=0;t<n.length;t++){let i=n[t],a=this._listeners[i];if(a){let t=[];if(this._listeners[i]=t,e||r)for(let n=0;n<a.length;n++){let i=a[n];(e&&e!==i.callback&&e!==i.callback._callback||r&&r!==i.context)&&t.push(i)}t.length||delete this._listeners[i]}}return this},delegate_on(t){return this._delegators||(this._delegators=new O5),this._delegators.append(t),this},delegate_off(t){return this._delegators?(this._delegators.remove(t),this):this},delegate(){if(this._delegators&&this._delegators.size()>0&&L5(this._delegators,arguments),!this._listeners)return this;var t=arguments.length-1,e=arguments[t];arguments[t]={origin:e.origin,name:e.name,deliverer:this};var r=this._listeners[e.name],n=this._listeners["(all)"];return r&&D5(r,arguments),n&&D5(n,arguments),this},trigger(t){var e=[].slice.call(arguments,1);if(e.push({origin:this,name:t,deliverer:this}),this._delegators&&this._delegators.size()>0&&L5(this._delegators,e),!this._listeners)return this;if(!R5(this,"trigger",t,e))return this;var r=this._listeners[t],n=this._listeners["(all)"];return r&&D5(r,e),n&&D5(n,e),this},stopListening(t,e,r){var n=this._listeningTo;if(!n)return this;var i=!e&&!r;r||"object"!=typeof e||(r=this),t&&((n={})[t._listenId]=t);for(let t in n){let a=n[t];a.off(e,r,this),(i||S5(a._events))&&delete this._listeningTo[t]}return this}};function D5(t,e){t.forEach((t=>t.callback.apply(t.ctx,e)))}function L5(t,e){t.forEach((t=>j5.delegate.apply(t,e)))}var z5={listenTo:"on",listenToOnce:"once"};for(let t in z5){var B5=z5[t];j5[t]=function(t,e,r){this._listeningTo||(this._listeningTo={});var n=this._listeningTo;return t._listenId||(t._listenId=`${"l"||""}${++E5}`),n[t._listenId]=t,r||"object"!=typeof e||(r=this),t[B5](e,r,this),this}}function F5(t,e){if(e instanceof Array)e.forEach((e=>F5(t,e)));else{if(t.mixedIn=t.hasOwnProperty("mixedIn")?t.mixedIn:[],t.mixingIn=t.hasOwnProperty("mixingIn")?t.mixingIn:[],t.mixedIn.indexOf(e)>=0)return t;if(t.mixingIn.indexOf(e)>=0)throw new Error(`found cyclic dependencies between ${t.mixingIn}`);t.mixingIn.push(e),e.call(t),t.mixingIn.pop(),t.mixedIn.push(e)}return t}var N5=(...t)=>{var e=[];t.forEach((t=>t&&t.stack&&e.push(t.stack))),console.error("[ERROR]",...t,e.join(" "))},U5=(...t)=>{var e=[];t.forEach((t=>t&&t.stack&&e.push(t.stack))),console.warn("[WARN]",...t,e.join(" "))},Y5=(...t)=>console.log("[DEBUG]",...t);function G5(t,e,r){var n=t.__lookupGetter__(e);n?r?t.__defineGetter__(e,(function(){return void 0===this.__cache__[e]&&(this.__cache__[e]=n.call(this)),n5(this.__cache__[e])})):t.__defineGetter__(e,(function(){return void 0===this.__cache__[e]&&(this.__cache__[e]=n.call(this)),this.__cache__[e]})):N5(`${e} is not defined in ${t.constructor.name}`)}const W5={},H5=0,q5=1,X5=2,V5=3,Q5=4,K5=5,J5={VIEW:0,EDIT:1,SHIFT:2,ADD:3},Z5=30,$5="undefined"==typeof window?1:window.devicePixelRatio||(window.matchMedia&&window.matchMedia("(min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 1.5),(-moz-min-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5)").matches?2:1)||1,t6=["mousemove","mouseup","mousedown","mouseout","wheel","touchstart","touchmove","touchend","dblclick"],e6=["keydown","keyup"],r6={ALPHA:1,FONT_SIZE:15,FONT_FAMILY:"serif",FONT_COLOR:"black",TEXT_ALIGN:"center",TEXT_BASELINE:"middle",TEXT_WRAP:!1,BOLD:!1,ITALIC:!1,STROKE_STYLE:"#999",LINE_DASH:"solid"},n6={x:1,y:1};function i6(t,e,r){var{left:n=0,top:i=0,blurSize:a=0,color:o="transparent"}=e,s=r.rootModel.get("scale")||n6;t.shadowOffsetX=n*s.x*$5,t.shadowOffsetY=i*s.y*$5,t.shadowBlur=a*s.x*$5,t.shadowColor=o}var a6={gradation:function(t,e,r){var{type:n,subType:i,from:a,to:o,colors:s}=r;switch(i){case"linear":var c=e.createLinearGradient(a.x,a.y,o.x,o.y);break;case"radial":c=e.createRadialGradient(a.x,a.y,a.r,o.x,o.y,o.r);break;default:c=e.createLinearGradient(a.x,a.y,o.x,o.y)}s&&(s.forEach((function(t){c.addColorStop(t.endPoint,t.color)})),e.fillStyle=c,e.fill())},shadow:i6};function o6(t,e,r,n){var i=e.get("class");return!!i&&(i.split(" ")||[]).indexOf(t.substr(1))>=0}function s6(t,e,r,n){return t==e.get("type")}function c6(t,e,r,n){if("(all)"==t)return!0;switch(t.charAt(0)){case"#":return function(t,e,r,n){return t.substr(1)==e.get("id")}(t,e);case".":return o6(t,e);case"(":return function(t,e,r,n){switch(t){case"(all)":return!0;case"(self)":return n===e;case"(root)":return!n.parent&&n===e;case"(descendant)":return n!==e;case"(child)":return n===e.parent;default:return!1}}(t,e,0,n);default:return s6(t,e)}}function u6(t,e,r,n,i,a){return t(e,r,n,i)&&a.push(r),r.components&&r.components.forEach((r=>{u6(t,e,r,n,i,a)})),a}function l6(t,e,r,n){switch(t){case"(all)":return!0;case"(parent)":return r&&r.parent===e;case"(child)":case"(children)":return r&&r===e.parent;case"(sibling)":case"(siblings)":return r&&r.parent===e.parent&&r!==e;default:return!1}}function h6(t,e,r){if("(root)"==t)return[e];if("(self)"==t)return r?[r]:[];var n;switch(t.charAt(0)){case"#":let r=e.root.findAllById(t.substr(1));return r||[];case".":n=o6;break;case"(":n=l6;break;default:n=s6}return u6(n,t,e,r,e,[])}function f6(t){throw new Error('Could not dynamically require "'+t+'". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.')}var d6={exports:{}};!function(e,r){var n=function(t){var e,r=Object.prototype,n=r.hasOwnProperty,i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",o=i.asyncIterator||"@@asyncIterator",s=i.toStringTag||"@@toStringTag";function c(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{c({},"")}catch(t){c=function(t,e,r){return t[e]=r}}function u(t,e,r,n){var i=e&&e.prototype instanceof v?e:v,a=Object.create(i.prototype),o=new T(n||[]);return a._invoke=function(t,e,r){var n=h;return function(i,a){if(n===d)throw new Error("Generator is already running");if(n===p){if("throw"===i)throw a;return O()}for(r.method=i,r.arg=a;;){var o=r.delegate;if(o){var s=S(o,r);if(s){if(s===g)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===h)throw n=p,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=d;var c=l(t,e,r);if("normal"===c.type){if(n=r.done?p:f,c.arg===g)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(n=p,r.method="throw",r.arg=c.arg)}}}(t,r,o),a}function l(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=u;var h="suspendedStart",f="suspendedYield",d="executing",p="completed",g={};function v(){}function y(){}function m(){}var b={};c(b,a,(function(){return this}));var x=Object.getPrototypeOf,w=x&&x(x(P([])));w&&w!==r&&n.call(w,a)&&(b=w);var A=m.prototype=v.prototype=Object.create(b);function _(t){["next","throw","return"].forEach((function(e){c(t,e,(function(t){return this._invoke(e,t)}))}))}function k(t,e){function r(i,a,o,s){var c=l(t[i],t,a);if("throw"!==c.type){var u=c.arg,h=u.value;return h&&"object"==typeof h&&n.call(h,"__await")?e.resolve(h.__await).then((function(t){r("next",t,o,s)}),(function(t){r("throw",t,o,s)})):e.resolve(h).then((function(t){u.value=t,o(u)}),(function(t){return r("throw",t,o,s)}))}s(c.arg)}var i;this._invoke=function(t,n){function a(){return new e((function(e,i){r(t,n,e,i)}))}return i=i?i.then(a,a):a()}}function S(t,r){var n=t.iterator[r.method];if(n===e){if(r.delegate=null,"throw"===r.method){if(t.iterator.return&&(r.method="return",r.arg=e,S(t,r),"throw"===r.method))return g;r.method="throw",r.arg=new TypeError("The iterator does not provide a 'throw' method")}return g}var i=l(n,t.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,g;var a=i.arg;return a?a.done?(r[t.resultName]=a.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,g):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,g)}function E(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function M(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function T(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(E,this),this.reset(!0)}function P(t){if(t){var r=t[a];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var i=-1,o=function r(){for(;++i<t.length;)if(n.call(t,i))return r.value=t[i],r.done=!1,r;return r.value=e,r.done=!0,r};return o.next=o}}return{next:O}}function O(){return{value:e,done:!0}}return y.prototype=m,c(A,"constructor",m),c(m,"constructor",y),y.displayName=c(m,s,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===y||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,c(t,s,"GeneratorFunction")),t.prototype=Object.create(A),t},t.awrap=function(t){return{__await:t}},_(k.prototype),c(k.prototype,o,(function(){return this})),t.AsyncIterator=k,t.async=function(e,r,n,i,a){void 0===a&&(a=Promise);var o=new k(u(e,r,n,i),a);return t.isGeneratorFunction(r)?o:o.next().then((function(t){return t.done?t.value:o.next()}))},_(A),c(A,s,"Generator"),c(A,a,(function(){return this})),c(A,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=[];for(var r in t)e.push(r);return e.reverse(),function r(){for(;e.length;){var n=e.pop();if(n in t)return r.value=n,r.done=!1,r}return r.done=!0,r}},t.values=P,T.prototype={constructor:T,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(M),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function i(n,i){return s.type="throw",s.arg=t,r.next=n,i&&(r.method="next",r.arg=e),!!i}for(var a=this.tryEntries.length-1;a>=0;--a){var o=this.tryEntries[a],s=o.completion;if("root"===o.tryLoc)return i("end");if(o.tryLoc<=this.prev){var c=n.call(o,"catchLoc"),u=n.call(o,"finallyLoc");if(c&&u){if(this.prev<o.catchLoc)return i(o.catchLoc,!0);if(this.prev<o.finallyLoc)return i(o.finallyLoc)}else if(c){if(this.prev<o.catchLoc)return i(o.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return i(o.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var i=this.tryEntries[r];if(i.tryLoc<=this.prev&&n.call(i,"finallyLoc")&&this.prev<i.finallyLoc){var a=i;break}}a&&("break"===t||"continue"===t)&&a.tryLoc<=e&&e<=a.finallyLoc&&(a=null);var o=a?a.completion:{};return o.type=t,o.arg=e,a?(this.method="next",this.next=a.finallyLoc,g):this.complete(o)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),g},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),M(r),g}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;M(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:P(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),g}},t}(e.exports);try{regeneratorRuntime=n}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=n:Function("r","regeneratorRuntime = r")(n)}Number.isInteger=Number.isInteger||function(t){return"number"==typeof t&&isFinite(t)&&Math.floor(t)===t},String.fromCodePoint||function(t){var e=function(e){for(var r=[],n=0,i="",a=0,o=arguments.length;a!==o;++a){var s=+arguments[a];if(!(s<1114111&&s>>>0===s))throw RangeError("Invalid code point: "+s);s<=65535?n=r.push(s):(s-=65536,n=r.push(55296+(s>>10),s%1024+56320)),n>=16383&&(i+=t.apply(null,r),r.length=0)}return i+t.apply(null,r)};try{Object.defineProperty(String,"fromCodePoint",{value:e,configurable:!0,writable:!0})}catch(t){String.fromCodePoint=e}}(String.fromCharCode),Object.is||(Object.is=function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e})
2
- /*! https://mths.be/codepointat v0.2.0 by @mathias */,String.prototype.codePointAt||function(){var t=function(){try{var t={},e=Object.defineProperty,r=e(t,t,t)&&e}catch(t){}return r}(),e=function(t){if(null==this)throw TypeError();var e=String(this),r=e.length,n=t?Number(t):0;if(n!=n&&(n=0),!(n<0||n>=r)){var i,a=e.charCodeAt(n);return a>=55296&&a<=56319&&r>n+1&&(i=e.charCodeAt(n+1))>=56320&&i<=57343?1024*(a-55296)+i-56320+65536:a}};t?t(String.prototype,"codePointAt",{value:e,configurable:!0,writable:!0}):String.prototype.codePointAt=e}(),Math.log10=Math.log10||function(t){return Math.log(t)*Math.LOG10E},e.exports=function(){function t(e,r,n){function i(o,s){if(!r[o]){if(!e[o]){if(!s&&f6)return f6(o);if(a)return a(o,!0);var c=new Error("Cannot find module '"+o+"'");throw c.code="MODULE_NOT_FOUND",c}var u=r[o]={exports:{}};e[o][0].call(u.exports,(function(t){return i(e[o][1][t]||t)}),u,u.exports,t,e,r,n)}return r[o].exports}for(var a=f6,o=0;o<n.length;o++)i(n[o]);return i}return t}()({1:[function(t,e,r){var n=t("./utils"),i=function(){var t=n.stringToArray,e=["Zero","One","Two","Three","Four","Five","Six","Seven","Eight","Nine","Ten","Eleven","Twelve","Thirteen","Fourteen","Fifteen","Sixteen","Seventeen","Eighteen","Nineteen"],r=["Zeroth","First","Second","Third","Fourth","Fifth","Sixth","Seventh","Eighth","Ninth","Tenth","Eleventh","Twelfth","Thirteenth","Fourteenth","Fifteenth","Sixteenth","Seventeenth","Eighteenth","Nineteenth"],i=["Twenty","Thirty","Forty","Fifty","Sixty","Seventy","Eighty","Ninety","Hundred"],a=["Thousand","Million","Billion","Trillion"];function o(t,n){var o=function t(n,o,s){var c="";if(n<=19)c=(o?" and ":"")+(s?r[n]:e[n]);else if(n<100){var u=Math.floor(n/10),l=n%10;c=(o?" and ":"")+i[u-2],l>0?c+="-"+t(l,!1,s):s&&(c=c.substring(0,c.length-1)+"ieth")}else if(n<1e3){var h=Math.floor(n/100),f=n%100;c=(o?", ":"")+e[h]+" Hundred",f>0?c+=t(f,!0,s):s&&(c+="th")}else{var d=Math.floor(Math.log10(n)/3);d>a.length&&(d=a.length);var p=Math.pow(10,3*d),g=Math.floor(n/p),v=n-g*p;c=(o?", ":"")+t(g,!1,!1)+" "+a[d-1],v>0?c+=t(v,!0,s):s&&(c+="th")}return c};return o(t,!1,n)}var s={};function c(t){var e=t.split(/,\s|\sand\s|[\s\\-]/).map((function(t){return s[t]})),r=[0];return e.forEach((function(t){if(t<100){var e=r.pop();e>=1e3&&(r.push(e),e=0),r.push(e+t)}else r.push(r.pop()*t)})),r.reduce((function(t,e){return t+e}),0)}e.forEach((function(t,e){s[t.toLowerCase()]=e})),r.forEach((function(t,e){s[t.toLowerCase()]=e})),i.forEach((function(t,e){var r=t.toLowerCase();s[r]=10*(e+2),s[r.substring(0,t.length-1)+"ieth"]=s[r]})),s.hundredth=100,a.forEach((function(t,e){var r=t.toLowerCase(),n=Math.pow(10,3*(e+1));s[r]=n,s[r+"th"]=n}));var u=[[1e3,"m"],[900,"cm"],[500,"d"],[400,"cd"],[100,"c"],[90,"xc"],[50,"l"],[40,"xl"],[10,"x"],[9,"ix"],[5,"v"],[4,"iv"],[1,"i"]],l={M:1e3,D:500,C:100,L:50,X:10,V:5,I:1};function h(t){for(var e=0;e<u.length;e++){var r=u[e];if(t>=r[0])return r[1]+h(t-r[0])}return""}function f(t){for(var e=0,r=1,n=t.length-1;n>=0;n--){var i=t[n],a=l[i];a<r?e-=a:(r=a,e+=a)}return e}function d(t,e){for(var r=[],n=e.charCodeAt(0);t>0;)r.unshift(String.fromCharCode((t-1)%26+n)),t=Math.floor((t-1)/26);return r.join("")}function p(t,e){for(var r=e.charCodeAt(0),n=0,i=0;i<t.length;i++)n+=(t.charCodeAt(t.length-i-1)-r+1)*Math.pow(26,i);return n}function g(t,e){if(void 0!==t)return m(t=Math.floor(t),x(e))}var v={DECIMAL:"decimal",LETTERS:"letters",ROMAN:"roman",WORDS:"words",SEQUENCE:"sequence"},y={UPPER:"upper",LOWER:"lower",TITLE:"title"};function m(e,r){var n,i=e<0;switch(e=Math.abs(e),r.primary){case v.LETTERS:n=d(e,r.case===y.UPPER?"A":"a");break;case v.ROMAN:n=h(e),r.case===y.UPPER&&(n=n.toUpperCase());break;case v.WORDS:n=o(e,r.ordinal),r.case===y.UPPER?n=n.toUpperCase():r.case===y.LOWER&&(n=n.toLowerCase());break;case v.DECIMAL:n=""+e;var a=r.mandatoryDigits-n.length;if(a>0){var s=new Array(a+1).join("0");n=s+n}if(48!==r.zeroCode&&(n=t(n).map((function(t){return String.fromCodePoint(t.codePointAt(0)+r.zeroCode-48)})).join("")),r.regular)for(var c=Math.floor((n.length-1)/r.groupingSeparators.position);c>0;c--){var u=n.length-c*r.groupingSeparators.position;n=n.substr(0,u)+r.groupingSeparators.character+n.substr(u)}else r.groupingSeparators.reverse().forEach((function(t){var e=n.length-t.position;n=n.substr(0,e)+t.character+n.substr(e)}));if(r.ordinal){var l={1:"st",2:"nd",3:"rd"}[n[n.length-1]];(!l||n.length>1&&"1"===n[n.length-2])&&(l="th"),n+=l}break;case v.SEQUENCE:throw{code:"D3130",value:r.token}}return i&&(n="-"+n),n}var b=[48,1632,1776,1984,2406,2534,2662,2790,2918,3046,3174,3302,3430,3558,3664,3792,3872,4160,4240,6112,6160,6470,6608,6784,6800,6992,7088,7232,7248,42528,43216,43264,43472,43504,43600,44016,65296];function x(e){var r,n={type:"integer",primary:v.DECIMAL,case:y.LOWER,ordinal:!1},i=e.lastIndexOf(";");switch(-1===i?r=e:(r=e.substring(0,i),"o"===e.substring(i+1)[0]&&(n.ordinal=!0)),r){case"A":n.case=y.UPPER;case"a":n.primary=v.LETTERS;break;case"I":n.case=y.UPPER;case"i":n.primary=v.ROMAN;break;case"W":n.case=y.UPPER,n.primary=v.WORDS;break;case"Ww":n.case=y.TITLE,n.primary=v.WORDS;break;case"w":n.primary=v.WORDS;break;default:var a=null,o=0,s=0,c=[],u=0;if(t(r).map((function(t){return t.codePointAt(0)})).reverse().forEach((function(t){for(var e=!1,r=0;r<b.length;r++){var n=b[r];if(t>=n&&t<=n+9){if(e=!0,o++,u++,null===a)a=n;else if(n!==a)throw{code:"D3131"};break}}e||(35===t?(u++,s++):c.push({position:u,character:String.fromCodePoint(t)}))})),o>0){n.primary=v.DECIMAL,n.zeroCode=a,n.mandatoryDigits=o,n.optionalDigits=s;var l=function(t){if(0===t.length)return 0;for(var e=t[0].character,r=1;r<t.length;r++)if(t[r].character!==e)return 0;for(var n=t.map((function(t){return t.position})),i=function t(e,r){return 0===r?e:t(r,e%r)},a=n.reduce(i),o=1;o<=n.length;o++)if(-1===n.indexOf(o*a))return 0;return a},h=l(c);h>0?(n.regular=!0,n.groupingSeparators={position:h,character:c[0].character}):(n.regular=!1,n.groupingSeparators=c)}else n.primary=v.SEQUENCE,n.token=r}return n}var w={Y:"1",M:"1",D:"1",d:"1",F:"n",W:"1",w:"1",X:"1",x:"1",H:"1",h:"1",P:"n",m:"01",s:"01",f:"1",Z:"01:01",z:"01:01",C:"n",E:"n"};function A(t){for(var e=[],r={type:"datetime",parts:e},n=function(r,n){if(n>r){var i=t.substring(r,n);i=i.split("]]").join("]"),e.push({type:"literal",value:i})}},i=0,a=0;a<t.length;){if("["===t.charAt(a)){if("["===t.charAt(a+1)){n(i,a),e.push({type:"literal",value:"["}),i=a+=2;continue}if(n(i,a),i=a,-1===(a=t.indexOf("]",i)))throw{code:"D3135"};var o,s=t.substring(i+1,a),c={type:"marker",component:(s=s.split(/\s+/).join("")).charAt(0)},u=s.lastIndexOf(",");if(-1!==u){var l=s.substring(u+1),h=l.indexOf("-"),f=void 0,d=void 0,p=function(t){return void 0===t||"*"===t?void 0:parseInt(t)};-1===h?f=l:(f=l.substring(0,h),d=l.substring(h+1));var g={min:p(f),max:p(d)};c.width=g,o=s.substring(1,u)}else o=s.substring(1);if(1===o.length)c.presentation1=o;else if(o.length>1){var v=o.charAt(o.length-1);-1!=="atco".indexOf(v)?(c.presentation2=v,"o"===v&&(c.ordinal=!0),c.presentation1=o.substring(0,o.length-1)):c.presentation1=o}else c.presentation1=w[c.component];if(void 0===c.presentation1)throw{code:"D3132",value:c.component};if("n"===c.presentation1[0])c.names=y.LOWER;else if("N"===c.presentation1[0])"n"===c.presentation1[1]?c.names=y.TITLE:c.names=y.UPPER;else if(-1!=="YMDdFWwXxHhmsf".indexOf(c.component)){var m=c.presentation1;if(c.presentation2&&(m+=";"+c.presentation2),c.integerFormat=x(m),c.width&&void 0!==c.width.min&&c.integerFormat.mandatoryDigits<c.width.min&&(c.integerFormat.mandatoryDigits=c.width.min),-1!=="YMD".indexOf(c.component))if(c.n=-1,c.width&&void 0!==c.width.max)c.n=c.width.max,c.integerFormat.mandatoryDigits=c.n;else{var b=c.integerFormat.mandatoryDigits+c.integerFormat.optionalDigits;b>=2&&(c.n=b)}}"Z"!==c.component&&"z"!==c.component||(c.integerFormat=x(c.presentation1)),e.push(c),i=a+1}a++}return n(i,a),r}var _=["","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],k=["January","February","March","April","May","June","July","August","September","October","November","December"],S=864e5,E=function(t){var e=Date.UTC(t.year,t.month),r=new Date(e).getUTCDay();return 0===r&&(r=7),r>4?e+(8-r)*S:e-(r-1)*S},M=function t(e,r){return{year:e,month:r,nextMonth:function(){return 11===r?t(e+1,0):t(e,r+1)},previousMonth:function(){return 0===r?t(e-1,11):t(e,r-1)},nextYear:function(){return t(e+1,r)},previousYear:function(){return t(e-1,r)}}},T=function(t,e){return(e-t)/(7*S)+1},P=function(t,e){var r;switch(e){case"Y":r=t.getUTCFullYear();break;case"M":r=t.getUTCMonth()+1;break;case"D":r=t.getUTCDate();break;case"d":r=(Date.UTC(t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate())-Date.UTC(t.getUTCFullYear(),0))/S+1;break;case"F":0===(r=t.getUTCDay())&&(r=7);break;case"W":var n=M(t.getUTCFullYear(),0),i=E(n),a=Date.UTC(n.year,t.getUTCMonth(),t.getUTCDate()),o=T(i,a);if(o>52)a>=E(n.nextYear())&&(o=1);else if(o<1){var s=E(n.previousYear());o=T(s,a)}r=Math.floor(o);break;case"w":var c=M(t.getUTCFullYear(),t.getUTCMonth()),u=E(c),l=Date.UTC(c.year,c.month,t.getUTCDate()),h=T(u,l);if(h>4)l>=E(c.nextMonth())&&(h=1);else if(h<1){var f=E(c.previousMonth());h=T(f,l)}r=Math.floor(h);break;case"X":var d=M(t.getUTCFullYear(),0),p=E(d),g=E(d.nextYear()),v=t.getTime();r=v<p?d.year-1:v>=g?d.year+1:d.year;break;case"x":var y=M(t.getUTCFullYear(),t.getUTCMonth()),m=E(y),b=y.nextMonth(),x=E(b),w=t.getTime();r=w<m?y.previousMonth().month+1:w>=x?b.month+1:y.month+1;break;case"H":r=t.getUTCHours();break;case"h":r=t.getUTCHours(),0==(r%=12)&&(r=12);break;case"P":r=t.getUTCHours()>=12?"pm":"am";break;case"m":r=t.getUTCMinutes();break;case"s":r=t.getUTCSeconds();break;case"f":r=t.getUTCMilliseconds();break;case"Z":case"z":break;case"C":case"E":r="ISO"}return r},O=null;function I(t,e,r){var n=0,i=0;if(void 0!==r){var a=parseInt(r);n=Math.floor(a/100),i=a%100}var o,s=function(t,e){var r=P(t,e.component);if(-1!=="YMDdFWwXxHhms".indexOf(e.component))if("Y"===e.component&&-1!==e.n&&(r%=Math.pow(10,e.n)),e.names){if("M"===e.component||"x"===e.component)r=k[r-1];else{if("F"!==e.component)throw{code:"D3133",value:e.component};r=_[r]}e.names===y.UPPER?r=r.toUpperCase():e.names===y.LOWER&&(r=r.toLowerCase()),e.width&&r.length>e.width.max&&(r=r.substring(0,e.width.max))}else r=m(r,e.integerFormat);else if("f"===e.component)r=m(r,e.integerFormat);else if("Z"===e.component||"z"===e.component){var a=100*n+i;if(e.integerFormat.regular)r=m(a,e.integerFormat);else{var o=e.integerFormat.mandatoryDigits;if(1===o||2===o)r=m(n,e.integerFormat),0!==i&&(r+=":"+g(i,"00"));else{if(3!==o&&4!==o)throw{code:"D3134",value:o};r=m(a,e.integerFormat)}}a>=0&&(r="+"+r),"z"===e.component&&(r="GMT"+r),0===a&&"t"===e.presentation2&&(r="Z")}return r};void 0===e?(null===O&&(O=A("[Y0001]-[M01]-[D01]T[H01]:[m01]:[s01].[f001][Z01:01t]")),o=O):o=A(e);var c=new Date(t+60*(60*n+i)*1e3),u="";return o.parts.forEach((function(t){"literal"===t.type?u+=t.value:u+=s(c,t)})),u}function R(t){var e={};if("datetime"===t.type)e.type="datetime",e.parts=t.parts.map((function(t){var e={};if("literal"===t.type)e.regex=t.value.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");else if("Z"===t.component||"z"===t.component){var r;Array.isArray(t.integerFormat.groupingSeparators)||(r=t.integerFormat.groupingSeparators),e.regex="","z"===t.component&&(e.regex="GMT"),e.regex+="[-+][0-9]+",r&&(e.regex+=r.character+"[0-9]+"),e.parse=function(e){"z"===t.component&&(e=e.substring(3));var n=0,i=0;return r?(n=Number.parseInt(e.substring(0,e.indexOf(r.character))),i=Number.parseInt(e.substring(e.indexOf(r.character)+1))):e.length-1<=2?n=Number.parseInt(e):(n=Number.parseInt(e.substring(0,3)),i=Number.parseInt(e.substring(3))),60*n+i}}else if(t.integerFormat)t.integerFormat.n=t.n,e=R(t.integerFormat);else{e.regex="[a-zA-Z]+";var n={};if("M"===t.component||"x"===t.component)k.forEach((function(e,r){t.width&&t.width.max?n[e.substring(0,t.width.max)]=r+1:n[e]=r+1}));else if("F"===t.component)_.forEach((function(e,r){r>0&&(t.width&&t.width.max?n[e.substring(0,t.width.max)]=r:n[e]=r)}));else{if("P"!==t.component)throw{code:"D3133",value:t.component};n={am:0,AM:0,pm:1,PM:1}}e.parse=function(t){return n[t]}}return e.component=t.component,e}));else{e.type="integer";var r,n=t.case===y.UPPER;switch(r=t.n&&t.n>0?0===t.optionalDigits?"{".concat(t.n,"}"):"{".concat(t.n-t.optionalDigits,",").concat(t.n,"}"):"+",t.primary){case v.LETTERS:e.regex=n?"[A-Z]+":"[a-z]+",e.parse=function(t){return p(t,n?"A":"a")};break;case v.ROMAN:e.regex=n?"[MDCLXVI]+":"[mdclxvi]+",e.parse=function(t){return f(n?t:t.toUpperCase())};break;case v.WORDS:e.regex="(?:"+Object.keys(s).concat("and","[\\-, ]").join("|")+")+",e.parse=function(t){return c(t.toLowerCase())};break;case v.DECIMAL:e.regex="[0-9]".concat(r),t.ordinal&&(e.regex+="(?:th|st|nd|rd)"),e.parse=function(e){var r=e;return t.ordinal&&(r=e.substring(0,e.length-2)),t.regular?r=r.split(",").join(""):t.groupingSeparators.forEach((function(t){r=r.split(t.character).join("")})),48!==t.zeroCode&&(r=r.split("").map((function(e){return String.fromCodePoint(e.codePointAt(0)-t.zeroCode+48)})).join("")),parseInt(r)};break;case v.SEQUENCE:throw{code:"D3130",value:t.token}}}return e}function C(t,e){if(void 0!==t)return R(x(e)).parse(t)}function j(t,e){var r=R(A(e)),n="^"+r.parts.map((function(t){return"("+t.regex+")"})).join("")+"$",i=new RegExp(n,"i").exec(t);if(null!==i){for(var a=161,o=130,s=84,c=72,u=23,l=47,h={},f=1;f<i.length;f++){var d=r.parts[f-1];d.parse&&(h[d.component]=d.parse(i[f]))}if(0===Object.getOwnPropertyNames(h).length)return;var p=0,g=function(t){p<<=1,p+=t?1:0},v=function(t){return!(~t&p||!(t&p))};"YXMxWwdD".split("").forEach((function(t){return g(h[t])}));var y=!v(a)&&v(o),m=v(s),b=!m&&v(c);p=0,"PHhmsf".split("").forEach((function(t){return g(h[t])}));var x=!v(u)&&v(l),w=(y?"YD":m?"XxwF":b?"XWF":"YMD")+(x?"Phmsf":"Hmsf"),_=this.environment.timestamp,k=!1,S=!1;if(w.split("").forEach((function(t){if(void 0===h[t])k?(h[t]=-1!=="MDd".indexOf(t)?1:0,S=!0):h[t]=P(_,t);else if(k=!0,S)throw{code:"D3136"}})),h.M>0?h.M-=1:h.M=0,y){var E=Date.UTC(h.Y,0),M=1e3*(h.d-1)*60*60*24,T=new Date(E+M);h.M=T.getUTCMonth(),h.D=T.getUTCDate()}if(m)throw{code:"D3136"};if(b)throw{code:"D3136"};x&&(h.H=12===h.h?0:h.h,1===h.P&&(h.H+=12));var O=Date.UTC(h.Y,h.M,h.D,h.H,h.m,h.s,h.f);return(h.Z||h.z)&&(O-=60*(h.Z||h.z)*1e3),O}}var D=new RegExp("^\\d{4}(-[01]\\d)*(-[0-3]\\d)*(T[0-2]\\d:[0-5]\\d:[0-5]\\d)*(\\.\\d+)?([+-][0-2]\\d:?[0-5]\\d|Z)?$");function L(t,e){if(void 0!==t){if(void 0===e){if(!D.test(t))throw{stack:(new Error).stack,code:"D3110",value:t};return Date.parse(t)}return j.call(this,t,e)}}function z(t,e,r){if(void 0!==t)return I.call(this,t,e,r)}return{formatInteger:g,parseInteger:C,fromMillis:z,toMillis:L}}();e.exports=i},{"./utils":6}],2:[function(e,r,n){(function(t){(function(){function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var i=e("./utils"),a=function(){var e=regeneratorRuntime.mark(N),r=regeneratorRuntime.mark(U),a=regeneratorRuntime.mark(Y),o=regeneratorRuntime.mark(G),s=regeneratorRuntime.mark(K),c=regeneratorRuntime.mark(ht),u=regeneratorRuntime.mark(ft),l=regeneratorRuntime.mark(dt),h=regeneratorRuntime.mark(gt),f=regeneratorRuntime.mark(_t),d=regeneratorRuntime.mark(Mt),p=regeneratorRuntime.mark(Ot),g=i.isNumeric,v=i.isArrayOfStrings,y=i.isArrayOfNumbers,m=i.createSequence,b=i.isSequence,x=i.isFunction,w=i.isLambda,A=i.isIterable,_=i.getFunctionArity,k=i.isDeepEqual,S=i.stringToArray;function E(t){if(void 0!==t){var e=0;return t.forEach((function(t){e+=t})),e}}function M(t){return void 0===t?0:t.length}function T(t){if(void 0!==t&&0!==t.length)return Math.max.apply(Math,t)}function P(t){if(void 0!==t&&0!==t.length)return Math.min.apply(Math,t)}function O(t){if(void 0!==t&&0!==t.length){var e=0;return t.forEach((function(t){e+=t})),e/t.length}}function I(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(void 0!==t){var r;if("string"==typeof t)r=t;else if(x(t))r="";else{if("number"==typeof t&&!isFinite(t))throw{code:"D3001",value:t,stack:(new Error).stack};var n=e?2:0;Array.isArray(t)&&t.outerWrapper&&(t=t[0]),r=JSON.stringify(t,(function(t,e){return null!=e&&e.toPrecision&&g(e)?Number(e.toPrecision(15)):e&&x(e)?"":e}),n)}return r}}function R(t,e,r){if(void 0!==t){var n=S(t),i=n.length;if(i+e<0&&(e=0),void 0!==r){if(r<=0)return"";var a=e>=0?e+r:i+e+r;return n.slice(e,a).join("")}return n.slice(e).join("")}}function C(t,e){if(void 0!==t){var r=t.indexOf(e);return r>-1?t.substr(0,r):t}}function j(t,e){if(void 0!==t){var r=t.indexOf(e);return r>-1?t.substr(r+e.length):t}}function D(t){if(void 0!==t)return t.toLowerCase()}function L(t){if(void 0!==t)return t.toUpperCase()}function z(t){if(void 0!==t)return S(t).length}function B(t){if(void 0!==t){var e=t.replace(/[ \t\n\r]+/gm," ");return" "===e.charAt(0)&&(e=e.substring(1))," "===e.charAt(e.length-1)&&(e=e.substring(0,e.length-1)),e}}function F(t,e,r){if(void 0!==t){var n;void 0!==r&&0!==r.length||(r=" ");var i=Math.abs(e)-z(t);if(i>0){var a=new Array(i+1).join(r);r.length>1&&(a=R(a,0,i)),n=e>0?t+a:a+t}else n=t;return n}}function N(t,r){var n;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(n=t.apply(this,[r]),!A(n)){e.next=4;break}return e.delegateYield(n,"t0",3);case 3:n=e.t0;case 4:if(!n||"number"==typeof n.start||"number"===n.end||Array.isArray(n.groups)||x(n.next)){e.next=6;break}throw{code:"T1010",stack:(new Error).stack};case 6:return e.abrupt("return",n);case 7:case"end":return e.stop()}}),e,this)}function U(t,e){var n,i;return regeneratorRuntime.wrap((function(r){for(;;)switch(r.prev=r.next){case 0:if(void 0!==t){r.next=2;break}return r.abrupt("return",void 0);case 2:if("string"!=typeof e){r.next=6;break}n=-1!==t.indexOf(e),r.next=9;break;case 6:return r.delegateYield(N(e,t),"t0",7);case 7:i=r.t0,n=void 0!==i;case 9:return r.abrupt("return",n);case 10:case"end":return r.stop()}}),r)}function Y(t,e,r){var n,i,o;return regeneratorRuntime.wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(void 0!==t){a.next=2;break}return a.abrupt("return",void 0);case 2:if(!(r<0)){a.next=4;break}throw{stack:(new Error).stack,value:r,code:"D3040",index:3};case 4:if(n=m(),!(void 0===r||r>0)){a.next=17;break}return i=0,a.delegateYield(N(e,t),"t0",8);case 8:if(void 0===(o=a.t0)){a.next=17;break}case 10:if(void 0===o||!(void 0===r||i<r)){a.next=17;break}return n.push({match:o.match,index:o.start,groups:o.groups}),a.delegateYield(N(o.next),"t1",13);case 13:o=a.t1,i++,a.next=10;break;case 17:return a.abrupt("return",n);case 18:case"end":return a.stop()}}),a)}function G(t,e,r,n){var i,a,s,c,u,l,h,f;return regeneratorRuntime.wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:if(i=this,""!==e){o.next=5;break}throw{code:"D3010",stack:(new Error).stack,value:e,index:2};case 5:if(!(n<0)){o.next=7;break}throw{code:"D3011",stack:(new Error).stack,value:n,index:4};case 7:if(a="string"==typeof r?function(t){for(var e="",n=0,i=r.indexOf("$",n);-1!==i&&n<r.length;){e+=r.substring(n,i),n=i+1;var a=r.charAt(n);if("$"===a)e+="$",n++;else if("0"===a)e+=t.match,n++;else{var o;if(o=0===t.groups.length?1:Math.floor(Math.log(t.groups.length)*Math.LOG10E)+1,i=parseInt(r.substring(n,n+o),10),o>1&&i>t.groups.length&&(i=parseInt(r.substring(n,n+o-1),10)),isNaN(i))e+="$";else{if(t.groups.length>0){var s=t.groups[i-1];void 0!==s&&(e+=s)}n+=i.toString().length}}i=r.indexOf("$",n)}return e+=r.substring(n)}:r,s="",c=0,!(void 0===n||n>0)){o.next=44;break}if(u=0,"string"!=typeof e){o.next=18;break}for(l=t.indexOf(e,c);-1!==l&&(void 0===n||u<n);)s+=t.substring(c,l),s+=r,c=l+e.length,u++,l=t.indexOf(e,c);s+=t.substring(c),o.next=42;break;case 18:return o.delegateYield(N(e,t),"t0",19);case 19:if(void 0===(h=o.t0)){o.next=41;break}case 21:if(void 0===h||!(void 0===n||u<n)){o.next=38;break}if(s+=t.substring(c,h.start),f=a.apply(i,[h]),!A(f)){o.next=27;break}return o.delegateYield(f,"t1",26);case 26:f=o.t1;case 27:if("string"!=typeof f){o.next=31;break}s+=f,o.next=32;break;case 31:throw{code:"D3012",stack:(new Error).stack,value:f};case 32:return c=h.start+h.match.length,u++,o.delegateYield(N(h.next),"t2",35);case 35:h=o.t2,o.next=21;break;case 38:s+=t.substring(c),o.next=42;break;case 41:s=t;case 42:o.next=45;break;case 44:s=t;case 45:return o.abrupt("return",s);case 46:case"end":return o.stop()}}),o,this)}function W(e){if(void 0!==e){var r="undefined"!=typeof window?window.btoa:function(e){return new t.Buffer.from(e,"binary").toString("base64")};return r(e)}}function H(e){if(void 0!==e){var r="undefined"!=typeof window?window.atob:function(e){return new t.Buffer.from(e,"base64").toString("binary")};return r(e)}}function q(t){if(void 0!==t){var e;try{e=encodeURIComponent(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"encodeUrlComponent"}}return e}}function X(t){if(void 0!==t){var e;try{e=encodeURI(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"encodeUrl"}}return e}}function V(t){if(void 0!==t){var e;try{e=decodeURIComponent(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"decodeUrlComponent"}}return e}}function Q(t){if(void 0!==t){var e;try{e=decodeURI(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"decodeUrl"}}return e}}function K(t,e,r){var n,i,a,o;return regeneratorRuntime.wrap((function(s){for(;;)switch(s.prev=s.next){case 0:if(void 0!==t){s.next=2;break}return s.abrupt("return",void 0);case 2:if(!(r<0)){s.next=4;break}throw{code:"D3020",stack:(new Error).stack,value:r,index:3};case 4:if(n=[],!(void 0===r||r>0)){s.next=27;break}if("string"!=typeof e){s.next=10;break}n=t.split(e,r),s.next=27;break;case 10:return i=0,s.delegateYield(N(e,t),"t0",12);case 12:if(void 0===(a=s.t0)){s.next=26;break}o=0;case 15:if(void 0===a||!(void 0===r||i<r)){s.next=23;break}return n.push(t.substring(o,a.start)),o=a.end,s.delegateYield(N(a.next),"t1",19);case 19:a=s.t1,i++,s.next=15;break;case 23:(void 0===r||i<r)&&n.push(t.substring(o)),s.next=27;break;case 26:n.push(t);case 27:return s.abrupt("return",n);case 28:case"end":return s.stop()}}),s)}function J(t,e){if(void 0!==t)return void 0===e&&(e=""),t.join(e)}function Z(t,e,r){if(void 0!==t){var n={"decimal-separator":".","grouping-separator":",","exponent-separator":"e",infinity:"Infinity","minus-sign":"-",NaN:"NaN",percent:"%","per-mille":"‰","zero-digit":"0",digit:"#","pattern-separator":";"};void 0!==r&&Object.keys(r).forEach((function(t){n[t]=r[t]}));for(var i=[],a=n["zero-digit"].charCodeAt(0),o=a;o<a+10;o++)i.push(String.fromCharCode(o));var s=i.concat([n["decimal-separator"],n["exponent-separator"],n["grouping-separator"],n.digit,n["pattern-separator"]]),c=e.split(n["pattern-separator"]);if(c.length>2)throw{code:"D3080",stack:(new Error).stack};var u=function(t){var e,r,i,a,o=function(){for(var e,r=0;r<t.length;r++)if(e=t.charAt(r),-1!==s.indexOf(e)&&e!==n["exponent-separator"])return t.substring(0,r)}(),c=function(){for(var e,r=t.length-1;r>=0;r--)if(e=t.charAt(r),-1!==s.indexOf(e)&&e!==n["exponent-separator"])return t.substring(r+1)}(),u=t.substring(o.length,t.length-c.length),l=t.indexOf(n["exponent-separator"],o.length);-1===l||l>t.length-c.length?(e=u,r=void 0):(e=u.substring(0,l),r=u.substring(l+1));var h=e.indexOf(n["decimal-separator"]);return-1===h?(i=e,a=c):(i=e.substring(0,h),a=e.substring(h+1)),{prefix:o,suffix:c,activePart:u,mantissaPart:e,exponentPart:r,integerPart:i,fractionalPart:a,subpicture:t}},l=function(t){var e,r,a=t.subpicture,o=a.indexOf(n["decimal-separator"]);o!==a.lastIndexOf(n["decimal-separator"])&&(e="D3081"),a.indexOf(n.percent)!==a.lastIndexOf(n.percent)&&(e="D3082"),a.indexOf(n["per-mille"])!==a.lastIndexOf(n["per-mille"])&&(e="D3083"),-1!==a.indexOf(n.percent)&&-1!==a.indexOf(n["per-mille"])&&(e="D3084");var c=!1;for(r=0;r<t.mantissaPart.length;r++){var u=t.mantissaPart.charAt(r);if(-1!==i.indexOf(u)||u===n.digit){c=!0;break}}c||(e="D3085"),-1!==t.activePart.split("").map((function(t){return-1===s.indexOf(t)?"p":"a"})).join("").indexOf("p")&&(e="D3086"),-1!==o?a.charAt(o-1)!==n["grouping-separator"]&&a.charAt(o+1)!==n["grouping-separator"]||(e="D3087"):t.integerPart.charAt(t.integerPart.length-1)===n["grouping-separator"]&&(e="D3088"),-1!==a.indexOf(n["grouping-separator"]+n["grouping-separator"])&&(e="D3089");var l=t.integerPart.indexOf(n.digit);-1!==l&&t.integerPart.substring(0,l).split("").filter((function(t){return i.indexOf(t)>-1})).length>0&&(e="D3090"),-1!==(l=t.fractionalPart.lastIndexOf(n.digit))&&t.fractionalPart.substring(l).split("").filter((function(t){return i.indexOf(t)>-1})).length>0&&(e="D3091");var h="string"==typeof t.exponentPart;if(h&&t.exponentPart.length>0&&(-1!==a.indexOf(n.percent)||-1!==a.indexOf(n["per-mille"]))&&(e="D3092"),h&&(0===t.exponentPart.length||t.exponentPart.split("").filter((function(t){return-1===i.indexOf(t)})).length>0)&&(e="D3093"),e)throw{code:e,stack:(new Error).stack}},h=function(t){var e=function(e,r){for(var a=[],o=e.indexOf(n["grouping-separator"]);-1!==o;){var s=(r?e.substring(0,o):e.substring(o)).split("").filter((function(t){return-1!==i.indexOf(t)||t===n.digit})).length;a.push(s),o=t.integerPart.indexOf(n["grouping-separator"],o+1)}return a},r=e(t.integerPart),a=function(t){if(0===t.length)return 0;for(var e=function t(e,r){return 0===r?e:t(r,e%r)},r=t.reduce(e),n=1;n<=t.length;n++)if(-1===t.indexOf(n*r))return 0;return r},o=a(r),s=e(t.fractionalPart,!0),c=t.integerPart.split("").filter((function(t){return-1!==i.indexOf(t)})).length,u=c,l=t.fractionalPart.split(""),h=l.filter((function(t){return-1!==i.indexOf(t)})).length,f=l.filter((function(t){return-1!==i.indexOf(t)||t===n.digit})).length,d="string"==typeof t.exponentPart;0===c&&0===f&&(d?(h=1,f=1):c=1),d&&0===c&&-1!==t.integerPart.indexOf(n.digit)&&(c=1),0===c&&0===h&&(h=1);var p=0;return d&&(p=t.exponentPart.split("").filter((function(t){return-1!==i.indexOf(t)})).length),{integerPartGroupingPositions:r,regularGrouping:o,minimumIntegerPartSize:c,scalingFactor:u,prefix:t.prefix,fractionalPartGroupingPositions:s,minimumFactionalPartSize:h,maximumFactionalPartSize:f,minimumExponentSize:p,suffix:t.suffix,picture:t.subpicture}},f=c.map(u);f.forEach(l);var d,p,g,v,y=f.map(h),m=n["minus-sign"],b=n["zero-digit"],x=n["decimal-separator"],w=n["grouping-separator"];if(1===y.length&&(y.push(JSON.parse(JSON.stringify(y[0]))),y[1].prefix=m+y[1].prefix),p=-1!==(d=t>=0?y[0]:y[1]).picture.indexOf(n.percent)?100*t:-1!==d.picture.indexOf(n["per-mille"])?1e3*t:t,0===d.minimumExponentSize)g=p;else{var A=Math.pow(10,d.scalingFactor),_=Math.pow(10,d.scalingFactor-1);for(g=p,v=0;g<_;)g*=10,v-=1;for(;g>A;)g/=10,v+=1}var k=function(t,e){var r=Math.abs(t).toFixed(e);return"0"!==b&&(r=r.split("").map((function(t){return t>="0"&&t<="9"?i[t.charCodeAt(0)-48]:t})).join("")),r},S=k(it(g,d.maximumFactionalPartSize),d.maximumFactionalPartSize),E=S.indexOf(".");for(-1===E?S+=x:S=S.replace(".",x);S.charAt(0)===b;)S=S.substring(1);for(;S.charAt(S.length-1)===b;)S=S.substring(0,S.length-1);E=S.indexOf(x);var M=d.minimumIntegerPartSize-E,T=d.minimumFactionalPartSize-(S.length-E-1);if(S=(M>0?new Array(M+1).join(b):"")+S,S+=T>0?new Array(T+1).join(b):"",E=S.indexOf(x),d.regularGrouping>0)for(var P=Math.floor((E-1)/d.regularGrouping),O=1;O<=P;O++)S=[S.slice(0,E-O*d.regularGrouping),w,S.slice(E-O*d.regularGrouping)].join("");else d.integerPartGroupingPositions.forEach((function(t){S=[S.slice(0,E-t),w,S.slice(E-t)].join(""),E++}));if(E=S.indexOf(x),d.fractionalPartGroupingPositions.forEach((function(t){S=[S.slice(0,t+E+1),w,S.slice(t+E+1)].join("")})),E=S.indexOf(x),-1!==d.picture.indexOf(x)&&E!==S.length-1||(S=S.substring(0,S.length-1)),void 0!==v){var I=k(v,0);(M=d.minimumExponentSize-I.length)>0&&(I=new Array(M+1).join(b)+I),S=S+n["exponent-separator"]+(v<0?m:"")+I}return S=d.prefix+S+d.suffix}}function $(t,e){if(void 0!==t){if(t=it(t),(e=void 0===e?10:it(e))<2||e>36)throw{code:"D3100",stack:(new Error).stack,value:e};return t.toString(e)}}function tt(t){var e;if(void 0!==t){if("number"==typeof t)e=t;else if("string"==typeof t&&/^-?[0-9]+(\.[0-9]+)?([Ee][-+]?[0-9]+)?$/.test(t)&&!isNaN(parseFloat(t))&&isFinite(t))e=parseFloat(t);else if(!0===t)e=1;else{if(!1!==t)throw{code:"D3030",value:t,stack:(new Error).stack,index:1};e=0}return e}}function et(t){if(void 0!==t)return Math.abs(t)}function rt(t){if(void 0!==t)return Math.floor(t)}function nt(t){if(void 0!==t)return Math.ceil(t)}function it(t,e){var r;if(void 0!==t){if(e){var n=t.toString().split("e");t=+(n[0]+"e"+(n[1]?+n[1]+e:e))}var i=(r=Math.round(t))-t;return.5===Math.abs(i)&&1===Math.abs(r%2)&&(r-=1),e&&(n=r.toString().split("e"),r=+(n[0]+"e"+(n[1]?+n[1]-e:-e))),Object.is(r,-0)&&(r=0),r}}function at(t){if(void 0!==t){if(t<0)throw{stack:(new Error).stack,code:"D3060",index:1,value:t};return Math.sqrt(t)}}function ot(t,e){var r;if(void 0!==t){if(r=Math.pow(t,e),!isFinite(r))throw{stack:(new Error).stack,code:"D3061",index:1,value:t,exp:e};return r}}function st(){return Math.random()}function ct(t){if(void 0!==t){var e=!1;return Array.isArray(t)?1===t.length?e=ct(t[0]):t.length>1&&(e=t.filter((function(t){return ct(t)})).length>0):"string"==typeof t?t.length>0&&(e=!0):g(t)?0!==t&&(e=!0):null!==t&&"object"===n(t)?Object.keys(t).length>0&&(e=!0):"boolean"==typeof t&&!0===t&&(e=!0),e}}function ut(t){if(void 0!==t)return!ct(t)}function lt(t,e,r,n){var i=[e],a=_(t);return a>=2&&i.push(r),a>=3&&i.push(n),i}function ht(t,e){var r,n,i,a;return regeneratorRuntime.wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:r=m(),n=0;case 4:if(!(n<t.length)){o.next=12;break}return i=lt(e,t[n],n,t),o.delegateYield(e.apply(this,i),"t0",7);case 7:void 0!==(a=o.t0)&&r.push(a);case 9:n++,o.next=4;break;case 12:return o.abrupt("return",r);case 13:case"end":return o.stop()}}),c,this)}function ft(t,e){var r,n,i,a;return regeneratorRuntime.wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:r=m(),n=0;case 4:if(!(n<t.length)){o.next=13;break}return i=t[n],a=lt(e,i,n,t),o.delegateYield(e.apply(this,a),"t0",8);case 8:ct(o.t0)&&r.push(i);case 10:n++,o.next=4;break;case 13:return o.abrupt("return",r);case 14:case"end":return o.stop()}}),u,this)}function dt(t,e){var r,n,i,a,o,s,c;return regeneratorRuntime.wrap((function(u){for(;;)switch(u.prev=u.next){case 0:if(void 0!==t){u.next=2;break}return u.abrupt("return",void 0);case 2:r=!1,i=0;case 4:if(!(i<t.length)){u.next=22;break}if(a=t[i],o=!0,void 0===e){u.next=12;break}return s=lt(e,a,i,t),u.delegateYield(e.apply(this,s),"t0",10);case 10:c=u.t0,o=ct(c);case 12:if(!o){u.next=19;break}if(r){u.next=18;break}n=a,r=!0,u.next=19;break;case 18:throw{stack:(new Error).stack,code:"D3138",index:i};case 19:i++,u.next=4;break;case 22:if(r){u.next=24;break}throw{stack:(new Error).stack,code:"D3139"};case 24:return u.abrupt("return",n);case 25:case"end":return u.stop()}}),l,this)}function pt(){for(var t=[],e=Array.prototype.slice.call(arguments),r=Math.min.apply(Math,e.map((function(t){return Array.isArray(t)?t.length:0}))),n=0;n<r;n++){var i=e.map((function(t){return t[n]}));t.push(i)}return t}function gt(t,e,r){var n,i,a,o;return regeneratorRuntime.wrap((function(s){for(;;)switch(s.prev=s.next){case 0:if(void 0!==t){s.next=2;break}return s.abrupt("return",void 0);case 2:if(!((i=_(e))<2)){s.next=5;break}throw{stack:(new Error).stack,code:"D3050",index:1};case 5:void 0===r&&t.length>0?(n=t[0],a=1):(n=r,a=0);case 6:if(!(a<t.length)){s.next=15;break}return o=[n,t[a]],i>=3&&o.push(a),i>=4&&o.push(t),s.delegateYield(e.apply(this,o),"t0",11);case 11:n=s.t0,a++,s.next=6;break;case 15:return s.abrupt("return",n);case 16:case"end":return s.stop()}}),h,this)}function vt(t){var e=m();if(Array.isArray(t)){var r={};t.forEach((function(t){vt(t).forEach((function(t){r[t]=!0}))})),e=vt(r)}else null===t||"object"!==n(t)||w(t)||Object.keys(t).forEach((function(t){return e.push(t)}));return e}function yt(t,e){var r;if(Array.isArray(t)){r=m();for(var i=0;i<t.length;i++){var a=yt(t[i],e);void 0!==a&&(Array.isArray(a)?a.forEach((function(t){return r.push(t)})):r.push(a))}}else null!==t&&"object"===n(t)&&(r=t[e]);return r}function mt(t,e){return void 0===t?e:void 0===e?t:(Array.isArray(t)||(t=m(t)),Array.isArray(e)||(e=[e]),t.concat(e))}function bt(t){return void 0!==t}function xt(t){var e=m();if(Array.isArray(t))t.forEach((function(t){e=mt(e,xt(t))}));else if(null===t||"object"!==n(t)||w(t))e=t;else for(var r in t){var i={};i[r]=t[r],e.push(i)}return e}function wt(t){if(void 0!==t){var e={};return t.forEach((function(t){for(var r in t)e[r]=t[r]})),e}}function At(t){if(void 0!==t){if(t.length<=1)return t;for(var e=t.length,r=new Array(e),n=0;n<e;n++)r[e-n-1]=t[n];return r}}function _t(t,e){var r,n,i,a;return regeneratorRuntime.wrap((function(o){for(;;)switch(o.prev=o.next){case 0:r=m(),o.t0=regeneratorRuntime.keys(t);case 2:if((o.t1=o.t0()).done){o.next=10;break}return n=o.t1.value,i=lt(e,t[n],n,t),o.delegateYield(e.apply(this,i),"t2",6);case 6:void 0!==(a=o.t2)&&r.push(a),o.next=2;break;case 10:return o.abrupt("return",r);case 11:case"end":return o.stop()}}),f,this)}function kt(t){throw{code:"D3137",stack:(new Error).stack,message:t||"$error() function evaluated"}}function St(t,e){if(!t)throw{code:"D3141",stack:(new Error).stack,message:e||"$assert() statement failed"}}function Et(t){if(void 0!==t)return null===t?"null":g(t)?"number":"string"==typeof t?"string":"boolean"==typeof t?"boolean":Array.isArray(t)?"array":x(t)?"function":"object"}function Mt(t,e){var r,n,i,a;return regeneratorRuntime.wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:if(!(t.length<=1)){o.next=4;break}return o.abrupt("return",t);case 4:if(void 0!==e){o.next=10;break}if(y(t)||v(t)){o.next=7;break}throw{stack:(new Error).stack,code:"D3070",index:1};case 7:r=regeneratorRuntime.mark((function t(e,r){return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.abrupt("return",e>r);case 1:case"end":return t.stop()}}),t)})),o.next=11;break;case 10:r=e;case 11:return n=regeneratorRuntime.mark((function t(e,n){var i,a;return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return i=regeneratorRuntime.mark((function t(e,n,i){return regeneratorRuntime.wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(0!==n.length){a.next=4;break}Array.prototype.push.apply(e,i),a.next=16;break;case 4:if(0!==i.length){a.next=8;break}Array.prototype.push.apply(e,n),a.next=16;break;case 8:return a.delegateYield(r(n[0],i[0]),"t0",9);case 9:if(!a.t0){a.next=14;break}return e.push(i[0]),a.delegateYield(t(e,n,i.slice(1)),"t1",12);case 12:a.next=16;break;case 14:return e.push(n[0]),a.delegateYield(t(e,n.slice(1),i),"t2",16);case 16:case"end":return a.stop()}}),t)})),a=[],t.delegateYield(i(a,e,n),"t0",3);case 3:return t.abrupt("return",a);case 4:case"end":return t.stop()}}),t)})),i=regeneratorRuntime.mark((function t(e){var r,i,a;return regeneratorRuntime.wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(Array.isArray(e)&&!(e.length<=1)){o.next=4;break}return o.abrupt("return",e);case 4:return r=Math.floor(e.length/2),i=e.slice(0,r),a=e.slice(r),o.delegateYield(t(i),"t0",8);case 8:return i=o.t0,o.delegateYield(t(a),"t1",10);case 10:return a=o.t1,o.delegateYield(n(i,a),"t2",12);case 12:return o.abrupt("return",o.t2);case 13:case"end":return o.stop()}}),t)})),o.delegateYield(i(t),"t0",14);case 14:return a=o.t0,o.abrupt("return",a);case 16:case"end":return o.stop()}}),d)}function Tt(t){if(void 0!==t){if(t.length<=1)return t;for(var e=new Array(t.length),r=0;r<t.length;r++){var n=Math.floor(Math.random()*(r+1));r!==n&&(e[r]=e[n]),e[n]=t[r]}return e}}function Pt(t){if(void 0!==t){if(!Array.isArray(t)||t.length<=1)return t;for(var e=b(t)?m():[],r=0;r<t.length;r++){for(var n=t[r],i=!1,a=0;a<e.length;a++)if(k(n,e[a])){i=!0;break}i||e.push(n)}return e}}function Ot(t,e){var r,n,i,a;return regeneratorRuntime.wrap((function(o){for(;;)switch(o.prev=o.next){case 0:r={},o.t0=regeneratorRuntime.keys(t);case 2:if((o.t1=o.t0()).done){o.next=11;break}return n=o.t1.value,i=t[n],a=lt(e,i,n,t),o.delegateYield(e.apply(this,a),"t2",7);case 7:ct(o.t2)&&(r[n]=i),o.next=2;break;case 11:return 0===Object.keys(r).length&&(r=void 0),o.abrupt("return",r);case 13:case"end":return o.stop()}}),p,this)}return{sum:E,count:M,max:T,min:P,average:O,string:I,substring:R,substringBefore:C,substringAfter:j,lowercase:D,uppercase:L,length:z,trim:B,pad:F,match:Y,contains:U,replace:G,split:K,join:J,formatNumber:Z,formatBase:$,number:tt,floor:rt,ceil:nt,round:it,abs:et,sqrt:at,power:ot,random:st,boolean:ct,not:ut,map:ht,zip:pt,filter:ft,single:dt,foldLeft:gt,sift:Ot,keys:vt,lookup:yt,append:mt,exists:bt,spread:xt,merge:wt,reverse:At,each:_t,error:kt,assert:St,type:Et,sort:Mt,shuffle:Tt,distinct:Pt,base64encode:W,base64decode:H,encodeUrlComponent:q,encodeUrl:X,decodeUrlComponent:V,decodeUrl:Q}}();r.exports=a}).call(this)}).call(this,void 0!==t?t:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./utils":6}],3:[function(t,e,r){function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var i=t("./datetime"),a=t("./functions"),o=t("./utils"),s=t("./parser"),c=t("./signature"),u=function(){var t=regeneratorRuntime.mark(F),e=regeneratorRuntime.mark(N),r=regeneratorRuntime.mark(Y),u=regeneratorRuntime.mark(G),l=regeneratorRuntime.mark(W),h=regeneratorRuntime.mark(H),f=regeneratorRuntime.mark(q),d=regeneratorRuntime.mark(X),p=regeneratorRuntime.mark(it),g=regeneratorRuntime.mark(st),v=regeneratorRuntime.mark(lt),y=regeneratorRuntime.mark(ht),m=regeneratorRuntime.mark(ft),b=regeneratorRuntime.mark(gt),x=regeneratorRuntime.mark(mt),w=regeneratorRuntime.mark(bt),A=regeneratorRuntime.mark(xt),_=regeneratorRuntime.mark(wt),k=regeneratorRuntime.mark(_t),S=regeneratorRuntime.mark(St),E=regeneratorRuntime.mark(Tt),M=regeneratorRuntime.mark(It),T=o.isNumeric,P=o.isArrayOfStrings,O=o.isArrayOfNumbers,I=o.createSequence,R=o.isSequence,C=o.isFunction,j=o.isLambda,D=o.isIterable,L=o.getFunctionArity,z=o.isDeepEqual,B=Ct(null);function F(e,r,n){var i,a,o,s;return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:(a=n.lookup("__evaluate_entry"))&&a(e,r,n),t.t0=e.type,t.next="path"===t.t0?5:"binary"===t.t0?8:"unary"===t.t0?11:"name"===t.t0?14:"string"===t.t0||"number"===t.t0||"value"===t.t0?16:"wildcard"===t.t0?18:"descendant"===t.t0?20:"parent"===t.t0?22:"condition"===t.t0?24:"block"===t.t0?27:"bind"===t.t0?30:"regex"===t.t0?33:"function"===t.t0?35:"variable"===t.t0?38:"lambda"===t.t0?40:"partial"===t.t0?42:"apply"===t.t0?45:"transform"===t.t0?48:50;break;case 5:return t.delegateYield(N(e,r,n),"t1",6);case 6:return i=t.t1,t.abrupt("break",50);case 8:return t.delegateYield(q(e,r,n),"t2",9);case 9:return i=t.t2,t.abrupt("break",50);case 11:return t.delegateYield(X(e,r,n),"t3",12);case 12:return i=t.t3,t.abrupt("break",50);case 14:return i=V(e,r),t.abrupt("break",50);case 16:return i=Q(e),t.abrupt("break",50);case 18:return i=K(e,r),t.abrupt("break",50);case 20:return i=Z(e,r),t.abrupt("break",50);case 22:return i=n.lookup(e.slot.label),t.abrupt("break",50);case 24:return t.delegateYield(ht(e,r,n),"t4",25);case 25:return i=t.t4,t.abrupt("break",50);case 27:return t.delegateYield(ft(e,r,n),"t5",28);case 28:return i=t.t5,t.abrupt("break",50);case 30:return t.delegateYield(lt(e,r,n),"t6",31);case 31:return i=t.t6,t.abrupt("break",50);case 33:return i=dt(e),t.abrupt("break",50);case 35:return t.delegateYield(bt(e,r,n),"t7",36);case 36:return i=t.t7,t.abrupt("break",50);case 38:return i=pt(e,r,n),t.abrupt("break",50);case 40:return i=At(e,r,n),t.abrupt("break",50);case 42:return t.delegateYield(_t(e,r,n),"t8",43);case 43:return i=t.t8,t.abrupt("break",50);case 45:return t.delegateYield(mt(e,r,n),"t9",46);case 46:return i=t.t9,t.abrupt("break",50);case 48:return i=vt(e,r,n),t.abrupt("break",50);case 50:if(!n.async||null!=i&&"function"==typeof i.then||(i=Promise.resolve(i)),!n.async||"function"!=typeof i.then||!e.nextFunction||"function"!=typeof i[e.nextFunction]){t.next=54;break}t.next=57;break;case 54:return t.next=56,i;case 56:i=t.sent;case 57:if(!Object.prototype.hasOwnProperty.call(e,"predicate")){t.next=65;break}o=0;case 59:if(!(o<e.predicate.length)){t.next=65;break}return t.delegateYield(H(e.predicate[o].expr,i,n),"t10",61);case 61:i=t.t10;case 62:o++,t.next=59;break;case 65:if("path"===e.type||!Object.prototype.hasOwnProperty.call(e,"group")){t.next=68;break}return t.delegateYield(st(e.group,i,n),"t11",67);case 67:i=t.t11;case 68:return(s=n.lookup("__evaluate_exit"))&&s(e,r,n,i),i&&R(i)&&!i.tupleStream&&(e.keepArray&&(i.keepSingleton=!0),0===i.length?i=void 0:1===i.length&&(i=i.keepSingleton?i:i[0])),t.abrupt("return",i);case 72:case"end":return t.stop()}}),t)}function N(t,r,n){var i,a,o,s,c,u;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:i=Array.isArray(r)&&"variable"!==t.steps[0].type?r:I(r),o=!1,s=void 0,c=0;case 4:if(!(c<t.steps.length)){e.next=25;break}if((u=t.steps[c]).tuple&&(o=!0),0!==c||!u.consarray){e.next=12;break}return e.delegateYield(F(u,i,n),"t0",9);case 9:a=e.t0,e.next=19;break;case 12:if(!o){e.next=17;break}return e.delegateYield(W(u,i,s,n),"t1",14);case 14:s=e.t1,e.next=19;break;case 17:return e.delegateYield(Y(u,i,n,c===t.steps.length-1),"t2",18);case 18:a=e.t2;case 19:if(o||void 0!==a&&0!==a.length){e.next=21;break}return e.abrupt("break",25);case 21:void 0===u.focus&&(i=a);case 22:c++,e.next=4;break;case 25:if(o)if(t.tuple)a=s;else for(a=I(),c=0;c<s.length;c++)a.push(s[c]["@"]);if(t.keepSingletonArray&&(Array.isArray(a)&&a.cons&&!a.sequence&&(a=I(a)),a.keepSingleton=!0),!t.hasOwnProperty("group")){e.next=30;break}return e.delegateYield(st(t.group,o?s:a,n),"t3",29);case 29:a=e.t3;case 30:return e.abrupt("return",a);case 31:case"end":return e.stop()}}),e)}function U(t,e){var r=Ct(t);for(var n in e)r.bind(n,e[n]);return r}function Y(t,e,n,i){var a,o,s,c,u;return regeneratorRuntime.wrap((function(r){for(;;)switch(r.prev=r.next){case 0:if("sort"!==t.type){r.next=7;break}return r.delegateYield(gt(t,e,n),"t0",2);case 2:if(a=r.t0,!t.stages){r.next=6;break}return r.delegateYield(G(t.stages,a,n),"t1",5);case 5:a=r.t1;case 6:return r.abrupt("return",a);case 7:a=I(),o=0;case 9:if(!(o<e.length)){r.next=24;break}return r.delegateYield(F(t,e[o],n),"t2",11);case 11:if(s=r.t2,!t.stages){r.next=20;break}c=0;case 14:if(!(c<t.stages.length)){r.next=20;break}return r.delegateYield(H(t.stages[c].expr,s,n),"t3",16);case 16:s=r.t3;case 17:c++,r.next=14;break;case 20:void 0!==s&&a.push(s);case 21:o++,r.next=9;break;case 24:return u=I(),i&&1===a.length&&Array.isArray(a[0])&&!R(a[0])?u=a[0]:a.forEach((function(t){!Array.isArray(t)||t.cons?u.push(t):t.forEach((function(t){return u.push(t)}))})),r.abrupt("return",u);case 27:case"end":return r.stop()}}),r)}function G(t,e,r){var n,i,a,o;return regeneratorRuntime.wrap((function(s){for(;;)switch(s.prev=s.next){case 0:n=e,i=0;case 2:if(!(i<t.length)){s.next=15;break}a=t[i],s.t0=a.type,s.next="filter"===s.t0?7:"index"===s.t0?10:12;break;case 7:return s.delegateYield(H(a.expr,n,r),"t1",8);case 8:return n=s.t1,s.abrupt("break",12);case 10:for(o=0;o<n.length;o++)n[o][a.value]=o;return s.abrupt("break",12);case 12:i++,s.next=2;break;case 15:return s.abrupt("return",n);case 16:case"end":return s.stop()}}),u)}function W(t,e,r,n){var i,a,o,s,c,u,h,f;return regeneratorRuntime.wrap((function(l){for(;;)switch(l.prev=l.next){case 0:if("sort"!==t.type){l.next=15;break}if(!r){l.next=6;break}return l.delegateYield(gt(t,r,n),"t0",3);case 3:i=l.t0,l.next=11;break;case 6:return l.delegateYield(gt(t,e,n),"t1",7);case 7:for(a=l.t1,(i=I()).tupleStream=!0,o=0;o<a.length;o++)(s={"@":a[o]})[t.index]=o,i.push(s);case 11:if(!t.stages){l.next=14;break}return l.delegateYield(G(t.stages,i,n),"t2",13);case 13:i=l.t2;case 14:return l.abrupt("return",i);case 15:(i=I()).tupleStream=!0,c=n,void 0===r&&(r=e.map((function(t){return{"@":t}}))),u=0;case 20:if(!(u<r.length)){l.next=28;break}return c=U(n,r[u]),l.delegateYield(F(t,r[u]["@"],c),"t3",23);case 23:if(void 0!==(h=l.t3))for(Array.isArray(h)||(h=[h]),f=0;f<h.length;f++)s={},Object.assign(s,r[u]),h.tupleStream?Object.assign(s,h[f]):(t.focus?(s[t.focus]=h[f],s["@"]=r[u]["@"]):s["@"]=h[f],t.index&&(s[t.index]=f),t.ancestor&&(s[t.ancestor.label]=r[u]["@"])),i.push(s);case 25:u++,l.next=20;break;case 28:if(!t.stages){l.next=31;break}return l.delegateYield(G(t.stages,i,n),"t4",30);case 30:i=l.t4;case 31:return l.abrupt("return",i);case 32:case"end":return l.stop()}}),l)}function H(t,e,r){var n,i,o,s,c,u;return regeneratorRuntime.wrap((function(l){for(;;)switch(l.prev=l.next){case 0:if(n=I(),e&&e.tupleStream&&(n.tupleStream=!0),Array.isArray(e)||(e=I(e)),"number"!==t.type){l.next=10;break}(i=Math.floor(t.value))<0&&(i=e.length+i),void 0!==(o=e[i])&&(Array.isArray(o)?n=o:n.push(o)),l.next=23;break;case 10:i=0;case 11:if(!(i<e.length)){l.next=23;break}return o=e[i],s=o,c=r,e.tupleStream&&(s=o["@"],c=U(r,o)),l.delegateYield(F(t,s,c),"t0",17);case 17:u=l.t0,T(u)&&(u=[u]),O(u)?u.forEach((function(t){var r=Math.floor(t);r<0&&(r=e.length+r),r===i&&n.push(o)})):a.boolean(u)&&n.push(o);case 20:i++,l.next=11;break;case 23:return l.abrupt("return",n);case 24:case"end":return l.stop()}}),h)}function q(t,e,r){var n,i,a,o,s;return regeneratorRuntime.wrap((function(c){for(;;)switch(c.prev=c.next){case 0:return c.delegateYield(F(t.lhs,e,r),"t0",1);case 1:if(i=c.t0,a=t.value,o=regeneratorRuntime.mark((function n(){return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.delegateYield(F(t.rhs,e,r),"t0",1);case 1:return n.abrupt("return",n.t0);case 2:case"end":return n.stop()}}),n)})),"and"!==a&&"or"!==a){c.next=15;break}return c.prev=5,c.delegateYield(it(i,o,a),"t1",7);case 7:return c.abrupt("return",c.t1);case 10:throw c.prev=10,c.t2=c.catch(5),c.t2.position=t.position,c.t2.token=a,c.t2;case 15:return c.delegateYield(o(),"t3",16);case 16:s=c.t3,c.prev=17,c.t4=a,c.next="+"===c.t4||"-"===c.t4||"*"===c.t4||"/"===c.t4||"%"===c.t4?21:"="===c.t4||"!="===c.t4?23:"<"===c.t4||"<="===c.t4||">"===c.t4||">="===c.t4?25:"&"===c.t4?27:".."===c.t4?29:"in"===c.t4?31:33;break;case 21:return n=tt(i,s,a),c.abrupt("break",33);case 23:return n=et(i,s,a),c.abrupt("break",33);case 25:return n=rt(i,s,a),c.abrupt("break",33);case 27:return n=ot(i,s),c.abrupt("break",33);case 29:return n=ut(i,s),c.abrupt("break",33);case 31:return n=nt(i,s),c.abrupt("break",33);case 33:c.next=40;break;case 35:throw c.prev=35,c.t5=c.catch(17),c.t5.position=t.position,c.t5.token=a,c.t5;case 40:return c.abrupt("return",n);case 41:case"end":return c.stop()}}),f,null,[[5,10],[17,35]])}function X(t,e,r){var n,i,o,s;return regeneratorRuntime.wrap((function(c){for(;;)switch(c.prev=c.next){case 0:c.t0=t.value,c.next="-"===c.t0?3:"["===c.t0?15:"{"===c.t0?27:30;break;case 3:return c.delegateYield(F(t.expression,e,r),"t1",4);case 4:if(void 0!==(n=c.t1)){c.next=9;break}n=void 0,c.next=14;break;case 9:if(!T(n)){c.next=13;break}n=-n,c.next=14;break;case 13:throw{code:"D1002",stack:(new Error).stack,position:t.position,token:t.value,value:n};case 14:return c.abrupt("break",30);case 15:n=[],i=0;case 17:if(!(i<t.expressions.length)){c.next=25;break}return o=t.expressions[i],c.delegateYield(F(o,e,r),"t2",20);case 20:void 0!==(s=c.t2)&&("["===o.value?n.push(s):n=a.append(n,s));case 22:i++,c.next=17;break;case 25:return t.consarray&&Object.defineProperty(n,"cons",{enumerable:!1,configurable:!1,value:!0}),c.abrupt("break",30);case 27:return c.delegateYield(st(t,e,r),"t3",28);case 28:return n=c.t3,c.abrupt("break",30);case 30:return c.abrupt("return",n);case 31:case"end":return c.stop()}}),d)}function V(t,e,r){return a.lookup(e,t.value)}function Q(t){return t.value}function K(t,e){var r=I();return Array.isArray(e)&&e.outerWrapper&&e.length>0&&(e=e[0]),null!==e&&"object"===n(e)&&Object.keys(e).forEach((function(t){var n=e[t];Array.isArray(n)?(n=J(n),r=a.append(r,n)):r.push(n)})),r}function J(t,e){return void 0===e&&(e=[]),Array.isArray(t)?t.forEach((function(t){J(t,e)})):e.push(t),e}function Z(t,e){var r,n=I();return void 0!==e&&($(e,n),r=1===n.length?n[0]:n),r}function $(t,e){Array.isArray(t)||e.push(t),Array.isArray(t)?t.forEach((function(t){$(t,e)})):null!==t&&"object"===n(t)&&Object.keys(t).forEach((function(r){$(t[r],e)}))}function tt(t,e,r){var n;if(void 0!==t&&!T(t))throw{code:"T2001",stack:(new Error).stack,value:t};if(void 0!==e&&!T(e))throw{code:"T2002",stack:(new Error).stack,value:e};if(void 0===t||void 0===e)return n;switch(r){case"+":n=t+e;break;case"-":n=t-e;break;case"*":n=t*e;break;case"/":n=t/e;break;case"%":n=t%e}return n}function et(t,e,r){var i,a=n(t),o=n(e);if("undefined"===a||"undefined"===o)return!1;switch(r){case"=":i=z(t,e);break;case"!=":i=!z(t,e)}return i}function rt(t,e,r){var i,a=n(t),o=n(e);if("undefined"!==a&&"string"!==a&&"number"!==a||"undefined"!==o&&"string"!==o&&"number"!==o)throw{code:"T2010",stack:(new Error).stack,value:"string"!==a&&"number"!==a?t:e};if("undefined"!==a&&"undefined"!==o){if(a!==o)throw{code:"T2009",stack:(new Error).stack,value:t,value2:e};switch(r){case"<":i=t<e;break;case"<=":i=t<=e;break;case">":i=t>e;break;case">=":i=t>=e}return i}}function nt(t,e){var r=!1;if(void 0===t||void 0===e)return!1;Array.isArray(e)||(e=[e]);for(var n=0;n<e.length;n++)if(e[n]===t){r=!0;break}return r}function it(t,e,r){var n,i;return regeneratorRuntime.wrap((function(a){for(;;)switch(a.prev=a.next){case 0:i=at(t),a.t0=r,a.next="and"===a.t0?4:"or"===a.t0?12:20;break;case 4:if(a.t1=i,!a.t1){a.next=10;break}return a.t2=at,a.delegateYield(e(),"t3",8);case 8:a.t4=a.t3,a.t1=(0,a.t2)(a.t4);case 10:return n=a.t1,a.abrupt("break",20);case 12:if(a.t5=i,a.t5){a.next=18;break}return a.t6=at,a.delegateYield(e(),"t7",16);case 16:a.t8=a.t7,a.t5=(0,a.t6)(a.t8);case 18:return n=a.t5,a.abrupt("break",20);case 20:return a.abrupt("return",n);case 21:case"end":return a.stop()}}),p)}function at(t){var e=a.boolean(t);return void 0!==e&&e}function ot(t,e){var r="",n="";return void 0!==t&&(r=a.string(t)),void 0!==e&&(n=a.string(e)),r.concat(n)}function st(t,e,r){var n,i,o,s,c,u,l,h,f,d,p,v,y;return regeneratorRuntime.wrap((function(g){for(;;)switch(g.prev=g.next){case 0:n={},i={},o=!(!e||!e.tupleStream),Array.isArray(e)||(e=I(e)),0===e.length&&e.push(void 0),s=0;case 6:if(!(s<e.length)){g.next=31;break}c=e[s],u=o?U(r,c):r,l=0;case 10:if(!(l<t.lhs.length)){g.next=28;break}return h=t.lhs[l],g.delegateYield(F(h[0],o?c["@"]:c,u),"t0",13);case 13:if("string"==typeof(f=g.t0)||void 0===f){g.next=16;break}throw{code:"T1003",stack:(new Error).stack,position:t.position,value:f};case 16:if(void 0===f){g.next=25;break}if(d={data:c,exprIndex:l},!i.hasOwnProperty(f)){g.next=24;break}if(i[f].exprIndex===l){g.next=21;break}throw{code:"D1009",stack:(new Error).stack,position:t.position,value:f};case 21:i[f].data=a.append(i[f].data,c),g.next=25;break;case 24:i[f]=d;case 25:l++,g.next=10;break;case 28:s++,g.next=6;break;case 31:g.t1=regeneratorRuntime.keys(i);case 32:if((g.t2=g.t1()).done){g.next=43;break}return f=g.t2.value,d=i[f],p=d.data,u=r,o&&(v=ct(d.data),p=v["@"],delete v["@"],u=U(r,v)),g.delegateYield(F(t.lhs[d.exprIndex][1],p,u),"t3",39);case 39:void 0!==(y=g.t3)&&(n[f]=y),g.next=32;break;case 43:return g.abrupt("return",n);case 44:case"end":return g.stop()}}),g)}function ct(t){if(!Array.isArray(t))return t;var e={};Object.assign(e,t[0]);for(var r=1;r<t.length;r++)for(var n in t[r])e[n]=a.append(e[n],t[r][n]);return e}function ut(t,e){var r;if(void 0!==t&&!Number.isInteger(t))throw{code:"T2003",stack:(new Error).stack,value:t};if(void 0!==e&&!Number.isInteger(e))throw{code:"T2004",stack:(new Error).stack,value:e};if(void 0===t||void 0===e)return r;if(t>e)return r;var n=e-t+1;if(n>1e7)throw{code:"D2014",stack:(new Error).stack,value:n};r=new Array(n);for(var i=t,a=0;i<=e;i++,a++)r[a]=i;return r.sequence=!0,r}function lt(t,e,r){var n;return regeneratorRuntime.wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.delegateYield(F(t.rhs,e,r),"t0",1);case 1:return n=i.t0,r.bind(t.lhs.value,n),i.abrupt("return",n);case 4:case"end":return i.stop()}}),v)}function ht(t,e,r){var n,i;return regeneratorRuntime.wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return o.delegateYield(F(t.condition,e,r),"t0",1);case 1:if(i=o.t0,!a.boolean(i)){o.next=7;break}return o.delegateYield(F(t.then,e,r),"t1",4);case 4:n=o.t1,o.next=10;break;case 7:if(void 0===t.else){o.next=10;break}return o.delegateYield(F(t.else,e,r),"t2",9);case 9:n=o.t2;case 10:return o.abrupt("return",n);case 11:case"end":return o.stop()}}),y)}function ft(t,e,r){var n,i,a;return regeneratorRuntime.wrap((function(o){for(;;)switch(o.prev=o.next){case 0:i=Ct(r),a=0;case 2:if(!(a<t.expressions.length)){o.next=8;break}return o.delegateYield(F(t.expressions[a],e,i),"t0",4);case 4:n=o.t0;case 5:a++,o.next=2;break;case 8:return o.abrupt("return",n);case 9:case"end":return o.stop()}}),m)}function dt(t){var e=new Lt.RegexEngine(t.value),r=function r(n,i){var a;e.lastIndex=i||0;var o=e.exec(n);if(null!==o){if(a={match:o[0],start:o.index,end:o.index+o[0].length,groups:[]},o.length>1)for(var s=1;s<o.length;s++)a.groups.push(o[s]);a.next=function(){if(!(e.lastIndex>=n.length)){var i=r(n,e.lastIndex);if(i&&""===i.match)throw{code:"D1004",stack:(new Error).stack,position:t.position,value:t.value.source};return i}}}return a};return r}function pt(t,e,r){return""===t.value?e&&e.outerWrapper?e[0]:e:r.lookup(t.value)}function gt(t,e,r){var i,o,s,c,u;return regeneratorRuntime.wrap((function(l){for(;;)switch(l.prev=l.next){case 0:return o=e,s=!!e.tupleStream,c=regeneratorRuntime.mark((function e(i,a){var o,c,u,l,h,f,d,p,g;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:o=0,c=0;case 2:if(!(0===o&&c<t.terms.length)){e.next=35;break}return u=t.terms[c],l=i,h=r,s&&(l=i["@"],h=U(r,i)),e.delegateYield(F(u.expression,l,h),"t0",8);case 8:return f=e.t0,l=a,h=r,s&&(l=a["@"],h=U(r,a)),e.delegateYield(F(u.expression,l,h),"t1",13);case 13:if(d=e.t1,p=n(f),g=n(d),"undefined"!==p){e.next=19;break}return o="undefined"===g?0:1,e.abrupt("continue",32);case 19:if("undefined"!==g){e.next=22;break}return o=-1,e.abrupt("continue",32);case 22:if(!("string"!==p&&"number"!==p||"string"!==g&&"number"!==g)){e.next=24;break}throw{code:"T2008",stack:(new Error).stack,position:t.position,value:"string"!==p&&"number"!==p?f:d};case 24:if(p===g){e.next=26;break}throw{code:"T2007",stack:(new Error).stack,position:t.position,value:f,value2:d};case 26:if(f!==d){e.next=30;break}return e.abrupt("continue",32);case 30:o=f<d?-1:1;case 31:!0===u.descending&&(o=-o);case 32:c++,e.next=2;break;case 35:return e.abrupt("return",1===o);case 36:case"end":return e.stop()}}),e)})),u={environment:r,input:e},l.delegateYield(a.sort.apply(u,[o,c]),"t0",5);case 5:return i=l.t0,l.abrupt("return",i);case 7:case"end":return l.stop()}}),b)}function vt(t,e,r){var i=regeneratorRuntime.mark((function e(i){var a,o,s,c,u,l,h,f,d,p,g;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(void 0!==i){e.next=2;break}return e.abrupt("return",void 0);case 2:if(a=r.lookup("clone"),C(a)){e.next=5;break}throw{code:"T2013",stack:(new Error).stack,position:t.position};case 5:return e.delegateYield(xt(a,[i],null,r),"t0",6);case 6:return o=e.t0,e.delegateYield(F(t.pattern,o,r),"t1",8);case 8:if(void 0===(s=e.t1)){e.next=33;break}Array.isArray(s)||(s=[s]),c=0;case 12:if(!(c<s.length)){e.next=33;break}return u=s[c],e.delegateYield(F(t.update,u,r),"t2",15);case 15:if(l=e.t2,"undefined"===(h=n(l))){e.next=21;break}if("object"===h&&null!==l&&!Array.isArray(l)){e.next=20;break}throw{code:"T2011",stack:(new Error).stack,position:t.update.position,value:l};case 20:for(f in l)u[f]=l[f];case 21:if(void 0===t.delete){e.next=30;break}return e.delegateYield(F(t.delete,u,r),"t3",23);case 23:if(void 0===(d=e.t3)){e.next=30;break}if(p=d,Array.isArray(d)||(d=[d]),P(d)){e.next=29;break}throw{code:"T2012",stack:(new Error).stack,position:t.delete.position,value:p};case 29:for(g=0;g<d.length;g++)"object"===n(u)&&null!==u&&delete u[d[g]];case 30:c++,e.next=12;break;case 33:return e.abrupt("return",o);case 34:case"end":return e.stop()}}),e)}));return Ot(i,"<(oa):o>")}var yt=s("function($f, $g) { function($x){ $g($f($x)) } }");function mt(t,e,r){var n,i,a,o;return regeneratorRuntime.wrap((function(s){for(;;)switch(s.prev=s.next){case 0:return s.delegateYield(F(t.lhs,e,r),"t0",1);case 1:if(i=s.t0,"function"!==t.rhs.type){s.next=7;break}return s.delegateYield(bt(t.rhs,e,r,{context:i}),"t1",4);case 4:n=s.t1,s.next=20;break;case 7:return s.delegateYield(F(t.rhs,e,r),"t2",8);case 8:if(a=s.t2,C(a)){s.next=11;break}throw{code:"T2006",stack:(new Error).stack,position:t.position,value:a};case 11:if(!C(i)){s.next=18;break}return s.delegateYield(F(yt,null,r),"t3",13);case 13:return o=s.t3,s.delegateYield(xt(o,[i,a],null,r),"t4",15);case 15:n=s.t4,s.next=20;break;case 18:return s.delegateYield(xt(a,[i],null,r),"t5",19);case 19:n=s.t5;case 20:return s.abrupt("return",n);case 21:case"end":return s.stop()}}),x)}function bt(t,e,r,i){var a,o,s,c,u,l;return regeneratorRuntime.wrap((function(h){for(;;)switch(h.prev=h.next){case 0:return h.delegateYield(F(t.procedure,e,r),"t0",1);case 1:if(void 0!==(o=h.t0)||"path"!==t.procedure.type||!r.lookup(t.procedure.steps[0].value)){h.next=4;break}throw{code:"T1005",stack:(new Error).stack,position:t.position,token:t.procedure.steps[0].value};case 4:s=[],void 0!==i&&s.push(i.context),c=regeneratorRuntime.mark((function n(){var i,a;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.delegateYield(F(t.arguments[u],e,r),"t0",1);case 1:i=n.t0,C(i)?(a=regeneratorRuntime.mark((function t(){var e,n,a,o=arguments;return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:for(e=o.length,n=new Array(e),a=0;a<e;a++)n[a]=o[a];return t.delegateYield(xt(i,n,null,r),"t0",2);case 2:return t.abrupt("return",t.t0);case 3:case"end":return t.stop()}}),t)})),a.arity=L(i),s.push(a)):s.push(i);case 3:case"end":return n.stop()}}),n)})),u=0;case 8:if(!(u<t.arguments.length)){h.next=13;break}return h.delegateYield(c(),"t1",10);case 10:u++,h.next=8;break;case 13:return l="path"===t.procedure.type?t.procedure.steps[0].value:t.procedure.value,h.prev=14,"object"===n(o)&&(o.token=l,o.position=t.position),h.delegateYield(xt(o,s,e,r),"t2",17);case 17:a=h.t2,h.next=25;break;case 20:throw h.prev=20,h.t3=h.catch(14),h.t3.position||(h.t3.position=t.position),h.t3.token||(h.t3.token=l),h.t3;case 25:return h.abrupt("return",a);case 26:case"end":return h.stop()}}),w,null,[[14,20]])}function xt(t,e,r,n){var i,a,o,s;return regeneratorRuntime.wrap((function(c){for(;;)switch(c.prev=c.next){case 0:return c.delegateYield(wt(t,e,r,n),"t0",1);case 1:i=c.t0;case 2:if(!j(i)||!0!==i.thunk){c.next=21;break}return c.delegateYield(F(i.body.procedure,i.input,i.environment),"t1",4);case 4:a=c.t1,"variable"===i.body.procedure.type&&(a.token=i.body.procedure.value),a.position=i.body.procedure.position,o=[],s=0;case 9:if(!(s<i.body.arguments.length)){c.next=17;break}return c.t2=o,c.delegateYield(F(i.body.arguments[s],i.input,i.environment),"t3",12);case 12:c.t4=c.t3,c.t2.push.call(c.t2,c.t4);case 14:s++,c.next=9;break;case 17:return c.delegateYield(wt(a,o,r,n),"t5",18);case 18:i=c.t5,c.next=2;break;case 21:return c.abrupt("return",i);case 22:case"end":return c.stop()}}),A)}function wt(t,e,r,n){var i,a,o;return regeneratorRuntime.wrap((function(s){for(;;)switch(s.prev=s.next){case 0:if(s.prev=0,a=e,t&&(a=kt(t.signature,e,r)),!j(t)){s.next=8;break}return s.delegateYield(St(t,a),"t0",5);case 5:i=s.t0,s.next=24;break;case 8:if(!t||!0!==t._jsonata_function){s.next=16;break}if(o={environment:n,input:r},i=t.implementation.apply(o,a),!D(i)){s.next=14;break}return s.delegateYield(i,"t1",13);case 13:i=s.t1;case 14:s.next=24;break;case 16:if("function"!=typeof t){s.next=23;break}if(i=t.apply(r,a),!D(i)){s.next=21;break}return s.delegateYield(i,"t2",20);case 20:i=s.t2;case 21:s.next=24;break;case 23:throw{code:"T1006",stack:(new Error).stack};case 24:s.next=30;break;case 26:throw s.prev=26,s.t3=s.catch(0),t&&(void 0===s.t3.token&&void 0!==t.token&&(s.t3.token=t.token),s.t3.position=t.position),s.t3;case 30:return s.abrupt("return",i);case 31:case"end":return s.stop()}}),_,null,[[0,26]])}function At(t,e,r){var n={_jsonata_lambda:!0,input:e,environment:r,arguments:t.arguments,signature:t.signature,body:t.body};return!0===t.thunk&&(n.thunk=!0),n.apply=regeneratorRuntime.mark((function t(r,i){return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.delegateYield(xt(n,i,e,r.environment),"t0",1);case 1:return t.abrupt("return",t.t0);case 2:case"end":return t.stop()}}),t)})),n}function _t(t,e,r){var n,i,a,o,s;return regeneratorRuntime.wrap((function(c){for(;;)switch(c.prev=c.next){case 0:i=[],a=0;case 2:if(!(a<t.arguments.length)){c.next=15;break}if("operator"!==(o=t.arguments[a]).type||"?"!==o.value){c.next=8;break}i.push(o),c.next=12;break;case 8:return c.t0=i,c.delegateYield(F(o,e,r),"t1",10);case 10:c.t2=c.t1,c.t0.push.call(c.t0,c.t2);case 12:a++,c.next=2;break;case 15:return c.delegateYield(F(t.procedure,e,r),"t3",16);case 16:if(void 0!==(s=c.t3)||"path"!==t.procedure.type||!r.lookup(t.procedure.steps[0].value)){c.next=19;break}throw{code:"T1007",stack:(new Error).stack,position:t.position,token:t.procedure.steps[0].value};case 19:if(!j(s)){c.next=23;break}n=Et(s,i),c.next=32;break;case 23:if(!s||!0!==s._jsonata_function){c.next=27;break}n=Mt(s.implementation,i),c.next=32;break;case 27:if("function"!=typeof s){c.next=31;break}n=Mt(s,i),c.next=32;break;case 31:throw{code:"T1008",stack:(new Error).stack,position:t.position,token:"path"===t.procedure.type?t.procedure.steps[0].value:t.procedure.value};case 32:return c.abrupt("return",n);case 33:case"end":return c.stop()}}),k)}function kt(t,e,r){return void 0===t?e:t.validate(e,r)}function St(t,e){var r,n;return regeneratorRuntime.wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(n=Ct(t.environment),t.arguments.forEach((function(t,r){n.bind(t.value,e[r])})),"function"!=typeof t.body){i.next=7;break}return i.delegateYield(Tt(t.body,n),"t0",4);case 4:r=i.t0,i.next=9;break;case 7:return i.delegateYield(F(t.body,t.input,n),"t1",8);case 8:r=i.t1;case 9:return i.abrupt("return",r);case 10:case"end":return i.stop()}}),S)}function Et(t,e){var r=Ct(t.environment),n=[];return t.arguments.forEach((function(t,i){var a=e[i];a&&"operator"===a.type&&"?"===a.value?n.push(t):r.bind(t.value,a)})),{_jsonata_lambda:!0,input:t.input,environment:r,arguments:n,body:t.body}}function Mt(t,e){var r=Pt(t),n="function("+(r=r.map((function(t){return"$"+t.trim()}))).join(", ")+"){ _ }",i=s(n);return i.body=t,Et(i,e)}function Tt(t,e){var r,n,i,a;return regeneratorRuntime.wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(r=Pt(t),n=r.map((function(t){return e.lookup(t.trim())})),i={environment:e},a=t.apply(i,n),!D(a)){o.next=7;break}return o.delegateYield(a,"t0",6);case 6:a=o.t0;case 7:return o.abrupt("return",a);case 8:case"end":return o.stop()}}),E)}function Pt(t){var e=t.toString();return/\(([^)]*)\)/.exec(e)[1].split(",")}function Ot(t,e){var r={_jsonata_function:!0,implementation:t};return void 0!==e&&(r.signature=c(e)),r}function It(t,e){var r,n,i;return regeneratorRuntime.wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(void 0!==t){a.next=2;break}return a.abrupt("return",void 0);case 2:r=this.input,void 0!==e&&(r=e,Array.isArray(r)&&!R(r)&&((r=I(r)).outerWrapper=!0)),a.prev=4,n=s(t,!1),a.next=12;break;case 8:throw a.prev=8,a.t0=a.catch(4),Dt(a.t0),{stack:(new Error).stack,code:"D3120",value:a.t0.message,error:a.t0};case 12:return a.prev=12,a.delegateYield(F(n,r,this.environment),"t1",14);case 14:i=a.t1,a.next=21;break;case 17:throw a.prev=17,a.t2=a.catch(12),Dt(a.t2),{stack:(new Error).stack,code:"D3121",value:a.t2.message,error:a.t2};case 21:return a.abrupt("return",i);case 22:case"end":return a.stop()}}),M,this,[[4,8],[12,17]])}function Rt(t){if(void 0!==t)return JSON.parse(a.string(t))}function Ct(t){var e={};return{bind:function(t,r){e[t]=r},lookup:function(r){var n;return e.hasOwnProperty(r)?n=e[r]:t&&(n=t.lookup(r)),n},timestamp:t?t.timestamp:null,async:!!t&&t.async,global:t?t.global:{ancestry:[null]}}}B.bind("sum",Ot(a.sum,"<a<n>:n>")),B.bind("count",Ot(a.count,"<a:n>")),B.bind("max",Ot(a.max,"<a<n>:n>")),B.bind("min",Ot(a.min,"<a<n>:n>")),B.bind("average",Ot(a.average,"<a<n>:n>")),B.bind("string",Ot(a.string,"<x-b?:s>")),B.bind("substring",Ot(a.substring,"<s-nn?:s>")),B.bind("substringBefore",Ot(a.substringBefore,"<s-s:s>")),B.bind("substringAfter",Ot(a.substringAfter,"<s-s:s>")),B.bind("lowercase",Ot(a.lowercase,"<s-:s>")),B.bind("uppercase",Ot(a.uppercase,"<s-:s>")),B.bind("length",Ot(a.length,"<s-:n>")),B.bind("trim",Ot(a.trim,"<s-:s>")),B.bind("pad",Ot(a.pad,"<s-ns?:s>")),B.bind("match",Ot(a.match,"<s-f<s:o>n?:a<o>>")),B.bind("contains",Ot(a.contains,"<s-(sf):b>")),B.bind("replace",Ot(a.replace,"<s-(sf)(sf)n?:s>")),B.bind("split",Ot(a.split,"<s-(sf)n?:a<s>>")),B.bind("join",Ot(a.join,"<a<s>s?:s>")),B.bind("formatNumber",Ot(a.formatNumber,"<n-so?:s>")),B.bind("formatBase",Ot(a.formatBase,"<n-n?:s>")),B.bind("formatInteger",Ot(i.formatInteger,"<n-s:s>")),B.bind("parseInteger",Ot(i.parseInteger,"<s-s:n>")),B.bind("number",Ot(a.number,"<(nsb)-:n>")),B.bind("floor",Ot(a.floor,"<n-:n>")),B.bind("ceil",Ot(a.ceil,"<n-:n>")),B.bind("round",Ot(a.round,"<n-n?:n>")),B.bind("abs",Ot(a.abs,"<n-:n>")),B.bind("sqrt",Ot(a.sqrt,"<n-:n>")),B.bind("power",Ot(a.power,"<n-n:n>")),B.bind("random",Ot(a.random,"<:n>")),B.bind("boolean",Ot(a.boolean,"<x-:b>")),B.bind("not",Ot(a.not,"<x-:b>")),B.bind("map",Ot(a.map,"<af>")),B.bind("zip",Ot(a.zip,"<a+>")),B.bind("filter",Ot(a.filter,"<af>")),B.bind("single",Ot(a.single,"<af?>")),B.bind("reduce",Ot(a.foldLeft,"<afj?:j>")),B.bind("sift",Ot(a.sift,"<o-f?:o>")),B.bind("keys",Ot(a.keys,"<x-:a<s>>")),B.bind("lookup",Ot(a.lookup,"<x-s:x>")),B.bind("append",Ot(a.append,"<xx:a>")),B.bind("exists",Ot(a.exists,"<x:b>")),B.bind("spread",Ot(a.spread,"<x-:a<o>>")),B.bind("merge",Ot(a.merge,"<a<o>:o>")),B.bind("reverse",Ot(a.reverse,"<a:a>")),B.bind("each",Ot(a.each,"<o-f:a>")),B.bind("error",Ot(a.error,"<s?:x>")),B.bind("assert",Ot(a.assert,"<bs?:x>")),B.bind("type",Ot(a.type,"<x:s>")),B.bind("sort",Ot(a.sort,"<af?:a>")),B.bind("shuffle",Ot(a.shuffle,"<a:a>")),B.bind("distinct",Ot(a.distinct,"<x:x>")),B.bind("base64encode",Ot(a.base64encode,"<s-:s>")),B.bind("base64decode",Ot(a.base64decode,"<s-:s>")),B.bind("encodeUrlComponent",Ot(a.encodeUrlComponent,"<s-:s>")),B.bind("encodeUrl",Ot(a.encodeUrl,"<s-:s>")),B.bind("decodeUrlComponent",Ot(a.decodeUrlComponent,"<s-:s>")),B.bind("decodeUrl",Ot(a.decodeUrl,"<s-:s>")),B.bind("eval",Ot(It,"<sx?:x>")),B.bind("toMillis",Ot(i.toMillis,"<s-s?:n>")),B.bind("fromMillis",Ot(i.fromMillis,"<n-s?s?:s>")),B.bind("clone",Ot(Rt,"<(oa)-:o>"));var jt={S0101:"String literal must be terminated by a matching quote",S0102:"Number out of range: {{token}}",S0103:"Unsupported escape sequence: \\{{token}}",S0104:"The escape sequence \\u must be followed by 4 hex digits",S0105:"Quoted property name must be terminated with a backquote (`)",S0106:"Comment has no closing tag",S0201:"Syntax error: {{token}}",S0202:"Expected {{value}}, got {{token}}",S0203:"Expected {{value}} before end of expression",S0204:"Unknown operator: {{token}}",S0205:"Unexpected token: {{token}}",S0206:"Unknown expression type: {{token}}",S0207:"Unexpected end of expression",S0208:"Parameter {{value}} of function definition must be a variable name (start with $)",S0209:"A predicate cannot follow a grouping expression in a step",S0210:"Each step can only have one grouping expression",S0211:"The symbol {{token}} cannot be used as a unary operator",S0212:"The left side of := must be a variable name (start with $)",S0213:"The literal value {{value}} cannot be used as a step within a path expression",S0214:"The right side of {{token}} must be a variable name (start with $)",S0215:"A context variable binding must precede any predicates on a step",S0216:"A context variable binding must precede the 'order-by' clause on a step",S0217:"The object representing the 'parent' cannot be derived from this expression",S0301:"Empty regular expressions are not allowed",S0302:"No terminating / in regular expression",S0402:"Choice groups containing parameterized types are not supported",S0401:"Type parameters can only be applied to functions and arrays",S0500:"Attempted to evaluate an expression containing syntax error(s)",T0410:"Argument {{index}} of function {{token}} does not match function signature",T0411:"Context value is not a compatible type with argument {{index}} of function {{token}}",T0412:"Argument {{index}} of function {{token}} must be an array of {{type}}",D1001:"Number out of range: {{value}}",D1002:"Cannot negate a non-numeric value: {{value}}",T1003:"Key in object structure must evaluate to a string; got: {{value}}",D1004:"Regular expression matches zero length string",T1005:"Attempted to invoke a non-function. Did you mean ${{{token}}}?",T1006:"Attempted to invoke a non-function",T1007:"Attempted to partially apply a non-function. Did you mean ${{{token}}}?",T1008:"Attempted to partially apply a non-function",D1009:"Multiple key definitions evaluate to same key: {{value}}",T1010:"The matcher function argument passed to function {{token}} does not return the correct object structure",T2001:"The left side of the {{token}} operator must evaluate to a number",T2002:"The right side of the {{token}} operator must evaluate to a number",T2003:"The left side of the range operator (..) must evaluate to an integer",T2004:"The right side of the range operator (..) must evaluate to an integer",D2005:"The left side of := must be a variable name (start with $)",T2006:"The right side of the function application operator ~> must be a function",T2007:"Type mismatch when comparing values {{value}} and {{value2}} in order-by clause",T2008:"The expressions within an order-by clause must evaluate to numeric or string values",T2009:"The values {{value}} and {{value2}} either side of operator {{token}} must be of the same data type",T2010:"The expressions either side of operator {{token}} must evaluate to numeric or string values",T2011:"The insert/update clause of the transform expression must evaluate to an object: {{value}}",T2012:"The delete clause of the transform expression must evaluate to a string or array of strings: {{value}}",T2013:"The transform expression clones the input object using the $clone() function. This has been overridden in the current scope by a non-function.",D2014:"The size of the sequence allocated by the range operator (..) must not exceed 1e6. Attempted to allocate {{value}}.",D3001:"Attempting to invoke string function on Infinity or NaN",D3010:"Second argument of replace function cannot be an empty string",D3011:"Fourth argument of replace function must evaluate to a positive number",D3012:"Attempted to replace a matched string with a non-string value",D3020:"Third argument of split function must evaluate to a positive number",D3030:"Unable to cast value to a number: {{value}}",D3040:"Third argument of match function must evaluate to a positive number",D3050:"The second argument of reduce function must be a function with at least two arguments",D3060:"The sqrt function cannot be applied to a negative number: {{value}}",D3061:"The power function has resulted in a value that cannot be represented as a JSON number: base={{value}}, exponent={{exp}}",D3070:"The single argument form of the sort function can only be applied to an array of strings or an array of numbers. Use the second argument to specify a comparison function",D3080:"The picture string must only contain a maximum of two sub-pictures",D3081:"The sub-picture must not contain more than one instance of the 'decimal-separator' character",D3082:"The sub-picture must not contain more than one instance of the 'percent' character",D3083:"The sub-picture must not contain more than one instance of the 'per-mille' character",D3084:"The sub-picture must not contain both a 'percent' and a 'per-mille' character",D3085:"The mantissa part of a sub-picture must contain at least one character that is either an 'optional digit character' or a member of the 'decimal digit family'",D3086:"The sub-picture must not contain a passive character that is preceded by an active character and that is followed by another active character",D3087:"The sub-picture must not contain a 'grouping-separator' character that appears adjacent to a 'decimal-separator' character",D3088:"The sub-picture must not contain a 'grouping-separator' at the end of the integer part",D3089:"The sub-picture must not contain two adjacent instances of the 'grouping-separator' character",D3090:"The integer part of the sub-picture must not contain a member of the 'decimal digit family' that is followed by an instance of the 'optional digit character'",D3091:"The fractional part of the sub-picture must not contain an instance of the 'optional digit character' that is followed by a member of the 'decimal digit family'",D3092:"A sub-picture that contains a 'percent' or 'per-mille' character must not contain a character treated as an 'exponent-separator'",D3093:"The exponent part of the sub-picture must comprise only of one or more characters that are members of the 'decimal digit family'",D3100:"The radix of the formatBase function must be between 2 and 36. It was given {{value}}",D3110:"The argument of the toMillis function must be an ISO 8601 formatted timestamp. Given {{value}}",D3120:"Syntax error in expression passed to function eval: {{value}}",D3121:"Dynamic error evaluating the expression passed to function eval: {{value}}",D3130:"Formatting or parsing an integer as a sequence starting with {{value}} is not supported by this implementation",D3131:"In a decimal digit pattern, all digits must be from the same decimal group",D3132:"Unknown component specifier {{value}} in date/time picture string",D3133:"The 'name' modifier can only be applied to months and days in the date/time picture string, not {{value}}",D3134:"The timezone integer format specifier cannot have more than four digits",D3135:"No matching closing bracket ']' in date/time picture string",D3136:"The date/time picture string is missing specifiers required to parse the timestamp",D3137:"{{{message}}}",D3138:"The $single() function expected exactly 1 matching result. Instead it matched more.",D3139:"The $single() function expected exactly 1 matching result. Instead it matched 0.",D3140:"Malformed URL passed to ${{{functionName}}}(): {{value}}",D3141:"{{{message}}}"};function Dt(t){var e=jt[t.code];if(void 0!==e){var r=e.replace(/\{\{\{([^}]+)}}}/g,(function(){return t[arguments[1]]}));r=r.replace(/\{\{([^}]+)}}/g,(function(){return JSON.stringify(t[arguments[1]])})),t.message=r}}function Lt(t,e){var r,n;try{r=s(t,e&&e.recover),n=r.errors,delete r.errors}catch(t){throw Dt(t),t}var a=Ct(B),o=new Date;return a.bind("now",Ot((function(t,e){return i.fromMillis(o.getTime(),t,e)}),"<s?s?:s>")),a.bind("millis",Ot((function(){return o.getTime()}),"<:n>")),e&&e.RegexEngine?Lt.RegexEngine=e.RegexEngine:Lt.RegexEngine=RegExp,{evaluate:function(t,e,i){if(void 0!==n){var s={code:"S0500",position:0};throw Dt(s),s}var c,u,l;if(void 0!==e)for(var h in c=Ct(a),e)c.bind(h,e[h]);else c=a;if(c.bind("$",t),o=new Date,c.timestamp=o,Array.isArray(t)&&!R(t)&&((t=I(t)).outerWrapper=!0),"function"==typeof i){c.async=!0;var f=function(t){Dt(t),i(t,null)},d=function t(e){(u=l.next(e)).done?i(null,u.value):u.value.then(t).catch(f)};l=F(r,t,c),(u=l.next()).value.then(d).catch(f)}else try{for(l=F(r,t,c),u=l.next();!u.done;)u=l.next(u.value);return u.value}catch(s){throw Dt(s),s}},assign:function(t,e){a.bind(t,e)},registerFunction:function(t,e,r){var n=Ot(e,r);a.bind(t,n)},ast:function(){return r},errors:function(){return n}}}return Lt.parser=s,Lt}();e.exports=u},{"./datetime":1,"./functions":2,"./parser":4,"./signature":5,"./utils":6}],4:[function(t,e,r){var n=t("./signature"),i=function(){var t={".":75,"[":80,"]":0,"{":70,"}":0,"(":80,")":0,",":0,"@":80,"#":80,";":80,":":80,"?":20,"+":50,"-":50,"*":60,"/":60,"%":60,"|":20,"=":40,"<":40,">":40,"^":40,"**":60,"..":20,":=":10,"!=":40,"<=":40,">=":40,"~>":40,and:30,or:25,in:40,"&":50,"!":0,"~":0},e={'"':'"',"\\":"\\","/":"/",b:"\b",f:"\f",n:"\n",r:"\r",t:"\t"},r=function(r){var n=0,i=r.length,a=function(t,e){return{type:t,value:e,position:n}},o=function(){for(var t,e,a=n,o=0;n<i;){var s=r.charAt(n);if("/"===s&&"\\"!==r.charAt(n-1)&&0===o){if(""===(t=r.substring(a,n)))throw{code:"S0301",stack:(new Error).stack,position:n};for(n++,s=r.charAt(n),a=n;"i"===s||"m"===s;)n++,s=r.charAt(n);return e=r.substring(a,n)+"g",new RegExp(t,e)}"("!==s&&"["!==s&&"{"!==s||"\\"===r.charAt(n-1)||o++,")"!==s&&"]"!==s&&"}"!==s||"\\"===r.charAt(n-1)||o--,n++}throw{code:"S0302",stack:(new Error).stack,position:n}},s=function s(c){if(n>=i)return null;for(var u=r.charAt(n);n<i&&" \t\n\r\v".indexOf(u)>-1;)n++,u=r.charAt(n);if("/"===u&&"*"===r.charAt(n+1)){var l=n;for(n+=2,u=r.charAt(n);"*"!==u||"/"!==r.charAt(n+1);)if(u=r.charAt(++n),n>=i)throw{code:"S0106",stack:(new Error).stack,position:l};return n+=2,u=r.charAt(n),s(c)}if(!0!==c&&"/"===u)return n++,a("regex",o());if("."===u&&"."===r.charAt(n+1))return n+=2,a("operator","..");if(":"===u&&"="===r.charAt(n+1))return n+=2,a("operator",":=");if("!"===u&&"="===r.charAt(n+1))return n+=2,a("operator","!=");if(">"===u&&"="===r.charAt(n+1))return n+=2,a("operator",">=");if("<"===u&&"="===r.charAt(n+1))return n+=2,a("operator","<=");if("*"===u&&"*"===r.charAt(n+1))return n+=2,a("operator","**");if("~"===u&&">"===r.charAt(n+1))return n+=2,a("operator","~>");if(Object.prototype.hasOwnProperty.call(t,u))return n++,a("operator",u);if('"'===u||"'"===u){var h=u;n++;for(var f="";n<i;){if("\\"===(u=r.charAt(n)))if(n++,u=r.charAt(n),Object.prototype.hasOwnProperty.call(e,u))f+=e[u];else{if("u"!==u)throw{code:"S0103",stack:(new Error).stack,position:n,token:u};var d=r.substr(n+1,4);if(!/^[0-9a-fA-F]+$/.test(d))throw{code:"S0104",stack:(new Error).stack,position:n};var p=parseInt(d,16);f+=String.fromCharCode(p),n+=4}else{if(u===h)return n++,a("string",f);f+=u}n++}throw{code:"S0101",stack:(new Error).stack,position:n}}var g,v=/^-?(0|([1-9][0-9]*))(\.[0-9]+)?([Ee][-+]?[0-9]+)?/.exec(r.substring(n));if(null!==v){var y=parseFloat(v[0]);if(!isNaN(y)&&isFinite(y))return n+=v[0].length,a("number",y);throw{code:"S0102",stack:(new Error).stack,position:n,token:v[0]}}if("`"===u){n++;var m=r.indexOf("`",n);if(-1!==m)return g=r.substring(n,m),n=m+1,a("name",g);throw n=i,{code:"S0105",stack:(new Error).stack,position:n}}for(var b,x=n;;)if(b=r.charAt(x),x===i||" \t\n\r\v".indexOf(b)>-1||Object.prototype.hasOwnProperty.call(t,b)){if("$"===r.charAt(n))return g=r.substring(n+1,x),n=x,a("variable",g);switch(g=r.substring(n,x),n=x,g){case"or":case"in":case"and":return a("operator",g);case"true":return a("value",!0);case"false":return a("value",!1);case"null":return a("value",null);default:return n===i&&""===g?null:a("name",g)}}else x++};return s},i=function(e,i){var a,o,s={},c=[],u=function(){var t=[];"(end)"!==a.id&&t.push({type:a.type,value:a.value,position:a.position});for(var e=o();null!==e;)t.push(e),e=o();return t},l={nud:function(){var t={code:"S0211",token:this.value,position:this.position};if(i)return t.remaining=u(),t.type="error",c.push(t),t;throw t.stack=(new Error).stack,t}},h=function(t,e){var r=s[t];return e=e||0,r?e>=r.lbp&&(r.lbp=e):((r=Object.create(l)).id=r.value=t,r.lbp=e,s[t]=r),r},f=function(t){if(i){t.remaining=u(),c.push(t);var e=s["(error)"];return(a=Object.create(e)).error=t,a.type="(error)",a}throw t.stack=(new Error).stack,t},d=function(t,r){if(t&&a.id!==t){var n={code:"(end)"===a.id?"S0203":"S0202",position:a.position,token:a.value,value:t};return f(n)}var i=o(r);if(null===i)return(a=s["(end)"]).position=e.length,a;var c,u=i.value,l=i.type;switch(l){case"name":case"variable":c=s["(name)"];break;case"operator":if(!(c=s[u]))return f({code:"S0204",stack:(new Error).stack,position:i.position,token:u});break;case"string":case"number":case"value":c=s["(literal)"];break;case"regex":l="regex",c=s["(regex)"];break;default:return f({code:"S0205",stack:(new Error).stack,position:i.position,token:u})}return(a=Object.create(c)).value=u,a.type=l,a.position=i.position,a},p=function(t){var e,r=a;for(d(null,!0),e=r.nud();t<a.lbp;)r=a,d(),e=r.led(e);return e},g=function(t){h(t,0).nud=function(){return this}},v=function(e,r,n){var i=r||t[e],a=h(e,i);return a.led=n||function(t){return this.lhs=t,this.rhs=p(i),this.type="binary",this},a},y=function(t,e,r){var n=h(t,e);return n.led=r,n},m=function(t,e){var r=h(t);return r.nud=e||function(){return this.expression=p(70),this.type="unary",this},r};g("(end)"),g("(name)"),g("(literal)"),g("(regex)"),h(":"),h(";"),h(","),h(")"),h("]"),h("}"),h(".."),v("."),v("+"),v("-"),v("*"),v("/"),v("%"),v("="),v("<"),v(">"),v("!="),v("<="),v(">="),v("&"),v("and"),v("or"),v("in"),g("and"),g("or"),g("in"),m("-"),v("~>"),y("(error)",10,(function(t){return this.lhs=t,this.error=a.error,this.remaining=u(),this.type="error",this})),m("*",(function(){return this.type="wildcard",this})),m("**",(function(){return this.type="descendant",this})),m("%",(function(){return this.type="parent",this})),v("(",t["("],(function(t){if(this.procedure=t,this.type="function",this.arguments=[],")"!==a.id)for(;"operator"===a.type&&"?"===a.id?(this.type="partial",this.arguments.push(a),d("?")):this.arguments.push(p(0)),","===a.id;)d(",");if(d(")",!0),"name"===t.type&&("function"===t.value||"λ"===t.value)){if(this.arguments.forEach((function(t,e){if("variable"!==t.type)return f({code:"S0208",stack:(new Error).stack,position:t.position,token:t.value,value:e+1})})),this.type="lambda","<"===a.id){for(var e=a.position,r=1,i="<";r>0&&"{"!==a.id&&"(end)"!==a.id;){var o=d();">"===o.id?r--:"<"===o.id&&r++,i+=o.value}d(">");try{this.signature=n(i)}catch(t){return t.position=e+t.offset,f(t)}}d("{"),this.body=p(0),d("}")}return this})),m("(",(function(){for(var t=[];")"!==a.id&&(t.push(p(0)),";"===a.id);)d(";");return d(")",!0),this.type="block",this.expressions=t,this})),m("[",(function(){var t=[];if("]"!==a.id)for(;;){var e=p(0);if(".."===a.id){var r={type:"binary",value:"..",position:a.position,lhs:e};d(".."),r.rhs=p(0),e=r}if(t.push(e),","!==a.id)break;d(",")}return d("]",!0),this.expressions=t,this.type="unary",this})),v("[",t["["],(function(e){if("]"===a.id){for(var r=e;r&&"binary"===r.type&&"["===r.value;)r=r.lhs;return r.keepArray=!0,d("]"),e}return this.lhs=e,this.rhs=p(t["]"]),this.type="binary",d("]",!0),this})),v("^",t["^"],(function(t){d("(");for(var e=[];;){var r={descending:!1};if("<"===a.id?d("<"):">"===a.id&&(r.descending=!0,d(">")),r.expression=p(0),e.push(r),","!==a.id)break;d(",")}return d(")"),this.lhs=t,this.rhs=e,this.type="binary",this}));var b=function(t){var e=[];if("}"!==a.id)for(;;){var r=p(0);d(":");var n=p(0);if(e.push([r,n]),","!==a.id)break;d(",")}return d("}",!0),void 0===t?(this.lhs=e,this.type="unary"):(this.lhs=t,this.rhs=e,this.type="binary"),this};m("{",b),v("{",t["{"],b),y(":=",t[":="],(function(e){return"variable"!==e.type?f({code:"S0212",stack:(new Error).stack,position:e.position,token:e.value}):(this.lhs=e,this.rhs=p(t[":="]-1),this.type="binary",this)})),v("@",t["@"],(function(e){return this.lhs=e,this.rhs=p(t["@"]),"variable"!==this.rhs.type?f({code:"S0214",stack:(new Error).stack,position:this.rhs.position,token:"@"}):(this.type="binary",this)})),v("#",t["#"],(function(e){return this.lhs=e,this.rhs=p(t["#"]),"variable"!==this.rhs.type?f({code:"S0214",stack:(new Error).stack,position:this.rhs.position,token:"#"}):(this.type="binary",this)})),v("?",t["?"],(function(t){return this.type="condition",this.condition=t,this.then=p(0),":"===a.id&&(d(":"),this.else=p(0)),this})),m("|",(function(){return this.type="transform",this.pattern=p(0),d("|"),this.update=p(0),","===a.id&&(d(","),this.delete=p(0)),d("|"),this}));var x=function t(e){var r;if("function"!==e.type||e.predicate)if("condition"===e.type)e.then=t(e.then),void 0!==e.else&&(e.else=t(e.else)),r=e;else if("block"===e.type){var n=e.expressions.length;n>0&&(e.expressions[n-1]=t(e.expressions[n-1])),r=e}else r=e;else{var i={type:"lambda",thunk:!0,arguments:[],position:e.position};i.body=e,r=i}return r},w=0,A=0,_=[],k=function t(e,r){switch(e.type){case"name":case"wildcard":r.level--,0===r.level&&(void 0===e.ancestor||(_[r.index].slot.label=e.ancestor.label),e.ancestor=r,e.tuple=!0);break;case"parent":r.level++;break;case"block":e.expressions.length>0&&(e.tuple=!0,r=t(e.expressions[e.expressions.length-1],r));break;case"path":e.tuple=!0;var n=e.steps.length-1;for(r=t(e.steps[n--],r);r.level>0&&n>=0;)r=t(e.steps[n--],r);break;default:throw{code:"S0217",token:e.type,position:e.position}}return r},S=function(t,e){if(void 0!==e.seekingParent||"parent"===e.type){var r=void 0!==e.seekingParent?e.seekingParent:[];"parent"===e.type&&r.push(e.slot),void 0===t.seekingParent?t.seekingParent=r:Array.prototype.push.apply(t.seekingParent,r)}},E=function(t){var e=t.steps.length-1,r=t.steps[e],n=void 0!==r.seekingParent?r.seekingParent:[];"parent"===r.type&&n.push(r.slot);for(var i=0;i<n.length;i++){var a=n[i];for(e=t.steps.length-2;a.level>0;){if(e<0){void 0===t.seekingParent?t.seekingParent=[a]:t.seekingParent.push(a);break}for(var o=t.steps[e--];e>=0&&o.focus&&t.steps[e].focus;)o=t.steps[e--];a=k(o,a)}}},M=function t(e){var r;switch(e.type){case"binary":switch(e.value){case".":var n=t(e.lhs);r="path"===n.type?n:{type:"path",steps:[n]},"parent"===n.type&&(r.seekingParent=[n.slot]);var a=t(e.rhs);"function"===a.type&&"path"===a.procedure.type&&1===a.procedure.steps.length&&"name"===a.procedure.steps[0].type&&"function"===r.steps[r.steps.length-1].type&&(r.steps[r.steps.length-1].nextFunction=a.procedure.steps[0].value),"path"===a.type?Array.prototype.push.apply(r.steps,a.steps):(void 0!==a.predicate&&(a.stages=a.predicate,delete a.predicate),r.steps.push(a)),r.steps.filter((function(t){if("number"===t.type||"value"===t.type)throw{code:"S0213",stack:(new Error).stack,position:t.position,value:t.value};return"string"===t.type})).forEach((function(t){t.type="name"})),r.steps.filter((function(t){return!0===t.keepArray})).length>0&&(r.keepSingletonArray=!0);var o=r.steps[0];"unary"===o.type&&"["===o.value&&(o.consarray=!0);var s=r.steps[r.steps.length-1];"unary"===s.type&&"["===s.value&&(s.consarray=!0),E(r);break;case"[":var u=r=t(e.lhs),l="predicate";if("path"===r.type&&(u=r.steps[r.steps.length-1],l="stages"),void 0!==u.group)throw{code:"S0209",stack:(new Error).stack,position:e.position};void 0===u[l]&&(u[l]=[]);var h=t(e.rhs);void 0!==h.seekingParent&&(h.seekingParent.forEach((function(t){1===t.level?k(u,t):t.level--})),S(u,h)),u[l].push({type:"filter",expr:h,position:e.position});break;case"{":if(void 0!==(r=t(e.lhs)).group)throw{code:"S0210",stack:(new Error).stack,position:e.position};r.group={lhs:e.rhs.map((function(e){return[t(e[0]),t(e[1])]})),position:e.position};break;case"^":"path"!==(r=t(e.lhs)).type&&(r={type:"path",steps:[r]});var f={type:"sort",position:e.position};f.terms=e.rhs.map((function(e){var r=t(e.expression);return S(f,r),{descending:e.descending,expression:r}})),r.steps.push(f),E(r);break;case":=":(r={type:"bind",value:e.value,position:e.position}).lhs=t(e.lhs),r.rhs=t(e.rhs),S(r,r.rhs);break;case"@":if(r=t(e.lhs),u=r,"path"===r.type&&(u=r.steps[r.steps.length-1]),void 0!==u.stages||void 0!==u.predicate)throw{code:"S0215",stack:(new Error).stack,position:e.position};if("sort"===u.type)throw{code:"S0216",stack:(new Error).stack,position:e.position};e.keepArray&&(u.keepArray=!0),u.focus=e.rhs.value,u.tuple=!0;break;case"#":r=t(e.lhs),u=r,"path"===r.type?u=r.steps[r.steps.length-1]:(r={type:"path",steps:[r]},void 0!==u.predicate&&(u.stages=u.predicate,delete u.predicate)),void 0===u.stages?u.index=e.rhs.value:u.stages.push({type:"index",value:e.rhs.value,position:e.position}),u.tuple=!0;break;case"~>":(r={type:"apply",value:e.value,position:e.position}).lhs=t(e.lhs),r.rhs=t(e.rhs);break;default:(r={type:e.type,value:e.value,position:e.position}).lhs=t(e.lhs),r.rhs=t(e.rhs),S(r,r.lhs),S(r,r.rhs)}break;case"unary":r={type:e.type,value:e.value,position:e.position},"["===e.value?r.expressions=e.expressions.map((function(e){var n=t(e);return S(r,n),n})):"{"===e.value?r.lhs=e.lhs.map((function(e){var n=t(e[0]);S(r,n);var i=t(e[1]);return S(r,i),[n,i]})):(r.expression=t(e.expression),"-"===e.value&&"number"===r.expression.type?(r=r.expression).value=-r.value:S(r,r.expression));break;case"function":case"partial":(r={type:e.type,name:e.name,value:e.value,position:e.position}).arguments=e.arguments.map((function(e){var n=t(e);return S(r,n),n})),r.procedure=t(e.procedure);break;case"lambda":r={type:e.type,arguments:e.arguments,signature:e.signature,position:e.position};var d=t(e.body);r.body=x(d);break;case"condition":(r={type:e.type,position:e.position}).condition=t(e.condition),S(r,r.condition),r.then=t(e.then),S(r,r.then),void 0!==e.else&&(r.else=t(e.else),S(r,r.else));break;case"transform":(r={type:e.type,position:e.position}).pattern=t(e.pattern),r.update=t(e.update),void 0!==e.delete&&(r.delete=t(e.delete));break;case"block":(r={type:e.type,position:e.position}).expressions=e.expressions.map((function(e){var n=t(e);return S(r,n),(n.consarray||"path"===n.type&&n.steps[0].consarray)&&(r.consarray=!0),n}));break;case"name":r={type:"path",steps:[e]},e.keepArray&&(r.keepSingletonArray=!0);break;case"parent":r={type:"parent",slot:{label:"!"+w++,level:1,index:A++}},_.push(r);break;case"string":case"number":case"value":case"wildcard":case"descendant":case"variable":case"regex":r=e;break;case"operator":if("and"===e.value||"or"===e.value||"in"===e.value)e.type="name",r=t(e);else{if("?"!==e.value)throw{code:"S0201",stack:(new Error).stack,position:e.position,token:e.value};r=e}break;case"error":r=e,e.lhs&&(r=t(e.lhs));break;default:var p="S0206";"(end)"===e.id&&(p="S0207");var g={code:p,position:e.position,token:e.value};if(i)return c.push(g),{type:"error",error:g};throw g.stack=(new Error).stack,g}return e.keepArray&&(r.keepArray=!0),r};o=r(e),d();var T=p(0);if("(end)"!==a.id){var P={code:"S0201",position:a.position,token:a.value};f(P)}if("parent"===(T=M(T)).type||void 0!==T.seekingParent)throw{code:"S0217",token:T.type,position:T.position};return c.length>0&&(T.errors=c),T};return i}();e.exports=i},{"./signature":5}],5:[function(t,e,r){function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var i=t("./utils"),a=function(){var t={a:"arrays",b:"booleans",f:"functions",n:"numbers",o:"objects",s:"strings"};function e(e){for(var r=1,a=[],o={},s=o;r<e.length;){var c=e.charAt(r);if(":"===c)break;var u=function(){a.push(o),s=o,o={}},l=function(t,e,r,n){for(var i=1,a=e;a<t.length;)if(a++,(c=t.charAt(a))===n){if(0==--i)break}else c===r&&i++;return a};switch(c){case"s":case"n":case"b":case"l":case"o":o.regex="["+c+"m]",o.type=c,u();break;case"a":o.regex="[asnblfom]",o.type=c,o.array=!0,u();break;case"f":o.regex="f",o.type=c,u();break;case"j":o.regex="[asnblom]",o.type=c,u();break;case"x":o.regex="[asnblfom]",o.type=c,u();break;case"-":s.context=!0,s.contextRegex=new RegExp(s.regex),s.regex+="?";break;case"?":case"+":s.regex+=c;break;case"(":var h=l(e,r,"(",")"),f=e.substring(r+1,h);if(-1!==f.indexOf("<"))throw{code:"S0402",stack:(new Error).stack,value:f,offset:r};o.regex="["+f+"m]",o.type="("+f+")",r=h,u();break;case"<":if("a"!==s.type&&"f"!==s.type)throw{code:"S0401",stack:(new Error).stack,value:s.type,offset:r};var d=l(e,r,"<",">");s.subtype=e.substring(r+1,d),r=d}r++}var p="^"+a.map((function(t){return"("+t.regex+")"})).join("")+"$",g=new RegExp(p),v=function(t){var e;if(i.isFunction(t))e="f";else switch(n(t)){case"string":e="s";break;case"number":e="n";break;case"boolean":e="b";break;case"object":e=null===t?"l":Array.isArray(t)?"a":"o";break;default:e="m"}return e},y=function(t,e){for(var r="^",n=0,i=0;i<a.length;i++){r+=a[i].regex;var o=e.match(r);if(null===o)throw{code:"T0410",stack:(new Error).stack,value:t[n],index:n+1};n=o[0].length}throw{code:"T0410",stack:(new Error).stack,value:t[n],index:n+1}};return{definition:e,validate:function(e,r){var n="";e.forEach((function(t){n+=v(t)}));var i=g.exec(n);if(i){var o=[],s=0;return a.forEach((function(n,a){var c=e[s],u=i[a+1];if(""===u)if(n.context&&n.contextRegex){var l=v(r);if(!n.contextRegex.test(l))throw{code:"T0411",stack:(new Error).stack,value:r,index:s+1};o.push(r)}else o.push(c),s++;else u.split("").forEach((function(r){if("a"===n.type){if("m"===r)c=void 0;else{c=e[s];var i=!0;if(void 0!==n.subtype)if("a"!==r&&u!==n.subtype)i=!1;else if("a"===r&&c.length>0){var a=v(c[0]);i=a===n.subtype.charAt(0)&&0===c.filter((function(t){return v(t)!==a})).length}if(!i)throw{code:"T0412",stack:(new Error).stack,value:c,index:s+1,type:t[n.subtype]};"a"!==r&&(c=[c])}o.push(c),s++}else o.push(c),s++}))})),o}y(e,n)}}}return e}();e.exports=a},{"./utils":6}],6:[function(t,e,r){function n(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=i(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,a=function(){};return{s:a,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,s=!0,c=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return s=t.done,t},e:function(t){c=!0,o=t},f:function(){try{s||null==r.return||r.return()}finally{if(c)throw o}}}}function i(t,e){if(t){if("string"==typeof t)return a(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?a(t,e):void 0}}function a(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function o(t){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o(t)}var s=function(){function t(t){var e=!1;if("number"==typeof t&&(e=!isNaN(t))&&!isFinite(t))throw{code:"D1001",value:t,stack:(new Error).stack};return e}function e(t){var e=!1;return Array.isArray(t)&&(e=0===t.filter((function(t){return"string"!=typeof t})).length),e}function r(e){var r=!1;return Array.isArray(e)&&(r=0===e.filter((function(e){return!t(e)})).length),r}function i(){var t=[];return t.sequence=!0,1===arguments.length&&t.push(arguments[0]),t}function a(t){return!0===t.sequence&&Array.isArray(t)}function s(t){return t&&(!0===t._jsonata_function||!0===t._jsonata_lambda)||"function"==typeof t}function c(t){return"number"==typeof t.arity?t.arity:"function"==typeof t.implementation?t.implementation.length:"number"==typeof t.length?t.length:t.arguments.length}function u(t){return t&&!0===t._jsonata_lambda}var l=("function"==typeof Symbol?Symbol:{}).iterator||"@@iterator";function h(t){return"object"===o(t)&&null!==t&&l in t&&"next"in t&&"function"==typeof t.next}function f(t,e){if(t===e)return!0;if("object"===o(t)&&"object"===o(e)&&null!==t&&null!==e){if(Array.isArray(t)&&Array.isArray(e)){if(t.length!==e.length)return!1;for(var r=0;r<t.length;r++)if(!f(t[r],e[r]))return!1;return!0}var n=Object.getOwnPropertyNames(t),i=Object.getOwnPropertyNames(e);if(n.length!==i.length)return!1;for(n=n.sort(),i=i.sort(),r=0;r<n.length;r++)if(n[r]!==i[r])return!1;for(r=0;r<n.length;r++){var a=n[r];if(!f(t[a],e[a]))return!1}return!0}return!1}function d(t){var e,r=[],i=n(t);try{for(i.s();!(e=i.n()).done;){var a=e.value;r.push(a)}}catch(t){i.e(t)}finally{i.f()}return r}return{isNumeric:t,isArrayOfStrings:e,isArrayOfNumbers:r,createSequence:i,isSequence:a,isFunction:s,isLambda:u,isIterable:h,getFunctionArity:c,isDeepEqual:f,stringToArray:d}}();e.exports=s},{}]},{},[3])(3)}(d6);var p6=d6.exports;const g6=function(t){return t};function v6(t){if(!t)return g6;try{var e=p6(t);return function(t){return e.evaluate(t)}}catch(t){return console.error(t),g6}}function y6(t){var e=T5(t);return null==e?"":String(e)}function m6(t){return Number(T5(t))}function b6(t){return t}function x6(t){return y6(t)}function w6(t){return m6(t)}function A6(t){if(this.param)return t=y6(t),this.param.hasOwnProperty(t)?this.param[t]:this.param.default}function _6(t){var{param:e}=this;if(e){for(let r in e){let[n,i]=r.split("~"),a=!!n,o=!!i;if(n=parseFloat(n),i=parseFloat(i),t=m6(t),a&&!o&&t>=n)return e[r];if(!a&&o&&t<n)return e[r];if(t>=n&&t<i)return e[r]}return e.default}}function k6(t){return m6(t)*Math.PI/180}function S6(){}function E6(t,e,r,n,i){switch(r){case"value":return"text"===i||"string"===i?x6.bind(t):"number"===i?w6.bind(t):b6.bind(e);case"map":return A6.bind(t);case"range":return _6.bind(t);case"radian":return k6.bind(t);case"eval":return function(t){try{return new Function("value","targets",t)}catch(t){return N5(t),S6}}(n).bind(e);default:return b6.bind(e)}}class M6{constructor(t,e){this.owner=e,this.model=t}dispose(){delete this._model,delete this.owner,delete this.evaluator,delete this.accessor,delete this.source}get model(){return this._model}set model(t){var{target:e,property:r,rule:n,param:i,accessor:a}=t;this._model=t,this.evaluator=E6(this,this.owner,n,i,function(t){switch(t){case"ref":case"fillStyle":case"strokeStyle":return"string";default:return}}(r)),this.accessor=v6(a);const o=e.match(/\[(.*?)\]/);if(o){var[s,c]=o[1].split(":");this.propAccessor=v6(s),this.partAccessor=v6(c)}}get target(){return this.model.target}get property(){return this.model.property}get source(){return this.model.source}get param(){return this.model.param}get ndnsp(){return!!this.model.ndnsp}get partial(){return!!this.model.partial}}function T6(t,e,r,n){n?t.forEach((t=>t[e]={...t[e],...r})):t.forEach((t=>t[e]=r))}function P6(t=!1){(t||void 0!==this.data)&&this.mappings&&this.mappings.forEach((t=>{try{var e,{source:r,target:n,property:i,accessor:a,propAccessor:o,partAccessor:s,ndnsp:c=!1,partial:u=!1}=t;r&&"(self)"!=r?(r.startsWith("#")&&(r=r.substring(1)),e=this.root.findById(r)?.data||{}):e=this.data;var l=a(e);if("(root)"==(n=n.trim())||"(key)"==n){if(null==l)return;let e=Object.keys(l||{}).map((t=>this.root.findOrCreate(t))).filter(Boolean).flat();e.length>0&&e.forEach((e=>{let r=t.evaluator(l[e.get("id")],[e]);!i||"(action)"===i||c&&!r&&0!==r&&!1!==r||(e[i]=u?{...e[i],...r}:r)}))}else if(n.startsWith("[")){if(null==l)return;if(l instanceof Array)l.forEach((e=>{let r=o(e);if(r){let n=this.root.findOrCreate(r);if(n){let r=t.evaluator(s(e),n);!i||"(action)"===i||c&&!r&&0!==r&&!1!==r||T6(n,i,r,u)}}}));else{if(!(l instanceof Object))throw String("mapping data should be an object to target property-id.("+l+")");{let e=o(l);if(e){let r=this.root.findOrCreate(e);if(r){let e=t.evaluator(s(l),r);!i||"(action)"===i||c&&!e&&0!==e&&!1!==e||T6(r,i,e,u)}}}}}else{let e=this.root.findAll(n,this);if(e.length>0){let r=t.evaluator(l,e);!i||"(action)"===i||c&&!r&&0!==r&&!1!==r||T6(e,i,r,u)}}}catch(e){N5(e,this,t)}}))}var O6;function I6(t,e,r,n,i){var{alpha:a=1}=n,o=i.fillStyle;if(t.globalAlpha*=a,o)if("string"==typeof o)t.fillStyle=o,t.fill();else if("object"==typeof o)if("gradient"==o.type){t.translate(r.x,r.y);let n,{width:i,height:a}=e;if("linear"==o.gradientType){let e=3.141592653589793,r=o.rotation;if(r>=.436332&&r<=1.13446||r>=2.00713&&r<=2.70526||r>=3.57792&&r<=4.27606||r>=5.14872&&r<=5.84685){let o=Math.sqrt(Math.pow((i-4)/2,2)+Math.pow((a-4)/2,2));o-=o-(i+a)/3,n=t.createLinearGradient(o*Math.cos(r+e),o*Math.sin(r+e),o*Math.cos(r),o*Math.sin(r))}else n=t.createLinearGradient((i-4)/2*Math.cos(r+e),(a-4)/2*Math.sin(r+e),(i-4)/2*Math.cos(r),(a-4)/2*Math.sin(r))}else if("radial"==o.gradientType){let e=.95*Math.sqrt(Math.pow((i-4)/2,2)+Math.pow((a-4)/2,2));switch(o.center){case"center":default:n=t.createRadialGradient(0,0,0,0,0,e);break;case"left-top":n=t.createRadialGradient(-i/2,-a/2,0,-i/2,-a/2,2*e);break;case"right-top":n=t.createRadialGradient(i/2,-a/2,0,i/2,-a/2,2*e);break;case"left-bottom":n=t.createRadialGradient(-i/2,a/2,0,-i/2,a/2,2*e);break;case"right-bottom":n=t.createRadialGradient(i/2,a/2,0,i/2,a/2,2*e)}}o.colorStops.forEach((t=>{if(t.position>=0&&t.position<=1)try{n.addColorStop(t.position,t.color)}catch(e){U5("Invalid Color for colorstop : ",t.color),n.addColorStop(t.position,"#fff")}})),t.fillStyle=n,t.fill(),t.translate(-r.x,-r.y)}else if("pattern"==o.type&&o.image){i.prepareFillIf(!i._pattern_image_origin);var s=i._pattern_image;if(!s)return;let r=0,n=0,a=0,c=0,u=e.left,l=e.top;if(!o.fitPattern){r=o.offsetX,n=o.offsetY;const t=o.width?o.width:s.width,i=o.height?o.height:s.height;switch(o.align){case"center":a=e.width/2-t/2,c=e.height/2-i/2;break;case"left-top":a=0,c=0;break;case"left-bottom":a=0,c=e.height-i;break;case"right-top":a=e.width-t,c=0;break;case"right-bottom":a=e.width-t,c=e.height-i;break;case"left":a=0,c=e.height/2-i/2;break;case"right":a=e.width-t,c=e.height/2-i/2;break;case"top":a=e.width/2-t/2,c=0;break;case"bottom":a=e.width/2-t/2,c=e.height-i}u+=r+a,l+=n+c}t.translate(u,l),o.color&&(t.fillStyle=o.color,t.fill()),o.fitPattern?Math.abs((s.width-e.width)*(s.height-e.height))>1?(delete i._pattern_image,delete i._pattern_image_origin):t.fillStyle=t.createPattern(s,"no-repeat"):t.fillStyle=t.createPattern(s,o.noRepeat?"no-repeat":"repeat"),t.fill(),t.translate(-u,-l)}}function R6(t,e,r){var{strokeStyle:n,lineDash:i,lineWidth:a,lineCap:o,lineJoin:s,alpha:c}=e;if(n&&0!=a){if(o&&(t.lineCap=o),i){var u="round"==o;switch(i){case"solid":i=[0,0];break;case"round-dot":i=u?[0,2*a]:[a,a];break;case"square-dot":i=u?[a,2*a]:[2*a,a];break;case"dash":i=u?[3*a,2.5*a]:[4*a,1.5*a];break;case"dash-dot":i=u?[3*a,3*a,0,3*a]:[4*a,2*a,a,2*a];break;case"long-dash":i=u?[5*a,4*a]:[6*a,3*a];break;case"long-dash-dot":i=u?[5*a,3*a,0,3*a]:[6*a,2*a,a,2*a];break;case"long-dash-dot-dot":i=u?[5*a,2*a,0,2*a,0,2*a]:[6*a,a,a,a,a,a]}t.setLineDash(i)}t.globalAlpha*=c,t.strokeStyle=n,t.lineWidth=a,t.lineJoin=s,t.stroke()}}function C6(t,e,r){if(e.length<2)return e;for(var n=2;n<e.length;n++){var i=e.substring(0,n);if(!(t.measureText(i).width<r))break}return e.substring(0,n-1)}function j6(t,e,r,n){var i=String(e).split("\n");return n?[].concat.apply([],i.map((e=>function(t,e,r){var n,i,a=e.split(" "),o=[],s=[];for(n=0,i=1;i<=a.length;i++)if(s=a.slice(n,i),t.measureText(s.join(" ")).width>r){if(i-n==1){let e=C6(t,s[0],r);o.push([e]),a.splice(n,1,e,s[0].substring(e.length))}else{for(;""==a[i-1];)i++;o.push(a.slice(n,--i))}n=i}return i-n>1&&o.push(s),0==o.length&&o.push([""]),o}(t,e,r)))):i.map((t=>t.split(" ")))}function D6(t,e,r,n,i,a=0,o=!1,s=!0){a="number"==typeof a?{tl:a,tr:a,br:a,bl:a}:{tl:0,tr:0,br:0,bl:0,...a},t.beginPath(),t.moveTo(e+a.tl,r),t.lineTo(e+n-a.tr,r),t.quadraticCurveTo(e+n,r,e+n,r+a.tr),t.lineTo(e+n,r+i-a.br),t.quadraticCurveTo(e+n,r+i,e+n-a.br,r+i),t.lineTo(e+a.bl,r+i),t.quadraticCurveTo(e,r+i,e,r+i-a.bl),t.lineTo(e,r+a.tl),t.quadraticCurveTo(e,r,e+a.tl,r),t.closePath(),o&&t.fill(),s&&t.stroke()}function L6(t,e,r,n,i){if(!n)return[];t.save(),t.font=r;var a=j6(t,n,e,!!i);return t.restore(),a}function z6(t){var{fontFamily:e=r6.FONT_FAMILY,bold:r=r6.BOLD,italic:n=r6.ITALIC,fontSize:i=r6.FONT_SIZE}=t,a=[];return r&&a.push("bold"),n&&a.push("italic"),a.push(i+"px"),a.push(e),a.join(" ")}function B6(t,e,r,n){var{alpha:i,fontColor:a=r6.FONT_COLOR,textAlign:o=r6.TEXT_ALIGN,textBaseline:s=r6.TEXT_BASELINE,textBackgroundStyle:c,fontSize:u,lineHeight:l,textWrap:h,textOverflow:f}=n;i||=r6.FONT_COLOR,u||=r6.FONT_SIZE,l||=1.2*u,t.save(),t.beginPath();var{left:d,top:p,width:g,height:v}=e;if(t.font=z6(n),!h&&f&&r.join(" ")){const e=function(t,e,r,n){const i="ellipsis"===t?"…":"",a=e.measureText(i).width;let o=e.measureText(r).width;if(o<=n||o<=a)return r;{let t=0,o="",s=0;for(;t<=n-a-20&&s<r.length;)o=r.substring(0,s),t=e.measureText(o).width,s+=2;return o+i}}(f,t,r.join(" "),g);r=[[e]]}var y,m,b=r.length*l;switch(s){case"top":y=p,t.textBaseline="top";break;case"bottom":y=p+v-b+l,t.textBaseline="bottom";break;default:y=p+v/2-b/2+l/2,t.textBaseline="middle"}switch(o){case"left":case"justify":m=d,t.textAlign="left";break;case"right":m=d+g,t.textAlign="right";break;default:m=d+g/2,t.textAlign="center"}t.globalAlpha*=i,t.fillStyle=a,"justify"!=o?r.forEach(((e,r)=>{if(c){t.fillStyle=c;let r=t.measureText(e.join(" "));D6(t,m-r.actualBoundingBoxLeft-4,y-r.actualBoundingBoxAscent-4,r.actualBoundingBoxLeft+r.actualBoundingBoxRight+8,r.actualBoundingBoxAscent+r.actualBoundingBoxDescent+8,4,!0,!1),t.fillStyle=a}t.fillText(e.join(" "),m,y+r*l)})):r.forEach(((e,r)=>{let n=y+r*l;if(1==e.length){if(c){t.fillStyle=c;let r=t.measureText(e[0]);D6(t,m-r.actualBoundingBoxLeft-4,n-r.actualBoundingBoxAscent-4,r.actualBoundingBoxLeft+r.actualBoundingBoxRight+8,r.actualBoundingBoxAscent+r.actualBoundingBoxDescent+8,4,!0,!1),t.fillStyle=a}t.fillText(e[0],m,n)}else{let r=e.map((e=>t.measureText(e).width)),i=r.map((t=>t.width)),o=i.reduce(((t,e)=>t+e),0),s=(g-o)/(e.length-1),u=m;e.forEach(((e,o)=>{c&&(t.fillStyle=c,D6(t,u-r[o].actualBoundingBoxLeft-4,n-r[o].actualBoundingBoxAscent-4,r[o].actualBoundingBoxLeft+r[o].actualBoundingBoxRight+8,r[o].actualBoundingBoxAscent+r[o].actualBoundingBoxDescent+8,4,!0,!1),t.fillStyle=a),t.fillText(e,u,n),u+=i[o]+s}))}})),t.restore()}function F6(t,e,r={x:0,y:0},n=0,i={x:1,y:1}){return t-=r.x,e-=r.y,{x:(t*Math.cos(-n)-e*Math.sin(-n)+r.x)/i.x,y:(t*Math.sin(-n)+e*Math.cos(-n)+r.y)/i.y}}function N6(t,e,r={x:0,y:0},n=0,i={x:1,y:1}){return t-=r.x,e-=r.y,{x:(t*Math.cos(n)-e*Math.sin(n)+r.x)*i.x,y:(t*Math.sin(n)+e*Math.cos(n)+r.y)*i.y}}function U6(t){var e=t.element,r=t.fillStyle,n=e.style;if(r)if("string"==typeof r)n.backgroundColor=r;else switch(r.type){case"pattern":if(n.backgroundImage="url("+r.image+")",n.backgroundColor="transparent",r.fitPattern?n.backgroundSize="100% 100%":r.width||r.height?n.backgroundSize=`${r.width?r.width+"px":"auto"} ${r.height?r.height+"px":"auto"}`:n.backgroundSize="contain",r.fitPattern)n.backgroundRepeat="no-repeat";else{const{offsetX:t,offsetY:e,noRepeat:i,align:a,color:o}=r;if(i&&(n.backgroundRepeat="no-repeat"),o&&(n.backgroundColor=o),a)switch(a){case"center":n.backgroundPosition="center center";break;case"left-top":n.backgroundPosition="left top";break;case"left-bottom":n.backgroundPosition="left bottom";break;case"right-top":n.backgroundPosition="right top";break;case"right-bottom":n.backgroundPosition="right bottom";break;case"left":n.backgroundPosition="left center";break;case"right":n.backgroundPosition="right center";break;case"top":n.backgroundPosition="center top";break;case"bottom":n.backgroundPosition="center bottom"}else t||e?n.backgroundPosition=`${Number(t)||0}px ${Number(e)||0}px`:delete n.backgroundPosition}break;case"gradient":n.background=function(t,e){var r=e.colorStops,n=e.gradientType;if(r instanceof Array&&r.length>0)switch(n){case"radial":return"radial-gradient(farthest-corner at "+function(t,e){var{width:r,height:n}=t.bounds;switch(e){case"center":return[r/2,n/2];case"left-top":return[0,0];case"right-top":return[r,0];case"left-bottom":return[0,n];default:return[r,n]}}(t,e.center||"center").map((t=>t+"px")).join(" ")+","+r.map((t=>`${t.color} ${100*t.position}%`)).join(",")+")";case"linear":return"linear-gradient("+(180*(e.rotation||0)/3.141592653589793+90+"deg")+", "+r.map((t=>`${t.color} ${100*t.position}%`)).join(",")+")"}return""}(t,r)}else n.background="transparent"}O6="undefined"==typeof document?function(t,e){return new Canvas(t,e)}:function(t,e){var r=document.createElement("canvas");return r.width=t,r.height=e,r};const Y6={x:1,y:1},G6={x:0,y:0},W6={boxSizing:"border-box",margin:"0px",position:"absolute",outline:"none"};function H6(t){var{id:e,scale:r=Y6,translate:n=G6,bold:i,italic:a,fontFamily:o="",textAlign:s,textBaseline:c,textOverflow:u,paddingTop:l,paddingBottom:h,paddingLeft:f,paddingRight:d,fontSize:p=r6.FONT_SIZE,lineWidth:g=0,lineDash:v}=t.state;h||=0,l||=0,f||=0,d||=0;var y=t.state.class;t.text;var{strokeStyle:m,fillStyle:b,rotation:x=0,fontColor:w,hidden:A}=t,{left:_,top:k,width:S,height:E}=t.bounds,M=t.element;M.hidden=A,e&&(M.id=e),y&&(M.className=y),Object.assign(M.style,W6,{fontFamily:o,fontSize:p+"px",left:_+"px",top:k+"px",width:S+"px",height:E+"px",paddingTop:l+"px",paddingRight:d+"px",paddingBottom:h+"px",paddingLeft:f+"px",border:g+"px",borderColor:m,borderStyle:g>0?v||r6.LINE_DASH:"",color:w,fontWeight:i?"bold":"",fontStyle:a?"italic":"",textAlign:"end"==s?"right":"start"==s?"left":s,verticalAlign:c}),U6(t),function(t){if(t.isShadowable()&&t.state.shadow){var e=t.element,{left:r=0,top:n=0,blurSize:i=0,color:a="transparent"}=t.state.shadow;e.style.boxShadow=`${r}px ${n}px ${i}px ${a}`}}(t);var T=t.delta(),P=(r&&r.x||1)*T.sx,O=(r&&r.y||1)*T.sy,I=(x||0)+T.theta,R=T.tx||0,C=T.ty||0;["-webkit-","-moz-","-ms-","-o-",""].forEach((t=>{M.style[t+"transform"]=`rotate(${I}rad) translate(${R}px, ${C}px) scale(${P}, ${O}) perspective(1px)`}))}var q6,X6=[];function V6(){q6=null;var t=performance.now(),e=(X6=X6.filter((t=>Q6(t)))).reduce(((e,r)=>{let n=t-r.updatedAt;return n>=r.retention?e.kills.push(r):e.next=0==e.next?r.retention-n:Math.min(e.next,r.retention-n),e}),{next:0,kills:[]});e.kills.forEach((t=>{let e=X6.indexOf(t);-1!=e?(X6.splice(e,1),t.removeSelf(!0)):N5("Should not be here. Maybe reentrance problem.")})),e.next>0&&(q6=setTimeout(K6,Math.max(e.next,500)))}function Q6(t){return!t.disposed&&t.retention>0&&!t.isTemplate()&&t.app&&t.app.isViewMode}var K6=m5((function(){requestAnimationFrame(V6)}),500);var J6=new class{add(t){Q6(t)&&-1==X6.indexOf(t)&&(X6.push(t),t.touch()),this.touch()}remove(t){var e=X6.indexOf(t);e>0&&X6.splice(e,1),this.touch()}touch(){null!==q6&&(clearTimeout(q6),q6=null),K6()}get length(){return X6.length}};const Z6=function(t){return t};function $6(t){var e=t.indexOf("||"),r="",n="";-1!=e&&(r=t,n=t.substring(e+2,t.length-1).trim(),t=t.replace(t.substring(e,t.length-1),"").trim());var i=t.substr(2,t.length-3).trim().replace(/\[(\w+)\]/g,".$1").replace(/^\./,"").split(".").filter((t=>!!t.trim())),a=i.slice(1);return{defaultValue:n,match:t,originText:r||t,target:i[0],accessor:a.length>0?function(t){return a.reduce(((t,e)=>t?t[e]:void 0),t)}:Z6}}function t8(t,e,r){if(t){var n=r||T5,i=String(t),a=(i.match(/#{[^}]*}/gi)||[]).map((t=>$6(t))),o=(i.match(/\${[^}]*}/gi)||[]).map((t=>$6(t)));if(0!=a.length||0!=o.length)return function(){var t=i;return a.forEach((r=>{let i=n(r.accessor(e.getState(r.target)));t=t.replace(r.originText,void 0===i?r.defaultValue||"":i)})),o.forEach((r=>{let i=e.root.findById(r.target),a=n(r.accessor(i&&i.data));t=t.replace(r.originText,void 0===a?r.defaultValue||"":a)})),t}}}const e8=210*Math.PI/180,r8=150*Math.PI/180;var n8={"data-spread":function(t,e,r){if(t.app.isEditMode){var n=!1;return t.mappings&&t.mappings.forEach((r=>{let i=t.root.findAll(r.target,t);i&&(e.lineWidth=2,i.forEach((r=>{let i=t.center,a=r.center;i=t.transcoordS2C(i.x,i.y,t.rootModel),a=r.transcoordS2C(a.x,a.y,r.rootModel),e.beginPath();const o=e.createLinearGradient(i.x,i.y,a.x,a.y);["#FFA50033","#FFA500"].forEach(((t,e)=>o.addColorStop(e,t))),e.strokeStyle=o,e.fillStyle=o,function(t,e,r,n=10){var i=r.x-e.x,a=r.y-e.y,o=Math.atan2(a,i),s=r.x+n*Math.cos(o+e8),c=r.y+n*Math.sin(o+e8),u=r.x+n*Math.cos(o+r8),l=r.y+n*Math.sin(o+r8);t.beginPath(),t.moveTo(e.x,e.y),t.lineTo(r.x,r.y),t.moveTo(r.x,r.y),t.lineTo(s,c),t.moveTo(r.x,r.y),t.lineTo(u,l),t.stroke()}(e,i,a),n=!0})))})),n}},"bouncing-arrow":function(t,e,r){let{left:n,top:i,width:a}=t.bounds,o=t.state.id,{x:s,y:c}=t.transcoordS2C(n+a/2,i,t.rootModel);const u=2*function(t){const e=100*(1-t)%10;return e<5?e:10-e}(r||0);if(s=Math.max(s,20),c=Math.max(c,20),e.beginPath(),e.moveTo(s-10,c-16+u),e.lineTo(s+10,c-16+u),e.lineTo(s+10,c-8+u),e.lineTo(s+16,c-8+u),e.lineTo(s,c+u),e.lineTo(s-16,c-8+u),e.lineTo(s-10,c-8+u),e.lineTo(s-10,c-16+u),e.lineTo(s-10,c-16+u),e.fillStyle="#FF0000",e.fill(),o){e.beginPath(),e.font="12px Arial";let t=e.measureText(o);e.fillStyle="#FF0000",e.roundRect(s-t.actualBoundingBoxLeft-3+20,c-t.actualBoundingBoxAscent-3-6+u,t.actualBoundingBoxLeft+t.actualBoundingBoxRight+6,t.actualBoundingBoxAscent+t.actualBoundingBoxDescent+6,3),e.fill(),e.fillStyle="white",e.fillText(o,s+20,c-6+u)}return!0},decotag:function(t,e,r){const n=t.decotag;if(n){let{left:r,top:i}=t.bounds,{x:a,y:o}=t.transcoordS2C(r,i,t.rootModel);a=Math.max(a+3,5),o=Math.max(o-8,15),e.font="12px Arial";let s=e.measureText(n);return e.beginPath(),e.fillStyle="#FF0000",e.roundRect(a-s.actualBoundingBoxLeft-3,o-s.actualBoundingBoxAscent-3,s.actualBoundingBoxLeft+s.actualBoundingBoxRight+6,s.actualBoundingBoxAscent+s.actualBoundingBoxDescent+6,3),e.fill(),e.beginPath(),e.fillStyle="white",e.fillText(n,a,o),!0}return!1},anchors:function(t,e,r){if(t.app.isEditMode){var n=!1;return t.anchors&&t.anchors.forEach((r=>{const{name:i,position:a}=r;var{x:o,y:s}=a||{};if(!i)return;var{x:o,y:s}=t.transcoordS2C(o,s,t.rootModel);o+=4,s+=4,e.font="12px Arial";let c=e.measureText(i);e.fillStyle="#FF0000",D6(e,o,s,c.width+6,16,3,!0,!1),e.fillStyle="white",e.fillText(i,o+3,s+13),n=!0})),n}},link:function(t,e,r){var n=!1;if(!t.isLine())return;const{fromEnd:i,toEnd:a}=t;return[i,a].filter(Boolean).forEach((t=>{const{component:r,anchor:i}=t;if(!i)return;const{name:a,position:o}=i||{};if(!a||!o)return;var{x:s,y:c}=o||{},{x:s,y:c}=r.transcoordS2C(s,c,r.rootModel);s+=8,c+=20,e.font="12px Arial";let u=e.measureText(a);e.fillStyle="#FF0000",D6(e,s-u.actualBoundingBoxLeft-4,c-u.actualBoundingBoxAscent-4,u.actualBoundingBoxLeft+u.actualBoundingBoxRight+8,u.actualBoundingBoxAscent+u.actualBoundingBoxDescent+8,4,!0,!1),e.fillStyle="white",e.fillText(a,s,c),n=!0})),n}};function i8(t){return n8[t]}var a8={};const o8={mutable:!1,resizable:!0,rotatable:!0,properties:[],"value-property":"text"},s8=[],c8={theta:0,tx:0,ty:0,sx:1,sy:1,fade:0},u8=new WeakMap;var l8=0;class h8{static get nature(){return o8}static register(t,e){if(!e)return a8[t];a8[t]=e}static get residents(){return u8}static registerDecorator(t,e){!function(t,e){n8[t]=e}(t,e)}constructor(t,e){this._app=e,this._model=t||{},this._state={},this._delta=n5(c8),e&&this.animation?.config&&(1==this.animation.config.autoplay||(this.animation.config.autoplay??1))&&(this.animation.started=!0),this.clearCache(),J6.add(this),u8.set(this,l8++)}created(){}added(t){}removed(t){}async ready(){if(this.state.persistent){const{isViewMode:t,dataStorage:e}=this.app;t&&(this.data=await e.load(this))}}touch(){this.updatedAt=performance.now()}clearCache(...t){!function(t,...e){0==e.length?t.__cache__={}:e.forEach((e=>delete t.__cache__[e]))}(this,...t)}removeSelf(t){t?this.dispose():this.parent&&this.parent.removeComponent(this)}dispose(){this._animation&&(this._animation.dispose(),delete this._animation),this.disposeMappings(),this.parent&&this.parent.removeComponent(this),delete this._text_substitutor,delete this._value_substitutor,this._disposed=!0,this.retention&&J6.touch(),this.clearCache(),delete this._app}get nature(){return this.constructor.nature}get disposed(){return!!this._disposed}isLayer(){return!1}isGroup(){return!1}isContainer(){return!1}isLine(){return!1}isRoot(){return!1}isRootModel(){return!1}is3dish(){return!1}isTemplate(){return!!this.get("templatePrefix")}isHTMLElement(){return!1}isConnectable(){return!1}isIdentifiable(){return!0}replaceRefids(t){}get retention(){return Number(this.get("retention"))||0}get hasTextProperty(){return!0}get app(){return!this._app&&this.parent&&(this._app=this.parent.app),this._app}get model(){return this._model}get state(){return Object.assign({},this._model,this._state)}get hierarchy(){var t=n5(this._model);return this.volatile.forEach((e=>{delete t[e]})),t}get volatile(){return s8}get textHidden(){return!!this._textHidden}set textHidden(t){this._textHidden=!!t,this.invalidate()}get(t){return this._model[t]}set(t,e){if("string"==typeof t)return this.set({[t]:e});var r={},n={},i=!1,a=(t=n5(t),this);return Object.getOwnPropertyNames(t).forEach((function(e){let o=a._model[e],s=t[e];Q2(o,s)||(n[e]=o,r[e]=s,a._model[e]=s,delete a._state[e],i=!0)})),i&&(this.clearCache(),r.hasOwnProperty("text")&&delete this._text_substitutor,r.hasOwnProperty("retention")&&J6.add(this),r.hasOwnProperty("fillStyle")&&this.onchangeFill(r,n),r.hasOwnProperty("mappings")&&this.onchangeMappings(r,n),r.hasOwnProperty("data")&&this.onchangeData(r,n),this.onchange&&this.onchange(r,n),this.trigger("change",r,n)),this}getState(t){return this._state.hasOwnProperty(t)?this._state[t]:this.get(t)}setState(t,e){if("string"==typeof t)return this.setState({[t]:e});var r={},n={},i=!1,a=(t=n5(t),this),o=this.getState("sensitive");return Object.getOwnPropertyNames(t).forEach((function(e){let s=a.getState(e),c=t[e];!o&&Q2(s,c)||(n[e]=s,r[e]=c,a._state[e]=c,i=!0)})),i&&(this.clearCache(),r.hasOwnProperty("text")&&delete this._text_substitutor,r.hasOwnProperty("fillStyle")&&this.onchangeFill(r,n),r.hasOwnProperty("data")&&this.onchangeData(r,n),this.onchange&&this.onchange(r,n),this.trigger("change",r,n)),this}get root(){return this.isRoot()?this:this.parent&&this.parent.root}get rootModel(){return this.isRootModel()?this:this.parent&&this.parent.rootModel}get parent(){return this._parent}set parent(t){this._parent=t}get anchors(){return this.nature.anchors||[]}findAnchor(t){return this.anchors.find((e=>e.name===t))}isDescendible(t){return!0}getContext(){return this._parent.getContext()}get center(){var t=this.bounds;return{x:t.left+t.width/2,y:t.top+t.height/2}}set center(t){if(t&&!isNaN(t.x)&&!isNaN(t.y)){var e=this.center;if(Math.round(100*t.x)/100!=Math.round(100*e.x)/100||Math.round(100*t.y)/100!=Math.round(100*e.y)/100){var r=t.x-e.x,n=t.y-e.y;this.path=this.path.map((t=>({x:t.x+r,y:t.y+n})))}}}get location(){const{x:t,y:e}=this.center;return{x:t,y:e,z:this.state.zPos}}set location(t){const{x:e,y:r,z:n}=t||{};this.center={x:e,y:r},isNaN(n)||this.setState("zPos",Number(n))}get rotate(){const{rotationX:t,rotationY:e,rotation:r}=this.state;return{x:t,y:e,z:-r}}set rotate(t){const{x:e,y:r,z:n}=t;this.setState({rotationX:e,rotationY:r,rotation:-n})}get dimension(){const{width:t,height:e}=this.bounds,{depth:r}=this.state;return{width:t,height:e,depth:r}}set dimension(t){const{width:e,height:r,depth:n}=t,{top:i,left:a}=this.bounds;this.bounds={top:i,left:a,width:e,height:r},this.setState("depth",n)}get bounds(){var t,e,r,n,i=this.path;t=e=i[0].x,r=n=i[0].y;for(let a=1;a<i.length;a++){let o=i[a];o.x<t?t=o.x:o.x>e&&(e=o.x),o.y<r?r=o.y:o.y>n&&(n=o.y)}return{left:t,top:r,width:e-t,height:n-r}}set bounds(t){var e=this.bounds;if(Math.round(100*t.width)/100!=Math.round(100*e.width)/100||Math.round(100*t.height)/100!=Math.round(100*e.height)/100||Math.round(100*t.left)/100!=Math.round(100*e.left)/100||Math.round(100*t.top)/100!=Math.round(100*e.top)/100){var r=0==e.width?1:t.width/e.width,n=0==e.height?1:t.height/e.height;this.path=this.path.map((i=>({x:t.left+(i.x-e.left)*r,y:t.top+(i.y-e.top)*n})))}}get path(){return N5("이 컴포넌트에 get path 가 구현되어있지 않음.",this),[]}set path(t){N5("이 컴포넌트에 get path 가 구현되어있지 않음.",this)}get drawPath(){return this.path}outline(t){return function(t,e){var r=t.path.slice();if(r&&r.length){var n=1,i=[];if(t.isLine()||r.push(r[0]),e<=0)return t.transcoordS2T(r[0].x,r[0].y);if(e>=1)return t.transcoordS2T(r[r.length-1].x,r[r.length-1].y);for(;r[n];){let t=r[n-1],e=r[n],a=e.x-t.x,o=e.y-t.y;i.push(Math.sqrt(a*a+o*o)),n++}var a=i.reduce((function(t,e){return t+e}),0);n=0;var o=0;do{o+=i[n++]}while(o/a<e);e=(e-(o-=i[--n])/a)*(a/i[n]);var s=r[n%r.length],c=r[(n+1)%r.length],u=s.x+Math.round((c.x-s.x)*e),l=s.y+Math.round((c.y-s.y)*e);return t.transcoordS2T(u,l)}N5("path should not be empty")}(this,t||0)}get strokeStyle(){return this.get("strokeStyle")}set strokeStyle(t){this.set("strokeStyle",t)}get fillStyle(){return this.getState("fillStyle")}set fillStyle(t){this.setState("fillStyle",t)}get fontColor(){return this.get("fontColor")}set fontColor(t){this.set("fontColor",String(T5(t)))}get rotation(){return this.getState("rotation")}set rotation(t){this.setState("rotation",Number(T5(t)))}contains(t,e){return!1}get mutable(){return this.nature.mutable}get resizable(){return this.nature.resizable&&!this.stuck}adjustResize(t,e,r){if(r){let e=this.bounds,r=e.height/e.width,n=t.width-e.width,i=t.height-e.height;n*r>i?i=n*r:n=i/r;let a=t.left-e.left,o=t.top-e.top;return 0!=a&&0!=o?(o=-i,a=-n):0!=a?a=-n:0!=o&&(o=-i),{left:e.left+a,top:e.top+o,width:e.width+n,height:e.height+i}}return t}get rotatable(){return this.nature.rotatable&&!this.stuck}adjustRotation(t,e){if(e||this.app.rotateStepForced){let e=this.app.rotateStep;return Math.floor((t+e/2)/e)*e}return t}get capturable(){return!1!==this.get("capturable")&&(this.app.isEditMode||!this.hidden)}get stuck(){return!!(this.parent&&this.parent.layout.isStuck(this)||this.get("locked"))}findFirst(t,...e){if(t(this,...e))return this}findAll(t,...e){return"string"==typeof t?h6(t,this,e[0]||this):"function"==typeof t&&t(this,...e)?[this]:void 0}capture(t,e,r){if(!this.capturable||r?.(this))return!1;var n=this.transcoordP2S(t,e);return this.contains(n.x,n.y)?this:void 0}prepare(t,e){t(this)}prepareIf(t){t&&this.prepare&&this.prepare((t=>{this.invalidate()}),(t=>{N5(t)}))}get decotag(){const{id:t,tag:e}=this.state;return(t?`#${t}`:"")+(e?`@${e}`:"")}get decorators(){return["decotag","data-spread"]}get reactionDecorators(){return["bouncing-arrow"]}get hidden(){return this.getState("hidden")||!this.data&&0!==this.data&&this.getState("ndns")||this.isTemplate()}set hidden(t){this.setState("hidden",t)}draw(t){t.save(),this.__proto__.hasOwnProperty("_pre_draw")?this._pre_draw(t):this.prerender(t),this.__proto__.hasOwnProperty("_draw")?this._draw(t):this.render(t),this.__proto__.hasOwnProperty("_post_draw")?this._post_draw(t):this.postrender(t),t.restore()}delta(t,e){if(void 0===e)return t?this._delta[t]:this._delta;this._delta[t]=e}prerender(t){var e=this.rotatePoint,{scale:r,rotation:n,shadow:i,alpha:a}=this.state,o=(r&&r.x||1)*this._delta.sx,s=(r&&r.y||1)*this._delta.sy,c=(n||0)+this._delta.theta,{tx:u=0,ty:l=0}=this._delta,h=(a||1)-this._delta.fade;(u||l)&&t.translate(u,l),(1!=o||1!=s||c)&&(t.translate(e.x,e.y),1==o&&1==s||t.scale(o,s),c&&t.rotate(c),t.translate(-e.x,-e.y)),h&&(t.globalAlpha=h),i&&i6(t,i,this),this.app.isEditMode&&this.hidden&&(t.globalAlpha*=.5)}render(t){}postrender(t){this.drawText(t)}drawText(t){!this.textHidden&&this.text&&this.hasTextProperty&&B6(t,this.textBounds,this.textLines(t),this.state)}drawStroke(t,e){R6(t,e?{...this.state,...e}:this.state)}drawFill(t,e){this.fillStyle&&"transparent"!=this.fillStyle&&(I6(t,this.bounds,this.center,e?{...this.state,...e}:this.state,this),function(t){t.shadowColor="transparent"}(t))}animate(t){return this._animate&&this._animate.stop(),this._animate=a4(t),this._animate}move({x:t,y:e}){var r=this.path,n=t,i=e;this.path=r.map((t=>({x:t.x+n,y:t.y+i})))}symmetryX(t){"number"!=typeof t&&(t=this.center.x);var{rotation:e}=this.state,r=this.fillStyle;if(this.set("rotation",2*Math.PI-e),r&&"gradient"===r.type&&"linear"===r.gradientType){var n=n5(r);n.rotation=(Math.PI-parseFloat(r.rotation||0))%(2*Math.PI),this.set("fillStyle",n)}this.path=this.path.map((e=>({x:2*t-e.x,y:e.y})))}symmetryY(t){this.symmetryX(),this.set("rotation",(Math.PI+this.model.rotation)%(2*Math.PI)),t&&this.move({x:0,y:2*(t-this.center.y)},!1)}get animation(){if(this.app.isViewMode&&!this.isTemplate()){if(!this._animation){var t=this.state.animation;t&&t.oncreate&&(this._animation=(e=this,r=t.oncreate,(n=i4[r.type])?new n(e,r):null))}var e,r,n;return this._animation}}effect(t,e){return function(t,e,r){var n=a6[r.type];n&&n(t,e,r)}(this,t,e)}set started(t){this.animation&&(this.animation.started=t)}invalidate(){this.parent&&this.parent.invalidate()}get font(){return z6(this.model)}get lineHeight(){var t=this.get("lineHeight");return t||1.2*this.fontSize}defaultTextSubstitutor(){var t=this.getState("text");return null==t?"":String(t)}get textSubstitutor(){return this._text_substitutor||(this._text_substitutor=t8(this.getState("text"),this)||this.defaultTextSubstitutor),this._text_substitutor}get text(){var t=this.get("textFormat");return t?function(t,e){if(!t||isNaN(+e))return e;var r,n,i,a,o,s,c,u,l,h=t.length,f=t.search(/[0-9\-\+#]/),d=f>0?t.substring(0,f):"",p=t.split("").reverse().join(""),g=p.search(/[0-9\-\+#]/),v=h-g,y=t.substring(v,v+1),m=v+("."===y||","===y?1:0),b=g>0?t.substring(m,h):"";if(r=(e="-"===(t=t.substring(f,m)).charAt(0)?-e:+e)<0?e=-e:0,i=(n=t.match(/[^\d\-\+#]/g))&&n[1]&&n[0]||",",t=t.split("."),e=+(e=e.toFixed(t[1]&&t[1].length))+"",o=t[1]&&t[1].lastIndexOf("0"),(!(c=e.split("."))[1]||c[1]&&c[1].length<=o)&&(e=(+e).toFixed(o+1)),u=t[0].split(i),t[0]=u.join(""),(a=t[0]&&t[0].indexOf("0"))>-1)for(;c[0].length<t[0].length-a;)c[0]="0"+c[0];else 0==+c[0]&&(c[0]="");if((e=e.split("."))[0]=c[0],s=u[1]&&u[u.length-1].length){for(p="",v=(l=e[0]).length%s,h=l.length,m=0;m<h;m++)p+=l.charAt(m),!((m-v+1)%s)&&m<h-s&&(p+=i);e[0]=p}return e[1]=t[1]&&e[1]?"."+e[1]:"","0"!==(n=e.join(""))&&""!==n||(r=!1),d+("+"==t[0].substring(0,1)?r?"-":"+":r?"-":"")+n+b}(t,this.textSubstitutor()):this.textSubstitutor()}set text(t){delete this._text_substitutor;var e=T5(t);this.setState("text",null==e?"":String(e))}textLines(t){return L6(t||this.getContext(),this.textBounds.width,this.font,this.text,this.get("textWrap"))}get textBounds(){var{paddingTop:t,paddingLeft:e,paddingRight:r,paddingBottom:n}=this.state;n||=0,t||=0,e||=0,r||=0;var{left:i,top:a,width:o,height:s}=this.bounds;return{left:i+e,top:a+t,width:Math.max(o-e-r,0),height:Math.max(s-t-n,0)}}get textRotation(){return 0}get rotatePoint(){return this.center}trim(){delete this._model[""],"chartjs"!==this._model.type&&delete this._model.chart}get value(){var t=this.nature["value-property"]||"text";return"value"==t?this.getState("value"):this[t]}set value(t){var e=this.nature["value-property"]||"text";"value"==e?this.setState("value",t):this[e]=t}get data(){return this.getState("data")}set data(t){this.setState("data",t),this.touch()}set tap(t){var e=this.model.event?.tap;if(e){const{cx:t,cy:r}=this.center;this.rootModel?._doEventAction(e,this,!0,new CustomEvent("click",{offsetX:t,offsetY:r}))}}get mappings(){return!this._mappings&&this.parent&&this.buildMappings(),this._mappings}serialize(...t){return JSON.stringify(this.hierarchy,...t)}get controls(){}closeScene(t){this.rootModel.closeScene(t)}}h8.union=function(t){var e,r,n,i;return t.forEach((t=>{void 0===e?(e=t.left,r=t.top,n=t.left+t.width,i=t.top+t.height):(e=Math.min(t.left,e),r=Math.min(t.top,r),n=Math.max(t.left+t.width,n),i=Math.max(t.top+t.height,i))})),{left:e,top:r,width:n-e,height:i-r}},h8.transcoordR=F6,h8.transcoordRR=N6,h8.createCanvas=O6,h8.memoize=G5,h8.mixin=F5,h8.drawText=B6,h8.font=z6,h8.textLines=L6,h8.drawStroke=R6,h8.drawFill=I6,h8.reposition=H6,h8.RetentionManager=J6,h8.template=function(t,e,r){var n=X3.imports._.templateSettings||X3;r&&l3(t,e,r)&&(e=void 0),t=W3(t),e=v3({},e,n,I3);var i,a,o=v3({},e.imports,n.imports,I3),s=A2(o),c=function(t,e){return T3(e,(function(e){return t[e]}))}(o,s),u=0,l=e.interpolate||$3,h="__p += '",f=RegExp((e.escape||$3).source+"|"+l.source+"|"+(l===j3?Z3:$3).source+"|"+(e.evaluate||$3).source+"|$","g"),d=e4.call(e,"sourceURL")?"//# sourceURL="+(e.sourceURL+"").replace(/\s/g," ")+"\n":"";t.replace(f,(function(e,r,n,o,s,c){return n||(n=o),h+=t.slice(u,c).replace(t4,C3),r&&(i=!0,h+="' +\n__e("+r+") +\n'"),s&&(a=!0,h+="';\n"+s+";\n__p += '"),n&&(h+="' +\n((__t = ("+n+")) == null ? '' : __t) +\n'"),u=c+e.length,e})),h+="';\n";var p=e4.call(e,"variable")&&e.variable;if(p){if(J3.test(p))throw new Error("Invalid `variable` option passed into `_.template`")}else h="with (obj) {\n"+h+"\n}\n";h=(a?h.replace(V3,""):h).replace(Q3,"$1").replace(K3,"$1;"),h="function("+(p||"obj")+") {\n"+(p?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(i?", __e = _.escape":"")+(a?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+h+"return __p\n}";var g=M3((function(){return Function(s,d+"return "+h).apply(void 0,c)}));if(g.source=h,E3(g))throw g;return g},h8.buildSubstitutor=t8,Object.assign(h8.prototype,{drawEffect:function(t){const{effects:e}=this.state;(e||[]).forEach((e=>{this.effect(t,e)}))},prepareFill:function(t,e){var r=this.fillStyle;if(r&&"pattern"==r.type&&r.image){if("string"!=typeof r.image)return this._pattern_image_origin=this._pattern_image=r.image,void t(this);this._pattern_image=null,this._pattern_image_origin=new Image;var n=this;this._pattern_image_origin.onload=function(){if(!r.fitPattern&&!r.width&&!r.height)return n._pattern_image=n._pattern_image_origin,void t(this);let e=r.width||this.width,i=r.height||this.height;r.fitPattern&&(e=n.bounds.width,i=n.bounds.height);let a=O6(e,i);a.getContext("2d").drawImage(this,0,0,this.width,this.height,0,0,e,i),n._pattern_image=a,t(this)},this._pattern_image_origin.onerror=function(t){e(t)};try{"data"!==String(r.image).substring(0,4)?this._pattern_image_origin.crossOrigin="use-credentials":this._pattern_image_origin.crossOrigin=null,this._pattern_image_origin.src=this.app.url(r.image)}catch(t){e(t)}}else t(this)},prepareFillIf:function(t){t&&this.prepareFill((t=>{this.invalidate()}),(t=>{N5(t)}))},onchangeFill:function(t,e){var r=this.fillStyle;r&&"pattern"!==r.type?this._pattern_image&&(this._pattern_image=null,this._pattern_image_origin=null):r?.image&&this.prepareFillIf(r.image)},drawImage:function(t,e,r,n,i,a){e.complete?t.drawImage(e,r,n,i,a):e.addEventListener("load",(()=>{this.invalidate()}))},mutateBounds:function(t,e){var r=this.bounds,n=this.rotatePoint,i=this.get("rotation"),a=this.get("scale");if(t){var o=t.call(e,r);o&&(r=o)}var{left:s,top:c,width:u,height:l}=r,h=[{x:s,y:c},{x:s+u,y:c+l}],f=(h=h.map((t=>N6(t.x,t.y,n,i,a))))[0],d=h[1];n={x:(f.x+d.x)/2,y:(f.y+d.y)/2},f=(h=h.map((t=>F6(t.x,t.y,n,i,a))))[0],d=h[1],this.bounds={left:f.x,top:f.y,width:d.x-f.x,height:d.y-f.y}},mutatePath:function(t,e,r){var n=this.path,i=this.rotatePoint;this.get("rotation"),this.get("scale"),t&&(n=t.call(r,n));var a=n.map((t=>this.transcoordS2P(t.x,t.y)));e&&(n=e.call(r,a))&&(a=n);var o,s,c,u,l={x:0,y:0};o=s=(n=a.map((t=>this.transcoordP2S(t.x,t.y,l))))[0].x,c=u=n[0].y;for(let t=1;t<n.length;t++){let e=n[t];e.x<o?o=e.x:e.x>s&&(s=e.x),e.y<c?c=e.y:e.y>u&&(u=e.y)}i={x:(o+s)/2,y:(c+u)/2},i=this.transcoordS2P(i.x,i.y,l),this.path=a.map((t=>this.transcoordP2S(t.x,t.y,i)))},access:function(t){if(t){var e=String(t),r=(e.match(/#{(\S*)}/)||[]).map((t=>$6(t)))[0];if(r)return r.accessor(this.getState(r.target));var n=(e.match(/\${[^}]*}/)||[]).map((t=>$6(t)))[0];if(n){let t=this.root.findById(n.target);return n.accessor(this.getState(t))}return t}},substitute:function(t,e){if(t){var r=String(t),n=e||T5,i=(r.match(/#{(\S*)}/gi)||[]).map((t=>$6(t))),a=(r.match(/\${[^}]*}/gi)||[]).map((t=>$6(t)));if(0==i.length&&0==a.length)return r;var o=r;return i.forEach((t=>{let e=n(t.accessor(this.getState(t.target)));o=o.replace(t.match,void 0===e?"":e)})),a.forEach((t=>{let e=this.root.findById(t.target),r=n(t.accessor(e&&e.data));o=o.replace(t.match,void 0===r?"":r)})),o}},onchangeMappings:function(t,e){this.disposeMappings(),P6.call(this)},onchangeData:function(t,e){this.state.persistent&&this.app.isViewMode&&this.app.dataStorage.save(this,t.data),P6.call(this,[!0])},buildMappings:function(){if(this._model.mappings)return!this._model.mappings instanceof Array?(N5("Mappings model is invalid (should be a Array) ..",this._model.mappings),void(this._mappings=[])):void(this._mappings=(this._model.mappings||[]).filter((t=>t.rule&&t.target)).map((t=>new M6(t,this))));this._mappings=[]},executeMappings:P6,disposeMappings:function(){this._mappings&&this._mappings.forEach((t=>t.dispose())),delete this._mappings},ondropfile:function(t,e){for(let r=0;r<t.length;r++)if(t[r].type.startsWith("image/"))return void this.set("fillStyle",{type:"pattern",image:e[r],fitPattern:!0})},transcoordS2P:function(t,e,r){if(!this.parent)return{x:t,y:e};var{rotation:n=0,scale:i={x:1,y:1}}=this.state;if(this.isLayer()){let r=this.state.translate,a=N6(t,e,void 0,n+this._delta.theta,i);return r&&(a.x+=r.x,a.y+=r.y),a}r=r||this.rotatePoint;const{theta:a=0,tx:o=0,ty:s=0,sx:c=1,sy:u=1}=this._delta||{},l=N6(t+o,e+s,r={x:r.x+o,y:r.y+s},n+a,i={x:i.x*c,y:i.y*u});return{x:l.x-(r.x*i.x-r.x),y:l.y-(r.y*i.y-r.y)}},transcoordP2S:function(t,e,r){if(!this.parent)return{x:t,y:e};var{rotation:n=0,scale:i={x:1,y:1}}=this.state;if(this.isLayer()){let r=this.state.translate,a=F6(t,e,r,n,i);return r&&(a.x-=r.x/(i?i.x:1),a.y-=r.y/(i?i.y:1)),a}var a=F6(t,e,r=r||this.rotatePoint,n,i);return{x:a.x+(r.x-r.x/i.x),y:a.y+(r.y-r.y/i.y)}},transcoordS2T:function(t,e,r){r=r||this.rootModel;var n=[];for(let t=this.parent;t&&t!==r;t=t.parent)n.push(t);var i=this.transcoordS2P(t,e);return n.forEach((t=>{let{scale:e}=t.model,r=t.bounds;if(e){let n=t.rotatePoint;i.x+=(n.x-r.left)*e.x,i.y+=(n.y-r.top)*e.y}else i.x+=r.left,i.y+=r.top;i=t.transcoordS2P(i.x,i.y)})),i},transcoordT2P:function(t,e,r){r=r||this.rootModel;var n=[];for(let t=this.parent;t&&t!==r;t=t.parent)n.splice(0,0,t);var i={x:t,y:e};return n.forEach((t=>{let{scale:e}=t.model;i=t.transcoordP2S(i.x,i.y);let r=t.bounds;if(e){let n=t.rotatePoint;i.x-=(n.x-r.left)/e.x,i.y-=(n.y-r.top)/e.y}else i.x-=r.left,i.y-=r.top})),i},transcoordT2S:function(t,e,r){var n=this.transcoordT2P(t,e,r);return this.transcoordP2S(n.x,n.y)},transcoordS2TR:function(t,e,r){r=r||this.rootModel;var n=this.transcoordS2T(t,e,r);return N6(n.x,n.y,void 0,(r.get("rotation")||0)+r._delta.theta)},transcoordS2O:function(t,e,r){var n=this.rootModel,i=this.transcoordS2T(t,e,n);return r.transcoordT2S(i.x,i.y,n)},transcoordC2S:function(t,e,r){if(!r)for(r=this;r&&!r.isLayer();)r=r.parent;var{translate:n={x:0,y:0},scale:i={x:1,y:1},rotation:a=0}=r.model,o=F6(t,e,n,a,i);return n&&(o.x-=n.x/(i?i.x:1),o.y-=n.y/(i?i.y:1)),r===this?o:this.transcoordT2S(o.x,o.y,r)},transcoordS2C:function(t,e,r){if(!r)for(r=this;r&&!r.isLayer();)r=r.parent;if(r!==this)var n=this.transcoordS2T(t,e,r);else n={x:t,y:e};var{translate:i={x:0,y:0},rotation:a=0,scale:o={x:1,y:1}}=r.model;return n=N6(n.x,n.y,void 0,a+r._delta.theta,o),i&&(n.x+=i.x,n.y+=i.y),n},_pre_draw:h8.prototype.prerender,_draw:h8.prototype.render,_post_draw:h8.prototype.postrender}),["rotatePoint","font","lineHeight","retention"].forEach((t=>h8.memoize(h8.prototype,t,!1))),["bounds","center","textBounds"].forEach((t=>h8.memoize(h8.prototype,t,!0))),h8.mixin(h8.prototype,j5.withEvent);class f8 extends h8{set rotationX(t){this.setState("rotationX",t)}get rotationX(){return this.getState("rotationX")}set rotationY(t){this.setState("rotationY",t)}get rotationY(){return this.getState("rotationY")}set rotationZ(t){this.setState("rotation",t)}get rotationZ(){return this.getState("rotation")}set zPos(t){this.setState("zPos",t)}get zPos(){return this.getState("zPos")}set depth(t){this.setState("depth",t)}get depth(){return this.getState("depth")}postrender(t){this.drawFill(t),this.drawStroke(t),super.postrender(t)}render(t){var e=this.drawPath,{round:r=0}=this.state;if(!(e.length<=1)){t.beginPath();for(var n=0;n<e.length;n++){const c=e[(n-1+e.length)%e.length],u=e[(n+e.length)%e.length],l=e[(n+1)%e.length];if(c.x===u.x&&c.y===u.y)continue;var i=0!==(s=Math.sqrt((c.x-u.x)*(c.x-u.x)+(c.y-u.y)*(c.y-u.y)))?Math.atan2(c.x-u.x,c.y-u.y):0,a=Math.sin(i)*Math.min(r,s/2)+u.x,o=Math.cos(i)*Math.min(r,s/2)+u.y;const h=r>0||0!==s?{x:a,y:o}:u;var s;i=0!==(s=Math.sqrt((l.x-u.x)*(l.x-u.x)+(l.y-u.y)*(l.y-u.y)))?Math.atan2(l.x-u.x,l.y-u.y):0,a=Math.sin(i)*Math.min(r,s/2)+u.x,o=Math.cos(i)*Math.min(r,s/2)+u.y;const f=r>0||0!==s?{x:a,y:o}:u;0==n?t.moveTo(h.x,h.y):t.lineTo(h.x,h.y),r>0&&t.quadraticCurveTo(u.x,u.y,f.x,f.y)}t.closePath()}}}function d8(t,e,r){return Math.max(0,Math.min(t,Math.min(r,e)/2))}var p8=t=>{var e=class extends t{contains(t,e){var{left:r,top:n,width:i,height:a,lineWidth:o=0}=this.state,s=o/2;return t<Math.max(r+i,r)+s&&t>Math.min(r+i,r)-s&&e<Math.max(n+a,n)+s&&e>Math.min(n+a,n)-s}set path(t){var e=t[0],r=t[2];this.set({left:e.x,top:e.y,width:r.x-e.x,height:r.y-e.y})}get path(){var{left:t=0,top:e=0,width:r=0,height:n=0}=this.state;return[{x:t,y:e},{x:t+r,y:e},{x:t+r,y:e+n},{x:t,y:e+n}]}get anchors(){return function(t){var{left:e,top:r,width:n,height:i}=t.bounds,a=e+n/2,o=r+i/2;return[{name:"TOP",position:{x:a,y:r}},{name:"RIGHT",position:{x:e+n,y:o}},{name:"BOTTOM",position:{x:a,y:r+i}},{name:"LEFT",position:{x:e,y:o}}]}(this)}render(t){var{round:e=0}=this.model,{left:r,top:n,width:i,height:a}=this.bounds;t.translate(r,n),t.beginPath(),(e=d8(e,i,a))>0?t.roundRect(0,0,i,a,e):t.rect(0,0,i,a),t.translate(-r,-n)}};return G5(e.prototype,"path",!1),e};const g8={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"textarea",label:"front-side-template",name:"frontSideTemplate",property:{language:"html"}},{type:"textarea",label:"back-side-template",name:"backSideTemplate",property:{language:"html"}},{type:"textarea",label:"style",name:"style",property:{language:"css"}}],help:"scene/component/info-window"};const v8=20;function y8(t,e){var r=t.split(/\s+/),n=r.indexOf(e);return-1!=n?r.splice(n,1):r.splice(-1,0,e),r.join(" ")}class m8 extends(p8(f8)){static get image(){return m8._image||(m8._image=new Image,m8._image.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAMAAACahl6sAAAAY1BMVEVHcEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADIAbxiAAAAIHRSTlMA+gPshCwwWFzYCeLRm7QRG6rLeDZI9JOJJDtjb1HAf1sAT80AAAQQSURBVHhe7MCBAAAAAMKw/KkzOMG2BAAAAKeu3lUohIEggO7jQi5qHqpgwML5/6+0F0y02z31FlvMMLKt86QMQ1ined2Evih1hFFjLfRWjgzDOGZ6JSiM00B9EuHALtQxJLiQBmqSBCeSUEuEGzs1BDjSaHxWOKK5Eyz/4SoMV/hp4+vtcPkdwZD/udwevNg7t1xXYRiKmkB7C+ENlPLq8fxHeX+RGjWQ1D45ldcIulBIvCvYJGBEadyTzxAcfY57NBjpLScOO/bzugcTHe7IMwiSLMcdHZhocMcMgTLjjgZM7F1bCJZ2v27ARGzYDwIk2Z+JYGJ/iiwQLMv+JAEThjkmRG64Q0Q+gIiIiIiIiIiIyFy0KRFt0bOJZAWSUigmkQaJaXhENiRnYBEpkZySRSRGcmIWEaQnYhHRSI5mESmQnIJFZIqQmGhiEYEbEnPjGlEGjYTogW/WUkOXENENSqZfEXmDiIiIiIiIiIiIiIiIiIiImq5ETIpRpBpjJCMeKy6Ri0ZS9MQjkmkkJs1YRDokp2MRyZGclkUkQnIiEQltaX3Lzb6yiGTpl2y/avqSAxGgelCOKI+Kc2isL0TUSsZ4EREREREREREREREREREREfnIQzXrNWSRTeNxnlOwIgueIr6AAyE+CpiqMEUK71IDO4E+LluEKYKnKcMUifEsTZgiJZ5lDVNkwJPcqzBFoPF/HplfxL/w6b4EPGv1h18Weya1TL8iIiIeiIiIiIiIiEjkPefxV+5YA9PPHylB+u5aqgZ39H+jKOxrqtu+pkzvr9YbzoZ6w2OFkzcrA3yE4WZlSSyFk54VoA/wR43+FaD+r9w32QdWvgvjp2ty2xq8qHPHmtyPFxfrK3hw1ejERlAlfR/Ame2OTow05d4rOLLSlHtDVhI0uRO01JeZ405op6zgNNXT+bIRfpIgn+AkU4pOxBscohojdCHu4RRzjC5EYwVHqRONDkSnEvK/CB3QSU32IRW3ZPnj9iEVoGCNTLVrh8ia1x+6wq8xvB5mz8pxu7oPwIn9lcR0AiuX1+1KX+BXqdvXzWsAC0NsGjzZsS/2Bd6yRA5RgIHkXNhSD3whASZ8rrB9mItuEAizac0fDlHxDMEwpQfD1tW4y3Hjfy5s9nOHH3uwWA+EqEJBWCjoTL/S5toBB/7hu6zer74NgqSP39zJU+qQX3ix763mHTqvIVRUVprCljlElRkEjBqNYevH8veBJ2xhiyhE8YctmhDFH7ZoQhR/2KIJUfxhiyRE8YctmhDFH7ZoQhR/2OIJUfxhC9Ppf/t1jgJACERRsHGyYRZB0Ujvf0xD8w6kP7y6RZmgf/oTFTtbbzJVxZWo2Nlqw6TVy5GowNl6ssm7v50obamfSxQAAAAAAAsKLM15fb3vpQAAAABJRU5ErkJggg=="),m8._image}static toggle(t,e,r,n){if(e){var i=t.root.findById(e);i?i._findInfoWindowByComponent(t)?m8.hide(t,e):m8.show(t,e,r,n):console.warn("InfoWindow Not Found.",e)}else console.warn("InfoWindow not defined.")}static hide(t,e){if(e){var r=t.root.findById(e);r?r._removeInfoWindow(t):console.warn("InfoWindow Not Found.",e)}}static show(t,e,r,n){if(e){var i=t.root.findById(e);if(i){if(!i._findInfoWindowByComponent(t)){var{frontSideTemplate:a="",backSideTemplate:o=""}=i.model,s=[a,o].filter((t=>String(t).trim()));if(s=s.map((t=>h8.template(function(t,e,r){return(e||r?['<div class="info-window-btns">',e?'<button class="closable">&#88</button>':"",r?'<button class="flipable">&#8652</button>':"","</div>"]:[]).concat(['<div class="info-window-content">',t,"</div>"]).join("")}(t,!r,2==s.length)))),0!=s.length){var c='\n.flip {\n backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n -ms-backface-visibility: hidden;\n -o-backface-visibility: hidden;\n -webkit-backface-visibility: hidden;\n border-radius: 7px;\n height: auto;\n font: normal 14px helvetica, arial, san serif;\n position: absolute;\n opacity:.9;\n transform-origin: 50% 50% 0px;\n -moz-transform-origin: 50% 50% 0px;\n -ms-transform-origin: 50% 50% 0px;\n -o-transform-origin: 50% 50% 0px;\n -webkit-transform-origin: 50% 50% 0px;\n transition: all 2s;\n -moz-transition: all 2s;\n -ms-transition: all 2s;\n -o-transition: all 2s;\n -webkit-transition: all 2s;\n min-width: 100px;min-height:50px;\n background-color:#3e424e;\n box-shadow: 2px 3px 2px 0px rgba(0,0,0,0.15);\n}\n\n#side-1 {\n transform: rotateY( 0deg );\n -moz-transform: rotateY( 0deg );\n -ms-transform: rotateY( 0deg );\n -o-transform: rotateY( 0deg );\n -webkit-transform: rotateY( 0deg );\n}\n.flip:after{\n content:"";\n display:block;\n position: absolute;\n opacity:.9;\n width: 0;\n height: 0;\n}\n.flip.arrow-top:after{\n left:45%;\n top:-17px;\n border-left:10px solid transparent;\n border-bottom:18px solid #323b44;\n border-right:10px solid transparent;\n}\n.flip.arrow-right:after{\n left:100%;\n top:48%;\n border-top:10px solid transparent;\n border-left:18px solid #323b44;\n border-bottom:10px solid transparent;\n}\n.flip.arrow-bottom:after{\n left:45%;\n top:100%;\n border-left:10px solid transparent;\n border-top:18px solid #323b44;\n border-right:10px solid transparent;\n}\n.flip.arrow-left:after{\n right:100%;\n top:48%;\n border-top:10px solid transparent;\n border-right:18px solid #323b44;\n border-bottom:10px solid transparent;\n}\n\n#side-2 {\n transform: rotateY( 180deg );\n -moz-transform: rotateY( 180deg );\n -ms-transform: rotateY( 180deg );\n -o-transform: rotateY( 180deg );\n -webkit-transform: rotateY( 180deg );\n}\n\n.flip-side-1 {\n transform: rotateY( 0deg ) !important;\n -moz-transform: rotateY( 0deg ) !important;\n -ms-transform: rotateY( 0deg ) !important;\n -o-transform: rotateY( 0deg ) !important;\n -webkit-transform: rotateY( 0deg ) !important;\n}\n\n.flip-side-2 {\n transform: rotateY( 180deg ) !important;\n -moz-transform: rotateY( 180deg ) !important;\n -ms-transform: rotateY( 180deg ) !important;\n -o-transform: rotateY( 180deg ) !important;\n -webkit-transform: rotateY( 180deg ) !important;\n}\n\n.info-window-btns{\n position:absolute;\n top:-18px;\n right:5px;\n overflow:hidden;\n}\n.info-window-content{\n padding:10px;\n color:#efefef;\n font-size:13px;\n line-height:1.4;\n}\n.info-window-btns button{\n width:40px;height:40px;\n float:right;\n border:0;\n border-radius:50%;\n background-color:#2a7da1;\n margin-right:3px;\n text-align:center;\n cursor:pointer;\n font-size:35px;\n color:#fff;\n line-height:0;\n}\n.info-window-btns button:hover{\n background-color:#60bb23;\n}\n'+i.get("style"),{left:u,top:l}=t.bounds,{x:h,y:f}=n?t.rootModel.transcoordC2S(n.x,n.y):t.transcoordS2T(u,l);u=h,l=f;var d=document.createElement("span");d.style.position="absolute";var p=document.createElement("style");if(p.type="text/css",p.appendChild(document.createTextNode(c)),d.appendChild(p),s[0]){var g=document.createElement("div");g.id="side-1",g.className="flip",g.style.display="inline-block",g.innerHTML=s[0](t)}if(s[1]){var v=document.createElement("div");v.id="side-2",v.className="flip",v.style.display="inline-block",v.innerHTML=s[1](t)}t6.forEach((function(t){d.addEventListener(t,(function(t){t.stopPropagation()}))})),e6.forEach((function(t){d.addEventListener(t,(function(t){t.stopPropagation()}))}));var y=t.root.model_layer.overlay;if(g&&d.appendChild(g),v&&d.appendChild(v),y.appendChild(d),i._addInfoWindow(t,d,p),g){let r=g.querySelector(".info-window-btns > .flipable");r&&r.addEventListener("click",(function(t){t.preventDefault(),v.className=y8(v.className,"flip-side-1"),g.className=y8(g.className,"flip-side-2")}),!1);let n=g.querySelector(".info-window-btns > .closable");n&&n.addEventListener("click",(function(r){r.preventDefault(),m8.hide(t,e)}),!1)}if(v){let r=v.querySelector(".info-window-btns > .flipable");r&&r.addEventListener("click",(function(t){t.preventDefault(),v.className=y8(v.className,"flip-side-1"),g.className=y8(g.className,"flip-side-2")}),!1);let n=v.querySelector(".info-window-btns > .closable");n&&n.addEventListener("click",(function(r){r.preventDefault(),m8.hide(t,e)}),!1)}var m=g.offsetWidth,b=g.offsetHeight;window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight;var x=t.rootModel.target.getBoundingClientRect(),w=[];g&&w.push(g),v&&w.push(v);var A={x:u,y:l},_=t.transcoordS2C(A.x,A.y);if(_.x+m/2+x.left<x.right&&_.x-m/2>x.left){if(b+v8<_.y)return d.style.marginLeft=A.x-m/2+"px",d.style.marginTop=A.y-b-v8+"px",void w.forEach((t=>t.className+=" arrow-bottom"));if(_=t.transcoordS2C(A.x,A.y+b+v8),x.bottom>_.y+x.top)return d.style.marginLeft=A.x-m/2+"px",d.style.marginTop=A.y+v8+"px",void w.forEach((t=>t.className+=" arrow-top"))}if((_=t.transcoordS2C(A.x,A.y)).x-(m+v8)>x.left)return d.style.marginLeft=A.x-m-v8+"px",d.style.marginTop=A.y-b/2+"px",void w.forEach((t=>t.className+=" arrow-right"));d.style.marginLeft=A.x+v8+"px",d.style.marginTop=A.y-b/2+"px",w.forEach((t=>t.className+=" arrow-left"))}}}else console.warn("InfoWindow Not Found.",e)}else console.warn("InfoWindow not defined.")}dispose(){this.infoWindows.map((t=>t.component)).forEach((t=>this._removeInfoWindow(t))),super.dispose()}get infoWindows(){return this._windows||(this._windows=[]),this._windows}_findInfoWindowByComponent(t){return this.infoWindows.find((e=>e.component===t))}_addInfoWindow(t,e,r){this._findInfoWindowByComponent(t)||this._windows.push({component:t,window:e,styleElement:r})}_removeInfoWindow(t){var e=this._findInfoWindowByComponent(t);if(!e)return;let r=e.window;r&&r.parentNode.removeChild(r);var n=this.infoWindows.lastIndexOf(e);this.infoWindows.splice(n,1)}render(t){var{left:e,top:r,width:n,height:i}=this.bounds;t.beginPath(),this.drawImage(t,m8.image,e,r,n,i)}get hasTextProperty(){return!1}get nature(){return g8}}h8.register("info-window",m8);var b8={};var x8={list:function(){return{...b8}},register:function(t,e){b8[t]=e},unregister:function(t){delete b8[t]},get:function(t){if(t){var e=b8[t];return e||N5("Layout Not Found - ",t),e}}},w8={reflow:function(t,e){this.drawables(t).filter((t=>t.isHTMLElement())).forEach((t=>t.reposition()))},capturables:function(t){return t.components},drawables:function(t){return t.app&&!t.app.isViewMode?t.components:t.components.filter((t=>!t.hidden))},isStuck:function(t){return!1},ABSOLUTE:!0};x8.register("html-absolute",w8);const A8=["run","goto","goto-playlist","goto-playlist","link-open","link-move","route-page","start-scenario","run-scenario"],_8="center",k8=new WeakMap;function S8(t){const e=t.root;var r=k8.get(e);if(!r)return;if(e===t){for(var n in r)S8(n[0]);return void k8.delete(e)}const i=r.findIndex((e=>e[0]===t));if(-1===i)return;const a=r[i][1];var o=a.div.parentNode;o&&o.removeChild(a.div);var s=a.scene;s.target=null,s.release&&s.release(),r.splice(i,1)}class E8{static hideAll(t){(k8.get(t)||[]).forEach((([t,e])=>S8(t)))}static hide(t){S8(t)}static show(t,e,r={}){var{data:n,location:i=_8,modal:a=!1,closable:o=!0,output:s=!0}=r,c=t.app.refProvider;c&&c.get(e,!0).then((e=>{var r=document.createElement("div"),c=r.style;if(a){var{width:u,height:l}=t.rootModel.bounds;c.position="fixed",c.zIndex=1,c.left=0,c.top=0,c.width=u+"px",c.height=l+"px",c.overflow="auto",c.backgroundColor="rgba(0,0,0,0.3)"}else c.position="absolute",c.display="inline-block";r.innerHTML=!a&&o?'\n<div class="popup-content">\n</div>\n<button class="closable-1945">&#88</button>\n':'\n<div class="popup-content">\n</div>\n';var h=r.querySelector(".popup-content"),{width:u,height:l}=e.root.model;h.style.width=u+"px",h.style.height=l+"px";var f=document.createElement("style");f.type="text/css",f.appendChild(document.createTextNode("\nbutton.closable-1945 {\n width: 20px;\n height: 20px;\n right: 0px;\n top: 0px;\n padding: 0;\n margin: 0;\n border: 0px;\n text-align: center;\n cursor: pointer;\n font-size: 12px;\n color: black;\n position: absolute;\n background-color: transparent;\n}\n\nbutton.closable-1945:hover {\n background-color:#60bb23;\n}\n")),r.appendChild(f),A8.forEach((r=>{e.on(r,((...e)=>{t.trigger(r,...e)}))}));var d=r.querySelector(".popup-content");t6.forEach((function(t){d.addEventListener(t,(function(t){t.stopPropagation()}))})),e6.forEach((function(t){d.addEventListener(t,(function(t){t.stopPropagation()}))})),r.addEventListener("click",(e=>{e.target===r&&o&&E8.hide(t)})),t6.forEach((function(t){r.addEventListener(t,(function(t){t.stopPropagation()}))})),e6.forEach((function(t){r.addEventListener(t,(function(t){t.stopPropagation()}))})),t.root.model_layer.overlay.appendChild(r),function(t,e,r){const n=t.root;if(n!==t){S8(t);var i=k8.get(n)||[];i=[...i,[t,{div:e,scene:r}]],k8.set(n,i)}}(t,r,e),r.querySelector(".closable-1945")?.addEventListener("click",(function(e){e.preventDefault(),E8.hide(t)}),!1),r.addEventListener("close-scene",(e=>{e.preventDefault(),e.stopPropagation(),E8.hide(t),s&&(t.data=e.detail)}),!1),e.target=h,e.data=n||t.data,e.fit("both");var p=function(t,e,r,n=_8){var i=t.bounds,a=e.bounds,o=Math.max(i.width/4-a.width/2,20),s=Math.min(3*i.width/4+a.width/2,i.width-20)-a.width,c=Math.max(i.height/4-a.height/2,20),u=Math.min(3*i.height/4+a.height/2,i.height-20)-a.height;switch(n){case"auto":return{x:r.x<i.width/2?s:o,y:r.y<i.height/2?u:c};case"left-top":return{x:o,y:c};case"right-top":return{x:s,y:c};case"left-bottom":return{x:o,y:u};case"right-bottom":return{x:s,y:u};default:return{x:(i.width-a.width)/2,y:(i.height-a.height)/2}}}(t.rootModel,e.root,t.center,i);a?(h.style.left=p.x+"px",h.style.top=p.y+"px",h.style.width=u+"px",h.style.height=l+"px"):(r.style.left=p.x+"px",r.style.top=p.y+"px",r.style.width=u+"px",r.style.height=l+"px")}),(function(t){console.error("cannot fetch board: "+e,t)}))}}var M8={reflow:function(t,e){},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((t=>!t.hidden)):t.components},isStuck:function(t){return!1},ABSOLUTE:!0};function T8(t){var e=t.components.filter((t=>!t.hidden)),r=t.getState("layoutConfig")||{},n=e[r&&r.activeIndex||0];return n&&[n]||[]}x8.register("absolute",M8);var P8={reflow:function(t){var e=t.bounds,r=t.getState("layoutConfig")||{},n={left:0,top:0,width:e.width,height:e.height};t.forEach(((t,e)=>{let i=e!=(r.activeIndex||0);t.bounds=n,t.setState("rotation",0),t.element&&(t.element.style.visibility=i?"hidden":"visible")}))},capturables:function(t){return T8(t)},drawables:function(t){return T8(t)},isStuck:function(t){return!0}};function O8(t){var e=t.getState("layoutConfig");return e&&e.weight||1}x8.register("card",P8);var I8={reflow:function(t){var e=this.drawables(t),r=t.get("padding")||{},n=e.reduce(((t,e)=>t+O8(e)),0),i=t.bounds,a=n>0?(i.width-((r.left||0)+(r.right||0)))/n:i.width,o=i.height-((r.top||0)+(r.bottom||0)),s=0;e.forEach((t=>{let e=O8(t),n=t.get("margin")||{};t.bounds={left:a*s+(r.left||0)+(n.left||0),top:0+(r.top||0)+(n.top||0),width:e*a-((n.left||0)+(n.right||0)),height:o-((n.top||0)+(n.bottom||0))},t.setState("rotation",0),s+=e}))},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((t=>!t.hidden)):t.components},isStuck:function(t){return!0}};function R8(t){var e=t.getState("layoutConfig");return e&&e.weight||1}x8.register("linear-horizontal",I8);var C8={reflow:function(t){var e=this.drawables(t),r=t.getState("padding")||{},n=e.reduce(((t,e)=>t+R8(e)),0),i=t.bounds,a=n>0?(i.height-((r.top||0)+(r.bottom||0)))/n:i.height,o=i.width-((r.left||0)+(r.right||0)),s=0;e.forEach((t=>{let e=R8(t),n=t.getState("margin")||{};t.bounds={left:0+(r.left||0)+(n.left||0),top:a*s+(r.top||0)+(n.top||0),width:o-((n.left||0)+(n.right||0)),height:e*a-((n.top||0)+(n.bottom||0))},t.setState("rotation",0),s+=e}))},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((t=>!t.hidden)):t.components},isStuck:function(t){return!0}};x8.register("linear-vertical",C8);var j8={reflow:function(t){var e=t.getState("layoutConfig"),r=e&&e.columns||t.getState("columns"),n=e&&e.rows||t.getState("rows"),i=e&&e.widths||t.getState("widths"),a=e&&e.heights||t.getState("heights"),o=i?i.filter(((t,e)=>e<r)).reduce(((t,e)=>t+e),0):r,s=a?a.filter(((t,e)=>e<n)).reduce(((t,e)=>t+e),0):n,c=t.textBounds,u=t.getState("paddingLeft")||0,l=t.getState("paddingTop")||0,h=c.width/o,f=c.height/s,d=0,p=0;t.components.forEach(((t,e)=>{let n=i?i[e%r]:1,o=a?a[Math.floor(e/r)]:1,s=t.colspan||1,c=0;for(;--s>0;)c+=i?i[(e+s)%r]:1;let g=t.rowspan||1,v=0;for(;--g>0;)v+=a?a[Math.floor(e/r)+g]:1;t.bounds={left:u+d,top:l+p,width:h*(n+c),height:f*(o+v)},t.setState("rotation",0),e%r==r-1?(d=0,p+=o*f):d+=n*h}))},capturables:function(t){return t.components.filter((t=>!t.merged))},drawables:function(t){return t.components.filter((t=>!t.merged&&!t.hidden))},isStuck:function(t){return!0},keyNavigate:function(t,e,r){var n=t.getState("layoutConfig"),i=n&&n.columns||t.getState("columns"),a=n&&n.rows||t.getState("rows"),{row:o,column:s}=t.getRowColumn(e);switch(r.code){case"ArrowUp":if(o>0)return t.getAt((o-1)*i+s);break;case"ArrowDown":if(o<a-1)return t.getAt((o+1)*i+s);break;case"ArrowRight":if(s<i-1)return t.getAt(o*i+s+1);break;case"ArrowLeft":if(s>0)return t.getAt(o*i+s-1);break;default:return e}},joinType:!0};x8.register("table",j8);const D8=new Image;D8.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAclBMVEVHcEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC0BbqFAAAAJXRSTlMAgAP3VSI6/g9fBk5FavJsMrariSjzPnO1enRRL5SMhmOOWB9keFTE0wAAANxJREFUOMutk9kWgyAMRLFuiLjUtdp9yf//YglVsQXz1HniMPcEMgHGvpX2O0Ypi+EgCL+IAShC+wB7QfubRDT7AFcnUPoLMLiP4PyJbsb55i05AgnR5iaQDsICgtH0cotBWoAP1c7kC6kFxEseCfZfB6gEgbNeBrira2QmH1uVYCXlA3is8UmgUCPIyQJKEmu8QtQJN0e9DPXVpzG2G216c1CqRmcBOdxXk07sWUSPv07zo0amCNQycv+NzmR6cRcwmfbuI7p2nZ/z4be0P83Foz6vIkhfZXr82XgDlZsspIq4peUAAAAASUVORK5CYII=";var L8=t=>class extends t{postrender(t){super.postrender(t),this.app.isEditMode&&this._focused&&this.showMoveHandle&&this._draw_move_handle(t)}_draw_move_handle(t){var{left:e,top:r,width:n}=this.bounds;t.save(),t.beginPath(),t.globalAlpha=1,t.rect(e+n,r,25,25);t.fillStyle="rgba(235, 235, 235, 1)",t.fill(),t.drawImage(D8,e+n+3.75,r+3.75,17.5,17.5),t.closePath(),t.restore()}contains(t,e){var r=super.contains(t,e);if(this.app.isViewMode)return r;if(!r){var{left:n,top:i,width:a,height:o}=this.bounds,s=n+a;this.showMoveHandle&&(r=t<Math.max(s+25,s)&&t>Math.min(s+25,s)&&e<Math.max(i+25,i)&&e>Math.min(i+25,i))}return this._focustd!==r&&(this._focused=r,this.invalidate()),r}};const z8=[];class B8 extends(L8(p8(h8))){constructor(t,e){super(t,e),this._components=[]}replaceRefids(t){this.components.forEach((e=>e.replaceRefids(t)))}get showMoveHandle(){return!0}get showOverflow(){return!1}dispose(){this.components.slice().forEach((t=>t.dispose())),super.dispose()}isContainer(){return!0}containable(t){return t.isDescendible(this)}get hasTextProperty(){return!1}get components(){return this._components}get focusible(){return!0}get layout(){return x8.get(this.get("layout"))||M8}reflow(){this.layout.reflow(this),this.components&&this.components.forEach((t=>{t.isContainer()&&t.reflow()}))}get hierarchy(){var t=super.hierarchy;return this.components&&(t.components=this.components.map((t=>t.hierarchy))),t}addComponent(t,e=!1){var r=t.parent;if(r){if(this===r)return;r.removeComponent(t,e)}var n=this._components.push(t)-1;t.parent=this,t.added(this),e||this.trigger("add",this,t,n),t.delegate_on(this),e||t.trigger("added",this,t,n),this.root&&this.root.isReady&&t.ready()}removeComponent(t,e=!1){var r=this._components.indexOf(t);-1!=r&&(this._components.splice(r,1),t.parent=null,t.removed(this),e||(this.trigger("remove",this,t),t.trigger("removed",this,t)),t.delegate_off(this))}insertComponentAt(t,e,r=!1){var n=t.parent;n&&n.removeComponent(t,r);var i=this._components.splice(0,e);this._components=i.concat(t,this._components),e=this._components.indexOf(t),t.parent=this,t.added(this),r||this.trigger("add",this,t,e),t.delegate_on(this),r||t.trigger("added",this,t,e)}add(t,e=!1){return t instanceof Array?(t.forEach((t=>{-1==this._components.indexOf(t)&&this.addComponent(t,e)})),this):this.add.call(this,[t],e)}remove(t,e=!1){return t instanceof Array?this._components?(t.forEach((t=>{this.removeComponent(t,e)})),this):this:this.remove.call(this,[t],e)}getAt(t){if(this._components)return this._components[t]}forEach(t,e){this._components&&this._components.forEach(t,e)}traverse(t,e){t.call(e,this),this._components&&this._components.forEach((r=>{r.isContainer()?r.traverse(t,e):t.call(e,r)}))}indexOf(t){return(this._components||z8).indexOf(t)}size(){return(this._components||z8).length}moveChildAt(t,e){var r=this.indexOf(e);if(-1!=r){var n=this._components.splice(0,r),i=this._components.splice(1);this._components=n.concat(i),t=Math.max(0,t),t=Math.min(t,this._components.length),n=this._components.splice(0,t),this._components=n.concat(e,this._components)}}moveChildForward(t){var e=this.indexOf(t);-1!=e&&e!=this.size()-1&&(this._components[e]=this._components[e+1],this._components[e+1]=t)}moveChildBackward(t){var e=this.indexOf(t);-1!=e&&0!=e&&(this._components[e]=this._components[e-1],this._components[e-1]=t)}moveChildToFront(t){var e=this.indexOf(t);if(-1!=e&&e!=this.size()-1){var r=this._components.splice(0,e),n=this._components.splice(1);this._components=r.concat(n,this._components)}}moveChildToBack(t){var e=this.indexOf(t);if(-1!=e&&0!=e){var r=this._components.splice(0,e),n=this._components.splice(0);this._components=this._components.concat(r,n)}}symmetryX(t){super.symmetryX(t),this.components.map((t=>{t.symmetryX(0)}))}findAll(t,...e){if("string"==typeof t)return h6(t,this,e[0]||this);if("function"==typeof t){var r=[];for(let n=this.components.length-1;n>=0;n--){let i=this.components[n].findAll(t,...e);i&&(r=r.concat(i))}return t(this,...e)&&r.push(this),r}}findFirst(t,...e){if("string"==typeof t)return h6(t,this,e[0])[0];if("function"==typeof t){for(let n=this.components.length-1;n>=0;n--){var r=this.components[n].findFirst(t,...e);if(null!=r)return r}return t(this,...e)?this:null}}findById(t){return this.root.findById(t)}findByRefid(t){return this.root.findByRefid(t)}contains(t,e){var r=super.contains(t,e);if(!r){var{left:n,top:i,width:a,height:o}=this.state;r=t<Math.max(n+a,n)&&t>Math.min(n+a,n)&&e<Math.max(i+o,i)&&e>Math.min(i+o,i)}return r}capture(t,e,r){var n=this.transcoordP2S(t,e);if(!this.contains(n.x,n.y))return!1;var i=this.bounds;n.x-=i.left,n.y-=i.top;var a=this.layout.capturables(this);for(let t=a.length-1;t>=0;t--){var o=a[t].capture(n.x,n.y,r);if(o)return o}return this.capturable&&!r?.(this)&&this}capturePath(t,e){if(e){if(e.indexOf(this)>-1)return!1;for(let t=0;t<e.length;t++)if(!this.containable(e[t]))return!1}var r=[],{left:n,top:i,width:a,height:o}=this.bounds;for(let e=0;e<t.length;e++){let s=this.transcoordP2S(t[e].x,t[e].y);if(s.x<n||s.x>n+a||s.y<i||s.y>i+o)return!1;s.x-=n,s.y-=i,r.push(s)}let s=this.layout.capturables(this);for(let t=s.length-1;t>=0;t--){let n=s[t];if(!n.isContainer())continue;let i=n.capturePath(r,e);if(i)return i}return this.focusible&&this}render(t){var{left:e=0,top:r=0,width:n,height:i}=this.bounds;t.beginPath(),t.rect(e,r,n,i),t.closePath(),this.drawFill(t),this.drawStroke(t)}postrender(t){const e=this.layout.drawables(this);if(e.length>0){var{left:r=0,top:n=0,width:i,height:a}=this.bounds;t.save(),this.showOverflow||(t.beginPath(),t.rect(r,n,i,a),t.clip(),t.closePath());var{top:n,left:r}=this.state;t.translate(r,n),e.forEach((e=>{e.draw(t)})),t.translate(-r,-n),t.restore()}super.postrender(t)}trim(){this.components.forEach((t=>{t.trim()})),super.trim()}}["layout"].forEach((t=>h8.memoize(B8.prototype,t,!1)));class F8 extends B8{constructor(t,e){super(t,e),t.translate=t.translate||{x:0,y:0},this._draw_reserved=!1,this.__draw__=()=>{this._draw_reserved=!1,this.trigger("redraw"),this.reflow(),this.draw()},this.throttle_render=()=>{this._draw_reserved||requestAnimationFrame(this.__draw__),this._draw_reserved=!0}}fitSize(t,e,r,n){if(this.target){if(e){let t=getComputedStyle(this.target);r=r||(t?parseFloat(t.getPropertyValue("width")):this.target.clientWidth),n=n||(t?parseFloat(t.getPropertyValue("height")):this.target.clientHeight)}else r=this.model.width,n=this.model.height;"CANVAS"==t.tagName&&(t.setAttribute("width",r*$5),t.setAttribute("height",n*$5)),t.style.width=r+"px",t.style.height=n+"px"}}resize(){this.fitSize(this.element,!0)}isLayer(){return!0}get showOverflow(){return this.app.isEditMode}get anchors(){}createElement(){var t=h8.createCanvas(1,1);return t.style.position="absolute",t}get target(){return this._target}set target(t){this._target&&this.element&&this._target.removeChild(this.element),this._target=t,t&&(this.element||(this.element=this.createElement()),this.resize(),t.appendChild(this.element))}get canvas(){return this.element}dispose(){super.dispose(),this.target=null,this.element=null}get selected(){return this.root.selected}set selected(t){this.root.selected=t}get hasSameParentForAllSelected(){return this.root.hasSameParentForAllSelected}get focused(){return this.root.focused}set focused(t){this.root.focused=t}getContext(){return this._context2D||(this._context2D=this.canvas&&this.canvas.getContext("2d")),this._context2D}draw(t){this.canvas&&(t=t||this.getContext())&&super.draw(t)}prerender(t){var{translate:e,scale:r={x:1,y:1},rotation:n}=this.model;t.clearRect(0,0,t.canvas.width,t.canvas.height),e&&t.translate(e.x*$5,e.y*$5),t.scale(r.x*$5,r.y*$5),n&&t.rotate(n)}get rotatePoint(){return{x:0,y:0}}contains(t,e){return!1}invalidate(){this.throttle_render()}move(t){var e=this.get("translate")||{x:0,y:0};this.set({translate:{x:e.x+t.x,y:e.y+t.y}})}centerTo(t,e){const r=t.rootModel.transcoordC2S(this.canvas.clientWidth/2,this.canvas.clientHeight/2),{x:n,y:i}=t.center,{x:a,y:o}=t.transcoordP2S(n,i),{x:s,y:c}=t.transcoordS2T(a,o),{x:u,y:l}=t.rootModel.get("translate"),{x:h,y:f}=t.rootModel.get("scale");e?a4({step:function(e){t.rootModel.set({translate:{x:u+(r.x-s)*h*e,y:l+(r.y-c)*f*e}})},duration:1e3,delta:"circ",ease:"in"}).start():t.rootModel.set({translate:{x:u+(r.x-s)*h,y:l+(r.y-c)*f}})}}const N8={x:1,y:1},U8={x:0,y:0};class Y8 extends F8{constructor(t,e){super(t,e)}dispose(){super.dispose(),delete this._canvas,delete this._overlay}contains(t,e){return!0}isRootModel(){return!0}get stuck(){return!0}get layout(){return w8}get overlay(){if(!this._overlay){var t=document.createElement("div");t.style.position="absolute",t.style.width=0,t.style.height=0,t.style.overflow="initial",t.style["user-select"]="none",t.style["transform-origin"]="top left",this.element&&this.element.appendChild(t),this._overlay=t,this._repositionOverlay()}return this._overlay}createElement(){var t=document.createElement("div");return t.style.position="absolute",t.style["user-select"]="none",t.style.overflow="hidden",this._canvas=h8.createCanvas(1,1),this._canvas.style.position="absolute",t.appendChild(this._canvas),this._overlay&&t.appendChild(this._overlay),t}resize(){if(this.target){var{width:t,height:e,fitMode:r}=this.model;this.root.fitMode?r=this.root.fitMode:r||(r="ratio");try{var n=getComputedStyle(this.target)}catch(t){return void console.error(t,this.target)}var i=n?parseFloat(n.getPropertyValue("width")):this.target.clientWidth,a=n?parseFloat(n.getPropertyValue("height")):this.target.clientHeight;switch(r){case"both":case"ratio":break;case"width":a=e*i/t;break;case"height":i=t*a/e;break;default:i=Math.max(t,i),a=Math.max(e,a)}switch(this.fitSize(this.canvas,!0,i,a),r){case"ratio":case"both":break;case"width":this.element.style.overflowX="hidden",this.element.style.overflowY="auto";break;case"height":this.element.style.overflowX="auto",this.element.style.overflowY="hidden";break;default:this.element.style.overflowX=i>t?"hidden":"auto",this.element.style.overflowY=a>e?"hidden":"auto"}this.fitSize(this.element,!0)}}get canvas(){return this._canvas}get MPP(){var{scale:t={x:1,y:1},unit:e}=this.model;switch(e){case"mm":case"cm":return 1/this.app.PPM/t.x;case"in":return 1/this.app.PPI/t.x;default:return 1/t.x}}capturePath(t,e){var r=this.layout.capturables(this);for(let n=r.length-1;n>=0;n--){let i=r[n];if(!i.isContainer())continue;let a=i.capturePath(t,e);if(a)return a}return!1}get eventMap(){return{"(self)":{"(all)":{change:this._onchanged_all,mouseenter:this._onmouseenter_all,mouseleave:this._onmouseleave_all,click:this._onclick,mousedown:this._onmousedownup,mouseup:this._onmousedownup,touchstart:this._onmousedownup,touchend:this._onmousedownup}}}}closeScene(t){requestAnimationFrame((()=>this.overlay.dispatchEvent(new CustomEvent("close-scene",{bubbles:!0,composed:!0,detail:t}))))}_repositionOverlay(){var t=this._overlay;if(t){var{translate:e=U8,scale:r=N8,rotation:n=0}=this.model,{left:i,top:a,width:o,height:s}=this.bounds;t.style.left=i+"px",t.style.top=a+"px";var c=`rotate(${n}rad) scale(${r.x}, ${r.y}) perspective(1px)`;t.style["margin-left"]=e.x+"px",t.style["margin-top"]=e.y+"px",["-webkit-","-moz-","-ms-","-o-",""].forEach((e=>{t.style[e+"transform"]=c}))}}onchange(t){var e=this._model;delete e.id,delete e.text,delete e.class,this._repositionOverlay()}_onchanged_all(t,e,r){this.invalidate()}_onmouseenter_all(t,e){if(t.stopPropagation(),this.app&&!this.app.isEditMode&&e){var r=e.origin;if(!(r instanceof Y8)&&r.model.event&&r.model.event.hover&&!r.hidden){var n=r.model.event.hover;n&&this._doEventAction(n,r,!0,t)}}}_onmouseleave_all(t,e){if(t.stopPropagation(),e){var r=e.origin;if(this.app&&!this.app.isEditMode){var n=r.model.event&&r.model.event.hover;n&&this._doEventAction(n,r,!1,t)}}}_onclick(t,e){if(t.stopPropagation(),!this.app.isEditMode&&e){var r=e.origin,n=r.model.event?.tap;n&&this._doEventAction(n,r,!0,t)}}_onmousedownup(t,e){if(t.stopPropagation(),!this.app.isEditMode&&e){var r=e.origin,n=r.model.event?.tap;n&&n.pressed&&this._doMouseDownUpEventAction(n,r,"mousedown"==t.type||"touchstart"==t.type,t)}}_doMouseDownUpEventAction(t,e,r,n){var{pressed:i=!1}=t;i&&(r?function(t){if(!t.hasOwnProperty("_backupShadow")){var e=t.get("shadow");t._backupShadow=e;var{left:r=0,top:n=0}=e||{};t.delta("tx",r),t.delta("ty",n),t.set("shadow",{})}}(e):function(t){t.hasOwnProperty("_backupShadow")&&(t.delta("tx",0),t.delta("ty",0),t.set("shadow",t._backupShadow),delete t._backupShadow)}(e))}_doEventAction(t,e,r,n){var{action:i,target:a,value:o,emphasize:s=!1,restore:c=!1,pressed:u=!1,options:l}=t;if(a&&(a=e.access(a)),o&&(o=e.access(o)),s&&(r?function(t){t.hasOwnProperty("_backupStrokeStyle")||(t._backupStrokeStyle=t.model.strokeStyle,t.set("strokeStyle","#f26522"),t.hasOwnProperty("_backupLineWidth")||(t._backupLineWidth=t.model.lineWidth,t.set("lineWidth",t.model.lineWidth+5)))}(e):c&&function(t){t.hasOwnProperty("_backupStrokeStyle")&&(t.set("strokeStyle",t._backupStrokeStyle),delete t._backupStrokeStyle,t.hasOwnProperty("_backupLineWidth")&&(t.set("lineWidth",t._backupLineWidth),delete t._backupLineWidth))}(e)),i)switch(i){case"data-toggle":if(!a)return;(r||c)&&this.root.findAll(a,e).forEach((t=>{t.data=!t.data}));break;case"data-tristate":if(!a)return;(r||c)&&this.root.findAll(a,e).forEach((t=>{let e=Math.round(Math.max(Number(t.data)||0,0));t.data=(e+(r?1:2))%3}));break;case"data-spreading":if(!a)return;if(r){var h=e.access(o);this.root.findAll(a,e).forEach((t=>{t.executeMappings(!0)}))}break;case"data-set":if(!a)return;if(r){h=e.access(o);this.root.findAll(a,e).forEach((t=>{t.data=h}))}break;case"partial-data-set":if(!a)return;if(r){h=e.access(o);this.root.findAll(a,e).forEach((t=>{t.data={...t.data,...h}}))}break;case"value-set":if(!a)return;if(r){h=e.access(o);this.root.findAll(a,e).forEach((t=>{t.value=h}))}break;case"partial-value-set":if(!a)return;if(r){h=e.access(o);this.root.findAll(a,e).forEach((t=>{t.value={...t.value,...h}}))}break;case"infoWindow":case"info-window":if(!a)return;"click"==n.type||r?m8.show(e,a,c,{x:n.offsetX,y:n.offsetY}):c&&m8.hide(e,a);break;case"toggle-info-window":if(!a)return;m8.toggle(e,a,!1,{x:n.offsetX,y:n.offsetY});break;case"popup":case"modal-popup":if(!a)return;let t=l&&"input"in l?l.input:"(self)",s=!l||(!("output"in l)||l.output);E8.show(e,a,{data:t&&this.root.findFirst(t,e)?.data,output:s,modal:"modal-popup"===i});break;case"close-scene":this.closeScene(e.data);break;case"goto":case"goto-playlist":this.trigger(i,a,l,e);break;case"mouse-cursor":r?this.target.style.cursor=a||"auto":c&&(this.target.style.cursor="auto");break;default:this.trigger(i,a,o,e)}}}function G8(t,e){const r=t.state.refid;return t.root.findAll((t=>t.isLine()&&t.from.component===r&&(!e||t.from.anchor===e)))}function W8(t,e){const r=t.state.refid;return t.root.findAll((t=>t.isLine()&&t.to.component===r&&(!e||t.to.anchor===e)))}Y8.Popup=E8,h8.register("model-layer",Y8);var H8=t=>class extends t{isConnectable(){return!0}postrender(t){super.postrender(t),this._draw_anchors(t)}_draw_anchors(t){var e=this.anchors||[];t.save(),e.forEach((e=>{var{position:{x:r,y:n},draw:i}=e;if(i){t.beginPath();try{i.call(e,t,this)}catch(t){console.error(t)}t.closePath()}})),t.restore()}contains(t,e){if(n=super.contains(t,e))return n;var r=this.anchors||[];for(let i of r){const r=i.bounds;if(!r)continue;const{left:a,top:o,width:s,height:c}=r;var n;if(n=t<Math.max(a+s,a)&&t>Math.min(a+s,a)&&e<Math.max(o+c,o)&&e>Math.min(o+c,o))return n}return!1}findInOutLines(t){return function(t,e){const r=t.state.refid;return t.root.findAll((t=>!(!t.isLine()||(t.from.component!==r||e&&t.from.anchor!==e)&&(t.to.component!==r||e&&t.to.anchor!==e))))}(this,t)}findOutletLines(t){return G8(this,t)}findOutletEnds(t){return function(t,e){return G8(t,e).map((t=>t.toEnd?.component)).filter(Boolean)}(this,t)}findInletLines(t){return W8(this,t)}findInletEnds(t){return function(t,e){return W8(t,e).map((t=>t.fromEnd?.component)).filter(Boolean)}(this,t)}};const q8={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0}}],help:"scene/component/rect"};var X8={ondragmove:function(t,e,r){var{left:n,top:i,width:a,height:o}=r.model,s=(r.transcoordP2S(t.x,t.y).x-n)/(a/2)*100;s=d8(s,a,o),r.set({round:s})}};class V8 extends(H8(p8(f8))){is3dish(){return!0}get controls(){var{left:t,top:e,width:r,round:n,height:i}=this.state;return[{x:t+r/2*((n=null==n?0:d8(n,r,i))/100),y:e,handler:X8}]}get nature(){return q8}}h8.register("rect",V8);const Q8=[1,2,10,20,50,50,50,50,50,50];class K8 extends(p8(f8)){render(t){const{lineWidth:e=1,fillStyle:r="lightgray",font:n="15px Arial",left:i,top:a,rotation:o,origin:s,margin:c,width:u,height:l,side:h="bottom",strokeStyle:f="#000000",scale:d=1}=this.state;t.translate(i,a),t.beginPath();const p=Math.round(e/2);t.rect(-p,-p,u+2*p,l+2*p),t.clip(),t.beginPath(),t.rect(0,0,u,l),r&&(t.fillStyle=r,t.fill()),t.lineWidth=e,t.strokeStyle=f,t.stroke(),t.beginPath(),t.font=n;var g="bottom"!==h,v=g?0:l,y=4*l/5,m=2*l/3,b=1*l/2,x=3*l/5;g&&(y=l-y,m=l-m,b=l-b,x=l-1.5*l/5);var w=d*this.app.PPM/this.root.unitScale,A=Math.ceil(s/w),_=this.app.PPM/w,k=_<=1.1?1:Q8[Math.round(_)]||100;1!=k&&(A+=(k-A%k)%k);var S=Math.ceil(A*w),E=s+u;for(t.fillStyle=f;S<E;){if(A%10==0){t.moveTo(S-s,b),t.lineTo(S-s,v);let e=(A/10).toString(),r=t.measureText(e);t.fillText(e,S-s-r.width-6,x)}else A%5==0?(t.moveTo(S-s,m),t.lineTo(S-s,v)):(t.moveTo(S-s,y),t.lineTo(S-s,v));A+=k,S=Math.ceil(A*w)}}}h8.register("ruler",K8);const J8=20,Z8=20,$8=90*Math.PI/180,t7="9px Verdana",e7=20,r7="#f4f4f4",n7="#999";function i7(t,e,r){return{left:-t.x,top:-t.y,width:J8,height:e7}}function a7(t,e,r,n){return{left:J8-t.x,top:0-t.y,origin:20-t.x,width:e-J8,height:e7}}function o7(t,e,r,n){var i={x:0-t.x+10,y:-t.y+Z8+(r-Z8)/2},a=h8.transcoordRR(0-t.x,-t.y+Z8,i,$8);return{left:a.x-(r-Z8),top:a.y,origin:20-t.y,width:r-Z8,height:e7}}function s7(t){var e=t.get("translate");return{left:-e.x,top:-e.y,width:t.canvas.width/$5,height:t.canvas.height/$5}}h8.register("guide-layer",class extends F8{constructor(t,e){super(t,e),this.appScale={x:1,y:1},"disabled"!==t.ruler&&(this.hruler=new K8({left:J8,top:0,origin:20,margin:0,height:e7,unit:"m",rotation:0,font:t7,fillStyle:r7,strokeStyle:n7,capturable:!1}),this.vruler=new K8({left:0,top:0,origin:20,margin:0,height:e7,unit:"m",rotation:$8,font:t7,side:"top",fillStyle:r7,strokeStyle:n7,capturable:!1}),this.origin_rect=new V8({left:-20,top:-20,width:20,height:20,fillStyle:r7,strokeStyle:n7,lineWidth:1}),this.addComponent(this.hruler),this.addComponent(this.vruler),this.addComponent(this.origin_rect)),this.invalidate()}get capturable(){return!1}ready(){if(super.ready(),this.hruler){var t=this.rootModel,e=Object.assign({},t.get("translate"));e.x<J8&&(e.x+=J8),e.y<Z8&&(e.y+=Z8);var r=t.get("scale")||{x:1,y:1};this.appScale=r,this.hruler.set("scale",r.x),this.vruler.set("scale",r.y),t.set("translate",e),this.set("translate",e),this.screen_coord=s7(this);var{width:n,height:i}=this.screen_coord;this.hruler.set(a7(e,n,0,this.hruler)),this.vruler.set(o7(e,0,i,this.vruler)),this.origin_rect.set(i7(e))}else this.screen_coord=s7(this)}resize(){super.resize(),this.screen_coord=s7(this);var{width:t,height:e}=this.screen_coord;this.hruler&&(this.hruler.set(a7(this.model.translate,t,0,this.hruler)),this.vruler.set(o7(this.model.translate,0,e,this.vruler)),this.origin_rect.set(i7(this.model.translate)))}render(t){if(this.guide){t.save();var{x:e,y:r}=this.guide,{top:n,left:i,width:a,height:o}=this.screen_coord;t.beginPath(),t.moveTo(e,n),t.lineTo(e,n+o),t.moveTo(i,r),t.lineTo(i+a,r),t.lineWidth=1,t.strokeStyle="tomato",t.setLineDash([2,3]),t.font="10px tahoma",t.fillStyle="#333";var s=this.transcoordS2C(e,r,this.rootModel);t.textBaseline=s.y>200?"bottom":"top",t.textAlign=s.x>200?"right":"left";var c=s.y>200?-5:5,u=s.x>200?-5:5,l=Math.round(e/this.appScale.x),h=Math.round(r/this.appScale.y);t.fillText(` ${l}, ${h} `,e+u,r+c),t.stroke(),t.restore()}}get guide(){return this._guide}set guide(t){this._guide=t,this.invalidate()}contains(t,e){return!0}get eventMap(){return{"(root)":{"(descendant)":{mousemove:this.onmousemove_child,mouseout:this.onmouseout_child,dragmove:this.onmousemove_child},"model-layer":{change:this.onchange_root_model}},"(self)":{"(descendant)":{mousedown:this.onmousedown_origin}}}}onmousedown_origin(t,e){this.rootModel.set("translate",{x:20,y:20})}onchange_root_model(t,e,r){if(t.scale&&(this.appScale=t.scale,this.hruler&&(this.hruler.set("scale",t.scale.x),this.vruler.set("scale",t.scale.y))),t.translate&&this.set({translate:{x:t.translate.x,y:t.translate.y}}),t.scale||t.translate){if(this.screen_coord=s7(this),this.hruler){var{translate:n}=this.model,{width:i,height:a}=this.screen_coord;this.hruler.set(a7(n,i,0,this.hruler)),this.vruler.set(o7(n,0,a,this.vruler)),this.origin_rect.set(i7(n))}this._guide=null}this.invalidate()}onmouseout_child(t){this._guide=null,this.invalidate()}onmousemove_child(t,e){t.target&&"CANVAS"!==t.target.tagName?this.guide=null:this.guide=this.transcoordC2S(t.offsetX,t.offsetY)}});h8.register("shift-layer",class extends F8{ready(){super.ready();var t=this.rootModel.get("translate");this.set("translate",t)}render(t){}contains(t,e){return!(2!=this.app.mode)}get eventMap(){return{"(root)":{"(self)":{keydown:this.onkeydown,keyup:this.onkeyup}}}}onkeydown(t){"Space"===t.code&&void 0===this.before_mode&&(this.before_mode=this.app.mode,this.app.mode=2)}onkeyup(t){"Space"===t.code&&(void 0!==this.before_mode&&(this.app.mode=this.before_mode),delete this.before_mode)}ondragstart(t){this.last_position=this.transcoordC2S(t.offsetX,t.offsetY)}ondragmove(t){var{x:e,y:r}=this.transcoordC2S(t.offsetX,t.offsetY);this.rootModel.move({x:e-this.last_position.x,y:r-this.last_position.y},!1),this.last_position=this.transcoordC2S(t.offsetX,t.offsetY)}});class c7{constructor(t){this.params=Object.assign({},t)}excute(){}}class u7 extends c7{execute(){this.params.changes.forEach((t=>t.component.set(t.after)))}static before(t){return t.map((t=>({component:t})))}static after(t,e){e.execute(null,!1)}static around(t,e,r){e.call(r),t.execute(null,!1)}}const l7="left",h7="right",f7="center",d7="top",p7="bottom",g7="middle",v7=[l7,h7,f7,d7,g7,p7];function y7(t){if(this.hasSameParentForAllSelected&&-1!=v7.indexOf(t)){var e=this.selected.filter((t=>!t.stuck));if(!(e.length<=1)){var r=this.app.commander;u7.around(r,(function(){!function(t,e){var r=JSON.parse(JSON.stringify(e[0].bounds)),n=r.left+r.width,i=r.top+r.height;for(let t=0;t<e.length;t++){let a=e[t].bounds;r.left=a.left>r.left?r.left:a.left,r.top=a.top>r.top?r.top:a.top,n=a.left+a.width>n?a.left+a.width:n,i=a.top+a.height>i?a.top+a.height:i}switch(r.width=n-r.left,r.height=i-r.top,t){case l7:for(let t=0;t<e.length;t++){let n=e[t].bounds;e[t].bounds={left:r.left,top:n.top,width:n.width,height:n.height}}break;case f7:for(let t=0;t<e.length;t++){let n=e[t].bounds;e[t].bounds={left:r.left+r.width/2-n.width/2,top:n.top,width:n.width,height:n.height}}break;case h7:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={left:n-r.width,top:r.top,width:r.width,height:r.height}}break;case d7:for(let t=0;t<e.length;t++){let n=e[t].bounds;e[t].bounds={left:n.left,top:r.top,width:n.width,height:n.height}}break;case g7:for(let t=0;t<e.length;t++){let n=e[t].bounds;e[t].bounds={left:n.left,top:r.top+r.height/2-n.height/2,width:n.width,height:n.height}}break;case p7:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={left:r.left,top:i-r.height,width:r.width,height:r.height}}break;default:;}}(t,e)}))}}}const m7="VERTICAL",b7=[m7,"HORIZONTAL"];function x7(t){if(this.hasSameParentForAllSelected&&-1!=b7.indexOf(t)){var e=this.selected;if(!(e.length<=1)){var r=this.app.commander;u7.around(r,(function(){!function(t,e){var r=e.filter((t=>!t.stuck)).slice(0);r.sort((function(e,r){let n=e.center,i=r.center;return t===m7?n.y-i.y:n.x-i.x}));var n=r.reduce(((e,r)=>e+(t===m7?r.bounds.height:r.bounds.width)),0),i=r[0].bounds,a=r[r.length-1].bounds,o=((t===m7?a.top+a.height-i.top:a.left+a.width-i.left)-n)/(r.length-1),s=t===m7?i.top+i.height:i.left+i.width;for(let e=1;e<r.length-1;e++){let n=r[e],i=n.bounds;s+=o,t===m7?(i.top=s,s+=i.height):(i.left=s,s+=i.width),n.bounds=i}}(t,e)}))}}}function w7(t){for(var e=0;t&&!t.isRootModel();)e+=t.get("rotation")||0,t=t.parent;return e%(2*Math.PI)}class A7 extends c7{execute(){this.params.changes.forEach((t=>{let{component:e,to_container:r,to_index:n,to_left:i,to_top:a,hint:o}=t,s=function(t){if(t.isRootModel())return t.bounds;var{bounds:e,rotatePoint:r}=t,n=r;return{left:(n=t.transcoordS2T(n.x,n.y)).x-(r.x-e.left),top:n.y-(r.y-e.top),width:e.width,height:e.height}}(e),c=w7(e);if(e.removeSelf(!r),e.bounds=s,e.set("rotation",c),r){e.set("rotation",function(t,e){return((t.get("rotation")||0)-w7(e))%(2*Math.PI)}(e,r));let o=function(t,e){if(e.isRootModel())return t.bounds;var{bounds:r,rotatePoint:n}=t,i=e.transcoordT2S(n.x,n.y),a=e.bounds;return{left:i.x-(n.x-r.left)-a.left,top:i.y-(n.y-r.top)-a.top,width:r.width,height:r.height}}(e,r);t.to_left=void 0!==i?i:o.left,t.to_top=void 0!==a?a:o.top,e.bounds={left:t.to_left,top:t.to_top,width:o.width,height:o.height},void 0===n?r.addComponent(e):r.insertComponentAt(e,n)}}))}}function _7(t,e,r){this.app.commander.execute(new A7({changes:[{component:t,to_container:e,to_index:r}]}))}function k7(t){var e=this.selected.filter((t=>!t.stuck));if(!(0==e.length||e[0].isRootModel()||e.length>1&&("forward"==t||"backward"==t))){var r,n=e[0].parent;if("forward"==t){let t=n.indexOf(e[0]);r=[{component:e[0],from_container:n,to_container:n,from_index:t,to_index:t+1}]}else if("backward"==t){let t=n.indexOf(e[0]);r=[{component:e[0],from_container:n,to_container:n,from_index:t,to_index:t-1}]}else r=e.filter((t=>t.parent===n)).sort(((e,r)=>{let i=n.indexOf(e)<n.indexOf(r);return"front"==t?i:!i})).map(((e,r)=>(n.indexOf(e),{component:e,to_container:n,to_index:"front"==t?n.components.length-r-1:r})));var i=new A7({changes:r});this.app.commander.execute(i)}}function S7(t,e,r,n){var i=h8.register(t.type);if(!i)return U5("Class not found",t.type),null;r&&(t.refid=r(t.refid)),t.id&&n&&n(t.id)&&delete t.id;var a=new i(t,e);return t.components&&a.isContainer()&&(t.components.forEach((t=>{var i=S7(t,e,r,n);i&&a.addComponent(i)})),delete t.components),a.created(),a}function E7(t,e){var r=n5(t.hierarchy);return delete r.id,S7(r,t.app,e)}var M7=Object.freeze({__proto__:null,compile:S7,duplicate:E7,select:h6,match:c6});function T7(t,e,r){t instanceof Array||(t=[t]),r||(r=this.model_layer);var n=[],i=new Map;this.selected=t.map((t=>{try{return S7(t,r.app,(t=>{const e=this.getNewRefid();return void 0!==t&&i.set(t,e),e}),(t=>(this.indexMap[t]||[])[0]))}catch(t){return console.warn(t),!1}})).filter(Boolean).map((t=>{let{left:a,top:o,width:s,height:c,x:u,y:l,cx:h,cy:f}=e;return t.replaceRefids(i),isNaN(a)||isNaN(o)||isNaN(s)||isNaN(c)||(t.bounds={left:a,top:o,width:s,height:c}),isNaN(u)||isNaN(l)||t.move({x:u,y:l},!1),isNaN(h)||isNaN(f)||(t.center={x:h,y:f}),n.push({component:t,to_container:r}),t})),this.app.commander.execute(new A7({changes:n}))}function P7(){var t=[],e=new Map;if(this.selected=this.selected.filter((t=>!t.isRootModel())).map((r=>{let n=E7(r,(t=>{const r=this.getNewRefid();return void 0!==t&&e.set(t,r),r}));return n.move({x:20,y:20},!1),t.push({component:n,to_container:r.parent}),n})).map((t=>(t.replaceRefids(e),t))),0!=t.length){var r=new A7({changes:t});this.app.commander.execute(r)}}function O7(){var t=this.selected;this.selected=[];for(var e=null,r=t.filter((t=>!t.isRootModel()&&(t.parent.focusible||t.parent.isGroup()))).map((t=>(e||(e=t.parent),{component:t,to_container:null})));e&&e.isGroup();){let t=[];if(e.components.filter((t=>!r.find((e=>e.component===t)))).forEach((e=>t.push(e))),t.length>1)break;let n=e.parent;t.forEach((t=>r.push({component:t,to_container:n}))),r.push({component:e,to_container:null}),e=n}r.length>0&&this.app.commander.execute(new A7({changes:r})),e&&e.calculateBounds&&e.calculateBounds()}function I7(t,e,r){switch(t){case"execute":case"redo":case"undo":case"command-reset":this.app?.commander.on(t,e,r);break;case"mode":this.app?.on(t,e,r);break;default:this.on(t,e,r)}}function R7(t,e,r){switch(t){case"execute":case"redo":case"undo":case"command-reset":this.app?.commander.once(t,e,r);break;case"mode":this.app.once(t,e,r);break;default:this.once(t,e,r)}}function C7(t,e,r){switch(t){case"execute":case"redo":case"undo":case"command-reset":this.app?.commander.off(t,e,r);break;case"mode":this.app?.off(t,e,r);break;default:this.off(t,e,r)}}function j7(t){var e=this.target_element,r=t||this.fitMode,n=this;function i(t){n.fit(r),document.fullscreen||document.mozFullScreen||document.webkitIsFullScreen||document.msFullscreenElement||["fullscreenchange","mozfullscreenchange","webkitfullscreenchange","MSFullscreenChange"].forEach((t=>document.removeEventListener(t,i)))}["fullscreenchange","mozfullscreenchange","webkitfullscreenchange","MSFullscreenChange"].forEach((t=>document.addEventListener(t,i))),e.requestFullScreen?e.requestFullScreen():e.webkitRequestFullScreen?e.webkitRequestFullScreen():e.mozRequestFullScreen?e.mozRequestFullScreen():e.msRequestFullscreen&&e.msRequestFullscreen()}var D7=0;function L7(){var t=this.selected.filter((t=>!t.isRootModel())).map((t=>t.hierarchy));if(0!=t.length)return D7=0,JSON.stringify(t,null,2)}function z7(){D7=0;var t=L7.call(this);return O7.call(this),t}function B7(t){if(t)try{JSON.parse(t);D7++,T7.call(this,JSON.parse(t),{x:15*D7,y:15*D7})}catch(e){N5(e,t)}}var F7=function(){return{escape:function(t){return t.replace(/([.*+?^${}()|\[\]\/\\])/g,"\\$1")},parseExtension:t,mimeType:function(e){var r=t(e).toLowerCase();return(n="application/font-woff",i="image/jpeg",{woff:n,woff2:n,ttf:"application/font-truetype",eot:"application/vnd.ms-fontobject",png:"image/png",jpg:i,jpeg:i,gif:"image/gif",tiff:"image/tiff",svg:"image/svg+xml"})[r]||"";var n,i},dataAsUrl:function(t,e){return"data:"+e+";base64,"+t},isDataUrl:function(t){return-1!==t.search(/^(data:)/)},canvasToBlob:function(t){return t.toBlob?new Promise((function(e){t.toBlob(e)})):function(t){return new Promise((function(e){for(var r=window.atob(t.toDataURL().split(",")[1]),n=r.length,i=new Uint8Array(n),a=0;a<n;a++)i[a]=r.charCodeAt(a);e(new Blob([i],{type:"image/png"}))}))}(t)},resolveUrl:function(t,e){var r=document.implementation.createHTMLDocument(),n=r.createElement("base");r.head.appendChild(n);var i=r.createElement("a");return r.body.appendChild(i),n.href=e,i.href=t,i.href},getAndEncode:function(t){var e=3e4;V7.impl.options.cacheBust&&(t+=(/\?/.test(t)?"&":"?")+(new Date).getTime());return new Promise((function(r){var n,i=new XMLHttpRequest;if(i.onreadystatechange=o,i.ontimeout=s,i.responseType="blob",i.timeout=e,i.open("GET",t,!0),i.send(),V7.impl.options.imagePlaceholder){var a=V7.impl.options.imagePlaceholder.split(/,/);a&&a[1]&&(n=a[1])}function o(){if(4===i.readyState)if(200===i.status){var e=new FileReader;e.onloadend=function(){var t=e.result.split(/,/)[1];r(t)},e.readAsDataURL(i.response)}else n?r(n):c("cannot fetch resource: "+t+", status: "+i.status)}function s(){n?r(n):c("timeout of "+e+"ms occured while fetching resource: "+t)}function c(t){console.error(t),r("")}}))},uid:function(){var t=0;return function(){return"u"+e()+t++;function e(){return("0000"+(Math.random()*Math.pow(36,4)<<0).toString(36)).slice(-4)}}}(),delay:function(t){return function(e){return new Promise((function(r){setTimeout((function(){r(e)}),t)}))}},asArray:function(t){for(var e=[],r=t.length,n=0;n<r;n++)e.push(t[n]);return e},escapeXhtml:function(t){return t.replace(/#/g,"%23").replace(/\n/g,"%0A")},makeImage:function(t){return new Promise((function(e,r){var n=new Image;n.onload=function(){e(n)},n.onerror=r,n.src=t}))},width:function(t){var r=e(t,"border-left-width"),n=e(t,"border-right-width");return t.scrollWidth+r+n},height:function(t){var r=e(t,"border-top-width"),n=e(t,"border-bottom-width");return t.scrollHeight+r+n}};function t(t){var e=/\.([^\.\/]*?)$/g.exec(t);return e?e[1]:""}function e(t,e){var r=window.getComputedStyle(t).getPropertyValue(e);return parseFloat(r.replace("px",""))}}(),N7=function(){var t=/url\(['"]?([^'"]+?)['"]?\)/g;return{inlineAll:function(t,i,a){return o()?Promise.resolve(t):Promise.resolve(t).then(r).then((function(e){var r=Promise.resolve(t);return e.forEach((function(t){r=r.then((function(e){return n(e,t,i,a)}))})),r}));function o(){return!e(t)}},shouldProcess:e,impl:{readUrls:r,inline:n}};function e(e){return-1!==e.search(t)}function r(e){for(var r,n=[];null!==(r=t.exec(e));)n.push(r[1]);return n.filter((function(t){return!F7.isDataUrl(t)}))}function n(t,e,r,n){return Promise.resolve(e).then((function(t){return r?F7.resolveUrl(t,r):t})).then(n||F7.getAndEncode).then((function(t){return F7.dataAsUrl(t,F7.mimeType(e))})).then((function(r){return t.replace(function(t){return new RegExp("(url\\(['\"]?)("+F7.escape(t)+")(['\"]?\\))","g")}(e),"$1"+r+"$3")}))}}(),U7=function(){return{resolveAll:function(){return t().then((function(t){return Promise.all(t.map((function(t){return t.resolve()})))})).then((function(t){return t.join("\n")}))},impl:{readAll:t}};function t(){return Promise.resolve(F7.asArray(document.styleSheets)).then((function(t){var e=[];return t.forEach((function(t){try{F7.asArray(t.cssRules||[]).forEach(e.push.bind(e))}catch(e){console.log("Error while reading CSS rules from "+t.href,e.toString())}})),e})).then((function(t){return t.filter((function(t){return t.type===CSSRule.FONT_FACE_RULE})).filter((function(t){return N7.shouldProcess(t.style.getPropertyValue("src"))}))})).then((function(e){return e.map(t)}));function t(t){return{resolve:function(){var e=(t.parentStyleSheet||{}).href;return N7.inlineAll(t.cssText,e)},src:function(){return t.style.getPropertyValue("src")}}}}}(),Y7=function(){return{inlineAll:function e(r){return r instanceof Element?n(r).then((function(){return r instanceof HTMLImageElement?t(r).inline():Promise.all(F7.asArray(r.childNodes).map((function(t){return e(t)})))})):Promise.resolve(r);function n(t){var e=t.style.getPropertyValue("background");return e?N7.inlineAll(e).then((function(e){t.style.setProperty("background",e,t.style.getPropertyPriority("background"))})).then((function(){return t})):Promise.resolve(t)}},impl:{newImage:t}};function t(t){return{inline:function(e){return F7.isDataUrl(t.src)?Promise.resolve():Promise.resolve(t.src).then(e||F7.getAndEncode).then((function(e){return F7.dataAsUrl(e,F7.mimeType(t.src))})).then((function(e){return new Promise((function(r,n){t.onload=r,t.onerror=n,t.src=e}))}))}}}}(),G7={imagePlaceholder:void 0,cacheBust:!1};function W7(t,e){return function(t){void 0===t.imagePlaceholder?V7.impl.options.imagePlaceholder=G7.imagePlaceholder:V7.impl.options.imagePlaceholder=t.imagePlaceholder;void 0===t.cacheBust?V7.impl.options.cacheBust=G7.cacheBust:V7.impl.options.cacheBust=t.cacheBust}(e=e||{}),Promise.resolve(t).then((function(t){return q7(t,e.filter,!0)})).then(X7).then((function(t){var{bgcolor:r,width:n,height:i,style:a,sx:o=1,sy:s=1}=e,c=t.style;r&&(c.backgroundColor=r);n&&(c.width=n+"px");i&&(c.height=i+"px");c["margin-left"]="0px",c["margin-top"]="0px",["-webkit-","-moz-","-ms-","-o-",""].forEach((t=>{c[t+"transform"]=`rotate(0rad) translate(0px, 0px) scale(${o}, ${s}) perspective(1px)`})),a&&Object.keys(a).forEach((function(t){c[t]=a[t]}));return t})).then((function(r){return function(t,e,r){return Promise.resolve(t).then((function(t){return t.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),(new XMLSerializer).serializeToString(t)})).then(F7.escapeXhtml).then((function(t){return'<foreignObject x="0" y="0" width="100%" height="100%">'+t+"</foreignObject>"})).then((function(t){return'<svg xmlns="http://www.w3.org/2000/svg" width="'+e+'" height="'+r+'">'+t+"</svg>"})).then((function(t){return"data:image/svg+xml;charset=utf-8,"+t}))}(r,e.width||F7.width(t),e.height||F7.height(t))}))}function H7(t,e){return W7(t,e).then(F7.makeImage).then(F7.delay(100)).then((function(r){var n=function(t){var r=document.createElement("canvas");if(r.width=e.width||F7.width(t),r.height=e.height||F7.height(t),e.bgcolor){var n=r.getContext("2d");n.fillStyle=e.bgcolor,n.fillRect(0,0,r.width,r.height)}return r}(t);return n.getContext("2d").drawImage(r,0,0),n}))}function q7(t,e,r){return r||!e||e(t)?Promise.resolve(t).then((function(t){if(t instanceof HTMLCanvasElement)try{return F7.makeImage(t.toDataURL())}catch(t){U5(t)}return t.cloneNode(!1)})).then((function(r){return function(t,e,r){var n=t.childNodes;return 0===n.length?Promise.resolve(e):i(e,F7.asArray(n),r).then((function(){return e}));function i(t,e,r){var n=Promise.resolve();return e.forEach((function(e){n=n.then((function(){return q7(e,r)})).then((function(e){e&&t.appendChild(e)}))})),n}}(t,r,e)})).then((function(e){return function(t,e){return e instanceof Element?Promise.resolve().then(r).then(n).then(i).then(a).then((function(){return e})):e;function r(){function r(t,e){function r(t,e){F7.asArray(t).forEach((function(r){e.setProperty(r,t.getPropertyValue(r),t.getPropertyPriority(r))}))}t.cssText?e.cssText=t.cssText:r(t,e)}r(window.getComputedStyle(t),e.style)}function n(){function r(r){var n=window.getComputedStyle(t,r),i=n.getPropertyValue("content");if(""!==i&&"none"!==i){var a=F7.uid();e.className=e.className+" "+a;var o=document.createElement("style");o.appendChild(s(a,r,n)),e.appendChild(o)}function s(t,e,r){var n="."+t+":"+e,i=r.cssText?a(r):o(r);return document.createTextNode(n+"{"+i+"}");function a(t){var e=t.getPropertyValue("content");return t.cssText+" content: "+e+";"}function o(t){return F7.asArray(t).map(e).join("; ")+";";function e(e){return e+": "+t.getPropertyValue(e)+(t.getPropertyPriority(e)?" !important":"")}}}}[":before",":after"].forEach((function(t){r(t)}))}function i(){t instanceof HTMLTextAreaElement&&(e.innerHTML=t.value),t instanceof HTMLInputElement&&e.setAttribute("value",t.value)}function a(){e instanceof SVGElement&&(e.setAttribute("xmlns","http://www.w3.org/2000/svg"),e instanceof SVGRectElement&&["width","height"].forEach((function(t){var r=e.getAttribute(t);r&&e.style.setProperty(t,r)})))}}(t,e)})):Promise.resolve()}function X7(t){return Y7.inlineAll(t).then((function(){return t}))}var V7={toSvg:W7,toPng:function(t,e){return H7(t,e||{}).then((function(t){return t.toDataURL()}))},toJpeg:function(t,e){return H7(t,e=e||{}).then((function(t){return t.toDataURL("image/jpeg",e.quality||1)}))},toBlob:function(t,e){return H7(t,e||{}).then(F7.canvasToBlob)},toPixelData:function(t,e){return H7(t,e||{}).then((function(e){return e.getContext("2d").getImageData(0,0,F7.width(t),F7.height(t)).data}))},impl:{fontFaces:U7,images:Y7,util:F7,inliner:N7,options:{}}};function Q7(t,e,r,n){var i=this.model_layer,a=i._overlay;return new Promise((function(o,s){if(i){var c=i.get("width"),u=i.get("height");r=r||c,n=n||u;var l=i.get("translate"),h=i.get("scale"),f=Math.min(r/c,n/u);r=c*f,n=u*f,i.set("translate",{x:0,y:0}),i.set("scale",{x:f/$5,y:f/$5});var d=h8.createCanvas(r,n),p=d.getContext("2d");if(i.draw(p),i.set("translate",l),i.set("scale",h),!a)return o(d.toDataURL(t,e)),void(d=null);V7.toPng(a,{sx:f,sy:f,width:r,height:n}).then((function(i){var a=new Image;a.onload=function(){p.drawImage(a,0,0,r,n),o(d.toDataURL(t,e)),d=null},a.src=i}),(function(r){N5(r),o(d.toDataURL(t,e)),d=null}))}else s("No target model")}))}function K7(){if(this.hasSameParentForAllSelected){var t=this.selected.filter((t=>!!t.parent&&!t.stuck));if(!(t.length<2)){var e=t[0].parent,r=[],n=t.sort(((t,r)=>e.components.indexOf(t)-e.components.indexOf(r)));n.forEach((t=>{r.push(t.bounds)}));var i=h8.union(r),a=t[0].transcoordP2S(i.left,i.top);a=t[0].transcoordS2T(a.x,a.y);var o=new Map,s=S7({type:"group",left:a.x,top:a.y,width:i.width,height:i.height},e.app,(t=>{const e=this.getNewRefid();return void 0!==t&&o.set(t,e),e}));s.replaceRefids(o);var c=[{component:s,to_container:e}];n.forEach((t=>{c.push({component:t,to_container:s})})),this.app.commander.execute(new A7({changes:c})),this.selected=[s]}}}function J7(){if(0!==this.selected.length){var t=[],e=[];this.selected.forEach((r=>{if(r.isGroup()){var n=r.parent;r.components.forEach((r=>{t.push(r),e.push({component:r,to_container:n})})),e.push({component:r,to_container:null})}})),this.app.commander.execute(new A7({changes:e})),this.selected=t}}function Z7(){var t=this.selected;if(0!=t.length){var e=t.map((t=>t.bounds)),r=h8.union(e),n=r.left+r.width/2;t.map((t=>{t.symmetryX(n)}))}}function $7(){var t=this.selected;if(0!=t.length){var e=t.map((t=>t.bounds)),r=h8.union(e),n=r.top+r.height/2;t.map((t=>{t.symmetryY(n)}))}}function t9(){u7.around(this.app.commander,Z7,this)}function e9(){u7.around(this.app.commander,$7,this)}function r9(t,e,r){var n=this.findAll(t,r);return n.forEach((t=>{t.set(e)})),n}function n9(t){u7.around(this.app.commander,t)}function i9(){return Object.values(this.indexMap).map((t=>t.map((t=>{let{id:e,data:r}=t.model;return{key:e,value:r}})))).flat().sort(((t,e)=>t.key>e.key?1:-1))}const a9="left",o9="right",s9="center",c9="top",u9="bottom",l9="middle",h9=[a9,o9,s9,c9,l9,u9];function f9(t){if(this.hasSameParentForAllSelected&&-1!=h9.indexOf(t)){var e=this.selected.filter((t=>!t.stuck)),r=this.app.commander;u7.around(r,(function(){!function(t,e){const r=e[0].parent,{width:n,height:i}=r.bounds;switch(t){case a9:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,left:0}}break;case s9:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,left:n/2-r.width/2}}break;case o9:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,left:n-r.width}}break;case c9:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,top:0}}break;case l9:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,top:i/2-r.height/2}}break;case u9:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,top:i-r.height}}break;default:;}}(t,e)}))}}function d9(t){t instanceof Array||(t=[t]),this.trigger("addstart",t)}function p9(){this.trigger("stylepastestart")}function g9(){this.trigger("stylepastestop")}function v9(){this.trigger("databindpastestart")}function y9(){this.trigger("databindpastestop")}function m9(t,e,r,n){var i=t.selected,a=n?i.slice(0):[];n&&a.length>0?e=a[0].parent:e.isContainer()||(e=e.parent);var o=e.layout.capturables(e),s=!!e.layout.joinType;if(n&&r.selected.forEach((t=>{a.splice(a.indexOf(t),1)})),r.selected=[],o.forEach((t=>{t.capturable&&function(t,e,r){var n,i,a,o,{sx:s,sy:c,ex:u,ey:l}=e;if(s>u?(n=u,i=s):(n=s,i=u),c>l?(a=l,o=c):(a=c,o=l),r){var h=t.bounds,f=t.transcoordS2TR(h.left,h.top),d=t.transcoordS2TR(h.left+h.width,h.top+h.height),p=f.x,g=d.x,v=f.y,y=d.y,m=Math.min(n,p,i,g),b=Math.max(n,p,i,g),x=Math.min(a,v,o,y),w=Math.max(a,v,o,y);return!(b-m>Math.abs(i-n)+Math.abs(g-p)||w-x>Math.abs(o-a)+Math.abs(y-v))}var A=t.path;if(!A)return error("컴포넌트에 get path가 잘못 구현되어있음.",t),!1;for(let e=0;e<A.length;e++){let r=t.transcoordS2TR(A[e].x,A[e].y);if(n>r.x||i<r.x||a>r.y||o<r.y)return!1}return!0}(t,r,s)&&-1==a.indexOf(t)&&r.selected.push(t)})),a=a.concat(r.selected),i.length!==a.length)t.selected=a;else for(let e=0;e<a.length;e++)if(i[e]!=a[e]){t.selected=a;break}}function b9(t,e,r,n,i){i||m9(t,e,r,n)}function x9(t,e){var r=t.components||[];for(let t of r){x9(t,e);let r=e.indexOf(t);-1!=r&&e.splice(r,1)}}h8.register("add-layer",class extends F8{ready(){super.ready();var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}render(t){var e=this.addbox;if(e){let{sx:r,sy:n,ex:i,ey:a}=e,o=this.get("scale")||{x:1,y:1};t.beginPath(),t.rect(r,n,i-r,a-n),t.setLineDash([2/o.x,4/o.y]),t.lineWidth=1/o.x,t.strokeStyle="black",t.stroke()}}contains(t,e){return!(3!=this.app.mode)}get eventMap(){return{"(root)":{"(self)":{addstart:this.onaddstart,addstop:this.onaddstop,keydown:this.onkeydown,dragstart:this.ondragstart,dragmove:this.ondragmove,dragend:this.ondragend,mousedown:this.onmousedown,mouseup:this.onmouseup}},"model-layer":{"(self)":{change:this.onchange_root_model}}}}onchange_root_model(t,e,r){t.translate&&this.set("translate",t.translate),t.scale&&this.set("scale",t.scale)}onaddstart(t,e){void 0===this.before_mode&&(this.before_mode=this.app.mode,this.models=t,this.app.mode=3)}onaddstop(){void 0!==this.before_mode&&(this.app.mode=this.before_mode),delete this.before_mode,delete this.addbox,this.invalidate()}onkeydown(t){3!==this.app.mode||"Esc"!=t.code&&"Escape"!=t.code||this.root.trigger("addstop")}ondragstart(t){var{x:e,y:r}=this.transcoordC2S(t.offsetX,t.offsetY);this.addbox={sx:e,sy:r}}ondragmove(t){if(3===this.app.mode){var{x:e,y:r}=this.transcoordC2S(t.offsetX,t.offsetY);this.addbox&&(this.addbox.ex=e,this.addbox.ey=r,this.invalidate())}}ondragend(t,e){if(3!==this.app.mode)return;const{sx:r,sy:n,ex:i,ey:a}=this.addbox;T7.call(this.root,this.models,{left:Math.min(r,i),top:Math.min(n,a),width:Math.abs(i-r),height:Math.abs(a-n)}),this.root.trigger("addstop")}onmousedown(t,e){3===this.app.mode&&(this.downpoint={x:t.offsetX,y:t.offsetY})}onmouseup(t,e){if(this.downpoint.x===t.offsetX&&this.downpoint.y===t.offsetY){var{x:r,y:n}=this.transcoordC2S(t.offsetX,t.offsetY);T7.call(this.root,this.models,{cx:r,cy:n}),this.root.trigger("addstop")}}});h8.register("selection-layer",class extends F8{ready(){super.ready();var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}contains(t,e){return!1}render(t){var e=this.selbox;if(e){let{sx:r,sy:n,ex:i,ey:a}=e,o=this.get("scale")||{x:1,y:1};t.beginPath(),t.rect(r,n,i-r,a-n),t.setLineDash([2/o.x,4/o.y]),t.lineWidth=1/o.x,t.strokeStyle="black",t.stroke()}}get eventMap(){return{"(root)":{"(self)":{keydown:this.onkeydown}},"model-layer":{"(self)":{change:this.onchange_root_model},"(all)":{dragstart:this.ondragstart_selbox,dragmove:this.ondragmove_selbox,dragend:this.ondragend_selbox,mousedown:this.onmousedown_comp,mouseup:this.onmouseup_comp}}}}onkeydown(t,e){var{origin:r,deliverer:n}=e,i=n.selected;if(1!==i.length)return!1;var a=i[0],o=a.parent;if(!o||o===n)return!1;if("Tab"===t.code){var s=o.layout.capturables(o),c=s.indexOf(a);if(-1==c){if(!o.indexOf(a))return U5("Container not contains [",a,"] as a component"),!1;c=0}var u=s.length;t.shiftKey?c--:c++,a=s[(c+u)%u]}else{if(!o.layout.keyNavigate)return!1;a=o.layout.keyNavigate(o,a,t)||a}n.selected=[a],t.preventDefault()}onchange_root_model(t,e,r){t.translate&&this.set("translate",t.translate),t.scale&&this.set("scale",t.scale)}_pendingDecision(t){this.downpoint={x:t.offsetX,y:t.offsetY}}_selectGroupItem(t,e){var r=this.selected.indexOf(t);let n=t.parent;for(;n.parent.isGroup();)n=n.parent;let i=[],a=!1,o=!1;if(this.selected.forEach((t=>{let e=t.parent;if(t!==n){for(;e.parent&&e.parent.isGroup();)e=e.parent;e===n&&(i.push(t),a=!0)}else o=!0})),a)if(e.shiftKey){if(-1!=r)return void this._pendingDecision(e);i.push(t)}else{if(-1!=r)return void this._pendingDecision(e);i=[t]}else{if(o)return void this._pendingDecision(e);if(e.shiftKey)if(this.selected.length>0){if(-1!=this.selected.indexOf(n))return;i=[...this.selected,n]}else i=[n];else i=[n]}this.selected=i}onmousedown_comp(t,e){var{origin:r}=e;if(this.downpoint=null,t.shiftKey){if(r.parent.isGroup())return void this._selectGroupItem(r,t);if(-1!=this.selected.indexOf(r))return void this._pendingDecision(t);{let t=this.selected.filter((t=>!t.isRootModel()&&!!t.parent)),e=t.length>0&&t[0].parent;e&&e!==r.parent&&(!function(t,e){for(var r=t.parent;r;){let t=e.indexOf(r);-1!=t&&e.splice(t,1),r=r.parent}}(r,t),x9(r,t)),t.push(r),this.selected=t}}else{if(r.parent.isGroup())return void this._selectGroupItem(r,t);if(-1!=this.selected.indexOf(r))return;this.selected=[r],this.sameParent=!0}}onmouseup_comp(t,e){if(!this.downpoint)return;if(this.downpoint.x!==t.offsetX||this.downpoint.y!==t.offsetY)return;var{origin:r}=e;let n=this.selected.indexOf(r);if(-1==n&&r.parent.isGroup()&&(n=this.selected.indexOf(r.parent)),-1!==n&&t.shiftKey){let t=this.selected.slice();return n>-1&&t.splice(n,1),void(this.selected=t)}r.parent.isGroup()&&(this.selected=[r])}ondragstart_selbox(t,e){var{origin:r}=e;if(r.stuck){var{x:n,y:i}=this.transcoordC2S(t.offsetX,t.offsetY);this.selbox={sx:n,sy:i,selected:[]}}}ondragmove_selbox(t,e){var{origin:r}=e;if(r.stuck){var{x:n,y:i}=this.transcoordC2S(t.offsetX,t.offsetY);this.selbox&&(this.selbox.ex=n,this.selbox.ey=i,b9(this,r,this.selbox,t.shiftKey),this.invalidate())}}ondragend_selbox(t,e){var{origin:r}=e;r.stuck&&(this.last_pos=null,this.selbox=null,b9(this,null,null,!1,!0),this.invalidate())}});class w9{constructor(t){this.layer=t}draw(t,e,r){var{left:n,top:i,width:a,height:o}=e.bounds;0!=a&&0!=o&&(t.beginPath(),t.rect(n,i,a,o),t.clip(),t.beginPath(),t.strokeStyle="#f26522",t.lineWidth=4,t.shadowBlur=10,t.shadowColor="black",t.shadowOffsetX=0,t.shadowOffsetY=0,t.rect(n,i,a,o),t.stroke(),t.closePath())}}class A9{constructor(t){this.layer=t}draw(t,e,r){var n=e.bounds;t.beginPath(),t.rect(n.left-4/r.x,n.top-4/r.y,n.width+8/r.x,n.height+8/r.y),t.setLineDash([3/r.x,4/r.y]),t.lineWidth=1/r.x,t.strokeStyle="black",t.stroke(),t.setLineDash([]),t.closePath()}}class _9{constructor(t){this.layer=t}reset(){this.active=null}get selected(){return this.layer.selected}contains(t,e,r,n){let i=r.controls;return!!i&&(i.every(((i,a)=>(Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(this.active={component:r,index:a,handler:i.handler}),!this.active))),!!this.active)}draw(t,e,r){var n=e.controls;n&&n.forEach(((e,n)=>{t.beginPath(),t.lineWidth=1/r.x,t.ellipse(e.x,e.y,4/r.x,4/r.y,0,0,2*Math.PI,!0),t.fillStyle="#ff5d72",t.fill(),t.strokeStyle="#fff",t.stroke()}))}onevent(t,e){var{handler:r,component:n,index:i}=this.active,a=n.transcoordC2S(e.offsetX,e.offsetY);a=n.transcoordS2P(a.x,a.y),r&&"function"==typeof r[t]&&r[t](a,i,n)}onmousedown(t){this.onevent("onmousedown",t)}ondragstart(t){var e=this.active;e.changes=u7.before([e.component]),this.onevent("ondragstart",t)}ondragmove(t){this.onevent("ondragmove",t)}ondragend(t){this.onevent("ondragend",t);var{component:e,changes:r}=this.active;u7.after(r,e.app.commander),e.parent&&e.parent.calculateBounds&&e.parent.calculateBounds()}}function k9(t,e){return Math.atan2(e.y-t.y,e.x-t.x)}const S9=15*Math.PI/180;class E9{constructor(t){this.layer=t}reset(){this.active=null,this.created=null}get selected(){return this.layer.selected}contains(t,e,r,n){return!!r.mutable&&(r.path.every(((i,a)=>(Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(this.active={component:r,index:a}),!this.active))),!!this.active)}startLinkProcess(t,e,r){try{var n=S7(e,t.app);return t.rootModel.addComponent(n),this.layer.selected=[n],this.active={component:n,index:1},this.ondragstart(r),n}catch(t){console.warn(r)}}draw(t,e,r){if(e.mutable&&!e.stuck){var n=e.path,i=this.active;n.forEach(((n,a)=>{t.beginPath(),t.ellipse(n.x,n.y,4/r.x,4/r.y,0,0,2*Math.PI,!0),t.lineWidth=1/r.x,t.strokeStyle="#656565",t.fillStyle="#fff",i&&i.component===e&&i.index===a&&(t.strokeStyle="#fa7703",i.toFill&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke()}))}}ondblclick(t){var e=this.active.component;if(e.pathExtendable){var r=e.path.slice();r.length<3||(r.splice(this.active.index,1),e.path=r)}}onmousedown(t){this.active.toFill=!0}ondragstart(t){var{index:e,component:r}=this.active;this.created||(this.active.changes=u7.before([r])),0!==e&&e!==r.path.length-1||(this.layer.counterEnd=0===e?r.toEnd||{fromto:"to"}:r.fromEnd||{fromto:"from"})}ondragmove(t){var{component:e,index:r}=this.active||{};const{offsetX:n,offsetY:i}=t;var a,o,s=e.transcoordC2S(n,i);if(s=e.transcoordS2P(s.x,s.y),t.shiftKey){var c=e.path.length,u=e.isLine()&&0==r?e.path[1]:e.path[(r-1+c)%c];u=e.transcoordS2P(u.x,u.y);var l,h=0;if(c>2)e.isLine()?0==r?l=e.path[2]:1!=r&&(l=e.path[r-2]):l=e.path[(r-2+c)%c],l&&(h=k9(l=e.transcoordS2P(l.x,l.y),u));var f=Math.round((k9(u,s)-h)/S9)*S9+h;s=function(t,e,r){return{x:Math.cos(e)*r+t.x,y:Math.sin(e)*r+t.y}}(u,f,(a=u,o=s,Math.sqrt((o.x-a.x)*(o.x-a.x)+(o.y-a.y)*(o.y-a.y))))}if(0===r||r===e.path.length-1){const t=this.layer.anchorTarget=e.rootModel.capture(n,i,(t=>!t.isConnectable()));if(t){const{x:a,y:o}=t.transcoordC2S(n,i),c=this.layer.get("scale")||{x:1,y:1},u=this.layer.counterEnd,l=(t.anchors||[]).find((r=>{const{name:n,inout:i,multiplicity:s=1/0,position:l,filter:h}=r;if(u){const{anchor:t,fromto:e}=u;if(t&&("out"===t.inout&&"out"===i||"in"===t.inout&&"in"===i))return!1;if("from"===e&&"out"===i||"to"===e&&"in"===i)return!1}else console.error("should not be here.");if(Math.abs(a-l.x)>8/c.x||Math.abs(o-l.y)>8/c.y)return!1;const f=t.findInOutLines(n);return!!f.includes(e)||!(s!==1/0&&f.length>=s)&&(!u||!h||!!h.call(r,u))}));l?0==r?e.from={component:t.get("refid"),anchor:l.name,position:s}:e.to={component:t.get("refid"),anchor:l.name,position:s}:0==r?e.from={position:s}:e.to={position:s}}}e.mutatePath(null,(function(t){t[r]=s}))}ondragend(t){var{component:e,index:r,changes:n}=this.active;if(0===r||r===e.path.length-1){const{offsetX:n,offsetY:i}=t,a=e.rootModel.capture(n,i,(t=>t===e||t.isLine())),{x:o,y:s}=a.transcoordC2S(n,i),c=this.layer.get("scale")||{x:1,y:1},u=(a.anchors||[]).find((t=>t&&Math.abs(o-t.position.x)<=8/c.x&&Math.abs(s-t.position.y)<=8/c.y));u&&(0==r?e.from={component:a.get("refid"),anchor:u.name}:e.to={component:a.get("refid"),anchor:u.name}),this.layer.endLinkProcess()}if(this.created){let t=new A7({changes:[{component:this.created,to_container:this.created.parent}]});created.app.commander.execute(t)}else u7.after(n,e.app.commander);e.parent&&e.parent.calculateBounds&&e.parent.calculateBounds()}}class M9{constructor(t){this.layer=t}get active(){return this._active?.component.disposed&&(this._active=null),this._active}set active(t){this._active=t}reset(){this.active=null}contains(t,e,r,n){const i=this.active?.component===r&&this.active?.anchor;this.active=null;const a=this.layer.counterEnd;return(r.isConnectable()&&!r.disposed&&r.anchors||[]).filter((t=>{const{name:e,inout:n,multiplicity:i=1/0,filter:o}=t;if(a){const{anchor:t,fromto:e}=a;if(t&&("out"===t.inout&&"out"===n||"in"===t.inout&&"in"===n))return!1;if("from"===e&&"out"===n||"to"===e&&"in"===n)return!1}else if("in"===n)return!1;return!(i!==1/0&&r.findInOutLines(e).length>=i)&&(!o||!a||!!o.call(t,a))})).every((a=>{const o=i===a.name?2:1;return a&&a.position&&Math.abs(t-a.position.x)<=4*o/n.x&&Math.abs(e-a.position.y)<=4*o/n.y&&(this.active={component:r,anchor:a.name,template:a.template}),!this.active})),!!this.active}draw(t,e,r){if(!e.get("refid")||e.isLine())return;var n=this.active;const i=this.active?.component===e&&this.active?.anchor,a=this.layer.counterEnd;(e.isConnectable()&&!e.disposed&&e.anchors||[]).filter((t=>{const{name:r,inout:n,multiplicity:i=1/0,filter:o}=t;if(a){const{anchor:t,fromto:e}=a;if(t&&("out"===t.inout&&"out"===n||"in"===t.inout&&"in"===n))return!1;if("from"===e&&"out"===n||"to"===e&&"in"===n)return!1}else if("in"===n)return!1;return!(i!==1/0&&e.findInOutLines(r).length>=i)&&(!a||!o||!!o.call(t,a))})).forEach((a=>{const{name:o,position:s}=a,c=i===o?2:1;s&&(t.beginPath(),t.ellipse(s.x,s.y,4*c/r.x,4*c/r.y,0,0,2*Math.PI),t.setLineDash([0,0]),t.lineWidth=1/r.x,t.strokeStyle="#656565",t.stroke(),t.fillStyle="#fff",n&&n.component===e&&n.anchor===o&&(t.strokeStyle="#fa7703",n.focus&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke())}))}onmousedown(t){this.active.focus=!0}ondragstart(t){const{component:e,anchor:r,template:n}=this.active,i=this.layer.transcoordC2S(t.offsetX,t.offsetY);this.layer.startLinkProcess(e,{type:"ortholine",lineWidth:1,strokeStyle:"black",begin:"oval",beginSize:"size9",end:"arrow",endSize:"size9",lineDash:"solid",lineCap:"butt",round:10,...n,from:{component:e.get("refid"),anchor:r,position:i},to:{position:i}},t)}ondragmove(t){}ondragend(t){}}function T9(t,e,r){var n,i,{left:a,top:o,width:s,height:c}=t.bounds;switch(e){case 0:n=a,i=o;break;case 1:n=a+s/2,i=o;break;case 2:n=a+s,i=o;break;case 3:n=a+s,i=o+c/2;break;case 4:n=a+s,i=o+c;break;case 5:n=a+s/2,i=o+c;break;case 6:n=a,i=o+c;break;case 7:n=a,i=o+c/2}var u=n,l=i,h=t.transcoordT2S(r.x,r.y);return{dx:h.x-u,dy:h.y-l}}function P9(t,e,r,n,i,a){var{left:o,top:s,width:c,height:u}=t.bounds,l={left:o,top:s,width:c,height:u};switch(e){case 0:o+=n,s+=i,c-=n,u-=i;break;case 1:s+=i,u-=i;break;case 2:s+=i,c+=n,u-=i;break;case 3:c+=n;break;case 4:c+=n,u+=i;break;case 5:u+=i;break;case 6:o+=n,c-=n,u+=i;break;case 7:o+=n,c-=n}if(t.mutateBounds((function(e){return Math.abs(c)<=.001&&(c=.001),Math.abs(u)<=.001&&(u=.001),t.adjustResize({left:o,top:s,width:c,height:u},l,r)}),this),t.isContainer()&&t.layout.ABSOLUTE&&!t.isGroup()){var h=l.left-o,f=l.top-s;a?t.components.forEach((t=>{t.delta("tx",0),t.delta("ty",0),t.move({x:h,y:f},!1)})):t.components.forEach((t=>{t.delta("tx",h),t.delta("ty",f)}))}else{var d=a&&t.parent;d&&d.isGroup()&&d.calculateBounds()}}function O9(t,e){var{left:r,top:n,width:i,height:a}=t,o=r+i/2,s=n+a/2,c=r+i,u=n+a;const l=i*e.x>50,h=a*e.y>50;return[{x:r,y:n},l?{x:o,y:n}:null,{x:c,y:n},h?{x:c,y:s}:null,{x:c,y:u},l?{x:o,y:u}:null,{x:r,y:u},h?{x:r,y:s}:null]}class I9{constructor(t){this.layer=t}reset(){this.active=null}get selected(){return this.layer.selected}contains(t,e,r,n){return!!r.resizable&&(O9(r.bounds,n).every(((i,a)=>(i&&Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(this.active={component:r,index:a}),!this.active))),!!this.active)}draw(t,e,r){if(!e.isLine()){var{left:n,top:i,width:a,height:o}=e.bounds;if(t.beginPath(),t.rect(n-4/r.x,i-4/r.y,a+8/r.x,o+8/r.y),t.setLineDash([3/r.x,4/r.y]),t.lineWidth=1/r.x,t.strokeStyle="black",t.stroke(),t.setLineDash([]),e.resizable){var s=this.active;O9(e.bounds,r).forEach(((n,i)=>{n&&(t.beginPath(),t.rect(n.x-4/r.x,n.y-4/r.y,8/r.x,8/r.y),t.setLineDash([0,0]),t.strokeStyle="#656565",t.stroke(),t.fillStyle="#fff",s&&s.component===e&&s.index===i&&(t.strokeStyle="#fa7703",s.focus&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke())}))}}}onmousedown(t){this.active.focus=!0}ondragstart(t){var{component:e}=this.active;this.active.bounds=e.bounds,this.active.boundsList=this.layer.selected.filter((t=>t.resizable)).map((t=>t.bounds))}ondragmove(t){var{component:e,index:r,boundsList:n,bounds:i}=this.active,a=this.layer.transcoordC2S(t.offsetX,t.offsetY);e.bounds=i;var o=T9(e,r,a);this.layer.selected.filter((t=>t.resizable)).forEach(((e,i)=>{e.bounds=n[i],P9(e,r,t.shiftKey,o.dx,o.dy,!1)}))}ondragend(t){var{component:e,index:r,boundsList:n,bounds:i}=this.active,a=this.layer.transcoordC2S(t.offsetX,t.offsetY);e.bounds=i;var o=T9(e,r,a);this.layer.selected.filter((t=>t.resizable)).forEach(((e,i)=>{e.bounds=n[i],P9(e,r,t.shiftKey,o.dx,o.dy,!0)})),this.active.component.app.commander.execute(null,!1)}}const R9=2*Math.PI,C9=Math.PI/2;function j9(t,e){var r=t.bounds;return{x:r.left+r.width/2,y:r.top-20/e.y}}class D9{constructor(t){this.layer=t}reset(){this.active=null}get selected(){return this.layer.selected}contains(t,e,r,n){if(!r.rotatable)return!1;var i=j9(r,n);return Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(this.active={component:r},!0)}draw(t,e,r){if(e.rotatable){t.beginPath();var n=j9(e,r);t.lineWidth=1.5/r.x,t.moveTo(n.x,n.y+20/r.y),t.lineTo(n.x,n.y),t.strokeStyle="#656565",t.stroke(),t.beginPath(),t.ellipse(n.x,n.y,4/r.x,4/r.y,0,0,R9,!0),t.stroke(),t.fillStyle="#fff",t.fill();var i=this.active;i&&i.component===e&&(t.strokeStyle="#fa7703",t.stroke(),i.toFill&&(t.fillStyle="#ffb80c",t.fill()))}}onmousedown(t){this.active.toFill=!0}ondragstart(t){var e=this.active;e.component,e.start_rotation=e.component.get("rotation"),e.rotations=this.layer.selected.filter((t=>t.rotatable)).map((t=>t.get("rotation")))}ondragmove(t){var{component:e}=this.active,r=e.transcoordC2S(t.offsetX,t.offsetY);r=e.transcoordS2P(r.x,r.y);var n=e.rotatePoint,i=e.get("rotation")||0,a=Math.atan((n.y-r.y)/(n.x-r.x)),o=(a=n.x>=r.x?a-C9:C9+a)-i;this.layer.selected.filter((t=>t.rotatable)).forEach(((e,r)=>{let n=((e.get("rotation")||0)+o)%R9;e.set("rotation",e.adjustRotation(n,t.shiftKey))}))}ondragend(t){var{component:e,rotations:r}=this.active;e.app.commander.execute(null,!1)}}h8.register("modeling-layer",class extends F8{constructor(t,e){super(t,e),this.pathHandler=new E9(this);var r=this.pathHandler,n=new _9(this),i=new I9(this),a=new D9(this);this._modelers=[r,n,i,a],this._control_mode_modelers=[n,r,i,a],this.focusOutline=new w9(this),this.groupOutline=new A9(this),this.anchorHandler=new M9(this),this._reversed_modelers=this._modelers.slice().reverse(),this._control_mode_reverse_modelers=this._control_mode_modelers.slice().reverse(),this.hovered=null,this.hoveredDest=null}get modelers(){return this._control_mode?this._control_mode_modelers:this._modelers}get reversedModelers(){return this._control_mode?this._control_mode_reverse_modelers:this._reversed_modelers}ready(){super.ready();var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}contains(t,e){var r=this.selected.filter((t=>!!t.parent)),n=this.get("scale")||{x:1,y:1};if(this._state_dragging){if(this._counter_end){let r=this.anchorTarget.transcoordT2S(t,e);if(this.anchorHandler.contains(r.x,r.y,this.anchorTarget,n))return!0}return!0}this.modelers.forEach((t=>t.reset()));r=this.selected.filter((t=>!!t.parent));for(let i=0;i<r.length;i++){let a=r[i],o=a.transcoordT2S(t,e);for(let t=0;t<this.modelers.length;t++){let e=this.modelers[t];if(e.contains(o.x,o.y,a,n))return this.currentModeler=e,!0}}if(this.anchorTarget){let r=this.anchorTarget.transcoordT2S(t,e);if(this.anchorHandler.contains(r.x,r.y,this.anchorTarget,n))return this.currentModeler=this.anchorHandler,!0}else this.anchorHandler.reset();return this.currentModeler=null,!1}_componentDrawer(t,e,r,n){let i=[],a=e.parent;if(e.isRootModel())return t.save(),n(t,e,r),void t.restore();for(;a&&!a.isRootModel();)i.push(a),a=a.parent;t.save(),i.reverse().forEach((function(e){let r=e.rotatePoint;t.translate(r.x,r.y);let n=e.get("scale");n&&t.scale(n.x,n.y),t.rotate(e.get("rotation")),t.translate(-r.x,-r.y);let i=e.bounds;t.translate(i.left,i.top)}));let o=e.rotatePoint;t.translate(o.x,o.y);let s=e.get("scale");s&&t.scale(s.x,s.y),t.rotate(e.get("rotation")),t.translate(-o.x,-o.y),n(t,e,r),t.restore()}prerender(t){var{translate:e,scale:r={x:1,y:1},rotation:n}=this.model;t.save(),t.beginPath(),t.clearRect(0,0,t.canvas.width,t.canvas.height),t.rect(0,0,t.canvas.width,t.canvas.height),t.fillStyle="black",t.globalAlpha=.5,t.fill(),t.restore(),e&&t.translate(e.x*$5,e.y*$5),t.scale(r.x*$5,r.y*$5),n&&t.rotate(n),t.clearRect(0,0,this.rootModel.get("width"),this.rootModel.get("height"))}render(t){t.beginPath();var e=this.get("scale")||{x:1,y:1},r=this.selected.filter((t=>!!t.parent));if(this.focused&&this._componentDrawer(t,this.focused,e,((t,e,r)=>{this.focusOutline.draw(t,e,r)})),r.length>0&&r[0].parent.isGroup()){let n=r[0].parent;for(;n.parent.isGroup();)n=n.parent;this._componentDrawer(t,n,e,((t,e,r)=>{this.groupOutline.draw(t,e,r)}))}r.forEach((r=>{this._componentDrawer(t,r,e,((t,e,r)=>{this.reversedModelers.forEach((n=>n.draw(t,e,r)))}))})),this.anchorTarget&&this._componentDrawer(t,this.anchorTarget,e,((t,e,r)=>{this.anchorHandler.draw(t,e,r)}))}get anchorTarget(){return this.currentModeler===this.anchorHandler||this.currentModeler===this.pathHandler||this.hovered?.isLine()||(this._anchorTarget=this.hovered),this._anchorTarget}set anchorTarget(t){this._anchorTarget=t}get hovered(){return this._hovered}set hovered(t){this._hovered=t,this.invalidate()}startLinkProcess(t,e,r){this.currentModeler=this.pathHandler,this.processingLink=this.pathHandler.startLinkProcess(t,e,r),this.counterEnd=this.processingLink.fromEnd,this.processingLink.trigger("tag")}set counterEnd(t){this.currentModeler=this.pathHandler,this._counter_end=t}get counterEnd(){return this._counter_end}endLinkProcess(){this.processingLink?.trigger("tagreset"),this.processingLink=null,this._counter_end=null}get eventMap(){return{"model-layer":{"(all)":{change:this.onchange_model,wheel:this.onwheel_scale,drop:this.ondrop},"(descendant)":{mouseenter:this.onmouseenter,mouseleave:this.onmouseleave},"(self)":{dblclick:this.ondblclick_model}},"(root)":{"(self)":{selected:this.onselected,keydown:this.onkeydown,keyup:this.onkeyup}}}}onmouseenter(t,e){this.hovered=e?.origin}onmouseleave(t,e){this.hovered=null}onkeydown(t){"Alt"==t.key&&(this._control_mode=!0,this.invalidate())}onkeyup(t){"Alt"==t.key&&(this._control_mode=!1,this.invalidate())}onselected(t,e){this.invalidate()}onchange_model(t,e,r){var{origin:n,deliverer:i}=r;n===i&&(t.translate&&this.set("translate",t.translate),void 0!==t.rotation&&this.set("rotation",t.rotation),t.scale&&this.set("scale",t.scale)),this.invalidate()}ondblclick_model(t,e){const r=e.origin;r?.root.fit()}ondblclick(t){"function"==typeof this.currentModeler.ondblclick&&this.currentModeler.ondblclick(t),this.invalidate()}onmousedown(t){this.currentModeler.onmousedown(t),this.invalidate()}onmouseup(t){"function"==typeof this.currentModeler.onmouseup&&this.currentModeler.onmouseup(t),this.invalidate()}ondragstart(t){this.currentModeler.ondragstart(t),this._state_dragging=!0}ondragmove(t){this.currentModeler.ondragmove(t),this.invalidate()}ondragend(t){this._state_dragging=!1,this.currentModeler.ondragend(t),this.invalidate()}ondrop(t,e){var{origin:r}=e,n=t.dataTransfer.files;if(n.length<1)return;let i=this.rootModel.transcoordC2S(t.offsetX,t.offsetY),a=this.rootModel;Promise.all(Array.from(n).map((t=>new Promise(((e,r)=>{let n=new FileReader;n.addEventListener("loadend",(t=>{e(n.result)})),["error","abort"].forEach((t=>n.addEventListener(t,(t=>{r(t)})))),n.readAsDataURL(t)}))))).then((e=>{if(t.altKey)return u7.around(this.app.commander,(()=>{r.ondropfile(n,e)})),void(this.selected=[r]);let o=[],s=e.map(((t,e)=>{let r,s=n[e].type,c=n[e].name;return s.startsWith("image/")?(r=S7({type:s.startsWith("image/gif")?"gif-view":"image-view",top:0,left:0,width:200,height:200,src:t},a.app),o.push(new Promise(((e,n)=>{let i=new Image;i.src=t,i.onload=()=>{r.set({width:i.width,height:i.height}),e()},i.onerror=t=>{n(t)}})))):s.startsWith("audio/")?r=S7({type:"audio",top:0,left:0,width:100,height:100,src:t},a.app):s.startsWith("vnd.ms-excel/")||/\.xlsx?$/.test(c)?r=S7({type:"excel",top:0,left:0,width:100,height:100,src:t},a.app):console.log("droped file",n[e]),r&&(r.center=i,i.x+=50,i.y+=50),r})).filter(Boolean).map((t=>({component:t,to_container:a})));s.length>0&&Promise.all(o).then((()=>{this.app.commander.execute(new A7({changes:s})),this.selected=s.map((t=>t.component))}),(t=>{console.error(t)}))}),(t=>{console.error(t)}))}onwheel_scale(t,e){if(0!=t.deltaY||0!=t.deltaX){var r=e.deliverer;if(t.shiftKey){if(-1!=navigator.userAgent.indexOf("Win"))var n=t.deltaY<0?1:-1;else n=t.deltaX<0?1:-1;u7.around(this.app.commander,(()=>{r.selected.forEach((t=>{let e=t.get("fontSize")||r6.FONT_SIZE;e<1&&(e=1),e+=n,t.set("fontSize",e)}))}))}else{n=t.deltaY<0?1:-1;let e=r.get("scale")||{x:1,y:1},i=r.get("translate"),a=t.offsetX,o=t.offsetY,s=r.transcoordC2S(a,o),c=.1*n,u={x:e.x+c,y:e.y+c};if(n<0&&e.x<.2||n>0&&e.x>10)return;r.set("scale",u);let l=r.transcoordC2S(a,o);r.set("translate",{x:i.x+(l.x-s.x)*u.x,y:i.y+(l.y-s.y)*u.y})}}}});class L9 extends F8{constructor(t,e){super(t,e),this._anim_alpha=1}animOnTargetChange(t){t!==this._lastTargets&&(this._lastTargets=t,this._anim_alpha=1,this.animate({step:t=>{this._anim_alpha=1-t,this.invalidate()},duration:5e3,delta:"circ",ease:"in"}).start())}decorate(t,e,r){const n=t.decorators;var i=!1;return n.map((t=>"string"==typeof t?i8(t):t)).filter((t=>t&&"function"==typeof t)).map((n=>{const a=n(t,e,1-r);i||=a})),i}render(t){var e=this.decoTargets&&this.decoTargets.filter((t=>t.rootModel));if(!e||0==e.length)return this._animate&&this._animate.stop(),void delete this._animate;t.globalAlpha*=this._anim_alpha;var r=!1;e.forEach((e=>{this.decorate(e,t,1-this._anim_alpha)&&(r=!0)})),r&&this.animOnTargetChange(this.decoTargets)}get decoTargets(){return this._decoTargets}set decoTargets(t){this._decoTargets=t&&t.filter((t=>!t.isLayer())),this.invalidate()}get eventMap(){return{"model-layer":{"(descendant)":{tag:this.ondecotag,tagreset:this.ondecotagreset,mouseenter:this.onmouseenter,mouseleave:this.onmouseleave}}}}onmouseenter(t,e){this._decotagreset(),this._ondecotag(e.origin)}onmouseleave(t,e){this._decotagreset()}ondecotagreset(t){this._decotagreset()}ondecotag(t){this._ondecotag(t.origin)}offdecotag(t,e){this._offdecotag(e.origin)}_ondecotag(t){this.decoTargets&&-1!==this.decoTargets.lastIndexOf(t)||(this.decoTargets=(this.decoTargets||[]).concat(t))}_offdecotag(t){if(this.decoTargets){var e=this.decoTargets.slice();e.splice(this.decoTargets.lastIndexOf(t),1),this.decoTargets=e}}_decotagreset(){this.decoTargets=[]}}h8.register("decotag-layer",L9),h8.register("tag-layer",L9);h8.register("reaction-layer",class extends F8{constructor(t,e){super(t,e),this._anim_alpha=1}animOnTargetChange(t){t!==this._lastTargets&&(this._lastTargets=t,this._anim_alpha=1,this.animate({step:t=>{this._anim_alpha=1-t,this.invalidate()},duration:1e4,delta:"circ",ease:"inout"}).start())}decorate(t,e,r){const n=t.reactionDecorators;var i=!1;return n.map((t=>"string"==typeof t?i8(t):t)).filter((t=>t&&"function"==typeof t)).map((n=>{const a=n(t,e,1-r);i||=a})),i}render(t){var e=this.targets&&this.targets.filter((t=>t.rootModel));if(!e||0==e.length)return this._animate&&this._animate.stop(),void delete this._animate;t.globalAlpha*=this._anim_alpha;var r=!1;e.forEach((e=>{this.decorate(e,t,1-this._anim_alpha)&&(r=!0)})),r&&this.animOnTargetChange(this.targets)}get targets(){return this._targets}set targets(t){this._targets=t&&t.filter((t=>!t.isLayer())),this.invalidate()}get eventMap(){return{"model-layer":{"(descendant)":{reaction:this.onreaction,reactionreset:this.onreactionreset}}}}onreactionreset(t){this._reactionreset()}onreaction(t){this._onreaction(t.origin)}offreaction(t,e){this._offreaction(e.origin)}_onreaction(t){this.targets&&-1!==this.targets.lastIndexOf(t)||(this.targets=(this.targets||[]).concat(t))}_offreaction(t){if(this.targets){var e=this.targets.slice();e.splice(this.targets.lastIndexOf(t),1),this.targets=e}}_reactionreset(){this.targets=[]}});function z9(){var t=arguments,e=t[t.length-1],r=this.event_pump;r.listeners.forEach((n=>{!function(t,e,r,n,i){for(let a in r){let o=r[a];if(c6(a,n.origin,0,t))for(let t in o){let r=o[t];t==n.name&&(n.listener=e,r.apply(e,i))}}}(r.deliverer,n.listener,n.cloned_handlers,e,t)}))}h8.register("scroll-layer",class extends F8{get capturable(){return!0}render(t){const{scrolling:e}=this.state;if(t.save(),t.beginPath(),t.fillStyle="#777",this.vscroller){const{left:r,top:n,width:i,height:a}=this.vscroller;t.globalAlpha="v"==e?1:.3,t.fillRect(r,n,i,a)}if(this.hscroller){const{left:r,top:n,width:i,height:a}=this.hscroller;t.globalAlpha="h"==e?1:.3,t.fillRect(r,n,i,a)}t.stroke(),t.restore()}resize(){super.resize(),this.calcScrollerBounds()}contains(t,e){const r=this.vscroller,n=this.hscroller;return this.setState("scrolling",r&&t>=r.left&&t<=r.left+r.width&&e>=r.top&&e<=r.top+r.height?"v":n&&t>=n.left&&t<=n.left+n.width&&e>=n.top&&e<=n.top+n.height?"h":null),!!this.getState("scrolling")}get eventMap(){return{"(root)":{"model-layer":{change:this.onchangeModelLayer}}}}onchange(t){"scrolling"in t&&this.invalidate()}ondragstart(t,e){this.lastPosition={x:t.offsetX,y:t.offsetY}}ondragmove(t,e){const r=this.root,{clientWidth:n,clientHeight:i}=this.canvas,{width:a,height:o}=this.rootModel.model,{x:s,y:c}={x:t.offsetX,y:t.offsetY},{x:u,y:l}=this._scale,{scrolling:h}=this.state,f=a/n,d=o/i;h&&r.rootModel.move({x:"h"==h?(-s+this.lastPosition.x)*u*f:0,y:"v"==h?(-c+this.lastPosition.y)*l*d:0},!1),this.lastPosition={x:t.offsetX,y:t.offsetY}}ondragend(){delete this.lastPosition,this.setState({scrolling:null})}calcScrollerBounds(){var{clientWidth:t,clientHeight:e}=this.canvas;const{width:r,height:n}=this.rootModel.model,{x:i=1,y:a=1}=this._scale||{},{x:o=0,y:s=0}=this._translate||{},c=r/t,u=n/e;var l={left:-o/i/c,top:e-10,width:t/i/c,height:10};this.hscroller=l.left>1||l.width+l.left<t-1?l:null,l={left:t-10,top:-s/a/u,width:10,height:e/a/u},this.vscroller=l.top>1||l.height+l.top<e-1?l:null,this.invalidate()}onchangeModelLayer(t,e,r){if(t.scale){const{x:e=1,y:r=1}=t?.scale||{};this._scale={x:e,y:r},this.calcScrollerBounds()}if(t.translate){const{x:e=0,y:r=0}=t.translate||{};this._translate={x:e,y:r},this.calcScrollerBounds()}}});class B9{constructor(t){if(void 0===t.on)throw new Error("Deliverer should be a event handlable object.");this.deliverer=t,this.listeners=[]}start(){this.deliverer.on("(all)",z9,{event_pump:this})}stop(){this.deliverer.off("(all)",z9)}on(t,e){var r=Object.assign({},e);Object.keys(r).forEach((e=>{if(0==e.indexOf("?")){let n=r[e],i=e.substr(1),a=t.get(i);delete r[e],a?r[a]=n:U5("EventPump#on","variable #{selector} is not evaluated on listener")}})),this.listeners.push({listener:t,handlers:e,cloned_handlers:r})}off(t,e){for(let r=0;r<this.listeners.length;r++){let n=this.listeners[r];n.listener!==t||e&&n.handlers!==e||this.listeners.splice(r,1)}}clear(){this.listeners=[]}dispose(){this.stop(),this.clear()}}class F9{constructor(t){this.eventMaps=[],this.root=t,t.eventMap&&this.add(t,t.eventMap)}set root(t){this._root=t}get root(){return this._root}stop(){this.eventMaps.forEach((t=>t.eventPump.stop()))}add(t,e){if(this.root)for(let r in e){let n=e[r];if("(self)"===r&&void 0===t.on)throw new Error("(self) selector not available when deliverer is not a event handlable object.");h6(r,this.root,t).forEach((r=>{var i=new B9(r);i.on(t,n),i.start(),this.eventMaps.push({eventPump:i,listener:t,handlerMap:e,deliverer:r})}))}}remove(t,e){var r=this.eventMaps.slice(0);for(let n=0;n<r.length;n++){let i=r[n];i.listener!==t||e&&i.handlerMap!==e||(this.eventMaps.splice(n,1),i.eventPump.dispose())}}clear(){this.eventMaps.slice(0).forEach((t=>t.eventPump.dispose())),this.eventMaps=[]}dispose(){this.stop(),this.clear()}}const N9=0,U9=1,Y9=2,G9=0,W9=1,H9=2;var q9={},X9=0;class V9{constructor(t,e){this._type=e||t.type,this._ctrlKey=t.ctrlKey,this._altKey=t.altKey,this._shiftKey=t.shiftKey,this._metaKey=t.metaKey;var r=function(t){if(t.touches){let e=t.touches[0];if(!e)return q9;let r=e.target.getBoundingClientRect();return q9={x:t.offsetX||e.clientX-(r.x||r.left),y:t.offsetY||e.clientY-(r.y||r.top)}}return{x:t.offsetX,y:t.offsetY}}(t);if(this._offsetX=r.x,this._offsetY=r.y,"wheel"==t.type)this.deltaX=t.deltaX,this.deltaY=t.deltaY,this.deltaZ=t.deltaZ;else if("drop"==t.type)this.dataTransfer=t.dataTransfer;else if(t.type.match(/^touch/)&&(this._scale=t.scale,this._touches=t.touches,this._changedTouches=t.changedTouches,null==this._scale)){var n=function(t){var e,r,n=0,i=0,a=0;if(1===t.touches.length)return a;Array.from(t.touches).forEach((t=>{e=null!=e?Math.min(t.screenX,e):t.screenX,n=Math.max(t.screenX,n),r=null!=r?Math.min(t.screenY,r):t.screenY,i=Math.max(t.screenY,i)}));var o=n-e||0,s=i-r||0;return Math.sqrt(Math.pow(o,2)+Math.pow(s,2))||0}(t);X9>0&&(this._scale=n/X9),X9=n}}get type(){return this._type}set type(t){this._type=t}get offsetX(){return this._offsetX}get offsetY(){return this._offsetY}get altKey(){return this._altKey}get ctrlKey(){return this._ctrlKey}get shiftKey(){return this._shiftKey}get metaKey(){return this._metaKey}get touches(){return this._touches}get changedTouches(){return this._changedTouches}get scale(){return this._scale}stopPropagation(){this._stop_=!0}isPropagationStopped(){return this._stop_}}function Q9(t,e){return t.capture(e.offsetX,e.offsetY)}function K9(t,e,r){if(t&&t.app&&(!t.app.isViewMode||!t.hidden)){r instanceof V9&&e===r.type||(r=new V9(r,e));var n="on"+e;t[n]&&t[n](r),r.isPropagationStopped()||t.trigger(e,r)}}class J9{constructor(t,e){this.container=t,this.html_element=e,this.status=N9,this.last_target=null,this.gesture_handlers=t6.map((t=>this.gestureHandlerBuilder(t))),this.keyevent_handlers=e6.map((t=>this.keyeventHandlerBuilder(t))),t6.forEach(((t,r)=>e.addEventListener(t,this.gesture_handlers[r]))),e6.forEach(((t,r)=>e.addEventListener(t,this.keyevent_handlers[r]))),e.ondragover=this.gestureHandlerBuilder("dragover"),e.ondrop=this.gestureHandlerBuilder("drop"),e.tabIndex=1}dispose(){this.last_enter_target&&K9(this.last_enter_target,"mouseleave",new CustomEvent("mouseleave")),t6.forEach(((t,e)=>this.html_element.removeEventListener(t,this.gesture_handlers[e]))),e6.forEach(((t,e)=>this.html_element.removeEventListener(t,this.keyevent_handlers[e]))),delete this.gesture_handlers,delete this.keyevent_handlers,delete this.last_target}gestureHandlerBuilder(t){var e=this[`on${t}`].bind(this);return t=>(e(new V9(t))&&t.preventDefault(),!1)}keyeventHandlerBuilder(t){return this[`on${t}`].bind(this)}ondragover(t){return K9(Q9(this.container,t),t.type,t),!1}ondrop(t){return K9(Q9(this.container,t),t.type,t),!1}ondblclick(t){return K9(Q9(this.container,t),t.type,t),this.last_target=null,!1}onkeydown(t){return this.container.trigger(t.type,t),!1}onkeyup(t){return this.container.trigger(t.type,t),!1}onmousemove(t){switch(this.status){case U9:let r=t.offsetX-this.__dragstart_e.offsetX,n=t.offsetY-this.__dragstart_e.offsetY;if(r*r+n*n<16)break;this.status=Y9,K9(this.last_target,"dragstart",this.__dragstart_e),this.__dragmove_e=t,K9(this.last_target,"dragmove",t);break;case Y9:this.__dragmove_e=t,K9(this.last_target,"dragmove",t);break;default:var e=Q9(this.container,t);this.last_enter_target!==e&&(this.last_enter_target&&K9(this.last_enter_target,"mouseleave",t),e&&K9(e,"mouseenter",t),this.last_enter_target=e),K9(e,t.type,t),this.last_target=e}return!1}onmousedown(t){if(this.status===Y9)K9(this.last_target,"dragend",t),this.last_target=null,this.status=N9;else{var e=Q9(this.container,t);this.last_target=e,this.status=U9,this.__dragstart_e=t,K9(e,t.type,t)}return!1}onmouseup(t){if(this.status===Y9)K9(this.last_target,"dragend",t);else{var e=Q9(this.container,t);K9(e,t.type,t),this.last_target===e&&K9(e,"click",t)}return this.last_target=null,this.status=N9,!1}onmouseout(t){var e=Q9(this.container,t);if(this.status===Y9)K9(this.last_target,"dragend",t);else{if(this.last_target&&this.last_target===e)return;this.last_enter_target&&(K9(this.last_enter_target,"mouseleave",t),delete this.last_enter_target)}return this.last_target=null,this.status=N9,!1}ontouchstart(t){var e=Q9(this.container,t);return this.last_target=e,this.status=W9,this.touchPoints||(this.touchPoints=[]),this.touchPoints.push(t.changedTouches[0]),this.holdTimer=setTimeout((()=>{this.status=G9,K9(this.last_target,"hold",t),delete this.holdTimer}),500),K9(e,t.type,t),!1}ontouchmove(t){if(!t.touches||!t.changedTouches)return K9(this.last_target,"dragstart",t),K9(this.last_target,"dragmove",t),!1;var e=Q9(this.container,t);switch(this.status){case W9:Array.from(t.changedTouches).forEach((t=>{var e=this.touchPoints.find((e=>e.identifier===t.identifier));if(e){var r=e.clientX-t.clientX,n=e.clientY-t.clientY;return Math.sqrt(Math.pow(r,2)+Math.pow(n,2))>=16?(this.status=H9,void(this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer))):void 0}}));break;case H9:if(this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer),2===t.changedTouches.length&&null!=t.scale&&1!==t.scale&&(t.scale<.9||t.scale>1.1))return K9(this.last_target,"pinch",t),!1;K9(this.last_target,"pan",t),e=this.last_target;break;default:this.last_enter_target!==e&&(this.last_enter_target&&K9(this.last_enter_target,"mouseleave",t),e&&K9(e,"mouseenter",t),this.last_enter_target=e),this.last_target=e}return K9(e,"touchmove",t),!1}ontouchend(t){var e=Q9(this.container,t);switch(this.status){case H9:e=this.last_target;break;case W9:var r=performance.now(),n=r-this.touchedAt;this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer,K9(e,n<500?"doubletap":"tap",t),this.touchedAt=r)}K9(e,"touchend",t);var i=this.touchPoints.findIndex((e=>e.identifier===t.changedTouches[0].identifier));return this.touchPoints.splice(i,1),this.last_target=null,this.status=G9,!1}onwheel(t){return K9(Q9(this.container,t),t.type,t),!1}}var Z9={};var $9={register:function(t,e){Z9[t]=e},unregister:function(t){delete Z9[t]},get:function(t){return Z9[t]}};function ttt(t){if(!t.hasTextProperty||t.textHidden)return;var{text:e="",bold:r=r6.BOLD,italic:n=r6.ITALIC,textWrap:i=r6.TEXT_WRAP,fontFamily:a=r6.FONT_FAMILY,fontColor:o=r6.FONT_COLOR,textAlign:s=r6.TEXT_ALIGN,textBaseline:c=r6.TEXT_BASELINE,fontSize:u=r6.FONT_SIZE,lineHeight:l=1.2*u}=t.model,{left:h,top:f,width:d,height:p}=t.textBounds;u||=r6.FONT_SIZE,l||=1.2*u,t.textHidden=!0;var g=document.createElement("textarea");t6.forEach((function(t){g.addEventListener(t,(function(t){t.stopPropagation()}),!0)}));const v=t.transcoordS2C(h,f),{rotation:y,scale:m}=function(t){for(var e=0,r=1,n=t;n;){e+=n.get("rotation")||0;let{x:t,y:i}=n.get("scale")||{x:1,y:1};r*=Math.max(t,i)||1,n=n.parent}return{rotation:e,scale:r}}(t);switch(g.style.position="absolute",g.style.width=d+"px",g.style.height=p+"px",g.value=e,g.style.fontFamily=a,g.style.fontSize=u+"px",g.style.lineHeight=l+"px",g.style.overflow="hidden",g.style.resize="none",g.style.outline="none",g.style.border=0,g.style.backgroundColor="transparent",g.style.display="inline-block",g.style.color=o,r&&(g.style.fontWeight="bold"),n&&(g.style.fontStyle="italic"),s){case"right":case"end":g.style.textAlign="right";break;case"justify":g.style.textAlign="justify";break;case"left":case"start":g.style.textAlign="left";break;default:g.style.textAlign="center"}var b=[r,n,u+"px",a].filter(Boolean).join(" ");function x(e){var r={left:0,top:0},n=l*function(t,e,r,n){var i,a=t.getContext();return a.save(),a.font=r,i=j6(a,e,n,t.get("textWrap")).length,a.restore(),i}(t,e,b,d);switch(g.style.height=n+"px",c){case"top":case"hanging":break;case"bottom":case"alphabetic":r.top=p-n;break;default:r.top=p/2-n/2}if(!i){var a=function(t,e,r,n){var i=e.split("\n"),a=n;let o=t.getContext();return o.save(),o.font=r,i.forEach((t=>{let e=o.measureText(t).width;e>a&&(a=e)})),o.restore(),a}(t,e,b,d);switch(g.style.width=a+"px",s){case"right":case"end":r.left=d-a;break;case"left":case"start":break;default:r.left=(d-a)/2}}g.style.marginLeft=r.left+"px",g.style.marginTop=r.top+"px";var o=`translate(${v.x}px, ${v.y}px) scale(${m}) rotate(${y}rad)`;["-webkit-","-moz-","-ms-","-o-",""].forEach((t=>{g.style[t+"transform"]=o,g.style[t+"transform-origin"]=`${-r.left}px ${-r.top}px`}))}x(e);var w=t.root.target_element;w.appendChild(g),g.select();var A,_=!1;g.addEventListener("keydown",(function(t){t.stopPropagation(),"Escape"!=t.code&&(t.shiftKey||"Enter"!=t.code&&"NumpadEnter"!=t.code)?setTimeout((()=>{x(g.value)})):(_=A.skipUpdate="Escape"==t.code,document.createEvent?g.dispatchEvent(A):g.fireEvent(A.eventType,A))})),document.createEvent?(A=document.createEvent("HTMLEvents")).initEvent("blur",!0,!1):(A=document.createEventObject()).eventType="blur";var k=t.root.selected,S=function(r){t.root.selected=k,t.textHidden=!1,g.removeEventListener("blur",S,!1),g.parentElement&&g.parentElement.removeChild(g),w.focus(),r.skipUpdate||_||t.app.commander.execute(new u7({changes:[{component:t,before:{text:e},after:{text:g.value}}]}))};g.addEventListener("blur",S,!1)}$9.register("text-editor",{"(root)":{"(self)":{keydown:function(t,e){var{origin:r,deliverer:n}=e,i=n.selected;return!(1!==i.length||!i[0].hasTextProperty)&&(("Enter"==t.code||"NumpadEnter"==t.code)&&(ttt(i[0]),t.preventDefault(),!0))}}},"model-layer":{"(descendant)":{dblclick:function(t,e){ttt(e.origin)}}}});var ett,rtt,ntt,itt=y5((function(t,e,r){if(t.hasSameParentForAllSelected&&!r){var n=[];e[0].parent.isGroup()?t.focused=e[0].parent:(e.forEach((t=>{t.path.forEach((e=>{n.push(t.transcoordS2T(e.x,e.y))}))})),t.focused=t.capturePath(n,e))}else t.focused=null}),300);$9.register("move-handler",{"model-layer":{"(descendant)":{dragstart:function(t,e){var{origin:r,deliverer:n}=e;if(!r.stuck){var i=n.selected,a=n.selected.filter((t=>!t.stuck));if(i.length!==a.length&&(i=n.selected=a),0!=i.length){var o=i[0].transcoordC2S(t.offsetX,t.offsetY);if(o=i[0].transcoordS2P(o.x,o.y),this.last_pos=o,this.direction=0,n.focused=i[0].parent,t.altKey){var s=[],c=new Map;n.selected=n.selected.filter((t=>!t.isRootModel())).map((t=>{let e=E7(t,(t=>{const e=n.root.getNewRefid();return void 0!==t&&c.set(t,e),e}));return s.push({component:e,to_container:t.parent}),e})).map((t=>(t.replaceRefids(c),t))),s.forEach((({component:t,to_container:e})=>{e.addComponent(t)})),this.duplicates=n.selected.map((t=>({component:t})))}else this.changes=u7.before(i)}}},dragmove:function(t,e){var{origin:r,deliverer:n}=e;if(!r.stuck){var i=n.selected;if(0!=i.length){var{x:a,y:o}=i[0].transcoordC2S(t.offsetX,t.offsetY),s=i[0].transcoordS2P(a,o);t.shiftKey?2==this.direction&&(this.direction=0):this.direction=2;var c=s.x-this.last_pos.x,u=s.y-this.last_pos.y;if(0==this.direction){if(c*c+u*u<25)return;Math.abs(c)>Math.abs(u)?this.direction=3:this.direction=4}3==this.direction?u=0:4==this.direction&&(c=0),i.forEach((t=>{t.move({x:c,y:u},1===i.length)})),this.last_pos=s,itt(n,i)}}},dragend:function(t,e){var{origin:r,deliverer:n}=e;if(!r.stuck){var i=n.selected;if(0!=i.length){var a=i[0].parent,o=n.focused||e.deliverer;if(this.changes&&!o.isGroup())if(n.hasSameParentForAllSelected&&o&&o!==a){var s=this.changes.map((t=>{let{component:e,before:r}=t;return{component:e,to_container:o}}));n.app.commander.execute(new A7({changes:s}))}else u7.after(this.changes,n.app.commander);else if(this.duplicates){this.duplicates=this.duplicates.map((t=>(t.to_container=o,t)));let t=new A7({changes:this.duplicates});n.app.commander.execute(t)}i.forEach((t=>{t.parent&&t.parent.calculateBounds&&t.parent.calculateBounds()})),this.last_pos=null,this.changes=null,this.duplicates=null,itt(n,i,!0)}}}}},"(root)":{"(self)":{keydown:function(t,e){var{origin:r,deliverer:n}=e,i={},a=t.shiftKey?r.rootModel.MPP:1;switch(t.which){case 37:i.x=-a,i.y=0;break;case 38:i.x=0,i.y=-a;break;case 39:i.x=a,i.y=0;break;case 40:i.x=0,i.y=a;break;default:return}var o=n.selected;u7.around(n.app.commander,(function(){o.forEach((t=>{!t.stuck&&t.move(i,!1)}))}))}}}});const att=m5((()=>{const{x:t,y:e}=ntt,r=rtt.deref();r&&(r.rootModel.move({x:t-ett.x,y:e-ett.y},!1),ett={x:t,y:e})}),60,{leading:!0,trailing:!0});$9.register("shift-handler",{"model-layer":{"(all)":{dragstart:function(t,e){ett={x:t.offsetX,y:t.offsetY}},dragmove:function(t,e){rtt=new WeakRef(e.deliverer),ntt={x:t.offsetX,y:t.offsetY},att()}}}}),$9.register("zoom-handler",{"model-layer":{"(all)":{wheel:function(t,e){if(0==t.deltaY&&0==t.deltaX)return;var r=e.deliverer,n=t.deltaY<0?1:-1;let i=r.get("scale")||{x:1,y:1},a=r.get("translate"),o=t.offsetX,s=t.offsetY,c=r.transcoordC2S(o,s),u=.1*n,l={x:i.x+u,y:i.y+u};if(n<0&&i.x<.2||n>0&&i.x>10)return;r.set("scale",l);let h=r.transcoordC2S(o,s);r.set("translate",{x:a.x+(h.x-c.x)*l.x,y:a.y+(h.y-c.y)*l.y})}},"(self)":{dblclick:function(t,e){const r=e.origin;r?.root.fit()}}}});var ott={},stt={};function ctt(t){const e={};for(const r in t)t.hasOwnProperty(r)&&void 0!==t[r]&&(e[r]=t[r]);return e}$9.register("paste-handler",{"(root)":{"(self)":{stylepastestart:function(t){const{deliverer:e}=t,r=e.app;var n=e.selected;if(n&&n[0]&&n!==e.rootModel){const t=n[0],{fillStyle:e,strokeStyle:i,alpha:a,lineWidth:o,lineDash:s,lineCap:c,lineJoin:u,fontColor:l,fontSize:h,fontFamily:f,bold:d,italic:p,textAlign:g,textBaseline:v,textOverflow:y,paddingTop:m,paddingBottom:b,paddingLeft:x,paddingRight:w}=t.state;ott=n5({fillStyle:e,strokeStyle:i,alpha:a,lineWidth:o,lineDash:s,lineCap:c,lineJoin:u,fontColor:l,fontSize:h,fontFamily:f,bold:d,italic:p,textAlign:g,textBaseline:v,textOverflow:y,paddingTop:m,paddingBottom:b,paddingLeft:x,paddingRight:w}),r.mode=4}},stylepastestop:function(t){const{deliverer:e}=t,r=e.app;ott={},4==r.mode&&(r.mode=1)},databindpastestart:function(t){const{deliverer:e}=t,r=e.app;var n=e.selected;if(n&&n[0]&&n!==e.rootModel){const t=n[0],{mappings:e}=t.state;stt=n5({mappings:e}),r.mode=5}},databindpastestop:function(t){const{deliverer:e}=t,r=e.app;stt={},5==r.mode&&(r.mode=1)},keydown:function(t,e){const{deliverer:r}=e;"Esc"!=t.code&&"Escape"!=t.code||(4==r.app.mode?r.trigger("stylepastestop"):5==r.app.mode&&r.trigger("databindpastestop"))}}},"model-layer":{"(all)":{click:function(t,e){const{deliverer:r}=e,n=r.app;if(4!=n.mode&&5!=n.mode)return;const i=e.origin;4==n.mode?i===r?r.root.trigger("stylepastestop"):i&&u7.around(n.commander,(()=>{const t=ctt({...i.model,...ott});i?.set(t)})):i===r?r.root.trigger("databindpastestop"):i&&u7.around(n.commander,(()=>{const t=ctt({...i.model,...stt});i?.set(t)}))}}}});var utt=[],ltt=y5((function(){utt.forEach((t=>{t.resize()}))}),100);"undefined"!=typeof window&&window.addEventListener("resize",ltt);class htt extends B8{constructor(t,e){super(Object.assign({type:"root",scale:{x:1,y:1}},t||{}),e),this._maxRefid=0,t=t||{},this.fitMode=t.model&&t.model.fitMode,this._app=e,this.style=t.style,this.target_element=t.target_element,this.rebuildContentModel(this.model.model),utt.push(this)}dispose(){E8.hideAll(this),this._app&&this._app.dispose(),super.dispose(),this._disposeAllResources(),this.target_element=null,delete this._refresh_mapping_debouncer;var t=utt.indexOf(this);t>=0&&utt.splice(t,1),this.refidIndexMap.clear(),this._maxRefid=0}isRoot(){return!0}get app(){return this._app}get target_element(){return this._target_element}set target_element(t){this._ua_event_handler&&(this._ua_event_handler.dispose(),delete this._ua_event_handler),t&&(t.style.position="absolute",t.style.cursor="default",t.style.overflow="hidden",this._ua_event_handler=new J9(this,t)),this.forEach((e=>e.target=t)),this._target_element=t}get unitScale(){switch(this.model_layer&&this.model_layer.get("unit")){case"mm":case"cm":case"in":return this.app.PPM/10;default:return 1}}addTemplate(t,e){var r=this.templateMap[t];r&&N5("Template replaced (duplicated)",t,e,r),this.templateMap[t]=e,delete this.templatePrefixes}removeTemplate(t,e){var r=this.templateMap[t];r!==e?U5("Removing template failed (different)",t,e,r):delete this.templateMap[t],delete this.templatePrefixes}findTemplateFor(t){this.templatePrefixes||(this.templatePrefixes=Object.keys(this.templateMap).sort().reverse());var e=this.templatePrefixes.find((e=>t.startsWith(e)));if(e)return this.templateMap[e]}addIndex(t,e){var r=this.indexMap[t]||[];this.indexMap[t]=[...r,e]}removeIndex(t,e){const r=this.indexMap[t]||[],n=r.indexOf(e);-1==n?U5("Removing index failed (not found)",t,e):(r.splice(n,1),0==r.length&&delete this.indexMap[t])}addRefidIndex(t,e){void 0===t&&(t=this.getNewRefid(),e.set("refid",t)),this._maxRefid=Math.max(t,this._maxRefid);var r=this.refidIndexMap.get(t);r&&N5("Refid Index replaced (has not to be)",t,e,r),this.refidIndexMap.set(t,e)}removeRefidIndex(t,e){if(null!=t){var r=this.refidIndexMap.get(t);r!==e?N5("Refid Removing index failed (has not to be)",t,e,r):this.refidIndexMap.delete(t)}}getNewRefid(){return this._maxRefid=(this._maxRefid||0)+1,this._maxRefid}async subscribe(t,e){this._app.isViewMode&&t&&this._app&&(e._subscription=await this._app.subscribe(t,e))}async unsubscribe(t,e){e._subscription&&(await e._subscription.unsubscribe(),delete e._subscription)}findById(t){return(this.indexMap[t.replace(/^#/,"")]||[])[0]}findAllById(t){return this.indexMap[t.replace(/^#/,"")]||[]}findByRefid(t){return this.refidIndexMap.get(t)}findOrCreate(t){var e=this.findAllById(t);if(!e&&this.app&&!this.app.isEditMode){let e=this.findTemplateFor(t);if(e){let r=Object.assign(n5(e.hierarchy),{id:t,templatePrefix:""});return component=S7(r,this.app),this.model_layer.addComponent(component),[component]}}return e}resize(){this.components.forEach((t=>{t.resize&&t.resize()})),this.invalidate()}_disposeAllResources(){this.selected=[],this._focused=null,this._ready=!1,this.eventEngine&&(this.assist_handlers&&this.assist_handlers.forEach((t=>{this.eventEngine.remove(t)})),this.eventEngine.dispose(),delete this.eventEngine),this.assist_layers&&this.assist_layers.forEach((t=>{t.dispose(),this.removeComponent(t)})),delete this.assist_layers,this.model_layer&&this.model_layer.dispose(),this.model_layer&&this.removeComponent(this.model_layer),delete this.model_layer,this.indexMap={},this.refidIndexMap=new Map,this.templateMap={}}rebuildContentModel(t){this._disposeAllResources(),this.eventEngine=new F9(this),(t=t||{}).type="model-layer",this.model_layer=S7(t,this.app),this.addComponent(this.model_layer),this.model_layer.target=this.target_element,this.assist_layers=(this.model.layers||[]).map((t=>{var e=S7(t,this.app);return this.addComponent(e),e.target=this.target_element,e})),this.assist_handlers=(this.model.handlers||[]).map((t=>{var e={};return this.eventEngine.add(e,$9.get(t)),e})),this._ready=!0,this.traverse((t=>t.ready()))}get root(){return this}get anchors(){}get isReady(){return this._ready}get rootModel(){return this.model_layer}get stuck(){return!0}get data(){return Object.values(this.indexMap).reduce(((t,[e])=>(t[e.model.id]=e.data,t)),{})}set data(t){for(var e in t){var r=this.findOrCreate(e);r&&r.forEach((r=>r.data=t[e]))}}get dataByRefid(){var t={};for(let[e,r]of this.refidIndexMap.entries())t[e]=r.data;return t}set dataByRefid(t){for(var e in t){var r=this.findByRefid(Number(e));r&&(r.data=t[e])}}get values(){return Object.values(this.indexMap).reduce(((t,[e])=>(t[e.model.id]=e.value,t)),{})}set values(t){for(var e in t){var r=this.findOrCreate(e);r&&r.forEach((r=>r.value=t[e]))}}get valuesByRefid(){var t={};for(let[e,r]of this.refidIndexMap.entries())t[e]=r.value;return t}set valuesByRefid(t){for(var e in t){var r=this.findByRefid(Number(e));r&&(r.value=t[e])}}get selected(){return(this._selected||[]).filter((t=>t.parent))}set selected(t){var e=this._selected;if(this._selected=t,!t||t.length<=1)this.hasSameParentForAllSelected=!0;else{let e=t[0].parent;this.hasSameParentForAllSelected=!t.find((t=>t.parent!=e))}this.trigger("selected",t,e)}get focused(){return this._focused}set focused(t){this._focused!==t&&(this._focused=t,this.invalidate())}get style(){return this._style}set style(t){this._style=t,this._compiled_style=t}get hasTextProperty(){return!1}render(){this.components.forEach((t=>t.draw()))}contains(t,e){return!0}capturePath(t,e){return this.model_layer.capturePath(t,e)}invalidate(){this.components.forEach((t=>t.invalidate()))}get eventMap(){return{"(root)":{"(descendant)":{added:this.onadded,removed:this.onremoved,change:this.onchanged}}}}refreshMappings(){if(!this._refresh_mapping_debouncer){if(this.disposed)return;this._refresh_mapping_debouncer=y5((function t(e){e.executeMappings(),e.components&&e.components.forEach((e=>t(e)))}),1e3)}this._refresh_mapping_debouncer(this.model_layer)}_addTraverse(t){t.components&&t.components.forEach((t=>this._addTraverse(t)));var{id:e,refid:r,tag:n,templatePrefix:i}=t.model;this.addRefidIndex(r,t),e&&this.addIndex(e,t),n&&this.subscribe(n,t),i&&this.addTemplate(i,t);var a=M5({},t.eventMap,t.model.eventMap);this.eventEngine.add(t,a)}_removeTraverse(t){t.components&&t.components.forEach((t=>this._removeTraverse(t)));var{id:e,refid:r,tag:n,templatePrefix:i}=t.model;this.removeRefidIndex(r,t),e&&this.removeIndex(e,t),n&&this.unsubscribe(n,t),i&&this.removeTemplate(i,t),this.eventEngine.remove(t)}onadded(t,e){this._addTraverse(e),this.refreshMappings(),this.invalidate()}onremoved(t,e){this._removeTraverse(e),this.invalidate()}onchanged(t,e,r){e.templatePrefix&&this.removeTemplate(e.templatePrefix,r.origin),t.templatePrefix&&this.addTemplate(t.templatePrefix,r.origin),e.id&&this.removeIndex(e.id,r.origin),t.id&&this.addIndex(t.id,r.origin),e.tag&&this.unsubscribe(e.tag,r.origin),t.tag&&this.subscribe(t.tag,r.origin),e.id==t.id&&e.class==t.class||this.refreshMappings()}}Object.assign(htt.prototype,{fit:function(t){var{width:e,height:r,fitMode:n}=this.model_layer.model,i=this.target_element,a=this.model_layer;if(this.fitMode=t||this.fitMode||n||"ratio",e&&r&&i&&i.clientWidth&&i.clientHeight){switch(this.fitMode){case"center":!function(t,e,r){var n=t.unitScale,{width:i,height:a}=e.model;e.set("scale",{x:n,y:n}),e.set("translate",{x:Math.max((r.clientWidth-i*n)/2,0),y:Math.max((r.clientHeight-a*n)/2,0)})}(this,a,i);break;case"both":!function(t,e,r){var{width:n,height:i}=e.model,a=r.clientWidth,o=r.clientHeight;e.set("scale",{x:a/n,y:o/i}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"width":!function(t,e,r){var n=r.clientWidth/e.get("width");e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"height":!function(t,e,r){var n=r.clientHeight/e.get("height");e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"ratio":!function(t,e,r){var{width:n,height:i}=e.model,a=r.clientWidth,o=r.clientHeight,s=a/n,c=o/i,u=Math.min(s,c);e.set("scale",{x:u,y:u}),e.set("translate",{x:(a-n*u)/2,y:(o-i*u)/2})}(0,a,i);break;default:!function(t,e,r){var n=t.unitScale;e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(this,a)}this.resize()}}}),h8.memoize(htt.prototype,"unitScale",!1);var ftt=13.3,dtt=function(t){return void 0!==t&&(ftt=t),ftt};const ptt="$base_url";const gtt=Math.PI/12;class vtt{constructor(t,e){this._mode=t,this.screen=dtt(),this._baseUrl="undefined"!=typeof window?window.location.origin:null,this._refProvider=e,this.isEditMode&&(this._rotateStep=gtt,this._rotateStepForced=!1)}dispose(){this._dataSubscriptionProvider&&this._dataSubscriptionProvider.dispose(),delete this._dataStorage}_calcScreen(){var t={width:screen.width,height:screen.height};this._PPI=function(t,e,r,n){t>0||(t=1),e>0||(e=1),n||(n="d");var i=("d"==n?Math.sqrt(t*t+e*e):"w"==n?t:e)/r;return i>0?Math.round(i):0}(t.width,t.height,this.screen),this._PPM=this._PPI/25.4}subscribe(t,e){return this._dataSubscriptionProvider?.subscribe(t,e)}get refProvider(){return this._refProvider}set dataSubscriptionProvider(t){this._dataSubscriptionProvider=t}get dataSubscriptionProvider(){return this._dataSubscriptionProvider}set commander(t){this._commander=t}get commander(){return this._commander}get screen(){return this._screen}set screen(t){this._screen=t,this._calcScreen()}get DPPX(){return $5}get PPI(){return this._PPI}get PPM(){return this._PPM}get mode(){return this._mode}set mode(t){var e=this._mode;e!==t&&(this._mode=t,this.trigger("mode",t,e))}get isViewMode(){return 0==this._mode}get isEditMode(){return 1==this._mode}get baseUrl(){return this._baseUrl}set baseUrl(t){t&&this._baseUrl!=t&&(this._baseUrl=t)}url(t){try{return(t.includes(ptt)?new URL(t.replace(ptt,this.baseUrl),this.baseUrl):new URL(t,location.origin)).href}catch(e){U5(e,t)}}get rotateStep(){return this._rotateStep}set rotateStep(t){this._rotateStep=Number(t)||gtt}get rotateStepForced(){return this._rotateStepForced}set rotateStepForced(t){this._rotateStepForced=!!t}get dataStorage(){return this._dataStorage}set dataStorage(t){this._dataStorage=t}}F5(vtt.prototype,j5.withEvent);class ytt{constructor(t,e){!(t=Number(t))||t<=0?(N5("TimeCapsule maxsize should be greater than 0.",t),this.maxsize=10):this.maxsize=t,this.reset(),e&&(this.snapshot(e),this.preserve())}preserve(){this.checkPoint=this.pos}hasUnpreservedChanges(){return this.checkPoint!=this.pos}dispose(){this.reset()}snapshot(t){if(this.q.splice(this.pos+1,this.q.length-(this.pos+1),t),this.q.length>this.maxsize){const t=this.q.splice(0,this.q.length-this.maxsize);this.checkPoint=Math.max(-1,this.checkPoint-t.length)}this.pos=this.q.length-1}forward(){if(this.snapshot_taker&&this.snapshot_taker.take(),this.forwardable)return this.q[++this.pos];U5("Not forwardable.")}backward(){if(this.snapshot_taker&&this.snapshot_taker.take(),this.backwardable)return this.q[--this.pos];U5("Not backwardable.")}get current(){if(-1!==this.pos)return this.q[this.pos];U5("Non state has been recorded.")}get length(){return this.q.length}get forwardable(){return this.pos<this.q.length-1}get backwardable(){return this.pos>0}get snapshot_taker(){return this._snapshot_taker}set snapshot_taker(t){this._snapshot_taker=t}reset(){this.q=[],this.pos=-1,this.checkPoint=-1}}var mtt=y5((t=>{t.brake||t.take()}),1e3,{leading:!0,trailing:!1});function btt(t){!t.brake&&t.dirty&&mtt(t)}class xtt{constructor(t,e){this.brake=!1,this.dirty=!1,this.state_holder=t,this.timecapsule=e,this.timecapsule.snapshot_taker=this}dispose(){delete this.state_holder,delete this.timecapsule}touch(){this.dirty=!0,btt(this)}take(t){(this.dirty||t)&&(this.timecapsule.snapshot(this.state_holder.state),this.dirty=!1)}get brake(){return this._brake}set brake(t){this._brake=!!t,btt(this)}}function wtt(t,e){var r=e.model_layer.get("scale"),n=e.model_layer.get("translate");if(t){let i=JSON.parse(t);i.scale=r,i.translate=n,e.rebuildContentModel(i)}}class Att{constructor(t){this.container=t,this.timecapsule=new ytt(20);var e=this;this.snapshot_taker=new xtt({get state(){let t=e.container.model_layer.hierarchy;return JSON.stringify(t)}},this.timecapsule),this.snapshot_taker.take(!0),this.timecapsule.preserve()}dispose(){this.reset(),this.timecapsule&&this.timecapsule.dispose(),this.snapshot_taker&&this.snapshot_taker.dispose(),delete this.container,delete this.timecapsule,delete this.snapshot_taker}preserve(){this.timecapsule.preserve()}hasUnpreservedChanges(){return this.timecapsule.hasUnpreservedChanges()}execute(t,e){!1!==e&&t&&t.execute(),this.snapshot_taker.touch(),this.trigger("execute",t,!0,!1)}undo(){this.timecapsule.backwardable&&(wtt(this.timecapsule.backward(),this.container),this.trigger("undo",this.undoable(),this.redoable()))}redo(){this.timecapsule.forwardable&&(wtt(this.timecapsule.forward(),this.container),this.trigger("redo",this.undoable(),this.redoable()))}undoable(){return this.timecapsule.backwardable}redoable(){return this.timecapsule.forwardable}reset(){this.timecapsule&&this.timecapsule.reset(),this.trigger("command-reset")}}F5(Att.prototype,j5.withEvent);var _tt=new WeakSet;class ktt{static get residents(){return _tt}constructor(t){this._container=t,this.app=t.app,this._commander=new Att(this._container),this.app.commander=this._commander,_tt.add(this)}add(){return T7.apply(this._container,arguments)}duplicate(){return P7.apply(this._container,arguments)}remove(){return O7.apply(this._container,arguments)}animate(){return a4.apply(this,arguments)}fullscreen(){return j7.apply(this._container,arguments)}get target(){return this._container.target_element}set target(t){var e;if("string"==typeof t){if(!(e=document.getElementById(t)))throw`target element '${t}' is not exist`;if(e.firstChild)throw`target element '${t}' already has children`}else e=t;e&&e.style&&(e.style.cursor="default"),this._container.target_element=e,this._container.invalidate()}get scale(){return this.root.get("scale")}set scale(t){this.root.set("scale",t)}get translate(){return this.root.get("translate")}set translate(t){this.root.set("translate",t)}get unit(){return this.root.get("unit")||"px"}get PPM(){return this.app.PPM}get PPI(){return this.app.PPI}get DPPX(){return this.app.DPPX}static get DPPX(){return $5}get unitScale(){return this._container.unitScale}get screen(){return this.app.screen}set screen(t){this.app.screen=t,this._container.resize()}resize(){this._container.resize()}release(){this.dispose()}dispose(){this._commander&&this._commander.dispose(),this._container&&this._container.dispose()}get selected(){return this._container.selected.slice()}set selected(t){this._container.selected=t}select(t,...e){return this._container.selected=this.root?.findAll(t,...e),this.selected}get commander(){return this._commander}undo(){this.commander.undo()}undoable(){return this.commander.undoable()}redo(){this.commander.redo()}redoable(){return this.commander.redoable()}preserve(){this.commander.preserve()}hasUnpreservedChanges(){return this.commander.hasUnpreservedChanges()}cut(){return z7.apply(this._container,arguments)}copy(){return L7.apply(this._container,arguments)}paste(){return B7.apply(this._container,arguments)}undoableChange(){return n9.apply(this._container,arguments)}change(){return r9.apply(this.root,arguments)}get model(){return this.root.hierarchy}set model(t){this._container.rebuildContentModel(t)}get rootContainer(){return this._container}get root(){return this._container?.model_layer}findAll(){return this.root.findAll.apply(this.root,arguments)}findFirst(){return this.root.findFirst.apply(this.root,arguments)}findById(){return this._container.findById.apply(this._container,arguments)}serialize(){return this.root.trim(),this.root.serialize.apply(this.root,arguments)}align(){return y7.apply(this._container,arguments)}place(){return f9.apply(this._container,arguments)}distribute(){return x7.apply(this._container,arguments)}move(){return _7.apply(this._container,arguments)}zorder(){return k7.apply(this._container,arguments)}symmetryX(){return t9.apply(this._container,arguments)}symmetryY(){return e9.apply(this._container,arguments)}on(){return I7.apply(this._container,arguments)}once(){return R7.apply(this._container,arguments)}off(){return this._container&&C7.apply(this._container,arguments)}centerTo(t,e){return this.root.centerTo(t,e)}get mode(){return this.app.mode}set mode(t){void 0!==t&&(this.app.mode=t)}toDataURL(){return Q7.apply(this._container,arguments)}group(){return K7.apply(this._container,arguments)}ungroup(){return J7.apply(this._container,arguments)}fit(t){this._container.once("redraw",(()=>this._container.fit(t))),this._container.invalidate()}get fitMode(){return this._container.fitMode}get ids(){return i9.apply(this._container)}get data(){return this._container.data}set data(t){this._container.data=t}get dataByRefid(){return this._container.dataByRefid}set dataByRefid(t){this._container.dataByRefid=t}get values(){return this._container.values}set values(t){this._container.values=t}get valuesByRefid(){return this._container.valuesByRefid}set valuesByRefid(t){this._container.valuesByRefid=t}get baseUrl(){return this.app.baseUrl}set baseUrl(t){this.app.baseUrl=t}startAddMode(){return d9.apply(this._container,arguments)}startStylePasteMode(){return p9.apply(this._container,arguments)}stopStylePasteMode(){return g9.apply(this._container,arguments)}startDatabindPasteMode(){return v9.apply(this._container,arguments)}stopDatabindPasteMode(){return y9.apply(this._container,arguments)}}const Stt=new class{load(t){}save(t,e){}clear(t){}};function Ett({target:t,model:e,style:r,layers:n=[],handlers:i=[],mode:a=0,refProvider:o,dataSubscriptionProvider:s,dataStorage:c=Stt,baseUrl:u,fitMode:l}){var h=null;if("string"==typeof t){if(!(h=document.getElementById(t)))throw`target element '${t}' is not exist`;if(h.firstChild)throw`target element '${t}' is not empty`}else h=t;h&&h.style&&(h.style.position="absolute",h.style.cursor="default",h.style.overflow="hidden");var f=new vtt(a,o);return f.baseUrl=u,f.dataSubscriptionProvider=s,f.dataStorage=c,new ktt(new htt({target_element:h,model:e,style:r,layers:n,handlers:i,fitMode:l},f))}const Mtt=["mousemove","mouseup","mousedown","mouseout","wheel","tap","click","touchstart","touchmove","touchend","mouseenter","mouseleave","dragstart","dragmove","dragend","dblclick"];var Ttt=t=>class extends t{isHTMLElement(){return!0}isShadowable(){return!0}get element(){return this._element}set element(t){this._element=t}get tagName(){return this.get("type")}setElementProperties(t){throw new Error("Not Implemented Yet")}createElement(){this.element=document.createElement(this.tagName),this.element&&(this.parent.isHTMLElement()?this.parent.element.appendChild(this.element):this.root.model_layer.overlay.appendChild(this.element),Mtt.forEach((t=>{this.element.addEventListener(t,this.userInputEventHandler.bind(this))})),e6.forEach((t=>{this.element.addEventListener(t,this.userInputEventHandler.bind(this))})),this.oncreate_element&&this.oncreate_element(this.element))}userInputEventHandler(t){K9(this,t.type,t),t.stopPropagation()}reposition(){this.element&&H6(this)}disposeElement(){var t=this.element;t&&t.parentElement&&t.parentElement.removeChild(t),delete this.element}ready(){super.ready(),!this.element&&this.createElement(),this.parent.isHTMLElement()?this.parent.element.appendChild(this.element):this.root.model_layer.overlay.appendChild(this.element),this.setElementProperties(this.element),this.reposition()}dispose(){this.disposeElement(this),super.dispose()}get hasTextProperty(){return!0}get textHidden(){return!0}onchange(t,e){this.element&&this.setElementProperties(this.element),this.reposition()}isDescendible(t){return t.isHTMLElement()}};const Ptt={x:1,y:1},Ott={boxSizing:"border-box",margin:"0px",position:"absolute",outline:"none"},Itt={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"layout",label:"layout",name:"layoutOption"}],help:"scene/component/container"};class Rtt extends(Ttt(B8)){get tagName(){return"div"}get nature(){return Itt}setElementProperties(t){}get layout(){return x8.get(this.get("layout"))||w8}reposition(){if(this.element){var t=this,{id:e,class:r,scale:n=Ptt}=t.state,{rotation:i=0,hidden:a}=t,{left:o,top:s,width:c,height:u}=t.bounds,l=c/2,h=u/2,f=t.element;f.hidden=a,e&&(f.id=e),r&&(f.className=r),Object.assign(f.style,Ott,{left:o+"px",top:s+"px",width:"0px",height:"0px",backgroundColor:"transparent"});var d=t.delta(),p=(n&&n.x||1)*d.sx,g=(n&&n.y||1)*d.sy,v=(i||0)+d.theta,y=d.tx||0,m=d.ty||0;["-webkit-","-moz-","-ms-","-o-",""].forEach((t=>{f.style[t+"transform"]=`translate(${y+l}px, ${m+h}px) rotate(${v}rad) translate(${-l}px, ${-h}px) scale(${p}, ${g}) perspective(1px)`}))}}}h8.register("container",Rtt);const Ctt=5,jtt=Math.sqrt(3),Dtt=2;function Ltt(t,e,r,n,i){var a,o,s,c,u=Ctt+i,l=r.x,h=r.y,f=n.x,d=n.y;if(Math.abs(l-f)>u&&Math.abs(h-d)>u){var p=(d-h)/(f-l),g=h-p*l;if(Math.abs(e-(p*t+g))>u)return!1}return l>f?(o=l,a=f):(o=f,a=l),h>d?(c=h,s=d):(c=d,s=h),!(o+Ctt<t)&&(!(a-Ctt>t)&&(!(c+Ctt<e)&&!(s-Ctt>e)))}function ztt(t,e,r,n=2){for(let i=0;i<r.length-1;i++)if(Ltt(t,e,r[i],r[i+1],n))return!0;return!1}function Btt(t,e,r,n){if("arrow"!=t.slice(-5))return r;var i=Math.atan2(n.y-r.y,n.x-r.x),a=1.5*e;return{x:r.x+Math.cos(i)*a,y:r.y+Math.sin(i)*a}}function Ftt(t,e,r){var{lineWidth:n=Dtt,strokeStyle:i="#000000",lineCap:a=!1,alpha:o=1,begin:s="none",end:c="none",beginSize:u="size5",endSize:l="size5"}=r;if(("none"!=s||"none"!=c)&&(n=Number(n)||Dtt,t.lineCap=a,t.lineWidth=n,t.strokeStyle=i,t.fillStyle=i,t.globalAlpha*=o,"none"!=s&&Ntt(t,e[0],e[1],n,s,Utt(u,n)),"none"!=c)){let r=e.length;Ntt(t,e[r-1],e[r-2],n,c,Utt(l,n))}}function Ntt(t,e,r,n,i,a){var{x:o,y:s}=e,c=Math.atan2(r.y-s,r.x-o);switch(t.beginPath(),t.translate(o,s),t.rotate(c),i){case"oval":t.ellipse(0,0,a.X,a.Y,0,0,2*Math.PI),t.fill();break;case"diamond":t.moveTo(-a.X,0),t.lineTo(0,-a.Y),t.lineTo(a.X,0),t.lineTo(0,a.Y),t.fill();break;case"arrow":t.moveTo(0,0),t.lineTo(jtt*a.X,-a.Y),t.lineTo(jtt*a.X,a.Y),t.fill();break;case"sharp-arrow":t.moveTo(0,0),t.lineTo(jtt*a.X,-a.Y),t.lineTo(-a.X/1.5+jtt*a.X,0),t.lineTo(jtt*a.X,a.Y),t.fill();break;case"open-arrow":t.moveTo(jtt*a.X+n,-a.Y),t.lineTo(n,0),t.lineTo(jtt*a.X+n,a.Y),t.stroke()}t.rotate(-c),t.translate(-o,-s),t.closePath()}function Utt(t,e){let r={};switch(e*=1.2,t){case"size1":r.X=e,r.Y=e;break;case"size2":r.X=1.5*e,r.Y=e;break;case"size3":r.X=2*e,r.Y=e;break;case"size4":r.X=e,r.Y=1.5*e;break;case"size5":default:r.X=1.5*e,r.Y=1.5*e;break;case"size6":r.X=2*e,r.Y=1.5*e;break;case"size7":r.X=e,r.Y=2*e;break;case"size8":r.X=1.5*e,r.Y=2*e;break;case"size9":r.X=2*e,r.Y=2*e}return r}const Ytt="N",Gtt="S",Wtt="E",Htt="W";class qtt{constructor({component:t,anchor:e,position:r,self:n}){this.component=t,this._anchorName=e,this._position=r,this.self=n}get position(){const t=this.anchor;if(t){var{position:e}=t;const r=this.component.transcoordS2T(e.x,e.y);return this.self.transcoordT2P(r.x,r.y)}return this._position}set position({x:t,y:e}){this._position={x:t,y:e}}get anchor(){return this.component?.findAnchor(this._anchorName)}get direction(){const t=this.component.bounds,e=this.anchor;if(!e)return Wtt;const r=e.position;return r.y<=t.top?Ytt:r.y>=t.top+t.height?Gtt:r.x<=t.left?Htt:Wtt}get boundaryPosition(){const t=this.anchor;if(t){var{position:e}=t,r=0,n=0;switch(this.direction){case Gtt:n=20;break;case Ytt:n=-20;break;case Htt:r=-20;break;default:r=20}e={x:e.x+r,y:e.y+n};const i=this.component.transcoordS2T(e.x,e.y);return this.self.transcoordT2P(i.x,i.y)}}}class Xtt extends h8{isLine(){return!0}replaceRefids(t){["from","to"].forEach((e=>{const r=this.get(e);if(r?.component){const n=t.get(r.component)||r.component;this.set(e,{...r,component:n})}}))}get fromEnd(){if(this.parent&&!this._fromEnd){const{component:t,anchor:e,position:r}=this.getState("from")||{};if(!t)return;const n=this.root?.findByRefid(t);if(!n)return;this._fromEnd=new qtt({component:n,fromto:"from",anchor:e,position:r,self:this})}return this._fromEnd}get from(){return this.getState("from")}set from(t){delete this._fromEnd,this.set("from",t)}get toEnd(){if(this.parent&&!this._toEnd){const{component:t,anchor:e,position:r}=this.getState("to")||{};if(!t)return;const n=this.root?.findByRefid(t);if(!n)return;this._toEnd=new qtt({component:n,fromto:"to",anchor:e,position:r,self:this})}return this._toEnd}get to(){return this.getState("to")}set to(t){delete this._toEnd,this.set("to",t)}move({x:t,y:e},r){r&&(this.from={position:this._fromEnd?.position||this.getState("from")?.position||{x:0,y:0}},this.to={position:this._toEnd?.position||this.getState("to")?.position||{x:0,y:0}}),super.move({x:t,y:e},r)}render(t){var{begin:e="none",end:r="none",lineWidth:n,round:i=0}=this.state,a=this.drawPath;Ftt(t,a,this.state),t.beginPath();var o=Btt(e,n,a[0],a[1]),s=Btt(r,n,a[a.length-1],a[a.length-2]);a=[o,...a.slice(1,-1),s];var c={x:o.x,y:o.y};t.moveTo(o.x,o.y);for(var u=1;u<a.length;u++){const e=c;c=a[u];const r=a[u+1];if(e.x===c.x&&e.y===c.y)continue;if(!r){t.lineTo(c.x,c.y);break}var l=0!==(d=Math.sqrt((e.x-c.x)*(e.x-c.x)+(e.y-c.y)*(e.y-c.y)))?Math.atan2(e.x-c.x,e.y-c.y):0,h=Math.sin(l)*Math.min(i,d/2)+c.x,f=Math.cos(l)*Math.min(i,d/2)+c.y;const n=i>0||0!==d?{x:h,y:f}:c;var d;l=0!==(d=Math.sqrt((r.x-c.x)*(r.x-c.x)+(r.y-c.y)*(r.y-c.y)))?Math.atan2(r.x-c.x,r.y-c.y):0,h=Math.sin(l)*Math.min(i,d/2)+c.x,f=Math.cos(l)*Math.min(i,d/2)+c.y;const o=i>0||0!==d?{x:h,y:f}:c;t.lineTo(n.x,n.y),i>0&&t.quadraticCurveTo(c.x,c.y,o.x,o.y)}this.drawStroke(t)}contains(t,e){var{lineWidth:r}=this.state;return ztt(t,e,this.drawPath,r)}get resizable(){return!1}get mutable(){return!0}get rotatable(){return!1}get path(){const{from:t,to:e}=this.state;var{x1:r,y1:n,x2:i,y2:a}=this.state;return[this.fromEnd?.position||t?.position||{x:r,y:n},this.toEnd?.position||e?.position||{x:i,y:a}]}set path(t){const[e,r]=t,{from:n,to:i}=this.state;delete this._fromEnd,delete this._toEnd,this.set({from:{...n,position:e},to:{...i,position:r}})}get textBounds(){var t,e,r=this.drawPath,n=0;for(let s=1;s<r.length;s++){var i=r[s-1],a=r[s],o=(i.x-a.x)*(i.x-a.x)+(i.y-a.y)*(i.y-a.y);o>n&&(n=Math.ceil(o),t=i,e=a)}var{paddingTop:s,paddingLeft:c,paddingRight:u,paddingBottom:l}=this.state;return l||=0,s||=0,c||=0,u||=0,{left:Math.min(t.x,e.x)+c,top:Math.min(t.y,e.y)+s,width:Math.max(Math.abs(t.x-e.x)-c-u,0),height:Math.max(Math.abs(t.y-e.y)-s-l,0)}}get decorators(){return["decotag"]}}Xtt.getTipNeckPos=Btt,Xtt.containedInPath=ztt,Xtt.drawEndTips=Ftt,h8.register("line",Xtt);const Vtt={mutable:!1,resizable:!0,rotatable:!0,properties:[],"value-property":"text"};class Qtt extends(H8(f8)){is3dish(){return!0}render(t){var{cx:e,cy:r,rx:n,ry:i,startAngle:a,endAngle:o,anticlockwise:s}=this.state;t.beginPath(),t.ellipse(e,r,Math.abs(n),Math.abs(i),0,a||0,o||2*Math.PI,s)}get path(){var{cx:t,cy:e,rx:r,ry:n}=this.state;return[{x:t-r,y:e-n},{x:t+r,y:e-n},{x:t+r,y:e+n},{x:t-r,y:e+n}]}set path(t){var e=t[0],r=t[2];this.set({cx:e.x+(r.x-e.x)/2,cy:e.y+(r.y-e.y)/2,rx:(r.x-e.x)/2,ry:(r.y-e.y)/2})}contains(t,e){var{cx:r,cy:n,rx:i,ry:a}=this.state,o=(t-r)/(2*i-.5),s=(e-n)/(2*a-.5);return o*o+s*s<.25}outline(t){return function(t,e){var{cx:r,cy:n,rx:i,ry:a}=t.model,o=2*Math.PI*e,s=r+i*Math.cos(o),c=n+a*Math.sin(o);return t.transcoordS2T(s,c)}(this,t)}get anchors(){return function(t){var{left:e,top:r,width:n,height:i}=t.bounds,a=e+n/2,o=r+i/2;return[{name:"TOP",position:{x:a,y:r}},{name:"RIGHT",position:{x:e+n,y:o}},{name:"BOTTOM",position:{x:a,y:r+i}},{name:"LEFT",position:{x:e,y:o}}]}(this)}get nature(){return Vtt}}h8.memoize(Qtt.prototype,"path",!1),h8.register("ellipse",Qtt);var Ktt={ondragstart:function(t,e,r){r.mutatePath(null,(function(r){r.splice(e+1,0,t)}))},ondragmove:function(t,e,r){r.mutatePath(null,(function(r){r[e+1]=t}))},ondragend:function(t,e,r){}};const Jtt={mutable:!0,resizable:!1,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/polygon"};class Ztt extends f8{is3dish(){return!0}get mutable(){return!0}get pathExtendable(){return!0}get path(){return this.state.path}set path(t){this.set("path",t)}contains(t,e){var r=this.state.path,n=!1;return r.forEach(((i,a)=>{let o=(a+r.length+1)%r.length,s=i.x,c=i.y,u=r[o].x,l=r[o].y;c>e!=l>e&&t<(u-s)*(e-c)/(l-c)+s&&(n=!n)})),n}get controls(){var t=this.path;return t.map(((e,r)=>{let n=t[r+1>=t.length?0:r+1];return{x:(e.x+n.x)/2,y:(e.y+n.y)/2,handler:Ktt}}))}get nature(){return Jtt}}h8.memoize(Ztt.prototype,"controls",!1),h8.register("polygon",Ztt);var $tt={ondragstart:function(t,e,r){r.mutatePath(null,(function(r){r.splice(e,0,t)}))},ondragmove:function(t,e,r){r.mutatePath(null,(function(r){r[e]=t}))},ondragend:function(t,e,r){}};const tet={mutable:!1,resizable:!1,rotatable:!1,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/polyline"};class eet extends Xtt{get pathExtendable(){return!0}get path(){const{from:t,to:e}=this.state,{path:r}=this.state;return[this.fromEnd?.position||t?.position||r[0],...r.slice(1,-1),this.toEnd?.position||e?.position||r[r.length-1]]}set path(t){const{from:e,to:r}=this.state;delete this._fromEnd,delete this._toEnd,this.set({from:{...e,position:t[0]},to:{...r,position:t[t.length-1]},path:t})}get controls(){var t=this.path,e=[];for(let r=0;r<t.length-1;r++){let n=t[r],i=t[r+1];0==r&&e.push({x:n.x,y:n.y,handler:$tt}),e.push({x:(n.x+i.x)/2,y:(n.y+i.y)/2,handler:$tt}),r==t.length-2&&e.push({x:i.x,y:i.y,handler:$tt})}return e}get nature(){return tet}}h8.register("polyline",eet);const ret={mutable:!1,resizable:!1,rotatable:!1,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/ortholine"};class net extends Xtt{get pathExtendable(){return!1}get drawPath(){const t=this.path[0],e=this.path[1],{component:r,direction:n,boundaryPosition:i=t}=this.fromEnd||{},{component:a,direction:o,boundaryPosition:s=e}=this.toEnd||{};var c=[i,s],u=[];i&&u.push(i);var l=r?.bounds;if(l){var h=r.transcoordS2T(l.left,l.top);h=this.transcoordT2P(h.x,h.y),l={...l,left:h.x,top:h.y}}var f=l?{left:l.left-20,top:l.top-20,width:l.width+40,height:l.height+40}:{left:i.x,top:i.y,width:0,height:0};l=l||f;var d=a?.bounds;if(d){h=a.transcoordS2T(d.left,d.top);h=this.transcoordT2P(h.x,h.y),d={...d,left:h.x,top:h.y}}var p=d?{left:d.left-20,top:d.top-20,width:d.width+40,height:d.height+40}:{left:s.x,top:s.y,width:0,height:0};d=d||p;var g=[f,p];const v=f.left>p.left?p.left:f.left,y=f.top>p.top?p.top:f.top;var m,b,x,w,A,_,k,S,E,M,T={left:v,top:y,width:f.left+f.width>p.left+p.width?f.left+f.width-v:p.left+p.width-v,height:f.top+f.height>p.top+p.height?f.top+f.height-y:p.top+p.height-y},P=0,O=0;l.left+l.width<d.left?(w=0,A=1,E=n,M=o,m=(l.left+l.width+d.left)/2,P=d.left-m):d.left+d.width<l.left&&(w=1,A=0,E=o,M=n,m=(l.left+d.width+d.left)/2,P=l.left-m),l.top+l.height<d.top?(x=0,_=1,k=n,S=o,b=(l.top+l.height+d.top)/2,O=d.top-b):d.top+d.height<l.top&&(x=1,_=0,k=o,S=n,b=(l.top+d.height+d.top)/2,O=l.top-b);var I=[];if(m&&P>O){switch(M){case Htt:switch(E){case Wtt:I.push({x:m,y:c[w].y}),I.push({x:m,y:c[A].y});break;case Htt:var R=g[w].top+g[w].height/2>c[A].y?Math.min(g[w].top,c[A].y):Math.max(g[w].top+g[w].height,c[A].y);I.push({x:c[w].x,y:R}),I.push({x:m,y:R}),I.push({x:m,y:c[A].y});break;case Ytt:case Gtt:R=E===Gtt?Math.max(c[w].y,c[A].y):Math.min(c[w].y,c[A].y);I.push({x:c[w].x,y:R}),I.push({x:m,y:R}),I.push({x:m,y:c[A].y});break;default:return this.path}break;case Wtt:switch(E){case Wtt:var C=R=c[w].y<c[A].y?Math.min(g[A].top,c[w].y):Math.max(g[A].top+g[A].height,c[w].y);break;case Htt:C=R=void 0!==b?b:c[w].y<c[A].y?T.top-.5*P:T.top+T.height+.5*P;break;case Gtt:C=R=void 0!==b?Math.max(b,c[w].y):T.top+T.height;break;case Ytt:C=R=b?Math.min(b,g[w].top):T.top;break;default:return this.path}I.push({x:c[w].x,y:R}),I.push({x:m,y:R}),I.push({x:m,y:C}),I.push({x:c[A].x,y:C});break;case Gtt:switch(E){case Wtt:R=c[w].y,C=c[w].y>c[A].y?c[w].y:g[A].top+g[A].height;break;case Htt:C=R=b?Math.max(b,g[A].top+g[A].height):T.top+T.height;break;case Gtt:C=R=T.top+T.height;break;case Ytt:R=b?Math.min(b,g[w].top):g[w].top,C=b?Math.max(b,g[A].top+g[A].height):g[A].top+g[A].height;break;default:return this.path}I.push({x:c[w].x,y:R}),I.push({x:m,y:R}),I.push({x:m,y:C}),I.push({x:c[A].x,y:C});break;case Ytt:switch(E){case Wtt:R=c[w].y,C=c[w].y<c[A].y?c[w].y:g[A].top;break;case Htt:C=R=b?Math.min(b,g[A].top):T.top;break;case Gtt:R=void 0!==b?Math.max(b,c[w].y):c[w].y,C=void 0!==b?Math.min(b,c[A].y):c[A].y;break;case Ytt:C=R=T.top;break;default:return this.path}I.push({x:c[w].x,y:R}),I.push({x:m,y:R}),I.push({x:m,y:C}),I.push({x:c[A].x,y:C});break;default:return this.path}u.push(...0===w?I:I.reverse())}else if(b){switch(S){case Ytt:switch(k){case Gtt:I.push({x:c[x].x,y:b}),I.push({x:c[_].x,y:b});break;case Ytt:var j=g[x].left+g[x].width/2>c[_].x?Math.min(g[x].left,c[_].x):Math.max(g[x].left+g[x].width,c[_].x);I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:c[_].x,y:b});break;case Htt:j=Math.min(c[x].x,c[_].x);I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:c[_].x,y:b});break;case Wtt:j=Math.max(c[x].x,c[_].x);I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:c[_].x,y:b});break;default:return this.path}break;case Gtt:switch(k){case Htt:var D=j=T.left;break;case Wtt:D=j=void 0!==m?Math.max(m,c[x].x):T.left+T.width;break;case Ytt:D=j=void 0!==m?m:c[x].x<c[_].x?T.left-.5*O:T.left+T.width+.5*O;break;case Gtt:j=c[x].x,D=c[x].x<c[_].x?Math.min(g[_].left,c[x].x):Math.max(g[_].left+g[_].width,c[x].x);break;default:return this.path}I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:D,y:b}),I.push({x:D,y:c[_].y});break;case Wtt:switch(k){case Htt:j=void 0!==m?Math.min(m,c[x].x):c[x].x,D=void 0!==m?Math.max(m,c[_].x):c[_].x;break;case Wtt:D=j=T.left+T.width;break;case Ytt:D=j=void 0!==m?Math.max(m,c[_].x):T.left+T.width;break;case Gtt:j=c[x].x,D=Math.max(g[_].left+g[_].width,c[x].x);break;default:return this.path}I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:D,y:b}),I.push({x:D,y:c[_].y});break;case Htt:switch(k){case Htt:D=j=T.left;break;case Wtt:j=void 0!==m?Math.max(m,c[x].x):c[x].x,D=void 0!==m?Math.min(m,c[_].x):c[_].x;break;case Ytt:D=j=T.left;break;case Gtt:j=c[x].x<c[_].x?Math.min(g[_].left,c[x].x):c[x].x,D=Math.min(j,c[_].x);break;default:return this.path}I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:D,y:b}),I.push({x:D,y:c[_].y});break;default:return this.path}u.push(...0===x?I:I.reverse())}else switch(n){case Ytt:switch(o){case Ytt:var L=T.top;u.push({x:c[0].x,y:L}),u.push({x:c[1].x,y:L});break;case Gtt:var z=T.left+T.width;u.push({x:z,y:c[0].y}),u.push({x:z,y:T.top+T.height}),u.push({x:c[1].x,y:T.top+T.height});break;case Wtt:z=c[1].y<c[0].y&&c[1].x<c[0].x?c[0].x:T.left+T.width;u.push({x:z,y:c[0].y}),u.push({x:z,y:c[1].y});break;case Htt:z=T.left;u.push({x:z,y:c[0].y}),u.push({x:z,y:c[1].y});break;default:return this.path}break;case Gtt:switch(o){case Ytt:z=T.left+T.width;u.push({x:z,y:c[0].y}),u.push({x:z,y:T.top}),u.push({x:c[1].x,y:T.top});break;case Gtt:L=T.top+T.height;u.push({x:c[0].x,y:L}),u.push({x:c[1].x,y:L});break;case Wtt:L=T.top+T.height;u.push({x:c[0].x,y:L}),u.push({x:c[1].x,y:L});break;case Htt:L=T.top+T.height;u.push({x:c[0].x,y:L}),u.push({x:c[1].x,y:L});break;default:return this.path}break;case Htt:switch(o){case Ytt:z=c[0].x>c[1].x&&c[0].y<c[1].y?c[1].x:T.left,L=c[0].x>c[1].x&&c[0].y<c[1].y?c[1].y:Math.min(T.top,c[0].y);u.push({x:z,y:c[0].y}),u.push({x:z,y:L}),u.push({x:c[1].x,y:L});break;case Gtt:z=T.left,L=Math.max(T.top+T.height,c[0].y);u.push({x:z,y:c[0].y}),u.push({x:z,y:L}),u.push({x:c[1].x,y:L});break;case Wtt:z=T.left+T.width;u.push({x:c[0].x,y:T.top}),u.push({x:z,y:T.top}),u.push({x:z,y:c[1].y});break;case Htt:z=T.left;u.push({x:z,y:c[0].y}),u.push({x:z,y:c[1].y});break;default:return this.path}break;case Wtt:switch(o){case Ytt:L=c[0].y<c[1].y&&c[0].x<c[1].x?c[0].y:T.top;u.push({x:c[0].x,y:L}),u.push({x:c[1].x,y:L});break;case Gtt:L=c[0].y>c[1].y&&c[0].x<c[1].x?c[0].y:T.top+T.height;u.push({x:c[0].x,y:L}),u.push({x:c[1].x,y:L});break;case Wtt:L=T.top+T.height;u.push({x:c[0].x,y:L}),u.push({x:c[1].x,y:L});break;case Htt:L=T.top+T.height;u.push({x:c[0].x,y:L}),u.push({x:c[1].x,y:L});break;default:return this.path}break;default:return this.path}return s&&u.push(s),[t,...u,e].filter(((t,e,r)=>{if(0===e)return!0;const n=r[e-1];return t.x!==n.x||t.y!==n.y})).filter(((t,e,r)=>{if(0===e||e>=r.length-1)return!0;const n=r[e-1],i=r[e+1];return!(t.x===n.x&&t.x===i.x||t.y===n.y&&t.y===i.y)}))}get nature(){return ret}}h8.register("ortholine",net);const iet={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"image-selector",label:"image-src",name:"src",property:{displayField:"id",displayFullUrl:!0,baseUrlAlias:"$base_url",defaultStorage:"scene-image",storageFilters:{type:Array,value:[{name:"category",value:"image"}]},useUpload:!0}},{type:"select",label:"cross-origin",name:"crossOrigin",property:{options:["","anonymous","use-credentials"]}}],"value-property":"src",help:"scene/component/image-view"};class aet extends(p8(f8)){static get noimage(){return aet.NOIMAGE||(aet.NOIMAGE=new Image,aet.NOIMAGE.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABIBAMAAAD7Se1QAAAAIVBMVEUAAABHcEwBAQEREREBAQEEBAQGBgYLCwsDAwMDAwMICAi6HF9tAAAAC3RSTlNNAEAERiMYCS41Eac10lYAAAEgSURBVHhe7dY9asQwEAXgh7DNertNiJy48pIitY3SB7bYdk0ukL1BDDmA9gZecoH4pmFQ3MQayUMguPBrNPD4wD9TCMvJmt3M/AtYwXOlXiWgqADVCUBD46MAnGhMBaCiUQmAm8VA/Eh/eWl9Fn5WcxD+OLuRrUYJDKLluwH2InACUgkoACSdADxQc50Bytadb9RkM0CT13TcvlCT1HFg8UTHvasuUVACCa3El6u2UdD8LFTlKhUFFgA+d3dj10aABkUN72N3jAADCrJq7PIIsPidcxBoTHIIAjMFmyCwmGYIAA1P9gFgfCANAOsDSccCDW+uLDB+kLGg94OkZoAGkwsDDAe2DOg5oPxAg03rBR88OHpBz4N8UVeHFSwma74BTW6Ge4rIRa4AAAAASUVORK5CYII="),aet.NOIMAGE}dispose(){super.dispose(),this._offcanvas=null,this._image=null}render(t){var{left:e,top:r,width:n,height:i,isGray:a=!1,alpha:o=1,src:s}=this.state;if(this.prepareIf(!this._image&&s),t.beginPath(),t.globalAlpha*=o,this._image&&this._image.complete)if(a&&this._offcanvas)t.drawImage(this._offcanvas,e,r,n,i);else try{t.drawImage(this._image,e,r,n,i)}catch(a){t.drawImage(aet.noimage,e,r,n,i)}else!this.app.isViewMode&&t.drawImage(aet.noimage,e,r,n,i)}get nature(){return iet}get hasTextProperty(){return!1}ready(){super.ready(),this.prepareIf(!this._image&&this.state.src)}prepare(t,e){var{src:r,crossOrigin:n}=this.state;if(r){this._image=new Image;try{n&&(this._image.crossOrigin=n),this._image.src=this.app.url(r)||""}catch(t){return void e(t)}this._image.onload=()=>{if(this.get("isGray")){let t=this._image.width,e=this._image.height;this._offcanvas=h8.createCanvas(t,e);let r=this._offcanvas.getContext("2d");r.drawImage(this._image,0,0);let n=function(t,e,r){try{var n=t.getImageData(0,0,e,r)}catch(t){return N5("Get Image Data Error: "+t.message),null}var i=n.data;for(let t=0;t<e*r*4;t+=4){let e=i[t],r=i[t+1],a=i[t+2],o=parseInt((e+r+a)/3);n.data[t]=o,n.data[t+1]=o,n.data[t+2]=o}return n}(r,t,e);r.putImageData(n,0,0)}t(this)},this._image.onerror=t=>{this._image&&!this._image.currentSrc&&(this._image=null),e(t)}}else t(this)}get src(){return this.get("src")}set src(t){this.set("src",t)}onchange(t,e){(t.hasOwnProperty("src")||t.hasOwnProperty("isGray"))&&(this._offcanvas=null,this._image=null,this.prepareIf(t.src))}ondropfile(t,e){for(let r=0;r<t.length;r++)if(t[r].type.startsWith("image/"))return void(this.src=e[r])}}h8.register("image-view",aet);class oet extends(Ttt(p8(h8))){}var set={},cet={},uet={};Object.defineProperty(uet,"__esModule",{value:!0});var het=function(){function t(){}return t.bitsToNum=function(t){return t.reduce((function(t,e){return 2*t+e}),0)},t.byteToBitArr=function(t){for(var e=[],r=7;r>=0;r--)e.push(!!(t&1<<r));return e},t.lzwDecode=function(t,e){for(var r,n,i=0,a=function(t){for(var r=0,n=0;n<t;n++)e.charCodeAt(i>>3)&1<<(7&i)&&(r|=1<<n),i++;return r},o=[],s=1<<t,c=s+1,u=t+1,l=[],h=function(){l=[],u=t+1;for(var e=0;e<s;e++)l[e]=[e];l[s]=[],l[c]=null};;)if(n=r,(r=a(u))!==s){if(r===c)break;if(r<l.length)n!==s&&l.push(l[n].concat(l[r][0]));else{if(r!==l.length)throw new Error("Invalid LZW code.");l.push(l[n].concat(l[n][0]))}o.push.apply(o,l[r]),l.length===1<<u&&u<12&&u++}else h();return o},t}();uet.SuperGifUtils=het,Object.defineProperty(cet,"__esModule",{value:!0});var fet=uet,det=function(){function t(t,e){this.stream=t,this.handler=e}return t.prototype.parseCT=function(t){for(var e=[],r=0;r<t;r++)e.push(this.stream.readBytes(3));return e},t.prototype.readSubBlocks=function(){var t,e;e="";do{t=this.stream.readByte(),e+=this.stream.read(t)}while(0!==t);return e},t.prototype.parseHeader=function(){var t={};if(t.sig=this.stream.read(3),t.ver=this.stream.read(3),"GIF"!==t.sig)throw new Error("Not a GIF file.");t.width=this.stream.readUnsigned(),t.height=this.stream.readUnsigned();var e=fet.SuperGifUtils.byteToBitArr(this.stream.readByte());t.gctFlag=e.shift(),t.colorRes=fet.SuperGifUtils.bitsToNum(e.splice(0,3)),t.sorted=e.shift(),t.gctSize=fet.SuperGifUtils.bitsToNum(e.splice(0,3)),t.bgColor=this.stream.readByte(),t.pixelAspectRatio=this.stream.readByte(),t.gctFlag&&(t.gct=this.parseCT(1<<t.gctSize+1)),this.handler.hdr&&this.handler.hdr(t)},t.prototype.parseExt=function(t){var e=this;switch(t.label=this.stream.readByte(),t.label){case 249:t.extType="gce",function(t){e.stream.readByte();var r=fet.SuperGifUtils.byteToBitArr(e.stream.readByte());t.reserved=r.splice(0,3),t.disposalMethod=fet.SuperGifUtils.bitsToNum(r.splice(0,3)),t.userInput=r.shift(),t.transparencyGiven=r.shift(),t.delayTime=e.stream.readUnsigned(),t.transparencyIndex=e.stream.readByte(),t.terminator=e.stream.readByte(),e.handler.gce&&e.handler.gce(t)}(t);break;case 254:t.extType="com",function(t){t.comment=e.readSubBlocks(),e.handler.com&&e.handler.com(t)}(t);break;case 1:t.extType="pte",function(t){e.stream.readByte(),t.ptHeader=e.stream.readBytes(12),t.ptData=e.readSubBlocks(),e.handler.pte&&e.handler.pte(t)}(t);break;case 255:t.extType="app",function(t){e.stream.readByte(),t.identifier=e.stream.read(8),t.authCode=e.stream.read(3),"NETSCAPE"===t.identifier?function(t){e.stream.readByte(),t.unknown=e.stream.readByte(),t.iterations=e.stream.readUnsigned(),t.terminator=e.stream.readByte(),e.handler.app&&e.handler.app.NETSCAPE&&e.handler.app.NETSCAPE(t)}(t):function(t){t.appData=e.readSubBlocks(),e.handler.app&&e.handler.app[t.identifier]&&e.handler.app[t.identifier](t)}(t)}(t);break;default:t.extType="unknown",function(t){t.data=e.readSubBlocks(),e.handler.unknown&&e.handler.unknown(t)}(t)}},t.prototype.parseImg=function(t){t.leftPos=this.stream.readUnsigned(),t.topPos=this.stream.readUnsigned(),t.width=this.stream.readUnsigned(),t.height=this.stream.readUnsigned();var e=fet.SuperGifUtils.byteToBitArr(this.stream.readByte());t.lctFlag=e.shift(),t.interlaced=e.shift(),t.sorted=e.shift(),t.reserved=e.splice(0,2),t.lctSize=fet.SuperGifUtils.bitsToNum(e.splice(0,3)),t.lctFlag&&(t.lct=this.parseCT(1<<t.lctSize+1)),t.lzwMinCodeSize=this.stream.readByte();var r=this.readSubBlocks();t.pixels=fet.SuperGifUtils.lzwDecode(t.lzwMinCodeSize,r),t.interlaced&&(t.pixels=function(t,e){for(var r=new Array(t.length),n=t.length/e,i=function(n,i){var a=t.slice(i*e,(i+1)*e);r.splice.apply(r,[n*e,e].concat(a))},a=[0,4,2,1],o=[8,8,4,2],s=0,c=0;c<4;c++)for(var u=a[c];u<n;u+=o[c])i(u,s),s++;return r}(t.pixels,t.width)),this.handler.img&&this.handler.img(t)},t.prototype.parseBlock=function(){var t={};switch(t.sentinel=this.stream.readByte(),String.fromCharCode(t.sentinel)){case"!":t.type="ext",this.parseExt(t);break;case",":t.type="img",this.parseImg(t);break;case";":t.type="eof",this.handler.eof&&this.handler.eof(t);break;default:throw new Error("Unknown block: 0x"+t.sentinel.toString(16))}"eof"!==t.type&&setTimeout(this.parseBlock.bind(this),0)},t.prototype.parse=function(){this.parseHeader(),setTimeout(this.parseBlock.bind(this),0)},t}();cet.SuperGifParser=det;var pet={};Object.defineProperty(pet,"__esModule",{value:!0});var get=function(){function t(t){this.data=t,this.position=0}return t.prototype.readByte=function(){if(this.position>=this.data.length)throw new Error("Attempted to read past end of stream.");return this.data instanceof Uint8Array?this.data[this.position++]:255&this.data.charCodeAt(this.position++)},t.prototype.readBytes=function(t){for(var e=[],r=0;r<t;r++)e.push(this.readByte());return e},t.prototype.read=function(t){for(var e="",r=0;r<t;r++)e+=String.fromCharCode(this.readByte());return e},t.prototype.readUnsigned=function(){var t=this.readBytes(2);return(t[1]<<8)+t[0]},t}();pet.SuperGifStream=get,Object.defineProperty(set,"__esModule",{value:!0});var vet=cet,yet=pet,met=function(){function t(t,e){var r=this;for(var n in this.gifImgElement=t,this.options={autoPlay:!0},this.loading=!1,this.ready=!1,this.transparency=null,this.delay=null,this.disposalMethod=null,this.disposalRestoreFromIdx=null,this.lastDisposalMethod=null,this.frame=null,this.lastImg=null,this.playing=!0,this.forward=!0,this.ctxScaled=!1,this.frames=[],this.frameOffsets=[],this.initialized=!1,this.currentFrameIndex=-1,this.iterationCount=0,this.stepping=!1,this.handler={hdr:this.withProgress(this.doHdr.bind(this)),gce:this.withProgress(this.doGCE.bind(this)),com:this.withProgress(this.doNothing.bind(this)),app:{NETSCAPE:this.withProgress(this.doNothing.bind(this))},img:this.withProgress(this.doImg.bind(this)),eof:function(){r.pushFrame(),r.canvas.width=r.hdr.width*r.getCanvasScale(),r.canvas.height=r.hdr.height*r.getCanvasScale(),r.playerInit(),r.loading=!1,r.ready=!0,r.loadCallback&&r.loadCallback(r.gifImgElement)}},e)this.options[n]=e[n];this.onEndListener=e.onEnd,this.loopDelay=e.loopDelay||0,this.overrideLoopMode=null!=e.loopMode?e.loopMode:"auto",this.drawWhileLoading=null==e.drawWhileLoading||e.drawWhileLoading}return t.prototype.init=function(){var t=this.gifImgElement.parentNode,e=document.createElement("div");this.canvas=document.createElement("canvas"),this.canvasContext=this.canvas.getContext("2d"),this.tmpCanvas=document.createElement("canvas"),e.className=this.options.enclosingClass||"super-gif",e.appendChild(this.canvas),t&&(t.insertBefore(e,this.gifImgElement),t.removeChild(this.gifImgElement)),this.initialized=!0},t.prototype.loadSetup=function(t){return!this.loading&&(t&&(this.loadCallback=t),this.loading=!0,this.frames=[],this.clear(),this.disposalRestoreFromIdx=null,this.lastDisposalMethod=null,this.frame=null,this.lastImg=null,!0)},t.prototype.completeLoop=function(){this.onEndListener&&this.onEndListener(this.gifImgElement),this.iterationCount++,!1!==this.overrideLoopMode||this.iterationCount<0?this.doStep():(this.stepping=!1,this.playing=!1)},t.prototype.doStep=function(){if(this.stepping=this.playing,this.stepping){this.stepFrame(1);var t=10*this.frames[this.currentFrameIndex].delay;t||(t=100),0===this.getNextFrameNo()?(t+=this.loopDelay,setTimeout(this.completeLoop.bind(this),t)):setTimeout(this.doStep.bind(this),t)}},t.prototype.step=function(){this.stepping||setTimeout(this.doStep.bind(this),0)},t.prototype.putFrame=function(){var t;this.currentFrameIndex=parseInt(this.currentFrameIndex.toString(),10),this.currentFrameIndex>this.frames.length-1&&(this.currentFrameIndex=0),this.currentFrameIndex<0&&(this.currentFrameIndex=0),t=this.frameOffsets[this.currentFrameIndex],this.tmpCanvas.getContext("2d").putImageData(this.frames[this.currentFrameIndex].data,t.x,t.y),this.canvasContext.globalCompositeOperation="copy",this.canvasContext.drawImage(this.tmpCanvas,0,0)},t.prototype.playerInit=function(){this.loadErrorCause||(this.canvasContext.scale(this.getCanvasScale(),this.getCanvasScale()),this.options.autoPlay?this.step():(this.currentFrameIndex=0,this.putFrame()))},t.prototype.clear=function(){this.transparency=null,this.delay=null,this.lastDisposalMethod=this.disposalMethod,this.disposalMethod=null,this.frame=null},t.prototype.parseStream=function(t){try{new vet.SuperGifParser(t,this.handler).parse()}catch(t){this.handleError("parse")}},t.prototype.setSizes=function(t,e){this.canvas.width=t*this.getCanvasScale(),this.canvas.height=e*this.getCanvasScale(),this.tmpCanvas.width=t,this.tmpCanvas.height=e,this.tmpCanvas.style.width=t+"px",this.tmpCanvas.style.height=e+"px",this.tmpCanvas.getContext("2d").setTransform(1,0,0,1,0,0)},t.prototype.drawError=function(){this.canvasContext.fillStyle="black",this.canvasContext.fillRect(0,0,this.hdr.width,this.hdr.height),this.canvasContext.strokeStyle="red",this.canvasContext.lineWidth=3,this.canvasContext.moveTo(0,0),this.canvasContext.lineTo(this.hdr.width,this.hdr.height),this.canvasContext.moveTo(0,this.hdr.height),this.canvasContext.lineTo(this.hdr.width,0),this.canvasContext.stroke()},t.prototype.handleError=function(t){this.loadErrorCause=t,this.hdr={width:this.gifImgElement.width,height:this.gifImgElement.height},this.frames=[],this.drawError()},t.prototype.doHdr=function(t){this.hdr=t,this.setSizes(this.hdr.width,this.hdr.height)},t.prototype.doGCE=function(t){this.pushFrame(),this.clear(),this.transparency=t.transparencyGiven?t.transparencyIndex:null,this.delay=t.delayTime,this.disposalMethod=t.disposalMethod},t.prototype.pushFrame=function(){this.frame&&(this.frames.push({data:this.frame.getImageData(0,0,this.hdr.width,this.hdr.height),delay:this.delay}),this.frameOffsets.push({x:0,y:0}))},t.prototype.doImg=function(t){var e=this;this.frame||(this.frame=this.tmpCanvas.getContext("2d"));var r=this.frames.length,n=t.lctFlag?t.lct:this.hdr.gct;r>0&&(3===this.lastDisposalMethod?null!==this.disposalRestoreFromIdx?this.frame.putImageData(frames[this.disposalRestoreFromIdx].data,0,0):this.frame.clearRect(this.lastImg.leftPos,this.lastImg.topPos,this.lastImg.width,this.lastImg.height):this.disposalRestoreFromIdx=r-1,2===this.lastDisposalMethod&&this.frame.clearRect(this.lastImg.leftPos,this.lastImg.topPos,this.lastImg.width,this.lastImg.height));var i=this.frame.getImageData(t.leftPos,t.topPos,t.width,t.height);t.pixels.forEach((function(t,r){t!==e.transparency&&(i.data[4*r+0]=n[t][0],i.data[4*r+1]=n[t][1],i.data[4*r+2]=n[t][2],i.data[4*r+3]=255)})),this.frame.putImageData(i,t.leftPos,t.topPos),this.ctxScaled||(this.canvasContext.scale(this.getCanvasScale(),this.getCanvasScale()),this.ctxScaled=!0),this.drawWhileLoading&&(this.canvasContext.drawImage(this.tmpCanvas,0,0),this.drawWhileLoading=this.options.autoPlay),this.lastImg=t},t.prototype.doNothing=function(){},t.prototype.withProgress=function(t){return function(e){t(e)}},t.prototype.getNextFrameNo=function(){var t=this.forward?1:-1;return(this.currentFrameIndex+t+this.frames.length)%this.frames.length},t.prototype.stepFrame=function(t){this.currentFrameIndex=this.currentFrameIndex+t,this.putFrame()},t.prototype.getCanvasScale=function(){return this.options.maxWidth&&this.hdr&&this.hdr.width>this.options.maxWidth?this.options.maxWidth/this.hdr.width:window.devicePixelRatio||1},t.prototype.play=function(){this.playing=!0,this.step()},t.prototype.pause=function(){this.playing=!1},t.prototype.isPlaying=function(){return this.playing},t.prototype.getCanvas=function(){return this.canvas},t.prototype.isLoading=function(){return this.loading},t.prototype.isReady=function(){return this.ready},t.prototype.isAutoPlay=function(){return this.options.autoPlay},t.prototype.getLength=function(){return this.frames.length},t.prototype.getCurrentFrame=function(){return this.currentFrameIndex},t.prototype.moveTo=function(t){this.currentFrameIndex=t,this.putFrame()},t.prototype.loadURL=function(t,e){var r=this;if(this.loadSetup(e)){var n=new XMLHttpRequest;n.open("GET",t,!0),"overrideMimeType"in n?n.overrideMimeType("text/plain; charset=x-user-defined"):"responseType"in n?n.responseType="arraybuffer":n.setRequestHeader("Accept-Charset","x-user-defined"),n.onloadstart=function(){r.initialized||r.init()},n.onload=function(){if(200===n.status){var t=n.response;t.toString().indexOf("ArrayBuffer")>0&&(t=new Uint8Array(t));var e=new yet.SuperGifStream(t);setTimeout((function(){r.parseStream(e)}),0)}else r.handleError("xhr - response")},n.onerror=function(){r.handleError("xhr")},n.send()}},t.prototype.load=function(t){this.loadURL(this.gifImgElement.src,t)},t}(),bet=set.SuperGif=met;const xet={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"image-selector",label:"src",name:"src"},{type:"checkbox",label:"play",name:"play"}],"value-property":"src",help:"scene/component/gif-view"};class wet extends oet{async oncreate_element(t){var{src:e,play:r}=this.state;this.onchangesrc(e),this.onchangeplay(r)}buildImg(){var t=this.element;t.innerHTML="";var e=document.createElement("img");return e.style.width="100%",e.style.height="100%",t.appendChild(e),e}onchange(t,e){super.onchange(t,e),"src"in t&&this.onchangesrc(t.src),"play"in t&&this.onchangeplay(t.play)}setElementProperties(t){}onchangeplay(t){var e=this._superGif;e&&e.isReady()&&(t?e.play():e.pause())}onchangesrc(t){var e=this.buildImg();t||(t="data:image/gif;base64,R0lGODlhYABIAPcAAAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKio+Pj5iYmKCgoKampqurq66urrCwsLGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrOzs7S0tLa2tre3t7m5ubu7u7+/v8DAwMHBwcPDw8XFxcfHx8vLy8/Pz9LS0tXV1dfX193d3eTk5Onp6fj4+Pz8/P7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v///////////////////////////////////////////////////////////////////////////////yH5BAkAAPUAIf47R2VuZXJhdGVkIGJ5IGpzZ2lmIChodHRwczovL2dpdGh1Yi5jb20vYW50aW1hdHRlcjE1L2pzZ2lmLykALAAAAABgAEgAAAj+AGcJHEiwoMGDCBMqXMiwocOHECNKnEixosWLGDNq3Mixo8ePIEOKHEmypMmR9VKqXMmypcuXMGPKnJkSIs2bOHPqZGlzp8+fQOv1DEq0KMyhRpMmRaq0KVCmTqPmhCq1qkyqLrFRSyYwGTVsVo1iZXmNa8Fk18ISHasSm1mDycCq/ck2JTWF1ObSfTjz7cFken3WFbow8M7BDA3rHOwXruKpfGXeTZg3qDVrUge7RRg3KLZjx+Q2HVyvLNy0QaMJjBaVdD2tZr2K/mmNIObRkR+n9AsYt0Pddg1WXppb8bWDx1CLLW74GcJnSl3TtDY8Zu2Et4tKl7n52eyWnxXvhl7+26jqrspbnlfIWjtz2gWPZV95neH8veU9NxZYfbfD3kFt99J6Bnmn0mQO9XfYezrVxxlmx0GUXIAM4hSeffsxBN1TFd5E4Ef3QZbfTg6CNJ5gHXJ3TEntLThiTh+KFCJNAqZU4kgAitjQTheepOBMNcZI0oQ6JpbTjSZtiNN2PZ400IxHpdiSc07G911M0iFZZYtAStnWilUeBGVLrlEZpmM0elmPlmfO8iOZXl4DZpsGEYmll2bSWWCXLwJXVY1+urhjoGEBSuiSah6K36CKtpZoo4s9CimielZq6aWYZqrpppx26umnoIZ6UkAAOw=="),e.src=t,e.setAttribute("rel:animated_src",t),e.setAttribute("rel:auto_play",0),this._superGif=new bet(e,{autoPlay:!1}),this._superGif.init();for(const t of this.element.children)t.style.width="100%",t.style.height="100%";var r=this._superGif.getCanvas();r.style.width="100%",r.style.height="100%",this._superGif.load((()=>{setTimeout((()=>{this._superGif.moveTo(0),this.play&&this._superGif.play()}),100)}))}ondropfile(t,e){for(let r=0;r<t.length;r++)if(/\.gif$/.test(t[r].name))return void(this.src=e[r])}get src(){return this.getState("src")}set src(t){this.set("src",t)}get play(){return this.getState("play")}set play(t){this.setState("play",t)}get nature(){return xet}get tagName(){return"div"}}h8.register("gif-view",wet);const Aet={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"attachment-selector",label:"src",name:"src",property:{category:"audio"}},{type:"checkbox",label:"started",name:"started"},{type:"checkbox",label:"loop",name:"loop"}],"value-property":"src",help:"scene/component/audio"};class _et extends(p8(f8)){static get image(){return _et.IMAGE||(_et.IMAGE=new Image,_et.IMAGE.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZAAAAGQCAMAAAC3Ycb+AAAAP1BMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACzJYIvAAAAFHRSTlMA8BAwgNBgQKB/wCBwUJDg37CvXyUlBK8AABFYSURBVHja7NsBkqIwFIThTiAQgyBq3/+sm6p1tnamZkaTMhJJf1f4S/JeEIiIiIiIiIiIiIiIiEhD7Hg4BH84TpAKjJ4f3NFCtjVd+InXz2RTs+FXlxGylYHfcVfIJmb+YFWSLUyGVJKKBJJKUo+Rd6w63l/qzLuCkryO5fe0l2xk5mMWbe+v0fNBRqf7S3je6CipQ2ACr+dWcYEpzBFS1plpguatsnomMgdIQSOTuQ5SjmE6/UgK8szgdJIUM/FG41YlFmYJ2kkKsY5ZzAwBurHDk3WGeRY0bvYrGa1+rqNI22f7dS32ZnUK1GMr0eSK3mEc9dhKMxp+ZTo8kT2emOXS5LQ1kCxbJBocSd2k5PaIjMVzjWcdJPk9ooBnmzx1t5XbIxqBKpJ4NGTgzwKiGpK4do72gb+ZUMIYtCPm9WCPMsYTE5k2hq2ZvzujlCE1iRmwf3dvmRyKsT0T7b9I7HEPCpqCiqT2IIqaT1pI0noQZdlFC8l/PbYPAnRORT56VBEE6FXkb49agmByKhJ71BME6FsvEntUFQTdqekisUdlQWCXhovEHtUFAWbTapHYo8YgmFybO3vsUWcQYGmxSOxRbRAMprkisUfFQVKmrX18sxt7VB0ENjT1xir2qDxIwkFi3v89e+xRfxAMzfzzIfZ4hyAYDR9zwVuLPd4jCDrTwoLYGb5LEFi3/+E3rweR6urX20c/Fvls2Pvwm9mDSGIPhv8YPyGf3/eo9Ye7O8B2FIShAAooakEttex/rbODad5/yTHIAjqn505IQPv+Xz06dz+4VXORHEZcgAcB8updM8F6e25jBzwIkE07l+x8amMnPDp6nsNJ+BoZ7Q6F8egqAda9VEuRNlZjBzwYkMskdXR73okd8GBAJiKYjBcZKKqG9OiKDbgdfxJ5VhsBPDiQZhaouD3p4hfw4EAmwxisz3MSHwAPEmQ1TB1N+SmXWoAHC7JbZsWl/IxLLcCDBplNo3lrfMLsmwAPGmShAxX5/1vOEzjEz3iyfQ/hI36W4TctsUesOAifPdrQg8M++KYl95iCBkjI1r8634betBAPHZDTPFAmD3zLiHgogVTziMsahz0eIh5aIGHGRSJ2mFtHPR4iHhQIP2UvWGMf8wk74qEIEib7rLjPiBfxiAcCwp8V+Nae3uMdRhAPDIR/J5f/Q2DTcC+hIB7qIGEq3Ti9bx+sryMeAAgS70OK8G2kBD8L8QBAoLWU3g3vUVIc6D0txAMAsY+4jBWowXHO64gHBGKfYJ2T5qY1BxcL98BB+PQ+XiS9xxh9EQ8ChA6C5UXWIUoE9MBB8LVHQoS7ib8/dRn3sAcJ6bQRSdH96RDxIEH4QEX+AHF4LxHEAwUh12xyr1V8lwjiQYDYF8kuf1jluUQQDwrEvkhW8Wc6LhHUgwfhi4QPlHm7LRHawx4kpE191Dq8lgjhAYDQa1cftYrPEiE8OJDb40uqyzdQCA8WhAzL4G/PT4c3WrgHD2IfllGl53V37zsgHg5ApPNvVvq4Fn4spx4oiH1W3CwtEV+PDhEPJyBSkVX4aa7emkM83ICEKWpGM7wdvYCCeDgCEYpcwhLxczhEPFyBCEUWnRL5T6X59SBASBF+9l28TL5F7uEORCZyCUvEx+S7yT0cgoRVb9JaXLR1qUdfgksQ0fTbgmhFB20d8HAKEha14+F8f1sHPNyCiL6EqK+n20/rgIdjkFC0Ho1s6Gndvcc9ICkr/ey8/rHO6vp9KawL8DAFOV6l9Fyub7IbflsCag1qRfVsXWvxHjxIejU+BHZV6uvHD1XiEb++Bw8i+dNd+Wv0eCQmhcPhRPwUUt2DB5G1sfa1aeyzAuyJj9x2HjyIdKzIKw5SI14ieFtvo3kIQERj3lVhkUOnRD7AnjV5369QkAOJZeCH+Jh41xOLs73dQwAifY6dpxCCbjTDzLf1Bm1Y93tAIDOWXcLPvrHyr2hVoEAceEAgDQzB4jetk0/c2OXRHB48EJCpa4dgpYh2ETxtrshz7zx4ICCzfuTSDn8p/EOS9OTjwgMB+cABP3yWYuOPIofs33LigYCULlpZNXJppVU30Vf14kGAUCLijf1D71lN9FW9eFiA9KgZ8FPpPUsSnufGA+8hvAg2Kpz0nrX//qp+PIgpC3i6xJRITOye9fn1VT15ICCrVlQG5rywo0H8x965bVkNwmCYQ2kR6Gmb939WXV65dFnI/tPdjPBfO7XMN4EkTUJtqZp4sCJ1+8jwkhMu0KpMxFXFA8hlVfQSMxGH5mDK1VKV8QCyvTVtUiYyo7V358VStfGoAEFMhGYhEwloxZy9WKo2Hjwg5iSOvFDXeUYd33+PuVfHgwnEBWLocDJp+IIa2fyvperjwQRiXCKGosyXqoA+YfsIELuYu4HAt+msMknfDK4jfQJIzOZ2IPAQWJtFOhQKivR2IDZ6Awis7V0iLxqBI7uEZo19dakTogLSwKvf8yk8Jq6CGK0GKvWlatG7b7kkUU/Lo1gdXWn7/4E0j0qeJDpqN/ABqQcgJgdqURb4chjQktIugDS6wFFiz3JgaJj7AGJmholAe9YKhoZLJ0Ca6smjwJ4VwVN96gVIE5GM71kHaGKxGyAtRDaB2NBhLVmpHyANRKzDO28W7FS3HQFpaIWa8TrfCXQwegJSL5k+8M9UJ+pm9QTEnCIZrR0MDQeQ9ua0iCcYQaBTV0CqNXQW/yiyYG7W1heQanPaCkciBXuH1BkQJzHcDQxmpgGkPatl4WkbCXO/bW9AqlNg4H0PPMi6A1IxkQmOZ8D0ousNSMVEEuyreTAQ6Q7IRJeCX2YZQHhv6SrBOmpkM+YUzN0BqSRQCupmTeCP9wdkhiOREwtEzgGEsWcF9BhK9R8fQDiN7A8DiR0CKXQlj/q9IM8OgXjIzcKBlAHkD6FulgNzJwPIHwpo8mQAkX3LiPq9dKUMAQk9AqmcqmjuBAJCPQIpA4guIAsKJA0gnwNy3A4kDyBIHCEPxAwgf8gPILqA5AFEF5CxZX0lIHYc6rqADLf380BmFMgxgIzUyf8MJKLTRelKHgKy9wgkjfS7LiA0gKgC8vQn3HUA4RQ5LKPIAQciWbqIEg0YkLNDIHYUyqkCsmKN5vg3+W0AYTRATaPY+uu1IwS6UMGAlO6AFPjSCQMStaNh53cdcPG7Hx1Uupo+rx+Bltn1BuTAj5BptEV/bHAAwbnJMICwRmtUDOSEA8s4Rmtw3nITGD6TwUNoG0Ca7xi2YKSPj2eKXQFxQWKA2QbGMWEMMGseOb7C7T47uJS1JyAzVbTjqZdU3zbHzMXWS+qp4Fgn8Ahy/QCRGqQcwU1vGnN7fylboWn8Bzg//hyjxltvdcl45bwFfYKzFyBy11UU9BnjuoqfWizVlQXulpzBTNbaB5Aid+VRrkBFB630AMS9BC8FK2ggE7u/FGy1kvfcB9TKQufX5uUXNWl3EjvWCi4k/u9A3Ddq1CpTIQGe6VN1qd8ArcvDQNw3S41Kn6qQmOq5e7pRr+8fAYLiIJtFrrvYRMYL0q06vj8EZLXUriJzRY8H1xEagOCK7gkghRg6RQYO0I6aWPwIEAru80AiMWSdzAeuDXUKyr+WqpAID8hMHC1Ct8F4mUsQ6W8pJMICki0JHCBczAFdBl38G3VE6ErQhhWlih4LWrCSLpaqjggHiGe9mVjRY0YPoelyqcqIcIDEe97rqJFFH7FcLlUZEQ6Qg5plvZiBFNhtri1VFREGEC/Eg4nZoU5vqi1VFREGkIXDQ8xAIhzoT/WlKiLCAFIYPOQMxOPdjfWlKiLCADJRm3YGj+pDE2xktmmpaogwgMz8d8GrumZ4xzpbvinqISJ+hiTWm7wEqoJdI9JEV9JChAEkS3xCZzKecLcgN6YwlRBhAGmweTsblg6qKMM7Vmh321UQ4QAp1VfwhqVJIh+Wm03W0qV0EOEAybXtivkCmWrKeH2EZ/xBaSBCV2L9Re+LYSqJJIxDu1ew07U0EGEBcTtmHty4JuPtQhvLh1BAhK7Uvvq0GK484QZST0GvvFDqeSJ1IA0r2mfDljvqBoJ//rVsq7yZCA6kXgVkJ2f4ijIGMjOfMVsCBBORB2Jy+sM6ijNvaBUqmw/cStZ8EiKciHwp6Rp++88qmxXQeTUxDiJWJ9wSISvBicgXW+dypn1PqWTznlwgwdZdfiLHr5OELEAEASKvJFRE5JCPKbh8OxHdQKJU0crEzRXrJ/IEkFms6tGyrUw9kQeALFRXvK2iSzsRAAi6BLxM+60xdsqJAEBuXMAMxDLVp+gmAgC57/UT4qvVj3TVRCAgSAYL91aXtyNLzUQAIFhAiP8m0/NHOp+ILiBtPFKrs6bgSOcT0QTEB8nO3QR1yKslggKRf+m11UB0HOl8IlqAeCvauXuo8HnfIqIDyCw6G8XMcGiplMingMzCnbuHFp/3LSLPA4nUpqm5YkWNzwsQeQxIDsKjH5wVSU5qJPIJIIt4jjpqNBAekQeBfJOeHWS81FQoo4/I7UDcS3wUh0liTzLqiEgDqddx4ZHDrNZAACIAEMw88HPYWb0GAhABgEDmgf9Vb5oNBCByOxD3uqWYbCHVBgIQuRlIsbfwMEG5gQBE7gSyHMDsOayrxJvHBRC5B0hOxJH1nK4SlUE6QOR+IG6ju3iYQEqDdIDIzUDyZu/jMRHpS/OiRG4FkiPRfTw8kbrvIAJEACAIDpyHC1/GQHhEbgKSXwTyqIeEur6kixEBgABHOTr7YSX1MSFAhA0E307wUU76Y0KACAsI/tvCRzkF+iIuL0AEAYLbR2QOfvhKJ/obRESBxNt5rPSFXN4f7dyNdqMgEIbhAXWwJErT/e7/Wreb5HTT07QVgWSAeW5g7b4n8qOSUCRPEId4HP93SXp5dDNGRJFcQTxihSH+NW1Bb1cXKpIryJAwnG/zhl8ZcSP6jiKZghwRaaWLnP/AkcSKKJIniEcUs8QfjFLdEmRvkSxB4lfn0QN6DY+lshQpHiT96Dlr6r5hxRUpHST9ZEY71X7DOmOZQVZLsd5Q8wzrPxYYJDiKNqOBG1ZCkZKzrNXu6lHvkjChSFqQsdTPg45ApXtYaUXKr9TNuPcvqO2pVMkitFXAL2a79/qr3HQvVSTXUtofCl79RDXh5CDpw3pwu6+9kRlvtiI5VtPhmHLltT4EKVQkfb8pcOHrXqk6nBAksUjgpKtuYsskaxGKYT0+84uYgziE4YQgMdx0m8PRfis2MbL33PMXoVjD6PEunI4HSjDjStiJP08vQk9hZzQ7oH/geoLYCUBDW4rf4FqCDFt7THUO6B+4jiDn2XNTW7zf4hqCMND4BOsGyw+yAmh0x+QeFh7EeqD5Ce8nLDrI8NpbDyIWHIQNruo4GyAPlhrEzuixBxHLDDJMnfYgYolBricHNfjIdgMWF+Qyu+pkgX4HCwuymL57ELGkIHZG7z2IWE6Q5VV7vGMhQewbtMcZiwhyHj26ne9+xs8PcvDQHnFFqCD7Au0RW4TK+fOKqw4eoOcqYqgU53HR3/5uShFPCfKey9hFDyJO/vAi7RDZnp7X5igyUH72xSDW1E2Pn4tMRCQgR8vLwbgii4gcmLvqQcSPGtIPX3M08wn6I4qYQ94cM/Yw9Xxhmw+X/59wHrtMlX1AmIkzdyaaAnLg1Nnw8WGYSk40X/BOh4+El6LMSBnN2Cd0tPq4w/LJXGrMbCX06PZ2dcM65yzlNertShSHf3SzRAyPM332IcSAHUKPi8EHmXU0l8Uglmni0yipDoi16s+jJKejhywLooz68yiMEcHr2qM4h81CJ++VPJfTu5UwBpv4Pp9DJSi6MJx0bvUwiw4ewgT8zNR0LHUL+OccOpY/3ElzyGKD5pBlMJpDlsOkMythRoNbXh95PJsdA67MrMtAEYbjeDqNo+7oKqWUUkoppZRSSimllFJKFfMXp4vmSjB8n6sAAAAASUVORK5CYII="),_et.IMAGE}dispose(){super.dispose(),this.started=!1,delete this._audio}ready(){super.ready(),this._audio=new Audio,this._audio.addEventListener("canplay",(()=>{this.started&&this._audio.play()}));var{src:t="",loop:e=!1,started:r=!1}=this.state;this.onchangeSrc(t),this.onchangeLoop(e),this.onchangeStarted(r)}render(t){var{left:e,top:r,width:n,height:i,src:a}=this.state;t.beginPath(),this.drawImage(t,_et.image,e,r,n,i)}get nature(){return Aet}get hasTextProperty(){return!1}get src(){return this.get("src")}set src(t){this.set("src",t)}get started(){return!!this.get("started")}set started(t){this.set("started",t)}start(){this._audio&&(this._audio.classList.add("active"),this._audio.play())}pause(){this._audio&&(this._audio.classList.remove("active"),this._audio.pause())}onchangeSrc(t){try{"data"!==String(t).substring(0,4)?this._audio.crossOrigin="use-credentials":this._audio.crossOrigin=null,this._audio.src="string"==typeof t?this.app.url(t):t}catch(t){return void console.error(t)}}onchangeStarted(t){const e=this._audio;t?4==e.readyState&&e.play():e.pause()}onchangeLoop(t){this._audio.loop=t}onchange(t,e){"src"in t&&this.onchangeSrc(t.src),"started"in t&&this.onchangeStarted(t.started),"loop"in t&&this.onchangeLoop(t.loop)}ondblclick(t){this.started=!this.started}ondropfile(t,e){for(let r=0;r<t.length;r++)if(t[r].type.startsWith("audio/"))return void(this.src=e[r])}}h8.register("audio",_et);class ket extends(p8(h8)){is3dish(){return!0}}h8.register("text",ket);const Eet=["refid","left","top","width","height","rotation","animation"];class Met extends Rtt{isGroup(){return!0}get(t){return this._model[t]}set(t,e){if("string"==typeof t)return this.set({[t]:e});var r=Eet.reduce(((e,r)=>(t.hasOwnProperty(r)&&(e[r]=t[r]),e)),{});return super.set(r)}capture(t,e,r){var n=super.capture(t,e,r);if(n!==this)return n}set bounds(t){if(this.__MUTATING__)super.bounds=t;else{var e=this.bounds,r=t.width/e.width,n=t.height/e.height;this.path=this.path.map((i=>({x:t.left+(i.x-e.left)*r,y:t.top+(i.y-e.top)*n}))),this.components&&this.components.forEach((t=>{if(t.mutable)t.mutatePath(null,(function(t){return t.map((function(t){return{x:t.x*r,y:t.y*n}}))}));else{let e=t.bounds,i=t.center,a={x:i.x*(1-r),y:i.y*(1-n)},o=e.width*(1-r),s=e.height*(1-n),c=-(a.x-o/2),u=-(a.y-s/2);t.bounds={left:e.left+c,top:e.top+u,width:e.width*r,height:e.height*n}}}))}}get focusible(){return!1}get bounds(){return super.bounds}get hasTextProperty(){return!1}isIdentifiable(){return!1}calculateBounds(){this.clearCache(),this.__MUTATING__=!0,this.mutateBounds((function(t){var e=h8.union(this.components.map((t=>t.bounds)));return this.components.forEach((t=>{let r=t.bounds;t.bounds={left:r.left-e.left,top:r.top-e.top,width:r.width,height:r.height}})),{left:t.left+e.left,top:t.top+e.top,width:e.width,height:e.height}}),this),this.__MUTATING__=!1,this.parent.isGroup()&&this.parent.calculateBounds()}render(t){}postrender(t){var{top:e,left:r,scale:n}=this.state;t.translate(r,e),this.layout.drawables(this).forEach((e=>{e.draw(t)})),t.translate(-r,-e)}}h8.register("group",Met);const Tet={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"id-input",label:"ref",name:"ref"},{type:"select",label:"fit",name:"fit",property:{options:["","both","ratio"]}}],"value-property":"ref",help:"scene/component/local-ref"};class Pet extends(p8(f8)){get ref(){var t=this.getState("ref");return t&&"string"==typeof t?this.root.findById(t):null}set ref(t){this.setState("ref",t)}get refScale(){let t=this.ref.bounds,e=this.bounds,r=e.width/t.width,n=e.height/t.height;return"both"===this.model.fit?{x:r,y:n}:{x:Math.min(r,n),y:Math.min(r,n)}}draw(t){this._drawing||(this._drawing=!0,super.draw(t),this._drawing=!1)}prerender(t){if(super.prerender(t),this.ref){let e=this.ref.center,r=this.center,n=this.refScale;t.translate(r.x,r.y),t.scale(n.x,n.y),t.translate(-e.x,-e.y)}}postrender(t){if(this.ref)return this.ref.postrender(t);super.postrender(t)}render(t){if(this.ref)return this.ref.render(t);this.state;var{left:e,top:r,width:n,height:i}=this.bounds;t.beginPath(),t.rect(e,r,n,i)}get nature(){return Tet}get hasTextProperty(){return!1}}h8.memoize(Pet.prototype,"ref",!1),h8.memoize(Pet.prototype,"refScale",!1),h8.register("local-ref",Pet);class Oet extends(Ttt(B8)){render(t){}get layout(){return x8.get(this.get("layout"))||w8}}const Iet={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"board-selector",label:"scene-number",name:"ref",placeholder:"SCENE-1"},{type:"number",label:"round",name:"round",property:{min:0}},{type:"select",label:"fit",name:"fit",property:{options:["","both","ratio","width","height","none"]}},{type:"select",label:"mode",name:"mode",property:{options:["view","interaction"]}}],"value-property":"ref",help:"scene/component/global-ref"};class Ret extends Oet{dispose(){this._releaseRef(),super.dispose()}get nature(){return Iet}get hasTextProperty(){return!1}get tagName(){return"div"}setElementProperties(t){var{mode:e="view",round:r=0}=this.state;t.style.pointerEvents="view"==e?"none":"inherit",t.style.borderRadius=r+"px"}ready(){super.ready(),this.fetchRef()}reposition(){if(!this.element)return;super.reposition();let t=this._element_bounds,{offsetWidth:e,offsetHeight:r}=this.element;if(this._element_bounds={offsetWidth:e,offsetHeight:r},(!t||t.offsetWidth!=e||t.offsetHeight!=r)&&this.ref&&this.root.target_element){let{fit:t="ratio"}=this.state;this.ref.fit(t)}}async fetchRef(){this._releaseRef();var{ref:t,fit:e="ratio"}=this.state;if(t){var r=this.app.refProvider;if(r&&t)try{this.__ref=await r.get(t,!0),this.__ref.target=this.element,this.__ref.fit(e),this.__ref.data=this.data}catch(t){N5(t)}}}get ref(){return this.__ref}set ref(t){this.setState("ref",t)}_releaseRef(){this.__ref&&this.__ref.release&&this.__ref.release(),delete this.__ref}onchange(t,e,r){super.onchange(t,e,r),"ref"in t&&this.fetchRef(),"fit"in t&&this.ref&&requestAnimationFrame((()=>{let{fit:t}=this.state;this.ref.fit(t)})),"data"in t&&this.ref&&requestAnimationFrame((()=>{this.ref.data=t.data}))}}h8.register("global-ref",Ret);const Cet={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"board-selector",label:"board",name:"board"},{type:"checkbox",label:"modal",name:"modal"},{type:"checkbox",label:"closable",name:"closable"},{type:"checkbox",label:"show",name:"show"},{type:"select",label:"location",name:"location",property:{options:["center","left-top","right-top","left-bottom","right-bottom","auto"]}},{type:"data",label:"value",name:"value"}],help:"scene/component/popup"};class jet extends(p8(f8)){static get image(){return jet._image||(jet._image=new Image,jet._image.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABGCAMAAABG8BK2AAADJmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNy4xLWMwMDAgNzkuZGFiYWNiYiwgMjAyMS8wNC8xNC0wMDozOTo0NCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIzLjAgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RkM4QzQxNUMzMzBEMTFFQ0JEMzZDMDUwQUI4MEI3QTAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RkM4QzQxNUQzMzBEMTFFQ0JEMzZDMDUwQUI4MEI3QTAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpENjlENTQ3RjMzMDkxMUVDQkQzNkMwNTBBQjgwQjdBMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpENjlENTQ4MDMzMDkxMUVDQkQzNkMwNTBBQjgwQjdBMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsiUYSQAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAA51BMVEVHcEwzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOguTm2AAAATHRSTlMARhB73r9B7YLrsqdE+0cq9Avzeg31eQx4aQ+Ks6aUd5DsYKixEX1w8vyT2VjoZ3YezY/cCEDvl+QTvRwJ0ifwK/5T/aw6+IuFuCImAcS6MQAAAeJJREFUWMPt2FlX2zAQhuHJYmOSFhIggbC0QNn3rS1dKXSH9///Hi58CJLxKIpEWi6YO8c5z4lG/nxGEXmu/1OVLGnhrFaSVQYg1SZetTTvUibqeFZ9QlfmvRWoV1VmCaCRzroXPpsuAjTV7gLUfPahBqD1OQMW/fazAWTKvQRI/ZgUSJR7U8CM/dHZ+/2VcatWdvdEZAaYUhiAwkerJXt0rnzXwdRKmHfDM0fHD5kxjTFyVLzVfvvirn7+cDJWjhy7c7XlYuwc6Urvu2tRhRypyhwAf1sKY+TIxfQA+H39q5wxc+RgVrcBduTmZTlj5khnDgH4IzKpMGaOVCbvyyvRGTNHGtPrKypjXirM5jb910I4k69oQeKY+77EMAcALEsck/+W6f71tyCma/ZFROTrJVwMy7wmf3bv6/MX+Dgkkysblvxps/dhOKZb6IvrTakzXXuPApnpYneDGOeKvJlaSXcDmA7AicQyW84VeTOnY+NdiWcG1uiZksFEHdyAlsJEjEkmkwGNsKHNZCJGSKtVTYC1tO022mnjwUBrMdXg8dreuOBhv7D/62/8lGZ1wLxXyZKOm+iUHIQintyny0TkaATHjYgcjeAoFpEje9R/nGPqIx2aw3NU9odCQI6e6x/VLY32cKQXVBnkAAAAAElFTkSuQmCC"),jet._image}ready(){super.ready(),this.show&&this.onchangeShow(!0)}render(t){var{left:e,top:r,width:n,height:i}=this.bounds;t.beginPath(),this.drawImage(t,jet.image,e,r,n,i)}onchange(t,e){"value"in t?this.show?this.onchangeShow(!0):this.show=!0:"show"in t&&this.onchangeShow(this.show)}onchangeShow(t){!this.app.isEditMode&&this.getState("board")&&(t?E8.show(this,this.board,{location:this.getState("location"),modal:this.getState("modal"),closable:this.getState("closable")||!1,data:this.value}):E8.hide(this))}get board(){return this.getState("board")}set board(t){this.set("board",t)}get show(){return this.getState("show")}set show(t){this.setState("show",t)}get started(){return this.getState("show")}set started(t){this.setState("show",t)}get value(){return this.getState("value")}set value(t){this.setState("value",t)}get hasTextProperty(){return!1}get nature(){return Cet}}h8.register("popup",jet);class Det extends h8{render(t){var{path:e=[]}=this.state;if(!(e.length<=1)){t.beginPath(),t.moveTo(e[0].x,e[0].y);for(let r=1;r<e.length;r++)t.lineTo(e[r].x,e[r].y);t.closePath(),this.drawStroke(t)}}get path(){return this.model.path}set path(t){this.set("path",t)}contains(t,e){var r=this.state.path,n=!1;return r.forEach(((i,a)=>{let o=(a+r.length+1)%r.length,s=i.x,c=i.y,u=r[o].x,l=r[o].y;c>e!=l>e&&t<(u-s)*(e-c)/(l-c)+s&&(n=!n)})),n}}h8.register("path",Det);const Let={mutable:!0,resizable:!1,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/triangle"};class zet extends f8{contains(t,e){var{x1:r,y1:n,x2:i,y2:a,x3:o,y3:s}=this.state,c=[r,n,i,a,o,s],u=!1;for(let r=0;r<c.length;r+=2){let n=(r+2)%c.length,i=c[r],a=c[r+1],o=c[n+1];a>e!=o>e&&t<(c[n]-i)*(e-a)/(o-a)+i&&(u=!u)}return u}get mutable(){return!0}get path(){var{x1:t,y1:e,x2:r,y2:n,x3:i,y3:a}=this.state;return[{x:t,y:e},{x:r,y:n},{x:i,y:a}]}set path(t){this.set({x1:t[0].x,y1:t[0].y,x2:t[1].x,y2:t[1].y,x3:t[2].x,y3:t[2].y})}get nature(){return Let}}h8.memoize(zet.prototype,"path",!1),h8.register("triangle",zet);const Bet={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"ratio",name:"ratio",property:"ratio"}],help:"scene/component/donut"};var Fet={ondragmove:function(t,e,r){r.controls;var{cx:n,rx:i}=r.model;i=Math.abs(i);var a=(r.transcoordP2S(t.x,t.y).x-n)/i*100;a=a>=100||a<=-100?100:Math.abs(a),r.set({ratio:a})}};class Net extends Qtt{is3dish(){return!1}render(t){var{ratio:e=50,cx:r,cy:n,rx:i,ry:a,startAngle:o,endAngle:s,anticlockwise:c}=this.state;i=Math.abs(i),a=Math.abs(a),t.beginPath(),t.ellipse(r,n,i,a,0,o||0,s||2*Math.PI,c),t.moveTo(r+i/100*e,n),t.ellipse(r,n,i/100*e,a/100*e,0,o||0,s||2*Math.PI,!0)}contains(t,e){var{cx:r,cy:n,rx:i,ry:a,ratio:o}=this.state,s=(t-r)/(2*(i=Math.abs(i))-.5),c=(e-n)/(2*(a=Math.abs(a))-.5),u=(t-r)/(i/100*o*2-.5),l=(e-n)/(a/100*o*2-.5),h=!1;return s*s+c*c<.25&&u*u+l*l>.25&&(h=!h),h}get controls(){var{cx:t,cy:e,rx:r,ratio:n}=this.state;return[{x:t+(r=Math.abs(r))/100*n,y:e,handler:Fet}]}get nature(){return Bet}}h8.memoize(Net.prototype,"controls",!1),h8.register("donut",Net);const Uet={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"ratio",name:"ratio",property:"ratio"},{type:"number",label:"wing",name:"wing",property:"wing"}],help:"scene/component/star"};var Yet={ondragmove:function(t,e,r){r.controls;var{cy:n,ry:i}=r.model,a=(r.transcoordP2S(t.x,t.y).y-n)/i*100+100;a>=100?a=100:a<=0&&(a=0),r.set({ratio:a})}};class Get extends Qtt{is3dish(){return!1}render(t){var{ratio:e=30,wing:r=5,cx:n,cy:i,rx:a,ry:o,startAngle:s,endAngle:c,anticlockwise:u}=this.state;if(r<3)return;const l=1.5707963267948966;var h=2*Math.PI/r,f=a-e/100*a,d=o-e/100*o;t.save(),t.beginPath(),t.translate(n,i),t.moveTo(a*Math.cos(-l),o*Math.sin(-l)),t.lineTo((a-f)*(Math.cos(h-l)+Math.cos(0-l))/2,(o-d)*(Math.sin(h-l)+Math.sin(0-l))/2);for(var p=1;p<r;p++)t.lineTo(a*Math.cos(h*p-l),o*Math.sin(h*p-l)),t.lineTo((a-f)*(Math.cos(h*(p+1)-l)+Math.cos(h*p-l))/2,(o-d)*(Math.sin(h*(p+1)-l)+Math.sin(h*p-l))/2);t.closePath(),t.restore()}get controls(){var{cx:t,cy:e,ry:r,ratio:n}=this.state;return[{x:t,y:e-r+r*(n/100),handler:Yet}]}get nature(){return Uet}}h8.memoize(Get.prototype,"controls",!1),h8.register("star",Get);var Wet=t=>class extends t{animOnValueChange(t,e=!1,r){if(t!=this._lastValue){if(e)var n=t-(Number(r)||0);else n=t-(this._lastValue||0);this._lastValue=t,this._anim_alpha=-n,this.animate({step:t=>{this._anim_alpha=n*(t-1),this.invalidate()},duration:1e3,delta:"circ",options:{x:1},ease:"out"}).start()}}dispose(){super.dispose(),delete this._value_substitutor}onchange(t,e){t.hasOwnProperty("value")&&delete this._value_substitutor}get animAlpha(){return this._anim_alpha||0}get animValue(){return(this._lastValue||0)+(this._anim_alpha||0)}defaultValueSubstitutor(){return this.getState("value")}get valueSubstitutor(){return this._value_substitutor||(this._value_substitutor=t8(this.getState("value"),this)||this.defaultValueSubstitutor),this._value_substitutor}get value(){return Number(this.valueSubstitutor())||0}set value(t){delete this._value_substitutor,this.setState("value",Number(T5(t)))}},Het=t=>class extends t{_convertDataFormat(t,e){var r;if("json"===e)r=JSON.parse(t);else r=t;return r}isDataSource(){return!0}},qet=new WeakSet;class Xet{static get residents(){return qet}constructor(t,e){this.counters={},this.references={},this.creator=t,this.disposer=e,qet.add(this)}dispose(){if(this.disposer)for(let t in this.references)this.disposer.call(null,t,this.references[t]);delete this.references,delete this.counters}get ids(){return Object.keys(this.references)}create(t){var e=this;return new Promise((function(r,n){e.creator?e.creator.call(null,t,(function(e){!function(e){e.release=function(){this.disposer&&this.disposer.call(null,t,e),delete e.release,Y5("RELEASED",t)},r(e)}(e)}),(function(t){n(t)})):n(Error("Reference id("+t+") could not be created. Reference creator should be defined."))}))}add(t,e){var r=this,n=new Promise((function(n,i){var a=r.references[t];if(a)a===e?i(Error("Reference ID and target duplicate")):e?i(Error("Reference ID duplicate")):n(a);else{function o(e){e.release=function(){r.release(this)},r.references[t]=e,r.counters[t]=1,n(e)}if(e)o(e);else{if(!r.creator)return void i(Error("Reference id("+t+") is not allowed. Reference creator should be defined."));r.creator.call(null,t,(function(t){o(t)}),(function(t){i(t)}))}}}));return this.references[t]||(this.references[t]=n),n}async get(t,e){var r=this.references[t];if(r){if(!(r instanceof Promise)){if(!(t in this.counters))throw new Error("No Reference Count");return this.counters[t]++,r}if(e)return r=await r,this.counters[t]++,r}if(e)return await this.add(t);throw new Error("No References for "+t)}_id(t){for(let e in this.references){if(this.references[e]===t)return e}return-1}release(t){var e=this._id(t),r=this.references[e];r?(this.counters[e]--,0==this.counters[e]&&(this.disposer&&this.disposer.call(null,e,r),delete this.references[e],delete this.counters[e],delete t.release,Y5("RELEASED",e))):N5("No Referenced ID")}}var Vet={},Qet={},Ket=[];function Jet(t){var e="SCRIPT"==t.target.tagName?Vet:Qet,r=t.target.src||t.target.href;e[r]=!0,Ket.forEach(((t,n)=>{let{resolve:i,scripts:a,styles:o}=t;if(e==Vet){let t=a.indexOf(r);t>-1&&t<a.length-1&&$et(a[t+1])}for(let t=0;t<a.length;t++)if(!Vet[a[t]])return;if(o)for(let t=0;t<o.length;t++)if(!Qet[o[t]])return;i(),Ket[n]=null})),Ket=Ket.filter(Boolean)}function Zet(t){var e=t.target.src,r="SCRIPT"==t.target.tagName?Vet:Qet;Ket.forEach(((n,i)=>{let{reject:a,scripts:o,styles:s}=n,c=!1;if(r===Vet){for(let t=0;t<o.length;t++)if(o[t]==e){c=!0;break}}else if(s)for(let t=0;t<s.length;t++)if(s[t]==e){c=!0;break}c&&(a(t),Ket[i]=null)})),Ket=Ket.filter(Boolean),delete r[e],document.head.removeChild(t.target)}function $et(t){Vet[t]=!1;var e=document.createElement("script");e.onload=Jet,e.onerror=Zet,e.type="text/javascript",e.src=t,document.head.appendChild(e)}class trt{static load(t,e){return"string"==typeof t&&(t=[t]),"string"==typeof e&&(e=[e]),new Promise((function(r,n){if((!t||t instanceof Array)&&(!e||e instanceof Array)){var i,a=!0;if(e&&e.forEach((t=>{Qet.hasOwnProperty(t)||function(t){Qet[t]=!1;var e=document.createElement("link");e.onload=Jet,e.onerror=Zet,e.type="text/css",e.rel="stylesheet",e.media="screen,print",e.href=t,document.head.appendChild(e)}(t),Qet[t]||(a=!1)})),t&&t.length>0&&t.forEach((t=>{Vet.hasOwnProperty(t)?Vet[t]||(a=!1):i=i||t})),i)$et(i);else if(a)return void r();Ket.push({resolve:r,reject:n,scripts:t,styles:e})}else n("invalid sources for load")}))}}const ert="0.0.0";var rrt=0,nrt=performance.now(),irt=0;function art(){return rrt}requestAnimationFrame((function t(){requestAnimationFrame(t),irt++;var e=performance.now(),r=e-nrt;r<1e3||(rrt=Math.round(1e3*irt/r),nrt=e,irt=0)}));var ort=M7;function srt(){}export{M8 as AbsoluteLayout,_et as AudioPlayer,P8 as CardLayout,h8 as Component,H8 as Connectable,Rtt as Container,B8 as ContainerAbstract,r6 as DEFAULT,$5 as DPPX,Het as DataSource,Net as Donut,Qtt as Ellipse,$9 as EventMap,art as FPS,t6 as GESTURES,wet as GifView,Ret as GlobalRef,Met as Group,w8 as HTMLAbsoluteLayout,Oet as HTMLOverlayContainer,oet as HTMLOverlayElement,aet as ImageView,m8 as InfoWindow,e6 as KEYEVENTS,F8 as Layer,x8 as Layout,Xtt as Line,I8 as LinearHorizontalLayout,C8 as LinearVerticalLayout,Pet as LocalRef,Z5 as MAX_UNDO_SIZE,V5 as MODE_ADD,q5 as MODE_EDIT,K5 as MODE_PASTE_DATABIND,Q5 as MODE_PASTE_STYLE,X5 as MODE_SHIFT,H5 as MODE_VIEW,ort as Model,L8 as MoveHandle,W5 as NOTHING,net as OrthoLine,Det as Path,Ztt as Polygon,eet as Polyline,jet as Popup,V8 as Rect,p8 as RectPath,Xet as ReferenceMap,htt as RootContainer,K8 as Ruler,J5 as SCENE_MODE,ktt as Scene,E8 as ScenePopup,trt as ScriptLoader,f8 as Shape,Get as Star,j8 as TableLayout,ket as Text,zet as Triangle,Wet as ValueHolder,Ett as create,Y5 as debug,N5 as error,srt as license,x0 as polyfill,ert as version,U5 as warn};console.log("@hatiolab/things-scene@3.4.42 is loaded");
1
+ var t="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},e=function(t){return t&&t.Math===Math&&t},r=e("object"==typeof globalThis&&globalThis)||e("object"==typeof window&&window)||e("object"==typeof self&&self)||e("object"==typeof t&&t)||e("object"==typeof t&&t)||function(){return this}()||Function("return this")(),n={},i=function(t){try{return!!t()}catch(t){return!0}},a=!i((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]})),o=!i((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")})),s=o,c=Function.prototype.call,u=s?c.bind(c):function(){return c.apply(c,arguments)},l={},h={}.propertyIsEnumerable,f=Object.getOwnPropertyDescriptor,d=f&&!h.call({1:2},1);l.f=d?function(t){var e=f(this,t);return!!e&&e.enumerable}:h;var p,g,v=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},y=o,m=Function.prototype,b=m.call,x=y&&m.bind.bind(b,b),w=y?x:function(t){return function(){return b.apply(t,arguments)}},A=w,_=A({}.toString),k=A("".slice),E=function(t){return k(_(t),8,-1)},S=i,M=E,T=Object,P=w("".split),O=S((function(){return!T("z").propertyIsEnumerable(0)}))?function(t){return"String"===M(t)?P(t,""):T(t)}:T,I=function(t){return null==t},C=I,R=TypeError,j=function(t){if(C(t))throw new R("Can't call method on "+t);return t},L=O,D=j,z=function(t){return L(D(t))},F="object"==typeof document&&document.all,N=void 0===F&&void 0!==F?function(t){return"function"==typeof t||t===F}:function(t){return"function"==typeof t},B=N,U=function(t){return"object"==typeof t?null!==t:B(t)},Y=r,G=N,W=function(t,e){return arguments.length<2?(r=Y[t],G(r)?r:void 0):Y[t]&&Y[t][e];var r},H=w({}.isPrototypeOf),q="undefined"!=typeof navigator&&String(navigator.userAgent)||"",X=r,V=q,Q=X.process,K=X.Deno,J=Q&&Q.versions||K&&K.version,Z=J&&J.v8;Z&&(g=(p=Z.split("."))[0]>0&&p[0]<4?1:+(p[0]+p[1])),!g&&V&&(!(p=V.match(/Edge\/(\d+)/))||p[1]>=74)&&(p=V.match(/Chrome\/(\d+)/))&&(g=+p[1]);var $=g,tt=$,et=i,rt=r.String,nt=!!Object.getOwnPropertySymbols&&!et((function(){var t=Symbol("symbol detection");return!rt(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&tt&&tt<41})),it=nt&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,at=W,ot=N,st=H,ct=Object,ut=it?function(t){return"symbol"==typeof t}:function(t){var e=at("Symbol");return ot(e)&&st(e.prototype,ct(t))},lt=String,ht=function(t){try{return lt(t)}catch(t){return"Object"}},ft=N,dt=ht,pt=TypeError,gt=function(t){if(ft(t))return t;throw new pt(dt(t)+" is not a function")},vt=gt,yt=I,mt=function(t,e){var r=t[e];return yt(r)?void 0:vt(r)},bt=u,xt=N,wt=U,At=TypeError,_t=function(t,e){var r,n;if("string"===e&&xt(r=t.toString)&&!wt(n=bt(r,t)))return n;if(xt(r=t.valueOf)&&!wt(n=bt(r,t)))return n;if("string"!==e&&xt(r=t.toString)&&!wt(n=bt(r,t)))return n;throw new At("Can't convert object to primitive value")},kt={exports:{}},Et=r,St=Object.defineProperty,Mt=function(t,e){try{St(Et,t,{value:e,configurable:!0,writable:!0})}catch(r){Et[t]=e}return e},Tt=r,Pt=Mt,Ot="__core-js_shared__",It=kt.exports=Tt[Ot]||Pt(Ot,{});(It.versions||(It.versions=[])).push({version:"3.37.1",mode:"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.37.1/LICENSE",source:"https://github.com/zloirock/core-js"});var Ct=kt.exports,Rt=function(t,e){return Ct[t]||(Ct[t]=e||{})},jt=j,Lt=Object,Dt=function(t){return Lt(jt(t))},zt=Dt,Ft=w({}.hasOwnProperty),Nt=Object.hasOwn||function(t,e){return Ft(zt(t),e)},Bt=w,Ut=0,Yt=Math.random(),Gt=Bt(1..toString),Wt=function(t){return"Symbol("+(void 0===t?"":t)+")_"+Gt(++Ut+Yt,36)},Ht=Rt,qt=Nt,Xt=Wt,Vt=nt,Qt=it,Kt=r.Symbol,Jt=Ht("wks"),Zt=Qt?Kt.for||Kt:Kt&&Kt.withoutSetter||Xt,$t=function(t){return qt(Jt,t)||(Jt[t]=Vt&&qt(Kt,t)?Kt[t]:Zt("Symbol."+t)),Jt[t]},te=u,ee=U,re=ut,ne=mt,ie=_t,ae=TypeError,oe=$t("toPrimitive"),se=function(t,e){if(!ee(t)||re(t))return t;var r,n=ne(t,oe);if(n){if(void 0===e&&(e="default"),r=te(n,t,e),!ee(r)||re(r))return r;throw new ae("Can't convert object to primitive value")}return void 0===e&&(e="number"),ie(t,e)},ce=se,ue=ut,le=function(t){var e=ce(t,"string");return ue(e)?e:e+""},he=U,fe=r.document,de=he(fe)&&he(fe.createElement),pe=function(t){return de?fe.createElement(t):{}},ge=pe,ve=!a&&!i((function(){return 7!==Object.defineProperty(ge("div"),"a",{get:function(){return 7}}).a})),ye=a,me=u,be=l,xe=v,we=z,Ae=le,_e=Nt,ke=ve,Ee=Object.getOwnPropertyDescriptor;n.f=ye?Ee:function(t,e){if(t=we(t),e=Ae(e),ke)try{return Ee(t,e)}catch(t){}if(_e(t,e))return xe(!me(be.f,t,e),t[e])};var Se={},Me=a&&i((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype})),Te=U,Pe=String,Oe=TypeError,Ie=function(t){if(Te(t))return t;throw new Oe(Pe(t)+" is not an object")},Ce=a,Re=ve,je=Me,Le=Ie,De=le,ze=TypeError,Fe=Object.defineProperty,Ne=Object.getOwnPropertyDescriptor,Be="enumerable",Ue="configurable",Ye="writable";Se.f=Ce?je?function(t,e,r){if(Le(t),e=De(e),Le(r),"function"==typeof t&&"prototype"===e&&"value"in r&&Ye in r&&!r[Ye]){var n=Ne(t,e);n&&n[Ye]&&(t[e]=r.value,r={configurable:Ue in r?r[Ue]:n[Ue],enumerable:Be in r?r[Be]:n[Be],writable:!1})}return Fe(t,e,r)}:Fe:function(t,e,r){if(Le(t),e=De(e),Le(r),Re)try{return Fe(t,e,r)}catch(t){}if("get"in r||"set"in r)throw new ze("Accessors not supported");return"value"in r&&(t[e]=r.value),t};var Ge=Se,We=v,He=a?function(t,e,r){return Ge.f(t,e,We(1,r))}:function(t,e,r){return t[e]=r,t},qe={exports:{}},Xe=a,Ve=Nt,Qe=Function.prototype,Ke=Xe&&Object.getOwnPropertyDescriptor,Je=Ve(Qe,"name"),Ze={EXISTS:Je,PROPER:Je&&"something"===function(){}.name,CONFIGURABLE:Je&&(!Xe||Xe&&Ke(Qe,"name").configurable)},$e=w,tr=N,er=kt.exports,rr=$e(Function.toString);tr(er.inspectSource)||(er.inspectSource=function(t){return rr(t)});var nr,ir,ar,or=er.inspectSource,sr=N,cr=r.WeakMap,ur=sr(cr)&&/native code/.test(String(cr)),lr=Wt,hr=Rt("keys"),fr=function(t){return hr[t]||(hr[t]=lr(t))},dr={},pr=ur,gr=r,vr=U,yr=He,mr=Nt,br=kt.exports,xr=fr,wr=dr,Ar="Object already initialized",_r=gr.TypeError,kr=gr.WeakMap;if(pr||br.state){var Er=br.state||(br.state=new kr);Er.get=Er.get,Er.has=Er.has,Er.set=Er.set,nr=function(t,e){if(Er.has(t))throw new _r(Ar);return e.facade=t,Er.set(t,e),e},ir=function(t){return Er.get(t)||{}},ar=function(t){return Er.has(t)}}else{var Sr=xr("state");wr[Sr]=!0,nr=function(t,e){if(mr(t,Sr))throw new _r(Ar);return e.facade=t,yr(t,Sr,e),e},ir=function(t){return mr(t,Sr)?t[Sr]:{}},ar=function(t){return mr(t,Sr)}}var Mr={set:nr,get:ir,has:ar,enforce:function(t){return ar(t)?ir(t):nr(t,{})},getterFor:function(t){return function(e){var r;if(!vr(e)||(r=ir(e)).type!==t)throw new _r("Incompatible receiver, "+t+" required");return r}}},Tr=w,Pr=i,Or=N,Ir=Nt,Cr=a,Rr=Ze.CONFIGURABLE,jr=or,Lr=Mr.enforce,Dr=Mr.get,zr=String,Fr=Object.defineProperty,Nr=Tr("".slice),Br=Tr("".replace),Ur=Tr([].join),Yr=Cr&&!Pr((function(){return 8!==Fr((function(){}),"length",{value:8}).length})),Gr=String(String).split("String"),Wr=qe.exports=function(t,e,r){"Symbol("===Nr(zr(e),0,7)&&(e="["+Br(zr(e),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),r&&r.getter&&(e="get "+e),r&&r.setter&&(e="set "+e),(!Ir(t,"name")||Rr&&t.name!==e)&&(Cr?Fr(t,"name",{value:e,configurable:!0}):t.name=e),Yr&&r&&Ir(r,"arity")&&t.length!==r.arity&&Fr(t,"length",{value:r.arity});try{r&&Ir(r,"constructor")&&r.constructor?Cr&&Fr(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var n=Lr(t);return Ir(n,"source")||(n.source=Ur(Gr,"string"==typeof e?e:"")),t};Function.prototype.toString=Wr((function(){return Or(this)&&Dr(this).source||jr(this)}),"toString");var Hr=N,qr=Se,Xr=qe.exports,Vr=Mt,Qr=function(t,e,r,n){n||(n={});var i=n.enumerable,a=void 0!==n.name?n.name:e;if(Hr(r)&&Xr(r,a,n),n.global)i?t[e]=r:Vr(e,r);else{try{n.unsafe?t[e]&&(i=!0):delete t[e]}catch(t){}i?t[e]=r:qr.f(t,e,{value:r,enumerable:!1,configurable:!n.nonConfigurable,writable:!n.nonWritable})}return t},Kr={},Jr=Math.ceil,Zr=Math.floor,$r=Math.trunc||function(t){var e=+t;return(e>0?Zr:Jr)(e)},tn=$r,en=function(t){var e=+t;return e!=e||0===e?0:tn(e)},rn=en,nn=Math.max,an=Math.min,on=function(t,e){var r=rn(t);return r<0?nn(r+e,0):an(r,e)},sn=en,cn=Math.min,un=function(t){var e=sn(t);return e>0?cn(e,9007199254740991):0},ln=un,hn=function(t){return ln(t.length)},fn=z,dn=on,pn=hn,gn=function(t){return function(e,r,n){var i=fn(e),a=pn(i);if(0===a)return!t&&-1;var o,s=dn(n,a);if(t&&r!=r){for(;a>s;)if((o=i[s++])!=o)return!0}else for(;a>s;s++)if((t||s in i)&&i[s]===r)return t||s||0;return!t&&-1}},vn={includes:gn(!0),indexOf:gn(!1)},yn=Nt,mn=z,bn=vn.indexOf,xn=dr,wn=w([].push),An=function(t,e){var r,n=mn(t),i=0,a=[];for(r in n)!yn(xn,r)&&yn(n,r)&&wn(a,r);for(;e.length>i;)yn(n,r=e[i++])&&(~bn(a,r)||wn(a,r));return a},_n=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],kn=An,En=_n.concat("length","prototype");Kr.f=Object.getOwnPropertyNames||function(t){return kn(t,En)};var Sn={};Sn.f=Object.getOwnPropertySymbols;var Mn=W,Tn=Kr,Pn=Sn,On=Ie,In=w([].concat),Cn=Mn("Reflect","ownKeys")||function(t){var e=Tn.f(On(t)),r=Pn.f;return r?In(e,r(t)):e},Rn=Nt,jn=Cn,Ln=n,Dn=Se,zn=function(t,e,r){for(var n=jn(e),i=Dn.f,a=Ln.f,o=0;o<n.length;o++){var s=n[o];Rn(t,s)||r&&Rn(r,s)||i(t,s,a(e,s))}},Fn=i,Nn=N,Bn=/#|\.prototype\./,Un=function(t,e){var r=Gn[Yn(t)];return r===Hn||r!==Wn&&(Nn(e)?Fn(e):!!e)},Yn=Un.normalize=function(t){return String(t).replace(Bn,".").toLowerCase()},Gn=Un.data={},Wn=Un.NATIVE="N",Hn=Un.POLYFILL="P",qn=Un,Xn=r,Vn=n.f,Qn=He,Kn=Qr,Jn=Mt,Zn=zn,$n=qn,ti=function(t,e){var r,n,i,a,o,s=t.target,c=t.global,u=t.stat;if(r=c?Xn:u?Xn[s]||Jn(s,{}):Xn[s]&&Xn[s].prototype)for(n in e){if(a=e[n],i=t.dontCallGetSet?(o=Vn(r,n))&&o.value:r[n],!$n(c?n:s+(u?".":"#")+n,t.forced)&&void 0!==i){if(typeof a==typeof i)continue;Zn(a,i)}(t.sham||i&&i.sham)&&Qn(a,"sham",!0),Kn(r,n,a,t)}},ei={};ei[$t("toStringTag")]="z";var ri="[object z]"===String(ei),ni=ri,ii=N,ai=E,oi=$t("toStringTag"),si=Object,ci="Arguments"===ai(function(){return arguments}()),ui=ni?ai:function(t){var e,r,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=si(t),oi))?r:ci?ai(e):"Object"===(n=ai(e))&&ii(e.callee)?"Arguments":n},li=ui,hi=String,fi=function(t){if("Symbol"===li(t))throw new TypeError("Cannot convert a Symbol value to a string");return hi(t)},di={},pi=An,gi=_n,vi=Object.keys||function(t){return pi(t,gi)},yi=a,mi=Me,bi=Se,xi=Ie,wi=z,Ai=vi;di.f=yi&&!mi?Object.defineProperties:function(t,e){xi(t);for(var r,n=wi(e),i=Ai(e),a=i.length,o=0;a>o;)bi.f(t,r=i[o++],n[r]);return t};var _i,ki=W("document","documentElement"),Ei=Ie,Si=di,Mi=_n,Ti=dr,Pi=ki,Oi=pe,Ii="prototype",Ci="script",Ri=fr("IE_PROTO"),ji=function(){},Li=function(t){return"<"+Ci+">"+t+"</"+Ci+">"},Di=function(t){t.write(Li("")),t.close();var e=t.parentWindow.Object;return t=null,e},zi=function(){try{_i=new ActiveXObject("htmlfile")}catch(t){}var t,e,r;zi="undefined"!=typeof document?document.domain&&_i?Di(_i):(e=Oi("iframe"),r="java"+Ci+":",e.style.display="none",Pi.appendChild(e),e.src=String(r),(t=e.contentWindow.document).open(),t.write(Li("document.F=Object")),t.close(),t.F):Di(_i);for(var n=Mi.length;n--;)delete zi[Ii][Mi[n]];return zi()};Ti[Ri]=!0;var Fi=Object.create||function(t,e){var r;return null!==t?(ji[Ii]=Ei(t),r=new ji,ji[Ii]=null,r[Ri]=t):r=zi(),void 0===e?r:Si.f(r,e)},Ni={},Bi=w([].slice),Ui=E,Yi=z,Gi=Kr.f,Wi=Bi,Hi="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];Ni.f=function(t){return Hi&&"Window"===Ui(t)?function(t){try{return Gi(t)}catch(t){return Wi(Hi)}}(t):Gi(Yi(t))};var qi=qe.exports,Xi=Se,Vi=function(t,e,r){return r.get&&qi(r.get,e,{getter:!0}),r.set&&qi(r.set,e,{setter:!0}),Xi.f(t,e,r)},Qi={},Ki=$t;Qi.f=Ki;var Ji=r,Zi=Ji,$i=Nt,ta=Qi,ea=Se.f,ra=function(t){var e=Zi.Symbol||(Zi.Symbol={});$i(e,t)||ea(e,t,{value:ta.f(t)})},na=u,ia=W,aa=$t,oa=Qr,sa=function(){var t=ia("Symbol"),e=t&&t.prototype,r=e&&e.valueOf,n=aa("toPrimitive");e&&!e[n]&&oa(e,n,(function(t){return na(r,this)}),{arity:1})},ca=Se.f,ua=Nt,la=$t("toStringTag"),ha=function(t,e,r){t&&!r&&(t=t.prototype),t&&!ua(t,la)&&ca(t,la,{configurable:!0,value:e})},fa=E,da=w,pa=function(t){if("Function"===fa(t))return da(t)},ga=gt,va=o,ya=pa(pa.bind),ma=function(t,e){return ga(t),void 0===e?t:va?ya(t,e):function(){return t.apply(e,arguments)}},ba=E,xa=Array.isArray||function(t){return"Array"===ba(t)},wa=w,Aa=i,_a=N,ka=ui,Ea=or,Sa=function(){},Ma=W("Reflect","construct"),Ta=/^\s*(?:class|function)\b/,Pa=wa(Ta.exec),Oa=!Ta.test(Sa),Ia=function(t){if(!_a(t))return!1;try{return Ma(Sa,[],t),!0}catch(t){return!1}},Ca=function(t){if(!_a(t))return!1;switch(ka(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return Oa||!!Pa(Ta,Ea(t))}catch(t){return!0}};Ca.sham=!0;var Ra=!Ma||Aa((function(){var t;return Ia(Ia.call)||!Ia(Object)||!Ia((function(){t=!0}))||t}))?Ca:Ia,ja=xa,La=Ra,Da=U,za=$t("species"),Fa=Array,Na=function(t){var e;return ja(t)&&(e=t.constructor,(La(e)&&(e===Fa||ja(e.prototype))||Da(e)&&null===(e=e[za]))&&(e=void 0)),void 0===e?Fa:e},Ba=function(t,e){return new(Na(t))(0===e?0:e)},Ua=ma,Ya=O,Ga=Dt,Wa=hn,Ha=Ba,qa=w([].push),Xa=function(t){var e=1===t,r=2===t,n=3===t,i=4===t,a=6===t,o=7===t,s=5===t||a;return function(c,u,l,h){for(var f,d,p=Ga(c),g=Ya(p),v=Wa(g),y=Ua(u,l),m=0,b=h||Ha,x=e?b(c,v):r||o?b(c,0):void 0;v>m;m++)if((s||m in g)&&(d=y(f=g[m],m,p),t))if(e)x[m]=d;else if(d)switch(t){case 3:return!0;case 5:return f;case 6:return m;case 2:qa(x,f)}else switch(t){case 4:return!1;case 7:qa(x,f)}return a?-1:n||i?i:x}},Va={forEach:Xa(0),map:Xa(1),filter:Xa(2),some:Xa(3),every:Xa(4),find:Xa(5),findIndex:Xa(6),filterReject:Xa(7)},Qa=ti,Ka=r,Ja=u,Za=w,$a=a,to=nt,eo=i,ro=Nt,no=H,io=Ie,ao=z,oo=le,so=fi,co=v,uo=Fi,lo=vi,ho=Kr,fo=Ni,po=Sn,go=n,vo=Se,yo=di,mo=l,bo=Qr,xo=Vi,wo=Rt,Ao=dr,_o=Wt,ko=$t,Eo=Qi,So=ra,Mo=sa,To=ha,Po=Mr,Oo=Va.forEach,Io=fr("hidden"),Co="Symbol",Ro="prototype",jo=Po.set,Lo=Po.getterFor(Co),Do=Object[Ro],zo=Ka.Symbol,Fo=zo&&zo[Ro],No=Ka.RangeError,Bo=Ka.TypeError,Uo=Ka.QObject,Yo=go.f,Go=vo.f,Wo=fo.f,Ho=mo.f,qo=Za([].push),Xo=wo("symbols"),Vo=wo("op-symbols"),Qo=wo("wks"),Ko=!Uo||!Uo[Ro]||!Uo[Ro].findChild,Jo=function(t,e,r){var n=Yo(Do,e);n&&delete Do[e],Go(t,e,r),n&&t!==Do&&Go(Do,e,n)},Zo=$a&&eo((function(){return 7!==uo(Go({},"a",{get:function(){return Go(this,"a",{value:7}).a}})).a}))?Jo:Go,$o=function(t,e){var r=Xo[t]=uo(Fo);return jo(r,{type:Co,tag:t,description:e}),$a||(r.description=e),r},ts=function(t,e,r){t===Do&&ts(Vo,e,r),io(t);var n=oo(e);return io(r),ro(Xo,n)?(r.enumerable?(ro(t,Io)&&t[Io][n]&&(t[Io][n]=!1),r=uo(r,{enumerable:co(0,!1)})):(ro(t,Io)||Go(t,Io,co(1,uo(null))),t[Io][n]=!0),Zo(t,n,r)):Go(t,n,r)},es=function(t,e){io(t);var r=ao(e),n=lo(r).concat(as(r));return Oo(n,(function(e){$a&&!Ja(rs,r,e)||ts(t,e,r[e])})),t},rs=function(t){var e=oo(t),r=Ja(Ho,this,e);return!(this===Do&&ro(Xo,e)&&!ro(Vo,e))&&(!(r||!ro(this,e)||!ro(Xo,e)||ro(this,Io)&&this[Io][e])||r)},ns=function(t,e){var r=ao(t),n=oo(e);if(r!==Do||!ro(Xo,n)||ro(Vo,n)){var i=Yo(r,n);return!i||!ro(Xo,n)||ro(r,Io)&&r[Io][n]||(i.enumerable=!0),i}},is=function(t){var e=Wo(ao(t)),r=[];return Oo(e,(function(t){ro(Xo,t)||ro(Ao,t)||qo(r,t)})),r},as=function(t){var e=t===Do,r=Wo(e?Vo:ao(t)),n=[];return Oo(r,(function(t){!ro(Xo,t)||e&&!ro(Do,t)||qo(n,Xo[t])})),n};to||(zo=function(){if(no(Fo,this))throw new Bo("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?so(arguments[0]):void 0,e=_o(t),r=function(t){var n=void 0===this?Ka:this;n===Do&&Ja(r,Vo,t),ro(n,Io)&&ro(n[Io],e)&&(n[Io][e]=!1);var i=co(1,t);try{Zo(n,e,i)}catch(t){if(!(t instanceof No))throw t;Jo(n,e,i)}};return $a&&Ko&&Zo(Do,e,{configurable:!0,set:r}),$o(e,t)},bo(Fo=zo[Ro],"toString",(function(){return Lo(this).tag})),bo(zo,"withoutSetter",(function(t){return $o(_o(t),t)})),mo.f=rs,vo.f=ts,yo.f=es,go.f=ns,ho.f=fo.f=is,po.f=as,Eo.f=function(t){return $o(ko(t),t)},$a&&(xo(Fo,"description",{configurable:!0,get:function(){return Lo(this).description}}),bo(Do,"propertyIsEnumerable",rs,{unsafe:!0}))),Qa({global:!0,constructor:!0,wrap:!0,forced:!to,sham:!to},{Symbol:zo}),Oo(lo(Qo),(function(t){So(t)})),Qa({target:Co,stat:!0,forced:!to},{useSetter:function(){Ko=!0},useSimple:function(){Ko=!1}}),Qa({target:"Object",stat:!0,forced:!to,sham:!$a},{create:function(t,e){return void 0===e?uo(t):es(uo(t),e)},defineProperty:ts,defineProperties:es,getOwnPropertyDescriptor:ns}),Qa({target:"Object",stat:!0,forced:!to},{getOwnPropertyNames:is}),Mo(),To(zo,Co),Ao[Io]=!0;var os=nt&&!!Symbol.for&&!!Symbol.keyFor,ss=ti,cs=W,us=Nt,ls=fi,hs=Rt,fs=os,ds=hs("string-to-symbol-registry"),ps=hs("symbol-to-string-registry");ss({target:"Symbol",stat:!0,forced:!fs},{for:function(t){var e=ls(t);if(us(ds,e))return ds[e];var r=cs("Symbol")(e);return ds[e]=r,ps[r]=e,r}});var gs=ti,vs=Nt,ys=ut,ms=ht,bs=os,xs=Rt("symbol-to-string-registry");gs({target:"Symbol",stat:!0,forced:!bs},{keyFor:function(t){if(!ys(t))throw new TypeError(ms(t)+" is not a symbol");if(vs(xs,t))return xs[t]}});var ws=o,As=Function.prototype,_s=As.apply,ks=As.call,Es="object"==typeof Reflect&&Reflect.apply||(ws?ks.bind(_s):function(){return ks.apply(_s,arguments)}),Ss=xa,Ms=N,Ts=E,Ps=fi,Os=w([].push),Is=ti,Cs=W,Rs=Es,js=u,Ls=w,Ds=i,zs=N,Fs=ut,Ns=Bi,Bs=function(t){if(Ms(t))return t;if(Ss(t)){for(var e=t.length,r=[],n=0;n<e;n++){var i=t[n];"string"==typeof i?Os(r,i):"number"!=typeof i&&"Number"!==Ts(i)&&"String"!==Ts(i)||Os(r,Ps(i))}var a=r.length,o=!0;return function(t,e){if(o)return o=!1,e;if(Ss(this))return e;for(var n=0;n<a;n++)if(r[n]===t)return e}}},Us=nt,Ys=String,Gs=Cs("JSON","stringify"),Ws=Ls(/./.exec),Hs=Ls("".charAt),qs=Ls("".charCodeAt),Xs=Ls("".replace),Vs=Ls(1..toString),Qs=/[\uD800-\uDFFF]/g,Ks=/^[\uD800-\uDBFF]$/,Js=/^[\uDC00-\uDFFF]$/,Zs=!Us||Ds((function(){var t=Cs("Symbol")("stringify detection");return"[null]"!==Gs([t])||"{}"!==Gs({a:t})||"{}"!==Gs(Object(t))})),$s=Ds((function(){return'"\\udf06\\ud834"'!==Gs("\udf06\ud834")||'"\\udead"'!==Gs("\udead")})),tc=function(t,e){var r=Ns(arguments),n=Bs(e);if(zs(n)||void 0!==t&&!Fs(t))return r[1]=function(t,e){if(zs(n)&&(e=js(n,this,Ys(t),e)),!Fs(e))return e},Rs(Gs,null,r)},ec=function(t,e,r){var n=Hs(r,e-1),i=Hs(r,e+1);return Ws(Ks,t)&&!Ws(Js,i)||Ws(Js,t)&&!Ws(Ks,n)?"\\u"+Vs(qs(t,0),16):t};Gs&&Is({target:"JSON",stat:!0,arity:3,forced:Zs||$s},{stringify:function(t,e,r){var n=Ns(arguments),i=Rs(Zs?tc:Gs,null,n);return $s&&"string"==typeof i?Xs(i,Qs,ec):i}});var rc=Sn,nc=Dt;ti({target:"Object",stat:!0,forced:!nt||i((function(){rc.f(1)}))},{getOwnPropertySymbols:function(t){var e=rc.f;return e?e(nc(t)):[]}});var ic=ti,ac=a,oc=w,sc=Nt,cc=N,uc=H,lc=fi,hc=Vi,fc=zn,dc=r.Symbol,pc=dc&&dc.prototype;if(ac&&cc(dc)&&(!("description"in pc)||void 0!==dc().description)){var gc={},vc=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:lc(arguments[0]),e=uc(pc,this)?new dc(t):void 0===t?dc():dc(t);return""===t&&(gc[e]=!0),e};fc(vc,dc),vc.prototype=pc,pc.constructor=vc;var yc="Symbol(description detection)"===String(dc("description detection")),mc=oc(pc.valueOf),bc=oc(pc.toString),xc=/^Symbol\((.*)\)[^)]+$/,wc=oc("".replace),Ac=oc("".slice);hc(pc,"description",{configurable:!0,get:function(){var t=mc(this);if(sc(gc,t))return"";var e=bc(t),r=yc?Ac(e,7,-1):wc(e,xc,"$1");return""===r?void 0:r}}),ic({global:!0,constructor:!0,forced:!0},{Symbol:vc})}ra("asyncIterator"),ra("hasInstance"),ra("isConcatSpreadable"),ra("iterator"),ra("match"),ra("matchAll"),ra("replace"),ra("search"),ra("species"),ra("split");var _c=sa;ra("toPrimitive"),_c();var kc=W,Ec=ha;ra("toStringTag"),Ec(kc("Symbol"),"Symbol"),ra("unscopables");var Sc=w,Mc=gt,Tc=function(t,e,r){try{return Sc(Mc(Object.getOwnPropertyDescriptor(t,e)[r]))}catch(t){}},Pc=U,Oc=function(t){return Pc(t)||null===t},Ic=Oc,Cc=String,Rc=TypeError,jc=function(t){if(Ic(t))return t;throw new Rc("Can't set "+Cc(t)+" as a prototype")},Lc=Tc,Dc=U,zc=j,Fc=jc,Nc=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,r={};try{(t=Lc(Object.prototype,"__proto__","set"))(r,[]),e=r instanceof Array}catch(t){}return function(r,n){return zc(r),Fc(n),Dc(r)?(e?t(r,n):r.__proto__=n,r):r}}():void 0),Bc=Se.f,Uc=function(t,e,r){r in t||Bc(t,r,{configurable:!0,get:function(){return e[r]},set:function(t){e[r]=t}})},Yc=N,Gc=U,Wc=Nc,Hc=function(t,e,r){var n,i;return Wc&&Yc(n=e.constructor)&&n!==r&&Gc(i=n.prototype)&&i!==r.prototype&&Wc(t,i),t},qc=fi,Xc=function(t,e){return void 0===t?arguments.length<2?"":e:qc(t)},Vc=U,Qc=He,Kc=function(t,e){Vc(e)&&"cause"in e&&Qc(t,"cause",e.cause)},Jc=Error,Zc=w("".replace),$c=String(new Jc("zxcasd").stack),tu=/\n\s*at [^:]*:[^\n]*/,eu=tu.test($c),ru=function(t,e){if(eu&&"string"==typeof t&&!Jc.prepareStackTrace)for(;e--;)t=Zc(t,tu,"");return t},nu=v,iu=!i((function(){var t=new Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",nu(1,7)),7!==t.stack)})),au=He,ou=ru,su=iu,cu=Error.captureStackTrace,uu=function(t,e,r,n){su&&(cu?cu(t,e):au(t,"stack",ou(r,n)))},lu=W,hu=Nt,fu=He,du=H,pu=Nc,gu=zn,vu=Uc,yu=Hc,mu=Xc,bu=Kc,xu=uu,wu=a,Au=function(t,e,r,n){var i="stackTraceLimit",a=n?2:1,o=t.split("."),s=o[o.length-1],c=lu.apply(null,o);if(c){var u=c.prototype;if(hu(u,"cause")&&delete u.cause,!r)return c;var l=lu("Error"),h=e((function(t,e){var r=mu(n?e:t,void 0),i=n?new c(t):new c;return void 0!==r&&fu(i,"message",r),xu(i,h,i.stack,2),this&&du(u,this)&&yu(i,this,h),arguments.length>a&&bu(i,arguments[a]),i}));h.prototype=u,"Error"!==s?pu?pu(h,l):gu(h,l,{name:!0}):wu&&i in c&&(vu(h,c,i),vu(h,c,"prepareStackTrace")),gu(h,c);try{u.name!==s&&fu(u,"name",s),u.constructor=h}catch(t){}return h}},_u=ti,ku=Es,Eu=Au,Su="WebAssembly",Mu=r[Su],Tu=7!==new Error("e",{cause:7}).cause,Pu=function(t,e){var r={};r[t]=Eu(t,e,Tu),_u({global:!0,constructor:!0,arity:1,forced:Tu},r)},Ou=function(t,e){if(Mu&&Mu[t]){var r={};r[t]=Eu(Su+"."+t,e,Tu),_u({target:Su,stat:!0,constructor:!0,arity:1,forced:Tu},r)}};Pu("Error",(function(t){return function(e){return ku(t,this,arguments)}})),Pu("EvalError",(function(t){return function(e){return ku(t,this,arguments)}})),Pu("RangeError",(function(t){return function(e){return ku(t,this,arguments)}})),Pu("ReferenceError",(function(t){return function(e){return ku(t,this,arguments)}})),Pu("SyntaxError",(function(t){return function(e){return ku(t,this,arguments)}})),Pu("TypeError",(function(t){return function(e){return ku(t,this,arguments)}})),Pu("URIError",(function(t){return function(e){return ku(t,this,arguments)}})),Ou("CompileError",(function(t){return function(e){return ku(t,this,arguments)}})),Ou("LinkError",(function(t){return function(e){return ku(t,this,arguments)}})),Ou("RuntimeError",(function(t){return function(e){return ku(t,this,arguments)}}));var Iu=a,Cu=i,Ru=Ie,ju=Xc,Lu=Error.prototype.toString,Du=Cu((function(){if(Iu){var t=Object.create(Object.defineProperty({},"name",{get:function(){return this===t}}));if("true"!==Lu.call(t))return!0}return"2: 1"!==Lu.call({message:1,name:2})||"Error"!==Lu.call({})})),zu=Du?function(){var t=Ru(this),e=ju(t.name,"Error"),r=ju(t.message);return e?r?e+": "+r:e:r}:Lu,Fu=Qr,Nu=zu,Bu=Error.prototype;Bu.toString!==Nu&&Fu(Bu,"toString",Nu);var Uu=!i((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype})),Yu=Nt,Gu=N,Wu=Dt,Hu=Uu,qu=fr("IE_PROTO"),Xu=Object,Vu=Xu.prototype,Qu=Hu?Xu.getPrototypeOf:function(t){var e=Wu(t);if(Yu(e,qu))return e[qu];var r=e.constructor;return Gu(r)&&e instanceof r?r.prototype:e instanceof Xu?Vu:null},Ku={},Ju=Ku,Zu=$t("iterator"),$u=Array.prototype,tl=function(t){return void 0!==t&&(Ju.Array===t||$u[Zu]===t)},el=ui,rl=mt,nl=I,il=Ku,al=$t("iterator"),ol=function(t){if(!nl(t))return rl(t,al)||rl(t,"@@iterator")||il[el(t)]},sl=u,cl=gt,ul=Ie,ll=ht,hl=ol,fl=TypeError,dl=function(t,e){var r=arguments.length<2?hl(t):e;if(cl(r))return ul(sl(r,t));throw new fl(ll(t)+" is not iterable")},pl=u,gl=Ie,vl=mt,yl=function(t,e,r){var n,i;gl(t);try{if(!(n=vl(t,"return"))){if("throw"===e)throw r;return r}n=pl(n,t)}catch(t){i=!0,n=t}if("throw"===e)throw r;if(i)throw n;return gl(n),r},ml=ma,bl=u,xl=Ie,wl=ht,Al=tl,_l=hn,kl=H,El=dl,Sl=ol,Ml=yl,Tl=TypeError,Pl=function(t,e){this.stopped=t,this.result=e},Ol=Pl.prototype,Il=function(t,e,r){var n,i,a,o,s,c,u,l=r&&r.that,h=!(!r||!r.AS_ENTRIES),f=!(!r||!r.IS_RECORD),d=!(!r||!r.IS_ITERATOR),p=!(!r||!r.INTERRUPTED),g=ml(e,l),v=function(t){return n&&Ml(n,"normal",t),new Pl(!0,t)},y=function(t){return h?(xl(t),p?g(t[0],t[1],v):g(t[0],t[1])):p?g(t,v):g(t)};if(f)n=t.iterator;else if(d)n=t;else{if(!(i=Sl(t)))throw new Tl(wl(t)+" is not iterable");if(Al(i)){for(a=0,o=_l(t);o>a;a++)if((s=y(t[a]))&&kl(Ol,s))return s;return new Pl(!1)}n=El(t,i)}for(c=f?t.next:n.next;!(u=bl(c,n)).done;){try{s=y(u.value)}catch(t){Ml(n,"throw",t)}if("object"==typeof s&&s&&kl(Ol,s))return s}return new Pl(!1)},Cl=ti,Rl=H,jl=Qu,Ll=Nc,Dl=zn,zl=Fi,Fl=He,Nl=v,Bl=Kc,Ul=uu,Yl=Il,Gl=Xc,Wl=$t("toStringTag"),Hl=Error,ql=[].push,Xl=function(t,e){var r,n=Rl(Vl,this);Ll?r=Ll(new Hl,n?jl(this):Vl):(r=n?this:zl(Vl),Fl(r,Wl,"Error")),void 0!==e&&Fl(r,"message",Gl(e)),Ul(r,Xl,r.stack,1),arguments.length>2&&Bl(r,arguments[2]);var i=[];return Yl(t,ql,{that:i}),Fl(r,"errors",i),r};Ll?Ll(Xl,Hl):Dl(Xl,Hl,{name:!0});var Vl=Xl.prototype=zl(Hl.prototype,{constructor:Nl(1,Xl),message:Nl(1,""),name:Nl(1,"AggregateError")});Cl({global:!0,constructor:!0,arity:2},{AggregateError:Xl});var Ql=ti,Kl=Es,Jl=i,Zl=Au,$l="AggregateError",th=W($l),eh=!Jl((function(){return 1!==th([1]).errors[0]}))&&Jl((function(){return 7!==th([1],$l,{cause:7}).cause}));Ql({global:!0,constructor:!0,arity:2,forced:eh},{AggregateError:Zl($l,(function(t){return function(e,r){return Kl(t,this,arguments)}}),eh,!0)});var rh=$t,nh=Fi,ih=Se.f,ah=rh("unscopables"),oh=Array.prototype;void 0===oh[ah]&&ih(oh,ah,{configurable:!0,value:nh(null)});var sh=function(t){oh[ah][t]=!0},ch=Dt,uh=hn,lh=en,hh=sh;ti({target:"Array",proto:!0},{at:function(t){var e=ch(this),r=uh(e),n=lh(t),i=n>=0?n:r+n;return i<0||i>=r?void 0:e[i]}}),hh("at");var fh=TypeError,dh=function(t){if(t>9007199254740991)throw fh("Maximum allowed index exceeded");return t},ph=a,gh=Se,vh=v,yh=function(t,e,r){ph?gh.f(t,e,vh(0,r)):t[e]=r},mh=i,bh=$,xh=$t("species"),wh=function(t){return bh>=51||!mh((function(){var e=[];return(e.constructor={})[xh]=function(){return{foo:1}},1!==e[t](Boolean).foo}))},Ah=ti,_h=i,kh=xa,Eh=U,Sh=Dt,Mh=hn,Th=dh,Ph=yh,Oh=Ba,Ih=wh,Ch=$,Rh=$t("isConcatSpreadable"),jh=Ch>=51||!_h((function(){var t=[];return t[Rh]=!1,t.concat()[0]!==t})),Lh=function(t){if(!Eh(t))return!1;var e=t[Rh];return void 0!==e?!!e:kh(t)};Ah({target:"Array",proto:!0,arity:1,forced:!jh||!Ih("concat")},{concat:function(t){var e,r,n,i,a,o=Sh(this),s=Oh(o,0),c=0;for(e=-1,n=arguments.length;e<n;e++)if(Lh(a=-1===e?o:arguments[e]))for(i=Mh(a),Th(c+i),r=0;r<i;r++,c++)r in a&&Ph(s,c,a[r]);else Th(c+1),Ph(s,c++,a);return s.length=c,s}});var Dh=ht,zh=TypeError,Fh=function(t,e){if(!delete t[e])throw new zh("Cannot delete property "+Dh(e)+" of "+Dh(t))},Nh=Dt,Bh=on,Uh=hn,Yh=Fh,Gh=Math.min,Wh=[].copyWithin||function(t,e){var r=Nh(this),n=Uh(r),i=Bh(t,n),a=Bh(e,n),o=arguments.length>2?arguments[2]:void 0,s=Gh((void 0===o?n:Bh(o,n))-a,n-i),c=1;for(a<i&&i<a+s&&(c=-1,a+=s-1,i+=s-1);s-- >0;)a in r?r[i]=r[a]:Yh(r,i),i+=c,a+=c;return r},Hh=sh;ti({target:"Array",proto:!0},{copyWithin:Wh}),Hh("copyWithin");var qh=i,Xh=function(t,e){var r=[][t];return!!r&&qh((function(){r.call(null,e||function(){return 1},1)}))},Vh=Va.every;ti({target:"Array",proto:!0,forced:!Xh("every")},{every:function(t){return Vh(this,t,arguments.length>1?arguments[1]:void 0)}});var Qh=Dt,Kh=on,Jh=hn,Zh=function(t){for(var e=Qh(this),r=Jh(e),n=arguments.length,i=Kh(n>1?arguments[1]:void 0,r),a=n>2?arguments[2]:void 0,o=void 0===a?r:Kh(a,r);o>i;)e[i++]=t;return e},$h=sh;ti({target:"Array",proto:!0},{fill:Zh}),$h("fill");var tf=Va.filter;ti({target:"Array",proto:!0,forced:!wh("filter")},{filter:function(t){return tf(this,t,arguments.length>1?arguments[1]:void 0)}});var ef=ti,rf=Va.find,nf=sh,af="find",of=!0;af in[]&&Array(1)[af]((function(){of=!1})),ef({target:"Array",proto:!0,forced:of},{find:function(t){return rf(this,t,arguments.length>1?arguments[1]:void 0)}}),nf(af);var sf=ti,cf=Va.findIndex,uf=sh,lf="findIndex",hf=!0;lf in[]&&Array(1)[lf]((function(){hf=!1})),sf({target:"Array",proto:!0,forced:hf},{findIndex:function(t){return cf(this,t,arguments.length>1?arguments[1]:void 0)}}),uf(lf);var ff=ma,df=O,pf=Dt,gf=hn,vf=function(t){var e=1===t;return function(r,n,i){for(var a,o=pf(r),s=df(o),c=gf(s),u=ff(n,i);c-- >0;)if(u(a=s[c],c,o))switch(t){case 0:return a;case 1:return c}return e?-1:void 0}},yf={findLast:vf(0),findLastIndex:vf(1)},mf=yf.findLast,bf=sh;ti({target:"Array",proto:!0},{findLast:function(t){return mf(this,t,arguments.length>1?arguments[1]:void 0)}}),bf("findLast");var xf=yf.findLastIndex,wf=sh;ti({target:"Array",proto:!0},{findLastIndex:function(t){return xf(this,t,arguments.length>1?arguments[1]:void 0)}}),wf("findLastIndex");var Af=xa,_f=hn,kf=dh,Ef=ma,Sf=function(t,e,r,n,i,a,o,s){for(var c,u,l=i,h=0,f=!!o&&Ef(o,s);h<n;)h in r&&(c=f?f(r[h],h,e):r[h],a>0&&Af(c)?(u=_f(c),l=Sf(t,e,c,u,l,a-1)-1):(kf(l+1),t[l]=c),l++),h++;return l},Mf=Sf,Tf=Mf,Pf=Dt,Of=hn,If=en,Cf=Ba;ti({target:"Array",proto:!0},{flat:function(){var t=arguments.length?arguments[0]:void 0,e=Pf(this),r=Of(e),n=Cf(e,0);return n.length=Tf(n,e,e,r,0,void 0===t?1:If(t)),n}});var Rf=Mf,jf=gt,Lf=Dt,Df=hn,zf=Ba;ti({target:"Array",proto:!0},{flatMap:function(t){var e,r=Lf(this),n=Df(r);return jf(t),(e=zf(r,0)).length=Rf(e,r,r,n,0,1,t,arguments.length>1?arguments[1]:void 0),e}});var Ff=Va.forEach,Nf=Xh("forEach")?[].forEach:function(t){return Ff(this,t,arguments.length>1?arguments[1]:void 0)};ti({target:"Array",proto:!0,forced:[].forEach!==Nf},{forEach:Nf});var Bf=Ie,Uf=yl,Yf=ma,Gf=u,Wf=Dt,Hf=function(t,e,r,n){try{return n?e(Bf(r)[0],r[1]):e(r)}catch(e){Uf(t,"throw",e)}},qf=tl,Xf=Ra,Vf=hn,Qf=yh,Kf=dl,Jf=ol,Zf=Array,$f=function(t){var e=Wf(t),r=Xf(this),n=arguments.length,i=n>1?arguments[1]:void 0,a=void 0!==i;a&&(i=Yf(i,n>2?arguments[2]:void 0));var o,s,c,u,l,h,f=Jf(e),d=0;if(!f||this===Zf&&qf(f))for(o=Vf(e),s=r?new this(o):Zf(o);o>d;d++)h=a?i(e[d],d):e[d],Qf(s,d,h);else for(s=r?new this:[],l=(u=Kf(e,f)).next;!(c=Gf(l,u)).done;d++)h=a?Hf(u,i,[c.value,d],!0):c.value,Qf(s,d,h);return s.length=d,s},td=$t("iterator"),ed=!1;try{var rd=0,nd={next:function(){return{done:!!rd++}},return:function(){ed=!0}};nd[td]=function(){return this},Array.from(nd,(function(){throw 2}))}catch(t){}var id=function(t,e){try{if(!e&&!ed)return!1}catch(t){return!1}var r=!1;try{var n={};n[td]=function(){return{next:function(){return{done:r=!0}}}},t(n)}catch(t){}return r},ad=$f;ti({target:"Array",stat:!0,forced:!id((function(t){Array.from(t)}))},{from:ad});var od=vn.includes,sd=sh;ti({target:"Array",proto:!0,forced:i((function(){return!Array(1).includes()}))},{includes:function(t){return od(this,t,arguments.length>1?arguments[1]:void 0)}}),sd("includes");var cd=ti,ud=vn.indexOf,ld=Xh,hd=pa([].indexOf),fd=!!hd&&1/hd([1],1,-0)<0;cd({target:"Array",proto:!0,forced:fd||!ld("indexOf")},{indexOf:function(t){var e=arguments.length>1?arguments[1]:void 0;return fd?hd(this,t,e)||0:ud(this,t,e)}}),ti({target:"Array",stat:!0},{isArray:xa});var dd,pd,gd,vd=i,yd=N,md=U,bd=Qu,xd=Qr,wd=$t("iterator"),Ad=!1;[].keys&&("next"in(gd=[].keys())?(pd=bd(bd(gd)))!==Object.prototype&&(dd=pd):Ad=!0);var _d=!md(dd)||vd((function(){var t={};return dd[wd].call(t)!==t}));_d&&(dd={}),yd(dd[wd])||xd(dd,wd,(function(){return this}));var kd={IteratorPrototype:dd,BUGGY_SAFARI_ITERATORS:Ad},Ed=kd.IteratorPrototype,Sd=Fi,Md=v,Td=ha,Pd=Ku,Od=function(){return this},Id=function(t,e,r,n){var i=e+" Iterator";return t.prototype=Sd(Ed,{next:Md(+!n,r)}),Td(t,i,!1),Pd[i]=Od,t},Cd=ti,Rd=u,jd=N,Ld=Id,Dd=Qu,zd=Nc,Fd=ha,Nd=He,Bd=Qr,Ud=Ku,Yd=Ze.PROPER,Gd=Ze.CONFIGURABLE,Wd=kd.IteratorPrototype,Hd=kd.BUGGY_SAFARI_ITERATORS,qd=$t("iterator"),Xd="keys",Vd="values",Qd="entries",Kd=function(){return this},Jd=function(t,e,r,n,i,a,o){Ld(r,e,n);var s,c,u,l=function(t){if(t===i&&g)return g;if(!Hd&&t&&t in d)return d[t];switch(t){case Xd:case Vd:case Qd:return function(){return new r(this,t)}}return function(){return new r(this)}},h=e+" Iterator",f=!1,d=t.prototype,p=d[qd]||d["@@iterator"]||i&&d[i],g=!Hd&&p||l(i),v="Array"===e&&d.entries||p;if(v&&(s=Dd(v.call(new t)))!==Object.prototype&&s.next&&(Dd(s)!==Wd&&(zd?zd(s,Wd):jd(s[qd])||Bd(s,qd,Kd)),Fd(s,h,!0)),Yd&&i===Vd&&p&&p.name!==Vd&&(Gd?Nd(d,"name",Vd):(f=!0,g=function(){return Rd(p,this)})),i)if(c={values:l(Vd),keys:a?g:l(Xd),entries:l(Qd)},o)for(u in c)(Hd||f||!(u in d))&&Bd(d,u,c[u]);else Cd({target:e,proto:!0,forced:Hd||f},c);return d[qd]!==g&&Bd(d,qd,g,{name:i}),Ud[e]=g,c},Zd=function(t,e){return{value:t,done:e}},$d=z,tp=sh,ep=Ku,rp=Mr,np=Se.f,ip=Jd,ap=Zd,op=a,sp="Array Iterator",cp=rp.set,up=rp.getterFor(sp),lp=ip(Array,"Array",(function(t,e){cp(this,{type:sp,target:$d(t),index:0,kind:e})}),(function(){var t=up(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=void 0,ap(void 0,!0);switch(t.kind){case"keys":return ap(r,!1);case"values":return ap(e[r],!1)}return ap([r,e[r]],!1)}),"values"),hp=ep.Arguments=ep.Array;if(tp("keys"),tp("values"),tp("entries"),op&&"values"!==hp.name)try{np(hp,"name",{value:"values"})}catch(t){}var fp=ti,dp=O,pp=z,gp=Xh,vp=w([].join);fp({target:"Array",proto:!0,forced:dp!==Object||!gp("join",",")},{join:function(t){return vp(pp(this),void 0===t?",":t)}});var yp=Es,mp=z,bp=en,xp=hn,wp=Xh,Ap=Math.min,_p=[].lastIndexOf,kp=!!_p&&1/[1].lastIndexOf(1,-0)<0,Ep=wp("lastIndexOf"),Sp=kp||!Ep?function(t){if(kp)return yp(_p,this,arguments)||0;var e=mp(this),r=xp(e);if(0===r)return-1;var n=r-1;for(arguments.length>1&&(n=Ap(n,bp(arguments[1]))),n<0&&(n=r+n);n>=0;n--)if(n in e&&e[n]===t)return n||0;return-1}:_p;ti({target:"Array",proto:!0,forced:Sp!==[].lastIndexOf},{lastIndexOf:Sp});var Mp=Va.map;ti({target:"Array",proto:!0,forced:!wh("map")},{map:function(t){return Mp(this,t,arguments.length>1?arguments[1]:void 0)}});var Tp=Ra,Pp=yh,Op=Array;ti({target:"Array",stat:!0,forced:i((function(){function t(){}return!(Op.of.call(t)instanceof t)}))},{of:function(){for(var t=0,e=arguments.length,r=new(Tp(this)?this:Op)(e);e>t;)Pp(r,t,arguments[t++]);return r.length=e,r}});var Ip=a,Cp=xa,Rp=TypeError,jp=Object.getOwnPropertyDescriptor,Lp=Ip&&!function(){if(void 0!==this)return!0;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(t){return t instanceof TypeError}}()?function(t,e){if(Cp(t)&&!jp(t,"length").writable)throw new Rp("Cannot set read only .length");return t.length=e}:function(t,e){return t.length=e},Dp=Dt,zp=hn,Fp=Lp,Np=dh;ti({target:"Array",proto:!0,arity:1,forced:i((function(){return 4294967297!==[].push.call({length:4294967296},1)}))||!function(){try{Object.defineProperty([],"length",{writable:!1}).push()}catch(t){return t instanceof TypeError}}()},{push:function(t){var e=Dp(this),r=zp(e),n=arguments.length;Np(r+n);for(var i=0;i<n;i++)e[r]=arguments[i],r++;return Fp(e,r),r}});var Bp=gt,Up=Dt,Yp=O,Gp=hn,Wp=TypeError,Hp="Reduce of empty array with no initial value",qp=function(t){return function(e,r,n,i){var a=Up(e),o=Yp(a),s=Gp(a);if(Bp(r),0===s&&n<2)throw new Wp(Hp);var c=t?s-1:0,u=t?-1:1;if(n<2)for(;;){if(c in o){i=o[c],c+=u;break}if(c+=u,t?c<0:s<=c)throw new Wp(Hp)}for(;t?c>=0:s>c;c+=u)c in o&&(i=r(i,o[c],c,a));return i}},Xp={left:qp(!1),right:qp(!0)},Vp="process"===E(r.process),Qp=Xp.left;ti({target:"Array",proto:!0,forced:!Vp&&$>79&&$<83||!Xh("reduce")},{reduce:function(t){var e=arguments.length;return Qp(this,t,e,e>1?arguments[1]:void 0)}});var Kp=Xp.right;ti({target:"Array",proto:!0,forced:!Vp&&$>79&&$<83||!Xh("reduceRight")},{reduceRight:function(t){return Kp(this,t,arguments.length,arguments.length>1?arguments[1]:void 0)}});var Jp=ti,Zp=xa,$p=w([].reverse),tg=[1,2];Jp({target:"Array",proto:!0,forced:String(tg)===String(tg.reverse())},{reverse:function(){return Zp(this)&&(this.length=this.length),$p(this)}});var eg=ti,rg=xa,ng=Ra,ig=U,ag=on,og=hn,sg=z,cg=yh,ug=$t,lg=Bi,hg=wh("slice"),fg=ug("species"),dg=Array,pg=Math.max;eg({target:"Array",proto:!0,forced:!hg},{slice:function(t,e){var r,n,i,a=sg(this),o=og(a),s=ag(t,o),c=ag(void 0===e?o:e,o);if(rg(a)&&(r=a.constructor,(ng(r)&&(r===dg||rg(r.prototype))||ig(r)&&null===(r=r[fg]))&&(r=void 0),r===dg||void 0===r))return lg(a,s,c);for(n=new(void 0===r?dg:r)(pg(c-s,0)),i=0;s<c;s++,i++)s in a&&cg(n,i,a[s]);return n.length=i,n}});var gg=Va.some;ti({target:"Array",proto:!0,forced:!Xh("some")},{some:function(t){return gg(this,t,arguments.length>1?arguments[1]:void 0)}});var vg=Bi,yg=Math.floor,mg=function(t,e){var r=t.length;if(r<8)for(var n,i,a=1;a<r;){for(i=a,n=t[a];i&&e(t[i-1],n)>0;)t[i]=t[--i];i!==a++&&(t[i]=n)}else for(var o=yg(r/2),s=mg(vg(t,0,o),e),c=mg(vg(t,o),e),u=s.length,l=c.length,h=0,f=0;h<u||f<l;)t[h+f]=h<u&&f<l?e(s[h],c[f])<=0?s[h++]:c[f++]:h<u?s[h++]:c[f++];return t},bg=mg,xg=q.match(/firefox\/(\d+)/i),wg=!!xg&&+xg[1],Ag=/MSIE|Trident/.test(q),_g=q.match(/AppleWebKit\/(\d+)\./),kg=!!_g&&+_g[1],Eg=ti,Sg=w,Mg=gt,Tg=Dt,Pg=hn,Og=Fh,Ig=fi,Cg=i,Rg=bg,jg=Xh,Lg=wg,Dg=Ag,zg=$,Fg=kg,Ng=[],Bg=Sg(Ng.sort),Ug=Sg(Ng.push),Yg=Cg((function(){Ng.sort(void 0)})),Gg=Cg((function(){Ng.sort(null)})),Wg=jg("sort"),Hg=!Cg((function(){if(zg)return zg<70;if(!(Lg&&Lg>3)){if(Dg)return!0;if(Fg)return Fg<603;var t,e,r,n,i="";for(t=65;t<76;t++){switch(e=String.fromCharCode(t),t){case 66:case 69:case 70:case 72:r=3;break;case 68:case 71:r=4;break;default:r=2}for(n=0;n<47;n++)Ng.push({k:e+n,v:r})}for(Ng.sort((function(t,e){return e.v-t.v})),n=0;n<Ng.length;n++)e=Ng[n].k.charAt(0),i.charAt(i.length-1)!==e&&(i+=e);return"DGBEFHACIJK"!==i}}));Eg({target:"Array",proto:!0,forced:Yg||!Gg||!Wg||!Hg},{sort:function(t){void 0!==t&&Mg(t);var e=Tg(this);if(Hg)return void 0===t?Bg(e):Bg(e,t);var r,n,i=[],a=Pg(e);for(n=0;n<a;n++)n in e&&Ug(i,e[n]);for(Rg(i,function(t){return function(e,r){return void 0===r?-1:void 0===e?1:void 0!==t?+t(e,r)||0:Ig(e)>Ig(r)?1:-1}}(t)),r=Pg(i),n=0;n<r;)e[n]=i[n++];for(;n<a;)Og(e,n++);return e}});var qg=W,Xg=Vi,Vg=a,Qg=$t("species"),Kg=function(t){var e=qg(t);Vg&&e&&!e[Qg]&&Xg(e,Qg,{configurable:!0,get:function(){return this}})};Kg("Array");var Jg=ti,Zg=Dt,$g=on,tv=en,ev=hn,rv=Lp,nv=dh,iv=Ba,av=yh,ov=Fh,sv=wh("splice"),cv=Math.max,uv=Math.min;Jg({target:"Array",proto:!0,forced:!sv},{splice:function(t,e){var r,n,i,a,o,s,c=Zg(this),u=ev(c),l=$g(t,u),h=arguments.length;for(0===h?r=n=0:1===h?(r=0,n=u-l):(r=h-2,n=uv(cv(tv(e),0),u-l)),nv(u+r-n),i=iv(c,n),a=0;a<n;a++)(o=l+a)in c&&av(i,a,c[o]);if(i.length=n,r<n){for(a=l;a<u-n;a++)s=a+r,(o=a+n)in c?c[s]=c[o]:ov(c,s);for(a=u;a>u-n+r;a--)ov(c,a-1)}else if(r>n)for(a=u-n;a>l;a--)s=a+r-1,(o=a+n-1)in c?c[s]=c[o]:ov(c,s);for(a=0;a<r;a++)c[a+l]=arguments[a+2];return rv(c,u-n+r),i}});var lv=hn,hv=function(t,e){for(var r=lv(t),n=new e(r),i=0;i<r;i++)n[i]=t[r-i-1];return n},fv=hv,dv=z,pv=sh,gv=Array;ti({target:"Array",proto:!0},{toReversed:function(){return fv(dv(this),gv)}}),pv("toReversed");var vv=hn,yv=function(t,e,r){for(var n=0,i=arguments.length>2?r:vv(e),a=new t(i);i>n;)a[n]=e[n++];return a},mv=r,bv=ti,xv=gt,wv=z,Av=yv,_v=function(t,e){var r=mv[t],n=r&&r.prototype;return n&&n[e]},kv=sh,Ev=Array,Sv=w(_v("Array","sort"));bv({target:"Array",proto:!0},{toSorted:function(t){void 0!==t&&xv(t);var e=wv(this),r=Av(Ev,e);return Sv(r,t)}}),kv("toSorted");var Mv=ti,Tv=sh,Pv=dh,Ov=hn,Iv=on,Cv=z,Rv=en,jv=Array,Lv=Math.max,Dv=Math.min;Mv({target:"Array",proto:!0},{toSpliced:function(t,e){var r,n,i,a,o=Cv(this),s=Ov(o),c=Iv(t,s),u=arguments.length,l=0;for(0===u?r=n=0:1===u?(r=0,n=s-c):(r=u-2,n=Dv(Lv(Rv(e),0),s-c)),i=Pv(s+r-n),a=jv(i);l<c;l++)a[l]=o[l];for(;l<c+r;l++)a[l]=arguments[l-c+2];for(;l<i;l++)a[l]=o[l+n-r];return a}}),Tv("toSpliced"),sh("flat"),sh("flatMap");var zv=Dt,Fv=hn,Nv=Lp,Bv=Fh,Uv=dh;ti({target:"Array",proto:!0,arity:1,forced:1!==[].unshift(0)||!function(){try{Object.defineProperty([],"length",{writable:!1}).unshift()}catch(t){return t instanceof TypeError}}()},{unshift:function(t){var e=zv(this),r=Fv(e),n=arguments.length;if(n){Uv(r+n);for(var i=r;i--;){var a=i+n;i in e?e[a]=e[i]:Bv(e,a)}for(var o=0;o<n;o++)e[o]=arguments[o]}return Nv(e,r+n)}});var Yv=hn,Gv=en,Wv=RangeError,Hv=function(t,e,r,n){var i=Yv(t),a=Gv(r),o=a<0?i+a:a;if(o>=i||o<0)throw new Wv("Incorrect index");for(var s=new e(i),c=0;c<i;c++)s[c]=c===o?n:t[c];return s},qv=Hv,Xv=z,Vv=Array;ti({target:"Array",proto:!0},{with:function(t,e){return qv(Xv(this),Vv,t,e)}});var Qv="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView,Kv=Qr,Jv=function(t,e,r){for(var n in e)Kv(t,n,e[n],r);return t},Zv=H,$v=TypeError,ty=function(t,e){if(Zv(e,t))return t;throw new $v("Incorrect invocation")},ey=en,ry=un,ny=RangeError,iy=function(t){if(void 0===t)return 0;var e=ey(t),r=ry(e);if(e!==r)throw new ny("Wrong length or index");return r},ay=Math.sign||function(t){var e=+t;return 0===e||e!=e?e:e<0?-1:1},oy=ay,sy=Math.abs,cy=2220446049250313e-31,uy=1/cy,ly=function(t,e,r,n){var i=+t,a=sy(i),o=oy(i);if(a<n)return o*function(t){return t+uy-uy}(a/n/e)*n*e;var s=(1+e/cy)*a,c=s-(s-a);return c>r||c!=c?o*(1/0):o*c},hy=Math.fround||function(t){return ly(t,1.1920928955078125e-7,34028234663852886e22,11754943508222875e-54)},fy=Array,dy=Math.abs,py=Math.pow,gy=Math.floor,vy=Math.log,yy=Math.LN2,my={pack:function(t,e,r){var n,i,a,o=fy(r),s=8*r-e-1,c=(1<<s)-1,u=c>>1,l=23===e?py(2,-24)-py(2,-77):0,h=t<0||0===t&&1/t<0?1:0,f=0;for((t=dy(t))!=t||t===1/0?(i=t!=t?1:0,n=c):(n=gy(vy(t)/yy),t*(a=py(2,-n))<1&&(n--,a*=2),(t+=n+u>=1?l/a:l*py(2,1-u))*a>=2&&(n++,a/=2),n+u>=c?(i=0,n=c):n+u>=1?(i=(t*a-1)*py(2,e),n+=u):(i=t*py(2,u-1)*py(2,e),n=0));e>=8;)o[f++]=255&i,i/=256,e-=8;for(n=n<<e|i,s+=e;s>0;)o[f++]=255&n,n/=256,s-=8;return o[--f]|=128*h,o},unpack:function(t,e){var r,n=t.length,i=8*n-e-1,a=(1<<i)-1,o=a>>1,s=i-7,c=n-1,u=t[c--],l=127&u;for(u>>=7;s>0;)l=256*l+t[c--],s-=8;for(r=l&(1<<-s)-1,l>>=-s,s+=e;s>0;)r=256*r+t[c--],s-=8;if(0===l)l=1-o;else{if(l===a)return r?NaN:u?-1/0:1/0;r+=py(2,e),l-=o}return(u?-1:1)*r*py(2,l-e)}},by=r,xy=w,wy=a,Ay=Qv,_y=He,ky=Vi,Ey=Jv,Sy=i,My=ty,Ty=en,Py=un,Oy=iy,Iy=hy,Cy=my,Ry=Qu,jy=Nc,Ly=Zh,Dy=Bi,zy=Hc,Fy=zn,Ny=ha,By=Mr,Uy=Ze.PROPER,Yy=Ze.CONFIGURABLE,Gy="ArrayBuffer",Wy="DataView",Hy="prototype",qy="Wrong index",Xy=By.getterFor(Gy),Vy=By.getterFor(Wy),Qy=By.set,Ky=by[Gy],Jy=Ky,Zy=Jy&&Jy[Hy],$y=by[Wy],tm=$y&&$y[Hy],em=Object.prototype,rm=by.Array,nm=by.RangeError,im=xy(Ly),am=xy([].reverse),om=Cy.pack,sm=Cy.unpack,cm=function(t){return[255&t]},um=function(t){return[255&t,t>>8&255]},lm=function(t){return[255&t,t>>8&255,t>>16&255,t>>24&255]},hm=function(t){return t[3]<<24|t[2]<<16|t[1]<<8|t[0]},fm=function(t){return om(Iy(t),23,4)},dm=function(t){return om(t,52,8)},pm=function(t,e,r){ky(t[Hy],e,{configurable:!0,get:function(){return r(this)[e]}})},gm=function(t,e,r,n){var i=Vy(t),a=Oy(r),o=!!n;if(a+e>i.byteLength)throw new nm(qy);var s=i.bytes,c=a+i.byteOffset,u=Dy(s,c,c+e);return o?u:am(u)},vm=function(t,e,r,n,i,a){var o=Vy(t),s=Oy(r),c=n(+i),u=!!a;if(s+e>o.byteLength)throw new nm(qy);for(var l=o.bytes,h=s+o.byteOffset,f=0;f<e;f++)l[h+f]=c[u?f:e-f-1]};if(Ay){var ym=Uy&&Ky.name!==Gy;Sy((function(){Ky(1)}))&&Sy((function(){new Ky(-1)}))&&!Sy((function(){return new Ky,new Ky(1.5),new Ky(NaN),1!==Ky.length||ym&&!Yy}))?ym&&Yy&&_y(Ky,"name",Gy):((Jy=function(t){return My(this,Zy),zy(new Ky(Oy(t)),this,Jy)})[Hy]=Zy,Zy.constructor=Jy,Fy(Jy,Ky)),jy&&Ry(tm)!==em&&jy(tm,em);var mm=new $y(new Jy(2)),bm=xy(tm.setInt8);mm.setInt8(0,2147483648),mm.setInt8(1,2147483649),!mm.getInt8(0)&&mm.getInt8(1)||Ey(tm,{setInt8:function(t,e){bm(this,t,e<<24>>24)},setUint8:function(t,e){bm(this,t,e<<24>>24)}},{unsafe:!0})}else Zy=(Jy=function(t){My(this,Zy);var e=Oy(t);Qy(this,{type:Gy,bytes:im(rm(e),0),byteLength:e}),wy||(this.byteLength=e,this.detached=!1)})[Hy],$y=function(t,e,r){My(this,tm),My(t,Zy);var n=Xy(t),i=n.byteLength,a=Ty(e);if(a<0||a>i)throw new nm("Wrong offset");if(a+(r=void 0===r?i-a:Py(r))>i)throw new nm("Wrong length");Qy(this,{type:Wy,buffer:t,byteLength:r,byteOffset:a,bytes:n.bytes}),wy||(this.buffer=t,this.byteLength=r,this.byteOffset=a)},tm=$y[Hy],wy&&(pm(Jy,"byteLength",Xy),pm($y,"buffer",Vy),pm($y,"byteLength",Vy),pm($y,"byteOffset",Vy)),Ey(tm,{getInt8:function(t){return gm(this,1,t)[0]<<24>>24},getUint8:function(t){return gm(this,1,t)[0]},getInt16:function(t){var e=gm(this,2,t,arguments.length>1&&arguments[1]);return(e[1]<<8|e[0])<<16>>16},getUint16:function(t){var e=gm(this,2,t,arguments.length>1&&arguments[1]);return e[1]<<8|e[0]},getInt32:function(t){return hm(gm(this,4,t,arguments.length>1&&arguments[1]))},getUint32:function(t){return hm(gm(this,4,t,arguments.length>1&&arguments[1]))>>>0},getFloat32:function(t){return sm(gm(this,4,t,arguments.length>1&&arguments[1]),23)},getFloat64:function(t){return sm(gm(this,8,t,arguments.length>1&&arguments[1]),52)},setInt8:function(t,e){vm(this,1,t,cm,e)},setUint8:function(t,e){vm(this,1,t,cm,e)},setInt16:function(t,e){vm(this,2,t,um,e,arguments.length>2&&arguments[2])},setUint16:function(t,e){vm(this,2,t,um,e,arguments.length>2&&arguments[2])},setInt32:function(t,e){vm(this,4,t,lm,e,arguments.length>2&&arguments[2])},setUint32:function(t,e){vm(this,4,t,lm,e,arguments.length>2&&arguments[2])},setFloat32:function(t,e){vm(this,4,t,fm,e,arguments.length>2&&arguments[2])},setFloat64:function(t,e){vm(this,8,t,dm,e,arguments.length>2&&arguments[2])}});Ny(Jy,Gy),Ny($y,Wy);var xm={ArrayBuffer:Jy,DataView:$y},wm=Kg,Am="ArrayBuffer",_m=xm[Am];ti({global:!0,constructor:!0,forced:r[Am]!==_m},{ArrayBuffer:_m}),wm(Am);var km,Em,Sm,Mm=Qv,Tm=a,Pm=r,Om=N,Im=U,Cm=Nt,Rm=ui,jm=ht,Lm=He,Dm=Qr,zm=Vi,Fm=H,Nm=Qu,Bm=Nc,Um=$t,Ym=Wt,Gm=Mr.enforce,Wm=Mr.get,Hm=Pm.Int8Array,qm=Hm&&Hm.prototype,Xm=Pm.Uint8ClampedArray,Vm=Xm&&Xm.prototype,Qm=Hm&&Nm(Hm),Km=qm&&Nm(qm),Jm=Object.prototype,Zm=Pm.TypeError,$m=Um("toStringTag"),tb=Ym("TYPED_ARRAY_TAG"),eb="TypedArrayConstructor",rb=Mm&&!!Bm&&"Opera"!==Rm(Pm.opera),nb=!1,ib={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},ab={BigInt64Array:8,BigUint64Array:8},ob=function(t){var e=Nm(t);if(Im(e)){var r=Wm(e);return r&&Cm(r,eb)?r[eb]:ob(e)}},sb=function(t){if(!Im(t))return!1;var e=Rm(t);return Cm(ib,e)||Cm(ab,e)};for(km in ib)(Sm=(Em=Pm[km])&&Em.prototype)?Gm(Sm)[eb]=Em:rb=!1;for(km in ab)(Sm=(Em=Pm[km])&&Em.prototype)&&(Gm(Sm)[eb]=Em);if((!rb||!Om(Qm)||Qm===Function.prototype)&&(Qm=function(){throw new Zm("Incorrect invocation")},rb))for(km in ib)Pm[km]&&Bm(Pm[km],Qm);if((!rb||!Km||Km===Jm)&&(Km=Qm.prototype,rb))for(km in ib)Pm[km]&&Bm(Pm[km].prototype,Km);if(rb&&Nm(Vm)!==Km&&Bm(Vm,Km),Tm&&!Cm(Km,$m))for(km in nb=!0,zm(Km,$m,{configurable:!0,get:function(){return Im(this)?this[tb]:void 0}}),ib)Pm[km]&&Lm(Pm[km],tb,km);var cb={NATIVE_ARRAY_BUFFER_VIEWS:rb,TYPED_ARRAY_TAG:nb&&tb,aTypedArray:function(t){if(sb(t))return t;throw new Zm("Target is not a typed array")},aTypedArrayConstructor:function(t){if(Om(t)&&(!Bm||Fm(Qm,t)))return t;throw new Zm(jm(t)+" is not a typed array constructor")},exportTypedArrayMethod:function(t,e,r,n){if(Tm){if(r)for(var i in ib){var a=Pm[i];if(a&&Cm(a.prototype,t))try{delete a.prototype[t]}catch(r){try{a.prototype[t]=e}catch(t){}}}Km[t]&&!r||Dm(Km,t,r?e:rb&&qm[t]||e,n)}},exportTypedArrayStaticMethod:function(t,e,r){var n,i;if(Tm){if(Bm){if(r)for(n in ib)if((i=Pm[n])&&Cm(i,t))try{delete i[t]}catch(t){}if(Qm[t]&&!r)return;try{return Dm(Qm,t,r?e:rb&&Qm[t]||e)}catch(t){}}for(n in ib)!(i=Pm[n])||i[t]&&!r||Dm(i,t,e)}},getTypedArrayConstructor:ob,isView:function(t){if(!Im(t))return!1;var e=Rm(t);return"DataView"===e||Cm(ib,e)||Cm(ab,e)},isTypedArray:sb,TypedArray:Qm,TypedArrayPrototype:Km};ti({target:"ArrayBuffer",stat:!0,forced:!cb.NATIVE_ARRAY_BUFFER_VIEWS},{isView:cb.isView});var ub=Ra,lb=ht,hb=TypeError,fb=function(t){if(ub(t))return t;throw new hb(lb(t)+" is not a constructor")},db=Ie,pb=fb,gb=I,vb=$t("species"),yb=function(t,e){var r,n=db(t).constructor;return void 0===n||gb(r=db(n)[vb])?e:pb(r)},mb=ti,bb=pa,xb=i,wb=Ie,Ab=on,_b=un,kb=yb,Eb=xm.ArrayBuffer,Sb=xm.DataView,Mb=Sb.prototype,Tb=bb(Eb.prototype.slice),Pb=bb(Mb.getUint8),Ob=bb(Mb.setUint8);mb({target:"ArrayBuffer",proto:!0,unsafe:!0,forced:xb((function(){return!new Eb(2).slice(1,void 0).byteLength}))},{slice:function(t,e){if(Tb&&void 0===e)return Tb(wb(this),t);for(var r=wb(this).byteLength,n=Ab(t,r),i=Ab(void 0===e?r:e,r),a=new(kb(this,Eb))(_b(i-n)),o=new Sb(this),s=new Sb(a),c=0;n<i;)Ob(s,c++,Pb(o,n++));return a}}),ti({global:!0,constructor:!0,forced:!Qv},{DataView:xm.DataView});var Ib=E,Cb=TypeError,Rb=Tc(ArrayBuffer.prototype,"byteLength","get")||function(t){if("ArrayBuffer"!==Ib(t))throw new Cb("ArrayBuffer expected");return t.byteLength},jb=Rb,Lb=w(ArrayBuffer.prototype.slice),Db=function(t){if(0!==jb(t))return!1;try{return Lb(t,0,0),!1}catch(t){return!0}},zb=a,Fb=Vi,Nb=Db,Bb=ArrayBuffer.prototype;zb&&!("detached"in Bb)&&Fb(Bb,"detached",{configurable:!0,get:function(){return Nb(this)}});var Ub,Yb,Gb,Wb,Hb=Vp,qb=function(t){try{if(Hb)return Function('return require("'+t+'")')()}catch(t){}},Xb="object"==typeof Deno&&Deno&&"object"==typeof Deno.version,Vb=!Xb&&!Vp&&"object"==typeof window&&"object"==typeof document,Qb=i,Kb=$,Jb=Vb,Zb=Xb,$b=Vp,tx=r.structuredClone,ex=!!tx&&!Qb((function(){if(Zb&&Kb>92||$b&&Kb>94||Jb&&Kb>97)return!1;var t=new ArrayBuffer(8),e=tx(t,{transfer:[t]});return 0!==t.byteLength||8!==e.byteLength})),rx=r,nx=qb,ix=ex,ax=rx.structuredClone,ox=rx.ArrayBuffer,sx=rx.MessageChannel,cx=!1;if(ix)cx=function(t){ax(t,{transfer:[t]})};else if(ox)try{sx||(Ub=nx("worker_threads"))&&(sx=Ub.MessageChannel),sx&&(Yb=new sx,Gb=new ox(2),Wb=function(t){Yb.port1.postMessage(null,[t])},2===Gb.byteLength&&(Wb(Gb),0===Gb.byteLength&&(cx=Wb)))}catch(t){}var ux=cx,lx=r,hx=w,fx=Tc,dx=iy,px=Db,gx=Rb,vx=ux,yx=ex,mx=lx.structuredClone,bx=lx.ArrayBuffer,xx=lx.DataView,wx=lx.TypeError,Ax=Math.min,_x=bx.prototype,kx=xx.prototype,Ex=hx(_x.slice),Sx=fx(_x,"resizable","get"),Mx=fx(_x,"maxByteLength","get"),Tx=hx(kx.getInt8),Px=hx(kx.setInt8),Ox=(yx||vx)&&function(t,e,r){var n,i=gx(t),a=void 0===e?i:dx(e),o=!Sx||!Sx(t);if(px(t))throw new wx("ArrayBuffer is detached");if(yx&&(t=mx(t,{transfer:[t]}),i===a&&(r||o)))return t;if(i>=a&&(!r||o))n=Ex(t,0,a);else{var s=r&&!o&&Mx?{maxByteLength:Mx(t)}:void 0;n=new bx(a,s);for(var c=new xx(t),u=new xx(n),l=Ax(a,i),h=0;h<l;h++)Px(u,h,Tx(c,h))}return yx||vx(t),n},Ix=Ox;Ix&&ti({target:"ArrayBuffer",proto:!0},{transfer:function(){return Ix(this,arguments.length?arguments[0]:void 0,!0)}});var Cx=Ox;Cx&&ti({target:"ArrayBuffer",proto:!0},{transferToFixedLength:function(){return Cx(this,arguments.length?arguments[0]:void 0,!1)}});var Rx=ti,jx=w,Lx=i((function(){return 120!==new Date(16e11).getYear()})),Dx=jx(Date.prototype.getFullYear);Rx({target:"Date",proto:!0,forced:Lx},{getYear:function(){return Dx(this)-1900}});var zx=ti,Fx=Date,Nx=w(Fx.prototype.getTime);zx({target:"Date",stat:!0},{now:function(){return Nx(new Fx)}});var Bx=ti,Ux=w,Yx=en,Gx=Date.prototype,Wx=Ux(Gx.getTime),Hx=Ux(Gx.setFullYear);Bx({target:"Date",proto:!0},{setYear:function(t){Wx(this);var e=Yx(t);return Hx(this,e>=0&&e<=99?e+1900:e)}}),ti({target:"Date",proto:!0},{toGMTString:Date.prototype.toUTCString});var qx=en,Xx=fi,Vx=j,Qx=RangeError,Kx=function(t){var e=Xx(Vx(this)),r="",n=qx(t);if(n<0||n===1/0)throw new Qx("Wrong number of repetitions");for(;n>0;(n>>>=1)&&(e+=e))1&n&&(r+=e);return r},Jx=w,Zx=un,$x=fi,tw=j,ew=Jx(Kx),rw=Jx("".slice),nw=Math.ceil,iw=function(t){return function(e,r,n){var i,a,o=$x(tw(e)),s=Zx(r),c=o.length,u=void 0===n?" ":$x(n);return s<=c||""===u?o:((a=ew(u,nw((i=s-c)/u.length))).length>i&&(a=rw(a,0,i)),t?o+a:a+o)}},aw={start:iw(!1),end:iw(!0)},ow=w,sw=i,cw=aw.start,uw=RangeError,lw=isFinite,hw=Math.abs,fw=Date.prototype,dw=fw.toISOString,pw=ow(fw.getTime),gw=ow(fw.getUTCDate),vw=ow(fw.getUTCFullYear),yw=ow(fw.getUTCHours),mw=ow(fw.getUTCMilliseconds),bw=ow(fw.getUTCMinutes),xw=ow(fw.getUTCMonth),ww=ow(fw.getUTCSeconds),Aw=sw((function(){return"0385-07-25T07:06:39.999Z"!==dw.call(new Date(-50000000000001))}))||!sw((function(){dw.call(new Date(NaN))}))?function(){if(!lw(pw(this)))throw new uw("Invalid time value");var t=this,e=vw(t),r=mw(t),n=e<0?"-":e>9999?"+":"";return n+cw(hw(e),n?6:4,0)+"-"+cw(xw(t)+1,2,0)+"-"+cw(gw(t),2,0)+"T"+cw(yw(t),2,0)+":"+cw(bw(t),2,0)+":"+cw(ww(t),2,0)+"."+cw(r,3,0)+"Z"}:dw,_w=Aw;ti({target:"Date",proto:!0,forced:Date.prototype.toISOString!==_w},{toISOString:_w});var kw=Dt,Ew=se;ti({target:"Date",proto:!0,arity:1,forced:i((function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})}))},{toJSON:function(t){var e=kw(this),r=Ew(e,"number");return"number"!=typeof r||isFinite(r)?e.toISOString():null}});var Sw=Ie,Mw=_t,Tw=TypeError,Pw=Nt,Ow=Qr,Iw=function(t){if(Sw(this),"string"===t||"default"===t)t="string";else if("number"!==t)throw new Tw("Incorrect hint");return Mw(this,t)},Cw=$t("toPrimitive"),Rw=Date.prototype;Pw(Rw,Cw)||Ow(Rw,Cw,Iw);var jw=w,Lw=Qr,Dw=Date.prototype,zw="Invalid Date",Fw="toString",Nw=jw(Dw[Fw]),Bw=jw(Dw.getTime);String(new Date(NaN))!==zw&&Lw(Dw,Fw,(function(){var t=Bw(this);return t==t?Nw(this):zw}));var Uw=ti,Yw=w,Gw=fi,Ww=Yw("".charAt),Hw=Yw("".charCodeAt),qw=Yw(/./.exec),Xw=Yw(1..toString),Vw=Yw("".toUpperCase),Qw=/[\w*+\-./@]/,Kw=function(t,e){for(var r=Xw(t,16);r.length<e;)r="0"+r;return r};Uw({global:!0},{escape:function(t){for(var e,r,n=Gw(t),i="",a=n.length,o=0;o<a;)e=Ww(n,o++),qw(Qw,e)?i+=e:i+=(r=Hw(e,0))<256?"%"+Kw(r,2):"%u"+Vw(Kw(r,4));return i}});var Jw=w,Zw=gt,$w=U,tA=Nt,eA=Bi,rA=o,nA=Function,iA=Jw([].concat),aA=Jw([].join),oA={},sA=rA?nA.bind:function(t){var e=Zw(this),r=e.prototype,n=eA(arguments,1),i=function(){var r=iA(n,eA(arguments));return this instanceof i?function(t,e,r){if(!tA(oA,e)){for(var n=[],i=0;i<e;i++)n[i]="a["+i+"]";oA[e]=nA("C,a","return new C("+aA(n,",")+")")}return oA[e](t,r)}(e,r.length,r):e.apply(t,r)};return $w(r)&&(i.prototype=r),i},cA=sA;ti({target:"Function",proto:!0,forced:Function.bind!==cA},{bind:cA});var uA=N,lA=U,hA=Se,fA=H,dA=$t,pA=qe.exports,gA=dA("hasInstance"),vA=Function.prototype;gA in vA||hA.f(vA,gA,{value:pA((function(t){if(!uA(this)||!lA(t))return!1;var e=this.prototype;return lA(e)?fA(e,t):t instanceof this}),gA)});var yA=a,mA=Ze.EXISTS,bA=w,xA=Vi,wA=Function.prototype,AA=bA(wA.toString),_A=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,kA=bA(_A.exec);yA&&!mA&&xA(wA,"name",{configurable:!0,get:function(){try{return kA(_A,AA(this))[1]}catch(t){return""}}});var EA=r;ti({global:!0,forced:EA.globalThis!==EA},{globalThis:EA}),ha(r.JSON,"JSON",!0);var SA={exports:{}},MA=i((function(){if("function"==typeof ArrayBuffer){var t=new ArrayBuffer(8);Object.isExtensible(t)&&Object.defineProperty(t,"a",{value:8})}})),TA=i,PA=U,OA=E,IA=MA,CA=Object.isExtensible,RA=TA((function(){CA(1)}))||IA?function(t){return!!PA(t)&&((!IA||"ArrayBuffer"!==OA(t))&&(!CA||CA(t)))}:CA,jA=!i((function(){return Object.isExtensible(Object.preventExtensions({}))})),LA=ti,DA=w,zA=dr,FA=U,NA=Nt,BA=Se.f,UA=Kr,YA=Ni,GA=RA,WA=jA,HA=!1,qA=Wt("meta"),XA=0,VA=function(t){BA(t,qA,{value:{objectID:"O"+XA++,weakData:{}}})},QA=SA.exports={enable:function(){QA.enable=function(){},HA=!0;var t=UA.f,e=DA([].splice),r={};r[qA]=1,t(r).length&&(UA.f=function(r){for(var n=t(r),i=0,a=n.length;i<a;i++)if(n[i]===qA){e(n,i,1);break}return n},LA({target:"Object",stat:!0,forced:!0},{getOwnPropertyNames:YA.f}))},fastKey:function(t,e){if(!FA(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!NA(t,qA)){if(!GA(t))return"F";if(!e)return"E";VA(t)}return t[qA].objectID},getWeakData:function(t,e){if(!NA(t,qA)){if(!GA(t))return!0;if(!e)return!1;VA(t)}return t[qA].weakData},onFreeze:function(t){return WA&&HA&&GA(t)&&!NA(t,qA)&&VA(t),t}};zA[qA]=!0;var KA=ti,JA=r,ZA=w,$A=qn,t_=Qr,e_=SA.exports,r_=Il,n_=ty,i_=N,a_=I,o_=U,s_=i,c_=id,u_=ha,l_=Hc,h_=function(t,e,r){var n=-1!==t.indexOf("Map"),i=-1!==t.indexOf("Weak"),a=n?"set":"add",o=JA[t],s=o&&o.prototype,c=o,u={},l=function(t){var e=ZA(s[t]);t_(s,t,"add"===t?function(t){return e(this,0===t?0:t),this}:"delete"===t?function(t){return!(i&&!o_(t))&&e(this,0===t?0:t)}:"get"===t?function(t){return i&&!o_(t)?void 0:e(this,0===t?0:t)}:"has"===t?function(t){return!(i&&!o_(t))&&e(this,0===t?0:t)}:function(t,r){return e(this,0===t?0:t,r),this})};if($A(t,!i_(o)||!(i||s.forEach&&!s_((function(){(new o).entries().next()})))))c=r.getConstructor(e,t,n,a),e_.enable();else if($A(t,!0)){var h=new c,f=h[a](i?{}:-0,1)!==h,d=s_((function(){h.has(1)})),p=c_((function(t){new o(t)})),g=!i&&s_((function(){for(var t=new o,e=5;e--;)t[a](e,e);return!t.has(-0)}));p||((c=e((function(t,e){n_(t,s);var r=l_(new o,t,c);return a_(e)||r_(e,r[a],{that:r,AS_ENTRIES:n}),r}))).prototype=s,s.constructor=c),(d||g)&&(l("delete"),l("has"),n&&l("get")),(g||f)&&l(a),i&&s.clear&&delete s.clear}return u[t]=c,KA({global:!0,constructor:!0,forced:c!==o},u),u_(c,t),i||r.setStrong(c,t,n),c},f_=Fi,d_=Vi,p_=Jv,g_=ma,v_=ty,y_=I,m_=Il,b_=Jd,x_=Zd,w_=Kg,A_=a,__=SA.exports.fastKey,k_=Mr.set,E_=Mr.getterFor,S_={getConstructor:function(t,e,r,n){var i=t((function(t,i){v_(t,a),k_(t,{type:e,index:f_(null),first:void 0,last:void 0,size:0}),A_||(t.size=0),y_(i)||m_(i,t[n],{that:t,AS_ENTRIES:r})})),a=i.prototype,o=E_(e),s=function(t,e,r){var n,i,a=o(t),s=c(t,e);return s?s.value=r:(a.last=s={index:i=__(e,!0),key:e,value:r,previous:n=a.last,next:void 0,removed:!1},a.first||(a.first=s),n&&(n.next=s),A_?a.size++:t.size++,"F"!==i&&(a.index[i]=s)),t},c=function(t,e){var r,n=o(t),i=__(e);if("F"!==i)return n.index[i];for(r=n.first;r;r=r.next)if(r.key===e)return r};return p_(a,{clear:function(){for(var t=o(this),e=t.first;e;)e.removed=!0,e.previous&&(e.previous=e.previous.next=void 0),e=e.next;t.first=t.last=void 0,t.index=f_(null),A_?t.size=0:this.size=0},delete:function(t){var e=this,r=o(e),n=c(e,t);if(n){var i=n.next,a=n.previous;delete r.index[n.index],n.removed=!0,a&&(a.next=i),i&&(i.previous=a),r.first===n&&(r.first=i),r.last===n&&(r.last=a),A_?r.size--:e.size--}return!!n},forEach:function(t){for(var e,r=o(this),n=g_(t,arguments.length>1?arguments[1]:void 0);e=e?e.next:r.first;)for(n(e.value,e.key,this);e&&e.removed;)e=e.previous},has:function(t){return!!c(this,t)}}),p_(a,r?{get:function(t){var e=c(this,t);return e&&e.value},set:function(t,e){return s(this,0===t?0:t,e)}}:{add:function(t){return s(this,t=0===t?0:t,t)}}),A_&&d_(a,"size",{configurable:!0,get:function(){return o(this).size}}),i},setStrong:function(t,e,r){var n=e+" Iterator",i=E_(e),a=E_(n);b_(t,e,(function(t,e){k_(this,{type:n,target:t,state:i(t),kind:e,last:void 0})}),(function(){for(var t=a(this),e=t.kind,r=t.last;r&&r.removed;)r=r.previous;return t.target&&(t.last=r=r?r.next:t.state.first)?x_("keys"===e?r.key:"values"===e?r.value:[r.key,r.value],!1):(t.target=void 0,x_(void 0,!0))}),r?"entries":"values",!r,!0),w_(e)}};h_("Map",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),S_);var M_=w,T_=Map.prototype,P_={Map:Map,set:M_(T_.set),get:M_(T_.get),has:M_(T_.has),remove:M_(T_.delete),proto:T_},O_=ti,I_=gt,C_=j,R_=Il,j_=i,L_=P_.Map,D_=P_.has,z_=P_.get,F_=P_.set,N_=w([].push);O_({target:"Map",stat:!0,forced:j_((function(){return 1!==L_.groupBy("ab",(function(t){return t})).get("a").length}))},{groupBy:function(t,e){C_(t),I_(e);var r=new L_,n=0;return R_(t,(function(t){var i=e(t,n++);D_(r,i)?N_(z_(r,i),t):F_(r,i,[t])})),r}});var B_=Math.log,U_=Math.log1p||function(t){var e=+t;return e>-1e-8&&e<1e-8?e-e*e/2:B_(1+e)},Y_=ti,G_=U_,W_=Math.acosh,H_=Math.log,q_=Math.sqrt,X_=Math.LN2;Y_({target:"Math",stat:!0,forced:!W_||710!==Math.floor(W_(Number.MAX_VALUE))||W_(1/0)!==1/0},{acosh:function(t){var e=+t;return e<1?NaN:e>94906265.62425156?H_(e)+X_:G_(e-1+q_(e-1)*q_(e+1))}});var V_=ti,Q_=Math.asinh,K_=Math.log,J_=Math.sqrt;V_({target:"Math",stat:!0,forced:!(Q_&&1/Q_(0)>0)},{asinh:function t(e){var r=+e;return isFinite(r)&&0!==r?r<0?-t(-r):K_(r+J_(r*r+1)):r}});var Z_=ti,$_=Math.atanh,tk=Math.log;Z_({target:"Math",stat:!0,forced:!($_&&1/$_(-0)<0)},{atanh:function(t){var e=+t;return 0===e?e:tk((1+e)/(1-e))/2}});var ek=ti,rk=ay,nk=Math.abs,ik=Math.pow;ek({target:"Math",stat:!0},{cbrt:function(t){var e=+t;return rk(e)*ik(nk(e),1/3)}});var ak=ti,ok=Math.floor,sk=Math.log,ck=Math.LOG2E;ak({target:"Math",stat:!0},{clz32:function(t){var e=t>>>0;return e?31-ok(sk(e+.5)*ck):32}});var uk=Math.expm1,lk=Math.exp,hk=!uk||uk(10)>22025.465794806718||uk(10)<22025.465794806718||-2e-17!==uk(-2e-17)?function(t){var e=+t;return 0===e?e:e>-1e-6&&e<1e-6?e+e*e/2:lk(e)-1}:uk,fk=ti,dk=hk,pk=Math.cosh,gk=Math.abs,vk=Math.E;fk({target:"Math",stat:!0,forced:!pk||pk(710)===1/0},{cosh:function(t){var e=dk(gk(t)-1)+1;return(e+1/(e*vk*vk))*(vk/2)}});var yk=hk;ti({target:"Math",stat:!0,forced:yk!==Math.expm1},{expm1:yk}),ti({target:"Math",stat:!0},{fround:hy});var mk=ti,bk=Math.hypot,xk=Math.abs,wk=Math.sqrt;mk({target:"Math",stat:!0,arity:2,forced:!!bk&&bk(1/0,NaN)!==1/0},{hypot:function(t,e){for(var r,n,i=0,a=0,o=arguments.length,s=0;a<o;)s<(r=xk(arguments[a++]))?(i=i*(n=s/r)*n+1,s=r):i+=r>0?(n=r/s)*n:r;return s===1/0?1/0:s*wk(i)}});var Ak=ti,_k=i,kk=Math.imul;Ak({target:"Math",stat:!0,forced:_k((function(){return-5!==kk(4294967295,5)||2!==kk.length}))},{imul:function(t,e){var r=65535,n=+t,i=+e,a=r&n,o=r&i;return 0|a*o+((r&n>>>16)*o+a*(r&i>>>16)<<16>>>0)}});var Ek=Math.log,Sk=Math.LOG10E,Mk=Math.log10||function(t){return Ek(t)*Sk};ti({target:"Math",stat:!0},{log10:Mk}),ti({target:"Math",stat:!0},{log1p:U_});var Tk=ti,Pk=Math.log,Ok=Math.LN2;Tk({target:"Math",stat:!0},{log2:function(t){return Pk(t)/Ok}}),ti({target:"Math",stat:!0},{sign:ay});var Ik=ti,Ck=i,Rk=hk,jk=Math.abs,Lk=Math.exp,Dk=Math.E;Ik({target:"Math",stat:!0,forced:Ck((function(){return-2e-17!==Math.sinh(-2e-17)}))},{sinh:function(t){var e=+t;return jk(e)<1?(Rk(e)-Rk(-e))/2:(Lk(e-1)-Lk(-e-1))*(Dk/2)}});var zk=ti,Fk=hk,Nk=Math.exp;zk({target:"Math",stat:!0},{tanh:function(t){var e=+t,r=Fk(e),n=Fk(-e);return r===1/0?1:n===1/0?-1:(r-n)/(Nk(e)+Nk(-e))}}),ha(Math,"Math",!0),ti({target:"Math",stat:!0},{trunc:$r});var Bk=w(1..valueOf),Uk="\t\n\v\f\r                 \u2028\u2029\ufeff",Yk=j,Gk=fi,Wk=Uk,Hk=w("".replace),qk=RegExp("^["+Wk+"]+"),Xk=RegExp("(^|[^"+Wk+"])["+Wk+"]+$"),Vk=function(t){return function(e){var r=Gk(Yk(e));return 1&t&&(r=Hk(r,qk,"")),2&t&&(r=Hk(r,Xk,"$1")),r}},Qk={start:Vk(1),end:Vk(2),trim:Vk(3)},Kk=ti,Jk=a,Zk=r,$k=Ji,tE=w,eE=qn,rE=Nt,nE=Hc,iE=H,aE=ut,oE=se,sE=i,cE=Kr.f,uE=n.f,lE=Se.f,hE=Bk,fE=Qk.trim,dE="Number",pE=Zk[dE];$k[dE];var gE=pE.prototype,vE=Zk.TypeError,yE=tE("".slice),mE=tE("".charCodeAt),bE=function(t){var e,r,n,i,a,o,s,c,u=oE(t,"number");if(aE(u))throw new vE("Cannot convert a Symbol value to a number");if("string"==typeof u&&u.length>2)if(u=fE(u),43===(e=mE(u,0))||45===e){if(88===(r=mE(u,2))||120===r)return NaN}else if(48===e){switch(mE(u,1)){case 66:case 98:n=2,i=49;break;case 79:case 111:n=8,i=55;break;default:return+u}for(o=(a=yE(u,2)).length,s=0;s<o;s++)if((c=mE(a,s))<48||c>i)return NaN;return parseInt(a,n)}return+u},xE=eE(dE,!pE(" 0o1")||!pE("0b1")||pE("+0x1")),wE=function(t){var e,r=arguments.length<1?0:pE(function(t){var e=oE(t,"number");return"bigint"==typeof e?e:bE(e)}(t));return iE(gE,e=this)&&sE((function(){hE(e)}))?nE(Object(r),this,wE):r};wE.prototype=gE,xE&&(gE.constructor=wE),Kk({global:!0,constructor:!0,wrap:!0,forced:xE},{Number:wE});xE&&function(t,e){for(var r,n=Jk?cE(e):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),i=0;n.length>i;i++)rE(e,r=n[i])&&!rE(t,r)&&lE(t,r,uE(e,r))}($k[dE],pE),ti({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{EPSILON:Math.pow(2,-52)});var AE=r.isFinite;ti({target:"Number",stat:!0},{isFinite:Number.isFinite||function(t){return"number"==typeof t&&AE(t)}});var _E=U,kE=Math.floor,EE=Number.isInteger||function(t){return!_E(t)&&isFinite(t)&&kE(t)===t};ti({target:"Number",stat:!0},{isInteger:EE}),ti({target:"Number",stat:!0},{isNaN:function(t){return t!=t}});var SE=ti,ME=EE,TE=Math.abs;SE({target:"Number",stat:!0},{isSafeInteger:function(t){return ME(t)&&TE(t)<=9007199254740991}}),ti({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MAX_SAFE_INTEGER:9007199254740991}),ti({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MIN_SAFE_INTEGER:-9007199254740991});var PE=r,OE=i,IE=fi,CE=Qk.trim,RE=Uk,jE=w("".charAt),LE=PE.parseFloat,DE=PE.Symbol,zE=DE&&DE.iterator,FE=1/LE(RE+"-0")!=-1/0||zE&&!OE((function(){LE(Object(zE))}))?function(t){var e=CE(IE(t)),r=LE(e);return 0===r&&"-"===jE(e,0)?-0:r}:LE,NE=FE;ti({target:"Number",stat:!0,forced:Number.parseFloat!==NE},{parseFloat:NE});var BE=r,UE=i,YE=w,GE=fi,WE=Qk.trim,HE=Uk,qE=BE.parseInt,XE=BE.Symbol,VE=XE&&XE.iterator,QE=/^[+-]?0x/i,KE=YE(QE.exec),JE=8!==qE(HE+"08")||22!==qE(HE+"0x16")||VE&&!UE((function(){qE(Object(VE))}))?function(t,e){var r=WE(GE(t));return qE(r,e>>>0||(KE(QE,r)?16:10))}:qE,ZE=JE;ti({target:"Number",stat:!0,forced:Number.parseInt!==ZE},{parseInt:ZE});var $E=ti,tS=w,eS=en,rS=Bk,nS=Kx,iS=Mk,aS=i,oS=RangeError,sS=String,cS=isFinite,uS=Math.abs,lS=Math.floor,hS=Math.pow,fS=Math.round,dS=tS(1..toExponential),pS=tS(nS),gS=tS("".slice),vS="-6.9000e-11"===dS(-69e-12,4)&&"1.25e+0"===dS(1.255,2)&&"1.235e+4"===dS(12345,3)&&"3e+1"===dS(25,0);$E({target:"Number",proto:!0,forced:!vS||!(aS((function(){dS(1,1/0)}))&&aS((function(){dS(1,-1/0)})))||!!aS((function(){dS(1/0,1/0),dS(NaN,1/0)}))},{toExponential:function(t){var e=rS(this);if(void 0===t)return dS(e);var r=eS(t);if(!cS(e))return String(e);if(r<0||r>20)throw new oS("Incorrect fraction digits");if(vS)return dS(e,r);var n="",i="",a=0,o="",s="";if(e<0&&(n="-",e=-e),0===e)a=0,i=pS("0",r+1);else{var c=iS(e);a=lS(c);var u=0,l=hS(10,a-r);2*e>=(2*(u=fS(e/l))+1)*l&&(u+=1),u>=hS(10,r+1)&&(u/=10,a+=1),i=sS(u)}return 0!==r&&(i=gS(i,0,1)+"."+gS(i,1)),0===a?(o="+",s="0"):(o=a>0?"+":"-",s=sS(uS(a))),n+(i+="e"+o+s)}});var yS=ti,mS=w,bS=en,xS=Bk,wS=Kx,AS=i,_S=RangeError,kS=String,ES=Math.floor,SS=mS(wS),MS=mS("".slice),TS=mS(1..toFixed),PS=function(t,e,r){return 0===e?r:e%2==1?PS(t,e-1,r*t):PS(t*t,e/2,r)},OS=function(t,e,r){for(var n=-1,i=r;++n<6;)i+=e*t[n],t[n]=i%1e7,i=ES(i/1e7)},IS=function(t,e){for(var r=6,n=0;--r>=0;)n+=t[r],t[r]=ES(n/e),n=n%e*1e7},CS=function(t){for(var e=6,r="";--e>=0;)if(""!==r||0===e||0!==t[e]){var n=kS(t[e]);r=""===r?n:r+SS("0",7-n.length)+n}return r};yS({target:"Number",proto:!0,forced:AS((function(){return"0.000"!==TS(8e-5,3)||"1"!==TS(.9,0)||"1.25"!==TS(1.255,2)||"1000000000000000128"!==TS(0xde0b6b3a7640080,0)}))||!AS((function(){TS({})}))},{toFixed:function(t){var e,r,n,i,a=xS(this),o=bS(t),s=[0,0,0,0,0,0],c="",u="0";if(o<0||o>20)throw new _S("Incorrect fraction digits");if(a!=a)return"NaN";if(a<=-1e21||a>=1e21)return kS(a);if(a<0&&(c="-",a=-a),a>1e-21)if(r=(e=function(t){for(var e=0,r=t;r>=4096;)e+=12,r/=4096;for(;r>=2;)e+=1,r/=2;return e}(a*PS(2,69,1))-69)<0?a*PS(2,-e,1):a/PS(2,e,1),r*=4503599627370496,(e=52-e)>0){for(OS(s,0,r),n=o;n>=7;)OS(s,1e7,0),n-=7;for(OS(s,PS(10,n,1),0),n=e-1;n>=23;)IS(s,1<<23),n-=23;IS(s,1<<n),OS(s,1,1),IS(s,2),u=CS(s)}else OS(s,0,r),OS(s,1<<-e,0),u=CS(s)+SS("0",o);return u=o>0?c+((i=u.length)<=o?"0."+SS("0",o-i)+u:MS(u,0,i-o)+"."+MS(u,i-o)):c+u}});var RS=ti,jS=i,LS=Bk,DS=w(1..toPrecision);RS({target:"Number",proto:!0,forced:jS((function(){return"1"!==DS(1,void 0)}))||!jS((function(){DS({})}))},{toPrecision:function(t){return void 0===t?DS(LS(this)):DS(LS(this),t)}});var zS=a,FS=w,NS=u,BS=i,US=vi,YS=Sn,GS=l,WS=Dt,HS=O,qS=Object.assign,XS=Object.defineProperty,VS=FS([].concat),QS=!qS||BS((function(){if(zS&&1!==qS({b:1},qS(XS({},"a",{enumerable:!0,get:function(){XS(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},r=Symbol("assign detection"),n="abcdefghijklmnopqrst";return t[r]=7,n.split("").forEach((function(t){e[t]=t})),7!==qS({},t)[r]||US(qS({},e)).join("")!==n}))?function(t,e){for(var r=WS(t),n=arguments.length,i=1,a=YS.f,o=GS.f;n>i;)for(var s,c=HS(arguments[i++]),u=a?VS(US(c),a(c)):US(c),l=u.length,h=0;l>h;)s=u[h++],zS&&!NS(o,c,s)||(r[s]=c[s]);return r}:qS,KS=QS;ti({target:"Object",stat:!0,arity:2,forced:Object.assign!==KS},{assign:KS}),ti({target:"Object",stat:!0,sham:!a},{create:Fi});var JS=r,ZS=kg,$S=!i((function(){if(!(ZS&&ZS<535)){var t=Math.random();__defineSetter__.call(null,t,(function(){})),delete JS[t]}})),tM=gt,eM=Dt,rM=Se;a&&ti({target:"Object",proto:!0,forced:$S},{__defineGetter__:function(t,e){rM.f(eM(this),t,{get:tM(e),enumerable:!0,configurable:!0})}});var nM=ti,iM=a,aM=di.f;nM({target:"Object",stat:!0,forced:Object.defineProperties!==aM,sham:!iM},{defineProperties:aM});var oM=ti,sM=a,cM=Se.f;oM({target:"Object",stat:!0,forced:Object.defineProperty!==cM,sham:!sM},{defineProperty:cM});var uM=gt,lM=Dt,hM=Se;a&&ti({target:"Object",proto:!0,forced:$S},{__defineSetter__:function(t,e){hM.f(lM(this),t,{set:uM(e),enumerable:!0,configurable:!0})}});var fM=a,dM=i,pM=w,gM=Qu,vM=vi,yM=z,mM=pM(l.f),bM=pM([].push),xM=fM&&dM((function(){var t=Object.create(null);return t[2]=2,!mM(t,2)})),wM=function(t){return function(e){for(var r,n=yM(e),i=vM(n),a=xM&&null===gM(n),o=i.length,s=0,c=[];o>s;)r=i[s++],fM&&!(a?r in n:mM(n,r))||bM(c,t?[r,n[r]]:n[r]);return c}},AM={entries:wM(!0),values:wM(!1)},_M=AM.entries;ti({target:"Object",stat:!0},{entries:function(t){return _M(t)}});var kM=ti,EM=jA,SM=i,MM=U,TM=SA.exports.onFreeze,PM=Object.freeze;kM({target:"Object",stat:!0,forced:SM((function(){PM(1)})),sham:!EM},{freeze:function(t){return PM&&MM(t)?PM(TM(t)):t}});var OM=Il,IM=yh;ti({target:"Object",stat:!0},{fromEntries:function(t){var e={};return OM(t,(function(t,r){IM(e,t,r)}),{AS_ENTRIES:!0}),e}});var CM=ti,RM=i,jM=z,LM=n.f,DM=a;CM({target:"Object",stat:!0,forced:!DM||RM((function(){LM(1)})),sham:!DM},{getOwnPropertyDescriptor:function(t,e){return LM(jM(t),e)}});var zM=Cn,FM=z,NM=n,BM=yh;ti({target:"Object",stat:!0,sham:!a},{getOwnPropertyDescriptors:function(t){for(var e,r,n=FM(t),i=NM.f,a=zM(n),o={},s=0;a.length>s;)void 0!==(r=i(n,e=a[s++]))&&BM(o,e,r);return o}});var UM=ti,YM=i,GM=Ni.f;UM({target:"Object",stat:!0,forced:YM((function(){return!Object.getOwnPropertyNames(1)}))},{getOwnPropertyNames:GM});var WM=Dt,HM=Qu,qM=Uu;ti({target:"Object",stat:!0,forced:i((function(){HM(1)})),sham:!qM},{getPrototypeOf:function(t){return HM(WM(t))}});var XM=ti,VM=W,QM=w,KM=gt,JM=j,ZM=le,$M=Il,tT=i,eT=Object.groupBy,rT=VM("Object","create"),nT=QM([].push);XM({target:"Object",stat:!0,forced:!eT||tT((function(){return 1!==eT("ab",(function(t){return t})).a.length}))},{groupBy:function(t,e){JM(t),KM(e);var r=rT(null),n=0;return $M(t,(function(t){var i=ZM(e(t,n++));i in r?nT(r[i],t):r[i]=[t]})),r}}),ti({target:"Object",stat:!0},{hasOwn:Nt});var iT=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e};ti({target:"Object",stat:!0},{is:iT});var aT=RA;ti({target:"Object",stat:!0,forced:Object.isExtensible!==aT},{isExtensible:aT});var oT=ti,sT=i,cT=U,uT=E,lT=MA,hT=Object.isFrozen;oT({target:"Object",stat:!0,forced:lT||sT((function(){hT(1)}))},{isFrozen:function(t){return!cT(t)||(!(!lT||"ArrayBuffer"!==uT(t))||!!hT&&hT(t))}});var fT=ti,dT=i,pT=U,gT=E,vT=MA,yT=Object.isSealed;fT({target:"Object",stat:!0,forced:vT||dT((function(){yT(1)}))},{isSealed:function(t){return!pT(t)||(!(!vT||"ArrayBuffer"!==gT(t))||!!yT&&yT(t))}});var mT=Dt,bT=vi;ti({target:"Object",stat:!0,forced:i((function(){bT(1)}))},{keys:function(t){return bT(mT(t))}});var xT=ti,wT=a,AT=$S,_T=Dt,kT=le,ET=Qu,ST=n.f;wT&&xT({target:"Object",proto:!0,forced:AT},{__lookupGetter__:function(t){var e,r=_T(this),n=kT(t);do{if(e=ST(r,n))return e.get}while(r=ET(r))}});var MT=ti,TT=a,PT=$S,OT=Dt,IT=le,CT=Qu,RT=n.f;TT&&MT({target:"Object",proto:!0,forced:PT},{__lookupSetter__:function(t){var e,r=OT(this),n=IT(t);do{if(e=RT(r,n))return e.set}while(r=CT(r))}});var jT=ti,LT=U,DT=SA.exports.onFreeze,zT=jA,FT=i,NT=Object.preventExtensions;jT({target:"Object",stat:!0,forced:FT((function(){NT(1)})),sham:!zT},{preventExtensions:function(t){return NT&&LT(t)?NT(DT(t)):t}});var BT=a,UT=Vi,YT=U,GT=Oc,WT=Dt,HT=j,qT=Object.getPrototypeOf,XT=Object.setPrototypeOf,VT=Object.prototype,QT="__proto__";if(BT&&qT&&XT&&!(QT in VT))try{UT(VT,QT,{configurable:!0,get:function(){return qT(WT(this))},set:function(t){var e=HT(this);GT(t)&&YT(e)&&XT(e,t)}})}catch(t){}var KT=ti,JT=U,ZT=SA.exports.onFreeze,$T=jA,tP=i,eP=Object.seal;KT({target:"Object",stat:!0,forced:tP((function(){eP(1)})),sham:!$T},{seal:function(t){return eP&&JT(t)?eP(ZT(t)):t}}),ti({target:"Object",stat:!0},{setPrototypeOf:Nc});var rP=ui,nP=ri?{}.toString:function(){return"[object "+rP(this)+"]"};ri||Qr(Object.prototype,"toString",nP,{unsafe:!0});var iP=AM.values;ti({target:"Object",stat:!0},{values:function(t){return iP(t)}});ti({global:!0,forced:parseFloat!==FE},{parseFloat:FE});ti({global:!0,forced:parseInt!==JE},{parseInt:JE});var aP,oP,sP,cP,uP=TypeError,lP=function(t,e){if(t<e)throw new uP("Not enough arguments");return t},hP=/(?:ipad|iphone|ipod).*applewebkit/i.test(q),fP=r,dP=Es,pP=ma,gP=N,vP=Nt,yP=i,mP=ki,bP=Bi,xP=pe,wP=lP,AP=hP,_P=Vp,kP=fP.setImmediate,EP=fP.clearImmediate,SP=fP.process,MP=fP.Dispatch,TP=fP.Function,PP=fP.MessageChannel,OP=fP.String,IP=0,CP={},RP="onreadystatechange";yP((function(){aP=fP.location}));var jP=function(t){if(vP(CP,t)){var e=CP[t];delete CP[t],e()}},LP=function(t){return function(){jP(t)}},DP=function(t){jP(t.data)},zP=function(t){fP.postMessage(OP(t),aP.protocol+"//"+aP.host)};kP&&EP||(kP=function(t){wP(arguments.length,1);var e=gP(t)?t:TP(t),r=bP(arguments,1);return CP[++IP]=function(){dP(e,void 0,r)},oP(IP),IP},EP=function(t){delete CP[t]},_P?oP=function(t){SP.nextTick(LP(t))}:MP&&MP.now?oP=function(t){MP.now(LP(t))}:PP&&!AP?(cP=(sP=new PP).port2,sP.port1.onmessage=DP,oP=pP(cP.postMessage,cP)):fP.addEventListener&&gP(fP.postMessage)&&!fP.importScripts&&aP&&"file:"!==aP.protocol&&!yP(zP)?(oP=zP,fP.addEventListener("message",DP,!1)):oP=RP in xP("script")?function(t){mP.appendChild(xP("script"))[RP]=function(){mP.removeChild(this),jP(t)}}:function(t){setTimeout(LP(t),0)});var FP={set:kP,clear:EP},NP=r,BP=a,UP=Object.getOwnPropertyDescriptor,YP=function(t){if(!BP)return NP[t];var e=UP(NP,t);return e&&e.value},GP=function(){this.head=null,this.tail=null};GP.prototype={add:function(t){var e={item:t,next:null},r=this.tail;r?r.next=e:this.head=e,this.tail=e},get:function(){var t=this.head;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}};var WP,HP,qP,XP,VP,QP=GP,KP=/ipad|iphone|ipod/i.test(q)&&"undefined"!=typeof Pebble,JP=/web0s(?!.*chrome)/i.test(q),ZP=r,$P=YP,tO=ma,eO=FP.set,rO=QP,nO=hP,iO=KP,aO=JP,oO=Vp,sO=ZP.MutationObserver||ZP.WebKitMutationObserver,cO=ZP.document,uO=ZP.process,lO=ZP.Promise,hO=$P("queueMicrotask");if(!hO){var fO=new rO,dO=function(){var t,e;for(oO&&(t=uO.domain)&&t.exit();e=fO.get();)try{e()}catch(t){throw fO.head&&WP(),t}t&&t.enter()};nO||oO||aO||!sO||!cO?!iO&&lO&&lO.resolve?((XP=lO.resolve(void 0)).constructor=lO,VP=tO(XP.then,XP),WP=function(){VP(dO)}):oO?WP=function(){uO.nextTick(dO)}:(eO=tO(eO,ZP),WP=function(){eO(dO)}):(HP=!0,qP=cO.createTextNode(""),new sO(dO).observe(qP,{characterData:!0}),WP=function(){qP.data=HP=!HP}),hO=function(t){fO.head||WP(),fO.add(t)}}var pO=hO,gO=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}},vO=r.Promise,yO=r,mO=vO,bO=N,xO=qn,wO=or,AO=$t,_O=Vb,kO=Xb,EO=$;mO&&mO.prototype;var SO=AO("species"),MO=!1,TO=bO(yO.PromiseRejectionEvent),PO=xO("Promise",(function(){var t=wO(mO),e=t!==String(mO);if(!e&&66===EO)return!0;if(!EO||EO<51||!/native code/.test(t)){var r=new mO((function(t){t(1)})),n=function(t){t((function(){}),(function(){}))};if((r.constructor={})[SO]=n,!(MO=r.then((function(){}))instanceof n))return!0}return!e&&(_O||kO)&&!TO})),OO={CONSTRUCTOR:PO,REJECTION_EVENT:TO,SUBCLASSING:MO},IO={},CO=gt,RO=TypeError,jO=function(t){var e,r;this.promise=new t((function(t,n){if(void 0!==e||void 0!==r)throw new RO("Bad Promise constructor");e=t,r=n})),this.resolve=CO(e),this.reject=CO(r)};IO.f=function(t){return new jO(t)};var LO,DO,zO,FO=ti,NO=Vp,BO=r,UO=u,YO=Qr,GO=Nc,WO=ha,HO=Kg,qO=gt,XO=N,VO=U,QO=ty,KO=yb,JO=FP.set,ZO=pO,$O=function(t,e){try{1===arguments.length?console.error(t):console.error(t,e)}catch(t){}},tI=gO,eI=QP,rI=Mr,nI=vO,iI=IO,aI="Promise",oI=OO.CONSTRUCTOR,sI=OO.REJECTION_EVENT,cI=OO.SUBCLASSING,uI=rI.getterFor(aI),lI=rI.set,hI=nI&&nI.prototype,fI=nI,dI=hI,pI=BO.TypeError,gI=BO.document,vI=BO.process,yI=iI.f,mI=yI,bI=!!(gI&&gI.createEvent&&BO.dispatchEvent),xI="unhandledrejection",wI=function(t){var e;return!(!VO(t)||!XO(e=t.then))&&e},AI=function(t,e){var r,n,i,a=e.value,o=1===e.state,s=o?t.ok:t.fail,c=t.resolve,u=t.reject,l=t.domain;try{s?(o||(2===e.rejection&&MI(e),e.rejection=1),!0===s?r=a:(l&&l.enter(),r=s(a),l&&(l.exit(),i=!0)),r===t.promise?u(new pI("Promise-chain cycle")):(n=wI(r))?UO(n,r,c,u):c(r)):u(a)}catch(t){l&&!i&&l.exit(),u(t)}},_I=function(t,e){t.notified||(t.notified=!0,ZO((function(){for(var r,n=t.reactions;r=n.get();)AI(r,t);t.notified=!1,e&&!t.rejection&&EI(t)})))},kI=function(t,e,r){var n,i;bI?((n=gI.createEvent("Event")).promise=e,n.reason=r,n.initEvent(t,!1,!0),BO.dispatchEvent(n)):n={promise:e,reason:r},!sI&&(i=BO["on"+t])?i(n):t===xI&&$O("Unhandled promise rejection",r)},EI=function(t){UO(JO,BO,(function(){var e,r=t.facade,n=t.value;if(SI(t)&&(e=tI((function(){NO?vI.emit("unhandledRejection",n,r):kI(xI,r,n)})),t.rejection=NO||SI(t)?2:1,e.error))throw e.value}))},SI=function(t){return 1!==t.rejection&&!t.parent},MI=function(t){UO(JO,BO,(function(){var e=t.facade;NO?vI.emit("rejectionHandled",e):kI("rejectionhandled",e,t.value)}))},TI=function(t,e,r){return function(n){t(e,n,r)}},PI=function(t,e,r){t.done||(t.done=!0,r&&(t=r),t.value=e,t.state=2,_I(t,!0))},OI=function(t,e,r){if(!t.done){t.done=!0,r&&(t=r);try{if(t.facade===e)throw new pI("Promise can't be resolved itself");var n=wI(e);n?ZO((function(){var r={done:!1};try{UO(n,e,TI(OI,r,t),TI(PI,r,t))}catch(e){PI(r,e,t)}})):(t.value=e,t.state=1,_I(t,!1))}catch(e){PI({done:!1},e,t)}}};if(oI&&(dI=(fI=function(t){QO(this,dI),qO(t),UO(LO,this);var e=uI(this);try{t(TI(OI,e),TI(PI,e))}catch(t){PI(e,t)}}).prototype,(LO=function(t){lI(this,{type:aI,done:!1,notified:!1,parent:!1,reactions:new eI,rejection:!1,state:0,value:void 0})}).prototype=YO(dI,"then",(function(t,e){var r=uI(this),n=yI(KO(this,fI));return r.parent=!0,n.ok=!XO(t)||t,n.fail=XO(e)&&e,n.domain=NO?vI.domain:void 0,0===r.state?r.reactions.add(n):ZO((function(){AI(n,r)})),n.promise})),DO=function(){var t=new LO,e=uI(t);this.promise=t,this.resolve=TI(OI,e),this.reject=TI(PI,e)},iI.f=yI=function(t){return t===fI||undefined===t?new DO(t):mI(t)},XO(nI)&&hI!==Object.prototype)){zO=hI.then,cI||YO(hI,"then",(function(t,e){var r=this;return new fI((function(t,e){UO(zO,r,t,e)})).then(t,e)}),{unsafe:!0});try{delete hI.constructor}catch(t){}GO&&GO(hI,dI)}FO({global:!0,constructor:!0,wrap:!0,forced:oI},{Promise:fI}),WO(fI,aI,!1),HO(aI);var II=vO,CI=OO.CONSTRUCTOR||!id((function(t){II.all(t).then(void 0,(function(){}))})),RI=u,jI=gt,LI=IO,DI=gO,zI=Il;ti({target:"Promise",stat:!0,forced:CI},{all:function(t){var e=this,r=LI.f(e),n=r.resolve,i=r.reject,a=DI((function(){var r=jI(e.resolve),a=[],o=0,s=1;zI(t,(function(t){var c=o++,u=!1;s++,RI(r,e,t).then((function(t){u||(u=!0,a[c]=t,--s||n(a))}),i)})),--s||n(a)}));return a.error&&i(a.value),r.promise}});var FI=ti,NI=OO.CONSTRUCTOR,BI=vO,UI=W,YI=N,GI=Qr,WI=BI&&BI.prototype;if(FI({target:"Promise",proto:!0,forced:NI,real:!0},{catch:function(t){return this.then(void 0,t)}}),YI(BI)){var HI=UI("Promise").prototype.catch;WI.catch!==HI&&GI(WI,"catch",HI,{unsafe:!0})}var qI=u,XI=gt,VI=IO,QI=gO,KI=Il;ti({target:"Promise",stat:!0,forced:CI},{race:function(t){var e=this,r=VI.f(e),n=r.reject,i=QI((function(){var i=XI(e.resolve);KI(t,(function(t){qI(i,e,t).then(r.resolve,n)}))}));return i.error&&n(i.value),r.promise}});var JI=IO;ti({target:"Promise",stat:!0,forced:OO.CONSTRUCTOR},{reject:function(t){var e=JI.f(this);return(0,e.reject)(t),e.promise}});var ZI=Ie,$I=U,tC=IO,eC=function(t,e){if(ZI(t),$I(e)&&e.constructor===t)return e;var r=tC.f(t);return(0,r.resolve)(e),r.promise},rC=ti,nC=OO.CONSTRUCTOR,iC=eC;W("Promise"),rC({target:"Promise",stat:!0,forced:nC},{resolve:function(t){return iC(this,t)}});var aC=u,oC=gt,sC=IO,cC=gO,uC=Il;ti({target:"Promise",stat:!0,forced:CI},{allSettled:function(t){var e=this,r=sC.f(e),n=r.resolve,i=r.reject,a=cC((function(){var r=oC(e.resolve),i=[],a=0,o=1;uC(t,(function(t){var s=a++,c=!1;o++,aC(r,e,t).then((function(t){c||(c=!0,i[s]={status:"fulfilled",value:t},--o||n(i))}),(function(t){c||(c=!0,i[s]={status:"rejected",reason:t},--o||n(i))}))})),--o||n(i)}));return a.error&&i(a.value),r.promise}});var lC=u,hC=gt,fC=W,dC=IO,pC=gO,gC=Il,vC="No one promise resolved";ti({target:"Promise",stat:!0,forced:CI},{any:function(t){var e=this,r=fC("AggregateError"),n=dC.f(e),i=n.resolve,a=n.reject,o=pC((function(){var n=hC(e.resolve),o=[],s=0,c=1,u=!1;gC(t,(function(t){var l=s++,h=!1;c++,lC(n,e,t).then((function(t){h||u||(u=!0,i(t))}),(function(t){h||u||(h=!0,o[l]=t,--c||a(new r(o,vC)))}))})),--c||a(new r(o,vC))}));return o.error&&a(o.value),n.promise}});var yC=ti,mC=vO,bC=i,xC=W,wC=N,AC=yb,_C=eC,kC=Qr,EC=mC&&mC.prototype;if(yC({target:"Promise",proto:!0,real:!0,forced:!!mC&&bC((function(){EC.finally.call({then:function(){}},(function(){}))}))},{finally:function(t){var e=AC(this,xC("Promise")),r=wC(t);return this.then(r?function(r){return _C(e,t()).then((function(){return r}))}:t,r?function(r){return _C(e,t()).then((function(){throw r}))}:t)}}),wC(mC)){var SC=xC("Promise").prototype.finally;EC.finally!==SC&&kC(EC,"finally",SC,{unsafe:!0})}var MC=IO;ti({target:"Promise",stat:!0},{withResolvers:function(){var t=MC.f(this);return{promise:t.promise,resolve:t.resolve,reject:t.reject}}});var TC=Es,PC=gt,OC=Ie;ti({target:"Reflect",stat:!0,forced:!i((function(){Reflect.apply((function(){}))}))},{apply:function(t,e,r){return TC(PC(t),e,OC(r))}});var IC=ti,CC=Es,RC=sA,jC=fb,LC=Ie,DC=U,zC=Fi,FC=i,NC=W("Reflect","construct"),BC=Object.prototype,UC=[].push,YC=FC((function(){function t(){}return!(NC((function(){}),[],t)instanceof t)})),GC=!FC((function(){NC((function(){}))})),WC=YC||GC;IC({target:"Reflect",stat:!0,forced:WC,sham:WC},{construct:function(t,e){jC(t),LC(e);var r=arguments.length<3?t:jC(arguments[2]);if(GC&&!YC)return NC(t,e,r);if(t===r){switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3])}var n=[null];return CC(UC,n,e),new(CC(RC,t,n))}var i=r.prototype,a=zC(DC(i)?i:BC),o=CC(t,a,e);return DC(o)?o:a}});var HC=a,qC=Ie,XC=le,VC=Se;ti({target:"Reflect",stat:!0,forced:i((function(){Reflect.defineProperty(VC.f({},1,{value:1}),1,{value:2})})),sham:!HC},{defineProperty:function(t,e,r){qC(t);var n=XC(e);qC(r);try{return VC.f(t,n,r),!0}catch(t){return!1}}});var QC=ti,KC=Ie,JC=n.f;QC({target:"Reflect",stat:!0},{deleteProperty:function(t,e){var r=JC(KC(t),e);return!(r&&!r.configurable)&&delete t[e]}});var ZC=Nt,$C=function(t){return void 0!==t&&(ZC(t,"value")||ZC(t,"writable"))},tR=u,eR=U,rR=Ie,nR=$C,iR=n,aR=Qu;ti({target:"Reflect",stat:!0},{get:function t(e,r){var n,i,a=arguments.length<3?e:arguments[2];return rR(e)===a?e[r]:(n=iR.f(e,r))?nR(n)?n.value:void 0===n.get?void 0:tR(n.get,a):eR(i=aR(e))?t(i,r,a):void 0}});var oR=Ie,sR=n;ti({target:"Reflect",stat:!0,sham:!a},{getOwnPropertyDescriptor:function(t,e){return sR.f(oR(t),e)}});var cR=Ie,uR=Qu;ti({target:"Reflect",stat:!0,sham:!Uu},{getPrototypeOf:function(t){return uR(cR(t))}}),ti({target:"Reflect",stat:!0},{has:function(t,e){return e in t}});var lR=Ie,hR=RA;ti({target:"Reflect",stat:!0},{isExtensible:function(t){return lR(t),hR(t)}}),ti({target:"Reflect",stat:!0},{ownKeys:Cn});var fR=W,dR=Ie;ti({target:"Reflect",stat:!0,sham:!jA},{preventExtensions:function(t){dR(t);try{var e=fR("Object","preventExtensions");return e&&e(t),!0}catch(t){return!1}}});var pR=ti,gR=u,vR=Ie,yR=U,mR=$C,bR=Se,xR=n,wR=Qu,AR=v;var _R=i((function(){var t=function(){},e=bR.f(new t,"a",{configurable:!0});return!1!==Reflect.set(t.prototype,"a",1,e)}));pR({target:"Reflect",stat:!0,forced:_R},{set:function t(e,r,n){var i,a,o,s=arguments.length<4?e:arguments[3],c=xR.f(vR(e),r);if(!c){if(yR(a=wR(e)))return t(a,r,n,s);c=AR(0)}if(mR(c)){if(!1===c.writable||!yR(s))return!1;if(i=xR.f(s,r)){if(i.get||i.set||!1===i.writable)return!1;i.value=n,bR.f(s,r,i)}else bR.f(s,r,AR(0,n))}else{if(void 0===(o=c.set))return!1;gR(o,s,n)}return!0}});var kR=Ie,ER=jc,SR=Nc;SR&&ti({target:"Reflect",stat:!0},{setPrototypeOf:function(t,e){kR(t),ER(e);try{return SR(t,e),!0}catch(t){return!1}}});var MR=r,TR=ha;ti({global:!0},{Reflect:{}}),TR(MR.Reflect,"Reflect",!0);var PR=U,OR=E,IR=$t("match"),CR=function(t){var e;return PR(t)&&(void 0!==(e=t[IR])?!!e:"RegExp"===OR(t))},RR=Ie,jR=function(){var t=RR(this),e="";return t.hasIndices&&(e+="d"),t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.unicodeSets&&(e+="v"),t.sticky&&(e+="y"),e},LR=u,DR=Nt,zR=H,FR=jR,NR=RegExp.prototype,BR=function(t){var e=t.flags;return void 0!==e||"flags"in NR||DR(t,"flags")||!zR(NR,t)?e:LR(FR,t)},UR=i,YR=r.RegExp,GR=UR((function(){var t=YR("a","y");return t.lastIndex=2,null!==t.exec("abcd")})),WR=GR||UR((function(){return!YR("a","y").sticky})),HR=GR||UR((function(){var t=YR("^r","gy");return t.lastIndex=2,null!==t.exec("str")})),qR={BROKEN_CARET:HR,MISSED_STICKY:WR,UNSUPPORTED_Y:GR},XR=i,VR=r.RegExp,QR=XR((function(){var t=VR(".","s");return!(t.dotAll&&t.test("\n")&&"s"===t.flags)})),KR=i,JR=r.RegExp,ZR=KR((function(){var t=JR("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")})),$R=a,tj=r,ej=w,rj=qn,nj=Hc,ij=He,aj=Fi,oj=Kr.f,sj=H,cj=CR,uj=fi,lj=BR,hj=qR,fj=Uc,dj=Qr,pj=i,gj=Nt,vj=Mr.enforce,yj=Kg,mj=QR,bj=ZR,xj=$t("match"),wj=tj.RegExp,Aj=wj.prototype,_j=tj.SyntaxError,kj=ej(Aj.exec),Ej=ej("".charAt),Sj=ej("".replace),Mj=ej("".indexOf),Tj=ej("".slice),Pj=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,Oj=/a/g,Ij=/a/g,Cj=new wj(Oj)!==Oj,Rj=hj.MISSED_STICKY,jj=hj.UNSUPPORTED_Y,Lj=$R&&(!Cj||Rj||mj||bj||pj((function(){return Ij[xj]=!1,wj(Oj)!==Oj||wj(Ij)===Ij||"/a/i"!==String(wj(Oj,"i"))})));if(rj("RegExp",Lj)){for(var Dj=function(t,e){var r,n,i,a,o,s,c=sj(Aj,this),u=cj(t),l=void 0===e,h=[],f=t;if(!c&&u&&l&&t.constructor===Dj)return t;if((u||sj(Aj,t))&&(t=t.source,l&&(e=lj(f))),t=void 0===t?"":uj(t),e=void 0===e?"":uj(e),f=t,mj&&"dotAll"in Oj&&(n=!!e&&Mj(e,"s")>-1)&&(e=Sj(e,/s/g,"")),r=e,Rj&&"sticky"in Oj&&(i=!!e&&Mj(e,"y")>-1)&&jj&&(e=Sj(e,/y/g,"")),bj&&(a=function(t){for(var e,r=t.length,n=0,i="",a=[],o=aj(null),s=!1,c=!1,u=0,l="";n<=r;n++){if("\\"===(e=Ej(t,n)))e+=Ej(t,++n);else if("]"===e)s=!1;else if(!s)switch(!0){case"["===e:s=!0;break;case"("===e:kj(Pj,Tj(t,n+1))&&(n+=2,c=!0),i+=e,u++;continue;case">"===e&&c:if(""===l||gj(o,l))throw new _j("Invalid capture group name");o[l]=!0,a[a.length]=[l,u],c=!1,l="";continue}c?l+=e:i+=e}return[i,a]}(t),t=a[0],h=a[1]),o=nj(wj(t,e),c?this:Aj,Dj),(n||i||h.length)&&(s=vj(o),n&&(s.dotAll=!0,s.raw=Dj(function(t){for(var e,r=t.length,n=0,i="",a=!1;n<=r;n++)"\\"!==(e=Ej(t,n))?a||"."!==e?("["===e?a=!0:"]"===e&&(a=!1),i+=e):i+="[\\s\\S]":i+=e+Ej(t,++n);return i}(t),r)),i&&(s.sticky=!0),h.length&&(s.groups=h)),t!==f)try{ij(o,"source",""===f?"(?:)":f)}catch(t){}return o},zj=oj(wj),Fj=0;zj.length>Fj;)fj(Dj,wj,zj[Fj++]);Aj.constructor=Dj,Dj.prototype=Aj,dj(tj,"RegExp",Dj,{constructor:!0})}yj("RegExp");var Nj=a,Bj=QR,Uj=E,Yj=Vi,Gj=Mr.get,Wj=RegExp.prototype,Hj=TypeError;Nj&&Bj&&Yj(Wj,"dotAll",{configurable:!0,get:function(){if(this!==Wj){if("RegExp"===Uj(this))return!!Gj(this).dotAll;throw new Hj("Incompatible receiver, RegExp required")}}});var qj=u,Xj=w,Vj=fi,Qj=jR,Kj=qR,Jj=Fi,Zj=Mr.get,$j=QR,tL=ZR,eL=Rt("native-string-replace",String.prototype.replace),rL=RegExp.prototype.exec,nL=rL,iL=Xj("".charAt),aL=Xj("".indexOf),oL=Xj("".replace),sL=Xj("".slice),cL=function(){var t=/a/,e=/b*/g;return qj(rL,t,"a"),qj(rL,e,"a"),0!==t.lastIndex||0!==e.lastIndex}(),uL=Kj.BROKEN_CARET,lL=void 0!==/()??/.exec("")[1];(cL||lL||uL||$j||tL)&&(nL=function(t){var e,r,n,i,a,o,s,c=this,u=Zj(c),l=Vj(t),h=u.raw;if(h)return h.lastIndex=c.lastIndex,e=qj(nL,h,l),c.lastIndex=h.lastIndex,e;var f=u.groups,d=uL&&c.sticky,p=qj(Qj,c),g=c.source,v=0,y=l;if(d&&(p=oL(p,"y",""),-1===aL(p,"g")&&(p+="g"),y=sL(l,c.lastIndex),c.lastIndex>0&&(!c.multiline||c.multiline&&"\n"!==iL(l,c.lastIndex-1))&&(g="(?: "+g+")",y=" "+y,v++),r=new RegExp("^(?:"+g+")",p)),lL&&(r=new RegExp("^"+g+"$(?!\\s)",p)),cL&&(n=c.lastIndex),i=qj(rL,d?r:c,y),d?i?(i.input=sL(i.input,v),i[0]=sL(i[0],v),i.index=c.lastIndex,c.lastIndex+=i[0].length):c.lastIndex=0:cL&&i&&(c.lastIndex=c.global?i.index+i[0].length:n),lL&&i&&i.length>1&&qj(eL,i[0],r,(function(){for(a=1;a<arguments.length-2;a++)void 0===arguments[a]&&(i[a]=void 0)})),i&&f)for(i.groups=o=Jj(null),a=0;a<f.length;a++)o[(s=f[a])[0]]=i[s[1]];return i});var hL=nL;ti({target:"RegExp",proto:!0,forced:/./.exec!==hL},{exec:hL});var fL=a,dL=Vi,pL=jR,gL=i,vL=r.RegExp,yL=vL.prototype,mL=fL&&gL((function(){var t=!0;try{vL(".","d")}catch(e){t=!1}var e={},r="",n=t?"dgimsy":"gimsy",i=function(t,n){Object.defineProperty(e,t,{get:function(){return r+=n,!0}})},a={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"};for(var o in t&&(a.hasIndices="d"),a)i(o,a[o]);return Object.getOwnPropertyDescriptor(yL,"flags").get.call(e)!==n||r!==n}));mL&&dL(yL,"flags",{configurable:!0,get:pL});var bL=a,xL=qR.MISSED_STICKY,wL=E,AL=Vi,_L=Mr.get,kL=RegExp.prototype,EL=TypeError;bL&&xL&&AL(kL,"sticky",{configurable:!0,get:function(){if(this!==kL){if("RegExp"===wL(this))return!!_L(this).sticky;throw new EL("Incompatible receiver, RegExp required")}}});var SL,ML,TL=ti,PL=u,OL=N,IL=Ie,CL=fi,RL=(SL=!1,(ML=/[ac]/).exec=function(){return SL=!0,/./.exec.apply(this,arguments)},!0===ML.test("abc")&&SL),jL=/./.test;TL({target:"RegExp",proto:!0,forced:!RL},{test:function(t){var e=IL(this),r=CL(t),n=e.exec;if(!OL(n))return PL(jL,e,r);var i=PL(n,e,r);return null!==i&&(IL(i),!0)}});var LL=Ze.PROPER,DL=Qr,zL=Ie,FL=fi,NL=i,BL=BR,UL="toString",YL=RegExp.prototype,GL=YL[UL],WL=NL((function(){return"/a/b"!==GL.call({source:"a",flags:"b"})})),HL=LL&&GL.name!==UL;(WL||HL)&&DL(YL,UL,(function(){var t=zL(this);return"/"+FL(t.source)+"/"+FL(BL(t))}),{unsafe:!0}),h_("Set",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),S_);var qL=w,XL=Set.prototype,VL={Set:Set,add:qL(XL.add),has:qL(XL.has),remove:qL(XL.delete),proto:XL},QL=VL.has,KL=function(t){return QL(t),t},JL=u,ZL=function(t,e,r){for(var n,i,a=r?t:t.iterator,o=t.next;!(n=JL(o,a)).done;)if(void 0!==(i=e(n.value)))return i},$L=w,tD=ZL,eD=VL.Set,rD=VL.proto,nD=$L(rD.forEach),iD=$L(rD.keys),aD=iD(new eD).next,oD=function(t,e,r){return r?tD({iterator:iD(t),next:aD},e):nD(t,e)},sD=oD,cD=VL.Set,uD=VL.add,lD=function(t){var e=new cD;return sD(t,(function(t){uD(e,t)})),e},hD=Tc(VL.proto,"size","get")||function(t){return t.size},fD=gt,dD=Ie,pD=u,gD=en,vD=function(t){return{iterator:t,next:t.next,done:!1}},yD="Invalid size",mD=RangeError,bD=TypeError,xD=Math.max,wD=function(t,e){this.set=t,this.size=xD(e,0),this.has=fD(t.has),this.keys=fD(t.keys)};wD.prototype={getIterator:function(){return vD(dD(pD(this.keys,this.set)))},includes:function(t){return pD(this.has,this.set,t)}};var AD=function(t){dD(t);var e=+t.size;if(e!=e)throw new bD(yD);var r=gD(e);if(r<0)throw new mD(yD);return new wD(t,r)},_D=KL,kD=lD,ED=hD,SD=AD,MD=oD,TD=ZL,PD=VL.has,OD=VL.remove,ID=W,CD=function(t){return{size:t,has:function(){return!1},keys:function(){return{next:function(){return{done:!0}}}}}},RD=function(t){var e=ID("Set");try{(new e)[t](CD(0));try{return(new e)[t](CD(-1)),!1}catch(t){return!0}}catch(t){return!1}},jD=function(t){var e=_D(this),r=SD(t),n=kD(e);return ED(e)<=r.size?MD(e,(function(t){r.includes(t)&&OD(n,t)})):TD(r.getIterator(),(function(t){PD(e,t)&&OD(n,t)})),n};ti({target:"Set",proto:!0,real:!0,forced:!RD("difference")},{difference:jD});var LD=KL,DD=hD,zD=AD,FD=oD,ND=ZL,BD=VL.Set,UD=VL.add,YD=VL.has,GD=i,WD=function(t){var e=LD(this),r=zD(t),n=new BD;return DD(e)>r.size?ND(r.getIterator(),(function(t){YD(e,t)&&UD(n,t)})):FD(e,(function(t){r.includes(t)&&UD(n,t)})),n};ti({target:"Set",proto:!0,real:!0,forced:!RD("intersection")||GD((function(){return"3,2"!==String(Array.from(new Set([1,2,3]).intersection(new Set([3,2]))))}))},{intersection:WD});var HD=KL,qD=VL.has,XD=hD,VD=AD,QD=oD,KD=ZL,JD=yl,ZD=function(t){var e=HD(this),r=VD(t);if(XD(e)<=r.size)return!1!==QD(e,(function(t){if(r.includes(t))return!1}),!0);var n=r.getIterator();return!1!==KD(n,(function(t){if(qD(e,t))return JD(n,"normal",!1)}))};ti({target:"Set",proto:!0,real:!0,forced:!RD("isDisjointFrom")},{isDisjointFrom:ZD});var $D=KL,tz=hD,ez=oD,rz=AD,nz=function(t){var e=$D(this),r=rz(t);return!(tz(e)>r.size)&&!1!==ez(e,(function(t){if(!r.includes(t))return!1}),!0)};ti({target:"Set",proto:!0,real:!0,forced:!RD("isSubsetOf")},{isSubsetOf:nz});var iz=KL,az=VL.has,oz=hD,sz=AD,cz=ZL,uz=yl,lz=function(t){var e=iz(this),r=sz(t);if(oz(e)<r.size)return!1;var n=r.getIterator();return!1!==cz(n,(function(t){if(!az(e,t))return uz(n,"normal",!1)}))};ti({target:"Set",proto:!0,real:!0,forced:!RD("isSupersetOf")},{isSupersetOf:lz});var hz=KL,fz=lD,dz=AD,pz=ZL,gz=VL.add,vz=VL.has,yz=VL.remove,mz=function(t){var e=hz(this),r=dz(t).getIterator(),n=fz(e);return pz(r,(function(t){vz(e,t)?yz(n,t):gz(n,t)})),n};ti({target:"Set",proto:!0,real:!0,forced:!RD("symmetricDifference")},{symmetricDifference:mz});var bz=KL,xz=VL.add,wz=lD,Az=AD,_z=ZL,kz=function(t){var e=bz(this),r=Az(t).getIterator(),n=wz(e);return _z(r,(function(t){xz(n,t)})),n};ti({target:"Set",proto:!0,real:!0,forced:!RD("union")},{union:kz});var Ez=ti,Sz=j,Mz=en,Tz=fi,Pz=i,Oz=w("".charAt);Ez({target:"String",proto:!0,forced:Pz((function(){return"\ud842"!=="𠮷".at(-2)}))},{at:function(t){var e=Tz(Sz(this)),r=e.length,n=Mz(t),i=n>=0?n:r+n;return i<0||i>=r?void 0:Oz(e,i)}});var Iz=w,Cz=en,Rz=fi,jz=j,Lz=Iz("".charAt),Dz=Iz("".charCodeAt),zz=Iz("".slice),Fz=function(t){return function(e,r){var n,i,a=Rz(jz(e)),o=Cz(r),s=a.length;return o<0||o>=s?t?"":void 0:(n=Dz(a,o))<55296||n>56319||o+1===s||(i=Dz(a,o+1))<56320||i>57343?t?Lz(a,o):n:t?zz(a,o,o+2):i-56320+(n-55296<<10)+65536}},Nz={codeAt:Fz(!1),charAt:Fz(!0)},Bz=Nz.codeAt;ti({target:"String",proto:!0},{codePointAt:function(t){return Bz(this,t)}});var Uz=CR,Yz=TypeError,Gz=function(t){if(Uz(t))throw new Yz("The method doesn't accept regular expressions");return t},Wz=$t("match"),Hz=function(t){var e=/./;try{"/./"[t](e)}catch(r){try{return e[Wz]=!1,"/./"[t](e)}catch(t){}}return!1},qz=ti,Xz=pa,Vz=n.f,Qz=un,Kz=fi,Jz=Gz,Zz=j,$z=Hz,tF=Xz("".slice),eF=Math.min,rF=$z("endsWith"),nF=!rF&&!!function(){var t=Vz(String.prototype,"endsWith");return t&&!t.writable}();qz({target:"String",proto:!0,forced:!nF&&!rF},{endsWith:function(t){var e=Kz(Zz(this));Jz(t);var r=arguments.length>1?arguments[1]:void 0,n=e.length,i=void 0===r?n:eF(Qz(r),n),a=Kz(t);return tF(e,i-a.length,i)===a}});var iF=ti,aF=w,oF=on,sF=RangeError,cF=String.fromCharCode,uF=String.fromCodePoint,lF=aF([].join);iF({target:"String",stat:!0,arity:1,forced:!!uF&&1!==uF.length},{fromCodePoint:function(t){for(var e,r=[],n=arguments.length,i=0;n>i;){if(e=+arguments[i++],oF(e,1114111)!==e)throw new sF(e+" is not a valid code point");r[i]=e<65536?cF(e):cF(55296+((e-=65536)>>10),e%1024+56320)}return lF(r,"")}});var hF=ti,fF=Gz,dF=j,pF=fi,gF=Hz,vF=w("".indexOf);hF({target:"String",proto:!0,forced:!gF("includes")},{includes:function(t){return!!~vF(pF(dF(this)),pF(fF(t)),arguments.length>1?arguments[1]:void 0)}});var yF=ti,mF=j,bF=fi,xF=w("".charCodeAt);yF({target:"String",proto:!0},{isWellFormed:function(){for(var t=bF(mF(this)),e=t.length,r=0;r<e;r++){var n=xF(t,r);if(55296==(63488&n)&&(n>=56320||++r>=e||56320!=(64512&xF(t,r))))return!1}return!0}});var wF=Nz.charAt,AF=fi,_F=Mr,kF=Jd,EF=Zd,SF="String Iterator",MF=_F.set,TF=_F.getterFor(SF);kF(String,"String",(function(t){MF(this,{type:SF,string:AF(t),index:0})}),(function(){var t,e=TF(this),r=e.string,n=e.index;return n>=r.length?EF(void 0,!0):(t=wF(r,n),e.index+=t.length,EF(t,!1))}));var PF=u,OF=Qr,IF=hL,CF=i,RF=$t,jF=He,LF=RF("species"),DF=RegExp.prototype,zF=function(t,e,r,n){var i=RF(t),a=!CF((function(){var e={};return e[i]=function(){return 7},7!==""[t](e)})),o=a&&!CF((function(){var e=!1,r=/a/;return"split"===t&&((r={}).constructor={},r.constructor[LF]=function(){return r},r.flags="",r[i]=/./[i]),r.exec=function(){return e=!0,null},r[i](""),!e}));if(!a||!o||r){var s=/./[i],c=e(i,""[t],(function(t,e,r,n,i){var o=e.exec;return o===IF||o===DF.exec?a&&!i?{done:!0,value:PF(s,e,r,n)}:{done:!0,value:PF(t,r,e,n)}:{done:!1}}));OF(String.prototype,t,c[0]),OF(DF,i,c[1])}n&&jF(DF[i],"sham",!0)},FF=Nz.charAt,NF=function(t,e,r){return e+(r?FF(t,e).length:1)},BF=u,UF=Ie,YF=N,GF=E,WF=hL,HF=TypeError,qF=function(t,e){var r=t.exec;if(YF(r)){var n=BF(r,t,e);return null!==n&&UF(n),n}if("RegExp"===GF(t))return BF(WF,t,e);throw new HF("RegExp#exec called on incompatible receiver")},XF=u,VF=Ie,QF=I,KF=un,JF=fi,ZF=j,$F=mt,tN=NF,eN=qF;zF("match",(function(t,e,r){return[function(e){var r=ZF(this),n=QF(e)?void 0:$F(e,t);return n?XF(n,e,r):new RegExp(e)[t](JF(r))},function(t){var n=VF(this),i=JF(t),a=r(e,n,i);if(a.done)return a.value;if(!n.global)return eN(n,i);var o=n.unicode;n.lastIndex=0;for(var s,c=[],u=0;null!==(s=eN(n,i));){var l=JF(s[0]);c[u]=l,""===l&&(n.lastIndex=tN(i,KF(n.lastIndex),o)),u++}return 0===u?null:c}]}));var rN=ti,nN=u,iN=pa,aN=Id,oN=Zd,sN=j,cN=un,uN=fi,lN=Ie,hN=I,fN=CR,dN=BR,pN=mt,gN=Qr,vN=i,yN=yb,mN=NF,bN=qF,xN=Mr,wN=$t("matchAll"),AN="RegExp String",_N=AN+" Iterator",kN=xN.set,EN=xN.getterFor(_N),SN=RegExp.prototype,MN=TypeError,TN=iN("".indexOf),PN=iN("".matchAll),ON=!!PN&&!vN((function(){PN("a",/./)})),IN=aN((function(t,e,r,n){kN(this,{type:_N,regexp:t,string:e,global:r,unicode:n,done:!1})}),AN,(function(){var t=EN(this);if(t.done)return oN(void 0,!0);var e=t.regexp,r=t.string,n=bN(e,r);return null===n?(t.done=!0,oN(void 0,!0)):t.global?(""===uN(n[0])&&(e.lastIndex=mN(r,cN(e.lastIndex),t.unicode)),oN(n,!1)):(t.done=!0,oN(n,!1))})),CN=function(t){var e,r,n,i=lN(this),a=uN(t),o=yN(i,RegExp),s=uN(dN(i));return e=new o(o===RegExp?i.source:i,s),r=!!~TN(s,"g"),n=!!~TN(s,"u"),e.lastIndex=cN(i.lastIndex),new IN(e,a,r,n)};rN({target:"String",proto:!0,forced:ON},{matchAll:function(t){var e,r,n,i=sN(this);if(hN(t)){if(ON)return PN(i,t)}else{if(fN(t)&&(e=uN(sN(dN(t))),!~TN(e,"g")))throw new MN("`.matchAll` does not allow non-global regexes");if(ON)return PN(i,t);if(n=pN(t,wN))return nN(n,t,i)}return r=uN(i),new RegExp(t,"g")[wN](r)}}),wN in SN||gN(SN,wN,CN);var RN=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(q),jN=aw.end;ti({target:"String",proto:!0,forced:RN},{padEnd:function(t){return jN(this,t,arguments.length>1?arguments[1]:void 0)}});var LN=aw.start;ti({target:"String",proto:!0,forced:RN},{padStart:function(t){return LN(this,t,arguments.length>1?arguments[1]:void 0)}});var DN=ti,zN=w,FN=z,NN=Dt,BN=fi,UN=hn,YN=zN([].push),GN=zN([].join);DN({target:"String",stat:!0},{raw:function(t){var e=FN(NN(t).raw),r=UN(e);if(!r)return"";for(var n=arguments.length,i=[],a=0;;){if(YN(i,BN(e[a++])),a===r)return GN(i,"");a<n&&YN(i,BN(arguments[a]))}}}),ti({target:"String",proto:!0},{repeat:Kx});var WN=w,HN=Dt,qN=Math.floor,XN=WN("".charAt),VN=WN("".replace),QN=WN("".slice),KN=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,JN=/\$([$&'`]|\d{1,2})/g,ZN=function(t,e,r,n,i,a){var o=r+t.length,s=n.length,c=JN;return void 0!==i&&(i=HN(i),c=KN),VN(a,c,(function(a,c){var u;switch(XN(c,0)){case"$":return"$";case"&":return t;case"`":return QN(e,0,r);case"'":return QN(e,o);case"<":u=i[QN(c,1,-1)];break;default:var l=+c;if(0===l)return a;if(l>s){var h=qN(l/10);return 0===h?a:h<=s?void 0===n[h-1]?XN(c,1):n[h-1]+XN(c,1):a}u=n[l-1]}return void 0===u?"":u}))},$N=Es,tB=u,eB=w,rB=zF,nB=i,iB=Ie,aB=N,oB=I,sB=en,cB=un,uB=fi,lB=j,hB=NF,fB=mt,dB=ZN,pB=qF,gB=$t("replace"),vB=Math.max,yB=Math.min,mB=eB([].concat),bB=eB([].push),xB=eB("".indexOf),wB=eB("".slice),AB="$0"==="a".replace(/./,"$0"),_B=!!/./[gB]&&""===/./[gB]("a","$0"),kB=!nB((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}));rB("replace",(function(t,e,r){var n=_B?"$":"$0";return[function(t,r){var n=lB(this),i=oB(t)?void 0:fB(t,gB);return i?tB(i,t,n,r):tB(e,uB(n),t,r)},function(t,i){var a=iB(this),o=uB(t);if("string"==typeof i&&-1===xB(i,n)&&-1===xB(i,"$<")){var s=r(e,a,o,i);if(s.done)return s.value}var c=aB(i);c||(i=uB(i));var u,l=a.global;l&&(u=a.unicode,a.lastIndex=0);for(var h,f=[];null!==(h=pB(a,o))&&(bB(f,h),l);){""===uB(h[0])&&(a.lastIndex=hB(o,cB(a.lastIndex),u))}for(var d,p="",g=0,v=0;v<f.length;v++){for(var y,m=uB((h=f[v])[0]),b=vB(yB(sB(h.index),o.length),0),x=[],w=1;w<h.length;w++)bB(x,void 0===(d=h[w])?d:String(d));var A=h.groups;if(c){var _=mB([m],x,b,o);void 0!==A&&bB(_,A),y=uB($N(i,void 0,_))}else y=dB(m,o,b,x,A,i);b>=g&&(p+=wB(o,g,b)+y,g=b+m.length)}return p+wB(o,g)}]}),!kB||!AB||_B);var EB=ti,SB=u,MB=w,TB=j,PB=N,OB=I,IB=CR,CB=fi,RB=mt,jB=BR,LB=ZN,DB=$t("replace"),zB=TypeError,FB=MB("".indexOf);MB("".replace);var NB=MB("".slice),BB=Math.max;EB({target:"String",proto:!0},{replaceAll:function(t,e){var r,n,i,a,o,s,c,u,l=TB(this),h=0,f=0,d="";if(!OB(t)){if(IB(t)&&(r=CB(TB(jB(t))),!~FB(r,"g")))throw new zB("`.replaceAll` does not allow non-global regexes");if(n=RB(t,DB))return SB(n,t,l,e)}for(i=CB(l),a=CB(t),(o=PB(e))||(e=CB(e)),s=a.length,c=BB(1,s),h=FB(i,a);-1!==h;)u=o?CB(e(a,h,i)):LB(a,i,h,[],void 0,e),d+=NB(i,f,h)+u,f=h+s,h=h+c>i.length?-1:FB(i,a,h+c);return f<i.length&&(d+=NB(i,f)),d}});var UB=u,YB=Ie,GB=I,WB=j,HB=iT,qB=fi,XB=mt,VB=qF;zF("search",(function(t,e,r){return[function(e){var r=WB(this),n=GB(e)?void 0:XB(e,t);return n?UB(n,e,r):new RegExp(e)[t](qB(r))},function(t){var n=YB(this),i=qB(t),a=r(e,n,i);if(a.done)return a.value;var o=n.lastIndex;HB(o,0)||(n.lastIndex=0);var s=VB(n,i);return HB(n.lastIndex,o)||(n.lastIndex=o),null===s?-1:s.index}]}));var QB=u,KB=w,JB=zF,ZB=Ie,$B=I,tU=j,eU=yb,rU=NF,nU=un,iU=fi,aU=mt,oU=qF,sU=i,cU=qR.UNSUPPORTED_Y,uU=Math.min,lU=KB([].push),hU=KB("".slice),fU=!sU((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var r="ab".split(t);return 2!==r.length||"a"!==r[0]||"b"!==r[1]})),dU="c"==="abbc".split(/(b)*/)[1]||4!=="test".split(/(?:)/,-1).length||2!=="ab".split(/(?:ab)*/).length||4!==".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length;JB("split",(function(t,e,r){var n="0".split(void 0,0).length?function(t,r){return void 0===t&&0===r?[]:QB(e,this,t,r)}:e;return[function(e,r){var i=tU(this),a=$B(e)?void 0:aU(e,t);return a?QB(a,e,i,r):QB(n,iU(i),e,r)},function(t,i){var a=ZB(this),o=iU(t);if(!dU){var s=r(n,a,o,i,n!==e);if(s.done)return s.value}var c=eU(a,RegExp),u=a.unicode,l=(a.ignoreCase?"i":"")+(a.multiline?"m":"")+(a.unicode?"u":"")+(cU?"g":"y"),h=new c(cU?"^(?:"+a.source+")":a,l),f=void 0===i?4294967295:i>>>0;if(0===f)return[];if(0===o.length)return null===oU(h,o)?[o]:[];for(var d=0,p=0,g=[];p<o.length;){h.lastIndex=cU?0:p;var v,y=oU(h,cU?hU(o,p):o);if(null===y||(v=uU(nU(h.lastIndex+(cU?p:0)),o.length))===d)p=rU(o,p,u);else{if(lU(g,hU(o,d,p)),g.length===f)return g;for(var m=1;m<=y.length-1;m++)if(lU(g,y[m]),g.length===f)return g;p=d=v}}return lU(g,hU(o,d)),g}]}),dU||!fU,cU);var pU=ti,gU=pa,vU=n.f,yU=un,mU=fi,bU=Gz,xU=j,wU=Hz,AU=gU("".slice),_U=Math.min,kU=wU("startsWith"),EU=!kU&&!!function(){var t=vU(String.prototype,"startsWith");return t&&!t.writable}();pU({target:"String",proto:!0,forced:!EU&&!kU},{startsWith:function(t){var e=mU(xU(this));bU(t);var r=yU(_U(arguments.length>1?arguments[1]:void 0,e.length)),n=mU(t);return AU(e,r,r+n.length)===n}});var SU=ti,MU=j,TU=en,PU=fi,OU=w("".slice),IU=Math.max,CU=Math.min;SU({target:"String",proto:!0,forced:!"".substr||"b"!=="ab".substr(-1)},{substr:function(t,e){var r,n,i=PU(MU(this)),a=i.length,o=TU(t);return o===1/0&&(o=0),o<0&&(o=IU(a+o,0)),(r=void 0===e?a:TU(e))<=0||r===1/0||o>=(n=CU(o+r,a))?"":OU(i,o,n)}});var RU=ti,jU=u,LU=w,DU=j,zU=fi,FU=i,NU=Array,BU=LU("".charAt),UU=LU("".charCodeAt),YU=LU([].join),GU="".toWellFormed,WU=GU&&FU((function(){return"1"!==jU(GU,1)}));RU({target:"String",proto:!0,forced:WU},{toWellFormed:function(){var t=zU(DU(this));if(WU)return jU(GU,t);for(var e=t.length,r=NU(e),n=0;n<e;n++){var i=UU(t,n);55296!=(63488&i)?r[n]=BU(t,n):i>=56320||n+1>=e||56320!=(64512&UU(t,n+1))?r[n]="�":(r[n]=BU(t,n),r[++n]=BU(t,n))}return YU(r,"")}});var HU=Ze.PROPER,qU=i,XU=Uk,VU=function(t){return qU((function(){return!!XU[t]()||"​…᠎"!=="​…᠎"[t]()||HU&&XU[t].name!==t}))},QU=Qk.trim;ti({target:"String",proto:!0,forced:VU("trim")},{trim:function(){return QU(this)}});var KU=Qk.end,JU=VU("trimEnd")?function(){return KU(this)}:"".trimEnd;ti({target:"String",proto:!0,name:"trimEnd",forced:"".trimRight!==JU},{trimRight:JU});ti({target:"String",proto:!0,name:"trimEnd",forced:"".trimEnd!==JU},{trimEnd:JU});var ZU=Qk.start,$U=VU("trimStart")?function(){return ZU(this)}:"".trimStart;ti({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==$U},{trimLeft:$U});ti({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==$U},{trimStart:$U});var tY=j,eY=fi,rY=/"/g,nY=w("".replace),iY=function(t,e,r,n){var i=eY(tY(t)),a="<"+e;return""!==r&&(a+=" "+r+'="'+nY(eY(n),rY,"&quot;")+'"'),a+">"+i+"</"+e+">"},aY=i,oY=function(t){return aY((function(){var e=""[t]('"');return e!==e.toLowerCase()||e.split('"').length>3}))},sY=iY;ti({target:"String",proto:!0,forced:oY("anchor")},{anchor:function(t){return sY(this,"a","name",t)}});var cY=iY;ti({target:"String",proto:!0,forced:oY("big")},{big:function(){return cY(this,"big","","")}});var uY=iY;ti({target:"String",proto:!0,forced:oY("blink")},{blink:function(){return uY(this,"blink","","")}});var lY=iY;ti({target:"String",proto:!0,forced:oY("bold")},{bold:function(){return lY(this,"b","","")}});var hY=iY;ti({target:"String",proto:!0,forced:oY("fixed")},{fixed:function(){return hY(this,"tt","","")}});var fY=iY;ti({target:"String",proto:!0,forced:oY("fontcolor")},{fontcolor:function(t){return fY(this,"font","color",t)}});var dY=iY;ti({target:"String",proto:!0,forced:oY("fontsize")},{fontsize:function(t){return dY(this,"font","size",t)}});var pY=iY;ti({target:"String",proto:!0,forced:oY("italics")},{italics:function(){return pY(this,"i","","")}});var gY=iY;ti({target:"String",proto:!0,forced:oY("link")},{link:function(t){return gY(this,"a","href",t)}});var vY=iY;ti({target:"String",proto:!0,forced:oY("small")},{small:function(){return vY(this,"small","","")}});var yY=iY;ti({target:"String",proto:!0,forced:oY("strike")},{strike:function(){return yY(this,"strike","","")}});var mY=iY;ti({target:"String",proto:!0,forced:oY("sub")},{sub:function(){return mY(this,"sub","","")}});var bY=iY;ti({target:"String",proto:!0,forced:oY("sup")},{sup:function(){return bY(this,"sup","","")}});var xY={exports:{}},wY=r,AY=i,_Y=id,kY=cb.NATIVE_ARRAY_BUFFER_VIEWS,EY=wY.ArrayBuffer,SY=wY.Int8Array,MY=!kY||!AY((function(){SY(1)}))||!AY((function(){new SY(-1)}))||!_Y((function(t){new SY,new SY(null),new SY(1.5),new SY(t)}),!0)||AY((function(){return 1!==new SY(new EY(2),1,void 0).length})),TY=en,PY=RangeError,OY=function(t){var e=TY(t);if(e<0)throw new PY("The argument can't be less than 0");return e},IY=RangeError,CY=function(t,e){var r=OY(t);if(r%e)throw new IY("Wrong offset");return r},RY=Math.round,jY=ui,LY=function(t){var e=jY(t);return"BigInt64Array"===e||"BigUint64Array"===e},DY=se,zY=TypeError,FY=function(t){var e=DY(t,"number");if("number"==typeof e)throw new zY("Can't convert number to bigint");return BigInt(e)},NY=ma,BY=u,UY=fb,YY=Dt,GY=hn,WY=dl,HY=ol,qY=tl,XY=LY,VY=cb.aTypedArrayConstructor,QY=FY,KY=function(t){var e,r,n,i,a,o,s,c,u=UY(this),l=YY(t),h=arguments.length,f=h>1?arguments[1]:void 0,d=void 0!==f,p=HY(l);if(p&&!qY(p))for(c=(s=WY(l,p)).next,l=[];!(o=BY(c,s)).done;)l.push(o.value);for(d&&h>2&&(f=NY(f,arguments[2])),r=GY(l),n=new(VY(u))(r),i=XY(n),e=0;r>e;e++)a=d?f(l[e],e):l[e],n[e]=i?QY(a):+a;return n},JY=ti,ZY=r,$Y=u,tG=a,eG=MY,rG=cb,nG=xm,iG=ty,aG=v,oG=He,sG=EE,cG=un,uG=iy,lG=CY,hG=function(t){var e=RY(t);return e<0?0:e>255?255:255&e},fG=le,dG=Nt,pG=ui,gG=U,vG=ut,yG=Fi,mG=H,bG=Nc,xG=Kr.f,wG=KY,AG=Va.forEach,_G=Kg,kG=Vi,EG=Se,SG=n,MG=yv,TG=Hc,PG=Mr.get,OG=Mr.set,IG=Mr.enforce,CG=EG.f,RG=SG.f,jG=ZY.RangeError,LG=nG.ArrayBuffer,DG=LG.prototype,zG=nG.DataView,FG=rG.NATIVE_ARRAY_BUFFER_VIEWS,NG=rG.TYPED_ARRAY_TAG,BG=rG.TypedArray,UG=rG.TypedArrayPrototype,YG=rG.isTypedArray,GG="BYTES_PER_ELEMENT",WG="Wrong length",HG=function(t,e){kG(t,e,{configurable:!0,get:function(){return PG(this)[e]}})},qG=function(t){var e;return mG(DG,t)||"ArrayBuffer"===(e=pG(t))||"SharedArrayBuffer"===e},XG=function(t,e){return YG(t)&&!vG(e)&&e in t&&sG(+e)&&e>=0},VG=function(t,e){return e=fG(e),XG(t,e)?aG(2,t[e]):RG(t,e)},QG=function(t,e,r){return e=fG(e),!(XG(t,e)&&gG(r)&&dG(r,"value"))||dG(r,"get")||dG(r,"set")||r.configurable||dG(r,"writable")&&!r.writable||dG(r,"enumerable")&&!r.enumerable?CG(t,e,r):(t[e]=r.value,t)};tG?(FG||(SG.f=VG,EG.f=QG,HG(UG,"buffer"),HG(UG,"byteOffset"),HG(UG,"byteLength"),HG(UG,"length")),JY({target:"Object",stat:!0,forced:!FG},{getOwnPropertyDescriptor:VG,defineProperty:QG}),xY.exports=function(t,e,r){var n=t.match(/\d+/)[0]/8,i=t+(r?"Clamped":"")+"Array",a="get"+t,o="set"+t,s=ZY[i],c=s,u=c&&c.prototype,l={},h=function(t,e){CG(t,e,{get:function(){return function(t,e){var r=PG(t);return r.view[a](e*n+r.byteOffset,!0)}(this,e)},set:function(t){return function(t,e,i){var a=PG(t);a.view[o](e*n+a.byteOffset,r?hG(i):i,!0)}(this,e,t)},enumerable:!0})};FG?eG&&(c=e((function(t,e,r,i){return iG(t,u),TG(gG(e)?qG(e)?void 0!==i?new s(e,lG(r,n),i):void 0!==r?new s(e,lG(r,n)):new s(e):YG(e)?MG(c,e):$Y(wG,c,e):new s(uG(e)),t,c)})),bG&&bG(c,BG),AG(xG(s),(function(t){t in c||oG(c,t,s[t])})),c.prototype=u):(c=e((function(t,e,r,i){iG(t,u);var a,o,s,l=0,f=0;if(gG(e)){if(!qG(e))return YG(e)?MG(c,e):$Y(wG,c,e);a=e,f=lG(r,n);var d=e.byteLength;if(void 0===i){if(d%n)throw new jG(WG);if((o=d-f)<0)throw new jG(WG)}else if((o=cG(i)*n)+f>d)throw new jG(WG);s=o/n}else s=uG(e),a=new LG(o=s*n);for(OG(t,{buffer:a,byteOffset:f,byteLength:o,length:s,view:new zG(a)});l<s;)h(t,l++)})),bG&&bG(c,BG),u=c.prototype=yG(UG)),u.constructor!==c&&oG(u,"constructor",c),IG(u).TypedArrayConstructor=c,NG&&oG(u,NG,i);var f=c!==s;l[i]=c,JY({global:!0,constructor:!0,forced:f,sham:!FG},l),GG in c||oG(c,GG,n),GG in u||oG(u,GG,n),_G(i)}):xY.exports=function(){},(0,xY.exports)("Float32",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,xY.exports)("Float64",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,xY.exports)("Int8",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,xY.exports)("Int16",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,xY.exports)("Int32",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,xY.exports)("Uint8",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,xY.exports)("Uint8",(function(t){return function(e,r,n){return t(this,e,r,n)}}),!0),(0,xY.exports)("Uint16",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,xY.exports)("Uint32",(function(t){return function(e,r,n){return t(this,e,r,n)}}));var KG=hn,JG=en,ZG=cb.aTypedArray;(0,cb.exportTypedArrayMethod)("at",(function(t){var e=ZG(this),r=KG(e),n=JG(t),i=n>=0?n:r+n;return i<0||i>=r?void 0:e[i]}));var $G=cb,tW=w(Wh),eW=$G.aTypedArray;(0,$G.exportTypedArrayMethod)("copyWithin",(function(t,e){return tW(eW(this),t,e,arguments.length>2?arguments[2]:void 0)}));var rW=Va.every,nW=cb.aTypedArray;(0,cb.exportTypedArrayMethod)("every",(function(t){return rW(nW(this),t,arguments.length>1?arguments[1]:void 0)}));var iW=Zh,aW=FY,oW=ui,sW=u,cW=i,uW=cb.aTypedArray,lW=cb.exportTypedArrayMethod,hW=w("".slice),fW=cW((function(){var t=0;return new Int8Array(2).fill({valueOf:function(){return t++}}),1!==t}));lW("fill",(function(t){var e=arguments.length;uW(this);var r="Big"===hW(oW(this),0,3)?aW(t):+t;return sW(iW,this,r,e>1?arguments[1]:void 0,e>2?arguments[2]:void 0)}),fW);var dW=yb,pW=cb.aTypedArrayConstructor,gW=cb.getTypedArrayConstructor,vW=function(t){return pW(dW(t,gW(t)))},yW=yv,mW=vW,bW=Va.filter,xW=function(t,e){return yW(mW(t),e)},wW=cb.aTypedArray;(0,cb.exportTypedArrayMethod)("filter",(function(t){var e=bW(wW(this),t,arguments.length>1?arguments[1]:void 0);return xW(this,e)}));var AW=Va.find,_W=cb.aTypedArray;(0,cb.exportTypedArrayMethod)("find",(function(t){return AW(_W(this),t,arguments.length>1?arguments[1]:void 0)}));var kW=Va.findIndex,EW=cb.aTypedArray;(0,cb.exportTypedArrayMethod)("findIndex",(function(t){return kW(EW(this),t,arguments.length>1?arguments[1]:void 0)}));var SW=yf.findLast,MW=cb.aTypedArray;(0,cb.exportTypedArrayMethod)("findLast",(function(t){return SW(MW(this),t,arguments.length>1?arguments[1]:void 0)}));var TW=yf.findLastIndex,PW=cb.aTypedArray;(0,cb.exportTypedArrayMethod)("findLastIndex",(function(t){return TW(PW(this),t,arguments.length>1?arguments[1]:void 0)}));var OW=Va.forEach,IW=cb.aTypedArray;(0,cb.exportTypedArrayMethod)("forEach",(function(t){OW(IW(this),t,arguments.length>1?arguments[1]:void 0)})),(0,cb.exportTypedArrayStaticMethod)("from",KY,MY);var CW=vn.includes,RW=cb.aTypedArray;(0,cb.exportTypedArrayMethod)("includes",(function(t){return CW(RW(this),t,arguments.length>1?arguments[1]:void 0)}));var jW=vn.indexOf,LW=cb.aTypedArray;(0,cb.exportTypedArrayMethod)("indexOf",(function(t){return jW(LW(this),t,arguments.length>1?arguments[1]:void 0)}));var DW=r,zW=i,FW=w,NW=cb,BW=lp,UW=$t("iterator"),YW=DW.Uint8Array,GW=FW(BW.values),WW=FW(BW.keys),HW=FW(BW.entries),qW=NW.aTypedArray,XW=NW.exportTypedArrayMethod,VW=YW&&YW.prototype,QW=!zW((function(){VW[UW].call([1])})),KW=!!VW&&VW.values&&VW[UW]===VW.values&&"values"===VW.values.name,JW=function(){return GW(qW(this))};XW("entries",(function(){return HW(qW(this))}),QW),XW("keys",(function(){return WW(qW(this))}),QW),XW("values",JW,QW||!KW,{name:"values"}),XW(UW,JW,QW||!KW,{name:"values"});var ZW=cb.aTypedArray,$W=cb.exportTypedArrayMethod,tH=w([].join);$W("join",(function(t){return tH(ZW(this),t)}));var eH=Es,rH=Sp,nH=cb.aTypedArray;(0,cb.exportTypedArrayMethod)("lastIndexOf",(function(t){var e=arguments.length;return eH(rH,nH(this),e>1?[t,arguments[1]]:[t])}));var iH=Va.map,aH=vW,oH=cb.aTypedArray;(0,cb.exportTypedArrayMethod)("map",(function(t){return iH(oH(this),t,arguments.length>1?arguments[1]:void 0,(function(t,e){return new(aH(t))(e)}))}));var sH=cb.aTypedArrayConstructor;(0,cb.exportTypedArrayStaticMethod)("of",(function(){for(var t=0,e=arguments.length,r=new(sH(this))(e);e>t;)r[t]=arguments[t++];return r}),MY);var cH=Xp.left,uH=cb.aTypedArray;(0,cb.exportTypedArrayMethod)("reduce",(function(t){var e=arguments.length;return cH(uH(this),t,e,e>1?arguments[1]:void 0)}));var lH=Xp.right,hH=cb.aTypedArray;(0,cb.exportTypedArrayMethod)("reduceRight",(function(t){var e=arguments.length;return lH(hH(this),t,e,e>1?arguments[1]:void 0)}));var fH=cb.aTypedArray,dH=cb.exportTypedArrayMethod,pH=Math.floor;dH("reverse",(function(){for(var t,e=this,r=fH(e).length,n=pH(r/2),i=0;i<n;)t=e[i],e[i++]=e[--r],e[r]=t;return e}));var gH=r,vH=u,yH=cb,mH=hn,bH=CY,xH=Dt,wH=i,AH=gH.RangeError,_H=gH.Int8Array,kH=_H&&_H.prototype,EH=kH&&kH.set,SH=yH.aTypedArray,MH=yH.exportTypedArrayMethod,TH=!wH((function(){var t=new Uint8ClampedArray(2);return vH(EH,t,{length:1,0:3},1),3!==t[1]})),PH=TH&&yH.NATIVE_ARRAY_BUFFER_VIEWS&&wH((function(){var t=new _H(2);return t.set(1),t.set("2",1),0!==t[0]||2!==t[1]}));MH("set",(function(t){SH(this);var e=bH(arguments.length>1?arguments[1]:void 0,1),r=xH(t);if(TH)return vH(EH,this,r,e);var n=this.length,i=mH(r),a=0;if(i+e>n)throw new AH("Wrong length");for(;a<i;)this[e+a]=r[a++]}),!TH||PH);var OH=vW,IH=Bi,CH=cb.aTypedArray;(0,cb.exportTypedArrayMethod)("slice",(function(t,e){for(var r=IH(CH(this),t,e),n=OH(this),i=0,a=r.length,o=new n(a);a>i;)o[i]=r[i++];return o}),i((function(){new Int8Array(1).slice()})));var RH=Va.some,jH=cb.aTypedArray;(0,cb.exportTypedArrayMethod)("some",(function(t){return RH(jH(this),t,arguments.length>1?arguments[1]:void 0)}));var LH=pa,DH=i,zH=gt,FH=bg,NH=wg,BH=Ag,UH=$,YH=kg,GH=cb.aTypedArray,WH=cb.exportTypedArrayMethod,HH=r.Uint16Array,qH=HH&&LH(HH.prototype.sort),XH=!(!qH||DH((function(){qH(new HH(2),null)}))&&DH((function(){qH(new HH(2),{})}))),VH=!!qH&&!DH((function(){if(UH)return UH<74;if(NH)return NH<67;if(BH)return!0;if(YH)return YH<602;var t,e,r=new HH(516),n=Array(516);for(t=0;t<516;t++)e=t%4,r[t]=515-t,n[t]=t-2*e+3;for(qH(r,(function(t,e){return(t/4|0)-(e/4|0)})),t=0;t<516;t++)if(r[t]!==n[t])return!0}));WH("sort",(function(t){return void 0!==t&&zH(t),VH?qH(this,t):FH(GH(this),function(t){return function(e,r){return void 0!==t?+t(e,r)||0:r!=r?-1:e!=e?1:0===e&&0===r?1/e>0&&1/r<0?1:-1:e>r}}(t))}),!VH||XH);var QH=un,KH=on,JH=vW,ZH=cb.aTypedArray;(0,cb.exportTypedArrayMethod)("subarray",(function(t,e){var r=ZH(this),n=r.length,i=KH(t,n);return new(JH(r))(r.buffer,r.byteOffset+i*r.BYTES_PER_ELEMENT,QH((void 0===e?n:KH(e,n))-i))}));var $H=Es,tq=cb,eq=i,rq=Bi,nq=r.Int8Array,iq=tq.aTypedArray,aq=tq.exportTypedArrayMethod,oq=[].toLocaleString,sq=!!nq&&eq((function(){oq.call(new nq(1))}));aq("toLocaleString",(function(){return $H(oq,sq?rq(iq(this)):iq(this),rq(arguments))}),eq((function(){return[1,2].toLocaleString()!==new nq([1,2]).toLocaleString()}))||!eq((function(){nq.prototype.toLocaleString.call([1,2])})));var cq=hv,uq=cb.aTypedArray,lq=cb.getTypedArrayConstructor;(0,cb.exportTypedArrayMethod)("toReversed",(function(){return cq(uq(this),lq(this))}));var hq=gt,fq=yv,dq=cb.aTypedArray,pq=cb.getTypedArrayConstructor,gq=cb.exportTypedArrayMethod,vq=w(cb.TypedArrayPrototype.sort);gq("toSorted",(function(t){void 0!==t&&hq(t);var e=dq(this),r=fq(pq(e),e);return vq(r,t)}));var yq=cb.exportTypedArrayMethod,mq=i,bq=w,xq=r.Uint8Array,wq=xq&&xq.prototype||{},Aq=[].toString,_q=bq([].join);mq((function(){Aq.call({})}))&&(Aq=function(){return _q(this)});var kq=wq.toString!==Aq;yq("toString",Aq,kq);var Eq=Hv,Sq=LY,Mq=en,Tq=FY,Pq=cb.aTypedArray,Oq=cb.getTypedArrayConstructor,Iq=cb.exportTypedArrayMethod,Cq=!!function(){try{new Int8Array(1).with(2,{valueOf:function(){throw 8}})}catch(t){return 8===t}}();Iq("with",{with:function(t,e){var r=Pq(this),n=Mq(t),i=Sq(r)?Tq(e):+e;return Eq(r,Oq(r),n,i)}}.with,!Cq);var Rq=ti,jq=w,Lq=fi,Dq=String.fromCharCode,zq=jq("".charAt),Fq=jq(/./.exec),Nq=jq("".slice),Bq=/^[\da-f]{2}$/i,Uq=/^[\da-f]{4}$/i;Rq({global:!0},{unescape:function(t){for(var e,r,n=Lq(t),i="",a=n.length,o=0;o<a;){if("%"===(e=zq(n,o++)))if("u"===zq(n,o)){if(r=Nq(n,o+1,o+5),Fq(Uq,r)){i+=Dq(parseInt(r,16)),o+=5;continue}}else if(r=Nq(n,o,o+2),Fq(Bq,r)){i+=Dq(parseInt(r,16)),o+=2;continue}i+=e}return i}});var Yq=w,Gq=Jv,Wq=SA.exports.getWeakData,Hq=ty,qq=Ie,Xq=I,Vq=U,Qq=Il,Kq=Nt,Jq=Mr.set,Zq=Mr.getterFor,$q=Va.find,tX=Va.findIndex,eX=Yq([].splice),rX=0,nX=function(t){return t.frozen||(t.frozen=new iX)},iX=function(){this.entries=[]},aX=function(t,e){return $q(t.entries,(function(t){return t[0]===e}))};iX.prototype={get:function(t){var e=aX(this,t);if(e)return e[1]},has:function(t){return!!aX(this,t)},set:function(t,e){var r=aX(this,t);r?r[1]=e:this.entries.push([t,e])},delete:function(t){var e=tX(this.entries,(function(e){return e[0]===t}));return~e&&eX(this.entries,e,1),!!~e}};var oX,sX={getConstructor:function(t,e,r,n){var i=t((function(t,i){Hq(t,a),Jq(t,{type:e,id:rX++,frozen:void 0}),Xq(i)||Qq(i,t[n],{that:t,AS_ENTRIES:r})})),a=i.prototype,o=Zq(e),s=function(t,e,r){var n=o(t),i=Wq(qq(e),!0);return!0===i?nX(n).set(e,r):i[n.id]=r,t};return Gq(a,{delete:function(t){var e=o(this);if(!Vq(t))return!1;var r=Wq(t);return!0===r?nX(e).delete(t):r&&Kq(r,e.id)&&delete r[e.id]},has:function(t){var e=o(this);if(!Vq(t))return!1;var r=Wq(t);return!0===r?nX(e).has(t):r&&Kq(r,e.id)}}),Gq(a,r?{get:function(t){var e=o(this);if(Vq(t)){var r=Wq(t);return!0===r?nX(e).get(t):r?r[e.id]:void 0}},set:function(t,e){return s(this,t,e)}}:{add:function(t){return s(this,t,!0)}}),i}},cX=jA,uX=r,lX=w,hX=Jv,fX=SA.exports,dX=h_,pX=sX,gX=U,vX=Mr.enforce,yX=i,mX=ur,bX=Object,xX=Array.isArray,wX=bX.isExtensible,AX=bX.isFrozen,_X=bX.isSealed,kX=bX.freeze,EX=bX.seal,SX=!uX.ActiveXObject&&"ActiveXObject"in uX,MX=function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},TX=dX("WeakMap",MX,pX),PX=TX.prototype,OX=lX(PX.set);if(mX)if(SX){oX=pX.getConstructor(MX,"WeakMap",!0),fX.enable();var IX=lX(PX.delete),CX=lX(PX.has),RX=lX(PX.get);hX(PX,{delete:function(t){if(gX(t)&&!wX(t)){var e=vX(this);return e.frozen||(e.frozen=new oX),IX(this,t)||e.frozen.delete(t)}return IX(this,t)},has:function(t){if(gX(t)&&!wX(t)){var e=vX(this);return e.frozen||(e.frozen=new oX),CX(this,t)||e.frozen.has(t)}return CX(this,t)},get:function(t){if(gX(t)&&!wX(t)){var e=vX(this);return e.frozen||(e.frozen=new oX),CX(this,t)?RX(this,t):e.frozen.get(t)}return RX(this,t)},set:function(t,e){if(gX(t)&&!wX(t)){var r=vX(this);r.frozen||(r.frozen=new oX),CX(this,t)?OX(this,t,e):r.frozen.set(t,e)}else OX(this,t,e);return this}})}else cX&&yX((function(){var t=kX([]);return OX(new TX,t,1),!AX(t)}))&&hX(PX,{set:function(t,e){var r;return xX(t)&&(AX(t)?r=kX:_X(t)&&(r=EX)),OX(this,t,e),r&&r(t),this}});h_("WeakSet",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),sX);var jX="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",LX=jX+"+/",DX=jX+"-_",zX=function(t){for(var e={},r=0;r<64;r++)e[t.charAt(r)]=r;return e},FX={i2c:LX,c2i:zX(LX),i2cUrl:DX,c2iUrl:zX(DX)},NX=ti,BX=r,UX=W,YX=w,GX=u,WX=i,HX=fi,qX=lP,XX=FX.c2i,VX=/[^\d+/a-z]/i,QX=/[\t\n\f\r ]+/g,KX=/[=]{1,2}$/,JX=UX("atob"),ZX=String.fromCharCode,$X=YX("".charAt),tV=YX("".replace),eV=YX(VX.exec),rV=!!JX&&!WX((function(){return"hi"!==JX("aGk=")})),nV=rV&&WX((function(){return""!==JX(" ")})),iV=rV&&!WX((function(){JX("a")})),aV=rV&&!WX((function(){JX()})),oV=rV&&1!==JX.length;NX({global:!0,bind:!0,enumerable:!0,forced:!rV||nV||iV||aV||oV},{atob:function(t){if(qX(arguments.length,1),rV&&!nV&&!iV)return GX(JX,BX,t);var e,r,n,i=tV(HX(t),QX,""),a="",o=0,s=0;if(i.length%4==0&&(i=tV(i,KX,"")),(e=i.length)%4==1||eV(VX,i))throw new(UX("DOMException"))("The string is not correctly encoded","InvalidCharacterError");for(;o<e;)r=$X(i,o++),n=s%4?64*n+XX[r]:XX[r],s++%4&&(a+=ZX(255&n>>(-2*s&6)));return a}});var sV=ti,cV=r,uV=W,lV=w,hV=u,fV=i,dV=fi,pV=lP,gV=FX.i2c,vV=uV("btoa"),yV=lV("".charAt),mV=lV("".charCodeAt),bV=!!vV&&!fV((function(){return"aGk="!==vV("hi")})),xV=bV&&!fV((function(){vV()})),wV=bV&&fV((function(){return"bnVsbA=="!==vV(null)})),AV=bV&&1!==vV.length;sV({global:!0,bind:!0,enumerable:!0,forced:!bV||xV||wV||AV},{btoa:function(t){if(pV(arguments.length,1),bV)return hV(vV,cV,dV(t));for(var e,r,n=dV(t),i="",a=0,o=gV;yV(n,a)||(o="=",a%1);){if((r=mV(n,a+=3/4))>255)throw new(uV("DOMException"))("The string contains characters outside of the Latin1 range","InvalidCharacterError");i+=yV(o,63&(e=e<<8|r)>>8-a%1*8)}return i}});var _V={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0},kV=pe("span").classList,EV=kV&&kV.constructor&&kV.constructor.prototype,SV=EV===Object.prototype?void 0:EV,MV=r,TV=_V,PV=SV,OV=Nf,IV=He,CV=function(t){if(t&&t.forEach!==OV)try{IV(t,"forEach",OV)}catch(e){t.forEach=OV}};for(var RV in TV)TV[RV]&&CV(MV[RV]&&MV[RV].prototype);CV(PV);var jV=r,LV=_V,DV=SV,zV=lp,FV=He,NV=ha,BV=$t("iterator"),UV=zV.values,YV=function(t,e){if(t){if(t[BV]!==UV)try{FV(t,BV,UV)}catch(e){t[BV]=UV}if(NV(t,e,!0),LV[e])for(var r in zV)if(t[r]!==zV[r])try{FV(t,r,zV[r])}catch(e){t[r]=zV[r]}}};for(var GV in LV)YV(jV[GV]&&jV[GV].prototype,GV);YV(DV,"DOMTokenList");var WV={IndexSizeError:{s:"INDEX_SIZE_ERR",c:1,m:1},DOMStringSizeError:{s:"DOMSTRING_SIZE_ERR",c:2,m:0},HierarchyRequestError:{s:"HIERARCHY_REQUEST_ERR",c:3,m:1},WrongDocumentError:{s:"WRONG_DOCUMENT_ERR",c:4,m:1},InvalidCharacterError:{s:"INVALID_CHARACTER_ERR",c:5,m:1},NoDataAllowedError:{s:"NO_DATA_ALLOWED_ERR",c:6,m:0},NoModificationAllowedError:{s:"NO_MODIFICATION_ALLOWED_ERR",c:7,m:1},NotFoundError:{s:"NOT_FOUND_ERR",c:8,m:1},NotSupportedError:{s:"NOT_SUPPORTED_ERR",c:9,m:1},InUseAttributeError:{s:"INUSE_ATTRIBUTE_ERR",c:10,m:1},InvalidStateError:{s:"INVALID_STATE_ERR",c:11,m:1},SyntaxError:{s:"SYNTAX_ERR",c:12,m:1},InvalidModificationError:{s:"INVALID_MODIFICATION_ERR",c:13,m:1},NamespaceError:{s:"NAMESPACE_ERR",c:14,m:1},InvalidAccessError:{s:"INVALID_ACCESS_ERR",c:15,m:1},ValidationError:{s:"VALIDATION_ERR",c:16,m:0},TypeMismatchError:{s:"TYPE_MISMATCH_ERR",c:17,m:1},SecurityError:{s:"SECURITY_ERR",c:18,m:1},NetworkError:{s:"NETWORK_ERR",c:19,m:1},AbortError:{s:"ABORT_ERR",c:20,m:1},URLMismatchError:{s:"URL_MISMATCH_ERR",c:21,m:1},QuotaExceededError:{s:"QUOTA_EXCEEDED_ERR",c:22,m:1},TimeoutError:{s:"TIMEOUT_ERR",c:23,m:1},InvalidNodeTypeError:{s:"INVALID_NODE_TYPE_ERR",c:24,m:1},DataCloneError:{s:"DATA_CLONE_ERR",c:25,m:1}},HV=ti,qV=qb,XV=W,VV=i,QV=Fi,KV=v,JV=Se.f,ZV=Qr,$V=Vi,tQ=Nt,eQ=ty,rQ=Ie,nQ=zu,iQ=Xc,aQ=WV,oQ=ru,sQ=Mr,cQ=a,uQ="DOMException",lQ="DATA_CLONE_ERR",hQ=XV("Error"),fQ=XV(uQ)||function(){try{(new(XV("MessageChannel")||qV("worker_threads").MessageChannel)).port1.postMessage(new WeakMap)}catch(t){if(t.name===lQ&&25===t.code)return t.constructor}}(),dQ=fQ&&fQ.prototype,pQ=hQ.prototype,gQ=sQ.set,vQ=sQ.getterFor(uQ),yQ="stack"in new hQ(uQ),mQ=function(t){return tQ(aQ,t)&&aQ[t].m?aQ[t].c:0},bQ=function(){eQ(this,xQ);var t=arguments.length,e=iQ(t<1?void 0:arguments[0]),r=iQ(t<2?void 0:arguments[1],"Error"),n=mQ(r);if(gQ(this,{type:uQ,name:r,message:e,code:n}),cQ||(this.name=r,this.message=e,this.code=n),yQ){var i=new hQ(e);i.name=uQ,JV(this,"stack",KV(1,oQ(i.stack,1)))}},xQ=bQ.prototype=QV(pQ),wQ=function(t){return{enumerable:!0,configurable:!0,get:t}},AQ=function(t){return wQ((function(){return vQ(this)[t]}))};cQ&&($V(xQ,"code",AQ("code")),$V(xQ,"message",AQ("message")),$V(xQ,"name",AQ("name"))),JV(xQ,"constructor",KV(1,bQ));var _Q=VV((function(){return!(new fQ instanceof hQ)})),kQ=_Q||VV((function(){return pQ.toString!==nQ||"2: 1"!==String(new fQ(1,2))})),EQ=_Q||VV((function(){return 25!==new fQ(1,"DataCloneError").code}));_Q||25!==fQ[lQ]||dQ[lQ];HV({global:!0,constructor:!0,forced:_Q},{DOMException:_Q?bQ:fQ});var SQ=XV(uQ),MQ=SQ.prototype;for(var TQ in kQ&&fQ===SQ&&ZV(MQ,"toString",nQ),EQ&&cQ&&fQ===SQ&&$V(MQ,"code",wQ((function(){return mQ(rQ(this).name)}))),aQ)if(tQ(aQ,TQ)){var PQ=aQ[TQ],OQ=PQ.s,IQ=KV(6,PQ.c);tQ(SQ,OQ)||JV(SQ,OQ,IQ),tQ(MQ,OQ)||JV(MQ,OQ,IQ)}var CQ=ti,RQ=r,jQ=W,LQ=v,DQ=Se.f,zQ=Nt,FQ=ty,NQ=Hc,BQ=Xc,UQ=WV,YQ=ru,GQ=a,WQ="DOMException",HQ=jQ("Error"),qQ=jQ(WQ),XQ=function(){FQ(this,VQ);var t=arguments.length,e=BQ(t<1?void 0:arguments[0]),r=BQ(t<2?void 0:arguments[1],"Error"),n=new qQ(e,r),i=new HQ(e);return i.name=WQ,DQ(n,"stack",LQ(1,YQ(i.stack,1))),NQ(n,this,XQ),n},VQ=XQ.prototype=qQ.prototype,QQ="stack"in new HQ(WQ),KQ="stack"in new qQ(1,2),JQ=qQ&&GQ&&Object.getOwnPropertyDescriptor(RQ,WQ),ZQ=!(!JQ||JQ.writable&&JQ.configurable),$Q=QQ&&!ZQ&&!KQ;CQ({global:!0,constructor:!0,forced:$Q},{DOMException:$Q?XQ:qQ});var tK=jQ(WQ),eK=tK.prototype;if(eK.constructor!==tK)for(var rK in DQ(eK,"constructor",LQ(1,tK)),UQ)if(zQ(UQ,rK)){var nK=UQ[rK],iK=nK.s;zQ(tK,iK)||DQ(tK,iK,LQ(6,nK.c))}var aK="DOMException";ha(W(aK),aK);var oK=FP.clear;ti({global:!0,bind:!0,enumerable:!0,forced:r.clearImmediate!==oK},{clearImmediate:oK});var sK="function"==typeof Bun&&Bun&&"string"==typeof Bun.version,cK=r,uK=Es,lK=N,hK=sK,fK=q,dK=Bi,pK=lP,gK=cK.Function,vK=/MSIE .\./.test(fK)||hK&&function(){var t=cK.Bun.version.split(".");return t.length<3||"0"===t[0]&&(t[1]<3||"3"===t[1]&&"0"===t[2])}(),yK=function(t,e){var r=e?2:1;return vK?function(n,i){var a=pK(arguments.length,1)>r,o=lK(n)?n:gK(n),s=a?dK(arguments,r):[],c=a?function(){uK(o,this,s)}:o;return e?t(c,i):t(c)}:t},mK=ti,bK=r,xK=FP.set,wK=yK,AK=bK.setImmediate?wK(xK,!1):xK;mK({global:!0,bind:!0,enumerable:!0,forced:bK.setImmediate!==AK},{setImmediate:AK});var _K=r,kK=pO,EK=gt,SK=lP,MK=a;ti({global:!0,enumerable:!0,dontCallGetSet:!0,forced:i((function(){return MK&&1!==Object.getOwnPropertyDescriptor(_K,"queueMicrotask").value.length}))},{queueMicrotask:function(t){SK(arguments.length,1),kK(EK(t))}});var TK=ti,PK=r,OK=Vi,IK=a,CK=TypeError,RK=Object.defineProperty,jK=PK.self!==PK;try{if(IK){var LK=Object.getOwnPropertyDescriptor(PK,"self");!jK&&LK&&LK.get&&LK.enumerable||OK(PK,"self",{get:function(){return PK},set:function(t){if(this!==PK)throw new CK("Illegal invocation");RK(PK,"self",{value:t,writable:!0,configurable:!0,enumerable:!0})},configurable:!0,enumerable:!0})}else TK({global:!0,simple:!0,forced:jK},{self:PK})}catch(t){}var DK,zK=ti,FK=r,NK=W,BK=w,UK=i,YK=Wt,GK=N,WK=Ra,HK=I,qK=U,XK=ut,VK=Il,QK=Ie,KK=ui,JK=Nt,ZK=yh,$K=He,tJ=hn,eJ=lP,rJ=BR,nJ=P_,iJ=VL,aJ=oD,oJ=ux,sJ=iu,cJ=ex,uJ=FK.Object,lJ=FK.Array,hJ=FK.Date,fJ=FK.Error,dJ=FK.TypeError,pJ=FK.PerformanceMark,gJ=NK("DOMException"),vJ=nJ.Map,yJ=nJ.has,mJ=nJ.get,bJ=nJ.set,xJ=iJ.Set,wJ=iJ.add,AJ=iJ.has,_J=NK("Object","keys"),kJ=BK([].push),EJ=BK((!0).valueOf),SJ=BK(1..valueOf),MJ=BK("".valueOf),TJ=BK(hJ.prototype.getTime),PJ=YK("structuredClone"),OJ="DataCloneError",IJ="Transferring",CJ=function(t){return!UK((function(){var e=new FK.Set([7]),r=t(e),n=t(uJ(7));return r===e||!r.has(7)||!qK(n)||7!=+n}))&&t},RJ=function(t,e){return!UK((function(){var r=new e,n=t({a:r,b:r});return!(n&&n.a===n.b&&n.a instanceof e&&n.a.stack===r.stack)}))},jJ=FK.structuredClone,LJ=!RJ(jJ,fJ)||!RJ(jJ,gJ)||(DK=jJ,!!UK((function(){var t=DK(new FK.AggregateError([1],PJ,{cause:3}));return"AggregateError"!==t.name||1!==t.errors[0]||t.message!==PJ||3!==t.cause}))),DJ=!jJ&&CJ((function(t){return new pJ(PJ,{detail:t}).detail})),zJ=CJ(jJ)||DJ,FJ=function(t){throw new gJ("Uncloneable type: "+t,OJ)},NJ=function(t,e){throw new gJ((e||"Cloning")+" of "+t+" cannot be properly polyfilled in this engine",OJ)},BJ=function(t,e){return zJ||NJ(e),zJ(t)},UJ=function(t,e,r){if(yJ(e,t))return mJ(e,t);var n,i,a,o,s,c;if("SharedArrayBuffer"===(r||KK(t)))n=zJ?zJ(t):t;else{var u=FK.DataView;u||GK(t.slice)||NJ("ArrayBuffer");try{if(GK(t.slice)&&!t.resizable)n=t.slice(0);else{i=t.byteLength,a="maxByteLength"in t?{maxByteLength:t.maxByteLength}:void 0,n=new ArrayBuffer(i,a),o=new u(t),s=new u(n);for(c=0;c<i;c++)s.setUint8(c,o.getUint8(c))}}catch(t){throw new gJ("ArrayBuffer is detached",OJ)}}return bJ(e,t,n),n},YJ=function(t,e){if(XK(t)&&FJ("Symbol"),!qK(t))return t;if(e){if(yJ(e,t))return mJ(e,t)}else e=new vJ;var r,n,i,a,o,s,c,u,l=KK(t);switch(l){case"Array":i=lJ(tJ(t));break;case"Object":i={};break;case"Map":i=new vJ;break;case"Set":i=new xJ;break;case"RegExp":i=new RegExp(t.source,rJ(t));break;case"Error":switch(n=t.name){case"AggregateError":i=new(NK(n))([]);break;case"EvalError":case"RangeError":case"ReferenceError":case"SuppressedError":case"SyntaxError":case"TypeError":case"URIError":i=new(NK(n));break;case"CompileError":case"LinkError":case"RuntimeError":i=new(NK("WebAssembly",n));break;default:i=new fJ}break;case"DOMException":i=new gJ(t.message,t.name);break;case"ArrayBuffer":case"SharedArrayBuffer":i=UJ(t,e,l);break;case"DataView":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float16Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":s="DataView"===l?t.byteLength:t.length,i=function(t,e,r,n,i){var a=FK[e];return qK(a)||NJ(e),new a(UJ(t.buffer,i),r,n)}(t,l,t.byteOffset,s,e);break;case"DOMQuad":try{i=new DOMQuad(YJ(t.p1,e),YJ(t.p2,e),YJ(t.p3,e),YJ(t.p4,e))}catch(e){i=BJ(t,l)}break;case"File":if(zJ)try{i=zJ(t),KK(i)!==l&&(i=void 0)}catch(t){}if(!i)try{i=new File([t],t.name,t)}catch(t){}i||NJ(l);break;case"FileList":if(a=function(){var t;try{t=new FK.DataTransfer}catch(e){try{t=new FK.ClipboardEvent("").clipboardData}catch(t){}}return t&&t.items&&t.files?t:null}()){for(o=0,s=tJ(t);o<s;o++)a.items.add(YJ(t[o],e));i=a.files}else i=BJ(t,l);break;case"ImageData":try{i=new ImageData(YJ(t.data,e),t.width,t.height,{colorSpace:t.colorSpace})}catch(e){i=BJ(t,l)}break;default:if(zJ)i=zJ(t);else switch(l){case"BigInt":i=uJ(t.valueOf());break;case"Boolean":i=uJ(EJ(t));break;case"Number":i=uJ(SJ(t));break;case"String":i=uJ(MJ(t));break;case"Date":i=new hJ(TJ(t));break;case"Blob":try{i=t.slice(0,t.size,t.type)}catch(t){NJ(l)}break;case"DOMPoint":case"DOMPointReadOnly":r=FK[l];try{i=r.fromPoint?r.fromPoint(t):new r(t.x,t.y,t.z,t.w)}catch(t){NJ(l)}break;case"DOMRect":case"DOMRectReadOnly":r=FK[l];try{i=r.fromRect?r.fromRect(t):new r(t.x,t.y,t.width,t.height)}catch(t){NJ(l)}break;case"DOMMatrix":case"DOMMatrixReadOnly":r=FK[l];try{i=r.fromMatrix?r.fromMatrix(t):new r(t)}catch(t){NJ(l)}break;case"AudioData":case"VideoFrame":GK(t.clone)||NJ(l);try{i=t.clone()}catch(t){FJ(l)}break;case"CropTarget":case"CryptoKey":case"FileSystemDirectoryHandle":case"FileSystemFileHandle":case"FileSystemHandle":case"GPUCompilationInfo":case"GPUCompilationMessage":case"ImageBitmap":case"RTCCertificate":case"WebAssembly.Module":NJ(l);default:FJ(l)}}switch(bJ(e,t,i),l){case"Array":case"Object":for(c=_J(t),o=0,s=tJ(c);o<s;o++)u=c[o],ZK(i,u,YJ(t[u],e));break;case"Map":t.forEach((function(t,r){bJ(i,YJ(r,e),YJ(t,e))}));break;case"Set":t.forEach((function(t){wJ(i,YJ(t,e))}));break;case"Error":$K(i,"message",YJ(t.message,e)),JK(t,"cause")&&$K(i,"cause",YJ(t.cause,e)),"AggregateError"===n?i.errors=YJ(t.errors,e):"SuppressedError"===n&&(i.error=YJ(t.error,e),i.suppressed=YJ(t.suppressed,e));case"DOMException":sJ&&$K(i,"stack",YJ(t.stack,e))}return i};zK({global:!0,enumerable:!0,sham:!cJ,forced:LJ},{structuredClone:function(t){var e,r,n=eJ(arguments.length,1)>1&&!HK(arguments[1])?QK(arguments[1]):void 0,i=n?n.transfer:void 0;void 0!==i&&(r=function(t,e){if(!qK(t))throw new dJ("Transfer option cannot be converted to a sequence");var r=[];VK(t,(function(t){kJ(r,QK(t))}));for(var n,i,a,o,s,c=0,u=tJ(r),l=new xJ;c<u;){if(n=r[c++],"ArrayBuffer"===(i=KK(n))?AJ(l,n):yJ(e,n))throw new gJ("Duplicate transferable",OJ);if("ArrayBuffer"!==i){if(cJ)o=jJ(n,{transfer:[n]});else switch(i){case"ImageBitmap":a=FK.OffscreenCanvas,WK(a)||NJ(i,IJ);try{(s=new a(n.width,n.height)).getContext("bitmaprenderer").transferFromImageBitmap(n),o=s.transferToImageBitmap()}catch(t){}break;case"AudioData":case"VideoFrame":GK(n.clone)&&GK(n.close)||NJ(i,IJ);try{o=n.clone(),n.close()}catch(t){}break;case"MediaSourceHandle":case"MessagePort":case"OffscreenCanvas":case"ReadableStream":case"TransformStream":case"WritableStream":NJ(i,IJ)}if(void 0===o)throw new gJ("This object cannot be transferred: "+i,OJ);bJ(e,n,o)}else wJ(l,n)}return l}(i,e=new vJ));var a=YJ(t,e);return r&&function(t){aJ(t,(function(t){cJ?zJ(t,{transfer:[t]}):GK(t.transfer)?t.transfer():oJ?oJ(t):NJ("ArrayBuffer",IJ)}))}(r),a}});var GJ=ti,WJ=r,HJ=yK(WJ.setInterval,!0);GJ({global:!0,bind:!0,forced:WJ.setInterval!==HJ},{setInterval:HJ});var qJ=ti,XJ=r,VJ=yK(XJ.setTimeout,!0);qJ({global:!0,bind:!0,forced:XJ.setTimeout!==VJ},{setTimeout:VJ});var QJ=i,KJ=a,JJ=$t("iterator"),ZJ=!QJ((function(){var t=new URL("b?a=1&b=2&c=3","http://a"),e=t.searchParams,r=new URLSearchParams("a=1&a=2&b=3"),n="";return t.pathname="c%20d",e.forEach((function(t,r){e.delete("b"),n+=r+t})),r.delete("a",2),r.delete("b",void 0),!e.size&&!KJ||!e.sort||"http://a/c%20d?a=1&c=3"!==t.href||"3"!==e.get("c")||"a=1"!==String(new URLSearchParams("?a=1"))||!e[JJ]||"a"!==new URL("https://a@b").username||"b"!==new URLSearchParams(new URLSearchParams("a=b")).get("a")||"xn--e1aybc"!==new URL("http://тест").host||"#%D0%B1"!==new URL("http://a#б").hash||"a1c3"!==n||"x"!==new URL("http://x",void 0).host})),$J=w,tZ=2147483647,eZ=/[^\0-\u007E]/,rZ=/[.\u3002\uFF0E\uFF61]/g,nZ="Overflow: input needs wider integers to process",iZ=RangeError,aZ=$J(rZ.exec),oZ=Math.floor,sZ=String.fromCharCode,cZ=$J("".charCodeAt),uZ=$J([].join),lZ=$J([].push),hZ=$J("".replace),fZ=$J("".split),dZ=$J("".toLowerCase),pZ=function(t){return t+22+75*(t<26)},gZ=function(t,e,r){var n=0;for(t=r?oZ(t/700):t>>1,t+=oZ(t/e);t>455;)t=oZ(t/35),n+=36;return oZ(n+36*t/(t+38))},vZ=function(t){var e=[];t=function(t){for(var e=[],r=0,n=t.length;r<n;){var i=cZ(t,r++);if(i>=55296&&i<=56319&&r<n){var a=cZ(t,r++);56320==(64512&a)?lZ(e,((1023&i)<<10)+(1023&a)+65536):(lZ(e,i),r--)}else lZ(e,i)}return e}(t);var r,n,i=t.length,a=128,o=0,s=72;for(r=0;r<t.length;r++)(n=t[r])<128&&lZ(e,sZ(n));var c=e.length,u=c;for(c&&lZ(e,"-");u<i;){var l=tZ;for(r=0;r<t.length;r++)(n=t[r])>=a&&n<l&&(l=n);var h=u+1;if(l-a>oZ((tZ-o)/h))throw new iZ(nZ);for(o+=(l-a)*h,a=l,r=0;r<t.length;r++){if((n=t[r])<a&&++o>tZ)throw new iZ(nZ);if(n===a){for(var f=o,d=36;;){var p=d<=s?1:d>=s+26?26:d-s;if(f<p)break;var g=f-p,v=36-p;lZ(e,sZ(pZ(p+g%v))),f=oZ(g/v),d+=36}lZ(e,sZ(pZ(f))),s=gZ(o,h,u===c),o=0,u++}}o++,a++}return uZ(e,"")},yZ=ti,mZ=r,bZ=YP,xZ=u,wZ=w,AZ=a,_Z=ZJ,kZ=Qr,EZ=Vi,SZ=Jv,MZ=ha,TZ=Id,PZ=Mr,OZ=ty,IZ=N,CZ=Nt,RZ=ma,jZ=ui,LZ=Ie,DZ=U,zZ=fi,FZ=Fi,NZ=v,BZ=dl,UZ=ol,YZ=Zd,GZ=lP,WZ=bg,HZ=$t("iterator"),qZ="URLSearchParams",XZ=qZ+"Iterator",VZ=PZ.set,QZ=PZ.getterFor(qZ),KZ=PZ.getterFor(XZ),JZ=bZ("fetch"),ZZ=bZ("Request"),$Z=bZ("Headers"),t$=ZZ&&ZZ.prototype,e$=$Z&&$Z.prototype,r$=mZ.RegExp,n$=mZ.TypeError,i$=mZ.decodeURIComponent,a$=mZ.encodeURIComponent,o$=wZ("".charAt),s$=wZ([].join),c$=wZ([].push),u$=wZ("".replace),l$=wZ([].shift),h$=wZ([].splice),f$=wZ("".split),d$=wZ("".slice),p$=/\+/g,g$=Array(4),v$=function(t){return g$[t-1]||(g$[t-1]=r$("((?:%[\\da-f]{2}){"+t+"})","gi"))},y$=function(t){try{return i$(t)}catch(e){return t}},m$=function(t){var e=u$(t,p$," "),r=4;try{return i$(e)}catch(t){for(;r;)e=u$(e,v$(r--),y$);return e}},b$=/[!'()~]|%20/g,x$={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"},w$=function(t){return x$[t]},A$=function(t){return u$(a$(t),b$,w$)},_$=TZ((function(t,e){VZ(this,{type:XZ,target:QZ(t).entries,index:0,kind:e})}),qZ,(function(){var t=KZ(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=void 0,YZ(void 0,!0);var n=e[r];switch(t.kind){case"keys":return YZ(n.key,!1);case"values":return YZ(n.value,!1)}return YZ([n.key,n.value],!1)}),!0),k$=function(t){this.entries=[],this.url=null,void 0!==t&&(DZ(t)?this.parseObject(t):this.parseQuery("string"==typeof t?"?"===o$(t,0)?d$(t,1):t:zZ(t)))};k$.prototype={type:qZ,bindURL:function(t){this.url=t,this.update()},parseObject:function(t){var e,r,n,i,a,o,s,c=this.entries,u=UZ(t);if(u)for(r=(e=BZ(t,u)).next;!(n=xZ(r,e)).done;){if(a=(i=BZ(LZ(n.value))).next,(o=xZ(a,i)).done||(s=xZ(a,i)).done||!xZ(a,i).done)throw new n$("Expected sequence with length 2");c$(c,{key:zZ(o.value),value:zZ(s.value)})}else for(var l in t)CZ(t,l)&&c$(c,{key:l,value:zZ(t[l])})},parseQuery:function(t){if(t)for(var e,r,n=this.entries,i=f$(t,"&"),a=0;a<i.length;)(e=i[a++]).length&&(r=f$(e,"="),c$(n,{key:m$(l$(r)),value:m$(s$(r,"="))}))},serialize:function(){for(var t,e=this.entries,r=[],n=0;n<e.length;)t=e[n++],c$(r,A$(t.key)+"="+A$(t.value));return s$(r,"&")},update:function(){this.entries.length=0,this.parseQuery(this.url.query)},updateURL:function(){this.url&&this.url.update()}};var E$=function(){OZ(this,S$);var t=VZ(this,new k$(arguments.length>0?arguments[0]:void 0));AZ||(this.size=t.entries.length)},S$=E$.prototype;if(SZ(S$,{append:function(t,e){var r=QZ(this);GZ(arguments.length,2),c$(r.entries,{key:zZ(t),value:zZ(e)}),AZ||this.length++,r.updateURL()},delete:function(t){for(var e=QZ(this),r=GZ(arguments.length,1),n=e.entries,i=zZ(t),a=r<2?void 0:arguments[1],o=void 0===a?a:zZ(a),s=0;s<n.length;){var c=n[s];if(c.key!==i||void 0!==o&&c.value!==o)s++;else if(h$(n,s,1),void 0!==o)break}AZ||(this.size=n.length),e.updateURL()},get:function(t){var e=QZ(this).entries;GZ(arguments.length,1);for(var r=zZ(t),n=0;n<e.length;n++)if(e[n].key===r)return e[n].value;return null},getAll:function(t){var e=QZ(this).entries;GZ(arguments.length,1);for(var r=zZ(t),n=[],i=0;i<e.length;i++)e[i].key===r&&c$(n,e[i].value);return n},has:function(t){for(var e=QZ(this).entries,r=GZ(arguments.length,1),n=zZ(t),i=r<2?void 0:arguments[1],a=void 0===i?i:zZ(i),o=0;o<e.length;){var s=e[o++];if(s.key===n&&(void 0===a||s.value===a))return!0}return!1},set:function(t,e){var r=QZ(this);GZ(arguments.length,1);for(var n,i=r.entries,a=!1,o=zZ(t),s=zZ(e),c=0;c<i.length;c++)(n=i[c]).key===o&&(a?h$(i,c--,1):(a=!0,n.value=s));a||c$(i,{key:o,value:s}),AZ||(this.size=i.length),r.updateURL()},sort:function(){var t=QZ(this);WZ(t.entries,(function(t,e){return t.key>e.key?1:-1})),t.updateURL()},forEach:function(t){for(var e,r=QZ(this).entries,n=RZ(t,arguments.length>1?arguments[1]:void 0),i=0;i<r.length;)n((e=r[i++]).value,e.key,this)},keys:function(){return new _$(this,"keys")},values:function(){return new _$(this,"values")},entries:function(){return new _$(this,"entries")}},{enumerable:!0}),kZ(S$,HZ,S$.entries,{name:"entries"}),kZ(S$,"toString",(function(){return QZ(this).serialize()}),{enumerable:!0}),AZ&&EZ(S$,"size",{get:function(){return QZ(this).entries.length},configurable:!0,enumerable:!0}),MZ(E$,qZ),yZ({global:!0,constructor:!0,forced:!_Z},{URLSearchParams:E$}),!_Z&&IZ($Z)){var M$=wZ(e$.has),T$=wZ(e$.set),P$=function(t){if(DZ(t)){var e,r=t.body;if(jZ(r)===qZ)return e=t.headers?new $Z(t.headers):new $Z,M$(e,"content-type")||T$(e,"content-type","application/x-www-form-urlencoded;charset=UTF-8"),FZ(t,{body:NZ(0,zZ(r)),headers:NZ(0,e)})}return t};if(IZ(JZ)&&yZ({global:!0,enumerable:!0,dontCallGetSet:!0,forced:!0},{fetch:function(t){return JZ(t,arguments.length>1?P$(arguments[1]):{})}}),IZ(ZZ)){var O$=function(t){return OZ(this,t$),new ZZ(t,arguments.length>1?P$(arguments[1]):{})};t$.constructor=O$,O$.prototype=t$,yZ({global:!0,constructor:!0,dontCallGetSet:!0,forced:!0},{Request:O$})}}var I$,C$=ti,R$=a,j$=ZJ,L$=r,D$=ma,z$=w,F$=Qr,N$=Vi,B$=ty,U$=Nt,Y$=QS,G$=$f,W$=Bi,H$=Nz.codeAt,q$=function(t){var e,r,n=[],i=fZ(hZ(dZ(t),rZ,"."),".");for(e=0;e<i.length;e++)r=i[e],lZ(n,aZ(eZ,r)?"xn--"+vZ(r):r);return uZ(n,".")},X$=fi,V$=ha,Q$=lP,K$={URLSearchParams:E$,getState:QZ},J$=Mr,Z$=J$.set,$$=J$.getterFor("URL"),t0=K$.URLSearchParams,e0=K$.getState,r0=L$.URL,n0=L$.TypeError,i0=L$.parseInt,a0=Math.floor,o0=Math.pow,s0=z$("".charAt),c0=z$(/./.exec),u0=z$([].join),l0=z$(1..toString),h0=z$([].pop),f0=z$([].push),d0=z$("".replace),p0=z$([].shift),g0=z$("".split),v0=z$("".slice),y0=z$("".toLowerCase),m0=z$([].unshift),b0="Invalid scheme",x0="Invalid host",w0="Invalid port",A0=/[a-z]/i,_0=/[\d+-.a-z]/i,k0=/\d/,E0=/^0x/i,S0=/^[0-7]+$/,M0=/^\d+$/,T0=/^[\da-f]+$/i,P0=/[\0\t\n\r #%/:<>?@[\\\]^|]/,O0=/[\0\t\n\r #/:<>?@[\\\]^|]/,I0=/^[\u0000-\u0020]+/,C0=/(^|[^\u0000-\u0020])[\u0000-\u0020]+$/,R0=/[\t\n\r]/g,j0=function(t){var e,r,n,i;if("number"==typeof t){for(e=[],r=0;r<4;r++)m0(e,t%256),t=a0(t/256);return u0(e,".")}if("object"==typeof t){for(e="",n=function(t){for(var e=null,r=1,n=null,i=0,a=0;a<8;a++)0!==t[a]?(i>r&&(e=n,r=i),n=null,i=0):(null===n&&(n=a),++i);return i>r&&(e=n,r=i),e}(t),r=0;r<8;r++)i&&0===t[r]||(i&&(i=!1),n===r?(e+=r?":":"::",i=!0):(e+=l0(t[r],16),r<7&&(e+=":")));return"["+e+"]"}return t},L0={},D0=Y$({},L0,{" ":1,'"':1,"<":1,">":1,"`":1}),z0=Y$({},D0,{"#":1,"?":1,"{":1,"}":1}),F0=Y$({},z0,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),N0=function(t,e){var r=H$(t,0);return r>32&&r<127&&!U$(e,t)?t:encodeURIComponent(t)},B0={ftp:21,file:null,http:80,https:443,ws:80,wss:443},U0=function(t,e){var r;return 2===t.length&&c0(A0,s0(t,0))&&(":"===(r=s0(t,1))||!e&&"|"===r)},Y0=function(t){var e;return t.length>1&&U0(v0(t,0,2))&&(2===t.length||"/"===(e=s0(t,2))||"\\"===e||"?"===e||"#"===e)},G0=function(t){return"."===t||"%2e"===y0(t)},W0={},H0={},q0={},X0={},V0={},Q0={},K0={},J0={},Z0={},$0={},t1={},e1={},r1={},n1={},i1={},a1={},o1={},s1={},c1={},u1={},l1={},h1=function(t,e,r){var n,i,a,o=X$(t);if(e){if(i=this.parse(o))throw new n0(i);this.searchParams=null}else{if(void 0!==r&&(n=new h1(r,!0)),i=this.parse(o,null,n))throw new n0(i);(a=e0(new t0)).bindURL(this),this.searchParams=a}};h1.prototype={type:"URL",parse:function(t,e,r){var n,i,a,o,s,c=this,u=e||W0,l=0,h="",f=!1,d=!1,p=!1;for(t=X$(t),e||(c.scheme="",c.username="",c.password="",c.host=null,c.port=null,c.path=[],c.query=null,c.fragment=null,c.cannotBeABaseURL=!1,t=d0(t,I0,""),t=d0(t,C0,"$1")),t=d0(t,R0,""),n=G$(t);l<=n.length;){switch(i=n[l],u){case W0:if(!i||!c0(A0,i)){if(e)return b0;u=q0;continue}h+=y0(i),u=H0;break;case H0:if(i&&(c0(_0,i)||"+"===i||"-"===i||"."===i))h+=y0(i);else{if(":"!==i){if(e)return b0;h="",u=q0,l=0;continue}if(e&&(c.isSpecial()!==U$(B0,h)||"file"===h&&(c.includesCredentials()||null!==c.port)||"file"===c.scheme&&!c.host))return;if(c.scheme=h,e)return void(c.isSpecial()&&B0[c.scheme]===c.port&&(c.port=null));h="","file"===c.scheme?u=n1:c.isSpecial()&&r&&r.scheme===c.scheme?u=X0:c.isSpecial()?u=J0:"/"===n[l+1]?(u=V0,l++):(c.cannotBeABaseURL=!0,f0(c.path,""),u=c1)}break;case q0:if(!r||r.cannotBeABaseURL&&"#"!==i)return b0;if(r.cannotBeABaseURL&&"#"===i){c.scheme=r.scheme,c.path=W$(r.path),c.query=r.query,c.fragment="",c.cannotBeABaseURL=!0,u=l1;break}u="file"===r.scheme?n1:Q0;continue;case X0:if("/"!==i||"/"!==n[l+1]){u=Q0;continue}u=Z0,l++;break;case V0:if("/"===i){u=$0;break}u=s1;continue;case Q0:if(c.scheme=r.scheme,i===I$)c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=W$(r.path),c.query=r.query;else if("/"===i||"\\"===i&&c.isSpecial())u=K0;else if("?"===i)c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=W$(r.path),c.query="",u=u1;else{if("#"!==i){c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=W$(r.path),c.path.length--,u=s1;continue}c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=W$(r.path),c.query=r.query,c.fragment="",u=l1}break;case K0:if(!c.isSpecial()||"/"!==i&&"\\"!==i){if("/"!==i){c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,u=s1;continue}u=$0}else u=Z0;break;case J0:if(u=Z0,"/"!==i||"/"!==s0(h,l+1))continue;l++;break;case Z0:if("/"!==i&&"\\"!==i){u=$0;continue}break;case $0:if("@"===i){f&&(h="%40"+h),f=!0,a=G$(h);for(var g=0;g<a.length;g++){var v=a[g];if(":"!==v||p){var y=N0(v,F0);p?c.password+=y:c.username+=y}else p=!0}h=""}else if(i===I$||"/"===i||"?"===i||"#"===i||"\\"===i&&c.isSpecial()){if(f&&""===h)return"Invalid authority";l-=G$(h).length+1,h="",u=t1}else h+=i;break;case t1:case e1:if(e&&"file"===c.scheme){u=a1;continue}if(":"!==i||d){if(i===I$||"/"===i||"?"===i||"#"===i||"\\"===i&&c.isSpecial()){if(c.isSpecial()&&""===h)return x0;if(e&&""===h&&(c.includesCredentials()||null!==c.port))return;if(o=c.parseHost(h))return o;if(h="",u=o1,e)return;continue}"["===i?d=!0:"]"===i&&(d=!1),h+=i}else{if(""===h)return x0;if(o=c.parseHost(h))return o;if(h="",u=r1,e===e1)return}break;case r1:if(!c0(k0,i)){if(i===I$||"/"===i||"?"===i||"#"===i||"\\"===i&&c.isSpecial()||e){if(""!==h){var m=i0(h,10);if(m>65535)return w0;c.port=c.isSpecial()&&m===B0[c.scheme]?null:m,h=""}if(e)return;u=o1;continue}return w0}h+=i;break;case n1:if(c.scheme="file","/"===i||"\\"===i)u=i1;else{if(!r||"file"!==r.scheme){u=s1;continue}switch(i){case I$:c.host=r.host,c.path=W$(r.path),c.query=r.query;break;case"?":c.host=r.host,c.path=W$(r.path),c.query="",u=u1;break;case"#":c.host=r.host,c.path=W$(r.path),c.query=r.query,c.fragment="",u=l1;break;default:Y0(u0(W$(n,l),""))||(c.host=r.host,c.path=W$(r.path),c.shortenPath()),u=s1;continue}}break;case i1:if("/"===i||"\\"===i){u=a1;break}r&&"file"===r.scheme&&!Y0(u0(W$(n,l),""))&&(U0(r.path[0],!0)?f0(c.path,r.path[0]):c.host=r.host),u=s1;continue;case a1:if(i===I$||"/"===i||"\\"===i||"?"===i||"#"===i){if(!e&&U0(h))u=s1;else if(""===h){if(c.host="",e)return;u=o1}else{if(o=c.parseHost(h))return o;if("localhost"===c.host&&(c.host=""),e)return;h="",u=o1}continue}h+=i;break;case o1:if(c.isSpecial()){if(u=s1,"/"!==i&&"\\"!==i)continue}else if(e||"?"!==i)if(e||"#"!==i){if(i!==I$&&(u=s1,"/"!==i))continue}else c.fragment="",u=l1;else c.query="",u=u1;break;case s1:if(i===I$||"/"===i||"\\"===i&&c.isSpecial()||!e&&("?"===i||"#"===i)){if(".."===(s=y0(s=h))||"%2e."===s||".%2e"===s||"%2e%2e"===s?(c.shortenPath(),"/"===i||"\\"===i&&c.isSpecial()||f0(c.path,"")):G0(h)?"/"===i||"\\"===i&&c.isSpecial()||f0(c.path,""):("file"===c.scheme&&!c.path.length&&U0(h)&&(c.host&&(c.host=""),h=s0(h,0)+":"),f0(c.path,h)),h="","file"===c.scheme&&(i===I$||"?"===i||"#"===i))for(;c.path.length>1&&""===c.path[0];)p0(c.path);"?"===i?(c.query="",u=u1):"#"===i&&(c.fragment="",u=l1)}else h+=N0(i,z0);break;case c1:"?"===i?(c.query="",u=u1):"#"===i?(c.fragment="",u=l1):i!==I$&&(c.path[0]+=N0(i,L0));break;case u1:e||"#"!==i?i!==I$&&("'"===i&&c.isSpecial()?c.query+="%27":c.query+="#"===i?"%23":N0(i,L0)):(c.fragment="",u=l1);break;case l1:i!==I$&&(c.fragment+=N0(i,D0))}l++}},parseHost:function(t){var e,r,n;if("["===s0(t,0)){if("]"!==s0(t,t.length-1))return x0;if(e=function(t){var e,r,n,i,a,o,s,c=[0,0,0,0,0,0,0,0],u=0,l=null,h=0,f=function(){return s0(t,h)};if(":"===f()){if(":"!==s0(t,1))return;h+=2,l=++u}for(;f();){if(8===u)return;if(":"!==f()){for(e=r=0;r<4&&c0(T0,f());)e=16*e+i0(f(),16),h++,r++;if("."===f()){if(0===r)return;if(h-=r,u>6)return;for(n=0;f();){if(i=null,n>0){if(!("."===f()&&n<4))return;h++}if(!c0(k0,f()))return;for(;c0(k0,f());){if(a=i0(f(),10),null===i)i=a;else{if(0===i)return;i=10*i+a}if(i>255)return;h++}c[u]=256*c[u]+i,2!=++n&&4!==n||u++}if(4!==n)return;break}if(":"===f()){if(h++,!f())return}else if(f())return;c[u++]=e}else{if(null!==l)return;h++,l=++u}}if(null!==l)for(o=u-l,u=7;0!==u&&o>0;)s=c[u],c[u--]=c[l+o-1],c[l+--o]=s;else if(8!==u)return;return c}(v0(t,1,-1)),!e)return x0;this.host=e}else if(this.isSpecial()){if(t=q$(t),c0(P0,t))return x0;if(e=function(t){var e,r,n,i,a,o,s,c=g0(t,".");if(c.length&&""===c[c.length-1]&&c.length--,(e=c.length)>4)return t;for(r=[],n=0;n<e;n++){if(""===(i=c[n]))return t;if(a=10,i.length>1&&"0"===s0(i,0)&&(a=c0(E0,i)?16:8,i=v0(i,8===a?1:2)),""===i)o=0;else{if(!c0(10===a?M0:8===a?S0:T0,i))return t;o=i0(i,a)}f0(r,o)}for(n=0;n<e;n++)if(o=r[n],n===e-1){if(o>=o0(256,5-e))return null}else if(o>255)return null;for(s=h0(r),n=0;n<r.length;n++)s+=r[n]*o0(256,3-n);return s}(t),null===e)return x0;this.host=e}else{if(c0(O0,t))return x0;for(e="",r=G$(t),n=0;n<r.length;n++)e+=N0(r[n],L0);this.host=e}},cannotHaveUsernamePasswordPort:function(){return!this.host||this.cannotBeABaseURL||"file"===this.scheme},includesCredentials:function(){return""!==this.username||""!==this.password},isSpecial:function(){return U$(B0,this.scheme)},shortenPath:function(){var t=this.path,e=t.length;!e||"file"===this.scheme&&1===e&&U0(t[0],!0)||t.length--},serialize:function(){var t=this,e=t.scheme,r=t.username,n=t.password,i=t.host,a=t.port,o=t.path,s=t.query,c=t.fragment,u=e+":";return null!==i?(u+="//",t.includesCredentials()&&(u+=r+(n?":"+n:"")+"@"),u+=j0(i),null!==a&&(u+=":"+a)):"file"===e&&(u+="//"),u+=t.cannotBeABaseURL?o[0]:o.length?"/"+u0(o,"/"):"",null!==s&&(u+="?"+s),null!==c&&(u+="#"+c),u},setHref:function(t){var e=this.parse(t);if(e)throw new n0(e);this.searchParams.update()},getOrigin:function(){var t=this.scheme,e=this.port;if("blob"===t)try{return new f1(t.path[0]).origin}catch(t){return"null"}return"file"!==t&&this.isSpecial()?t+"://"+j0(this.host)+(null!==e?":"+e:""):"null"},getProtocol:function(){return this.scheme+":"},setProtocol:function(t){this.parse(X$(t)+":",W0)},getUsername:function(){return this.username},setUsername:function(t){var e=G$(X$(t));if(!this.cannotHaveUsernamePasswordPort()){this.username="";for(var r=0;r<e.length;r++)this.username+=N0(e[r],F0)}},getPassword:function(){return this.password},setPassword:function(t){var e=G$(X$(t));if(!this.cannotHaveUsernamePasswordPort()){this.password="";for(var r=0;r<e.length;r++)this.password+=N0(e[r],F0)}},getHost:function(){var t=this.host,e=this.port;return null===t?"":null===e?j0(t):j0(t)+":"+e},setHost:function(t){this.cannotBeABaseURL||this.parse(t,t1)},getHostname:function(){var t=this.host;return null===t?"":j0(t)},setHostname:function(t){this.cannotBeABaseURL||this.parse(t,e1)},getPort:function(){var t=this.port;return null===t?"":X$(t)},setPort:function(t){this.cannotHaveUsernamePasswordPort()||(""===(t=X$(t))?this.port=null:this.parse(t,r1))},getPathname:function(){var t=this.path;return this.cannotBeABaseURL?t[0]:t.length?"/"+u0(t,"/"):""},setPathname:function(t){this.cannotBeABaseURL||(this.path=[],this.parse(t,o1))},getSearch:function(){var t=this.query;return t?"?"+t:""},setSearch:function(t){""===(t=X$(t))?this.query=null:("?"===s0(t,0)&&(t=v0(t,1)),this.query="",this.parse(t,u1)),this.searchParams.update()},getSearchParams:function(){return this.searchParams.facade},getHash:function(){var t=this.fragment;return t?"#"+t:""},setHash:function(t){""!==(t=X$(t))?("#"===s0(t,0)&&(t=v0(t,1)),this.fragment="",this.parse(t,l1)):this.fragment=null},update:function(){this.query=this.searchParams.serialize()||null}};var f1=function(t){var e=B$(this,d1),r=Q$(arguments.length,1)>1?arguments[1]:void 0,n=Z$(e,new h1(t,!1,r));R$||(e.href=n.serialize(),e.origin=n.getOrigin(),e.protocol=n.getProtocol(),e.username=n.getUsername(),e.password=n.getPassword(),e.host=n.getHost(),e.hostname=n.getHostname(),e.port=n.getPort(),e.pathname=n.getPathname(),e.search=n.getSearch(),e.searchParams=n.getSearchParams(),e.hash=n.getHash())},d1=f1.prototype,p1=function(t,e){return{get:function(){return $$(this)[t]()},set:e&&function(t){return $$(this)[e](t)},configurable:!0,enumerable:!0}};if(R$&&(N$(d1,"href",p1("serialize","setHref")),N$(d1,"origin",p1("getOrigin")),N$(d1,"protocol",p1("getProtocol","setProtocol")),N$(d1,"username",p1("getUsername","setUsername")),N$(d1,"password",p1("getPassword","setPassword")),N$(d1,"host",p1("getHost","setHost")),N$(d1,"hostname",p1("getHostname","setHostname")),N$(d1,"port",p1("getPort","setPort")),N$(d1,"pathname",p1("getPathname","setPathname")),N$(d1,"search",p1("getSearch","setSearch")),N$(d1,"searchParams",p1("getSearchParams")),N$(d1,"hash",p1("getHash","setHash"))),F$(d1,"toJSON",(function(){return $$(this).serialize()}),{enumerable:!0}),F$(d1,"toString",(function(){return $$(this).serialize()}),{enumerable:!0}),r0){var g1=r0.createObjectURL,v1=r0.revokeObjectURL;g1&&F$(f1,"createObjectURL",D$(g1,r0)),v1&&F$(f1,"revokeObjectURL",D$(v1,r0))}V$(f1,"URL"),C$({global:!0,constructor:!0,forced:!j$,sham:!R$},{URL:f1});var y1=ti,m1=i,b1=lP,x1=fi,w1=ZJ,A1=W("URL"),_1=w1&&m1((function(){A1.canParse()})),k1=m1((function(){return 1!==A1.canParse.length}));y1({target:"URL",stat:!0,forced:!_1||k1},{canParse:function(t){var e=b1(arguments.length,1),r=x1(t),n=e<2||void 0===arguments[1]?void 0:x1(arguments[1]);try{return!!new A1(r,n)}catch(t){return!1}}});var E1=ti,S1=lP,M1=fi,T1=ZJ,P1=W("URL");E1({target:"URL",stat:!0,forced:!T1},{parse:function(t){var e=S1(arguments.length,1),r=M1(t),n=e<2||void 0===arguments[1]?void 0:M1(arguments[1]);try{return new P1(r,n)}catch(t){return null}}});var O1=u;ti({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return O1(URL.prototype.toString,this)}});var I1=Qr,C1=w,R1=fi,j1=lP,L1=URLSearchParams,D1=L1.prototype,z1=C1(D1.append),F1=C1(D1.delete),N1=C1(D1.forEach),B1=C1([].push),U1=new L1("a=1&a=2&b=3");U1.delete("a",1),U1.delete("b",void 0),U1+""!="a=2"&&I1(D1,"delete",(function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return F1(this,t);var n=[];N1(this,(function(t,e){B1(n,{key:e,value:t})})),j1(e,1);for(var i,a=R1(t),o=R1(r),s=0,c=0,u=!1,l=n.length;s<l;)i=n[s++],u||i.key===a?(u=!0,F1(this,i.key)):c++;for(;c<l;)(i=n[c++]).key===a&&i.value===o||z1(this,i.key,i.value)}),{enumerable:!0,unsafe:!0});var Y1=Qr,G1=w,W1=fi,H1=lP,q1=URLSearchParams,X1=q1.prototype,V1=G1(X1.getAll),Q1=G1(X1.has),K1=new q1("a=1");!K1.has("a",2)&&K1.has("a",void 0)||Y1(X1,"has",(function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return Q1(this,t);var n=V1(this,t);H1(e,1);for(var i=W1(r),a=0;a<n.length;)if(n[a++]===i)return!0;return!1}),{enumerable:!0,unsafe:!0});var J1=a,Z1=w,$1=Vi,t2=URLSearchParams.prototype,e2=Z1(t2.forEach);J1&&!("size"in t2)&&$1(t2,"size",{get:function(){var t=0;return e2(this,(function(){t++})),t},configurable:!0,enumerable:!0});!function(t){var e=function(t){var e,r=Object.prototype,n=r.hasOwnProperty,i=Object.defineProperty||function(t,e,r){t[e]=r.value},a="function"==typeof Symbol?Symbol:{},o=a.iterator||"@@iterator",s=a.asyncIterator||"@@asyncIterator",c=a.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function l(t,e,r,n){var a=e&&e.prototype instanceof y?e:y,o=Object.create(a.prototype),s=new O(n||[]);return i(o,"_invoke",{value:S(t,r,s)}),o}function h(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var f="suspendedStart",d="suspendedYield",p="executing",g="completed",v={};function y(){}function m(){}function b(){}var x={};u(x,o,(function(){return this}));var w=Object.getPrototypeOf,A=w&&w(w(I([])));A&&A!==r&&n.call(A,o)&&(x=A);var _=b.prototype=y.prototype=Object.create(x);function k(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function E(t,e){function r(i,a,o,s){var c=h(t[i],t,a);if("throw"!==c.type){var u=c.arg,l=u.value;return l&&"object"==typeof l&&n.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,o,s)}),(function(t){r("throw",t,o,s)})):e.resolve(l).then((function(t){u.value=t,o(u)}),(function(t){return r("throw",t,o,s)}))}s(c.arg)}var a;i(this,"_invoke",{value:function(t,n){function i(){return new e((function(e,i){r(t,n,e,i)}))}return a=a?a.then(i,i):i()}})}function S(t,e,r){var n=f;return function(i,a){if(n===p)throw new Error("Generator is already running");if(n===g){if("throw"===i)throw a;return C()}for(r.method=i,r.arg=a;;){var o=r.delegate;if(o){var s=M(o,r);if(s){if(s===v)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===f)throw n=g,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=p;var c=h(t,e,r);if("normal"===c.type){if(n=r.done?g:d,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(n=g,r.method="throw",r.arg=c.arg)}}}function M(t,r){var n=r.method,i=t.iterator[n];if(i===e)return r.delegate=null,"throw"===n&&t.iterator.return&&(r.method="return",r.arg=e,M(t,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var a=h(i,t.iterator,r.arg);if("throw"===a.type)return r.method="throw",r.arg=a.arg,r.delegate=null,v;var o=a.arg;return o?o.done?(r[t.resultName]=o.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,v):o:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function P(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function I(t){if(t){var r=t[o];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var i=-1,a=function r(){for(;++i<t.length;)if(n.call(t,i))return r.value=t[i],r.done=!1,r;return r.value=e,r.done=!0,r};return a.next=a}}return{next:C}}function C(){return{value:e,done:!0}}return m.prototype=b,i(_,"constructor",{value:b,configurable:!0}),i(b,"constructor",{value:m,configurable:!0}),m.displayName=u(b,c,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===m||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,b):(t.__proto__=b,u(t,c,"GeneratorFunction")),t.prototype=Object.create(_),t},t.awrap=function(t){return{__await:t}},k(E.prototype),u(E.prototype,s,(function(){return this})),t.AsyncIterator=E,t.async=function(e,r,n,i,a){void 0===a&&(a=Promise);var o=new E(l(e,r,n,i),a);return t.isGeneratorFunction(r)?o:o.next().then((function(t){return t.done?t.value:o.next()}))},k(_),u(_,c,"Generator"),u(_,o,(function(){return this})),u(_,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=I,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(P),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function i(n,i){return s.type="throw",s.arg=t,r.next=n,i&&(r.method="next",r.arg=e),!!i}for(var a=this.tryEntries.length-1;a>=0;--a){var o=this.tryEntries[a],s=o.completion;if("root"===o.tryLoc)return i("end");if(o.tryLoc<=this.prev){var c=n.call(o,"catchLoc"),u=n.call(o,"finallyLoc");if(c&&u){if(this.prev<o.catchLoc)return i(o.catchLoc,!0);if(this.prev<o.finallyLoc)return i(o.finallyLoc)}else if(c){if(this.prev<o.catchLoc)return i(o.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return i(o.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var i=this.tryEntries[r];if(i.tryLoc<=this.prev&&n.call(i,"finallyLoc")&&this.prev<i.finallyLoc){var a=i;break}}a&&("break"===t||"continue"===t)&&a.tryLoc<=e&&e<=a.finallyLoc&&(a=null);var o=a?a.completion:{};return o.type=t,o.arg=e,a?(this.method="next",this.next=a.finallyLoc,v):this.complete(o)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),P(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;P(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:I(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),v}},t}(t.exports);try{regeneratorRuntime=e}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=e:Function("r","regeneratorRuntime = r")(e)}}({exports:{}}),((t,e)=>{var r,n,i,a;(null!==(e=(t=Path2D.prototype).roundRect)&&void 0!==e||(t.roundRect=o),globalThis.CanvasRenderingContext2D)&&(null!==(n=(r=globalThis.CanvasRenderingContext2D.prototype).roundRect)&&void 0!==n||(r.roundRect=o));globalThis.OffscreenCanvasRenderingContext2D&&(null!==(a=(i=globalThis.OffscreenCanvasRenderingContext2D.prototype).roundRect)&&void 0!==a||(i.roundRect=o));function o(t,e,r,n,i){if([t,e,r,n].every((t=>Number.isFinite(t)))){var a,o,c,u;if(i=function(t){var e=typeof t;if("undefined"===e||null===t)return[0];if("function"===e)return[NaN];if("object"===e)return"function"==typeof t[Symbol.iterator]?[...t].map((t=>{var e=typeof t;return"undefined"===e||null===t?0:"function"===e?NaN:"object"===e?f(t):d(t)})):[f(t)];return[d(t)]}(i),4===i.length)a=p(i[0]),o=p(i[1]),c=p(i[2]),u=p(i[3]);else if(3===i.length)a=p(i[0]),o=p(i[1]),u=p(i[1]),c=p(i[2]);else if(2===i.length)a=p(i[0]),c=p(i[0]),o=p(i[1]),u=p(i[1]);else{if(1!==i.length)throw new RangeError("".concat(s(this)," ").concat(i.length," is not a valid size for radii sequence."));a=p(i[0]),o=p(i[0]),c=p(i[0]),u=p(i[0])}var l=[a,o,c,u],h=l.find((t=>{var{x:e,y:r}=t;return e<0||r<0}));if((null==h?void 0:h.x)<0?h.x:null==h||h.y,!l.some((t=>{var{x:e,y:r}=t;return!Number.isFinite(e)||!Number.isFinite(r)}))){if(h)throw new RangeError("".concat(s(this)," Radius value ").concat(h," is negative."));!function(t){var[e,i,a,o]=t,s=[Math.abs(r)/(e.x+i.x),Math.abs(n)/(i.y+a.y),Math.abs(r)/(a.x+o.x),Math.abs(n)/(e.y+o.y)],c=Math.min(...s);if(c<=1)for(var u of t)u.x*=c,u.y*=c}(l),r<0&&n<0?(this.moveTo(t-a.x,e),this.ellipse(t+r+o.x,e-o.y,o.x,o.y,0,1.5*-Math.PI,-Math.PI),this.ellipse(t+r+c.x,e+n+c.y,c.x,c.y,0,-Math.PI,-Math.PI/2),this.ellipse(t-u.x,e+n+u.y,u.x,u.y,0,-Math.PI/2,0),this.ellipse(t-a.x,e-a.y,a.x,a.y,0,0,-Math.PI/2)):r<0?(this.moveTo(t-a.x,e),this.ellipse(t+r+o.x,e+o.y,o.x,o.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(t+r+c.x,e+n-c.y,c.x,c.y,0,-Math.PI,1.5*-Math.PI,1),this.ellipse(t-u.x,e+n-u.y,u.x,u.y,0,Math.PI/2,0,1),this.ellipse(t-a.x,e+a.y,a.x,a.y,0,0,-Math.PI/2,1)):n<0?(this.moveTo(t+a.x,e),this.ellipse(t+r-o.x,e-o.y,o.x,o.y,0,Math.PI/2,0,1),this.ellipse(t+r-c.x,e+n+c.y,c.x,c.y,0,0,-Math.PI/2,1),this.ellipse(t+u.x,e+n+u.y,u.x,u.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(t+a.x,e-a.y,a.x,a.y,0,-Math.PI,1.5*-Math.PI,1)):(this.moveTo(t+a.x,e),this.ellipse(t+r-o.x,e+o.y,o.x,o.y,0,-Math.PI/2,0),this.ellipse(t+r-c.x,e+n-c.y,c.x,c.y,0,0,Math.PI/2),this.ellipse(t+u.x,e+n-u.y,u.x,u.y,0,Math.PI/2,Math.PI),this.ellipse(t+a.x,e+a.y,a.x,a.y,0,Math.PI,1.5*Math.PI)),this.closePath(),this.moveTo(t,e)}}function f(t){var{x:e,y:r,z:n,w:i}=t;return{x:e,y:r,z:n,w:i}}function d(t){return+t}function p(t){var e,r,n=d(t);return Number.isFinite(n)?{x:n,y:n}:Object(t)===t?{x:d(null!==(e=t.x)&&void 0!==e?e:0),y:d(null!==(r=t.y)&&void 0!==r?r:0)}:{x:NaN,y:NaN}}}function s(t){return"Failed to execute 'roundRect' on '".concat(function(t){return Object(t)===t&&t instanceof Path2D?"Path2D":t instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.CanvasRenderingContext2D)?"CanvasRenderingContext2D":t instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.OffscreenCanvasRenderingContext2D)?"OffscreenCanvasRenderingContext2D":(null==t?void 0:t.constructor.name)||t}(t),"':")}})();var r2="done";function n2(t,e){return t===e||t!=t&&e!=e}function i2(t,e){for(var r=t.length;r--;)if(n2(t[r][0],e))return r;return-1}"function"!=typeof Object.assign&&(Object.assign=function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),r=1;r<arguments.length;r++){var n=arguments[r];if(null!=n)for(var i in n)n.hasOwnProperty(i)&&(e[i]=n[i])}return e}),"function"!=typeof Object.values&&(Object.values=function(t){let e=[];for(let r in t)e.push(t[r]);return e}),"function"!=typeof Object.keys&&(Object.values=function(t){let e=[];for(let r in t)e.push(r);return e}),"undefined"!=typeof CanvasRenderingContext2D&&null==CanvasRenderingContext2D.prototype.ellipse&&(CanvasRenderingContext2D.prototype.ellipse=function(t,e,r,n,i,a,o,s){this.save(),this.translate(t,e),this.rotate(i),this.translate(-r,-n),this.scale(r,n),this.arc(1,1,1,a,o,s),this.restore()}),function(){for(var t=0,e=["ms","moz","webkit","o"],r=0;r<e.length&&!window.requestAnimationFrame;++r)window.requestAnimationFrame=window[e[r]+"RequestAnimationFrame"],window.cancelAnimationFrame=window[e[r]+"CancelAnimationFrame"]||window[e[r]+"CancelRequestAnimationFrame"];window.requestAnimationFrame||(console.warn("requestAnimationFrame not supported"),window.requestAnimationFrame=function(e,r){var n=performance.now(),i=Math.max(0,33-(n-t)),a=window.setTimeout((function(){e(n+i)}),i);return t=n+i,a}),window.cancelAnimationFrame||(window.cancelAnimationFrame=function(t){clearTimeout(t)})}(),String.prototype.startsWith||(String.prototype.startsWith=function(t,e){return e=e||0,this.substr(e,t.length)===t});var a2=Array.prototype.splice;function o2(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}o2.prototype.clear=function(){this.__data__=[],this.size=0},o2.prototype.delete=function(t){var e=this.__data__,r=i2(e,t);return!(r<0)&&(r==e.length-1?e.pop():a2.call(e,r,1),--this.size,!0)},o2.prototype.get=function(t){var e=this.__data__,r=i2(e,t);return r<0?void 0:e[r][1]},o2.prototype.has=function(t){return i2(this.__data__,t)>-1},o2.prototype.set=function(t,e){var r=this.__data__,n=i2(r,t);return n<0?(++this.size,r.push([t,e])):r[n][1]=e,this};var s2="object"==typeof global&&global&&global.Object===Object&&global,c2="object"==typeof self&&self&&self.Object===Object&&self,u2=s2||c2||Function("return this")(),l2=u2.Symbol,h2=Object.prototype,f2=h2.hasOwnProperty,d2=h2.toString,p2=l2?l2.toStringTag:void 0;var g2=Object.prototype.toString;var v2="[object Null]",y2="[object Undefined]",m2=l2?l2.toStringTag:void 0;function b2(t){return null==t?void 0===t?y2:v2:m2&&m2 in Object(t)?function(t){var e=f2.call(t,p2),r=t[p2];try{t[p2]=void 0;var n=!0}catch(t){}var i=d2.call(t);return n&&(e?t[p2]=r:delete t[p2]),i}(t):function(t){return g2.call(t)}(t)}function x2(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}var w2="[object AsyncFunction]",A2="[object Function]",_2="[object GeneratorFunction]",k2="[object Proxy]";function E2(t){if(!x2(t))return!1;var e=b2(t);return e==A2||e==_2||e==w2||e==k2}var S2=u2["__core-js_shared__"],M2=function(){var t=/[^.]+$/.exec(S2&&S2.keys&&S2.keys.IE_PROTO||"");return t?"Symbol(src)_1."+t:""}();var T2=Function.prototype.toString;function P2(t){if(null!=t){try{return T2.call(t)}catch(t){}try{return t+""}catch(t){}}return""}var O2=/^\[object .+?Constructor\]$/,I2=Function.prototype,C2=Object.prototype,R2=I2.toString,j2=C2.hasOwnProperty,L2=RegExp("^"+R2.call(j2).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function D2(t){return!(!x2(t)||(e=t,M2&&M2 in e))&&(E2(t)?L2:O2).test(P2(t));var e}function z2(t,e){var r=function(t,e){return null==t?void 0:t[e]}(t,e);return D2(r)?r:void 0}var F2=z2(u2,"Map"),N2=z2(Object,"create");var B2=Object.prototype.hasOwnProperty;var U2=Object.prototype.hasOwnProperty;function Y2(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}function G2(t,e){var r=t.__data__;return function(t){var e=typeof t;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}(e)?r["string"==typeof e?"string":"hash"]:r.map}function W2(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}Y2.prototype.clear=function(){this.__data__=N2?N2(null):{},this.size=0},Y2.prototype.delete=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e},Y2.prototype.get=function(t){var e=this.__data__;if(N2){var r=e[t];return"__lodash_hash_undefined__"===r?void 0:r}return B2.call(e,t)?e[t]:void 0},Y2.prototype.has=function(t){var e=this.__data__;return N2?void 0!==e[t]:U2.call(e,t)},Y2.prototype.set=function(t,e){var r=this.__data__;return this.size+=this.has(t)?0:1,r[t]=N2&&void 0===e?"__lodash_hash_undefined__":e,this},W2.prototype.clear=function(){this.size=0,this.__data__={hash:new Y2,map:new(F2||o2),string:new Y2}},W2.prototype.delete=function(t){var e=G2(this,t).delete(t);return this.size-=e?1:0,e},W2.prototype.get=function(t){return G2(this,t).get(t)},W2.prototype.has=function(t){return G2(this,t).has(t)},W2.prototype.set=function(t,e){var r=G2(this,t),n=r.size;return r.set(t,e),this.size+=r.size==n?0:1,this};function H2(t){var e=this.__data__=new o2(t);this.size=e.size}H2.prototype.clear=function(){this.__data__=new o2,this.size=0},H2.prototype.delete=function(t){var e=this.__data__,r=e.delete(t);return this.size=e.size,r},H2.prototype.get=function(t){return this.__data__.get(t)},H2.prototype.has=function(t){return this.__data__.has(t)},H2.prototype.set=function(t,e){var r=this.__data__;if(r instanceof o2){var n=r.__data__;if(!F2||n.length<199)return n.push([t,e]),this.size=++r.size,this;r=this.__data__=new W2(n)}return r.set(t,e),this.size=r.size,this};function q2(t){var e=-1,r=null==t?0:t.length;for(this.__data__=new W2;++e<r;)this.add(t[e])}function X2(t,e){for(var r=-1,n=null==t?0:t.length;++r<n;)if(e(t[r],r,t))return!0;return!1}function V2(t,e){return t.has(e)}q2.prototype.add=q2.prototype.push=function(t){return this.__data__.set(t,"__lodash_hash_undefined__"),this},q2.prototype.has=function(t){return this.__data__.has(t)};var Q2=1,K2=2;function J2(t,e,r,n,i,a){var o=r&Q2,s=t.length,c=e.length;if(s!=c&&!(o&&c>s))return!1;var u=a.get(t),l=a.get(e);if(u&&l)return u==e&&l==t;var h=-1,f=!0,d=r&K2?new q2:void 0;for(a.set(t,e),a.set(e,t);++h<s;){var p=t[h],g=e[h];if(n)var v=o?n(g,p,h,e,t,a):n(p,g,h,t,e,a);if(void 0!==v){if(v)continue;f=!1;break}if(d){if(!X2(e,(function(t,e){if(!V2(d,e)&&(p===t||i(p,t,r,n,a)))return d.push(e)}))){f=!1;break}}else if(p!==g&&!i(p,g,r,n,a)){f=!1;break}}return a.delete(t),a.delete(e),f}var Z2=u2.Uint8Array;function $2(t){var e=-1,r=Array(t.size);return t.forEach((function(t,n){r[++e]=[n,t]})),r}function t3(t){var e=-1,r=Array(t.size);return t.forEach((function(t){r[++e]=t})),r}var e3=1,r3=2,n3="[object Boolean]",i3="[object Date]",a3="[object Error]",o3="[object Map]",s3="[object Number]",c3="[object RegExp]",u3="[object Set]",l3="[object String]",h3="[object Symbol]",f3="[object ArrayBuffer]",d3="[object DataView]",p3=l2?l2.prototype:void 0,g3=p3?p3.valueOf:void 0;function v3(t,e){for(var r=-1,n=e.length,i=t.length;++r<n;)t[i+r]=e[r];return t}var y3=Array.isArray;function m3(t,e,r){var n=e(t);return y3(t)?n:v3(n,r(t))}function b3(){return[]}var x3=Object.prototype.propertyIsEnumerable,w3=Object.getOwnPropertySymbols,A3=w3?function(t){return null==t?[]:(t=Object(t),function(t,e){for(var r=-1,n=null==t?0:t.length,i=0,a=[];++r<n;){var o=t[r];e(o,r,t)&&(a[i++]=o)}return a}(w3(t),(function(e){return x3.call(t,e)})))}:b3,_3=A3;function k3(t){return null!=t&&"object"==typeof t}function E3(t){return k3(t)&&"[object Arguments]"==b2(t)}var S3=Object.prototype,M3=S3.hasOwnProperty,T3=S3.propertyIsEnumerable,P3=E3(function(){return arguments}())?E3:function(t){return k3(t)&&M3.call(t,"callee")&&!T3.call(t,"callee")},O3=P3;var I3="object"==typeof exports&&exports&&!exports.nodeType&&exports,C3=I3&&"object"==typeof module&&module&&!module.nodeType&&module,R3=C3&&C3.exports===I3?u2.Buffer:void 0,j3=(R3?R3.isBuffer:void 0)||function(){return!1},L3=9007199254740991,D3=/^(?:0|[1-9]\d*)$/;function z3(t,e){var r=typeof t;return!!(e=null==e?L3:e)&&("number"==r||"symbol"!=r&&D3.test(t))&&t>-1&&t%1==0&&t<e}var F3=9007199254740991;function N3(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=F3}var B3={};function U3(t){return function(e){return t(e)}}B3["[object Float32Array]"]=B3["[object Float64Array]"]=B3["[object Int8Array]"]=B3["[object Int16Array]"]=B3["[object Int32Array]"]=B3["[object Uint8Array]"]=B3["[object Uint8ClampedArray]"]=B3["[object Uint16Array]"]=B3["[object Uint32Array]"]=!0,B3["[object Arguments]"]=B3["[object Array]"]=B3["[object ArrayBuffer]"]=B3["[object Boolean]"]=B3["[object DataView]"]=B3["[object Date]"]=B3["[object Error]"]=B3["[object Function]"]=B3["[object Map]"]=B3["[object Number]"]=B3["[object Object]"]=B3["[object RegExp]"]=B3["[object Set]"]=B3["[object String]"]=B3["[object WeakMap]"]=!1;var Y3="object"==typeof exports&&exports&&!exports.nodeType&&exports,G3=Y3&&"object"==typeof module&&module&&!module.nodeType&&module,W3=G3&&G3.exports===Y3&&s2.process,H3=function(){try{var t=G3&&G3.require&&G3.require("util").types;return t||W3&&W3.binding&&W3.binding("util")}catch(t){}}(),q3=H3&&H3.isTypedArray,X3=q3?U3(q3):function(t){return k3(t)&&N3(t.length)&&!!B3[b2(t)]},V3=X3,Q3=Object.prototype.hasOwnProperty;function K3(t,e){var r=y3(t),n=!r&&O3(t),i=!r&&!n&&j3(t),a=!r&&!n&&!i&&V3(t),o=r||n||i||a,s=o?function(t,e){for(var r=-1,n=Array(t);++r<t;)n[r]=e(r);return n}(t.length,String):[],c=s.length;for(var u in t)!e&&!Q3.call(t,u)||o&&("length"==u||i&&("offset"==u||"parent"==u)||a&&("buffer"==u||"byteLength"==u||"byteOffset"==u)||z3(u,c))||s.push(u);return s}var J3=Object.prototype;function Z3(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||J3)}function $3(t,e){return function(r){return t(e(r))}}var t4=$3(Object.keys,Object),e4=Object.prototype.hasOwnProperty;function r4(t){if(!Z3(t))return t4(t);var e=[];for(var r in Object(t))e4.call(t,r)&&"constructor"!=r&&e.push(r);return e}function n4(t){return null!=t&&N3(t.length)&&!E2(t)}function i4(t){return n4(t)?K3(t):r4(t)}function a4(t){return m3(t,i4,_3)}var o4=1,s4=Object.prototype.hasOwnProperty;var c4=z2(u2,"DataView"),u4=z2(u2,"Promise"),l4=z2(u2,"Set"),h4=z2(u2,"WeakMap"),f4="[object Map]",d4="[object Promise]",p4="[object Set]",g4="[object WeakMap]",v4="[object DataView]",y4=P2(c4),m4=P2(F2),b4=P2(u4),x4=P2(l4),w4=P2(h4),A4=b2;(c4&&A4(new c4(new ArrayBuffer(1)))!=v4||F2&&A4(new F2)!=f4||u4&&A4(u4.resolve())!=d4||l4&&A4(new l4)!=p4||h4&&A4(new h4)!=g4)&&(A4=function(t){var e=b2(t),r="[object Object]"==e?t.constructor:void 0,n=r?P2(r):"";if(n)switch(n){case y4:return v4;case m4:return f4;case b4:return d4;case x4:return p4;case w4:return g4}return e});var _4=A4,k4=1,E4="[object Arguments]",S4="[object Array]",M4="[object Object]",T4=Object.prototype.hasOwnProperty;function P4(t,e,r,n,i,a){var o=y3(t),s=y3(e),c=o?S4:_4(t),u=s?S4:_4(e),l=(c=c==E4?M4:c)==M4,h=(u=u==E4?M4:u)==M4,f=c==u;if(f&&j3(t)){if(!j3(e))return!1;o=!0,l=!1}if(f&&!l)return a||(a=new H2),o||V3(t)?J2(t,e,r,n,i,a):function(t,e,r,n,i,a,o){switch(r){case d3:if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case f3:return!(t.byteLength!=e.byteLength||!a(new Z2(t),new Z2(e)));case n3:case i3:case s3:return n2(+t,+e);case a3:return t.name==e.name&&t.message==e.message;case c3:case l3:return t==e+"";case o3:var s=$2;case u3:var c=n&e3;if(s||(s=t3),t.size!=e.size&&!c)return!1;var u=o.get(t);if(u)return u==e;n|=r3,o.set(t,e);var l=J2(s(t),s(e),n,i,a,o);return o.delete(t),l;case h3:if(g3)return g3.call(t)==g3.call(e)}return!1}(t,e,c,r,n,i,a);if(!(r&k4)){var d=l&&T4.call(t,"__wrapped__"),p=h&&T4.call(e,"__wrapped__");if(d||p){var g=d?t.value():t,v=p?e.value():e;return a||(a=new H2),i(g,v,r,n,a)}}return!!f&&(a||(a=new H2),function(t,e,r,n,i,a){var o=r&o4,s=a4(t),c=s.length;if(c!=a4(e).length&&!o)return!1;for(var u=c;u--;){var l=s[u];if(!(o?l in e:s4.call(e,l)))return!1}var h=a.get(t),f=a.get(e);if(h&&f)return h==e&&f==t;var d=!0;a.set(t,e),a.set(e,t);for(var p=o;++u<c;){var g=t[l=s[u]],v=e[l];if(n)var y=o?n(v,g,l,e,t,a):n(g,v,l,t,e,a);if(!(void 0===y?g===v||i(g,v,r,n,a):y)){d=!1;break}p||(p="constructor"==l)}if(d&&!p){var m=t.constructor,b=e.constructor;m==b||!("constructor"in t)||!("constructor"in e)||"function"==typeof m&&m instanceof m&&"function"==typeof b&&b instanceof b||(d=!1)}return a.delete(t),a.delete(e),d}(t,e,r,n,i,a))}function O4(t,e,r,n,i){return t===e||(null==t||null==e||!k3(t)&&!k3(e)?t!=t&&e!=e:P4(t,e,r,n,O4,i))}function I4(t,e){return O4(t,e)}var C4=function(){try{var t=z2(Object,"defineProperty");return t({},"",{}),t}catch(t){}}();function R4(t,e,r){"__proto__"==e&&C4?C4(t,e,{configurable:!0,enumerable:!0,value:r,writable:!0}):t[e]=r}var j4=Object.prototype.hasOwnProperty;function L4(t,e,r){var n=t[e];j4.call(t,e)&&n2(n,r)&&(void 0!==r||e in t)||R4(t,e,r)}function D4(t,e,r,n){var i=!r;r||(r={});for(var a=-1,o=e.length;++a<o;){var s=e[a],c=n?n(r[s],t[s],s,r,t):void 0;void 0===c&&(c=t[s]),i?R4(r,s,c):L4(r,s,c)}return r}function z4(t){return t}function F4(t,e,r){switch(r.length){case 0:return t.call(e);case 1:return t.call(e,r[0]);case 2:return t.call(e,r[0],r[1]);case 3:return t.call(e,r[0],r[1],r[2])}return t.apply(e,r)}var N4=Math.max;function B4(t){return function(){return t}}var U4=C4?function(t,e){return C4(t,"toString",{configurable:!0,enumerable:!1,value:B4(e),writable:!0})}:z4,Y4=Date.now;var G4=function(t){var e=0,r=0;return function(){var n=Y4(),i=16-(n-r);if(r=n,i>0){if(++e>=800)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}(U4),W4=G4;function H4(t,e){return W4(function(t,e,r){return e=N4(void 0===e?t.length-1:e,0),function(){for(var n=arguments,i=-1,a=N4(n.length-e,0),o=Array(a);++i<a;)o[i]=n[e+i];i=-1;for(var s=Array(e+1);++i<e;)s[i]=n[i];return s[e]=r(o),F4(t,this,s)}}(t,e,z4),t+"")}function q4(t,e,r){if(!x2(r))return!1;var n=typeof e;return!!("number"==n?n4(r)&&z3(e,r.length):"string"==n&&e in r)&&n2(r[e],t)}var X4=Object.prototype.hasOwnProperty;function V4(t){if(!x2(t))return function(t){var e=[];if(null!=t)for(var r in Object(t))e.push(r);return e}(t);var e=Z3(t),r=[];for(var n in t)("constructor"!=n||!e&&X4.call(t,n))&&r.push(n);return r}function Q4(t){return n4(t)?K3(t,!0):V4(t)}var K4,J4=(K4=function(t,e,r,n){D4(e,Q4(e),t,n)},H4((function(t,e){var r=-1,n=e.length,i=n>1?e[n-1]:void 0,a=n>2?e[2]:void 0;for(i=K4.length>3&&"function"==typeof i?(n--,i):void 0,a&&q4(e[0],e[1],a)&&(i=n<3?void 0:i,n=1),t=Object(t);++r<n;){var o=e[r];o&&K4(t,o,r,i)}return t}))),Z4=J4,$4=$3(Object.getPrototypeOf,Object),t5="[object Object]",e5=Function.prototype,r5=Object.prototype,n5=e5.toString,i5=r5.hasOwnProperty,a5=n5.call(Object);var o5="[object DOMException]",s5="[object Error]";function c5(t){if(!k3(t))return!1;var e=b2(t);return e==s5||e==o5||"string"==typeof t.message&&"string"==typeof t.name&&!function(t){if(!k3(t)||b2(t)!=t5)return!1;var e=$4(t);if(null===e)return!0;var r=i5.call(e,"constructor")&&e.constructor;return"function"==typeof r&&r instanceof r&&n5.call(r)==a5}(t)}var u5=H4((function(t,e){try{return F4(t,void 0,e)}catch(t){return c5(t)?t:new Error(t)}}));function l5(t,e){for(var r=-1,n=null==t?0:t.length,i=Array(n);++r<n;)i[r]=e(t[r],r,t);return i}var h5=Object.prototype,f5=h5.hasOwnProperty;function d5(t,e,r,n){return void 0===t||n2(t,h5[r])&&!f5.call(n,r)?e:t}var p5={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"};function g5(t){return"\\"+p5[t]}var v5=/<%=([\s\S]+?)%>/g;var y5,m5=(y5={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},function(t){return null==y5?void 0:y5[t]}),b5=m5,x5="[object Symbol]";function w5(t){return"symbol"==typeof t||k3(t)&&b2(t)==x5}var A5=1/0,_5=l2?l2.prototype:void 0,k5=_5?_5.toString:void 0;function E5(t){if("string"==typeof t)return t;if(y3(t))return l5(t,E5)+"";if(w5(t))return k5?k5.call(t):"";var e=t+"";return"0"==e&&1/t==-A5?"-0":e}function S5(t){return null==t?"":E5(t)}var M5=/[&<>"']/g,T5=RegExp(M5.source);var P5={escape:/<%-([\s\S]+?)%>/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:v5,variable:"",imports:{_:{escape:function(t){return(t=S5(t))&&T5.test(t)?t.replace(M5,b5):t}}}},O5=/\b__p \+= '';/g,I5=/\b(__p \+=) '' \+/g,C5=/(__e\(.*?\)|\b__t\)) \+\n'';/g,R5=/[()=,{}\[\]\/\s]/,j5=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,L5=/($^)/,D5=/['\n\r\u2028\u2029\\]/g,z5=Object.prototype.hasOwnProperty;var F5={linear:function(t){return t},quad:function(t){return Math.pow(t,2)},circ:function(t){return 1-Math.sin(Math.acos(t))},back:function(t,e={x:1.5}){return Math.pow(t,2)*((e.x+1)*t-e.x)},bounce:function(t){for(let e=0,r=1;;e+=r,r/=2)if(t>=(7-4*e)/11)return-Math.pow((11-6*e-11*t)/4,2)+Math.pow(r,2)},elastic:function(t,e={x:1.5}){return Math.pow(2,10*(t-1))*Math.cos(20*Math.PI*e.x/3*t)}};class N5{constructor(t,e){this.client=t,this.config=e,this._started=!1;var{delta:r="linear",options:n,ease:i}=this.config;"string"==typeof r&&(r=F5[r]),this.delta="out"==i?function(t,e){return function(r){return 1-t(1-r,e)}}(r,n):"inout"==i?function(t,e){return function(r){return r<.5?t(2*r,e)/2:(2-t(2*(1-r),e))/2}}(r,n):r,this.init()}dispose(){this.stop(),delete this.client}init(){}start(){if(!this._started){var{duration:t=2e3,delay:e=0,repeat:r=!1,interval:n=0}=this.config;this._started=!0;var i=0,a=0,o=()=>{if(this._raf=null,this._timeout=null,!this._started)return;0==i&&(i=performance.now(),this.client.touch());let s=performance.now()-i,c=Math.max((s-e)%(t+n),0)/t,u=n<=0&&a>c;if(a=c,c>=1||u){if(this.step(1),this.client&&this.client.invalidate(),!r||!this._started)return this.stop(),void(i=0);if(n>0)return void(this._timeout=setTimeout((()=>{this.step(0),this.client&&this.client.invalidate(),this._timeout=setTimeout(o,n/2)}),n/2))}else this.step(this.delta(c)),this.client&&this.client.invalidate();this._raf=requestAnimationFrame(o)};this._raf=requestAnimationFrame(o)}}stop(){this._raf&&cancelAnimationFrame(this._raf),this._timeout&&clearTimeout(this._timeout),this._raf=null,this._timeout=null,this._started=!1}get started(){return this._started}set started(t){this.started!=!!t&&(t?this.start():this.stop())}}var B5={rotation:class extends N5{step(t){var{theta:e=6.28}=this.config;this.client.delta("theta",t*e)}},vibration:class extends N5{step(t){var{theta:e=.2617993877991494}=this.config,r=4*e,n=t*r;t<1/4?n*=-1:t<3/4?n-=2*e:n=r-n,this.client.delta("theta",n)}},heartbeat:class extends N5{step(t){var e,{scale:r=1.3}=this.config,n=2*(r-1);e=t<.5?1+n*t:1+(1-t)*n,this.client.delta("sx",e),this.client.delta("sy",e)}},moving:class extends N5{step(t){var{x:e=0,y:r=0}=this.config;this.client.delta("tx",t*e),this.client.delta("ty",t*r)}},outline:class extends N5{step(t){const{rideOn:e}=this.config,r=this.client;if(!e||!r||!r.root)return;const n=r.root.findById(e);if(!n)return;const{tx:i,ty:a}=r.delta(),o=n.outline(t),s=r.center,c=r.transcoordS2T(s.x,s.y);n&&(r.delta("tx",o.x-c.x+i),r.delta("ty",o.y-c.y+a))}},fade:class extends N5{step(t){var e,{startAlpha:r=1,endAlpha:n=0}=this.config,i=Math.max(Math.min(r,n,1),0),a=2*(Math.min(Math.max(r,n,1),1)-i);e=t<.5?a*t:(1-t)*a,this.client.delta("fade",e)}}};function U5(t){var{duration:e=1e3,delay:r=30,step:n,delta:i,ease:a,options:o,repeat:s=!1}=t;"string"==typeof i&&(i=F5[i]),"out"==a?i=function(t,e){return function(r){return 1-t(1-r,e)}}(i,o):"inout"==a&&(i=function(t,e){return function(r){return r<.5?t(2*r,e)/2:(2-t(2*(1-r),e))/2}}(i,o));var c=!1;return{start:function(){if(c)return this;c=!0;var t=0,r=()=>{if(c){0==t&&(t=performance.now());var a=(performance.now()-t)/e,u=s?a%1:Math.min(a,1);n(i(u,o)),!(a>=1)||s&&c||(this.stop(),t=0),c&&requestAnimationFrame(r)}};return requestAnimationFrame(r),this},stop:function(){return c=!1,this}}}var Y5="object"==typeof exports&&exports&&!exports.nodeType&&exports,G5=Y5&&"object"==typeof module&&module&&!module.nodeType&&module,W5=G5&&G5.exports===Y5?u2.Buffer:void 0,H5=W5?W5.allocUnsafe:void 0;var q5=Object.getOwnPropertySymbols?function(t){for(var e=[];t;)v3(e,_3(t)),t=$4(t);return e}:b3,X5=q5;function V5(t){return m3(t,Q4,X5)}var Q5=Object.prototype.hasOwnProperty;function K5(t){var e=new t.constructor(t.byteLength);return new Z2(e).set(new Z2(t)),e}var J5=/\w*$/;var Z5=l2?l2.prototype:void 0,$5=Z5?Z5.valueOf:void 0;var t6="[object Boolean]",e6="[object Date]",r6="[object Map]",n6="[object Number]",i6="[object RegExp]",a6="[object Set]",o6="[object String]",s6="[object Symbol]",c6="[object ArrayBuffer]",u6="[object DataView]",l6="[object Float32Array]",h6="[object Float64Array]",f6="[object Int8Array]",d6="[object Int16Array]",p6="[object Int32Array]",g6="[object Uint8Array]",v6="[object Uint8ClampedArray]",y6="[object Uint16Array]",m6="[object Uint32Array]";function b6(t,e,r){var n,i=t.constructor;switch(e){case c6:return K5(t);case t6:case e6:return new i(+t);case u6:return function(t,e){var r=e?K5(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.byteLength)}(t,r);case l6:case h6:case f6:case d6:case p6:case g6:case v6:case y6:case m6:return function(t,e){var r=e?K5(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.length)}(t,r);case r6:return new i;case n6:case o6:return new i(t);case i6:return function(t){var e=new t.constructor(t.source,J5.exec(t));return e.lastIndex=t.lastIndex,e}(t);case a6:return new i;case s6:return n=t,$5?Object($5.call(n)):{}}}var x6=Object.create,w6=function(){function t(){}return function(e){if(!x2(e))return{};if(x6)return x6(e);t.prototype=e;var r=new t;return t.prototype=void 0,r}}(),A6=w6;var _6=H3&&H3.isMap,k6=_6?U3(_6):function(t){return k3(t)&&"[object Map]"==_4(t)},E6=k6;var S6=H3&&H3.isSet,M6=S6?U3(S6):function(t){return k3(t)&&"[object Set]"==_4(t)},T6=M6,P6=1,O6=2,I6=4,C6="[object Arguments]",R6="[object Function]",j6="[object GeneratorFunction]",L6="[object Object]",D6={};function z6(t,e,r,n,i,a){var o,s=e&P6,c=e&O6,u=e&I6;if(r&&(o=i?r(t,n,i,a):r(t)),void 0!==o)return o;if(!x2(t))return t;var l=y3(t);if(l){if(o=function(t){var e=t.length,r=new t.constructor(e);return e&&"string"==typeof t[0]&&Q5.call(t,"index")&&(r.index=t.index,r.input=t.input),r}(t),!s)return function(t,e){var r=-1,n=t.length;for(e||(e=Array(n));++r<n;)e[r]=t[r];return e}(t,o)}else{var h=_4(t),f=h==R6||h==j6;if(j3(t))return function(t,e){if(e)return t.slice();var r=t.length,n=H5?H5(r):new t.constructor(r);return t.copy(n),n}(t,s);if(h==L6||h==C6||f&&!i){if(o=c||f?{}:function(t){return"function"!=typeof t.constructor||Z3(t)?{}:A6($4(t))}(t),!s)return c?function(t,e){return D4(t,X5(t),e)}(t,function(t,e){return t&&D4(e,Q4(e),t)}(o,t)):function(t,e){return D4(t,_3(t),e)}(t,function(t,e){return t&&D4(e,i4(e),t)}(o,t))}else{if(!D6[h])return i?t:{};o=b6(t,h,s)}}a||(a=new H2);var d=a.get(t);if(d)return d;a.set(t,o),T6(t)?t.forEach((function(n){o.add(z6(n,e,r,n,t,a))})):E6(t)&&t.forEach((function(n,i){o.set(i,z6(n,e,r,i,t,a))}));var p=l?void 0:(u?c?V5:a4:c?Q4:i4)(t);return function(t,e){for(var r=-1,n=null==t?0:t.length;++r<n&&!1!==e(t[r],r,t););}(p||t,(function(n,i){p&&(n=t[i=n]),L4(o,i,z6(n,e,r,i,t,a))})),o}D6[C6]=D6["[object Array]"]=D6["[object ArrayBuffer]"]=D6["[object DataView]"]=D6["[object Boolean]"]=D6["[object Date]"]=D6["[object Float32Array]"]=D6["[object Float64Array]"]=D6["[object Int8Array]"]=D6["[object Int16Array]"]=D6["[object Int32Array]"]=D6["[object Map]"]=D6["[object Number]"]=D6[L6]=D6["[object RegExp]"]=D6["[object Set]"]=D6["[object String]"]=D6["[object Symbol]"]=D6["[object Uint8Array]"]=D6["[object Uint8ClampedArray]"]=D6["[object Uint16Array]"]=D6["[object Uint32Array]"]=!0,D6["[object Error]"]=D6[R6]=D6["[object WeakMap]"]=!1;var F6=4;function N6(t){return z6(t,F6)}var B6=function(){return u2.Date.now()},U6=/\s/;var Y6=/^\s+/;function G6(t){return t?t.slice(0,function(t){for(var e=t.length;e--&&U6.test(t.charAt(e)););return e}(t)+1).replace(Y6,""):t}var W6=NaN,H6=/^[-+]0x[0-9a-f]+$/i,q6=/^0b[01]+$/i,X6=/^0o[0-7]+$/i,V6=parseInt;function Q6(t){if("number"==typeof t)return t;if(w5(t))return W6;if(x2(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=x2(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=G6(t);var r=q6.test(t);return r||X6.test(t)?V6(t.slice(2),r?2:8):H6.test(t)?W6:+t}var K6="Expected a function",J6=Math.max,Z6=Math.min;function $6(t,e,r){var n,i,a,o,s,c,u=0,l=!1,h=!1,f=!0;if("function"!=typeof t)throw new TypeError(K6);function d(e){var r=n,a=i;return n=i=void 0,u=e,o=t.apply(a,r)}function p(t){var r=t-c;return void 0===c||r>=e||r<0||h&&t-u>=a}function g(){var t=B6();if(p(t))return v(t);s=setTimeout(g,function(t){var r=e-(t-c);return h?Z6(r,a-(t-u)):r}(t))}function v(t){return s=void 0,f&&n?d(t):(n=i=void 0,o)}function y(){var t=B6(),r=p(t);if(n=arguments,i=this,c=t,r){if(void 0===s)return function(t){return u=t,s=setTimeout(g,e),l?d(t):o}(c);if(h)return clearTimeout(s),s=setTimeout(g,e),d(c)}return void 0===s&&(s=setTimeout(g,e)),o}return e=Q6(e)||0,x2(r)&&(l=!!r.leading,a=(h="maxWait"in r)?J6(Q6(r.maxWait)||0,e):a,f="trailing"in r?!!r.trailing:f),y.cancel=function(){void 0!==s&&clearTimeout(s),u=0,n=c=i=s=void 0},y.flush=function(){return void 0===s?o:v(B6())},y}function t8(t,e,r){var n=!0,i=!0;if("function"!=typeof t)throw new TypeError("Expected a function");return x2(r)&&(n="leading"in r?!!r.leading:n,i="trailing"in r?!!r.trailing:i),$6(t,e,{leading:n,maxWait:e,trailing:i})}var e8=1/0,r8=17976931348623157e292;function n8(t){var e=function(t){return t?(t=Q6(t))===e8||t===-e8?(t<0?-1:1)*r8:t==t?t:0:0===t?t:0}(t),r=e%1;return e==e?r?e-r:e:0}var i8="Expected a function";function a8(t){return function(t,e){var r;if("function"!=typeof e)throw new TypeError(i8);return t=n8(t),function(){return--t>0&&(r=e.apply(this,arguments)),t<=1&&(e=void 0),r}}(2,t)}var o8=Object.prototype.hasOwnProperty;function s8(t){if(null==t)return!0;if(n4(t)&&(y3(t)||"string"==typeof t||"function"==typeof t.splice||j3(t)||V3(t)||O3(t)))return!t.length;var e=_4(t);if("[object Map]"==e||"[object Set]"==e)return!t.size;if(Z3(t))return!r4(t).length;for(var r in t)if(o8.call(t,r))return!1;return!0}var c8=0;function u8(t={},...e){return"object"!=typeof t&&(t={}),e.forEach((e=>{for(let r in e)"object"!=typeof e[r]?t[r]=e[r]:e[r].length>0?t[r]=e[r].map((t=>{let n;return n="object"!=typeof e[r]?t:u8({},t),n})):t[r]=u8(t[r],e[r])})),t}function l8(t){for(;t&&"object"==typeof t;){let e=t;for(let e in t){t=t[e];break}if(t===e){t=void 0;break}}return t}var h8=Object.freeze({__proto__:null,insertAt:function(t,e){return this.__collection__?(-1==(t=this.__collection__.indexOf(e))&&this.__collection__.splice(t,0,e),this):this},append:function(t){return this.__collection__||(this.__collection__=[]),-1==this.__collection__.indexOf(t)&&this.__collection__.push(t),this},prepend:function(t){return this.__collection__||(this.__collection__=[]),-1==this.__collection__.indexOf(t)&&this.__collection__.unshift(t),this},remove:function(t){if(!this.__collection__)return this;var e=this.__collection__.indexOf(t);return e>=0&&this.__collection__.splice(e,1),this},getAt:function(t){if(this.__collection__)return this.__collection__[t]},forEach:function(t,e){this.__collection__&&this.__collection__.forEach(t,e)},indexOf:function(t){if(this.__collection__)return this.__collection__.indexOf(t)},size:function(){return this.__collection__?this.__collection__.length:0},clear:function(){this.__collection__=[]},moveForward:function(t){var e=this.indexOf(t);-1!=e&&0!=e&&(this.__collection__[e]=this.__collection__[e-1],this.__collection__[e-1]=t)},moveBackward:function(t){var e=this.indexOf(t);-1!=e&&e!=this.size()-1&&(this.__collection__[e]=this.__collection__[e+1],this.__collection__[e+1]=t)},moveToHead:function(t){var e=this.indexOf(t);if(-1!=e&&0!=e){var r=this.__collection__.splice(0,e),n=this.__collection__.splice(1);this.__collection__=this.__collection__.concat(r,n)}},moveToTail:function(t){var e=this.indexOf(t);if(-1!=e&&e!=this.size()-1){var r=this.__collection__.splice(0,e),n=this.__collection__.splice(1);this.__collection__=r.concat(n,this.__collection__)}}});function f8(){}f8.prototype=h8;var d8=/\s+/;function p8(t,e,r,n){if(!r)return!0;if("object"==typeof r){for(let n in r){let i=r[n];t[e].apply(t,[n,i])}return!1}return!d8.test(r)||(r.split(d8).forEach((r=>t[e].apply(t,[r].concat(n)))),!1)}const g8=["on","off","once","delegate_on","delegate_off","trigger","listenTo"];var v8={withEvent(){g8.forEach((t=>this[t]=v8[t]))},on(t,e,r){return p8(this,"on",t,[e,r])&&e?(this._listeners||(this._listeners={}),(this._listeners[t]||(this._listeners[t]=[])).push({callback:e,context:r,ctx:r||this}),this):this},once(t,e,r){if(!p8(this,"once",t,[e,r])||!e)return this;var n=this,i=a8((function(){n.off(t,i),e.apply(n,arguments)}));i._callback=e,this.on(t,i,r)},off(t,e,r){if(!this._listeners||!p8(this,"off",t,[e,r]))return this;if(!t&&!e&&!r)return this._listeners=void 0,this;var n;n=t?[t]:Object.keys(this._listeners);for(let t=0;t<n.length;t++){let i=n[t],a=this._listeners[i];if(a){let t=[];if(this._listeners[i]=t,e||r)for(let n=0;n<a.length;n++){let i=a[n];(e&&e!==i.callback&&e!==i.callback._callback||r&&r!==i.context)&&t.push(i)}t.length||delete this._listeners[i]}}return this},delegate_on(t){return this._delegators||(this._delegators=new f8),this._delegators.append(t),this},delegate_off(t){return this._delegators?(this._delegators.remove(t),this):this},delegate(){if(this._delegators&&this._delegators.size()>0&&m8(this._delegators,arguments),!this._listeners)return this;var t=arguments.length-1,e=arguments[t];arguments[t]={origin:e.origin,name:e.name,deliverer:this};var r=this._listeners[e.name],n=this._listeners["(all)"];return r&&y8(r,arguments),n&&y8(n,arguments),this},trigger(t){var e=[].slice.call(arguments,1);if(e.push({origin:this,name:t,deliverer:this}),this._delegators&&this._delegators.size()>0&&m8(this._delegators,e),!this._listeners)return this;if(!p8(this,"trigger",t,e))return this;var r=this._listeners[t],n=this._listeners["(all)"];return r&&y8(r,e),n&&y8(n,e),this},stopListening(t,e,r){var n=this._listeningTo;if(!n)return this;var i=!e&&!r;r||"object"!=typeof e||(r=this),t&&((n={})[t._listenId]=t);for(let t in n){let a=n[t];a.off(e,r,this),(i||s8(a._events))&&delete this._listeningTo[t]}return this}};function y8(t,e){t.forEach((t=>t.callback.apply(t.ctx,e)))}function m8(t,e){t.forEach((t=>v8.delegate.apply(t,e)))}var b8={listenTo:"on",listenToOnce:"once"};for(let t in b8){var x8=b8[t];v8[t]=function(t,e,r){this._listeningTo||(this._listeningTo={});var n=this._listeningTo;return t._listenId||(t._listenId=`${"l"||""}${++c8}`),n[t._listenId]=t,r||"object"!=typeof e||(r=this),t[x8](e,r,this),this}}function w8(t,e){if(e instanceof Array)e.forEach((e=>w8(t,e)));else{if(t.mixedIn=t.hasOwnProperty("mixedIn")?t.mixedIn:[],t.mixingIn=t.hasOwnProperty("mixingIn")?t.mixingIn:[],t.mixedIn.indexOf(e)>=0)return t;if(t.mixingIn.indexOf(e)>=0)throw new Error(`found cyclic dependencies between ${t.mixingIn}`);t.mixingIn.push(e),e.call(t),t.mixingIn.pop(),t.mixedIn.push(e)}return t}var A8=(...t)=>{var e=[];t.forEach((t=>t&&t.stack&&e.push(t.stack))),console.error("[ERROR]",...t,e.join(" "))},_8=(...t)=>{var e=[];t.forEach((t=>t&&t.stack&&e.push(t.stack))),console.warn("[WARN]",...t,e.join(" "))},k8=(...t)=>console.log("[DEBUG]",...t);function E8(t,e,r){var n=t.__lookupGetter__(e);n?r?t.__defineGetter__(e,(function(){return void 0===this.__cache__[e]&&(this.__cache__[e]=n.call(this)),N6(this.__cache__[e])})):t.__defineGetter__(e,(function(){return void 0===this.__cache__[e]&&(this.__cache__[e]=n.call(this)),this.__cache__[e]})):A8(`${e} is not defined in ${t.constructor.name}`)}const S8={},M8=0,T8=1,P8=2,O8=3,I8=4,C8=5,R8={VIEW:0,EDIT:1,SHIFT:2,ADD:3},j8=30,L8="undefined"==typeof window?1:window.devicePixelRatio||(window.matchMedia&&window.matchMedia("(min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 1.5),(-moz-min-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5)").matches?2:1)||1,D8=["mousemove","mouseup","mousedown","mouseout","wheel","touchstart","touchmove","touchend","dblclick"],z8=["keydown","keyup"],F8={ALPHA:1,FONT_SIZE:15,FONT_FAMILY:"serif",FONT_COLOR:"black",TEXT_ALIGN:"center",TEXT_BASELINE:"middle",TEXT_WRAP:!1,BOLD:!1,ITALIC:!1,STROKE_STYLE:"#999",LINE_DASH:"solid"},N8={x:1,y:1};function B8(t,e,r){var{left:n=0,top:i=0,blurSize:a=0,color:o="transparent"}=e,s=r.rootModel.get("scale")||N8;t.shadowOffsetX=n*s.x*L8,t.shadowOffsetY=i*s.y*L8,t.shadowBlur=a*s.x*L8,t.shadowColor=o}var U8={gradation:function(t,e,r){var{type:n,subType:i,from:a,to:o,colors:s}=r;switch(i){case"linear":var c=e.createLinearGradient(a.x,a.y,o.x,o.y);break;case"radial":c=e.createRadialGradient(a.x,a.y,a.r,o.x,o.y,o.r);break;default:c=e.createLinearGradient(a.x,a.y,o.x,o.y)}s&&(s.forEach((function(t){c.addColorStop(t.endPoint,t.color)})),e.fillStyle=c,e.fill())},shadow:B8};function Y8(t,e,r,n){var i=e.get("class");return!!i&&(i.split(" ")||[]).indexOf(t.substr(1))>=0}function G8(t,e,r,n){return t==e.get("type")}function W8(t,e,r,n){if("(all)"==t)return!0;switch(t.charAt(0)){case"#":return function(t,e,r,n){return t.substr(1)==e.get("id")}(t,e);case".":return Y8(t,e);case"(":return function(t,e,r,n){switch(t){case"(all)":return!0;case"(self)":return n===e;case"(root)":return!n.parent&&n===e;case"(descendant)":return n!==e;case"(child)":return n===e.parent;default:return!1}}(t,e,0,n);default:return G8(t,e)}}function H8(t,e,r,n,i,a){return t(e,r,n,i)&&a.push(r),r.components&&r.components.forEach((r=>{H8(t,e,r,n,i,a)})),a}function q8(t,e,r,n){switch(t){case"(all)":return!0;case"(parent)":return r&&r.parent===e;case"(child)":case"(children)":return r&&r===e.parent;case"(sibling)":case"(siblings)":return r&&r.parent===e.parent&&r!==e;default:return!1}}function X8(t,e,r){if("(root)"==t)return[e];if("(self)"==t)return r?[r]:[];var n;switch(t.charAt(0)){case"#":let r=e.root.findAllById(t.substr(1));return r||[];case".":n=Y8;break;case"(":n=q8;break;default:n=G8}return H8(n,t,e,r,e,[])}function V8(t){throw new Error('Could not dynamically require "'+t+'". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.')}var Q8={exports:{}};!function(e,r){var n=function(t){var e,r=Object.prototype,n=r.hasOwnProperty,i=Object.defineProperty||function(t,e,r){t[e]=r.value},a="function"==typeof Symbol?Symbol:{},o=a.iterator||"@@iterator",s=a.asyncIterator||"@@asyncIterator",c=a.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function l(t,e,r,n){var a=e&&e.prototype instanceof y?e:y,o=Object.create(a.prototype),s=new O(n||[]);return i(o,"_invoke",{value:S(t,r,s)}),o}function h(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var f="suspendedStart",d="suspendedYield",p="executing",g="completed",v={};function y(){}function m(){}function b(){}var x={};u(x,o,(function(){return this}));var w=Object.getPrototypeOf,A=w&&w(w(I([])));A&&A!==r&&n.call(A,o)&&(x=A);var _=b.prototype=y.prototype=Object.create(x);function k(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function E(t,e){function r(i,a,o,s){var c=h(t[i],t,a);if("throw"!==c.type){var u=c.arg,l=u.value;return l&&"object"==typeof l&&n.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,o,s)}),(function(t){r("throw",t,o,s)})):e.resolve(l).then((function(t){u.value=t,o(u)}),(function(t){return r("throw",t,o,s)}))}s(c.arg)}var a;i(this,"_invoke",{value:function(t,n){function i(){return new e((function(e,i){r(t,n,e,i)}))}return a=a?a.then(i,i):i()}})}function S(t,r,n){var i=f;return function(a,o){if(i===p)throw new Error("Generator is already running");if(i===g){if("throw"===a)throw o;return{value:e,done:!0}}for(n.method=a,n.arg=o;;){var s=n.delegate;if(s){var c=M(s,n);if(c){if(c===v)continue;return c}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===f)throw i=g,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=p;var u=h(t,r,n);if("normal"===u.type){if(i=n.done?g:d,u.arg===v)continue;return{value:u.arg,done:n.done}}"throw"===u.type&&(i=g,n.method="throw",n.arg=u.arg)}}}function M(t,r){var n=r.method,i=t.iterator[n];if(i===e)return r.delegate=null,"throw"===n&&t.iterator.return&&(r.method="return",r.arg=e,M(t,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var a=h(i,t.iterator,r.arg);if("throw"===a.type)return r.method="throw",r.arg=a.arg,r.delegate=null,v;var o=a.arg;return o?o.done?(r[t.resultName]=o.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,v):o:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function P(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function I(t){if(null!=t){var r=t[o];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var i=-1,a=function r(){for(;++i<t.length;)if(n.call(t,i))return r.value=t[i],r.done=!1,r;return r.value=e,r.done=!0,r};return a.next=a}}throw new TypeError(typeof t+" is not iterable")}return m.prototype=b,i(_,"constructor",{value:b,configurable:!0}),i(b,"constructor",{value:m,configurable:!0}),m.displayName=u(b,c,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===m||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,b):(t.__proto__=b,u(t,c,"GeneratorFunction")),t.prototype=Object.create(_),t},t.awrap=function(t){return{__await:t}},k(E.prototype),u(E.prototype,s,(function(){return this})),t.AsyncIterator=E,t.async=function(e,r,n,i,a){void 0===a&&(a=Promise);var o=new E(l(e,r,n,i),a);return t.isGeneratorFunction(r)?o:o.next().then((function(t){return t.done?t.value:o.next()}))},k(_),u(_,c,"Generator"),u(_,o,(function(){return this})),u(_,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=I,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(P),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function i(n,i){return s.type="throw",s.arg=t,r.next=n,i&&(r.method="next",r.arg=e),!!i}for(var a=this.tryEntries.length-1;a>=0;--a){var o=this.tryEntries[a],s=o.completion;if("root"===o.tryLoc)return i("end");if(o.tryLoc<=this.prev){var c=n.call(o,"catchLoc"),u=n.call(o,"finallyLoc");if(c&&u){if(this.prev<o.catchLoc)return i(o.catchLoc,!0);if(this.prev<o.finallyLoc)return i(o.finallyLoc)}else if(c){if(this.prev<o.catchLoc)return i(o.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return i(o.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var i=this.tryEntries[r];if(i.tryLoc<=this.prev&&n.call(i,"finallyLoc")&&this.prev<i.finallyLoc){var a=i;break}}a&&("break"===t||"continue"===t)&&a.tryLoc<=e&&e<=a.finallyLoc&&(a=null);var o=a?a.completion:{};return o.type=t,o.arg=e,a?(this.method="next",this.next=a.finallyLoc,v):this.complete(o)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),P(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;P(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:I(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),v}},t}(e.exports);try{regeneratorRuntime=n}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=n:Function("r","regeneratorRuntime = r")(n)}Number.isInteger=Number.isInteger||function(t){return"number"==typeof t&&isFinite(t)&&Math.floor(t)===t},String.fromCodePoint||function(t){var e=function(e){for(var r=[],n=0,i="",a=0,o=arguments.length;a!==o;++a){var s=+arguments[a];if(!(s<1114111&&s>>>0===s))throw RangeError("Invalid code point: "+s);s<=65535?n=r.push(s):(s-=65536,n=r.push(55296+(s>>10),s%1024+56320)),n>=16383&&(i+=t.apply(null,r),r.length=0)}return i+t.apply(null,r)};try{Object.defineProperty(String,"fromCodePoint",{value:e,configurable:!0,writable:!0})}catch(t){String.fromCodePoint=e}}(String.fromCharCode),Object.is||(Object.is=function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e})
2
+ /*! https://mths.be/codepointat v0.2.0 by @mathias */,String.prototype.codePointAt||function(){var t=function(){try{var t={},e=Object.defineProperty,r=e(t,t,t)&&e}catch(t){}return r}(),e=function(t){if(null==this)throw TypeError();var e=String(this),r=e.length,n=t?Number(t):0;if(n!=n&&(n=0),!(n<0||n>=r)){var i,a=e.charCodeAt(n);return a>=55296&&a<=56319&&r>n+1&&(i=e.charCodeAt(n+1))>=56320&&i<=57343?1024*(a-55296)+i-56320+65536:a}};t?t(String.prototype,"codePointAt",{value:e,configurable:!0,writable:!0}):String.prototype.codePointAt=e}(),Math.log10=Math.log10||function(t){return Math.log(t)*Math.LOG10E},e.exports=function(){function t(e,r,n){function i(o,s){if(!r[o]){if(!e[o]){if(!s&&V8)return V8(o);if(a)return a(o,!0);var c=new Error("Cannot find module '"+o+"'");throw c.code="MODULE_NOT_FOUND",c}var u=r[o]={exports:{}};e[o][0].call(u.exports,(function(t){return i(e[o][1][t]||t)}),u,u.exports,t,e,r,n)}return r[o].exports}for(var a=V8,o=0;o<n.length;o++)i(n[o]);return i}return t}()({1:[function(t,e,r){var n=t("./utils"),i=function(){var t=n.stringToArray,e=["Zero","One","Two","Three","Four","Five","Six","Seven","Eight","Nine","Ten","Eleven","Twelve","Thirteen","Fourteen","Fifteen","Sixteen","Seventeen","Eighteen","Nineteen"],r=["Zeroth","First","Second","Third","Fourth","Fifth","Sixth","Seventh","Eighth","Ninth","Tenth","Eleventh","Twelfth","Thirteenth","Fourteenth","Fifteenth","Sixteenth","Seventeenth","Eighteenth","Nineteenth"],i=["Twenty","Thirty","Forty","Fifty","Sixty","Seventy","Eighty","Ninety","Hundred"],a=["Thousand","Million","Billion","Trillion"];function o(t,n){var o=function t(n,o,s){var c="";if(n<=19)c=(o?" and ":"")+(s?r[n]:e[n]);else if(n<100){var u=Math.floor(n/10),l=n%10;c=(o?" and ":"")+i[u-2],l>0?c+="-"+t(l,!1,s):s&&(c=c.substring(0,c.length-1)+"ieth")}else if(n<1e3){var h=Math.floor(n/100),f=n%100;c=(o?", ":"")+e[h]+" Hundred",f>0?c+=t(f,!0,s):s&&(c+="th")}else{var d=Math.floor(Math.log10(n)/3);d>a.length&&(d=a.length);var p=Math.pow(10,3*d),g=Math.floor(n/p),v=n-g*p;c=(o?", ":"")+t(g,!1,!1)+" "+a[d-1],v>0?c+=t(v,!0,s):s&&(c+="th")}return c};return o(t,!1,n)}var s={};function c(t){var e=t.split(/,\s|\sand\s|[\s\\-]/).map((function(t){return s[t]})),r=[0];return e.forEach((function(t){if(t<100){var e=r.pop();e>=1e3&&(r.push(e),e=0),r.push(e+t)}else r.push(r.pop()*t)})),r.reduce((function(t,e){return t+e}),0)}e.forEach((function(t,e){s[t.toLowerCase()]=e})),r.forEach((function(t,e){s[t.toLowerCase()]=e})),i.forEach((function(t,e){var r=t.toLowerCase();s[r]=10*(e+2),s[r.substring(0,t.length-1)+"ieth"]=s[r]})),s.hundredth=100,a.forEach((function(t,e){var r=t.toLowerCase(),n=Math.pow(10,3*(e+1));s[r]=n,s[r+"th"]=n}));var u=[[1e3,"m"],[900,"cm"],[500,"d"],[400,"cd"],[100,"c"],[90,"xc"],[50,"l"],[40,"xl"],[10,"x"],[9,"ix"],[5,"v"],[4,"iv"],[1,"i"]],l={M:1e3,D:500,C:100,L:50,X:10,V:5,I:1};function h(t){for(var e=0;e<u.length;e++){var r=u[e];if(t>=r[0])return r[1]+h(t-r[0])}return""}function f(t){for(var e=0,r=1,n=t.length-1;n>=0;n--){var i=t[n],a=l[i];a<r?e-=a:(r=a,e+=a)}return e}function d(t,e){for(var r=[],n=e.charCodeAt(0);t>0;)r.unshift(String.fromCharCode((t-1)%26+n)),t=Math.floor((t-1)/26);return r.join("")}function p(t,e){for(var r=e.charCodeAt(0),n=0,i=0;i<t.length;i++)n+=(t.charCodeAt(t.length-i-1)-r+1)*Math.pow(26,i);return n}function g(t,e){if(void 0!==t)return m(t=Math.floor(t),x(e))}var v={DECIMAL:"decimal",LETTERS:"letters",ROMAN:"roman",WORDS:"words",SEQUENCE:"sequence"},y={UPPER:"upper",LOWER:"lower",TITLE:"title"};function m(e,r){var n,i=e<0;switch(e=Math.abs(e),r.primary){case v.LETTERS:n=d(e,r.case===y.UPPER?"A":"a");break;case v.ROMAN:n=h(e),r.case===y.UPPER&&(n=n.toUpperCase());break;case v.WORDS:n=o(e,r.ordinal),r.case===y.UPPER?n=n.toUpperCase():r.case===y.LOWER&&(n=n.toLowerCase());break;case v.DECIMAL:n=""+e;var a=r.mandatoryDigits-n.length;if(a>0){var s=new Array(a+1).join("0");n=s+n}if(48!==r.zeroCode&&(n=t(n).map((function(t){return String.fromCodePoint(t.codePointAt(0)+r.zeroCode-48)})).join("")),r.regular)for(var c=Math.floor((n.length-1)/r.groupingSeparators.position);c>0;c--){var u=n.length-c*r.groupingSeparators.position;n=n.substr(0,u)+r.groupingSeparators.character+n.substr(u)}else r.groupingSeparators.reverse().forEach((function(t){var e=n.length-t.position;n=n.substr(0,e)+t.character+n.substr(e)}));if(r.ordinal){var l={1:"st",2:"nd",3:"rd"}[n[n.length-1]];(!l||n.length>1&&"1"===n[n.length-2])&&(l="th"),n+=l}break;case v.SEQUENCE:throw{code:"D3130",value:r.token}}return i&&(n="-"+n),n}var b=[48,1632,1776,1984,2406,2534,2662,2790,2918,3046,3174,3302,3430,3558,3664,3792,3872,4160,4240,6112,6160,6470,6608,6784,6800,6992,7088,7232,7248,42528,43216,43264,43472,43504,43600,44016,65296];function x(e){var r,n={type:"integer",primary:v.DECIMAL,case:y.LOWER,ordinal:!1},i=e.lastIndexOf(";");switch(-1===i?r=e:(r=e.substring(0,i),"o"===e.substring(i+1)[0]&&(n.ordinal=!0)),r){case"A":n.case=y.UPPER;case"a":n.primary=v.LETTERS;break;case"I":n.case=y.UPPER;case"i":n.primary=v.ROMAN;break;case"W":n.case=y.UPPER,n.primary=v.WORDS;break;case"Ww":n.case=y.TITLE,n.primary=v.WORDS;break;case"w":n.primary=v.WORDS;break;default:var a=null,o=0,s=0,c=[],u=0;if(t(r).map((function(t){return t.codePointAt(0)})).reverse().forEach((function(t){for(var e=!1,r=0;r<b.length;r++){var n=b[r];if(t>=n&&t<=n+9){if(e=!0,o++,u++,null===a)a=n;else if(n!==a)throw{code:"D3131"};break}}e||(35===t?(u++,s++):c.push({position:u,character:String.fromCodePoint(t)}))})),o>0){n.primary=v.DECIMAL,n.zeroCode=a,n.mandatoryDigits=o,n.optionalDigits=s;var l=function(t){if(0===t.length)return 0;for(var e=t[0].character,r=1;r<t.length;r++)if(t[r].character!==e)return 0;for(var n=t.map((function(t){return t.position})),i=function t(e,r){return 0===r?e:t(r,e%r)},a=n.reduce(i),o=1;o<=n.length;o++)if(-1===n.indexOf(o*a))return 0;return a},h=l(c);h>0?(n.regular=!0,n.groupingSeparators={position:h,character:c[0].character}):(n.regular=!1,n.groupingSeparators=c)}else n.primary=v.SEQUENCE,n.token=r}return n}var w={Y:"1",M:"1",D:"1",d:"1",F:"n",W:"1",w:"1",X:"1",x:"1",H:"1",h:"1",P:"n",m:"01",s:"01",f:"1",Z:"01:01",z:"01:01",C:"n",E:"n"};function A(t){for(var e=[],r={type:"datetime",parts:e},n=function(r,n){if(n>r){var i=t.substring(r,n);i=i.split("]]").join("]"),e.push({type:"literal",value:i})}},i=0,a=0;a<t.length;){if("["===t.charAt(a)){if("["===t.charAt(a+1)){n(i,a),e.push({type:"literal",value:"["}),i=a+=2;continue}if(n(i,a),i=a,-1===(a=t.indexOf("]",i)))throw{code:"D3135"};var o,s=t.substring(i+1,a),c={type:"marker",component:(s=s.split(/\s+/).join("")).charAt(0)},u=s.lastIndexOf(",");if(-1!==u){var l=s.substring(u+1),h=l.indexOf("-"),f=void 0,d=void 0,p=function(t){return void 0===t||"*"===t?void 0:parseInt(t)};-1===h?f=l:(f=l.substring(0,h),d=l.substring(h+1));var g={min:p(f),max:p(d)};c.width=g,o=s.substring(1,u)}else o=s.substring(1);if(1===o.length)c.presentation1=o;else if(o.length>1){var v=o.charAt(o.length-1);-1!=="atco".indexOf(v)?(c.presentation2=v,"o"===v&&(c.ordinal=!0),c.presentation1=o.substring(0,o.length-1)):c.presentation1=o}else c.presentation1=w[c.component];if(void 0===c.presentation1)throw{code:"D3132",value:c.component};if("n"===c.presentation1[0])c.names=y.LOWER;else if("N"===c.presentation1[0])"n"===c.presentation1[1]?c.names=y.TITLE:c.names=y.UPPER;else if(-1!=="YMDdFWwXxHhmsf".indexOf(c.component)){var m=c.presentation1;if(c.presentation2&&(m+=";"+c.presentation2),c.integerFormat=x(m),c.width&&void 0!==c.width.min&&c.integerFormat.mandatoryDigits<c.width.min&&(c.integerFormat.mandatoryDigits=c.width.min),-1!=="YMD".indexOf(c.component))if(c.n=-1,c.width&&void 0!==c.width.max)c.n=c.width.max,c.integerFormat.mandatoryDigits=c.n;else{var b=c.integerFormat.mandatoryDigits+c.integerFormat.optionalDigits;b>=2&&(c.n=b)}}"Z"!==c.component&&"z"!==c.component||(c.integerFormat=x(c.presentation1)),e.push(c),i=a+1}a++}return n(i,a),r}var _=["","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],k=["January","February","March","April","May","June","July","August","September","October","November","December"],E=864e5,S=function(t){var e=Date.UTC(t.year,t.month),r=new Date(e).getUTCDay();return 0===r&&(r=7),r>4?e+(8-r)*E:e-(r-1)*E},M=function t(e,r){return{year:e,month:r,nextMonth:function(){return 11===r?t(e+1,0):t(e,r+1)},previousMonth:function(){return 0===r?t(e-1,11):t(e,r-1)},nextYear:function(){return t(e+1,r)},previousYear:function(){return t(e-1,r)}}},T=function(t,e){return(e-t)/(7*E)+1},P=function(t,e){var r;switch(e){case"Y":r=t.getUTCFullYear();break;case"M":r=t.getUTCMonth()+1;break;case"D":r=t.getUTCDate();break;case"d":r=(Date.UTC(t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate())-Date.UTC(t.getUTCFullYear(),0))/E+1;break;case"F":0===(r=t.getUTCDay())&&(r=7);break;case"W":var n=M(t.getUTCFullYear(),0),i=S(n),a=Date.UTC(n.year,t.getUTCMonth(),t.getUTCDate()),o=T(i,a);if(o>52)a>=S(n.nextYear())&&(o=1);else if(o<1){var s=S(n.previousYear());o=T(s,a)}r=Math.floor(o);break;case"w":var c=M(t.getUTCFullYear(),t.getUTCMonth()),u=S(c),l=Date.UTC(c.year,c.month,t.getUTCDate()),h=T(u,l);if(h>4)l>=S(c.nextMonth())&&(h=1);else if(h<1){var f=S(c.previousMonth());h=T(f,l)}r=Math.floor(h);break;case"X":var d=M(t.getUTCFullYear(),0),p=S(d),g=S(d.nextYear()),v=t.getTime();r=v<p?d.year-1:v>=g?d.year+1:d.year;break;case"x":var y=M(t.getUTCFullYear(),t.getUTCMonth()),m=S(y),b=y.nextMonth(),x=S(b),w=t.getTime();r=w<m?y.previousMonth().month+1:w>=x?b.month+1:y.month+1;break;case"H":r=t.getUTCHours();break;case"h":r=t.getUTCHours(),0==(r%=12)&&(r=12);break;case"P":r=t.getUTCHours()>=12?"pm":"am";break;case"m":r=t.getUTCMinutes();break;case"s":r=t.getUTCSeconds();break;case"f":r=t.getUTCMilliseconds();break;case"Z":case"z":break;case"C":case"E":r="ISO"}return r},O=null;function I(t,e,r){var n=0,i=0;if(void 0!==r){var a=parseInt(r);n=Math.floor(a/100),i=a%100}var o,s=function(t,e){var r=P(t,e.component);if(-1!=="YMDdFWwXxHhms".indexOf(e.component))if("Y"===e.component&&-1!==e.n&&(r%=Math.pow(10,e.n)),e.names){if("M"===e.component||"x"===e.component)r=k[r-1];else{if("F"!==e.component)throw{code:"D3133",value:e.component};r=_[r]}e.names===y.UPPER?r=r.toUpperCase():e.names===y.LOWER&&(r=r.toLowerCase()),e.width&&r.length>e.width.max&&(r=r.substring(0,e.width.max))}else r=m(r,e.integerFormat);else if("f"===e.component)r=m(r,e.integerFormat);else if("Z"===e.component||"z"===e.component){var a=100*n+i;if(e.integerFormat.regular)r=m(a,e.integerFormat);else{var o=e.integerFormat.mandatoryDigits;if(1===o||2===o)r=m(n,e.integerFormat),0!==i&&(r+=":"+g(i,"00"));else{if(3!==o&&4!==o)throw{code:"D3134",value:o};r=m(a,e.integerFormat)}}a>=0&&(r="+"+r),"z"===e.component&&(r="GMT"+r),0===a&&"t"===e.presentation2&&(r="Z")}return r};void 0===e?(null===O&&(O=A("[Y0001]-[M01]-[D01]T[H01]:[m01]:[s01].[f001][Z01:01t]")),o=O):o=A(e);var c=new Date(t+60*(60*n+i)*1e3),u="";return o.parts.forEach((function(t){"literal"===t.type?u+=t.value:u+=s(c,t)})),u}function C(t){var e={};if("datetime"===t.type)e.type="datetime",e.parts=t.parts.map((function(t){var e={};if("literal"===t.type)e.regex=t.value.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");else if("Z"===t.component||"z"===t.component){var r;Array.isArray(t.integerFormat.groupingSeparators)||(r=t.integerFormat.groupingSeparators),e.regex="","z"===t.component&&(e.regex="GMT"),e.regex+="[-+][0-9]+",r&&(e.regex+=r.character+"[0-9]+"),e.parse=function(e){"z"===t.component&&(e=e.substring(3));var n=0,i=0;return r?(n=Number.parseInt(e.substring(0,e.indexOf(r.character))),i=Number.parseInt(e.substring(e.indexOf(r.character)+1))):e.length-1<=2?n=Number.parseInt(e):(n=Number.parseInt(e.substring(0,3)),i=Number.parseInt(e.substring(3))),60*n+i}}else if(t.integerFormat)t.integerFormat.n=t.n,e=C(t.integerFormat);else{e.regex="[a-zA-Z]+";var n={};if("M"===t.component||"x"===t.component)k.forEach((function(e,r){t.width&&t.width.max?n[e.substring(0,t.width.max)]=r+1:n[e]=r+1}));else if("F"===t.component)_.forEach((function(e,r){r>0&&(t.width&&t.width.max?n[e.substring(0,t.width.max)]=r:n[e]=r)}));else{if("P"!==t.component)throw{code:"D3133",value:t.component};n={am:0,AM:0,pm:1,PM:1}}e.parse=function(t){return n[t]}}return e.component=t.component,e}));else{e.type="integer";var r,n=t.case===y.UPPER;switch(r=t.n&&t.n>0?0===t.optionalDigits?"{".concat(t.n,"}"):"{".concat(t.n-t.optionalDigits,",").concat(t.n,"}"):"+",t.primary){case v.LETTERS:e.regex=n?"[A-Z]+":"[a-z]+",e.parse=function(t){return p(t,n?"A":"a")};break;case v.ROMAN:e.regex=n?"[MDCLXVI]+":"[mdclxvi]+",e.parse=function(t){return f(n?t:t.toUpperCase())};break;case v.WORDS:e.regex="(?:"+Object.keys(s).concat("and","[\\-, ]").join("|")+")+",e.parse=function(t){return c(t.toLowerCase())};break;case v.DECIMAL:e.regex="[0-9]".concat(r),t.ordinal&&(e.regex+="(?:th|st|nd|rd)"),e.parse=function(e){var r=e;return t.ordinal&&(r=e.substring(0,e.length-2)),t.regular?r=r.split(",").join(""):t.groupingSeparators.forEach((function(t){r=r.split(t.character).join("")})),48!==t.zeroCode&&(r=r.split("").map((function(e){return String.fromCodePoint(e.codePointAt(0)-t.zeroCode+48)})).join("")),parseInt(r)};break;case v.SEQUENCE:throw{code:"D3130",value:t.token}}}return e}function R(t,e){if(void 0!==t)return C(x(e)).parse(t)}function j(t,e){var r=C(A(e)),n="^"+r.parts.map((function(t){return"("+t.regex+")"})).join("")+"$",i=new RegExp(n,"i").exec(t);if(null!==i){for(var a=161,o=130,s=84,c=72,u=23,l=47,h={},f=1;f<i.length;f++){var d=r.parts[f-1];d.parse&&(h[d.component]=d.parse(i[f]))}if(0===Object.getOwnPropertyNames(h).length)return;var p=0,g=function(t){p<<=1,p+=t?1:0},v=function(t){return!(~t&p||!(t&p))};"YXMxWwdD".split("").forEach((function(t){return g(h[t])}));var y=!v(a)&&v(o),m=v(s),b=!m&&v(c);p=0,"PHhmsf".split("").forEach((function(t){return g(h[t])}));var x=!v(u)&&v(l),w=(y?"YD":m?"XxwF":b?"XWF":"YMD")+(x?"Phmsf":"Hmsf"),_=this.environment.timestamp,k=!1,E=!1;if(w.split("").forEach((function(t){if(void 0===h[t])k?(h[t]=-1!=="MDd".indexOf(t)?1:0,E=!0):h[t]=P(_,t);else if(k=!0,E)throw{code:"D3136"}})),h.M>0?h.M-=1:h.M=0,y){var S=Date.UTC(h.Y,0),M=1e3*(h.d-1)*60*60*24,T=new Date(S+M);h.M=T.getUTCMonth(),h.D=T.getUTCDate()}if(m)throw{code:"D3136"};if(b)throw{code:"D3136"};x&&(h.H=12===h.h?0:h.h,1===h.P&&(h.H+=12));var O=Date.UTC(h.Y,h.M,h.D,h.H,h.m,h.s,h.f);return(h.Z||h.z)&&(O-=60*(h.Z||h.z)*1e3),O}}var L=new RegExp("^\\d{4}(-[01]\\d)*(-[0-3]\\d)*(T[0-2]\\d:[0-5]\\d:[0-5]\\d)*(\\.\\d+)?([+-][0-2]\\d:?[0-5]\\d|Z)?$");function D(t,e){if(void 0!==t){if(void 0===e){if(!L.test(t))throw{stack:(new Error).stack,code:"D3110",value:t};return Date.parse(t)}return j.call(this,t,e)}}function z(t,e,r){if(void 0!==t)return I.call(this,t,e,r)}return{formatInteger:g,parseInteger:R,fromMillis:z,toMillis:D}}();e.exports=i},{"./utils":6}],2:[function(e,r,n){(function(t){(function(){function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}function i(){
3
+ /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
4
+ i=function(){return e};var t,e={},r=Object.prototype,a=r.hasOwnProperty,o=Object.defineProperty||function(t,e,r){t[e]=r.value},s="function"==typeof Symbol?Symbol:{},c=s.iterator||"@@iterator",u=s.asyncIterator||"@@asyncIterator",l=s.toStringTag||"@@toStringTag";function h(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{h({},"")}catch(t){h=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var i=e&&e.prototype instanceof b?e:b,a=Object.create(i.prototype),s=new C(n||[]);return o(a,"_invoke",{value:T(t,r,s)}),a}function d(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=f;var p="suspendedStart",g="suspendedYield",v="executing",y="completed",m={};function b(){}function x(){}function w(){}var A={};h(A,c,(function(){return this}));var _=Object.getPrototypeOf,k=_&&_(_(R([])));k&&k!==r&&a.call(k,c)&&(A=k);var E=w.prototype=b.prototype=Object.create(A);function S(t){["next","throw","return"].forEach((function(e){h(t,e,(function(t){return this._invoke(e,t)}))}))}function M(t,e){function r(i,o,s,c){var u=d(t[i],t,o);if("throw"!==u.type){var l=u.arg,h=l.value;return h&&"object"==n(h)&&a.call(h,"__await")?e.resolve(h.__await).then((function(t){r("next",t,s,c)}),(function(t){r("throw",t,s,c)})):e.resolve(h).then((function(t){l.value=t,s(l)}),(function(t){return r("throw",t,s,c)}))}c(u.arg)}var i;o(this,"_invoke",{value:function(t,n){function a(){return new e((function(e,i){r(t,n,e,i)}))}return i=i?i.then(a,a):a()}})}function T(e,r,n){var i=p;return function(a,o){if(i===v)throw new Error("Generator is already running");if(i===y){if("throw"===a)throw o;return{value:t,done:!0}}for(n.method=a,n.arg=o;;){var s=n.delegate;if(s){var c=P(s,n);if(c){if(c===m)continue;return c}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===p)throw i=y,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=v;var u=d(e,r,n);if("normal"===u.type){if(i=n.done?y:g,u.arg===m)continue;return{value:u.arg,done:n.done}}"throw"===u.type&&(i=y,n.method="throw",n.arg=u.arg)}}}function P(e,r){var n=r.method,i=e.iterator[n];if(i===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,P(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),m;var a=d(i,e.iterator,r.arg);if("throw"===a.type)return r.method="throw",r.arg=a.arg,r.delegate=null,m;var o=a.arg;return o?o.done?(r[e.resultName]=o.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,m):o:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,m)}function O(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function I(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function C(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(O,this),this.reset(!0)}function R(e){if(e||""===e){var r=e[c];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var i=-1,o=function r(){for(;++i<e.length;)if(a.call(e,i))return r.value=e[i],r.done=!1,r;return r.value=t,r.done=!0,r};return o.next=o}}throw new TypeError(n(e)+" is not iterable")}return x.prototype=w,o(E,"constructor",{value:w,configurable:!0}),o(w,"constructor",{value:x,configurable:!0}),x.displayName=h(w,l,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===x||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,w):(t.__proto__=w,h(t,l,"GeneratorFunction")),t.prototype=Object.create(E),t},e.awrap=function(t){return{__await:t}},S(M.prototype),h(M.prototype,u,(function(){return this})),e.AsyncIterator=M,e.async=function(t,r,n,i,a){void 0===a&&(a=Promise);var o=new M(f(t,r,n,i),a);return e.isGeneratorFunction(r)?o:o.next().then((function(t){return t.done?t.value:o.next()}))},S(E),h(E,l,"Generator"),h(E,c,(function(){return this})),h(E,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=R,C.prototype={constructor:C,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(I),!e)for(var r in this)"t"===r.charAt(0)&&a.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function n(n,i){return s.type="throw",s.arg=e,r.next=n,i&&(r.method="next",r.arg=t),!!i}for(var i=this.tryEntries.length-1;i>=0;--i){var o=this.tryEntries[i],s=o.completion;if("root"===o.tryLoc)return n("end");if(o.tryLoc<=this.prev){var c=a.call(o,"catchLoc"),u=a.call(o,"finallyLoc");if(c&&u){if(this.prev<o.catchLoc)return n(o.catchLoc,!0);if(this.prev<o.finallyLoc)return n(o.finallyLoc)}else if(c){if(this.prev<o.catchLoc)return n(o.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return n(o.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&a.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var i=n;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var o=i?i.completion:{};return o.type=t,o.arg=e,i?(this.method="next",this.next=i.finallyLoc,m):this.complete(o)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),m},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),I(r),m}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;I(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:R(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),m}},e}var a=e("./utils"),o=function(){var e=i().mark(U),r=i().mark(Y),o=i().mark(G),s=i().mark(W),c=i().mark(J),u=i().mark(ft),l=i().mark(dt),h=i().mark(pt),f=i().mark(vt),d=i().mark(kt),p=i().mark(Tt),g=i().mark(It),v=a.isNumeric,y=a.isArrayOfStrings,m=a.isArrayOfNumbers,b=a.createSequence,x=a.isSequence,w=a.isFunction,A=a.isLambda,_=a.isIterable,k=a.getFunctionArity,E=a.isDeepEqual,S=a.stringToArray;function M(t){if(void 0!==t){var e=0;return t.forEach((function(t){e+=t})),e}}function T(t){return void 0===t?0:t.length}function P(t){if(void 0!==t&&0!==t.length)return Math.max.apply(Math,t)}function O(t){if(void 0!==t&&0!==t.length)return Math.min.apply(Math,t)}function I(t){if(void 0!==t&&0!==t.length){var e=0;return t.forEach((function(t){e+=t})),e/t.length}}function C(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(void 0!==t){var r;if("string"==typeof t)r=t;else if(w(t))r="";else{if("number"==typeof t&&!isFinite(t))throw{code:"D3001",value:t,stack:(new Error).stack};var n=e?2:0;Array.isArray(t)&&t.outerWrapper&&(t=t[0]),r=JSON.stringify(t,(function(t,e){return null!=e&&e.toPrecision&&v(e)?Number(e.toPrecision(15)):e&&w(e)?"":e}),n)}return r}}function R(t,e,r){if(void 0!==t){var n=S(t),i=n.length;if(i+e<0&&(e=0),void 0!==r){if(r<=0)return"";var a=e>=0?e+r:i+e+r;return n.slice(e,a).join("")}return n.slice(e).join("")}}function j(t,e){if(void 0!==t){var r=t.indexOf(e);return r>-1?t.substr(0,r):t}}function L(t,e){if(void 0!==t){var r=t.indexOf(e);return r>-1?t.substr(r+e.length):t}}function D(t){if(void 0!==t)return t.toLowerCase()}function z(t){if(void 0!==t)return t.toUpperCase()}function F(t){if(void 0!==t)return S(t).length}function N(t){if(void 0!==t){var e=t.replace(/[ \t\n\r]+/gm," ");return" "===e.charAt(0)&&(e=e.substring(1))," "===e.charAt(e.length-1)&&(e=e.substring(0,e.length-1)),e}}function B(t,e,r){if(void 0!==t){var n;void 0!==r&&0!==r.length||(r=" ");var i=Math.abs(e)-F(t);if(i>0){var a=new Array(i+1).join(r);r.length>1&&(a=R(a,0,i)),n=e>0?t+a:a+t}else n=t;return n}}function U(t,r){var n;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(n=t.apply(this,[r]),!_(n)){e.next=4;break}return e.delegateYield(n,"t0",3);case 3:n=e.t0;case 4:if(!n||"number"==typeof n.start||"number"===n.end||Array.isArray(n.groups)||w(n.next)){e.next=6;break}throw{code:"T1010",stack:(new Error).stack};case 6:return e.abrupt("return",n);case 7:case"end":return e.stop()}}),e,this)}function Y(t,e){var n,a;return i().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:if(void 0!==t){r.next=2;break}return r.abrupt("return",void 0);case 2:if("string"!=typeof e){r.next=6;break}n=-1!==t.indexOf(e),r.next=9;break;case 6:return r.delegateYield(U(e,t),"t0",7);case 7:a=r.t0,n=void 0!==a;case 9:return r.abrupt("return",n);case 10:case"end":return r.stop()}}),r)}function G(t,e,r){var n,a,s;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:if(!(r<0)){i.next=4;break}throw{stack:(new Error).stack,value:r,code:"D3040",index:3};case 4:if(n=b(),!(void 0===r||r>0)){i.next=17;break}return a=0,i.delegateYield(U(e,t),"t0",8);case 8:if(void 0===(s=i.t0)){i.next=17;break}case 10:if(void 0===s||!(void 0===r||a<r)){i.next=17;break}return n.push({match:s.match,index:s.start,groups:s.groups}),i.delegateYield(U(s.next),"t1",13);case 13:s=i.t1,a++,i.next=10;break;case 17:return i.abrupt("return",n);case 18:case"end":return i.stop()}}),o)}function W(t,e,r,n){var a,o,c,u,l,h,f,d;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:if(a=this,""!==e){i.next=5;break}throw{code:"D3010",stack:(new Error).stack,value:e,index:2};case 5:if(!(n<0)){i.next=7;break}throw{code:"D3011",stack:(new Error).stack,value:n,index:4};case 7:if(o="string"==typeof r?function(t){for(var e="",n=0,i=r.indexOf("$",n);-1!==i&&n<r.length;){e+=r.substring(n,i),n=i+1;var a=r.charAt(n);if("$"===a)e+="$",n++;else if("0"===a)e+=t.match,n++;else{var o;if(o=0===t.groups.length?1:Math.floor(Math.log(t.groups.length)*Math.LOG10E)+1,i=parseInt(r.substring(n,n+o),10),o>1&&i>t.groups.length&&(i=parseInt(r.substring(n,n+o-1),10)),isNaN(i))e+="$";else{if(t.groups.length>0){var s=t.groups[i-1];void 0!==s&&(e+=s)}n+=i.toString().length}}i=r.indexOf("$",n)}return e+=r.substring(n)}:r,c="",u=0,!(void 0===n||n>0)){i.next=44;break}if(l=0,"string"!=typeof e){i.next=18;break}for(h=t.indexOf(e,u);-1!==h&&(void 0===n||l<n);)c+=t.substring(u,h),c+=r,u=h+e.length,l++,h=t.indexOf(e,u);c+=t.substring(u),i.next=42;break;case 18:return i.delegateYield(U(e,t),"t0",19);case 19:if(void 0===(f=i.t0)){i.next=41;break}case 21:if(void 0===f||!(void 0===n||l<n)){i.next=38;break}if(c+=t.substring(u,f.start),d=o.apply(a,[f]),!_(d)){i.next=27;break}return i.delegateYield(d,"t1",26);case 26:d=i.t1;case 27:if("string"!=typeof d){i.next=31;break}c+=d,i.next=32;break;case 31:throw{code:"D3012",stack:(new Error).stack,value:d};case 32:return u=f.start+f.match.length,l++,i.delegateYield(U(f.next),"t2",35);case 35:f=i.t2,i.next=21;break;case 38:c+=t.substring(u),i.next=42;break;case 41:c=t;case 42:i.next=45;break;case 44:c=t;case 45:return i.abrupt("return",c);case 46:case"end":return i.stop()}}),s,this)}function H(e){if(void 0!==e){var r="undefined"!=typeof window?window.btoa:function(e){return new t.Buffer.from(e,"binary").toString("base64")};return r(e)}}function q(e){if(void 0!==e){var r="undefined"!=typeof window?window.atob:function(e){return new t.Buffer.from(e,"base64").toString("binary")};return r(e)}}function X(t){if(void 0!==t){var e;try{e=encodeURIComponent(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"encodeUrlComponent"}}return e}}function V(t){if(void 0!==t){var e;try{e=encodeURI(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"encodeUrl"}}return e}}function Q(t){if(void 0!==t){var e;try{e=decodeURIComponent(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"decodeUrlComponent"}}return e}}function K(t){if(void 0!==t){var e;try{e=decodeURI(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"decodeUrl"}}return e}}function J(t,e,r){var n,a,o,s;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:if(!(r<0)){i.next=4;break}throw{code:"D3020",stack:(new Error).stack,value:r,index:3};case 4:if(n=[],!(void 0===r||r>0)){i.next=27;break}if("string"!=typeof e){i.next=10;break}n=t.split(e,r),i.next=27;break;case 10:return a=0,i.delegateYield(U(e,t),"t0",12);case 12:if(void 0===(o=i.t0)){i.next=26;break}s=0;case 15:if(void 0===o||!(void 0===r||a<r)){i.next=23;break}return n.push(t.substring(s,o.start)),s=o.end,i.delegateYield(U(o.next),"t1",19);case 19:o=i.t1,a++,i.next=15;break;case 23:(void 0===r||a<r)&&n.push(t.substring(s)),i.next=27;break;case 26:n.push(t);case 27:return i.abrupt("return",n);case 28:case"end":return i.stop()}}),c)}function Z(t,e){if(void 0!==t)return void 0===e&&(e=""),t.join(e)}function $(t,e,r){if(void 0!==t){var n={"decimal-separator":".","grouping-separator":",","exponent-separator":"e",infinity:"Infinity","minus-sign":"-",NaN:"NaN",percent:"%","per-mille":"‰","zero-digit":"0",digit:"#","pattern-separator":";"};void 0!==r&&Object.keys(r).forEach((function(t){n[t]=r[t]}));for(var i=[],a=n["zero-digit"].charCodeAt(0),o=a;o<a+10;o++)i.push(String.fromCharCode(o));var s=i.concat([n["decimal-separator"],n["exponent-separator"],n["grouping-separator"],n.digit,n["pattern-separator"]]),c=e.split(n["pattern-separator"]);if(c.length>2)throw{code:"D3080",stack:(new Error).stack};var u=function(t){var e,r,i,a,o=function(){for(var e,r=0;r<t.length;r++)if(e=t.charAt(r),-1!==s.indexOf(e)&&e!==n["exponent-separator"])return t.substring(0,r)}(),c=function(){for(var e,r=t.length-1;r>=0;r--)if(e=t.charAt(r),-1!==s.indexOf(e)&&e!==n["exponent-separator"])return t.substring(r+1)}(),u=t.substring(o.length,t.length-c.length),l=t.indexOf(n["exponent-separator"],o.length);-1===l||l>t.length-c.length?(e=u,r=void 0):(e=u.substring(0,l),r=u.substring(l+1));var h=e.indexOf(n["decimal-separator"]);return-1===h?(i=e,a=c):(i=e.substring(0,h),a=e.substring(h+1)),{prefix:o,suffix:c,activePart:u,mantissaPart:e,exponentPart:r,integerPart:i,fractionalPart:a,subpicture:t}},l=function(t){var e,r,a=t.subpicture,o=a.indexOf(n["decimal-separator"]);o!==a.lastIndexOf(n["decimal-separator"])&&(e="D3081"),a.indexOf(n.percent)!==a.lastIndexOf(n.percent)&&(e="D3082"),a.indexOf(n["per-mille"])!==a.lastIndexOf(n["per-mille"])&&(e="D3083"),-1!==a.indexOf(n.percent)&&-1!==a.indexOf(n["per-mille"])&&(e="D3084");var c=!1;for(r=0;r<t.mantissaPart.length;r++){var u=t.mantissaPart.charAt(r);if(-1!==i.indexOf(u)||u===n.digit){c=!0;break}}c||(e="D3085"),-1!==t.activePart.split("").map((function(t){return-1===s.indexOf(t)?"p":"a"})).join("").indexOf("p")&&(e="D3086"),-1!==o?a.charAt(o-1)!==n["grouping-separator"]&&a.charAt(o+1)!==n["grouping-separator"]||(e="D3087"):t.integerPart.charAt(t.integerPart.length-1)===n["grouping-separator"]&&(e="D3088"),-1!==a.indexOf(n["grouping-separator"]+n["grouping-separator"])&&(e="D3089");var l=t.integerPart.indexOf(n.digit);-1!==l&&t.integerPart.substring(0,l).split("").filter((function(t){return i.indexOf(t)>-1})).length>0&&(e="D3090"),-1!==(l=t.fractionalPart.lastIndexOf(n.digit))&&t.fractionalPart.substring(l).split("").filter((function(t){return i.indexOf(t)>-1})).length>0&&(e="D3091");var h="string"==typeof t.exponentPart;if(h&&t.exponentPart.length>0&&(-1!==a.indexOf(n.percent)||-1!==a.indexOf(n["per-mille"]))&&(e="D3092"),h&&(0===t.exponentPart.length||t.exponentPart.split("").filter((function(t){return-1===i.indexOf(t)})).length>0)&&(e="D3093"),e)throw{code:e,stack:(new Error).stack}},h=function(t){var e=function(e,r){for(var a=[],o=e.indexOf(n["grouping-separator"]);-1!==o;){var s=(r?e.substring(0,o):e.substring(o)).split("").filter((function(t){return-1!==i.indexOf(t)||t===n.digit})).length;a.push(s),o=t.integerPart.indexOf(n["grouping-separator"],o+1)}return a},r=e(t.integerPart),a=function(t){if(0===t.length)return 0;for(var e=function t(e,r){return 0===r?e:t(r,e%r)},r=t.reduce(e),n=1;n<=t.length;n++)if(-1===t.indexOf(n*r))return 0;return r},o=a(r),s=e(t.fractionalPart,!0),c=t.integerPart.split("").filter((function(t){return-1!==i.indexOf(t)})).length,u=c,l=t.fractionalPart.split(""),h=l.filter((function(t){return-1!==i.indexOf(t)})).length,f=l.filter((function(t){return-1!==i.indexOf(t)||t===n.digit})).length,d="string"==typeof t.exponentPart;0===c&&0===f&&(d?(h=1,f=1):c=1),d&&0===c&&-1!==t.integerPart.indexOf(n.digit)&&(c=1),0===c&&0===h&&(h=1);var p=0;return d&&(p=t.exponentPart.split("").filter((function(t){return-1!==i.indexOf(t)})).length),{integerPartGroupingPositions:r,regularGrouping:o,minimumIntegerPartSize:c,scalingFactor:u,prefix:t.prefix,fractionalPartGroupingPositions:s,minimumFactionalPartSize:h,maximumFactionalPartSize:f,minimumExponentSize:p,suffix:t.suffix,picture:t.subpicture}},f=c.map(u);f.forEach(l);var d,p,g,v,y=f.map(h),m=n["minus-sign"],b=n["zero-digit"],x=n["decimal-separator"],w=n["grouping-separator"];if(1===y.length&&(y.push(JSON.parse(JSON.stringify(y[0]))),y[1].prefix=m+y[1].prefix),p=-1!==(d=t>=0?y[0]:y[1]).picture.indexOf(n.percent)?100*t:-1!==d.picture.indexOf(n["per-mille"])?1e3*t:t,0===d.minimumExponentSize)g=p;else{var A=Math.pow(10,d.scalingFactor),_=Math.pow(10,d.scalingFactor-1);for(g=p,v=0;g<_;)g*=10,v-=1;for(;g>A;)g/=10,v+=1}var k=function(t,e){var r=Math.abs(t).toFixed(e);return"0"!==b&&(r=r.split("").map((function(t){return t>="0"&&t<="9"?i[t.charCodeAt(0)-48]:t})).join("")),r},E=k(at(g,d.maximumFactionalPartSize),d.maximumFactionalPartSize),S=E.indexOf(".");for(-1===S?E+=x:E=E.replace(".",x);E.charAt(0)===b;)E=E.substring(1);for(;E.charAt(E.length-1)===b;)E=E.substring(0,E.length-1);S=E.indexOf(x);var M=d.minimumIntegerPartSize-S,T=d.minimumFactionalPartSize-(E.length-S-1);if(E=(M>0?new Array(M+1).join(b):"")+E,E+=T>0?new Array(T+1).join(b):"",S=E.indexOf(x),d.regularGrouping>0)for(var P=Math.floor((S-1)/d.regularGrouping),O=1;O<=P;O++)E=[E.slice(0,S-O*d.regularGrouping),w,E.slice(S-O*d.regularGrouping)].join("");else d.integerPartGroupingPositions.forEach((function(t){E=[E.slice(0,S-t),w,E.slice(S-t)].join(""),S++}));if(S=E.indexOf(x),d.fractionalPartGroupingPositions.forEach((function(t){E=[E.slice(0,t+S+1),w,E.slice(t+S+1)].join("")})),S=E.indexOf(x),-1!==d.picture.indexOf(x)&&S!==E.length-1||(E=E.substring(0,E.length-1)),void 0!==v){var I=k(v,0);(M=d.minimumExponentSize-I.length)>0&&(I=new Array(M+1).join(b)+I),E=E+n["exponent-separator"]+(v<0?m:"")+I}return E=d.prefix+E+d.suffix}}function tt(t,e){if(void 0!==t){if(t=at(t),(e=void 0===e?10:at(e))<2||e>36)throw{code:"D3100",stack:(new Error).stack,value:e};return t.toString(e)}}function et(t){var e;if(void 0!==t){if("number"==typeof t)e=t;else if("string"==typeof t&&/^-?[0-9]+(\.[0-9]+)?([Ee][-+]?[0-9]+)?$/.test(t)&&!isNaN(parseFloat(t))&&isFinite(t))e=parseFloat(t);else if(!0===t)e=1;else{if(!1!==t)throw{code:"D3030",value:t,stack:(new Error).stack,index:1};e=0}return e}}function rt(t){if(void 0!==t)return Math.abs(t)}function nt(t){if(void 0!==t)return Math.floor(t)}function it(t){if(void 0!==t)return Math.ceil(t)}function at(t,e){var r;if(void 0!==t){if(e){var n=t.toString().split("e");t=+(n[0]+"e"+(n[1]?+n[1]+e:e))}var i=(r=Math.round(t))-t;return.5===Math.abs(i)&&1===Math.abs(r%2)&&(r-=1),e&&(n=r.toString().split("e"),r=+(n[0]+"e"+(n[1]?+n[1]-e:-e))),Object.is(r,-0)&&(r=0),r}}function ot(t){if(void 0!==t){if(t<0)throw{stack:(new Error).stack,code:"D3060",index:1,value:t};return Math.sqrt(t)}}function st(t,e){var r;if(void 0!==t){if(r=Math.pow(t,e),!isFinite(r))throw{stack:(new Error).stack,code:"D3061",index:1,value:t,exp:e};return r}}function ct(){return Math.random()}function ut(t){if(void 0!==t){var e=!1;return Array.isArray(t)?1===t.length?e=ut(t[0]):t.length>1&&(e=t.filter((function(t){return ut(t)})).length>0):"string"==typeof t?t.length>0&&(e=!0):v(t)?0!==t&&(e=!0):null!==t&&"object"===n(t)?Object.keys(t).length>0&&(e=!0):"boolean"==typeof t&&!0===t&&(e=!0),e}}function lt(t){if(void 0!==t)return!ut(t)}function ht(t,e,r,n){var i=[e],a=k(t);return a>=2&&i.push(r),a>=3&&i.push(n),i}function ft(t,e){var r,n,a,o;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:r=b(),n=0;case 4:if(!(n<t.length)){i.next=12;break}return a=ht(e,t[n],n,t),i.delegateYield(e.apply(this,a),"t0",7);case 7:void 0!==(o=i.t0)&&r.push(o);case 9:n++,i.next=4;break;case 12:return i.abrupt("return",r);case 13:case"end":return i.stop()}}),u,this)}function dt(t,e){var r,n,a,o;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:r=b(),n=0;case 4:if(!(n<t.length)){i.next=13;break}return a=t[n],o=ht(e,a,n,t),i.delegateYield(e.apply(this,o),"t0",8);case 8:ut(i.t0)&&r.push(a);case 10:n++,i.next=4;break;case 13:return i.abrupt("return",r);case 14:case"end":return i.stop()}}),l,this)}function pt(t,e){var r,n,a,o,s,c,u;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:r=!1,a=0;case 4:if(!(a<t.length)){i.next=22;break}if(o=t[a],s=!0,void 0===e){i.next=12;break}return c=ht(e,o,a,t),i.delegateYield(e.apply(this,c),"t0",10);case 10:u=i.t0,s=ut(u);case 12:if(!s){i.next=19;break}if(r){i.next=18;break}n=o,r=!0,i.next=19;break;case 18:throw{stack:(new Error).stack,code:"D3138",index:a};case 19:a++,i.next=4;break;case 22:if(r){i.next=24;break}throw{stack:(new Error).stack,code:"D3139"};case 24:return i.abrupt("return",n);case 25:case"end":return i.stop()}}),h,this)}function gt(){for(var t=[],e=Array.prototype.slice.call(arguments),r=Math.min.apply(Math,e.map((function(t){return Array.isArray(t)?t.length:0}))),n=0;n<r;n++){var i=e.map((function(t){return t[n]}));t.push(i)}return t}function vt(t,e,r){var n,a,o,s;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:if(!((a=k(e))<2)){i.next=5;break}throw{stack:(new Error).stack,code:"D3050",index:1};case 5:void 0===r&&t.length>0?(n=t[0],o=1):(n=r,o=0);case 6:if(!(o<t.length)){i.next=15;break}return s=[n,t[o]],a>=3&&s.push(o),a>=4&&s.push(t),i.delegateYield(e.apply(this,s),"t0",11);case 11:n=i.t0,o++,i.next=6;break;case 15:return i.abrupt("return",n);case 16:case"end":return i.stop()}}),f,this)}function yt(t){var e=b();if(Array.isArray(t)){var r={};t.forEach((function(t){yt(t).forEach((function(t){r[t]=!0}))})),e=yt(r)}else null===t||"object"!==n(t)||A(t)||Object.keys(t).forEach((function(t){return e.push(t)}));return e}function mt(t,e){var r;if(Array.isArray(t)){r=b();for(var i=0;i<t.length;i++){var a=mt(t[i],e);void 0!==a&&(Array.isArray(a)?a.forEach((function(t){return r.push(t)})):r.push(a))}}else null!==t&&"object"===n(t)&&(r=t[e]);return r}function bt(t,e){return void 0===t?e:void 0===e?t:(Array.isArray(t)||(t=b(t)),Array.isArray(e)||(e=[e]),t.concat(e))}function xt(t){return void 0!==t}function wt(t){var e=b();if(Array.isArray(t))t.forEach((function(t){e=bt(e,wt(t))}));else if(null===t||"object"!==n(t)||A(t))e=t;else for(var r in t){var i={};i[r]=t[r],e.push(i)}return e}function At(t){if(void 0!==t){var e={};return t.forEach((function(t){for(var r in t)e[r]=t[r]})),e}}function _t(t){if(void 0!==t){if(t.length<=1)return t;for(var e=t.length,r=new Array(e),n=0;n<e;n++)r[e-n-1]=t[n];return r}}function kt(t,e){var r,n,a,o;return i().wrap((function(s){for(;;)switch(s.prev=s.next){case 0:r=b(),s.t0=i().keys(t);case 2:if((s.t1=s.t0()).done){s.next=10;break}return n=s.t1.value,a=ht(e,t[n],n,t),s.delegateYield(e.apply(this,a),"t2",6);case 6:void 0!==(o=s.t2)&&r.push(o),s.next=2;break;case 10:return s.abrupt("return",r);case 11:case"end":return s.stop()}}),d,this)}function Et(t){throw{code:"D3137",stack:(new Error).stack,message:t||"$error() function evaluated"}}function St(t,e){if(!t)throw{code:"D3141",stack:(new Error).stack,message:e||"$assert() statement failed"}}function Mt(t){if(void 0!==t)return null===t?"null":v(t)?"number":"string"==typeof t?"string":"boolean"==typeof t?"boolean":Array.isArray(t)?"array":w(t)?"function":"object"}function Tt(t,e){var r,n,a,o;return i().wrap((function(s){for(;;)switch(s.prev=s.next){case 0:if(void 0!==t){s.next=2;break}return s.abrupt("return",void 0);case 2:if(!(t.length<=1)){s.next=4;break}return s.abrupt("return",t);case 4:if(void 0!==e){s.next=10;break}if(m(t)||y(t)){s.next=7;break}throw{stack:(new Error).stack,code:"D3070",index:1};case 7:r=i().mark((function t(e,r){return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.abrupt("return",e>r);case 1:case"end":return t.stop()}}),t)})),s.next=11;break;case 10:r=e;case 11:return n=i().mark((function t(e,n){var a,o;return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return a=i().mark((function t(e,n,a){return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(0!==n.length){i.next=4;break}Array.prototype.push.apply(e,a),i.next=16;break;case 4:if(0!==a.length){i.next=8;break}Array.prototype.push.apply(e,n),i.next=16;break;case 8:return i.delegateYield(r(n[0],a[0]),"t0",9);case 9:if(!i.t0){i.next=14;break}return e.push(a[0]),i.delegateYield(t(e,n,a.slice(1)),"t1",12);case 12:i.next=16;break;case 14:return e.push(n[0]),i.delegateYield(t(e,n.slice(1),a),"t2",16);case 16:case"end":return i.stop()}}),t)})),o=[],t.delegateYield(a(o,e,n),"t0",3);case 3:return t.abrupt("return",o);case 4:case"end":return t.stop()}}),t)})),a=i().mark((function t(e){var r,a,o;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(Array.isArray(e)&&!(e.length<=1)){i.next=4;break}return i.abrupt("return",e);case 4:return r=Math.floor(e.length/2),a=e.slice(0,r),o=e.slice(r),i.delegateYield(t(a),"t0",8);case 8:return a=i.t0,i.delegateYield(t(o),"t1",10);case 10:return o=i.t1,i.delegateYield(n(a,o),"t2",12);case 12:return i.abrupt("return",i.t2);case 13:case"end":return i.stop()}}),t)})),s.delegateYield(a(t),"t0",14);case 14:return o=s.t0,s.abrupt("return",o);case 16:case"end":return s.stop()}}),p)}function Pt(t){if(void 0!==t){if(t.length<=1)return t;for(var e=new Array(t.length),r=0;r<t.length;r++){var n=Math.floor(Math.random()*(r+1));r!==n&&(e[r]=e[n]),e[n]=t[r]}return e}}function Ot(t){if(void 0!==t){if(!Array.isArray(t)||t.length<=1)return t;for(var e=x(t)?b():[],r=0;r<t.length;r++){for(var n=t[r],i=!1,a=0;a<e.length;a++)if(E(n,e[a])){i=!0;break}i||e.push(n)}return e}}function It(t,e){var r,n,a,o;return i().wrap((function(s){for(;;)switch(s.prev=s.next){case 0:r={},s.t0=i().keys(t);case 2:if((s.t1=s.t0()).done){s.next=11;break}return n=s.t1.value,a=t[n],o=ht(e,a,n,t),s.delegateYield(e.apply(this,o),"t2",7);case 7:ut(s.t2)&&(r[n]=a),s.next=2;break;case 11:return 0===Object.keys(r).length&&(r=void 0),s.abrupt("return",r);case 13:case"end":return s.stop()}}),g,this)}return{sum:M,count:T,max:P,min:O,average:I,string:C,substring:R,substringBefore:j,substringAfter:L,lowercase:D,uppercase:z,length:F,trim:N,pad:B,match:G,contains:Y,replace:W,split:J,join:Z,formatNumber:$,formatBase:tt,number:et,floor:nt,ceil:it,round:at,abs:rt,sqrt:ot,power:st,random:ct,boolean:ut,not:lt,map:ft,zip:gt,filter:dt,single:pt,foldLeft:vt,sift:It,keys:yt,lookup:mt,append:bt,exists:xt,spread:wt,merge:At,reverse:_t,each:kt,error:Et,assert:St,type:Mt,sort:Tt,shuffle:Pt,distinct:Ot,base64encode:H,base64decode:q,encodeUrlComponent:X,encodeUrl:V,decodeUrlComponent:Q,decodeUrl:K}}();r.exports=o}).call(this)}).call(this,void 0!==t?t:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./utils":6}],3:[function(t,e,r){function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}function i(){
5
+ /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
6
+ i=function(){return e};var t,e={},r=Object.prototype,a=r.hasOwnProperty,o=Object.defineProperty||function(t,e,r){t[e]=r.value},s="function"==typeof Symbol?Symbol:{},c=s.iterator||"@@iterator",u=s.asyncIterator||"@@asyncIterator",l=s.toStringTag||"@@toStringTag";function h(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{h({},"")}catch(t){h=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var i=e&&e.prototype instanceof b?e:b,a=Object.create(i.prototype),s=new C(n||[]);return o(a,"_invoke",{value:T(t,r,s)}),a}function d(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=f;var p="suspendedStart",g="suspendedYield",v="executing",y="completed",m={};function b(){}function x(){}function w(){}var A={};h(A,c,(function(){return this}));var _=Object.getPrototypeOf,k=_&&_(_(R([])));k&&k!==r&&a.call(k,c)&&(A=k);var E=w.prototype=b.prototype=Object.create(A);function S(t){["next","throw","return"].forEach((function(e){h(t,e,(function(t){return this._invoke(e,t)}))}))}function M(t,e){function r(i,o,s,c){var u=d(t[i],t,o);if("throw"!==u.type){var l=u.arg,h=l.value;return h&&"object"==n(h)&&a.call(h,"__await")?e.resolve(h.__await).then((function(t){r("next",t,s,c)}),(function(t){r("throw",t,s,c)})):e.resolve(h).then((function(t){l.value=t,s(l)}),(function(t){return r("throw",t,s,c)}))}c(u.arg)}var i;o(this,"_invoke",{value:function(t,n){function a(){return new e((function(e,i){r(t,n,e,i)}))}return i=i?i.then(a,a):a()}})}function T(e,r,n){var i=p;return function(a,o){if(i===v)throw new Error("Generator is already running");if(i===y){if("throw"===a)throw o;return{value:t,done:!0}}for(n.method=a,n.arg=o;;){var s=n.delegate;if(s){var c=P(s,n);if(c){if(c===m)continue;return c}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===p)throw i=y,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=v;var u=d(e,r,n);if("normal"===u.type){if(i=n.done?y:g,u.arg===m)continue;return{value:u.arg,done:n.done}}"throw"===u.type&&(i=y,n.method="throw",n.arg=u.arg)}}}function P(e,r){var n=r.method,i=e.iterator[n];if(i===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,P(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),m;var a=d(i,e.iterator,r.arg);if("throw"===a.type)return r.method="throw",r.arg=a.arg,r.delegate=null,m;var o=a.arg;return o?o.done?(r[e.resultName]=o.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,m):o:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,m)}function O(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function I(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function C(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(O,this),this.reset(!0)}function R(e){if(e||""===e){var r=e[c];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var i=-1,o=function r(){for(;++i<e.length;)if(a.call(e,i))return r.value=e[i],r.done=!1,r;return r.value=t,r.done=!0,r};return o.next=o}}throw new TypeError(n(e)+" is not iterable")}return x.prototype=w,o(E,"constructor",{value:w,configurable:!0}),o(w,"constructor",{value:x,configurable:!0}),x.displayName=h(w,l,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===x||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,w):(t.__proto__=w,h(t,l,"GeneratorFunction")),t.prototype=Object.create(E),t},e.awrap=function(t){return{__await:t}},S(M.prototype),h(M.prototype,u,(function(){return this})),e.AsyncIterator=M,e.async=function(t,r,n,i,a){void 0===a&&(a=Promise);var o=new M(f(t,r,n,i),a);return e.isGeneratorFunction(r)?o:o.next().then((function(t){return t.done?t.value:o.next()}))},S(E),h(E,l,"Generator"),h(E,c,(function(){return this})),h(E,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=R,C.prototype={constructor:C,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(I),!e)for(var r in this)"t"===r.charAt(0)&&a.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function n(n,i){return s.type="throw",s.arg=e,r.next=n,i&&(r.method="next",r.arg=t),!!i}for(var i=this.tryEntries.length-1;i>=0;--i){var o=this.tryEntries[i],s=o.completion;if("root"===o.tryLoc)return n("end");if(o.tryLoc<=this.prev){var c=a.call(o,"catchLoc"),u=a.call(o,"finallyLoc");if(c&&u){if(this.prev<o.catchLoc)return n(o.catchLoc,!0);if(this.prev<o.finallyLoc)return n(o.finallyLoc)}else if(c){if(this.prev<o.catchLoc)return n(o.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return n(o.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&a.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var i=n;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var o=i?i.completion:{};return o.type=t,o.arg=e,i?(this.method="next",this.next=i.finallyLoc,m):this.complete(o)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),m},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),I(r),m}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;I(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:R(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),m}},e}var a=t("./datetime"),o=t("./functions"),s=t("./utils"),c=t("./parser"),u=t("./signature"),l=function(){var t=i().mark(B),e=i().mark(U),r=i().mark(G),l=i().mark(W),h=i().mark(H),f=i().mark(q),d=i().mark(X),p=i().mark(V),g=i().mark(at),v=i().mark(ct),y=i().mark(ht),m=i().mark(ft),b=i().mark(dt),x=i().mark(vt),w=i().mark(bt),A=i().mark(xt),_=i().mark(wt),k=i().mark(At),E=i().mark(kt),S=i().mark(St),M=i().mark(Pt),T=i().mark(Ct),P=s.isNumeric,O=s.isArrayOfStrings,I=s.isArrayOfNumbers,C=s.createSequence,R=s.isSequence,j=s.isFunction,L=s.isLambda,D=s.isIterable,z=s.getFunctionArity,F=s.isDeepEqual,N=jt(null);function B(e,r,n){var a,o,s,c;return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:(o=n.lookup("__evaluate_entry"))&&o(e,r,n),t.t0=e.type,t.next="path"===t.t0?5:"binary"===t.t0?8:"unary"===t.t0?11:"name"===t.t0?14:"string"===t.t0||"number"===t.t0||"value"===t.t0?16:"wildcard"===t.t0?18:"descendant"===t.t0?20:"parent"===t.t0?22:"condition"===t.t0?24:"block"===t.t0?27:"bind"===t.t0?30:"regex"===t.t0?33:"function"===t.t0?35:"variable"===t.t0?38:"lambda"===t.t0?40:"partial"===t.t0?42:"apply"===t.t0?45:"transform"===t.t0?48:50;break;case 5:return t.delegateYield(U(e,r,n),"t1",6);case 6:return a=t.t1,t.abrupt("break",50);case 8:return t.delegateYield(X(e,r,n),"t2",9);case 9:return a=t.t2,t.abrupt("break",50);case 11:return t.delegateYield(V(e,r,n),"t3",12);case 12:return a=t.t3,t.abrupt("break",50);case 14:return a=Q(e,r),t.abrupt("break",50);case 16:return a=K(e),t.abrupt("break",50);case 18:return a=J(e,r),t.abrupt("break",50);case 20:return a=$(e,r),t.abrupt("break",50);case 22:return a=n.lookup(e.slot.label),t.abrupt("break",50);case 24:return t.delegateYield(ft(e,r,n),"t4",25);case 25:return a=t.t4,t.abrupt("break",50);case 27:return t.delegateYield(dt(e,r,n),"t5",28);case 28:return a=t.t5,t.abrupt("break",50);case 30:return t.delegateYield(ht(e,r,n),"t6",31);case 31:return a=t.t6,t.abrupt("break",50);case 33:return a=pt(e),t.abrupt("break",50);case 35:return t.delegateYield(xt(e,r,n),"t7",36);case 36:return a=t.t7,t.abrupt("break",50);case 38:return a=gt(e,r,n),t.abrupt("break",50);case 40:return a=_t(e,r,n),t.abrupt("break",50);case 42:return t.delegateYield(kt(e,r,n),"t8",43);case 43:return a=t.t8,t.abrupt("break",50);case 45:return t.delegateYield(bt(e,r,n),"t9",46);case 46:return a=t.t9,t.abrupt("break",50);case 48:return a=yt(e,r,n),t.abrupt("break",50);case 50:if(!n.async||null!=a&&"function"==typeof a.then||(a=Promise.resolve(a)),!n.async||"function"!=typeof a.then||!e.nextFunction||"function"!=typeof a[e.nextFunction]){t.next=54;break}t.next=57;break;case 54:return t.next=56,a;case 56:a=t.sent;case 57:if(!Object.prototype.hasOwnProperty.call(e,"predicate")){t.next=65;break}s=0;case 59:if(!(s<e.predicate.length)){t.next=65;break}return t.delegateYield(q(e.predicate[s].expr,a,n),"t10",61);case 61:a=t.t10;case 62:s++,t.next=59;break;case 65:if("path"===e.type||!Object.prototype.hasOwnProperty.call(e,"group")){t.next=68;break}return t.delegateYield(ct(e.group,a,n),"t11",67);case 67:a=t.t11;case 68:return(c=n.lookup("__evaluate_exit"))&&c(e,r,n,a),a&&R(a)&&!a.tupleStream&&(e.keepArray&&(a.keepSingleton=!0),0===a.length?a=void 0:1===a.length&&(a=a.keepSingleton?a:a[0])),t.abrupt("return",a);case 72:case"end":return t.stop()}}),t)}function U(t,r,n){var a,o,s,c,u,l;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:a=Array.isArray(r)&&"variable"!==t.steps[0].type?r:C(r),s=!1,c=void 0,u=0;case 4:if(!(u<t.steps.length)){e.next=25;break}if((l=t.steps[u]).tuple&&(s=!0),0!==u||!l.consarray){e.next=12;break}return e.delegateYield(B(l,a,n),"t0",9);case 9:o=e.t0,e.next=19;break;case 12:if(!s){e.next=17;break}return e.delegateYield(H(l,a,c,n),"t1",14);case 14:c=e.t1,e.next=19;break;case 17:return e.delegateYield(G(l,a,n,u===t.steps.length-1),"t2",18);case 18:o=e.t2;case 19:if(s||void 0!==o&&0!==o.length){e.next=21;break}return e.abrupt("break",25);case 21:void 0===l.focus&&(a=o);case 22:u++,e.next=4;break;case 25:if(s)if(t.tuple)o=c;else for(o=C(),u=0;u<c.length;u++)o.push(c[u]["@"]);if(t.keepSingletonArray&&(Array.isArray(o)&&o.cons&&!o.sequence&&(o=C(o)),o.keepSingleton=!0),!t.hasOwnProperty("group")){e.next=30;break}return e.delegateYield(ct(t.group,s?c:o,n),"t3",29);case 29:o=e.t3;case 30:return e.abrupt("return",o);case 31:case"end":return e.stop()}}),e)}function Y(t,e){var r=jt(t);for(var n in e)r.bind(n,e[n]);return r}function G(t,e,n,a){var o,s,c,u,l;return i().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:if("sort"!==t.type){r.next=7;break}return r.delegateYield(vt(t,e,n),"t0",2);case 2:if(o=r.t0,!t.stages){r.next=6;break}return r.delegateYield(W(t.stages,o,n),"t1",5);case 5:o=r.t1;case 6:return r.abrupt("return",o);case 7:o=C(),s=0;case 9:if(!(s<e.length)){r.next=24;break}return r.delegateYield(B(t,e[s],n),"t2",11);case 11:if(c=r.t2,!t.stages){r.next=20;break}u=0;case 14:if(!(u<t.stages.length)){r.next=20;break}return r.delegateYield(q(t.stages[u].expr,c,n),"t3",16);case 16:c=r.t3;case 17:u++,r.next=14;break;case 20:void 0!==c&&o.push(c);case 21:s++,r.next=9;break;case 24:return l=C(),a&&1===o.length&&Array.isArray(o[0])&&!R(o[0])?l=o[0]:o.forEach((function(t){!Array.isArray(t)||t.cons?l.push(t):t.forEach((function(t){return l.push(t)}))})),r.abrupt("return",l);case 27:case"end":return r.stop()}}),r)}function W(t,e,r){var n,a,o,s;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:n=e,a=0;case 2:if(!(a<t.length)){i.next=15;break}o=t[a],i.t0=o.type,i.next="filter"===i.t0?7:"index"===i.t0?10:12;break;case 7:return i.delegateYield(q(o.expr,n,r),"t1",8);case 8:return n=i.t1,i.abrupt("break",12);case 10:for(s=0;s<n.length;s++)n[s][o.value]=s;return i.abrupt("break",12);case 12:a++,i.next=2;break;case 15:return i.abrupt("return",n);case 16:case"end":return i.stop()}}),l)}function H(t,e,r,n){var a,o,s,c,u,l,f,d;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if("sort"!==t.type){i.next=15;break}if(!r){i.next=6;break}return i.delegateYield(vt(t,r,n),"t0",3);case 3:a=i.t0,i.next=11;break;case 6:return i.delegateYield(vt(t,e,n),"t1",7);case 7:for(o=i.t1,(a=C()).tupleStream=!0,s=0;s<o.length;s++)(c={"@":o[s]})[t.index]=s,a.push(c);case 11:if(!t.stages){i.next=14;break}return i.delegateYield(W(t.stages,a,n),"t2",13);case 13:a=i.t2;case 14:return i.abrupt("return",a);case 15:(a=C()).tupleStream=!0,u=n,void 0===r&&(r=e.map((function(t){return{"@":t}}))),l=0;case 20:if(!(l<r.length)){i.next=28;break}return u=Y(n,r[l]),i.delegateYield(B(t,r[l]["@"],u),"t3",23);case 23:if(void 0!==(f=i.t3))for(Array.isArray(f)||(f=[f]),d=0;d<f.length;d++)c={},Object.assign(c,r[l]),f.tupleStream?Object.assign(c,f[d]):(t.focus?(c[t.focus]=f[d],c["@"]=r[l]["@"]):c["@"]=f[d],t.index&&(c[t.index]=d),t.ancestor&&(c[t.ancestor.label]=r[l]["@"])),a.push(c);case 25:l++,i.next=20;break;case 28:if(!t.stages){i.next=31;break}return i.delegateYield(W(t.stages,a,n),"t4",30);case 30:a=i.t4;case 31:return i.abrupt("return",a);case 32:case"end":return i.stop()}}),h)}function q(t,e,r){var n,a,s,c,u,l;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(n=C(),e&&e.tupleStream&&(n.tupleStream=!0),Array.isArray(e)||(e=C(e)),"number"!==t.type){i.next=10;break}(a=Math.floor(t.value))<0&&(a=e.length+a),void 0!==(s=e[a])&&(Array.isArray(s)?n=s:n.push(s)),i.next=23;break;case 10:a=0;case 11:if(!(a<e.length)){i.next=23;break}return s=e[a],c=s,u=r,e.tupleStream&&(c=s["@"],u=Y(r,s)),i.delegateYield(B(t,c,u),"t0",17);case 17:l=i.t0,P(l)&&(l=[l]),I(l)?l.forEach((function(t){var r=Math.floor(t);r<0&&(r=e.length+r),r===a&&n.push(s)})):o.boolean(l)&&n.push(s);case 20:a++,i.next=11;break;case 23:return i.abrupt("return",n);case 24:case"end":return i.stop()}}),f)}function X(t,e,r){var n,a,o,s,c;return i().wrap((function(u){for(;;)switch(u.prev=u.next){case 0:return u.delegateYield(B(t.lhs,e,r),"t0",1);case 1:if(a=u.t0,o=t.value,s=i().mark((function n(){return i().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.delegateYield(B(t.rhs,e,r),"t0",1);case 1:return n.abrupt("return",n.t0);case 2:case"end":return n.stop()}}),n)})),"and"!==o&&"or"!==o){u.next=15;break}return u.prev=5,u.delegateYield(at(a,s,o),"t1",7);case 7:return u.abrupt("return",u.t1);case 10:throw u.prev=10,u.t2=u.catch(5),u.t2.position=t.position,u.t2.token=o,u.t2;case 15:return u.delegateYield(s(),"t3",16);case 16:c=u.t3,u.prev=17,u.t4=o,u.next="+"===u.t4||"-"===u.t4||"*"===u.t4||"/"===u.t4||"%"===u.t4?21:"="===u.t4||"!="===u.t4?23:"<"===u.t4||"<="===u.t4||">"===u.t4||">="===u.t4?25:"&"===u.t4?27:".."===u.t4?29:"in"===u.t4?31:33;break;case 21:return n=et(a,c,o),u.abrupt("break",33);case 23:return n=rt(a,c,o),u.abrupt("break",33);case 25:return n=nt(a,c,o),u.abrupt("break",33);case 27:return n=st(a,c),u.abrupt("break",33);case 29:return n=lt(a,c),u.abrupt("break",33);case 31:return n=it(a,c),u.abrupt("break",33);case 33:u.next=40;break;case 35:throw u.prev=35,u.t5=u.catch(17),u.t5.position=t.position,u.t5.token=o,u.t5;case 40:return u.abrupt("return",n);case 41:case"end":return u.stop()}}),d,null,[[5,10],[17,35]])}function V(t,e,r){var n,a,s,c;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:i.t0=t.value,i.next="-"===i.t0?3:"["===i.t0?15:"{"===i.t0?27:30;break;case 3:return i.delegateYield(B(t.expression,e,r),"t1",4);case 4:if(void 0!==(n=i.t1)){i.next=9;break}n=void 0,i.next=14;break;case 9:if(!P(n)){i.next=13;break}n=-n,i.next=14;break;case 13:throw{code:"D1002",stack:(new Error).stack,position:t.position,token:t.value,value:n};case 14:return i.abrupt("break",30);case 15:n=[],a=0;case 17:if(!(a<t.expressions.length)){i.next=25;break}return s=t.expressions[a],i.delegateYield(B(s,e,r),"t2",20);case 20:void 0!==(c=i.t2)&&("["===s.value?n.push(c):n=o.append(n,c));case 22:a++,i.next=17;break;case 25:return t.consarray&&Object.defineProperty(n,"cons",{enumerable:!1,configurable:!1,value:!0}),i.abrupt("break",30);case 27:return i.delegateYield(ct(t,e,r),"t3",28);case 28:return n=i.t3,i.abrupt("break",30);case 30:return i.abrupt("return",n);case 31:case"end":return i.stop()}}),p)}function Q(t,e,r){return o.lookup(e,t.value)}function K(t){return t.value}function J(t,e){var r=C();return Array.isArray(e)&&e.outerWrapper&&e.length>0&&(e=e[0]),null!==e&&"object"===n(e)&&Object.keys(e).forEach((function(t){var n=e[t];Array.isArray(n)?(n=Z(n),r=o.append(r,n)):r.push(n)})),r}function Z(t,e){return void 0===e&&(e=[]),Array.isArray(t)?t.forEach((function(t){Z(t,e)})):e.push(t),e}function $(t,e){var r,n=C();return void 0!==e&&(tt(e,n),r=1===n.length?n[0]:n),r}function tt(t,e){Array.isArray(t)||e.push(t),Array.isArray(t)?t.forEach((function(t){tt(t,e)})):null!==t&&"object"===n(t)&&Object.keys(t).forEach((function(r){tt(t[r],e)}))}function et(t,e,r){var n;if(void 0!==t&&!P(t))throw{code:"T2001",stack:(new Error).stack,value:t};if(void 0!==e&&!P(e))throw{code:"T2002",stack:(new Error).stack,value:e};if(void 0===t||void 0===e)return n;switch(r){case"+":n=t+e;break;case"-":n=t-e;break;case"*":n=t*e;break;case"/":n=t/e;break;case"%":n=t%e}return n}function rt(t,e,r){var i,a=n(t),o=n(e);if("undefined"===a||"undefined"===o)return!1;switch(r){case"=":i=F(t,e);break;case"!=":i=!F(t,e)}return i}function nt(t,e,r){var i,a=n(t),o=n(e);if("undefined"!==a&&"string"!==a&&"number"!==a||"undefined"!==o&&"string"!==o&&"number"!==o)throw{code:"T2010",stack:(new Error).stack,value:"string"!==a&&"number"!==a?t:e};if("undefined"!==a&&"undefined"!==o){if(a!==o)throw{code:"T2009",stack:(new Error).stack,value:t,value2:e};switch(r){case"<":i=t<e;break;case"<=":i=t<=e;break;case">":i=t>e;break;case">=":i=t>=e}return i}}function it(t,e){var r=!1;if(void 0===t||void 0===e)return!1;Array.isArray(e)||(e=[e]);for(var n=0;n<e.length;n++)if(e[n]===t){r=!0;break}return r}function at(t,e,r){var n,a;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:a=ot(t),i.t0=r,i.next="and"===i.t0?4:"or"===i.t0?12:20;break;case 4:if(i.t1=a,!i.t1){i.next=10;break}return i.t2=ot,i.delegateYield(e(),"t3",8);case 8:i.t4=i.t3,i.t1=(0,i.t2)(i.t4);case 10:return n=i.t1,i.abrupt("break",20);case 12:if(i.t5=a,i.t5){i.next=18;break}return i.t6=ot,i.delegateYield(e(),"t7",16);case 16:i.t8=i.t7,i.t5=(0,i.t6)(i.t8);case 18:return n=i.t5,i.abrupt("break",20);case 20:return i.abrupt("return",n);case 21:case"end":return i.stop()}}),g)}function ot(t){var e=o.boolean(t);return void 0!==e&&e}function st(t,e){var r="",n="";return void 0!==t&&(r=o.string(t)),void 0!==e&&(n=o.string(e)),r.concat(n)}function ct(t,e,r){var n,a,s,c,u,l,h,f,d,p,g,y,m;return i().wrap((function(v){for(;;)switch(v.prev=v.next){case 0:n={},a={},s=!(!e||!e.tupleStream),Array.isArray(e)||(e=C(e)),0===e.length&&e.push(void 0),c=0;case 6:if(!(c<e.length)){v.next=31;break}u=e[c],l=s?Y(r,u):r,h=0;case 10:if(!(h<t.lhs.length)){v.next=28;break}return f=t.lhs[h],v.delegateYield(B(f[0],s?u["@"]:u,l),"t0",13);case 13:if("string"==typeof(d=v.t0)||void 0===d){v.next=16;break}throw{code:"T1003",stack:(new Error).stack,position:t.position,value:d};case 16:if(void 0===d){v.next=25;break}if(p={data:u,exprIndex:h},!a.hasOwnProperty(d)){v.next=24;break}if(a[d].exprIndex===h){v.next=21;break}throw{code:"D1009",stack:(new Error).stack,position:t.position,value:d};case 21:a[d].data=o.append(a[d].data,u),v.next=25;break;case 24:a[d]=p;case 25:h++,v.next=10;break;case 28:c++,v.next=6;break;case 31:v.t1=i().keys(a);case 32:if((v.t2=v.t1()).done){v.next=43;break}return d=v.t2.value,p=a[d],g=p.data,l=r,s&&(y=ut(p.data),g=y["@"],delete y["@"],l=Y(r,y)),v.delegateYield(B(t.lhs[p.exprIndex][1],g,l),"t3",39);case 39:void 0!==(m=v.t3)&&(n[d]=m),v.next=32;break;case 43:return v.abrupt("return",n);case 44:case"end":return v.stop()}}),v)}function ut(t){if(!Array.isArray(t))return t;var e={};Object.assign(e,t[0]);for(var r=1;r<t.length;r++)for(var n in t[r])e[n]=o.append(e[n],t[r][n]);return e}function lt(t,e){var r;if(void 0!==t&&!Number.isInteger(t))throw{code:"T2003",stack:(new Error).stack,value:t};if(void 0!==e&&!Number.isInteger(e))throw{code:"T2004",stack:(new Error).stack,value:e};if(void 0===t||void 0===e)return r;if(t>e)return r;var n=e-t+1;if(n>1e7)throw{code:"D2014",stack:(new Error).stack,value:n};r=new Array(n);for(var i=t,a=0;i<=e;i++,a++)r[a]=i;return r.sequence=!0,r}function ht(t,e,r){var n;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.delegateYield(B(t.rhs,e,r),"t0",1);case 1:return n=i.t0,r.bind(t.lhs.value,n),i.abrupt("return",n);case 4:case"end":return i.stop()}}),y)}function ft(t,e,r){var n,a;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.delegateYield(B(t.condition,e,r),"t0",1);case 1:if(a=i.t0,!o.boolean(a)){i.next=7;break}return i.delegateYield(B(t.then,e,r),"t1",4);case 4:n=i.t1,i.next=10;break;case 7:if(void 0===t.else){i.next=10;break}return i.delegateYield(B(t.else,e,r),"t2",9);case 9:n=i.t2;case 10:return i.abrupt("return",n);case 11:case"end":return i.stop()}}),m)}function dt(t,e,r){var n,a,o;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:a=jt(r),o=0;case 2:if(!(o<t.expressions.length)){i.next=8;break}return i.delegateYield(B(t.expressions[o],e,a),"t0",4);case 4:n=i.t0;case 5:o++,i.next=2;break;case 8:return i.abrupt("return",n);case 9:case"end":return i.stop()}}),b)}function pt(t){var e=new zt.RegexEngine(t.value),r=function r(n,i){var a;e.lastIndex=i||0;var o=e.exec(n);if(null!==o){if(a={match:o[0],start:o.index,end:o.index+o[0].length,groups:[]},o.length>1)for(var s=1;s<o.length;s++)a.groups.push(o[s]);a.next=function(){if(!(e.lastIndex>=n.length)){var i=r(n,e.lastIndex);if(i&&""===i.match)throw{code:"D1004",stack:(new Error).stack,position:t.position,value:t.value.source};return i}}}return a};return r}function gt(t,e,r){return""===t.value?e&&e.outerWrapper?e[0]:e:r.lookup(t.value)}function vt(t,e,r){var a,s,c,u,l;return i().wrap((function(h){for(;;)switch(h.prev=h.next){case 0:return s=e,c=!!e.tupleStream,u=i().mark((function e(a,o){var s,u,l,h,f,d,p,g,v;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:s=0,u=0;case 2:if(!(0===s&&u<t.terms.length)){e.next=35;break}return l=t.terms[u],h=a,f=r,c&&(h=a["@"],f=Y(r,a)),e.delegateYield(B(l.expression,h,f),"t0",8);case 8:return d=e.t0,h=o,f=r,c&&(h=o["@"],f=Y(r,o)),e.delegateYield(B(l.expression,h,f),"t1",13);case 13:if(p=e.t1,g=n(d),v=n(p),"undefined"!==g){e.next=19;break}return s="undefined"===v?0:1,e.abrupt("continue",32);case 19:if("undefined"!==v){e.next=22;break}return s=-1,e.abrupt("continue",32);case 22:if(!("string"!==g&&"number"!==g||"string"!==v&&"number"!==v)){e.next=24;break}throw{code:"T2008",stack:(new Error).stack,position:t.position,value:"string"!==g&&"number"!==g?d:p};case 24:if(g===v){e.next=26;break}throw{code:"T2007",stack:(new Error).stack,position:t.position,value:d,value2:p};case 26:if(d!==p){e.next=30;break}return e.abrupt("continue",32);case 30:s=d<p?-1:1;case 31:!0===l.descending&&(s=-s);case 32:u++,e.next=2;break;case 35:return e.abrupt("return",1===s);case 36:case"end":return e.stop()}}),e)})),l={environment:r,input:e},h.delegateYield(o.sort.apply(l,[s,u]),"t0",5);case 5:return a=h.t0,h.abrupt("return",a);case 7:case"end":return h.stop()}}),x)}function yt(t,e,r){var a=i().mark((function e(a){var o,s,c,u,l,h,f,d,p,g,v;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(void 0!==a){e.next=2;break}return e.abrupt("return",void 0);case 2:if(o=r.lookup("clone"),j(o)){e.next=5;break}throw{code:"T2013",stack:(new Error).stack,position:t.position};case 5:return e.delegateYield(wt(o,[a],null,r),"t0",6);case 6:return s=e.t0,e.delegateYield(B(t.pattern,s,r),"t1",8);case 8:if(void 0===(c=e.t1)){e.next=35;break}Array.isArray(c)||(c=[c]),u=0;case 12:if(!(u<c.length)){e.next=35;break}if(!(l=c[u])||!(l.isPrototypeOf(s)||l instanceof Object.constructor)){e.next=16;break}throw{code:"D1010",stack:(new Error).stack,position:t.position};case 16:return e.delegateYield(B(t.update,l,r),"t2",17);case 17:if(h=e.t2,"undefined"===(f=n(h))){e.next=23;break}if("object"===f&&null!==h&&!Array.isArray(h)){e.next=22;break}throw{code:"T2011",stack:(new Error).stack,position:t.update.position,value:h};case 22:for(d in h)l[d]=h[d];case 23:if(void 0===t.delete){e.next=32;break}return e.delegateYield(B(t.delete,l,r),"t3",25);case 25:if(void 0===(p=e.t3)){e.next=32;break}if(g=p,Array.isArray(p)||(p=[p]),O(p)){e.next=31;break}throw{code:"T2012",stack:(new Error).stack,position:t.delete.position,value:g};case 31:for(v=0;v<p.length;v++)"object"===n(l)&&null!==l&&delete l[p[v]];case 32:u++,e.next=12;break;case 35:return e.abrupt("return",s);case 36:case"end":return e.stop()}}),e)}));return It(a,"<(oa):o>")}var mt=c("function($f, $g) { function($x){ $g($f($x)) } }");function bt(t,e,r){var n,a,o,s;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.delegateYield(B(t.lhs,e,r),"t0",1);case 1:if(a=i.t0,"function"!==t.rhs.type){i.next=7;break}return i.delegateYield(xt(t.rhs,e,r,{context:a}),"t1",4);case 4:n=i.t1,i.next=20;break;case 7:return i.delegateYield(B(t.rhs,e,r),"t2",8);case 8:if(o=i.t2,j(o)){i.next=11;break}throw{code:"T2006",stack:(new Error).stack,position:t.position,value:o};case 11:if(!j(a)){i.next=18;break}return i.delegateYield(B(mt,null,r),"t3",13);case 13:return s=i.t3,i.delegateYield(wt(s,[a,o],null,r),"t4",15);case 15:n=i.t4,i.next=20;break;case 18:return i.delegateYield(wt(o,[a],null,r),"t5",19);case 19:n=i.t5;case 20:return i.abrupt("return",n);case 21:case"end":return i.stop()}}),w)}function xt(t,e,r,a){var o,s,c,u,l,h;return i().wrap((function(f){for(;;)switch(f.prev=f.next){case 0:return f.delegateYield(B(t.procedure,e,r),"t0",1);case 1:if(void 0!==(s=f.t0)||"path"!==t.procedure.type||!r.lookup(t.procedure.steps[0].value)){f.next=4;break}throw{code:"T1005",stack:(new Error).stack,position:t.position,token:t.procedure.steps[0].value};case 4:c=[],void 0!==a&&c.push(a.context),u=i().mark((function n(){var a,o;return i().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.delegateYield(B(t.arguments[l],e,r),"t0",1);case 1:a=n.t0,j(a)?(o=i().mark((function t(){var e,n,o,s=arguments;return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:for(e=s.length,n=new Array(e),o=0;o<e;o++)n[o]=s[o];return t.delegateYield(wt(a,n,null,r),"t0",2);case 2:return t.abrupt("return",t.t0);case 3:case"end":return t.stop()}}),t)})),o.arity=z(a),c.push(o)):c.push(a);case 3:case"end":return n.stop()}}),n)})),l=0;case 8:if(!(l<t.arguments.length)){f.next=13;break}return f.delegateYield(u(),"t1",10);case 10:l++,f.next=8;break;case 13:return h="path"===t.procedure.type?t.procedure.steps[0].value:t.procedure.value,f.prev=14,"object"===n(s)&&(s.token=h,s.position=t.position),f.delegateYield(wt(s,c,e,r),"t2",17);case 17:o=f.t2,f.next=25;break;case 20:throw f.prev=20,f.t3=f.catch(14),f.t3.position||(f.t3.position=t.position),f.t3.token||(f.t3.token=h),f.t3;case 25:return f.abrupt("return",o);case 26:case"end":return f.stop()}}),A,null,[[14,20]])}function wt(t,e,r,n){var a,o,s,c;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.delegateYield(At(t,e,r,n),"t0",1);case 1:a=i.t0;case 2:if(!L(a)||!0!==a.thunk){i.next=21;break}return i.delegateYield(B(a.body.procedure,a.input,a.environment),"t1",4);case 4:o=i.t1,"variable"===a.body.procedure.type&&(o.token=a.body.procedure.value),o.position=a.body.procedure.position,s=[],c=0;case 9:if(!(c<a.body.arguments.length)){i.next=17;break}return i.t2=s,i.delegateYield(B(a.body.arguments[c],a.input,a.environment),"t3",12);case 12:i.t4=i.t3,i.t2.push.call(i.t2,i.t4);case 14:c++,i.next=9;break;case 17:return i.delegateYield(At(o,s,r,n),"t5",18);case 18:a=i.t5,i.next=2;break;case 21:return i.abrupt("return",a);case 22:case"end":return i.stop()}}),_)}function At(t,e,r,n){var a,o,s;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(i.prev=0,o=e,t&&(o=Et(t.signature,e,r)),!L(t)){i.next=8;break}return i.delegateYield(St(t,o),"t0",5);case 5:a=i.t0,i.next=24;break;case 8:if(!t||!0!==t._jsonata_function){i.next=16;break}if(s={environment:n,input:r},a=t.implementation.apply(s,o),!D(a)){i.next=14;break}return i.delegateYield(a,"t1",13);case 13:a=i.t1;case 14:i.next=24;break;case 16:if("function"!=typeof t){i.next=23;break}if(a=t.apply(r,o),!D(a)){i.next=21;break}return i.delegateYield(a,"t2",20);case 20:a=i.t2;case 21:i.next=24;break;case 23:throw{code:"T1006",stack:(new Error).stack};case 24:i.next=30;break;case 26:throw i.prev=26,i.t3=i.catch(0),t&&(void 0===i.t3.token&&void 0!==t.token&&(i.t3.token=t.token),i.t3.position=t.position||i.t3.position),i.t3;case 30:return i.abrupt("return",a);case 31:case"end":return i.stop()}}),k,null,[[0,26]])}function _t(t,e,r){var n={_jsonata_lambda:!0,input:e,environment:r,arguments:t.arguments,signature:t.signature,body:t.body};return!0===t.thunk&&(n.thunk=!0),n.apply=i().mark((function t(r,a){return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.delegateYield(wt(n,a,e,r.environment),"t0",1);case 1:return t.abrupt("return",t.t0);case 2:case"end":return t.stop()}}),t)})),n}function kt(t,e,r){var n,a,o,s,c;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:a=[],o=0;case 2:if(!(o<t.arguments.length)){i.next=15;break}if("operator"!==(s=t.arguments[o]).type||"?"!==s.value){i.next=8;break}a.push(s),i.next=12;break;case 8:return i.t0=a,i.delegateYield(B(s,e,r),"t1",10);case 10:i.t2=i.t1,i.t0.push.call(i.t0,i.t2);case 12:o++,i.next=2;break;case 15:return i.delegateYield(B(t.procedure,e,r),"t3",16);case 16:if(void 0!==(c=i.t3)||"path"!==t.procedure.type||!r.lookup(t.procedure.steps[0].value)){i.next=19;break}throw{code:"T1007",stack:(new Error).stack,position:t.position,token:t.procedure.steps[0].value};case 19:if(!L(c)){i.next=23;break}n=Mt(c,a),i.next=32;break;case 23:if(!c||!0!==c._jsonata_function){i.next=27;break}n=Tt(c.implementation,a),i.next=32;break;case 27:if("function"!=typeof c){i.next=31;break}n=Tt(c,a),i.next=32;break;case 31:throw{code:"T1008",stack:(new Error).stack,position:t.position,token:"path"===t.procedure.type?t.procedure.steps[0].value:t.procedure.value};case 32:return i.abrupt("return",n);case 33:case"end":return i.stop()}}),E)}function Et(t,e,r){return void 0===t?e:t.validate(e,r)}function St(t,e){var r,n;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(n=jt(t.environment),t.arguments.forEach((function(t,r){n.bind(t.value,e[r])})),"function"!=typeof t.body){i.next=7;break}return i.delegateYield(Pt(t.body,n),"t0",4);case 4:r=i.t0,i.next=9;break;case 7:return i.delegateYield(B(t.body,t.input,n),"t1",8);case 8:r=i.t1;case 9:return i.abrupt("return",r);case 10:case"end":return i.stop()}}),S)}function Mt(t,e){var r=jt(t.environment),n=[];return t.arguments.forEach((function(t,i){var a=e[i];a&&"operator"===a.type&&"?"===a.value?n.push(t):r.bind(t.value,a)})),{_jsonata_lambda:!0,input:t.input,environment:r,arguments:n,body:t.body}}function Tt(t,e){var r=Ot(t),n="function("+(r=r.map((function(t){return"$"+t.trim()}))).join(", ")+"){ _ }",i=c(n);return i.body=t,Mt(i,e)}function Pt(t,e){var r,n,a,o;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(r=Ot(t),n=r.map((function(t){return e.lookup(t.trim())})),a={environment:e},o=t.apply(a,n),!D(o)){i.next=7;break}return i.delegateYield(o,"t0",6);case 6:o=i.t0;case 7:return i.abrupt("return",o);case 8:case"end":return i.stop()}}),M)}function Ot(t){var e=t.toString();return/\(([^)]*)\)/.exec(e)[1].split(",")}function It(t,e){var r={_jsonata_function:!0,implementation:t};return void 0!==e&&(r.signature=u(e)),r}function Ct(t,e){var r,n,a;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:r=this.input,void 0!==e&&(r=e,Array.isArray(r)&&!R(r)&&((r=C(r)).outerWrapper=!0)),i.prev=4,n=c(t,!1),i.next=12;break;case 8:throw i.prev=8,i.t0=i.catch(4),Dt(i.t0),{stack:(new Error).stack,code:"D3120",value:i.t0.message,error:i.t0};case 12:return i.prev=12,i.delegateYield(B(n,r,this.environment),"t1",14);case 14:a=i.t1,i.next=21;break;case 17:throw i.prev=17,i.t2=i.catch(12),Dt(i.t2),{stack:(new Error).stack,code:"D3121",value:i.t2.message,error:i.t2};case 21:return i.abrupt("return",a);case 22:case"end":return i.stop()}}),T,this,[[4,8],[12,17]])}function Rt(t){if(void 0!==t)return JSON.parse(o.string(t))}function jt(t){var e={};return{bind:function(t,r){e[t]=r},lookup:function(r){var n;return e.hasOwnProperty(r)?n=e[r]:t&&(n=t.lookup(r)),n},timestamp:t?t.timestamp:null,async:!!t&&t.async,global:t?t.global:{ancestry:[null]}}}N.bind("sum",It(o.sum,"<a<n>:n>")),N.bind("count",It(o.count,"<a:n>")),N.bind("max",It(o.max,"<a<n>:n>")),N.bind("min",It(o.min,"<a<n>:n>")),N.bind("average",It(o.average,"<a<n>:n>")),N.bind("string",It(o.string,"<x-b?:s>")),N.bind("substring",It(o.substring,"<s-nn?:s>")),N.bind("substringBefore",It(o.substringBefore,"<s-s:s>")),N.bind("substringAfter",It(o.substringAfter,"<s-s:s>")),N.bind("lowercase",It(o.lowercase,"<s-:s>")),N.bind("uppercase",It(o.uppercase,"<s-:s>")),N.bind("length",It(o.length,"<s-:n>")),N.bind("trim",It(o.trim,"<s-:s>")),N.bind("pad",It(o.pad,"<s-ns?:s>")),N.bind("match",It(o.match,"<s-f<s:o>n?:a<o>>")),N.bind("contains",It(o.contains,"<s-(sf):b>")),N.bind("replace",It(o.replace,"<s-(sf)(sf)n?:s>")),N.bind("split",It(o.split,"<s-(sf)n?:a<s>>")),N.bind("join",It(o.join,"<a<s>s?:s>")),N.bind("formatNumber",It(o.formatNumber,"<n-so?:s>")),N.bind("formatBase",It(o.formatBase,"<n-n?:s>")),N.bind("formatInteger",It(a.formatInteger,"<n-s:s>")),N.bind("parseInteger",It(a.parseInteger,"<s-s:n>")),N.bind("number",It(o.number,"<(nsb)-:n>")),N.bind("floor",It(o.floor,"<n-:n>")),N.bind("ceil",It(o.ceil,"<n-:n>")),N.bind("round",It(o.round,"<n-n?:n>")),N.bind("abs",It(o.abs,"<n-:n>")),N.bind("sqrt",It(o.sqrt,"<n-:n>")),N.bind("power",It(o.power,"<n-n:n>")),N.bind("random",It(o.random,"<:n>")),N.bind("boolean",It(o.boolean,"<x-:b>")),N.bind("not",It(o.not,"<x-:b>")),N.bind("map",It(o.map,"<af>")),N.bind("zip",It(o.zip,"<a+>")),N.bind("filter",It(o.filter,"<af>")),N.bind("single",It(o.single,"<af?>")),N.bind("reduce",It(o.foldLeft,"<afj?:j>")),N.bind("sift",It(o.sift,"<o-f?:o>")),N.bind("keys",It(o.keys,"<x-:a<s>>")),N.bind("lookup",It(o.lookup,"<x-s:x>")),N.bind("append",It(o.append,"<xx:a>")),N.bind("exists",It(o.exists,"<x:b>")),N.bind("spread",It(o.spread,"<x-:a<o>>")),N.bind("merge",It(o.merge,"<a<o>:o>")),N.bind("reverse",It(o.reverse,"<a:a>")),N.bind("each",It(o.each,"<o-f:a>")),N.bind("error",It(o.error,"<s?:x>")),N.bind("assert",It(o.assert,"<bs?:x>")),N.bind("type",It(o.type,"<x:s>")),N.bind("sort",It(o.sort,"<af?:a>")),N.bind("shuffle",It(o.shuffle,"<a:a>")),N.bind("distinct",It(o.distinct,"<x:x>")),N.bind("base64encode",It(o.base64encode,"<s-:s>")),N.bind("base64decode",It(o.base64decode,"<s-:s>")),N.bind("encodeUrlComponent",It(o.encodeUrlComponent,"<s-:s>")),N.bind("encodeUrl",It(o.encodeUrl,"<s-:s>")),N.bind("decodeUrlComponent",It(o.decodeUrlComponent,"<s-:s>")),N.bind("decodeUrl",It(o.decodeUrl,"<s-:s>")),N.bind("eval",It(Ct,"<sx?:x>")),N.bind("toMillis",It(a.toMillis,"<s-s?:n>")),N.bind("fromMillis",It(a.fromMillis,"<n-s?s?:s>")),N.bind("clone",It(Rt,"<(oa)-:o>"));var Lt={S0101:"String literal must be terminated by a matching quote",S0102:"Number out of range: {{token}}",S0103:"Unsupported escape sequence: \\{{token}}",S0104:"The escape sequence \\u must be followed by 4 hex digits",S0105:"Quoted property name must be terminated with a backquote (`)",S0106:"Comment has no closing tag",S0201:"Syntax error: {{token}}",S0202:"Expected {{value}}, got {{token}}",S0203:"Expected {{value}} before end of expression",S0204:"Unknown operator: {{token}}",S0205:"Unexpected token: {{token}}",S0206:"Unknown expression type: {{token}}",S0207:"Unexpected end of expression",S0208:"Parameter {{value}} of function definition must be a variable name (start with $)",S0209:"A predicate cannot follow a grouping expression in a step",S0210:"Each step can only have one grouping expression",S0211:"The symbol {{token}} cannot be used as a unary operator",S0212:"The left side of := must be a variable name (start with $)",S0213:"The literal value {{value}} cannot be used as a step within a path expression",S0214:"The right side of {{token}} must be a variable name (start with $)",S0215:"A context variable binding must precede any predicates on a step",S0216:"A context variable binding must precede the 'order-by' clause on a step",S0217:"The object representing the 'parent' cannot be derived from this expression",S0301:"Empty regular expressions are not allowed",S0302:"No terminating / in regular expression",S0402:"Choice groups containing parameterized types are not supported",S0401:"Type parameters can only be applied to functions and arrays",S0500:"Attempted to evaluate an expression containing syntax error(s)",T0410:"Argument {{index}} of function {{token}} does not match function signature",T0411:"Context value is not a compatible type with argument {{index}} of function {{token}}",T0412:"Argument {{index}} of function {{token}} must be an array of {{type}}",D1001:"Number out of range: {{value}}",D1002:"Cannot negate a non-numeric value: {{value}}",T1003:"Key in object structure must evaluate to a string; got: {{value}}",D1004:"Regular expression matches zero length string",T1005:"Attempted to invoke a non-function. Did you mean ${{{token}}}?",T1006:"Attempted to invoke a non-function",T1007:"Attempted to partially apply a non-function. Did you mean ${{{token}}}?",T1008:"Attempted to partially apply a non-function",D1009:"Multiple key definitions evaluate to same key: {{value}}",D1010:"Attempted to access the Javascript object prototype",T1010:"The matcher function argument passed to function {{token}} does not return the correct object structure",T2001:"The left side of the {{token}} operator must evaluate to a number",T2002:"The right side of the {{token}} operator must evaluate to a number",T2003:"The left side of the range operator (..) must evaluate to an integer",T2004:"The right side of the range operator (..) must evaluate to an integer",D2005:"The left side of := must be a variable name (start with $)",T2006:"The right side of the function application operator ~> must be a function",T2007:"Type mismatch when comparing values {{value}} and {{value2}} in order-by clause",T2008:"The expressions within an order-by clause must evaluate to numeric or string values",T2009:"The values {{value}} and {{value2}} either side of operator {{token}} must be of the same data type",T2010:"The expressions either side of operator {{token}} must evaluate to numeric or string values",T2011:"The insert/update clause of the transform expression must evaluate to an object: {{value}}",T2012:"The delete clause of the transform expression must evaluate to a string or array of strings: {{value}}",T2013:"The transform expression clones the input object using the $clone() function. This has been overridden in the current scope by a non-function.",D2014:"The size of the sequence allocated by the range operator (..) must not exceed 1e6. Attempted to allocate {{value}}.",D3001:"Attempting to invoke string function on Infinity or NaN",D3010:"Second argument of replace function cannot be an empty string",D3011:"Fourth argument of replace function must evaluate to a positive number",D3012:"Attempted to replace a matched string with a non-string value",D3020:"Third argument of split function must evaluate to a positive number",D3030:"Unable to cast value to a number: {{value}}",D3040:"Third argument of match function must evaluate to a positive number",D3050:"The second argument of reduce function must be a function with at least two arguments",D3060:"The sqrt function cannot be applied to a negative number: {{value}}",D3061:"The power function has resulted in a value that cannot be represented as a JSON number: base={{value}}, exponent={{exp}}",D3070:"The single argument form of the sort function can only be applied to an array of strings or an array of numbers. Use the second argument to specify a comparison function",D3080:"The picture string must only contain a maximum of two sub-pictures",D3081:"The sub-picture must not contain more than one instance of the 'decimal-separator' character",D3082:"The sub-picture must not contain more than one instance of the 'percent' character",D3083:"The sub-picture must not contain more than one instance of the 'per-mille' character",D3084:"The sub-picture must not contain both a 'percent' and a 'per-mille' character",D3085:"The mantissa part of a sub-picture must contain at least one character that is either an 'optional digit character' or a member of the 'decimal digit family'",D3086:"The sub-picture must not contain a passive character that is preceded by an active character and that is followed by another active character",D3087:"The sub-picture must not contain a 'grouping-separator' character that appears adjacent to a 'decimal-separator' character",D3088:"The sub-picture must not contain a 'grouping-separator' at the end of the integer part",D3089:"The sub-picture must not contain two adjacent instances of the 'grouping-separator' character",D3090:"The integer part of the sub-picture must not contain a member of the 'decimal digit family' that is followed by an instance of the 'optional digit character'",D3091:"The fractional part of the sub-picture must not contain an instance of the 'optional digit character' that is followed by a member of the 'decimal digit family'",D3092:"A sub-picture that contains a 'percent' or 'per-mille' character must not contain a character treated as an 'exponent-separator'",D3093:"The exponent part of the sub-picture must comprise only of one or more characters that are members of the 'decimal digit family'",D3100:"The radix of the formatBase function must be between 2 and 36. It was given {{value}}",D3110:"The argument of the toMillis function must be an ISO 8601 formatted timestamp. Given {{value}}",D3120:"Syntax error in expression passed to function eval: {{value}}",D3121:"Dynamic error evaluating the expression passed to function eval: {{value}}",D3130:"Formatting or parsing an integer as a sequence starting with {{value}} is not supported by this implementation",D3131:"In a decimal digit pattern, all digits must be from the same decimal group",D3132:"Unknown component specifier {{value}} in date/time picture string",D3133:"The 'name' modifier can only be applied to months and days in the date/time picture string, not {{value}}",D3134:"The timezone integer format specifier cannot have more than four digits",D3135:"No matching closing bracket ']' in date/time picture string",D3136:"The date/time picture string is missing specifiers required to parse the timestamp",D3137:"{{{message}}}",D3138:"The $single() function expected exactly 1 matching result. Instead it matched more.",D3139:"The $single() function expected exactly 1 matching result. Instead it matched 0.",D3140:"Malformed URL passed to ${{{functionName}}}(): {{value}}",D3141:"{{{message}}}"};function Dt(t){var e=Lt[t.code];if(void 0!==e){var r=e.replace(/\{\{\{([^}]+)}}}/g,(function(){return t[arguments[1]]}));r=r.replace(/\{\{([^}]+)}}/g,(function(){return JSON.stringify(t[arguments[1]])})),t.message=r}}function zt(t,e){var r,n;try{r=c(t,e&&e.recover),n=r.errors,delete r.errors}catch(t){throw Dt(t),t}var i=jt(N),o=new Date;return i.bind("now",It((function(t,e){return a.fromMillis(o.getTime(),t,e)}),"<s?s?:s>")),i.bind("millis",It((function(){return o.getTime()}),"<:n>")),e&&e.RegexEngine?zt.RegexEngine=e.RegexEngine:zt.RegexEngine=RegExp,{evaluate:function(t,e,a){if(void 0!==n){var s={code:"S0500",position:0};throw Dt(s),s}var c,u,l;if(void 0!==e)for(var h in c=jt(i),e)c.bind(h,e[h]);else c=i;if(c.bind("$",t),o=new Date,c.timestamp=o,Array.isArray(t)&&!R(t)&&((t=C(t)).outerWrapper=!0),"function"==typeof a){c.async=!0;var f=function(t){Dt(t),a(t,null)},d=function t(e){(u=l.next(e)).done?a(null,u.value):u.value.then(t).catch(f)};l=B(r,t,c),(u=l.next()).value.then(d).catch(f)}else try{for(l=B(r,t,c),u=l.next();!u.done;)u=l.next(u.value);return u.value}catch(s){throw Dt(s),s}},assign:function(t,e){i.bind(t,e)},registerFunction:function(t,e,r){var n=It(e,r);i.bind(t,n)},ast:function(){return r},errors:function(){return n}}}return zt.parser=c,zt}();e.exports=l},{"./datetime":1,"./functions":2,"./parser":4,"./signature":5,"./utils":6}],4:[function(t,e,r){var n=t("./signature"),i=function(){var t={".":75,"[":80,"]":0,"{":70,"}":0,"(":80,")":0,",":0,"@":80,"#":80,";":80,":":80,"?":20,"+":50,"-":50,"*":60,"/":60,"%":60,"|":20,"=":40,"<":40,">":40,"^":40,"**":60,"..":20,":=":10,"!=":40,"<=":40,">=":40,"~>":40,and:30,or:25,in:40,"&":50,"!":0,"~":0},e={'"':'"',"\\":"\\","/":"/",b:"\b",f:"\f",n:"\n",r:"\r",t:"\t"},r=function(r){var n=0,i=r.length,a=function(t,e){return{type:t,value:e,position:n}},o=function(){for(var t,e,a=n,o=0;n<i;){var s=r.charAt(n);if("/"===s&&"\\"!==r.charAt(n-1)&&0===o){if(""===(t=r.substring(a,n)))throw{code:"S0301",stack:(new Error).stack,position:n};for(n++,s=r.charAt(n),a=n;"i"===s||"m"===s;)n++,s=r.charAt(n);return e=r.substring(a,n)+"g",new RegExp(t,e)}"("!==s&&"["!==s&&"{"!==s||"\\"===r.charAt(n-1)||o++,")"!==s&&"]"!==s&&"}"!==s||"\\"===r.charAt(n-1)||o--,n++}throw{code:"S0302",stack:(new Error).stack,position:n}},s=function s(c){if(n>=i)return null;for(var u=r.charAt(n);n<i&&" \t\n\r\v".indexOf(u)>-1;)n++,u=r.charAt(n);if("/"===u&&"*"===r.charAt(n+1)){var l=n;for(n+=2,u=r.charAt(n);"*"!==u||"/"!==r.charAt(n+1);)if(u=r.charAt(++n),n>=i)throw{code:"S0106",stack:(new Error).stack,position:l};return n+=2,u=r.charAt(n),s(c)}if(!0!==c&&"/"===u)return n++,a("regex",o());if("."===u&&"."===r.charAt(n+1))return n+=2,a("operator","..");if(":"===u&&"="===r.charAt(n+1))return n+=2,a("operator",":=");if("!"===u&&"="===r.charAt(n+1))return n+=2,a("operator","!=");if(">"===u&&"="===r.charAt(n+1))return n+=2,a("operator",">=");if("<"===u&&"="===r.charAt(n+1))return n+=2,a("operator","<=");if("*"===u&&"*"===r.charAt(n+1))return n+=2,a("operator","**");if("~"===u&&">"===r.charAt(n+1))return n+=2,a("operator","~>");if(Object.prototype.hasOwnProperty.call(t,u))return n++,a("operator",u);if('"'===u||"'"===u){var h=u;n++;for(var f="";n<i;){if("\\"===(u=r.charAt(n)))if(n++,u=r.charAt(n),Object.prototype.hasOwnProperty.call(e,u))f+=e[u];else{if("u"!==u)throw{code:"S0103",stack:(new Error).stack,position:n,token:u};var d=r.substr(n+1,4);if(!/^[0-9a-fA-F]+$/.test(d))throw{code:"S0104",stack:(new Error).stack,position:n};var p=parseInt(d,16);f+=String.fromCharCode(p),n+=4}else{if(u===h)return n++,a("string",f);f+=u}n++}throw{code:"S0101",stack:(new Error).stack,position:n}}var g,v=/^-?(0|([1-9][0-9]*))(\.[0-9]+)?([Ee][-+]?[0-9]+)?/.exec(r.substring(n));if(null!==v){var y=parseFloat(v[0]);if(!isNaN(y)&&isFinite(y))return n+=v[0].length,a("number",y);throw{code:"S0102",stack:(new Error).stack,position:n,token:v[0]}}if("`"===u){n++;var m=r.indexOf("`",n);if(-1!==m)return g=r.substring(n,m),n=m+1,a("name",g);throw n=i,{code:"S0105",stack:(new Error).stack,position:n}}for(var b,x=n;;)if(b=r.charAt(x),x===i||" \t\n\r\v".indexOf(b)>-1||Object.prototype.hasOwnProperty.call(t,b)){if("$"===r.charAt(n))return g=r.substring(n+1,x),n=x,a("variable",g);switch(g=r.substring(n,x),n=x,g){case"or":case"in":case"and":return a("operator",g);case"true":return a("value",!0);case"false":return a("value",!1);case"null":return a("value",null);default:return n===i&&""===g?null:a("name",g)}}else x++};return s},i=function(e,i){var a,o,s={},c=[],u=function(){var t=[];"(end)"!==a.id&&t.push({type:a.type,value:a.value,position:a.position});for(var e=o();null!==e;)t.push(e),e=o();return t},l={nud:function(){var t={code:"S0211",token:this.value,position:this.position};if(i)return t.remaining=u(),t.type="error",c.push(t),t;throw t.stack=(new Error).stack,t}},h=function(t,e){var r=s[t];return e=e||0,r?e>=r.lbp&&(r.lbp=e):((r=Object.create(l)).id=r.value=t,r.lbp=e,s[t]=r),r},f=function(t){if(i){t.remaining=u(),c.push(t);var e=s["(error)"];return(a=Object.create(e)).error=t,a.type="(error)",a}throw t.stack=(new Error).stack,t},d=function(t,r){if(t&&a.id!==t){var n={code:"(end)"===a.id?"S0203":"S0202",position:a.position,token:a.value,value:t};return f(n)}var i=o(r);if(null===i)return(a=s["(end)"]).position=e.length,a;var c,u=i.value,l=i.type;switch(l){case"name":case"variable":c=s["(name)"];break;case"operator":if(!(c=s[u]))return f({code:"S0204",stack:(new Error).stack,position:i.position,token:u});break;case"string":case"number":case"value":c=s["(literal)"];break;case"regex":l="regex",c=s["(regex)"];break;default:return f({code:"S0205",stack:(new Error).stack,position:i.position,token:u})}return(a=Object.create(c)).value=u,a.type=l,a.position=i.position,a},p=function(t){var e,r=a;for(d(null,!0),e=r.nud();t<a.lbp;)r=a,d(),e=r.led(e);return e},g=function(t){h(t,0).nud=function(){return this}},v=function(e,r,n){var i=r||t[e],a=h(e,i);return a.led=n||function(t){return this.lhs=t,this.rhs=p(i),this.type="binary",this},a},y=function(t,e,r){var n=h(t,e);return n.led=r,n},m=function(t,e){var r=h(t);return r.nud=e||function(){return this.expression=p(70),this.type="unary",this},r};g("(end)"),g("(name)"),g("(literal)"),g("(regex)"),h(":"),h(";"),h(","),h(")"),h("]"),h("}"),h(".."),v("."),v("+"),v("-"),v("*"),v("/"),v("%"),v("="),v("<"),v(">"),v("!="),v("<="),v(">="),v("&"),v("and"),v("or"),v("in"),g("and"),g("or"),g("in"),m("-"),v("~>"),y("(error)",10,(function(t){return this.lhs=t,this.error=a.error,this.remaining=u(),this.type="error",this})),m("*",(function(){return this.type="wildcard",this})),m("**",(function(){return this.type="descendant",this})),m("%",(function(){return this.type="parent",this})),v("(",t["("],(function(t){if(this.procedure=t,this.type="function",this.arguments=[],")"!==a.id)for(;"operator"===a.type&&"?"===a.id?(this.type="partial",this.arguments.push(a),d("?")):this.arguments.push(p(0)),","===a.id;)d(",");if(d(")",!0),"name"===t.type&&("function"===t.value||"λ"===t.value)){if(this.arguments.forEach((function(t,e){if("variable"!==t.type)return f({code:"S0208",stack:(new Error).stack,position:t.position,token:t.value,value:e+1})})),this.type="lambda","<"===a.id){for(var e=a.position,r=1,i="<";r>0&&"{"!==a.id&&"(end)"!==a.id;){var o=d();">"===o.id?r--:"<"===o.id&&r++,i+=o.value}d(">");try{this.signature=n(i)}catch(t){return t.position=e+t.offset,f(t)}}d("{"),this.body=p(0),d("}")}return this})),m("(",(function(){for(var t=[];")"!==a.id&&(t.push(p(0)),";"===a.id);)d(";");return d(")",!0),this.type="block",this.expressions=t,this})),m("[",(function(){var t=[];if("]"!==a.id)for(;;){var e=p(0);if(".."===a.id){var r={type:"binary",value:"..",position:a.position,lhs:e};d(".."),r.rhs=p(0),e=r}if(t.push(e),","!==a.id)break;d(",")}return d("]",!0),this.expressions=t,this.type="unary",this})),v("[",t["["],(function(e){if("]"===a.id){for(var r=e;r&&"binary"===r.type&&"["===r.value;)r=r.lhs;return r.keepArray=!0,d("]"),e}return this.lhs=e,this.rhs=p(t["]"]),this.type="binary",d("]",!0),this})),v("^",t["^"],(function(t){d("(");for(var e=[];;){var r={descending:!1};if("<"===a.id?d("<"):">"===a.id&&(r.descending=!0,d(">")),r.expression=p(0),e.push(r),","!==a.id)break;d(",")}return d(")"),this.lhs=t,this.rhs=e,this.type="binary",this}));var b=function(t){var e=[];if("}"!==a.id)for(;;){var r=p(0);d(":");var n=p(0);if(e.push([r,n]),","!==a.id)break;d(",")}return d("}",!0),void 0===t?(this.lhs=e,this.type="unary"):(this.lhs=t,this.rhs=e,this.type="binary"),this};m("{",b),v("{",t["{"],b),y(":=",t[":="],(function(e){return"variable"!==e.type?f({code:"S0212",stack:(new Error).stack,position:e.position,token:e.value}):(this.lhs=e,this.rhs=p(t[":="]-1),this.type="binary",this)})),v("@",t["@"],(function(e){return this.lhs=e,this.rhs=p(t["@"]),"variable"!==this.rhs.type?f({code:"S0214",stack:(new Error).stack,position:this.rhs.position,token:"@"}):(this.type="binary",this)})),v("#",t["#"],(function(e){return this.lhs=e,this.rhs=p(t["#"]),"variable"!==this.rhs.type?f({code:"S0214",stack:(new Error).stack,position:this.rhs.position,token:"#"}):(this.type="binary",this)})),v("?",t["?"],(function(t){return this.type="condition",this.condition=t,this.then=p(0),":"===a.id&&(d(":"),this.else=p(0)),this})),m("|",(function(){return this.type="transform",this.pattern=p(0),d("|"),this.update=p(0),","===a.id&&(d(","),this.delete=p(0)),d("|"),this}));var x=function t(e){var r;if("function"!==e.type||e.predicate)if("condition"===e.type)e.then=t(e.then),void 0!==e.else&&(e.else=t(e.else)),r=e;else if("block"===e.type){var n=e.expressions.length;n>0&&(e.expressions[n-1]=t(e.expressions[n-1])),r=e}else r=e;else{var i={type:"lambda",thunk:!0,arguments:[],position:e.position};i.body=e,r=i}return r},w=0,A=0,_=[],k=function t(e,r){switch(e.type){case"name":case"wildcard":r.level--,0===r.level&&(void 0===e.ancestor||(_[r.index].slot.label=e.ancestor.label),e.ancestor=r,e.tuple=!0);break;case"parent":r.level++;break;case"block":e.expressions.length>0&&(e.tuple=!0,r=t(e.expressions[e.expressions.length-1],r));break;case"path":e.tuple=!0;var n=e.steps.length-1;for(r=t(e.steps[n--],r);r.level>0&&n>=0;)r=t(e.steps[n--],r);break;default:throw{code:"S0217",token:e.type,position:e.position}}return r},E=function(t,e){if(void 0!==e.seekingParent||"parent"===e.type){var r=void 0!==e.seekingParent?e.seekingParent:[];"parent"===e.type&&r.push(e.slot),void 0===t.seekingParent?t.seekingParent=r:Array.prototype.push.apply(t.seekingParent,r)}},S=function(t){var e=t.steps.length-1,r=t.steps[e],n=void 0!==r.seekingParent?r.seekingParent:[];"parent"===r.type&&n.push(r.slot);for(var i=0;i<n.length;i++){var a=n[i];for(e=t.steps.length-2;a.level>0;){if(e<0){void 0===t.seekingParent?t.seekingParent=[a]:t.seekingParent.push(a);break}for(var o=t.steps[e--];e>=0&&o.focus&&t.steps[e].focus;)o=t.steps[e--];a=k(o,a)}}},M=function t(e){var r;switch(e.type){case"binary":switch(e.value){case".":var n=t(e.lhs);r="path"===n.type?n:{type:"path",steps:[n]},"parent"===n.type&&(r.seekingParent=[n.slot]);var a=t(e.rhs);"function"===a.type&&"path"===a.procedure.type&&1===a.procedure.steps.length&&"name"===a.procedure.steps[0].type&&"function"===r.steps[r.steps.length-1].type&&(r.steps[r.steps.length-1].nextFunction=a.procedure.steps[0].value),"path"===a.type?Array.prototype.push.apply(r.steps,a.steps):(void 0!==a.predicate&&(a.stages=a.predicate,delete a.predicate),r.steps.push(a)),r.steps.filter((function(t){if("number"===t.type||"value"===t.type)throw{code:"S0213",stack:(new Error).stack,position:t.position,value:t.value};return"string"===t.type})).forEach((function(t){t.type="name"})),r.steps.filter((function(t){return!0===t.keepArray})).length>0&&(r.keepSingletonArray=!0);var o=r.steps[0];"unary"===o.type&&"["===o.value&&(o.consarray=!0);var s=r.steps[r.steps.length-1];"unary"===s.type&&"["===s.value&&(s.consarray=!0),S(r);break;case"[":var u=r=t(e.lhs),l="predicate";if("path"===r.type&&(u=r.steps[r.steps.length-1],l="stages"),void 0!==u.group)throw{code:"S0209",stack:(new Error).stack,position:e.position};void 0===u[l]&&(u[l]=[]);var h=t(e.rhs);void 0!==h.seekingParent&&(h.seekingParent.forEach((function(t){1===t.level?k(u,t):t.level--})),E(u,h)),u[l].push({type:"filter",expr:h,position:e.position});break;case"{":if(void 0!==(r=t(e.lhs)).group)throw{code:"S0210",stack:(new Error).stack,position:e.position};r.group={lhs:e.rhs.map((function(e){return[t(e[0]),t(e[1])]})),position:e.position};break;case"^":"path"!==(r=t(e.lhs)).type&&(r={type:"path",steps:[r]});var f={type:"sort",position:e.position};f.terms=e.rhs.map((function(e){var r=t(e.expression);return E(f,r),{descending:e.descending,expression:r}})),r.steps.push(f),S(r);break;case":=":(r={type:"bind",value:e.value,position:e.position}).lhs=t(e.lhs),r.rhs=t(e.rhs),E(r,r.rhs);break;case"@":if(r=t(e.lhs),u=r,"path"===r.type&&(u=r.steps[r.steps.length-1]),void 0!==u.stages||void 0!==u.predicate)throw{code:"S0215",stack:(new Error).stack,position:e.position};if("sort"===u.type)throw{code:"S0216",stack:(new Error).stack,position:e.position};e.keepArray&&(u.keepArray=!0),u.focus=e.rhs.value,u.tuple=!0;break;case"#":r=t(e.lhs),u=r,"path"===r.type?u=r.steps[r.steps.length-1]:(r={type:"path",steps:[r]},void 0!==u.predicate&&(u.stages=u.predicate,delete u.predicate)),void 0===u.stages?u.index=e.rhs.value:u.stages.push({type:"index",value:e.rhs.value,position:e.position}),u.tuple=!0;break;case"~>":(r={type:"apply",value:e.value,position:e.position}).lhs=t(e.lhs),r.rhs=t(e.rhs);break;default:(r={type:e.type,value:e.value,position:e.position}).lhs=t(e.lhs),r.rhs=t(e.rhs),E(r,r.lhs),E(r,r.rhs)}break;case"unary":r={type:e.type,value:e.value,position:e.position},"["===e.value?r.expressions=e.expressions.map((function(e){var n=t(e);return E(r,n),n})):"{"===e.value?r.lhs=e.lhs.map((function(e){var n=t(e[0]);E(r,n);var i=t(e[1]);return E(r,i),[n,i]})):(r.expression=t(e.expression),"-"===e.value&&"number"===r.expression.type?(r=r.expression).value=-r.value:E(r,r.expression));break;case"function":case"partial":(r={type:e.type,name:e.name,value:e.value,position:e.position}).arguments=e.arguments.map((function(e){var n=t(e);return E(r,n),n})),r.procedure=t(e.procedure);break;case"lambda":r={type:e.type,arguments:e.arguments,signature:e.signature,position:e.position};var d=t(e.body);r.body=x(d);break;case"condition":(r={type:e.type,position:e.position}).condition=t(e.condition),E(r,r.condition),r.then=t(e.then),E(r,r.then),void 0!==e.else&&(r.else=t(e.else),E(r,r.else));break;case"transform":(r={type:e.type,position:e.position}).pattern=t(e.pattern),r.update=t(e.update),void 0!==e.delete&&(r.delete=t(e.delete));break;case"block":(r={type:e.type,position:e.position}).expressions=e.expressions.map((function(e){var n=t(e);return E(r,n),(n.consarray||"path"===n.type&&n.steps[0].consarray)&&(r.consarray=!0),n}));break;case"name":r={type:"path",steps:[e]},e.keepArray&&(r.keepSingletonArray=!0);break;case"parent":r={type:"parent",slot:{label:"!"+w++,level:1,index:A++}},_.push(r);break;case"string":case"number":case"value":case"wildcard":case"descendant":case"variable":case"regex":r=e;break;case"operator":if("and"===e.value||"or"===e.value||"in"===e.value)e.type="name",r=t(e);else{if("?"!==e.value)throw{code:"S0201",stack:(new Error).stack,position:e.position,token:e.value};r=e}break;case"error":r=e,e.lhs&&(r=t(e.lhs));break;default:var p="S0206";"(end)"===e.id&&(p="S0207");var g={code:p,position:e.position,token:e.value};if(i)return c.push(g),{type:"error",error:g};throw g.stack=(new Error).stack,g}return e.keepArray&&(r.keepArray=!0),r};o=r(e),d();var T=p(0);if("(end)"!==a.id){var P={code:"S0201",position:a.position,token:a.value};f(P)}if("parent"===(T=M(T)).type||void 0!==T.seekingParent)throw{code:"S0217",token:T.type,position:T.position};return c.length>0&&(T.errors=c),T};return i}();e.exports=i},{"./signature":5}],5:[function(t,e,r){function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var i=t("./utils"),a=function(){var t={a:"arrays",b:"booleans",f:"functions",n:"numbers",o:"objects",s:"strings"};function e(e){for(var r=1,a=[],o={},s=o;r<e.length;){var c=e.charAt(r);if(":"===c)break;var u=function(){a.push(o),s=o,o={}},l=function(t,e,r,n){for(var i=1,a=e;a<t.length;)if(a++,(c=t.charAt(a))===n){if(0==--i)break}else c===r&&i++;return a};switch(c){case"s":case"n":case"b":case"l":case"o":o.regex="["+c+"m]",o.type=c,u();break;case"a":o.regex="[asnblfom]",o.type=c,o.array=!0,u();break;case"f":o.regex="f",o.type=c,u();break;case"j":o.regex="[asnblom]",o.type=c,u();break;case"x":o.regex="[asnblfom]",o.type=c,u();break;case"-":s.context=!0,s.contextRegex=new RegExp(s.regex),s.regex+="?";break;case"?":case"+":s.regex+=c;break;case"(":var h=l(e,r,"(",")"),f=e.substring(r+1,h);if(-1!==f.indexOf("<"))throw{code:"S0402",stack:(new Error).stack,value:f,offset:r};o.regex="["+f+"m]",o.type="("+f+")",r=h,u();break;case"<":if("a"!==s.type&&"f"!==s.type)throw{code:"S0401",stack:(new Error).stack,value:s.type,offset:r};var d=l(e,r,"<",">");s.subtype=e.substring(r+1,d),r=d}r++}var p="^"+a.map((function(t){return"("+t.regex+")"})).join("")+"$",g=new RegExp(p),v=function(t){var e;if(i.isFunction(t))e="f";else switch(n(t)){case"string":e="s";break;case"number":e="n";break;case"boolean":e="b";break;case"object":e=null===t?"l":Array.isArray(t)?"a":"o";break;default:e="m"}return e},y=function(t,e){for(var r="^",n=0,i=0;i<a.length;i++){r+=a[i].regex;var o=e.match(r);if(null===o)throw{code:"T0410",stack:(new Error).stack,value:t[n],index:n+1};n=o[0].length}throw{code:"T0410",stack:(new Error).stack,value:t[n],index:n+1}};return{definition:e,validate:function(e,r){var n="";e.forEach((function(t){n+=v(t)}));var i=g.exec(n);if(i){var o=[],s=0;return a.forEach((function(n,a){var c=e[s],u=i[a+1];if(""===u)if(n.context&&n.contextRegex){var l=v(r);if(!n.contextRegex.test(l))throw{code:"T0411",stack:(new Error).stack,value:r,index:s+1};o.push(r)}else o.push(c),s++;else u.split("").forEach((function(r){if("a"===n.type){if("m"===r)c=void 0;else{c=e[s];var i=!0;if(void 0!==n.subtype)if("a"!==r&&u!==n.subtype)i=!1;else if("a"===r&&c.length>0){var a=v(c[0]);i=a===n.subtype.charAt(0)&&0===c.filter((function(t){return v(t)!==a})).length}if(!i)throw{code:"T0412",stack:(new Error).stack,value:c,index:s+1,type:t[n.subtype]};"a"!==r&&(c=[c])}o.push(c),s++}else o.push(c),s++}))})),o}y(e,n)}}}return e}();e.exports=a},{"./utils":6}],6:[function(t,e,r){function n(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=i(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,a=function(){};return{s:a,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,s=!0,c=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return s=t.done,t},e:function(t){c=!0,o=t},f:function(){try{s||null==r.return||r.return()}finally{if(c)throw o}}}}function i(t,e){if(t){if("string"==typeof t)return a(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?a(t,e):void 0}}function a(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function o(t){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o(t)}var s=function(){function t(t){var e=!1;if("number"==typeof t&&(e=!isNaN(t))&&!isFinite(t))throw{code:"D1001",value:t,stack:(new Error).stack};return e}function e(t){var e=!1;return Array.isArray(t)&&(e=0===t.filter((function(t){return"string"!=typeof t})).length),e}function r(e){var r=!1;return Array.isArray(e)&&(r=0===e.filter((function(e){return!t(e)})).length),r}function i(){var t=[];return t.sequence=!0,1===arguments.length&&t.push(arguments[0]),t}function a(t){return!0===t.sequence&&Array.isArray(t)}function s(t){return t&&(!0===t._jsonata_function||!0===t._jsonata_lambda)||"function"==typeof t}function c(t){return"number"==typeof t.arity?t.arity:"function"==typeof t.implementation?t.implementation.length:"number"==typeof t.length?t.length:t.arguments.length}function u(t){return t&&!0===t._jsonata_lambda}var l=("function"==typeof Symbol?Symbol:{}).iterator||"@@iterator";function h(t){return"object"===o(t)&&null!==t&&l in t&&"next"in t&&"function"==typeof t.next}function f(t,e){if(t===e)return!0;if("object"===o(t)&&"object"===o(e)&&null!==t&&null!==e){if(Array.isArray(t)&&Array.isArray(e)){if(t.length!==e.length)return!1;for(var r=0;r<t.length;r++)if(!f(t[r],e[r]))return!1;return!0}var n=Object.getOwnPropertyNames(t),i=Object.getOwnPropertyNames(e);if(n.length!==i.length)return!1;for(n=n.sort(),i=i.sort(),r=0;r<n.length;r++)if(n[r]!==i[r])return!1;for(r=0;r<n.length;r++){var a=n[r];if(!f(t[a],e[a]))return!1}return!0}return!1}function d(t){var e,r=[],i=n(t);try{for(i.s();!(e=i.n()).done;){var a=e.value;r.push(a)}}catch(t){i.e(t)}finally{i.f()}return r}return{isNumeric:t,isArrayOfStrings:e,isArrayOfNumbers:r,createSequence:i,isSequence:a,isFunction:s,isLambda:u,isIterable:h,getFunctionArity:c,isDeepEqual:f,stringToArray:d}}();e.exports=s},{}]},{},[3])(3)}(Q8);var K8=Q8.exports;const J8=function(t){return t};function Z8(t){if(!t)return J8;try{var e=K8(t);return function(t){return e.evaluate(t)}}catch(t){return console.error(t),J8}}function $8(t){var e=l8(t);return null==e?"":String(e)}function t7(t){return Number(l8(t))}function e7(t){return t}function r7(t){return $8(t)}function n7(t){return t7(t)}function i7(t){if(this.param)return t=$8(t),this.param.hasOwnProperty(t)?this.param[t]:this.param.default}function a7(t){var{param:e}=this;if(e){for(let r in e){let[n,i]=r.split("~"),a=!!n,o=!!i;if(n=parseFloat(n),i=parseFloat(i),t=t7(t),a&&!o&&t>=n)return e[r];if(!a&&o&&t<n)return e[r];if(t>=n&&t<i)return e[r]}return e.default}}function o7(t){return t7(t)*Math.PI/180}function s7(){}function c7(t,e,r,n,i){switch(r){case"value":return"text"===i||"string"===i?r7.bind(t):"number"===i?n7.bind(t):e7.bind(e);case"map":return i7.bind(t);case"range":return a7.bind(t);case"radian":return o7.bind(t);case"eval":return function(t){try{return new Function("value","targets",t)}catch(t){return A8(t),s7}}(n).bind(e);default:return e7.bind(e)}}class u7{constructor(t,e){this.owner=e,this.model=t}dispose(){delete this._model,delete this.owner,delete this.evaluator,delete this.accessor,delete this.source}get model(){return this._model}set model(t){var{target:e,property:r,rule:n,param:i,accessor:a}=t;this._model=t,this.evaluator=c7(this,this.owner,n,i,function(t){switch(t){case"ref":case"fillStyle":case"strokeStyle":return"string";default:return}}(r)),this.accessor=Z8(a);const o=e.match(/\[(.*?)\]/);if(o){var[s,c]=o[1].split(":");this.propAccessor=Z8(s),this.partAccessor=Z8(c)}}get target(){return this.model.target}get property(){return this.model.property}get source(){return this.model.source}get param(){return this.model.param}get ndnsp(){return!!this.model.ndnsp}get partial(){return!!this.model.partial}}function l7(t,e,r,n){n?t.forEach((t=>t[e]={...t[e],...r})):t.forEach((t=>t[e]=r))}function h7(t=!1){(t||void 0!==this.data)&&this.mappings&&this.mappings.forEach((t=>{try{var e,{source:r,target:n,property:i,accessor:a,propAccessor:o,partAccessor:s,ndnsp:c=!1,partial:u=!1}=t;r&&"(self)"!=r?(r.startsWith("#")&&(r=r.substring(1)),e=this.root.findById(r)?.data||{}):e=this.data;var l=a(e);if("(root)"==(n=n.trim())||"(key)"==n){if(null==l)return;let e=Object.keys(l||{}).map((t=>this.root.findOrCreate(t))).filter(Boolean).flat();e.length>0&&e.forEach((e=>{let r=t.evaluator(l[e.get("id")],[e]);!i||"(action)"===i||c&&!r&&0!==r&&!1!==r||(e[i]=u?{...e[i],...r}:r)}))}else if(n.startsWith("[")){if(null==l)return;if(l instanceof Array)l.forEach((e=>{let r=o(e);if(r){let n=this.root.findOrCreate(r);if(n){let r=t.evaluator(s(e),n);!i||"(action)"===i||c&&!r&&0!==r&&!1!==r||l7(n,i,r,u)}}}));else{if(!(l instanceof Object))throw String("mapping data should be an object to target property-id.("+l+")");{let e=o(l);if(e){let r=this.root.findOrCreate(e);if(r){let e=t.evaluator(s(l),r);!i||"(action)"===i||c&&!e&&0!==e&&!1!==e||l7(r,i,e,u)}}}}}else{let e=this.root.findAll(n,this);if(e.length>0){let r=t.evaluator(l,e);!i||"(action)"===i||c&&!r&&0!==r&&!1!==r||l7(e,i,r,u)}}}catch(e){A8(e,this,t)}}))}var f7;function d7(t,e,r,n,i){var{alpha:a=1}=n,o=i.fillStyle;if(t.globalAlpha*=a,o)if("string"==typeof o)t.fillStyle=o,t.fill();else if("object"==typeof o)if("gradient"==o.type){t.translate(r.x,r.y);let n,{width:i,height:a}=e;if("linear"==o.gradientType){let e=3.141592653589793,r=o.rotation;if(r>=.436332&&r<=1.13446||r>=2.00713&&r<=2.70526||r>=3.57792&&r<=4.27606||r>=5.14872&&r<=5.84685){let o=Math.sqrt(Math.pow((i-4)/2,2)+Math.pow((a-4)/2,2));o-=o-(i+a)/3,n=t.createLinearGradient(o*Math.cos(r+e),o*Math.sin(r+e),o*Math.cos(r),o*Math.sin(r))}else n=t.createLinearGradient((i-4)/2*Math.cos(r+e),(a-4)/2*Math.sin(r+e),(i-4)/2*Math.cos(r),(a-4)/2*Math.sin(r))}else if("radial"==o.gradientType){let e=.95*Math.sqrt(Math.pow((i-4)/2,2)+Math.pow((a-4)/2,2));switch(o.center){case"center":default:n=t.createRadialGradient(0,0,0,0,0,e);break;case"left-top":n=t.createRadialGradient(-i/2,-a/2,0,-i/2,-a/2,2*e);break;case"right-top":n=t.createRadialGradient(i/2,-a/2,0,i/2,-a/2,2*e);break;case"left-bottom":n=t.createRadialGradient(-i/2,a/2,0,-i/2,a/2,2*e);break;case"right-bottom":n=t.createRadialGradient(i/2,a/2,0,i/2,a/2,2*e)}}o.colorStops.forEach((t=>{if(t.position>=0&&t.position<=1)try{n.addColorStop(t.position,t.color)}catch(e){_8("Invalid Color for colorstop : ",t.color),n.addColorStop(t.position,"#fff")}})),t.fillStyle=n,t.fill(),t.translate(-r.x,-r.y)}else if("pattern"==o.type&&o.image){i.prepareFillIf(!i._pattern_image_origin);var s=i._pattern_image;if(!s)return;let r=0,n=0,a=0,c=0,u=e.left,l=e.top;if(!o.fitPattern){r=o.offsetX,n=o.offsetY;const t=o.width?o.width:s.width,i=o.height?o.height:s.height;switch(o.align){case"center":a=e.width/2-t/2,c=e.height/2-i/2;break;case"left-top":a=0,c=0;break;case"left-bottom":a=0,c=e.height-i;break;case"right-top":a=e.width-t,c=0;break;case"right-bottom":a=e.width-t,c=e.height-i;break;case"left":a=0,c=e.height/2-i/2;break;case"right":a=e.width-t,c=e.height/2-i/2;break;case"top":a=e.width/2-t/2,c=0;break;case"bottom":a=e.width/2-t/2,c=e.height-i}u+=r+a,l+=n+c}t.translate(u,l),o.color&&(t.fillStyle=o.color,t.fill()),o.fitPattern?Math.abs((s.width-e.width)*(s.height-e.height))>1?(delete i._pattern_image,delete i._pattern_image_origin):t.fillStyle=t.createPattern(s,"no-repeat"):t.fillStyle=t.createPattern(s,o.noRepeat?"no-repeat":"repeat"),t.fill(),t.translate(-u,-l)}}function p7(t,e,r){var{strokeStyle:n,lineDash:i,lineWidth:a,lineCap:o,lineJoin:s,alpha:c}=e;if(n&&0!=a){if(o&&(t.lineCap=o),i){var u="round"==o;switch(i){case"solid":i=[0,0];break;case"round-dot":i=u?[0,2*a]:[a,a];break;case"square-dot":i=u?[a,2*a]:[2*a,a];break;case"dash":i=u?[3*a,2.5*a]:[4*a,1.5*a];break;case"dash-dot":i=u?[3*a,3*a,0,3*a]:[4*a,2*a,a,2*a];break;case"long-dash":i=u?[5*a,4*a]:[6*a,3*a];break;case"long-dash-dot":i=u?[5*a,3*a,0,3*a]:[6*a,2*a,a,2*a];break;case"long-dash-dot-dot":i=u?[5*a,2*a,0,2*a,0,2*a]:[6*a,a,a,a,a,a]}t.setLineDash(i)}t.globalAlpha*=c,t.strokeStyle=n,t.lineWidth=a,t.lineJoin=s,t.stroke()}}function g7(t,e,r,n,i,a=0,o=!1,s=!0){a="number"==typeof a?{tl:a,tr:a,br:a,bl:a}:{tl:0,tr:0,br:0,bl:0,...a},t.beginPath(),t.moveTo(e+a.tl,r),t.lineTo(e+n-a.tr,r),t.quadraticCurveTo(e+n,r,e+n,r+a.tr),t.lineTo(e+n,r+i-a.br),t.quadraticCurveTo(e+n,r+i,e+n-a.br,r+i),t.lineTo(e+a.bl,r+i),t.quadraticCurveTo(e,r+i,e,r+i-a.bl),t.lineTo(e,r+a.tl),t.quadraticCurveTo(e,r,e+a.tl,r),t.closePath(),o&&t.fill(),s&&t.stroke()}function v7(t){const e=/(\*\*|__)(.*?)\1|(\*|_)(.*?)\3|([^\*_]+)/g;let r,n=[];for(;null!==(r=e.exec(t));)r[1]?n.push({text:r[2],bold:!0,italic:!1}):r[3]?n.push({text:r[4],bold:!1,italic:!0}):r[5]&&n.push({text:r[5],bold:!1,italic:!1});return n}function y7(t,e,r){if(e.text.length<2)return e;for(var n=2;n<e.text.length;n++){var i=e.text.substring(0,n);if(!(t.measureText(i).width<r))break}return{...e,text:e.text.substring(0,n-1)}}function m7(t,e,r,n,i){var a=String(e).split("\n");return n?[].concat.apply([],a.map((e=>function(t,e,r){var n=[],i=[],a=0;return e.forEach((e=>{for(var o=e.text;o.length>0;){var s=r-a,c=t.measureText(o).width;if(c<=s)i.push({...e,text:o}),a+=c,o="";else{var u=y7(t,{...e,text:o},s);i.push(u),n.push(i),i=[],a=0,o=o.substring(u.text.length)}}})),i.length>0&&n.push(i),n}(t,i?v7(e):[{text:e,bold:!1,italic:!1}],r)))):a.map((t=>i?v7(t):[{text:t,bold:!1,italic:!1}]))}function b7(t,e,r,n,i,a){if(!n)return[];t.save(),t.font=r;var o=m7(t,n,e,!!i,a);return t.restore(),o}function x7(t){var{fontFamily:e=F8.FONT_FAMILY,bold:r=F8.BOLD,italic:n=F8.ITALIC,fontSize:i=F8.FONT_SIZE}=t,a=[];return r&&a.push("bold"),n&&a.push("italic"),a.push(i+"px"),a.push(e),a.join(" ")}function w7(t,e){let r=t.bold||e.bold,n=t.italic||e.italic,i=[];return r&&i.push("bold"),n&&i.push("italic"),i.push(t.fontSize+"px"),i.push(t.fontFamily),i.join(" ")}function A7(t,e,r,n){var{alpha:i,fontColor:a=F8.FONT_COLOR,textAlign:o=F8.TEXT_ALIGN,textBaseline:s=F8.TEXT_BASELINE,textBackgroundStyle:c,fontSize:u,lineHeight:l,textWrap:h,supportMarkdown:f=!0,textOverflow:d,bold:p=F8.BOLD,italic:g=F8.ITALIC}=n;i=void 0!==i?i:1,u||=F8.FONT_SIZE,l||=1.2*u,t.save(),t.beginPath();var{left:v,top:y,width:m,height:b}=e;if(t.font=x7(n),!h&&d){const e=function(t,e,r,n){const i="ellipsis"===t?"…":"",a=e.measureText(i).width;let o=[],s=0;for(let i of r){let r=[];for(let c of i){let i=e.measureText(c.text).width;if(!(s+i<=n-("ellipsis"===t?a:0))){let i=_7(e,c,n-s-("ellipsis"===t?a:0),t);return r.push(i),o.push(r),o}r.push(c),s+=i}o.push(r),s=0}return o}(d,t,r,m);r=e}var x,w=r.length*l;switch(s){case"top":x=y,t.textBaseline="top";break;case"bottom":x=y+b-w+l,t.textBaseline="bottom";break;default:x=y+b/2-w/2+l/2,t.textBaseline="middle"}t.globalAlpha*=i,t.fillStyle=a,r.forEach(((e,i)=>{let s=x+i*l,h=function(t,e,r){return e.reduce(((e,n)=>(t.font=w7(r,n),e+t.measureText(n.text).width)),0)}(t,e,n),f=v;switch(o){case"left":case"justify":f=v;break;case"right":f=v+m-h;break;case"center":f=v+(m-h)/2}if(c&&(t.fillStyle=c,g7(t,f-4,s-u/2-4,h+8,u+8,4,!0,!1),t.fillStyle=a),"justify"===o&&i<r.length-1&&e.length>1){let r=m-h,i=e.length-1,a=r/i;e.forEach(((e,r)=>{t.font=w7(n,e),t.fillText(e.text,f,s),f+=t.measureText(e.text).width+(r<i?a:0)}))}else e.forEach((e=>{t.font=w7(n,e),t.fillText(e.text,f,s),f+=t.measureText(e.text).width}))})),t.restore()}function _7(t,e,r,n){let i="";for(let n=0;n<e.text.length;n++){let a=i+e.text[n];if(t.measureText(a).width>r)break;i=a}return{...e,text:i+("ellipsis"===n?"…":"")}}function k7(t,e,r={x:0,y:0},n=0,i={x:1,y:1}){return t-=r.x,e-=r.y,{x:(t*Math.cos(-n)-e*Math.sin(-n)+r.x)/i.x,y:(t*Math.sin(-n)+e*Math.cos(-n)+r.y)/i.y}}function E7(t,e,r={x:0,y:0},n=0,i={x:1,y:1}){return t-=r.x,e-=r.y,{x:(t*Math.cos(n)-e*Math.sin(n)+r.x)*i.x,y:(t*Math.sin(n)+e*Math.cos(n)+r.y)*i.y}}function S7(t){var e=t.element,r=t.fillStyle,n=e.style;if(r)if("string"==typeof r)n.backgroundColor=r;else switch(r.type){case"pattern":if(n.backgroundImage="url("+r.image+")",n.backgroundColor="transparent",r.fitPattern?n.backgroundSize="100% 100%":r.width||r.height?n.backgroundSize=`${r.width?r.width+"px":"auto"} ${r.height?r.height+"px":"auto"}`:n.backgroundSize="contain",r.fitPattern)n.backgroundRepeat="no-repeat";else{const{offsetX:t,offsetY:e,noRepeat:i,align:a,color:o}=r;if(i&&(n.backgroundRepeat="no-repeat"),o&&(n.backgroundColor=o),a)switch(a){case"center":n.backgroundPosition="center center";break;case"left-top":n.backgroundPosition="left top";break;case"left-bottom":n.backgroundPosition="left bottom";break;case"right-top":n.backgroundPosition="right top";break;case"right-bottom":n.backgroundPosition="right bottom";break;case"left":n.backgroundPosition="left center";break;case"right":n.backgroundPosition="right center";break;case"top":n.backgroundPosition="center top";break;case"bottom":n.backgroundPosition="center bottom"}else t||e?n.backgroundPosition=`${Number(t)||0}px ${Number(e)||0}px`:delete n.backgroundPosition}break;case"gradient":n.background=function(t,e){var r=e.colorStops,n=e.gradientType;if(r instanceof Array&&r.length>0)switch(n){case"radial":return"radial-gradient(farthest-corner at "+function(t,e){var{width:r,height:n}=t.bounds;switch(e){case"center":return[r/2,n/2];case"left-top":return[0,0];case"right-top":return[r,0];case"left-bottom":return[0,n];default:return[r,n]}}(t,e.center||"center").map((t=>t+"px")).join(" ")+","+r.map((t=>`${t.color} ${100*t.position}%`)).join(",")+")";case"linear":return"linear-gradient("+(180*(e.rotation||0)/3.141592653589793+90+"deg")+", "+r.map((t=>`${t.color} ${100*t.position}%`)).join(",")+")"}return""}(t,r)}else n.background="transparent"}f7="undefined"==typeof document?function(t,e){return new Canvas(t,e)}:function(t,e){var r=document.createElement("canvas");return r.width=t,r.height=e,r};const M7={x:1,y:1},T7={x:0,y:0},P7={boxSizing:"border-box",margin:"0px",position:"absolute",outline:"none"};function O7(t){var{id:e,scale:r=M7,translate:n=T7,bold:i,italic:a,fontFamily:o="",textAlign:s,textBaseline:c,textOverflow:u,paddingTop:l,paddingBottom:h,paddingLeft:f,paddingRight:d,fontSize:p=F8.FONT_SIZE,lineWidth:g=0,lineDash:v}=t.state;h||=0,l||=0,f||=0,d||=0;var y=t.state.class;t.text;var{strokeStyle:m,fillStyle:b,rotation:x=0,fontColor:w,hidden:A}=t,{left:_,top:k,width:E,height:S}=t.bounds,M=t.element;M.hidden=A,e&&(M.id=e),y&&(M.className=y),Object.assign(M.style,P7,{fontFamily:o,fontSize:p+"px",left:_+"px",top:k+"px",width:E+"px",height:S+"px",paddingTop:l+"px",paddingRight:d+"px",paddingBottom:h+"px",paddingLeft:f+"px",border:g+"px",borderColor:m,borderStyle:g>0?v||F8.LINE_DASH:"",color:w,fontWeight:i?"bold":"",fontStyle:a?"italic":"",textAlign:"end"==s?"right":"start"==s?"left":s,verticalAlign:c}),S7(t),function(t){if(t.isShadowable()&&t.state.shadow){var e=t.element,{left:r=0,top:n=0,blurSize:i=0,color:a="transparent"}=t.state.shadow;e.style.boxShadow=`${r}px ${n}px ${i}px ${a}`}}(t);var T=t.delta(),P=(r&&r.x||1)*T.sx,O=(r&&r.y||1)*T.sy,I=(x||0)+T.theta,C=T.tx||0,R=T.ty||0;["-webkit-","-moz-","-ms-","-o-",""].forEach((t=>{M.style[t+"transform"]=`rotate(${I}rad) translate(${C}px, ${R}px) scale(${P}, ${O}) perspective(1px)`}))}var I7,C7=[];function R7(){I7=null;var t=performance.now(),e=(C7=C7.filter((t=>j7(t)))).reduce(((e,r)=>{let n=t-r.updatedAt;return n>=r.retention?e.kills.push(r):e.next=0==e.next?r.retention-n:Math.min(e.next,r.retention-n),e}),{next:0,kills:[]});e.kills.forEach((t=>{let e=C7.indexOf(t);-1!=e?(C7.splice(e,1),t.removeSelf(!0)):A8("Should not be here. Maybe reentrance problem.")})),e.next>0&&(I7=setTimeout(L7,Math.max(e.next,500)))}function j7(t){return!t.disposed&&t.retention>0&&!t.isTemplate()&&t.app&&t.app.isViewMode}var L7=t8((function(){requestAnimationFrame(R7)}),500);var D7=new class{add(t){j7(t)&&-1==C7.indexOf(t)&&(C7.push(t),t.touch()),this.touch()}remove(t){var e=C7.indexOf(t);e>0&&C7.splice(e,1),this.touch()}touch(){null!==I7&&(clearTimeout(I7),I7=null),L7()}get length(){return C7.length}};const z7=function(t){return t};function F7(t){var e=t.indexOf("||"),r="",n="";-1!=e&&(r=t,n=t.substring(e+2,t.length-1).trim(),t=t.replace(t.substring(e,t.length-1),"").trim());var i=t.substr(2,t.length-3).trim().replace(/\[(\w+)\]/g,".$1").replace(/^\./,"").split(".").filter((t=>!!t.trim())),a=i.slice(1);return{defaultValue:n,match:t,originText:r||t,target:i[0],accessor:a.length>0?function(t){return a.reduce(((t,e)=>t?t[e]:void 0),t)}:z7}}function N7(t,e,r){if(t){var n=r||l8,i=String(t),a=(i.match(/#{[^}]*}/gi)||[]).map((t=>F7(t))),o=(i.match(/\${[^}]*}/gi)||[]).map((t=>F7(t)));if(0!=a.length||0!=o.length)return function(){var t=i;return a.forEach((r=>{let i=n(r.accessor(e.getState(r.target)));t=t.replace(r.originText,void 0===i?r.defaultValue||"":i)})),o.forEach((r=>{let i=e.root.findById(r.target),a=n(r.accessor(i&&i.data));t=t.replace(r.originText,void 0===a?r.defaultValue||"":a)})),t}}}const B7=210*Math.PI/180,U7=150*Math.PI/180;var Y7={"data-spread":function(t,e,r){if(t.app.isEditMode){var n=!1;return t.mappings&&t.mappings.forEach((r=>{let i=t.root.findAll(r.target,t);i&&(e.lineWidth=2,i.forEach((r=>{let i=t.center,a=r.center;i=t.transcoordS2C(i.x,i.y,t.rootModel),a=r.transcoordS2C(a.x,a.y,r.rootModel),e.beginPath();const o=e.createLinearGradient(i.x,i.y,a.x,a.y);["#FFA50033","#FFA500"].forEach(((t,e)=>o.addColorStop(e,t))),e.strokeStyle=o,e.fillStyle=o,function(t,e,r,n=10){var i=r.x-e.x,a=r.y-e.y,o=Math.atan2(a,i),s=r.x+n*Math.cos(o+B7),c=r.y+n*Math.sin(o+B7),u=r.x+n*Math.cos(o+U7),l=r.y+n*Math.sin(o+U7);t.beginPath(),t.moveTo(e.x,e.y),t.lineTo(r.x,r.y),t.moveTo(r.x,r.y),t.lineTo(s,c),t.moveTo(r.x,r.y),t.lineTo(u,l),t.stroke()}(e,i,a),n=!0})))})),n}},"bouncing-arrow":function(t,e,r){let{left:n,top:i,width:a}=t.bounds,o=t.state.id,{x:s,y:c}=t.transcoordS2C(n+a/2,i,t.rootModel);const u=2*function(t){const e=100*(1-t)%10;return e<5?e:10-e}(r||0);if(s=Math.max(s,20),c=Math.max(c,20),e.beginPath(),e.moveTo(s-10,c-16+u),e.lineTo(s+10,c-16+u),e.lineTo(s+10,c-8+u),e.lineTo(s+16,c-8+u),e.lineTo(s,c+u),e.lineTo(s-16,c-8+u),e.lineTo(s-10,c-8+u),e.lineTo(s-10,c-16+u),e.lineTo(s-10,c-16+u),e.fillStyle="#FF0000",e.fill(),o){e.beginPath(),e.font="12px Arial";let t=e.measureText(o);e.fillStyle="#FF0000",e.roundRect(s-t.actualBoundingBoxLeft-3+20,c-t.actualBoundingBoxAscent-3-6+u,t.actualBoundingBoxLeft+t.actualBoundingBoxRight+6,t.actualBoundingBoxAscent+t.actualBoundingBoxDescent+6,3),e.fill(),e.fillStyle="white",e.fillText(o,s+20,c-6+u)}return!0},decotag:function(t,e,r){const n=t.decotag;if(n){let{left:r,top:i}=t.bounds,{x:a,y:o}=t.transcoordS2C(r,i,t.rootModel);a=Math.max(a+3,5),o=Math.max(o-8,15),e.font="12px Arial";let s=e.measureText(n);return e.beginPath(),e.fillStyle="#FF0000",e.roundRect(a-s.actualBoundingBoxLeft-3,o-s.actualBoundingBoxAscent-3,s.actualBoundingBoxLeft+s.actualBoundingBoxRight+6,s.actualBoundingBoxAscent+s.actualBoundingBoxDescent+6,3),e.fill(),e.beginPath(),e.fillStyle="white",e.fillText(n,a,o),!0}return!1},anchors:function(t,e,r){if(t.app.isEditMode){var n=!1;return t.anchors&&t.anchors.forEach((r=>{const{name:i,position:a}=r;var{x:o,y:s}=a||{};if(!i)return;var{x:o,y:s}=t.transcoordS2C(o,s,t.rootModel);o+=4,s+=4,e.font="12px Arial";let c=e.measureText(i);e.fillStyle="#FF0000",g7(e,o,s,c.width+6,16,3,!0,!1),e.fillStyle="white",e.fillText(i,o+3,s+13),n=!0})),n}},link:function(t,e,r){var n=!1;if(!t.isLine())return;const{fromEnd:i,toEnd:a}=t;return[i,a].filter(Boolean).forEach((t=>{const{component:r,anchor:i}=t;if(!i)return;const{name:a,position:o}=i||{};if(!a||!o)return;var{x:s,y:c}=o||{},{x:s,y:c}=r.transcoordS2C(s,c,r.rootModel);s+=8,c+=20,e.font="12px Arial";let u=e.measureText(a);e.fillStyle="#FF0000",g7(e,s-u.actualBoundingBoxLeft-4,c-u.actualBoundingBoxAscent-4,u.actualBoundingBoxLeft+u.actualBoundingBoxRight+8,u.actualBoundingBoxAscent+u.actualBoundingBoxDescent+8,4,!0,!1),e.fillStyle="white",e.fillText(a,s,c),n=!0})),n}};function G7(t){return Y7[t]}var W7={};const H7={mutable:!1,resizable:!0,rotatable:!0,properties:[],"value-property":"text"},q7=[],X7={theta:0,tx:0,ty:0,sx:1,sy:1,fade:0},V7=new WeakMap;var Q7=0;class K7{static get nature(){return H7}static register(t,e){if(!e)return W7[t];W7[t]=e}static get residents(){return V7}static registerDecorator(t,e){!function(t,e){Y7[t]=e}(t,e)}constructor(t,e){this._app=e,this._model=t||{},this._state={},this._delta=N6(X7),e&&this.animation?.config&&(1==this.animation.config.autoplay||(this.animation.config.autoplay??1))&&(this.animation.started=!0),this.clearCache(),D7.add(this),V7.set(this,Q7++)}created(){}added(t){}removed(t){}async ready(){if(this.state.persistent){const{isViewMode:t,dataStorage:e}=this.app;t&&(this.data=await e.load(this))}}touch(){this.updatedAt=performance.now()}clearCache(...t){!function(t,...e){0==e.length?t.__cache__={}:e.forEach((e=>delete t.__cache__[e]))}(this,...t)}removeSelf(t){t?this.dispose():this.parent&&this.parent.removeComponent(this)}dispose(){this._animation&&(this._animation.dispose(),delete this._animation),this.disposeMappings(),this.parent&&this.parent.removeComponent(this),delete this._text_substitutor,delete this._value_substitutor,this._disposed=!0,this.retention&&D7.touch(),this.clearCache(),delete this._app}get nature(){return this.constructor.nature}get disposed(){return!!this._disposed}isLayer(){return!1}isGroup(){return!1}isContainer(){return!1}isLine(){return!1}isRoot(){return!1}isRootModel(){return!1}is3dish(){return!1}isTemplate(){return!!this.get("templatePrefix")}isHTMLElement(){return!1}isConnectable(){return!1}isIdentifiable(){return!0}replaceRefids(t){}get retention(){return Number(this.get("retention"))||0}get hasTextProperty(){return!0}get app(){return!this._app&&this.parent&&(this._app=this.parent.app),this._app}get model(){return this._model}get state(){return Object.assign({},this._model,this._state)}get hierarchy(){var t=N6(this._model);return this.volatile.forEach((e=>{delete t[e]})),t}get volatile(){return q7}get textHidden(){return!!this._textHidden}set textHidden(t){this._textHidden=!!t,this.invalidate()}get(t){return this._model[t]}set(t,e){if("string"==typeof t)return this.set({[t]:e});var r={},n={},i=!1,a=(t=N6(t),this);return Object.getOwnPropertyNames(t).forEach((function(e){let o=a._model[e],s=t[e];I4(o,s)||(n[e]=o,r[e]=s,a._model[e]=s,delete a._state[e],i=!0)})),i&&(this.clearCache(),r.hasOwnProperty("text")&&delete this._text_substitutor,r.hasOwnProperty("retention")&&D7.add(this),r.hasOwnProperty("fillStyle")&&this.onchangeFill(r,n),r.hasOwnProperty("mappings")&&this.onchangeMappings(r,n),r.hasOwnProperty("data")&&this.onchangeData(r,n),this.onchange&&this.onchange(r,n),this.trigger("change",r,n)),this}getState(t){return this._state.hasOwnProperty(t)?this._state[t]:this.get(t)}setState(t,e){if("string"==typeof t)return this.setState({[t]:e});var r={},n={},i=!1,a=(t=N6(t),this),o=this.getState("sensitive");return Object.getOwnPropertyNames(t).forEach((function(e){let s=a.getState(e),c=t[e];!o&&I4(s,c)||(n[e]=s,r[e]=c,a._state[e]=c,i=!0)})),i&&(this.clearCache(),r.hasOwnProperty("text")&&delete this._text_substitutor,r.hasOwnProperty("fillStyle")&&this.onchangeFill(r,n),r.hasOwnProperty("data")&&this.onchangeData(r,n),this.onchange&&this.onchange(r,n),this.trigger("change",r,n)),this}get root(){return this.isRoot()?this:this.parent&&this.parent.root}get rootModel(){return this.isRootModel()?this:this.parent&&this.parent.rootModel}get parent(){return this._parent}set parent(t){this._parent=t}get anchors(){return this.nature.anchors||[]}findAnchor(t){return this.anchors.find((e=>e.name===t))}isDescendible(t){return!0}getContext(){return this._parent.getContext()}get center(){var t=this.bounds;return{x:t.left+t.width/2,y:t.top+t.height/2}}set center(t){if(t&&!isNaN(t.x)&&!isNaN(t.y)){var e=this.center;if(Math.round(100*t.x)/100!=Math.round(100*e.x)/100||Math.round(100*t.y)/100!=Math.round(100*e.y)/100){var r=t.x-e.x,n=t.y-e.y;this.path=this.path.map((t=>({x:t.x+r,y:t.y+n})))}}}get location(){const{x:t,y:e}=this.center;return{x:t,y:e,z:this.state.zPos}}set location(t){const{x:e,y:r,z:n}=t||{};this.center={x:e,y:r},isNaN(n)||this.setState("zPos",Number(n))}get rotate(){const{rotationX:t,rotationY:e,rotation:r}=this.state;return{x:t,y:e,z:-r}}set rotate(t){const{x:e,y:r,z:n}=t;this.setState({rotationX:e,rotationY:r,rotation:-n})}get dimension(){const{width:t,height:e}=this.bounds,{depth:r}=this.state;return{width:t,height:e,depth:r}}set dimension(t){const{width:e,height:r,depth:n}=t,{top:i,left:a}=this.bounds;this.bounds={top:i,left:a,width:e,height:r},this.setState("depth",n)}get bounds(){var t,e,r,n,i=this.path;t=e=i[0].x,r=n=i[0].y;for(let a=1;a<i.length;a++){let o=i[a];o.x<t?t=o.x:o.x>e&&(e=o.x),o.y<r?r=o.y:o.y>n&&(n=o.y)}return{left:t,top:r,width:e-t,height:n-r}}set bounds(t){var e=this.bounds;if(Math.round(100*t.width)/100!=Math.round(100*e.width)/100||Math.round(100*t.height)/100!=Math.round(100*e.height)/100||Math.round(100*t.left)/100!=Math.round(100*e.left)/100||Math.round(100*t.top)/100!=Math.round(100*e.top)/100){var r=0==e.width?1:t.width/e.width,n=0==e.height?1:t.height/e.height;this.path=this.path.map((i=>({x:t.left+(i.x-e.left)*r,y:t.top+(i.y-e.top)*n})))}}get path(){return A8("이 컴포넌트에 get path 가 구현되어있지 않음.",this),[]}set path(t){A8("이 컴포넌트에 get path 가 구현되어있지 않음.",this)}get drawPath(){return this.path}outline(t){return function(t,e){var r=t.path.slice();if(r&&r.length){var n=1,i=[];if(t.isLine()||r.push(r[0]),e<=0)return t.transcoordS2T(r[0].x,r[0].y);if(e>=1)return t.transcoordS2T(r[r.length-1].x,r[r.length-1].y);for(;r[n];){let t=r[n-1],e=r[n],a=e.x-t.x,o=e.y-t.y;i.push(Math.sqrt(a*a+o*o)),n++}var a=i.reduce((function(t,e){return t+e}),0);n=0;var o=0;do{o+=i[n++]}while(o/a<e);e=(e-(o-=i[--n])/a)*(a/i[n]);var s=r[n%r.length],c=r[(n+1)%r.length],u=s.x+Math.round((c.x-s.x)*e),l=s.y+Math.round((c.y-s.y)*e);return t.transcoordS2T(u,l)}A8("path should not be empty")}(this,t||0)}get strokeStyle(){return this.get("strokeStyle")}set strokeStyle(t){this.set("strokeStyle",t)}get fillStyle(){return this.getState("fillStyle")}set fillStyle(t){this.setState("fillStyle",t)}get fontColor(){return this.get("fontColor")}set fontColor(t){this.set("fontColor",String(l8(t)))}get rotation(){return this.getState("rotation")}set rotation(t){this.setState("rotation",Number(l8(t)))}contains(t,e){return!1}get mutable(){return this.nature.mutable}get resizable(){return this.nature.resizable&&!this.stuck}adjustResize(t,e,r){if(r){let e=this.bounds,r=e.height/e.width,n=t.width-e.width,i=t.height-e.height;n*r>i?i=n*r:n=i/r;let a=t.left-e.left,o=t.top-e.top;return 0!=a&&0!=o?(o=-i,a=-n):0!=a?a=-n:0!=o&&(o=-i),{left:e.left+a,top:e.top+o,width:e.width+n,height:e.height+i}}return t}get rotatable(){return this.nature.rotatable&&!this.stuck}adjustRotation(t,e){if(e||this.app.rotateStepForced){let e=this.app.rotateStep;return Math.floor((t+e/2)/e)*e}return t}get capturable(){return!1!==this.get("capturable")&&(this.app.isEditMode||!this.hidden)}get stuck(){return!!(this.parent&&this.parent.layout.isStuck(this)||this.get("locked"))}findFirst(t,...e){if(t(this,...e))return this}findAll(t,...e){return"string"==typeof t?X8(t,this,e[0]||this):"function"==typeof t&&t(this,...e)?[this]:void 0}capture(t,e,r){if(!this.capturable||r?.(this))return!1;var n=this.transcoordP2S(t,e);return this.contains(n.x,n.y)?this:void 0}prepare(t,e){t(this)}prepareIf(t){t&&this.prepare&&this.prepare((t=>{this.invalidate()}),(t=>{A8(t)}))}get decotag(){const{id:t,tag:e}=this.state;return(t?`#${t}`:"")+(e?`@${e}`:"")}get decorators(){return["decotag","data-spread"]}get reactionDecorators(){return["bouncing-arrow"]}get hidden(){return this.getState("hidden")||!this.data&&0!==this.data&&this.getState("ndns")||this.isTemplate()}set hidden(t){this.setState("hidden",t)}draw(t){t.save(),this.__proto__.hasOwnProperty("_pre_draw")?this._pre_draw(t):this.prerender(t),this.__proto__.hasOwnProperty("_draw")?this._draw(t):this.render(t),this.__proto__.hasOwnProperty("_post_draw")?this._post_draw(t):this.postrender(t),t.restore()}delta(t,e){if(void 0===e)return t?this._delta[t]:this._delta;this._delta[t]=e}prerender(t){var e=this.rotatePoint,{scale:r,rotation:n,shadow:i,alpha:a}=this.state,o=(r&&r.x||1)*this._delta.sx,s=(r&&r.y||1)*this._delta.sy,c=(n||0)+this._delta.theta,{tx:u=0,ty:l=0}=this._delta,h=(a||1)-this._delta.fade;(u||l)&&t.translate(u,l),(1!=o||1!=s||c)&&(t.translate(e.x,e.y),1==o&&1==s||t.scale(o,s),c&&t.rotate(c),t.translate(-e.x,-e.y)),h&&(t.globalAlpha=h),i&&B8(t,i,this),this.app.isEditMode&&this.hidden&&(t.globalAlpha*=.5)}render(t){}postrender(t){this.drawText(t)}drawText(t){!this.textHidden&&this.text&&this.hasTextProperty&&A7(t,this.textBounds,this.textLines(t),this.state)}drawStroke(t,e){p7(t,e?{...this.state,...e}:this.state)}drawFill(t,e){this.fillStyle&&"transparent"!=this.fillStyle&&(d7(t,this.bounds,this.center,e?{...this.state,...e}:this.state,this),function(t){t.shadowColor="transparent"}(t))}animate(t){return this._animate&&this._animate.stop(),this._animate=U5(t),this._animate}move({x:t,y:e}){var r=this.path,n=t,i=e;this.path=r.map((t=>({x:t.x+n,y:t.y+i})))}symmetryX(t){"number"!=typeof t&&(t=this.center.x);var{rotation:e}=this.state,r=this.fillStyle;if(this.set("rotation",2*Math.PI-e),r&&"gradient"===r.type&&"linear"===r.gradientType){var n=N6(r);n.rotation=(Math.PI-parseFloat(r.rotation||0))%(2*Math.PI),this.set("fillStyle",n)}this.path=this.path.map((e=>({x:2*t-e.x,y:e.y})))}symmetryY(t){this.symmetryX(),this.set("rotation",(Math.PI+this.model.rotation)%(2*Math.PI)),t&&this.move({x:0,y:2*(t-this.center.y)},!1)}get animation(){if(this.app.isViewMode&&!this.isTemplate()){if(!this._animation){var t=this.state.animation;t&&t.oncreate&&(this._animation=(e=this,r=t.oncreate,(n=B5[r.type])?new n(e,r):null))}var e,r,n;return this._animation}}effect(t,e){return function(t,e,r){var n=U8[r.type];n&&n(t,e,r)}(this,t,e)}set started(t){this.animation&&(this.animation.started=t)}invalidate(){this.parent&&this.parent.invalidate()}get font(){return x7(this.model)}get lineHeight(){var t=this.get("lineHeight");return t||1.2*this.fontSize}defaultTextSubstitutor(){var t=this.getState("text");return null==t?"":String(t)}get textSubstitutor(){return this._text_substitutor||(this._text_substitutor=N7(this.getState("text"),this)||this.defaultTextSubstitutor),this._text_substitutor}get text(){var t=this.get("textFormat");return t?function(t,e){if(!t||isNaN(+e))return e;var r,n,i,a,o,s,c,u,l,h=t.length,f=t.search(/[0-9\-\+#]/),d=f>0?t.substring(0,f):"",p=t.split("").reverse().join(""),g=p.search(/[0-9\-\+#]/),v=h-g,y=t.substring(v,v+1),m=v+("."===y||","===y?1:0),b=g>0?t.substring(m,h):"";if(r=(e="-"===(t=t.substring(f,m)).charAt(0)?-e:+e)<0?e=-e:0,i=(n=t.match(/[^\d\-\+#]/g))&&n[1]&&n[0]||",",t=t.split("."),e=+(e=e.toFixed(t[1]&&t[1].length))+"",o=t[1]&&t[1].lastIndexOf("0"),(!(c=e.split("."))[1]||c[1]&&c[1].length<=o)&&(e=(+e).toFixed(o+1)),u=t[0].split(i),t[0]=u.join(""),(a=t[0]&&t[0].indexOf("0"))>-1)for(;c[0].length<t[0].length-a;)c[0]="0"+c[0];else 0==+c[0]&&(c[0]="");if((e=e.split("."))[0]=c[0],s=u[1]&&u[u.length-1].length){for(p="",v=(l=e[0]).length%s,h=l.length,m=0;m<h;m++)p+=l.charAt(m),!((m-v+1)%s)&&m<h-s&&(p+=i);e[0]=p}return e[1]=t[1]&&e[1]?"."+e[1]:"","0"!==(n=e.join(""))&&""!==n||(r=!1),d+("+"==t[0].substring(0,1)?r?"-":"+":r?"-":"")+n+b}(t,this.textSubstitutor()):this.textSubstitutor()}set text(t){delete this._text_substitutor;var e=l8(t);this.setState("text",null==e?"":String(e))}textLines(t){const{textWrap:e,supportMarkdown:r}=this.state;return b7(t||this.getContext(),this.textBounds.width,this.font,this.text,e,r)}get textBounds(){var{paddingTop:t,paddingLeft:e,paddingRight:r,paddingBottom:n}=this.state;n||=0,t||=0,e||=0,r||=0;var{left:i,top:a,width:o,height:s}=this.bounds;return{left:i+e,top:a+t,width:Math.max(o-e-r,0),height:Math.max(s-t-n,0)}}get textRotation(){return 0}get rotatePoint(){return this.center}trim(){delete this._model[""],"chartjs"!==this._model.type&&delete this._model.chart}get value(){var t=this.nature["value-property"]||"text";return"value"==t?this.getState("value"):this[t]}set value(t){var e=this.nature["value-property"]||"text";"value"==e?this.setState("value",t):this[e]=t}get data(){return this.getState("data")}set data(t){this.setState("data",t),this.touch()}set tap(t){var e=this.model.event?.tap;if(e){const{cx:t,cy:r}=this.center;this.rootModel?._doEventAction(e,this,!0,new CustomEvent("click",{offsetX:t,offsetY:r}))}}get mappings(){return!this._mappings&&this.parent&&this.buildMappings(),this._mappings}serialize(...t){return JSON.stringify(this.hierarchy,...t)}get controls(){}closeScene(t){this.rootModel.closeScene(t)}}K7.union=function(t){var e,r,n,i;return t.forEach((t=>{void 0===e?(e=t.left,r=t.top,n=t.left+t.width,i=t.top+t.height):(e=Math.min(t.left,e),r=Math.min(t.top,r),n=Math.max(t.left+t.width,n),i=Math.max(t.top+t.height,i))})),{left:e,top:r,width:n-e,height:i-r}},K7.transcoordR=k7,K7.transcoordRR=E7,K7.createCanvas=f7,K7.memoize=E8,K7.mixin=w8,K7.drawText=A7,K7.font=x7,K7.textLines=b7,K7.drawStroke=p7,K7.drawFill=d7,K7.reposition=O7,K7.RetentionManager=D7,K7.template=function(t,e,r){var n=P5.imports._.templateSettings||P5;r&&q4(t,e,r)&&(e=void 0),t=S5(t),e=Z4({},e,n,d5);var i,a,o=Z4({},e.imports,n.imports,d5),s=i4(o),c=function(t,e){return l5(e,(function(e){return t[e]}))}(o,s),u=0,l=e.interpolate||L5,h="__p += '",f=RegExp((e.escape||L5).source+"|"+l.source+"|"+(l===v5?j5:L5).source+"|"+(e.evaluate||L5).source+"|$","g"),d=z5.call(e,"sourceURL")?"//# sourceURL="+(e.sourceURL+"").replace(/\s/g," ")+"\n":"";t.replace(f,(function(e,r,n,o,s,c){return n||(n=o),h+=t.slice(u,c).replace(D5,g5),r&&(i=!0,h+="' +\n__e("+r+") +\n'"),s&&(a=!0,h+="';\n"+s+";\n__p += '"),n&&(h+="' +\n((__t = ("+n+")) == null ? '' : __t) +\n'"),u=c+e.length,e})),h+="';\n";var p=z5.call(e,"variable")&&e.variable;if(p){if(R5.test(p))throw new Error("Invalid `variable` option passed into `_.template`")}else h="with (obj) {\n"+h+"\n}\n";h=(a?h.replace(O5,""):h).replace(I5,"$1").replace(C5,"$1;"),h="function("+(p||"obj")+") {\n"+(p?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(i?", __e = _.escape":"")+(a?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+h+"return __p\n}";var g=u5((function(){return Function(s,d+"return "+h).apply(void 0,c)}));if(g.source=h,c5(g))throw g;return g},K7.buildSubstitutor=N7,Object.assign(K7.prototype,{drawEffect:function(t){const{effects:e}=this.state;(e||[]).forEach((e=>{this.effect(t,e)}))},prepareFill:function(t,e){var r=this.fillStyle;if(r&&"pattern"==r.type&&r.image){if("string"!=typeof r.image)return this._pattern_image_origin=this._pattern_image=r.image,void t(this);this._pattern_image=null,this._pattern_image_origin=new Image;var n=this;this._pattern_image_origin.onload=function(){if(!r.fitPattern&&!r.width&&!r.height)return n._pattern_image=n._pattern_image_origin,void t(this);let e=r.width||this.width,i=r.height||this.height;r.fitPattern&&(e=n.bounds.width,i=n.bounds.height);let a=f7(e,i);a.getContext("2d").drawImage(this,0,0,this.width,this.height,0,0,e,i),n._pattern_image=a,t(this)},this._pattern_image_origin.onerror=function(t){e(t)};try{"data"!==String(r.image).substring(0,4)?this._pattern_image_origin.crossOrigin="use-credentials":this._pattern_image_origin.crossOrigin=null,this._pattern_image_origin.src=this.app.url(r.image)}catch(t){e(t)}}else t(this)},prepareFillIf:function(t){t&&this.prepareFill((t=>{this.invalidate()}),(t=>{A8(t)}))},onchangeFill:function(t,e){var r=this.fillStyle;r&&"pattern"!==r.type?this._pattern_image&&(this._pattern_image=null,this._pattern_image_origin=null):r?.image&&this.prepareFillIf(r.image)},drawImage:function(t,e,r,n,i,a){e.complete?t.drawImage(e,r,n,i,a):e.addEventListener("load",(()=>{this.invalidate()}))},mutateBounds:function(t,e){var r=this.bounds,n=this.rotatePoint,i=this.get("rotation"),a=this.get("scale");if(t){var o=t.call(e,r);o&&(r=o)}var{left:s,top:c,width:u,height:l}=r,h=[{x:s,y:c},{x:s+u,y:c+l}],f=(h=h.map((t=>E7(t.x,t.y,n,i,a))))[0],d=h[1];n={x:(f.x+d.x)/2,y:(f.y+d.y)/2},f=(h=h.map((t=>k7(t.x,t.y,n,i,a))))[0],d=h[1],this.bounds={left:f.x,top:f.y,width:d.x-f.x,height:d.y-f.y}},mutatePath:function(t,e,r){var n=this.path,i=this.rotatePoint;this.get("rotation"),this.get("scale"),t&&(n=t.call(r,n));var a=n.map((t=>this.transcoordS2P(t.x,t.y)));e&&(n=e.call(r,a))&&(a=n);var o,s,c,u,l={x:0,y:0};o=s=(n=a.map((t=>this.transcoordP2S(t.x,t.y,l))))[0].x,c=u=n[0].y;for(let t=1;t<n.length;t++){let e=n[t];e.x<o?o=e.x:e.x>s&&(s=e.x),e.y<c?c=e.y:e.y>u&&(u=e.y)}i={x:(o+s)/2,y:(c+u)/2},i=this.transcoordS2P(i.x,i.y,l),this.path=a.map((t=>this.transcoordP2S(t.x,t.y,i)))},access:function(t){if(t){var e=String(t),r=(e.match(/#{(\S*)}/)||[]).map((t=>F7(t)))[0];if(r)return r.accessor(this.getState(r.target));var n=(e.match(/\${[^}]*}/)||[]).map((t=>F7(t)))[0];if(n){let t=this.root.findById(n.target);return n.accessor(this.getState(t))}return t}},substitute:function(t,e){if(t){var r=String(t),n=e||l8,i=(r.match(/#{(\S*)}/gi)||[]).map((t=>F7(t))),a=(r.match(/\${[^}]*}/gi)||[]).map((t=>F7(t)));if(0==i.length&&0==a.length)return r;var o=r;return i.forEach((t=>{let e=n(t.accessor(this.getState(t.target)));o=o.replace(t.match,void 0===e?"":e)})),a.forEach((t=>{let e=this.root.findById(t.target),r=n(t.accessor(e&&e.data));o=o.replace(t.match,void 0===r?"":r)})),o}},onchangeMappings:function(t,e){this.disposeMappings(),h7.call(this)},onchangeData:function(t,e){this.state.persistent&&this.app?.isViewMode&&this.app?.dataStorage.save(this,t.data),h7.call(this,[!0])},buildMappings:function(){if(this._model.mappings)return!this._model.mappings instanceof Array?(A8("Mappings model is invalid (should be a Array) ..",this._model.mappings),void(this._mappings=[])):void(this._mappings=(this._model.mappings||[]).filter((t=>t.rule&&t.target)).map((t=>new u7(t,this))));this._mappings=[]},executeMappings:h7,disposeMappings:function(){this._mappings&&this._mappings.forEach((t=>t.dispose())),delete this._mappings},ondropfile:function(t,e){for(let r=0;r<t.length;r++)if(t[r].type.startsWith("image/"))return void this.set("fillStyle",{type:"pattern",image:e[r],fitPattern:!0})},transcoordS2P:function(t,e,r){if(!this.parent)return{x:t,y:e};var{rotation:n=0,scale:i={x:1,y:1}}=this.state;if(this.isLayer()){let r=this.state.translate,a=E7(t,e,void 0,n+this._delta.theta,i);return r&&(a.x+=r.x,a.y+=r.y),a}r=r||this.rotatePoint;const{theta:a=0,tx:o=0,ty:s=0,sx:c=1,sy:u=1}=this._delta||{},l=E7(t+o,e+s,r={x:r.x+o,y:r.y+s},n+a,i={x:i.x*c,y:i.y*u});return{x:l.x-(r.x*i.x-r.x),y:l.y-(r.y*i.y-r.y)}},transcoordP2S:function(t,e,r){if(!this.parent)return{x:t,y:e};var{rotation:n=0,scale:i={x:1,y:1}}=this.state;if(this.isLayer()){let r=this.state.translate,a=k7(t,e,r,n,i);return r&&(a.x-=r.x/(i?i.x:1),a.y-=r.y/(i?i.y:1)),a}var a=k7(t,e,r=r||this.rotatePoint,n,i);return{x:a.x+(r.x-r.x/i.x),y:a.y+(r.y-r.y/i.y)}},transcoordS2T:function(t,e,r){r=r||this.rootModel;var n=[];for(let t=this.parent;t&&t!==r;t=t.parent)n.push(t);var i=this.transcoordS2P(t,e);return n.forEach((t=>{let{scale:e}=t.model,r=t.bounds;if(e){let n=t.rotatePoint;i.x+=(n.x-r.left)*e.x,i.y+=(n.y-r.top)*e.y}else i.x+=r.left,i.y+=r.top;i=t.transcoordS2P(i.x,i.y)})),i},transcoordT2P:function(t,e,r){r=r||this.rootModel;var n=[];for(let t=this.parent;t&&t!==r;t=t.parent)n.splice(0,0,t);var i={x:t,y:e};return n.forEach((t=>{let{scale:e}=t.model;i=t.transcoordP2S(i.x,i.y);let r=t.bounds;if(e){let n=t.rotatePoint;i.x-=(n.x-r.left)/e.x,i.y-=(n.y-r.top)/e.y}else i.x-=r.left,i.y-=r.top})),i},transcoordT2S:function(t,e,r){var n=this.transcoordT2P(t,e,r);return this.transcoordP2S(n.x,n.y)},transcoordS2TR:function(t,e,r){r=r||this.rootModel;var n=this.transcoordS2T(t,e,r);return E7(n.x,n.y,void 0,(r.get("rotation")||0)+r._delta.theta)},transcoordS2O:function(t,e,r){var n=this.rootModel,i=this.transcoordS2T(t,e,n);return r.transcoordT2S(i.x,i.y,n)},transcoordC2S:function(t,e,r){if(!r)for(r=this;r&&!r.isLayer();)r=r.parent;var{translate:n={x:0,y:0},scale:i={x:1,y:1},rotation:a=0}=r.model,o=k7(t,e,n,a,i);return n&&(o.x-=n.x/(i?i.x:1),o.y-=n.y/(i?i.y:1)),r===this?o:this.transcoordT2S(o.x,o.y,r)},transcoordS2C:function(t,e,r){if(!r)for(r=this;r&&!r.isLayer();)r=r.parent;if(r!==this)var n=this.transcoordS2T(t,e,r);else n={x:t,y:e};var{translate:i={x:0,y:0},rotation:a=0,scale:o={x:1,y:1}}=r.model;return n=E7(n.x,n.y,void 0,a+r._delta.theta,o),i&&(n.x+=i.x,n.y+=i.y),n},_pre_draw:K7.prototype.prerender,_draw:K7.prototype.render,_post_draw:K7.prototype.postrender}),["rotatePoint","font","lineHeight","retention"].forEach((t=>K7.memoize(K7.prototype,t,!1))),["bounds","center","textBounds"].forEach((t=>K7.memoize(K7.prototype,t,!0))),K7.mixin(K7.prototype,v8.withEvent);class J7 extends K7{set rotationX(t){this.setState("rotationX",t)}get rotationX(){return this.getState("rotationX")}set rotationY(t){this.setState("rotationY",t)}get rotationY(){return this.getState("rotationY")}set rotationZ(t){this.setState("rotation",t)}get rotationZ(){return this.getState("rotation")}set zPos(t){this.setState("zPos",t)}get zPos(){return this.getState("zPos")}set depth(t){this.setState("depth",t)}get depth(){return this.getState("depth")}postrender(t){this.drawFill(t),this.drawStroke(t),super.postrender(t)}render(t){var e=this.drawPath,{round:r=0}=this.state;if(!(e.length<=1)){t.beginPath();for(var n=0;n<e.length;n++){const c=e[(n-1+e.length)%e.length],u=e[(n+e.length)%e.length],l=e[(n+1)%e.length];if(c.x===u.x&&c.y===u.y)continue;var i=0!==(s=Math.sqrt((c.x-u.x)*(c.x-u.x)+(c.y-u.y)*(c.y-u.y)))?Math.atan2(c.x-u.x,c.y-u.y):0,a=Math.sin(i)*Math.min(r,s/2)+u.x,o=Math.cos(i)*Math.min(r,s/2)+u.y;const h=r>0||0!==s?{x:a,y:o}:u;var s;i=0!==(s=Math.sqrt((l.x-u.x)*(l.x-u.x)+(l.y-u.y)*(l.y-u.y)))?Math.atan2(l.x-u.x,l.y-u.y):0,a=Math.sin(i)*Math.min(r,s/2)+u.x,o=Math.cos(i)*Math.min(r,s/2)+u.y;const f=r>0||0!==s?{x:a,y:o}:u;0==n?t.moveTo(h.x,h.y):t.lineTo(h.x,h.y),r>0&&t.quadraticCurveTo(u.x,u.y,f.x,f.y)}t.closePath()}}}function Z7(t,e,r){return Math.max(0,Math.min(t,Math.min(r,e)/2))}var $7=t=>{var e=class extends t{contains(t,e){var{left:r,top:n,width:i,height:a,lineWidth:o=0}=this.state,s=o/2;return t<Math.max(r+i,r)+s&&t>Math.min(r+i,r)-s&&e<Math.max(n+a,n)+s&&e>Math.min(n+a,n)-s}set path(t){var e=t[0],r=t[2];this.set({left:e.x,top:e.y,width:r.x-e.x,height:r.y-e.y})}get path(){var{left:t=0,top:e=0,width:r=0,height:n=0}=this.state;return[{x:t,y:e},{x:t+r,y:e},{x:t+r,y:e+n},{x:t,y:e+n}]}get anchors(){return function(t){var{left:e,top:r,width:n,height:i}=t.bounds,a=e+n/2,o=r+i/2;return[{name:"TOP",position:{x:a,y:r}},{name:"RIGHT",position:{x:e+n,y:o}},{name:"BOTTOM",position:{x:a,y:r+i}},{name:"LEFT",position:{x:e,y:o}}]}(this)}render(t){var{round:e=0}=this.model,{left:r,top:n,width:i,height:a}=this.bounds;t.translate(r,n),t.beginPath(),(e=Z7(e,i,a))>0?t.roundRect(0,0,i,a,e):t.rect(0,0,i,a),t.translate(-r,-n)}};return E8(e.prototype,"path",!1),e};const t9={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"textarea",label:"front-side-template",name:"frontSideTemplate",property:{language:"html"}},{type:"textarea",label:"back-side-template",name:"backSideTemplate",property:{language:"html"}},{type:"textarea",label:"style",name:"style",property:{language:"css"}}],help:"scene/component/info-window"};const e9=20;function r9(t,e){var r=t.split(/\s+/),n=r.indexOf(e);return-1!=n?r.splice(n,1):r.splice(-1,0,e),r.join(" ")}class n9 extends($7(J7)){static get image(){return n9._image||(n9._image=new Image,n9._image.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAMAAACahl6sAAAAY1BMVEVHcEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADIAbxiAAAAIHRSTlMA+gPshCwwWFzYCeLRm7QRG6rLeDZI9JOJJDtjb1HAf1sAT80AAAQQSURBVHhe7MCBAAAAAMKw/KkzOMG2BAAAAKeu3lUohIEggO7jQi5qHqpgwML5/6+0F0y02z31FlvMMLKt86QMQ1ined2Evih1hFFjLfRWjgzDOGZ6JSiM00B9EuHALtQxJLiQBmqSBCeSUEuEGzs1BDjSaHxWOKK5Eyz/4SoMV/hp4+vtcPkdwZD/udwevNg7t1xXYRiKmkB7C+ENlPLq8fxHeX+RGjWQ1D45ldcIulBIvCvYJGBEadyTzxAcfY57NBjpLScOO/bzugcTHe7IMwiSLMcdHZhocMcMgTLjjgZM7F1bCJZ2v27ARGzYDwIk2Z+JYGJ/iiwQLMv+JAEThjkmRG64Q0Q+gIiIiIiIiIiIyFy0KRFt0bOJZAWSUigmkQaJaXhENiRnYBEpkZySRSRGcmIWEaQnYhHRSI5mESmQnIJFZIqQmGhiEYEbEnPjGlEGjYTogW/WUkOXENENSqZfEXmDiIiIiIiIiIiIiIiIiIiImq5ETIpRpBpjJCMeKy6Ri0ZS9MQjkmkkJs1YRDokp2MRyZGclkUkQnIiEQltaX3Lzb6yiGTpl2y/avqSAxGgelCOKI+Kc2isL0TUSsZ4EREREREREREREREREREREfnIQzXrNWSRTeNxnlOwIgueIr6AAyE+CpiqMEUK71IDO4E+LluEKYKnKcMUifEsTZgiJZ5lDVNkwJPcqzBFoPF/HplfxL/w6b4EPGv1h18Weya1TL8iIiIeiIiIiIiIiEjkPefxV+5YA9PPHylB+u5aqgZ39H+jKOxrqtu+pkzvr9YbzoZ6w2OFkzcrA3yE4WZlSSyFk54VoA/wR43+FaD+r9w32QdWvgvjp2ty2xq8qHPHmtyPFxfrK3hw1ejERlAlfR/Ame2OTow05d4rOLLSlHtDVhI0uRO01JeZ405op6zgNNXT+bIRfpIgn+AkU4pOxBscohojdCHu4RRzjC5EYwVHqRONDkSnEvK/CB3QSU32IRW3ZPnj9iEVoGCNTLVrh8ia1x+6wq8xvB5mz8pxu7oPwIn9lcR0AiuX1+1KX+BXqdvXzWsAC0NsGjzZsS/2Bd6yRA5RgIHkXNhSD3whASZ8rrB9mItuEAizac0fDlHxDMEwpQfD1tW4y3Hjfy5s9nOHH3uwWA+EqEJBWCjoTL/S5toBB/7hu6zer74NgqSP39zJU+qQX3ix763mHTqvIVRUVprCljlElRkEjBqNYevH8veBJ2xhiyhE8YctmhDFH7ZoQhR/2KIJUfxhiyRE8YctmhDFH7ZoQhR/2OIJUfxhC9Ppf/t1jgJACERRsHGyYRZB0Ujvf0xD8w6kP7y6RZmgf/oTFTtbbzJVxZWo2Nlqw6TVy5GowNl6ssm7v50obamfSxQAAAAAAAsKLM15fb3vpQAAAABJRU5ErkJggg=="),n9._image}static toggle(t,e,r,n){if(e){var i=t.root.findById(e);i?i._findInfoWindowByComponent(t)?n9.hide(t,e):n9.show(t,e,r,n):console.warn("InfoWindow Not Found.",e)}else console.warn("InfoWindow not defined.")}static hide(t,e){if(e){var r=t.root.findById(e);r?r._removeInfoWindow(t):console.warn("InfoWindow Not Found.",e)}}static show(t,e,r,n){if(e){var i=t.root.findById(e);if(i){if(!i._findInfoWindowByComponent(t)){var{frontSideTemplate:a="",backSideTemplate:o=""}=i.model,s=[a,o].filter((t=>String(t).trim()));if(s=s.map((t=>K7.template(function(t,e,r){return(e||r?['<div class="info-window-btns">',e?'<button class="closable">&#88</button>':"",r?'<button class="flipable">&#8652</button>':"","</div>"]:[]).concat(['<div class="info-window-content">',t,"</div>"]).join("")}(t,!r,2==s.length)))),0!=s.length){var c='\n.flip {\n backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n -ms-backface-visibility: hidden;\n -o-backface-visibility: hidden;\n -webkit-backface-visibility: hidden;\n border-radius: 7px;\n height: auto;\n font: normal 14px helvetica, arial, san serif;\n position: absolute;\n opacity:.9;\n transform-origin: 50% 50% 0px;\n -moz-transform-origin: 50% 50% 0px;\n -ms-transform-origin: 50% 50% 0px;\n -o-transform-origin: 50% 50% 0px;\n -webkit-transform-origin: 50% 50% 0px;\n transition: all 2s;\n -moz-transition: all 2s;\n -ms-transition: all 2s;\n -o-transition: all 2s;\n -webkit-transition: all 2s;\n min-width: 100px;min-height:50px;\n background-color:#3e424e;\n box-shadow: 2px 3px 2px 0px rgba(0,0,0,0.15);\n}\n\n#side-1 {\n transform: rotateY( 0deg );\n -moz-transform: rotateY( 0deg );\n -ms-transform: rotateY( 0deg );\n -o-transform: rotateY( 0deg );\n -webkit-transform: rotateY( 0deg );\n}\n.flip:after{\n content:"";\n display:block;\n position: absolute;\n opacity:.9;\n width: 0;\n height: 0;\n}\n.flip.arrow-top:after{\n left:45%;\n top:-17px;\n border-left:10px solid transparent;\n border-bottom:18px solid #323b44;\n border-right:10px solid transparent;\n}\n.flip.arrow-right:after{\n left:100%;\n top:48%;\n border-top:10px solid transparent;\n border-left:18px solid #323b44;\n border-bottom:10px solid transparent;\n}\n.flip.arrow-bottom:after{\n left:45%;\n top:100%;\n border-left:10px solid transparent;\n border-top:18px solid #323b44;\n border-right:10px solid transparent;\n}\n.flip.arrow-left:after{\n right:100%;\n top:48%;\n border-top:10px solid transparent;\n border-right:18px solid #323b44;\n border-bottom:10px solid transparent;\n}\n\n#side-2 {\n transform: rotateY( 180deg );\n -moz-transform: rotateY( 180deg );\n -ms-transform: rotateY( 180deg );\n -o-transform: rotateY( 180deg );\n -webkit-transform: rotateY( 180deg );\n}\n\n.flip-side-1 {\n transform: rotateY( 0deg ) !important;\n -moz-transform: rotateY( 0deg ) !important;\n -ms-transform: rotateY( 0deg ) !important;\n -o-transform: rotateY( 0deg ) !important;\n -webkit-transform: rotateY( 0deg ) !important;\n}\n\n.flip-side-2 {\n transform: rotateY( 180deg ) !important;\n -moz-transform: rotateY( 180deg ) !important;\n -ms-transform: rotateY( 180deg ) !important;\n -o-transform: rotateY( 180deg ) !important;\n -webkit-transform: rotateY( 180deg ) !important;\n}\n\n.info-window-btns{\n position:absolute;\n top:-18px;\n right:5px;\n overflow:hidden;\n}\n.info-window-content{\n padding:10px;\n color:#efefef;\n font-size:13px;\n line-height:1.4;\n}\n.info-window-btns button{\n width:40px;height:40px;\n float:right;\n border:0;\n border-radius:50%;\n background-color:#2a7da1;\n margin-right:3px;\n text-align:center;\n cursor:pointer;\n font-size:35px;\n color:#fff;\n line-height:0;\n}\n.info-window-btns button:hover{\n background-color:#60bb23;\n}\n'+i.get("style"),{left:u,top:l}=t.bounds,{x:h,y:f}=n?t.rootModel.transcoordC2S(n.x,n.y):t.transcoordS2T(u,l);u=h,l=f;var d=document.createElement("span");d.style.position="absolute";var p=document.createElement("style");if(p.type="text/css",p.appendChild(document.createTextNode(c)),d.appendChild(p),s[0]){var g=document.createElement("div");g.id="side-1",g.className="flip",g.style.display="inline-block",g.innerHTML=s[0](t)}if(s[1]){var v=document.createElement("div");v.id="side-2",v.className="flip",v.style.display="inline-block",v.innerHTML=s[1](t)}D8.forEach((function(t){d.addEventListener(t,(function(t){t.stopPropagation()}))})),z8.forEach((function(t){d.addEventListener(t,(function(t){t.stopPropagation()}))}));var y=t.root.model_layer.overlay;if(g&&d.appendChild(g),v&&d.appendChild(v),y.appendChild(d),i._addInfoWindow(t,d,p),g){let r=g.querySelector(".info-window-btns > .flipable");r&&r.addEventListener("click",(function(t){t.preventDefault(),v.className=r9(v.className,"flip-side-1"),g.className=r9(g.className,"flip-side-2")}),!1);let n=g.querySelector(".info-window-btns > .closable");n&&n.addEventListener("click",(function(r){r.preventDefault(),n9.hide(t,e)}),!1)}if(v){let r=v.querySelector(".info-window-btns > .flipable");r&&r.addEventListener("click",(function(t){t.preventDefault(),v.className=r9(v.className,"flip-side-1"),g.className=r9(g.className,"flip-side-2")}),!1);let n=v.querySelector(".info-window-btns > .closable");n&&n.addEventListener("click",(function(r){r.preventDefault(),n9.hide(t,e)}),!1)}var m=g.offsetWidth,b=g.offsetHeight;window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight;var x=t.rootModel.target.getBoundingClientRect(),w=[];g&&w.push(g),v&&w.push(v);var A={x:u,y:l},_=t.transcoordS2C(A.x,A.y);if(_.x+m/2+x.left<x.right&&_.x-m/2>x.left){if(b+e9<_.y)return d.style.marginLeft=A.x-m/2+"px",d.style.marginTop=A.y-b-e9+"px",void w.forEach((t=>t.className+=" arrow-bottom"));if(_=t.transcoordS2C(A.x,A.y+b+e9),x.bottom>_.y+x.top)return d.style.marginLeft=A.x-m/2+"px",d.style.marginTop=A.y+e9+"px",void w.forEach((t=>t.className+=" arrow-top"))}if((_=t.transcoordS2C(A.x,A.y)).x-(m+e9)>x.left)return d.style.marginLeft=A.x-m-e9+"px",d.style.marginTop=A.y-b/2+"px",void w.forEach((t=>t.className+=" arrow-right"));d.style.marginLeft=A.x+e9+"px",d.style.marginTop=A.y-b/2+"px",w.forEach((t=>t.className+=" arrow-left"))}}}else console.warn("InfoWindow Not Found.",e)}else console.warn("InfoWindow not defined.")}dispose(){this.infoWindows.map((t=>t.component)).forEach((t=>this._removeInfoWindow(t))),super.dispose()}get infoWindows(){return this._windows||(this._windows=[]),this._windows}_findInfoWindowByComponent(t){return this.infoWindows.find((e=>e.component===t))}_addInfoWindow(t,e,r){this._findInfoWindowByComponent(t)||this._windows.push({component:t,window:e,styleElement:r})}_removeInfoWindow(t){var e=this._findInfoWindowByComponent(t);if(!e)return;let r=e.window;r&&r.parentNode.removeChild(r);var n=this.infoWindows.lastIndexOf(e);this.infoWindows.splice(n,1)}render(t){var{left:e,top:r,width:n,height:i}=this.bounds;t.beginPath(),this.drawImage(t,n9.image,e,r,n,i)}get hasTextProperty(){return!1}get nature(){return t9}}K7.register("info-window",n9);var i9={};var a9={list:function(){return{...i9}},register:function(t,e){i9[t]=e},unregister:function(t){delete i9[t]},get:function(t){if(t){var e=i9[t];return e||A8("Layout Not Found - ",t),e}}},o9={reflow:function(t,e){this.drawables(t).filter((t=>t.isHTMLElement())).forEach((t=>t.reposition()))},capturables:function(t){return t.components},drawables:function(t){return t.app&&!t.app.isViewMode?t.components:t.components.filter((t=>!t.hidden))},isStuck:function(t){return!1},ABSOLUTE:!0};a9.register("html-absolute",o9);const s9=["run","goto","goto-playlist","goto-playlist","link-open","link-move","route-page","start-scenario","run-scenario"],c9="center",u9=new WeakMap;function l9(t){const e=t.root;var r=u9.get(e);if(!r)return;if(e===t){for(var n in r)l9(n[0]);return void u9.delete(e)}const i=r.findIndex((e=>e[0]===t));if(-1===i)return;const a=r[i][1];var o=a.div.parentNode;o&&o.removeChild(a.div);var s=a.scene;s.target=null,s.release&&s.release(),r.splice(i,1)}class h9{static hideAll(t){(u9.get(t)||[]).forEach((([t,e])=>l9(t)))}static hide(t){l9(t)}static show(t,e,r={}){var{data:n,location:i=c9,modal:a=!1,closable:o=!0,output:s=!0}=r,c=t.app.refProvider;c&&c.get(e,!0).then((e=>{var r=document.createElement("div"),c=r.style;if(a){var{width:u,height:l}=t.rootModel.bounds;c.position="fixed",c.zIndex=1,c.left=0,c.top=0,c.width=u+"px",c.height=l+"px",c.overflow="auto",c.backgroundColor="rgba(0,0,0,0.3)"}else c.position="absolute",c.display="inline-block";r.innerHTML=!a&&o?'\n<div class="popup-content">\n</div>\n<button class="closable-1945">&#88</button>\n':'\n<div class="popup-content">\n</div>\n';var h=r.querySelector(".popup-content"),{width:u,height:l}=e.root.model;h.style.width=u+"px",h.style.height=l+"px";var f=document.createElement("style");f.type="text/css",f.appendChild(document.createTextNode("\nbutton.closable-1945 {\n width: 20px;\n height: 20px;\n right: 0px;\n top: 0px;\n padding: 0;\n margin: 0;\n border: 0px;\n text-align: center;\n cursor: pointer;\n font-size: 12px;\n color: black;\n position: absolute;\n background-color: transparent;\n}\n\nbutton.closable-1945:hover {\n background-color:#60bb23;\n}\n")),r.appendChild(f),s9.forEach((r=>{e.on(r,((...e)=>{t.trigger(r,...e)}))}));var d=r.querySelector(".popup-content");D8.forEach((function(t){d.addEventListener(t,(function(t){t.stopPropagation()}))})),z8.forEach((function(t){d.addEventListener(t,(function(t){t.stopPropagation()}))})),r.addEventListener("click",(e=>{e.target===r&&o&&h9.hide(t)})),D8.forEach((function(t){r.addEventListener(t,(function(t){t.stopPropagation()}))})),z8.forEach((function(t){r.addEventListener(t,(function(t){t.stopPropagation()}))})),t.root.model_layer.overlay.appendChild(r),function(t,e,r){const n=t.root;if(n!==t){l9(t);var i=u9.get(n)||[];i=[...i,[t,{div:e,scene:r}]],u9.set(n,i)}}(t,r,e),r.querySelector(".closable-1945")?.addEventListener("click",(function(e){e.preventDefault(),h9.hide(t)}),!1),r.addEventListener("close-scene",(e=>{e.preventDefault(),e.stopPropagation(),h9.hide(t),s&&(t.data=e.detail)}),!1),e.target=h,e.data=n||t.data,e.fit("both");var p=function(t,e,r,n=c9){var i=t.bounds,a=e.bounds,o=Math.max(i.width/4-a.width/2,20),s=Math.min(3*i.width/4+a.width/2,i.width-20)-a.width,c=Math.max(i.height/4-a.height/2,20),u=Math.min(3*i.height/4+a.height/2,i.height-20)-a.height;switch(n){case"auto":return{x:r.x<i.width/2?s:o,y:r.y<i.height/2?u:c};case"left-top":return{x:o,y:c};case"right-top":return{x:s,y:c};case"left-bottom":return{x:o,y:u};case"right-bottom":return{x:s,y:u};default:return{x:(i.width-a.width)/2,y:(i.height-a.height)/2}}}(t.rootModel,e.root,t.center,i);a?(h.style.left=p.x+"px",h.style.top=p.y+"px",h.style.width=u+"px",h.style.height=l+"px"):(r.style.left=p.x+"px",r.style.top=p.y+"px",r.style.width=u+"px",r.style.height=l+"px")}),(function(t){console.error("cannot fetch board: "+e,t)}))}}var f9={reflow:function(t,e){},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((t=>!t.hidden)):t.components},isStuck:function(t){return!1},ABSOLUTE:!0};function d9(t){var e=t.components.filter((t=>!t.hidden)),r=t.getState("layoutConfig")||{},n=e[r&&r.activeIndex||0];return n&&[n]||[]}a9.register("absolute",f9);var p9={reflow:function(t){var e=t.bounds,r=t.getState("layoutConfig")||{},n={left:0,top:0,width:e.width,height:e.height};t.forEach(((t,e)=>{let i=e!=(r.activeIndex||0);t.bounds=n,t.setState("rotation",0),t.element&&(t.element.style.visibility=i?"hidden":"visible")}))},capturables:function(t){return d9(t)},drawables:function(t){return d9(t)},isStuck:function(t){return!0}};function g9(t){var e=t.getState("layoutConfig");return e&&e.weight||1}a9.register("card",p9);var v9={reflow:function(t){var e=this.drawables(t),r=t.get("padding")||{},n=e.reduce(((t,e)=>t+g9(e)),0),i=t.bounds,a=n>0?(i.width-((r.left||0)+(r.right||0)))/n:i.width,o=i.height-((r.top||0)+(r.bottom||0)),s=0;e.forEach((t=>{let e=g9(t),n=t.get("margin")||{};t.bounds={left:a*s+(r.left||0)+(n.left||0),top:0+(r.top||0)+(n.top||0),width:e*a-((n.left||0)+(n.right||0)),height:o-((n.top||0)+(n.bottom||0))},t.setState("rotation",0),s+=e}))},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((t=>!t.hidden)):t.components},isStuck:function(t){return!0}};function y9(t){var e=t.getState("layoutConfig");return e&&e.weight||1}a9.register("linear-horizontal",v9);var m9={reflow:function(t){var e=this.drawables(t),r=t.getState("padding")||{},n=e.reduce(((t,e)=>t+y9(e)),0),i=t.bounds,a=n>0?(i.height-((r.top||0)+(r.bottom||0)))/n:i.height,o=i.width-((r.left||0)+(r.right||0)),s=0;e.forEach((t=>{let e=y9(t),n=t.getState("margin")||{};t.bounds={left:0+(r.left||0)+(n.left||0),top:a*s+(r.top||0)+(n.top||0),width:o-((n.left||0)+(n.right||0)),height:e*a-((n.top||0)+(n.bottom||0))},t.setState("rotation",0),s+=e}))},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((t=>!t.hidden)):t.components},isStuck:function(t){return!0}};a9.register("linear-vertical",m9);var b9={reflow:function(t){var e=t.getState("layoutConfig"),r=e&&e.columns||t.getState("columns"),n=e&&e.rows||t.getState("rows"),i=e&&e.widths||t.getState("widths"),a=e&&e.heights||t.getState("heights"),o=i?i.filter(((t,e)=>e<r)).reduce(((t,e)=>t+e),0):r,s=a?a.filter(((t,e)=>e<n)).reduce(((t,e)=>t+e),0):n,c=t.textBounds,u=t.getState("paddingLeft")||0,l=t.getState("paddingTop")||0,h=c.width/o,f=c.height/s,d=0,p=0;t.components.forEach(((t,e)=>{let n=i?i[e%r]:1,o=a?a[Math.floor(e/r)]:1,s=t.colspan||1,c=0;for(;--s>0;)c+=i?i[(e+s)%r]:1;let g=t.rowspan||1,v=0;for(;--g>0;)v+=a?a[Math.floor(e/r)+g]:1;t.bounds={left:u+d,top:l+p,width:h*(n+c),height:f*(o+v)},t.setState("rotation",0),e%r==r-1?(d=0,p+=o*f):d+=n*h}))},capturables:function(t){return t.components.filter((t=>!t.merged))},drawables:function(t){return t.components.filter((t=>!t.merged&&!t.hidden))},isStuck:function(t){return!0},keyNavigate:function(t,e,r){var n=t.getState("layoutConfig"),i=n&&n.columns||t.getState("columns"),a=n&&n.rows||t.getState("rows"),{row:o,column:s}=t.getRowColumn(e);switch(r.code){case"ArrowUp":if(o>0)return t.getAt((o-1)*i+s);break;case"ArrowDown":if(o<a-1)return t.getAt((o+1)*i+s);break;case"ArrowRight":if(s<i-1)return t.getAt(o*i+s+1);break;case"ArrowLeft":if(s>0)return t.getAt(o*i+s-1);break;default:return e}},joinType:!0};a9.register("table",b9);const x9=new Image;x9.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAclBMVEVHcEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC0BbqFAAAAJXRSTlMAgAP3VSI6/g9fBk5FavJsMrariSjzPnO1enRRL5SMhmOOWB9keFTE0wAAANxJREFUOMutk9kWgyAMRLFuiLjUtdp9yf//YglVsQXz1HniMPcEMgHGvpX2O0Ypi+EgCL+IAShC+wB7QfubRDT7AFcnUPoLMLiP4PyJbsb55i05AgnR5iaQDsICgtH0cotBWoAP1c7kC6kFxEseCfZfB6gEgbNeBrira2QmH1uVYCXlA3is8UmgUCPIyQJKEmu8QtQJN0e9DPXVpzG2G216c1CqRmcBOdxXk07sWUSPv07zo0amCNQycv+NzmR6cRcwmfbuI7p2nZ/z4be0P83Foz6vIkhfZXr82XgDlZsspIq4peUAAAAASUVORK5CYII=";var w9=t=>class extends t{postrender(t){super.postrender(t),this.app.isEditMode&&this._focused&&this.showMoveHandle&&this._draw_move_handle(t)}_draw_move_handle(t){var{left:e,top:r,width:n}=this.bounds;t.save(),t.beginPath(),t.globalAlpha=1,t.rect(e+n,r,25,25);t.fillStyle="rgba(235, 235, 235, 1)",t.fill(),t.drawImage(x9,e+n+3.75,r+3.75,17.5,17.5),t.closePath(),t.restore()}contains(t,e){var r=super.contains(t,e);if(this.app.isViewMode)return r;if(!r){var{left:n,top:i,width:a,height:o}=this.bounds,s=n+a;this.showMoveHandle&&(r=t<Math.max(s+25,s)&&t>Math.min(s+25,s)&&e<Math.max(i+25,i)&&e>Math.min(i+25,i))}return this._focustd!==r&&(this._focused=r,this.invalidate()),r}};const A9=[];class _9 extends(w9($7(K7))){constructor(t,e){super(t,e),this._components=[]}replaceRefids(t){this.components.forEach((e=>e.replaceRefids(t)))}get showMoveHandle(){return!0}get showOverflow(){return!1}dispose(){this.components.slice().forEach((t=>t.dispose())),super.dispose()}isContainer(){return!0}containable(t){return t.isDescendible(this)}get hasTextProperty(){return!1}get components(){return this._components}get focusible(){return!0}get layout(){return a9.get(this.get("layout"))||f9}reflow(){this.layout.reflow(this),this.components&&this.components.forEach((t=>{t.isContainer()&&t.reflow()}))}get hierarchy(){var t=super.hierarchy;return this.components&&(t.components=this.components.map((t=>t.hierarchy))),t}addComponent(t,e=!1){var r=t.parent;if(r){if(this===r)return;r.removeComponent(t,e)}var n=this._components.push(t)-1;t.parent=this,t.added(this),e||this.trigger("add",this,t,n),t.delegate_on(this),e||t.trigger("added",this,t,n),this.root&&this.root.isReady&&t.ready()}removeComponent(t,e=!1){var r=this._components.indexOf(t);-1!=r&&(this._components.splice(r,1),t.parent=null,t.removed(this),e||(this.trigger("remove",this,t),t.trigger("removed",this,t)),t.delegate_off(this))}insertComponentAt(t,e,r=!1){var n=t.parent;n&&n.removeComponent(t,r);var i=this._components.splice(0,e);this._components=i.concat(t,this._components),e=this._components.indexOf(t),t.parent=this,t.added(this),r||this.trigger("add",this,t,e),t.delegate_on(this),r||t.trigger("added",this,t,e)}add(t,e=!1){return t instanceof Array?(t.forEach((t=>{-1==this._components.indexOf(t)&&this.addComponent(t,e)})),this):this.add.call(this,[t],e)}remove(t,e=!1){return t instanceof Array?this._components?(t.forEach((t=>{this.removeComponent(t,e)})),this):this:this.remove.call(this,[t],e)}getAt(t){if(this._components)return this._components[t]}forEach(t,e){this._components&&this._components.forEach(t,e)}traverse(t,e){t.call(e,this),this._components&&this._components.forEach((r=>{r.isContainer()?r.traverse(t,e):t.call(e,r)}))}indexOf(t){return(this._components||A9).indexOf(t)}size(){return(this._components||A9).length}moveChildAt(t,e){var r=this.indexOf(e);if(-1!=r){var n=this._components.splice(0,r),i=this._components.splice(1);this._components=n.concat(i),t=Math.max(0,t),t=Math.min(t,this._components.length),n=this._components.splice(0,t),this._components=n.concat(e,this._components)}}moveChildForward(t){var e=this.indexOf(t);-1!=e&&e!=this.size()-1&&(this._components[e]=this._components[e+1],this._components[e+1]=t)}moveChildBackward(t){var e=this.indexOf(t);-1!=e&&0!=e&&(this._components[e]=this._components[e-1],this._components[e-1]=t)}moveChildToFront(t){var e=this.indexOf(t);if(-1!=e&&e!=this.size()-1){var r=this._components.splice(0,e),n=this._components.splice(1);this._components=r.concat(n,this._components)}}moveChildToBack(t){var e=this.indexOf(t);if(-1!=e&&0!=e){var r=this._components.splice(0,e),n=this._components.splice(0);this._components=this._components.concat(r,n)}}symmetryX(t){super.symmetryX(t),this.components.map((t=>{t.symmetryX(0)}))}findAll(t,...e){if("string"==typeof t)return X8(t,this,e[0]||this);if("function"==typeof t){var r=[];for(let n=this.components.length-1;n>=0;n--){let i=this.components[n].findAll(t,...e);i&&(r=r.concat(i))}return t(this,...e)&&r.push(this),r}}findFirst(t,...e){if("string"==typeof t)return X8(t,this,e[0])[0];if("function"==typeof t){for(let n=this.components.length-1;n>=0;n--){var r=this.components[n].findFirst(t,...e);if(null!=r)return r}return t(this,...e)?this:null}}findById(t){return this.root.findById(t)}findByRefid(t){return this.root.findByRefid(t)}contains(t,e){var r=super.contains(t,e);if(!r){var{left:n,top:i,width:a,height:o}=this.state;r=t<Math.max(n+a,n)&&t>Math.min(n+a,n)&&e<Math.max(i+o,i)&&e>Math.min(i+o,i)}return r}capture(t,e,r){var n=this.transcoordP2S(t,e);if(!this.contains(n.x,n.y))return!1;var i=this.bounds;n.x-=i.left,n.y-=i.top;var a=this.layout.capturables(this);for(let t=a.length-1;t>=0;t--){var o=a[t].capture(n.x,n.y,r);if(o)return o}return this.capturable&&!r?.(this)&&this}capturePath(t,e){if(e){if(e.indexOf(this)>-1)return!1;for(let t=0;t<e.length;t++)if(!this.containable(e[t]))return!1}var r=[],{left:n,top:i,width:a,height:o}=this.bounds;for(let e=0;e<t.length;e++){let s=this.transcoordP2S(t[e].x,t[e].y);if(s.x<n||s.x>n+a||s.y<i||s.y>i+o)return!1;s.x-=n,s.y-=i,r.push(s)}let s=this.layout.capturables(this);for(let t=s.length-1;t>=0;t--){let n=s[t];if(!n.isContainer())continue;let i=n.capturePath(r,e);if(i)return i}return this.focusible&&this}render(t){var{left:e=0,top:r=0,width:n,height:i}=this.bounds;t.beginPath(),t.rect(e,r,n,i),t.closePath(),this.drawFill(t),this.drawStroke(t)}postrender(t){const e=this.layout.drawables(this);if(e.length>0){var{left:r=0,top:n=0,width:i,height:a}=this.bounds;t.save(),this.showOverflow||(t.beginPath(),t.rect(r,n,i,a),t.clip(),t.closePath());var{top:n,left:r}=this.state;t.translate(r,n),e.forEach((e=>{e.draw(t)})),t.translate(-r,-n),t.restore()}super.postrender(t)}trim(){this.components.forEach((t=>{t.trim()})),super.trim()}}["layout"].forEach((t=>K7.memoize(_9.prototype,t,!1)));class k9 extends _9{constructor(t,e){super(t,e),t.translate=t.translate||{x:0,y:0},this._draw_reserved=!1,this.__draw__=()=>{this._draw_reserved=!1,this.trigger("redraw"),this.reflow(),this.draw()},this.throttle_render=()=>{this._draw_reserved||requestAnimationFrame(this.__draw__),this._draw_reserved=!0}}fitSize(t,e,r,n){if(this.target){if(e){let t=getComputedStyle(this.target);r=r||(t?parseFloat(t.getPropertyValue("width")):this.target.clientWidth),n=n||(t?parseFloat(t.getPropertyValue("height")):this.target.clientHeight)}else r=this.model.width,n=this.model.height;"CANVAS"==t.tagName&&(t.setAttribute("width",r*L8),t.setAttribute("height",n*L8)),t.style.width=r+"px",t.style.height=n+"px"}}resize(){this.fitSize(this.element,!0)}isLayer(){return!0}get showOverflow(){return this.app.isEditMode}get anchors(){}createElement(){var t=K7.createCanvas(1,1);return t.style.position="absolute",t}get target(){return this._target}set target(t){this._target&&this.element&&this._target.removeChild(this.element),this._target=t,t&&(this.element||(this.element=this.createElement()),this.resize(),t.appendChild(this.element))}get canvas(){return this.element}dispose(){super.dispose(),this.target=null,this.element=null}get selected(){return this.root.selected}set selected(t){this.root.selected=t}get hasSameParentForAllSelected(){return this.root.hasSameParentForAllSelected}get focused(){return this.root.focused}set focused(t){this.root.focused=t}getContext(){return this._context2D||(this._context2D=this.canvas&&this.canvas.getContext("2d")),this._context2D}draw(t){this.canvas&&(t=t||this.getContext())&&super.draw(t)}prerender(t){var{translate:e,scale:r={x:1,y:1},rotation:n}=this.model;t.clearRect(0,0,t.canvas.width,t.canvas.height),e&&t.translate(e.x*L8,e.y*L8),t.scale(r.x*L8,r.y*L8),n&&t.rotate(n)}get rotatePoint(){return{x:0,y:0}}contains(t,e){return!1}invalidate(){this.throttle_render()}move(t){var e=this.get("translate")||{x:0,y:0};this.set({translate:{x:e.x+t.x,y:e.y+t.y}})}centerTo(t,e){const r=t.rootModel.transcoordC2S(this.canvas.clientWidth/2,this.canvas.clientHeight/2),{x:n,y:i}=t.center,{x:a,y:o}=t.transcoordP2S(n,i),{x:s,y:c}=t.transcoordS2T(a,o),{x:u,y:l}=t.rootModel.get("translate"),{x:h,y:f}=t.rootModel.get("scale");e?U5({step:function(e){t.rootModel.set({translate:{x:u+(r.x-s)*h*e,y:l+(r.y-c)*f*e}})},duration:1e3,delta:"circ",ease:"in"}).start():t.rootModel.set({translate:{x:u+(r.x-s)*h,y:l+(r.y-c)*f}})}}const E9={x:1,y:1},S9={x:0,y:0};class M9 extends k9{constructor(t,e){super(t,e)}dispose(){super.dispose(),delete this._canvas,delete this._overlay}contains(t,e){return!0}isRootModel(){return!0}get stuck(){return!0}get layout(){return o9}get overlay(){if(!this._overlay){var t=document.createElement("div");t.style.position="absolute",t.style.width=0,t.style.height=0,t.style.overflow="initial",t.style["user-select"]="none",t.style["transform-origin"]="top left",this.element&&this.element.appendChild(t),this._overlay=t,this._repositionOverlay()}return this._overlay}createElement(){var t=document.createElement("div");return t.style.position="absolute",t.style["user-select"]="none",t.style.overflow="hidden",this._canvas=K7.createCanvas(1,1),this._canvas.style.position="absolute",t.appendChild(this._canvas),this._overlay&&t.appendChild(this._overlay),t}resize(){if(this.target){var{width:t,height:e,fitMode:r}=this.model;this.root.fitMode?r=this.root.fitMode:r||(r="ratio");try{var n=getComputedStyle(this.target)}catch(t){return void console.error(t,this.target)}var i=n?parseFloat(n.getPropertyValue("width")):this.target.clientWidth,a=n?parseFloat(n.getPropertyValue("height")):this.target.clientHeight;switch(r){case"both":case"ratio":break;case"width":a=e*i/t;break;case"height":i=t*a/e;break;default:i=Math.max(t,i),a=Math.max(e,a)}switch(this.fitSize(this.canvas,!0,i,a),r){case"ratio":case"both":break;case"width":this.element.style.overflowX="hidden",this.element.style.overflowY="auto";break;case"height":this.element.style.overflowX="auto",this.element.style.overflowY="hidden";break;default:this.element.style.overflowX=i>t?"hidden":"auto",this.element.style.overflowY=a>e?"hidden":"auto"}this.fitSize(this.element,!0)}}get canvas(){return this._canvas}get MPP(){var{scale:t={x:1,y:1},unit:e}=this.model;switch(e){case"mm":case"cm":return 1/this.app.PPM/t.x;case"in":return 1/this.app.PPI/t.x;default:return 1/t.x}}capturePath(t,e){var r=this.layout.capturables(this);for(let n=r.length-1;n>=0;n--){let i=r[n];if(!i.isContainer())continue;let a=i.capturePath(t,e);if(a)return a}return!1}get eventMap(){return{"(self)":{"(all)":{change:this._onchanged_all,mouseenter:this._onmouseenter_all,mouseleave:this._onmouseleave_all,click:this._onclick,mousedown:this._onmousedownup,mouseup:this._onmousedownup,touchstart:this._onmousedownup,touchend:this._onmousedownup}}}}closeScene(t){requestAnimationFrame((()=>this.overlay.dispatchEvent(new CustomEvent("close-scene",{bubbles:!0,composed:!0,detail:t}))))}_repositionOverlay(){var t=this._overlay;if(t){var{translate:e=S9,scale:r=E9,rotation:n=0}=this.model,{left:i,top:a,width:o,height:s}=this.bounds;t.style.left=i+"px",t.style.top=a+"px";var c=`rotate(${n}rad) scale(${r.x}, ${r.y}) perspective(1px)`;t.style["margin-left"]=e.x+"px",t.style["margin-top"]=e.y+"px",["-webkit-","-moz-","-ms-","-o-",""].forEach((e=>{t.style[e+"transform"]=c}))}}onchange(t){var e=this._model;delete e.id,delete e.text,delete e.class,this._repositionOverlay()}_onchanged_all(t,e,r){this.invalidate()}_onmouseenter_all(t,e){if(t.stopPropagation(),this.app&&!this.app.isEditMode&&e){var r=e.origin;if(!(r instanceof M9)&&r.model.event&&r.model.event.hover&&!r.hidden){var n=r.model.event.hover;n&&this._doEventAction(n,r,!0,t)}}}_onmouseleave_all(t,e){if(t.stopPropagation(),e){var r=e.origin;if(this.app&&!this.app.isEditMode){var n=r.model.event&&r.model.event.hover;n&&this._doEventAction(n,r,!1,t)}}}_onclick(t,e){if(t.stopPropagation(),!this.app.isEditMode&&e){var r=e.origin,n=r.model.event?.tap;n&&this._doEventAction(n,r,!0,t)}}_onmousedownup(t,e){if(t.stopPropagation(),!this.app.isEditMode&&e){var r=e.origin,n=r.model.event?.tap;n&&n.pressed&&this._doMouseDownUpEventAction(n,r,"mousedown"==t.type||"touchstart"==t.type,t)}}_doMouseDownUpEventAction(t,e,r,n){var{pressed:i=!1}=t;i&&(r?function(t){if(!t.hasOwnProperty("_backupShadow")){var e=t.get("shadow");t._backupShadow=e;var{left:r=0,top:n=0}=e||{};t.delta("tx",r),t.delta("ty",n),t.set("shadow",{})}}(e):function(t){t.hasOwnProperty("_backupShadow")&&(t.delta("tx",0),t.delta("ty",0),t.set("shadow",t._backupShadow),delete t._backupShadow)}(e))}_doEventAction(t,e,r,n){var{action:i,target:a,value:o,emphasize:s=!1,restore:c=!1,pressed:u=!1,options:l}=t;if(a&&(a=e.access(a)),o&&(o=e.access(o)),s&&(r?function(t){t.hasOwnProperty("_backupStrokeStyle")||(t._backupStrokeStyle=t.model.strokeStyle,t.set("strokeStyle","#f26522"),t.hasOwnProperty("_backupLineWidth")||(t._backupLineWidth=t.model.lineWidth,t.set("lineWidth",t.model.lineWidth+5)))}(e):c&&function(t){t.hasOwnProperty("_backupStrokeStyle")&&(t.set("strokeStyle",t._backupStrokeStyle),delete t._backupStrokeStyle,t.hasOwnProperty("_backupLineWidth")&&(t.set("lineWidth",t._backupLineWidth),delete t._backupLineWidth))}(e)),i)switch(i){case"data-toggle":if(!a)return;(r||c)&&this.root.findAll(a,e).forEach((t=>{t.data=!t.data}));break;case"data-tristate":if(!a)return;(r||c)&&this.root.findAll(a,e).forEach((t=>{let e=Math.round(Math.max(Number(t.data)||0,0));t.data=(e+(r?1:2))%3}));break;case"data-spreading":if(!a)return;if(r){var h=e.access(o);this.root.findAll(a,e).forEach((t=>{t.executeMappings(!0)}))}break;case"data-set":if(!a)return;if(r){h=e.access(o);this.root.findAll(a,e).forEach((t=>{t.data=h}))}break;case"partial-data-set":if(!a)return;if(r){h=e.access(o);this.root.findAll(a,e).forEach((t=>{t.data={...t.data,...h}}))}break;case"value-set":if(!a)return;if(r){h=e.access(o);this.root.findAll(a,e).forEach((t=>{t.value=h}))}break;case"partial-value-set":if(!a)return;if(r){h=e.access(o);this.root.findAll(a,e).forEach((t=>{t.value={...t.value,...h}}))}break;case"infoWindow":case"info-window":if(!a)return;"click"==n.type||r?n9.show(e,a,c,{x:n.offsetX,y:n.offsetY}):c&&n9.hide(e,a);break;case"toggle-info-window":if(!a)return;n9.toggle(e,a,!1,{x:n.offsetX,y:n.offsetY});break;case"popup":case"modal-popup":if(!a)return;let t=l&&"input"in l?l.input:"(self)",s=!l||(!("output"in l)||l.output);h9.show(e,a,{data:t&&this.root.findFirst(t,e)?.data,output:s,modal:"modal-popup"===i});break;case"close-scene":this.closeScene(e.data);break;case"goto":case"goto-playlist":this.trigger(i,a,l,e);break;case"mouse-cursor":r?this.target.style.cursor=a||"auto":c&&(this.target.style.cursor="auto");break;default:this.trigger(i,a,o,e)}}}function T9(t,e){const r=t.state.refid;return t.root.findAll((t=>t.isLine()&&t.from.component===r&&(!e||t.from.anchor===e)))}function P9(t,e){const r=t.state.refid;return t.root.findAll((t=>t.isLine()&&t.to.component===r&&(!e||t.to.anchor===e)))}M9.Popup=h9,K7.register("model-layer",M9);var O9=t=>class extends t{isConnectable(){return!0}postrender(t){super.postrender(t),this._draw_anchors(t)}_draw_anchors(t){var e=this.anchors||[];t.save(),e.forEach((e=>{var{position:{x:r,y:n},draw:i}=e;if(i){t.beginPath();try{i.call(e,t,this)}catch(t){console.error(t)}t.closePath()}})),t.restore()}contains(t,e){if(n=super.contains(t,e))return n;var r=this.anchors||[];for(let i of r){const r=i.bounds;if(!r)continue;const{left:a,top:o,width:s,height:c}=r;var n;if(n=t<Math.max(a+s,a)&&t>Math.min(a+s,a)&&e<Math.max(o+c,o)&&e>Math.min(o+c,o))return n}return!1}findInOutLines(t){return function(t,e){const r=t.state.refid;return t.root.findAll((t=>!(!t.isLine()||(t.from.component!==r||e&&t.from.anchor!==e)&&(t.to.component!==r||e&&t.to.anchor!==e))))}(this,t)}findOutletLines(t){return T9(this,t)}findOutletEnds(t){return function(t,e){return T9(t,e).map((t=>t.toEnd?.component)).filter(Boolean)}(this,t)}findInletLines(t){return P9(this,t)}findInletEnds(t){return function(t,e){return P9(t,e).map((t=>t.fromEnd?.component)).filter(Boolean)}(this,t)}};const I9={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0}}],help:"scene/component/rect"};var C9={ondragmove:function(t,e,r){var{left:n,top:i,width:a,height:o}=r.model,s=(r.transcoordP2S(t.x,t.y).x-n)/(a/2)*100;s=Z7(s,a,o),r.set({round:s})}};class R9 extends(O9($7(J7))){is3dish(){return!0}get controls(){var{left:t,top:e,width:r,round:n,height:i}=this.state;return[{x:t+r/2*((n=null==n?0:Z7(n,r,i))/100),y:e,handler:C9}]}get nature(){return I9}}K7.register("rect",R9);const j9=[1,2,10,20,50,50,50,50,50,50];class L9 extends($7(J7)){render(t){const{lineWidth:e=1,fillStyle:r="lightgray",font:n="15px Arial",left:i,top:a,rotation:o,origin:s,margin:c,width:u,height:l,side:h="bottom",strokeStyle:f="#000000",scale:d=1}=this.state;t.translate(i,a),t.beginPath();const p=Math.round(e/2);t.rect(-p,-p,u+2*p,l+2*p),t.clip(),t.beginPath(),t.rect(0,0,u,l),r&&(t.fillStyle=r,t.fill()),t.lineWidth=e,t.strokeStyle=f,t.stroke(),t.beginPath(),t.font=n;var g="bottom"!==h,v=g?0:l,y=4*l/5,m=2*l/3,b=1*l/2,x=3*l/5;g&&(y=l-y,m=l-m,b=l-b,x=l-1.5*l/5);var w=d*this.app.PPM/this.root.unitScale,A=Math.ceil(s/w),_=this.app.PPM/w,k=_<=1.1?1:j9[Math.round(_)]||100;1!=k&&(A+=(k-A%k)%k);var E=Math.ceil(A*w),S=s+u;for(t.fillStyle=f;E<S;){if(A%10==0){t.moveTo(E-s,b),t.lineTo(E-s,v);let e=(A/10).toString(),r=t.measureText(e);t.fillText(e,E-s-r.width-6,x)}else A%5==0?(t.moveTo(E-s,m),t.lineTo(E-s,v)):(t.moveTo(E-s,y),t.lineTo(E-s,v));A+=k,E=Math.ceil(A*w)}}}K7.register("ruler",L9);const D9=20,z9=20,F9=90*Math.PI/180,N9="9px Verdana",B9=20,U9="#f4f4f4",Y9="#999";function G9(t,e,r){return{left:-t.x,top:-t.y,width:D9,height:B9}}function W9(t,e,r,n){return{left:D9-t.x,top:0-t.y,origin:20-t.x,width:e-D9,height:B9}}function H9(t,e,r,n){var i={x:0-t.x+10,y:-t.y+z9+(r-z9)/2},a=K7.transcoordRR(0-t.x,-t.y+z9,i,F9);return{left:a.x-(r-z9),top:a.y,origin:20-t.y,width:r-z9,height:B9}}function q9(t){var e=t.get("translate");return{left:-e.x,top:-e.y,width:t.canvas.width/L8,height:t.canvas.height/L8}}K7.register("guide-layer",class extends k9{constructor(t,e){super(t,e),this.appScale={x:1,y:1},"disabled"!==t.ruler&&(this.hruler=new L9({left:D9,top:0,origin:20,margin:0,height:B9,unit:"m",rotation:0,font:N9,fillStyle:U9,strokeStyle:Y9,capturable:!1}),this.vruler=new L9({left:0,top:0,origin:20,margin:0,height:B9,unit:"m",rotation:F9,font:N9,side:"top",fillStyle:U9,strokeStyle:Y9,capturable:!1}),this.origin_rect=new R9({left:-20,top:-20,width:20,height:20,fillStyle:U9,strokeStyle:Y9,lineWidth:1}),this.addComponent(this.hruler),this.addComponent(this.vruler),this.addComponent(this.origin_rect)),this.invalidate()}get capturable(){return!1}ready(){if(super.ready(),this.hruler){var t=this.rootModel,e=Object.assign({},t.get("translate"));e.x<D9&&(e.x+=D9),e.y<z9&&(e.y+=z9);var r=t.get("scale")||{x:1,y:1};this.appScale=r,this.hruler.set("scale",r.x),this.vruler.set("scale",r.y),t.set("translate",e),this.set("translate",e),this.screen_coord=q9(this);var{width:n,height:i}=this.screen_coord;this.hruler.set(W9(e,n,0,this.hruler)),this.vruler.set(H9(e,0,i,this.vruler)),this.origin_rect.set(G9(e))}else this.screen_coord=q9(this)}resize(){super.resize(),this.screen_coord=q9(this);var{width:t,height:e}=this.screen_coord;this.hruler&&(this.hruler.set(W9(this.model.translate,t,0,this.hruler)),this.vruler.set(H9(this.model.translate,0,e,this.vruler)),this.origin_rect.set(G9(this.model.translate)))}render(t){if(this.guide){t.save();var{x:e,y:r}=this.guide,{top:n,left:i,width:a,height:o}=this.screen_coord;t.beginPath(),t.moveTo(e,n),t.lineTo(e,n+o),t.moveTo(i,r),t.lineTo(i+a,r),t.lineWidth=1,t.strokeStyle="tomato",t.setLineDash([2,3]),t.font="10px tahoma",t.fillStyle="#333";var s=this.transcoordS2C(e,r,this.rootModel);t.textBaseline=s.y>200?"bottom":"top",t.textAlign=s.x>200?"right":"left";var c=s.y>200?-5:5,u=s.x>200?-5:5,l=Math.round(e/this.appScale.x),h=Math.round(r/this.appScale.y);t.fillText(` ${l}, ${h} `,e+u,r+c),t.stroke(),t.restore()}}get guide(){return this._guide}set guide(t){this._guide=t,this.invalidate()}contains(t,e){return!0}get eventMap(){return{"(root)":{"(descendant)":{mousemove:this.onmousemove_child,mouseout:this.onmouseout_child,dragmove:this.onmousemove_child},"model-layer":{change:this.onchange_root_model}},"(self)":{"(descendant)":{mousedown:this.onmousedown_origin}}}}onmousedown_origin(t,e){this.rootModel.set("translate",{x:20,y:20})}onchange_root_model(t,e,r){if(t.scale&&(this.appScale=t.scale,this.hruler&&(this.hruler.set("scale",t.scale.x),this.vruler.set("scale",t.scale.y))),t.translate&&this.set({translate:{x:t.translate.x,y:t.translate.y}}),t.scale||t.translate){if(this.screen_coord=q9(this),this.hruler){var{translate:n}=this.model,{width:i,height:a}=this.screen_coord;this.hruler.set(W9(n,i,0,this.hruler)),this.vruler.set(H9(n,0,a,this.vruler)),this.origin_rect.set(G9(n))}this._guide=null}this.invalidate()}onmouseout_child(t){this._guide=null,this.invalidate()}onmousemove_child(t,e){t.target&&"CANVAS"!==t.target.tagName?this.guide=null:this.guide=this.transcoordC2S(t.offsetX,t.offsetY)}});K7.register("shift-layer",class extends k9{ready(){super.ready();var t=this.rootModel.get("translate");this.set("translate",t)}render(t){}contains(t,e){return!(2!=this.app.mode)}get eventMap(){return{"(root)":{"(self)":{keydown:this.onkeydown,keyup:this.onkeyup}}}}onkeydown(t){"Space"===t.code&&void 0===this.before_mode&&(this.before_mode=this.app.mode,this.app.mode=2)}onkeyup(t){"Space"===t.code&&(void 0!==this.before_mode&&(this.app.mode=this.before_mode),delete this.before_mode)}ondragstart(t){this.last_position=this.transcoordC2S(t.offsetX,t.offsetY)}ondragmove(t){var{x:e,y:r}=this.transcoordC2S(t.offsetX,t.offsetY);this.rootModel.move({x:e-this.last_position.x,y:r-this.last_position.y},!1),this.last_position=this.transcoordC2S(t.offsetX,t.offsetY)}});class X9{constructor(t){this.params=Object.assign({},t)}excute(){}}class V9 extends X9{execute(){this.params.changes.forEach((t=>t.component.set(t.after)))}static before(t){return t.map((t=>({component:t})))}static after(t,e){e.execute(null,!1)}static around(t,e,r){e.call(r),t.execute(null,!1)}}const Q9="left",K9="right",J9="center",Z9="top",$9="bottom",ttt="middle",ett=[Q9,K9,J9,Z9,ttt,$9];function rtt(t){if(this.hasSameParentForAllSelected&&-1!=ett.indexOf(t)){var e=this.selected.filter((t=>!t.stuck));if(!(e.length<=1)){var r=this.app.commander;V9.around(r,(function(){!function(t,e){var r=JSON.parse(JSON.stringify(e[0].bounds)),n=r.left+r.width,i=r.top+r.height;for(let t=0;t<e.length;t++){let a=e[t].bounds;r.left=a.left>r.left?r.left:a.left,r.top=a.top>r.top?r.top:a.top,n=a.left+a.width>n?a.left+a.width:n,i=a.top+a.height>i?a.top+a.height:i}switch(r.width=n-r.left,r.height=i-r.top,t){case Q9:for(let t=0;t<e.length;t++){let n=e[t].bounds;e[t].bounds={left:r.left,top:n.top,width:n.width,height:n.height}}break;case J9:for(let t=0;t<e.length;t++){let n=e[t].bounds;e[t].bounds={left:r.left+r.width/2-n.width/2,top:n.top,width:n.width,height:n.height}}break;case K9:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={left:n-r.width,top:r.top,width:r.width,height:r.height}}break;case Z9:for(let t=0;t<e.length;t++){let n=e[t].bounds;e[t].bounds={left:n.left,top:r.top,width:n.width,height:n.height}}break;case ttt:for(let t=0;t<e.length;t++){let n=e[t].bounds;e[t].bounds={left:n.left,top:r.top+r.height/2-n.height/2,width:n.width,height:n.height}}break;case $9:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={left:r.left,top:i-r.height,width:r.width,height:r.height}}break;default:;}}(t,e)}))}}}const ntt="VERTICAL",itt=[ntt,"HORIZONTAL"];function att(t){if(this.hasSameParentForAllSelected&&-1!=itt.indexOf(t)){var e=this.selected;if(!(e.length<=1)){var r=this.app.commander;V9.around(r,(function(){!function(t,e){var r=e.filter((t=>!t.stuck)).slice(0);r.sort((function(e,r){let n=e.center,i=r.center;return t===ntt?n.y-i.y:n.x-i.x}));var n=r.reduce(((e,r)=>e+(t===ntt?r.bounds.height:r.bounds.width)),0),i=r[0].bounds,a=r[r.length-1].bounds,o=((t===ntt?a.top+a.height-i.top:a.left+a.width-i.left)-n)/(r.length-1),s=t===ntt?i.top+i.height:i.left+i.width;for(let e=1;e<r.length-1;e++){let n=r[e],i=n.bounds;s+=o,t===ntt?(i.top=s,s+=i.height):(i.left=s,s+=i.width),n.bounds=i}}(t,e)}))}}}function ott(t){for(var e=0;t&&!t.isRootModel();)e+=t.get("rotation")||0,t=t.parent;return e%(2*Math.PI)}class stt extends X9{execute(){this.params.changes.forEach((t=>{let{component:e,to_container:r,to_index:n,to_left:i,to_top:a,hint:o}=t,s=function(t){if(t.isRootModel())return t.bounds;var{bounds:e,rotatePoint:r}=t,n=r;return{left:(n=t.transcoordS2T(n.x,n.y)).x-(r.x-e.left),top:n.y-(r.y-e.top),width:e.width,height:e.height}}(e),c=ott(e);if(e.removeSelf(!r),e.bounds=s,e.set("rotation",c),r){e.set("rotation",function(t,e){return((t.get("rotation")||0)-ott(e))%(2*Math.PI)}(e,r));let o=function(t,e){if(e.isRootModel())return t.bounds;var{bounds:r,rotatePoint:n}=t,i=e.transcoordT2S(n.x,n.y),a=e.bounds;return{left:i.x-(n.x-r.left)-a.left,top:i.y-(n.y-r.top)-a.top,width:r.width,height:r.height}}(e,r);t.to_left=void 0!==i?i:o.left,t.to_top=void 0!==a?a:o.top,e.bounds={left:t.to_left,top:t.to_top,width:o.width,height:o.height},void 0===n?r.addComponent(e):r.insertComponentAt(e,n)}}))}}function ctt(t,e,r){this.app.commander.execute(new stt({changes:[{component:t,to_container:e,to_index:r}]}))}function utt(t){var e=this.selected.filter((t=>!t.stuck));if(!(0==e.length||e[0].isRootModel()||e.length>1&&("forward"==t||"backward"==t))){var r,n=e[0].parent;if("forward"==t){let t=n.indexOf(e[0]);r=[{component:e[0],from_container:n,to_container:n,from_index:t,to_index:t+1}]}else if("backward"==t){let t=n.indexOf(e[0]);r=[{component:e[0],from_container:n,to_container:n,from_index:t,to_index:t-1}]}else r=e.filter((t=>t.parent===n)).sort(((e,r)=>{let i=n.indexOf(e)<n.indexOf(r);return"front"==t?i:!i})).map(((e,r)=>(n.indexOf(e),{component:e,to_container:n,to_index:"front"==t?n.components.length-r-1:r})));var i=new stt({changes:r});this.app.commander.execute(i)}}function ltt(t,e,r,n){var i=K7.register(t.type);if(!i)return _8("Class not found",t.type),null;r&&(t.refid=r(t.refid)),t.id&&n&&n(t.id)&&delete t.id;var a=new i(t,e);return t.components&&a.isContainer()&&(t.components.forEach((t=>{var i=ltt(t,e,r,n);i&&a.addComponent(i)})),delete t.components),a.created(),a}function htt(t,e){var r=N6(t.hierarchy);return delete r.id,ltt(r,t.app,e)}var ftt=Object.freeze({__proto__:null,compile:ltt,duplicate:htt,select:X8,match:W8});function dtt(t,e,r){t instanceof Array||(t=[t]),r||(r=this.model_layer);var n=[],i=new Map;this.selected=t.map((t=>{try{return ltt(t,r.app,(t=>{const e=this.getNewRefid();return void 0!==t&&i.set(t,e),e}),(t=>(this.indexMap[t]||[])[0]))}catch(t){return console.warn(t),!1}})).filter(Boolean).map((t=>{let{left:a,top:o,width:s,height:c,x:u,y:l,cx:h,cy:f}=e;return t.replaceRefids(i),isNaN(a)||isNaN(o)||isNaN(s)||isNaN(c)||(t.bounds={left:a,top:o,width:s,height:c}),isNaN(u)||isNaN(l)||t.move({x:u,y:l},!1),isNaN(h)||isNaN(f)||(t.center={x:h,y:f}),n.push({component:t,to_container:r}),t})),this.app.commander.execute(new stt({changes:n}))}function ptt(){var t=[],e=new Map;if(this.selected=this.selected.filter((t=>!t.isRootModel())).map((r=>{let n=htt(r,(t=>{const r=this.getNewRefid();return void 0!==t&&e.set(t,r),r}));return n.move({x:20,y:20},!1),t.push({component:n,to_container:r.parent}),n})).map((t=>(t.replaceRefids(e),t))),0!=t.length){var r=new stt({changes:t});this.app.commander.execute(r)}}function gtt(){var t=this.selected;this.selected=[];for(var e=null,r=t.filter((t=>!t.isRootModel()&&(t.parent.focusible||t.parent.isGroup()))).map((t=>(e||(e=t.parent),{component:t,to_container:null})));e&&e.isGroup();){let t=[];if(e.components.filter((t=>!r.find((e=>e.component===t)))).forEach((e=>t.push(e))),t.length>1)break;let n=e.parent;t.forEach((t=>r.push({component:t,to_container:n}))),r.push({component:e,to_container:null}),e=n}r.length>0&&this.app.commander.execute(new stt({changes:r})),e&&e.calculateBounds&&e.calculateBounds()}function vtt(t,e,r){switch(t){case"execute":case"redo":case"undo":case"command-reset":this.app?.commander.on(t,e,r);break;case"mode":this.app?.on(t,e,r);break;default:this.on(t,e,r)}}function ytt(t,e,r){switch(t){case"execute":case"redo":case"undo":case"command-reset":this.app?.commander.once(t,e,r);break;case"mode":this.app.once(t,e,r);break;default:this.once(t,e,r)}}function mtt(t,e,r){switch(t){case"execute":case"redo":case"undo":case"command-reset":this.app?.commander.off(t,e,r);break;case"mode":this.app?.off(t,e,r);break;default:this.off(t,e,r)}}function btt(t){var e=this.target_element,r=t||this.fitMode,n=this;function i(t){n.fit(r),document.fullscreen||document.mozFullScreen||document.webkitIsFullScreen||document.msFullscreenElement||["fullscreenchange","mozfullscreenchange","webkitfullscreenchange","MSFullscreenChange"].forEach((t=>document.removeEventListener(t,i)))}["fullscreenchange","mozfullscreenchange","webkitfullscreenchange","MSFullscreenChange"].forEach((t=>document.addEventListener(t,i))),e.requestFullScreen?e.requestFullScreen():e.webkitRequestFullScreen?e.webkitRequestFullScreen():e.mozRequestFullScreen?e.mozRequestFullScreen():e.msRequestFullscreen&&e.msRequestFullscreen()}var xtt=0;function wtt(){var t=this.selected.filter((t=>!t.isRootModel())).map((t=>t.hierarchy));if(0!=t.length)return xtt=0,JSON.stringify(t,null,2)}function Att(){xtt=0;var t=wtt.call(this);return gtt.call(this),t}function _tt(t){if(t)try{JSON.parse(t);xtt++,dtt.call(this,JSON.parse(t),{x:15*xtt,y:15*xtt})}catch(e){A8(e,t)}}var ktt=function(){return{escape:function(t){return t.replace(/([.*+?^${}()|\[\]\/\\])/g,"\\$1")},parseExtension:t,mimeType:function(e){var r=t(e).toLowerCase();return(n="application/font-woff",i="image/jpeg",{woff:n,woff2:n,ttf:"application/font-truetype",eot:"application/vnd.ms-fontobject",png:"image/png",jpg:i,jpeg:i,gif:"image/gif",tiff:"image/tiff",svg:"image/svg+xml"})[r]||"";var n,i},dataAsUrl:function(t,e){return"data:"+e+";base64,"+t},isDataUrl:function(t){return-1!==t.search(/^(data:)/)},canvasToBlob:function(t){return t.toBlob?new Promise((function(e){t.toBlob(e)})):function(t){return new Promise((function(e){for(var r=window.atob(t.toDataURL().split(",")[1]),n=r.length,i=new Uint8Array(n),a=0;a<n;a++)i[a]=r.charCodeAt(a);e(new Blob([i],{type:"image/png"}))}))}(t)},resolveUrl:function(t,e){var r=document.implementation.createHTMLDocument(),n=r.createElement("base");r.head.appendChild(n);var i=r.createElement("a");return r.body.appendChild(i),n.href=e,i.href=t,i.href},getAndEncode:function(t){var e=3e4;Rtt.impl.options.cacheBust&&(t+=(/\?/.test(t)?"&":"?")+(new Date).getTime());return new Promise((function(r){var n,i=new XMLHttpRequest;if(i.onreadystatechange=o,i.ontimeout=s,i.responseType="blob",i.timeout=e,i.open("GET",t,!0),i.send(),Rtt.impl.options.imagePlaceholder){var a=Rtt.impl.options.imagePlaceholder.split(/,/);a&&a[1]&&(n=a[1])}function o(){if(4===i.readyState)if(200===i.status){var e=new FileReader;e.onloadend=function(){var t=e.result.split(/,/)[1];r(t)},e.readAsDataURL(i.response)}else n?r(n):c("cannot fetch resource: "+t+", status: "+i.status)}function s(){n?r(n):c("timeout of "+e+"ms occured while fetching resource: "+t)}function c(t){console.error(t),r("")}}))},uid:function(){var t=0;return function(){return"u"+e()+t++;function e(){return("0000"+(Math.random()*Math.pow(36,4)|0).toString(36)).slice(-4)}}}(),delay:function(t){return function(e){return new Promise((function(r){setTimeout((function(){r(e)}),t)}))}},asArray:function(t){for(var e=[],r=t.length,n=0;n<r;n++)e.push(t[n]);return e},escapeXhtml:function(t){return t.replace(/#/g,"%23").replace(/\n/g,"%0A")},makeImage:function(t){return new Promise((function(e,r){var n=new Image;n.onload=function(){e(n)},n.onerror=r,n.src=t}))},width:function(t){var r=e(t,"border-left-width"),n=e(t,"border-right-width");return t.scrollWidth+r+n},height:function(t){var r=e(t,"border-top-width"),n=e(t,"border-bottom-width");return t.scrollHeight+r+n}};function t(t){var e=/\.([^\.\/]*?)$/g.exec(t);return e?e[1]:""}function e(t,e){var r=window.getComputedStyle(t).getPropertyValue(e);return parseFloat(r.replace("px",""))}}(),Ett=function(){var t=/url\(['"]?([^'"]+?)['"]?\)/g;return{inlineAll:function(t,i,a){return o()?Promise.resolve(t):Promise.resolve(t).then(r).then((function(e){var r=Promise.resolve(t);return e.forEach((function(t){r=r.then((function(e){return n(e,t,i,a)}))})),r}));function o(){return!e(t)}},shouldProcess:e,impl:{readUrls:r,inline:n}};function e(e){return-1!==e.search(t)}function r(e){for(var r,n=[];null!==(r=t.exec(e));)n.push(r[1]);return n.filter((function(t){return!ktt.isDataUrl(t)}))}function n(t,e,r,n){return Promise.resolve(e).then((function(t){return r?ktt.resolveUrl(t,r):t})).then(n||ktt.getAndEncode).then((function(t){return ktt.dataAsUrl(t,ktt.mimeType(e))})).then((function(r){return t.replace(function(t){return new RegExp("(url\\(['\"]?)("+ktt.escape(t)+")(['\"]?\\))","g")}(e),"$1"+r+"$3")}))}}(),Stt=function(){return{resolveAll:function(){return t().then((function(t){return Promise.all(t.map((function(t){return t.resolve()})))})).then((function(t){return t.join("\n")}))},impl:{readAll:t}};function t(){return Promise.resolve(ktt.asArray(document.styleSheets)).then((function(t){var e=[];return t.forEach((function(t){try{ktt.asArray(t.cssRules||[]).forEach(e.push.bind(e))}catch(e){console.log("Error while reading CSS rules from "+t.href,e.toString())}})),e})).then((function(t){return t.filter((function(t){return t.type===CSSRule.FONT_FACE_RULE})).filter((function(t){return Ett.shouldProcess(t.style.getPropertyValue("src"))}))})).then((function(e){return e.map(t)}));function t(t){return{resolve:function(){var e=(t.parentStyleSheet||{}).href;return Ett.inlineAll(t.cssText,e)},src:function(){return t.style.getPropertyValue("src")}}}}}(),Mtt=function(){return{inlineAll:function e(r){return r instanceof Element?n(r).then((function(){return r instanceof HTMLImageElement?t(r).inline():Promise.all(ktt.asArray(r.childNodes).map((function(t){return e(t)})))})):Promise.resolve(r);function n(t){var e=t.style.getPropertyValue("background");return e?Ett.inlineAll(e).then((function(e){t.style.setProperty("background",e,t.style.getPropertyPriority("background"))})).then((function(){return t})):Promise.resolve(t)}},impl:{newImage:t}};function t(t){return{inline:function(e){return ktt.isDataUrl(t.src)?Promise.resolve():Promise.resolve(t.src).then(e||ktt.getAndEncode).then((function(e){return ktt.dataAsUrl(e,ktt.mimeType(t.src))})).then((function(e){return new Promise((function(r,n){t.onload=r,t.onerror=n,t.src=e}))}))}}}}(),Ttt={imagePlaceholder:void 0,cacheBust:!1};function Ptt(t,e){return function(t){void 0===t.imagePlaceholder?Rtt.impl.options.imagePlaceholder=Ttt.imagePlaceholder:Rtt.impl.options.imagePlaceholder=t.imagePlaceholder;void 0===t.cacheBust?Rtt.impl.options.cacheBust=Ttt.cacheBust:Rtt.impl.options.cacheBust=t.cacheBust}(e=e||{}),Promise.resolve(t).then((function(t){return Itt(t,e.filter,!0)})).then(Ctt).then((function(t){var{bgcolor:r,width:n,height:i,style:a,sx:o=1,sy:s=1}=e,c=t.style;r&&(c.backgroundColor=r);n&&(c.width=n+"px");i&&(c.height=i+"px");c["margin-left"]="0px",c["margin-top"]="0px",["-webkit-","-moz-","-ms-","-o-",""].forEach((t=>{c[t+"transform"]=`rotate(0rad) translate(0px, 0px) scale(${o}, ${s}) perspective(1px)`})),a&&Object.keys(a).forEach((function(t){c[t]=a[t]}));return t})).then((function(r){return function(t,e,r){return Promise.resolve(t).then((function(t){return t.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),(new XMLSerializer).serializeToString(t)})).then(ktt.escapeXhtml).then((function(t){return'<foreignObject x="0" y="0" width="100%" height="100%">'+t+"</foreignObject>"})).then((function(t){return'<svg xmlns="http://www.w3.org/2000/svg" width="'+e+'" height="'+r+'">'+t+"</svg>"})).then((function(t){return"data:image/svg+xml;charset=utf-8,"+t}))}(r,e.width||ktt.width(t),e.height||ktt.height(t))}))}function Ott(t,e){return Ptt(t,e).then(ktt.makeImage).then(ktt.delay(100)).then((function(r){var n=function(t){var r=document.createElement("canvas");if(r.width=e.width||ktt.width(t),r.height=e.height||ktt.height(t),e.bgcolor){var n=r.getContext("2d");n.fillStyle=e.bgcolor,n.fillRect(0,0,r.width,r.height)}return r}(t);return n.getContext("2d").drawImage(r,0,0),n}))}function Itt(t,e,r){return r||!e||e(t)?Promise.resolve(t).then((function(t){if(t instanceof HTMLCanvasElement)try{return ktt.makeImage(t.toDataURL())}catch(t){_8(t)}return t.cloneNode(!1)})).then((function(r){return function(t,e,r){var n=t.childNodes;return 0===n.length?Promise.resolve(e):i(e,ktt.asArray(n),r).then((function(){return e}));function i(t,e,r){var n=Promise.resolve();return e.forEach((function(e){n=n.then((function(){return Itt(e,r)})).then((function(e){e&&t.appendChild(e)}))})),n}}(t,r,e)})).then((function(e){return function(t,e){return e instanceof Element?Promise.resolve().then(r).then(n).then(i).then(a).then((function(){return e})):e;function r(){function r(t,e){function r(t,e){ktt.asArray(t).forEach((function(r){e.setProperty(r,t.getPropertyValue(r),t.getPropertyPriority(r))}))}t.cssText?e.cssText=t.cssText:r(t,e)}r(window.getComputedStyle(t),e.style)}function n(){function r(r){var n=window.getComputedStyle(t,r),i=n.getPropertyValue("content");if(""!==i&&"none"!==i){var a=ktt.uid();e.className=e.className+" "+a;var o=document.createElement("style");o.appendChild(s(a,r,n)),e.appendChild(o)}function s(t,e,r){var n="."+t+":"+e,i=r.cssText?a(r):o(r);return document.createTextNode(n+"{"+i+"}");function a(t){var e=t.getPropertyValue("content");return t.cssText+" content: "+e+";"}function o(t){return ktt.asArray(t).map(e).join("; ")+";";function e(e){return e+": "+t.getPropertyValue(e)+(t.getPropertyPriority(e)?" !important":"")}}}}[":before",":after"].forEach((function(t){r(t)}))}function i(){t instanceof HTMLTextAreaElement&&(e.innerHTML=t.value),t instanceof HTMLInputElement&&e.setAttribute("value",t.value)}function a(){e instanceof SVGElement&&(e.setAttribute("xmlns","http://www.w3.org/2000/svg"),e instanceof SVGRectElement&&["width","height"].forEach((function(t){var r=e.getAttribute(t);r&&e.style.setProperty(t,r)})))}}(t,e)})):Promise.resolve()}function Ctt(t){return Mtt.inlineAll(t).then((function(){return t}))}var Rtt={toSvg:Ptt,toPng:function(t,e){return Ott(t,e||{}).then((function(t){return t.toDataURL()}))},toJpeg:function(t,e){return Ott(t,e=e||{}).then((function(t){return t.toDataURL("image/jpeg",e.quality||1)}))},toBlob:function(t,e){return Ott(t,e||{}).then(ktt.canvasToBlob)},toPixelData:function(t,e){return Ott(t,e||{}).then((function(e){return e.getContext("2d").getImageData(0,0,ktt.width(t),ktt.height(t)).data}))},impl:{fontFaces:Stt,images:Mtt,util:ktt,inliner:Ett,options:{}}};function jtt(t,e,r,n){var i=this.model_layer,a=i._overlay;return new Promise((function(o,s){if(i){var c=i.get("width"),u=i.get("height");r=r||c,n=n||u;var l=i.get("translate"),h=i.get("scale"),f=Math.min(r/c,n/u);r=c*f,n=u*f,i.set("translate",{x:0,y:0}),i.set("scale",{x:f/L8,y:f/L8});var d=K7.createCanvas(r,n),p=d.getContext("2d");if(i.draw(p),i.set("translate",l),i.set("scale",h),!a)return o(d.toDataURL(t,e)),void(d=null);Rtt.toPng(a,{sx:f,sy:f,width:r,height:n}).then((function(i){var a=new Image;a.onload=function(){p.drawImage(a,0,0,r,n),o(d.toDataURL(t,e)),d=null},a.src=i}),(function(r){A8(r),o(d.toDataURL(t,e)),d=null}))}else s("No target model")}))}function Ltt(){if(this.hasSameParentForAllSelected){var t=this.selected.filter((t=>!!t.parent&&!t.stuck));if(!(t.length<2)){var e=t[0].parent,r=[],n=t.sort(((t,r)=>e.components.indexOf(t)-e.components.indexOf(r)));n.forEach((t=>{r.push(t.bounds)}));var i=K7.union(r),a=t[0].transcoordP2S(i.left,i.top);a=t[0].transcoordS2T(a.x,a.y);var o=new Map,s=ltt({type:"group",left:a.x,top:a.y,width:i.width,height:i.height},e.app,(t=>{const e=this.getNewRefid();return void 0!==t&&o.set(t,e),e}));s.replaceRefids(o);var c=[{component:s,to_container:e}];n.forEach((t=>{c.push({component:t,to_container:s})})),this.app.commander.execute(new stt({changes:c})),this.selected=[s]}}}function Dtt(){if(0!==this.selected.length){var t=[],e=[];this.selected.forEach((r=>{if(r.isGroup()){var n=r.parent;r.components.forEach((r=>{t.push(r),e.push({component:r,to_container:n})})),e.push({component:r,to_container:null})}})),this.app.commander.execute(new stt({changes:e})),this.selected=t}}function ztt(){var t=this.selected;if(0!=t.length){var e=t.map((t=>t.bounds)),r=K7.union(e),n=r.left+r.width/2;t.map((t=>{t.symmetryX(n)}))}}function Ftt(){var t=this.selected;if(0!=t.length){var e=t.map((t=>t.bounds)),r=K7.union(e),n=r.top+r.height/2;t.map((t=>{t.symmetryY(n)}))}}function Ntt(){V9.around(this.app.commander,ztt,this)}function Btt(){V9.around(this.app.commander,Ftt,this)}function Utt(t,e,r){var n=this.findAll(t,r);return n.forEach((t=>{t.set(e)})),n}function Ytt(t){V9.around(this.app.commander,t)}function Gtt(){return Object.values(this.indexMap).map((t=>t.map((t=>{let{id:e,data:r}=t.model;return{key:e,value:r}})))).flat().sort(((t,e)=>t.key>e.key?1:-1))}const Wtt="left",Htt="right",qtt="center",Xtt="top",Vtt="bottom",Qtt="middle",Ktt=[Wtt,Htt,qtt,Xtt,Qtt,Vtt];function Jtt(t){if(this.hasSameParentForAllSelected&&-1!=Ktt.indexOf(t)){var e=this.selected.filter((t=>!t.stuck)),r=this.app.commander;V9.around(r,(function(){!function(t,e){const r=e[0].parent,{width:n,height:i}=r.bounds;switch(t){case Wtt:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,left:0}}break;case qtt:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,left:n/2-r.width/2}}break;case Htt:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,left:n-r.width}}break;case Xtt:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,top:0}}break;case Qtt:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,top:i/2-r.height/2}}break;case Vtt:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,top:i-r.height}}break;default:;}}(t,e)}))}}function Ztt(t){t instanceof Array||(t=[t]),this.trigger("addstart",t)}function $tt(){this.trigger("stylepastestart")}function tet(){this.trigger("stylepastestop")}function eet(){this.trigger("databindpastestart")}function ret(){this.trigger("databindpastestop")}function net(t,e,r,n){var i=t.selected,a=n?i.slice(0):[];n&&a.length>0?e=a[0].parent:e.isContainer()||(e=e.parent);var o=e.layout.capturables(e),s=!!e.layout.joinType;if(n&&r.selected.forEach((t=>{a.splice(a.indexOf(t),1)})),r.selected=[],o.forEach((t=>{t.capturable&&function(t,e,r){var n,i,a,o,{sx:s,sy:c,ex:u,ey:l}=e;if(s>u?(n=u,i=s):(n=s,i=u),c>l?(a=l,o=c):(a=c,o=l),r){var h=t.bounds,f=t.transcoordS2TR(h.left,h.top),d=t.transcoordS2TR(h.left+h.width,h.top+h.height),p=f.x,g=d.x,v=f.y,y=d.y,m=Math.min(n,p,i,g),b=Math.max(n,p,i,g),x=Math.min(a,v,o,y),w=Math.max(a,v,o,y);return!(b-m>Math.abs(i-n)+Math.abs(g-p)||w-x>Math.abs(o-a)+Math.abs(y-v))}var A=t.path;if(!A)return error("컴포넌트에 get path가 잘못 구현되어있음.",t),!1;for(let e=0;e<A.length;e++){let r=t.transcoordS2TR(A[e].x,A[e].y);if(n>r.x||i<r.x||a>r.y||o<r.y)return!1}return!0}(t,r,s)&&-1==a.indexOf(t)&&r.selected.push(t)})),a=a.concat(r.selected),i.length!==a.length)t.selected=a;else for(let e=0;e<a.length;e++)if(i[e]!=a[e]){t.selected=a;break}}function iet(t,e,r,n,i){i||net(t,e,r,n)}function aet(t,e){var r=t.components||[];for(let t of r){aet(t,e);let r=e.indexOf(t);-1!=r&&e.splice(r,1)}}K7.register("add-layer",class extends k9{ready(){super.ready();var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}render(t){var e=this.addbox;if(e){let{sx:r,sy:n,ex:i,ey:a}=e,o=this.get("scale")||{x:1,y:1};t.beginPath(),t.rect(r,n,i-r,a-n),t.setLineDash([2/o.x,4/o.y]),t.lineWidth=1/o.x,t.strokeStyle="black",t.stroke()}}contains(t,e){return!(3!=this.app.mode)}get eventMap(){return{"(root)":{"(self)":{addstart:this.onaddstart,addstop:this.onaddstop,keydown:this.onkeydown,dragstart:this.ondragstart,dragmove:this.ondragmove,dragend:this.ondragend,mousedown:this.onmousedown,mouseup:this.onmouseup}},"model-layer":{"(self)":{change:this.onchange_root_model}}}}onchange_root_model(t,e,r){t.translate&&this.set("translate",t.translate),t.scale&&this.set("scale",t.scale)}onaddstart(t,e){void 0===this.before_mode&&(this.before_mode=this.app.mode,this.models=t,this.app.mode=3)}onaddstop(){void 0!==this.before_mode&&(this.app.mode=this.before_mode),delete this.before_mode,delete this.addbox,this.invalidate()}onkeydown(t){3!==this.app.mode||"Esc"!=t.code&&"Escape"!=t.code||this.root.trigger("addstop")}ondragstart(t){var{x:e,y:r}=this.transcoordC2S(t.offsetX,t.offsetY);this.addbox={sx:e,sy:r}}ondragmove(t){if(3===this.app.mode){var{x:e,y:r}=this.transcoordC2S(t.offsetX,t.offsetY);this.addbox&&(this.addbox.ex=e,this.addbox.ey=r,this.invalidate())}}ondragend(t,e){if(3!==this.app.mode)return;const{sx:r,sy:n,ex:i,ey:a}=this.addbox;dtt.call(this.root,this.models,{left:Math.min(r,i),top:Math.min(n,a),width:Math.abs(i-r),height:Math.abs(a-n)}),this.root.trigger("addstop")}onmousedown(t,e){3===this.app.mode&&(this.downpoint={x:t.offsetX,y:t.offsetY})}onmouseup(t,e){if(this.downpoint.x===t.offsetX&&this.downpoint.y===t.offsetY){var{x:r,y:n}=this.transcoordC2S(t.offsetX,t.offsetY);dtt.call(this.root,this.models,{cx:r,cy:n}),this.root.trigger("addstop")}}});K7.register("selection-layer",class extends k9{ready(){super.ready();var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}contains(t,e){return!1}render(t){var e=this.selbox;if(e){let{sx:r,sy:n,ex:i,ey:a}=e,o=this.get("scale")||{x:1,y:1};t.beginPath(),t.rect(r,n,i-r,a-n),t.setLineDash([2/o.x,4/o.y]),t.lineWidth=1/o.x,t.strokeStyle="black",t.stroke()}}get eventMap(){return{"(root)":{"(self)":{keydown:this.onkeydown}},"model-layer":{"(self)":{change:this.onchange_root_model},"(all)":{dragstart:this.ondragstart_selbox,dragmove:this.ondragmove_selbox,dragend:this.ondragend_selbox,mousedown:this.onmousedown_comp,mouseup:this.onmouseup_comp}}}}onkeydown(t,e){var{origin:r,deliverer:n}=e,i=n.selected;if(1!==i.length)return!1;var a=i[0],o=a.parent;if(!o||o===n)return!1;if("Tab"===t.code){var s=o.layout.capturables(o),c=s.indexOf(a);if(-1==c){if(!o.indexOf(a))return _8("Container not contains [",a,"] as a component"),!1;c=0}var u=s.length;t.shiftKey?c--:c++,a=s[(c+u)%u]}else{if(!o.layout.keyNavigate)return!1;a=o.layout.keyNavigate(o,a,t)||a}n.selected=[a],t.preventDefault()}onchange_root_model(t,e,r){t.translate&&this.set("translate",t.translate),t.scale&&this.set("scale",t.scale)}_pendingDecision(t){this.downpoint={x:t.offsetX,y:t.offsetY}}_selectGroupItem(t,e){var r=this.selected.indexOf(t);let n=t.parent;for(;n.parent.isGroup();)n=n.parent;let i=[],a=!1,o=!1;if(this.selected.forEach((t=>{let e=t.parent;if(t!==n){for(;e.parent&&e.parent.isGroup();)e=e.parent;e===n&&(i.push(t),a=!0)}else o=!0})),a)if(e.shiftKey){if(-1!=r)return void this._pendingDecision(e);i.push(t)}else{if(-1!=r)return void this._pendingDecision(e);i=[t]}else{if(o)return void this._pendingDecision(e);if(e.shiftKey)if(this.selected.length>0){if(-1!=this.selected.indexOf(n))return;i=[...this.selected,n]}else i=[n];else i=[n]}this.selected=i}onmousedown_comp(t,e){var{origin:r}=e;if(this.downpoint=null,t.shiftKey){if(r.parent.isGroup())return void this._selectGroupItem(r,t);if(-1!=this.selected.indexOf(r))return void this._pendingDecision(t);{let t=this.selected.filter((t=>!t.isRootModel()&&!!t.parent)),e=t.length>0&&t[0].parent;e&&e!==r.parent&&(!function(t,e){for(var r=t.parent;r;){let t=e.indexOf(r);-1!=t&&e.splice(t,1),r=r.parent}}(r,t),aet(r,t)),t.push(r),this.selected=t}}else{if(r.parent.isGroup())return void this._selectGroupItem(r,t);if(-1!=this.selected.indexOf(r))return;this.selected=[r],this.sameParent=!0}}onmouseup_comp(t,e){if(!this.downpoint)return;if(this.downpoint.x!==t.offsetX||this.downpoint.y!==t.offsetY)return;var{origin:r}=e;let n=this.selected.indexOf(r);if(-1==n&&r.parent.isGroup()&&(n=this.selected.indexOf(r.parent)),-1!==n&&t.shiftKey){let t=this.selected.slice();return n>-1&&t.splice(n,1),void(this.selected=t)}r.parent.isGroup()&&(this.selected=[r])}ondragstart_selbox(t,e){var{origin:r}=e;if(r.stuck){var{x:n,y:i}=this.transcoordC2S(t.offsetX,t.offsetY);this.selbox={sx:n,sy:i,selected:[]}}}ondragmove_selbox(t,e){var{origin:r}=e;if(r.stuck){var{x:n,y:i}=this.transcoordC2S(t.offsetX,t.offsetY);this.selbox&&(this.selbox.ex=n,this.selbox.ey=i,iet(this,r,this.selbox,t.shiftKey),this.invalidate())}}ondragend_selbox(t,e){var{origin:r}=e;r.stuck&&(this.last_pos=null,this.selbox=null,iet(this,null,null,!1,!0),this.invalidate())}});class oet{constructor(t){this.layer=t}draw(t,e,r){var{left:n,top:i,width:a,height:o}=e.bounds;0!=a&&0!=o&&(t.beginPath(),t.rect(n,i,a,o),t.clip(),t.beginPath(),t.strokeStyle="#f26522",t.lineWidth=4,t.shadowBlur=10,t.shadowColor="black",t.shadowOffsetX=0,t.shadowOffsetY=0,t.rect(n,i,a,o),t.stroke(),t.closePath())}}class set{constructor(t){this.layer=t}draw(t,e,r){var n=e.bounds;t.beginPath(),t.rect(n.left-4/r.x,n.top-4/r.y,n.width+8/r.x,n.height+8/r.y),t.setLineDash([3/r.x,4/r.y]),t.lineWidth=1/r.x,t.strokeStyle="black",t.stroke(),t.setLineDash([]),t.closePath()}}class cet{constructor(t){this.layer=t}reset(){this.active=null}get selected(){return this.layer.selected}contains(t,e,r,n){let i=r.controls;return!!i&&(i.every(((i,a)=>(Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(this.active={component:r,index:a,handler:i.handler}),!this.active))),!!this.active)}draw(t,e,r){var n=e.controls;n&&n.forEach(((e,n)=>{t.beginPath(),t.lineWidth=1/r.x,t.ellipse(e.x,e.y,4/r.x,4/r.y,0,0,2*Math.PI,!0),t.fillStyle="#ff5d72",t.fill(),t.strokeStyle="#fff",t.stroke()}))}onevent(t,e){var{handler:r,component:n,index:i}=this.active,a=n.transcoordC2S(e.offsetX,e.offsetY);a=n.transcoordS2P(a.x,a.y),r&&"function"==typeof r[t]&&r[t](a,i,n)}onmousedown(t){this.onevent("onmousedown",t)}ondragstart(t){var e=this.active;e.changes=V9.before([e.component]),this.onevent("ondragstart",t)}ondragmove(t){this.onevent("ondragmove",t)}ondragend(t){this.onevent("ondragend",t);var{component:e,changes:r}=this.active;V9.after(r,e.app.commander),e.parent&&e.parent.calculateBounds&&e.parent.calculateBounds()}}function uet(t,e){return Math.atan2(e.y-t.y,e.x-t.x)}const het=15*Math.PI/180;class fet{constructor(t){this.layer=t}reset(){this.active=null,this.created=null}get selected(){return this.layer.selected}contains(t,e,r,n){return!!r.mutable&&(r.path.every(((i,a)=>(Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(this.active={component:r,index:a}),!this.active))),!!this.active)}startLinkProcess(t,e,r){try{var n=ltt(e,t.app);return t.rootModel.addComponent(n),this.layer.selected=[n],this.active={component:n,index:1},this.ondragstart(r),n}catch(t){console.warn(r)}}draw(t,e,r){if(e.mutable&&!e.stuck){var n=e.path,i=this.active;n.forEach(((n,a)=>{t.beginPath(),t.ellipse(n.x,n.y,4/r.x,4/r.y,0,0,2*Math.PI,!0),t.lineWidth=1/r.x,t.strokeStyle="#656565",t.fillStyle="#fff",i&&i.component===e&&i.index===a&&(t.strokeStyle="#fa7703",i.toFill&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke()}))}}ondblclick(t){var e=this.active.component;if(e.pathExtendable){var r=e.path.slice();r.length<3||(r.splice(this.active.index,1),e.path=r)}}onmousedown(t){this.active.toFill=!0}ondragstart(t){var{index:e,component:r}=this.active;this.created||(this.active.changes=V9.before([r])),0!==e&&e!==r.path.length-1||(this.layer.counterEnd=0===e?r.toEnd||{fromto:"to"}:r.fromEnd||{fromto:"from"})}ondragmove(t){var{component:e,index:r}=this.active||{};const{offsetX:n,offsetY:i}=t;var a,o,s=e.transcoordC2S(n,i);if(s=e.transcoordS2P(s.x,s.y),t.shiftKey){var c=e.path.length,u=e.isLine()&&0==r?e.path[1]:e.path[(r-1+c)%c];u=e.transcoordS2P(u.x,u.y);var l,h=0;if(c>2)e.isLine()?0==r?l=e.path[2]:1!=r&&(l=e.path[r-2]):l=e.path[(r-2+c)%c],l&&(h=uet(l=e.transcoordS2P(l.x,l.y),u));var f=Math.round((uet(u,s)-h)/het)*het+h;s=function(t,e,r){return{x:Math.cos(e)*r+t.x,y:Math.sin(e)*r+t.y}}(u,f,(a=u,o=s,Math.sqrt((o.x-a.x)*(o.x-a.x)+(o.y-a.y)*(o.y-a.y))))}if(0===r||r===e.path.length-1){const t=this.layer.anchorTarget=e.rootModel.capture(n,i,(t=>!t.isConnectable()));if(t){const{x:a,y:o}=t.transcoordC2S(n,i),c=this.layer.get("scale")||{x:1,y:1},u=this.layer.counterEnd,l=(t.anchors||[]).find((r=>{const{name:n,inout:i,multiplicity:s=1/0,position:l,filter:h}=r;if(u){const{anchor:t,fromto:e}=u;if(t&&("out"===t.inout&&"out"===i||"in"===t.inout&&"in"===i))return!1;if("from"===e&&"out"===i||"to"===e&&"in"===i)return!1}else console.error("should not be here.");if(Math.abs(a-l.x)>8/c.x||Math.abs(o-l.y)>8/c.y)return!1;const f=t.findInOutLines(n);return!!f.includes(e)||!(s!==1/0&&f.length>=s)&&(!u||!h||!!h.call(r,u))}));l?0==r?e.from={component:t.get("refid"),anchor:l.name,position:s}:e.to={component:t.get("refid"),anchor:l.name,position:s}:0==r?e.from={position:s}:e.to={position:s}}}e.mutatePath(null,(function(t){t[r]=s}))}ondragend(t){var{component:e,index:r,changes:n}=this.active;if(0===r||r===e.path.length-1){const{offsetX:n,offsetY:i}=t,a=e.rootModel.capture(n,i,(t=>t===e||t.isLine())),{x:o,y:s}=a.transcoordC2S(n,i),c=this.layer.get("scale")||{x:1,y:1},u=(a.anchors||[]).find((t=>t&&Math.abs(o-t.position.x)<=8/c.x&&Math.abs(s-t.position.y)<=8/c.y));u&&(0==r?e.from={component:a.get("refid"),anchor:u.name}:e.to={component:a.get("refid"),anchor:u.name}),this.layer.endLinkProcess()}if(this.created){let t=new stt({changes:[{component:this.created,to_container:this.created.parent}]});created.app.commander.execute(t)}else V9.after(n,e.app.commander);e.parent&&e.parent.calculateBounds&&e.parent.calculateBounds()}}class det{constructor(t){this.layer=t}get active(){return this._active?.component.disposed&&(this._active=null),this._active}set active(t){this._active=t}reset(){this.active=null}contains(t,e,r,n){const i=this.active?.component===r&&this.active?.anchor;this.active=null;const a=this.layer.counterEnd;return(r.isConnectable()&&!r.disposed&&r.anchors||[]).filter((t=>{const{name:e,inout:n,multiplicity:i=1/0,filter:o}=t;if(a){const{anchor:t,fromto:e}=a;if(t&&("out"===t.inout&&"out"===n||"in"===t.inout&&"in"===n))return!1;if("from"===e&&"out"===n||"to"===e&&"in"===n)return!1}else if("in"===n)return!1;return!(i!==1/0&&r.findInOutLines(e).length>=i)&&(!o||!a||!!o.call(t,a))})).every((a=>{const o=i===a.name?2:1;return a&&a.position&&Math.abs(t-a.position.x)<=4*o/n.x&&Math.abs(e-a.position.y)<=4*o/n.y&&(this.active={component:r,anchor:a.name,template:a.template}),!this.active})),!!this.active}draw(t,e,r){if(!e.get("refid")||e.isLine())return;var n=this.active;const i=this.active?.component===e&&this.active?.anchor,a=this.layer.counterEnd;(e.isConnectable()&&!e.disposed&&e.anchors||[]).filter((t=>{const{name:r,inout:n,multiplicity:i=1/0,filter:o}=t;if(a){const{anchor:t,fromto:e}=a;if(t&&("out"===t.inout&&"out"===n||"in"===t.inout&&"in"===n))return!1;if("from"===e&&"out"===n||"to"===e&&"in"===n)return!1}else if("in"===n)return!1;return!(i!==1/0&&e.findInOutLines(r).length>=i)&&(!a||!o||!!o.call(t,a))})).forEach((a=>{const{name:o,position:s}=a,c=i===o?2:1;s&&(t.beginPath(),t.ellipse(s.x,s.y,4*c/r.x,4*c/r.y,0,0,2*Math.PI),t.setLineDash([0,0]),t.lineWidth=1/r.x,t.strokeStyle="#656565",t.stroke(),t.fillStyle="#fff",n&&n.component===e&&n.anchor===o&&(t.strokeStyle="#fa7703",n.focus&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke())}))}onmousedown(t){this.active.focus=!0}ondragstart(t){const{component:e,anchor:r,template:n}=this.active,i=this.layer.transcoordC2S(t.offsetX,t.offsetY);this.layer.startLinkProcess(e,{type:"ortholine",lineWidth:1,strokeStyle:"black",begin:"oval",beginSize:"size9",end:"arrow",endSize:"size9",lineDash:"solid",lineCap:"butt",round:10,...n,from:{component:e.get("refid"),anchor:r,position:i},to:{position:i}},t)}ondragmove(t){}ondragend(t){}}function pet(t,e,r){var n,i,{left:a,top:o,width:s,height:c}=t.bounds;switch(e){case 0:n=a,i=o;break;case 1:n=a+s/2,i=o;break;case 2:n=a+s,i=o;break;case 3:n=a+s,i=o+c/2;break;case 4:n=a+s,i=o+c;break;case 5:n=a+s/2,i=o+c;break;case 6:n=a,i=o+c;break;case 7:n=a,i=o+c/2}var u=n,l=i,h=t.transcoordT2S(r.x,r.y);return{dx:h.x-u,dy:h.y-l}}function get(t,e,r,n,i,a){var{left:o,top:s,width:c,height:u}=t.bounds,l={left:o,top:s,width:c,height:u};switch(e){case 0:o+=n,s+=i,c-=n,u-=i;break;case 1:s+=i,u-=i;break;case 2:s+=i,c+=n,u-=i;break;case 3:c+=n;break;case 4:c+=n,u+=i;break;case 5:u+=i;break;case 6:o+=n,c-=n,u+=i;break;case 7:o+=n,c-=n}if(t.mutateBounds((function(e){return Math.abs(c)<=.001&&(c=.001),Math.abs(u)<=.001&&(u=.001),t.adjustResize({left:o,top:s,width:c,height:u},l,r)}),this),t.isContainer()&&t.layout.ABSOLUTE&&!t.isGroup()){var h=l.left-o,f=l.top-s;a?t.components.forEach((t=>{t.delta("tx",0),t.delta("ty",0),t.move({x:h,y:f},!1)})):t.components.forEach((t=>{t.delta("tx",h),t.delta("ty",f)}))}else{var d=a&&t.parent;d&&d.isGroup()&&d.calculateBounds()}}function vet(t,e){var{left:r,top:n,width:i,height:a}=t,o=r+i/2,s=n+a/2,c=r+i,u=n+a;const l=i*e.x>50,h=a*e.y>50;return[{x:r,y:n},l?{x:o,y:n}:null,{x:c,y:n},h?{x:c,y:s}:null,{x:c,y:u},l?{x:o,y:u}:null,{x:r,y:u},h?{x:r,y:s}:null]}class yet{constructor(t){this.layer=t}reset(){this.active=null}get selected(){return this.layer.selected}contains(t,e,r,n){return!!r.resizable&&(vet(r.bounds,n).every(((i,a)=>(i&&Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(this.active={component:r,index:a}),!this.active))),!!this.active)}draw(t,e,r){if(!e.isLine()){var{left:n,top:i,width:a,height:o}=e.bounds;if(t.beginPath(),t.rect(n-4/r.x,i-4/r.y,a+8/r.x,o+8/r.y),t.setLineDash([3/r.x,4/r.y]),t.lineWidth=1/r.x,t.strokeStyle="black",t.stroke(),t.setLineDash([]),e.resizable){var s=this.active;vet(e.bounds,r).forEach(((n,i)=>{n&&(t.beginPath(),t.rect(n.x-4/r.x,n.y-4/r.y,8/r.x,8/r.y),t.setLineDash([0,0]),t.strokeStyle="#656565",t.stroke(),t.fillStyle="#fff",s&&s.component===e&&s.index===i&&(t.strokeStyle="#fa7703",s.focus&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke())}))}}}onmousedown(t){this.active.focus=!0}ondragstart(t){var{component:e}=this.active;this.active.bounds=e.bounds,this.active.boundsList=this.layer.selected.filter((t=>t.resizable)).map((t=>t.bounds))}ondragmove(t){var{component:e,index:r,boundsList:n,bounds:i}=this.active,a=this.layer.transcoordC2S(t.offsetX,t.offsetY);e.bounds=i;var o=pet(e,r,a);this.layer.selected.filter((t=>t.resizable)).forEach(((e,i)=>{e.bounds=n[i],get(e,r,t.shiftKey,o.dx,o.dy,!1)}))}ondragend(t){var{component:e,index:r,boundsList:n,bounds:i}=this.active,a=this.layer.transcoordC2S(t.offsetX,t.offsetY);e.bounds=i;var o=pet(e,r,a);this.layer.selected.filter((t=>t.resizable)).forEach(((e,i)=>{e.bounds=n[i],get(e,r,t.shiftKey,o.dx,o.dy,!0)})),this.active.component.app.commander.execute(null,!1)}}const met=2*Math.PI,bet=Math.PI/2;function xet(t,e){var r=t.bounds;return{x:r.left+r.width/2,y:r.top-20/e.y}}class wet{constructor(t){this.layer=t}reset(){this.active=null}get selected(){return this.layer.selected}contains(t,e,r,n){if(!r.rotatable)return!1;var i=xet(r,n);return Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(this.active={component:r},!0)}draw(t,e,r){if(e.rotatable){t.beginPath();var n=xet(e,r);t.lineWidth=1.5/r.x,t.moveTo(n.x,n.y+20/r.y),t.lineTo(n.x,n.y),t.strokeStyle="#656565",t.stroke(),t.beginPath(),t.ellipse(n.x,n.y,4/r.x,4/r.y,0,0,met,!0),t.stroke(),t.fillStyle="#fff",t.fill();var i=this.active;i&&i.component===e&&(t.strokeStyle="#fa7703",t.stroke(),i.toFill&&(t.fillStyle="#ffb80c",t.fill()))}}onmousedown(t){this.active.toFill=!0}ondragstart(t){var e=this.active;e.component,e.start_rotation=e.component.get("rotation"),e.rotations=this.layer.selected.filter((t=>t.rotatable)).map((t=>t.get("rotation")))}ondragmove(t){var{component:e}=this.active,r=e.transcoordC2S(t.offsetX,t.offsetY);r=e.transcoordS2P(r.x,r.y);var n=e.rotatePoint,i=e.get("rotation")||0,a=Math.atan((n.y-r.y)/(n.x-r.x)),o=(a=n.x>=r.x?a-bet:bet+a)-i;this.layer.selected.filter((t=>t.rotatable)).forEach(((e,r)=>{let n=((e.get("rotation")||0)+o)%met;e.set("rotation",e.adjustRotation(n,t.shiftKey))}))}ondragend(t){var{component:e,rotations:r}=this.active;e.app.commander.execute(null,!1)}}K7.register("modeling-layer",class extends k9{constructor(t,e){super(t,e),this.pathHandler=new fet(this);var r=this.pathHandler,n=new cet(this),i=new yet(this),a=new wet(this);this._modelers=[r,n,i,a],this._control_mode_modelers=[n,r,i,a],this.focusOutline=new oet(this),this.groupOutline=new set(this),this.anchorHandler=new det(this),this._reversed_modelers=this._modelers.slice().reverse(),this._control_mode_reverse_modelers=this._control_mode_modelers.slice().reverse(),this.hovered=null,this.hoveredDest=null}get modelers(){return this._control_mode?this._control_mode_modelers:this._modelers}get reversedModelers(){return this._control_mode?this._control_mode_reverse_modelers:this._reversed_modelers}ready(){super.ready();var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}contains(t,e){var r=this.selected.filter((t=>!!t.parent)),n=this.get("scale")||{x:1,y:1};if(this._state_dragging){if(this._counter_end){let r=this.anchorTarget.transcoordT2S(t,e);if(this.anchorHandler.contains(r.x,r.y,this.anchorTarget,n))return!0}return!0}this.modelers.forEach((t=>t.reset()));r=this.selected.filter((t=>!!t.parent));for(let i=0;i<r.length;i++){let a=r[i],o=a.transcoordT2S(t,e);for(let t=0;t<this.modelers.length;t++){let e=this.modelers[t];if(e.contains(o.x,o.y,a,n))return this.currentModeler=e,!0}}if(this.anchorTarget){let r=this.anchorTarget.transcoordT2S(t,e);if(this.anchorHandler.contains(r.x,r.y,this.anchorTarget,n))return this.currentModeler=this.anchorHandler,!0}else this.anchorHandler.reset();return this.currentModeler=null,!1}_componentDrawer(t,e,r,n){let i=[],a=e.parent;if(e.isRootModel())return t.save(),n(t,e,r),void t.restore();for(;a&&!a.isRootModel();)i.push(a),a=a.parent;t.save(),i.reverse().forEach((function(e){let r=e.rotatePoint;t.translate(r.x,r.y);let n=e.get("scale");n&&t.scale(n.x,n.y),t.rotate(e.get("rotation")),t.translate(-r.x,-r.y);let i=e.bounds;t.translate(i.left,i.top)}));let o=e.rotatePoint;t.translate(o.x,o.y);let s=e.get("scale");s&&t.scale(s.x,s.y),t.rotate(e.get("rotation")),t.translate(-o.x,-o.y),n(t,e,r),t.restore()}prerender(t){var{translate:e,scale:r={x:1,y:1},rotation:n}=this.model;t.save(),t.beginPath(),t.clearRect(0,0,t.canvas.width,t.canvas.height),t.rect(0,0,t.canvas.width,t.canvas.height),t.fillStyle="black",t.globalAlpha=.5,t.fill(),t.restore(),e&&t.translate(e.x*L8,e.y*L8),t.scale(r.x*L8,r.y*L8),n&&t.rotate(n),t.clearRect(0,0,this.rootModel.get("width"),this.rootModel.get("height"))}render(t){t.beginPath();var e=this.get("scale")||{x:1,y:1},r=this.selected.filter((t=>!!t.parent));if(this.focused&&this._componentDrawer(t,this.focused,e,((t,e,r)=>{this.focusOutline.draw(t,e,r)})),r.length>0&&r[0].parent.isGroup()){let n=r[0].parent;for(;n.parent.isGroup();)n=n.parent;this._componentDrawer(t,n,e,((t,e,r)=>{this.groupOutline.draw(t,e,r)}))}r.forEach((r=>{this._componentDrawer(t,r,e,((t,e,r)=>{this.reversedModelers.forEach((n=>n.draw(t,e,r)))}))})),this.anchorTarget&&this._componentDrawer(t,this.anchorTarget,e,((t,e,r)=>{this.anchorHandler.draw(t,e,r)}))}get anchorTarget(){return this.currentModeler===this.anchorHandler||this.currentModeler===this.pathHandler||this.hovered?.isLine()||(this._anchorTarget=this.hovered),this._anchorTarget}set anchorTarget(t){this._anchorTarget=t}get hovered(){return this._hovered}set hovered(t){this._hovered=t,this.invalidate()}startLinkProcess(t,e,r){this.currentModeler=this.pathHandler,this.processingLink=this.pathHandler.startLinkProcess(t,e,r),this.counterEnd=this.processingLink.fromEnd,this.processingLink.trigger("tag")}set counterEnd(t){this.currentModeler=this.pathHandler,this._counter_end=t}get counterEnd(){return this._counter_end}endLinkProcess(){this.processingLink?.trigger("tagreset"),this.processingLink=null,this._counter_end=null}get eventMap(){return{"model-layer":{"(all)":{change:this.onchange_model,wheel:this.onwheel_scale,drop:this.ondrop},"(descendant)":{mouseenter:this.onmouseenter,mouseleave:this.onmouseleave},"(self)":{dblclick:this.ondblclick_model}},"(root)":{"(self)":{selected:this.onselected,keydown:this.onkeydown,keyup:this.onkeyup}}}}onmouseenter(t,e){this.hovered=e?.origin}onmouseleave(t,e){this.hovered=null}onkeydown(t){"Alt"==t.key&&(this._control_mode=!0,this.invalidate())}onkeyup(t){"Alt"==t.key&&(this._control_mode=!1,this.invalidate())}onselected(t,e){this.invalidate()}onchange_model(t,e,r){var{origin:n,deliverer:i}=r;n===i&&(t.translate&&this.set("translate",t.translate),void 0!==t.rotation&&this.set("rotation",t.rotation),t.scale&&this.set("scale",t.scale)),this.invalidate()}ondblclick_model(t,e){const r=e.origin;r?.root.fit()}ondblclick(t){"function"==typeof this.currentModeler.ondblclick&&this.currentModeler.ondblclick(t),this.invalidate()}onmousedown(t){this.currentModeler.onmousedown(t),this.invalidate()}onmouseup(t){"function"==typeof this.currentModeler.onmouseup&&this.currentModeler.onmouseup(t),this.invalidate()}ondragstart(t){this.currentModeler.ondragstart(t),this._state_dragging=!0}ondragmove(t){this.currentModeler.ondragmove(t),this.invalidate()}ondragend(t){this._state_dragging=!1,this.currentModeler.ondragend(t),this.invalidate()}ondrop(t,e){var{origin:r}=e,n=t.dataTransfer.files;if(n.length<1)return;let i=this.rootModel.transcoordC2S(t.offsetX,t.offsetY),a=this.rootModel;Promise.all(Array.from(n).map((t=>new Promise(((e,r)=>{let n=new FileReader;n.addEventListener("loadend",(t=>{e(n.result)})),["error","abort"].forEach((t=>n.addEventListener(t,(t=>{r(t)})))),n.readAsDataURL(t)}))))).then((e=>{if(t.altKey)return V9.around(this.app.commander,(()=>{r.ondropfile(n,e)})),void(this.selected=[r]);let o=[],s=e.map(((t,e)=>{let r,s=n[e].type,c=n[e].name;return s.startsWith("image/")?(r=ltt({type:s.startsWith("image/gif")?"gif-view":"image-view",top:0,left:0,width:200,height:200,src:t},a.app),o.push(new Promise(((e,n)=>{let i=new Image;i.src=t,i.onload=()=>{r.set({width:i.width,height:i.height}),e()},i.onerror=t=>{n(t)}})))):s.startsWith("audio/")?r=ltt({type:"audio",top:0,left:0,width:100,height:100,src:t},a.app):s.startsWith("vnd.ms-excel/")||/\.xlsx?$/.test(c)?r=ltt({type:"excel",top:0,left:0,width:100,height:100,src:t},a.app):console.log("droped file",n[e]),r&&(r.center=i,i.x+=50,i.y+=50),r})).filter(Boolean).map((t=>({component:t,to_container:a})));s.length>0&&Promise.all(o).then((()=>{this.app.commander.execute(new stt({changes:s})),this.selected=s.map((t=>t.component))}),(t=>{console.error(t)}))}),(t=>{console.error(t)}))}onwheel_scale(t,e){if(0!=t.deltaY||0!=t.deltaX){var r=e.deliverer;if(t.shiftKey){if(-1!=navigator.userAgent.indexOf("Win"))var n=t.deltaY<0?1:-1;else n=t.deltaX<0?1:-1;V9.around(this.app.commander,(()=>{r.selected.forEach((t=>{let e=t.get("fontSize")||F8.FONT_SIZE;e<1&&(e=1),e+=n,t.set("fontSize",e)}))}))}else{n=t.deltaY<0?1:-1;let e=r.get("scale")||{x:1,y:1},i=r.get("translate"),a=t.offsetX,o=t.offsetY,s=r.transcoordC2S(a,o),c=.1*n,u={x:e.x+c,y:e.y+c};if(n<0&&e.x<.2||n>0&&e.x>10)return;r.set("scale",u);let l=r.transcoordC2S(a,o);r.set("translate",{x:i.x+(l.x-s.x)*u.x,y:i.y+(l.y-s.y)*u.y})}}}});class Aet extends k9{constructor(t,e){super(t,e),this._anim_alpha=1}animOnTargetChange(t){t!==this._lastTargets&&(this._lastTargets=t,this._anim_alpha=1,this.animate({step:t=>{this._anim_alpha=1-t,this.invalidate()},duration:5e3,delta:"circ",ease:"in"}).start())}decorate(t,e,r){const n=t.decorators;var i=!1;return n.map((t=>"string"==typeof t?G7(t):t)).filter((t=>t&&"function"==typeof t)).map((n=>{const a=n(t,e,1-r);i||=a})),i}render(t){var e=this.decoTargets&&this.decoTargets.filter((t=>t.rootModel));if(!e||0==e.length)return this._animate&&this._animate.stop(),void delete this._animate;t.globalAlpha*=this._anim_alpha;var r=!1;e.forEach((e=>{this.decorate(e,t,1-this._anim_alpha)&&(r=!0)})),r&&this.animOnTargetChange(this.decoTargets)}get decoTargets(){return this._decoTargets}set decoTargets(t){this._decoTargets=t&&t.filter((t=>!t.isLayer())),this.invalidate()}get eventMap(){return{"model-layer":{"(descendant)":{tag:this.ondecotag,tagreset:this.ondecotagreset,mouseenter:this.onmouseenter,mouseleave:this.onmouseleave}}}}onmouseenter(t,e){this._decotagreset(),this._ondecotag(e.origin)}onmouseleave(t,e){this._decotagreset()}ondecotagreset(t){this._decotagreset()}ondecotag(t){this._ondecotag(t.origin)}offdecotag(t,e){this._offdecotag(e.origin)}_ondecotag(t){this.decoTargets&&-1!==this.decoTargets.lastIndexOf(t)||(this.decoTargets=(this.decoTargets||[]).concat(t))}_offdecotag(t){if(this.decoTargets){var e=this.decoTargets.slice();e.splice(this.decoTargets.lastIndexOf(t),1),this.decoTargets=e}}_decotagreset(){this.decoTargets=[]}}K7.register("decotag-layer",Aet),K7.register("tag-layer",Aet);K7.register("reaction-layer",class extends k9{constructor(t,e){super(t,e),this._anim_alpha=1}animOnTargetChange(t){t!==this._lastTargets&&(this._lastTargets=t,this._anim_alpha=1,this.animate({step:t=>{this._anim_alpha=1-t,this.invalidate()},duration:1e4,delta:"circ",ease:"inout"}).start())}decorate(t,e,r){const n=t.reactionDecorators;var i=!1;return n.map((t=>"string"==typeof t?G7(t):t)).filter((t=>t&&"function"==typeof t)).map((n=>{const a=n(t,e,1-r);i||=a})),i}render(t){var e=this.targets&&this.targets.filter((t=>t.rootModel));if(!e||0==e.length)return this._animate&&this._animate.stop(),void delete this._animate;t.globalAlpha*=this._anim_alpha;var r=!1;e.forEach((e=>{this.decorate(e,t,1-this._anim_alpha)&&(r=!0)})),r&&this.animOnTargetChange(this.targets)}get targets(){return this._targets}set targets(t){this._targets=t&&t.filter((t=>!t.isLayer())),this.invalidate()}get eventMap(){return{"model-layer":{"(descendant)":{reaction:this.onreaction,reactionreset:this.onreactionreset}}}}onreactionreset(t){this._reactionreset()}onreaction(t){this._onreaction(t.origin)}offreaction(t,e){this._offreaction(e.origin)}_onreaction(t){this.targets&&-1!==this.targets.lastIndexOf(t)||(this.targets=(this.targets||[]).concat(t))}_offreaction(t){if(this.targets){var e=this.targets.slice();e.splice(this.targets.lastIndexOf(t),1),this.targets=e}}_reactionreset(){this.targets=[]}});function _et(){var t=arguments,e=t[t.length-1],r=this.event_pump;r.listeners.forEach((n=>{!function(t,e,r,n,i){for(let a in r){let o=r[a];if(W8(a,n.origin,0,t))for(let t in o){let r=o[t];t==n.name&&(n.listener=e,r.apply(e,i))}}}(r.deliverer,n.listener,n.cloned_handlers,e,t)}))}K7.register("scroll-layer",class extends k9{get capturable(){return!0}render(t){const{scrolling:e}=this.state;if(t.save(),t.beginPath(),t.fillStyle="#777",this.vscroller){const{left:r,top:n,width:i,height:a}=this.vscroller;t.globalAlpha="v"==e?1:.3,t.fillRect(r,n,i,a)}if(this.hscroller){const{left:r,top:n,width:i,height:a}=this.hscroller;t.globalAlpha="h"==e?1:.3,t.fillRect(r,n,i,a)}t.stroke(),t.restore()}resize(){super.resize(),this.calcScrollerBounds()}contains(t,e){const r=this.vscroller,n=this.hscroller;return this.setState("scrolling",r&&t>=r.left&&t<=r.left+r.width&&e>=r.top&&e<=r.top+r.height?"v":n&&t>=n.left&&t<=n.left+n.width&&e>=n.top&&e<=n.top+n.height?"h":null),!!this.getState("scrolling")}get eventMap(){return{"(root)":{"model-layer":{change:this.onchangeModelLayer}}}}onchange(t){"scrolling"in t&&this.invalidate()}ondragstart(t,e){this.lastPosition={x:t.offsetX,y:t.offsetY}}ondragmove(t,e){const r=this.root,{clientWidth:n,clientHeight:i}=this.canvas,{width:a,height:o}=this.rootModel.model,{x:s,y:c}={x:t.offsetX,y:t.offsetY},{x:u,y:l}=this._scale,{scrolling:h}=this.state,f=a/n,d=o/i;h&&r.rootModel.move({x:"h"==h?(-s+this.lastPosition.x)*u*f:0,y:"v"==h?(-c+this.lastPosition.y)*l*d:0},!1),this.lastPosition={x:t.offsetX,y:t.offsetY}}ondragend(){delete this.lastPosition,this.setState({scrolling:null})}calcScrollerBounds(){var{clientWidth:t,clientHeight:e}=this.canvas;const{width:r,height:n}=this.rootModel.model,{x:i=1,y:a=1}=this._scale||{},{x:o=0,y:s=0}=this._translate||{},c=r/t,u=n/e;var l={left:-o/i/c,top:e-10,width:t/i/c,height:10};this.hscroller=l.left>1||l.width+l.left<t-1?l:null,l={left:t-10,top:-s/a/u,width:10,height:e/a/u},this.vscroller=l.top>1||l.height+l.top<e-1?l:null,this.invalidate()}onchangeModelLayer(t,e,r){if(t.scale){const{x:e=1,y:r=1}=t?.scale||{};this._scale={x:e,y:r},this.calcScrollerBounds()}if(t.translate){const{x:e=0,y:r=0}=t.translate||{};this._translate={x:e,y:r},this.calcScrollerBounds()}}});class ket{constructor(t){if(void 0===t.on)throw new Error("Deliverer should be a event handlable object.");this.deliverer=t,this.listeners=[]}start(){this.deliverer.on("(all)",_et,{event_pump:this})}stop(){this.deliverer.off("(all)",_et)}on(t,e){var r=Object.assign({},e);Object.keys(r).forEach((e=>{if(0==e.indexOf("?")){let n=r[e],i=e.substr(1),a=t.get(i);delete r[e],a?r[a]=n:_8("EventPump#on","variable #{selector} is not evaluated on listener")}})),this.listeners.push({listener:t,handlers:e,cloned_handlers:r})}off(t,e){for(let r=0;r<this.listeners.length;r++){let n=this.listeners[r];n.listener!==t||e&&n.handlers!==e||this.listeners.splice(r,1)}}clear(){this.listeners=[]}dispose(){this.stop(),this.clear()}}class Eet{constructor(t){this.eventMaps=[],this.root=t,t.eventMap&&this.add(t,t.eventMap)}set root(t){this._root=t}get root(){return this._root}stop(){this.eventMaps.forEach((t=>t.eventPump.stop()))}add(t,e){if(this.root)for(let r in e){let n=e[r];if("(self)"===r&&void 0===t.on)throw new Error("(self) selector not available when deliverer is not a event handlable object.");X8(r,this.root,t).forEach((r=>{var i=new ket(r);i.on(t,n),i.start(),this.eventMaps.push({eventPump:i,listener:t,handlerMap:e,deliverer:r})}))}}remove(t,e){var r=this.eventMaps.slice(0);for(let n=0;n<r.length;n++){let i=r[n];i.listener!==t||e&&i.handlerMap!==e||(this.eventMaps.splice(n,1),i.eventPump.dispose())}}clear(){this.eventMaps.slice(0).forEach((t=>t.eventPump.dispose())),this.eventMaps=[]}dispose(){this.stop(),this.clear()}}const Met=0,Tet=1,Pet=2,Oet=0,Iet=1,Cet=2;var Ret={},jet=0;class Let{constructor(t,e){this._type=e||t.type,this._ctrlKey=t.ctrlKey,this._altKey=t.altKey,this._shiftKey=t.shiftKey,this._metaKey=t.metaKey;var r=function(t){if(t.touches){let e=t.touches[0];if(!e)return Ret;let r=e.target.getBoundingClientRect();return Ret={x:t.offsetX||e.clientX-(r.x||r.left),y:t.offsetY||e.clientY-(r.y||r.top)}}return{x:t.offsetX,y:t.offsetY}}(t);if(this._offsetX=r.x,this._offsetY=r.y,"wheel"==t.type)this.deltaX=t.deltaX,this.deltaY=t.deltaY,this.deltaZ=t.deltaZ;else if("drop"==t.type)this.dataTransfer=t.dataTransfer;else if(t.type.match(/^touch/)&&(this._scale=t.scale,this._touches=t.touches,this._changedTouches=t.changedTouches,null==this._scale)){var n=function(t){var e,r,n=0,i=0,a=0;if(1===t.touches.length)return a;Array.from(t.touches).forEach((t=>{e=null!=e?Math.min(t.screenX,e):t.screenX,n=Math.max(t.screenX,n),r=null!=r?Math.min(t.screenY,r):t.screenY,i=Math.max(t.screenY,i)}));var o=n-e||0,s=i-r||0;return Math.sqrt(Math.pow(o,2)+Math.pow(s,2))||0}(t);jet>0&&(this._scale=n/jet),jet=n}}get type(){return this._type}set type(t){this._type=t}get offsetX(){return this._offsetX}get offsetY(){return this._offsetY}get altKey(){return this._altKey}get ctrlKey(){return this._ctrlKey}get shiftKey(){return this._shiftKey}get metaKey(){return this._metaKey}get touches(){return this._touches}get changedTouches(){return this._changedTouches}get scale(){return this._scale}stopPropagation(){this._stop_=!0}isPropagationStopped(){return this._stop_}}function Det(t,e){return t.capture(e.offsetX,e.offsetY)}function zet(t,e,r){if(t&&t.app&&(!t.app.isViewMode||!t.hidden)){r instanceof Let&&e===r.type||(r=new Let(r,e));var n="on"+e;t[n]&&t[n](r),r.isPropagationStopped()||t.trigger(e,r)}}class Fet{constructor(t,e){this.container=t,this.html_element=e,this.status=Met,this.last_target=null,this.gesture_handlers=D8.map((t=>this.gestureHandlerBuilder(t))),this.keyevent_handlers=z8.map((t=>this.keyeventHandlerBuilder(t))),D8.forEach(((t,r)=>e.addEventListener(t,this.gesture_handlers[r]))),z8.forEach(((t,r)=>e.addEventListener(t,this.keyevent_handlers[r]))),e.ondragover=this.gestureHandlerBuilder("dragover"),e.ondrop=this.gestureHandlerBuilder("drop"),e.tabIndex=1}dispose(){this.last_enter_target&&zet(this.last_enter_target,"mouseleave",new CustomEvent("mouseleave")),D8.forEach(((t,e)=>this.html_element.removeEventListener(t,this.gesture_handlers[e]))),z8.forEach(((t,e)=>this.html_element.removeEventListener(t,this.keyevent_handlers[e]))),delete this.gesture_handlers,delete this.keyevent_handlers,delete this.last_target}gestureHandlerBuilder(t){var e=this[`on${t}`].bind(this);return t=>(e(new Let(t))&&t.preventDefault(),!1)}keyeventHandlerBuilder(t){return this[`on${t}`].bind(this)}ondragover(t){return zet(Det(this.container,t),t.type,t),!1}ondrop(t){return zet(Det(this.container,t),t.type,t),!1}ondblclick(t){return zet(Det(this.container,t),t.type,t),this.last_target=null,!1}onkeydown(t){return this.container.trigger(t.type,t),!1}onkeyup(t){return this.container.trigger(t.type,t),!1}onmousemove(t){switch(this.status){case Tet:let r=t.offsetX-this.__dragstart_e.offsetX,n=t.offsetY-this.__dragstart_e.offsetY;if(r*r+n*n<16)break;this.status=Pet,zet(this.last_target,"dragstart",this.__dragstart_e),this.__dragmove_e=t,zet(this.last_target,"dragmove",t);break;case Pet:this.__dragmove_e=t,zet(this.last_target,"dragmove",t);break;default:var e=Det(this.container,t);this.last_enter_target!==e&&(this.last_enter_target&&zet(this.last_enter_target,"mouseleave",t),e&&zet(e,"mouseenter",t),this.last_enter_target=e),zet(e,t.type,t),this.last_target=e}return!1}onmousedown(t){if(this.status===Pet)zet(this.last_target,"dragend",t),this.last_target=null,this.status=Met;else{var e=Det(this.container,t);this.last_target=e,this.status=Tet,this.__dragstart_e=t,zet(e,t.type,t)}return!1}onmouseup(t){if(this.status===Pet)zet(this.last_target,"dragend",t);else{var e=Det(this.container,t);zet(e,t.type,t),this.last_target===e&&zet(e,"click",t)}return this.last_target=null,this.status=Met,!1}onmouseout(t){var e=Det(this.container,t);if(this.status===Pet)zet(this.last_target,"dragend",t);else{if(this.last_target&&this.last_target===e)return;this.last_enter_target&&(zet(this.last_enter_target,"mouseleave",t),delete this.last_enter_target)}return this.last_target=null,this.status=Met,!1}ontouchstart(t){var e=Det(this.container,t);return this.last_target=e,this.status=Iet,this.touchPoints||(this.touchPoints=[]),this.touchPoints.push(t.changedTouches[0]),this.holdTimer=setTimeout((()=>{this.status=Oet,zet(this.last_target,"hold",t),delete this.holdTimer}),500),zet(e,t.type,t),!1}ontouchmove(t){if(!t.touches||!t.changedTouches)return zet(this.last_target,"dragstart",t),zet(this.last_target,"dragmove",t),!1;var e=Det(this.container,t);switch(this.status){case Iet:Array.from(t.changedTouches).forEach((t=>{var e=this.touchPoints.find((e=>e.identifier===t.identifier));if(e){var r=e.clientX-t.clientX,n=e.clientY-t.clientY;return Math.sqrt(Math.pow(r,2)+Math.pow(n,2))>=16?(this.status=Cet,void(this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer))):void 0}}));break;case Cet:if(this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer),2===t.changedTouches.length&&null!=t.scale&&1!==t.scale&&(t.scale<.9||t.scale>1.1))return zet(this.last_target,"pinch",t),!1;zet(this.last_target,"pan",t),e=this.last_target;break;default:this.last_enter_target!==e&&(this.last_enter_target&&zet(this.last_enter_target,"mouseleave",t),e&&zet(e,"mouseenter",t),this.last_enter_target=e),this.last_target=e}return zet(e,"touchmove",t),!1}ontouchend(t){var e=Det(this.container,t);switch(this.status){case Cet:e=this.last_target;break;case Iet:var r=performance.now(),n=r-this.touchedAt;this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer,zet(e,n<500?"doubletap":"tap",t),this.touchedAt=r)}zet(e,"touchend",t);var i=this.touchPoints.findIndex((e=>e.identifier===t.changedTouches[0].identifier));return this.touchPoints.splice(i,1),this.last_target=null,this.status=Oet,!1}onwheel(t){return zet(Det(this.container,t),t.type,t),!1}}function Net(t,e,r){if(e.length<2)return e;for(var n=2;n<e.length;n++){var i=e.substring(0,n);if(!(t.measureText(i).width<r))break}return e.substring(0,n-1)}function Bet(t,e,r,n){var i=String(e).split("\n");return n?[].concat.apply([],i.map((e=>function(t,e,r){var n,i,a=e.split(" "),o=[],s=[];for(n=0,i=1;i<=a.length;i++)if(s=a.slice(n,i),t.measureText(s.join(" ")).width>r){if(i-n==1){let e=Net(t,s[0],r);o.push([e]),a.splice(n,1,e,s[0].substring(e.length))}else{for(;""==a[i-1];)i++;o.push(a.slice(n,--i))}n=i}return i-n>1&&o.push(s),0==o.length&&o.push([""]),o}(t,e,r)))):i.map((t=>t.split(" ")))}var Uet={};var Yet={register:function(t,e){Uet[t]=e},unregister:function(t){delete Uet[t]},get:function(t){return Uet[t]}};function Get(t){if(!t.hasTextProperty||t.textHidden)return;var{text:e="",bold:r=F8.BOLD,italic:n=F8.ITALIC,textWrap:i=F8.TEXT_WRAP,fontFamily:a=F8.FONT_FAMILY,fontColor:o=F8.FONT_COLOR,textAlign:s=F8.TEXT_ALIGN,textBaseline:c=F8.TEXT_BASELINE,fontSize:u=F8.FONT_SIZE,lineHeight:l=1.2*u}=t.model,{left:h,top:f,width:d,height:p}=t.textBounds;u||=F8.FONT_SIZE,l||=1.2*u,t.textHidden=!0;var g=document.createElement("textarea");D8.forEach((function(t){g.addEventListener(t,(function(t){t.stopPropagation()}),!0)}));const v=t.transcoordS2C(h,f),{rotation:y,scale:m}=function(t){for(var e=0,r=1,n=t;n;){e+=n.get("rotation")||0;let{x:t,y:i}=n.get("scale")||{x:1,y:1};r*=Math.max(t,i)||1,n=n.parent}return{rotation:e,scale:r}}(t);switch(g.style.position="absolute",g.style.width=d+"px",g.style.height=p+"px",g.style.padding="0",g.value=e,g.style.fontFamily=a,g.style.fontSize=u+"px",g.style.lineHeight=l+"px",g.style.overflow="hidden",g.style.resize="none",g.style.outline="none",g.style.border=0,g.style.backgroundColor="transparent",g.style.display="inline-block",g.style.color=o,r&&(g.style.fontWeight="bold"),n&&(g.style.fontStyle="italic"),s){case"right":case"end":g.style.textAlign="right";break;case"justify":g.style.textAlign="justify";break;case"left":case"start":g.style.textAlign="left";break;default:g.style.textAlign="center"}var b=[r,n,u+"px",a].filter(Boolean).join(" ");function x(e){var r={left:0,top:0},n=l*function(t,e,r,n){var i,a=t.getContext();return a.save(),a.font=r,i=Bet(a,e,n,t.get("textWrap")).length,a.restore(),i}(t,e,b,d);switch(g.style.height=n+"px",c){case"top":case"hanging":break;case"bottom":case"alphabetic":r.top=p-n;break;default:r.top=p/2-n/2}if(!i){var a=function(t,e,r,n){var i=e.split("\n"),a=n;let o=t.getContext();return o.save(),o.font=r,i.forEach((t=>{let e=o.measureText(t).width;e>a&&(a=e)})),o.restore(),a}(t,e,b,d);switch(g.style.width=a+"px",s){case"right":case"end":r.left=d-a;break;case"left":case"start":break;default:r.left=(d-a)/2}}g.style.marginLeft=r.left+"px",g.style.marginTop=r.top+"px";var o=`translate(${v.x}px, ${v.y}px) scale(${m}) rotate(${y}rad)`;["-webkit-","-moz-","-ms-","-o-",""].forEach((t=>{g.style[t+"transform"]=o,g.style[t+"transform-origin"]=`${-r.left}px ${-r.top}px`}))}x(e);var w=t.root.target_element;w.appendChild(g),g.select();var A,_=!1;g.addEventListener("keydown",(function(t){t.stopPropagation(),"Escape"!=t.code&&(t.shiftKey||"Enter"!=t.code&&"NumpadEnter"!=t.code)?setTimeout((()=>{x(g.value)})):(_=A.skipUpdate="Escape"==t.code,document.createEvent?g.dispatchEvent(A):g.fireEvent(A.eventType,A))})),document.createEvent?(A=document.createEvent("HTMLEvents")).initEvent("blur",!0,!1):(A=document.createEventObject()).eventType="blur";var k=t.root.selected,E=function(r){t.root.selected=k,t.textHidden=!1,g.removeEventListener("blur",E,!1),g.parentElement&&g.parentElement.removeChild(g),w.focus(),r.skipUpdate||_||t.app.commander.execute(new V9({changes:[{component:t,before:{text:e},after:{text:g.value}}]}))};g.addEventListener("blur",E,!1)}Yet.register("text-editor",{"(root)":{"(self)":{keydown:function(t,e){var{origin:r,deliverer:n}=e,i=n.selected;return!(1!==i.length||!i[0].hasTextProperty)&&(("Enter"==t.code||"NumpadEnter"==t.code)&&(Get(i[0]),t.preventDefault(),!0))}}},"model-layer":{"(descendant)":{dblclick:function(t,e){Get(e.origin)}}}});var Wet,Het,qet,Xet=$6((function(t,e,r){if(t.hasSameParentForAllSelected&&!r){var n=[];e[0].parent.isGroup()?t.focused=e[0].parent:(e.forEach((t=>{t.path.forEach((e=>{n.push(t.transcoordS2T(e.x,e.y))}))})),t.focused=t.capturePath(n,e))}else t.focused=null}),300);Yet.register("move-handler",{"model-layer":{"(descendant)":{dragstart:function(t,e){var{origin:r,deliverer:n}=e;if(!r.stuck){var i=n.selected,a=n.selected.filter((t=>!t.stuck));if(i.length!==a.length&&(i=n.selected=a),0!=i.length){var o=i[0].transcoordC2S(t.offsetX,t.offsetY);if(o=i[0].transcoordS2P(o.x,o.y),this.last_pos=o,this.direction=0,n.focused=i[0].parent,t.altKey){var s=[],c=new Map;n.selected=n.selected.filter((t=>!t.isRootModel())).map((t=>{let e=htt(t,(t=>{const e=n.root.getNewRefid();return void 0!==t&&c.set(t,e),e}));return s.push({component:e,to_container:t.parent}),e})).map((t=>(t.replaceRefids(c),t))),s.forEach((({component:t,to_container:e})=>{e.addComponent(t)})),this.duplicates=n.selected.map((t=>({component:t})))}else this.changes=V9.before(i)}}},dragmove:function(t,e){var{origin:r,deliverer:n}=e;if(!r.stuck){var i=n.selected;if(0!=i.length){var{x:a,y:o}=i[0].transcoordC2S(t.offsetX,t.offsetY),s=i[0].transcoordS2P(a,o);t.shiftKey?2==this.direction&&(this.direction=0):this.direction=2;var c=s.x-this.last_pos.x,u=s.y-this.last_pos.y;if(0==this.direction){if(c*c+u*u<25)return;Math.abs(c)>Math.abs(u)?this.direction=3:this.direction=4}3==this.direction?u=0:4==this.direction&&(c=0),i.forEach((t=>{t.move({x:c,y:u},1===i.length)})),this.last_pos=s,Xet(n,i)}}},dragend:function(t,e){var{origin:r,deliverer:n}=e;if(!r.stuck){var i=n.selected;if(0!=i.length){var a=i[0].parent,o=n.focused||e.deliverer;if(this.changes&&!o.isGroup())if(n.hasSameParentForAllSelected&&o&&o!==a){var s=this.changes.map((t=>{let{component:e,before:r}=t;return{component:e,to_container:o}}));n.app.commander.execute(new stt({changes:s}))}else V9.after(this.changes,n.app.commander);else if(this.duplicates){this.duplicates=this.duplicates.map((t=>(t.to_container=o,t)));let t=new stt({changes:this.duplicates});n.app.commander.execute(t)}i.forEach((t=>{t.parent&&t.parent.calculateBounds&&t.parent.calculateBounds()})),this.last_pos=null,this.changes=null,this.duplicates=null,Xet(n,i,!0)}}}}},"(root)":{"(self)":{keydown:function(t,e){var{origin:r,deliverer:n}=e,i={},a=t.shiftKey?r.rootModel.MPP:1;switch(t.which){case 37:i.x=-a,i.y=0;break;case 38:i.x=0,i.y=-a;break;case 39:i.x=a,i.y=0;break;case 40:i.x=0,i.y=a;break;default:return}var o=n.selected;V9.around(n.app.commander,(function(){o.forEach((t=>{!t.stuck&&t.move(i,!1)}))}))}}}});const Vet=t8((()=>{const{x:t,y:e}=qet,r=Het.deref();r&&(r.rootModel.move({x:t-Wet.x,y:e-Wet.y},!1),Wet={x:t,y:e})}),60,{leading:!0,trailing:!0});Yet.register("shift-handler",{"model-layer":{"(all)":{dragstart:function(t,e){Wet={x:t.offsetX,y:t.offsetY}},dragmove:function(t,e){Het=new WeakRef(e.deliverer),qet={x:t.offsetX,y:t.offsetY},Vet()}}}}),Yet.register("zoom-handler",{"model-layer":{"(all)":{wheel:function(t,e){if(0==t.deltaY&&0==t.deltaX)return;var r=e.deliverer,n=t.deltaY<0?1:-1;let i=r.get("scale")||{x:1,y:1},a=r.get("translate"),o=t.offsetX,s=t.offsetY,c=r.transcoordC2S(o,s),u=.1*n,l={x:i.x+u,y:i.y+u};if(n<0&&i.x<.2||n>0&&i.x>10)return;r.set("scale",l);let h=r.transcoordC2S(o,s);r.set("translate",{x:a.x+(h.x-c.x)*l.x,y:a.y+(h.y-c.y)*l.y})}},"(self)":{dblclick:function(t,e){const r=e.origin;r?.root.fit()}}}});var Qet={},Ket={};function Jet(t){const e={};for(const r in t)t.hasOwnProperty(r)&&void 0!==t[r]&&(e[r]=t[r]);return e}Yet.register("paste-handler",{"(root)":{"(self)":{stylepastestart:function(t){const{deliverer:e}=t,r=e.app;var n=e.selected;if(n&&n[0]&&n!==e.rootModel){const t=n[0],{fillStyle:e,strokeStyle:i,alpha:a,lineWidth:o,lineDash:s,lineCap:c,lineJoin:u,fontColor:l,fontSize:h,fontFamily:f,bold:d,italic:p,textAlign:g,textBaseline:v,textOverflow:y,paddingTop:m,paddingBottom:b,paddingLeft:x,paddingRight:w}=t.state;Qet=N6({fillStyle:e,strokeStyle:i,alpha:a,lineWidth:o,lineDash:s,lineCap:c,lineJoin:u,fontColor:l,fontSize:h,fontFamily:f,bold:d,italic:p,textAlign:g,textBaseline:v,textOverflow:y,paddingTop:m,paddingBottom:b,paddingLeft:x,paddingRight:w}),r.mode=4}},stylepastestop:function(t){const{deliverer:e}=t,r=e.app;Qet={},4==r.mode&&(r.mode=1)},databindpastestart:function(t){const{deliverer:e}=t,r=e.app;var n=e.selected;if(n&&n[0]&&n!==e.rootModel){const t=n[0],{mappings:e}=t.state;Ket=N6({mappings:e}),r.mode=5}},databindpastestop:function(t){const{deliverer:e}=t,r=e.app;Ket={},5==r.mode&&(r.mode=1)},keydown:function(t,e){const{deliverer:r}=e;"Esc"!=t.code&&"Escape"!=t.code||(4==r.app.mode?r.trigger("stylepastestop"):5==r.app.mode&&r.trigger("databindpastestop"))}}},"model-layer":{"(all)":{click:function(t,e){const{deliverer:r}=e,n=r.app;if(4!=n.mode&&5!=n.mode)return;const i=e.origin;4==n.mode?i===r?r.root.trigger("stylepastestop"):i&&V9.around(n.commander,(()=>{const t=Jet({...i.model,...Qet});i?.set(t)})):i===r?r.root.trigger("databindpastestop"):i&&V9.around(n.commander,(()=>{const t=Jet({...i.model,...Ket});i?.set(t)}))}}}});var Zet=[],$et=$6((function(){Zet.forEach((t=>{t.resize()}))}),100);"undefined"!=typeof window&&window.addEventListener("resize",$et);class trt extends _9{constructor(t,e){super(Object.assign({type:"root",scale:{x:1,y:1}},t||{}),e),this._maxRefid=0,t=t||{},this.fitMode=t.model&&t.model.fitMode,this._app=e,this.style=t.style,this.target_element=t.target_element,this.rebuildContentModel(this.model.model),Zet.push(this)}dispose(){h9.hideAll(this),this._app&&this._app.dispose(),super.dispose(),this._disposeAllResources(),this.target_element=null,delete this._refresh_mapping_debouncer;var t=Zet.indexOf(this);t>=0&&Zet.splice(t,1),this.refidIndexMap.clear(),this._maxRefid=0}isRoot(){return!0}get app(){return this._app}get target_element(){return this._target_element}set target_element(t){this._ua_event_handler&&(this._ua_event_handler.dispose(),delete this._ua_event_handler),t&&(t.style.position="absolute",t.style.cursor="default",t.style.overflow="hidden",this._ua_event_handler=new Fet(this,t)),this.forEach((e=>e.target=t)),this._target_element=t}get unitScale(){switch(this.model_layer&&this.model_layer.get("unit")){case"mm":case"cm":case"in":return this.app.PPM/10;default:return 1}}addTemplate(t,e){var r=this.templateMap[t];r&&A8("Template replaced (duplicated)",t,e,r),this.templateMap[t]=e,delete this.templatePrefixes}removeTemplate(t,e){var r=this.templateMap[t];r!==e?_8("Removing template failed (different)",t,e,r):delete this.templateMap[t],delete this.templatePrefixes}findTemplateFor(t){this.templatePrefixes||(this.templatePrefixes=Object.keys(this.templateMap).sort().reverse());var e=this.templatePrefixes.find((e=>t.startsWith(e)));if(e)return this.templateMap[e]}addIndex(t,e){var r=this.indexMap[t]||[];this.indexMap[t]=[...r,e]}removeIndex(t,e){const r=this.indexMap[t]||[],n=r.indexOf(e);-1==n?_8("Removing index failed (not found)",t,e):(r.splice(n,1),0==r.length&&delete this.indexMap[t])}addRefidIndex(t,e){void 0===t&&(t=this.getNewRefid(),e.set("refid",t)),this._maxRefid=Math.max(t,this._maxRefid);var r=this.refidIndexMap.get(t);r&&A8("Refid Index replaced (has not to be)",t,e,r),this.refidIndexMap.set(t,e)}removeRefidIndex(t,e){if(null!=t){var r=this.refidIndexMap.get(t);r!==e?A8("Refid Removing index failed (has not to be)",t,e,r):this.refidIndexMap.delete(t)}}getNewRefid(){return this._maxRefid=(this._maxRefid||0)+1,this._maxRefid}async subscribe(t,e){this._app.isViewMode&&t&&this._app&&(e._subscription=await this._app.subscribe(t,e))}async unsubscribe(t,e){e._subscription&&(await e._subscription.unsubscribe(),delete e._subscription)}findById(t){return(this.indexMap[t.replace(/^#/,"")]||[])[0]}findAllById(t){return this.indexMap[t.replace(/^#/,"")]||[]}findByRefid(t){return this.refidIndexMap.get(t)}findOrCreate(t){var e=this.findAllById(t);if(!e&&this.app&&!this.app.isEditMode){let e=this.findTemplateFor(t);if(e){let r=Object.assign(N6(e.hierarchy),{id:t,templatePrefix:""});return component=ltt(r,this.app),this.model_layer.addComponent(component),[component]}}return e}resize(){this.components.forEach((t=>{t.resize&&t.resize()})),this.invalidate()}_disposeAllResources(){this.selected=[],this._focused=null,this._ready=!1,this.eventEngine&&(this.assist_handlers&&this.assist_handlers.forEach((t=>{this.eventEngine.remove(t)})),this.eventEngine.dispose(),delete this.eventEngine),this.assist_layers&&this.assist_layers.forEach((t=>{t.dispose(),this.removeComponent(t)})),delete this.assist_layers,this.model_layer&&this.model_layer.dispose(),this.model_layer&&this.removeComponent(this.model_layer),delete this.model_layer,this.indexMap={},this.refidIndexMap=new Map,this.templateMap={}}rebuildContentModel(t){this._disposeAllResources(),this.eventEngine=new Eet(this),(t=t||{}).type="model-layer",this.model_layer=ltt(t,this.app),this.addComponent(this.model_layer),this.model_layer.target=this.target_element,this.assist_layers=(this.model.layers||[]).map((t=>{var e=ltt(t,this.app);return this.addComponent(e),e.target=this.target_element,e})),this.assist_handlers=(this.model.handlers||[]).map((t=>{var e={};return this.eventEngine.add(e,Yet.get(t)),e})),this._ready=!0,this.traverse((t=>t.ready()))}get root(){return this}get anchors(){}get isReady(){return this._ready}get rootModel(){return this.model_layer}get stuck(){return!0}get data(){return Object.values(this.indexMap).reduce(((t,[e])=>(t[e.model.id]=e.data,t)),{})}set data(t){for(var e in t){var r=this.findOrCreate(e);r&&r.forEach((r=>r.data=t[e]))}}get dataByRefid(){var t={};for(let[e,r]of this.refidIndexMap.entries())t[e]=r.data;return t}set dataByRefid(t){for(var e in t){var r=this.findByRefid(Number(e));r&&(r.data=t[e])}}get values(){return Object.values(this.indexMap).reduce(((t,[e])=>(t[e.model.id]=e.value,t)),{})}set values(t){for(var e in t){var r=this.findOrCreate(e);r&&r.forEach((r=>r.value=t[e]))}}get valuesByRefid(){var t={};for(let[e,r]of this.refidIndexMap.entries())t[e]=r.value;return t}set valuesByRefid(t){for(var e in t){var r=this.findByRefid(Number(e));r&&(r.value=t[e])}}get selected(){return(this._selected||[]).filter((t=>t.parent))}set selected(t){var e=this._selected;if(this._selected=t,!t||t.length<=1)this.hasSameParentForAllSelected=!0;else{let e=t[0].parent;this.hasSameParentForAllSelected=!t.find((t=>t.parent!=e))}this.trigger("selected",t,e)}get focused(){return this._focused}set focused(t){this._focused!==t&&(this._focused=t,this.invalidate())}get style(){return this._style}set style(t){this._style=t,this._compiled_style=t}get hasTextProperty(){return!1}render(){this.components.forEach((t=>t.draw()))}contains(t,e){return!0}capturePath(t,e){return this.model_layer.capturePath(t,e)}invalidate(){this.components.forEach((t=>t.invalidate()))}get eventMap(){return{"(root)":{"(descendant)":{added:this.onadded,removed:this.onremoved,change:this.onchanged}}}}refreshMappings(){if(!this._refresh_mapping_debouncer){if(this.disposed)return;this._refresh_mapping_debouncer=$6((function t(e){e.executeMappings(),e.components&&e.components.forEach((e=>t(e)))}),1e3)}this._refresh_mapping_debouncer(this.model_layer)}_addTraverse(t){t.components&&t.components.forEach((t=>this._addTraverse(t)));var{id:e,refid:r,tag:n,templatePrefix:i}=t.model;this.addRefidIndex(r,t),e&&this.addIndex(e,t),n&&this.subscribe(n,t),i&&this.addTemplate(i,t);var a=u8({},t.eventMap,t.model.eventMap);this.eventEngine.add(t,a)}_removeTraverse(t){t.components&&t.components.forEach((t=>this._removeTraverse(t)));var{id:e,refid:r,tag:n,templatePrefix:i}=t.model;this.removeRefidIndex(r,t),e&&this.removeIndex(e,t),n&&this.unsubscribe(n,t),i&&this.removeTemplate(i,t),this.eventEngine.remove(t)}onadded(t,e){this._addTraverse(e),this.refreshMappings(),this.invalidate()}onremoved(t,e){this._removeTraverse(e),this.invalidate()}onchanged(t,e,r){e.templatePrefix&&this.removeTemplate(e.templatePrefix,r.origin),t.templatePrefix&&this.addTemplate(t.templatePrefix,r.origin),e.id&&this.removeIndex(e.id,r.origin),t.id&&this.addIndex(t.id,r.origin),e.tag&&this.unsubscribe(e.tag,r.origin),t.tag&&this.subscribe(t.tag,r.origin),e.id==t.id&&e.class==t.class||this.refreshMappings()}}Object.assign(trt.prototype,{fit:function(t){var{width:e,height:r,fitMode:n}=this.model_layer.model,i=this.target_element,a=this.model_layer;if(this.fitMode=t||this.fitMode||n||"ratio",e&&r&&i&&i.clientWidth&&i.clientHeight){switch(this.fitMode){case"center":!function(t,e,r){var n=t.unitScale,{width:i,height:a}=e.model;e.set("scale",{x:n,y:n}),e.set("translate",{x:Math.max((r.clientWidth-i*n)/2,0),y:Math.max((r.clientHeight-a*n)/2,0)})}(this,a,i);break;case"both":!function(t,e,r){var{width:n,height:i}=e.model,a=r.clientWidth,o=r.clientHeight;e.set("scale",{x:a/n,y:o/i}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"width":!function(t,e,r){var n=r.clientWidth/e.get("width");e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"height":!function(t,e,r){var n=r.clientHeight/e.get("height");e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"ratio":!function(t,e,r){var{width:n,height:i}=e.model,a=r.clientWidth,o=r.clientHeight,s=a/n,c=o/i,u=Math.min(s,c);e.set("scale",{x:u,y:u}),e.set("translate",{x:(a-n*u)/2,y:(o-i*u)/2})}(0,a,i);break;default:!function(t,e,r){var n=t.unitScale;e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(this,a)}this.resize()}}}),K7.memoize(trt.prototype,"unitScale",!1);var ert=13.3,rrt=function(t){return void 0!==t&&(ert=t),ert};const nrt="$base_url";const irt=Math.PI/12;class art{constructor(t,e){this._mode=t,this.screen=rrt(),this._baseUrl="undefined"!=typeof window?window.location.origin:null,this._refProvider=e,this.isEditMode&&(this._rotateStep=irt,this._rotateStepForced=!1)}dispose(){this._dataSubscriptionProvider&&this._dataSubscriptionProvider.dispose(),delete this._dataStorage}_calcScreen(){var t={width:screen.width,height:screen.height};this._PPI=function(t,e,r,n){t>0||(t=1),e>0||(e=1),n||(n="d");var i=("d"==n?Math.sqrt(t*t+e*e):"w"==n?t:e)/r;return i>0?Math.round(i):0}(t.width,t.height,this.screen),this._PPM=this._PPI/25.4}subscribe(t,e){return this._dataSubscriptionProvider?.subscribe(t,e)}get refProvider(){return this._refProvider}set dataSubscriptionProvider(t){this._dataSubscriptionProvider=t}get dataSubscriptionProvider(){return this._dataSubscriptionProvider}set commander(t){this._commander=t}get commander(){return this._commander}get screen(){return this._screen}set screen(t){this._screen=t,this._calcScreen()}get DPPX(){return L8}get PPI(){return this._PPI}get PPM(){return this._PPM}get mode(){return this._mode}set mode(t){var e=this._mode;e!==t&&(this._mode=t,this.trigger("mode",t,e))}get isViewMode(){return 0==this._mode}get isEditMode(){return 1==this._mode}get baseUrl(){return this._baseUrl}set baseUrl(t){t&&this._baseUrl!=t&&(this._baseUrl=t)}url(t){try{return(t.includes(nrt)?new URL(t.replace(nrt,this.baseUrl),this.baseUrl):new URL(t,location.origin)).href}catch(e){_8(e,t)}}get rotateStep(){return this._rotateStep}set rotateStep(t){this._rotateStep=Number(t)||irt}get rotateStepForced(){return this._rotateStepForced}set rotateStepForced(t){this._rotateStepForced=!!t}get dataStorage(){return this._dataStorage}set dataStorage(t){this._dataStorage=t}}w8(art.prototype,v8.withEvent);class ort{constructor(t,e){!(t=Number(t))||t<=0?(A8("TimeCapsule maxsize should be greater than 0.",t),this.maxsize=10):this.maxsize=t,this.reset(),e&&(this.snapshot(e),this.preserve())}preserve(){this.checkPoint=this.pos}hasUnpreservedChanges(){return this.checkPoint!=this.pos}dispose(){this.reset()}snapshot(t){if(this.q.splice(this.pos+1,this.q.length-(this.pos+1),t),this.q.length>this.maxsize){const t=this.q.splice(0,this.q.length-this.maxsize);this.checkPoint=Math.max(-1,this.checkPoint-t.length)}this.pos=this.q.length-1}forward(){if(this.snapshot_taker&&this.snapshot_taker.take(),this.forwardable)return this.q[++this.pos];_8("Not forwardable.")}backward(){if(this.snapshot_taker&&this.snapshot_taker.take(),this.backwardable)return this.q[--this.pos];_8("Not backwardable.")}get current(){if(-1!==this.pos)return this.q[this.pos];_8("Non state has been recorded.")}get length(){return this.q.length}get forwardable(){return this.pos<this.q.length-1}get backwardable(){return this.pos>0}get snapshot_taker(){return this._snapshot_taker}set snapshot_taker(t){this._snapshot_taker=t}reset(){this.q=[],this.pos=-1,this.checkPoint=-1}}var srt=$6((t=>{t.brake||t.take()}),1e3,{leading:!0,trailing:!1});function crt(t){!t.brake&&t.dirty&&srt(t)}class urt{constructor(t,e){this.brake=!1,this.dirty=!1,this.state_holder=t,this.timecapsule=e,this.timecapsule.snapshot_taker=this}dispose(){delete this.state_holder,delete this.timecapsule}touch(){this.dirty=!0,crt(this)}take(t){(this.dirty||t)&&(this.timecapsule.snapshot(this.state_holder.state),this.dirty=!1)}get brake(){return this._brake}set brake(t){this._brake=!!t,crt(this)}}function lrt(t,e){var r=e.model_layer.get("scale"),n=e.model_layer.get("translate");if(t){let i=JSON.parse(t);i.scale=r,i.translate=n,e.rebuildContentModel(i)}}class hrt{constructor(t){this.container=t,this.timecapsule=new ort(20);var e=this;this.snapshot_taker=new urt({get state(){let t=e.container.model_layer.hierarchy;return JSON.stringify(t)}},this.timecapsule),this.snapshot_taker.take(!0),this.timecapsule.preserve()}dispose(){this.reset(),this.timecapsule&&this.timecapsule.dispose(),this.snapshot_taker&&this.snapshot_taker.dispose(),delete this.container,delete this.timecapsule,delete this.snapshot_taker}preserve(){this.timecapsule.preserve()}hasUnpreservedChanges(){return this.timecapsule.hasUnpreservedChanges()}execute(t,e){!1!==e&&t&&t.execute(),this.snapshot_taker.touch(),this.trigger("execute",t,!0,!1)}undo(){this.timecapsule.backwardable&&(lrt(this.timecapsule.backward(),this.container),this.trigger("undo",this.undoable(),this.redoable()))}redo(){this.timecapsule.forwardable&&(lrt(this.timecapsule.forward(),this.container),this.trigger("redo",this.undoable(),this.redoable()))}undoable(){return this.timecapsule.backwardable}redoable(){return this.timecapsule.forwardable}reset(){this.timecapsule&&this.timecapsule.reset(),this.trigger("command-reset")}}w8(hrt.prototype,v8.withEvent);var frt=new WeakSet;class drt{static get residents(){return frt}constructor(t){this._container=t,this.app=t.app,this._commander=new hrt(this._container),this.app.commander=this._commander,frt.add(this)}add(){return dtt.apply(this._container,arguments)}duplicate(){return ptt.apply(this._container,arguments)}remove(){return gtt.apply(this._container,arguments)}animate(){return U5.apply(this,arguments)}fullscreen(){return btt.apply(this._container,arguments)}get target(){return this._container.target_element}set target(t){var e;if("string"==typeof t){if(!(e=document.getElementById(t)))throw`target element '${t}' is not exist`;if(e.firstChild)throw`target element '${t}' already has children`}else e=t;e&&e.style&&(e.style.cursor="default"),this._container.target_element=e,this._container.invalidate()}get scale(){return this.root.get("scale")}set scale(t){this.root.set("scale",t)}get translate(){return this.root.get("translate")}set translate(t){this.root.set("translate",t)}get unit(){return this.root.get("unit")||"px"}get PPM(){return this.app.PPM}get PPI(){return this.app.PPI}get DPPX(){return this.app.DPPX}static get DPPX(){return L8}get unitScale(){return this._container.unitScale}get screen(){return this.app.screen}set screen(t){this.app.screen=t,this._container.resize()}resize(){this._container.resize()}release(){this.dispose()}dispose(){this._commander&&this._commander.dispose(),this._container&&this._container.dispose()}get selected(){return this._container.selected.slice()}set selected(t){this._container.selected=t}select(t,...e){return this._container.selected=this.root?.findAll(t,...e),this.selected}get commander(){return this._commander}undo(){this.commander.undo()}undoable(){return this.commander.undoable()}redo(){this.commander.redo()}redoable(){return this.commander.redoable()}preserve(){this.commander.preserve()}hasUnpreservedChanges(){return this.commander.hasUnpreservedChanges()}cut(){return Att.apply(this._container,arguments)}copy(){return wtt.apply(this._container,arguments)}paste(){return _tt.apply(this._container,arguments)}undoableChange(){return Ytt.apply(this._container,arguments)}change(){return Utt.apply(this.root,arguments)}get model(){return this.root.hierarchy}set model(t){this._container.rebuildContentModel(t)}get rootContainer(){return this._container}get root(){return this._container?.model_layer}findAll(){return this.root.findAll.apply(this.root,arguments)}findFirst(){return this.root.findFirst.apply(this.root,arguments)}findById(){return this._container.findById.apply(this._container,arguments)}serialize(){return this.root.trim(),this.root.serialize.apply(this.root,arguments)}align(){return rtt.apply(this._container,arguments)}place(){return Jtt.apply(this._container,arguments)}distribute(){return att.apply(this._container,arguments)}move(){return ctt.apply(this._container,arguments)}zorder(){return utt.apply(this._container,arguments)}symmetryX(){return Ntt.apply(this._container,arguments)}symmetryY(){return Btt.apply(this._container,arguments)}on(){return vtt.apply(this._container,arguments)}once(){return ytt.apply(this._container,arguments)}off(){return this._container&&mtt.apply(this._container,arguments)}centerTo(t,e){return this.root.centerTo(t,e)}get mode(){return this.app.mode}set mode(t){void 0!==t&&(this.app.mode=t)}toDataURL(){return jtt.apply(this._container,arguments)}group(){return Ltt.apply(this._container,arguments)}ungroup(){return Dtt.apply(this._container,arguments)}fit(t){this._container.once("redraw",(()=>this._container.fit(t))),this._container.invalidate()}get fitMode(){return this._container.fitMode}get ids(){return Gtt.apply(this._container)}get data(){return this._container.data}set data(t){this._container.data=t}get dataByRefid(){return this._container.dataByRefid}set dataByRefid(t){this._container.dataByRefid=t}get values(){return this._container.values}set values(t){this._container.values=t}get valuesByRefid(){return this._container.valuesByRefid}set valuesByRefid(t){this._container.valuesByRefid=t}get baseUrl(){return this.app.baseUrl}set baseUrl(t){this.app.baseUrl=t}startAddMode(){return Ztt.apply(this._container,arguments)}startStylePasteMode(){return $tt.apply(this._container,arguments)}stopStylePasteMode(){return tet.apply(this._container,arguments)}startDatabindPasteMode(){return eet.apply(this._container,arguments)}stopDatabindPasteMode(){return ret.apply(this._container,arguments)}}const prt=new class{load(t){}save(t,e){}clear(t){}};function grt({target:t,model:e,style:r,layers:n=[],handlers:i=[],mode:a=0,refProvider:o,dataSubscriptionProvider:s,dataStorage:c=prt,baseUrl:u,fitMode:l}){var h=null;if("string"==typeof t){if(!(h=document.getElementById(t)))throw`target element '${t}' is not exist`;if(h.firstChild)throw`target element '${t}' is not empty`}else h=t;h&&h.style&&(h.style.position="absolute",h.style.cursor="default",h.style.overflow="hidden");var f=new art(a,o);return f.baseUrl=u,f.dataSubscriptionProvider=s,f.dataStorage=c,new drt(new trt({target_element:h,model:e,style:r,layers:n,handlers:i,fitMode:l},f))}const vrt=["mousemove","mouseup","mousedown","mouseout","wheel","tap","click","touchstart","touchmove","touchend","mouseenter","mouseleave","dragstart","dragmove","dragend","dblclick"];var yrt=t=>class extends t{isHTMLElement(){return!0}isShadowable(){return!0}get element(){return this._element}set element(t){this._element=t}get tagName(){return this.get("type")}setElementProperties(t){throw new Error("Not Implemented Yet")}createElement(){this.element=document.createElement(this.tagName),this.element&&(this.parent.isHTMLElement()?this.parent.element.appendChild(this.element):this.root.model_layer.overlay.appendChild(this.element),vrt.forEach((t=>{this.element.addEventListener(t,this.userInputEventHandler.bind(this))})),z8.forEach((t=>{this.element.addEventListener(t,this.userInputEventHandler.bind(this))})),this.oncreate_element&&this.oncreate_element(this.element))}userInputEventHandler(t){zet(this,t.type,t),t.stopPropagation()}reposition(){this.element&&O7(this)}disposeElement(){var t=this.element;t&&t.parentElement&&t.parentElement.removeChild(t),delete this.element}ready(){super.ready(),!this.element&&this.createElement(),this.parent.isHTMLElement()?this.parent.element.appendChild(this.element):this.root.model_layer.overlay.appendChild(this.element),this.setElementProperties(this.element),this.reposition()}dispose(){this.disposeElement(this),super.dispose()}get hasTextProperty(){return!0}get textHidden(){return!0}onchange(t,e){this.element&&this.setElementProperties(this.element),this.reposition()}isDescendible(t){return t.isHTMLElement()}};const mrt={x:1,y:1},brt={boxSizing:"border-box",margin:"0px",position:"absolute",outline:"none"},xrt={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"layout",label:"layout",name:"layoutOption"}],help:"scene/component/container"};class wrt extends(yrt(_9)){get tagName(){return"div"}get nature(){return xrt}setElementProperties(t){}get layout(){return a9.get(this.get("layout"))||o9}reposition(){if(this.element){var t=this,{id:e,class:r,scale:n=mrt}=t.state,{rotation:i=0,hidden:a}=t,{left:o,top:s,width:c,height:u}=t.bounds,l=c/2,h=u/2,f=t.element;f.hidden=a,e&&(f.id=e),r&&(f.className=r),Object.assign(f.style,brt,{left:o+"px",top:s+"px",width:"0px",height:"0px",backgroundColor:"transparent"});var d=t.delta(),p=(n&&n.x||1)*d.sx,g=(n&&n.y||1)*d.sy,v=(i||0)+d.theta,y=d.tx||0,m=d.ty||0;["-webkit-","-moz-","-ms-","-o-",""].forEach((t=>{f.style[t+"transform"]=`translate(${y+l}px, ${m+h}px) rotate(${v}rad) translate(${-l}px, ${-h}px) scale(${p}, ${g}) perspective(1px)`}))}}}K7.register("container",wrt);const Art=5,_rt=Math.sqrt(3),krt=2;function Ert(t,e,r,n,i){var a,o,s,c,u=Art+i,l=r.x,h=r.y,f=n.x,d=n.y;if(Math.abs(l-f)>u&&Math.abs(h-d)>u){var p=(d-h)/(f-l),g=h-p*l;if(Math.abs(e-(p*t+g))>u)return!1}return l>f?(o=l,a=f):(o=f,a=l),h>d?(c=h,s=d):(c=d,s=h),!(o+Art<t)&&(!(a-Art>t)&&(!(c+Art<e)&&!(s-Art>e)))}function Srt(t,e,r,n=2){for(let i=0;i<r.length-1;i++)if(Ert(t,e,r[i],r[i+1],n))return!0;return!1}function Mrt(t,e,r,n){if("arrow"!=t.slice(-5))return r;var i=Math.atan2(n.y-r.y,n.x-r.x),a=1.5*e;return{x:r.x+Math.cos(i)*a,y:r.y+Math.sin(i)*a}}function Trt(t,e,r){var{lineWidth:n=krt,strokeStyle:i="#000000",lineCap:a=!1,alpha:o=1,begin:s="none",end:c="none",beginSize:u="size5",endSize:l="size5"}=r;if(("none"!=s||"none"!=c)&&(n=Number(n)||krt,t.lineCap=a,t.lineWidth=n,t.strokeStyle=i,t.fillStyle=i,t.globalAlpha*=o,"none"!=s&&Prt(t,e[0],e[1],n,s,Ort(u,n)),"none"!=c)){let r=e.length;Prt(t,e[r-1],e[r-2],n,c,Ort(l,n))}}function Prt(t,e,r,n,i,a){var{x:o,y:s}=e,c=Math.atan2(r.y-s,r.x-o);switch(t.beginPath(),t.translate(o,s),t.rotate(c),i){case"oval":t.ellipse(0,0,a.X,a.Y,0,0,2*Math.PI),t.fill();break;case"diamond":t.moveTo(-a.X,0),t.lineTo(0,-a.Y),t.lineTo(a.X,0),t.lineTo(0,a.Y),t.fill();break;case"arrow":t.moveTo(0,0),t.lineTo(_rt*a.X,-a.Y),t.lineTo(_rt*a.X,a.Y),t.fill();break;case"sharp-arrow":t.moveTo(0,0),t.lineTo(_rt*a.X,-a.Y),t.lineTo(-a.X/1.5+_rt*a.X,0),t.lineTo(_rt*a.X,a.Y),t.fill();break;case"open-arrow":t.moveTo(_rt*a.X+n,-a.Y),t.lineTo(n,0),t.lineTo(_rt*a.X+n,a.Y),t.stroke()}t.rotate(-c),t.translate(-o,-s),t.closePath()}function Ort(t,e){let r={};switch(e*=1.2,t){case"size1":r.X=e,r.Y=e;break;case"size2":r.X=1.5*e,r.Y=e;break;case"size3":r.X=2*e,r.Y=e;break;case"size4":r.X=e,r.Y=1.5*e;break;case"size5":default:r.X=1.5*e,r.Y=1.5*e;break;case"size6":r.X=2*e,r.Y=1.5*e;break;case"size7":r.X=e,r.Y=2*e;break;case"size8":r.X=1.5*e,r.Y=2*e;break;case"size9":r.X=2*e,r.Y=2*e}return r}const Irt="N",Crt="S",Rrt="E",jrt="W";class Lrt{constructor({component:t,anchor:e,position:r,self:n}){this.component=t,this._anchorName=e,this._position=r,this.self=n}get position(){const t=this.anchor;if(t){var{position:e}=t;const r=this.component.transcoordS2T(e.x,e.y);return this.self.transcoordT2P(r.x,r.y)}return this._position}set position({x:t,y:e}){this._position={x:t,y:e}}get anchor(){return this.component?.findAnchor(this._anchorName)}get direction(){const t=this.component.bounds,e=this.anchor;if(!e)return Rrt;const r=e.position;return r.y<=t.top?Irt:r.y>=t.top+t.height?Crt:r.x<=t.left?jrt:Rrt}get boundaryPosition(){const t=this.anchor;if(t){var{position:e}=t,r=0,n=0;switch(this.direction){case Crt:n=20;break;case Irt:n=-20;break;case jrt:r=-20;break;default:r=20}e={x:e.x+r,y:e.y+n};const i=this.component.transcoordS2T(e.x,e.y);return this.self.transcoordT2P(i.x,i.y)}}}class Drt extends K7{isLine(){return!0}replaceRefids(t){["from","to"].forEach((e=>{const r=this.get(e);if(r?.component){const n=t.get(r.component)||r.component;this.set(e,{...r,component:n})}}))}get fromEnd(){if(this.parent&&!this._fromEnd){const{component:t,anchor:e,position:r}=this.getState("from")||{};if(!t)return;const n=this.root?.findByRefid(t);if(!n)return;this._fromEnd=new Lrt({component:n,fromto:"from",anchor:e,position:r,self:this})}return this._fromEnd}get from(){return this.getState("from")}set from(t){delete this._fromEnd,this.set("from",t)}get toEnd(){if(this.parent&&!this._toEnd){const{component:t,anchor:e,position:r}=this.getState("to")||{};if(!t)return;const n=this.root?.findByRefid(t);if(!n)return;this._toEnd=new Lrt({component:n,fromto:"to",anchor:e,position:r,self:this})}return this._toEnd}get to(){return this.getState("to")}set to(t){delete this._toEnd,this.set("to",t)}move({x:t,y:e},r){r&&(this.from={position:this._fromEnd?.position||this.getState("from")?.position||{x:0,y:0}},this.to={position:this._toEnd?.position||this.getState("to")?.position||{x:0,y:0}}),super.move({x:t,y:e},r)}render(t){var{begin:e="none",end:r="none",lineWidth:n,round:i=0}=this.state,a=this.drawPath;Trt(t,a,this.state),t.beginPath();var o=Mrt(e,n,a[0],a[1]),s=Mrt(r,n,a[a.length-1],a[a.length-2]);a=[o,...a.slice(1,-1),s];var c={x:o.x,y:o.y};t.moveTo(o.x,o.y);for(var u=1;u<a.length;u++){const e=c;c=a[u];const r=a[u+1];if(e.x===c.x&&e.y===c.y)continue;if(!r){t.lineTo(c.x,c.y);break}var l=0!==(d=Math.sqrt((e.x-c.x)*(e.x-c.x)+(e.y-c.y)*(e.y-c.y)))?Math.atan2(e.x-c.x,e.y-c.y):0,h=Math.sin(l)*Math.min(i,d/2)+c.x,f=Math.cos(l)*Math.min(i,d/2)+c.y;const n=i>0||0!==d?{x:h,y:f}:c;var d;l=0!==(d=Math.sqrt((r.x-c.x)*(r.x-c.x)+(r.y-c.y)*(r.y-c.y)))?Math.atan2(r.x-c.x,r.y-c.y):0,h=Math.sin(l)*Math.min(i,d/2)+c.x,f=Math.cos(l)*Math.min(i,d/2)+c.y;const o=i>0||0!==d?{x:h,y:f}:c;t.lineTo(n.x,n.y),i>0&&t.quadraticCurveTo(c.x,c.y,o.x,o.y)}this.drawStroke(t)}contains(t,e){var{lineWidth:r}=this.state;return Srt(t,e,this.drawPath,r)}get resizable(){return!1}get mutable(){return!0}get rotatable(){return!1}get path(){const{from:t,to:e}=this.state;var{x1:r,y1:n,x2:i,y2:a}=this.state;return[this.fromEnd?.position||t?.position||{x:r,y:n},this.toEnd?.position||e?.position||{x:i,y:a}]}set path(t){const[e,r]=t,{from:n,to:i}=this.state;delete this._fromEnd,delete this._toEnd,this.set({from:{...n,position:e},to:{...i,position:r}})}get textBounds(){var t,e,r=this.drawPath,n=0;for(let s=1;s<r.length;s++){var i=r[s-1],a=r[s],o=(i.x-a.x)*(i.x-a.x)+(i.y-a.y)*(i.y-a.y);o>n&&(n=Math.ceil(o),t=i,e=a)}var{paddingTop:s,paddingLeft:c,paddingRight:u,paddingBottom:l}=this.state;return l||=0,s||=0,c||=0,u||=0,{left:Math.min(t.x,e.x)+c,top:Math.min(t.y,e.y)+s,width:Math.max(Math.abs(t.x-e.x)-c-u,0),height:Math.max(Math.abs(t.y-e.y)-s-l,0)}}get decorators(){return["decotag"]}}Drt.getTipNeckPos=Mrt,Drt.containedInPath=Srt,Drt.drawEndTips=Trt,K7.register("line",Drt);const zrt={mutable:!1,resizable:!0,rotatable:!0,properties:[],"value-property":"text"};class Frt extends(O9(J7)){is3dish(){return!0}render(t){var{cx:e,cy:r,rx:n,ry:i,startAngle:a,endAngle:o,anticlockwise:s}=this.state;t.beginPath(),t.ellipse(e,r,Math.abs(n),Math.abs(i),0,a||0,o||2*Math.PI,s)}get path(){var{cx:t,cy:e,rx:r,ry:n}=this.state;return[{x:t-r,y:e-n},{x:t+r,y:e-n},{x:t+r,y:e+n},{x:t-r,y:e+n}]}set path(t){var e=t[0],r=t[2];this.set({cx:e.x+(r.x-e.x)/2,cy:e.y+(r.y-e.y)/2,rx:(r.x-e.x)/2,ry:(r.y-e.y)/2})}contains(t,e){var{cx:r,cy:n,rx:i,ry:a}=this.state,o=(t-r)/(2*i-.5),s=(e-n)/(2*a-.5);return o*o+s*s<.25}outline(t){return function(t,e){var{cx:r,cy:n,rx:i,ry:a}=t.model,o=2*Math.PI*e,s=r+i*Math.cos(o),c=n+a*Math.sin(o);return t.transcoordS2T(s,c)}(this,t)}get anchors(){return function(t){var{left:e,top:r,width:n,height:i}=t.bounds,a=e+n/2,o=r+i/2;return[{name:"TOP",position:{x:a,y:r}},{name:"RIGHT",position:{x:e+n,y:o}},{name:"BOTTOM",position:{x:a,y:r+i}},{name:"LEFT",position:{x:e,y:o}}]}(this)}get nature(){return zrt}}K7.memoize(Frt.prototype,"path",!1),K7.register("ellipse",Frt);var Nrt={ondragstart:function(t,e,r){r.mutatePath(null,(function(r){r.splice(e+1,0,t)}))},ondragmove:function(t,e,r){r.mutatePath(null,(function(r){r[e+1]=t}))},ondragend:function(t,e,r){}};const Brt={mutable:!0,resizable:!1,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/polygon"};class Urt extends J7{is3dish(){return!0}get mutable(){return!0}get pathExtendable(){return!0}get path(){return this.state.path}set path(t){this.set("path",t)}contains(t,e){var r=this.state.path,n=!1;return r.forEach(((i,a)=>{let o=(a+r.length+1)%r.length,s=i.x,c=i.y,u=r[o].x,l=r[o].y;c>e!=l>e&&t<(u-s)*(e-c)/(l-c)+s&&(n=!n)})),n}get controls(){var t=this.path;return t.map(((e,r)=>{let n=t[r+1>=t.length?0:r+1];return{x:(e.x+n.x)/2,y:(e.y+n.y)/2,handler:Nrt}}))}get nature(){return Brt}}K7.memoize(Urt.prototype,"controls",!1),K7.register("polygon",Urt);var Yrt={ondragstart:function(t,e,r){r.mutatePath(null,(function(r){r.splice(e,0,t)}))},ondragmove:function(t,e,r){r.mutatePath(null,(function(r){r[e]=t}))},ondragend:function(t,e,r){}};const Grt={mutable:!1,resizable:!1,rotatable:!1,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/polyline"};class Wrt extends Drt{get pathExtendable(){return!0}get path(){const{from:t,to:e}=this.state,{path:r}=this.state;return[this.fromEnd?.position||t?.position||r[0],...r.slice(1,-1),this.toEnd?.position||e?.position||r[r.length-1]]}set path(t){const{from:e,to:r}=this.state;delete this._fromEnd,delete this._toEnd,this.set({from:{...e,position:t[0]},to:{...r,position:t[t.length-1]},path:t})}get controls(){var t=this.path,e=[];for(let r=0;r<t.length-1;r++){let n=t[r],i=t[r+1];0==r&&e.push({x:n.x,y:n.y,handler:Yrt}),e.push({x:(n.x+i.x)/2,y:(n.y+i.y)/2,handler:Yrt}),r==t.length-2&&e.push({x:i.x,y:i.y,handler:Yrt})}return e}get nature(){return Grt}}K7.register("polyline",Wrt);const Hrt={mutable:!1,resizable:!1,rotatable:!1,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/ortholine"};class qrt extends Drt{get pathExtendable(){return!1}get drawPath(){const t=this.path[0],e=this.path[1],{component:r,direction:n,boundaryPosition:i=t}=this.fromEnd||{},{component:a,direction:o,boundaryPosition:s=e}=this.toEnd||{};var c=[i,s],u=[];i&&u.push(i);var l=r?.bounds;if(l){var h=r.transcoordS2T(l.left,l.top);h=this.transcoordT2P(h.x,h.y),l={...l,left:h.x,top:h.y}}var f=l?{left:l.left-20,top:l.top-20,width:l.width+40,height:l.height+40}:{left:i.x,top:i.y,width:0,height:0};l=l||f;var d=a?.bounds;if(d){h=a.transcoordS2T(d.left,d.top);h=this.transcoordT2P(h.x,h.y),d={...d,left:h.x,top:h.y}}var p=d?{left:d.left-20,top:d.top-20,width:d.width+40,height:d.height+40}:{left:s.x,top:s.y,width:0,height:0};d=d||p;var g=[f,p];const v=f.left>p.left?p.left:f.left,y=f.top>p.top?p.top:f.top;var m,b,x,w,A,_,k,E,S,M,T={left:v,top:y,width:f.left+f.width>p.left+p.width?f.left+f.width-v:p.left+p.width-v,height:f.top+f.height>p.top+p.height?f.top+f.height-y:p.top+p.height-y},P=0,O=0;l.left+l.width<d.left?(w=0,A=1,S=n,M=o,m=(l.left+l.width+d.left)/2,P=d.left-m):d.left+d.width<l.left&&(w=1,A=0,S=o,M=n,m=(l.left+d.width+d.left)/2,P=l.left-m),l.top+l.height<d.top?(x=0,_=1,k=n,E=o,b=(l.top+l.height+d.top)/2,O=d.top-b):d.top+d.height<l.top&&(x=1,_=0,k=o,E=n,b=(l.top+d.height+d.top)/2,O=l.top-b);var I=[];if(m&&P>O){switch(M){case jrt:switch(S){case Rrt:I.push({x:m,y:c[w].y}),I.push({x:m,y:c[A].y});break;case jrt:var C=g[w].top+g[w].height/2>c[A].y?Math.min(g[w].top,c[A].y):Math.max(g[w].top+g[w].height,c[A].y);I.push({x:c[w].x,y:C}),I.push({x:m,y:C}),I.push({x:m,y:c[A].y});break;case Irt:case Crt:C=S===Crt?Math.max(c[w].y,c[A].y):Math.min(c[w].y,c[A].y);I.push({x:c[w].x,y:C}),I.push({x:m,y:C}),I.push({x:m,y:c[A].y});break;default:return this.path}break;case Rrt:switch(S){case Rrt:var R=C=c[w].y<c[A].y?Math.min(g[A].top,c[w].y):Math.max(g[A].top+g[A].height,c[w].y);break;case jrt:R=C=void 0!==b?b:c[w].y<c[A].y?T.top-.5*P:T.top+T.height+.5*P;break;case Crt:R=C=void 0!==b?Math.max(b,c[w].y):T.top+T.height;break;case Irt:R=C=b?Math.min(b,g[w].top):T.top;break;default:return this.path}I.push({x:c[w].x,y:C}),I.push({x:m,y:C}),I.push({x:m,y:R}),I.push({x:c[A].x,y:R});break;case Crt:switch(S){case Rrt:C=c[w].y,R=c[w].y>c[A].y?c[w].y:g[A].top+g[A].height;break;case jrt:R=C=b?Math.max(b,g[A].top+g[A].height):T.top+T.height;break;case Crt:R=C=T.top+T.height;break;case Irt:C=b?Math.min(b,g[w].top):g[w].top,R=b?Math.max(b,g[A].top+g[A].height):g[A].top+g[A].height;break;default:return this.path}I.push({x:c[w].x,y:C}),I.push({x:m,y:C}),I.push({x:m,y:R}),I.push({x:c[A].x,y:R});break;case Irt:switch(S){case Rrt:C=c[w].y,R=c[w].y<c[A].y?c[w].y:g[A].top;break;case jrt:R=C=b?Math.min(b,g[A].top):T.top;break;case Crt:C=void 0!==b?Math.max(b,c[w].y):c[w].y,R=void 0!==b?Math.min(b,c[A].y):c[A].y;break;case Irt:R=C=T.top;break;default:return this.path}I.push({x:c[w].x,y:C}),I.push({x:m,y:C}),I.push({x:m,y:R}),I.push({x:c[A].x,y:R});break;default:return this.path}u.push(...0===w?I:I.reverse())}else if(b){switch(E){case Irt:switch(k){case Crt:I.push({x:c[x].x,y:b}),I.push({x:c[_].x,y:b});break;case Irt:var j=g[x].left+g[x].width/2>c[_].x?Math.min(g[x].left,c[_].x):Math.max(g[x].left+g[x].width,c[_].x);I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:c[_].x,y:b});break;case jrt:j=Math.min(c[x].x,c[_].x);I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:c[_].x,y:b});break;case Rrt:j=Math.max(c[x].x,c[_].x);I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:c[_].x,y:b});break;default:return this.path}break;case Crt:switch(k){case jrt:var L=j=T.left;break;case Rrt:L=j=void 0!==m?Math.max(m,c[x].x):T.left+T.width;break;case Irt:L=j=void 0!==m?m:c[x].x<c[_].x?T.left-.5*O:T.left+T.width+.5*O;break;case Crt:j=c[x].x,L=c[x].x<c[_].x?Math.min(g[_].left,c[x].x):Math.max(g[_].left+g[_].width,c[x].x);break;default:return this.path}I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:L,y:b}),I.push({x:L,y:c[_].y});break;case Rrt:switch(k){case jrt:j=void 0!==m?Math.min(m,c[x].x):c[x].x,L=void 0!==m?Math.max(m,c[_].x):c[_].x;break;case Rrt:L=j=T.left+T.width;break;case Irt:L=j=void 0!==m?Math.max(m,c[_].x):T.left+T.width;break;case Crt:j=c[x].x,L=Math.max(g[_].left+g[_].width,c[x].x);break;default:return this.path}I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:L,y:b}),I.push({x:L,y:c[_].y});break;case jrt:switch(k){case jrt:L=j=T.left;break;case Rrt:j=void 0!==m?Math.max(m,c[x].x):c[x].x,L=void 0!==m?Math.min(m,c[_].x):c[_].x;break;case Irt:L=j=T.left;break;case Crt:j=c[x].x<c[_].x?Math.min(g[_].left,c[x].x):c[x].x,L=Math.min(j,c[_].x);break;default:return this.path}I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:L,y:b}),I.push({x:L,y:c[_].y});break;default:return this.path}u.push(...0===x?I:I.reverse())}else switch(n){case Irt:switch(o){case Irt:var D=T.top;u.push({x:c[0].x,y:D}),u.push({x:c[1].x,y:D});break;case Crt:var z=T.left+T.width;u.push({x:z,y:c[0].y}),u.push({x:z,y:T.top+T.height}),u.push({x:c[1].x,y:T.top+T.height});break;case Rrt:z=c[1].y<c[0].y&&c[1].x<c[0].x?c[0].x:T.left+T.width;u.push({x:z,y:c[0].y}),u.push({x:z,y:c[1].y});break;case jrt:z=T.left;u.push({x:z,y:c[0].y}),u.push({x:z,y:c[1].y});break;default:return this.path}break;case Crt:switch(o){case Irt:z=T.left+T.width;u.push({x:z,y:c[0].y}),u.push({x:z,y:T.top}),u.push({x:c[1].x,y:T.top});break;case Crt:D=T.top+T.height;u.push({x:c[0].x,y:D}),u.push({x:c[1].x,y:D});break;case Rrt:D=T.top+T.height;u.push({x:c[0].x,y:D}),u.push({x:c[1].x,y:D});break;case jrt:D=T.top+T.height;u.push({x:c[0].x,y:D}),u.push({x:c[1].x,y:D});break;default:return this.path}break;case jrt:switch(o){case Irt:z=c[0].x>c[1].x&&c[0].y<c[1].y?c[1].x:T.left,D=c[0].x>c[1].x&&c[0].y<c[1].y?c[1].y:Math.min(T.top,c[0].y);u.push({x:z,y:c[0].y}),u.push({x:z,y:D}),u.push({x:c[1].x,y:D});break;case Crt:z=T.left,D=Math.max(T.top+T.height,c[0].y);u.push({x:z,y:c[0].y}),u.push({x:z,y:D}),u.push({x:c[1].x,y:D});break;case Rrt:z=T.left+T.width;u.push({x:c[0].x,y:T.top}),u.push({x:z,y:T.top}),u.push({x:z,y:c[1].y});break;case jrt:z=T.left;u.push({x:z,y:c[0].y}),u.push({x:z,y:c[1].y});break;default:return this.path}break;case Rrt:switch(o){case Irt:D=c[0].y<c[1].y&&c[0].x<c[1].x?c[0].y:T.top;u.push({x:c[0].x,y:D}),u.push({x:c[1].x,y:D});break;case Crt:D=c[0].y>c[1].y&&c[0].x<c[1].x?c[0].y:T.top+T.height;u.push({x:c[0].x,y:D}),u.push({x:c[1].x,y:D});break;case Rrt:D=T.top+T.height;u.push({x:c[0].x,y:D}),u.push({x:c[1].x,y:D});break;case jrt:D=T.top+T.height;u.push({x:c[0].x,y:D}),u.push({x:c[1].x,y:D});break;default:return this.path}break;default:return this.path}return s&&u.push(s),[t,...u,e].filter(((t,e,r)=>{if(0===e)return!0;const n=r[e-1];return t.x!==n.x||t.y!==n.y})).filter(((t,e,r)=>{if(0===e||e>=r.length-1)return!0;const n=r[e-1],i=r[e+1];return!(t.x===n.x&&t.x===i.x||t.y===n.y&&t.y===i.y)}))}get nature(){return Hrt}}K7.register("ortholine",qrt);const Xrt={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"image-selector",label:"image-src",name:"src",property:{displayField:"id",displayFullUrl:!0,baseUrlAlias:"$base_url",defaultStorage:"scene-image",storageFilters:{type:Array,value:[{name:"category",value:"image"}]},useUpload:!0}},{type:"select",label:"cross-origin",name:"crossOrigin",property:{options:["","anonymous","use-credentials"]}}],"value-property":"src",help:"scene/component/image-view"};class Vrt extends($7(J7)){static get noimage(){return Vrt.NOIMAGE||(Vrt.NOIMAGE=new Image,Vrt.NOIMAGE.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABIBAMAAAD7Se1QAAAAIVBMVEUAAABHcEwBAQEREREBAQEEBAQGBgYLCwsDAwMDAwMICAi6HF9tAAAAC3RSTlNNAEAERiMYCS41Eac10lYAAAEgSURBVHhe7dY9asQwEAXgh7DNertNiJy48pIitY3SB7bYdk0ukL1BDDmA9gZecoH4pmFQ3MQayUMguPBrNPD4wD9TCMvJmt3M/AtYwXOlXiWgqADVCUBD46MAnGhMBaCiUQmAm8VA/Eh/eWl9Fn5WcxD+OLuRrUYJDKLluwH2InACUgkoACSdADxQc50Bytadb9RkM0CT13TcvlCT1HFg8UTHvasuUVACCa3El6u2UdD8LFTlKhUFFgA+d3dj10aABkUN72N3jAADCrJq7PIIsPidcxBoTHIIAjMFmyCwmGYIAA1P9gFgfCANAOsDSccCDW+uLDB+kLGg94OkZoAGkwsDDAe2DOg5oPxAg03rBR88OHpBz4N8UVeHFSwma74BTW6Ge4rIRa4AAAAASUVORK5CYII="),Vrt.NOIMAGE}dispose(){super.dispose(),this._offcanvas=null,this._image=null}render(t){var{left:e,top:r,width:n,height:i,isGray:a=!1,alpha:o=1,src:s}=this.state;if(this.prepareIf(!this._image&&s),t.beginPath(),t.globalAlpha*=o,this._image&&this._image.complete)if(a&&this._offcanvas)t.drawImage(this._offcanvas,e,r,n,i);else try{t.drawImage(this._image,e,r,n,i)}catch(a){t.drawImage(Vrt.noimage,e,r,n,i)}else!this.app.isViewMode&&t.drawImage(Vrt.noimage,e,r,n,i)}get nature(){return Xrt}get hasTextProperty(){return!1}ready(){super.ready(),this.prepareIf(!this._image&&this.state.src)}prepare(t,e){var{src:r,crossOrigin:n}=this.state;if(r){this._image=new Image;try{n&&(this._image.crossOrigin=n),this._image.src=this.app.url(r)||""}catch(t){return void e(t)}this._image.onload=()=>{if(this.get("isGray")){let t=this._image.width,e=this._image.height;this._offcanvas=K7.createCanvas(t,e);let r=this._offcanvas.getContext("2d");r.drawImage(this._image,0,0);let n=function(t,e,r){try{var n=t.getImageData(0,0,e,r)}catch(t){return A8("Get Image Data Error: "+t.message),null}var i=n.data;for(let t=0;t<e*r*4;t+=4){let e=i[t],r=i[t+1],a=i[t+2],o=parseInt((e+r+a)/3);n.data[t]=o,n.data[t+1]=o,n.data[t+2]=o}return n}(r,t,e);r.putImageData(n,0,0)}t(this)},this._image.onerror=t=>{this._image&&!this._image.currentSrc&&(this._image=null),e(t)}}else t(this)}get src(){return this.get("src")}set src(t){this.set("src",t)}onchange(t,e){(t.hasOwnProperty("src")||t.hasOwnProperty("isGray"))&&(this._offcanvas=null,this._image=null,this.prepareIf(t.src))}ondropfile(t,e){for(let r=0;r<t.length;r++)if(t[r].type.startsWith("image/"))return void(this.src=e[r])}}K7.register("image-view",Vrt);class Qrt extends(yrt($7(K7))){}var Krt={},Jrt={},Zrt={};Object.defineProperty(Zrt,"__esModule",{value:!0});var $rt=function(){function t(){}return t.bitsToNum=function(t){return t.reduce((function(t,e){return 2*t+e}),0)},t.byteToBitArr=function(t){for(var e=[],r=7;r>=0;r--)e.push(!!(t&1<<r));return e},t.lzwDecode=function(t,e){for(var r,n,i=0,a=function(t){for(var r=0,n=0;n<t;n++)e.charCodeAt(i>>3)&1<<(7&i)&&(r|=1<<n),i++;return r},o=[],s=1<<t,c=s+1,u=t+1,l=[],h=function(){l=[],u=t+1;for(var e=0;e<s;e++)l[e]=[e];l[s]=[],l[c]=null};;)if(n=r,(r=a(u))!==s){if(r===c)break;if(r<l.length)n!==s&&l.push(l[n].concat(l[r][0]));else{if(r!==l.length)throw new Error("Invalid LZW code.");l.push(l[n].concat(l[n][0]))}o.push.apply(o,l[r]),l.length===1<<u&&u<12&&u++}else h();return o},t}();Zrt.SuperGifUtils=$rt,Object.defineProperty(Jrt,"__esModule",{value:!0});var tnt=Zrt,ent=function(){function t(t,e){this.stream=t,this.handler=e}return t.prototype.parseCT=function(t){for(var e=[],r=0;r<t;r++)e.push(this.stream.readBytes(3));return e},t.prototype.readSubBlocks=function(){var t,e;e="";do{t=this.stream.readByte(),e+=this.stream.read(t)}while(0!==t);return e},t.prototype.parseHeader=function(){var t={};if(t.sig=this.stream.read(3),t.ver=this.stream.read(3),"GIF"!==t.sig)throw new Error("Not a GIF file.");t.width=this.stream.readUnsigned(),t.height=this.stream.readUnsigned();var e=tnt.SuperGifUtils.byteToBitArr(this.stream.readByte());t.gctFlag=e.shift(),t.colorRes=tnt.SuperGifUtils.bitsToNum(e.splice(0,3)),t.sorted=e.shift(),t.gctSize=tnt.SuperGifUtils.bitsToNum(e.splice(0,3)),t.bgColor=this.stream.readByte(),t.pixelAspectRatio=this.stream.readByte(),t.gctFlag&&(t.gct=this.parseCT(1<<t.gctSize+1)),this.handler.hdr&&this.handler.hdr(t)},t.prototype.parseExt=function(t){var e=this;switch(t.label=this.stream.readByte(),t.label){case 249:t.extType="gce",function(t){e.stream.readByte();var r=tnt.SuperGifUtils.byteToBitArr(e.stream.readByte());t.reserved=r.splice(0,3),t.disposalMethod=tnt.SuperGifUtils.bitsToNum(r.splice(0,3)),t.userInput=r.shift(),t.transparencyGiven=r.shift(),t.delayTime=e.stream.readUnsigned(),t.transparencyIndex=e.stream.readByte(),t.terminator=e.stream.readByte(),e.handler.gce&&e.handler.gce(t)}(t);break;case 254:t.extType="com",function(t){t.comment=e.readSubBlocks(),e.handler.com&&e.handler.com(t)}(t);break;case 1:t.extType="pte",function(t){e.stream.readByte(),t.ptHeader=e.stream.readBytes(12),t.ptData=e.readSubBlocks(),e.handler.pte&&e.handler.pte(t)}(t);break;case 255:t.extType="app",function(t){e.stream.readByte(),t.identifier=e.stream.read(8),t.authCode=e.stream.read(3),"NETSCAPE"===t.identifier?function(t){e.stream.readByte(),t.unknown=e.stream.readByte(),t.iterations=e.stream.readUnsigned(),t.terminator=e.stream.readByte(),e.handler.app&&e.handler.app.NETSCAPE&&e.handler.app.NETSCAPE(t)}(t):function(t){t.appData=e.readSubBlocks(),e.handler.app&&e.handler.app[t.identifier]&&e.handler.app[t.identifier](t)}(t)}(t);break;default:t.extType="unknown",function(t){t.data=e.readSubBlocks(),e.handler.unknown&&e.handler.unknown(t)}(t)}},t.prototype.parseImg=function(t){t.leftPos=this.stream.readUnsigned(),t.topPos=this.stream.readUnsigned(),t.width=this.stream.readUnsigned(),t.height=this.stream.readUnsigned();var e=tnt.SuperGifUtils.byteToBitArr(this.stream.readByte());t.lctFlag=e.shift(),t.interlaced=e.shift(),t.sorted=e.shift(),t.reserved=e.splice(0,2),t.lctSize=tnt.SuperGifUtils.bitsToNum(e.splice(0,3)),t.lctFlag&&(t.lct=this.parseCT(1<<t.lctSize+1)),t.lzwMinCodeSize=this.stream.readByte();var r=this.readSubBlocks();t.pixels=tnt.SuperGifUtils.lzwDecode(t.lzwMinCodeSize,r),t.interlaced&&(t.pixels=function(t,e){for(var r=new Array(t.length),n=t.length/e,i=function(n,i){var a=t.slice(i*e,(i+1)*e);r.splice.apply(r,[n*e,e].concat(a))},a=[0,4,2,1],o=[8,8,4,2],s=0,c=0;c<4;c++)for(var u=a[c];u<n;u+=o[c])i(u,s),s++;return r}(t.pixels,t.width)),this.handler.img&&this.handler.img(t)},t.prototype.parseBlock=function(){var t={};switch(t.sentinel=this.stream.readByte(),String.fromCharCode(t.sentinel)){case"!":t.type="ext",this.parseExt(t);break;case",":t.type="img",this.parseImg(t);break;case";":t.type="eof",this.handler.eof&&this.handler.eof(t);break;default:throw new Error("Unknown block: 0x"+t.sentinel.toString(16))}"eof"!==t.type&&setTimeout(this.parseBlock.bind(this),0)},t.prototype.parse=function(){this.parseHeader(),setTimeout(this.parseBlock.bind(this),0)},t}();Jrt.SuperGifParser=ent;var rnt={};Object.defineProperty(rnt,"__esModule",{value:!0});var nnt=function(){function t(t){this.data=t,this.position=0}return t.prototype.readByte=function(){if(this.position>=this.data.length)throw new Error("Attempted to read past end of stream.");return this.data instanceof Uint8Array?this.data[this.position++]:255&this.data.charCodeAt(this.position++)},t.prototype.readBytes=function(t){for(var e=[],r=0;r<t;r++)e.push(this.readByte());return e},t.prototype.read=function(t){for(var e="",r=0;r<t;r++)e+=String.fromCharCode(this.readByte());return e},t.prototype.readUnsigned=function(){var t=this.readBytes(2);return(t[1]<<8)+t[0]},t}();rnt.SuperGifStream=nnt,Object.defineProperty(Krt,"__esModule",{value:!0});var int=Jrt,ant=rnt,ont=function(){function t(t,e){var r=this;for(var n in this.gifImgElement=t,this.options={autoPlay:!0},this.loading=!1,this.ready=!1,this.transparency=null,this.delay=null,this.disposalMethod=null,this.disposalRestoreFromIdx=null,this.lastDisposalMethod=null,this.frame=null,this.lastImg=null,this.playing=!0,this.forward=!0,this.ctxScaled=!1,this.frames=[],this.frameOffsets=[],this.initialized=!1,this.currentFrameIndex=-1,this.iterationCount=0,this.stepping=!1,this.handler={hdr:this.withProgress(this.doHdr.bind(this)),gce:this.withProgress(this.doGCE.bind(this)),com:this.withProgress(this.doNothing.bind(this)),app:{NETSCAPE:this.withProgress(this.doNothing.bind(this))},img:this.withProgress(this.doImg.bind(this)),eof:function(){r.pushFrame(),r.canvas.width=r.hdr.width*r.getCanvasScale(),r.canvas.height=r.hdr.height*r.getCanvasScale(),r.playerInit(),r.loading=!1,r.ready=!0,r.loadCallback&&r.loadCallback(r.gifImgElement)}},e)this.options[n]=e[n];this.onEndListener=e.onEnd,this.loopDelay=e.loopDelay||0,this.overrideLoopMode=null!=e.loopMode?e.loopMode:"auto",this.drawWhileLoading=null==e.drawWhileLoading||e.drawWhileLoading}return t.prototype.init=function(){var t=this.gifImgElement.parentNode,e=document.createElement("div");this.canvas=document.createElement("canvas"),this.canvasContext=this.canvas.getContext("2d"),this.tmpCanvas=document.createElement("canvas"),e.className=this.options.enclosingClass||"super-gif",e.appendChild(this.canvas),t&&(t.insertBefore(e,this.gifImgElement),t.removeChild(this.gifImgElement)),this.initialized=!0},t.prototype.loadSetup=function(t){return!this.loading&&(t&&(this.loadCallback=t),this.loading=!0,this.frames=[],this.clear(),this.disposalRestoreFromIdx=null,this.lastDisposalMethod=null,this.frame=null,this.lastImg=null,!0)},t.prototype.completeLoop=function(){this.onEndListener&&this.onEndListener(this.gifImgElement),this.iterationCount++,!1!==this.overrideLoopMode||this.iterationCount<0?this.doStep():(this.stepping=!1,this.playing=!1)},t.prototype.doStep=function(){if(this.stepping=this.playing,this.stepping){this.stepFrame(1);var t=10*this.frames[this.currentFrameIndex].delay;t||(t=100),0===this.getNextFrameNo()?(t+=this.loopDelay,setTimeout(this.completeLoop.bind(this),t)):setTimeout(this.doStep.bind(this),t)}},t.prototype.step=function(){this.stepping||setTimeout(this.doStep.bind(this),0)},t.prototype.putFrame=function(){var t;this.currentFrameIndex=parseInt(this.currentFrameIndex.toString(),10),this.currentFrameIndex>this.frames.length-1&&(this.currentFrameIndex=0),this.currentFrameIndex<0&&(this.currentFrameIndex=0),t=this.frameOffsets[this.currentFrameIndex],this.tmpCanvas.getContext("2d").putImageData(this.frames[this.currentFrameIndex].data,t.x,t.y),this.canvasContext.globalCompositeOperation="copy",this.canvasContext.drawImage(this.tmpCanvas,0,0)},t.prototype.playerInit=function(){this.loadErrorCause||(this.canvasContext.scale(this.getCanvasScale(),this.getCanvasScale()),this.options.autoPlay?this.step():(this.currentFrameIndex=0,this.putFrame()))},t.prototype.clear=function(){this.transparency=null,this.delay=null,this.lastDisposalMethod=this.disposalMethod,this.disposalMethod=null,this.frame=null},t.prototype.parseStream=function(t){try{new int.SuperGifParser(t,this.handler).parse()}catch(t){this.handleError("parse")}},t.prototype.setSizes=function(t,e){this.canvas.width=t*this.getCanvasScale(),this.canvas.height=e*this.getCanvasScale(),this.tmpCanvas.width=t,this.tmpCanvas.height=e,this.tmpCanvas.style.width=t+"px",this.tmpCanvas.style.height=e+"px",this.tmpCanvas.getContext("2d").setTransform(1,0,0,1,0,0)},t.prototype.drawError=function(){this.canvasContext.fillStyle="black",this.canvasContext.fillRect(0,0,this.hdr.width,this.hdr.height),this.canvasContext.strokeStyle="red",this.canvasContext.lineWidth=3,this.canvasContext.moveTo(0,0),this.canvasContext.lineTo(this.hdr.width,this.hdr.height),this.canvasContext.moveTo(0,this.hdr.height),this.canvasContext.lineTo(this.hdr.width,0),this.canvasContext.stroke()},t.prototype.handleError=function(t){this.loadErrorCause=t,this.hdr={width:this.gifImgElement.width,height:this.gifImgElement.height},this.frames=[],this.drawError()},t.prototype.doHdr=function(t){this.hdr=t,this.setSizes(this.hdr.width,this.hdr.height)},t.prototype.doGCE=function(t){this.pushFrame(),this.clear(),this.transparency=t.transparencyGiven?t.transparencyIndex:null,this.delay=t.delayTime,this.disposalMethod=t.disposalMethod},t.prototype.pushFrame=function(){this.frame&&(this.frames.push({data:this.frame.getImageData(0,0,this.hdr.width,this.hdr.height),delay:this.delay}),this.frameOffsets.push({x:0,y:0}))},t.prototype.doImg=function(t){var e=this;this.frame||(this.frame=this.tmpCanvas.getContext("2d"));var r=this.frames.length,n=t.lctFlag?t.lct:this.hdr.gct;r>0&&(3===this.lastDisposalMethod?null!==this.disposalRestoreFromIdx?this.frame.putImageData(frames[this.disposalRestoreFromIdx].data,0,0):this.frame.clearRect(this.lastImg.leftPos,this.lastImg.topPos,this.lastImg.width,this.lastImg.height):this.disposalRestoreFromIdx=r-1,2===this.lastDisposalMethod&&this.frame.clearRect(this.lastImg.leftPos,this.lastImg.topPos,this.lastImg.width,this.lastImg.height));var i=this.frame.getImageData(t.leftPos,t.topPos,t.width,t.height);t.pixels.forEach((function(t,r){t!==e.transparency&&(i.data[4*r+0]=n[t][0],i.data[4*r+1]=n[t][1],i.data[4*r+2]=n[t][2],i.data[4*r+3]=255)})),this.frame.putImageData(i,t.leftPos,t.topPos),this.ctxScaled||(this.canvasContext.scale(this.getCanvasScale(),this.getCanvasScale()),this.ctxScaled=!0),this.drawWhileLoading&&(this.canvasContext.drawImage(this.tmpCanvas,0,0),this.drawWhileLoading=this.options.autoPlay),this.lastImg=t},t.prototype.doNothing=function(){},t.prototype.withProgress=function(t){return function(e){t(e)}},t.prototype.getNextFrameNo=function(){var t=this.forward?1:-1;return(this.currentFrameIndex+t+this.frames.length)%this.frames.length},t.prototype.stepFrame=function(t){this.currentFrameIndex=this.currentFrameIndex+t,this.putFrame()},t.prototype.getCanvasScale=function(){return this.options.maxWidth&&this.hdr&&this.hdr.width>this.options.maxWidth?this.options.maxWidth/this.hdr.width:window.devicePixelRatio||1},t.prototype.play=function(){this.playing=!0,this.step()},t.prototype.pause=function(){this.playing=!1},t.prototype.isPlaying=function(){return this.playing},t.prototype.getCanvas=function(){return this.canvas},t.prototype.isLoading=function(){return this.loading},t.prototype.isReady=function(){return this.ready},t.prototype.isAutoPlay=function(){return this.options.autoPlay},t.prototype.getLength=function(){return this.frames.length},t.prototype.getCurrentFrame=function(){return this.currentFrameIndex},t.prototype.moveTo=function(t){this.currentFrameIndex=t,this.putFrame()},t.prototype.loadURL=function(t,e){var r=this;if(this.loadSetup(e)){var n=new XMLHttpRequest;n.open("GET",t,!0),"overrideMimeType"in n?n.overrideMimeType("text/plain; charset=x-user-defined"):"responseType"in n?n.responseType="arraybuffer":n.setRequestHeader("Accept-Charset","x-user-defined"),n.onloadstart=function(){r.initialized||r.init()},n.onload=function(){if(200===n.status){var t=n.response;t.toString().indexOf("ArrayBuffer")>0&&(t=new Uint8Array(t));var e=new ant.SuperGifStream(t);setTimeout((function(){r.parseStream(e)}),0)}else r.handleError("xhr - response")},n.onerror=function(){r.handleError("xhr")},n.send()}},t.prototype.load=function(t){this.loadURL(this.gifImgElement.src,t)},t}(),snt=Krt.SuperGif=ont;const cnt={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"image-selector",label:"src",name:"src"},{type:"checkbox",label:"play",name:"play"}],"value-property":"src",help:"scene/component/gif-view"};class unt extends Qrt{async oncreate_element(t){var{src:e,play:r}=this.state;this.onchangesrc(e),this.onchangeplay(r)}buildImg(){var t=this.element;t.innerHTML="";var e=document.createElement("img");return e.style.width="100%",e.style.height="100%",t.appendChild(e),e}onchange(t,e){super.onchange(t,e),"src"in t&&this.onchangesrc(t.src),"play"in t&&this.onchangeplay(t.play)}setElementProperties(t){}onchangeplay(t){var e=this._superGif;e&&e.isReady()&&(t?e.play():e.pause())}onchangesrc(t){var e=this.buildImg();t||(t="data:image/gif;base64,R0lGODlhYABIAPcAAAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKio+Pj5iYmKCgoKampqurq66urrCwsLGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrOzs7S0tLa2tre3t7m5ubu7u7+/v8DAwMHBwcPDw8XFxcfHx8vLy8/Pz9LS0tXV1dfX193d3eTk5Onp6fj4+Pz8/P7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v///////////////////////////////////////////////////////////////////////////////yH5BAkAAPUAIf47R2VuZXJhdGVkIGJ5IGpzZ2lmIChodHRwczovL2dpdGh1Yi5jb20vYW50aW1hdHRlcjE1L2pzZ2lmLykALAAAAABgAEgAAAj+AGcJHEiwoMGDCBMqXMiwocOHECNKnEixosWLGDNq3Mixo8ePIEOKHEmypMmR9VKqXMmypcuXMGPKnJkSIs2bOHPqZGlzp8+fQOv1DEq0KMyhRpMmRaq0KVCmTqPmhCq1qkyqLrFRSyYwGTVsVo1iZXmNa8Fk18ISHasSm1mDycCq/ck2JTWF1ObSfTjz7cFken3WFbow8M7BDA3rHOwXruKpfGXeTZg3qDVrUge7RRg3KLZjx+Q2HVyvLNy0QaMJjBaVdD2tZr2K/mmNIObRkR+n9AsYt0Pddg1WXppb8bWDx1CLLW74GcJnSl3TtDY8Zu2Et4tKl7n52eyWnxXvhl7+26jqrspbnlfIWjtz2gWPZV95neH8veU9NxZYfbfD3kFt99J6Bnmn0mQO9XfYezrVxxlmx0GUXIAM4hSeffsxBN1TFd5E4Ef3QZbfTg6CNJ5gHXJ3TEntLThiTh+KFCJNAqZU4kgAitjQTheepOBMNcZI0oQ6JpbTjSZtiNN2PZ400IxHpdiSc07G911M0iFZZYtAStnWilUeBGVLrlEZpmM0elmPlmfO8iOZXl4DZpsGEYmll2bSWWCXLwJXVY1+urhjoGEBSuiSah6K36CKtpZoo4s9CimielZq6aWYZqrpppx26umnoIZ6UkAAOw=="),e.src=t,e.setAttribute("rel:animated_src",t),e.setAttribute("rel:auto_play",0),this._superGif=new snt(e,{autoPlay:!1}),this._superGif.init();for(const t of this.element.children)t.style.width="100%",t.style.height="100%";var r=this._superGif.getCanvas();r.style.width="100%",r.style.height="100%",this._superGif.load((()=>{setTimeout((()=>{this._superGif.moveTo(0),this.play&&this._superGif.play()}),100)}))}ondropfile(t,e){for(let r=0;r<t.length;r++)if(/\.gif$/.test(t[r].name))return void(this.src=e[r])}get src(){return this.getState("src")}set src(t){this.set("src",t)}get play(){return this.getState("play")}set play(t){this.setState("play",t)}get nature(){return cnt}get tagName(){return"div"}}K7.register("gif-view",unt);const lnt={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"attachment-selector",label:"src",name:"src",property:{category:"audio"}},{type:"checkbox",label:"started",name:"started"},{type:"checkbox",label:"loop",name:"loop"}],"value-property":"src",help:"scene/component/audio"};class hnt extends($7(J7)){static get image(){return hnt.IMAGE||(hnt.IMAGE=new Image,hnt.IMAGE.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZAAAAGQCAMAAAC3Ycb+AAAAP1BMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACzJYIvAAAAFHRSTlMA8BAwgNBgQKB/wCBwUJDg37CvXyUlBK8AABFYSURBVHja7NsBkqIwFIThTiAQgyBq3/+sm6p1tnamZkaTMhJJf1f4S/JeEIiIiIiIiIiIiIiIiEhD7Hg4BH84TpAKjJ4f3NFCtjVd+InXz2RTs+FXlxGylYHfcVfIJmb+YFWSLUyGVJKKBJJKUo+Rd6w63l/qzLuCkryO5fe0l2xk5mMWbe+v0fNBRqf7S3je6CipQ2ACr+dWcYEpzBFS1plpguatsnomMgdIQSOTuQ5SjmE6/UgK8szgdJIUM/FG41YlFmYJ2kkKsY5ZzAwBurHDk3WGeRY0bvYrGa1+rqNI22f7dS32ZnUK1GMr0eSK3mEc9dhKMxp+ZTo8kT2emOXS5LQ1kCxbJBocSd2k5PaIjMVzjWcdJPk9ooBnmzx1t5XbIxqBKpJ4NGTgzwKiGpK4do72gb+ZUMIYtCPm9WCPMsYTE5k2hq2ZvzujlCE1iRmwf3dvmRyKsT0T7b9I7HEPCpqCiqT2IIqaT1pI0noQZdlFC8l/PbYPAnRORT56VBEE6FXkb49agmByKhJ71BME6FsvEntUFQTdqekisUdlQWCXhovEHtUFAWbTapHYo8YgmFybO3vsUWcQYGmxSOxRbRAMprkisUfFQVKmrX18sxt7VB0ENjT1xir2qDxIwkFi3v89e+xRfxAMzfzzIfZ4hyAYDR9zwVuLPd4jCDrTwoLYGb5LEFi3/+E3rweR6urX20c/Fvls2Pvwm9mDSGIPhv8YPyGf3/eo9Ye7O8B2FIShAAooakEttex/rbODad5/yTHIAjqn505IQPv+Xz06dz+4VXORHEZcgAcB8updM8F6e25jBzwIkE07l+x8amMnPDp6nsNJ+BoZ7Q6F8egqAda9VEuRNlZjBzwYkMskdXR73okd8GBAJiKYjBcZKKqG9OiKDbgdfxJ5VhsBPDiQZhaouD3p4hfw4EAmwxisz3MSHwAPEmQ1TB1N+SmXWoAHC7JbZsWl/IxLLcCDBplNo3lrfMLsmwAPGmShAxX5/1vOEzjEz3iyfQ/hI36W4TctsUesOAifPdrQg8M++KYl95iCBkjI1r8634betBAPHZDTPFAmD3zLiHgogVTziMsahz0eIh5aIGHGRSJ2mFtHPR4iHhQIP2UvWGMf8wk74qEIEib7rLjPiBfxiAcCwp8V+Nae3uMdRhAPDIR/J5f/Q2DTcC+hIB7qIGEq3Ti9bx+sryMeAAgS70OK8G2kBD8L8QBAoLWU3g3vUVIc6D0txAMAsY+4jBWowXHO64gHBGKfYJ2T5qY1BxcL98BB+PQ+XiS9xxh9EQ8ChA6C5UXWIUoE9MBB8LVHQoS7ib8/dRn3sAcJ6bQRSdH96RDxIEH4QEX+AHF4LxHEAwUh12xyr1V8lwjiQYDYF8kuf1jluUQQDwrEvkhW8Wc6LhHUgwfhi4QPlHm7LRHawx4kpE191Dq8lgjhAYDQa1cftYrPEiE8OJDb40uqyzdQCA8WhAzL4G/PT4c3WrgHD2IfllGl53V37zsgHg5ApPNvVvq4Fn4spx4oiH1W3CwtEV+PDhEPJyBSkVX4aa7emkM83ICEKWpGM7wdvYCCeDgCEYpcwhLxczhEPFyBCEUWnRL5T6X59SBASBF+9l28TL5F7uEORCZyCUvEx+S7yT0cgoRVb9JaXLR1qUdfgksQ0fTbgmhFB20d8HAKEha14+F8f1sHPNyCiL6EqK+n20/rgIdjkFC0Ho1s6Gndvcc9ICkr/ey8/rHO6vp9KawL8DAFOV6l9Fyub7IbflsCag1qRfVsXWvxHjxIejU+BHZV6uvHD1XiEb++Bw8i+dNd+Wv0eCQmhcPhRPwUUt2DB5G1sfa1aeyzAuyJj9x2HjyIdKzIKw5SI14ieFtvo3kIQERj3lVhkUOnRD7AnjV5369QkAOJZeCH+Jh41xOLs73dQwAifY6dpxCCbjTDzLf1Bm1Y93tAIDOWXcLPvrHyr2hVoEAceEAgDQzB4jetk0/c2OXRHB48EJCpa4dgpYh2ETxtrshz7zx4ICCzfuTSDn8p/EOS9OTjwgMB+cABP3yWYuOPIofs33LigYCULlpZNXJppVU30Vf14kGAUCLijf1D71lN9FW9eFiA9KgZ8FPpPUsSnufGA+8hvAg2Kpz0nrX//qp+PIgpC3i6xJRITOye9fn1VT15ICCrVlQG5rywo0H8x965bVkNwmCYQ2kR6Gmb939WXV65dFnI/tPdjPBfO7XMN4EkTUJtqZp4sCJ1+8jwkhMu0KpMxFXFA8hlVfQSMxGH5mDK1VKV8QCyvTVtUiYyo7V358VStfGoAEFMhGYhEwloxZy9WKo2Hjwg5iSOvFDXeUYd33+PuVfHgwnEBWLocDJp+IIa2fyvperjwQRiXCKGosyXqoA+YfsIELuYu4HAt+msMknfDK4jfQJIzOZ2IPAQWJtFOhQKivR2IDZ6Awis7V0iLxqBI7uEZo19dakTogLSwKvf8yk8Jq6CGK0GKvWlatG7b7kkUU/Lo1gdXWn7/4E0j0qeJDpqN/ABqQcgJgdqURb4chjQktIugDS6wFFiz3JgaJj7AGJmholAe9YKhoZLJ0Ca6smjwJ4VwVN96gVIE5GM71kHaGKxGyAtRDaB2NBhLVmpHyANRKzDO28W7FS3HQFpaIWa8TrfCXQwegJSL5k+8M9UJ+pm9QTEnCIZrR0MDQeQ9ua0iCcYQaBTV0CqNXQW/yiyYG7W1heQanPaCkciBXuH1BkQJzHcDQxmpgGkPatl4WkbCXO/bW9AqlNg4H0PPMi6A1IxkQmOZ8D0ousNSMVEEuyreTAQ6Q7IRJeCX2YZQHhv6SrBOmpkM+YUzN0BqSRQCupmTeCP9wdkhiOREwtEzgGEsWcF9BhK9R8fQDiN7A8DiR0CKXQlj/q9IM8OgXjIzcKBlAHkD6FulgNzJwPIHwpo8mQAkX3LiPq9dKUMAQk9AqmcqmjuBAJCPQIpA4guIAsKJA0gnwNy3A4kDyBIHCEPxAwgf8gPILqA5AFEF5CxZX0lIHYc6rqADLf380BmFMgxgIzUyf8MJKLTRelKHgKy9wgkjfS7LiA0gKgC8vQn3HUA4RQ5LKPIAQciWbqIEg0YkLNDIHYUyqkCsmKN5vg3+W0AYTRATaPY+uu1IwS6UMGAlO6AFPjSCQMStaNh53cdcPG7Hx1Uupo+rx+Bltn1BuTAj5BptEV/bHAAwbnJMICwRmtUDOSEA8s4Rmtw3nITGD6TwUNoG0Ca7xi2YKSPj2eKXQFxQWKA2QbGMWEMMGseOb7C7T47uJS1JyAzVbTjqZdU3zbHzMXWS+qp4Fgn8Ahy/QCRGqQcwU1vGnN7fylboWn8Bzg//hyjxltvdcl45bwFfYKzFyBy11UU9BnjuoqfWizVlQXulpzBTNbaB5Aid+VRrkBFB630AMS9BC8FK2ggE7u/FGy1kvfcB9TKQufX5uUXNWl3EjvWCi4k/u9A3Ddq1CpTIQGe6VN1qd8ArcvDQNw3S41Kn6qQmOq5e7pRr+8fAYLiIJtFrrvYRMYL0q06vj8EZLXUriJzRY8H1xEagOCK7gkghRg6RQYO0I6aWPwIEAru80AiMWSdzAeuDXUKyr+WqpAID8hMHC1Ct8F4mUsQ6W8pJMICki0JHCBczAFdBl38G3VE6ErQhhWlih4LWrCSLpaqjggHiGe9mVjRY0YPoelyqcqIcIDEe97rqJFFH7FcLlUZEQ6Qg5plvZiBFNhtri1VFREGEC/Eg4nZoU5vqi1VFREGkIXDQ8xAIhzoT/WlKiLCAFIYPOQMxOPdjfWlKiLCADJRm3YGj+pDE2xktmmpaogwgMz8d8GrumZ4xzpbvinqISJ+hiTWm7wEqoJdI9JEV9JChAEkS3xCZzKecLcgN6YwlRBhAGmweTsblg6qKMM7Vmh321UQ4QAp1VfwhqVJIh+Wm03W0qV0EOEAybXtivkCmWrKeH2EZ/xBaSBCV2L9Re+LYSqJJIxDu1ew07U0EGEBcTtmHty4JuPtQhvLh1BAhK7Uvvq0GK484QZST0GvvFDqeSJ1IA0r2mfDljvqBoJ//rVsq7yZCA6kXgVkJ2f4ijIGMjOfMVsCBBORB2Jy+sM6ijNvaBUqmw/cStZ8EiKciHwp6Rp++88qmxXQeTUxDiJWJ9wSISvBicgXW+dypn1PqWTznlwgwdZdfiLHr5OELEAEASKvJFRE5JCPKbh8OxHdQKJU0crEzRXrJ/IEkFms6tGyrUw9kQeALFRXvK2iSzsRAAi6BLxM+60xdsqJAEBuXMAMxDLVp+gmAgC57/UT4qvVj3TVRCAgSAYL91aXtyNLzUQAIFhAiP8m0/NHOp+ILiBtPFKrs6bgSOcT0QTEB8nO3QR1yKslggKRf+m11UB0HOl8IlqAeCvauXuo8HnfIqIDyCw6G8XMcGiplMingMzCnbuHFp/3LSLPA4nUpqm5YkWNzwsQeQxIDsKjH5wVSU5qJPIJIIt4jjpqNBAekQeBfJOeHWS81FQoo4/I7UDcS3wUh0liTzLqiEgDqddx4ZHDrNZAACIAEMw88HPYWb0GAhABgEDmgf9Vb5oNBCByOxD3uqWYbCHVBgIQuRlIsbfwMEG5gQBE7gSyHMDsOayrxJvHBRC5B0hOxJH1nK4SlUE6QOR+IG6ju3iYQEqDdIDIzUDyZu/jMRHpS/OiRG4FkiPRfTw8kbrvIAJEACAIDpyHC1/GQHhEbgKSXwTyqIeEur6kixEBgABHOTr7YSX1MSFAhA0E307wUU76Y0KACAsI/tvCRzkF+iIuL0AEAYLbR2QOfvhKJ/obRESBxNt5rPSFXN4f7dyNdqMgEIbhAXWwJErT/e7/Wreb5HTT07QVgWSAeW5g7b4n8qOSUCRPEId4HP93SXp5dDNGRJFcQTxihSH+NW1Bb1cXKpIryJAwnG/zhl8ZcSP6jiKZghwRaaWLnP/AkcSKKJIniEcUs8QfjFLdEmRvkSxB4lfn0QN6DY+lshQpHiT96Dlr6r5hxRUpHST9ZEY71X7DOmOZQVZLsd5Q8wzrPxYYJDiKNqOBG1ZCkZKzrNXu6lHvkjChSFqQsdTPg45ApXtYaUXKr9TNuPcvqO2pVMkitFXAL2a79/qr3HQvVSTXUtofCl79RDXh5CDpw3pwu6+9kRlvtiI5VtPhmHLltT4EKVQkfb8pcOHrXqk6nBAksUjgpKtuYsskaxGKYT0+84uYgziE4YQgMdx0m8PRfis2MbL33PMXoVjD6PEunI4HSjDjStiJP08vQk9hZzQ7oH/geoLYCUBDW4rf4FqCDFt7THUO6B+4jiDn2XNTW7zf4hqCMND4BOsGyw+yAmh0x+QeFh7EeqD5Ce8nLDrI8NpbDyIWHIQNruo4GyAPlhrEzuixBxHLDDJMnfYgYolBricHNfjIdgMWF+Qyu+pkgX4HCwuymL57ELGkIHZG7z2IWE6Q5VV7vGMhQewbtMcZiwhyHj26ne9+xs8PcvDQHnFFqCD7Au0RW4TK+fOKqw4eoOcqYqgU53HR3/5uShFPCfKey9hFDyJO/vAi7RDZnp7X5igyUH72xSDW1E2Pn4tMRCQgR8vLwbgii4gcmLvqQcSPGtIPX3M08wn6I4qYQ94cM/Yw9Xxhmw+X/59wHrtMlX1AmIkzdyaaAnLg1Nnw8WGYSk40X/BOh4+El6LMSBnN2Cd0tPq4w/LJXGrMbCX06PZ2dcM65yzlNertShSHf3SzRAyPM332IcSAHUKPi8EHmXU0l8Uglmni0yipDoi16s+jJKejhywLooz68yiMEcHr2qM4h81CJ++VPJfTu5UwBpv4Pp9DJSi6MJx0bvUwiw4ewgT8zNR0LHUL+OccOpY/3ElzyGKD5pBlMJpDlsOkMythRoNbXh95PJsdA67MrMtAEYbjeDqNo+7oKqWUUkoppZRSSimllFJKFfMXp4vmSjB8n6sAAAAASUVORK5CYII="),hnt.IMAGE}dispose(){super.dispose(),this.started=!1,delete this._audio}ready(){super.ready(),this._audio=new Audio,this._audio.addEventListener("canplay",(()=>{this.started&&this._audio.play()}));var{src:t="",loop:e=!1,started:r=!1}=this.state;this.onchangeSrc(t),this.onchangeLoop(e),this.onchangeStarted(r)}render(t){var{left:e,top:r,width:n,height:i,src:a}=this.state;t.beginPath(),this.drawImage(t,hnt.image,e,r,n,i)}get nature(){return lnt}get hasTextProperty(){return!1}get src(){return this.get("src")}set src(t){this.set("src",t)}get started(){return!!this.get("started")}set started(t){this.set("started",t)}start(){this._audio&&(this._audio.classList.add("active"),this._audio.play())}pause(){this._audio&&(this._audio.classList.remove("active"),this._audio.pause())}onchangeSrc(t){try{"data"!==String(t).substring(0,4)?this._audio.crossOrigin="use-credentials":this._audio.crossOrigin=null,this._audio.src="string"==typeof t?this.app.url(t):t}catch(t){return void console.error(t)}}onchangeStarted(t){const e=this._audio;t?4==e.readyState&&e.play():e.pause()}onchangeLoop(t){this._audio.loop=t}onchange(t,e){"src"in t&&this.onchangeSrc(t.src),"started"in t&&this.onchangeStarted(t.started),"loop"in t&&this.onchangeLoop(t.loop)}ondblclick(t){this.started=!this.started}ondropfile(t,e){for(let r=0;r<t.length;r++)if(t[r].type.startsWith("audio/"))return void(this.src=e[r])}}K7.register("audio",hnt);class fnt extends($7(K7)){is3dish(){return!0}}K7.register("text",fnt);const dnt=["refid","left","top","width","height","rotation","animation"];class pnt extends wrt{isGroup(){return!0}get(t){return this._model[t]}set(t,e){if("string"==typeof t)return this.set({[t]:e});var r=dnt.reduce(((e,r)=>(t.hasOwnProperty(r)&&(e[r]=t[r]),e)),{});return super.set(r)}capture(t,e,r){var n=super.capture(t,e,r);if(n!==this)return n}set bounds(t){if(this.__MUTATING__)super.bounds=t;else{var e=this.bounds,r=t.width/e.width,n=t.height/e.height;this.path=this.path.map((i=>({x:t.left+(i.x-e.left)*r,y:t.top+(i.y-e.top)*n}))),this.components&&this.components.forEach((t=>{if(t.mutable)t.mutatePath(null,(function(t){return t.map((function(t){return{x:t.x*r,y:t.y*n}}))}));else{let e=t.bounds,i=t.center,a={x:i.x*(1-r),y:i.y*(1-n)},o=e.width*(1-r),s=e.height*(1-n),c=-(a.x-o/2),u=-(a.y-s/2);t.bounds={left:e.left+c,top:e.top+u,width:e.width*r,height:e.height*n}}}))}}get focusible(){return!1}get bounds(){return super.bounds}get hasTextProperty(){return!1}isIdentifiable(){return!1}calculateBounds(){this.clearCache(),this.__MUTATING__=!0,this.mutateBounds((function(t){var e=K7.union(this.components.map((t=>t.bounds)));return this.components.forEach((t=>{let r=t.bounds;t.bounds={left:r.left-e.left,top:r.top-e.top,width:r.width,height:r.height}})),{left:t.left+e.left,top:t.top+e.top,width:e.width,height:e.height}}),this),this.__MUTATING__=!1,this.parent.isGroup()&&this.parent.calculateBounds()}render(t){}postrender(t){var{top:e,left:r,scale:n}=this.state;t.translate(r,e),this.layout.drawables(this).forEach((e=>{e.draw(t)})),t.translate(-r,-e)}}K7.register("group",pnt);const gnt={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"id-input",label:"ref",name:"ref"},{type:"select",label:"fit",name:"fit",property:{options:["","both","ratio"]}}],"value-property":"ref",help:"scene/component/local-ref"};class vnt extends($7(J7)){get ref(){var t=this.getState("ref");return t&&"string"==typeof t?this.root.findById(t):null}set ref(t){this.setState("ref",t)}get refScale(){let t=this.ref.bounds,e=this.bounds,r=e.width/t.width,n=e.height/t.height;return"both"===this.model.fit?{x:r,y:n}:{x:Math.min(r,n),y:Math.min(r,n)}}draw(t){this._drawing||(this._drawing=!0,super.draw(t),this._drawing=!1)}prerender(t){if(super.prerender(t),this.ref){let e=this.ref.center,r=this.center,n=this.refScale;t.translate(r.x,r.y),t.scale(n.x,n.y),t.translate(-e.x,-e.y)}}postrender(t){if(this.ref)return this.ref.postrender(t);super.postrender(t)}render(t){if(this.ref)return this.ref.render(t);this.state;var{left:e,top:r,width:n,height:i}=this.bounds;t.beginPath(),t.rect(e,r,n,i)}get nature(){return gnt}get hasTextProperty(){return!1}}K7.memoize(vnt.prototype,"ref",!1),K7.memoize(vnt.prototype,"refScale",!1),K7.register("local-ref",vnt);class ynt extends(yrt(_9)){render(t){}get layout(){return a9.get(this.get("layout"))||o9}}const mnt={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"board-selector",label:"scene-number",name:"ref",placeholder:"SCENE-1"},{type:"number",label:"round",name:"round",property:{min:0}},{type:"select",label:"fit",name:"fit",property:{options:["","both","ratio","width","height","none"]}},{type:"select",label:"mode",name:"mode",property:{options:["view","interaction"]}}],"value-property":"ref",help:"scene/component/global-ref"};class bnt extends ynt{dispose(){this._releaseRef(),super.dispose()}get nature(){return mnt}get hasTextProperty(){return!1}get tagName(){return"div"}setElementProperties(t){var{mode:e="view",round:r=0}=this.state;t.style.pointerEvents="view"==e?"none":"inherit",t.style.borderRadius=r+"px"}ready(){super.ready(),this.fetchRef()}reposition(){if(!this.element)return;super.reposition();let t=this._element_bounds,{offsetWidth:e,offsetHeight:r}=this.element;if(this._element_bounds={offsetWidth:e,offsetHeight:r},(!t||t.offsetWidth!=e||t.offsetHeight!=r)&&this.ref&&this.root.target_element){let{fit:t="ratio"}=this.state;this.ref.fit(t)}}async fetchRef(){this._releaseRef();var{ref:t,fit:e="ratio"}=this.state;if(t){var r=this.app.refProvider;if(r&&t)try{this.__ref=await r.get(t,!0),this.__ref.target=this.element,this.__ref.fit(e),this.__ref.data=this.data}catch(t){A8(t)}}}get ref(){return this.__ref}set ref(t){this.setState("ref",t)}_releaseRef(){this.__ref&&this.__ref.release&&this.__ref.release(),delete this.__ref}onchange(t,e,r){super.onchange(t,e,r),"ref"in t&&this.fetchRef(),"fit"in t&&this.ref&&requestAnimationFrame((()=>{let{fit:t}=this.state;this.ref.fit(t)})),"data"in t&&this.ref&&requestAnimationFrame((()=>{this.ref.data=t.data}))}}K7.register("global-ref",bnt);const xnt={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"board-selector",label:"board",name:"board"},{type:"checkbox",label:"modal",name:"modal"},{type:"checkbox",label:"closable",name:"closable"},{type:"checkbox",label:"show",name:"show"},{type:"select",label:"location",name:"location",property:{options:["center","left-top","right-top","left-bottom","right-bottom","auto"]}},{type:"data",label:"value",name:"value"}],help:"scene/component/popup"};class wnt extends($7(J7)){static get image(){return wnt._image||(wnt._image=new Image,wnt._image.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABGCAMAAABG8BK2AAADJmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNy4xLWMwMDAgNzkuZGFiYWNiYiwgMjAyMS8wNC8xNC0wMDozOTo0NCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIzLjAgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RkM4QzQxNUMzMzBEMTFFQ0JEMzZDMDUwQUI4MEI3QTAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RkM4QzQxNUQzMzBEMTFFQ0JEMzZDMDUwQUI4MEI3QTAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpENjlENTQ3RjMzMDkxMUVDQkQzNkMwNTBBQjgwQjdBMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpENjlENTQ4MDMzMDkxMUVDQkQzNkMwNTBBQjgwQjdBMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsiUYSQAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAA51BMVEVHcEwzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOguTm2AAAATHRSTlMARhB73r9B7YLrsqdE+0cq9Avzeg31eQx4aQ+Ks6aUd5DsYKixEX1w8vyT2VjoZ3YezY/cCEDvl+QTvRwJ0ifwK/5T/aw6+IuFuCImAcS6MQAAAeJJREFUWMPt2FlX2zAQhuHJYmOSFhIggbC0QNn3rS1dKXSH9///Hi58CJLxKIpEWi6YO8c5z4lG/nxGEXmu/1OVLGnhrFaSVQYg1SZetTTvUibqeFZ9QlfmvRWoV1VmCaCRzroXPpsuAjTV7gLUfPahBqD1OQMW/fazAWTKvQRI/ZgUSJR7U8CM/dHZ+/2VcatWdvdEZAaYUhiAwkerJXt0rnzXwdRKmHfDM0fHD5kxjTFyVLzVfvvirn7+cDJWjhy7c7XlYuwc6Urvu2tRhRypyhwAf1sKY+TIxfQA+H39q5wxc+RgVrcBduTmZTlj5khnDgH4IzKpMGaOVCbvyyvRGTNHGtPrKypjXirM5jb910I4k69oQeKY+77EMAcALEsck/+W6f71tyCma/ZFROTrJVwMy7wmf3bv6/MX+Dgkkysblvxps/dhOKZb6IvrTakzXXuPApnpYneDGOeKvJlaSXcDmA7AicQyW84VeTOnY+NdiWcG1uiZksFEHdyAlsJEjEkmkwGNsKHNZCJGSKtVTYC1tO022mnjwUBrMdXg8dreuOBhv7D/62/8lGZ1wLxXyZKOm+iUHIQintyny0TkaATHjYgcjeAoFpEje9R/nGPqIx2aw3NU9odCQI6e6x/VLY32cKQXVBnkAAAAAElFTkSuQmCC"),wnt._image}ready(){super.ready(),this.show&&this.onchangeShow(!0)}render(t){var{left:e,top:r,width:n,height:i}=this.bounds;t.beginPath(),this.drawImage(t,wnt.image,e,r,n,i)}onchange(t,e){"value"in t?this.show?this.onchangeShow(!0):this.show=!0:"show"in t&&this.onchangeShow(this.show)}onchangeShow(t){!this.app.isEditMode&&this.getState("board")&&(t?h9.show(this,this.board,{location:this.getState("location"),modal:this.getState("modal"),closable:this.getState("closable")||!1,data:this.value}):h9.hide(this))}get board(){return this.getState("board")}set board(t){this.set("board",t)}get show(){return this.getState("show")}set show(t){this.setState("show",t)}get started(){return this.getState("show")}set started(t){this.setState("show",t)}get value(){return this.getState("value")}set value(t){this.setState("value",t)}get hasTextProperty(){return!1}get nature(){return xnt}}K7.register("popup",wnt);class Ant extends K7{render(t){var{path:e=[]}=this.state;if(!(e.length<=1)){t.beginPath(),t.moveTo(e[0].x,e[0].y);for(let r=1;r<e.length;r++)t.lineTo(e[r].x,e[r].y);t.closePath(),this.drawStroke(t)}}get path(){return this.model.path}set path(t){this.set("path",t)}contains(t,e){var r=this.state.path,n=!1;return r.forEach(((i,a)=>{let o=(a+r.length+1)%r.length,s=i.x,c=i.y,u=r[o].x,l=r[o].y;c>e!=l>e&&t<(u-s)*(e-c)/(l-c)+s&&(n=!n)})),n}}K7.register("path",Ant);const _nt={mutable:!0,resizable:!1,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/triangle"};class knt extends J7{contains(t,e){var{x1:r,y1:n,x2:i,y2:a,x3:o,y3:s}=this.state,c=[r,n,i,a,o,s],u=!1;for(let r=0;r<c.length;r+=2){let n=(r+2)%c.length,i=c[r],a=c[r+1],o=c[n+1];a>e!=o>e&&t<(c[n]-i)*(e-a)/(o-a)+i&&(u=!u)}return u}get mutable(){return!0}get path(){var{x1:t,y1:e,x2:r,y2:n,x3:i,y3:a}=this.state;return[{x:t,y:e},{x:r,y:n},{x:i,y:a}]}set path(t){this.set({x1:t[0].x,y1:t[0].y,x2:t[1].x,y2:t[1].y,x3:t[2].x,y3:t[2].y})}get nature(){return _nt}}K7.memoize(knt.prototype,"path",!1),K7.register("triangle",knt);const Ent={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"ratio",name:"ratio",property:"ratio"}],help:"scene/component/donut"};var Snt={ondragmove:function(t,e,r){r.controls;var{cx:n,rx:i}=r.model;i=Math.abs(i);var a=(r.transcoordP2S(t.x,t.y).x-n)/i*100;a=a>=100||a<=-100?100:Math.abs(a),r.set({ratio:a})}};class Mnt extends Frt{is3dish(){return!1}render(t){var{ratio:e=50,cx:r,cy:n,rx:i,ry:a,startAngle:o,endAngle:s,anticlockwise:c}=this.state;i=Math.abs(i),a=Math.abs(a),t.beginPath(),t.ellipse(r,n,i,a,0,o||0,s||2*Math.PI,c),t.moveTo(r+i/100*e,n),t.ellipse(r,n,i/100*e,a/100*e,0,o||0,s||2*Math.PI,!0)}contains(t,e){var{cx:r,cy:n,rx:i,ry:a,ratio:o}=this.state,s=(t-r)/(2*(i=Math.abs(i))-.5),c=(e-n)/(2*(a=Math.abs(a))-.5),u=(t-r)/(i/100*o*2-.5),l=(e-n)/(a/100*o*2-.5),h=!1;return s*s+c*c<.25&&u*u+l*l>.25&&(h=!h),h}get controls(){var{cx:t,cy:e,rx:r,ratio:n}=this.state;return[{x:t+(r=Math.abs(r))/100*n,y:e,handler:Snt}]}get nature(){return Ent}}K7.memoize(Mnt.prototype,"controls",!1),K7.register("donut",Mnt);const Tnt={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"ratio",name:"ratio",property:"ratio"},{type:"number",label:"wing",name:"wing",property:"wing"}],help:"scene/component/star"};var Pnt={ondragmove:function(t,e,r){r.controls;var{cy:n,ry:i}=r.model,a=(r.transcoordP2S(t.x,t.y).y-n)/i*100+100;a>=100?a=100:a<=0&&(a=0),r.set({ratio:a})}};class Ont extends Frt{is3dish(){return!1}render(t){var{ratio:e=30,wing:r=5,cx:n,cy:i,rx:a,ry:o,startAngle:s,endAngle:c,anticlockwise:u}=this.state;if(r<3)return;const l=1.5707963267948966;var h=2*Math.PI/r,f=a-e/100*a,d=o-e/100*o;t.save(),t.beginPath(),t.translate(n,i),t.moveTo(a*Math.cos(-l),o*Math.sin(-l)),t.lineTo((a-f)*(Math.cos(h-l)+Math.cos(0-l))/2,(o-d)*(Math.sin(h-l)+Math.sin(0-l))/2);for(var p=1;p<r;p++)t.lineTo(a*Math.cos(h*p-l),o*Math.sin(h*p-l)),t.lineTo((a-f)*(Math.cos(h*(p+1)-l)+Math.cos(h*p-l))/2,(o-d)*(Math.sin(h*(p+1)-l)+Math.sin(h*p-l))/2);t.closePath(),t.restore()}get controls(){var{cx:t,cy:e,ry:r,ratio:n}=this.state;return[{x:t,y:e-r+r*(n/100),handler:Pnt}]}get nature(){return Tnt}}K7.memoize(Ont.prototype,"controls",!1),K7.register("star",Ont);var Int=t=>class extends t{animOnValueChange(t,e=!1,r){if(t!=this._lastValue){if(e)var n=t-(Number(r)||0);else n=t-(this._lastValue||0);this._lastValue=t,this._anim_alpha=-n,this.animate({step:t=>{this._anim_alpha=n*(t-1),this.invalidate()},duration:1e3,delta:"circ",options:{x:1},ease:"out"}).start()}}dispose(){super.dispose(),delete this._value_substitutor}onchange(t,e){t.hasOwnProperty("value")&&delete this._value_substitutor}get animAlpha(){return this._anim_alpha||0}get animValue(){return(this._lastValue||0)+(this._anim_alpha||0)}defaultValueSubstitutor(){return this.getState("value")}get valueSubstitutor(){return this._value_substitutor||(this._value_substitutor=N7(this.getState("value"),this)||this.defaultValueSubstitutor),this._value_substitutor}get value(){return Number(this.valueSubstitutor())||0}set value(t){delete this._value_substitutor,this.setState("value",Number(l8(t)))}},Cnt=t=>class extends t{_convertDataFormat(t,e){var r;if("json"===e)r=JSON.parse(t);else r=t;return r}isDataSource(){return!0}},Rnt=new WeakSet;class jnt{static get residents(){return Rnt}constructor(t,e){this.counters={},this.references={},this.creator=t,this.disposer=e,Rnt.add(this)}dispose(){if(this.disposer)for(let t in this.references)this.disposer.call(null,t,this.references[t]);delete this.references,delete this.counters}get ids(){return Object.keys(this.references)}create(t){var e=this;return new Promise((function(r,n){e.creator?e.creator.call(null,t,(function(e){!function(e){e.release=function(){this.disposer&&this.disposer.call(null,t,e),delete e.release,k8("RELEASED",t)},r(e)}(e)}),(function(t){n(t)})):n(Error("Reference id("+t+") could not be created. Reference creator should be defined."))}))}add(t,e){var r=this,n=new Promise((function(n,i){var a=r.references[t];if(a)a===e?i(Error("Reference ID and target duplicate")):e?i(Error("Reference ID duplicate")):n(a);else{function o(e){e.release=function(){r.release(this)},r.references[t]=e,r.counters[t]=1,n(e)}if(e)o(e);else{if(!r.creator)return void i(Error("Reference id("+t+") is not allowed. Reference creator should be defined."));r.creator.call(null,t,(function(t){o(t)}),(function(t){i(t)}))}}}));return this.references[t]||(this.references[t]=n),n}async get(t,e){var r=this.references[t];if(r){if(!(r instanceof Promise)){if(!(t in this.counters))throw new Error("No Reference Count");return this.counters[t]++,r}if(e)return r=await r,this.counters[t]++,r}if(e)return await this.add(t);throw new Error("No References for "+t)}_id(t){for(let e in this.references){if(this.references[e]===t)return e}return-1}release(t){var e=this._id(t),r=this.references[e];r?(this.counters[e]--,0==this.counters[e]&&(this.disposer&&this.disposer.call(null,e,r),delete this.references[e],delete this.counters[e],delete t.release,k8("RELEASED",e))):A8("No Referenced ID")}}var Lnt={},Dnt={},znt=[];function Fnt(t){var e="SCRIPT"==t.target.tagName?Lnt:Dnt,r=t.target.src||t.target.href;e[r]=!0,znt.forEach(((t,n)=>{let{resolve:i,scripts:a,styles:o}=t;if(e==Lnt){let t=a.indexOf(r);t>-1&&t<a.length-1&&Bnt(a[t+1])}for(let t=0;t<a.length;t++)if(!Lnt[a[t]])return;if(o)for(let t=0;t<o.length;t++)if(!Dnt[o[t]])return;i(),znt[n]=null})),znt=znt.filter(Boolean)}function Nnt(t){var e=t.target.src,r="SCRIPT"==t.target.tagName?Lnt:Dnt;znt.forEach(((n,i)=>{let{reject:a,scripts:o,styles:s}=n,c=!1;if(r===Lnt){for(let t=0;t<o.length;t++)if(o[t]==e){c=!0;break}}else if(s)for(let t=0;t<s.length;t++)if(s[t]==e){c=!0;break}c&&(a(t),znt[i]=null)})),znt=znt.filter(Boolean),delete r[e],document.head.removeChild(t.target)}function Bnt(t){Lnt[t]=!1;var e=document.createElement("script");e.onload=Fnt,e.onerror=Nnt,e.type="text/javascript",e.src=t,document.head.appendChild(e)}class Unt{static load(t,e){return"string"==typeof t&&(t=[t]),"string"==typeof e&&(e=[e]),new Promise((function(r,n){if((!t||t instanceof Array)&&(!e||e instanceof Array)){var i,a=!0;if(e&&e.forEach((t=>{Dnt.hasOwnProperty(t)||function(t){Dnt[t]=!1;var e=document.createElement("link");e.onload=Fnt,e.onerror=Nnt,e.type="text/css",e.rel="stylesheet",e.media="screen,print",e.href=t,document.head.appendChild(e)}(t),Dnt[t]||(a=!1)})),t&&t.length>0&&t.forEach((t=>{Lnt.hasOwnProperty(t)?Lnt[t]||(a=!1):i=i||t})),i)Bnt(i);else if(a)return void r();znt.push({resolve:r,reject:n,scripts:t,styles:e})}else n("invalid sources for load")}))}}const Ynt="0.0.0";var Gnt=0,Wnt=performance.now(),Hnt=0;function qnt(){return Gnt}requestAnimationFrame((function t(){requestAnimationFrame(t),Hnt++;var e=performance.now(),r=e-Wnt;r<1e3||(Gnt=Math.round(1e3*Hnt/r),Wnt=e,Hnt=0)}));var Xnt=ftt;function Vnt(){}export{f9 as AbsoluteLayout,hnt as AudioPlayer,p9 as CardLayout,K7 as Component,O9 as Connectable,wrt as Container,_9 as ContainerAbstract,F8 as DEFAULT,L8 as DPPX,Cnt as DataSource,Mnt as Donut,Frt as Ellipse,Yet as EventMap,qnt as FPS,D8 as GESTURES,unt as GifView,bnt as GlobalRef,pnt as Group,o9 as HTMLAbsoluteLayout,ynt as HTMLOverlayContainer,Qrt as HTMLOverlayElement,Vrt as ImageView,n9 as InfoWindow,z8 as KEYEVENTS,k9 as Layer,a9 as Layout,Drt as Line,v9 as LinearHorizontalLayout,m9 as LinearVerticalLayout,vnt as LocalRef,j8 as MAX_UNDO_SIZE,O8 as MODE_ADD,T8 as MODE_EDIT,C8 as MODE_PASTE_DATABIND,I8 as MODE_PASTE_STYLE,P8 as MODE_SHIFT,M8 as MODE_VIEW,Xnt as Model,w9 as MoveHandle,S8 as NOTHING,qrt as OrthoLine,Ant as Path,Urt as Polygon,Wrt as Polyline,wnt as Popup,R9 as Rect,$7 as RectPath,jnt as ReferenceMap,trt as RootContainer,L9 as Ruler,R8 as SCENE_MODE,drt as Scene,h9 as ScenePopup,Unt as ScriptLoader,J7 as Shape,Ont as Star,b9 as TableLayout,fnt as Text,knt as Triangle,Int as ValueHolder,grt as create,k8 as debug,A8 as error,Vnt as license,r2 as polyfill,Ynt as version,_8 as warn};console.log("@hatiolab/things-scene@3.4.44 is loaded");