hasting-swatchcart-module 0.0.41 → 1.0.1

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 (444) hide show
  1. package/README.md +233 -73
  2. package/dist/assets/index.css +1 -0
  3. package/dist/cdn/lib/components/SwatchesModule.d.ts +10 -0
  4. package/dist/cdn/lib/main.d.ts +4 -0
  5. package/dist/cdn/lib/store/LibraryProvider.d.ts +4 -0
  6. package/dist/cdn/lib/store/rootReducer.d.ts +11 -0
  7. package/dist/cdn/lib/store/store.d.ts +25 -0
  8. package/dist/cdn/lib/store/withStore.d.ts +2 -0
  9. package/dist/cdn/lib/vite-env.d.ts +1 -0
  10. package/dist/cdn/main.css +1 -0
  11. package/dist/cdn/main.js +48652 -0
  12. package/dist/cdn/src/app/App.d.ts +2 -0
  13. package/dist/cdn/src/app/assets/svg/ArrowIconSVG.d.ts +3 -0
  14. package/dist/cdn/src/app/assets/svg/CheckMarkIconSVG.d.ts +3 -0
  15. package/dist/cdn/src/app/assets/svg/CloseIconSVG.d.ts +3 -0
  16. package/dist/cdn/src/app/assets/svg/DarkWhiteIconSVG.d.ts +1 -0
  17. package/dist/cdn/src/app/assets/svg/MinusIconSVG.d.ts +3 -0
  18. package/dist/cdn/src/app/assets/svg/PlusIconSVG.d.ts +3 -0
  19. package/dist/cdn/src/app/assets/svg/SearchIconSVG.d.ts +3 -0
  20. package/dist/cdn/src/app/assets/svg/TrashIconSVG.d.ts +3 -0
  21. package/dist/cdn/src/app/assets/svg/WhiteWhiteIconSVG.d.ts +1 -0
  22. package/dist/cdn/src/app/main.d.ts +1 -0
  23. package/dist/cdn/src/app/providers/StoreProvider.d.ts +6 -0
  24. package/dist/cdn/src/app/store/rootReducer.d.ts +11 -0
  25. package/dist/cdn/src/app/store/store.d.ts +24 -0
  26. package/dist/cdn/src/features/Cart/lib/CartCervices.d.ts +5 -0
  27. package/dist/cdn/src/features/Cart/model/cartSlice.d.ts +13 -0
  28. package/dist/cdn/src/features/Cart/model/selectors.d.ts +223 -0
  29. package/dist/cdn/src/features/Cart/model/types.d.ts +7 -0
  30. package/dist/cdn/src/features/Cart/ui/CartHeader/CartHeader.d.ts +7 -0
  31. package/dist/cdn/src/features/Cart/ui/CartList/CartList.d.ts +1 -0
  32. package/dist/cdn/src/features/Cart/ui/CartListItem/CartListItem.d.ts +10 -0
  33. package/dist/cdn/src/features/Cart/ui/CartPrice/CartPrice.d.ts +5 -0
  34. package/dist/cdn/src/features/Cart/ui/CartWrapper/CartWrapper.d.ts +9 -0
  35. package/dist/cdn/src/features/Cart/ui/Counter/Counter.d.ts +9 -0
  36. package/dist/cdn/src/features/DataAdapter/lib/DataAdapterServices.d.ts +12 -0
  37. package/dist/cdn/src/features/DataAdapter/utils/types.d.ts +11 -0
  38. package/dist/cdn/src/features/MultiProduct/lib/MultiProductCartServices.d.ts +13 -0
  39. package/dist/cdn/src/features/MultiProduct/model/API/api.d.ts +3 -0
  40. package/dist/cdn/src/features/MultiProduct/model/API/routes.d.ts +4 -0
  41. package/dist/cdn/src/features/MultiProduct/model/multiProductCartSlice.d.ts +13 -0
  42. package/dist/cdn/src/features/MultiProduct/model/selectors.d.ts +35 -0
  43. package/dist/cdn/src/features/MultiProduct/model/types.d.ts +30 -0
  44. package/dist/cdn/src/features/MultiProduct/ui/CartSelectedProductList/CartSelectedProductList.d.ts +1 -0
  45. package/dist/cdn/src/features/MultiProduct/ui/CustomModal/CustomModal.d.ts +8 -0
  46. package/dist/cdn/src/features/MultiProduct/ui/FiltersSelectedProductItem/FiltersSelectedProductItem.d.ts +1 -0
  47. package/dist/cdn/src/features/MultiProduct/ui/MultiProductCartHeader/MultiProductCartHeader.d.ts +5 -0
  48. package/dist/cdn/src/features/MultiProduct/ui/MultiProductItemCart/MultiProductItemCart.d.ts +6 -0
  49. package/dist/cdn/src/features/MultiProduct/ui/MultiProductWrapper/MultiProductWrapper.d.ts +6 -0
  50. package/dist/cdn/src/features/MultiProduct/ui/ProductList/ProductList.d.ts +5 -0
  51. package/dist/cdn/src/features/MultiProduct/ui/ProductListItem/ProductListItem.d.ts +6 -0
  52. package/dist/cdn/src/features/MultiProduct/ui/SelectedProductItem/SelectedProductItem.d.ts +5 -0
  53. package/dist/cdn/src/features/MultiProduct/ui/SwatchContentContainer/SwatchContentContainer.d.ts +1 -0
  54. package/dist/cdn/src/features/MultiProduct/utils/constants.d.ts +8 -0
  55. package/dist/cdn/src/features/MultiProduct/utils/randomList.d.ts +2 -0
  56. package/dist/cdn/src/features/SwatchModule/SwatchModule/ui/SwatchModule.d.ts +11 -0
  57. package/dist/cdn/src/features/swatches/lib/AttributeHelper.d.ts +7 -0
  58. package/dist/cdn/src/features/swatches/lib/SwatchesServices.d.ts +11 -0
  59. package/dist/cdn/src/features/swatches/model/selectors.d.ts +12 -0
  60. package/dist/cdn/src/features/swatches/model/swatchesSlice.d.ts +26 -0
  61. package/dist/cdn/src/features/swatches/model/thunks.d.ts +12 -0
  62. package/dist/cdn/src/features/swatches/model/types.d.ts +137 -0
  63. package/dist/cdn/src/features/swatches/ui/Filters/ColorsFilter.d.ts +1 -0
  64. package/dist/cdn/src/features/swatches/ui/Filters/LooksFilter.d.ts +1 -0
  65. package/dist/cdn/src/features/swatches/ui/Filters/MaterialsFilter.d.ts +1 -0
  66. package/dist/cdn/src/features/swatches/ui/Filters/index.d.ts +5 -0
  67. package/dist/cdn/src/features/swatches/ui/HexGridZoom/HexGridZoom.d.ts +3 -0
  68. package/dist/cdn/src/features/swatches/ui/ImageGridZoom/ImageGridZoom.d.ts +3 -0
  69. package/dist/cdn/src/features/swatches/ui/MaterialList/index.d.ts +7 -0
  70. package/dist/cdn/src/features/swatches/ui/MaterialListItem/MaterialListItem.d.ts +4 -0
  71. package/dist/cdn/src/features/swatches/ui/ProductElement/index.d.ts +6 -0
  72. package/dist/cdn/src/features/swatches/ui/SwatchWrapper/SwatchWrapper.d.ts +8 -0
  73. package/dist/cdn/src/features/swatches/ui/Swatches.d.ts +11 -0
  74. package/dist/cdn/src/features/swatches/ui/SwatchesList/SwatchesList.d.ts +5 -0
  75. package/dist/cdn/src/features/swatches/utils/constants.d.ts +3 -0
  76. package/dist/cdn/src/features/swatches/utils/types.d.ts +22 -0
  77. package/dist/cdn/src/shared/constants/props.d.ts +1058 -0
  78. package/dist/cdn/src/shared/constants/select.d.ts +4 -0
  79. package/dist/cdn/src/shared/constants/selectedMaterials.d.ts +1 -0
  80. package/dist/cdn/src/shared/types/activeTab.d.ts +5 -0
  81. package/dist/cdn/src/shared/types/svg.d.ts +3 -0
  82. package/dist/cdn/src/shared/ui/Checkbox/Checkbox.d.ts +4 -0
  83. package/dist/cdn/src/shared/ui/CustomButton/CustomButton.d.ts +6 -0
  84. package/dist/cdn/src/shared/ui/CustomSidebar/CustomSidebar.d.ts +8 -0
  85. package/dist/cdn/src/shared/ui/Dialog/Dialog.d.ts +19 -0
  86. package/dist/cdn/src/shared/ui/Label/Label.d.ts +7 -0
  87. package/dist/cdn/src/shared/ui/Markdown/MDWithAccordion.d.ts +10 -0
  88. package/dist/cdn/src/shared/ui/MaterialItem/MaterialItem.d.ts +8 -0
  89. package/dist/cdn/src/shared/ui/MultiSelect/MultiSelect.d.ts +20 -0
  90. package/dist/cdn/src/shared/ui/PopoverTooltip/InfoIcon.d.ts +1 -0
  91. package/dist/cdn/src/shared/ui/PopoverTooltip/PopoverTooltip.d.ts +11 -0
  92. package/dist/cdn/src/shared/ui/Slider/Slider.d.ts +11 -0
  93. package/dist/cdn/src/shared/ui/popover.d.ts +9 -0
  94. package/dist/cdn/src/shared/utils/cn.d.ts +2 -0
  95. package/dist/cdn/src/shared/utils/uniqueList.d.ts +1 -0
  96. package/dist/cdn/vite.svg +1 -0
  97. package/dist/components/SwatchesModule.d.ts +1 -2
  98. package/dist/main.cjs +407 -0
  99. package/dist/main.cjs.map +1 -0
  100. package/dist/main.d.ts +4 -1
  101. package/dist/main.js +63812 -2
  102. package/dist/main.js.map +1 -0
  103. package/dist/store/LibraryProvider.d.ts +4 -0
  104. package/dist/store/rootReducer.d.ts +11 -0
  105. package/dist/store/store.d.ts +25 -0
  106. package/dist/store/withStore.d.ts +2 -0
  107. package/package.json +24 -14
  108. package/dist/_virtual/_commonjsHelpers.js +0 -6
  109. package/dist/_virtual/index.js +0 -7
  110. package/dist/_virtual/index2.js +0 -7
  111. package/dist/_virtual/index3.js +0 -4
  112. package/dist/_virtual/use-sync-external-store-with-selector.development.js +0 -4
  113. package/dist/_virtual/use-sync-external-store-with-selector.production.js +0 -4
  114. package/dist/_virtual/utilities.js +0 -4
  115. package/dist/_virtual/with-selector.js +0 -5
  116. package/dist/_virtual/with-selector2.js +0 -4
  117. package/dist/assets/src/shared/ui/CustomSidebar/CustomSidebar.module.css +0 -1
  118. package/dist/assets/src/shared/ui/Markdown/MDWithAccordion.module.css +0 -1
  119. package/dist/assets/src/shared/ui/PopoverTooltip/PopoverTooltip.module.css +0 -0
  120. package/dist/components/SwatchesModule.js +0 -32
  121. package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +0 -527
  122. package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +0 -402
  123. package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +0 -208
  124. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +0 -136
  125. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +0 -130
  126. package/dist/node_modules/@radix-ui/primitive/dist/index.js +0 -9
  127. package/dist/node_modules/@radix-ui/react-arrow/dist/index.js +0 -24
  128. package/dist/node_modules/@radix-ui/react-checkbox/dist/index.js +0 -251
  129. package/dist/node_modules/@radix-ui/react-compose-refs/dist/index.js +0 -29
  130. package/dist/node_modules/@radix-ui/react-context/dist/index.js +0 -68
  131. package/dist/node_modules/@radix-ui/react-dialog/dist/index.js +0 -256
  132. package/dist/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +0 -127
  133. package/dist/node_modules/@radix-ui/react-focus-guards/dist/index.js +0 -17
  134. package/dist/node_modules/@radix-ui/react-focus-scope/dist/index.js +0 -136
  135. package/dist/node_modules/@radix-ui/react-id/dist/index.js +0 -13
  136. package/dist/node_modules/@radix-ui/react-popover/dist/index.js +0 -231
  137. package/dist/node_modules/@radix-ui/react-popper/dist/index.js +0 -219
  138. package/dist/node_modules/@radix-ui/react-portal/dist/index.js +0 -15
  139. package/dist/node_modules/@radix-ui/react-presence/dist/index.js +0 -70
  140. package/dist/node_modules/@radix-ui/react-primitive/dist/index.js +0 -36
  141. package/dist/node_modules/@radix-ui/react-slot/dist/index.js +0 -49
  142. package/dist/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +0 -10
  143. package/dist/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +0 -52
  144. package/dist/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js +0 -14
  145. package/dist/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +0 -6
  146. package/dist/node_modules/@radix-ui/react-use-previous/dist/index.js +0 -8
  147. package/dist/node_modules/@radix-ui/react-use-size/dist/index.js +0 -27
  148. package/dist/node_modules/@reduxjs/toolkit/dist/redux-toolkit.modern.js +0 -877
  149. package/dist/node_modules/@tanstack/react-virtual/dist/esm/index.js +0 -35
  150. package/dist/node_modules/@tanstack/virtual-core/dist/esm/index.js +0 -497
  151. package/dist/node_modules/@tanstack/virtual-core/dist/esm/utils.js +0 -52
  152. package/dist/node_modules/@ungap/structured-clone/esm/deserialize.js +0 -62
  153. package/dist/node_modules/@ungap/structured-clone/esm/index.js +0 -11
  154. package/dist/node_modules/@ungap/structured-clone/esm/serialize.js +0 -106
  155. package/dist/node_modules/@ungap/structured-clone/esm/types.js +0 -13
  156. package/dist/node_modules/aria-hidden/dist/es2015/index.js +0 -52
  157. package/dist/node_modules/bail/index.js +0 -7
  158. package/dist/node_modules/clsx/dist/clsx.js +0 -17
  159. package/dist/node_modules/comma-separated-tokens/index.js +0 -20
  160. package/dist/node_modules/decode-named-character-reference/index.dom.js +0 -14
  161. package/dist/node_modules/devlop/lib/default.js +0 -8
  162. package/dist/node_modules/estree-util-is-identifier-name/lib/index.js +0 -7
  163. package/dist/node_modules/extend/index.js +0 -43
  164. package/dist/node_modules/get-nonce/dist/es2015/index.js +0 -7
  165. package/dist/node_modules/hast-util-from-parse5/lib/index.js +0 -145
  166. package/dist/node_modules/hast-util-parse-selector/lib/index.js +0 -20
  167. package/dist/node_modules/hast-util-raw/lib/index.js +0 -217
  168. package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +0 -302
  169. package/dist/node_modules/hast-util-to-parse5/lib/index.js +0 -118
  170. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/index.js +0 -12
  171. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/aria.js +0 -61
  172. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/find.js +0 -33
  173. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/html.js +0 -368
  174. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/normalize.js +0 -6
  175. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/svg.js +0 -566
  176. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/case-insensitive-transform.js +0 -7
  177. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/case-sensitive-transform.js +0 -6
  178. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/create.js +0 -22
  179. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/defined-info.js +0 -27
  180. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/info.js +0 -23
  181. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/merge.js +0 -11
  182. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/schema.js +0 -17
  183. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/types.js +0 -14
  184. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/xlink.js +0 -19
  185. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/xml.js +0 -11
  186. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/xmlns.js +0 -11
  187. package/dist/node_modules/hast-util-whitespace/lib/index.js +0 -10
  188. package/dist/node_modules/hastscript/lib/create-h.js +0 -112
  189. package/dist/node_modules/hastscript/lib/index.js +0 -8
  190. package/dist/node_modules/hastscript/lib/svg-case-sensitive-tag-names.js +0 -44
  191. package/dist/node_modules/html-url-attributes/lib/index.js +0 -26
  192. package/dist/node_modules/html-void-elements/index.js +0 -25
  193. package/dist/node_modules/immer/dist/immer.js +0 -467
  194. package/dist/node_modules/inline-style-parser/index.js +0 -93
  195. package/dist/node_modules/is-plain-obj/index.js +0 -9
  196. package/dist/node_modules/lucide-react/dist/esm/Icon.js +0 -40
  197. package/dist/node_modules/lucide-react/dist/esm/createLucideIcon.js +0 -27
  198. package/dist/node_modules/lucide-react/dist/esm/defaultAttributes.js +0 -20
  199. package/dist/node_modules/lucide-react/dist/esm/icons/check.js +0 -12
  200. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-down.js +0 -12
  201. package/dist/node_modules/lucide-react/dist/esm/icons/x.js +0 -15
  202. package/dist/node_modules/lucide-react/dist/esm/shared/src/utils.js +0 -19
  203. package/dist/node_modules/mdast-util-from-markdown/lib/index.js +0 -581
  204. package/dist/node_modules/mdast-util-to-hast/lib/footer.js +0 -90
  205. package/dist/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +0 -12
  206. package/dist/node_modules/mdast-util-to-hast/lib/handlers/break.js +0 -8
  207. package/dist/node_modules/mdast-util-to-hast/lib/handlers/code.js +0 -15
  208. package/dist/node_modules/mdast-util-to-hast/lib/handlers/delete.js +0 -12
  209. package/dist/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +0 -12
  210. package/dist/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +0 -28
  211. package/dist/node_modules/mdast-util-to-hast/lib/handlers/heading.js +0 -12
  212. package/dist/node_modules/mdast-util-to-hast/lib/handlers/html.js +0 -9
  213. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +0 -14
  214. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image.js +0 -10
  215. package/dist/node_modules/mdast-util-to-hast/lib/handlers/index.js +0 -58
  216. package/dist/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +0 -14
  217. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +0 -19
  218. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link.js +0 -15
  219. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +0 -42
  220. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list.js +0 -21
  221. package/dist/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +0 -12
  222. package/dist/node_modules/mdast-util-to-hast/lib/handlers/root.js +0 -7
  223. package/dist/node_modules/mdast-util-to-hast/lib/handlers/strong.js +0 -12
  224. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +0 -13
  225. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +0 -21
  226. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table.js +0 -32
  227. package/dist/node_modules/mdast-util-to-hast/lib/handlers/text.js +0 -8
  228. package/dist/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +0 -12
  229. package/dist/node_modules/mdast-util-to-hast/lib/index.js +0 -10
  230. package/dist/node_modules/mdast-util-to-hast/lib/revert.js +0 -13
  231. package/dist/node_modules/mdast-util-to-hast/lib/state.js +0 -104
  232. package/dist/node_modules/mdast-util-to-string/lib/index.js +0 -29
  233. package/dist/node_modules/micromark/lib/constructs.js +0 -85
  234. package/dist/node_modules/micromark/lib/create-tokenizer.js +0 -223
  235. package/dist/node_modules/micromark/lib/initialize/content.js +0 -37
  236. package/dist/node_modules/micromark/lib/initialize/document.js +0 -126
  237. package/dist/node_modules/micromark/lib/initialize/flow.js +0 -33
  238. package/dist/node_modules/micromark/lib/initialize/text.js +0 -95
  239. package/dist/node_modules/micromark/lib/parse.js +0 -32
  240. package/dist/node_modules/micromark/lib/postprocess.js +0 -9
  241. package/dist/node_modules/micromark/lib/preprocess.js +0 -39
  242. package/dist/node_modules/micromark-core-commonmark/lib/attention.js +0 -83
  243. package/dist/node_modules/micromark-core-commonmark/lib/autolink.js +0 -43
  244. package/dist/node_modules/micromark-core-commonmark/lib/blank-line.js +0 -18
  245. package/dist/node_modules/micromark-core-commonmark/lib/block-quote.js +0 -42
  246. package/dist/node_modules/micromark-core-commonmark/lib/character-escape.js +0 -17
  247. package/dist/node_modules/micromark-core-commonmark/lib/character-reference.js +0 -30
  248. package/dist/node_modules/micromark-core-commonmark/lib/code-fenced.js +0 -94
  249. package/dist/node_modules/micromark-core-commonmark/lib/code-indented.js +0 -43
  250. package/dist/node_modules/micromark-core-commonmark/lib/code-text.js +0 -45
  251. package/dist/node_modules/micromark-core-commonmark/lib/content.js +0 -50
  252. package/dist/node_modules/micromark-core-commonmark/lib/definition.js +0 -80
  253. package/dist/node_modules/micromark-core-commonmark/lib/hard-break-escape.js +0 -17
  254. package/dist/node_modules/micromark-core-commonmark/lib/heading-atx.js +0 -46
  255. package/dist/node_modules/micromark-core-commonmark/lib/html-flow.js +0 -144
  256. package/dist/node_modules/micromark-core-commonmark/lib/html-text.js +0 -102
  257. package/dist/node_modules/micromark-core-commonmark/lib/label-end.js +0 -152
  258. package/dist/node_modules/micromark-core-commonmark/lib/label-start-image.js +0 -22
  259. package/dist/node_modules/micromark-core-commonmark/lib/label-start-link.js +0 -19
  260. package/dist/node_modules/micromark-core-commonmark/lib/line-ending.js +0 -14
  261. package/dist/node_modules/micromark-core-commonmark/lib/list.js +0 -90
  262. package/dist/node_modules/micromark-core-commonmark/lib/setext-underline.js +0 -57
  263. package/dist/node_modules/micromark-core-commonmark/lib/thematic-break.js +0 -25
  264. package/dist/node_modules/micromark-factory-destination/index.js +0 -31
  265. package/dist/node_modules/micromark-factory-label/index.js +0 -28
  266. package/dist/node_modules/micromark-factory-space/index.js +0 -15
  267. package/dist/node_modules/micromark-factory-title/index.js +0 -26
  268. package/dist/node_modules/micromark-factory-whitespace/index.js +0 -12
  269. package/dist/node_modules/micromark-util-character/index.js +0 -39
  270. package/dist/node_modules/micromark-util-chunked/index.js +0 -16
  271. package/dist/node_modules/micromark-util-classify-character/index.js +0 -10
  272. package/dist/node_modules/micromark-util-combine-extensions/index.js +0 -36
  273. package/dist/node_modules/micromark-util-decode-numeric-character-reference/index.js +0 -16
  274. package/dist/node_modules/micromark-util-decode-string/index.js +0 -18
  275. package/dist/node_modules/micromark-util-html-tag-name/index.js +0 -68
  276. package/dist/node_modules/micromark-util-normalize-identifier/index.js +0 -6
  277. package/dist/node_modules/micromark-util-resolve-all/index.js +0 -12
  278. package/dist/node_modules/micromark-util-sanitize-uri/index.js +0 -23
  279. package/dist/node_modules/micromark-util-subtokenize/index.js +0 -55
  280. package/dist/node_modules/micromark-util-subtokenize/lib/splice-buffer.js +0 -175
  281. package/dist/node_modules/parse5/dist/common/doctype.js +0 -98
  282. package/dist/node_modules/parse5/dist/common/error-codes.js +0 -7
  283. package/dist/node_modules/parse5/dist/common/foreign-content.js +0 -210
  284. package/dist/node_modules/parse5/dist/common/html.js +0 -250
  285. package/dist/node_modules/parse5/dist/common/token.js +0 -14
  286. package/dist/node_modules/parse5/dist/common/unicode.js +0 -73
  287. package/dist/node_modules/parse5/dist/parser/formatting-element-list.js +0 -84
  288. package/dist/node_modules/parse5/dist/parser/index.js +0 -2271
  289. package/dist/node_modules/parse5/dist/parser/open-element-stack.js +0 -240
  290. package/dist/node_modules/parse5/dist/serializer/index.js +0 -2
  291. package/dist/node_modules/parse5/dist/tokenizer/index.js +0 -1940
  292. package/dist/node_modules/parse5/dist/tokenizer/preprocessor.js +0 -88
  293. package/dist/node_modules/parse5/dist/tree-adapters/default.js +0 -162
  294. package/dist/node_modules/parse5/node_modules/entities/dist/esm/decode-codepoint.js +0 -38
  295. package/dist/node_modules/parse5/node_modules/entities/dist/esm/decode.js +0 -245
  296. package/dist/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-html.js +0 -7
  297. package/dist/node_modules/property-information/index.js +0 -12
  298. package/dist/node_modules/property-information/lib/aria.js +0 -61
  299. package/dist/node_modules/property-information/lib/find.js +0 -33
  300. package/dist/node_modules/property-information/lib/hast-to-react.js +0 -22
  301. package/dist/node_modules/property-information/lib/html.js +0 -368
  302. package/dist/node_modules/property-information/lib/normalize.js +0 -6
  303. package/dist/node_modules/property-information/lib/svg.js +0 -566
  304. package/dist/node_modules/property-information/lib/util/case-insensitive-transform.js +0 -7
  305. package/dist/node_modules/property-information/lib/util/case-sensitive-transform.js +0 -6
  306. package/dist/node_modules/property-information/lib/util/create.js +0 -19
  307. package/dist/node_modules/property-information/lib/util/defined-info.js +0 -36
  308. package/dist/node_modules/property-information/lib/util/info.js +0 -28
  309. package/dist/node_modules/property-information/lib/util/merge.js +0 -10
  310. package/dist/node_modules/property-information/lib/util/schema.js +0 -21
  311. package/dist/node_modules/property-information/lib/util/types.js +0 -14
  312. package/dist/node_modules/property-information/lib/xlink.js +0 -19
  313. package/dist/node_modules/property-information/lib/xml.js +0 -11
  314. package/dist/node_modules/property-information/lib/xmlns.js +0 -11
  315. package/dist/node_modules/react-markdown/lib/index.js +0 -102
  316. package/dist/node_modules/react-redux/dist/react-redux.js +0 -246
  317. package/dist/node_modules/react-remove-scroll/dist/es2015/Combination.js +0 -11
  318. package/dist/node_modules/react-remove-scroll/dist/es2015/SideEffect.js +0 -112
  319. package/dist/node_modules/react-remove-scroll/dist/es2015/UI.js +0 -31
  320. package/dist/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js +0 -16
  321. package/dist/node_modules/react-remove-scroll/dist/es2015/handleScroll.js +0 -68
  322. package/dist/node_modules/react-remove-scroll/dist/es2015/medium.js +0 -5
  323. package/dist/node_modules/react-remove-scroll/dist/es2015/sidecar.js +0 -7
  324. package/dist/node_modules/react-remove-scroll-bar/dist/es2015/component.js +0 -71
  325. package/dist/node_modules/react-remove-scroll-bar/dist/es2015/constants.js +0 -7
  326. package/dist/node_modules/react-remove-scroll-bar/dist/es2015/utils.js +0 -25
  327. package/dist/node_modules/react-style-singleton/dist/es2015/component.js +0 -11
  328. package/dist/node_modules/react-style-singleton/dist/es2015/hook.js +0 -15
  329. package/dist/node_modules/react-style-singleton/dist/es2015/singleton.js +0 -30
  330. package/dist/node_modules/redux/dist/redux.js +0 -258
  331. package/dist/node_modules/redux-thunk/dist/redux-thunk.js +0 -8
  332. package/dist/node_modules/rehype-raw/lib/index.js +0 -12
  333. package/dist/node_modules/remark-parse/lib/index.js +0 -19
  334. package/dist/node_modules/remark-rehype/lib/index.js +0 -18
  335. package/dist/node_modules/reselect/dist/reselect.js +0 -244
  336. package/dist/node_modules/space-separated-tokens/index.js +0 -11
  337. package/dist/node_modules/style-to-js/cjs/index.js +0 -20
  338. package/dist/node_modules/style-to-js/cjs/utilities.js +0 -19
  339. package/dist/node_modules/style-to-object/cjs/index.js +0 -28
  340. package/dist/node_modules/tailwind-merge/dist/bundle-mjs.js +0 -2731
  341. package/dist/node_modules/trim-lines/index.js +0 -28
  342. package/dist/node_modules/trough/lib/index.js +0 -60
  343. package/dist/node_modules/tslib/tslib.es6.js +0 -27
  344. package/dist/node_modules/unified/lib/callable-instance.js +0 -25
  345. package/dist/node_modules/unified/lib/index.js +0 -529
  346. package/dist/node_modules/unist-util-is/lib/index.js +0 -84
  347. package/dist/node_modules/unist-util-position/lib/index.js +0 -23
  348. package/dist/node_modules/unist-util-stringify-position/lib/index.js +0 -15
  349. package/dist/node_modules/unist-util-visit/lib/index.js +0 -16
  350. package/dist/node_modules/unist-util-visit-parents/lib/color.js +0 -6
  351. package/dist/node_modules/unist-util-visit-parents/lib/index.js +0 -56
  352. package/dist/node_modules/use-callback-ref/dist/es2015/assignRef.js +0 -6
  353. package/dist/node_modules/use-callback-ref/dist/es2015/useMergeRef.js +0 -26
  354. package/dist/node_modules/use-callback-ref/dist/es2015/useRef.js +0 -25
  355. package/dist/node_modules/use-sidecar/dist/es2015/exports.js +0 -18
  356. package/dist/node_modules/use-sidecar/dist/es2015/medium.js +0 -67
  357. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-with-selector.development.js +0 -66
  358. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-with-selector.production.js +0 -65
  359. package/dist/node_modules/use-sync-external-store/with-selector.js +0 -10
  360. package/dist/node_modules/vfile/lib/index.js +0 -406
  361. package/dist/node_modules/vfile/lib/minpath.browser.js +0 -112
  362. package/dist/node_modules/vfile/lib/minproc.browser.js +0 -7
  363. package/dist/node_modules/vfile/lib/minurl.browser.js +0 -41
  364. package/dist/node_modules/vfile/lib/minurl.shared.js +0 -7
  365. package/dist/node_modules/vfile-location/lib/index.js +0 -42
  366. package/dist/node_modules/vfile-message/lib/index.js +0 -91
  367. package/dist/node_modules/web-namespaces/index.js +0 -11
  368. package/dist/node_modules/zwitch/index.js +0 -18
  369. package/dist/src/app/assets/images/product_thumb.png.js +0 -4
  370. package/dist/src/app/assets/svg/ArrowIconSVG.js +0 -25
  371. package/dist/src/app/assets/svg/CheckMarkIconSVG.js +0 -25
  372. package/dist/src/app/assets/svg/CloseIconSVG.js +0 -25
  373. package/dist/src/app/assets/svg/MinusIconSVG.js +0 -24
  374. package/dist/src/app/assets/svg/PlusIconSVG.js +0 -24
  375. package/dist/src/app/assets/svg/SearchIconSVG.js +0 -37
  376. package/dist/src/app/assets/svg/TrashIconSVG.js +0 -24
  377. package/dist/src/app/providers/StoreProvider.js +0 -7
  378. package/dist/src/app/store/rootReducer.js +0 -12
  379. package/dist/src/app/store/store.js +0 -14
  380. package/dist/src/features/Cart/lib/CartCervices.js +0 -8
  381. package/dist/src/features/Cart/model/cartSlice.js +0 -58
  382. package/dist/src/features/Cart/model/selectors.js +0 -18
  383. package/dist/src/features/Cart/ui/CartHeader/CartHeader.js +0 -53
  384. package/dist/src/features/Cart/ui/CartList/CartList.js +0 -29
  385. package/dist/src/features/Cart/ui/CartListItem/CartListItem.js +0 -41
  386. package/dist/src/features/Cart/ui/CartPrice/CartPrice.js +0 -23
  387. package/dist/src/features/Cart/ui/CartWrapper/CartWrapper.js +0 -38
  388. package/dist/src/features/Cart/ui/Counter/Counter.js +0 -46
  389. package/dist/src/features/DataAdapter/lib/DataAdapterServices.js +0 -102
  390. package/dist/src/features/DataAdapter/utils/types.js +0 -8
  391. package/dist/src/features/MultiProduct/lib/MultiProductCartServices.js +0 -34
  392. package/dist/src/features/MultiProduct/model/API/api.js +0 -18
  393. package/dist/src/features/MultiProduct/model/multiProductCartSlice.js +0 -83
  394. package/dist/src/features/MultiProduct/model/selectors.js +0 -7
  395. package/dist/src/features/MultiProduct/ui/CartSelectedProductList/CartSelectedProductList.js +0 -21
  396. package/dist/src/features/MultiProduct/ui/CustomModal/CustomModal.js +0 -28
  397. package/dist/src/features/MultiProduct/ui/FiltersSelectedProductItem/FiltersSelectedProductItem.js +0 -27
  398. package/dist/src/features/MultiProduct/ui/MultiProductCartHeader/MultiProductCartHeader.js +0 -60
  399. package/dist/src/features/MultiProduct/ui/MultiProductItemCart/MultiProductItemCart.js +0 -71
  400. package/dist/src/features/MultiProduct/ui/MultiProductWrapper/MultiProductWrapper.js +0 -19
  401. package/dist/src/features/MultiProduct/ui/ProductList/ProductList.js +0 -138
  402. package/dist/src/features/MultiProduct/ui/ProductListItem/ProductListItem.js +0 -51
  403. package/dist/src/features/MultiProduct/ui/SelectedProductItem/SelectedProductItem.js +0 -55
  404. package/dist/src/features/MultiProduct/ui/SwatchContentContainer/SwatchContentContainer.js +0 -46
  405. package/dist/src/features/MultiProduct/utils/constants.js +0 -16
  406. package/dist/src/features/MultiProduct/utils/randomList.js +0 -41
  407. package/dist/src/features/swatches/lib/AttributeHelper.js +0 -21
  408. package/dist/src/features/swatches/lib/SwatchesServices.js +0 -54
  409. package/dist/src/features/swatches/model/selectors.js +0 -12
  410. package/dist/src/features/swatches/model/swatchesSlice.js +0 -108
  411. package/dist/src/features/swatches/model/thunks.js +0 -22
  412. package/dist/src/features/swatches/model/types.js +0 -6
  413. package/dist/src/features/swatches/ui/Filters/ColorsFilter.js +0 -45
  414. package/dist/src/features/swatches/ui/Filters/LooksFilter.js +0 -45
  415. package/dist/src/features/swatches/ui/Filters/MaterialsFilter.js +0 -47
  416. package/dist/src/features/swatches/ui/Filters/index.js +0 -12
  417. package/dist/src/features/swatches/ui/HexGridZoom/HexGridZoom.js +0 -50
  418. package/dist/src/features/swatches/ui/ImageGridZoom/ImageGridZoom.js +0 -45
  419. package/dist/src/features/swatches/ui/MaterialList/index.js +0 -39
  420. package/dist/src/features/swatches/ui/MaterialListItem/MaterialListItem.js +0 -51
  421. package/dist/src/features/swatches/ui/ProductElement/index.js +0 -65
  422. package/dist/src/features/swatches/ui/SwatchWrapper/SwatchWrapper.js +0 -62
  423. package/dist/src/features/swatches/ui/Swatches.js +0 -51
  424. package/dist/src/features/swatches/ui/SwatchesList/SwatchesList.js +0 -67
  425. package/dist/src/features/swatches/utils/constants.js +0 -8
  426. package/dist/src/shared/constants/props.js +0 -13337
  427. package/dist/src/shared/constants/selectedMaterials.js +0 -4
  428. package/dist/src/shared/types/activeTab.js +0 -7
  429. package/dist/src/shared/ui/Checkbox/Checkbox.js +0 -31
  430. package/dist/src/shared/ui/CustomButton/CustomButton.js +0 -16
  431. package/dist/src/shared/ui/CustomSidebar/CustomSidebar.js +0 -59
  432. package/dist/src/shared/ui/CustomSidebar/CustomSidebar.module.scss.js +0 -13
  433. package/dist/src/shared/ui/Dialog/Dialog.js +0 -81
  434. package/dist/src/shared/ui/Label/Label.js +0 -27
  435. package/dist/src/shared/ui/Markdown/MDWithAccordion.js +0 -36
  436. package/dist/src/shared/ui/Markdown/MDWithAccordion.module.scss.js +0 -9
  437. package/dist/src/shared/ui/MaterialItem/MaterialItem.js +0 -36
  438. package/dist/src/shared/ui/MultiSelect/MultiSelect.js +0 -150
  439. package/dist/src/shared/ui/PopoverTooltip/InfoIcon.js +0 -35
  440. package/dist/src/shared/ui/PopoverTooltip/PopoverTooltip.js +0 -37
  441. package/dist/src/shared/ui/PopoverTooltip/PopoverTooltip.module.scss.js +0 -4
  442. package/dist/src/shared/ui/Slider/Slider.js +0 -117
  443. package/dist/src/shared/utils/cn.js +0 -8
  444. package/dist/src/shared/utils/uniqueList.js +0 -4
package/dist/main.cjs ADDED
@@ -0,0 +1,407 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});require('./assets/index.css');const tt=require("react"),z0=require("react-dom"),B=require("react/jsx-runtime"),fi=require("@reduxjs/toolkit"),$2=require("react-redux");function s7(t){const n=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(t){for(const r in t)if(r!=="default"){const s=Object.getOwnPropertyDescriptor(t,r);Object.defineProperty(n,r,s.get?s:{enumerable:!0,get:()=>t[r]})}}return n.default=t,Object.freeze(n)}const X=s7(tt),c7=s7(z0);function f7(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var xg={exports:{}},z2={},Rg={exports:{}},t6={};/**
2
+ * @license React
3
+ * scheduler.production.js
4
+ *
5
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
6
+ *
7
+ * This source code is licensed under the MIT license found in the
8
+ * LICENSE file in the root directory of this source tree.
9
+ */var dS;function mD(){return dS||(dS=1,(function(t){function n(P,oe){var $=P.length;P.push(oe);e:for(;0<$;){var we=$-1>>>1,w=P[we];if(0<b(w,oe))P[we]=oe,P[$]=w,$=we;else break e}}function r(P){return P.length===0?null:P[0]}function s(P){if(P.length===0)return null;var oe=P[0],$=P.pop();if($!==oe){P[0]=$;e:for(var we=0,w=P.length,yt=w>>>1;we<yt;){var rt=2*(we+1)-1,k=P[rt],He=rt+1,It=P[He];if(0>b(k,$))He<w&&0>b(It,k)?(P[we]=It,P[He]=$,we=He):(P[we]=k,P[rt]=$,we=rt);else if(He<w&&0>b(It,$))P[we]=It,P[He]=$,we=He;else break e}}return oe}function b(P,oe){var $=P.sortIndex-oe.sortIndex;return $!==0?$:P.id-oe.id}if(t.unstable_now=void 0,typeof performance=="object"&&typeof performance.now=="function"){var h=performance;t.unstable_now=function(){return h.now()}}else{var p=Date,T=p.now();t.unstable_now=function(){return p.now()-T}}var E=[],A=[],M=1,L=null,R=3,z=!1,U=!1,G=!1,J=!1,F=typeof setTimeout=="function"?setTimeout:null,ie=typeof clearTimeout=="function"?clearTimeout:null,te=typeof setImmediate<"u"?setImmediate:null;function Te(P){for(var oe=r(A);oe!==null;){if(oe.callback===null)s(A);else if(oe.startTime<=P)s(A),oe.sortIndex=oe.expirationTime,n(E,oe);else break;oe=r(A)}}function ge(P){if(G=!1,Te(P),!U)if(r(E)!==null)U=!0,le||(le=!0,De());else{var oe=r(A);oe!==null&&Ie(ge,oe.startTime-P)}}var le=!1,Se=-1,be=5,ke=-1;function Ce(){return J?!0:!(t.unstable_now()-ke<be)}function Re(){if(J=!1,le){var P=t.unstable_now();ke=P;var oe=!0;try{e:{U=!1,G&&(G=!1,ie(Se),Se=-1),z=!0;var $=R;try{t:{for(Te(P),L=r(E);L!==null&&!(L.expirationTime>P&&Ce());){var we=L.callback;if(typeof we=="function"){L.callback=null,R=L.priorityLevel;var w=we(L.expirationTime<=P);if(P=t.unstable_now(),typeof w=="function"){L.callback=w,Te(P),oe=!0;break t}L===r(E)&&s(E),Te(P)}else s(E);L=r(E)}if(L!==null)oe=!0;else{var yt=r(A);yt!==null&&Ie(ge,yt.startTime-P),oe=!1}}break e}finally{L=null,R=$,z=!1}oe=void 0}}finally{oe?De():le=!1}}}var De;if(typeof te=="function")De=function(){te(Re)};else if(typeof MessageChannel<"u"){var Me=new MessageChannel,ze=Me.port2;Me.port1.onmessage=Re,De=function(){ze.postMessage(null)}}else De=function(){F(Re,0)};function Ie(P,oe){Se=F(function(){P(t.unstable_now())},oe)}t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(P){P.callback=null},t.unstable_forceFrameRate=function(P){0>P||125<P?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):be=0<P?Math.floor(1e3/P):5},t.unstable_getCurrentPriorityLevel=function(){return R},t.unstable_next=function(P){switch(R){case 1:case 2:case 3:var oe=3;break;default:oe=R}var $=R;R=oe;try{return P()}finally{R=$}},t.unstable_requestPaint=function(){J=!0},t.unstable_runWithPriority=function(P,oe){switch(P){case 1:case 2:case 3:case 4:case 5:break;default:P=3}var $=R;R=P;try{return oe()}finally{R=$}},t.unstable_scheduleCallback=function(P,oe,$){var we=t.unstable_now();switch(typeof $=="object"&&$!==null?($=$.delay,$=typeof $=="number"&&0<$?we+$:we):$=we,P){case 1:var w=-1;break;case 2:w=250;break;case 5:w=1073741823;break;case 4:w=1e4;break;default:w=5e3}return w=$+w,P={id:M++,callback:oe,priorityLevel:P,startTime:$,expirationTime:w,sortIndex:-1},$>we?(P.sortIndex=$,n(A,P),r(E)===null&&P===r(A)&&(G?(ie(Se),Se=-1):G=!0,Ie(ge,$-we))):(P.sortIndex=w,n(E,P),U||z||(U=!0,le||(le=!0,De()))),P},t.unstable_shouldYield=Ce,t.unstable_wrapCallback=function(P){var oe=R;return function(){var $=R;R=oe;try{return P.apply(this,arguments)}finally{R=$}}}})(t6)),t6}var a6={};/**
10
+ * @license React
11
+ * scheduler.development.js
12
+ *
13
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
14
+ *
15
+ * This source code is licensed under the MIT license found in the
16
+ * LICENSE file in the root directory of this source tree.
17
+ */var bS;function hD(){return bS||(bS=1,(function(t){process.env.NODE_ENV!=="production"&&(function(){function n(){if(ge=!1,ke){var P=t.unstable_now();De=P;var oe=!0;try{e:{te=!1,Te&&(Te=!1,Se(Ce),Ce=-1),ie=!0;var $=F;try{t:{for(p(P),J=s(z);J!==null&&!(J.expirationTime>P&&E());){var we=J.callback;if(typeof we=="function"){J.callback=null,F=J.priorityLevel;var w=we(J.expirationTime<=P);if(P=t.unstable_now(),typeof w=="function"){J.callback=w,p(P),oe=!0;break t}J===s(z)&&b(z),p(P)}else b(z);J=s(z)}if(J!==null)oe=!0;else{var yt=s(U);yt!==null&&A(T,yt.startTime-P),oe=!1}}break e}finally{J=null,F=$,ie=!1}oe=void 0}}finally{oe?Me():ke=!1}}}function r(P,oe){var $=P.length;P.push(oe);e:for(;0<$;){var we=$-1>>>1,w=P[we];if(0<h(w,oe))P[we]=oe,P[$]=w,$=we;else break e}}function s(P){return P.length===0?null:P[0]}function b(P){if(P.length===0)return null;var oe=P[0],$=P.pop();if($!==oe){P[0]=$;e:for(var we=0,w=P.length,yt=w>>>1;we<yt;){var rt=2*(we+1)-1,k=P[rt],He=rt+1,It=P[He];if(0>h(k,$))He<w&&0>h(It,k)?(P[we]=It,P[He]=$,we=He):(P[we]=k,P[rt]=$,we=rt);else if(He<w&&0>h(It,$))P[we]=It,P[He]=$,we=He;else break e}}return oe}function h(P,oe){var $=P.sortIndex-oe.sortIndex;return $!==0?$:P.id-oe.id}function p(P){for(var oe=s(U);oe!==null;){if(oe.callback===null)b(U);else if(oe.startTime<=P)b(U),oe.sortIndex=oe.expirationTime,r(z,oe);else break;oe=s(U)}}function T(P){if(Te=!1,p(P),!te)if(s(z)!==null)te=!0,ke||(ke=!0,Me());else{var oe=s(U);oe!==null&&A(T,oe.startTime-P)}}function E(){return ge?!0:!(t.unstable_now()-De<Re)}function A(P,oe){Ce=le(function(){P(t.unstable_now())},oe)}if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error()),t.unstable_now=void 0,typeof performance=="object"&&typeof performance.now=="function"){var M=performance;t.unstable_now=function(){return M.now()}}else{var L=Date,R=L.now();t.unstable_now=function(){return L.now()-R}}var z=[],U=[],G=1,J=null,F=3,ie=!1,te=!1,Te=!1,ge=!1,le=typeof setTimeout=="function"?setTimeout:null,Se=typeof clearTimeout=="function"?clearTimeout:null,be=typeof setImmediate<"u"?setImmediate:null,ke=!1,Ce=-1,Re=5,De=-1;if(typeof be=="function")var Me=function(){be(n)};else if(typeof MessageChannel<"u"){var ze=new MessageChannel,Ie=ze.port2;ze.port1.onmessage=n,Me=function(){Ie.postMessage(null)}}else Me=function(){le(n,0)};t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(P){P.callback=null},t.unstable_forceFrameRate=function(P){0>P||125<P?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):Re=0<P?Math.floor(1e3/P):5},t.unstable_getCurrentPriorityLevel=function(){return F},t.unstable_next=function(P){switch(F){case 1:case 2:case 3:var oe=3;break;default:oe=F}var $=F;F=oe;try{return P()}finally{F=$}},t.unstable_requestPaint=function(){ge=!0},t.unstable_runWithPriority=function(P,oe){switch(P){case 1:case 2:case 3:case 4:case 5:break;default:P=3}var $=F;F=P;try{return oe()}finally{F=$}},t.unstable_scheduleCallback=function(P,oe,$){var we=t.unstable_now();switch(typeof $=="object"&&$!==null?($=$.delay,$=typeof $=="number"&&0<$?we+$:we):$=we,P){case 1:var w=-1;break;case 2:w=250;break;case 5:w=1073741823;break;case 4:w=1e4;break;default:w=5e3}return w=$+w,P={id:G++,callback:oe,priorityLevel:P,startTime:$,expirationTime:w,sortIndex:-1},$>we?(P.sortIndex=$,r(U,P),s(z)===null&&P===s(U)&&(Te?(Se(Ce),Ce=-1):Te=!0,A(T,$-we))):(P.sortIndex=w,r(z,P),te||ie||(te=!0,ke||(ke=!0,Me()))),P},t.unstable_shouldYield=E,t.unstable_wrapCallback=function(P){var oe=F;return function(){var $=F;F=oe;try{return P.apply(this,arguments)}finally{F=$}}},typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())})()})(a6)),a6}var mS;function d7(){return mS||(mS=1,process.env.NODE_ENV==="production"?Rg.exports=mD():Rg.exports=hD()),Rg.exports}/**
18
+ * @license React
19
+ * react-dom-client.production.js
20
+ *
21
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
22
+ *
23
+ * This source code is licensed under the MIT license found in the
24
+ * LICENSE file in the root directory of this source tree.
25
+ */var hS;function pD(){if(hS)return z2;hS=1;var t=d7(),n=tt,r=z0;function s(l){var o="https://react.dev/errors/"+l;if(1<arguments.length){o+="?args[]="+encodeURIComponent(arguments[1]);for(var u=2;u<arguments.length;u++)o+="&args[]="+encodeURIComponent(arguments[u])}return"Minified React error #"+l+"; visit "+o+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function b(l){return!(!l||l.nodeType!==1&&l.nodeType!==9&&l.nodeType!==11)}function h(l){var o=l,u=l;if(l.alternate)for(;o.return;)o=o.return;else{l=o;do o=l,(o.flags&4098)!==0&&(u=o.return),l=o.return;while(l)}return o.tag===3?u:null}function p(l){if(l.tag===13){var o=l.memoizedState;if(o===null&&(l=l.alternate,l!==null&&(o=l.memoizedState)),o!==null)return o.dehydrated}return null}function T(l){if(l.tag===31){var o=l.memoizedState;if(o===null&&(l=l.alternate,l!==null&&(o=l.memoizedState)),o!==null)return o.dehydrated}return null}function E(l){if(h(l)!==l)throw Error(s(188))}function A(l){var o=l.alternate;if(!o){if(o=h(l),o===null)throw Error(s(188));return o!==l?null:l}for(var u=l,f=o;;){var g=u.return;if(g===null)break;var v=g.alternate;if(v===null){if(f=g.return,f!==null){u=f;continue}break}if(g.child===v.child){for(v=g.child;v;){if(v===u)return E(g),l;if(v===f)return E(g),o;v=v.sibling}throw Error(s(188))}if(u.return!==f.return)u=g,f=v;else{for(var D=!1,O=g.child;O;){if(O===u){D=!0,u=g,f=v;break}if(O===f){D=!0,f=g,u=v;break}O=O.sibling}if(!D){for(O=v.child;O;){if(O===u){D=!0,u=v,f=g;break}if(O===f){D=!0,f=v,u=g;break}O=O.sibling}if(!D)throw Error(s(189))}}if(u.alternate!==f)throw Error(s(190))}if(u.tag!==3)throw Error(s(188));return u.stateNode.current===u?l:o}function M(l){var o=l.tag;if(o===5||o===26||o===27||o===6)return l;for(l=l.child;l!==null;){if(o=M(l),o!==null)return o;l=l.sibling}return null}var L=Object.assign,R=Symbol.for("react.element"),z=Symbol.for("react.transitional.element"),U=Symbol.for("react.portal"),G=Symbol.for("react.fragment"),J=Symbol.for("react.strict_mode"),F=Symbol.for("react.profiler"),ie=Symbol.for("react.consumer"),te=Symbol.for("react.context"),Te=Symbol.for("react.forward_ref"),ge=Symbol.for("react.suspense"),le=Symbol.for("react.suspense_list"),Se=Symbol.for("react.memo"),be=Symbol.for("react.lazy"),ke=Symbol.for("react.activity"),Ce=Symbol.for("react.memo_cache_sentinel"),Re=Symbol.iterator;function De(l){return l===null||typeof l!="object"?null:(l=Re&&l[Re]||l["@@iterator"],typeof l=="function"?l:null)}var Me=Symbol.for("react.client.reference");function ze(l){if(l==null)return null;if(typeof l=="function")return l.$$typeof===Me?null:l.displayName||l.name||null;if(typeof l=="string")return l;switch(l){case G:return"Fragment";case F:return"Profiler";case J:return"StrictMode";case ge:return"Suspense";case le:return"SuspenseList";case ke:return"Activity"}if(typeof l=="object")switch(l.$$typeof){case U:return"Portal";case te:return l.displayName||"Context";case ie:return(l._context.displayName||"Context")+".Consumer";case Te:var o=l.render;return l=l.displayName,l||(l=o.displayName||o.name||"",l=l!==""?"ForwardRef("+l+")":"ForwardRef"),l;case Se:return o=l.displayName||null,o!==null?o:ze(l.type)||"Memo";case be:o=l._payload,l=l._init;try{return ze(l(o))}catch{}}return null}var Ie=Array.isArray,P=n.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,oe=r.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,$={pending:!1,data:null,method:null,action:null},we=[],w=-1;function yt(l){return{current:l}}function rt(l){0>w||(l.current=we[w],we[w]=null,w--)}function k(l,o){w++,we[w]=l.current,l.current=o}var He=yt(null),It=yt(null),kt=yt(null),Lt=yt(null);function Ua(l,o){switch(k(kt,o),k(It,l),k(He,null),o.nodeType){case 9:case 11:l=(l=o.documentElement)&&(l=l.namespaceURI)?Sp(l):0;break;default:if(l=o.tagName,o=o.namespaceURI)o=Sp(o),l=E5(o,l);else switch(l){case"svg":l=1;break;case"math":l=2;break;default:l=0}}rt(He),k(He,l)}function Ca(){rt(He),rt(It),rt(kt)}function Tl(l){l.memoizedState!==null&&k(Lt,l);var o=He.current,u=E5(o,l.type);o!==u&&(k(It,l),k(He,u))}function Ge(l){It.current===l&&(rt(He),rt(It)),Lt.current===l&&(rt(Lt),Xd._currentValue=$)}var an,Pn;function Wn(l){if(an===void 0)try{throw Error()}catch(u){var o=u.stack.trim().match(/\n( *(at )?)/);an=o&&o[1]||"",Pn=-1<u.stack.indexOf(`
26
+ at`)?" (<anonymous>)":-1<u.stack.indexOf("@")?"@unknown:0:0":""}return`
27
+ `+an+l+Pn}var Zi=!1;function Ft(l,o){if(!l||Zi)return"";Zi=!0;var u=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{var f={DetermineComponentFrameRoot:function(){try{if(o){var Ee=function(){throw Error()};if(Object.defineProperty(Ee.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(Ee,[])}catch(de){var ue=de}Reflect.construct(l,[],Ee)}else{try{Ee.call()}catch(de){ue=de}l.call(Ee.prototype)}}else{try{throw Error()}catch(de){ue=de}(Ee=l())&&typeof Ee.catch=="function"&&Ee.catch(function(){})}}catch(de){if(de&&ue&&typeof de.stack=="string")return[de.stack,ue.stack]}return[null,null]}};f.DetermineComponentFrameRoot.displayName="DetermineComponentFrameRoot";var g=Object.getOwnPropertyDescriptor(f.DetermineComponentFrameRoot,"name");g&&g.configurable&&Object.defineProperty(f.DetermineComponentFrameRoot,"name",{value:"DetermineComponentFrameRoot"});var v=f.DetermineComponentFrameRoot(),D=v[0],O=v[1];if(D&&O){var j=D.split(`
28
+ `),re=O.split(`
29
+ `);for(g=f=0;f<j.length&&!j[f].includes("DetermineComponentFrameRoot");)f++;for(;g<re.length&&!re[g].includes("DetermineComponentFrameRoot");)g++;if(f===j.length||g===re.length)for(f=j.length-1,g=re.length-1;1<=f&&0<=g&&j[f]!==re[g];)g--;for(;1<=f&&0<=g;f--,g--)if(j[f]!==re[g]){if(f!==1||g!==1)do if(f--,g--,0>g||j[f]!==re[g]){var he=`
30
+ `+j[f].replace(" at new "," at ");return l.displayName&&he.includes("<anonymous>")&&(he=he.replace("<anonymous>",l.displayName)),he}while(1<=f&&0<=g);break}}}finally{Zi=!1,Error.prepareStackTrace=u}return(u=l?l.displayName||l.name:"")?Wn(u):""}function Hs(l,o){switch(l.tag){case 26:case 27:case 5:return Wn(l.type);case 16:return Wn("Lazy");case 13:return l.child!==o&&o!==null?Wn("Suspense Fallback"):Wn("Suspense");case 19:return Wn("SuspenseList");case 0:case 15:return Ft(l.type,!1);case 11:return Ft(l.type.render,!1);case 1:return Ft(l.type,!0);case 31:return Wn("Activity");default:return""}}function Ps(l){try{var o="",u=null;do o+=Hs(l,u),u=l,l=l.return;while(l);return o}catch(f){return`
31
+ Error generating stack: `+f.message+`
32
+ `+f.stack}}var Ws=Object.prototype.hasOwnProperty,Kt=t.unstable_scheduleCallback,If=t.unstable_cancelCallback,Yo=t.unstable_shouldYield,Vs=t.unstable_requestPaint,ja=t.unstable_now,Nm=t.unstable_getCurrentPriorityLevel,ve=t.unstable_ImmediatePriority,Oe=t.unstable_UserBlockingPriority,Ke=t.unstable_NormalPriority,Et=t.unstable_LowPriority,Ut=t.unstable_IdlePriority,ln=t.log,Ji=t.unstable_setDisableYieldValue,vl=null,Ha=null;function Gl(l){if(typeof ln=="function"&&Ji(l),Ha&&typeof Ha.setStrictMode=="function")try{Ha.setStrictMode(vl,l)}catch{}}var Zt=Math.clz32?Math.clz32:Bm,Qo=Math.log,Vn=Math.LN2;function Bm(l){return l>>>=0,l===0?32:31-(Qo(l)/Vn|0)|0}var Xo=256,bi=262144,xr=4194304;function qn(l){var o=l&42;if(o!==0)return o;switch(l&-l){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return l&261888;case 262144:case 524288:case 1048576:case 2097152:return l&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return l&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return l}}function Oa(l,o,u){var f=l.pendingLanes;if(f===0)return 0;var g=0,v=l.suspendedLanes,D=l.pingedLanes;l=l.warmLanes;var O=f&134217727;return O!==0?(f=O&~v,f!==0?g=qn(f):(D&=O,D!==0?g=qn(D):u||(u=O&~l,u!==0&&(g=qn(u))))):(O=f&~v,O!==0?g=qn(O):D!==0?g=qn(D):u||(u=f&~l,u!==0&&(g=qn(u)))),g===0?0:o!==0&&o!==g&&(o&v)===0&&(v=g&-g,u=o&-o,v>=u||v===32&&(u&4194048)!==0)?o:g}function mi(l,o){return(l.pendingLanes&~(l.suspendedLanes&~l.pingedLanes)&o)===0}function qs(l,o){switch(l){case 1:case 2:case 4:case 8:case 64:return o+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return o+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function zu(){var l=xr;return xr<<=1,(xr&62914560)===0&&(xr=4194304),l}function wf(l){for(var o=[],u=0;31>u;u++)o.push(l);return o}function js(l,o){l.pendingLanes|=o,o!==268435456&&(l.suspendedLanes=0,l.pingedLanes=0,l.warmLanes=0)}function _0(l,o,u,f,g,v){var D=l.pendingLanes;l.pendingLanes=u,l.suspendedLanes=0,l.pingedLanes=0,l.warmLanes=0,l.expiredLanes&=u,l.entangledLanes&=u,l.errorRecoveryDisabledLanes&=u,l.shellSuspendCounter=0;var O=l.entanglements,j=l.expirationTimes,re=l.hiddenUpdates;for(u=D&~u;0<u;){var he=31-Zt(u),Ee=1<<he;O[he]=0,j[he]=-1;var ue=re[he];if(ue!==null)for(re[he]=null,he=0;he<ue.length;he++){var de=ue[he];de!==null&&(de.lane&=-536870913)}u&=~Ee}f!==0&&Gf(l,f,0),v!==0&&g===0&&l.tag!==0&&(l.suspendedLanes|=v&~(D&~o))}function Gf(l,o,u){l.pendingLanes|=o,l.suspendedLanes&=~o;var f=31-Zt(o);l.entangledLanes|=o,l.entanglements[f]=l.entanglements[f]|1073741824|u&261930}function $i(l,o){var u=l.entangledLanes|=o;for(l=l.entanglements;u;){var f=31-Zt(u),g=1<<f;g&o|l[f]&o&&(l[f]|=o),u&=~g}}function gn(l,o){var u=o&-o;return u=(u&42)!==0?1:I0(u),(u&(l.suspendedLanes|o))!==0?0:u}function I0(l){switch(l){case 2:l=1;break;case 8:l=4;break;case 32:l=16;break;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:l=128;break;case 268435456:l=134217728;break;default:l=0}return l}function Om(l){return l&=-l,2<l?8<l?(l&134217727)!==0?32:268435456:8:2}function w0(){var l=oe.p;return l!==0?l:(l=window.event,l===void 0?32:Kd(l.type))}function _m(l,o){var u=oe.p;try{return oe.p=l,o()}finally{oe.p=u}}var hi=Math.random().toString(36).slice(2),$t="__reactFiber$"+hi,kl="__reactProps$"+hi,Rr="__reactContainer$"+hi,G0="__reactEvents$"+hi,Im="__reactListeners$"+hi,u4="__reactHandles$"+hi,wm="__reactResources$"+hi,eo="__reactMarker$"+hi;function k0(l){delete l[$t],delete l[kl],delete l[G0],delete l[Im],delete l[u4]}function xu(l){var o=l[$t];if(o)return o;for(var u=l.parentNode;u;){if(o=u[Rr]||u[$t]){if(u=o.alternate,o.child!==null||u!==null&&u.child!==null)for(l=wi(l);l!==null;){if(u=l[$t])return u;l=wi(l)}return o}l=u,u=l.parentNode}return null}function Ru(l){if(l=l[$t]||l[Rr]){var o=l.tag;if(o===5||o===6||o===13||o===31||o===26||o===27||o===3)return l}return null}function Ys(l){var o=l.tag;if(o===5||o===26||o===27||o===6)return l.stateNode;throw Error(s(33))}function Nu(l){var o=l[wm];return o||(o=l[wm]={hoistableStyles:new Map,hoistableScripts:new Map}),o}function Vt(l){l[eo]=!0}var Bu=new Set,Nr={};function Br(l,o){to(l,o),to(l+"Capture",o)}function to(l,o){for(Nr[l]=o,l=0;l<o.length;l++)Bu.add(o[l])}var F0=RegExp("^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"),U0={},Qs={};function Xs(l){return Ws.call(Qs,l)?!0:Ws.call(U0,l)?!1:F0.test(l)?Qs[l]=!0:(U0[l]=!0,!1)}function Ks(l,o,u){if(Xs(o))if(u===null)l.removeAttribute(o);else{switch(typeof u){case"undefined":case"function":case"symbol":l.removeAttribute(o);return;case"boolean":var f=o.toLowerCase().slice(0,5);if(f!=="data-"&&f!=="aria-"){l.removeAttribute(o);return}}l.setAttribute(o,""+u)}}function H0(l,o,u){if(u===null)l.removeAttribute(o);else{switch(typeof u){case"undefined":case"function":case"symbol":case"boolean":l.removeAttribute(o);return}l.setAttribute(o,""+u)}}function Ko(l,o,u,f){if(f===null)l.removeAttribute(u);else{switch(typeof f){case"undefined":case"function":case"symbol":case"boolean":l.removeAttribute(u);return}l.setAttributeNS(o,u,""+f)}}function Tn(l){switch(typeof l){case"bigint":case"boolean":case"number":case"string":case"undefined":return l;case"object":return l;default:return""}}function P0(l){var o=l.type;return(l=l.nodeName)&&l.toLowerCase()==="input"&&(o==="checkbox"||o==="radio")}function Gm(l,o,u){var f=Object.getOwnPropertyDescriptor(l.constructor.prototype,o);if(!l.hasOwnProperty(o)&&typeof f<"u"&&typeof f.get=="function"&&typeof f.set=="function"){var g=f.get,v=f.set;return Object.defineProperty(l,o,{configurable:!0,get:function(){return g.call(this)},set:function(D){u=""+D,v.call(this,D)}}),Object.defineProperty(l,o,{enumerable:f.enumerable}),{getValue:function(){return u},setValue:function(D){u=""+D},stopTracking:function(){l._valueTracker=null,delete l[o]}}}}function W0(l){if(!l._valueTracker){var o=P0(l)?"checked":"value";l._valueTracker=Gm(l,o,""+l[o])}}function km(l){if(!l)return!1;var o=l._valueTracker;if(!o)return!0;var u=o.getValue(),f="";return l&&(f=P0(l)?l.checked?"true":"false":l.value),l=f,l!==u?(o.setValue(l),!0):!1}function kf(l){if(l=l||(typeof document<"u"?document:void 0),typeof l>"u")return null;try{return l.activeElement||l.body}catch{return l.body}}var R8=/[\n"\\]/g;function vn(l){return l.replace(R8,function(o){return"\\"+o.charCodeAt(0).toString(16)+" "})}function Ff(l,o,u,f,g,v,D,O){l.name="",D!=null&&typeof D!="function"&&typeof D!="symbol"&&typeof D!="boolean"?l.type=D:l.removeAttribute("type"),o!=null?D==="number"?(o===0&&l.value===""||l.value!=o)&&(l.value=""+Tn(o)):l.value!==""+Tn(o)&&(l.value=""+Tn(o)):D!=="submit"&&D!=="reset"||l.removeAttribute("value"),o!=null?Ou(l,D,Tn(o)):u!=null?Ou(l,D,Tn(u)):f!=null&&l.removeAttribute("value"),g==null&&v!=null&&(l.defaultChecked=!!v),g!=null&&(l.checked=g&&typeof g!="function"&&typeof g!="symbol"),O!=null&&typeof O!="function"&&typeof O!="symbol"&&typeof O!="boolean"?l.name=""+Tn(O):l.removeAttribute("name")}function Uf(l,o,u,f,g,v,D,O){if(v!=null&&typeof v!="function"&&typeof v!="symbol"&&typeof v!="boolean"&&(l.type=v),o!=null||u!=null){if(!(v!=="submit"&&v!=="reset"||o!=null)){W0(l);return}u=u!=null?""+Tn(u):"",o=o!=null?""+Tn(o):u,O||o===l.value||(l.value=o),l.defaultValue=o}f=f??g,f=typeof f!="function"&&typeof f!="symbol"&&!!f,l.checked=O?l.checked:!!f,l.defaultChecked=!!f,D!=null&&typeof D!="function"&&typeof D!="symbol"&&typeof D!="boolean"&&(l.name=D),W0(l)}function Ou(l,o,u){o==="number"&&kf(l.ownerDocument)===l||l.defaultValue===""+u||(l.defaultValue=""+u)}function Zs(l,o,u,f){if(l=l.options,o){o={};for(var g=0;g<u.length;g++)o["$"+u[g]]=!0;for(u=0;u<l.length;u++)g=o.hasOwnProperty("$"+l[u].value),l[u].selected!==g&&(l[u].selected=g),g&&f&&(l[u].defaultSelected=!0)}else{for(u=""+Tn(u),o=null,g=0;g<l.length;g++){if(l[g].value===u){l[g].selected=!0,f&&(l[g].defaultSelected=!0);return}o!==null||l[g].disabled||(o=l[g])}o!==null&&(o.selected=!0)}}function Fm(l,o,u){if(o!=null&&(o=""+Tn(o),o!==l.value&&(l.value=o),u==null)){l.defaultValue!==o&&(l.defaultValue=o);return}l.defaultValue=u!=null?""+Tn(u):""}function Um(l,o,u,f){if(o==null){if(f!=null){if(u!=null)throw Error(s(92));if(Ie(f)){if(1<f.length)throw Error(s(93));f=f[0]}u=f}u==null&&(u=""),o=u}u=Tn(o),l.defaultValue=u,f=l.textContent,f===u&&f!==""&&f!==null&&(l.value=f),W0(l)}function ao(l,o){if(o){var u=l.firstChild;if(u&&u===l.lastChild&&u.nodeType===3){u.nodeValue=o;return}}l.textContent=o}var s4=new Set("animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp".split(" "));function c4(l,o,u){var f=o.indexOf("--")===0;u==null||typeof u=="boolean"||u===""?f?l.setProperty(o,""):o==="float"?l.cssFloat="":l[o]="":f?l.setProperty(o,u):typeof u!="number"||u===0||s4.has(o)?o==="float"?l.cssFloat=u:l[o]=(""+u).trim():l[o]=u+"px"}function f4(l,o,u){if(o!=null&&typeof o!="object")throw Error(s(62));if(l=l.style,u!=null){for(var f in u)!u.hasOwnProperty(f)||o!=null&&o.hasOwnProperty(f)||(f.indexOf("--")===0?l.setProperty(f,""):f==="float"?l.cssFloat="":l[f]="");for(var g in o)f=o[g],o.hasOwnProperty(g)&&u[g]!==f&&c4(l,g,f)}else for(var v in o)o.hasOwnProperty(v)&&c4(l,v,o[v])}function Hm(l){if(l.indexOf("-")===-1)return!1;switch(l){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var N8=new Map([["acceptCharset","accept-charset"],["htmlFor","for"],["httpEquiv","http-equiv"],["crossOrigin","crossorigin"],["accentHeight","accent-height"],["alignmentBaseline","alignment-baseline"],["arabicForm","arabic-form"],["baselineShift","baseline-shift"],["capHeight","cap-height"],["clipPath","clip-path"],["clipRule","clip-rule"],["colorInterpolation","color-interpolation"],["colorInterpolationFilters","color-interpolation-filters"],["colorProfile","color-profile"],["colorRendering","color-rendering"],["dominantBaseline","dominant-baseline"],["enableBackground","enable-background"],["fillOpacity","fill-opacity"],["fillRule","fill-rule"],["floodColor","flood-color"],["floodOpacity","flood-opacity"],["fontFamily","font-family"],["fontSize","font-size"],["fontSizeAdjust","font-size-adjust"],["fontStretch","font-stretch"],["fontStyle","font-style"],["fontVariant","font-variant"],["fontWeight","font-weight"],["glyphName","glyph-name"],["glyphOrientationHorizontal","glyph-orientation-horizontal"],["glyphOrientationVertical","glyph-orientation-vertical"],["horizAdvX","horiz-adv-x"],["horizOriginX","horiz-origin-x"],["imageRendering","image-rendering"],["letterSpacing","letter-spacing"],["lightingColor","lighting-color"],["markerEnd","marker-end"],["markerMid","marker-mid"],["markerStart","marker-start"],["overlinePosition","overline-position"],["overlineThickness","overline-thickness"],["paintOrder","paint-order"],["panose-1","panose-1"],["pointerEvents","pointer-events"],["renderingIntent","rendering-intent"],["shapeRendering","shape-rendering"],["stopColor","stop-color"],["stopOpacity","stop-opacity"],["strikethroughPosition","strikethrough-position"],["strikethroughThickness","strikethrough-thickness"],["strokeDasharray","stroke-dasharray"],["strokeDashoffset","stroke-dashoffset"],["strokeLinecap","stroke-linecap"],["strokeLinejoin","stroke-linejoin"],["strokeMiterlimit","stroke-miterlimit"],["strokeOpacity","stroke-opacity"],["strokeWidth","stroke-width"],["textAnchor","text-anchor"],["textDecoration","text-decoration"],["textRendering","text-rendering"],["transformOrigin","transform-origin"],["underlinePosition","underline-position"],["underlineThickness","underline-thickness"],["unicodeBidi","unicode-bidi"],["unicodeRange","unicode-range"],["unitsPerEm","units-per-em"],["vAlphabetic","v-alphabetic"],["vHanging","v-hanging"],["vIdeographic","v-ideographic"],["vMathematical","v-mathematical"],["vectorEffect","vector-effect"],["vertAdvY","vert-adv-y"],["vertOriginX","vert-origin-x"],["vertOriginY","vert-origin-y"],["wordSpacing","word-spacing"],["writingMode","writing-mode"],["xmlnsXlink","xmlns:xlink"],["xHeight","x-height"]]),Hf=/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*:/i;function jn(l){return Hf.test(""+l)?"javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')":l}function pi(){}var V0=null;function q0(l){return l=l.target||l.srcElement||window,l.correspondingUseElement&&(l=l.correspondingUseElement),l.nodeType===3?l.parentNode:l}var lo=null,_u=null;function Pf(l){var o=Ru(l);if(o&&(l=o.stateNode)){var u=l[kl]||null;e:switch(l=o.stateNode,o.type){case"input":if(Ff(l,u.value,u.defaultValue,u.defaultValue,u.checked,u.defaultChecked,u.type,u.name),o=u.name,u.type==="radio"&&o!=null){for(u=l;u.parentNode;)u=u.parentNode;for(u=u.querySelectorAll('input[name="'+vn(""+o)+'"][type="radio"]'),o=0;o<u.length;o++){var f=u[o];if(f!==l&&f.form===l.form){var g=f[kl]||null;if(!g)throw Error(s(90));Ff(f,g.value,g.defaultValue,g.defaultValue,g.checked,g.defaultChecked,g.type,g.name)}}for(o=0;o<u.length;o++)f=u[o],f.form===l.form&&km(f)}break e;case"textarea":Fm(l,u.value,u.defaultValue);break e;case"select":o=u.value,o!=null&&Zs(l,!!u.multiple,o,!1)}}}var Js=!1;function Pm(l,o,u){if(Js)return l(o,u);Js=!0;try{var f=l(o);return f}finally{if(Js=!1,(lo!==null||_u!==null)&&(_c(),lo&&(o=lo,l=_u,_u=lo=null,Pf(o),l)))for(o=0;o<l.length;o++)Pf(l[o])}}function tl(l,o){var u=l.stateNode;if(u===null)return null;var f=u[kl]||null;if(f===null)return null;u=f[o];e:switch(o){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(f=!f.disabled)||(l=l.type,f=!(l==="button"||l==="input"||l==="select"||l==="textarea")),l=!f;break e;default:l=!1}if(l)return null;if(u&&typeof u!="function")throw Error(s(231,o,typeof u));return u}var Zo=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),Wf=!1;if(Zo)try{var $s={};Object.defineProperty($s,"passive",{get:function(){Wf=!0}}),window.addEventListener("test",$s,$s),window.removeEventListener("test",$s,$s)}catch{Wf=!1}var Jo=null,Wm=null,j0=null;function Vm(){if(j0)return j0;var l,o=Wm,u=o.length,f,g="value"in Jo?Jo.value:Jo.textContent,v=g.length;for(l=0;l<u&&o[l]===g[l];l++);var D=u-l;for(f=1;f<=D&&o[u-f]===g[v-f];f++);return j0=g.slice(l,1<f?1-f:void 0)}function Y0(l){var o=l.keyCode;return"charCode"in l?(l=l.charCode,l===0&&o===13&&(l=13)):l=o,l===10&&(l=13),32<=l||l===13?l:0}function Vf(){return!0}function d4(){return!1}function Sl(l){function o(u,f,g,v,D){this._reactName=u,this._targetInst=g,this.type=f,this.nativeEvent=v,this.target=D,this.currentTarget=null;for(var O in l)l.hasOwnProperty(O)&&(u=l[O],this[O]=u?u(v):v[O]);return this.isDefaultPrevented=(v.defaultPrevented!=null?v.defaultPrevented:v.returnValue===!1)?Vf:d4,this.isPropagationStopped=d4,this}return L(o.prototype,{preventDefault:function(){this.defaultPrevented=!0;var u=this.nativeEvent;u&&(u.preventDefault?u.preventDefault():typeof u.returnValue!="unknown"&&(u.returnValue=!1),this.isDefaultPrevented=Vf)},stopPropagation:function(){var u=this.nativeEvent;u&&(u.stopPropagation?u.stopPropagation():typeof u.cancelBubble!="unknown"&&(u.cancelBubble=!0),this.isPropagationStopped=Vf)},persist:function(){},isPersistent:Vf}),o}var Or={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(l){return l.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},qf=Sl(Or),ec=L({},Or,{view:0,detail:0}),B8=Sl(ec),qm,jm,jf,Q0=L({},ec,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Yn,button:0,buttons:0,relatedTarget:function(l){return l.relatedTarget===void 0?l.fromElement===l.srcElement?l.toElement:l.fromElement:l.relatedTarget},movementX:function(l){return"movementX"in l?l.movementX:(l!==jf&&(jf&&l.type==="mousemove"?(qm=l.screenX-jf.screenX,jm=l.screenY-jf.screenY):jm=qm=0,jf=l),qm)},movementY:function(l){return"movementY"in l?l.movementY:jm}}),tc=Sl(Q0),b4=L({},Q0,{dataTransfer:0}),m4=Sl(b4),h4=L({},ec,{relatedTarget:0}),X0=Sl(h4),Ym=L({},Or,{animationName:0,elapsedTime:0,pseudoElement:0}),p4=Sl(Ym),Iu=L({},Or,{clipboardData:function(l){return"clipboardData"in l?l.clipboardData:window.clipboardData}}),wu=Sl(Iu),gi=L({},Or,{data:0}),g4=Sl(gi),Qm={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},no={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},T4={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function Ti(l){var o=this.nativeEvent;return o.getModifierState?o.getModifierState(l):(l=T4[l])?!!o[l]:!1}function Yn(){return Ti}var K0=L({},ec,{key:function(l){if(l.key){var o=Qm[l.key]||l.key;if(o!=="Unidentified")return o}return l.type==="keypress"?(l=Y0(l),l===13?"Enter":String.fromCharCode(l)):l.type==="keydown"||l.type==="keyup"?no[l.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Yn,charCode:function(l){return l.type==="keypress"?Y0(l):0},keyCode:function(l){return l.type==="keydown"||l.type==="keyup"?l.keyCode:0},which:function(l){return l.type==="keypress"?Y0(l):l.type==="keydown"||l.type==="keyup"?l.keyCode:0}}),Z0=Sl(K0),Xm=L({},Q0,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),vi=Sl(Xm),O8=L({},ec,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Yn}),v4=Sl(O8),S4=L({},Or,{propertyName:0,elapsedTime:0,pseudoElement:0}),_8=Sl(S4),Km=L({},Q0,{deltaX:function(l){return"deltaX"in l?l.deltaX:"wheelDeltaX"in l?-l.wheelDeltaX:0},deltaY:function(l){return"deltaY"in l?l.deltaY:"wheelDeltaY"in l?-l.wheelDeltaY:"wheelDelta"in l?-l.wheelDelta:0},deltaZ:0,deltaMode:0}),I8=Sl(Km),y4=L({},Or,{newState:0,oldState:0}),Zm=Sl(y4),J0=[9,13,27,32],ac=Zo&&"CompositionEvent"in window,Gu=null;Zo&&"documentMode"in document&&(Gu=document.documentMode);var Ll=Zo&&"TextEvent"in window&&!Gu,Jm=Zo&&(!ac||Gu&&8<Gu&&11>=Gu),Yf=" ",_r=!1;function $0(l,o){switch(l){case"keyup":return J0.indexOf(o.keyCode)!==-1;case"keydown":return o.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function $m(l){return l=l.detail,typeof l=="object"&&"data"in l?l.data:null}var ku=!1;function C4(l,o){switch(l){case"compositionend":return $m(o);case"keypress":return o.which!==32?null:(_r=!0,Yf);case"textInput":return l=o.data,l===Yf&&_r?null:l;default:return null}}function w8(l,o){if(ku)return l==="compositionend"||!ac&&$0(l,o)?(l=Vm(),j0=Wm=Jo=null,ku=!1,l):null;switch(l){case"paste":return null;case"keypress":if(!(o.ctrlKey||o.altKey||o.metaKey)||o.ctrlKey&&o.altKey){if(o.char&&1<o.char.length)return o.char;if(o.which)return String.fromCharCode(o.which)}return null;case"compositionend":return Jm&&o.locale!=="ko"?null:o.data;default:return null}}var eh={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function io(l){var o=l&&l.nodeName&&l.nodeName.toLowerCase();return o==="input"?!!eh[l.type]:o==="textarea"}function th(l,o,u,f){lo?_u?_u.push(f):_u=[f]:lo=f,o=Wd(o,"onChange"),0<o.length&&(u=new qf("onChange","change",null,u,f),l.push({event:u,listeners:o}))}var Fu=null,Ir=null;function Uu(l){gp(l,0)}function lc(l){var o=Ys(l);if(km(o))return l}function ah(l,o){if(l==="change")return o}var eb=!1;if(Zo){var Fl;if(Zo){var Si="oninput"in document;if(!Si){var lh=document.createElement("div");lh.setAttribute("oninput","return;"),Si=typeof lh.oninput=="function"}Fl=Si}else Fl=!1;eb=Fl&&(!document.documentMode||9<document.documentMode)}function tb(){Fu&&(Fu.detachEvent("onpropertychange",ab),Ir=Fu=null)}function ab(l){if(l.propertyName==="value"&&lc(Ir)){var o=[];th(o,Ir,l,q0(l)),Pm(Uu,o)}}function E4(l,o,u){l==="focusin"?(tb(),Fu=o,Ir=u,Fu.attachEvent("onpropertychange",ab)):l==="focusout"&&tb()}function A4(l){if(l==="selectionchange"||l==="keyup"||l==="keydown")return lc(Ir)}function wr(l,o){if(l==="click")return lc(o)}function Hu(l,o){if(l==="input"||l==="change")return lc(o)}function M4(l,o){return l===o&&(l!==0||1/l===1/o)||l!==l&&o!==o}var zl=typeof Object.is=="function"?Object.is:M4;function Qn(l,o){if(zl(l,o))return!0;if(typeof l!="object"||l===null||typeof o!="object"||o===null)return!1;var u=Object.keys(l),f=Object.keys(o);if(u.length!==f.length)return!1;for(f=0;f<u.length;f++){var g=u[f];if(!Ws.call(o,g)||!zl(l[g],o[g]))return!1}return!0}function nh(l){for(;l&&l.firstChild;)l=l.firstChild;return l}function ih(l,o){var u=nh(l);l=0;for(var f;u;){if(u.nodeType===3){if(f=l+u.textContent.length,l<=o&&f>=o)return{node:u,offset:o-l};l=f}e:{for(;u;){if(u.nextSibling){u=u.nextSibling;break e}u=u.parentNode}u=void 0}u=nh(u)}}function Pu(l,o){return l&&o?l===o?!0:l&&l.nodeType===3?!1:o&&o.nodeType===3?Pu(l,o.parentNode):"contains"in l?l.contains(o):l.compareDocumentPosition?!!(l.compareDocumentPosition(o)&16):!1:!1}function Gr(l){l=l!=null&&l.ownerDocument!=null&&l.ownerDocument.defaultView!=null?l.ownerDocument.defaultView:window;for(var o=kf(l.document);o instanceof l.HTMLIFrameElement;){try{var u=typeof o.contentWindow.location.href=="string"}catch{u=!1}if(u)l=o.contentWindow;else break;o=kf(l.document)}return o}function Qf(l){var o=l&&l.nodeName&&l.nodeName.toLowerCase();return o&&(o==="input"&&(l.type==="text"||l.type==="search"||l.type==="tel"||l.type==="url"||l.type==="password")||o==="textarea"||l.contentEditable==="true")}var Xf=Zo&&"documentMode"in document&&11>=document.documentMode,kr=null,nc=null,Xn=null,yi=!1;function lb(l,o,u){var f=u.window===u?u.document:u.nodeType===9?u:u.ownerDocument;yi||kr==null||kr!==kf(f)||(f=kr,"selectionStart"in f&&Qf(f)?f={start:f.selectionStart,end:f.selectionEnd}:(f=(f.ownerDocument&&f.ownerDocument.defaultView||window).getSelection(),f={anchorNode:f.anchorNode,anchorOffset:f.anchorOffset,focusNode:f.focusNode,focusOffset:f.focusOffset}),Xn&&Qn(Xn,f)||(Xn=f,f=Wd(nc,"onSelect"),0<f.length&&(o=new qf("onSelect","select",null,o,u),l.push({event:o,listeners:f}),o.target=kr)))}function $o(l,o){var u={};return u[l.toLowerCase()]=o.toLowerCase(),u["Webkit"+l]="webkit"+o,u["Moz"+l]="moz"+o,u}var Ci={animationend:$o("Animation","AnimationEnd"),animationiteration:$o("Animation","AnimationIteration"),animationstart:$o("Animation","AnimationStart"),transitionrun:$o("Transition","TransitionRun"),transitionstart:$o("Transition","TransitionStart"),transitioncancel:$o("Transition","TransitionCancel"),transitionend:$o("Transition","TransitionEnd")},ic={},Fr={};Zo&&(Fr=document.createElement("div").style,"AnimationEvent"in window||(delete Ci.animationend.animation,delete Ci.animationiteration.animation,delete Ci.animationstart.animation),"TransitionEvent"in window||delete Ci.transitionend.transition);function Ht(l){if(ic[l])return ic[l];if(!Ci[l])return l;var o=Ci[l],u;for(u in o)if(o.hasOwnProperty(u)&&u in Fr)return ic[l]=o[u];return l}var Kf=Ht("animationend"),oh=Ht("animationiteration"),nb=Ht("animationstart"),Wu=Ht("transitionrun"),Zf=Ht("transitionstart"),oo=Ht("transitioncancel"),D4=Ht("transitionend"),ro=new Map,oc="abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");oc.push("scrollEnd");function Ul(l,o){ro.set(l,o),Br(o,[l])}var Vu=typeof reportError=="function"?reportError:function(l){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var o=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof l=="object"&&l!==null&&typeof l.message=="string"?String(l.message):String(l),error:l});if(!window.dispatchEvent(o))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",l);return}console.error(l)},da=[],al=0,Kn=0;function Sn(){for(var l=al,o=Kn=al=0;o<l;){var u=da[o];da[o++]=null;var f=da[o];da[o++]=null;var g=da[o];da[o++]=null;var v=da[o];if(da[o++]=null,f!==null&&g!==null){var D=f.pending;D===null?g.next=g:(g.next=D.next,D.next=g),f.pending=g}v!==0&&ib(u,g,v)}}function yn(l,o,u,f){da[al++]=l,da[al++]=o,da[al++]=u,da[al++]=f,Kn|=f,l.lanes|=f,l=l.alternate,l!==null&&(l.lanes|=f)}function Zn(l,o,u,f){return yn(l,o,u,f),Jf(l)}function er(l,o){return yn(l,null,null,o),Jf(l)}function ib(l,o,u){l.lanes|=u;var f=l.alternate;f!==null&&(f.lanes|=u);for(var g=!1,v=l.return;v!==null;)v.childLanes|=u,f=v.alternate,f!==null&&(f.childLanes|=u),v.tag===22&&(l=v.stateNode,l===null||l._visibility&1||(g=!0)),l=v,v=v.return;return l.tag===3?(v=l.stateNode,g&&o!==null&&(g=31-Zt(u),l=v.hiddenUpdates,f=l[g],f===null?l[g]=[o]:f.push(o),o.lane=u|536870912),v):null}function Jf(l){if(50<Oc)throw Oc=0,_d=null,Error(s(185));for(var o=l.return;o!==null;)l=o,o=l.return;return l.tag===3?l.stateNode:null}var Hl={};function L4(l,o,u,f){this.tag=l,this.key=u,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.refCleanup=this.ref=null,this.pendingProps=o,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=f,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function La(l,o,u,f){return new L4(l,o,u,f)}function qu(l){return l=l.prototype,!(!l||!l.isReactComponent)}function tr(l,o){var u=l.alternate;return u===null?(u=La(l.tag,o,l.key,l.mode),u.elementType=l.elementType,u.type=l.type,u.stateNode=l.stateNode,u.alternate=l,l.alternate=u):(u.pendingProps=o,u.type=l.type,u.flags=0,u.subtreeFlags=0,u.deletions=null),u.flags=l.flags&65011712,u.childLanes=l.childLanes,u.lanes=l.lanes,u.child=l.child,u.memoizedProps=l.memoizedProps,u.memoizedState=l.memoizedState,u.updateQueue=l.updateQueue,o=l.dependencies,u.dependencies=o===null?null:{lanes:o.lanes,firstContext:o.firstContext},u.sibling=l.sibling,u.index=l.index,u.ref=l.ref,u.refCleanup=l.refCleanup,u}function rh(l,o){l.flags&=65011714;var u=l.alternate;return u===null?(l.childLanes=0,l.lanes=o,l.child=null,l.subtreeFlags=0,l.memoizedProps=null,l.memoizedState=null,l.updateQueue=null,l.dependencies=null,l.stateNode=null):(l.childLanes=u.childLanes,l.lanes=u.lanes,l.child=u.child,l.subtreeFlags=0,l.deletions=null,l.memoizedProps=u.memoizedProps,l.memoizedState=u.memoizedState,l.updateQueue=u.updateQueue,l.type=u.type,o=u.dependencies,l.dependencies=o===null?null:{lanes:o.lanes,firstContext:o.firstContext}),l}function ob(l,o,u,f,g,v){var D=0;if(f=l,typeof l=="function")qu(l)&&(D=1);else if(typeof l=="string")D=R5(l,u,He.current)?26:l==="html"||l==="head"||l==="body"?27:5;else e:switch(l){case ke:return l=La(31,u,o,g),l.elementType=ke,l.lanes=v,l;case G:return ar(u.children,g,v,o);case J:D=8,g|=24;break;case F:return l=La(12,u,o,g|2),l.elementType=F,l.lanes=v,l;case ge:return l=La(13,u,o,g),l.elementType=ge,l.lanes=v,l;case le:return l=La(19,u,o,g),l.elementType=le,l.lanes=v,l;default:if(typeof l=="object"&&l!==null)switch(l.$$typeof){case te:D=10;break e;case ie:D=9;break e;case Te:D=11;break e;case Se:D=14;break e;case be:D=16,f=null;break e}D=29,u=Error(s(130,l===null?"null":typeof l,"")),f=null}return o=La(D,u,o,g),o.elementType=l,o.type=f,o.lanes=v,o}function ar(l,o,u,f){return l=La(7,l,f,o),l.lanes=u,l}function rc(l,o,u){return l=La(6,l,null,o),l.lanes=u,l}function uh(l){var o=La(18,null,null,0);return o.stateNode=l,o}function rb(l,o,u){return o=La(4,l.children!==null?l.children:[],l.key,o),o.lanes=u,o.stateNode={containerInfo:l.containerInfo,pendingChildren:null,implementation:l.implementation},o}var sh=new WeakMap;function Cn(l,o){if(typeof l=="object"&&l!==null){var u=sh.get(l);return u!==void 0?u:(o={value:l,source:o,stack:Ps(o)},sh.set(l,o),o)}return{value:l,source:o,stack:Ps(o)}}var En=[],ju=0,$f=null,_a=0,nn=[],Pl=0,Ei=null,on=1,Ai="";function Jn(l,o){En[ju++]=_a,En[ju++]=$f,$f=l,_a=o}function ch(l,o,u){nn[Pl++]=on,nn[Pl++]=Ai,nn[Pl++]=Ei,Ei=l;var f=on;l=Ai;var g=32-Zt(f)-1;f&=~(1<<g),u+=1;var v=32-Zt(o)+g;if(30<v){var D=g-g%5;v=(f&(1<<D)-1).toString(32),f>>=D,g-=D,on=1<<32-Zt(o)+g|u<<g|f,Ai=v+l}else on=1<<v|u<<g|f,Ai=l}function uc(l){l.return!==null&&(Jn(l,1),ch(l,1,0))}function ub(l){for(;l===$f;)$f=En[--ju],En[ju]=null,_a=En[--ju],En[ju]=null;for(;l===Ei;)Ei=nn[--Pl],nn[Pl]=null,Ai=nn[--Pl],nn[Pl]=null,on=nn[--Pl],nn[Pl]=null}function ed(l,o){nn[Pl++]=on,nn[Pl++]=Ai,nn[Pl++]=Ei,on=o.id,Ai=o.overflow,Ei=l}var ll=null,ia=null,At=!1,uo=null,Ya=!1,so=Error(s(519));function $n(l){var o=Error(s(418,1<arguments.length&&arguments[1]!==void 0&&arguments[1]?"text":"HTML",""));throw cc(Cn(o,l)),so}function td(l){var o=l.stateNode,u=l.type,f=l.memoizedProps;switch(o[$t]=l,o[kl]=f,u){case"dialog":Ct("cancel",o),Ct("close",o);break;case"iframe":case"object":case"embed":Ct("load",o);break;case"video":case"audio":for(u=0;u<Fc.length;u++)Ct(Fc[u],o);break;case"source":Ct("error",o);break;case"img":case"image":case"link":Ct("error",o),Ct("load",o);break;case"details":Ct("toggle",o);break;case"input":Ct("invalid",o),Uf(o,f.value,f.defaultValue,f.checked,f.defaultChecked,f.type,f.name,!0);break;case"select":Ct("invalid",o);break;case"textarea":Ct("invalid",o),Um(o,f.value,f.defaultValue,f.children)}u=f.children,typeof u!="string"&&typeof u!="number"&&typeof u!="bigint"||o.textContent===""+u||f.suppressHydrationWarning===!0||v5(o.textContent,u)?(f.popover!=null&&(Ct("beforetoggle",o),Ct("toggle",o)),f.onScroll!=null&&Ct("scroll",o),f.onScrollEnd!=null&&Ct("scrollend",o),f.onClick!=null&&(o.onclick=pi),o=!0):o=!1,o||$n(l,!0)}function sc(l){for(ll=l.return;ll;)switch(ll.tag){case 5:case 31:case 13:Ya=!1;return;case 27:case 3:Ya=!0;return;default:ll=ll.return}}function co(l){if(l!==ll)return!1;if(!At)return sc(l),At=!0,!1;var o=l.tag,u;if((u=o!==3&&o!==27)&&((u=o===5)&&(u=l.type,u=!(u!=="form"&&u!=="button")||Hc(l.type,l.memoizedProps)),u=!u),u&&ia&&$n(l),sc(l),o===13){if(l=l.memoizedState,l=l!==null?l.dehydrated:null,!l)throw Error(s(317));ia=f1(l)}else if(o===31){if(l=l.memoizedState,l=l!==null?l.dehydrated:null,!l)throw Error(s(317));ia=f1(l)}else o===27?(o=ia,Ii(l.type)?(l=jd,jd=null,ia=l):ia=o):ia=ll?Jl(l.stateNode.nextSibling):null;return!0}function Ur(){ia=ll=null,At=!1}function fh(){var l=uo;return l!==null&&(Ma===null?Ma=l:Ma.push.apply(Ma,l),uo=null),l}function cc(l){uo===null?uo=[l]:uo.push(l)}var sb=yt(null),lr=null,Mi=null;function Wl(l,o,u){k(sb,o._currentValue),o._currentValue=u}function Di(l){l._currentValue=sb.current,rt(sb)}function cb(l,o,u){for(;l!==null;){var f=l.alternate;if((l.childLanes&o)!==o?(l.childLanes|=o,f!==null&&(f.childLanes|=o)):f!==null&&(f.childLanes&o)!==o&&(f.childLanes|=o),l===u)break;l=l.return}}function fo(l,o,u,f){var g=l.child;for(g!==null&&(g.return=l);g!==null;){var v=g.dependencies;if(v!==null){var D=g.child;v=v.firstContext;e:for(;v!==null;){var O=v;v=g;for(var j=0;j<o.length;j++)if(O.context===o[j]){v.lanes|=u,O=v.alternate,O!==null&&(O.lanes|=u),cb(v.return,u,l),f||(D=null);break e}v=O.next}}else if(g.tag===18){if(D=g.return,D===null)throw Error(s(341));D.lanes|=u,v=D.alternate,v!==null&&(v.lanes|=u),cb(D,u,l),D=null}else D=g.child;if(D!==null)D.return=g;else for(D=g;D!==null;){if(D===l){D=null;break}if(g=D.sibling,g!==null){g.return=D.return,D=g;break}D=D.return}g=D}}function nl(l,o,u,f){l=null;for(var g=o,v=!1;g!==null;){if(!v){if((g.flags&524288)!==0)v=!0;else if((g.flags&262144)!==0)break}if(g.tag===10){var D=g.alternate;if(D===null)throw Error(s(387));if(D=D.memoizedProps,D!==null){var O=g.type;zl(g.pendingProps.value,D.value)||(l!==null?l.push(O):l=[O])}}else if(g===Lt.current){if(D=g.alternate,D===null)throw Error(s(387));D.memoizedState.memoizedState!==g.memoizedState.memoizedState&&(l!==null?l.push(Xd):l=[Xd])}g=g.return}l!==null&&fo(o,l,u,f),o.flags|=262144}function Yu(l){for(l=l.firstContext;l!==null;){if(!zl(l.context._currentValue,l.memoizedValue))return!0;l=l.next}return!1}function lt(l){lr=l,Mi=null,l=l.dependencies,l!==null&&(l.firstContext=null)}function Ae(l){return ad(lr,l)}function nr(l,o){return lr===null&&lt(l),ad(l,o)}function ad(l,o){var u=o._currentValue;if(o={context:o,memoizedValue:u,next:null},Mi===null){if(l===null)throw Error(s(308));Mi=o,l.dependencies={lanes:0,firstContext:o},l.flags|=524288}else Mi=Mi.next=o;return u}var za=typeof AbortController<"u"?AbortController:function(){var l=[],o=this.signal={aborted:!1,addEventListener:function(u,f){l.push(f)}};this.abort=function(){o.aborted=!0,l.forEach(function(u){return u()})}},dh=t.unstable_scheduleCallback,bh=t.unstable_NormalPriority,Ia={$$typeof:te,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0};function ld(){return{controller:new za,data:new Map,refCount:0}}function nd(l){l.refCount--,l.refCount===0&&dh(bh,function(){l.controller.abort()})}var Qu=null,id=0,Hr=0,Pa=null;function qt(l,o){if(Qu===null){var u=Qu=[];id=0,Hr=l1(),Pa={status:"pending",value:void 0,then:function(f){u.push(f)}}}return id++,o.then(od,od),o}function od(){if(--id===0&&Qu!==null){Pa!==null&&(Pa.status="fulfilled");var l=Qu;Qu=null,Hr=0,Pa=null;for(var o=0;o<l.length;o++)(0,l[o])()}}function rd(l,o){var u=[],f={status:"pending",value:null,reason:null,then:function(g){u.push(g)}};return l.then(function(){f.status="fulfilled",f.value=o;for(var g=0;g<u.length;g++)(0,u[g])(o)},function(g){for(f.status="rejected",f.reason=g,g=0;g<u.length;g++)(0,u[g])(void 0)}),f}var ir=P.S;P.S=function(l,o){o5=ja(),typeof o=="object"&&o!==null&&typeof o.then=="function"&&qt(l,o),ir!==null&&ir(l,o)};var An=yt(null);function Mn(){var l=An.current;return l!==null?l:ta.pooledCache}function fc(l,o){o===null?k(An,An.current):k(An,o.pool)}function Xu(){var l=Mn();return l===null?null:{parent:Ia._currentValue,pool:l}}var Pr=Error(s(460)),Ku=Error(s(474)),dc=Error(s(542)),Zu={then:function(){}};function mh(l){return l=l.status,l==="fulfilled"||l==="rejected"}function hh(l,o,u){switch(u=l[u],u===void 0?l.push(o):u!==o&&(o.then(pi,pi),o=u),o.status){case"fulfilled":return o.value;case"rejected":throw l=o.reason,fb(l),l;default:if(typeof o.status=="string")o.then(pi,pi);else{if(l=ta,l!==null&&100<l.shellSuspendCounter)throw Error(s(482));l=o,l.status="pending",l.then(function(f){if(o.status==="pending"){var g=o;g.status="fulfilled",g.value=f}},function(f){if(o.status==="pending"){var g=o;g.status="rejected",g.reason=f}})}switch(o.status){case"fulfilled":return o.value;case"rejected":throw l=o.reason,fb(l),l}throw Vr=o,Pr}}function Wr(l){try{var o=l._init;return o(l._payload)}catch(u){throw u!==null&&typeof u=="object"&&typeof u.then=="function"?(Vr=u,Pr):u}}var Vr=null;function ph(){if(Vr===null)throw Error(s(459));var l=Vr;return Vr=null,l}function fb(l){if(l===Pr||l===dc)throw Error(s(483))}var qr=null,Ju=0;function ud(l){var o=Ju;return Ju+=1,qr===null&&(qr=[]),hh(qr,l,o)}function bc(l,o){o=o.props.ref,l.ref=o!==void 0?o:null}function sd(l,o){throw o.$$typeof===R?Error(s(525)):(l=Object.prototype.toString.call(o),Error(s(31,l==="[object Object]"?"object with keys {"+Object.keys(o).join(", ")+"}":l)))}function z4(l){function o(ee,K){if(l){var ae=ee.deletions;ae===null?(ee.deletions=[K],ee.flags|=16):ae.push(K)}}function u(ee,K){if(!l)return null;for(;K!==null;)o(ee,K),K=K.sibling;return null}function f(ee){for(var K=new Map;ee!==null;)ee.key!==null?K.set(ee.key,ee):K.set(ee.index,ee),ee=ee.sibling;return K}function g(ee,K){return ee=tr(ee,K),ee.index=0,ee.sibling=null,ee}function v(ee,K,ae){return ee.index=ae,l?(ae=ee.alternate,ae!==null?(ae=ae.index,ae<K?(ee.flags|=67108866,K):ae):(ee.flags|=67108866,K)):(ee.flags|=1048576,K)}function D(ee){return l&&ee.alternate===null&&(ee.flags|=67108866),ee}function O(ee,K,ae,ye){return K===null||K.tag!==6?(K=rc(ae,ee.mode,ye),K.return=ee,K):(K=g(K,ae),K.return=ee,K)}function j(ee,K,ae,ye){var Ye=ae.type;return Ye===G?he(ee,K,ae.props.children,ye,ae.key):K!==null&&(K.elementType===Ye||typeof Ye=="object"&&Ye!==null&&Ye.$$typeof===be&&Wr(Ye)===K.type)?(K=g(K,ae.props),bc(K,ae),K.return=ee,K):(K=ob(ae.type,ae.key,ae.props,null,ee.mode,ye),bc(K,ae),K.return=ee,K)}function re(ee,K,ae,ye){return K===null||K.tag!==4||K.stateNode.containerInfo!==ae.containerInfo||K.stateNode.implementation!==ae.implementation?(K=rb(ae,ee.mode,ye),K.return=ee,K):(K=g(K,ae.children||[]),K.return=ee,K)}function he(ee,K,ae,ye,Ye){return K===null||K.tag!==7?(K=ar(ae,ee.mode,ye,Ye),K.return=ee,K):(K=g(K,ae),K.return=ee,K)}function Ee(ee,K,ae){if(typeof K=="string"&&K!==""||typeof K=="number"||typeof K=="bigint")return K=rc(""+K,ee.mode,ae),K.return=ee,K;if(typeof K=="object"&&K!==null){switch(K.$$typeof){case z:return ae=ob(K.type,K.key,K.props,null,ee.mode,ae),bc(ae,K),ae.return=ee,ae;case U:return K=rb(K,ee.mode,ae),K.return=ee,K;case be:return K=Wr(K),Ee(ee,K,ae)}if(Ie(K)||De(K))return K=ar(K,ee.mode,ae,null),K.return=ee,K;if(typeof K.then=="function")return Ee(ee,ud(K),ae);if(K.$$typeof===te)return Ee(ee,nr(ee,K),ae);sd(ee,K)}return null}function ue(ee,K,ae,ye){var Ye=K!==null?K.key:null;if(typeof ae=="string"&&ae!==""||typeof ae=="number"||typeof ae=="bigint")return Ye!==null?null:O(ee,K,""+ae,ye);if(typeof ae=="object"&&ae!==null){switch(ae.$$typeof){case z:return ae.key===Ye?j(ee,K,ae,ye):null;case U:return ae.key===Ye?re(ee,K,ae,ye):null;case be:return ae=Wr(ae),ue(ee,K,ae,ye)}if(Ie(ae)||De(ae))return Ye!==null?null:he(ee,K,ae,ye,null);if(typeof ae.then=="function")return ue(ee,K,ud(ae),ye);if(ae.$$typeof===te)return ue(ee,K,nr(ee,ae),ye);sd(ee,ae)}return null}function de(ee,K,ae,ye,Ye){if(typeof ye=="string"&&ye!==""||typeof ye=="number"||typeof ye=="bigint")return ee=ee.get(ae)||null,O(K,ee,""+ye,Ye);if(typeof ye=="object"&&ye!==null){switch(ye.$$typeof){case z:return ee=ee.get(ye.key===null?ae:ye.key)||null,j(K,ee,ye,Ye);case U:return ee=ee.get(ye.key===null?ae:ye.key)||null,re(K,ee,ye,Ye);case be:return ye=Wr(ye),de(ee,K,ae,ye,Ye)}if(Ie(ye)||De(ye))return ee=ee.get(ae)||null,he(K,ee,ye,Ye,null);if(typeof ye.then=="function")return de(ee,K,ae,ud(ye),Ye);if(ye.$$typeof===te)return de(ee,K,ae,nr(K,ye),Ye);sd(K,ye)}return null}function Pe(ee,K,ae,ye){for(var Ye=null,Ot=null,We=K,ut=K=0,ft=null;We!==null&&ut<ae.length;ut++){We.index>ut?(ft=We,We=null):ft=We.sibling;var Gt=ue(ee,We,ae[ut],ye);if(Gt===null){We===null&&(We=ft);break}l&&We&&Gt.alternate===null&&o(ee,We),K=v(Gt,K,ut),Ot===null?Ye=Gt:Ot.sibling=Gt,Ot=Gt,We=ft}if(ut===ae.length)return u(ee,We),At&&Jn(ee,ut),Ye;if(We===null){for(;ut<ae.length;ut++)We=Ee(ee,ae[ut],ye),We!==null&&(K=v(We,K,ut),Ot===null?Ye=We:Ot.sibling=We,Ot=We);return At&&Jn(ee,ut),Ye}for(We=f(We);ut<ae.length;ut++)ft=de(We,ee,ut,ae[ut],ye),ft!==null&&(l&&ft.alternate!==null&&We.delete(ft.key===null?ut:ft.key),K=v(ft,K,ut),Ot===null?Ye=ft:Ot.sibling=ft,Ot=ft);return l&&We.forEach(function(ki){return o(ee,ki)}),At&&Jn(ee,ut),Ye}function Ze(ee,K,ae,ye){if(ae==null)throw Error(s(151));for(var Ye=null,Ot=null,We=K,ut=K=0,ft=null,Gt=ae.next();We!==null&&!Gt.done;ut++,Gt=ae.next()){We.index>ut?(ft=We,We=null):ft=We.sibling;var ki=ue(ee,We,Gt.value,ye);if(ki===null){We===null&&(We=ft);break}l&&We&&ki.alternate===null&&o(ee,We),K=v(ki,K,ut),Ot===null?Ye=ki:Ot.sibling=ki,Ot=ki,We=ft}if(Gt.done)return u(ee,We),At&&Jn(ee,ut),Ye;if(We===null){for(;!Gt.done;ut++,Gt=ae.next())Gt=Ee(ee,Gt.value,ye),Gt!==null&&(K=v(Gt,K,ut),Ot===null?Ye=Gt:Ot.sibling=Gt,Ot=Gt);return At&&Jn(ee,ut),Ye}for(We=f(We);!Gt.done;ut++,Gt=ae.next())Gt=de(We,ee,ut,Gt.value,ye),Gt!==null&&(l&&Gt.alternate!==null&&We.delete(Gt.key===null?ut:Gt.key),K=v(Gt,K,ut),Ot===null?Ye=Gt:Ot.sibling=Gt,Ot=Gt);return l&&We.forEach(function(Bp){return o(ee,Bp)}),At&&Jn(ee,ut),Ye}function la(ee,K,ae,ye){if(typeof ae=="object"&&ae!==null&&ae.type===G&&ae.key===null&&(ae=ae.props.children),typeof ae=="object"&&ae!==null){switch(ae.$$typeof){case z:e:{for(var Ye=ae.key;K!==null;){if(K.key===Ye){if(Ye=ae.type,Ye===G){if(K.tag===7){u(ee,K.sibling),ye=g(K,ae.props.children),ye.return=ee,ee=ye;break e}}else if(K.elementType===Ye||typeof Ye=="object"&&Ye!==null&&Ye.$$typeof===be&&Wr(Ye)===K.type){u(ee,K.sibling),ye=g(K,ae.props),bc(ye,ae),ye.return=ee,ee=ye;break e}u(ee,K);break}else o(ee,K);K=K.sibling}ae.type===G?(ye=ar(ae.props.children,ee.mode,ye,ae.key),ye.return=ee,ee=ye):(ye=ob(ae.type,ae.key,ae.props,null,ee.mode,ye),bc(ye,ae),ye.return=ee,ee=ye)}return D(ee);case U:e:{for(Ye=ae.key;K!==null;){if(K.key===Ye)if(K.tag===4&&K.stateNode.containerInfo===ae.containerInfo&&K.stateNode.implementation===ae.implementation){u(ee,K.sibling),ye=g(K,ae.children||[]),ye.return=ee,ee=ye;break e}else{u(ee,K);break}else o(ee,K);K=K.sibling}ye=rb(ae,ee.mode,ye),ye.return=ee,ee=ye}return D(ee);case be:return ae=Wr(ae),la(ee,K,ae,ye)}if(Ie(ae))return Pe(ee,K,ae,ye);if(De(ae)){if(Ye=De(ae),typeof Ye!="function")throw Error(s(150));return ae=Ye.call(ae),Ze(ee,K,ae,ye)}if(typeof ae.then=="function")return la(ee,K,ud(ae),ye);if(ae.$$typeof===te)return la(ee,K,nr(ee,ae),ye);sd(ee,ae)}return typeof ae=="string"&&ae!==""||typeof ae=="number"||typeof ae=="bigint"?(ae=""+ae,K!==null&&K.tag===6?(u(ee,K.sibling),ye=g(K,ae),ye.return=ee,ee=ye):(u(ee,K),ye=rc(ae,ee.mode,ye),ye.return=ee,ee=ye),D(ee)):u(ee,K)}return function(ee,K,ae,ye){try{Ju=0;var Ye=la(ee,K,ae,ye);return qr=null,Ye}catch(We){if(We===Pr||We===dc)throw We;var Ot=La(29,We,null,ee.mode);return Ot.lanes=ye,Ot.return=ee,Ot}finally{}}}var jr=z4(!0),gh=z4(!1),or=!1;function cd(l){l.updateQueue={baseState:l.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function db(l,o){l=l.updateQueue,o.updateQueue===l&&(o.updateQueue={baseState:l.baseState,firstBaseUpdate:l.firstBaseUpdate,lastBaseUpdate:l.lastBaseUpdate,shared:l.shared,callbacks:null})}function rr(l){return{lane:l,tag:0,payload:null,callback:null,next:null}}function Dn(l,o,u){var f=l.updateQueue;if(f===null)return null;if(f=f.shared,(wt&2)!==0){var g=f.pending;return g===null?o.next=o:(o.next=g.next,g.next=o),f.pending=o,o=Jf(l),ib(l,null,u),o}return yn(l,f,o,u),Jf(l)}function Yr(l,o,u){if(o=o.updateQueue,o!==null&&(o=o.shared,(u&4194048)!==0)){var f=o.lanes;f&=l.pendingLanes,u|=f,o.lanes=u,$i(l,u)}}function bb(l,o){var u=l.updateQueue,f=l.alternate;if(f!==null&&(f=f.updateQueue,u===f)){var g=null,v=null;if(u=u.firstBaseUpdate,u!==null){do{var D={lane:u.lane,tag:u.tag,payload:u.payload,callback:null,next:null};v===null?g=v=D:v=v.next=D,u=u.next}while(u!==null);v===null?g=v=o:v=v.next=o}else g=v=o;u={baseState:f.baseState,firstBaseUpdate:g,lastBaseUpdate:v,shared:f.shared,callbacks:f.callbacks},l.updateQueue=u;return}l=u.lastBaseUpdate,l===null?u.firstBaseUpdate=o:l.next=o,u.lastBaseUpdate=o}var Th=!1;function Qr(){if(Th){var l=Pa;if(l!==null)throw l}}function bo(l,o,u,f){Th=!1;var g=l.updateQueue;or=!1;var v=g.firstBaseUpdate,D=g.lastBaseUpdate,O=g.shared.pending;if(O!==null){g.shared.pending=null;var j=O,re=j.next;j.next=null,D===null?v=re:D.next=re,D=j;var he=l.alternate;he!==null&&(he=he.updateQueue,O=he.lastBaseUpdate,O!==D&&(O===null?he.firstBaseUpdate=re:O.next=re,he.lastBaseUpdate=j))}if(v!==null){var Ee=g.baseState;D=0,he=re=j=null,O=v;do{var ue=O.lane&-536870913,de=ue!==O.lane;if(de?(Tt&ue)===ue:(f&ue)===ue){ue!==0&&ue===Hr&&(Th=!0),he!==null&&(he=he.next={lane:0,tag:O.tag,payload:O.payload,callback:null,next:null});e:{var Pe=l,Ze=O;ue=o;var la=u;switch(Ze.tag){case 1:if(Pe=Ze.payload,typeof Pe=="function"){Ee=Pe.call(la,Ee,ue);break e}Ee=Pe;break e;case 3:Pe.flags=Pe.flags&-65537|128;case 0:if(Pe=Ze.payload,ue=typeof Pe=="function"?Pe.call(la,Ee,ue):Pe,ue==null)break e;Ee=L({},Ee,ue);break e;case 2:or=!0}}ue=O.callback,ue!==null&&(l.flags|=64,de&&(l.flags|=8192),de=g.callbacks,de===null?g.callbacks=[ue]:de.push(ue))}else de={lane:ue,tag:O.tag,payload:O.payload,callback:O.callback,next:null},he===null?(re=he=de,j=Ee):he=he.next=de,D|=ue;if(O=O.next,O===null){if(O=g.shared.pending,O===null)break;de=O,O=de.next,de.next=null,g.lastBaseUpdate=de,g.shared.pending=null}}while(!0);he===null&&(j=Ee),g.baseState=j,g.firstBaseUpdate=re,g.lastBaseUpdate=he,v===null&&(g.shared.lanes=0),Oi|=D,l.lanes=D,l.memoizedState=Ee}}function mb(l,o){if(typeof l!="function")throw Error(s(191,l));l.call(o)}function Xr(l,o){var u=l.callbacks;if(u!==null)for(l.callbacks=null,l=0;l<u.length;l++)mb(u[l],o)}var Qa=yt(null),$u=yt(0);function x4(l,o){l=Bi,k($u,l),k(Qa,o),Bi=l|o.baseLanes}function fd(){k($u,Bi),k(Qa,Qa.current)}function mc(){Bi=$u.current,rt(Qa),rt($u)}var Vl=yt(null),Ln=null;function mo(l){var o=l.alternate;k(ba,ba.current&1),k(Vl,l),Ln===null&&(o===null||Qa.current!==null||o.memoizedState!==null)&&(Ln=l)}function hc(l){k(ba,ba.current),k(Vl,l),Ln===null&&(Ln=l)}function hb(l){l.tag===22?(k(ba,ba.current),k(Vl,l),Ln===null&&(Ln=l)):Li()}function Li(){k(ba,ba.current),k(Vl,Vl.current)}function ql(l){rt(Vl),Ln===l&&(Ln=null),rt(ba)}var ba=yt(0);function pc(l){for(var o=l;o!==null;){if(o.tag===13){var u=o.memoizedState;if(u!==null&&(u=u.dehydrated,u===null||li(u)||ru(u)))return o}else if(o.tag===19&&(o.memoizedProps.revealOrder==="forwards"||o.memoizedProps.revealOrder==="backwards"||o.memoizedProps.revealOrder==="unstable_legacy-backwards"||o.memoizedProps.revealOrder==="together")){if((o.flags&128)!==0)return o}else if(o.child!==null){o.child.return=o,o=o.child;continue}if(o===l)break;for(;o.sibling===null;){if(o.return===null||o.return===l)return null;o=o.return}o.sibling.return=o.return,o=o.sibling}return null}var ho=0,st=null,jt=null,wa=null,es=!1,ts=!1,ur=!1,dd=0,gc=0,Kr=null,R4=0;function Ea(){throw Error(s(321))}function sr(l,o){if(o===null)return!1;for(var u=0;u<o.length&&u<l.length;u++)if(!zl(l[u],o[u]))return!1;return!0}function bd(l,o,u,f,g,v){return ho=v,st=o,o.memoizedState=null,o.updateQueue=null,o.lanes=0,P.H=l===null||l.memoizedState===null?k4:Bb,ur=!1,v=u(f,g),ur=!1,ts&&(v=N4(o,u,f,g)),pb(l),v}function pb(l){P.H=Cd;var o=jt!==null&&jt.next!==null;if(ho=0,wa=jt=st=null,es=!1,gc=0,Kr=null,o)throw Error(s(300));l===null||Ga||(l=l.dependencies,l!==null&&Yu(l)&&(Ga=!0))}function N4(l,o,u,f){st=l;var g=0;do{if(ts&&(Kr=null),gc=0,ts=!1,25<=g)throw Error(s(301));if(g+=1,wa=jt=null,l.updateQueue!=null){var v=l.updateQueue;v.lastEffect=null,v.events=null,v.stores=null,v.memoCache!=null&&(v.memoCache.index=0)}P.H=F4,v=o(u,f)}while(ts);return v}function G8(){var l=P.H,o=l.useState()[0];return o=typeof o.then=="function"?ls(o):o,l=l.useState()[0],(jt!==null?jt.memoizedState:null)!==l&&(st.flags|=1024),o}function gb(){var l=dd!==0;return dd=0,l}function as(l,o,u){o.updateQueue=l.updateQueue,o.flags&=-2053,l.lanes&=~u}function md(l){if(es){for(l=l.memoizedState;l!==null;){var o=l.queue;o!==null&&(o.pending=null),l=l.next}es=!1}ho=0,wa=jt=st=null,ts=!1,gc=dd=0,Kr=null}function il(){var l={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return wa===null?st.memoizedState=wa=l:wa=wa.next=l,wa}function xa(){if(jt===null){var l=st.alternate;l=l!==null?l.memoizedState:null}else l=jt.next;var o=wa===null?st.memoizedState:wa.next;if(o!==null)wa=o,jt=l;else{if(l===null)throw st.alternate===null?Error(s(467)):Error(s(310));jt=l,l={memoizedState:jt.memoizedState,baseState:jt.baseState,baseQueue:jt.baseQueue,queue:jt.queue,next:null},wa===null?st.memoizedState=wa=l:wa=wa.next=l}return wa}function hd(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function ls(l){var o=gc;return gc+=1,Kr===null&&(Kr=[]),l=hh(Kr,l,o),o=st,(wa===null?o.memoizedState:wa.next)===null&&(o=o.alternate,P.H=o===null||o.memoizedState===null?k4:Bb),l}function Tc(l){if(l!==null&&typeof l=="object"){if(typeof l.then=="function")return ls(l);if(l.$$typeof===te)return Ae(l)}throw Error(s(438,String(l)))}function Tb(l){var o=null,u=st.updateQueue;if(u!==null&&(o=u.memoCache),o==null){var f=st.alternate;f!==null&&(f=f.updateQueue,f!==null&&(f=f.memoCache,f!=null&&(o={data:f.data.map(function(g){return g.slice()}),index:0})))}if(o==null&&(o={data:[],index:0}),u===null&&(u=hd(),st.updateQueue=u),u.memoCache=o,u=o.data[o.index],u===void 0)for(u=o.data[o.index]=Array(l),f=0;f<l;f++)u[f]=Ce;return o.index++,u}function po(l,o){return typeof o=="function"?o(l):o}function go(l){var o=xa();return vb(o,jt,l)}function vb(l,o,u){var f=l.queue;if(f===null)throw Error(s(311));f.lastRenderedReducer=u;var g=l.baseQueue,v=f.pending;if(v!==null){if(g!==null){var D=g.next;g.next=v.next,v.next=D}o.baseQueue=g=v,f.pending=null}if(v=l.baseState,g===null)l.memoizedState=v;else{o=g.next;var O=D=null,j=null,re=o,he=!1;do{var Ee=re.lane&-536870913;if(Ee!==re.lane?(Tt&Ee)===Ee:(ho&Ee)===Ee){var ue=re.revertLane;if(ue===0)j!==null&&(j=j.next={lane:0,revertLane:0,gesture:null,action:re.action,hasEagerState:re.hasEagerState,eagerState:re.eagerState,next:null}),Ee===Hr&&(he=!0);else if((ho&ue)===ue){re=re.next,ue===Hr&&(he=!0);continue}else Ee={lane:0,revertLane:re.revertLane,gesture:null,action:re.action,hasEagerState:re.hasEagerState,eagerState:re.eagerState,next:null},j===null?(O=j=Ee,D=v):j=j.next=Ee,st.lanes|=ue,Oi|=ue;Ee=re.action,ur&&u(v,Ee),v=re.hasEagerState?re.eagerState:u(v,Ee)}else ue={lane:Ee,revertLane:re.revertLane,gesture:re.gesture,action:re.action,hasEagerState:re.hasEagerState,eagerState:re.eagerState,next:null},j===null?(O=j=ue,D=v):j=j.next=ue,st.lanes|=Ee,Oi|=Ee;re=re.next}while(re!==null&&re!==o);if(j===null?D=v:j.next=O,!zl(v,l.memoizedState)&&(Ga=!0,he&&(u=Pa,u!==null)))throw u;l.memoizedState=v,l.baseState=D,l.baseQueue=j,f.lastRenderedState=v}return g===null&&(f.lanes=0),[l.memoizedState,f.dispatch]}function Sb(l){var o=xa(),u=o.queue;if(u===null)throw Error(s(311));u.lastRenderedReducer=l;var f=u.dispatch,g=u.pending,v=o.memoizedState;if(g!==null){u.pending=null;var D=g=g.next;do v=l(v,D.action),D=D.next;while(D!==g);zl(v,o.memoizedState)||(Ga=!0),o.memoizedState=v,o.baseQueue===null&&(o.baseState=v),u.lastRenderedState=v}return[v,f]}function vh(l,o,u){var f=st,g=xa(),v=At;if(v){if(u===void 0)throw Error(s(407));u=u()}else u=o();var D=!zl((jt||g).memoizedState,u);if(D&&(g.memoizedState=u,Ga=!0),g=g.queue,Mb(yb.bind(null,f,g,l),[l]),g.getSnapshot!==o||D||wa!==null&&wa.memoizedState.tag&1){if(f.flags|=2048,is(9,{destroy:void 0},Sh.bind(null,f,g,u,o),null),ta===null)throw Error(s(349));v||(ho&127)!==0||pd(f,o,u)}return u}function pd(l,o,u){l.flags|=16384,l={getSnapshot:o,value:u},o=st.updateQueue,o===null?(o=hd(),st.updateQueue=o,o.stores=[l]):(u=o.stores,u===null?o.stores=[l]:u.push(l))}function Sh(l,o,u,f){o.value=u,o.getSnapshot=f,Cb(o)&&Eb(l)}function yb(l,o,u){return u(function(){Cb(o)&&Eb(l)})}function Cb(l){var o=l.getSnapshot;l=l.value;try{var u=o();return!zl(l,u)}catch{return!0}}function Eb(l){var o=er(l,2);o!==null&&Zl(o,l,2)}function yh(l){var o=il();if(typeof l=="function"){var u=l;if(l=u(),ur){Gl(!0);try{u()}finally{Gl(!1)}}}return o.memoizedState=o.baseState=l,o.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:po,lastRenderedState:l},o}function ol(l,o,u,f){return l.baseState=u,vb(l,jt,typeof f=="function"?f:po)}function B4(l,o,u,f,g){if(yd(l))throw Error(s(485));if(l=o.action,l!==null){var v={payload:g,action:l,next:null,isTransition:!0,status:"pending",value:null,reason:null,listeners:[],then:function(D){v.listeners.push(D)}};P.T!==null?u(!0):v.isTransition=!1,f(v),u=o.pending,u===null?(v.next=o.pending=v,Ch(o,v)):(v.next=u.next,o.pending=u.next=v)}}function Ch(l,o){var u=o.action,f=o.payload,g=l.state;if(o.isTransition){var v=P.T,D={};P.T=D;try{var O=u(g,f),j=P.S;j!==null&&j(D,O),Eh(l,o,O)}catch(re){ns(l,o,re)}finally{v!==null&&D.types!==null&&(v.types=D.types),P.T=v}}else try{v=u(g,f),Eh(l,o,v)}catch(re){ns(l,o,re)}}function Eh(l,o,u){u!==null&&typeof u=="object"&&typeof u.then=="function"?u.then(function(f){Ah(l,o,f)},function(f){return ns(l,o,f)}):Ah(l,o,u)}function Ah(l,o,u){o.status="fulfilled",o.value=u,Mh(o),l.state=u,o=l.pending,o!==null&&(u=o.next,u===o?l.pending=null:(u=u.next,o.next=u,Ch(l,u)))}function ns(l,o,u){var f=l.pending;if(l.pending=null,f!==null){f=f.next;do o.status="rejected",o.reason=u,Mh(o),o=o.next;while(o!==f)}l.action=null}function Mh(l){l=l.listeners;for(var o=0;o<l.length;o++)(0,l[o])()}function gd(l,o){return o}function Dh(l,o){if(At){var u=ta.formState;if(u!==null){e:{var f=st;if(At){if(ia){t:{for(var g=ia,v=Ya;g.nodeType!==8;){if(!v){g=null;break t}if(g=Jl(g.nextSibling),g===null){g=null;break t}}v=g.data,g=v==="F!"||v==="F"?g:null}if(g){ia=Jl(g.nextSibling),f=g.data==="F!";break e}}$n(f)}f=!1}f&&(o=u[0])}}return u=il(),u.memoizedState=u.baseState=o,f={pending:null,lanes:0,dispatch:null,lastRenderedReducer:gd,lastRenderedState:o},u.queue=f,u=Rb.bind(null,st,f),f.dispatch=u,f=yh(!1),v=Zr.bind(null,st,!1,f.queue),f=il(),g={state:o,dispatch:null,action:l,pending:null},f.queue=g,u=B4.bind(null,st,g,v,u),g.dispatch=u,f.memoizedState=l,[o,u,!1]}function O4(l){var o=xa();return Td(o,jt,l)}function Td(l,o,u){if(o=vb(l,o,gd)[0],l=go(po)[0],typeof o=="object"&&o!==null&&typeof o.then=="function")try{var f=ls(o)}catch(D){throw D===Pr?dc:D}else f=o;o=xa();var g=o.queue,v=g.dispatch;return u!==o.memoizedState&&(st.flags|=2048,is(9,{destroy:void 0},Lh.bind(null,g,u),null)),[f,v,l]}function Lh(l,o){l.action=o}function zh(l){var o=xa(),u=jt;if(u!==null)return Td(o,u,l);xa(),o=o.memoizedState,u=xa();var f=u.queue.dispatch;return u.memoizedState=l,[o,f,!1]}function is(l,o,u,f){return l={tag:l,create:u,deps:f,inst:o,next:null},o=st.updateQueue,o===null&&(o=hd(),st.updateQueue=o),u=o.lastEffect,u===null?o.lastEffect=l.next=l:(f=u.next,u.next=l,l.next=f,o.lastEffect=l),l}function xh(){return xa().memoizedState}function vc(l,o,u,f){var g=il();st.flags|=l,g.memoizedState=is(1|o,{destroy:void 0},u,f===void 0?null:f)}function Sc(l,o,u,f){var g=xa();f=f===void 0?null:f;var v=g.memoizedState.inst;jt!==null&&f!==null&&sr(f,jt.memoizedState.deps)?g.memoizedState=is(o,v,u,f):(st.flags|=l,g.memoizedState=is(1|o,v,u,f))}function Ab(l,o){vc(8390656,8,l,o)}function Mb(l,o){Sc(2048,8,l,o)}function Rh(l){st.flags|=4;var o=st.updateQueue;if(o===null)o=hd(),st.updateQueue=o,o.events=[l];else{var u=o.events;u===null?o.events=[l]:u.push(l)}}function vd(l){var o=xa().memoizedState;return Rh({ref:o,nextImpl:l}),function(){if((wt&2)!==0)throw Error(s(440));return o.impl.apply(void 0,arguments)}}function Db(l,o){return Sc(4,2,l,o)}function Nh(l,o){return Sc(4,4,l,o)}function Lb(l,o){if(typeof o=="function"){l=l();var u=o(l);return function(){typeof u=="function"?u():o(null)}}if(o!=null)return l=l(),o.current=l,function(){o.current=null}}function Bh(l,o,u){u=u!=null?u.concat([l]):null,Sc(4,4,Lb.bind(null,o,l),u)}function zi(){}function zb(l,o){var u=xa();o=o===void 0?null:o;var f=u.memoizedState;return o!==null&&sr(o,f[1])?f[0]:(u.memoizedState=[l,o],l)}function _4(l,o){var u=xa();o=o===void 0?null:o;var f=u.memoizedState;if(o!==null&&sr(o,f[1]))return f[0];if(f=l(),ur){Gl(!0);try{l()}finally{Gl(!1)}}return u.memoizedState=[f,o],f}function Sd(l,o,u){return u===void 0||(ho&1073741824)!==0&&(Tt&261930)===0?l.memoizedState=o:(l.memoizedState=u,l=X4(),st.lanes|=l,Oi|=l,u)}function To(l,o,u,f){return zl(u,o)?u:Qa.current!==null?(l=Sd(l,u,f),zl(l,o)||(Ga=!0),l):(ho&42)===0||(ho&1073741824)!==0&&(Tt&261930)===0?(Ga=!0,l.memoizedState=u):(l=X4(),st.lanes|=l,Oi|=l,o)}function xb(l,o,u,f,g){var v=oe.p;oe.p=v!==0&&8>v?v:8;var D=P.T,O={};P.T=O,Zr(l,!1,o,u);try{var j=g(),re=P.S;if(re!==null&&re(O,j),j!==null&&typeof j=="object"&&typeof j.then=="function"){var he=rd(j,f);cr(l,o,he,cn(l))}else cr(l,o,f,cn(l))}catch(Ee){cr(l,o,{then:function(){},status:"rejected",reason:Ee},cn())}finally{oe.p=v,D!==null&&O.types!==null&&(D.types=O.types),P.T=D}}function I4(){}function yc(l,o,u,f){if(l.tag!==5)throw Error(s(476));var g=Cc(l).queue;xb(l,g,o,$,u===null?I4:function(){return ea(l),u(f)})}function Cc(l){var o=l.memoizedState;if(o!==null)return o;o={memoizedState:$,baseState:$,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:po,lastRenderedState:$},next:null};var u={};return o.next={memoizedState:u,baseState:u,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:po,lastRenderedState:u},next:null},l.memoizedState=o,l=l.alternate,l!==null&&(l.memoizedState=o),o}function ea(l){var o=Cc(l);o.next===null&&(o=l.alternate.memoizedState),cr(l,o.next.queue,{},cn())}function Oh(){return Ae(Xd)}function w4(){return xa().memoizedState}function _h(){return xa().memoizedState}function vo(l){for(var o=l.return;o!==null;){switch(o.tag){case 24:case 3:var u=cn();l=rr(u);var f=Dn(o,l,u);f!==null&&(Zl(f,o,u),Yr(f,o,u)),o={cache:ld()},l.payload=o;return}o=o.return}}function G4(l,o,u){var f=cn();u={lane:f,revertLane:0,gesture:null,action:u,hasEagerState:!1,eagerState:null,next:null},yd(l)?Nb(o,u):(u=Zn(l,o,u,f),u!==null&&(Zl(u,l,f),Ih(u,o,f)))}function Rb(l,o,u){var f=cn();cr(l,o,u,f)}function cr(l,o,u,f){var g={lane:f,revertLane:0,gesture:null,action:u,hasEagerState:!1,eagerState:null,next:null};if(yd(l))Nb(o,g);else{var v=l.alternate;if(l.lanes===0&&(v===null||v.lanes===0)&&(v=o.lastRenderedReducer,v!==null))try{var D=o.lastRenderedState,O=v(D,u);if(g.hasEagerState=!0,g.eagerState=O,zl(O,D))return yn(l,o,g,0),ta===null&&Sn(),!1}catch{}finally{}if(u=Zn(l,o,g,f),u!==null)return Zl(u,l,f),Ih(u,o,f),!0}return!1}function Zr(l,o,u,f){if(f={lane:2,revertLane:l1(),gesture:null,action:f,hasEagerState:!1,eagerState:null,next:null},yd(l)){if(o)throw Error(s(479))}else o=Zn(l,u,f,2),o!==null&&Zl(o,l,2)}function yd(l){var o=l.alternate;return l===st||o!==null&&o===st}function Nb(l,o){ts=es=!0;var u=l.pending;u===null?o.next=o:(o.next=u.next,u.next=o),l.pending=o}function Ih(l,o,u){if((u&4194048)!==0){var f=o.lanes;f&=l.pendingLanes,u|=f,o.lanes=u,$i(l,u)}}var Cd={readContext:Ae,use:Tc,useCallback:Ea,useContext:Ea,useEffect:Ea,useImperativeHandle:Ea,useLayoutEffect:Ea,useInsertionEffect:Ea,useMemo:Ea,useReducer:Ea,useRef:Ea,useState:Ea,useDebugValue:Ea,useDeferredValue:Ea,useTransition:Ea,useSyncExternalStore:Ea,useId:Ea,useHostTransitionStatus:Ea,useFormState:Ea,useActionState:Ea,useOptimistic:Ea,useMemoCache:Ea,useCacheRefresh:Ea};Cd.useEffectEvent=Ea;var k4={readContext:Ae,use:Tc,useCallback:function(l,o){return il().memoizedState=[l,o===void 0?null:o],l},useContext:Ae,useEffect:Ab,useImperativeHandle:function(l,o,u){u=u!=null?u.concat([l]):null,vc(4194308,4,Lb.bind(null,o,l),u)},useLayoutEffect:function(l,o){return vc(4194308,4,l,o)},useInsertionEffect:function(l,o){vc(4,2,l,o)},useMemo:function(l,o){var u=il();o=o===void 0?null:o;var f=l();if(ur){Gl(!0);try{l()}finally{Gl(!1)}}return u.memoizedState=[f,o],f},useReducer:function(l,o,u){var f=il();if(u!==void 0){var g=u(o);if(ur){Gl(!0);try{u(o)}finally{Gl(!1)}}}else g=o;return f.memoizedState=f.baseState=g,l={pending:null,lanes:0,dispatch:null,lastRenderedReducer:l,lastRenderedState:g},f.queue=l,l=l.dispatch=G4.bind(null,st,l),[f.memoizedState,l]},useRef:function(l){var o=il();return l={current:l},o.memoizedState=l},useState:function(l){l=yh(l);var o=l.queue,u=Rb.bind(null,st,o);return o.dispatch=u,[l.memoizedState,u]},useDebugValue:zi,useDeferredValue:function(l,o){var u=il();return Sd(u,l,o)},useTransition:function(){var l=yh(!1);return l=xb.bind(null,st,l.queue,!0,!1),il().memoizedState=l,[!1,l]},useSyncExternalStore:function(l,o,u){var f=st,g=il();if(At){if(u===void 0)throw Error(s(407));u=u()}else{if(u=o(),ta===null)throw Error(s(349));(Tt&127)!==0||pd(f,o,u)}g.memoizedState=u;var v={value:u,getSnapshot:o};return g.queue=v,Ab(yb.bind(null,f,v,l),[l]),f.flags|=2048,is(9,{destroy:void 0},Sh.bind(null,f,v,u,o),null),u},useId:function(){var l=il(),o=ta.identifierPrefix;if(At){var u=Ai,f=on;u=(f&~(1<<32-Zt(f)-1)).toString(32)+u,o="_"+o+"R_"+u,u=dd++,0<u&&(o+="H"+u.toString(32)),o+="_"}else u=R4++,o="_"+o+"r_"+u.toString(32)+"_";return l.memoizedState=o},useHostTransitionStatus:Oh,useFormState:Dh,useActionState:Dh,useOptimistic:function(l){var o=il();o.memoizedState=o.baseState=l;var u={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return o.queue=u,o=Zr.bind(null,st,!0,u),u.dispatch=o,[l,o]},useMemoCache:Tb,useCacheRefresh:function(){return il().memoizedState=vo.bind(null,st)},useEffectEvent:function(l){var o=il(),u={impl:l};return o.memoizedState=u,function(){if((wt&2)!==0)throw Error(s(440));return u.impl.apply(void 0,arguments)}}},Bb={readContext:Ae,use:Tc,useCallback:zb,useContext:Ae,useEffect:Mb,useImperativeHandle:Bh,useInsertionEffect:Db,useLayoutEffect:Nh,useMemo:_4,useReducer:go,useRef:xh,useState:function(){return go(po)},useDebugValue:zi,useDeferredValue:function(l,o){var u=xa();return To(u,jt.memoizedState,l,o)},useTransition:function(){var l=go(po)[0],o=xa().memoizedState;return[typeof l=="boolean"?l:ls(l),o]},useSyncExternalStore:vh,useId:w4,useHostTransitionStatus:Oh,useFormState:O4,useActionState:O4,useOptimistic:function(l,o){var u=xa();return ol(u,jt,l,o)},useMemoCache:Tb,useCacheRefresh:_h};Bb.useEffectEvent=vd;var F4={readContext:Ae,use:Tc,useCallback:zb,useContext:Ae,useEffect:Mb,useImperativeHandle:Bh,useInsertionEffect:Db,useLayoutEffect:Nh,useMemo:_4,useReducer:Sb,useRef:xh,useState:function(){return Sb(po)},useDebugValue:zi,useDeferredValue:function(l,o){var u=xa();return jt===null?Sd(u,l,o):To(u,jt.memoizedState,l,o)},useTransition:function(){var l=Sb(po)[0],o=xa().memoizedState;return[typeof l=="boolean"?l:ls(l),o]},useSyncExternalStore:vh,useId:w4,useHostTransitionStatus:Oh,useFormState:zh,useActionState:zh,useOptimistic:function(l,o){var u=xa();return jt!==null?ol(u,jt,l,o):(u.baseState=l,[l,u.queue.dispatch])},useMemoCache:Tb,useCacheRefresh:_h};F4.useEffectEvent=vd;function os(l,o,u,f){o=l.memoizedState,u=u(f,o),u=u==null?o:L({},o,u),l.memoizedState=u,l.lanes===0&&(l.updateQueue.baseState=u)}var ei={enqueueSetState:function(l,o,u){l=l._reactInternals;var f=cn(),g=rr(f);g.payload=o,u!=null&&(g.callback=u),o=Dn(l,g,f),o!==null&&(Zl(o,l,f),Yr(o,l,f))},enqueueReplaceState:function(l,o,u){l=l._reactInternals;var f=cn(),g=rr(f);g.tag=1,g.payload=o,u!=null&&(g.callback=u),o=Dn(l,g,f),o!==null&&(Zl(o,l,f),Yr(o,l,f))},enqueueForceUpdate:function(l,o){l=l._reactInternals;var u=cn(),f=rr(u);f.tag=2,o!=null&&(f.callback=o),o=Dn(l,f,u),o!==null&&(Zl(o,l,u),Yr(o,l,u))}};function wh(l,o,u,f,g,v,D){return l=l.stateNode,typeof l.shouldComponentUpdate=="function"?l.shouldComponentUpdate(f,v,D):o.prototype&&o.prototype.isPureReactComponent?!Qn(u,f)||!Qn(g,v):!0}function U4(l,o,u,f){l=o.state,typeof o.componentWillReceiveProps=="function"&&o.componentWillReceiveProps(u,f),typeof o.UNSAFE_componentWillReceiveProps=="function"&&o.UNSAFE_componentWillReceiveProps(u,f),o.state!==l&&ei.enqueueReplaceState(o,o.state,null)}function Jr(l,o){var u=o;if("ref"in o){u={};for(var f in o)f!=="ref"&&(u[f]=o[f])}if(l=l.defaultProps){u===o&&(u=L({},u));for(var g in l)u[g]===void 0&&(u[g]=l[g])}return u}function Ob(l){Vu(l)}function Gh(l){console.error(l)}function _b(l){Vu(l)}function Ec(l,o){try{var u=l.onUncaughtError;u(o.value,{componentStack:o.stack})}catch(f){setTimeout(function(){throw f})}}function Ed(l,o,u){try{var f=l.onCaughtError;f(u.value,{componentStack:u.stack,errorBoundary:o.tag===1?o.stateNode:null})}catch(g){setTimeout(function(){throw g})}}function kh(l,o,u){return u=rr(u),u.tag=3,u.payload={element:null},u.callback=function(){Ec(l,o)},u}function Fh(l){return l=rr(l),l.tag=3,l}function Uh(l,o,u,f){var g=u.type.getDerivedStateFromError;if(typeof g=="function"){var v=f.value;l.payload=function(){return g(v)},l.callback=function(){Ed(o,u,f)}}var D=u.stateNode;D!==null&&typeof D.componentDidCatch=="function"&&(l.callback=function(){Ed(o,u,f),typeof g!="function"&&(ma===null?ma=new Set([this]):ma.add(this));var O=f.stack;this.componentDidCatch(f.value,{componentStack:O!==null?O:""})})}function k8(l,o,u,f,g){if(u.flags|=32768,f!==null&&typeof f=="object"&&typeof f.then=="function"){if(o=u.alternate,o!==null&&nl(o,u,g,!0),u=Vl.current,u!==null){switch(u.tag){case 31:case 13:return Ln===null?$b():u.alternate===null&&ra===0&&(ra=3),u.flags&=-257,u.flags|=65536,u.lanes=g,f===Zu?u.flags|=16384:(o=u.updateQueue,o===null?u.updateQueue=new Set([f]):o.add(f),Gd(l,f,g)),!1;case 22:return u.flags|=65536,f===Zu?u.flags|=16384:(o=u.updateQueue,o===null?(o={transitions:null,markerInstances:null,retryQueue:new Set([f])},u.updateQueue=o):(u=o.retryQueue,u===null?o.retryQueue=new Set([f]):u.add(f)),Gd(l,f,g)),!1}throw Error(s(435,u.tag))}return Gd(l,f,g),$b(),!1}if(At)return o=Vl.current,o!==null?((o.flags&65536)===0&&(o.flags|=256),o.flags|=65536,o.lanes=g,f!==so&&(l=Error(s(422),{cause:f}),cc(Cn(l,u)))):(f!==so&&(o=Error(s(423),{cause:f}),cc(Cn(o,u))),l=l.current.alternate,l.flags|=65536,g&=-g,l.lanes|=g,f=Cn(f,u),g=kh(l.stateNode,f,g),bb(l,g),ra!==4&&(ra=2)),!1;var v=Error(s(520),{cause:f});if(v=Cn(v,u),Od===null?Od=[v]:Od.push(v),ra!==4&&(ra=2),o===null)return!0;f=Cn(f,u),u=o;do{switch(u.tag){case 3:return u.flags|=65536,l=g&-g,u.lanes|=l,l=kh(u.stateNode,f,l),bb(u,l),!1;case 1:if(o=u.type,v=u.stateNode,(u.flags&128)===0&&(typeof o.getDerivedStateFromError=="function"||v!==null&&typeof v.componentDidCatch=="function"&&(ma===null||!ma.has(v))))return u.flags|=65536,g&=-g,u.lanes|=g,g=Fh(g),Uh(g,l,u,f),bb(u,g),!1}u=u.return}while(u!==null);return!1}var Ib=Error(s(461)),Ga=!1;function ca(l,o,u,f){o.child=l===null?gh(o,null,u,f):jr(o,l.child,u,f)}function Hh(l,o,u,f,g){u=u.render;var v=o.ref;if("ref"in f){var D={};for(var O in f)O!=="ref"&&(D[O]=f[O])}else D=f;return lt(o),f=bd(l,o,u,D,v,g),O=gb(),l!==null&&!Ga?(as(l,o,g),Rn(l,o,g)):(At&&O&&uc(o),o.flags|=1,ca(l,o,f,g),o.child)}function Ph(l,o,u,f,g){if(l===null){var v=u.type;return typeof v=="function"&&!qu(v)&&v.defaultProps===void 0&&u.compare===null?(o.tag=15,o.type=v,Wh(l,o,v,f,g)):(l=ob(u.type,null,f,o,o.mode,g),l.ref=o.ref,l.return=o,o.child=l)}if(v=l.child,!kb(l,g)){var D=v.memoizedProps;if(u=u.compare,u=u!==null?u:Qn,u(D,f)&&l.ref===o.ref)return Rn(l,o,g)}return o.flags|=1,l=tr(v,f),l.ref=o.ref,l.return=o,o.child=l}function Wh(l,o,u,f,g){if(l!==null){var v=l.memoizedProps;if(Qn(v,f)&&l.ref===o.ref)if(Ga=!1,o.pendingProps=f=v,kb(l,g))(l.flags&131072)!==0&&(Ga=!0);else return o.lanes=l.lanes,Rn(l,o,g)}return wb(l,o,u,f,g)}function H4(l,o,u,f){var g=f.children,v=l!==null?l.memoizedState:null;if(l===null&&o.stateNode===null&&(o.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),f.mode==="hidden"){if((o.flags&128)!==0){if(v=v!==null?v.baseLanes|u:u,l!==null){for(f=o.child=l.child,g=0;f!==null;)g=g|f.lanes|f.childLanes,f=f.sibling;f=g&~v}else f=0,o.child=null;return jl(l,o,v,u,f)}if((u&536870912)!==0)o.memoizedState={baseLanes:0,cachePool:null},l!==null&&fc(o,v!==null?v.cachePool:null),v!==null?x4(o,v):fd(),hb(o);else return f=o.lanes=536870912,jl(l,o,v!==null?v.baseLanes|u:u,u,f)}else v!==null?(fc(o,v.cachePool),x4(o,v),Li(),o.memoizedState=null):(l!==null&&fc(o,null),fd(),Li());return ca(l,o,g,u),o.child}function $r(l,o){return l!==null&&l.tag===22||o.stateNode!==null||(o.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),o.sibling}function jl(l,o,u,f,g){var v=Mn();return v=v===null?null:{parent:Ia._currentValue,pool:v},o.memoizedState={baseLanes:u,cachePool:v},l!==null&&fc(o,null),fd(),hb(o),l!==null&&nl(l,o,f,!0),o.childLanes=g,null}function Ad(l,o){return o=Ld({mode:o.mode,children:o.children},l.mode),o.ref=l.ref,l.child=o,o.return=l,o}function Yl(l,o,u){return jr(o,l.child,null,u),l=Ad(o,o.pendingProps),l.flags|=2,ql(o),o.memoizedState=null,l}function P4(l,o,u){var f=o.pendingProps,g=(o.flags&128)!==0;if(o.flags&=-129,l===null){if(At){if(f.mode==="hidden")return l=Ad(o,f),o.lanes=536870912,$r(null,l);if(hc(o),(l=ia)?(l=Ep(l,Ya),l=l!==null&&l.data==="&"?l:null,l!==null&&(o.memoizedState={dehydrated:l,treeContext:Ei!==null?{id:on,overflow:Ai}:null,retryLane:536870912,hydrationErrors:null},u=uh(l),u.return=o,o.child=u,ll=o,ia=null)):l=null,l===null)throw $n(o);return o.lanes=536870912,null}return Ad(o,f)}var v=l.memoizedState;if(v!==null){var D=v.dehydrated;if(hc(o),g)if(o.flags&256)o.flags&=-257,o=Yl(l,o,u);else if(o.memoizedState!==null)o.child=l.child,o.flags|=128,o=null;else throw Error(s(558));else if(Ga||nl(l,o,u,!1),g=(u&l.childLanes)!==0,Ga||g){if(f=ta,f!==null&&(D=gn(f,u),D!==0&&D!==v.retryLane))throw v.retryLane=D,er(l,D),Zl(f,l,D),Ib;$b(),o=Yl(l,o,u)}else l=v.treeContext,ia=Jl(D.nextSibling),ll=o,At=!0,uo=null,Ya=!1,l!==null&&ed(o,l),o=Ad(o,f),o.flags|=4096;return o}return l=tr(l.child,{mode:f.mode,children:f.children}),l.ref=o.ref,o.child=l,l.return=o,l}function zn(l,o){var u=o.ref;if(u===null)l!==null&&l.ref!==null&&(o.flags|=4194816);else{if(typeof u!="function"&&typeof u!="object")throw Error(s(284));(l===null||l.ref!==u)&&(o.flags|=4194816)}}function wb(l,o,u,f,g){return lt(o),u=bd(l,o,u,f,void 0,g),f=gb(),l!==null&&!Ga?(as(l,o,g),Rn(l,o,g)):(At&&f&&uc(o),o.flags|=1,ca(l,o,u,g),o.child)}function eu(l,o,u,f,g,v){return lt(o),o.updateQueue=null,u=N4(o,f,u,g),pb(l),f=gb(),l!==null&&!Ga?(as(l,o,v),Rn(l,o,v)):(At&&f&&uc(o),o.flags|=1,ca(l,o,u,v),o.child)}function Vh(l,o,u,f,g){if(lt(o),o.stateNode===null){var v=Hl,D=u.contextType;typeof D=="object"&&D!==null&&(v=Ae(D)),v=new u(f,v),o.memoizedState=v.state!==null&&v.state!==void 0?v.state:null,v.updater=ei,o.stateNode=v,v._reactInternals=o,v=o.stateNode,v.props=f,v.state=o.memoizedState,v.refs={},cd(o),D=u.contextType,v.context=typeof D=="object"&&D!==null?Ae(D):Hl,v.state=o.memoizedState,D=u.getDerivedStateFromProps,typeof D=="function"&&(os(o,u,D,f),v.state=o.memoizedState),typeof u.getDerivedStateFromProps=="function"||typeof v.getSnapshotBeforeUpdate=="function"||typeof v.UNSAFE_componentWillMount!="function"&&typeof v.componentWillMount!="function"||(D=v.state,typeof v.componentWillMount=="function"&&v.componentWillMount(),typeof v.UNSAFE_componentWillMount=="function"&&v.UNSAFE_componentWillMount(),D!==v.state&&ei.enqueueReplaceState(v,v.state,null),bo(o,f,v,g),Qr(),v.state=o.memoizedState),typeof v.componentDidMount=="function"&&(o.flags|=4194308),f=!0}else if(l===null){v=o.stateNode;var O=o.memoizedProps,j=Jr(u,O);v.props=j;var re=v.context,he=u.contextType;D=Hl,typeof he=="object"&&he!==null&&(D=Ae(he));var Ee=u.getDerivedStateFromProps;he=typeof Ee=="function"||typeof v.getSnapshotBeforeUpdate=="function",O=o.pendingProps!==O,he||typeof v.UNSAFE_componentWillReceiveProps!="function"&&typeof v.componentWillReceiveProps!="function"||(O||re!==D)&&U4(o,v,f,D),or=!1;var ue=o.memoizedState;v.state=ue,bo(o,f,v,g),Qr(),re=o.memoizedState,O||ue!==re||or?(typeof Ee=="function"&&(os(o,u,Ee,f),re=o.memoizedState),(j=or||wh(o,u,j,f,ue,re,D))?(he||typeof v.UNSAFE_componentWillMount!="function"&&typeof v.componentWillMount!="function"||(typeof v.componentWillMount=="function"&&v.componentWillMount(),typeof v.UNSAFE_componentWillMount=="function"&&v.UNSAFE_componentWillMount()),typeof v.componentDidMount=="function"&&(o.flags|=4194308)):(typeof v.componentDidMount=="function"&&(o.flags|=4194308),o.memoizedProps=f,o.memoizedState=re),v.props=f,v.state=re,v.context=D,f=j):(typeof v.componentDidMount=="function"&&(o.flags|=4194308),f=!1)}else{v=o.stateNode,db(l,o),D=o.memoizedProps,he=Jr(u,D),v.props=he,Ee=o.pendingProps,ue=v.context,re=u.contextType,j=Hl,typeof re=="object"&&re!==null&&(j=Ae(re)),O=u.getDerivedStateFromProps,(re=typeof O=="function"||typeof v.getSnapshotBeforeUpdate=="function")||typeof v.UNSAFE_componentWillReceiveProps!="function"&&typeof v.componentWillReceiveProps!="function"||(D!==Ee||ue!==j)&&U4(o,v,f,j),or=!1,ue=o.memoizedState,v.state=ue,bo(o,f,v,g),Qr();var de=o.memoizedState;D!==Ee||ue!==de||or||l!==null&&l.dependencies!==null&&Yu(l.dependencies)?(typeof O=="function"&&(os(o,u,O,f),de=o.memoizedState),(he=or||wh(o,u,he,f,ue,de,j)||l!==null&&l.dependencies!==null&&Yu(l.dependencies))?(re||typeof v.UNSAFE_componentWillUpdate!="function"&&typeof v.componentWillUpdate!="function"||(typeof v.componentWillUpdate=="function"&&v.componentWillUpdate(f,de,j),typeof v.UNSAFE_componentWillUpdate=="function"&&v.UNSAFE_componentWillUpdate(f,de,j)),typeof v.componentDidUpdate=="function"&&(o.flags|=4),typeof v.getSnapshotBeforeUpdate=="function"&&(o.flags|=1024)):(typeof v.componentDidUpdate!="function"||D===l.memoizedProps&&ue===l.memoizedState||(o.flags|=4),typeof v.getSnapshotBeforeUpdate!="function"||D===l.memoizedProps&&ue===l.memoizedState||(o.flags|=1024),o.memoizedProps=f,o.memoizedState=de),v.props=f,v.state=de,v.context=j,f=he):(typeof v.componentDidUpdate!="function"||D===l.memoizedProps&&ue===l.memoizedState||(o.flags|=4),typeof v.getSnapshotBeforeUpdate!="function"||D===l.memoizedProps&&ue===l.memoizedState||(o.flags|=1024),f=!1)}return v=f,zn(l,o),f=(o.flags&128)!==0,v||f?(v=o.stateNode,u=f&&typeof u.getDerivedStateFromError!="function"?null:v.render(),o.flags|=1,l!==null&&f?(o.child=jr(o,l.child,null,g),o.child=jr(o,null,u,g)):ca(l,o,u,g),o.memoizedState=v.state,l=o.child):l=Rn(l,o,g),l}function xi(l,o,u,f){return Ur(),o.flags|=256,ca(l,o,u,f),o.child}var Md={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null};function Dd(l){return{baseLanes:l,cachePool:Xu()}}function xn(l,o,u){return l=l!==null?l.childLanes&~u:0,o&&(l|=Kl),l}function qh(l,o,u){var f=o.pendingProps,g=!1,v=(o.flags&128)!==0,D;if((D=v)||(D=l!==null&&l.memoizedState===null?!1:(ba.current&2)!==0),D&&(g=!0,o.flags&=-129),D=(o.flags&32)!==0,o.flags&=-33,l===null){if(At){if(g?mo(o):Li(),(l=ia)?(l=Ep(l,Ya),l=l!==null&&l.data!=="&"?l:null,l!==null&&(o.memoizedState={dehydrated:l,treeContext:Ei!==null?{id:on,overflow:Ai}:null,retryLane:536870912,hydrationErrors:null},u=uh(l),u.return=o,o.child=u,ll=o,ia=null)):l=null,l===null)throw $n(o);return ru(l)?o.lanes=32:o.lanes=536870912,null}var O=f.children;return f=f.fallback,g?(Li(),g=o.mode,O=Ld({mode:"hidden",children:O},g),f=ar(f,g,u,null),O.return=o,f.return=o,O.sibling=f,o.child=O,f=o.child,f.memoizedState=Dd(u),f.childLanes=xn(l,D,u),o.memoizedState=Md,$r(null,f)):(mo(o),tu(o,O))}var j=l.memoizedState;if(j!==null&&(O=j.dehydrated,O!==null)){if(v)o.flags&256?(mo(o),o.flags&=-257,o=rs(l,o,u)):o.memoizedState!==null?(Li(),o.child=l.child,o.flags|=128,o=null):(Li(),O=f.fallback,g=o.mode,f=Ld({mode:"visible",children:f.children},g),O=ar(O,g,u,null),O.flags|=2,f.return=o,O.return=o,f.sibling=O,o.child=f,jr(o,l.child,null,u),f=o.child,f.memoizedState=Dd(u),f.childLanes=xn(l,D,u),o.memoizedState=Md,o=$r(null,f));else if(mo(o),ru(O)){if(D=O.nextSibling&&O.nextSibling.dataset,D)var re=D.dgst;D=re,f=Error(s(419)),f.stack="",f.digest=D,cc({value:f,source:null,stack:null}),o=rs(l,o,u)}else if(Ga||nl(l,o,u,!1),D=(u&l.childLanes)!==0,Ga||D){if(D=ta,D!==null&&(f=gn(D,u),f!==0&&f!==j.retryLane))throw j.retryLane=f,er(l,f),Zl(D,l,f),Ib;li(O)||$b(),o=rs(l,o,u)}else li(O)?(o.flags|=192,o.child=l.child,o=null):(l=j.treeContext,ia=Jl(O.nextSibling),ll=o,At=!0,uo=null,Ya=!1,l!==null&&ed(o,l),o=tu(o,f.children),o.flags|=4096);return o}return g?(Li(),O=f.fallback,g=o.mode,j=l.child,re=j.sibling,f=tr(j,{mode:"hidden",children:f.children}),f.subtreeFlags=j.subtreeFlags&65011712,re!==null?O=tr(re,O):(O=ar(O,g,u,null),O.flags|=2),O.return=o,f.return=o,f.sibling=O,o.child=f,$r(null,f),f=o.child,O=l.child.memoizedState,O===null?O=Dd(u):(g=O.cachePool,g!==null?(j=Ia._currentValue,g=g.parent!==j?{parent:j,pool:j}:g):g=Xu(),O={baseLanes:O.baseLanes|u,cachePool:g}),f.memoizedState=O,f.childLanes=xn(l,D,u),o.memoizedState=Md,$r(l.child,f)):(mo(o),u=l.child,l=u.sibling,u=tr(u,{mode:"visible",children:f.children}),u.return=o,u.sibling=null,l!==null&&(D=o.deletions,D===null?(o.deletions=[l],o.flags|=16):D.push(l)),o.child=u,o.memoizedState=null,u)}function tu(l,o){return o=Ld({mode:"visible",children:o},l.mode),o.return=l,l.child=o}function Ld(l,o){return l=La(22,l,null,o),l.lanes=0,l}function rs(l,o,u){return jr(o,l.child,null,u),l=tu(o,o.pendingProps.children),l.flags|=2,o.memoizedState=null,l}function us(l,o,u){l.lanes|=o;var f=l.alternate;f!==null&&(f.lanes|=o),cb(l.return,o,u)}function Gb(l,o,u,f,g,v){var D=l.memoizedState;D===null?l.memoizedState={isBackwards:o,rendering:null,renderingStartTime:0,last:f,tail:u,tailMode:g,treeForkCount:v}:(D.isBackwards=o,D.rendering=null,D.renderingStartTime=0,D.last=f,D.tail=u,D.tailMode=g,D.treeForkCount=v)}function jh(l,o,u){var f=o.pendingProps,g=f.revealOrder,v=f.tail;f=f.children;var D=ba.current,O=(D&2)!==0;if(O?(D=D&1|2,o.flags|=128):D&=1,k(ba,D),ca(l,o,f,u),f=At?_a:0,!O&&l!==null&&(l.flags&128)!==0)e:for(l=o.child;l!==null;){if(l.tag===13)l.memoizedState!==null&&us(l,u,o);else if(l.tag===19)us(l,u,o);else if(l.child!==null){l.child.return=l,l=l.child;continue}if(l===o)break e;for(;l.sibling===null;){if(l.return===null||l.return===o)break e;l=l.return}l.sibling.return=l.return,l=l.sibling}switch(g){case"forwards":for(u=o.child,g=null;u!==null;)l=u.alternate,l!==null&&pc(l)===null&&(g=u),u=u.sibling;u=g,u===null?(g=o.child,o.child=null):(g=u.sibling,u.sibling=null),Gb(o,!1,g,u,v,f);break;case"backwards":case"unstable_legacy-backwards":for(u=null,g=o.child,o.child=null;g!==null;){if(l=g.alternate,l!==null&&pc(l)===null){o.child=g;break}l=g.sibling,g.sibling=u,u=g,g=l}Gb(o,!0,u,null,v,f);break;case"together":Gb(o,!1,null,null,void 0,f);break;default:o.memoizedState=null}return o.child}function Rn(l,o,u){if(l!==null&&(o.dependencies=l.dependencies),Oi|=o.lanes,(u&o.childLanes)===0)if(l!==null){if(nl(l,o,u,!1),(u&o.childLanes)===0)return null}else return null;if(l!==null&&o.child!==l.child)throw Error(s(153));if(o.child!==null){for(l=o.child,u=tr(l,l.pendingProps),o.child=u,u.return=o;l.sibling!==null;)l=l.sibling,u=u.sibling=tr(l,l.pendingProps),u.return=o;u.sibling=null}return o.child}function kb(l,o){return(l.lanes&o)!==0?!0:(l=l.dependencies,!!(l!==null&&Yu(l)))}function Fb(l,o,u){switch(o.tag){case 3:Ua(o,o.stateNode.containerInfo),Wl(o,Ia,l.memoizedState.cache),Ur();break;case 27:case 5:Tl(o);break;case 4:Ua(o,o.stateNode.containerInfo);break;case 10:Wl(o,o.type,o.memoizedProps.value);break;case 31:if(o.memoizedState!==null)return o.flags|=128,hc(o),null;break;case 13:var f=o.memoizedState;if(f!==null)return f.dehydrated!==null?(mo(o),o.flags|=128,null):(u&o.child.childLanes)!==0?qh(l,o,u):(mo(o),l=Rn(l,o,u),l!==null?l.sibling:null);mo(o);break;case 19:var g=(l.flags&128)!==0;if(f=(u&o.childLanes)!==0,f||(nl(l,o,u,!1),f=(u&o.childLanes)!==0),g){if(f)return jh(l,o,u);o.flags|=128}if(g=o.memoizedState,g!==null&&(g.rendering=null,g.tail=null,g.lastEffect=null),k(ba,ba.current),f)break;return null;case 22:return o.lanes=0,H4(l,o,u,o.pendingProps);case 24:Wl(o,Ia,l.memoizedState.cache)}return Rn(l,o,u)}function Yh(l,o,u){if(l!==null)if(l.memoizedProps!==o.pendingProps)Ga=!0;else{if(!kb(l,u)&&(o.flags&128)===0)return Ga=!1,Fb(l,o,u);Ga=(l.flags&131072)!==0}else Ga=!1,At&&(o.flags&1048576)!==0&&ch(o,_a,o.index);switch(o.lanes=0,o.tag){case 16:e:{var f=o.pendingProps;if(l=Wr(o.elementType),o.type=l,typeof l=="function")qu(l)?(f=Jr(l,f),o.tag=1,o=Vh(null,o,l,f,u)):(o.tag=0,o=wb(null,o,l,f,u));else{if(l!=null){var g=l.$$typeof;if(g===Te){o.tag=11,o=Hh(null,o,l,f,u);break e}else if(g===Se){o.tag=14,o=Ph(null,o,l,f,u);break e}}throw o=ze(l)||l,Error(s(306,o,""))}}return o;case 0:return wb(l,o,o.type,o.pendingProps,u);case 1:return f=o.type,g=Jr(f,o.pendingProps),Vh(l,o,f,g,u);case 3:e:{if(Ua(o,o.stateNode.containerInfo),l===null)throw Error(s(387));f=o.pendingProps;var v=o.memoizedState;g=v.element,db(l,o),bo(o,f,null,u);var D=o.memoizedState;if(f=D.cache,Wl(o,Ia,f),f!==v.cache&&fo(o,[Ia],u,!0),Qr(),f=D.element,v.isDehydrated)if(v={element:f,isDehydrated:!1,cache:D.cache},o.updateQueue.baseState=v,o.memoizedState=v,o.flags&256){o=xi(l,o,f,u);break e}else if(f!==g){g=Cn(Error(s(424)),o),cc(g),o=xi(l,o,f,u);break e}else{switch(l=o.stateNode.containerInfo,l.nodeType){case 9:l=l.body;break;default:l=l.nodeName==="HTML"?l.ownerDocument.body:l}for(ia=Jl(l.firstChild),ll=o,At=!0,uo=null,Ya=!0,u=gh(o,null,f,u),o.child=u;u;)u.flags=u.flags&-3|4096,u=u.sibling}else{if(Ur(),f===g){o=Rn(l,o,u);break e}ca(l,o,f,u)}o=o.child}return o;case 26:return zn(l,o),l===null?(u=qc(o.type,null,o.pendingProps,null))?o.memoizedState=u:At||(u=o.type,l=o.pendingProps,f=ou(kt.current).createElement(u),f[$t]=o,f[kl]=l,yl(f,u,l),Vt(f),o.stateNode=f):o.memoizedState=qc(o.type,l.memoizedProps,o.pendingProps,l.memoizedState),null;case 27:return Tl(o),l===null&&At&&(f=o.stateNode=Wc(o.type,o.pendingProps,kt.current),ll=o,Ya=!0,g=ia,Ii(o.type)?(jd=g,ia=Jl(f.firstChild)):ia=g),ca(l,o,o.pendingProps.children,u),zn(l,o),l===null&&(o.flags|=4194304),o.child;case 5:return l===null&&At&&((g=f=ia)&&(f=H8(f,o.type,o.pendingProps,Ya),f!==null?(o.stateNode=f,ll=o,ia=Jl(f.firstChild),Ya=!1,g=!0):g=!1),g||$n(o)),Tl(o),g=o.type,v=o.pendingProps,D=l!==null?l.memoizedProps:null,f=v.children,Hc(g,v)?f=null:D!==null&&Hc(g,D)&&(o.flags|=32),o.memoizedState!==null&&(g=bd(l,o,G8,null,null,u),Xd._currentValue=g),zn(l,o),ca(l,o,f,u),o.child;case 6:return l===null&&At&&((l=u=ia)&&(u=bt(u,o.pendingProps,Ya),u!==null?(o.stateNode=u,ll=o,ia=null,l=!0):l=!1),l||$n(o)),null;case 13:return qh(l,o,u);case 4:return Ua(o,o.stateNode.containerInfo),f=o.pendingProps,l===null?o.child=jr(o,null,f,u):ca(l,o,f,u),o.child;case 11:return Hh(l,o,o.type,o.pendingProps,u);case 7:return ca(l,o,o.pendingProps,u),o.child;case 8:return ca(l,o,o.pendingProps.children,u),o.child;case 12:return ca(l,o,o.pendingProps.children,u),o.child;case 10:return f=o.pendingProps,Wl(o,o.type,f.value),ca(l,o,f.children,u),o.child;case 9:return g=o.type._context,f=o.pendingProps.children,lt(o),g=Ae(g),f=f(g),o.flags|=1,ca(l,o,f,u),o.child;case 14:return Ph(l,o,o.type,o.pendingProps,u);case 15:return Wh(l,o,o.type,o.pendingProps,u);case 19:return jh(l,o,u);case 31:return P4(l,o,u);case 22:return H4(l,o,u,o.pendingProps);case 24:return lt(o),f=Ae(Ia),l===null?(g=Mn(),g===null&&(g=ta,v=ld(),g.pooledCache=v,v.refCount++,v!==null&&(g.pooledCacheLanes|=u),g=v),o.memoizedState={parent:f,cache:g},cd(o),Wl(o,Ia,g)):((l.lanes&u)!==0&&(db(l,o),bo(o,null,null,u),Qr()),g=l.memoizedState,v=o.memoizedState,g.parent!==f?(g={parent:f,cache:f},o.memoizedState=g,o.lanes===0&&(o.memoizedState=o.updateQueue.baseState=g),Wl(o,Ia,f)):(f=v.cache,Wl(o,Ia,f),f!==g.cache&&fo(o,[Ia],u,!0))),ca(l,o,o.pendingProps.children,u),o.child;case 29:throw o.pendingProps}throw Error(s(156,o.tag))}function So(l){l.flags|=4}function Qh(l,o,u,f,g){if((o=(l.mode&32)!==0)&&(o=!1),o){if(l.flags|=16777216,(g&335544128)===g)if(l.stateNode.complete)l.flags|=8192;else if(J4())l.flags|=8192;else throw Vr=Zu,Ku}else l.flags&=-16777217}function Xh(l,o){if(o.type!=="stylesheet"||(o.state.loading&4)!==0)l.flags&=-16777217;else if(l.flags|=16777216,!dn(o))if(J4())l.flags|=8192;else throw Vr=Zu,Ku}function xl(l,o){o!==null&&(l.flags|=4),l.flags&16384&&(o=l.tag!==22?zu():536870912,l.lanes|=o,Aa|=o)}function Ac(l,o){if(!At)switch(l.tailMode){case"hidden":o=l.tail;for(var u=null;o!==null;)o.alternate!==null&&(u=o),o=o.sibling;u===null?l.tail=null:u.sibling=null;break;case"collapsed":u=l.tail;for(var f=null;u!==null;)u.alternate!==null&&(f=u),u=u.sibling;f===null?o||l.tail===null?l.tail=null:l.tail.sibling=null:f.sibling=null}}function at(l){var o=l.alternate!==null&&l.alternate.child===l.child,u=0,f=0;if(o)for(var g=l.child;g!==null;)u|=g.lanes|g.childLanes,f|=g.subtreeFlags&65011712,f|=g.flags&65011712,g.return=l,g=g.sibling;else for(g=l.child;g!==null;)u|=g.lanes|g.childLanes,f|=g.subtreeFlags,f|=g.flags,g.return=l,g=g.sibling;return l.subtreeFlags|=f,l.childLanes=u,o}function W4(l,o,u){var f=o.pendingProps;switch(ub(o),o.tag){case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return at(o),null;case 1:return at(o),null;case 3:return u=o.stateNode,f=null,l!==null&&(f=l.memoizedState.cache),o.memoizedState.cache!==f&&(o.flags|=2048),Di(Ia),Ca(),u.pendingContext&&(u.context=u.pendingContext,u.pendingContext=null),(l===null||l.child===null)&&(co(o)?So(o):l===null||l.memoizedState.isDehydrated&&(o.flags&256)===0||(o.flags|=1024,fh())),at(o),null;case 26:var g=o.type,v=o.memoizedState;return l===null?(So(o),v!==null?(at(o),Xh(o,v)):(at(o),Qh(o,g,null,f,u))):v?v!==l.memoizedState?(So(o),at(o),Xh(o,v)):(at(o),o.flags&=-16777217):(l=l.memoizedProps,l!==f&&So(o),at(o),Qh(o,g,l,f,u)),null;case 27:if(Ge(o),u=kt.current,g=o.type,l!==null&&o.stateNode!=null)l.memoizedProps!==f&&So(o);else{if(!f){if(o.stateNode===null)throw Error(s(166));return at(o),null}l=He.current,co(o)?td(o):(l=Wc(g,f,u),o.stateNode=l,So(o))}return at(o),null;case 5:if(Ge(o),g=o.type,l!==null&&o.stateNode!=null)l.memoizedProps!==f&&So(o);else{if(!f){if(o.stateNode===null)throw Error(s(166));return at(o),null}if(v=He.current,co(o))td(o);else{var D=ou(kt.current);switch(v){case 1:v=D.createElementNS("http://www.w3.org/2000/svg",g);break;case 2:v=D.createElementNS("http://www.w3.org/1998/Math/MathML",g);break;default:switch(g){case"svg":v=D.createElementNS("http://www.w3.org/2000/svg",g);break;case"math":v=D.createElementNS("http://www.w3.org/1998/Math/MathML",g);break;case"script":v=D.createElement("div"),v.innerHTML="<script><\/script>",v=v.removeChild(v.firstChild);break;case"select":v=typeof f.is=="string"?D.createElement("select",{is:f.is}):D.createElement("select"),f.multiple?v.multiple=!0:f.size&&(v.size=f.size);break;default:v=typeof f.is=="string"?D.createElement(g,{is:f.is}):D.createElement(g)}}v[$t]=o,v[kl]=f;e:for(D=o.child;D!==null;){if(D.tag===5||D.tag===6)v.appendChild(D.stateNode);else if(D.tag!==4&&D.tag!==27&&D.child!==null){D.child.return=D,D=D.child;continue}if(D===o)break e;for(;D.sibling===null;){if(D.return===null||D.return===o)break e;D=D.return}D.sibling.return=D.return,D=D.sibling}o.stateNode=v;e:switch(yl(v,g,f),g){case"button":case"input":case"select":case"textarea":f=!!f.autoFocus;break e;case"img":f=!0;break e;default:f=!1}f&&So(o)}}return at(o),Qh(o,o.type,l===null?null:l.memoizedProps,o.pendingProps,u),null;case 6:if(l&&o.stateNode!=null)l.memoizedProps!==f&&So(o);else{if(typeof f!="string"&&o.stateNode===null)throw Error(s(166));if(l=kt.current,co(o)){if(l=o.stateNode,u=o.memoizedProps,f=null,g=ll,g!==null)switch(g.tag){case 27:case 5:f=g.memoizedProps}l[$t]=o,l=!!(l.nodeValue===u||f!==null&&f.suppressHydrationWarning===!0||v5(l.nodeValue,u)),l||$n(o,!0)}else l=ou(l).createTextNode(f),l[$t]=o,o.stateNode=l}return at(o),null;case 31:if(u=o.memoizedState,l===null||l.memoizedState!==null){if(f=co(o),u!==null){if(l===null){if(!f)throw Error(s(318));if(l=o.memoizedState,l=l!==null?l.dehydrated:null,!l)throw Error(s(557));l[$t]=o}else Ur(),(o.flags&128)===0&&(o.memoizedState=null),o.flags|=4;at(o),l=!1}else u=fh(),l!==null&&l.memoizedState!==null&&(l.memoizedState.hydrationErrors=u),l=!0;if(!l)return o.flags&256?(ql(o),o):(ql(o),null);if((o.flags&128)!==0)throw Error(s(558))}return at(o),null;case 13:if(f=o.memoizedState,l===null||l.memoizedState!==null&&l.memoizedState.dehydrated!==null){if(g=co(o),f!==null&&f.dehydrated!==null){if(l===null){if(!g)throw Error(s(318));if(g=o.memoizedState,g=g!==null?g.dehydrated:null,!g)throw Error(s(317));g[$t]=o}else Ur(),(o.flags&128)===0&&(o.memoizedState=null),o.flags|=4;at(o),g=!1}else g=fh(),l!==null&&l.memoizedState!==null&&(l.memoizedState.hydrationErrors=g),g=!0;if(!g)return o.flags&256?(ql(o),o):(ql(o),null)}return ql(o),(o.flags&128)!==0?(o.lanes=u,o):(u=f!==null,l=l!==null&&l.memoizedState!==null,u&&(f=o.child,g=null,f.alternate!==null&&f.alternate.memoizedState!==null&&f.alternate.memoizedState.cachePool!==null&&(g=f.alternate.memoizedState.cachePool.pool),v=null,f.memoizedState!==null&&f.memoizedState.cachePool!==null&&(v=f.memoizedState.cachePool.pool),v!==g&&(f.flags|=2048)),u!==l&&u&&(o.child.flags|=8192),xl(o,o.updateQueue),at(o),null);case 4:return Ca(),l===null&&Uc(o.stateNode.containerInfo),at(o),null;case 10:return Di(o.type),at(o),null;case 19:if(rt(ba),f=o.memoizedState,f===null)return at(o),null;if(g=(o.flags&128)!==0,v=f.rendering,v===null)if(g)Ac(f,!1);else{if(ra!==0||l!==null&&(l.flags&128)!==0)for(l=o.child;l!==null;){if(v=pc(l),v!==null){for(o.flags|=128,Ac(f,!1),l=v.updateQueue,o.updateQueue=l,xl(o,l),o.subtreeFlags=0,l=u,u=o.child;u!==null;)rh(u,l),u=u.sibling;return k(ba,ba.current&1|2),At&&Jn(o,f.treeForkCount),o.child}l=l.sibling}f.tail!==null&&ja()>Pt&&(o.flags|=128,g=!0,Ac(f,!1),o.lanes=4194304)}else{if(!g)if(l=pc(v),l!==null){if(o.flags|=128,g=!0,l=l.updateQueue,o.updateQueue=l,xl(o,l),Ac(f,!0),f.tail===null&&f.tailMode==="hidden"&&!v.alternate&&!At)return at(o),null}else 2*ja()-f.renderingStartTime>Pt&&u!==536870912&&(o.flags|=128,g=!0,Ac(f,!1),o.lanes=4194304);f.isBackwards?(v.sibling=o.child,o.child=v):(l=f.last,l!==null?l.sibling=v:o.child=v,f.last=v)}return f.tail!==null?(l=f.tail,f.rendering=l,f.tail=l.sibling,f.renderingStartTime=ja(),l.sibling=null,u=ba.current,k(ba,g?u&1|2:u&1),At&&Jn(o,f.treeForkCount),l):(at(o),null);case 22:case 23:return ql(o),mc(),f=o.memoizedState!==null,l!==null?l.memoizedState!==null!==f&&(o.flags|=8192):f&&(o.flags|=8192),f?(u&536870912)!==0&&(o.flags&128)===0&&(at(o),o.subtreeFlags&6&&(o.flags|=8192)):at(o),u=o.updateQueue,u!==null&&xl(o,u.retryQueue),u=null,l!==null&&l.memoizedState!==null&&l.memoizedState.cachePool!==null&&(u=l.memoizedState.cachePool.pool),f=null,o.memoizedState!==null&&o.memoizedState.cachePool!==null&&(f=o.memoizedState.cachePool.pool),f!==u&&(o.flags|=2048),l!==null&&rt(An),null;case 24:return u=null,l!==null&&(u=l.memoizedState.cache),o.memoizedState.cache!==u&&(o.flags|=2048),Di(Ia),at(o),null;case 25:return null;case 30:return null}throw Error(s(156,o.tag))}function V4(l,o){switch(ub(o),o.tag){case 1:return l=o.flags,l&65536?(o.flags=l&-65537|128,o):null;case 3:return Di(Ia),Ca(),l=o.flags,(l&65536)!==0&&(l&128)===0?(o.flags=l&-65537|128,o):null;case 26:case 27:case 5:return Ge(o),null;case 31:if(o.memoizedState!==null){if(ql(o),o.alternate===null)throw Error(s(340));Ur()}return l=o.flags,l&65536?(o.flags=l&-65537|128,o):null;case 13:if(ql(o),l=o.memoizedState,l!==null&&l.dehydrated!==null){if(o.alternate===null)throw Error(s(340));Ur()}return l=o.flags,l&65536?(o.flags=l&-65537|128,o):null;case 19:return rt(ba),null;case 4:return Ca(),null;case 10:return Di(o.type),null;case 22:case 23:return ql(o),mc(),l!==null&&rt(An),l=o.flags,l&65536?(o.flags=l&-65537|128,o):null;case 24:return Di(Ia),null;case 25:return null;default:return null}}function q4(l,o){switch(ub(o),o.tag){case 3:Di(Ia),Ca();break;case 26:case 27:case 5:Ge(o);break;case 4:Ca();break;case 31:o.memoizedState!==null&&ql(o);break;case 13:ql(o);break;case 19:rt(ba);break;case 10:Di(o.type);break;case 22:case 23:ql(o),mc(),l!==null&&rt(An);break;case 24:Di(Ia)}}function ti(l,o){try{var u=o.updateQueue,f=u!==null?u.lastEffect:null;if(f!==null){var g=f.next;u=g;do{if((u.tag&l)===l){f=void 0;var v=u.create,D=u.inst;f=v(),D.destroy=f}u=u.next}while(u!==g)}}catch(O){Qt(o,o.return,O)}}function Nn(l,o,u){try{var f=o.updateQueue,g=f!==null?f.lastEffect:null;if(g!==null){var v=g.next;f=v;do{if((f.tag&l)===l){var D=f.inst,O=D.destroy;if(O!==void 0){D.destroy=void 0,g=o;var j=u,re=O;try{re()}catch(he){Qt(g,j,he)}}}f=f.next}while(f!==v)}}catch(he){Qt(o,o.return,he)}}function Ub(l){var o=l.updateQueue;if(o!==null){var u=l.stateNode;try{Xr(o,u)}catch(f){Qt(l,l.return,f)}}}function au(l,o,u){u.props=Jr(l.type,l.memoizedProps),u.state=l.memoizedState;try{u.componentWillUnmount()}catch(f){Qt(l,o,f)}}function yo(l,o){try{var u=l.ref;if(u!==null){switch(l.tag){case 26:case 27:case 5:var f=l.stateNode;break;case 30:f=l.stateNode;break;default:f=l.stateNode}typeof u=="function"?l.refCleanup=u(f):u.current=f}}catch(g){Qt(l,o,g)}}function Ri(l,o){var u=l.ref,f=l.refCleanup;if(u!==null)if(typeof f=="function")try{f()}catch(g){Qt(l,o,g)}finally{l.refCleanup=null,l=l.alternate,l!=null&&(l.refCleanup=null)}else if(typeof u=="function")try{u(null)}catch(g){Qt(l,o,g)}else u.current=null}function Kh(l){var o=l.type,u=l.memoizedProps,f=l.stateNode;try{e:switch(o){case"button":case"input":case"select":case"textarea":u.autoFocus&&f.focus();break e;case"img":u.src?f.src=u.src:u.srcSet&&(f.srcset=u.srcSet)}}catch(g){Qt(l,l.return,g)}}function Hb(l,o,u){try{var f=l.stateNode;y5(f,l.type,u,o),f[kl]=o}catch(g){Qt(l,l.return,g)}}function Zh(l){return l.tag===5||l.tag===3||l.tag===26||l.tag===27&&Ii(l.type)||l.tag===4}function Mc(l){e:for(;;){for(;l.sibling===null;){if(l.return===null||Zh(l.return))return null;l=l.return}for(l.sibling.return=l.return,l=l.sibling;l.tag!==5&&l.tag!==6&&l.tag!==18;){if(l.tag===27&&Ii(l.type)||l.flags&2||l.child===null||l.tag===4)continue e;l.child.return=l,l=l.child}if(!(l.flags&2))return l.stateNode}}function Dc(l,o,u){var f=l.tag;if(f===5||f===6)l=l.stateNode,o?(u.nodeType===9?u.body:u.nodeName==="HTML"?u.ownerDocument.body:u).insertBefore(l,o):(o=u.nodeType===9?u.body:u.nodeName==="HTML"?u.ownerDocument.body:u,o.appendChild(l),u=u._reactRootContainer,u!=null||o.onclick!==null||(o.onclick=pi));else if(f!==4&&(f===27&&Ii(l.type)&&(u=l.stateNode,o=null),l=l.child,l!==null))for(Dc(l,o,u),l=l.sibling;l!==null;)Dc(l,o,u),l=l.sibling}function Lc(l,o,u){var f=l.tag;if(f===5||f===6)l=l.stateNode,o?u.insertBefore(l,o):u.appendChild(l);else if(f!==4&&(f===27&&Ii(l.type)&&(u=l.stateNode),l=l.child,l!==null))for(Lc(l,o,u),l=l.sibling;l!==null;)Lc(l,o,u),l=l.sibling}function Jh(l){var o=l.stateNode,u=l.memoizedProps;try{for(var f=l.type,g=o.attributes;g.length;)o.removeAttributeNode(g[0]);yl(o,f,u),o[$t]=l,o[kl]=u}catch(v){Qt(l,l.return,v)}}var fr=!1,Wa=!1,Pb=!1,$h=typeof WeakSet=="function"?WeakSet:Set,rl=null;function zc(l,o){if(l=l.containerInfo,u1=Ka,l=Gr(l),Qf(l)){if("selectionStart"in l)var u={start:l.selectionStart,end:l.selectionEnd};else e:{u=(u=l.ownerDocument)&&u.defaultView||window;var f=u.getSelection&&u.getSelection();if(f&&f.rangeCount!==0){u=f.anchorNode;var g=f.anchorOffset,v=f.focusNode;f=f.focusOffset;try{u.nodeType,v.nodeType}catch{u=null;break e}var D=0,O=-1,j=-1,re=0,he=0,Ee=l,ue=null;t:for(;;){for(var de;Ee!==u||g!==0&&Ee.nodeType!==3||(O=D+g),Ee!==v||f!==0&&Ee.nodeType!==3||(j=D+f),Ee.nodeType===3&&(D+=Ee.nodeValue.length),(de=Ee.firstChild)!==null;)ue=Ee,Ee=de;for(;;){if(Ee===l)break t;if(ue===u&&++re===g&&(O=D),ue===v&&++he===f&&(j=D),(de=Ee.nextSibling)!==null)break;Ee=ue,ue=Ee.parentNode}Ee=de}u=O===-1||j===-1?null:{start:O,end:j}}else u=null}u=u||{start:0,end:0}}else u=null;for(s1={focusedElem:l,selectionRange:u},Ka=!1,rl=o;rl!==null;)if(o=rl,l=o.child,(o.subtreeFlags&1028)!==0&&l!==null)l.return=o,rl=l;else for(;rl!==null;){switch(o=rl,v=o.alternate,l=o.flags,o.tag){case 0:if((l&4)!==0&&(l=o.updateQueue,l=l!==null?l.events:null,l!==null))for(u=0;u<l.length;u++)g=l[u],g.ref.impl=g.nextImpl;break;case 11:case 15:break;case 1:if((l&1024)!==0&&v!==null){l=void 0,u=o,g=v.memoizedProps,v=v.memoizedState,f=u.stateNode;try{var Pe=Jr(u.type,g);l=f.getSnapshotBeforeUpdate(Pe,v),f.__reactInternalSnapshotBeforeUpdate=l}catch(Ze){Qt(u,u.return,Ze)}}break;case 3:if((l&1024)!==0){if(l=o.stateNode.containerInfo,u=l.nodeType,u===9)qd(l);else if(u===1)switch(l.nodeName){case"HEAD":case"HTML":case"BODY":qd(l);break;default:l.textContent=""}}break;case 5:case 26:case 27:case 6:case 4:case 17:break;default:if((l&1024)!==0)throw Error(s(163))}if(l=o.sibling,l!==null){l.return=o.return,rl=l;break}rl=o.return}}function zd(l,o,u){var f=u.flags;switch(u.tag){case 0:case 11:case 15:dr(l,u),f&4&&ti(5,u);break;case 1:if(dr(l,u),f&4)if(l=u.stateNode,o===null)try{l.componentDidMount()}catch(D){Qt(u,u.return,D)}else{var g=Jr(u.type,o.memoizedProps);o=o.memoizedState;try{l.componentDidUpdate(g,o,l.__reactInternalSnapshotBeforeUpdate)}catch(D){Qt(u,u.return,D)}}f&64&&Ub(u),f&512&&yo(u,u.return);break;case 3:if(dr(l,u),f&64&&(l=u.updateQueue,l!==null)){if(o=null,u.child!==null)switch(u.child.tag){case 27:case 5:o=u.child.stateNode;break;case 1:o=u.child.stateNode}try{Xr(l,o)}catch(D){Qt(u,u.return,D)}}break;case 27:o===null&&f&4&&Jh(u);case 26:case 5:dr(l,u),o===null&&f&4&&Kh(u),f&512&&yo(u,u.return);break;case 12:dr(l,u);break;case 31:dr(l,u),f&4&&j4(l,u);break;case 13:dr(l,u),f&4&&a5(l,u),f&64&&(l=u.memoizedState,l!==null&&(l=l.dehydrated,l!==null&&(u=Bn.bind(null,u),Pc(l,u))));break;case 22:if(f=u.memoizedState!==null||fr,!f){o=o!==null&&o.memoizedState!==null||Wa,g=fr;var v=Wa;fr=f,(Wa=o)&&!v?Ni(l,u,(u.subtreeFlags&8772)!==0):dr(l,u),fr=g,Wa=v}break;case 30:break;default:dr(l,u)}}function e5(l){var o=l.alternate;o!==null&&(l.alternate=null,e5(o)),l.child=null,l.deletions=null,l.sibling=null,l.tag===5&&(o=l.stateNode,o!==null&&k0(o)),l.stateNode=null,l.return=null,l.dependencies=null,l.memoizedProps=null,l.memoizedState=null,l.pendingProps=null,l.stateNode=null,l.updateQueue=null}var oa=null,Ql=!1;function Co(l,o,u){for(u=u.child;u!==null;)t5(l,o,u),u=u.sibling}function t5(l,o,u){if(Ha&&typeof Ha.onCommitFiberUnmount=="function")try{Ha.onCommitFiberUnmount(vl,u)}catch{}switch(u.tag){case 26:Wa||Ri(u,o),Co(l,o,u),u.memoizedState?u.memoizedState.count--:u.stateNode&&(u=u.stateNode,u.parentNode.removeChild(u));break;case 27:Wa||Ri(u,o);var f=oa,g=Ql;Ii(u.type)&&(oa=u.stateNode,Ql=!1),Co(l,o,u),ps(u.stateNode),oa=f,Ql=g;break;case 5:Wa||Ri(u,o);case 6:if(f=oa,g=Ql,oa=null,Co(l,o,u),oa=f,Ql=g,oa!==null)if(Ql)try{(oa.nodeType===9?oa.body:oa.nodeName==="HTML"?oa.ownerDocument.body:oa).removeChild(u.stateNode)}catch(v){Qt(u,o,v)}else try{oa.removeChild(u.stateNode)}catch(v){Qt(u,o,v)}break;case 18:oa!==null&&(Ql?(l=oa,M5(l.nodeType===9?l.body:l.nodeName==="HTML"?l.ownerDocument.body:l,u.stateNode),$c(l)):M5(oa,u.stateNode));break;case 4:f=oa,g=Ql,oa=u.stateNode.containerInfo,Ql=!0,Co(l,o,u),oa=f,Ql=g;break;case 0:case 11:case 14:case 15:Nn(2,u,o),Wa||Nn(4,u,o),Co(l,o,u);break;case 1:Wa||(Ri(u,o),f=u.stateNode,typeof f.componentWillUnmount=="function"&&au(u,o,f)),Co(l,o,u);break;case 21:Co(l,o,u);break;case 22:Wa=(f=Wa)||u.memoizedState!==null,Co(l,o,u),Wa=f;break;default:Co(l,o,u)}}function j4(l,o){if(o.memoizedState===null&&(l=o.alternate,l!==null&&(l=l.memoizedState,l!==null))){l=l.dehydrated;try{$c(l)}catch(u){Qt(o,o.return,u)}}}function a5(l,o){if(o.memoizedState===null&&(l=o.alternate,l!==null&&(l=l.memoizedState,l!==null&&(l=l.dehydrated,l!==null))))try{$c(l)}catch(u){Qt(o,o.return,u)}}function xd(l){switch(l.tag){case 31:case 13:case 19:var o=l.stateNode;return o===null&&(o=l.stateNode=new $h),o;case 22:return l=l.stateNode,o=l._retryCache,o===null&&(o=l._retryCache=new $h),o;default:throw Error(s(435,l.tag))}}function Rd(l,o){var u=xd(l);o.forEach(function(f){if(!u.has(f)){u.add(f);var g=bp.bind(null,l,f);f.then(g,g)}})}function Xl(l,o){var u=o.deletions;if(u!==null)for(var f=0;f<u.length;f++){var g=u[f],v=l,D=o,O=D;e:for(;O!==null;){switch(O.tag){case 27:if(Ii(O.type)){oa=O.stateNode,Ql=!1;break e}break;case 5:oa=O.stateNode,Ql=!1;break e;case 3:case 4:oa=O.stateNode.containerInfo,Ql=!0;break e}O=O.return}if(oa===null)throw Error(s(160));t5(v,D,g),oa=null,Ql=!1,v=g.alternate,v!==null&&(v.return=null),g.return=null}if(o.subtreeFlags&13886)for(o=o.child;o!==null;)Wb(o,l),o=o.sibling}var ct=null;function Wb(l,o){var u=l.alternate,f=l.flags;switch(l.tag){case 0:case 11:case 14:case 15:Xl(o,l),rn(l),f&4&&(Nn(3,l,l.return),ti(3,l),Nn(5,l,l.return));break;case 1:Xl(o,l),rn(l),f&512&&(Wa||u===null||Ri(u,u.return)),f&64&&fr&&(l=l.updateQueue,l!==null&&(f=l.callbacks,f!==null&&(u=l.shared.hiddenCallbacks,l.shared.hiddenCallbacks=u===null?f:u.concat(f))));break;case 26:var g=ct;if(Xl(o,l),rn(l),f&512&&(Wa||u===null||Ri(u,u.return)),f&4){var v=u!==null?u.memoizedState:null;if(f=l.memoizedState,u===null)if(f===null)if(l.stateNode===null){e:{f=l.type,u=l.memoizedProps,g=g.ownerDocument||g;t:switch(f){case"title":v=g.getElementsByTagName("title")[0],(!v||v[eo]||v[$t]||v.namespaceURI==="http://www.w3.org/2000/svg"||v.hasAttribute("itemprop"))&&(v=g.createElement(f),g.head.insertBefore(v,g.querySelector("head > title"))),yl(v,f,u),v[$t]=l,Vt(v),f=v;break e;case"link":var D=x5("link","href",g).get(f+(u.href||""));if(D){for(var O=0;O<D.length;O++)if(v=D[O],v.getAttribute("href")===(u.href==null||u.href===""?null:u.href)&&v.getAttribute("rel")===(u.rel==null?null:u.rel)&&v.getAttribute("title")===(u.title==null?null:u.title)&&v.getAttribute("crossorigin")===(u.crossOrigin==null?null:u.crossOrigin)){D.splice(O,1);break t}}v=g.createElement(f),yl(v,f,u),g.head.appendChild(v);break;case"meta":if(D=x5("meta","content",g).get(f+(u.content||""))){for(O=0;O<D.length;O++)if(v=D[O],v.getAttribute("content")===(u.content==null?null:""+u.content)&&v.getAttribute("name")===(u.name==null?null:u.name)&&v.getAttribute("property")===(u.property==null?null:u.property)&&v.getAttribute("http-equiv")===(u.httpEquiv==null?null:u.httpEquiv)&&v.getAttribute("charset")===(u.charSet==null?null:u.charSet)){D.splice(O,1);break t}}v=g.createElement(f),yl(v,f,u),g.head.appendChild(v);break;default:throw Error(s(468,f))}v[$t]=l,Vt(v),f=v}l.stateNode=f}else m1(g,l.type,l.stateNode);else l.stateNode=z5(g,f,l.memoizedProps);else v!==f?(v===null?u.stateNode!==null&&(u=u.stateNode,u.parentNode.removeChild(u)):v.count--,f===null?m1(g,l.type,l.stateNode):z5(g,f,l.memoizedProps)):f===null&&l.stateNode!==null&&Hb(l,l.memoizedProps,u.memoizedProps)}break;case 27:Xl(o,l),rn(l),f&512&&(Wa||u===null||Ri(u,u.return)),u!==null&&f&4&&Hb(l,l.memoizedProps,u.memoizedProps);break;case 5:if(Xl(o,l),rn(l),f&512&&(Wa||u===null||Ri(u,u.return)),l.flags&32){g=l.stateNode;try{ao(g,"")}catch(Pe){Qt(l,l.return,Pe)}}f&4&&l.stateNode!=null&&(g=l.memoizedProps,Hb(l,g,u!==null?u.memoizedProps:g)),f&1024&&(Pb=!0);break;case 6:if(Xl(o,l),rn(l),f&4){if(l.stateNode===null)throw Error(s(162));f=l.memoizedProps,u=l.stateNode;try{u.nodeValue=f}catch(Pe){Qt(l,l.return,Pe)}}break;case 3:if(Qc=null,g=ct,ct=Rl(o.containerInfo),Xl(o,l),ct=g,rn(l),f&4&&u!==null&&u.memoizedState.isDehydrated)try{$c(o.containerInfo)}catch(Pe){Qt(l,l.return,Pe)}Pb&&(Pb=!1,l5(l));break;case 4:f=ct,ct=Rl(l.stateNode.containerInfo),Xl(o,l),rn(l),ct=f;break;case 12:Xl(o,l),rn(l);break;case 31:Xl(o,l),rn(l),f&4&&(f=l.updateQueue,f!==null&&(l.updateQueue=null,Rd(l,f)));break;case 13:Xl(o,l),rn(l),l.child.flags&8192&&l.memoizedState!==null!=(u!==null&&u.memoizedState!==null)&&(_i=ja()),f&4&&(f=l.updateQueue,f!==null&&(l.updateQueue=null,Rd(l,f)));break;case 22:g=l.memoizedState!==null;var j=u!==null&&u.memoizedState!==null,re=fr,he=Wa;if(fr=re||g,Wa=he||j,Xl(o,l),Wa=he,fr=re,rn(l),f&8192)e:for(o=l.stateNode,o._visibility=g?o._visibility&-2:o._visibility|1,g&&(u===null||j||fr||Wa||ss(l)),u=null,o=l;;){if(o.tag===5||o.tag===26){if(u===null){j=u=o;try{if(v=j.stateNode,g)D=v.style,typeof D.setProperty=="function"?D.setProperty("display","none","important"):D.display="none";else{O=j.stateNode;var Ee=j.memoizedProps.style,ue=Ee!=null&&Ee.hasOwnProperty("display")?Ee.display:null;O.style.display=ue==null||typeof ue=="boolean"?"":(""+ue).trim()}}catch(Pe){Qt(j,j.return,Pe)}}}else if(o.tag===6){if(u===null){j=o;try{j.stateNode.nodeValue=g?"":j.memoizedProps}catch(Pe){Qt(j,j.return,Pe)}}}else if(o.tag===18){if(u===null){j=o;try{var de=j.stateNode;g?ka(de,!0):ka(j.stateNode,!1)}catch(Pe){Qt(j,j.return,Pe)}}}else if((o.tag!==22&&o.tag!==23||o.memoizedState===null||o===l)&&o.child!==null){o.child.return=o,o=o.child;continue}if(o===l)break e;for(;o.sibling===null;){if(o.return===null||o.return===l)break e;u===o&&(u=null),o=o.return}u===o&&(u=null),o.sibling.return=o.return,o=o.sibling}f&4&&(f=l.updateQueue,f!==null&&(u=f.retryQueue,u!==null&&(f.retryQueue=null,Rd(l,u))));break;case 19:Xl(o,l),rn(l),f&4&&(f=l.updateQueue,f!==null&&(l.updateQueue=null,Rd(l,f)));break;case 30:break;case 21:break;default:Xl(o,l),rn(l)}}function rn(l){var o=l.flags;if(o&2){try{for(var u,f=l.return;f!==null;){if(Zh(f)){u=f;break}f=f.return}if(u==null)throw Error(s(160));switch(u.tag){case 27:var g=u.stateNode,v=Mc(l);Lc(l,v,g);break;case 5:var D=u.stateNode;u.flags&32&&(ao(D,""),u.flags&=-33);var O=Mc(l);Lc(l,O,D);break;case 3:case 4:var j=u.stateNode.containerInfo,re=Mc(l);Dc(l,re,j);break;default:throw Error(s(161))}}catch(he){Qt(l,l.return,he)}l.flags&=-3}o&4096&&(l.flags&=-4097)}function l5(l){if(l.subtreeFlags&1024)for(l=l.child;l!==null;){var o=l;l5(o),o.tag===5&&o.flags&1024&&o.stateNode.reset(),l=l.sibling}}function dr(l,o){if(o.subtreeFlags&8772)for(o=o.child;o!==null;)zd(l,o.alternate,o),o=o.sibling}function ss(l){for(l=l.child;l!==null;){var o=l;switch(o.tag){case 0:case 11:case 14:case 15:Nn(4,o,o.return),ss(o);break;case 1:Ri(o,o.return);var u=o.stateNode;typeof u.componentWillUnmount=="function"&&au(o,o.return,u),ss(o);break;case 27:ps(o.stateNode);case 26:case 5:Ri(o,o.return),ss(o);break;case 22:o.memoizedState===null&&ss(o);break;case 30:ss(o);break;default:ss(o)}l=l.sibling}}function Ni(l,o,u){for(u=u&&(o.subtreeFlags&8772)!==0,o=o.child;o!==null;){var f=o.alternate,g=l,v=o,D=v.flags;switch(v.tag){case 0:case 11:case 15:Ni(g,v,u),ti(4,v);break;case 1:if(Ni(g,v,u),f=v,g=f.stateNode,typeof g.componentDidMount=="function")try{g.componentDidMount()}catch(re){Qt(f,f.return,re)}if(f=v,g=f.updateQueue,g!==null){var O=f.stateNode;try{var j=g.shared.hiddenCallbacks;if(j!==null)for(g.shared.hiddenCallbacks=null,g=0;g<j.length;g++)mb(j[g],O)}catch(re){Qt(f,f.return,re)}}u&&D&64&&Ub(v),yo(v,v.return);break;case 27:Jh(v);case 26:case 5:Ni(g,v,u),u&&f===null&&D&4&&Kh(v),yo(v,v.return);break;case 12:Ni(g,v,u);break;case 31:Ni(g,v,u),u&&D&4&&j4(g,v);break;case 13:Ni(g,v,u),u&&D&4&&a5(g,v);break;case 22:v.memoizedState===null&&Ni(g,v,u),yo(v,v.return);break;case 30:break;default:Ni(g,v,u)}o=o.sibling}}function Vb(l,o){var u=null;l!==null&&l.memoizedState!==null&&l.memoizedState.cachePool!==null&&(u=l.memoizedState.cachePool.pool),l=null,o.memoizedState!==null&&o.memoizedState.cachePool!==null&&(l=o.memoizedState.cachePool.pool),l!==u&&(l!=null&&l.refCount++,u!=null&&nd(u))}function qb(l,o){l=null,o.alternate!==null&&(l=o.alternate.memoizedState.cache),o=o.memoizedState.cache,o!==l&&(o.refCount++,l!=null&&nd(l))}function ai(l,o,u,f){if(o.subtreeFlags&10256)for(o=o.child;o!==null;)xc(l,o,u,f),o=o.sibling}function xc(l,o,u,f){var g=o.flags;switch(o.tag){case 0:case 11:case 15:ai(l,o,u,f),g&2048&&ti(9,o);break;case 1:ai(l,o,u,f);break;case 3:ai(l,o,u,f),g&2048&&(l=null,o.alternate!==null&&(l=o.alternate.memoizedState.cache),o=o.memoizedState.cache,o!==l&&(o.refCount++,l!=null&&nd(l)));break;case 12:if(g&2048){ai(l,o,u,f),l=o.stateNode;try{var v=o.memoizedProps,D=v.id,O=v.onPostCommit;typeof O=="function"&&O(D,o.alternate===null?"mount":"update",l.passiveEffectDuration,-0)}catch(j){Qt(o,o.return,j)}}else ai(l,o,u,f);break;case 31:ai(l,o,u,f);break;case 13:ai(l,o,u,f);break;case 23:break;case 22:v=o.stateNode,D=o.alternate,o.memoizedState!==null?v._visibility&2?ai(l,o,u,f):Nd(l,o):v._visibility&2?ai(l,o,u,f):(v._visibility|=2,Rc(l,o,u,f,(o.subtreeFlags&10256)!==0||!1)),g&2048&&Vb(D,o);break;case 24:ai(l,o,u,f),g&2048&&qb(o.alternate,o);break;default:ai(l,o,u,f)}}function Rc(l,o,u,f,g){for(g=g&&((o.subtreeFlags&10256)!==0||!1),o=o.child;o!==null;){var v=l,D=o,O=u,j=f,re=D.flags;switch(D.tag){case 0:case 11:case 15:Rc(v,D,O,j,g),ti(8,D);break;case 23:break;case 22:var he=D.stateNode;D.memoizedState!==null?he._visibility&2?Rc(v,D,O,j,g):Nd(v,D):(he._visibility|=2,Rc(v,D,O,j,g)),g&&re&2048&&Vb(D.alternate,D);break;case 24:Rc(v,D,O,j,g),g&&re&2048&&qb(D.alternate,D);break;default:Rc(v,D,O,j,g)}o=o.sibling}}function Nd(l,o){if(o.subtreeFlags&10256)for(o=o.child;o!==null;){var u=l,f=o,g=f.flags;switch(f.tag){case 22:Nd(u,f),g&2048&&Vb(f.alternate,f);break;case 24:Nd(u,f),g&2048&&qb(f.alternate,f);break;default:Nd(u,f)}o=o.sibling}}var un=8192;function Eo(l,o,u){if(l.subtreeFlags&un)for(l=l.child;l!==null;)Y4(l,o,u),l=l.sibling}function Y4(l,o,u){switch(l.tag){case 26:Eo(l,o,u),l.flags&un&&l.memoizedState!==null&&zo(u,ct,l.memoizedState,l.memoizedProps);break;case 5:Eo(l,o,u);break;case 3:case 4:var f=ct;ct=Rl(l.stateNode.containerInfo),Eo(l,o,u),ct=f;break;case 22:l.memoizedState===null&&(f=l.alternate,f!==null&&f.memoizedState!==null?(f=un,un=16777216,Eo(l,o,u),un=f):Eo(l,o,u));break;default:Eo(l,o,u)}}function jb(l){var o=l.alternate;if(o!==null&&(l=o.child,l!==null)){o.child=null;do o=l.sibling,l.sibling=null,l=o;while(l!==null)}}function Nc(l){var o=l.deletions;if((l.flags&16)!==0){if(o!==null)for(var u=0;u<o.length;u++){var f=o[u];rl=f,Yb(f,l)}jb(l)}if(l.subtreeFlags&10256)for(l=l.child;l!==null;)n5(l),l=l.sibling}function n5(l){switch(l.tag){case 0:case 11:case 15:Nc(l),l.flags&2048&&Nn(9,l,l.return);break;case 3:Nc(l);break;case 12:Nc(l);break;case 22:var o=l.stateNode;l.memoizedState!==null&&o._visibility&2&&(l.return===null||l.return.tag!==13)?(o._visibility&=-3,Bd(l)):Nc(l);break;default:Nc(l)}}function Bd(l){var o=l.deletions;if((l.flags&16)!==0){if(o!==null)for(var u=0;u<o.length;u++){var f=o[u];rl=f,Yb(f,l)}jb(l)}for(l=l.child;l!==null;){switch(o=l,o.tag){case 0:case 11:case 15:Nn(8,o,o.return),Bd(o);break;case 22:u=o.stateNode,u._visibility&2&&(u._visibility&=-3,Bd(o));break;default:Bd(o)}l=l.sibling}}function Yb(l,o){for(;rl!==null;){var u=rl;switch(u.tag){case 0:case 11:case 15:Nn(8,u,o);break;case 23:case 22:if(u.memoizedState!==null&&u.memoizedState.cachePool!==null){var f=u.memoizedState.cachePool.pool;f!=null&&f.refCount++}break;case 24:nd(u.memoizedState.cache)}if(f=u.child,f!==null)f.return=u,rl=f;else e:for(u=l;rl!==null;){f=rl;var g=f.sibling,v=f.return;if(e5(f),f===u){rl=null;break e}if(g!==null){g.return=v,rl=g;break e}rl=v}}}var Q4={getCacheForType:function(l){var o=Ae(Ia),u=o.data.get(l);return u===void 0&&(u=l(),o.data.set(l,u)),u},cacheSignal:function(){return Ae(Ia).controller.signal}},i5=typeof WeakMap=="function"?WeakMap:Map,wt=0,ta=null,Mt=null,Tt=0,Yt=0,$e=null,Ao=!1,lu=!1,Qb=!1,Bi=0,ra=0,Oi=0,cs=0,Xb=0,Kl=0,Aa=0,Od=null,Ma=null,Kb=!1,_i=0,o5=0,Pt=1/0,Bc=null,ma=null,Xa=0,br=null,nu=null,Mo=0,sn=0,Zb=null,Jb=null,Oc=0,_d=null;function cn(){return(wt&2)!==0&&Tt!==0?Tt&-Tt:P.T!==null?l1():w0()}function X4(){if(Kl===0)if((Tt&536870912)===0||At){var l=bi;bi<<=1,(bi&3932160)===0&&(bi=262144),Kl=l}else Kl=536870912;return l=Vl.current,l!==null&&(l.flags|=32),Kl}function Zl(l,o,u){(l===ta&&(Yt===2||Yt===9)||l.cancelPendingCommit!==null)&&(Do(l,0),mr(l,Tt,Kl,!1)),js(l,u),((wt&2)===0||l!==ta)&&(l===ta&&((wt&2)===0&&(cs|=u),ra===4&&mr(l,Tt,Kl,!1)),Lo(l))}function K4(l,o,u){if((wt&6)!==0)throw Error(s(327));var f=!u&&(o&127)===0&&(o&l.expiredLanes)===0||mi(l,o),g=f?tp(l,o):e1(l,o,!0),v=f;do{if(g===0){lu&&!f&&mr(l,o,0,!1);break}else{if(u=l.current.alternate,v&&!Z4(u)){g=e1(l,o,!1),v=!1;continue}if(g===2){if(v=o,l.errorRecoveryDisabledLanes&v)var D=0;else D=l.pendingLanes&-536870913,D=D!==0?D:D&536870912?536870912:0;if(D!==0){o=D;e:{var O=l;g=Od;var j=O.current.memoizedState.isDehydrated;if(j&&(Do(O,D).flags|=256),D=e1(O,D,!1),D!==2){if(Qb&&!j){O.errorRecoveryDisabledLanes|=v,cs|=v,g=4;break e}v=Ma,Ma=g,v!==null&&(Ma===null?Ma=v:Ma.push.apply(Ma,v))}g=D}if(v=!1,g!==2)continue}}if(g===1){Do(l,0),mr(l,o,0,!0);break}e:{switch(f=l,v=g,v){case 0:case 1:throw Error(s(345));case 4:if((o&4194048)!==o)break;case 6:mr(f,o,Kl,!Ao);break e;case 2:Ma=null;break;case 3:case 5:break;default:throw Error(s(329))}if((o&62914560)===o&&(g=_i+300-ja(),10<g)){if(mr(f,o,Kl,!Ao),Oa(f,0,!0)!==0)break e;Mo=o,f.timeoutHandle=Vd(Id.bind(null,f,u,Ma,Bc,Kb,o,Kl,cs,Aa,Ao,v,"Throttled",-0,0),g);break e}Id(f,u,Ma,Bc,Kb,o,Kl,cs,Aa,Ao,v,null,-0,0)}}break}while(!0);Lo(l)}function Id(l,o,u,f,g,v,D,O,j,re,he,Ee,ue,de){if(l.timeoutHandle=-1,Ee=o.subtreeFlags,Ee&8192||(Ee&16785408)===16785408){Ee={stylesheets:null,count:0,imgCount:0,imgBytes:0,suspenseyImages:[],waitingForImages:!0,waitingForViewTransition:!1,unsuspend:pi},Y4(o,v,Ee);var Pe=(v&62914560)===v?_i-ja():(v&4194048)===v?o5-ja():0;if(Pe=N5(Ee,Pe),Pe!==null){Mo=v,l.cancelPendingCommit=Pe(ip.bind(null,l,o,v,u,f,g,D,O,j,he,Ee,null,ue,de)),mr(l,v,D,!re);return}}ip(l,o,v,u,f,g,D,O,j)}function Z4(l){for(var o=l;;){var u=o.tag;if((u===0||u===11||u===15)&&o.flags&16384&&(u=o.updateQueue,u!==null&&(u=u.stores,u!==null)))for(var f=0;f<u.length;f++){var g=u[f],v=g.getSnapshot;g=g.value;try{if(!zl(v(),g))return!1}catch{return!1}}if(u=o.child,o.subtreeFlags&16384&&u!==null)u.return=o,o=u;else{if(o===l)break;for(;o.sibling===null;){if(o.return===null||o.return===l)return!0;o=o.return}o.sibling.return=o.return,o=o.sibling}}return!0}function mr(l,o,u,f){o&=~Xb,o&=~cs,l.suspendedLanes|=o,l.pingedLanes&=~o,f&&(l.warmLanes|=o),f=l.expirationTimes;for(var g=o;0<g;){var v=31-Zt(g),D=1<<v;f[v]=-1,g&=~D}u!==0&&Gf(l,u,o)}function _c(){return(wt&6)===0?(pr(0),!1):!0}function r5(){if(Mt!==null){if(Yt===0)var l=Mt.return;else l=Mt,Mi=lr=null,md(l),qr=null,Ju=0,l=Mt;for(;l!==null;)q4(l.alternate,l),l=l.return;Mt=null}}function Do(l,o){var u=l.timeoutHandle;u!==-1&&(l.timeoutHandle=-1,yp(u)),u=l.cancelPendingCommit,u!==null&&(l.cancelPendingCommit=null,u()),Mo=0,r5(),ta=l,Mt=u=tr(l.current,null),Tt=o,Yt=0,$e=null,Ao=!1,lu=mi(l,o),Qb=!1,Aa=Kl=Xb=cs=Oi=ra=0,Ma=Od=null,Kb=!1,(o&8)!==0&&(o|=o&32);var f=l.entangledLanes;if(f!==0)for(l=l.entanglements,f&=o;0<f;){var g=31-Zt(f),v=1<<g;o|=l[g],f&=~v}return Bi=o,Sn(),u}function Ic(l,o){st=null,P.H=Cd,o===Pr||o===dc?(o=ph(),Yt=3):o===Ku?(o=ph(),Yt=4):Yt=o===Ib?8:o!==null&&typeof o=="object"&&typeof o.then=="function"?6:1,$e=o,Mt===null&&(ra=1,Ec(l,Cn(o,l.current)))}function J4(){var l=Vl.current;return l===null?!0:(Tt&4194048)===Tt?Ln===null:(Tt&62914560)===Tt||(Tt&536870912)!==0?l===Ln:!1}function $4(){var l=P.H;return P.H=Cd,l===null?Cd:l}function ep(){var l=P.A;return P.A=Q4,l}function $b(){ra=4,Ao||(Tt&4194048)!==Tt&&Vl.current!==null||(lu=!0),(Oi&134217727)===0&&(cs&134217727)===0||ta===null||mr(ta,Tt,Kl,!1)}function e1(l,o,u){var f=wt;wt|=2;var g=$4(),v=ep();(ta!==l||Tt!==o)&&(Bc=null,Do(l,o)),o=!1;var D=ra;e:do try{if(Yt!==0&&Mt!==null){var O=Mt,j=$e;switch(Yt){case 8:r5(),D=6;break e;case 3:case 2:case 9:case 6:Vl.current===null&&(o=!0);var re=Yt;if(Yt=0,$e=null,fs(l,O,j,re),u&&lu){D=0;break e}break;default:re=Yt,Yt=0,$e=null,fs(l,O,j,re)}}F8(),D=ra;break}catch(he){Ic(l,he)}while(!0);return o&&l.shellSuspendCounter++,Mi=lr=null,wt=f,P.H=g,P.A=v,Mt===null&&(ta=null,Tt=0,Sn()),D}function F8(){for(;Mt!==null;)ap(Mt)}function tp(l,o){var u=wt;wt|=2;var f=$4(),g=ep();ta!==l||Tt!==o?(Bc=null,Pt=ja()+500,Do(l,o)):lu=mi(l,o);e:do try{if(Yt!==0&&Mt!==null){o=Mt;var v=$e;t:switch(Yt){case 1:Yt=0,$e=null,fs(l,o,v,1);break;case 2:case 9:if(mh(v)){Yt=0,$e=null,lp(o);break}o=function(){Yt!==2&&Yt!==9||ta!==l||(Yt=7),Lo(l)},v.then(o,o);break e;case 3:Yt=7;break e;case 4:Yt=5;break e;case 7:mh(v)?(Yt=0,$e=null,lp(o)):(Yt=0,$e=null,fs(l,o,v,7));break;case 5:var D=null;switch(Mt.tag){case 26:D=Mt.memoizedState;case 5:case 27:var O=Mt;if(D?dn(D):O.stateNode.complete){Yt=0,$e=null;var j=O.sibling;if(j!==null)Mt=j;else{var re=O.return;re!==null?(Mt=re,wd(re)):Mt=null}break t}}Yt=0,$e=null,fs(l,o,v,5);break;case 6:Yt=0,$e=null,fs(l,o,v,6);break;case 8:r5(),ra=6;break e;default:throw Error(s(462))}}iu();break}catch(he){Ic(l,he)}while(!0);return Mi=lr=null,P.H=f,P.A=g,wt=u,Mt!==null?0:(ta=null,Tt=0,Sn(),ra)}function iu(){for(;Mt!==null&&!Yo();)ap(Mt)}function ap(l){var o=Yh(l.alternate,l,Bi);l.memoizedProps=l.pendingProps,o===null?wd(l):Mt=o}function lp(l){var o=l,u=o.alternate;switch(o.tag){case 15:case 0:o=eu(u,o,o.pendingProps,o.type,void 0,Tt);break;case 11:o=eu(u,o,o.pendingProps,o.type.render,o.ref,Tt);break;case 5:md(o);default:q4(u,o),o=Mt=rh(o,Bi),o=Yh(u,o,Bi)}l.memoizedProps=l.pendingProps,o===null?wd(l):Mt=o}function fs(l,o,u,f){Mi=lr=null,md(o),qr=null,Ju=0;var g=o.return;try{if(k8(l,g,o,u,Tt)){ra=1,Ec(l,Cn(u,l.current)),Mt=null;return}}catch(v){if(g!==null)throw Mt=g,v;ra=1,Ec(l,Cn(u,l.current)),Mt=null;return}o.flags&32768?(At||f===1?l=!0:lu||(Tt&536870912)!==0?l=!1:(Ao=l=!0,(f===2||f===9||f===3||f===6)&&(f=Vl.current,f!==null&&f.tag===13&&(f.flags|=16384))),np(o,l)):wd(o)}function wd(l){var o=l;do{if((o.flags&32768)!==0){np(o,Ao);return}l=o.return;var u=W4(o.alternate,o,Bi);if(u!==null){Mt=u;return}if(o=o.sibling,o!==null){Mt=o;return}Mt=o=l}while(o!==null);ra===0&&(ra=5)}function np(l,o){do{var u=V4(l.alternate,l);if(u!==null){u.flags&=32767,Mt=u;return}if(u=l.return,u!==null&&(u.flags|=32768,u.subtreeFlags=0,u.deletions=null),!o&&(l=l.sibling,l!==null)){Mt=l;return}Mt=l=u}while(l!==null);ra=6,Mt=null}function ip(l,o,u,f,g,v,D,O,j){l.cancelPendingCommit=null;do wc();while(Xa!==0);if((wt&6)!==0)throw Error(s(327));if(o!==null){if(o===l.current)throw Error(s(177));if(v=o.lanes|o.childLanes,v|=Kn,_0(l,u,v,D,O,j),l===ta&&(Mt=ta=null,Tt=0),nu=o,br=l,Mo=u,sn=v,Zb=g,Jb=f,(o.subtreeFlags&10256)!==0||(o.flags&10256)!==0?(l.callbackNode=null,l.callbackPriority=0,mp(Ke,function(){return cp(),null})):(l.callbackNode=null,l.callbackPriority=0),f=(o.flags&13878)!==0,(o.subtreeFlags&13878)!==0||f){f=P.T,P.T=null,g=oe.p,oe.p=2,D=wt,wt|=4;try{zc(l,o,u)}finally{wt=D,oe.p=g,P.T=f}}Xa=1,op(),rp(),up()}}function op(){if(Xa===1){Xa=0;var l=br,o=nu,u=(o.flags&13878)!==0;if((o.subtreeFlags&13878)!==0||u){u=P.T,P.T=null;var f=oe.p;oe.p=2;var g=wt;wt|=4;try{Wb(o,l);var v=s1,D=Gr(l.containerInfo),O=v.focusedElem,j=v.selectionRange;if(D!==O&&O&&O.ownerDocument&&Pu(O.ownerDocument.documentElement,O)){if(j!==null&&Qf(O)){var re=j.start,he=j.end;if(he===void 0&&(he=re),"selectionStart"in O)O.selectionStart=re,O.selectionEnd=Math.min(he,O.value.length);else{var Ee=O.ownerDocument||document,ue=Ee&&Ee.defaultView||window;if(ue.getSelection){var de=ue.getSelection(),Pe=O.textContent.length,Ze=Math.min(j.start,Pe),la=j.end===void 0?Ze:Math.min(j.end,Pe);!de.extend&&Ze>la&&(D=la,la=Ze,Ze=D);var ee=ih(O,Ze),K=ih(O,la);if(ee&&K&&(de.rangeCount!==1||de.anchorNode!==ee.node||de.anchorOffset!==ee.offset||de.focusNode!==K.node||de.focusOffset!==K.offset)){var ae=Ee.createRange();ae.setStart(ee.node,ee.offset),de.removeAllRanges(),Ze>la?(de.addRange(ae),de.extend(K.node,K.offset)):(ae.setEnd(K.node,K.offset),de.addRange(ae))}}}}for(Ee=[],de=O;de=de.parentNode;)de.nodeType===1&&Ee.push({element:de,left:de.scrollLeft,top:de.scrollTop});for(typeof O.focus=="function"&&O.focus(),O=0;O<Ee.length;O++){var ye=Ee[O];ye.element.scrollLeft=ye.left,ye.element.scrollTop=ye.top}}Ka=!!u1,s1=u1=null}finally{wt=g,oe.p=f,P.T=u}}l.current=o,Xa=2}}function rp(){if(Xa===2){Xa=0;var l=br,o=nu,u=(o.flags&8772)!==0;if((o.subtreeFlags&8772)!==0||u){u=P.T,P.T=null;var f=oe.p;oe.p=2;var g=wt;wt|=4;try{zd(l,o.alternate,o)}finally{wt=g,oe.p=f,P.T=u}}Xa=3}}function up(){if(Xa===4||Xa===3){Xa=0,Vs();var l=br,o=nu,u=Mo,f=Jb;(o.subtreeFlags&10256)!==0||(o.flags&10256)!==0?Xa=5:(Xa=0,nu=br=null,sp(l,l.pendingLanes));var g=l.pendingLanes;if(g===0&&(ma=null),Om(u),o=o.stateNode,Ha&&typeof Ha.onCommitFiberRoot=="function")try{Ha.onCommitFiberRoot(vl,o,void 0,(o.current.flags&128)===128)}catch{}if(f!==null){o=P.T,g=oe.p,oe.p=2,P.T=null;try{for(var v=l.onRecoverableError,D=0;D<f.length;D++){var O=f[D];v(O.value,{componentStack:O.stack})}}finally{P.T=o,oe.p=g}}(Mo&3)!==0&&wc(),Lo(l),g=l.pendingLanes,(u&261930)!==0&&(g&42)!==0?l===_d?Oc++:(Oc=0,_d=l):Oc=0,pr(0)}}function sp(l,o){(l.pooledCacheLanes&=o)===0&&(o=l.pooledCache,o!=null&&(l.pooledCache=null,nd(o)))}function wc(){return op(),rp(),up(),cp()}function cp(){if(Xa!==5)return!1;var l=br,o=sn;sn=0;var u=Om(Mo),f=P.T,g=oe.p;try{oe.p=32>u?32:u,P.T=null,u=Zb,Zb=null;var v=br,D=Mo;if(Xa=0,nu=br=null,Mo=0,(wt&6)!==0)throw Error(s(331));var O=wt;if(wt|=4,n5(v.current),xc(v,v.current,D,u),wt=O,pr(0,!1),Ha&&typeof Ha.onPostCommitFiberRoot=="function")try{Ha.onPostCommitFiberRoot(vl,v)}catch{}return!0}finally{oe.p=g,P.T=f,sp(l,o)}}function fp(l,o,u){o=Cn(u,o),o=kh(l.stateNode,o,2),l=Dn(l,o,2),l!==null&&(js(l,2),Lo(l))}function Qt(l,o,u){if(l.tag===3)fp(l,l,u);else for(;o!==null;){if(o.tag===3){fp(o,l,u);break}else if(o.tag===1){var f=o.stateNode;if(typeof o.type.getDerivedStateFromError=="function"||typeof f.componentDidCatch=="function"&&(ma===null||!ma.has(f))){l=Cn(u,l),u=Fh(2),f=Dn(o,u,2),f!==null&&(Uh(u,f,o,l),js(f,2),Lo(f));break}}o=o.return}}function Gd(l,o,u){var f=l.pingCache;if(f===null){f=l.pingCache=new i5;var g=new Set;f.set(o,g)}else g=f.get(o),g===void 0&&(g=new Set,f.set(o,g));g.has(u)||(Qb=!0,g.add(u),l=u5.bind(null,l,o,u),o.then(l,l))}function u5(l,o,u){var f=l.pingCache;f!==null&&f.delete(o),l.pingedLanes|=l.suspendedLanes&u,l.warmLanes&=~u,ta===l&&(Tt&u)===u&&(ra===4||ra===3&&(Tt&62914560)===Tt&&300>ja()-_i?(wt&2)===0&&Do(l,0):Xb|=u,Aa===Tt&&(Aa=0)),Lo(l)}function dp(l,o){o===0&&(o=zu()),l=er(l,o),l!==null&&(js(l,o),Lo(l))}function Bn(l){var o=l.memoizedState,u=0;o!==null&&(u=o.retryLane),dp(l,u)}function bp(l,o){var u=0;switch(l.tag){case 31:case 13:var f=l.stateNode,g=l.memoizedState;g!==null&&(u=g.retryLane);break;case 19:f=l.stateNode;break;case 22:f=l.stateNode._retryCache;break;default:throw Error(s(314))}f!==null&&f.delete(o),dp(l,u)}function mp(l,o){return Kt(l,o)}var Gc=null,ds=null,s5=!1,t1=!1,c5=!1,hr=0;function Lo(l){l!==ds&&l.next===null&&(ds===null?Gc=ds=l:ds=ds.next=l),t1=!0,s5||(s5=!0,Fd())}function pr(l,o){if(!c5&&t1){c5=!0;do for(var u=!1,f=Gc;f!==null;){if(l!==0){var g=f.pendingLanes;if(g===0)var v=0;else{var D=f.suspendedLanes,O=f.pingedLanes;v=(1<<31-Zt(42|l)+1)-1,v&=g&~(D&~O),v=v&201326741?v&201326741|1:v?v|2:0}v!==0&&(u=!0,bs(f,v))}else v=Tt,v=Oa(f,f===ta?v:0,f.cancelPendingCommit!==null||f.timeoutHandle!==-1),(v&3)===0||mi(f,v)||(u=!0,bs(f,v));f=f.next}while(u);c5=!1}}function a1(){f5()}function f5(){t1=s5=!1;var l=0;hr!==0&&U8()&&(l=hr);for(var o=ja(),u=null,f=Gc;f!==null;){var g=f.next,v=d5(f,o);v===0?(f.next=null,u===null?Gc=g:u.next=g,g===null&&(ds=u)):(u=f,(l!==0||(v&3)!==0)&&(t1=!0)),f=g}Xa!==0&&Xa!==5||pr(l),hr!==0&&(hr=0)}function d5(l,o){for(var u=l.suspendedLanes,f=l.pingedLanes,g=l.expirationTimes,v=l.pendingLanes&-62914561;0<v;){var D=31-Zt(v),O=1<<D,j=g[D];j===-1?((O&u)===0||(O&f)!==0)&&(g[D]=qs(O,o)):j<=o&&(l.expiredLanes|=O),v&=~O}if(o=ta,u=Tt,u=Oa(l,l===o?u:0,l.cancelPendingCommit!==null||l.timeoutHandle!==-1),f=l.callbackNode,u===0||l===o&&(Yt===2||Yt===9)||l.cancelPendingCommit!==null)return f!==null&&f!==null&&If(f),l.callbackNode=null,l.callbackPriority=0;if((u&3)===0||mi(l,u)){if(o=u&-u,o===l.callbackPriority)return o;switch(f!==null&&If(f),Om(u)){case 2:case 8:u=Oe;break;case 32:u=Ke;break;case 268435456:u=Ut;break;default:u=Ke}return f=kd.bind(null,l),u=Kt(u,f),l.callbackPriority=o,l.callbackNode=u,o}return f!==null&&f!==null&&If(f),l.callbackPriority=2,l.callbackNode=null,2}function kd(l,o){if(Xa!==0&&Xa!==5)return l.callbackNode=null,l.callbackPriority=0,null;var u=l.callbackNode;if(wc()&&l.callbackNode!==u)return null;var f=Tt;return f=Oa(l,l===ta?f:0,l.cancelPendingCommit!==null||l.timeoutHandle!==-1),f===0?null:(K4(l,f,o),d5(l,ja()),l.callbackNode!=null&&l.callbackNode===u?kd.bind(null,l):null)}function bs(l,o){if(wc())return null;K4(l,o,!0)}function Fd(){Cp(function(){(wt&6)!==0?Kt(ve,a1):f5()})}function l1(){if(hr===0){var l=Hr;l===0&&(l=Xo,Xo<<=1,(Xo&261888)===0&&(Xo=256)),hr=l}return hr}function hp(l){return l==null||typeof l=="symbol"||typeof l=="boolean"?null:typeof l=="function"?l:jn(""+l)}function ms(l,o){var u=o.ownerDocument.createElement("input");return u.name=o.name,u.value=o.value,l.id&&u.setAttribute("form",l.id),o.parentNode.insertBefore(u,o),l=new FormData(l),u.parentNode.removeChild(u),l}function Ud(l,o,u,f,g){if(o==="submit"&&u&&u.stateNode===g){var v=hp((g[kl]||null).action),D=f.submitter;D&&(o=(o=D[kl]||null)?hp(o.formAction):D.getAttribute("formAction"),o!==null&&(v=o,D=null));var O=new qf("action","action",null,f,g);l.push({event:O,listeners:[{instance:null,listener:function(){if(f.defaultPrevented){if(hr!==0){var j=D?ms(g,D):new FormData(g);yc(u,{pending:!0,data:j,method:g.method,action:v},null,j)}}else typeof v=="function"&&(O.preventDefault(),j=D?ms(g,D):new FormData(g),yc(u,{pending:!0,data:j,method:g.method,action:v},v,j))},currentTarget:g}]})}}for(var n1=0;n1<oc.length;n1++){var kc=oc[n1],b5=kc.toLowerCase(),m5=kc[0].toUpperCase()+kc.slice(1);Ul(b5,"on"+m5)}Ul(Kf,"onAnimationEnd"),Ul(oh,"onAnimationIteration"),Ul(nb,"onAnimationStart"),Ul("dblclick","onDoubleClick"),Ul("focusin","onFocus"),Ul("focusout","onBlur"),Ul(Wu,"onTransitionRun"),Ul(Zf,"onTransitionStart"),Ul(oo,"onTransitionCancel"),Ul(D4,"onTransitionEnd"),to("onMouseEnter",["mouseout","mouseover"]),to("onMouseLeave",["mouseout","mouseover"]),to("onPointerEnter",["pointerout","pointerover"]),to("onPointerLeave",["pointerout","pointerover"]),Br("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),Br("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),Br("onBeforeInput",["compositionend","keypress","textInput","paste"]),Br("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),Br("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),Br("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var Fc="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),pp=new Set("beforetoggle cancel close invalid load scroll scrollend toggle".split(" ").concat(Fc));function gp(l,o){o=(o&4)!==0;for(var u=0;u<l.length;u++){var f=l[u],g=f.event;f=f.listeners;e:{var v=void 0;if(o)for(var D=f.length-1;0<=D;D--){var O=f[D],j=O.instance,re=O.currentTarget;if(O=O.listener,j!==v&&g.isPropagationStopped())break e;v=O,g.currentTarget=re;try{v(g)}catch(he){Vu(he)}g.currentTarget=null,v=j}else for(D=0;D<f.length;D++){if(O=f[D],j=O.instance,re=O.currentTarget,O=O.listener,j!==v&&g.isPropagationStopped())break e;v=O,g.currentTarget=re;try{v(g)}catch(he){Vu(he)}g.currentTarget=null,v=j}}}}function Ct(l,o){var u=o[G0];u===void 0&&(u=o[G0]=new Set);var f=l+"__bubble";u.has(f)||(Hd(o,l,2,!1),u.add(f))}function h5(l,o,u){var f=0;o&&(f|=4),Hd(u,l,f,o)}var i1="_reactListening"+Math.random().toString(36).slice(2);function Uc(l){if(!l[i1]){l[i1]=!0,Bu.forEach(function(u){u!=="selectionchange"&&(pp.has(u)||h5(u,!1,l),h5(u,!0,l))});var o=l.nodeType===9?l:l.ownerDocument;o===null||o[i1]||(o[i1]=!0,h5("selectionchange",!1,o))}}function Hd(l,o,u,f){switch(Kd(o)){case 2:var g=xo;break;case 8:g=Ro;break;default:g=Cl}u=g.bind(null,o,u,l),g=void 0,!Wf||o!=="touchstart"&&o!=="touchmove"&&o!=="wheel"||(g=!0),f?g!==void 0?l.addEventListener(o,u,{capture:!0,passive:g}):l.addEventListener(o,u,!0):g!==void 0?l.addEventListener(o,u,{passive:g}):l.addEventListener(o,u,!1)}function p5(l,o,u,f,g){var v=f;if((o&1)===0&&(o&2)===0&&f!==null)e:for(;;){if(f===null)return;var D=f.tag;if(D===3||D===4){var O=f.stateNode.containerInfo;if(O===g)break;if(D===4)for(D=f.return;D!==null;){var j=D.tag;if((j===3||j===4)&&D.stateNode.containerInfo===g)return;D=D.return}for(;O!==null;){if(D=xu(O),D===null)return;if(j=D.tag,j===5||j===6||j===26||j===27){f=v=D;continue e}O=O.parentNode}}f=f.return}Pm(function(){var re=v,he=q0(u),Ee=[];e:{var ue=ro.get(l);if(ue!==void 0){var de=qf,Pe=l;switch(l){case"keypress":if(Y0(u)===0)break e;case"keydown":case"keyup":de=Z0;break;case"focusin":Pe="focus",de=X0;break;case"focusout":Pe="blur",de=X0;break;case"beforeblur":case"afterblur":de=X0;break;case"click":if(u.button===2)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":de=tc;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":de=m4;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":de=v4;break;case Kf:case oh:case nb:de=p4;break;case D4:de=_8;break;case"scroll":case"scrollend":de=B8;break;case"wheel":de=I8;break;case"copy":case"cut":case"paste":de=wu;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":de=vi;break;case"toggle":case"beforetoggle":de=Zm}var Ze=(o&4)!==0,la=!Ze&&(l==="scroll"||l==="scrollend"),ee=Ze?ue!==null?ue+"Capture":null:ue;Ze=[];for(var K=re,ae;K!==null;){var ye=K;if(ae=ye.stateNode,ye=ye.tag,ye!==5&&ye!==26&&ye!==27||ae===null||ee===null||(ye=tl(K,ee),ye!=null&&Ze.push(Pd(K,ye,ae))),la)break;K=K.return}0<Ze.length&&(ue=new de(ue,Pe,null,u,he),Ee.push({event:ue,listeners:Ze}))}}if((o&7)===0){e:{if(ue=l==="mouseover"||l==="pointerover",de=l==="mouseout"||l==="pointerout",ue&&u!==V0&&(Pe=u.relatedTarget||u.fromElement)&&(xu(Pe)||Pe[Rr]))break e;if((de||ue)&&(ue=he.window===he?he:(ue=he.ownerDocument)?ue.defaultView||ue.parentWindow:window,de?(Pe=u.relatedTarget||u.toElement,de=re,Pe=Pe?xu(Pe):null,Pe!==null&&(la=h(Pe),Ze=Pe.tag,Pe!==la||Ze!==5&&Ze!==27&&Ze!==6)&&(Pe=null)):(de=null,Pe=re),de!==Pe)){if(Ze=tc,ye="onMouseLeave",ee="onMouseEnter",K="mouse",(l==="pointerout"||l==="pointerover")&&(Ze=vi,ye="onPointerLeave",ee="onPointerEnter",K="pointer"),la=de==null?ue:Ys(de),ae=Pe==null?ue:Ys(Pe),ue=new Ze(ye,K+"leave",de,u,he),ue.target=la,ue.relatedTarget=ae,ye=null,xu(he)===re&&(Ze=new Ze(ee,K+"enter",Pe,u,he),Ze.target=ae,Ze.relatedTarget=la,ye=Ze),la=ye,de&&Pe)t:{for(Ze=Tp,ee=de,K=Pe,ae=0,ye=ee;ye;ye=Ze(ye))ae++;ye=0;for(var Ye=K;Ye;Ye=Ze(Ye))ye++;for(;0<ae-ye;)ee=Ze(ee),ae--;for(;0<ye-ae;)K=Ze(K),ye--;for(;ae--;){if(ee===K||K!==null&&ee===K.alternate){Ze=ee;break t}ee=Ze(ee),K=Ze(K)}Ze=null}else Ze=null;de!==null&&o1(Ee,ue,de,Ze,!1),Pe!==null&&la!==null&&o1(Ee,la,Pe,Ze,!0)}}e:{if(ue=re?Ys(re):window,de=ue.nodeName&&ue.nodeName.toLowerCase(),de==="select"||de==="input"&&ue.type==="file")var Ot=ah;else if(io(ue))if(eb)Ot=Hu;else{Ot=A4;var We=E4}else de=ue.nodeName,!de||de.toLowerCase()!=="input"||ue.type!=="checkbox"&&ue.type!=="radio"?re&&Hm(re.elementType)&&(Ot=ah):Ot=wr;if(Ot&&(Ot=Ot(l,re))){th(Ee,Ot,u,he);break e}We&&We(l,ue,re),l==="focusout"&&re&&ue.type==="number"&&re.memoizedProps.value!=null&&Ou(ue,"number",ue.value)}switch(We=re?Ys(re):window,l){case"focusin":(io(We)||We.contentEditable==="true")&&(kr=We,nc=re,Xn=null);break;case"focusout":Xn=nc=kr=null;break;case"mousedown":yi=!0;break;case"contextmenu":case"mouseup":case"dragend":yi=!1,lb(Ee,u,he);break;case"selectionchange":if(Xf)break;case"keydown":case"keyup":lb(Ee,u,he)}var ut;if(ac)e:{switch(l){case"compositionstart":var ft="onCompositionStart";break e;case"compositionend":ft="onCompositionEnd";break e;case"compositionupdate":ft="onCompositionUpdate";break e}ft=void 0}else ku?$0(l,u)&&(ft="onCompositionEnd"):l==="keydown"&&u.keyCode===229&&(ft="onCompositionStart");ft&&(Jm&&u.locale!=="ko"&&(ku||ft!=="onCompositionStart"?ft==="onCompositionEnd"&&ku&&(ut=Vm()):(Jo=he,Wm="value"in Jo?Jo.value:Jo.textContent,ku=!0)),We=Wd(re,ft),0<We.length&&(ft=new g4(ft,l,null,u,he),Ee.push({event:ft,listeners:We}),ut?ft.data=ut:(ut=$m(u),ut!==null&&(ft.data=ut)))),(ut=Ll?C4(l,u):w8(l,u))&&(ft=Wd(re,"onBeforeInput"),0<ft.length&&(We=new g4("onBeforeInput","beforeinput",null,u,he),Ee.push({event:We,listeners:ft}),We.data=ut)),Ud(Ee,l,re,u,he)}gp(Ee,o)})}function Pd(l,o,u){return{instance:l,listener:o,currentTarget:u}}function Wd(l,o){for(var u=o+"Capture",f=[];l!==null;){var g=l,v=g.stateNode;if(g=g.tag,g!==5&&g!==26&&g!==27||v===null||(g=tl(l,u),g!=null&&f.unshift(Pd(l,g,v)),g=tl(l,o),g!=null&&f.push(Pd(l,g,v))),l.tag===3)return f;l=l.return}return[]}function Tp(l){if(l===null)return null;do l=l.return;while(l&&l.tag!==5&&l.tag!==27);return l||null}function o1(l,o,u,f,g){for(var v=o._reactName,D=[];u!==null&&u!==f;){var O=u,j=O.alternate,re=O.stateNode;if(O=O.tag,j!==null&&j===f)break;O!==5&&O!==26&&O!==27||re===null||(j=re,g?(re=tl(u,v),re!=null&&D.unshift(Pd(u,re,j))):g||(re=tl(u,v),re!=null&&D.push(Pd(u,re,j)))),u=u.return}D.length!==0&&l.push({event:o,listeners:D})}var vp=/\r\n?/g,g5=/\u0000|\uFFFD/g;function T5(l){return(typeof l=="string"?l:""+l).replace(vp,`
33
+ `).replace(g5,"")}function v5(l,o){return o=T5(o),T5(l)===o}function aa(l,o,u,f,g,v){switch(u){case"children":typeof f=="string"?o==="body"||o==="textarea"&&f===""||ao(l,f):(typeof f=="number"||typeof f=="bigint")&&o!=="body"&&ao(l,""+f);break;case"className":H0(l,"class",f);break;case"tabIndex":H0(l,"tabindex",f);break;case"dir":case"role":case"viewBox":case"width":case"height":H0(l,u,f);break;case"style":f4(l,f,v);break;case"data":if(o!=="object"){H0(l,"data",f);break}case"src":case"href":if(f===""&&(o!=="a"||u!=="href")){l.removeAttribute(u);break}if(f==null||typeof f=="function"||typeof f=="symbol"||typeof f=="boolean"){l.removeAttribute(u);break}f=jn(""+f),l.setAttribute(u,f);break;case"action":case"formAction":if(typeof f=="function"){l.setAttribute(u,"javascript:throw new Error('A React form was unexpectedly submitted. If you called form.submit() manually, consider using form.requestSubmit() instead. If you\\'re trying to use event.stopPropagation() in a submit event handler, consider also calling event.preventDefault().')");break}else typeof v=="function"&&(u==="formAction"?(o!=="input"&&aa(l,o,"name",g.name,g,null),aa(l,o,"formEncType",g.formEncType,g,null),aa(l,o,"formMethod",g.formMethod,g,null),aa(l,o,"formTarget",g.formTarget,g,null)):(aa(l,o,"encType",g.encType,g,null),aa(l,o,"method",g.method,g,null),aa(l,o,"target",g.target,g,null)));if(f==null||typeof f=="symbol"||typeof f=="boolean"){l.removeAttribute(u);break}f=jn(""+f),l.setAttribute(u,f);break;case"onClick":f!=null&&(l.onclick=pi);break;case"onScroll":f!=null&&Ct("scroll",l);break;case"onScrollEnd":f!=null&&Ct("scrollend",l);break;case"dangerouslySetInnerHTML":if(f!=null){if(typeof f!="object"||!("__html"in f))throw Error(s(61));if(u=f.__html,u!=null){if(g.children!=null)throw Error(s(60));l.innerHTML=u}}break;case"multiple":l.multiple=f&&typeof f!="function"&&typeof f!="symbol";break;case"muted":l.muted=f&&typeof f!="function"&&typeof f!="symbol";break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":break;case"autoFocus":break;case"xlinkHref":if(f==null||typeof f=="function"||typeof f=="boolean"||typeof f=="symbol"){l.removeAttribute("xlink:href");break}u=jn(""+f),l.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",u);break;case"contentEditable":case"spellCheck":case"draggable":case"value":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":f!=null&&typeof f!="function"&&typeof f!="symbol"?l.setAttribute(u,""+f):l.removeAttribute(u);break;case"inert":case"allowFullScreen":case"async":case"autoPlay":case"controls":case"default":case"defer":case"disabled":case"disablePictureInPicture":case"disableRemotePlayback":case"formNoValidate":case"hidden":case"loop":case"noModule":case"noValidate":case"open":case"playsInline":case"readOnly":case"required":case"reversed":case"scoped":case"seamless":case"itemScope":f&&typeof f!="function"&&typeof f!="symbol"?l.setAttribute(u,""):l.removeAttribute(u);break;case"capture":case"download":f===!0?l.setAttribute(u,""):f!==!1&&f!=null&&typeof f!="function"&&typeof f!="symbol"?l.setAttribute(u,f):l.removeAttribute(u);break;case"cols":case"rows":case"size":case"span":f!=null&&typeof f!="function"&&typeof f!="symbol"&&!isNaN(f)&&1<=f?l.setAttribute(u,f):l.removeAttribute(u);break;case"rowSpan":case"start":f==null||typeof f=="function"||typeof f=="symbol"||isNaN(f)?l.removeAttribute(u):l.setAttribute(u,f);break;case"popover":Ct("beforetoggle",l),Ct("toggle",l),Ks(l,"popover",f);break;case"xlinkActuate":Ko(l,"http://www.w3.org/1999/xlink","xlink:actuate",f);break;case"xlinkArcrole":Ko(l,"http://www.w3.org/1999/xlink","xlink:arcrole",f);break;case"xlinkRole":Ko(l,"http://www.w3.org/1999/xlink","xlink:role",f);break;case"xlinkShow":Ko(l,"http://www.w3.org/1999/xlink","xlink:show",f);break;case"xlinkTitle":Ko(l,"http://www.w3.org/1999/xlink","xlink:title",f);break;case"xlinkType":Ko(l,"http://www.w3.org/1999/xlink","xlink:type",f);break;case"xmlBase":Ko(l,"http://www.w3.org/XML/1998/namespace","xml:base",f);break;case"xmlLang":Ko(l,"http://www.w3.org/XML/1998/namespace","xml:lang",f);break;case"xmlSpace":Ko(l,"http://www.w3.org/XML/1998/namespace","xml:space",f);break;case"is":Ks(l,"is",f);break;case"innerText":case"textContent":break;default:(!(2<u.length)||u[0]!=="o"&&u[0]!=="O"||u[1]!=="n"&&u[1]!=="N")&&(u=N8.get(u)||u,Ks(l,u,f))}}function S5(l,o,u,f,g,v){switch(u){case"style":f4(l,f,v);break;case"dangerouslySetInnerHTML":if(f!=null){if(typeof f!="object"||!("__html"in f))throw Error(s(61));if(u=f.__html,u!=null){if(g.children!=null)throw Error(s(60));l.innerHTML=u}}break;case"children":typeof f=="string"?ao(l,f):(typeof f=="number"||typeof f=="bigint")&&ao(l,""+f);break;case"onScroll":f!=null&&Ct("scroll",l);break;case"onScrollEnd":f!=null&&Ct("scrollend",l);break;case"onClick":f!=null&&(l.onclick=pi);break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"innerHTML":case"ref":break;case"innerText":case"textContent":break;default:if(!Nr.hasOwnProperty(u))e:{if(u[0]==="o"&&u[1]==="n"&&(g=u.endsWith("Capture"),o=u.slice(2,g?u.length-7:void 0),v=l[kl]||null,v=v!=null?v[u]:null,typeof v=="function"&&l.removeEventListener(o,v,g),typeof f=="function")){typeof v!="function"&&v!==null&&(u in l?l[u]=null:l.hasAttribute(u)&&l.removeAttribute(u)),l.addEventListener(o,f,g);break e}u in l?l[u]=f:f===!0?l.setAttribute(u,""):Ks(l,u,f)}}}function yl(l,o,u){switch(o){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"img":Ct("error",l),Ct("load",l);var f=!1,g=!1,v;for(v in u)if(u.hasOwnProperty(v)){var D=u[v];if(D!=null)switch(v){case"src":f=!0;break;case"srcSet":g=!0;break;case"children":case"dangerouslySetInnerHTML":throw Error(s(137,o));default:aa(l,o,v,D,u,null)}}g&&aa(l,o,"srcSet",u.srcSet,u,null),f&&aa(l,o,"src",u.src,u,null);return;case"input":Ct("invalid",l);var O=v=D=g=null,j=null,re=null;for(f in u)if(u.hasOwnProperty(f)){var he=u[f];if(he!=null)switch(f){case"name":g=he;break;case"type":D=he;break;case"checked":j=he;break;case"defaultChecked":re=he;break;case"value":v=he;break;case"defaultValue":O=he;break;case"children":case"dangerouslySetInnerHTML":if(he!=null)throw Error(s(137,o));break;default:aa(l,o,f,he,u,null)}}Uf(l,v,O,j,re,D,g,!1);return;case"select":Ct("invalid",l),f=D=v=null;for(g in u)if(u.hasOwnProperty(g)&&(O=u[g],O!=null))switch(g){case"value":v=O;break;case"defaultValue":D=O;break;case"multiple":f=O;default:aa(l,o,g,O,u,null)}o=v,u=D,l.multiple=!!f,o!=null?Zs(l,!!f,o,!1):u!=null&&Zs(l,!!f,u,!0);return;case"textarea":Ct("invalid",l),v=g=f=null;for(D in u)if(u.hasOwnProperty(D)&&(O=u[D],O!=null))switch(D){case"value":f=O;break;case"defaultValue":g=O;break;case"children":v=O;break;case"dangerouslySetInnerHTML":if(O!=null)throw Error(s(91));break;default:aa(l,o,D,O,u,null)}Um(l,f,g,v);return;case"option":for(j in u)if(u.hasOwnProperty(j)&&(f=u[j],f!=null))switch(j){case"selected":l.selected=f&&typeof f!="function"&&typeof f!="symbol";break;default:aa(l,o,j,f,u,null)}return;case"dialog":Ct("beforetoggle",l),Ct("toggle",l),Ct("cancel",l),Ct("close",l);break;case"iframe":case"object":Ct("load",l);break;case"video":case"audio":for(f=0;f<Fc.length;f++)Ct(Fc[f],l);break;case"image":Ct("error",l),Ct("load",l);break;case"details":Ct("toggle",l);break;case"embed":case"source":case"link":Ct("error",l),Ct("load",l);case"area":case"base":case"br":case"col":case"hr":case"keygen":case"meta":case"param":case"track":case"wbr":case"menuitem":for(re in u)if(u.hasOwnProperty(re)&&(f=u[re],f!=null))switch(re){case"children":case"dangerouslySetInnerHTML":throw Error(s(137,o));default:aa(l,o,re,f,u,null)}return;default:if(Hm(o)){for(he in u)u.hasOwnProperty(he)&&(f=u[he],f!==void 0&&S5(l,o,he,f,u,void 0));return}}for(O in u)u.hasOwnProperty(O)&&(f=u[O],f!=null&&aa(l,o,O,f,u,null))}function y5(l,o,u,f){switch(o){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"input":var g=null,v=null,D=null,O=null,j=null,re=null,he=null;for(de in u){var Ee=u[de];if(u.hasOwnProperty(de)&&Ee!=null)switch(de){case"checked":break;case"value":break;case"defaultValue":j=Ee;default:f.hasOwnProperty(de)||aa(l,o,de,null,f,Ee)}}for(var ue in f){var de=f[ue];if(Ee=u[ue],f.hasOwnProperty(ue)&&(de!=null||Ee!=null))switch(ue){case"type":v=de;break;case"name":g=de;break;case"checked":re=de;break;case"defaultChecked":he=de;break;case"value":D=de;break;case"defaultValue":O=de;break;case"children":case"dangerouslySetInnerHTML":if(de!=null)throw Error(s(137,o));break;default:de!==Ee&&aa(l,o,ue,de,f,Ee)}}Ff(l,D,O,j,re,he,v,g);return;case"select":de=D=O=ue=null;for(v in u)if(j=u[v],u.hasOwnProperty(v)&&j!=null)switch(v){case"value":break;case"multiple":de=j;default:f.hasOwnProperty(v)||aa(l,o,v,null,f,j)}for(g in f)if(v=f[g],j=u[g],f.hasOwnProperty(g)&&(v!=null||j!=null))switch(g){case"value":ue=v;break;case"defaultValue":O=v;break;case"multiple":D=v;default:v!==j&&aa(l,o,g,v,f,j)}o=O,u=D,f=de,ue!=null?Zs(l,!!u,ue,!1):!!f!=!!u&&(o!=null?Zs(l,!!u,o,!0):Zs(l,!!u,u?[]:"",!1));return;case"textarea":de=ue=null;for(O in u)if(g=u[O],u.hasOwnProperty(O)&&g!=null&&!f.hasOwnProperty(O))switch(O){case"value":break;case"children":break;default:aa(l,o,O,null,f,g)}for(D in f)if(g=f[D],v=u[D],f.hasOwnProperty(D)&&(g!=null||v!=null))switch(D){case"value":ue=g;break;case"defaultValue":de=g;break;case"children":break;case"dangerouslySetInnerHTML":if(g!=null)throw Error(s(91));break;default:g!==v&&aa(l,o,D,g,f,v)}Fm(l,ue,de);return;case"option":for(var Pe in u)if(ue=u[Pe],u.hasOwnProperty(Pe)&&ue!=null&&!f.hasOwnProperty(Pe))switch(Pe){case"selected":l.selected=!1;break;default:aa(l,o,Pe,null,f,ue)}for(j in f)if(ue=f[j],de=u[j],f.hasOwnProperty(j)&&ue!==de&&(ue!=null||de!=null))switch(j){case"selected":l.selected=ue&&typeof ue!="function"&&typeof ue!="symbol";break;default:aa(l,o,j,ue,f,de)}return;case"img":case"link":case"area":case"base":case"br":case"col":case"embed":case"hr":case"keygen":case"meta":case"param":case"source":case"track":case"wbr":case"menuitem":for(var Ze in u)ue=u[Ze],u.hasOwnProperty(Ze)&&ue!=null&&!f.hasOwnProperty(Ze)&&aa(l,o,Ze,null,f,ue);for(re in f)if(ue=f[re],de=u[re],f.hasOwnProperty(re)&&ue!==de&&(ue!=null||de!=null))switch(re){case"children":case"dangerouslySetInnerHTML":if(ue!=null)throw Error(s(137,o));break;default:aa(l,o,re,ue,f,de)}return;default:if(Hm(o)){for(var la in u)ue=u[la],u.hasOwnProperty(la)&&ue!==void 0&&!f.hasOwnProperty(la)&&S5(l,o,la,void 0,f,ue);for(he in f)ue=f[he],de=u[he],!f.hasOwnProperty(he)||ue===de||ue===void 0&&de===void 0||S5(l,o,he,ue,f,de);return}}for(var ee in u)ue=u[ee],u.hasOwnProperty(ee)&&ue!=null&&!f.hasOwnProperty(ee)&&aa(l,o,ee,null,f,ue);for(Ee in f)ue=f[Ee],de=u[Ee],!f.hasOwnProperty(Ee)||ue===de||ue==null&&de==null||aa(l,o,Ee,ue,f,de)}function r1(l){switch(l){case"css":case"script":case"font":case"img":case"image":case"input":case"link":return!0;default:return!1}}function C5(){if(typeof performance.getEntriesByType=="function"){for(var l=0,o=0,u=performance.getEntriesByType("resource"),f=0;f<u.length;f++){var g=u[f],v=g.transferSize,D=g.initiatorType,O=g.duration;if(v&&O&&r1(D)){for(D=0,O=g.responseEnd,f+=1;f<u.length;f++){var j=u[f],re=j.startTime;if(re>O)break;var he=j.transferSize,Ee=j.initiatorType;he&&r1(Ee)&&(j=j.responseEnd,D+=he*(j<O?1:(O-re)/(j-re)))}if(--f,o+=8*(v+D)/(g.duration/1e3),l++,10<l)break}}if(0<l)return o/l/1e6}return navigator.connection&&(l=navigator.connection.downlink,typeof l=="number")?l:5}var u1=null,s1=null;function ou(l){return l.nodeType===9?l:l.ownerDocument}function Sp(l){switch(l){case"http://www.w3.org/2000/svg":return 1;case"http://www.w3.org/1998/Math/MathML":return 2;default:return 0}}function E5(l,o){if(l===0)switch(o){case"svg":return 1;case"math":return 2;default:return 0}return l===1&&o==="foreignObject"?0:l}function Hc(l,o){return l==="textarea"||l==="noscript"||typeof o.children=="string"||typeof o.children=="number"||typeof o.children=="bigint"||typeof o.dangerouslySetInnerHTML=="object"&&o.dangerouslySetInnerHTML!==null&&o.dangerouslySetInnerHTML.__html!=null}var c1=null;function U8(){var l=window.event;return l&&l.type==="popstate"?l===c1?!1:(c1=l,!0):(c1=null,!1)}var Vd=typeof setTimeout=="function"?setTimeout:void 0,yp=typeof clearTimeout=="function"?clearTimeout:void 0,hs=typeof Promise=="function"?Promise:void 0,Cp=typeof queueMicrotask=="function"?queueMicrotask:typeof hs<"u"?function(l){return hs.resolve(null).then(l).catch(A5)}:Vd;function A5(l){setTimeout(function(){throw l})}function Ii(l){return l==="head"}function M5(l,o){var u=o,f=0;do{var g=u.nextSibling;if(l.removeChild(u),g&&g.nodeType===8)if(u=g.data,u==="/$"||u==="/&"){if(f===0){l.removeChild(g),$c(o);return}f--}else if(u==="$"||u==="$?"||u==="$~"||u==="$!"||u==="&")f++;else if(u==="html")ps(l.ownerDocument.documentElement);else if(u==="head"){u=l.ownerDocument.head,ps(u);for(var v=u.firstChild;v;){var D=v.nextSibling,O=v.nodeName;v[eo]||O==="SCRIPT"||O==="STYLE"||O==="LINK"&&v.rel.toLowerCase()==="stylesheet"||u.removeChild(v),v=D}}else u==="body"&&ps(l.ownerDocument.body);u=g}while(u);$c(o)}function ka(l,o){var u=l;l=0;do{var f=u.nextSibling;if(u.nodeType===1?o?(u._stashedDisplay=u.style.display,u.style.display="none"):(u.style.display=u._stashedDisplay||"",u.getAttribute("style")===""&&u.removeAttribute("style")):u.nodeType===3&&(o?(u._stashedText=u.nodeValue,u.nodeValue=""):u.nodeValue=u._stashedText||""),f&&f.nodeType===8)if(u=f.data,u==="/$"){if(l===0)break;l--}else u!=="$"&&u!=="$?"&&u!=="$~"&&u!=="$!"||l++;u=f}while(u)}function qd(l){var o=l.firstChild;for(o&&o.nodeType===10&&(o=o.nextSibling);o;){var u=o;switch(o=o.nextSibling,u.nodeName){case"HTML":case"HEAD":case"BODY":qd(u),k0(u);continue;case"SCRIPT":case"STYLE":continue;case"LINK":if(u.rel.toLowerCase()==="stylesheet")continue}l.removeChild(u)}}function H8(l,o,u,f){for(;l.nodeType===1;){var g=u;if(l.nodeName.toLowerCase()!==o.toLowerCase()){if(!f&&(l.nodeName!=="INPUT"||l.type!=="hidden"))break}else if(f){if(!l[eo])switch(o){case"meta":if(!l.hasAttribute("itemprop"))break;return l;case"link":if(v=l.getAttribute("rel"),v==="stylesheet"&&l.hasAttribute("data-precedence"))break;if(v!==g.rel||l.getAttribute("href")!==(g.href==null||g.href===""?null:g.href)||l.getAttribute("crossorigin")!==(g.crossOrigin==null?null:g.crossOrigin)||l.getAttribute("title")!==(g.title==null?null:g.title))break;return l;case"style":if(l.hasAttribute("data-precedence"))break;return l;case"script":if(v=l.getAttribute("src"),(v!==(g.src==null?null:g.src)||l.getAttribute("type")!==(g.type==null?null:g.type)||l.getAttribute("crossorigin")!==(g.crossOrigin==null?null:g.crossOrigin))&&v&&l.hasAttribute("async")&&!l.hasAttribute("itemprop"))break;return l;default:return l}}else if(o==="input"&&l.type==="hidden"){var v=g.name==null?null:""+g.name;if(g.type==="hidden"&&l.getAttribute("name")===v)return l}else return l;if(l=Jl(l.nextSibling),l===null)break}return null}function bt(l,o,u){if(o==="")return null;for(;l.nodeType!==3;)if((l.nodeType!==1||l.nodeName!=="INPUT"||l.type!=="hidden")&&!u||(l=Jl(l.nextSibling),l===null))return null;return l}function Ep(l,o){for(;l.nodeType!==8;)if((l.nodeType!==1||l.nodeName!=="INPUT"||l.type!=="hidden")&&!o||(l=Jl(l.nextSibling),l===null))return null;return l}function li(l){return l.data==="$?"||l.data==="$~"}function ru(l){return l.data==="$!"||l.data==="$?"&&l.ownerDocument.readyState!=="loading"}function Pc(l,o){var u=l.ownerDocument;if(l.data==="$~")l._reactRetry=o;else if(l.data!=="$?"||u.readyState!=="loading")o();else{var f=function(){o(),u.removeEventListener("DOMContentLoaded",f)};u.addEventListener("DOMContentLoaded",f),l._reactRetry=f}}function Jl(l){for(;l!=null;l=l.nextSibling){var o=l.nodeType;if(o===1||o===3)break;if(o===8){if(o=l.data,o==="$"||o==="$!"||o==="$?"||o==="$~"||o==="&"||o==="F!"||o==="F")break;if(o==="/$"||o==="/&")return null}}return l}var jd=null;function f1(l){l=l.nextSibling;for(var o=0;l;){if(l.nodeType===8){var u=l.data;if(u==="/$"||u==="/&"){if(o===0)return Jl(l.nextSibling);o--}else u!=="$"&&u!=="$!"&&u!=="$?"&&u!=="$~"&&u!=="&"||o++}l=l.nextSibling}return null}function wi(l){l=l.previousSibling;for(var o=0;l;){if(l.nodeType===8){var u=l.data;if(u==="$"||u==="$!"||u==="$?"||u==="$~"||u==="&"){if(o===0)return l;o--}else u!=="/$"&&u!=="/&"||o++}l=l.previousSibling}return null}function Wc(l,o,u){switch(o=ou(u),l){case"html":if(l=o.documentElement,!l)throw Error(s(452));return l;case"head":if(l=o.head,!l)throw Error(s(453));return l;case"body":if(l=o.body,!l)throw Error(s(454));return l;default:throw Error(s(451))}}function ps(l){for(var o=l.attributes;o.length;)l.removeAttributeNode(o[0]);k0(l)}var fn=new Map,Yd=new Set;function Rl(l){return typeof l.getRootNode=="function"?l.getRootNode():l.nodeType===9?l:l.ownerDocument}var Gi=oe.d;oe.d={f:P8,r:Ap,D:fe,C:Wt,L:W8,m:D5,X:gr,S:L5,M:uu};function P8(){var l=Gi.f(),o=_c();return l||o}function Ap(l){var o=Ru(l);o!==null&&o.tag===5&&o.type==="form"?ea(o):Gi.r(l)}var Vc=typeof document>"u"?null:document;function Va(l,o,u){var f=Vc;if(f&&typeof o=="string"&&o){var g=vn(o);g='link[rel="'+l+'"][href="'+g+'"]',typeof u=="string"&&(g+='[crossorigin="'+u+'"]'),Yd.has(g)||(Yd.add(g),l={rel:l,crossOrigin:u,href:o},f.querySelector(g)===null&&(o=f.createElement("link"),yl(o,"link",l),Vt(o),f.head.appendChild(o)))}}function fe(l){Gi.D(l),Va("dns-prefetch",l,null)}function Wt(l,o){Gi.C(l,o),Va("preconnect",l,o)}function W8(l,o,u){Gi.L(l,o,u);var f=Vc;if(f&&l&&o){var g='link[rel="preload"][as="'+vn(o)+'"]';o==="image"&&u&&u.imageSrcSet?(g+='[imagesrcset="'+vn(u.imageSrcSet)+'"]',typeof u.imageSizes=="string"&&(g+='[imagesizes="'+vn(u.imageSizes)+'"]')):g+='[href="'+vn(l)+'"]';var v=g;switch(o){case"style":v=On(l);break;case"script":v=gs(l)}fn.has(v)||(l=L({rel:"preload",href:o==="image"&&u&&u.imageSrcSet?void 0:l,as:o},u),fn.set(v,l),f.querySelector(g)!==null||o==="style"&&f.querySelector(su(v))||o==="script"&&f.querySelector(Yc(v))||(o=f.createElement("link"),yl(o,"link",l),Vt(o),f.head.appendChild(o)))}}function D5(l,o){Gi.m(l,o);var u=Vc;if(u&&l){var f=o&&typeof o.as=="string"?o.as:"script",g='link[rel="modulepreload"][as="'+vn(f)+'"][href="'+vn(l)+'"]',v=g;switch(f){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":v=gs(l)}if(!fn.has(v)&&(l=L({rel:"modulepreload",href:l},o),fn.set(v,l),u.querySelector(g)===null)){switch(f){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":if(u.querySelector(Yc(v)))return}f=u.createElement("link"),yl(f,"link",l),Vt(f),u.head.appendChild(f)}}}function L5(l,o,u){Gi.S(l,o,u);var f=Vc;if(f&&l){var g=Nu(f).hoistableStyles,v=On(l);o=o||"default";var D=g.get(v);if(!D){var O={loading:0,preload:null};if(D=f.querySelector(su(v)))O.loading=5;else{l=L({rel:"stylesheet",href:l,"data-precedence":o},u),(u=fn.get(v))&&d1(l,u);var j=D=f.createElement("link");Vt(j),yl(j,"link",l),j._p=new Promise(function(re,he){j.onload=re,j.onerror=he}),j.addEventListener("load",function(){O.loading|=1}),j.addEventListener("error",function(){O.loading|=2}),O.loading|=4,Qd(D,o,f)}D={type:"stylesheet",instance:D,count:1,state:O},g.set(v,D)}}}function gr(l,o){Gi.X(l,o);var u=Vc;if(u&&l){var f=Nu(u).hoistableScripts,g=gs(l),v=f.get(g);v||(v=u.querySelector(Yc(g)),v||(l=L({src:l,async:!0},o),(o=fn.get(g))&&b1(l,o),v=u.createElement("script"),Vt(v),yl(v,"link",l),u.head.appendChild(v)),v={type:"script",instance:v,count:1,state:null},f.set(g,v))}}function uu(l,o){Gi.M(l,o);var u=Vc;if(u&&l){var f=Nu(u).hoistableScripts,g=gs(l),v=f.get(g);v||(v=u.querySelector(Yc(g)),v||(l=L({src:l,async:!0,type:"module"},o),(o=fn.get(g))&&b1(l,o),v=u.createElement("script"),Vt(v),yl(v,"link",l),u.head.appendChild(v)),v={type:"script",instance:v,count:1,state:null},f.set(g,v))}}function qc(l,o,u,f){var g=(g=kt.current)?Rl(g):null;if(!g)throw Error(s(446));switch(l){case"meta":case"title":return null;case"style":return typeof u.precedence=="string"&&typeof u.href=="string"?(o=On(u.href),u=Nu(g).hoistableStyles,f=u.get(o),f||(f={type:"style",instance:null,count:0,state:null},u.set(o,f)),f):{type:"void",instance:null,count:0,state:null};case"link":if(u.rel==="stylesheet"&&typeof u.href=="string"&&typeof u.precedence=="string"){l=On(u.href);var v=Nu(g).hoistableStyles,D=v.get(l);if(D||(g=g.ownerDocument||g,D={type:"stylesheet",instance:null,count:0,state:{loading:0,preload:null}},v.set(l,D),(v=g.querySelector(su(l)))&&!v._p&&(D.instance=v,D.state.loading=5),fn.has(l)||(u={rel:"preload",as:"style",href:u.href,crossOrigin:u.crossOrigin,integrity:u.integrity,media:u.media,hrefLang:u.hrefLang,referrerPolicy:u.referrerPolicy},fn.set(l,u),v||Mp(g,l,u,D.state))),o&&f===null)throw Error(s(528,""));return D}if(o&&f!==null)throw Error(s(529,""));return null;case"script":return o=u.async,u=u.src,typeof u=="string"&&o&&typeof o!="function"&&typeof o!="symbol"?(o=gs(u),u=Nu(g).hoistableScripts,f=u.get(o),f||(f={type:"script",instance:null,count:0,state:null},u.set(o,f)),f):{type:"void",instance:null,count:0,state:null};default:throw Error(s(444,l))}}function On(l){return'href="'+vn(l)+'"'}function su(l){return'link[rel="stylesheet"]['+l+"]"}function jc(l){return L({},l,{"data-precedence":l.precedence,precedence:null})}function Mp(l,o,u,f){l.querySelector('link[rel="preload"][as="style"]['+o+"]")?f.loading=1:(o=l.createElement("link"),f.preload=o,o.addEventListener("load",function(){return f.loading|=1}),o.addEventListener("error",function(){return f.loading|=2}),yl(o,"link",u),Vt(o),l.head.appendChild(o))}function gs(l){return'[src="'+vn(l)+'"]'}function Yc(l){return"script[async]"+l}function z5(l,o,u){if(o.count++,o.instance===null)switch(o.type){case"style":var f=l.querySelector('style[data-href~="'+vn(u.href)+'"]');if(f)return o.instance=f,Vt(f),f;var g=L({},u,{"data-href":u.href,"data-precedence":u.precedence,href:null,precedence:null});return f=(l.ownerDocument||l).createElement("style"),Vt(f),yl(f,"style",g),Qd(f,u.precedence,l),o.instance=f;case"stylesheet":g=On(u.href);var v=l.querySelector(su(g));if(v)return o.state.loading|=4,o.instance=v,Vt(v),v;f=jc(u),(g=fn.get(g))&&d1(f,g),v=(l.ownerDocument||l).createElement("link"),Vt(v);var D=v;return D._p=new Promise(function(O,j){D.onload=O,D.onerror=j}),yl(v,"link",f),o.state.loading|=4,Qd(v,u.precedence,l),o.instance=v;case"script":return v=gs(u.src),(g=l.querySelector(Yc(v)))?(o.instance=g,Vt(g),g):(f=u,(g=fn.get(v))&&(f=L({},u),b1(f,g)),l=l.ownerDocument||l,g=l.createElement("script"),Vt(g),yl(g,"link",f),l.head.appendChild(g),o.instance=g);case"void":return null;default:throw Error(s(443,o.type))}else o.type==="stylesheet"&&(o.state.loading&4)===0&&(f=o.instance,o.state.loading|=4,Qd(f,u.precedence,l));return o.instance}function Qd(l,o,u){for(var f=u.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'),g=f.length?f[f.length-1]:null,v=g,D=0;D<f.length;D++){var O=f[D];if(O.dataset.precedence===o)v=O;else if(v!==g)break}v?v.parentNode.insertBefore(l,v.nextSibling):(o=u.nodeType===9?u.head:u,o.insertBefore(l,o.firstChild))}function d1(l,o){l.crossOrigin==null&&(l.crossOrigin=o.crossOrigin),l.referrerPolicy==null&&(l.referrerPolicy=o.referrerPolicy),l.title==null&&(l.title=o.title)}function b1(l,o){l.crossOrigin==null&&(l.crossOrigin=o.crossOrigin),l.referrerPolicy==null&&(l.referrerPolicy=o.referrerPolicy),l.integrity==null&&(l.integrity=o.integrity)}var Qc=null;function x5(l,o,u){if(Qc===null){var f=new Map,g=Qc=new Map;g.set(u,f)}else g=Qc,f=g.get(u),f||(f=new Map,g.set(u,f));if(f.has(l))return f;for(f.set(l,null),u=u.getElementsByTagName(l),g=0;g<u.length;g++){var v=u[g];if(!(v[eo]||v[$t]||l==="link"&&v.getAttribute("rel")==="stylesheet")&&v.namespaceURI!=="http://www.w3.org/2000/svg"){var D=v.getAttribute(o)||"";D=l+D;var O=f.get(D);O?O.push(v):f.set(D,[v])}}return f}function m1(l,o,u){l=l.ownerDocument||l,l.head.insertBefore(u,o==="title"?l.querySelector("head > title"):null)}function R5(l,o,u){if(u===1||o.itemProp!=null)return!1;switch(l){case"meta":case"title":return!0;case"style":if(typeof o.precedence!="string"||typeof o.href!="string"||o.href==="")break;return!0;case"link":if(typeof o.rel!="string"||typeof o.href!="string"||o.href===""||o.onLoad||o.onError)break;switch(o.rel){case"stylesheet":return l=o.disabled,typeof o.precedence=="string"&&l==null;default:return!0}case"script":if(o.async&&typeof o.async!="function"&&typeof o.async!="symbol"&&!o.onLoad&&!o.onError&&o.src&&typeof o.src=="string")return!0}return!1}function dn(l){return!(l.type==="stylesheet"&&(l.state.loading&3)===0)}function zo(l,o,u,f){if(u.type==="stylesheet"&&(typeof f.media!="string"||matchMedia(f.media).matches!==!1)&&(u.state.loading&4)===0){if(u.instance===null){var g=On(f.href),v=o.querySelector(su(g));if(v){o=v._p,o!==null&&typeof o=="object"&&typeof o.then=="function"&&(l.count++,l=h1.bind(l),o.then(l,l)),u.state.loading|=4,u.instance=v,Vt(v);return}v=o.ownerDocument||o,f=jc(f),(g=fn.get(g))&&d1(f,g),v=v.createElement("link"),Vt(v);var D=v;D._p=new Promise(function(O,j){D.onload=O,D.onerror=j}),yl(v,"link",f),u.instance=v}l.stylesheets===null&&(l.stylesheets=new Map),l.stylesheets.set(u,o),(o=u.state.preload)&&(u.state.loading&3)===0&&(l.count++,u=h1.bind(l),o.addEventListener("load",u),o.addEventListener("error",u))}}var _n=0;function N5(l,o){return l.stylesheets&&l.count===0&&g1(l,l.stylesheets),0<l.count||0<l.imgCount?function(u){var f=setTimeout(function(){if(l.stylesheets&&g1(l,l.stylesheets),l.unsuspend){var v=l.unsuspend;l.unsuspend=null,v()}},6e4+o);0<l.imgBytes&&_n===0&&(_n=62500*C5());var g=setTimeout(function(){if(l.waitingForImages=!1,l.count===0&&(l.stylesheets&&g1(l,l.stylesheets),l.unsuspend)){var v=l.unsuspend;l.unsuspend=null,v()}},(l.imgBytes>_n?50:800)+o);return l.unsuspend=u,function(){l.unsuspend=null,clearTimeout(f),clearTimeout(g)}}:null}function h1(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)g1(this,this.stylesheets);else if(this.unsuspend){var l=this.unsuspend;this.unsuspend=null,l()}}}var p1=null;function g1(l,o){l.stylesheets=null,l.unsuspend!==null&&(l.count++,p1=new Map,o.forEach(ul,l),p1=null,h1.call(l))}function ul(l,o){if(!(o.state.loading&4)){var u=p1.get(l);if(u)var f=u.get(null);else{u=new Map,p1.set(l,u);for(var g=l.querySelectorAll("link[data-precedence],style[data-precedence]"),v=0;v<g.length;v++){var D=g[v];(D.nodeName==="LINK"||D.getAttribute("media")!=="not all")&&(u.set(D.dataset.precedence,D),f=D)}f&&u.set(null,f)}g=o.instance,D=g.getAttribute("data-precedence"),v=u.get(D)||f,v===f&&u.set(null,g),u.set(D,g),this.count++,f=h1.bind(this),g.addEventListener("load",f),g.addEventListener("error",f),v?v.parentNode.insertBefore(g,v.nextSibling):(l=l.nodeType===9?l.head:l,l.insertBefore(g,l.firstChild)),o.state.loading|=4}}var Xd={$$typeof:te,Provider:null,Consumer:null,_currentValue:$,_currentValue2:$,_threadCount:0};function B5(l,o,u,f,g,v,D,O,j){this.tag=1,this.containerInfo=l,this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.next=this.pendingContext=this.context=this.cancelPendingCommit=null,this.callbackPriority=0,this.expirationTimes=wf(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=wf(0),this.hiddenUpdates=wf(null),this.identifierPrefix=f,this.onUncaughtError=g,this.onCaughtError=v,this.onRecoverableError=D,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=j,this.incompleteTransitions=new Map}function T1(l,o,u,f,g,v,D,O,j,re,he,Ee){return l=new B5(l,o,u,D,j,re,he,Ee,O),o=1,v===!0&&(o|=24),v=La(3,null,null,o),l.current=v,v.stateNode=l,o=ld(),o.refCount++,l.pooledCache=o,o.refCount++,v.memoizedState={element:f,isDehydrated:u,cache:o},cd(v),l}function Ts(l){return l?(l=Hl,l):Hl}function Dp(l,o,u,f,g,v){g=Ts(g),f.context===null?f.context=g:f.pendingContext=g,f=rr(o),f.payload={element:u},v=v===void 0?null:v,v!==null&&(f.callback=v),u=Dn(l,f,o),u!==null&&(Zl(u,l,o),Yr(u,l,o))}function v1(l,o){if(l=l.memoizedState,l!==null&&l.dehydrated!==null){var u=l.retryLane;l.retryLane=u!==0&&u<o?u:o}}function O5(l,o){v1(l,o),(l=l.alternate)&&v1(l,o)}function Lp(l){if(l.tag===13||l.tag===31){var o=er(l,67108864);o!==null&&Zl(o,l,67108864),O5(l,67108864)}}function vs(l){if(l.tag===13||l.tag===31){var o=cn();o=I0(o);var u=er(l,o);u!==null&&Zl(u,l,o),O5(l,o)}}var Ka=!0;function xo(l,o,u,f){var g=P.T;P.T=null;var v=oe.p;try{oe.p=2,Cl(l,o,u,f)}finally{oe.p=v,P.T=g}}function Ro(l,o,u,f){var g=P.T;P.T=null;var v=oe.p;try{oe.p=8,Cl(l,o,u,f)}finally{oe.p=v,P.T=g}}function Cl(l,o,u,f){if(Ka){var g=_5(f);if(g===null)p5(l,o,f,S1,u),Tr(l,f);else if(V8(g,l,o,u,f))f.stopPropagation();else if(Tr(l,f),o&4&&-1<$l.indexOf(l)){for(;g!==null;){var v=Ru(g);if(v!==null)switch(v.tag){case 3:if(v=v.stateNode,v.current.memoizedState.isDehydrated){var D=qn(v.pendingLanes);if(D!==0){var O=v;for(O.pendingLanes|=2,O.entangledLanes|=2;D;){var j=1<<31-Zt(D);O.entanglements[1]|=j,D&=~j}Lo(v),(wt&6)===0&&(Pt=ja()+500,pr(0))}}break;case 31:case 13:O=er(v,2),O!==null&&Zl(O,v,2),_c(),O5(v,2)}if(v=_5(f),v===null&&p5(l,o,f,S1,u),v===g)break;g=v}g!==null&&f.stopPropagation()}else p5(l,o,f,null,u)}}function _5(l){return l=q0(l),Xc(l)}var S1=null;function Xc(l){if(S1=null,l=xu(l),l!==null){var o=h(l);if(o===null)l=null;else{var u=o.tag;if(u===13){if(l=p(o),l!==null)return l;l=null}else if(u===31){if(l=T(o),l!==null)return l;l=null}else if(u===3){if(o.stateNode.current.memoizedState.isDehydrated)return o.tag===3?o.stateNode.containerInfo:null;l=null}else o!==l&&(l=null)}}return S1=l,null}function Kd(l){switch(l){case"beforetoggle":case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"toggle":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 2;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 8;case"message":switch(Nm()){case ve:return 2;case Oe:return 8;case Ke:case Et:return 32;case Ut:return 268435456;default:return 32}default:return 32}}var Kc=!1,Za=null,El=null,Nl=null,cu=new Map,ni=new Map,ha=[],$l="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset".split(" ");function Tr(l,o){switch(l){case"focusin":case"focusout":Za=null;break;case"dragenter":case"dragleave":El=null;break;case"mouseover":case"mouseout":Nl=null;break;case"pointerover":case"pointerout":cu.delete(o.pointerId);break;case"gotpointercapture":case"lostpointercapture":ni.delete(o.pointerId)}}function Ss(l,o,u,f,g,v){return l===null||l.nativeEvent!==v?(l={blockedOn:o,domEventName:u,eventSystemFlags:f,nativeEvent:v,targetContainers:[g]},o!==null&&(o=Ru(o),o!==null&&Lp(o)),l):(l.eventSystemFlags|=f,o=l.targetContainers,g!==null&&o.indexOf(g)===-1&&o.push(g),l)}function V8(l,o,u,f,g){switch(o){case"focusin":return Za=Ss(Za,l,o,u,f,g),!0;case"dragenter":return El=Ss(El,l,o,u,f,g),!0;case"mouseover":return Nl=Ss(Nl,l,o,u,f,g),!0;case"pointerover":var v=g.pointerId;return cu.set(v,Ss(cu.get(v)||null,l,o,u,f,g)),!0;case"gotpointercapture":return v=g.pointerId,ni.set(v,Ss(ni.get(v)||null,l,o,u,f,g)),!0}return!1}function zp(l){var o=xu(l.target);if(o!==null){var u=h(o);if(u!==null){if(o=u.tag,o===13){if(o=p(u),o!==null){l.blockedOn=o,_m(l.priority,function(){vs(u)});return}}else if(o===31){if(o=T(u),o!==null){l.blockedOn=o,_m(l.priority,function(){vs(u)});return}}else if(o===3&&u.stateNode.current.memoizedState.isDehydrated){l.blockedOn=u.tag===3?u.stateNode.containerInfo:null;return}}}l.blockedOn=null}function Zd(l){if(l.blockedOn!==null)return!1;for(var o=l.targetContainers;0<o.length;){var u=_5(l.nativeEvent);if(u===null){u=l.nativeEvent;var f=new u.constructor(u.type,u);V0=f,u.target.dispatchEvent(f),V0=null}else return o=Ru(u),o!==null&&Lp(o),l.blockedOn=u,!1;o.shift()}return!0}function Zc(l,o,u){Zd(l)&&u.delete(o)}function xp(){Kc=!1,Za!==null&&Zd(Za)&&(Za=null),El!==null&&Zd(El)&&(El=null),Nl!==null&&Zd(Nl)&&(Nl=null),cu.forEach(Zc),ni.forEach(Zc)}function No(l,o){l.blockedOn===o&&(l.blockedOn=null,Kc||(Kc=!0,t.unstable_scheduleCallback(t.unstable_NormalPriority,xp)))}var Jc=null;function Rp(l){Jc!==l&&(Jc=l,t.unstable_scheduleCallback(t.unstable_NormalPriority,function(){Jc===l&&(Jc=null);for(var o=0;o<l.length;o+=3){var u=l[o],f=l[o+1],g=l[o+2];if(typeof f!="function"){if(Xc(f||u)===null)continue;break}var v=Ru(u);v!==null&&(l.splice(o,3),o-=3,yc(v,{pending:!0,data:g,method:u.method,action:f},f,g))}}))}function $c(l){function o(j){return No(j,l)}Za!==null&&No(Za,l),El!==null&&No(El,l),Nl!==null&&No(Nl,l),cu.forEach(o),ni.forEach(o);for(var u=0;u<ha.length;u++){var f=ha[u];f.blockedOn===l&&(f.blockedOn=null)}for(;0<ha.length&&(u=ha[0],u.blockedOn===null);)zp(u),u.blockedOn===null&&ha.shift();if(u=(l.ownerDocument||l).$$reactFormReplay,u!=null)for(f=0;f<u.length;f+=3){var g=u[f],v=u[f+1],D=g[kl]||null;if(typeof v=="function")D||Rp(u);else if(D){var O=null;if(v&&v.hasAttribute("formAction")){if(g=v,D=v[kl]||null)O=D.formAction;else if(Xc(g)!==null)continue}else O=D.action;typeof O=="function"?u[f+1]=O:(u.splice(f,3),f-=3),Rp(u)}}}function I5(){function l(v){v.canIntercept&&v.info==="react-transition"&&v.intercept({handler:function(){return new Promise(function(D){return g=D})},focusReset:"manual",scroll:"manual"})}function o(){g!==null&&(g(),g=null),f||setTimeout(u,20)}function u(){if(!f&&!navigation.transition){var v=navigation.currentEntry;v&&v.url!=null&&navigation.navigate(v.url,{state:v.getState(),info:"react-transition",history:"replace"})}}if(typeof navigation=="object"){var f=!1,g=null;return navigation.addEventListener("navigate",l),navigation.addEventListener("navigatesuccess",o),navigation.addEventListener("navigateerror",o),setTimeout(u,100),function(){f=!0,navigation.removeEventListener("navigate",l),navigation.removeEventListener("navigatesuccess",o),navigation.removeEventListener("navigateerror",o),g!==null&&(g(),g=null)}}}function y1(l){this._internalRoot=l}C1.prototype.render=y1.prototype.render=function(l){var o=this._internalRoot;if(o===null)throw Error(s(409));var u=o.current,f=cn();Dp(u,f,l,o,null,null)},C1.prototype.unmount=y1.prototype.unmount=function(){var l=this._internalRoot;if(l!==null){this._internalRoot=null;var o=l.containerInfo;Dp(l.current,2,null,l,null,null),_c(),o[Rr]=null}};function C1(l){this._internalRoot=l}C1.prototype.unstable_scheduleHydration=function(l){if(l){var o=w0();l={blockedOn:null,target:l,priority:o};for(var u=0;u<ha.length&&o!==0&&o<ha[u].priority;u++);ha.splice(u,0,l),u===0&&zp(l)}};var w5=n.version;if(w5!=="19.2.0")throw Error(s(527,w5,"19.2.0"));oe.findDOMNode=function(l){var o=l._reactInternals;if(o===void 0)throw typeof l.render=="function"?Error(s(188)):(l=Object.keys(l).join(","),Error(s(268,l)));return l=A(o),l=l!==null?M(l):null,l=l===null?null:l.stateNode,l};var Np={bundleType:0,version:"19.2.0",rendererPackageName:"react-dom",currentDispatcherRef:P,reconcilerVersion:"19.2.0"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"){var Jd=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!Jd.isDisabled&&Jd.supportsFiber)try{vl=Jd.inject(Np),Ha=Jd}catch{}}return z2.createRoot=function(l,o){if(!b(l))throw Error(s(299));var u=!1,f="",g=Ob,v=Gh,D=_b;return o!=null&&(o.unstable_strictMode===!0&&(u=!0),o.identifierPrefix!==void 0&&(f=o.identifierPrefix),o.onUncaughtError!==void 0&&(g=o.onUncaughtError),o.onCaughtError!==void 0&&(v=o.onCaughtError),o.onRecoverableError!==void 0&&(D=o.onRecoverableError)),o=T1(l,1,!1,null,null,u,f,null,g,v,D,I5),l[Rr]=o.current,Uc(l),new y1(o)},z2.hydrateRoot=function(l,o,u){if(!b(l))throw Error(s(299));var f=!1,g="",v=Ob,D=Gh,O=_b,j=null;return u!=null&&(u.unstable_strictMode===!0&&(f=!0),u.identifierPrefix!==void 0&&(g=u.identifierPrefix),u.onUncaughtError!==void 0&&(v=u.onUncaughtError),u.onCaughtError!==void 0&&(D=u.onCaughtError),u.onRecoverableError!==void 0&&(O=u.onRecoverableError),u.formState!==void 0&&(j=u.formState)),o=T1(l,1,!0,o,u??null,f,g,j,v,D,O,I5),o.context=Ts(null),u=o.current,f=cn(),f=I0(f),g=rr(f),g.callback=null,Dn(u,g,f),u=f,o.current.lanes=u,js(o,u),Lo(o),l[Rr]=o.current,Uc(l),new C1(o)},z2.version="19.2.0",z2}var x2={};/**
34
+ * @license React
35
+ * react-dom-client.development.js
36
+ *
37
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
38
+ *
39
+ * This source code is licensed under the MIT license found in the
40
+ * LICENSE file in the root directory of this source tree.
41
+ */var pS;function gD(){return pS||(pS=1,process.env.NODE_ENV!=="production"&&(function(){function t(e,a){for(e=e.memoizedState;e!==null&&0<a;)e=e.next,a--;return e}function n(e,a,i,c){if(i>=a.length)return c;var d=a[i],m=Va(e)?e.slice():bt({},e);return m[d]=n(e[d],a,i+1,c),m}function r(e,a,i){if(a.length!==i.length)console.warn("copyWithRename() expects paths of the same length");else{for(var c=0;c<i.length-1;c++)if(a[c]!==i[c]){console.warn("copyWithRename() expects paths to be the same except for the deepest key");return}return s(e,a,i,0)}}function s(e,a,i,c){var d=a[c],m=Va(e)?e.slice():bt({},e);return c+1===a.length?(m[i[c]]=m[d],Va(m)?m.splice(d,1):delete m[d]):m[d]=s(e[d],a,i,c+1),m}function b(e,a,i){var c=a[i],d=Va(e)?e.slice():bt({},e);return i+1===a.length?(Va(d)?d.splice(c,1):delete d[c],d):(d[c]=b(e[c],a,i+1),d)}function h(){return!1}function p(){return null}function T(){console.error("Do not call Hooks inside useEffect(...), useMemo(...), or other built-in Hooks. You can only call Hooks at the top level of your React function. For more information, see https://react.dev/link/rules-of-hooks")}function E(){console.error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().")}function A(){}function M(){}function L(e){var a=[];return e.forEach(function(i){a.push(i)}),a.sort().join(", ")}function R(e,a,i,c){return new w8(e,a,i,c)}function z(e,a){e.context===lf&&(o1(e.current,2,a,e,null,null),Nn())}function U(e,a){if(_o!==null){var i=a.staleFamilies;a=a.updatedFamilies,xd(),C4(e.current,a,i),Nn()}}function G(e){_o=e}function J(e){return!(!e||e.nodeType!==1&&e.nodeType!==9&&e.nodeType!==11)}function F(e){var a=e,i=e;if(e.alternate)for(;a.return;)a=a.return;else{e=a;do a=e,(a.flags&4098)!==0&&(i=a.return),e=a.return;while(e)}return a.tag===3?i:null}function ie(e){if(e.tag===13){var a=e.memoizedState;if(a===null&&(e=e.alternate,e!==null&&(a=e.memoizedState)),a!==null)return a.dehydrated}return null}function te(e){if(e.tag===31){var a=e.memoizedState;if(a===null&&(e=e.alternate,e!==null&&(a=e.memoizedState)),a!==null)return a.dehydrated}return null}function Te(e){if(F(e)!==e)throw Error("Unable to find node on an unmounted component.")}function ge(e){var a=e.alternate;if(!a){if(a=F(e),a===null)throw Error("Unable to find node on an unmounted component.");return a!==e?null:e}for(var i=e,c=a;;){var d=i.return;if(d===null)break;var m=d.alternate;if(m===null){if(c=d.return,c!==null){i=c;continue}break}if(d.child===m.child){for(m=d.child;m;){if(m===i)return Te(d),e;if(m===c)return Te(d),a;m=m.sibling}throw Error("Unable to find node on an unmounted component.")}if(i.return!==c.return)i=d,c=m;else{for(var S=!1,C=d.child;C;){if(C===i){S=!0,i=d,c=m;break}if(C===c){S=!0,c=d,i=m;break}C=C.sibling}if(!S){for(C=m.child;C;){if(C===i){S=!0,i=m,c=d;break}if(C===c){S=!0,c=m,i=d;break}C=C.sibling}if(!S)throw Error("Child was not found in either parent set. This indicates a bug in React related to the return pointer. Please file an issue.")}}if(i.alternate!==c)throw Error("Return fibers should always be each others' alternates. This error is likely caused by a bug in React. Please file an issue.")}if(i.tag!==3)throw Error("Unable to find node on an unmounted component.");return i.stateNode.current===i?e:a}function le(e){var a=e.tag;if(a===5||a===26||a===27||a===6)return e;for(e=e.child;e!==null;){if(a=le(e),a!==null)return a;e=e.sibling}return null}function Se(e){return e===null||typeof e!="object"?null:(e=Ap&&e[Ap]||e["@@iterator"],typeof e=="function"?e:null)}function be(e){if(e==null)return null;if(typeof e=="function")return e.$$typeof===Vc?null:e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case Pc:return"Fragment";case jd:return"Profiler";case Jl:return"StrictMode";case ps:return"Suspense";case fn:return"SuspenseList";case Gi:return"Activity"}if(typeof e=="object")switch(typeof e.tag=="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),e.$$typeof){case ru:return"Portal";case wi:return e.displayName||"Context";case f1:return(e._context.displayName||"Context")+".Consumer";case Wc:var a=e.render;return e=e.displayName,e||(e=a.displayName||a.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case Yd:return a=e.displayName||null,a!==null?a:be(e.type)||"Memo";case Rl:a=e._payload,e=e._init;try{return be(e(a))}catch{}}return null}function ke(e){return typeof e.tag=="number"?Ce(e):typeof e.name=="string"?e.name:null}function Ce(e){var a=e.type;switch(e.tag){case 31:return"Activity";case 24:return"Cache";case 9:return(a._context.displayName||"Context")+".Consumer";case 10:return a.displayName||"Context";case 18:return"DehydratedFragment";case 11:return e=a.render,e=e.displayName||e.name||"",a.displayName||(e!==""?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 26:case 27:case 5:return a;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return be(a);case 8:return a===Jl?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 14:case 15:if(typeof a=="function")return a.displayName||a.name||null;if(typeof a=="string")return a;break;case 29:if(a=e._debugInfo,a!=null){for(var i=a.length-1;0<=i;i--)if(typeof a[i].name=="string")return a[i].name}if(e.return!==null)return Ce(e.return)}return null}function Re(e){return{current:e}}function De(e,a){0>gr?console.error("Unexpected pop."):(a!==L5[gr]&&console.error("Unexpected Fiber popped."),e.current=D5[gr],D5[gr]=null,L5[gr]=null,gr--)}function Me(e,a,i){gr++,D5[gr]=e.current,L5[gr]=i,e.current=a}function ze(e){return e===null&&console.error("Expected host context to exist. This error is likely caused by a bug in React. Please file an issue."),e}function Ie(e,a){Me(On,a,e),Me(qc,e,e),Me(uu,null,e);var i=a.nodeType;switch(i){case 9:case 11:i=i===9?"#document":"#fragment",a=(a=a.documentElement)&&(a=a.namespaceURI)?Z4(a):_s;break;default:if(i=a.tagName,a=a.namespaceURI)a=Z4(a),a=mr(a,i);else switch(i){case"svg":a=J1;break;case"math":a=Cg;break;default:a=_s}}i=i.toLowerCase(),i=km(null,i),i={context:a,ancestorInfo:i},De(uu,e),Me(uu,i,e)}function P(e){De(uu,e),De(qc,e),De(On,e)}function oe(){return ze(uu.current)}function $(e){e.memoizedState!==null&&Me(su,e,e);var a=ze(uu.current),i=e.type,c=mr(a.context,i);i=km(a.ancestorInfo,i),c={context:c,ancestorInfo:i},a!==c&&(Me(qc,e,e),Me(uu,c,e))}function we(e){qc.current===e&&(De(uu,e),De(qc,e)),su.current===e&&(De(su,e),M2._currentValue=y0)}function w(){}function yt(){if(jc===0){Mp=console.log,gs=console.info,Yc=console.warn,z5=console.error,Qd=console.group,d1=console.groupCollapsed,b1=console.groupEnd;var e={configurable:!0,enumerable:!0,value:w,writable:!0};Object.defineProperties(console,{info:e,log:e,warn:e,error:e,group:e,groupCollapsed:e,groupEnd:e})}jc++}function rt(){if(jc--,jc===0){var e={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:bt({},e,{value:Mp}),info:bt({},e,{value:gs}),warn:bt({},e,{value:Yc}),error:bt({},e,{value:z5}),group:bt({},e,{value:Qd}),groupCollapsed:bt({},e,{value:d1}),groupEnd:bt({},e,{value:b1})})}0>jc&&console.error("disabledDepth fell below zero. This is a bug in React. Please file an issue.")}function k(e){var a=Error.prepareStackTrace;if(Error.prepareStackTrace=void 0,e=e.stack,Error.prepareStackTrace=a,e.startsWith(`Error: react-stack-top-frame
42
+ `)&&(e=e.slice(29)),a=e.indexOf(`
43
+ `),a!==-1&&(e=e.slice(a+1)),a=e.indexOf("react_stack_bottom_frame"),a!==-1&&(a=e.lastIndexOf(`
44
+ `,a)),a!==-1)e=e.slice(0,a);else return"";return e}function He(e){if(Qc===void 0)try{throw Error()}catch(i){var a=i.stack.trim().match(/\n( *(at )?)/);Qc=a&&a[1]||"",x5=-1<i.stack.indexOf(`
45
+ at`)?" (<anonymous>)":-1<i.stack.indexOf("@")?"@unknown:0:0":""}return`
46
+ `+Qc+e+x5}function It(e,a){if(!e||m1)return"";var i=R5.get(e);if(i!==void 0)return i;m1=!0,i=Error.prepareStackTrace,Error.prepareStackTrace=void 0;var c=null;c=fe.H,fe.H=null,yt();try{var d={DetermineComponentFrameRoot:function(){try{if(a){var W=function(){throw Error()};if(Object.defineProperty(W.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(W,[])}catch(_e){var se=_e}Reflect.construct(e,[],W)}else{try{W.call()}catch(_e){se=_e}e.call(W.prototype)}}else{try{throw Error()}catch(_e){se=_e}(W=e())&&typeof W.catch=="function"&&W.catch(function(){})}}catch(_e){if(_e&&se&&typeof _e.stack=="string")return[_e.stack,se.stack]}return[null,null]}};d.DetermineComponentFrameRoot.displayName="DetermineComponentFrameRoot";var m=Object.getOwnPropertyDescriptor(d.DetermineComponentFrameRoot,"name");m&&m.configurable&&Object.defineProperty(d.DetermineComponentFrameRoot,"name",{value:"DetermineComponentFrameRoot"});var S=d.DetermineComponentFrameRoot(),C=S[0],x=S[1];if(C&&x){var N=C.split(`
47
+ `),Q=x.split(`
48
+ `);for(S=m=0;m<N.length&&!N[m].includes("DetermineComponentFrameRoot");)m++;for(;S<Q.length&&!Q[S].includes("DetermineComponentFrameRoot");)S++;if(m===N.length||S===Q.length)for(m=N.length-1,S=Q.length-1;1<=m&&0<=S&&N[m]!==Q[S];)S--;for(;1<=m&&0<=S;m--,S--)if(N[m]!==Q[S]){if(m!==1||S!==1)do if(m--,S--,0>S||N[m]!==Q[S]){var Z=`
49
+ `+N[m].replace(" at new "," at ");return e.displayName&&Z.includes("<anonymous>")&&(Z=Z.replace("<anonymous>",e.displayName)),typeof e=="function"&&R5.set(e,Z),Z}while(1<=m&&0<=S);break}}}finally{m1=!1,fe.H=c,rt(),Error.prepareStackTrace=i}return N=(N=e?e.displayName||e.name:"")?He(N):"",typeof e=="function"&&R5.set(e,N),N}function kt(e,a){switch(e.tag){case 26:case 27:case 5:return He(e.type);case 16:return He("Lazy");case 13:return e.child!==a&&a!==null?He("Suspense Fallback"):He("Suspense");case 19:return He("SuspenseList");case 0:case 15:return It(e.type,!1);case 11:return It(e.type.render,!1);case 1:return It(e.type,!0);case 31:return He("Activity");default:return""}}function Lt(e){try{var a="",i=null;do{a+=kt(e,i);var c=e._debugInfo;if(c)for(var d=c.length-1;0<=d;d--){var m=c[d];if(typeof m.name=="string"){var S=a;e:{var C=m.name,x=m.env,N=m.debugLocation;if(N!=null){var Q=k(N),Z=Q.lastIndexOf(`
50
+ `),W=Z===-1?Q:Q.slice(Z+1);if(W.indexOf(C)!==-1){var se=`
51
+ `+W;break e}}se=He(C+(x?" ["+x+"]":""))}a=S+se}}i=e,e=e.return}while(e);return a}catch(_e){return`
52
+ Error generating stack: `+_e.message+`
53
+ `+_e.stack}}function Ua(e){return(e=e?e.displayName||e.name:"")?He(e):""}function Ca(){if(dn===null)return null;var e=dn._debugOwner;return e!=null?ke(e):null}function Tl(){if(dn===null)return"";var e=dn;try{var a="";switch(e.tag===6&&(e=e.return),e.tag){case 26:case 27:case 5:a+=He(e.type);break;case 13:a+=He("Suspense");break;case 19:a+=He("SuspenseList");break;case 31:a+=He("Activity");break;case 30:case 0:case 15:case 1:e._debugOwner||a!==""||(a+=Ua(e.type));break;case 11:e._debugOwner||a!==""||(a+=Ua(e.type.render))}for(;e;)if(typeof e.tag=="number"){var i=e;e=i._debugOwner;var c=i._debugStack;if(e&&c){var d=k(c);d!==""&&(a+=`
54
+ `+d)}}else if(e.debugStack!=null){var m=e.debugStack;(e=e.owner)&&m&&(a+=`
55
+ `+k(m))}else break;var S=a}catch(C){S=`
56
+ Error generating stack: `+C.message+`
57
+ `+C.stack}return S}function Ge(e,a,i,c,d,m,S){var C=dn;an(e);try{return e!==null&&e._debugTask?e._debugTask.run(a.bind(null,i,c,d,m,S)):a(i,c,d,m,S)}finally{an(C)}throw Error("runWithFiberInDEV should never be called in production. This is a bug in React.")}function an(e){fe.getCurrentStack=e===null?null:Tl,zo=!1,dn=e}function Pn(e){return typeof Symbol=="function"&&Symbol.toStringTag&&e[Symbol.toStringTag]||e.constructor.name||"Object"}function Wn(e){try{return Zi(e),!1}catch{return!0}}function Zi(e){return""+e}function Ft(e,a){if(Wn(e))return console.error("The provided `%s` attribute is an unsupported type %s. This value must be coerced to a string before using it here.",a,Pn(e)),Zi(e)}function Hs(e,a){if(Wn(e))return console.error("The provided `%s` CSS property is an unsupported type %s. This value must be coerced to a string before using it here.",a,Pn(e)),Zi(e)}function Ps(e){if(Wn(e))return console.error("Form field values (value, checked, defaultValue, or defaultChecked props) must be strings, not %s. This value must be coerced to a string before using it here.",Pn(e)),Zi(e)}function Ws(e){if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u")return!1;var a=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(a.isDisabled)return!0;if(!a.supportsFiber)return console.error("The installed version of React DevTools is too old and will not work with the current version of React. Please update React DevTools. https://react.dev/link/react-devtools"),!0;try{vs=a.inject(e),Ka=a}catch(i){console.error("React instrumentation encountered an error: %o.",i)}return!!a.checkDCE}function Kt(e){if(typeof O5=="function"&&Lp(e),Ka&&typeof Ka.setStrictMode=="function")try{Ka.setStrictMode(vs,e)}catch(a){xo||(xo=!0,console.error("React instrumentation encountered an error: %o",a))}}function If(e){return e>>>=0,e===0?32:31-(_5(e)/S1|0)|0}function Yo(e){var a=e&42;if(a!==0)return a;switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return e&261888;case 262144:case 524288:case 1048576:case 2097152:return e&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return e&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return console.error("Should have found matching lanes. This is a bug in React."),e}}function Vs(e,a,i){var c=e.pendingLanes;if(c===0)return 0;var d=0,m=e.suspendedLanes,S=e.pingedLanes;e=e.warmLanes;var C=c&134217727;return C!==0?(c=C&~m,c!==0?d=Yo(c):(S&=C,S!==0?d=Yo(S):i||(i=C&~e,i!==0&&(d=Yo(i))))):(C=c&~m,C!==0?d=Yo(C):S!==0?d=Yo(S):i||(i=c&~e,i!==0&&(d=Yo(i)))),d===0?0:a!==0&&a!==d&&(a&m)===0&&(m=d&-d,i=a&-a,m>=i||m===32&&(i&4194048)!==0)?a:d}function ja(e,a){return(e.pendingLanes&~(e.suspendedLanes&~e.pingedLanes)&a)===0}function Nm(e,a){switch(e){case 1:case 2:case 4:case 8:case 64:return a+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return a+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return console.error("Should have found matching lanes. This is a bug in React."),-1}}function ve(){var e=Kc;return Kc<<=1,(Kc&62914560)===0&&(Kc=4194304),e}function Oe(e){for(var a=[],i=0;31>i;i++)a.push(e);return a}function Ke(e,a){e.pendingLanes|=a,a!==268435456&&(e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0)}function Et(e,a,i,c,d,m){var S=e.pendingLanes;e.pendingLanes=i,e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0,e.expiredLanes&=i,e.entangledLanes&=i,e.errorRecoveryDisabledLanes&=i,e.shellSuspendCounter=0;var C=e.entanglements,x=e.expirationTimes,N=e.hiddenUpdates;for(i=S&~i;0<i;){var Q=31-Cl(i),Z=1<<Q;C[Q]=0,x[Q]=-1;var W=N[Q];if(W!==null)for(N[Q]=null,Q=0;Q<W.length;Q++){var se=W[Q];se!==null&&(se.lane&=-536870913)}i&=~Z}c!==0&&Ut(e,c,0),m!==0&&d===0&&e.tag!==0&&(e.suspendedLanes|=m&~(S&~a))}function Ut(e,a,i){e.pendingLanes|=a,e.suspendedLanes&=~a;var c=31-Cl(a);e.entangledLanes|=a,e.entanglements[c]=e.entanglements[c]|1073741824|i&261930}function ln(e,a){var i=e.entangledLanes|=a;for(e=e.entanglements;i;){var c=31-Cl(i),d=1<<c;d&a|e[c]&a&&(e[c]|=a),i&=~d}}function Ji(e,a){var i=a&-a;return i=(i&42)!==0?1:vl(i),(i&(e.suspendedLanes|a))!==0?0:i}function vl(e){switch(e){case 2:e=1;break;case 8:e=4;break;case 32:e=16;break;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:e=128;break;case 268435456:e=134217728;break;default:e=0}return e}function Ha(e,a,i){if(Ro)for(e=e.pendingUpdatersLaneMap;0<i;){var c=31-Cl(i),d=1<<c;e[c].add(a),i&=~d}}function Gl(e,a){if(Ro)for(var i=e.pendingUpdatersLaneMap,c=e.memoizedUpdaters;0<a;){var d=31-Cl(a);e=1<<d,d=i[d],0<d.size&&(d.forEach(function(m){var S=m.alternate;S!==null&&c.has(S)||c.add(m)}),d.clear()),a&=~e}}function Zt(e){return e&=-e,Za<e?El<e?(e&134217727)!==0?Nl:cu:El:Za}function Qo(){var e=Wt.p;return e!==0?e:(e=window.event,e===void 0?Nl:u1(e.type))}function Vn(e,a){var i=Wt.p;try{return Wt.p=e,a()}finally{Wt.p=i}}function Bm(e){delete e[ha],delete e[$l],delete e[Ss],delete e[V8],delete e[zp]}function Xo(e){var a=e[ha];if(a)return a;for(var i=e.parentNode;i;){if(a=i[Tr]||i[ha]){if(i=a.alternate,a.child!==null||i!==null&&i.child!==null)for(e=ds(e);e!==null;){if(i=e[ha])return i;e=ds(e)}return a}e=i,i=e.parentNode}return null}function bi(e){if(e=e[ha]||e[Tr]){var a=e.tag;if(a===5||a===6||a===13||a===31||a===26||a===27||a===3)return e}return null}function xr(e){var a=e.tag;if(a===5||a===26||a===27||a===6)return e.stateNode;throw Error("getNodeFromInstance: Invalid argument.")}function qn(e){var a=e[Zd];return a||(a=e[Zd]={hoistableStyles:new Map,hoistableScripts:new Map}),a}function Oa(e){e[Zc]=!0}function mi(e,a){qs(e,a),qs(e+"Capture",a)}function qs(e,a){No[e]&&console.error("EventRegistry: More than one plugin attempted to publish the same registration name, `%s`.",e),No[e]=a;var i=e.toLowerCase();for(Jc[i]=e,e==="onDoubleClick"&&(Jc.ondblclick=e),e=0;e<a.length;e++)xp.add(a[e])}function zu(e,a){Rp[a.type]||a.onChange||a.onInput||a.readOnly||a.disabled||a.value==null||console.error(e==="select"?"You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set `onChange`.":"You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`."),a.onChange||a.readOnly||a.disabled||a.checked==null||console.error("You provided a `checked` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultChecked`. Otherwise, set either `onChange` or `readOnly`.")}function wf(e){return _n.call(y1,e)?!0:_n.call(I5,e)?!1:$c.test(e)?y1[e]=!0:(I5[e]=!0,console.error("Invalid attribute name: `%s`",e),!1)}function js(e,a,i){if(wf(a)){if(!e.hasAttribute(a)){switch(typeof i){case"symbol":case"object":return i;case"function":return i;case"boolean":if(i===!1)return i}return i===void 0?void 0:null}return e=e.getAttribute(a),e===""&&i===!0?!0:(Ft(i,a),e===""+i?i:e)}}function _0(e,a,i){if(wf(a))if(i===null)e.removeAttribute(a);else{switch(typeof i){case"undefined":case"function":case"symbol":e.removeAttribute(a);return;case"boolean":var c=a.toLowerCase().slice(0,5);if(c!=="data-"&&c!=="aria-"){e.removeAttribute(a);return}}Ft(i,a),e.setAttribute(a,""+i)}}function Gf(e,a,i){if(i===null)e.removeAttribute(a);else{switch(typeof i){case"undefined":case"function":case"symbol":case"boolean":e.removeAttribute(a);return}Ft(i,a),e.setAttribute(a,""+i)}}function $i(e,a,i,c){if(c===null)e.removeAttribute(i);else{switch(typeof c){case"undefined":case"function":case"symbol":case"boolean":e.removeAttribute(i);return}Ft(c,i),e.setAttributeNS(a,i,""+c)}}function gn(e){switch(typeof e){case"bigint":case"boolean":case"number":case"string":case"undefined":return e;case"object":return Ps(e),e;default:return""}}function I0(e){var a=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(a==="checkbox"||a==="radio")}function Om(e,a,i){var c=Object.getOwnPropertyDescriptor(e.constructor.prototype,a);if(!e.hasOwnProperty(a)&&typeof c<"u"&&typeof c.get=="function"&&typeof c.set=="function"){var d=c.get,m=c.set;return Object.defineProperty(e,a,{configurable:!0,get:function(){return d.call(this)},set:function(S){Ps(S),i=""+S,m.call(this,S)}}),Object.defineProperty(e,a,{enumerable:c.enumerable}),{getValue:function(){return i},setValue:function(S){Ps(S),i=""+S},stopTracking:function(){e._valueTracker=null,delete e[a]}}}}function w0(e){if(!e._valueTracker){var a=I0(e)?"checked":"value";e._valueTracker=Om(e,a,""+e[a])}}function _m(e){if(!e)return!1;var a=e._valueTracker;if(!a)return!0;var i=a.getValue(),c="";return e&&(c=I0(e)?e.checked?"true":"false":e.value),e=c,e!==i?(a.setValue(e),!0):!1}function hi(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function $t(e){return e.replace(C1,function(a){return"\\"+a.charCodeAt(0).toString(16)+" "})}function kl(e,a){a.checked===void 0||a.defaultChecked===void 0||Np||(console.error("%s contains an input of type %s with both checked and defaultChecked props. Input elements must be either controlled or uncontrolled (specify either the checked prop, or the defaultChecked prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://react.dev/link/controlled-components",Ca()||"A component",a.type),Np=!0),a.value===void 0||a.defaultValue===void 0||w5||(console.error("%s contains an input of type %s with both value and defaultValue props. Input elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://react.dev/link/controlled-components",Ca()||"A component",a.type),w5=!0)}function Rr(e,a,i,c,d,m,S,C){e.name="",S!=null&&typeof S!="function"&&typeof S!="symbol"&&typeof S!="boolean"?(Ft(S,"type"),e.type=S):e.removeAttribute("type"),a!=null?S==="number"?(a===0&&e.value===""||e.value!=a)&&(e.value=""+gn(a)):e.value!==""+gn(a)&&(e.value=""+gn(a)):S!=="submit"&&S!=="reset"||e.removeAttribute("value"),a!=null?Im(e,S,gn(a)):i!=null?Im(e,S,gn(i)):c!=null&&e.removeAttribute("value"),d==null&&m!=null&&(e.defaultChecked=!!m),d!=null&&(e.checked=d&&typeof d!="function"&&typeof d!="symbol"),C!=null&&typeof C!="function"&&typeof C!="symbol"&&typeof C!="boolean"?(Ft(C,"name"),e.name=""+gn(C)):e.removeAttribute("name")}function G0(e,a,i,c,d,m,S,C){if(m!=null&&typeof m!="function"&&typeof m!="symbol"&&typeof m!="boolean"&&(Ft(m,"type"),e.type=m),a!=null||i!=null){if(!(m!=="submit"&&m!=="reset"||a!=null)){w0(e);return}i=i!=null?""+gn(i):"",a=a!=null?""+gn(a):i,C||a===e.value||(e.value=a),e.defaultValue=a}c=c??d,c=typeof c!="function"&&typeof c!="symbol"&&!!c,e.checked=C?e.checked:!!c,e.defaultChecked=!!c,S!=null&&typeof S!="function"&&typeof S!="symbol"&&typeof S!="boolean"&&(Ft(S,"name"),e.name=S),w0(e)}function Im(e,a,i){a==="number"&&hi(e.ownerDocument)===e||e.defaultValue===""+i||(e.defaultValue=""+i)}function u4(e,a){a.value==null&&(typeof a.children=="object"&&a.children!==null?qd.Children.forEach(a.children,function(i){i==null||typeof i=="string"||typeof i=="number"||typeof i=="bigint"||l||(l=!0,console.error("Cannot infer the option value of complex children. Pass a `value` prop or use a plain string as children to <option>."))}):a.dangerouslySetInnerHTML==null||o||(o=!0,console.error("Pass a `value` prop if you set dangerouslyInnerHTML so React knows which value should be selected."))),a.selected==null||Jd||(console.error("Use the `defaultValue` or `value` props on <select> instead of setting `selected` on <option>."),Jd=!0)}function wm(){var e=Ca();return e?`
58
+
59
+ Check the render method of \``+e+"`.":""}function eo(e,a,i,c){if(e=e.options,a){a={};for(var d=0;d<i.length;d++)a["$"+i[d]]=!0;for(i=0;i<e.length;i++)d=a.hasOwnProperty("$"+e[i].value),e[i].selected!==d&&(e[i].selected=d),d&&c&&(e[i].defaultSelected=!0)}else{for(i=""+gn(i),a=null,d=0;d<e.length;d++){if(e[d].value===i){e[d].selected=!0,c&&(e[d].defaultSelected=!0);return}a!==null||e[d].disabled||(a=e[d])}a!==null&&(a.selected=!0)}}function k0(e,a){for(e=0;e<f.length;e++){var i=f[e];if(a[i]!=null){var c=Va(a[i]);a.multiple&&!c?console.error("The `%s` prop supplied to <select> must be an array if `multiple` is true.%s",i,wm()):!a.multiple&&c&&console.error("The `%s` prop supplied to <select> must be a scalar value if `multiple` is false.%s",i,wm())}}a.value===void 0||a.defaultValue===void 0||u||(console.error("Select elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled select element and remove one of these props. More info: https://react.dev/link/controlled-components"),u=!0)}function xu(e,a){a.value===void 0||a.defaultValue===void 0||g||(console.error("%s contains a textarea with both value and defaultValue props. Textarea elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled textarea and remove one of these props. More info: https://react.dev/link/controlled-components",Ca()||"A component"),g=!0),a.children!=null&&a.value==null&&console.error("Use the `defaultValue` or `value` props instead of setting children on <textarea>.")}function Ru(e,a,i){if(a!=null&&(a=""+gn(a),a!==e.value&&(e.value=a),i==null)){e.defaultValue!==a&&(e.defaultValue=a);return}e.defaultValue=i!=null?""+gn(i):""}function Ys(e,a,i,c){if(a==null){if(c!=null){if(i!=null)throw Error("If you supply `defaultValue` on a <textarea>, do not pass children.");if(Va(c)){if(1<c.length)throw Error("<textarea> can only have at most one child.");c=c[0]}i=c}i==null&&(i=""),a=i}i=gn(a),e.defaultValue=i,c=e.textContent,c===i&&c!==""&&c!==null&&(e.value=c),w0(e)}function Nu(e,a){return e.serverProps===void 0&&e.serverTail.length===0&&e.children.length===1&&3<e.distanceFromLeaf&&e.distanceFromLeaf>15-a?Nu(e.children[0],a):e}function Vt(e){return" "+" ".repeat(e)}function Bu(e){return"+ "+" ".repeat(e)}function Nr(e){return"- "+" ".repeat(e)}function Br(e){switch(e.tag){case 26:case 27:case 5:return e.type;case 16:return"Lazy";case 31:return"Activity";case 13:return"Suspense";case 19:return"SuspenseList";case 0:case 15:return e=e.type,e.displayName||e.name||null;case 11:return e=e.type.render,e.displayName||e.name||null;case 1:return e=e.type,e.displayName||e.name||null;default:return null}}function to(e,a){return v.test(e)?(e=JSON.stringify(e),e.length>a-2?8>a?'{"..."}':"{"+e.slice(0,a-7)+'..."}':"{"+e+"}"):e.length>a?5>a?'{"..."}':e.slice(0,a-3)+"...":e}function F0(e,a,i){var c=120-2*i;if(a===null)return Bu(i)+to(e,c)+`
60
+ `;if(typeof a=="string"){for(var d=0;d<a.length&&d<e.length&&a.charCodeAt(d)===e.charCodeAt(d);d++);return d>c-8&&10<d&&(e="..."+e.slice(d-8),a="..."+a.slice(d-8)),Bu(i)+to(e,c)+`
61
+ `+Nr(i)+to(a,c)+`
62
+ `}return Vt(i)+to(e,c)+`
63
+ `}function U0(e){return Object.prototype.toString.call(e).replace(/^\[object (.*)\]$/,function(a,i){return i})}function Qs(e,a){switch(typeof e){case"string":return e=JSON.stringify(e),e.length>a?5>a?'"..."':e.slice(0,a-4)+'..."':e;case"object":if(e===null)return"null";if(Va(e))return"[...]";if(e.$$typeof===li)return(a=be(e.type))?"<"+a+">":"<...>";var i=U0(e);if(i==="Object"){i="",a-=2;for(var c in e)if(e.hasOwnProperty(c)){var d=JSON.stringify(c);if(d!=='"'+c+'"'&&(c=d),a-=c.length-2,d=Qs(e[c],15>a?a:15),a-=d.length,0>a){i+=i===""?"...":", ...";break}i+=(i===""?"":",")+c+":"+d}return"{"+i+"}"}return i;case"function":return(a=e.displayName||e.name)?"function "+a:"function";default:return String(e)}}function Xs(e,a){return typeof e!="string"||v.test(e)?"{"+Qs(e,a-2)+"}":e.length>a-2?5>a?'"..."':'"'+e.slice(0,a-5)+'..."':'"'+e+'"'}function Ks(e,a,i){var c=120-i.length-e.length,d=[],m;for(m in a)if(a.hasOwnProperty(m)&&m!=="children"){var S=Xs(a[m],120-i.length-m.length-1);c-=m.length+S.length+2,d.push(m+"="+S)}return d.length===0?i+"<"+e+`>
64
+ `:0<c?i+"<"+e+" "+d.join(" ")+`>
65
+ `:i+"<"+e+`
66
+ `+i+" "+d.join(`
67
+ `+i+" ")+`
68
+ `+i+`>
69
+ `}function H0(e,a,i){var c="",d=bt({},a),m;for(m in e)if(e.hasOwnProperty(m)){delete d[m];var S=120-2*i-m.length-2,C=Qs(e[m],S);a.hasOwnProperty(m)?(S=Qs(a[m],S),c+=Bu(i)+m+": "+C+`
70
+ `,c+=Nr(i)+m+": "+S+`
71
+ `):c+=Bu(i)+m+": "+C+`
72
+ `}for(var x in d)d.hasOwnProperty(x)&&(e=Qs(d[x],120-2*i-x.length-2),c+=Nr(i)+x+": "+e+`
73
+ `);return c}function Ko(e,a,i,c){var d="",m=new Map;for(N in i)i.hasOwnProperty(N)&&m.set(N.toLowerCase(),N);if(m.size===1&&m.has("children"))d+=Ks(e,a,Vt(c));else{for(var S in a)if(a.hasOwnProperty(S)&&S!=="children"){var C=120-2*(c+1)-S.length-1,x=m.get(S.toLowerCase());if(x!==void 0){m.delete(S.toLowerCase());var N=a[S];x=i[x];var Q=Xs(N,C);C=Xs(x,C),typeof N=="object"&&N!==null&&typeof x=="object"&&x!==null&&U0(N)==="Object"&&U0(x)==="Object"&&(2<Object.keys(N).length||2<Object.keys(x).length||-1<Q.indexOf("...")||-1<C.indexOf("..."))?d+=Vt(c+1)+S+`={{
74
+ `+H0(N,x,c+2)+Vt(c+1)+`}}
75
+ `:(d+=Bu(c+1)+S+"="+Q+`
76
+ `,d+=Nr(c+1)+S+"="+C+`
77
+ `)}else d+=Vt(c+1)+S+"="+Xs(a[S],C)+`
78
+ `}m.forEach(function(Z){if(Z!=="children"){var W=120-2*(c+1)-Z.length-1;d+=Nr(c+1)+Z+"="+Xs(i[Z],W)+`
79
+ `}}),d=d===""?Vt(c)+"<"+e+`>
80
+ `:Vt(c)+"<"+e+`
81
+ `+d+Vt(c)+`>
82
+ `}return e=i.children,a=a.children,typeof e=="string"||typeof e=="number"||typeof e=="bigint"?(m="",(typeof a=="string"||typeof a=="number"||typeof a=="bigint")&&(m=""+a),d+=F0(m,""+e,c+1)):(typeof a=="string"||typeof a=="number"||typeof a=="bigint")&&(d=e==null?d+F0(""+a,null,c+1):d+F0(""+a,void 0,c+1)),d}function Tn(e,a){var i=Br(e);if(i===null){for(i="",e=e.child;e;)i+=Tn(e,a),e=e.sibling;return i}return Vt(a)+"<"+i+`>
83
+ `}function P0(e,a){var i=Nu(e,a);if(i!==e&&(e.children.length!==1||e.children[0]!==i))return Vt(a)+`...
84
+ `+P0(i,a+1);i="";var c=e.fiber._debugInfo;if(c)for(var d=0;d<c.length;d++){var m=c[d].name;typeof m=="string"&&(i+=Vt(a)+"<"+m+`>
85
+ `,a++)}if(c="",d=e.fiber.pendingProps,e.fiber.tag===6)c=F0(d,e.serverProps,a),a++;else if(m=Br(e.fiber),m!==null)if(e.serverProps===void 0){c=a;var S=120-2*c-m.length-2,C="";for(N in d)if(d.hasOwnProperty(N)&&N!=="children"){var x=Xs(d[N],15);if(S-=N.length+x.length+2,0>S){C+=" ...";break}C+=" "+N+"="+x}c=Vt(c)+"<"+m+C+`>
86
+ `,a++}else e.serverProps===null?(c=Ks(m,d,Bu(a)),a++):typeof e.serverProps=="string"?console.error("Should not have matched a non HostText fiber to a Text node. This is a bug in React."):(c=Ko(m,d,e.serverProps,a),a++);var N="";for(d=e.fiber.child,m=0;d&&m<e.children.length;)S=e.children[m],S.fiber===d?(N+=P0(S,a),m++):N+=Tn(d,a),d=d.sibling;for(d&&0<e.children.length&&(N+=Vt(a)+`...
87
+ `),d=e.serverTail,e.serverProps===null&&a--,e=0;e<d.length;e++)m=d[e],N=typeof m=="string"?N+(Nr(a)+to(m,120-2*a)+`
88
+ `):N+Ks(m.type,m.props,Nr(a));return i+c+N}function Gm(e){try{return`
89
+
90
+ `+P0(e,0)}catch{return""}}function W0(e,a,i){for(var c=a,d=null,m=0;c;)c===e&&(m=0),d={fiber:c,children:d!==null?[d]:[],serverProps:c===a?i:c===e?null:void 0,serverTail:[],distanceFromLeaf:m},m++,c=c.return;return d!==null?Gm(d).replaceAll(/^[+-]/gm,">"):""}function km(e,a){var i=bt({},e||he),c={tag:a};return O.indexOf(a)!==-1&&(i.aTagInScope=null,i.buttonTagInScope=null,i.nobrTagInScope=null),j.indexOf(a)!==-1&&(i.pTagInButtonScope=null),D.indexOf(a)!==-1&&a!=="address"&&a!=="div"&&a!=="p"&&(i.listItemTagAutoclosing=null,i.dlItemTagAutoclosing=null),i.current=c,a==="form"&&(i.formTag=c),a==="a"&&(i.aTagInScope=c),a==="button"&&(i.buttonTagInScope=c),a==="nobr"&&(i.nobrTagInScope=c),a==="p"&&(i.pTagInButtonScope=c),a==="li"&&(i.listItemTagAutoclosing=c),(a==="dd"||a==="dt")&&(i.dlItemTagAutoclosing=c),a==="#document"||a==="html"?i.containerTagInScope=null:i.containerTagInScope||(i.containerTagInScope=c),e!==null||a!=="#document"&&a!=="html"&&a!=="body"?i.implicitRootScope===!0&&(i.implicitRootScope=!1):i.implicitRootScope=!0,i}function kf(e,a,i){switch(a){case"select":return e==="hr"||e==="option"||e==="optgroup"||e==="script"||e==="template"||e==="#text";case"optgroup":return e==="option"||e==="#text";case"option":return e==="#text";case"tr":return e==="th"||e==="td"||e==="style"||e==="script"||e==="template";case"tbody":case"thead":case"tfoot":return e==="tr"||e==="style"||e==="script"||e==="template";case"colgroup":return e==="col"||e==="template";case"table":return e==="caption"||e==="colgroup"||e==="tbody"||e==="tfoot"||e==="thead"||e==="style"||e==="script"||e==="template";case"head":return e==="base"||e==="basefont"||e==="bgsound"||e==="link"||e==="meta"||e==="title"||e==="noscript"||e==="noframes"||e==="style"||e==="script"||e==="template";case"html":if(i)break;return e==="head"||e==="body"||e==="frameset";case"frameset":return e==="frame";case"#document":if(!i)return e==="html"}switch(e){case"h1":case"h2":case"h3":case"h4":case"h5":case"h6":return a!=="h1"&&a!=="h2"&&a!=="h3"&&a!=="h4"&&a!=="h5"&&a!=="h6";case"rp":case"rt":return re.indexOf(a)===-1;case"caption":case"col":case"colgroup":case"frameset":case"frame":case"tbody":case"td":case"tfoot":case"th":case"thead":case"tr":return a==null;case"head":return i||a===null;case"html":return i&&a==="#document"||a===null;case"body":return i&&(a==="#document"||a==="html")||a===null}return!0}function R8(e,a){switch(e){case"address":case"article":case"aside":case"blockquote":case"center":case"details":case"dialog":case"dir":case"div":case"dl":case"fieldset":case"figcaption":case"figure":case"footer":case"header":case"hgroup":case"main":case"menu":case"nav":case"ol":case"p":case"section":case"summary":case"ul":case"pre":case"listing":case"table":case"hr":case"xmp":case"h1":case"h2":case"h3":case"h4":case"h5":case"h6":return a.pTagInButtonScope;case"form":return a.formTag||a.pTagInButtonScope;case"li":return a.listItemTagAutoclosing;case"dd":case"dt":return a.dlItemTagAutoclosing;case"button":return a.buttonTagInScope;case"a":return a.aTagInScope;case"nobr":return a.nobrTagInScope}return null}function vn(e,a){for(;e;){switch(e.tag){case 5:case 26:case 27:if(e.type===a)return e}e=e.return}return null}function Ff(e,a){a=a||he;var i=a.current;if(a=(i=kf(e,i&&i.tag,a.implicitRootScope)?null:i)?null:R8(e,a),a=i||a,!a)return!0;var c=a.tag;if(a=String(!!i)+"|"+e+"|"+c,Ee[a])return!1;Ee[a]=!0;var d=(a=dn)?vn(a.return,c):null,m=a!==null&&d!==null?W0(d,a,null):"",S="<"+e+">";return i?(i="",c==="table"&&e==="tr"&&(i+=" Add a <tbody>, <thead> or <tfoot> to your code to match the DOM tree generated by the browser."),console.error(`In HTML, %s cannot be a child of <%s>.%s
91
+ This will cause a hydration error.%s`,S,c,i,m)):console.error(`In HTML, %s cannot be a descendant of <%s>.
92
+ This will cause a hydration error.%s`,S,c,m),a&&(e=a.return,d===null||e===null||d===e&&e._debugOwner===a._debugOwner||Ge(d,function(){console.error(`<%s> cannot contain a nested %s.
93
+ See this log for the ancestor stack trace.`,c,S)})),!1}function Uf(e,a,i){if(i||kf("#text",a,!1))return!0;if(i="#text|"+a,Ee[i])return!1;Ee[i]=!0;var c=(i=dn)?vn(i,a):null;return i=i!==null&&c!==null?W0(c,i,i.tag!==6?{children:null}:null):"",/\S/.test(e)?console.error(`In HTML, text nodes cannot be a child of <%s>.
94
+ This will cause a hydration error.%s`,a,i):console.error(`In HTML, whitespace text nodes cannot be a child of <%s>. Make sure you don't have any extra whitespace between tags on each line of your source code.
95
+ This will cause a hydration error.%s`,a,i),!1}function Ou(e,a){if(a){var i=e.firstChild;if(i&&i===e.lastChild&&i.nodeType===3){i.nodeValue=a;return}}e.textContent=a}function Zs(e){return e.replace(ee,function(a,i){return i.toUpperCase()})}function Fm(e,a,i){var c=a.indexOf("--")===0;c||(-1<a.indexOf("-")?ae.hasOwnProperty(a)&&ae[a]||(ae[a]=!0,console.error("Unsupported style property %s. Did you mean %s?",a,Zs(a.replace(la,"ms-")))):Ze.test(a)?ae.hasOwnProperty(a)&&ae[a]||(ae[a]=!0,console.error("Unsupported vendor-prefixed style property %s. Did you mean %s?",a,a.charAt(0).toUpperCase()+a.slice(1))):!K.test(i)||ye.hasOwnProperty(i)&&ye[i]||(ye[i]=!0,console.error(`Style property values shouldn't contain a semicolon. Try "%s: %s" instead.`,a,i.replace(K,""))),typeof i=="number"&&(isNaN(i)?Ye||(Ye=!0,console.error("`NaN` is an invalid value for the `%s` css style property.",a)):isFinite(i)||Ot||(Ot=!0,console.error("`Infinity` is an invalid value for the `%s` css style property.",a)))),i==null||typeof i=="boolean"||i===""?c?e.setProperty(a,""):a==="float"?e.cssFloat="":e[a]="":c?e.setProperty(a,i):typeof i!="number"||i===0||We.has(a)?a==="float"?e.cssFloat=i:(Hs(i,a),e[a]=(""+i).trim()):e[a]=i+"px"}function Um(e,a,i){if(a!=null&&typeof a!="object")throw Error("The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX.");if(a&&Object.freeze(a),e=e.style,i!=null){if(a){var c={};if(i){for(var d in i)if(i.hasOwnProperty(d)&&!a.hasOwnProperty(d))for(var m=ue[d]||[d],S=0;S<m.length;S++)c[m[S]]=d}for(var C in a)if(a.hasOwnProperty(C)&&(!i||i[C]!==a[C]))for(d=ue[C]||[C],m=0;m<d.length;m++)c[d[m]]=C;C={};for(var x in a)for(d=ue[x]||[x],m=0;m<d.length;m++)C[d[m]]=x;x={};for(var N in c)if(d=c[N],(m=C[N])&&d!==m&&(S=d+","+m,!x[S])){x[S]=!0,S=console;var Q=a[d];S.error.call(S,"%s a style property during rerender (%s) when a conflicting property is set (%s) can lead to styling bugs. To avoid this, don't mix shorthand and non-shorthand properties for the same value; instead, replace the shorthand with separate values.",Q==null||typeof Q=="boolean"||Q===""?"Removing":"Updating",d,m)}}for(var Z in i)!i.hasOwnProperty(Z)||a!=null&&a.hasOwnProperty(Z)||(Z.indexOf("--")===0?e.setProperty(Z,""):Z==="float"?e.cssFloat="":e[Z]="");for(var W in a)N=a[W],a.hasOwnProperty(W)&&i[W]!==N&&Fm(e,W,N)}else for(c in a)a.hasOwnProperty(c)&&Fm(e,c,a[c])}function ao(e){if(e.indexOf("-")===-1)return!1;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}function s4(e){return Gt.get(e)||e}function c4(e,a){if(_n.call(E1,a)&&E1[a])return!0;if(YA.test(a)){if(e="aria-"+a.slice(4).toLowerCase(),e=Bp.hasOwnProperty(e)?e:null,e==null)return console.error("Invalid ARIA attribute `%s`. ARIA attributes follow the pattern aria-* and must be lowercase.",a),E1[a]=!0;if(a!==e)return console.error("Invalid ARIA attribute `%s`. Did you mean `%s`?",a,e),E1[a]=!0}if(jA.test(a)){if(e=a.toLowerCase(),e=Bp.hasOwnProperty(e)?e:null,e==null)return E1[a]=!0,!1;a!==e&&(console.error("Unknown ARIA attribute `%s`. Did you mean `%s`?",a,e),E1[a]=!0)}return!0}function f4(e,a){var i=[],c;for(c in a)c4(e,c)||i.push(c);a=i.map(function(d){return"`"+d+"`"}).join(", "),i.length===1?console.error("Invalid aria prop %s on <%s> tag. For details, see https://react.dev/link/invalid-aria-props",a,e):1<i.length&&console.error("Invalid aria props %s on <%s> tag. For details, see https://react.dev/link/invalid-aria-props",a,e)}function Hm(e,a,i,c){if(_n.call(In,a)&&In[a])return!0;var d=a.toLowerCase();if(d==="onfocusin"||d==="onfocusout")return console.error("React uses onFocus and onBlur instead of onFocusIn and onFocusOut. All React events are normalized to bubble, so onFocusIn and onFocusOut are not needed/supported by React."),In[a]=!0;if(typeof i=="function"&&(e==="form"&&a==="action"||e==="input"&&a==="formAction"||e==="button"&&a==="formAction"))return!0;if(c!=null){if(e=c.possibleRegistrationNames,c.registrationNameDependencies.hasOwnProperty(a))return!0;if(c=e.hasOwnProperty(d)?e[d]:null,c!=null)return console.error("Invalid event handler property `%s`. Did you mean `%s`?",a,c),In[a]=!0;if(l3.test(a))return console.error("Unknown event handler property `%s`. It will be ignored.",a),In[a]=!0}else if(l3.test(a))return QA.test(a)&&console.error("Invalid event handler property `%s`. React events use the camelCase naming convention, for example `onClick`.",a),In[a]=!0;if(XA.test(a)||KA.test(a))return!0;if(d==="innerhtml")return console.error("Directly setting property `innerHTML` is not permitted. For more information, lookup documentation on `dangerouslySetInnerHTML`."),In[a]=!0;if(d==="aria")return console.error("The `aria` attribute is reserved for future use in React. Pass individual `aria-` attributes instead."),In[a]=!0;if(d==="is"&&i!==null&&i!==void 0&&typeof i!="string")return console.error("Received a `%s` for a string attribute `is`. If this is expected, cast the value to a string.",typeof i),In[a]=!0;if(typeof i=="number"&&isNaN(i))return console.error("Received NaN for the `%s` attribute. If this is expected, cast the value to a string.",a),In[a]=!0;if(ki.hasOwnProperty(d)){if(d=ki[d],d!==a)return console.error("Invalid DOM property `%s`. Did you mean `%s`?",a,d),In[a]=!0}else if(a!==d)return console.error("React does not recognize the `%s` prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase `%s` instead. If you accidentally passed it from a parent component, remove it from the DOM element.",a,d),In[a]=!0;switch(a){case"dangerouslySetInnerHTML":case"children":case"style":case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":return!0;case"innerText":case"textContent":return!0}switch(typeof i){case"boolean":switch(a){case"autoFocus":case"checked":case"multiple":case"muted":case"selected":case"contentEditable":case"spellCheck":case"draggable":case"value":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":case"allowFullScreen":case"async":case"autoPlay":case"controls":case"default":case"defer":case"disabled":case"disablePictureInPicture":case"disableRemotePlayback":case"formNoValidate":case"hidden":case"loop":case"noModule":case"noValidate":case"open":case"playsInline":case"readOnly":case"required":case"reversed":case"scoped":case"seamless":case"itemScope":case"capture":case"download":case"inert":return!0;default:return d=a.toLowerCase().slice(0,5),d==="data-"||d==="aria-"?!0:(i?console.error('Received `%s` for a non-boolean attribute `%s`.\n\nIf you want to write it to the DOM, pass a string instead: %s="%s" or %s={value.toString()}.',i,a,a,i,a):console.error('Received `%s` for a non-boolean attribute `%s`.\n\nIf you want to write it to the DOM, pass a string instead: %s="%s" or %s={value.toString()}.\n\nIf you used to conditionally omit it with %s={condition && value}, pass %s={condition ? value : undefined} instead.',i,a,a,i,a,a,a),In[a]=!0)}case"function":case"symbol":return In[a]=!0,!1;case"string":if(i==="false"||i==="true"){switch(a){case"checked":case"selected":case"multiple":case"muted":case"allowFullScreen":case"async":case"autoPlay":case"controls":case"default":case"defer":case"disabled":case"disablePictureInPicture":case"disableRemotePlayback":case"formNoValidate":case"hidden":case"loop":case"noModule":case"noValidate":case"open":case"playsInline":case"readOnly":case"required":case"reversed":case"scoped":case"seamless":case"itemScope":case"inert":break;default:return!0}console.error("Received the string `%s` for the boolean attribute `%s`. %s Did you mean %s={%s}?",i,a,i==="false"?"The browser will interpret it as a truthy value.":'Although this works, it will not work as expected if you pass the string "false".',a,i),In[a]=!0}}return!0}function N8(e,a,i){var c=[],d;for(d in a)Hm(e,d,a[d],i)||c.push(d);a=c.map(function(m){return"`"+m+"`"}).join(", "),c.length===1?console.error("Invalid value for prop %s on <%s> tag. Either remove it from the element, or pass a string or number value to keep it in the DOM. For details, see https://react.dev/link/attribute-behavior ",a,e):1<c.length&&console.error("Invalid values for props %s on <%s> tag. Either remove them from the element, or pass a string or number value to keep them in the DOM. For details, see https://react.dev/link/attribute-behavior ",a,e)}function Hf(e){return ZA.test(""+e)?"javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')":e}function jn(){}function pi(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}function V0(e){var a=bi(e);if(a&&(e=a.stateNode)){var i=e[$l]||null;e:switch(e=a.stateNode,a.type){case"input":if(Rr(e,i.value,i.defaultValue,i.defaultValue,i.checked,i.defaultChecked,i.type,i.name),a=i.name,i.type==="radio"&&a!=null){for(i=e;i.parentNode;)i=i.parentNode;for(Ft(a,"name"),i=i.querySelectorAll('input[name="'+$t(""+a)+'"][type="radio"]'),a=0;a<i.length;a++){var c=i[a];if(c!==e&&c.form===e.form){var d=c[$l]||null;if(!d)throw Error("ReactDOMInput: Mixing React and non-React radio inputs with the same `name` is not supported.");Rr(c,d.value,d.defaultValue,d.defaultValue,d.checked,d.defaultChecked,d.type,d.name)}}for(a=0;a<i.length;a++)c=i[a],c.form===e.form&&_m(c)}break e;case"textarea":Ru(e,i.value,i.defaultValue);break e;case"select":a=i.value,a!=null&&eo(e,!!i.multiple,a,!1)}}}function q0(e,a,i){if(q8)return e(a,i);q8=!0;try{var c=e(a);return c}finally{if(q8=!1,(A1!==null||M1!==null)&&(Nn(),A1&&(a=A1,e=M1,M1=A1=null,V0(a),e)))for(a=0;a<e.length;a++)V0(e[a])}}function lo(e,a){var i=e.stateNode;if(i===null)return null;var c=i[$l]||null;if(c===null)return null;i=c[a];e:switch(a){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(c=!c.disabled)||(e=e.type,c=!(e==="button"||e==="input"||e==="select"||e==="textarea")),e=!c;break e;default:e=!1}if(e)return null;if(i&&typeof i!="function")throw Error("Expected `"+a+"` listener to be a function, instead got a value of `"+typeof i+"` type.");return i}function _u(){if(Op)return Op;var e,a=Y8,i=a.length,c,d="value"in ef?ef.value:ef.textContent,m=d.length;for(e=0;e<i&&a[e]===d[e];e++);var S=i-e;for(c=1;c<=S&&a[i-c]===d[m-c];c++);return Op=d.slice(e,1<c?1-c:void 0)}function Pf(e){var a=e.keyCode;return"charCode"in e?(e=e.charCode,e===0&&a===13&&(e=13)):e=a,e===10&&(e=13),32<=e||e===13?e:0}function Js(){return!0}function Pm(){return!1}function tl(e){function a(i,c,d,m,S){this._reactName=i,this._targetInst=d,this.type=c,this.nativeEvent=m,this.target=S,this.currentTarget=null;for(var C in e)e.hasOwnProperty(C)&&(i=e[C],this[C]=i?i(m):m[C]);return this.isDefaultPrevented=(m.defaultPrevented!=null?m.defaultPrevented:m.returnValue===!1)?Js:Pm,this.isPropagationStopped=Pm,this}return bt(a.prototype,{preventDefault:function(){this.defaultPrevented=!0;var i=this.nativeEvent;i&&(i.preventDefault?i.preventDefault():typeof i.returnValue!="unknown"&&(i.returnValue=!1),this.isDefaultPrevented=Js)},stopPropagation:function(){var i=this.nativeEvent;i&&(i.stopPropagation?i.stopPropagation():typeof i.cancelBubble!="unknown"&&(i.cancelBubble=!0),this.isPropagationStopped=Js)},persist:function(){},isPersistent:Js}),a}function Zo(e){var a=this.nativeEvent;return a.getModifierState?a.getModifierState(e):(e=cM[e])?!!a[e]:!1}function Wf(){return Zo}function $s(e,a){switch(e){case"keyup":return CM.indexOf(a.keyCode)!==-1;case"keydown":return a.keyCode!==r3;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function Jo(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}function Wm(e,a){switch(e){case"compositionend":return Jo(a);case"keypress":return a.which!==s3?null:(f3=!0,c3);case"textInput":return e=a.data,e===c3&&f3?null:e;default:return null}}function j0(e,a){if(D1)return e==="compositionend"||!Z8&&$s(e,a)?(e=_u(),Op=Y8=ef=null,D1=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(a.ctrlKey||a.altKey||a.metaKey)||a.ctrlKey&&a.altKey){if(a.char&&1<a.char.length)return a.char;if(a.which)return String.fromCharCode(a.which)}return null;case"compositionend":return u3&&a.locale!=="ko"?null:a.data;default:return null}}function Vm(e){var a=e&&e.nodeName&&e.nodeName.toLowerCase();return a==="input"?!!AM[e.type]:a==="textarea"}function Y0(e){if(!fu)return!1;e="on"+e;var a=e in document;return a||(a=document.createElement("div"),a.setAttribute(e,"return;"),a=typeof a[e]=="function"),a}function Vf(e,a,i,c){A1?M1?M1.push(c):M1=[c]:A1=c,a=Oi(a,"onChange"),0<a.length&&(i=new _p("onChange","change",null,i,c),e.push({event:i,listeners:a}))}function d4(e){Yt(e,0)}function Sl(e){var a=xr(e);if(_m(a))return e}function Or(e,a){if(e==="change")return a}function qf(){P5&&(P5.detachEvent("onpropertychange",ec),W5=P5=null)}function ec(e){if(e.propertyName==="value"&&Sl(W5)){var a=[];Vf(a,W5,e,pi(e)),q0(d4,a)}}function B8(e,a,i){e==="focusin"?(qf(),P5=a,W5=i,P5.attachEvent("onpropertychange",ec)):e==="focusout"&&qf()}function qm(e){if(e==="selectionchange"||e==="keyup"||e==="keydown")return Sl(W5)}function jm(e,a){if(e==="click")return Sl(a)}function jf(e,a){if(e==="input"||e==="change")return Sl(a)}function Q0(e,a){return e===a&&(e!==0||1/e===1/a)||e!==e&&a!==a}function tc(e,a){if(wn(e,a))return!0;if(typeof e!="object"||e===null||typeof a!="object"||a===null)return!1;var i=Object.keys(e),c=Object.keys(a);if(i.length!==c.length)return!1;for(c=0;c<i.length;c++){var d=i[c];if(!_n.call(a,d)||!wn(e[d],a[d]))return!1}return!0}function b4(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function m4(e,a){var i=b4(e);e=0;for(var c;i;){if(i.nodeType===3){if(c=e+i.textContent.length,e<=a&&c>=a)return{node:i,offset:a-e};e=c}e:{for(;i;){if(i.nextSibling){i=i.nextSibling;break e}i=i.parentNode}i=void 0}i=b4(i)}}function h4(e,a){return e&&a?e===a?!0:e&&e.nodeType===3?!1:a&&a.nodeType===3?h4(e,a.parentNode):"contains"in e?e.contains(a):e.compareDocumentPosition?!!(e.compareDocumentPosition(a)&16):!1:!1}function X0(e){e=e!=null&&e.ownerDocument!=null&&e.ownerDocument.defaultView!=null?e.ownerDocument.defaultView:window;for(var a=hi(e.document);a instanceof e.HTMLIFrameElement;){try{var i=typeof a.contentWindow.location.href=="string"}catch{i=!1}if(i)e=a.contentWindow;else break;a=hi(e.document)}return a}function Ym(e){var a=e&&e.nodeName&&e.nodeName.toLowerCase();return a&&(a==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||a==="textarea"||e.contentEditable==="true")}function p4(e,a,i){var c=i.window===i?i.document:i.nodeType===9?i:i.ownerDocument;$8||L1==null||L1!==hi(c)||(c=L1,"selectionStart"in c&&Ym(c)?c={start:c.selectionStart,end:c.selectionEnd}:(c=(c.ownerDocument&&c.ownerDocument.defaultView||window).getSelection(),c={anchorNode:c.anchorNode,anchorOffset:c.anchorOffset,focusNode:c.focusNode,focusOffset:c.focusOffset}),V5&&tc(V5,c)||(V5=c,c=Oi(J8,"onSelect"),0<c.length&&(a=new _p("onSelect","select",null,a,i),e.push({event:a,listeners:c}),a.target=L1)))}function Iu(e,a){var i={};return i[e.toLowerCase()]=a.toLowerCase(),i["Webkit"+e]="webkit"+a,i["Moz"+e]="moz"+a,i}function wu(e){if(e9[e])return e9[e];if(!z1[e])return e;var a=z1[e],i;for(i in a)if(a.hasOwnProperty(i)&&i in b3)return e9[e]=a[i];return e}function gi(e,a){T3.set(e,a),mi(a,[e])}function g4(e){for(var a=wp,i=0;i<e.length;i++){var c=e[i];if(typeof c=="object"&&c!==null)if(Va(c)&&c.length===2&&typeof c[0]=="string"){if(a!==wp&&a!==i9)return l9;a=i9}else return l9;else{if(typeof c=="function"||typeof c=="string"&&50<c.length||a!==wp&&a!==n9)return l9;a=n9}}return a}function Qm(e,a,i,c){for(var d in e)_n.call(e,d)&&d[0]!=="_"&&no(d,e[d],a,i,c)}function no(e,a,i,c,d){switch(typeof a){case"object":if(a===null){a="null";break}else{if(a.$$typeof===li){var m=be(a.type)||"…",S=a.key;a=a.props;var C=Object.keys(a),x=C.length;if(S==null&&x===0){a="<"+m+" />";break}if(3>c||x===1&&C[0]==="children"&&S==null){a="<"+m+" … />";break}i.push([d+"  ".repeat(c)+e,"<"+m]),S!==null&&no("key",S,i,c+1,d),e=!1;for(var N in a)N==="children"?a.children!=null&&(!Va(a.children)||0<a.children.length)&&(e=!0):_n.call(a,N)&&N[0]!=="_"&&no(N,a[N],i,c+1,d);i.push(["",e?">…</"+m+">":"/>"]);return}if(m=Object.prototype.toString.call(a),m=m.slice(8,m.length-1),m==="Array"){if(N=g4(a),N===n9||N===wp){a=JSON.stringify(a);break}else if(N===i9){for(i.push([d+"  ".repeat(c)+e,""]),e=0;e<a.length;e++)m=a[e],no(m[0],m[1],i,c+1,d);return}}if(m==="Promise"){if(a.status==="fulfilled"){if(m=i.length,no(e,a.value,i,c,d),i.length>m){i=i[m],i[1]="Promise<"+(i[1]||"Object")+">";return}}else if(a.status==="rejected"&&(m=i.length,no(e,a.reason,i,c,d),i.length>m)){i=i[m],i[1]="Rejected Promise<"+i[1]+">";return}i.push(["  ".repeat(c)+e,"Promise"]);return}m==="Object"&&(N=Object.getPrototypeOf(a))&&typeof N.constructor=="function"&&(m=N.constructor.name),i.push([d+"  ".repeat(c)+e,m==="Object"?3>c?"":"…":m]),3>c&&Qm(a,i,c+1,d);return}case"function":a=a.name===""?"() => {}":a.name+"() {}";break;case"string":a=a===NM?"…":JSON.stringify(a);break;case"undefined":a="undefined";break;case"boolean":a=a?"true":"false";break;default:a=String(a)}i.push([d+"  ".repeat(c)+e,a])}function T4(e,a,i,c){var d=!0;for(S in e)S in a||(i.push([Gp+"  ".repeat(c)+S,"…"]),d=!1);for(var m in a)if(m in e){var S=e[m],C=a[m];if(S!==C){if(c===0&&m==="children")d="  ".repeat(c)+m,i.push([Gp+d,"…"],[kp+d,"…"]);else{if(!(3<=c)){if(typeof S=="object"&&typeof C=="object"&&S!==null&&C!==null&&S.$$typeof===C.$$typeof)if(C.$$typeof===li){if(S.type===C.type&&S.key===C.key){S=be(C.type)||"…",d="  ".repeat(c)+m,S="<"+S+" … />",i.push([Gp+d,S],[kp+d,S]),d=!1;continue}}else{var x=Object.prototype.toString.call(S),N=Object.prototype.toString.call(C);if(x===N&&(N==="[object Object]"||N==="[object Array]")){x=[y3+"  ".repeat(c)+m,N==="[object Array]"?"Array":""],i.push(x),N=i.length,T4(S,C,i,c+1)?N===i.length&&(x[1]="Referentially unequal but deeply equal objects. Consider memoization."):d=!1;continue}}else if(typeof S=="function"&&typeof C=="function"&&S.name===C.name&&S.length===C.length&&(x=Function.prototype.toString.call(S),N=Function.prototype.toString.call(C),x===N)){S=C.name===""?"() => {}":C.name+"() {}",i.push([y3+"  ".repeat(c)+m,S+" Referentially unequal function closure. Consider memoization."]);continue}}no(m,S,i,c,Gp),no(m,C,i,c,kp)}d=!1}}else i.push([kp+"  ".repeat(c)+m,"…"]),d=!1;return d}function Ti(e){Bt=e&63?"Blocking":e&64?"Gesture":e&4194176?"Transition":e&62914560?"Suspense":e&2080374784?"Idle":"Other"}function Yn(e,a,i,c){pa&&(af.start=a,af.end=i,ys.color="warning",ys.tooltipText=c,ys.properties=null,(e=e._debugTask)?e.run(performance.measure.bind(performance,c,af)):performance.measure(c,af))}function K0(e,a,i){Yn(e,a,i,"Reconnect")}function Z0(e,a,i,c,d){var m=Ce(e);if(m!==null&&pa){var S=e.alternate,C=e.actualDuration;if(S===null||S.child!==e.child)for(var x=e.child;x!==null;x=x.sibling)C-=x.actualDuration;c=.5>C?c?"tertiary-light":"primary-light":10>C?c?"tertiary":"primary":100>C?c?"tertiary-dark":"primary-dark":"error";var N=e.memoizedProps;C=e._debugTask,N!==null&&S!==null&&S.memoizedProps!==N?(x=[BM],N=T4(S.memoizedProps,N,x,0),1<x.length&&(N&&!tf&&(S.lanes&d)===0&&100<e.actualDuration?(tf=!0,x[0]=OM,ys.color="warning",ys.tooltipText=C3):(ys.color=c,ys.tooltipText=m),ys.properties=x,af.start=a,af.end=i,C!=null?C.run(performance.measure.bind(performance,"​"+m,af)):performance.measure("​"+m,af))):C!=null?C.run(console.timeStamp.bind(console,m,a,i,Bo,void 0,c)):console.timeStamp(m,a,i,Bo,void 0,c)}}function Xm(e,a,i,c){if(pa){var d=Ce(e);if(d!==null){for(var m=null,S=[],C=0;C<c.length;C++){var x=c[C];m==null&&x.source!==null&&(m=x.source._debugTask),x=x.value,S.push(["Error",typeof x=="object"&&x!==null&&typeof x.message=="string"?String(x.message):String(x)])}e.key!==null&&no("key",e.key,S,0,""),e.memoizedProps!==null&&Qm(e.memoizedProps,S,0,""),m==null&&(m=e._debugTask),e={start:a,end:i,detail:{devtools:{color:"error",track:Bo,tooltipText:e.tag===13?"Hydration failed":"Error boundary caught an error",properties:S}}},m?m.run(performance.measure.bind(performance,"​"+d,e)):performance.measure("​"+d,e)}}}function vi(e,a,i,c,d){if(d!==null){if(pa){var m=Ce(e);if(m!==null){c=[];for(var S=0;S<d.length;S++){var C=d[S].value;c.push(["Error",typeof C=="object"&&C!==null&&typeof C.message=="string"?String(C.message):String(C)])}e.key!==null&&no("key",e.key,c,0,""),e.memoizedProps!==null&&Qm(e.memoizedProps,c,0,""),a={start:a,end:i,detail:{devtools:{color:"error",track:Bo,tooltipText:"A lifecycle or effect errored",properties:c}}},(e=e._debugTask)?e.run(performance.measure.bind(performance,"​"+m,a)):performance.measure("​"+m,a)}}}else m=Ce(e),m!==null&&pa&&(d=1>c?"secondary-light":100>c?"secondary":500>c?"secondary-dark":"error",(e=e._debugTask)?e.run(console.timeStamp.bind(console,m,a,i,Bo,void 0,d)):console.timeStamp(m,a,i,Bo,void 0,d))}function O8(e,a,i,c){if(pa&&!(a<=e)){var d=(i&738197653)===i?"tertiary-dark":"primary-dark";i=(i&536870912)===i?"Prepared":(i&201326741)===i?"Hydrated":"Render",c?c.run(console.timeStamp.bind(console,i,e,a,Bt,Rt,d)):console.timeStamp(i,e,a,Bt,Rt,d)}}function v4(e,a,i,c){!pa||a<=e||(i=(i&738197653)===i?"tertiary-dark":"primary-dark",c?c.run(console.timeStamp.bind(console,"Prewarm",e,a,Bt,Rt,i)):console.timeStamp("Prewarm",e,a,Bt,Rt,i))}function S4(e,a,i,c){!pa||a<=e||(i=(i&738197653)===i?"tertiary-dark":"primary-dark",c?c.run(console.timeStamp.bind(console,"Suspended",e,a,Bt,Rt,i)):console.timeStamp("Suspended",e,a,Bt,Rt,i))}function _8(e,a,i,c,d,m){if(pa&&!(a<=e)){i=[];for(var S=0;S<c.length;S++){var C=c[S].value;i.push(["Recoverable Error",typeof C=="object"&&C!==null&&typeof C.message=="string"?String(C.message):String(C)])}e={start:e,end:a,detail:{devtools:{color:"primary-dark",track:Bt,trackGroup:Rt,tooltipText:d?"Hydration Failed":"Recovered after Error",properties:i}}},m?m.run(performance.measure.bind(performance,"Recovered",e)):performance.measure("Recovered",e)}}function Km(e,a,i,c){!pa||a<=e||(c?c.run(console.timeStamp.bind(console,"Errored",e,a,Bt,Rt,"error")):console.timeStamp("Errored",e,a,Bt,Rt,"error"))}function I8(e,a,i,c){!pa||a<=e||(c?c.run(console.timeStamp.bind(console,i,e,a,Bt,Rt,"secondary-light")):console.timeStamp(i,e,a,Bt,Rt,"secondary-light"))}function y4(e,a,i,c,d){if(pa&&!(a<=e)){for(var m=[],S=0;S<i.length;S++){var C=i[S].value;m.push(["Error",typeof C=="object"&&C!==null&&typeof C.message=="string"?String(C.message):String(C)])}e={start:e,end:a,detail:{devtools:{color:"error",track:Bt,trackGroup:Rt,tooltipText:c?"Remaining Effects Errored":"Commit Errored",properties:m}}},d?d.run(performance.measure.bind(performance,"Errored",e)):performance.measure("Errored",e)}}function Zm(e,a,i){!pa||a<=e||console.timeStamp("Animating",e,a,Bt,Rt,"secondary-dark")}function J0(){for(var e=x1,a=o9=x1=0;a<e;){var i=Oo[a];Oo[a++]=null;var c=Oo[a];Oo[a++]=null;var d=Oo[a];Oo[a++]=null;var m=Oo[a];if(Oo[a++]=null,c!==null&&d!==null){var S=c.pending;S===null?d.next=d:(d.next=S.next,S.next=d),c.pending=d}m!==0&&Jm(i,d,m)}}function ac(e,a,i,c){Oo[x1++]=e,Oo[x1++]=a,Oo[x1++]=i,Oo[x1++]=c,o9|=c,e.lanes|=c,e=e.alternate,e!==null&&(e.lanes|=c)}function Gu(e,a,i,c){return ac(e,a,i,c),Yf(e)}function Ll(e,a){return ac(e,null,null,a),Yf(e)}function Jm(e,a,i){e.lanes|=i;var c=e.alternate;c!==null&&(c.lanes|=i);for(var d=!1,m=e.return;m!==null;)m.childLanes|=i,c=m.alternate,c!==null&&(c.childLanes|=i),m.tag===22&&(e=m.stateNode,e===null||e._visibility&q5||(d=!0)),e=m,m=m.return;return e.tag===3?(m=e.stateNode,d&&a!==null&&(d=31-Cl(i),e=m.hiddenUpdates,c=e[d],c===null?e[d]=[a]:c.push(a),a.lane=i|536870912),m):null}function Yf(e){if(T2>XM)throw h0=T2=0,v2=F9=null,Error("Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate. React limits the number of nested updates to prevent infinite loops.");h0>KM&&(h0=0,v2=null,console.error("Maximum update depth exceeded. This can happen when a component calls setState inside useEffect, but useEffect either doesn't have a dependency array, or one of the dependencies changes on every render.")),e.alternate===null&&(e.flags&4098)!==0&&ai(e);for(var a=e,i=a.return;i!==null;)a.alternate===null&&(a.flags&4098)!==0&&ai(e),a=i,i=a.return;return a.tag===3?a.stateNode:null}function _r(e){if(_o===null)return e;var a=_o(e);return a===void 0?e:a.current}function $0(e){if(_o===null)return e;var a=_o(e);return a===void 0?e!=null&&typeof e.render=="function"&&(a=_r(e.render),e.render!==a)?(a={$$typeof:Wc,render:a},e.displayName!==void 0&&(a.displayName=e.displayName),a):e:a.current}function $m(e,a){if(_o===null)return!1;var i=e.elementType;a=a.type;var c=!1,d=typeof a=="object"&&a!==null?a.$$typeof:null;switch(e.tag){case 1:typeof a=="function"&&(c=!0);break;case 0:(typeof a=="function"||d===Rl)&&(c=!0);break;case 11:(d===Wc||d===Rl)&&(c=!0);break;case 14:case 15:(d===Yd||d===Rl)&&(c=!0);break;default:return!1}return!!(c&&(e=_o(i),e!==void 0&&e===_o(a)))}function ku(e){_o!==null&&typeof WeakSet=="function"&&(R1===null&&(R1=new WeakSet),R1.add(e))}function C4(e,a,i){do{var c=e,d=c.alternate,m=c.child,S=c.sibling,C=c.tag;c=c.type;var x=null;switch(C){case 0:case 15:case 1:x=c;break;case 11:x=c.render}if(_o===null)throw Error("Expected resolveFamily to be set during hot reload.");var N=!1;if(c=!1,x!==null&&(x=_o(x),x!==void 0&&(i.has(x)?c=!0:a.has(x)&&(C===1?c=!0:N=!0))),R1!==null&&(R1.has(e)||d!==null&&R1.has(d))&&(c=!0),c&&(e._debugNeedsRemount=!0),(c||N)&&(d=Ll(e,2),d!==null&&at(d,e,2)),m===null||c||C4(m,a,i),S===null)break;e=S}while(!0)}function w8(e,a,i,c){this.tag=e,this.key=i,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.refCleanup=this.ref=null,this.pendingProps=a,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=c,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null,this.actualDuration=-0,this.actualStartTime=-1.1,this.treeBaseDuration=this.selfBaseDuration=-0,this._debugTask=this._debugStack=this._debugOwner=this._debugInfo=null,this._debugNeedsRemount=!1,this._debugHookTypes=null,E3||typeof Object.preventExtensions!="function"||Object.preventExtensions(this)}function eh(e){return e=e.prototype,!(!e||!e.isReactComponent)}function io(e,a){var i=e.alternate;switch(i===null?(i=R(e.tag,a,e.key,e.mode),i.elementType=e.elementType,i.type=e.type,i.stateNode=e.stateNode,i._debugOwner=e._debugOwner,i._debugStack=e._debugStack,i._debugTask=e._debugTask,i._debugHookTypes=e._debugHookTypes,i.alternate=e,e.alternate=i):(i.pendingProps=a,i.type=e.type,i.flags=0,i.subtreeFlags=0,i.deletions=null,i.actualDuration=-0,i.actualStartTime=-1.1),i.flags=e.flags&65011712,i.childLanes=e.childLanes,i.lanes=e.lanes,i.child=e.child,i.memoizedProps=e.memoizedProps,i.memoizedState=e.memoizedState,i.updateQueue=e.updateQueue,a=e.dependencies,i.dependencies=a===null?null:{lanes:a.lanes,firstContext:a.firstContext,_debugThenableState:a._debugThenableState},i.sibling=e.sibling,i.index=e.index,i.ref=e.ref,i.refCleanup=e.refCleanup,i.selfBaseDuration=e.selfBaseDuration,i.treeBaseDuration=e.treeBaseDuration,i._debugInfo=e._debugInfo,i._debugNeedsRemount=e._debugNeedsRemount,i.tag){case 0:case 15:i.type=_r(e.type);break;case 1:i.type=_r(e.type);break;case 11:i.type=$0(e.type)}return i}function th(e,a){e.flags&=65011714;var i=e.alternate;return i===null?(e.childLanes=0,e.lanes=a,e.child=null,e.subtreeFlags=0,e.memoizedProps=null,e.memoizedState=null,e.updateQueue=null,e.dependencies=null,e.stateNode=null,e.selfBaseDuration=0,e.treeBaseDuration=0):(e.childLanes=i.childLanes,e.lanes=i.lanes,e.child=i.child,e.subtreeFlags=0,e.deletions=null,e.memoizedProps=i.memoizedProps,e.memoizedState=i.memoizedState,e.updateQueue=i.updateQueue,e.type=i.type,a=i.dependencies,e.dependencies=a===null?null:{lanes:a.lanes,firstContext:a.firstContext,_debugThenableState:a._debugThenableState},e.selfBaseDuration=i.selfBaseDuration,e.treeBaseDuration=i.treeBaseDuration),e}function Fu(e,a,i,c,d,m){var S=0,C=e;if(typeof e=="function")eh(e)&&(S=1),C=_r(C);else if(typeof e=="string")S=oe(),S=gp(e,i,S)?26:e==="html"||e==="head"||e==="body"?27:5;else e:switch(e){case Gi:return a=R(31,i,a,d),a.elementType=Gi,a.lanes=m,a;case Pc:return Uu(i.children,d,m,a);case Jl:S=8,d|=bn,d|=vr;break;case jd:return e=i,c=d,typeof e.id!="string"&&console.error('Profiler must specify an "id" of type `string` as a prop. Received the type `%s` instead.',typeof e.id),a=R(12,e,a,c|mt),a.elementType=jd,a.lanes=m,a.stateNode={effectDuration:0,passiveEffectDuration:0},a;case ps:return a=R(13,i,a,d),a.elementType=ps,a.lanes=m,a;case fn:return a=R(19,i,a,d),a.elementType=fn,a.lanes=m,a;default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case wi:S=10;break e;case f1:S=9;break e;case Wc:S=11,C=$0(C);break e;case Yd:S=14;break e;case Rl:S=16,C=null;break e}C="",(e===void 0||typeof e=="object"&&e!==null&&Object.keys(e).length===0)&&(C+=" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports."),e===null?i="null":Va(e)?i="array":e!==void 0&&e.$$typeof===li?(i="<"+(be(e.type)||"Unknown")+" />",C=" Did you accidentally export a JSX literal instead of a component?"):i=typeof e,(S=c?ke(c):null)&&(C+=`
96
+
97
+ Check the render method of \``+S+"`."),S=29,i=Error("Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: "+(i+"."+C)),C=null}return a=R(S,i,a,d),a.elementType=e,a.type=C,a.lanes=m,a._debugOwner=c,a}function Ir(e,a,i){return a=Fu(e.type,e.key,e.props,e._owner,a,i),a._debugOwner=e._owner,a._debugStack=e._debugStack,a._debugTask=e._debugTask,a}function Uu(e,a,i,c){return e=R(7,e,c,a),e.lanes=i,e}function lc(e,a,i){return e=R(6,e,null,a),e.lanes=i,e}function ah(e){var a=R(18,null,null,et);return a.stateNode=e,a}function eb(e,a,i){return a=R(4,e.children!==null?e.children:[],e.key,a),a.lanes=i,a.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},a}function Fl(e,a){if(typeof e=="object"&&e!==null){var i=r9.get(e);return i!==void 0?i:(a={value:e,source:a,stack:Lt(a)},r9.set(e,a),a)}return{value:e,source:a,stack:Lt(a)}}function Si(e,a){wr(),N1[B1++]=j5,N1[B1++]=Fp,Fp=e,j5=a}function lh(e,a,i){wr(),Io[wo++]=Es,Io[wo++]=As,Io[wo++]=e0,e0=e;var c=Es;e=As;var d=32-Cl(c)-1;c&=~(1<<d),i+=1;var m=32-Cl(a)+d;if(30<m){var S=d-d%5;m=(c&(1<<S)-1).toString(32),c>>=S,d-=S,Es=1<<32-Cl(a)+d|i<<d|c,As=m+e}else Es=1<<m|i<<d|c,As=e}function tb(e){wr(),e.return!==null&&(Si(e,1),lh(e,1,0))}function ab(e){for(;e===Fp;)Fp=N1[--B1],N1[B1]=null,j5=N1[--B1],N1[B1]=null;for(;e===e0;)e0=Io[--wo],Io[wo]=null,As=Io[--wo],Io[wo]=null,Es=Io[--wo],Io[wo]=null}function E4(){return wr(),e0!==null?{id:Es,overflow:As}:null}function A4(e,a){wr(),Io[wo++]=Es,Io[wo++]=As,Io[wo++]=e0,Es=a.id,As=a.overflow,e0=e}function wr(){zt||console.error("Expected to be hydrating. This is a bug in React. Please file an issue.")}function Hu(e,a){if(e.return===null){if(Fi===null)Fi={fiber:e,children:[],serverProps:void 0,serverTail:[],distanceFromLeaf:a};else{if(Fi.fiber!==e)throw Error("Saw multiple hydration diff roots in a pass. This is a bug in React.");Fi.distanceFromLeaf>a&&(Fi.distanceFromLeaf=a)}return Fi}var i=Hu(e.return,a+1).children;return 0<i.length&&i[i.length-1].fiber===e?(i=i[i.length-1],i.distanceFromLeaf>a&&(i.distanceFromLeaf=a),i):(a={fiber:e,children:[],serverProps:void 0,serverTail:[],distanceFromLeaf:a},i.push(a),a)}function M4(){zt&&console.error("We should not be hydrating here. This is a bug in React. Please file a bug.")}function zl(e,a){du||(e=Hu(e,0),e.serverProps=null,a!==null&&(a=bp(a),e.serverTail.push(a)))}function Qn(e){var a=1<arguments.length&&arguments[1]!==void 0?arguments[1]:!1,i="",c=Fi;throw c!==null&&(Fi=null,i=Gm(c)),Xf(Fl(Error("Hydration failed because the server rendered "+(a?"text":"HTML")+` didn't match the client. As a result this tree will be regenerated on the client. This can happen if a SSR-ed Client Component used:
98
+
99
+ - A server/client branch \`if (typeof window !== 'undefined')\`.
100
+ - Variable input such as \`Date.now()\` or \`Math.random()\` which changes each time it's called.
101
+ - Date formatting in a user's locale which doesn't match the server.
102
+ - External changing data without sending a snapshot of it along with the HTML.
103
+ - Invalid HTML tag nesting.
104
+
105
+ It can also happen if the client has a browser extension installed which messes with the HTML before React loaded.
106
+
107
+ https://react.dev/link/hydration-mismatch`+i),e)),u9}function nh(e){var a=e.stateNode,i=e.type,c=e.memoizedProps;switch(a[ha]=e,a[$l]=c,Kl(i,c),i){case"dialog":$e("cancel",a),$e("close",a);break;case"iframe":case"object":case"embed":$e("load",a);break;case"video":case"audio":for(i=0;i<S2.length;i++)$e(S2[i],a);break;case"source":$e("error",a);break;case"img":case"image":case"link":$e("error",a),$e("load",a);break;case"details":$e("toggle",a);break;case"input":zu("input",c),$e("invalid",a),kl(a,c),G0(a,c.value,c.defaultValue,c.checked,c.defaultChecked,c.type,c.name,!0);break;case"option":u4(a,c);break;case"select":zu("select",c),$e("invalid",a),k0(a,c);break;case"textarea":zu("textarea",c),$e("invalid",a),xu(a,c),Ys(a,c.value,c.defaultValue,c.children)}i=c.children,typeof i!="string"&&typeof i!="number"&&typeof i!="bigint"||a.textContent===""+i||c.suppressHydrationWarning===!0||o5(a.textContent,i)?(c.popover!=null&&($e("beforetoggle",a),$e("toggle",a)),c.onScroll!=null&&$e("scroll",a),c.onScrollEnd!=null&&$e("scrollend",a),c.onClick!=null&&(a.onclick=jn),a=!0):a=!1,a||Qn(e,!0)}function ih(e){for(en=e.return;en;)switch(en.tag){case 5:case 31:case 13:Go=!1;return;case 27:case 3:Go=!0;return;default:en=en.return}}function Pu(e){if(e!==en)return!1;if(!zt)return ih(e),zt=!0,!1;var a=e.tag,i;if((i=a!==3&&a!==27)&&((i=a===5)&&(i=e.type,i=!(i!=="form"&&i!=="button")||_c(e.type,e.memoizedProps)),i=!i),i&&ga){for(i=ga;i;){var c=Hu(e,0),d=bp(i);c.serverTail.push(d),i=d.type==="Suspense"?Gc(i):Bn(i.nextSibling)}Qn(e)}if(ih(e),a===13){if(e=e.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error("Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.");ga=Gc(e)}else if(a===31){if(e=e.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error("Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.");ga=Gc(e)}else a===27?(a=ga,iu(e.type)?(e=Z9,Z9=null,ga=e):ga=a):ga=en?Bn(e.stateNode.nextSibling):null;return!0}function Gr(){ga=en=null,du=zt=!1}function Qf(){var e=nf;return e!==null&&(Un===null?Un=e:Un.push.apply(Un,e),nf=null),e}function Xf(e){nf===null?nf=[e]:nf.push(e)}function kr(){var e=Fi;if(e!==null){Fi=null;for(var a=Gm(e);0<e.children.length;)e=e.children[0];Ge(e.fiber,function(){console.error(`A tree hydrated but some attributes of the server rendered HTML didn't match the client properties. This won't be patched up. This can happen if a SSR-ed Client Component used:
108
+
109
+ - A server/client branch \`if (typeof window !== 'undefined')\`.
110
+ - Variable input such as \`Date.now()\` or \`Math.random()\` which changes each time it's called.
111
+ - Date formatting in a user's locale which doesn't match the server.
112
+ - External changing data without sending a snapshot of it along with the HTML.
113
+ - Invalid HTML tag nesting.
114
+
115
+ It can also happen if the client has a browser extension installed which messes with the HTML before React loaded.
116
+
117
+ %s%s`,"https://react.dev/link/hydration-mismatch",a)})}}function nc(){O1=Up=null,_1=!1}function Xn(e,a,i){Me(s9,a._currentValue,e),a._currentValue=i,Me(c9,a._currentRenderer,e),a._currentRenderer!==void 0&&a._currentRenderer!==null&&a._currentRenderer!==M3&&console.error("Detected multiple renderers concurrently rendering the same context provider. This is currently unsupported."),a._currentRenderer=M3}function yi(e,a){e._currentValue=s9.current;var i=c9.current;De(c9,a),e._currentRenderer=i,De(s9,a)}function lb(e,a,i){for(;e!==null;){var c=e.alternate;if((e.childLanes&a)!==a?(e.childLanes|=a,c!==null&&(c.childLanes|=a)):c!==null&&(c.childLanes&a)!==a&&(c.childLanes|=a),e===i)break;e=e.return}e!==i&&console.error("Expected to find the propagation root when scheduling context work. This error is likely caused by a bug in React. Please file an issue.")}function $o(e,a,i,c){var d=e.child;for(d!==null&&(d.return=e);d!==null;){var m=d.dependencies;if(m!==null){var S=d.child;m=m.firstContext;e:for(;m!==null;){var C=m;m=d;for(var x=0;x<a.length;x++)if(C.context===a[x]){m.lanes|=i,C=m.alternate,C!==null&&(C.lanes|=i),lb(m.return,i,e),c||(S=null);break e}m=C.next}}else if(d.tag===18){if(S=d.return,S===null)throw Error("We just came from a parent so we must have had a parent. This is a bug in React.");S.lanes|=i,m=S.alternate,m!==null&&(m.lanes|=i),lb(S,i,e),S=null}else S=d.child;if(S!==null)S.return=d;else for(S=d;S!==null;){if(S===e){S=null;break}if(d=S.sibling,d!==null){d.return=S.return,S=d;break}S=S.return}d=S}}function Ci(e,a,i,c){e=null;for(var d=a,m=!1;d!==null;){if(!m){if((d.flags&524288)!==0)m=!0;else if((d.flags&262144)!==0)break}if(d.tag===10){var S=d.alternate;if(S===null)throw Error("Should have a current fiber. This is a bug in React.");if(S=S.memoizedProps,S!==null){var C=d.type;wn(d.pendingProps.value,S.value)||(e!==null?e.push(C):e=[C])}}else if(d===su.current){if(S=d.alternate,S===null)throw Error("Should have a current fiber. This is a bug in React.");S.memoizedState.memoizedState!==d.memoizedState.memoizedState&&(e!==null?e.push(M2):e=[M2])}d=d.return}e!==null&&$o(a,e,i,c),a.flags|=262144}function ic(e){for(e=e.firstContext;e!==null;){if(!wn(e.context._currentValue,e.memoizedValue))return!0;e=e.next}return!1}function Fr(e){Up=e,O1=null,e=e.dependencies,e!==null&&(e.firstContext=null)}function Ht(e){return _1&&console.error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo()."),oh(Up,e)}function Kf(e,a){return Up===null&&Fr(e),oh(e,a)}function oh(e,a){var i=a._currentValue;if(a={context:a,memoizedValue:i,next:null},O1===null){if(e===null)throw Error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().");O1=a,e.dependencies={lanes:0,firstContext:a,_debugThenableState:null},e.flags|=524288}else O1=O1.next=a;return i}function nb(){return{controller:new wM,data:new Map,refCount:0}}function Wu(e){e.controller.signal.aborted&&console.warn("A cache instance was retained after it was already freed. This likely indicates a bug in React."),e.refCount++}function Zf(e){e.refCount--,0>e.refCount&&console.warn("A cache instance was released after it was already freed. This likely indicates a bug in React."),e.refCount===0&&GM(kM,function(){e.controller.abort()})}function oo(e,a,i){(e&127)!==0?0>bu&&(bu=cl(),Q5=Hp(a),f9=a,i!=null&&(d9=Ce(i)),(_t&(Ml|Pi))!==_l&&(Fa=!0,rf=Y5),e=Ic(),a=Do(),e!==I1||a!==X5?I1=-1.1:a!==null&&(rf=Y5),l0=e,X5=a):(e&4194048)!==0&&0>ko&&(ko=cl(),K5=Hp(a),D3=a,i!=null&&(L3=Ce(i)),0>zs)&&(e=Ic(),a=Do(),(e!==sf||a!==n0)&&(sf=-1.1),uf=e,n0=a)}function D4(e){if(0>bu){bu=cl(),Q5=e._debugTask!=null?e._debugTask:null,(_t&(Ml|Pi))!==_l&&(rf=Y5);var a=Ic(),i=Do();a!==I1||i!==X5?I1=-1.1:i!==null&&(rf=Y5),l0=a,X5=i}0>ko&&(ko=cl(),K5=e._debugTask!=null?e._debugTask:null,0>zs)&&(e=Ic(),a=Do(),(e!==sf||a!==n0)&&(sf=-1.1),uf=e,n0=a)}function ro(){var e=t0;return t0=0,e}function oc(e){var a=t0;return t0=e,a}function Ul(e){var a=t0;return t0+=e,a}function Vu(){Je=Xe=-1.1}function da(){var e=Xe;return Xe=-1.1,e}function al(e){0<=e&&(Xe=e)}function Kn(){var e=Ra;return Ra=-0,e}function Sn(e){0<=e&&(Ra=e)}function yn(){var e=Da;return Da=null,e}function Zn(){var e=Fa;return Fa=!1,e}function er(e){Gn=cl(),0>e.actualStartTime&&(e.actualStartTime=Gn)}function ib(e){if(0<=Gn){var a=cl()-Gn;e.actualDuration+=a,e.selfBaseDuration=a,Gn=-1}}function Jf(e){if(0<=Gn){var a=cl()-Gn;e.actualDuration+=a,Gn=-1}}function Hl(){if(0<=Gn){var e=cl(),a=e-Gn;Gn=-1,t0+=a,Ra+=a,Je=e}}function L4(e){Da===null&&(Da=[]),Da.push(e),Ds===null&&(Ds=[]),Ds.push(e)}function La(){Gn=cl(),0>Xe&&(Xe=Gn)}function qu(e){for(var a=e.child;a;)e.actualDuration+=a.actualDuration,a=a.sibling}function tr(e,a){if(J5===null){var i=J5=[];m9=0,i0=i5(),w1={status:"pending",value:void 0,then:function(c){i.push(c)}}}return m9++,a.then(rh,rh),a}function rh(){if(--m9===0&&(-1<ko||(zs=-1.1),J5!==null)){w1!==null&&(w1.status="fulfilled");var e=J5;J5=null,i0=0,w1=null;for(var a=0;a<e.length;a++)(0,e[a])()}}function ob(e,a){var i=[],c={status:"pending",value:null,reason:null,then:function(d){i.push(d)}};return e.then(function(){c.status="fulfilled",c.value=a;for(var d=0;d<i.length;d++)(0,i[d])(a)},function(d){for(c.status="rejected",c.reason=d,d=0;d<i.length;d++)(0,i[d])(void 0)}),c}function ar(){var e=o0.current;return e!==null?e:sa.pooledCache}function rc(e,a){a===null?Me(o0,o0.current,e):Me(o0,a.pool,e)}function uh(){var e=ar();return e===null?null:{parent:sl._currentValue,pool:e}}function rb(){return{didWarnAboutUncachedPromise:!1,thenables:[]}}function sh(e){return e=e.status,e==="fulfilled"||e==="rejected"}function Cn(e,a,i){fe.actQueue!==null&&(fe.didUsePromise=!0);var c=e.thenables;if(i=c[i],i===void 0?c.push(a):i!==a&&(e.didWarnAboutUncachedPromise||(e.didWarnAboutUncachedPromise=!0,console.error("A component was suspended by an uncached promise. Creating promises inside a Client Component or hook is not yet supported, except via a Suspense-compatible library or framework.")),a.then(jn,jn),a=i),a._debugInfo===void 0){e=performance.now(),c=a.displayName;var d={name:typeof c=="string"?c:"Promise",start:e,end:e,value:a};a._debugInfo=[{awaited:d}],a.status!=="fulfilled"&&a.status!=="rejected"&&(e=function(){d.end=performance.now()},a.then(e,e))}switch(a.status){case"fulfilled":return a.value;case"rejected":throw e=a.reason,$f(e),e;default:if(typeof a.status=="string")a.then(jn,jn);else{if(e=sa,e!==null&&100<e.shellSuspendCounter)throw Error("An unknown Component is an async Client Component. Only Server Components can be async at the moment. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server.");e=a,e.status="pending",e.then(function(m){if(a.status==="pending"){var S=a;S.status="fulfilled",S.value=m}},function(m){if(a.status==="pending"){var S=a;S.status="rejected",S.reason=m}})}switch(a.status){case"fulfilled":return a.value;case"rejected":throw e=a.reason,$f(e),e}throw u0=a,i2=!0,G1}}function En(e){try{return WM(e)}catch(a){throw a!==null&&typeof a=="object"&&typeof a.then=="function"?(u0=a,i2=!0,G1):a}}function ju(){if(u0===null)throw Error("Expected a suspended thenable. This is a bug in React. Please file an issue.");var e=u0;return u0=null,i2=!1,e}function $f(e){if(e===G1||e===Xp)throw Error("Hooks are not supported inside an async component. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server.")}function _a(e){var a=ht;return e!=null&&(ht=a===null?e:a.concat(e)),a}function nn(){var e=ht;if(e!=null){for(var a=e.length-1;0<=a;a--)if(e[a].name!=null){var i=e[a].debugTask;if(i!=null)return i}}return null}function Pl(e,a,i){for(var c=Object.keys(e.props),d=0;d<c.length;d++){var m=c[d];if(m!=="children"&&m!=="key"){a===null&&(a=Ir(e,i.mode,0),a._debugInfo=ht,a.return=i),Ge(a,function(S){console.error("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.",S)},m);break}}}function Ei(e){var a=o2;return o2+=1,k1===null&&(k1=rb()),Cn(k1,e,a)}function on(e,a){a=a.props.ref,e.ref=a!==void 0?a:null}function Ai(e,a){throw a.$$typeof===Ep?Error(`A React Element from an older version of React was rendered. This is not supported. It can happen if:
118
+ - Multiple copies of the "react" package is used.
119
+ - A library pre-bundled an old copy of "react" or "react/jsx-runtime".
120
+ - A compiler tries to "inline" JSX instead of using the runtime.`):(e=Object.prototype.toString.call(a),Error("Objects are not valid as a React child (found: "+(e==="[object Object]"?"object with keys {"+Object.keys(a).join(", ")+"}":e)+"). If you meant to render a collection of children, use an array instead."))}function Jn(e,a){var i=nn();i!==null?i.run(Ai.bind(null,e,a)):Ai(e,a)}function ch(e,a){var i=Ce(e)||"Component";Y3[i]||(Y3[i]=!0,a=a.displayName||a.name||"Component",e.tag===3?console.error(`Functions are not valid as a React child. This may happen if you return %s instead of <%s /> from render. Or maybe you meant to call this function rather than return it.
121
+ root.render(%s)`,a,a,a):console.error(`Functions are not valid as a React child. This may happen if you return %s instead of <%s /> from render. Or maybe you meant to call this function rather than return it.
122
+ <%s>{%s}</%s>`,a,a,i,a,i))}function uc(e,a){var i=nn();i!==null?i.run(ch.bind(null,e,a)):ch(e,a)}function ub(e,a){var i=Ce(e)||"Component";Q3[i]||(Q3[i]=!0,a=String(a),e.tag===3?console.error(`Symbols are not valid as a React child.
123
+ root.render(%s)`,a):console.error(`Symbols are not valid as a React child.
124
+ <%s>%s</%s>`,i,a,i))}function ed(e,a){var i=nn();i!==null?i.run(ub.bind(null,e,a)):ub(e,a)}function ll(e){function a(H,q){if(e){var Y=H.deletions;Y===null?(H.deletions=[q],H.flags|=16):Y.push(q)}}function i(H,q){if(!e)return null;for(;q!==null;)a(H,q),q=q.sibling;return null}function c(H){for(var q=new Map;H!==null;)H.key!==null?q.set(H.key,H):q.set(H.index,H),H=H.sibling;return q}function d(H,q){return H=io(H,q),H.index=0,H.sibling=null,H}function m(H,q,Y){return H.index=Y,e?(Y=H.alternate,Y!==null?(Y=Y.index,Y<q?(H.flags|=67108866,q):Y):(H.flags|=67108866,q)):(H.flags|=1048576,q)}function S(H){return e&&H.alternate===null&&(H.flags|=67108866),H}function C(H,q,Y,pe){return q===null||q.tag!==6?(q=lc(Y,H.mode,pe),q.return=H,q._debugOwner=H,q._debugTask=H._debugTask,q._debugInfo=ht,q):(q=d(q,Y),q.return=H,q._debugInfo=ht,q)}function x(H,q,Y,pe){var Fe=Y.type;return Fe===Pc?(q=Q(H,q,Y.props.children,pe,Y.key),Pl(Y,q,H),q):q!==null&&(q.elementType===Fe||$m(q,Y)||typeof Fe=="object"&&Fe!==null&&Fe.$$typeof===Rl&&En(Fe)===q.type)?(q=d(q,Y.props),on(q,Y),q.return=H,q._debugOwner=Y._owner,q._debugInfo=ht,q):(q=Ir(Y,H.mode,pe),on(q,Y),q.return=H,q._debugInfo=ht,q)}function N(H,q,Y,pe){return q===null||q.tag!==4||q.stateNode.containerInfo!==Y.containerInfo||q.stateNode.implementation!==Y.implementation?(q=eb(Y,H.mode,pe),q.return=H,q._debugInfo=ht,q):(q=d(q,Y.children||[]),q.return=H,q._debugInfo=ht,q)}function Q(H,q,Y,pe,Fe){return q===null||q.tag!==7?(q=Uu(Y,H.mode,pe,Fe),q.return=H,q._debugOwner=H,q._debugTask=H._debugTask,q._debugInfo=ht,q):(q=d(q,Y),q.return=H,q._debugInfo=ht,q)}function Z(H,q,Y){if(typeof q=="string"&&q!==""||typeof q=="number"||typeof q=="bigint")return q=lc(""+q,H.mode,Y),q.return=H,q._debugOwner=H,q._debugTask=H._debugTask,q._debugInfo=ht,q;if(typeof q=="object"&&q!==null){switch(q.$$typeof){case li:return Y=Ir(q,H.mode,Y),on(Y,q),Y.return=H,H=_a(q._debugInfo),Y._debugInfo=ht,ht=H,Y;case ru:return q=eb(q,H.mode,Y),q.return=H,q._debugInfo=ht,q;case Rl:var pe=_a(q._debugInfo);return q=En(q),H=Z(H,q,Y),ht=pe,H}if(Va(q)||Se(q))return Y=Uu(q,H.mode,Y,null),Y.return=H,Y._debugOwner=H,Y._debugTask=H._debugTask,H=_a(q._debugInfo),Y._debugInfo=ht,ht=H,Y;if(typeof q.then=="function")return pe=_a(q._debugInfo),H=Z(H,Ei(q),Y),ht=pe,H;if(q.$$typeof===wi)return Z(H,Kf(H,q),Y);Jn(H,q)}return typeof q=="function"&&uc(H,q),typeof q=="symbol"&&ed(H,q),null}function W(H,q,Y,pe){var Fe=q!==null?q.key:null;if(typeof Y=="string"&&Y!==""||typeof Y=="number"||typeof Y=="bigint")return Fe!==null?null:C(H,q,""+Y,pe);if(typeof Y=="object"&&Y!==null){switch(Y.$$typeof){case li:return Y.key===Fe?(Fe=_a(Y._debugInfo),H=x(H,q,Y,pe),ht=Fe,H):null;case ru:return Y.key===Fe?N(H,q,Y,pe):null;case Rl:return Fe=_a(Y._debugInfo),Y=En(Y),H=W(H,q,Y,pe),ht=Fe,H}if(Va(Y)||Se(Y))return Fe!==null?null:(Fe=_a(Y._debugInfo),H=Q(H,q,Y,pe,null),ht=Fe,H);if(typeof Y.then=="function")return Fe=_a(Y._debugInfo),H=W(H,q,Ei(Y),pe),ht=Fe,H;if(Y.$$typeof===wi)return W(H,q,Kf(H,Y),pe);Jn(H,Y)}return typeof Y=="function"&&uc(H,Y),typeof Y=="symbol"&&ed(H,Y),null}function se(H,q,Y,pe,Fe){if(typeof pe=="string"&&pe!==""||typeof pe=="number"||typeof pe=="bigint")return H=H.get(Y)||null,C(q,H,""+pe,Fe);if(typeof pe=="object"&&pe!==null){switch(pe.$$typeof){case li:return Y=H.get(pe.key===null?Y:pe.key)||null,H=_a(pe._debugInfo),q=x(q,Y,pe,Fe),ht=H,q;case ru:return H=H.get(pe.key===null?Y:pe.key)||null,N(q,H,pe,Fe);case Rl:var it=_a(pe._debugInfo);return pe=En(pe),q=se(H,q,Y,pe,Fe),ht=it,q}if(Va(pe)||Se(pe))return Y=H.get(Y)||null,H=_a(pe._debugInfo),q=Q(q,Y,pe,Fe,null),ht=H,q;if(typeof pe.then=="function")return it=_a(pe._debugInfo),q=se(H,q,Y,Ei(pe),Fe),ht=it,q;if(pe.$$typeof===wi)return se(H,q,Y,Kf(q,pe),Fe);Jn(q,pe)}return typeof pe=="function"&&uc(q,pe),typeof pe=="symbol"&&ed(q,pe),null}function _e(H,q,Y,pe){if(typeof Y!="object"||Y===null)return pe;switch(Y.$$typeof){case li:case ru:M(H,q,Y);var Fe=Y.key;if(typeof Fe!="string")break;if(pe===null){pe=new Set,pe.add(Fe);break}if(!pe.has(Fe)){pe.add(Fe);break}Ge(q,function(){console.error("Encountered two children with the same key, `%s`. Keys should be unique so that components maintain their identity across updates. Non-unique keys may cause children to be duplicated and/or omitted — the behavior is unsupported and could change in a future version.",Fe)});break;case Rl:Y=En(Y),_e(H,q,Y,pe)}return pe}function Ue(H,q,Y,pe){for(var Fe=null,it=null,Qe=null,je=q,dt=q=0,Ta=null;je!==null&&dt<Y.length;dt++){je.index>dt?(Ta=je,je=null):Ta=je.sibling;var $a=W(H,je,Y[dt],pe);if($a===null){je===null&&(je=Ta);break}Fe=_e(H,$a,Y[dt],Fe),e&&je&&$a.alternate===null&&a(H,je),q=m($a,q,dt),Qe===null?it=$a:Qe.sibling=$a,Qe=$a,je=Ta}if(dt===Y.length)return i(H,je),zt&&Si(H,dt),it;if(je===null){for(;dt<Y.length;dt++)je=Z(H,Y[dt],pe),je!==null&&(Fe=_e(H,je,Y[dt],Fe),q=m(je,q,dt),Qe===null?it=je:Qe.sibling=je,Qe=je);return zt&&Si(H,dt),it}for(je=c(je);dt<Y.length;dt++)Ta=se(je,H,dt,Y[dt],pe),Ta!==null&&(Fe=_e(H,Ta,Y[dt],Fe),e&&Ta.alternate!==null&&je.delete(Ta.key===null?dt:Ta.key),q=m(Ta,q,dt),Qe===null?it=Ta:Qe.sibling=Ta,Qe=Ta);return e&&je.forEach(function(ws){return a(H,ws)}),zt&&Si(H,dt),it}function fa(H,q,Y,pe){if(Y==null)throw Error("An iterable object provided no iterator.");for(var Fe=null,it=null,Qe=q,je=q=0,dt=null,Ta=null,$a=Y.next();Qe!==null&&!$a.done;je++,$a=Y.next()){Qe.index>je?(dt=Qe,Qe=null):dt=Qe.sibling;var ws=W(H,Qe,$a.value,pe);if(ws===null){Qe===null&&(Qe=dt);break}Ta=_e(H,ws,$a.value,Ta),e&&Qe&&ws.alternate===null&&a(H,Qe),q=m(ws,q,je),it===null?Fe=ws:it.sibling=ws,it=ws,Qe=dt}if($a.done)return i(H,Qe),zt&&Si(H,je),Fe;if(Qe===null){for(;!$a.done;je++,$a=Y.next())Qe=Z(H,$a.value,pe),Qe!==null&&(Ta=_e(H,Qe,$a.value,Ta),q=m(Qe,q,je),it===null?Fe=Qe:it.sibling=Qe,it=Qe);return zt&&Si(H,je),Fe}for(Qe=c(Qe);!$a.done;je++,$a=Y.next())dt=se(Qe,H,je,$a.value,pe),dt!==null&&(Ta=_e(H,dt,$a.value,Ta),e&&dt.alternate!==null&&Qe.delete(dt.key===null?je:dt.key),q=m(dt,q,je),it===null?Fe=dt:it.sibling=dt,it=dt);return e&&Qe.forEach(function(bD){return a(H,bD)}),zt&&Si(H,je),Fe}function Nt(H,q,Y,pe){if(typeof Y=="object"&&Y!==null&&Y.type===Pc&&Y.key===null&&(Pl(Y,null,H),Y=Y.props.children),typeof Y=="object"&&Y!==null){switch(Y.$$typeof){case li:var Fe=_a(Y._debugInfo);e:{for(var it=Y.key;q!==null;){if(q.key===it){if(it=Y.type,it===Pc){if(q.tag===7){i(H,q.sibling),pe=d(q,Y.props.children),pe.return=H,pe._debugOwner=Y._owner,pe._debugInfo=ht,Pl(Y,pe,H),H=pe;break e}}else if(q.elementType===it||$m(q,Y)||typeof it=="object"&&it!==null&&it.$$typeof===Rl&&En(it)===q.type){i(H,q.sibling),pe=d(q,Y.props),on(pe,Y),pe.return=H,pe._debugOwner=Y._owner,pe._debugInfo=ht,H=pe;break e}i(H,q);break}else a(H,q);q=q.sibling}Y.type===Pc?(pe=Uu(Y.props.children,H.mode,pe,Y.key),pe.return=H,pe._debugOwner=H,pe._debugTask=H._debugTask,pe._debugInfo=ht,Pl(Y,pe,H),H=pe):(pe=Ir(Y,H.mode,pe),on(pe,Y),pe.return=H,pe._debugInfo=ht,H=pe)}return H=S(H),ht=Fe,H;case ru:e:{for(Fe=Y,Y=Fe.key;q!==null;){if(q.key===Y)if(q.tag===4&&q.stateNode.containerInfo===Fe.containerInfo&&q.stateNode.implementation===Fe.implementation){i(H,q.sibling),pe=d(q,Fe.children||[]),pe.return=H,H=pe;break e}else{i(H,q);break}else a(H,q);q=q.sibling}pe=eb(Fe,H.mode,pe),pe.return=H,H=pe}return S(H);case Rl:return Fe=_a(Y._debugInfo),Y=En(Y),H=Nt(H,q,Y,pe),ht=Fe,H}if(Va(Y))return Fe=_a(Y._debugInfo),H=Ue(H,q,Y,pe),ht=Fe,H;if(Se(Y)){if(Fe=_a(Y._debugInfo),it=Se(Y),typeof it!="function")throw Error("An object is not an iterable. This error is likely caused by a bug in React. Please file an issue.");var Qe=it.call(Y);return Qe===Y?(H.tag!==0||Object.prototype.toString.call(H.type)!=="[object GeneratorFunction]"||Object.prototype.toString.call(Qe)!=="[object Generator]")&&(q3||console.error("Using Iterators as children is unsupported and will likely yield unexpected results because enumerating a generator mutates it. You may convert it to an array with `Array.from()` or the `[...spread]` operator before rendering. You can also use an Iterable that can iterate multiple times over the same items."),q3=!0):Y.entries!==it||T9||(console.error("Using Maps as children is not supported. Use an array of keyed ReactElements instead."),T9=!0),H=fa(H,q,Qe,pe),ht=Fe,H}if(typeof Y.then=="function")return Fe=_a(Y._debugInfo),H=Nt(H,q,Ei(Y),pe),ht=Fe,H;if(Y.$$typeof===wi)return Nt(H,q,Kf(H,Y),pe);Jn(H,Y)}return typeof Y=="string"&&Y!==""||typeof Y=="number"||typeof Y=="bigint"?(Fe=""+Y,q!==null&&q.tag===6?(i(H,q.sibling),pe=d(q,Fe),pe.return=H,H=pe):(i(H,q),pe=lc(Fe,H.mode,pe),pe.return=H,pe._debugOwner=H,pe._debugTask=H._debugTask,pe._debugInfo=ht,H=pe),S(H)):(typeof Y=="function"&&uc(H,Y),typeof Y=="symbol"&&ed(H,Y),i(H,q))}return function(H,q,Y,pe){var Fe=ht;ht=null;try{o2=0;var it=Nt(H,q,Y,pe);return k1=null,it}catch(Ta){if(Ta===G1||Ta===Xp)throw Ta;var Qe=R(29,Ta,null,H.mode);Qe.lanes=pe,Qe.return=H;var je=Qe._debugInfo=ht;if(Qe._debugOwner=H._debugOwner,Qe._debugTask=H._debugTask,je!=null){for(var dt=je.length-1;0<=dt;dt--)if(typeof je[dt].stack=="string"){Qe._debugOwner=je[dt],Qe._debugTask=je[dt].debugTask;break}}return Qe}finally{ht=Fe}}}function ia(e,a){var i=Va(e);return e=!i&&typeof Se(e)=="function",i||e?(i=i?"array":"iterable",console.error("A nested %s was passed to row #%s in <SuspenseList />. Wrap it in an additional SuspenseList to configure its revealOrder: <SuspenseList revealOrder=...> ... <SuspenseList revealOrder=...>{%s}</SuspenseList> ... </SuspenseList>",i,a,i),!1):!0}function At(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function uo(e,a){e=e.updateQueue,a.updateQueue===e&&(a.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,callbacks:null})}function Ya(e){return{lane:e,tag:K3,payload:null,callback:null,next:null}}function so(e,a,i){var c=e.updateQueue;if(c===null)return null;if(c=c.shared,S9===c&&!$3){var d=Ce(e);console.error(`An update (setState, replaceState, or forceUpdate) was scheduled from inside an update function. Update functions should be pure, with zero side-effects. Consider using componentDidUpdate or a callback.
125
+
126
+ Please update the following component: %s`,d),$3=!0}return(_t&Ml)!==_l?(d=c.pending,d===null?a.next=a:(a.next=d.next,d.next=a),c.pending=a,a=Yf(e),Jm(e,null,i),a):(ac(e,c,a,i),Yf(e))}function $n(e,a,i){if(a=a.updateQueue,a!==null&&(a=a.shared,(i&4194048)!==0)){var c=a.lanes;c&=e.pendingLanes,i|=c,a.lanes=i,ln(e,i)}}function td(e,a){var i=e.updateQueue,c=e.alternate;if(c!==null&&(c=c.updateQueue,i===c)){var d=null,m=null;if(i=i.firstBaseUpdate,i!==null){do{var S={lane:i.lane,tag:i.tag,payload:i.payload,callback:null,next:null};m===null?d=m=S:m=m.next=S,i=i.next}while(i!==null);m===null?d=m=a:m=m.next=a}else d=m=a;i={baseState:c.baseState,firstBaseUpdate:d,lastBaseUpdate:m,shared:c.shared,callbacks:c.callbacks},e.updateQueue=i;return}e=i.lastBaseUpdate,e===null?i.firstBaseUpdate=a:e.next=a,i.lastBaseUpdate=a}function sc(){if(y9){var e=w1;if(e!==null)throw e}}function co(e,a,i,c){y9=!1;var d=e.updateQueue;cf=!1,S9=d.shared;var m=d.firstBaseUpdate,S=d.lastBaseUpdate,C=d.shared.pending;if(C!==null){d.shared.pending=null;var x=C,N=x.next;x.next=null,S===null?m=N:S.next=N,S=x;var Q=e.alternate;Q!==null&&(Q=Q.updateQueue,C=Q.lastBaseUpdate,C!==S&&(C===null?Q.firstBaseUpdate=N:C.next=N,Q.lastBaseUpdate=x))}if(m!==null){var Z=d.baseState;S=0,Q=N=x=null,C=m;do{var W=C.lane&-536870913,se=W!==C.lane;if(se?(pt&W)===W:(c&W)===W){W!==0&&W===i0&&(y9=!0),Q!==null&&(Q=Q.next={lane:0,tag:C.tag,payload:C.payload,callback:null,next:null});e:{W=e;var _e=C,Ue=a,fa=i;switch(_e.tag){case Z3:if(_e=_e.payload,typeof _e=="function"){_1=!0;var Nt=_e.call(fa,Z,Ue);if(W.mode&bn){Kt(!0);try{_e.call(fa,Z,Ue)}finally{Kt(!1)}}_1=!1,Z=Nt;break e}Z=_e;break e;case v9:W.flags=W.flags&-65537|128;case K3:if(Nt=_e.payload,typeof Nt=="function"){if(_1=!0,_e=Nt.call(fa,Z,Ue),W.mode&bn){Kt(!0);try{Nt.call(fa,Z,Ue)}finally{Kt(!1)}}_1=!1}else _e=Nt;if(_e==null)break e;Z=bt({},Z,_e);break e;case J3:cf=!0}}W=C.callback,W!==null&&(e.flags|=64,se&&(e.flags|=8192),se=d.callbacks,se===null?d.callbacks=[W]:se.push(W))}else se={lane:W,tag:C.tag,payload:C.payload,callback:C.callback,next:null},Q===null?(N=Q=se,x=Z):Q=Q.next=se,S|=W;if(C=C.next,C===null){if(C=d.shared.pending,C===null)break;se=C,C=se.next,se.next=null,d.lastBaseUpdate=se,d.shared.pending=null}}while(!0);Q===null&&(x=Z),d.baseState=x,d.firstBaseUpdate=N,d.lastBaseUpdate=Q,m===null&&(d.shared.lanes=0),bf|=S,e.lanes=S,e.memoizedState=Z}S9=null}function Ur(e,a){if(typeof e!="function")throw Error("Invalid argument passed as callback. Expected a function. Instead received: "+e);e.call(a)}function fh(e,a){var i=e.shared.hiddenCallbacks;if(i!==null)for(e.shared.hiddenCallbacks=null,e=0;e<i.length;e++)Ur(i[e],a)}function cc(e,a){var i=e.callbacks;if(i!==null)for(e.callbacks=null,e=0;e<i.length;e++)Ur(i[e],a)}function sb(e,a){var i=hu;Me(Zp,i,e),Me(F1,a,e),hu=i|a.baseLanes}function lr(e){Me(Zp,hu,e),Me(F1,F1.current,e)}function Mi(e){hu=Zp.current,De(F1,e),De(Zp,e)}function Wl(e){var a=e.alternate;Me(Ja,Ja.current&U1,e),Me(Ui,e,e),Fo===null&&(a===null||F1.current!==null||a.memoizedState!==null)&&(Fo=e)}function Di(e){Me(Ja,Ja.current,e),Me(Ui,e,e),Fo===null&&(Fo=e)}function cb(e){e.tag===22?(Me(Ja,Ja.current,e),Me(Ui,e,e),Fo===null&&(Fo=e)):fo(e)}function fo(e){Me(Ja,Ja.current,e),Me(Ui,Ui.current,e)}function nl(e){De(Ui,e),Fo===e&&(Fo=null),De(Ja,e)}function Yu(e){for(var a=e;a!==null;){if(a.tag===13){var i=a.memoizedState;if(i!==null&&(i=i.dehydrated,i===null||Gd(i)||u5(i)))return a}else if(a.tag===19&&(a.memoizedProps.revealOrder==="forwards"||a.memoizedProps.revealOrder==="backwards"||a.memoizedProps.revealOrder==="unstable_legacy-backwards"||a.memoizedProps.revealOrder==="together")){if((a.flags&128)!==0)return a}else if(a.child!==null){a.child.return=a,a=a.child;continue}if(a===e)break;for(;a.sibling===null;){if(a.return===null||a.return===e)return null;a=a.return}a.sibling.return=a.return,a=a.sibling}return null}function lt(){var e=ce;Ho===null?Ho=[e]:Ho.push(e)}function Ae(){var e=ce;if(Ho!==null&&(Ns++,Ho[Ns]!==e)){var a=Ce(nt);if(!ev.has(a)&&(ev.add(a),Ho!==null)){for(var i="",c=0;c<=Ns;c++){var d=Ho[c],m=c===Ns?e:d;for(d=c+1+". "+d;30>d.length;)d+=" ";d+=m+`
127
+ `,i+=d}console.error(`React has detected a change in the order of Hooks called by %s. This will lead to bugs and errors if not fixed. For more information, read the Rules of Hooks: https://react.dev/link/rules-of-hooks
128
+
129
+ Previous render Next render
130
+ ------------------------------------------------------
131
+ %s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
132
+ `,a,i)}}}function nr(e){e==null||Va(e)||console.error("%s received a final argument that is not an array (instead, received `%s`). When specified, the final argument must be an array.",ce,typeof e)}function ad(){var e=Ce(nt);av.has(e)||(av.add(e),console.error("ReactDOM.useFormState has been renamed to React.useActionState. Please update %s to use React.useActionState.",e))}function za(){throw Error(`Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
133
+ 1. You might have mismatching versions of React and the renderer (such as React DOM)
134
+ 2. You might be breaking the Rules of Hooks
135
+ 3. You might have more than one copy of React in the same app
136
+ See https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem.`)}function dh(e,a){if(s2)return!1;if(a===null)return console.error("%s received a final argument during this render, but not during the previous render. Even though the final argument is optional, its type cannot change between renders.",ce),!1;e.length!==a.length&&console.error(`The final argument passed to %s changed size between renders. The order and size of this array must remain constant.
137
+
138
+ Previous: %s
139
+ Incoming: %s`,ce,"["+a.join(", ")+"]","["+e.join(", ")+"]");for(var i=0;i<a.length&&i<e.length;i++)if(!wn(e[i],a[i]))return!1;return!0}function bh(e,a,i,c,d,m){xs=m,nt=a,Ho=e!==null?e._debugHookTypes:null,Ns=-1,s2=e!==null&&e.type!==a.type,(Object.prototype.toString.call(i)==="[object AsyncFunction]"||Object.prototype.toString.call(i)==="[object AsyncGeneratorFunction]")&&(m=Ce(nt),C9.has(m)||(C9.add(m),console.error("%s is an async Client Component. Only Server Components can be async at the moment. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server.",m===null?"An unknown Component":"<"+m+">"))),a.memoizedState=null,a.updateQueue=null,a.lanes=0,fe.H=e!==null&&e.memoizedState!==null?A9:Ho!==null?lv:E9,c0=m=(a.mode&bn)!==et;var S=h9(i,c,d);if(c0=!1,P1&&(S=ld(a,i,c,d)),m){Kt(!0);try{S=ld(a,i,c,d)}finally{Kt(!1)}}return Ia(e,a),S}function Ia(e,a){a._debugHookTypes=Ho,a.dependencies===null?Rs!==null&&(a.dependencies={lanes:0,firstContext:null,_debugThenableState:Rs}):a.dependencies._debugThenableState=Rs,fe.H=c2;var i=ua!==null&&ua.next!==null;if(xs=0,Ho=ce=fl=ua=nt=null,Ns=-1,e!==null&&(e.flags&65011712)!==(a.flags&65011712)&&console.error("Internal React error: Expected static flag was missing. Please notify the React team."),$p=!1,u2=0,Rs=null,i)throw Error("Rendered fewer hooks than expected. This may be caused by an accidental early return statement.");e===null||dl||(e=e.dependencies,e!==null&&ic(e)&&(dl=!0)),i2?(i2=!1,e=!0):e=!1,e&&(a=Ce(a)||"Unknown",tv.has(a)||C9.has(a)||(tv.add(a),console.error("`use` was called from inside a try/catch block. This is not allowed and can lead to unexpected behavior. To handle errors triggered by `use`, wrap your component in a error boundary.")))}function ld(e,a,i,c){nt=e;var d=0;do{if(P1&&(Rs=null),u2=0,P1=!1,d>=qM)throw Error("Too many re-renders. React limits the number of renders to prevent an infinite loop.");if(d+=1,s2=!1,fl=ua=null,e.updateQueue!=null){var m=e.updateQueue;m.lastEffect=null,m.events=null,m.stores=null,m.memoCache!=null&&(m.memoCache.index=0)}Ns=-1,fe.H=nv,m=h9(a,i,c)}while(P1);return m}function nd(){var e=fe.H,a=e.useState()[0];return a=typeof a.then=="function"?rd(a):a,e=e.useState()[0],(ua!==null?ua.memoizedState:null)!==e&&(nt.flags|=1024),a}function Qu(){var e=eg!==0;return eg=0,e}function id(e,a,i){a.updateQueue=e.updateQueue,a.flags=(a.mode&vr)!==et?a.flags&-402655237:a.flags&-2053,e.lanes&=~i}function Hr(e){if($p){for(e=e.memoizedState;e!==null;){var a=e.queue;a!==null&&(a.pending=null),e=e.next}$p=!1}xs=0,Ho=fl=ua=nt=null,Ns=-1,ce=null,P1=!1,u2=eg=0,Rs=null}function Pa(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return fl===null?nt.memoizedState=fl=e:fl=fl.next=e,fl}function qt(){if(ua===null){var e=nt.alternate;e=e!==null?e.memoizedState:null}else e=ua.next;var a=fl===null?nt.memoizedState:fl.next;if(a!==null)fl=a,ua=e;else{if(e===null)throw nt.alternate===null?Error("Update hook called on initial render. This is likely a bug in React. Please file an issue."):Error("Rendered more hooks than during the previous render.");ua=e,e={memoizedState:ua.memoizedState,baseState:ua.baseState,baseQueue:ua.baseQueue,queue:ua.queue,next:null},fl===null?nt.memoizedState=fl=e:fl=fl.next=e}return fl}function od(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function rd(e){var a=u2;return u2+=1,Rs===null&&(Rs=rb()),e=Cn(Rs,e,a),a=nt,(fl===null?a.memoizedState:fl.next)===null&&(a=a.alternate,fe.H=a!==null&&a.memoizedState!==null?A9:E9),e}function ir(e){if(e!==null&&typeof e=="object"){if(typeof e.then=="function")return rd(e);if(e.$$typeof===wi)return Ht(e)}throw Error("An unsupported type was passed to use(): "+String(e))}function An(e){var a=null,i=nt.updateQueue;if(i!==null&&(a=i.memoCache),a==null){var c=nt.alternate;c!==null&&(c=c.updateQueue,c!==null&&(c=c.memoCache,c!=null&&(a={data:c.data.map(function(d){return d.slice()}),index:0})))}if(a==null&&(a={data:[],index:0}),i===null&&(i=od(),nt.updateQueue=i),i.memoCache=a,i=a.data[a.index],i===void 0||s2)for(i=a.data[a.index]=Array(e),c=0;c<e;c++)i[c]=P8;else i.length!==e&&console.error("Expected a constant size argument for each invocation of useMemoCache. The previous cache was allocated with size %s but size %s was requested.",i.length,e);return a.index++,i}function Mn(e,a){return typeof a=="function"?a(e):a}function fc(e,a,i){var c=Pa();if(i!==void 0){var d=i(a);if(c0){Kt(!0);try{i(a)}finally{Kt(!1)}}}else d=a;return c.memoizedState=c.baseState=d,e={pending:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:d},c.queue=e,e=e.dispatch=G8.bind(null,nt,e),[c.memoizedState,e]}function Xu(e){var a=qt();return Pr(a,ua,e)}function Pr(e,a,i){var c=e.queue;if(c===null)throw Error("Should have a queue. You are likely calling Hooks conditionally, which is not allowed. (https://react.dev/link/invalid-hook-call)");c.lastRenderedReducer=i;var d=e.baseQueue,m=c.pending;if(m!==null){if(d!==null){var S=d.next;d.next=m.next,m.next=S}a.baseQueue!==d&&console.error("Internal error: Expected work-in-progress queue to be a clone. This is a bug in React."),a.baseQueue=d=m,c.pending=null}if(m=e.baseState,d===null)e.memoizedState=m;else{a=d.next;var C=S=null,x=null,N=a,Q=!1;do{var Z=N.lane&-536870913;if(Z!==N.lane?(pt&Z)===Z:(xs&Z)===Z){var W=N.revertLane;if(W===0)x!==null&&(x=x.next={lane:0,revertLane:0,gesture:null,action:N.action,hasEagerState:N.hasEagerState,eagerState:N.eagerState,next:null}),Z===i0&&(Q=!0);else if((xs&W)===W){N=N.next,W===i0&&(Q=!0);continue}else Z={lane:0,revertLane:N.revertLane,gesture:null,action:N.action,hasEagerState:N.hasEagerState,eagerState:N.eagerState,next:null},x===null?(C=x=Z,S=m):x=x.next=Z,nt.lanes|=W,bf|=W;Z=N.action,c0&&i(m,Z),m=N.hasEagerState?N.eagerState:i(m,Z)}else W={lane:Z,revertLane:N.revertLane,gesture:N.gesture,action:N.action,hasEagerState:N.hasEagerState,eagerState:N.eagerState,next:null},x===null?(C=x=W,S=m):x=x.next=W,nt.lanes|=Z,bf|=Z;N=N.next}while(N!==null&&N!==a);if(x===null?S=m:x.next=C,!wn(m,e.memoizedState)&&(dl=!0,Q&&(i=w1,i!==null)))throw i;e.memoizedState=m,e.baseState=S,e.baseQueue=x,c.lastRenderedState=m}return d===null&&(c.lanes=0),[e.memoizedState,c.dispatch]}function Ku(e){var a=qt(),i=a.queue;if(i===null)throw Error("Should have a queue. You are likely calling Hooks conditionally, which is not allowed. (https://react.dev/link/invalid-hook-call)");i.lastRenderedReducer=e;var c=i.dispatch,d=i.pending,m=a.memoizedState;if(d!==null){i.pending=null;var S=d=d.next;do m=e(m,S.action),S=S.next;while(S!==d);wn(m,a.memoizedState)||(dl=!0),a.memoizedState=m,a.baseQueue===null&&(a.baseState=m),i.lastRenderedState=m}return[m,c]}function dc(e,a,i){var c=nt,d=Pa();if(zt){if(i===void 0)throw Error("Missing getServerSnapshot, which is required for server-rendered content. Will revert to client rendering.");var m=i();H1||m===i()||(console.error("The result of getServerSnapshot should be cached to avoid an infinite loop"),H1=!0)}else{if(m=a(),H1||(i=a(),wn(m,i)||(console.error("The result of getSnapshot should be cached to avoid an infinite loop"),H1=!0)),sa===null)throw Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");(pt&127)!==0||mh(c,a,m)}return d.memoizedState=m,i={value:m,getSnapshot:a},d.queue=i,$u(Wr.bind(null,c,i,e),[e]),c.flags|=2048,bo(Uo|Fn,{destroy:void 0},hh.bind(null,c,i,m,a),null),m}function Zu(e,a,i){var c=nt,d=qt(),m=zt;if(m){if(i===void 0)throw Error("Missing getServerSnapshot, which is required for server-rendered content. Will revert to client rendering.");i=i()}else if(i=a(),!H1){var S=a();wn(i,S)||(console.error("The result of getSnapshot should be cached to avoid an infinite loop"),H1=!0)}(S=!wn((ua||d).memoizedState,i))&&(d.memoizedState=i,dl=!0),d=d.queue;var C=Wr.bind(null,c,d,e);if(Qa(2048,Fn,C,[e]),d.getSnapshot!==a||S||fl!==null&&fl.memoizedState.tag&Uo){if(c.flags|=2048,bo(Uo|Fn,{destroy:void 0},hh.bind(null,c,d,i,a),null),sa===null)throw Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");m||(xs&127)!==0||mh(c,a,i)}return i}function mh(e,a,i){e.flags|=16384,e={getSnapshot:a,value:i},a=nt.updateQueue,a===null?(a=od(),nt.updateQueue=a,a.stores=[e]):(i=a.stores,i===null?a.stores=[e]:i.push(e))}function hh(e,a,i,c){a.value=i,a.getSnapshot=c,Vr(a)&&ph(e)}function Wr(e,a,i){return i(function(){Vr(a)&&(oo(2,"updateSyncExternalStore()",e),ph(e))})}function Vr(e){var a=e.getSnapshot;e=e.value;try{var i=a();return!wn(e,i)}catch{return!0}}function ph(e){var a=Ll(e,2);a!==null&&at(a,e,2)}function fb(e){var a=Pa();if(typeof e=="function"){var i=e;if(e=i(),c0){Kt(!0);try{i()}finally{Kt(!1)}}}return a.memoizedState=a.baseState=e,a.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:Mn,lastRenderedState:e},a}function qr(e){e=fb(e);var a=e.queue,i=gb.bind(null,nt,a);return a.dispatch=i,[e.memoizedState,i]}function Ju(e){var a=Pa();a.memoizedState=a.baseState=e;var i={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return a.queue=i,a=md.bind(null,nt,!0,i),i.dispatch=a,[e,a]}function ud(e,a){var i=qt();return bc(i,ua,e,a)}function bc(e,a,i,c){return e.baseState=i,Pr(e,ua,typeof c=="function"?c:Mn)}function sd(e,a){var i=qt();return ua!==null?bc(i,ua,e,a):(i.baseState=e,[e,i.queue.dispatch])}function z4(e,a,i,c,d){if(il(e))throw Error("Cannot update form state while rendering.");if(e=a.action,e!==null){var m={payload:d,action:e,next:null,isTransition:!0,status:"pending",value:null,reason:null,listeners:[],then:function(S){m.listeners.push(S)}};fe.T!==null?i(!0):m.isTransition=!1,c(m),i=a.pending,i===null?(m.next=a.pending=m,jr(a,m)):(m.next=i.next,a.pending=i.next=m)}}function jr(e,a){var i=a.action,c=a.payload,d=e.state;if(a.isTransition){var m=fe.T,S={};S._updatedFibers=new Set,fe.T=S;try{var C=i(d,c),x=fe.S;x!==null&&x(S,C),gh(e,a,C)}catch(N){cd(e,a,N)}finally{m!==null&&S.types!==null&&(m.types!==null&&m.types!==S.types&&console.error("We expected inner Transitions to have transferred the outer types set and that you cannot add to the outer Transition while inside the inner.This is a bug in React."),m.types=S.types),fe.T=m,m===null&&S._updatedFibers&&(e=S._updatedFibers.size,S._updatedFibers.clear(),10<e&&console.warn("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table."))}}else try{S=i(d,c),gh(e,a,S)}catch(N){cd(e,a,N)}}function gh(e,a,i){i!==null&&typeof i=="object"&&typeof i.then=="function"?(fe.asyncTransitions++,i.then(es,es),i.then(function(c){or(e,a,c)},function(c){return cd(e,a,c)}),a.isTransition||console.error("An async function with useActionState was called outside of a transition. This is likely not what you intended (for example, isPending will not update correctly). Either call the returned function inside startTransition, or pass it to an `action` or `formAction` prop.")):or(e,a,i)}function or(e,a,i){a.status="fulfilled",a.value=i,db(a),e.state=i,a=e.pending,a!==null&&(i=a.next,i===a?e.pending=null:(i=i.next,a.next=i,jr(e,i)))}function cd(e,a,i){var c=e.pending;if(e.pending=null,c!==null){c=c.next;do a.status="rejected",a.reason=i,db(a),a=a.next;while(a!==c)}e.action=null}function db(e){e=e.listeners;for(var a=0;a<e.length;a++)(0,e[a])()}function rr(e,a){return a}function Dn(e,a){if(zt){var i=sa.formState;if(i!==null){e:{var c=nt;if(zt){if(ga){t:{for(var d=ga,m=Go;d.nodeType!==8;){if(!m){d=null;break t}if(d=Bn(d.nextSibling),d===null){d=null;break t}}m=d.data,d=m===Y9||m===Wv?d:null}if(d){ga=Bn(d.nextSibling),c=d.data===Y9;break e}}Qn(c)}c=!1}c&&(a=i[0])}}return i=Pa(),i.memoizedState=i.baseState=a,c={pending:null,lanes:0,dispatch:null,lastRenderedReducer:rr,lastRenderedState:a},i.queue=c,i=gb.bind(null,nt,c),c.dispatch=i,c=fb(!1),m=md.bind(null,nt,!1,c.queue),c=Pa(),d={state:a,dispatch:null,action:e,pending:null},c.queue=d,i=z4.bind(null,nt,d,m,i),d.dispatch=i,c.memoizedState=e,[a,i,!1]}function Yr(e){var a=qt();return bb(a,ua,e)}function bb(e,a,i){if(a=Pr(e,a,rr)[0],e=Xu(Mn)[0],typeof a=="object"&&a!==null&&typeof a.then=="function")try{var c=rd(a)}catch(S){throw S===G1?Xp:S}else c=a;a=qt();var d=a.queue,m=d.dispatch;return i!==a.memoizedState&&(nt.flags|=2048,bo(Uo|Fn,{destroy:void 0},Th.bind(null,d,i),null)),[c,m,e]}function Th(e,a){e.action=a}function Qr(e){var a=qt(),i=ua;if(i!==null)return bb(a,i,e);qt(),a=a.memoizedState,i=qt();var c=i.queue.dispatch;return i.memoizedState=e,[a,c,!1]}function bo(e,a,i,c){return e={tag:e,create:i,deps:c,inst:a,next:null},a=nt.updateQueue,a===null&&(a=od(),nt.updateQueue=a),i=a.lastEffect,i===null?a.lastEffect=e.next=e:(c=i.next,i.next=e,e.next=c,a.lastEffect=e),e}function mb(e){var a=Pa();return e={current:e},a.memoizedState=e}function Xr(e,a,i,c){var d=Pa();nt.flags|=e,d.memoizedState=bo(Uo|a,{destroy:void 0},i,c===void 0?null:c)}function Qa(e,a,i,c){var d=qt();c=c===void 0?null:c;var m=d.memoizedState.inst;ua!==null&&c!==null&&dh(c,ua.memoizedState.deps)?d.memoizedState=bo(a,m,i,c):(nt.flags|=e,d.memoizedState=bo(Uo|a,m,i,c))}function $u(e,a){(nt.mode&vr)!==et?Xr(276826112,Fn,e,a):Xr(8390656,Fn,e,a)}function x4(e){nt.flags|=4;var a=nt.updateQueue;if(a===null)a=od(),nt.updateQueue=a,a.events=[e];else{var i=a.events;i===null?a.events=[e]:i.push(e)}}function fd(e){var a=Pa(),i={impl:e};return a.memoizedState=i,function(){if((_t&Ml)!==_l)throw Error("A function wrapped in useEffectEvent can't be called during rendering.");return i.impl.apply(void 0,arguments)}}function mc(e){var a=qt().memoizedState;return x4({ref:a,nextImpl:e}),function(){if((_t&Ml)!==_l)throw Error("A function wrapped in useEffectEvent can't be called during rendering.");return a.impl.apply(void 0,arguments)}}function Vl(e,a){var i=4194308;return(nt.mode&vr)!==et&&(i|=134217728),Xr(i,Hi,e,a)}function Ln(e,a){if(typeof a=="function"){e=e();var i=a(e);return function(){typeof i=="function"?i():a(null)}}if(a!=null)return a.hasOwnProperty("current")||console.error("Expected useImperativeHandle() first argument to either be a ref callback or React.createRef() object. Instead received: %s.","an object with keys {"+Object.keys(a).join(", ")+"}"),e=e(),a.current=e,function(){a.current=null}}function mo(e,a,i){typeof a!="function"&&console.error("Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.",a!==null?typeof a:"null"),i=i!=null?i.concat([e]):null;var c=4194308;(nt.mode&vr)!==et&&(c|=134217728),Xr(c,Hi,Ln.bind(null,a,e),i)}function hc(e,a,i){typeof a!="function"&&console.error("Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.",a!==null?typeof a:"null"),i=i!=null?i.concat([e]):null,Qa(4,Hi,Ln.bind(null,a,e),i)}function hb(e,a){return Pa().memoizedState=[e,a===void 0?null:a],e}function Li(e,a){var i=qt();a=a===void 0?null:a;var c=i.memoizedState;return a!==null&&dh(a,c[1])?c[0]:(i.memoizedState=[e,a],e)}function ql(e,a){var i=Pa();a=a===void 0?null:a;var c=e();if(c0){Kt(!0);try{e()}finally{Kt(!1)}}return i.memoizedState=[c,a],c}function ba(e,a){var i=qt();a=a===void 0?null:a;var c=i.memoizedState;if(a!==null&&dh(a,c[1]))return c[0];if(c=e(),c0){Kt(!0);try{e()}finally{Kt(!1)}}return i.memoizedState=[c,a],c}function pc(e,a){var i=Pa();return jt(i,e,a)}function ho(e,a){var i=qt();return wa(i,ua.memoizedState,e,a)}function st(e,a){var i=qt();return ua===null?jt(i,e,a):wa(i,ua.memoizedState,e,a)}function jt(e,a,i){return i===void 0||(xs&1073741824)!==0&&(pt&261930)===0?e.memoizedState=a:(e.memoizedState=i,e=Ac(),nt.lanes|=e,bf|=e,i)}function wa(e,a,i,c){return wn(i,a)?i:F1.current!==null?(e=jt(e,i,c),wn(e,a)||(dl=!0),e):(xs&42)===0||(xs&1073741824)!==0&&(pt&261930)===0?(dl=!0,e.memoizedState=i):(e=Ac(),nt.lanes|=e,bf|=e,a)}function es(){fe.asyncTransitions--}function ts(e,a,i,c,d){var m=Wt.p;Wt.p=m!==0&&m<El?m:El;var S=fe.T,C={};C._updatedFibers=new Set,fe.T=C,md(e,!1,a,i);try{var x=d(),N=fe.S;if(N!==null&&N(C,x),x!==null&&typeof x=="object"&&typeof x.then=="function"){fe.asyncTransitions++,x.then(es,es);var Q=ob(x,c);as(e,a,Q,xl(e))}else as(e,a,c,xl(e))}catch(Z){as(e,a,{then:function(){},status:"rejected",reason:Z},xl(e))}finally{Wt.p=m,S!==null&&C.types!==null&&(S.types!==null&&S.types!==C.types&&console.error("We expected inner Transitions to have transferred the outer types set and that you cannot add to the outer Transition while inside the inner.This is a bug in React."),S.types=C.types),fe.T=S,S===null&&C._updatedFibers&&(e=C._updatedFibers.size,C._updatedFibers.clear(),10<e&&console.warn("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table."))}}function ur(e,a,i,c){if(e.tag!==5)throw Error("Expected the form instance to be a HostComponent. This is a bug in React.");var d=dd(e).queue;D4(e),ts(e,d,a,y0,i===null?A:function(){return gc(e),i(c)})}function dd(e){var a=e.memoizedState;if(a!==null)return a;a={memoizedState:y0,baseState:y0,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Mn,lastRenderedState:y0},next:null};var i={};return a.next={memoizedState:i,baseState:i,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Mn,lastRenderedState:i},next:null},e.memoizedState=a,e=e.alternate,e!==null&&(e.memoizedState=a),a}function gc(e){fe.T===null&&console.error("requestFormReset was called outside a transition or action. To fix, move to an action, or wrap with startTransition.");var a=dd(e);a.next===null&&(a=e.alternate.memoizedState),as(e,a.next.queue,{},xl(e))}function Kr(){var e=fb(!1);return e=ts.bind(null,nt,e.queue,!0,!1),Pa().memoizedState=e,[!1,e]}function R4(){var e=Xu(Mn)[0],a=qt().memoizedState;return[typeof e=="boolean"?e:rd(e),a]}function Ea(){var e=Ku(Mn)[0],a=qt().memoizedState;return[typeof e=="boolean"?e:rd(e),a]}function sr(){return Ht(M2)}function bd(){var e=Pa(),a=sa.identifierPrefix;if(zt){var i=As,c=Es;i=(c&~(1<<32-Cl(c)-1)).toString(32)+i,a="_"+a+"R_"+i,i=eg++,0<i&&(a+="H"+i.toString(32)),a+="_"}else i=VM++,a="_"+a+"r_"+i.toString(32)+"_";return e.memoizedState=a}function pb(){return Pa().memoizedState=N4.bind(null,nt)}function N4(e,a){for(var i=e.return;i!==null;){switch(i.tag){case 24:case 3:var c=xl(i),d=Ya(c),m=so(i,d,c);m!==null&&(oo(c,"refresh()",e),at(m,i,c),$n(m,i,c)),e=nb(),a!=null&&m!==null&&console.error("The seed argument is not enabled outside experimental channels."),d.payload={cache:e};return}i=i.return}}function G8(e,a,i){var c=arguments;typeof c[3]=="function"&&console.error("State updates from the useState() and useReducer() Hooks don't support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect()."),c=xl(e);var d={lane:c,revertLane:0,gesture:null,action:i,hasEagerState:!1,eagerState:null,next:null};il(e)?xa(a,d):(d=Gu(e,a,d,c),d!==null&&(oo(c,"dispatch()",e),at(d,e,c),hd(d,a,c)))}function gb(e,a,i){var c=arguments;typeof c[3]=="function"&&console.error("State updates from the useState() and useReducer() Hooks don't support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect()."),c=xl(e),as(e,a,i,c)&&oo(c,"setState()",e)}function as(e,a,i,c){var d={lane:c,revertLane:0,gesture:null,action:i,hasEagerState:!1,eagerState:null,next:null};if(il(e))xa(a,d);else{var m=e.alternate;if(e.lanes===0&&(m===null||m.lanes===0)&&(m=a.lastRenderedReducer,m!==null)){var S=fe.H;fe.H=yr;try{var C=a.lastRenderedState,x=m(C,i);if(d.hasEagerState=!0,d.eagerState=x,wn(x,C))return ac(e,a,d,0),sa===null&&J0(),!1}catch{}finally{fe.H=S}}if(i=Gu(e,a,d,c),i!==null)return at(i,e,c),hd(i,a,c),!0}return!1}function md(e,a,i,c){if(fe.T===null&&i0===0&&console.error("An optimistic state update occurred outside a transition or action. To fix, move the update to an action, or wrap with startTransition."),c={lane:2,revertLane:i5(),gesture:null,action:c,hasEagerState:!1,eagerState:null,next:null},il(e)){if(a)throw Error("Cannot update optimistic state while rendering.");console.error("Cannot call startTransition while rendering.")}else a=Gu(e,i,c,2),a!==null&&(oo(2,"setOptimistic()",e),at(a,e,2))}function il(e){var a=e.alternate;return e===nt||a!==null&&a===nt}function xa(e,a){P1=$p=!0;var i=e.pending;i===null?a.next=a:(a.next=i.next,i.next=a),e.pending=a}function hd(e,a,i){if((i&4194048)!==0){var c=a.lanes;c&=e.pendingLanes,i|=c,a.lanes=i,ln(e,i)}}function ls(e){if(e!==null&&typeof e!="function"){var a=String(e);hv.has(a)||(hv.add(a),console.error("Expected the last optional `callback` argument to be a function. Instead received: %s.",e))}}function Tc(e,a,i,c){var d=e.memoizedState,m=i(c,d);if(e.mode&bn){Kt(!0);try{m=i(c,d)}finally{Kt(!1)}}m===void 0&&(a=be(a)||"Component",fv.has(a)||(fv.add(a),console.error("%s.getDerivedStateFromProps(): A valid state object (or null) must be returned. You have returned undefined.",a))),d=m==null?d:bt({},d,m),e.memoizedState=d,e.lanes===0&&(e.updateQueue.baseState=d)}function Tb(e,a,i,c,d,m,S){var C=e.stateNode;if(typeof C.shouldComponentUpdate=="function"){if(i=C.shouldComponentUpdate(c,m,S),e.mode&bn){Kt(!0);try{i=C.shouldComponentUpdate(c,m,S)}finally{Kt(!1)}}return i===void 0&&console.error("%s.shouldComponentUpdate(): Returned undefined instead of a boolean value. Make sure to return true or false.",be(a)||"Component"),i}return a.prototype&&a.prototype.isPureReactComponent?!tc(i,c)||!tc(d,m):!0}function po(e,a,i,c){var d=a.state;typeof a.componentWillReceiveProps=="function"&&a.componentWillReceiveProps(i,c),typeof a.UNSAFE_componentWillReceiveProps=="function"&&a.UNSAFE_componentWillReceiveProps(i,c),a.state!==d&&(e=Ce(e)||"Component",ov.has(e)||(ov.add(e),console.error("%s.componentWillReceiveProps(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead.",e)),M9.enqueueReplaceState(a,a.state,null))}function go(e,a){var i=a;if("ref"in a){i={};for(var c in a)c!=="ref"&&(i[c]=a[c])}if(e=e.defaultProps){i===a&&(i=bt({},i));for(var d in e)i[d]===void 0&&(i[d]=e[d])}return i}function vb(e){a9(e),console.warn(`%s
140
+
141
+ %s
142
+ `,W1?"An error occurred in the <"+W1+"> component.":"An error occurred in one of your React components.",`Consider adding an error boundary to your tree to customize error handling behavior.
143
+ Visit https://react.dev/link/error-boundaries to learn more about error boundaries.`)}function Sb(e){var a=W1?"The above error occurred in the <"+W1+"> component.":"The above error occurred in one of your React components.",i="React will try to recreate this component tree from scratch using the error boundary you provided, "+((D9||"Anonymous")+".");if(typeof e=="object"&&e!==null&&typeof e.environmentName=="string"){var c=e.environmentName;e=[`%o
144
+
145
+ %s
146
+
147
+ %s
148
+ `,e,a,i].slice(0),typeof e[0]=="string"?e.splice(0,1,Zv+" "+e[0],Jv,Mg+c+Mg,$v):e.splice(0,0,Zv,Jv,Mg+c+Mg,$v),e.unshift(console),c=fD.apply(console.error,e),c()}else console.error(`%o
149
+
150
+ %s
151
+
152
+ %s
153
+ `,e,a,i)}function vh(e){a9(e)}function pd(e,a){try{W1=a.source?Ce(a.source):null,D9=null;var i=a.value;if(fe.actQueue!==null)fe.thrownErrors.push(i);else{var c=e.onUncaughtError;c(i,{componentStack:a.stack})}}catch(d){setTimeout(function(){throw d})}}function Sh(e,a,i){try{W1=i.source?Ce(i.source):null,D9=Ce(a);var c=e.onCaughtError;c(i.value,{componentStack:i.stack,errorBoundary:a.tag===1?a.stateNode:null})}catch(d){setTimeout(function(){throw d})}}function yb(e,a,i){return i=Ya(i),i.tag=v9,i.payload={element:null},i.callback=function(){Ge(a.source,pd,e,a)},i}function Cb(e){return e=Ya(e),e.tag=v9,e}function Eb(e,a,i,c){var d=i.type.getDerivedStateFromError;if(typeof d=="function"){var m=c.value;e.payload=function(){return d(m)},e.callback=function(){ku(i),Ge(c.source,Sh,a,i,c)}}var S=i.stateNode;S!==null&&typeof S.componentDidCatch=="function"&&(e.callback=function(){ku(i),Ge(c.source,Sh,a,i,c),typeof d!="function"&&(hf===null?hf=new Set([this]):hf.add(this)),UM(this,c),typeof d=="function"||(i.lanes&2)===0&&console.error("%s: Error boundaries should implement getDerivedStateFromError(). In that method, return a state update to display an error message or fallback UI.",Ce(i)||"Unknown")})}function yh(e,a,i,c,d){if(i.flags|=32768,Ro&&xc(e,d),c!==null&&typeof c=="object"&&typeof c.then=="function"){if(a=i.alternate,a!==null&&Ci(a,i,d,!0),zt&&(du=!0),i=Ui.current,i!==null){switch(i.tag){case 31:case 13:return Fo===null?Dc():i.alternate===null&&Na===Os&&(Na=lg),i.flags&=-257,i.flags|=65536,i.lanes=d,c===Kp?i.flags|=16384:(a=i.updateQueue,a===null?i.updateQueue=new Set([c]):a.add(c),Wb(e,c,d)),!1;case 22:return i.flags|=65536,c===Kp?i.flags|=16384:(a=i.updateQueue,a===null?(a={transitions:null,markerInstances:null,retryQueue:new Set([c])},i.updateQueue=a):(i=a.retryQueue,i===null?a.retryQueue=new Set([c]):i.add(c)),Wb(e,c,d)),!1}throw Error("Unexpected Suspense handler tag ("+i.tag+"). This is a bug in React.")}return Wb(e,c,d),Dc(),!1}if(zt)return du=!0,a=Ui.current,a!==null?((a.flags&65536)===0&&(a.flags|=256),a.flags|=65536,a.lanes=d,c!==u9&&Xf(Fl(Error("There was an error while hydrating but React was able to recover by instead client rendering from the nearest Suspense boundary.",{cause:c}),i))):(c!==u9&&Xf(Fl(Error("There was an error while hydrating but React was able to recover by instead client rendering the entire root.",{cause:c}),i)),e=e.current.alternate,e.flags|=65536,d&=-d,e.lanes|=d,c=Fl(c,i),d=yb(e.stateNode,c,d),td(e,d),Na!==ff&&(Na=f0)),!1;var m=Fl(Error("There was an error during concurrent rendering but React was able to recover by instead synchronously rendering the entire root.",{cause:c}),i);if(p2===null?p2=[m]:p2.push(m),Na!==ff&&(Na=f0),a===null)return!0;c=Fl(c,i),i=a;do{switch(i.tag){case 3:return i.flags|=65536,e=d&-d,i.lanes|=e,e=yb(i.stateNode,c,e),td(i,e),!1;case 1:if(a=i.type,m=i.stateNode,(i.flags&128)===0&&(typeof a.getDerivedStateFromError=="function"||m!==null&&typeof m.componentDidCatch=="function"&&(hf===null||!hf.has(m))))return i.flags|=65536,d&=-d,i.lanes|=d,d=Cb(d),Eb(d,e,i,c),td(i,d),!1}i=i.return}while(i!==null);return!1}function ol(e,a,i,c){a.child=e===null?X3(a,null,i,c):s0(a,e.child,i,c)}function B4(e,a,i,c,d){i=i.render;var m=a.ref;if("ref"in c){var S={};for(var C in c)C!=="ref"&&(S[C]=c[C])}else S=c;return Fr(a),c=bh(e,a,i,S,m,d),C=Qu(),e!==null&&!dl?(id(e,a,d),zi(e,a,d)):(zt&&C&&tb(a),a.flags|=1,ol(e,a,c,d),a.child)}function Ch(e,a,i,c,d){if(e===null){var m=i.type;return typeof m=="function"&&!eh(m)&&m.defaultProps===void 0&&i.compare===null?(i=_r(m),a.tag=15,a.type=i,vc(a,m),Eh(e,a,i,c,d)):(e=Fu(i.type,null,c,a,a.mode,d),e.ref=a.ref,e.return=a,a.child=e)}if(m=e.child,!zb(e,d)){var S=m.memoizedProps;if(i=i.compare,i=i!==null?i:tc,i(S,c)&&e.ref===a.ref)return zi(e,a,d)}return a.flags|=1,e=io(m,c),e.ref=a.ref,e.return=a,a.child=e}function Eh(e,a,i,c,d){if(e!==null){var m=e.memoizedProps;if(tc(m,c)&&e.ref===a.ref&&a.type===e.type)if(dl=!1,a.pendingProps=c=m,zb(e,d))(e.flags&131072)!==0&&(dl=!0);else return a.lanes=e.lanes,zi(e,a,d)}return Lh(e,a,i,c,d)}function Ah(e,a,i,c){var d=c.children,m=e!==null?e.memoizedState:null;if(e===null&&a.stateNode===null&&(a.stateNode={_visibility:q5,_pendingMarkers:null,_retryCache:null,_transitions:null}),c.mode==="hidden"){if((a.flags&128)!==0){if(m=m!==null?m.baseLanes|i:i,e!==null){for(c=a.child=e.child,d=0;c!==null;)d=d|c.lanes|c.childLanes,c=c.sibling;c=d&~m}else c=0,a.child=null;return Mh(e,a,m,i,c)}if((i&536870912)!==0)a.memoizedState={baseLanes:0,cachePool:null},e!==null&&rc(a,m!==null?m.cachePool:null),m!==null?sb(a,m):lr(a),cb(a);else return c=a.lanes=536870912,Mh(e,a,m!==null?m.baseLanes|i:i,i,c)}else m!==null?(rc(a,m.cachePool),sb(a,m),fo(a),a.memoizedState=null):(e!==null&&rc(a,null),lr(a),fo(a));return ol(e,a,d,i),a.child}function ns(e,a){return e!==null&&e.tag===22||a.stateNode!==null||(a.stateNode={_visibility:q5,_pendingMarkers:null,_retryCache:null,_transitions:null}),a.sibling}function Mh(e,a,i,c,d){var m=ar();return m=m===null?null:{parent:sl._currentValue,pool:m},a.memoizedState={baseLanes:i,cachePool:m},e!==null&&rc(a,null),lr(a),cb(a),e!==null&&Ci(e,a,c,!0),a.childLanes=d,null}function gd(e,a){var i=a.hidden;return i!==void 0&&console.error(`<Activity> doesn't accept a hidden prop. Use mode="hidden" instead.
154
+ - <Activity %s>
155
+ + <Activity %s>`,i===!0?"hidden":i===!1?"hidden={false}":"hidden={...}",i?'mode="hidden"':'mode="visible"'),a=vd({mode:a.mode,children:a.children},e.mode),a.ref=e.ref,e.child=a,a.return=e,a}function Dh(e,a,i){return s0(a,e.child,null,i),e=gd(a,a.pendingProps),e.flags|=2,nl(a),a.memoizedState=null,e}function O4(e,a,i){var c=a.pendingProps,d=(a.flags&128)!==0;if(a.flags&=-129,e===null){if(zt){if(c.mode==="hidden")return e=gd(a,c),a.lanes=536870912,ns(null,e);if(Di(a),(e=ga)?(i=Qt(e,Go),i=i!==null&&i.data===g0?i:null,i!==null&&(c={dehydrated:i,treeContext:E4(),retryLane:536870912,hydrationErrors:null},a.memoizedState=c,c=ah(i),c.return=a,a.child=c,en=a,ga=null)):i=null,i===null)throw zl(a,e),Qn(a);return a.lanes=536870912,null}return gd(a,c)}var m=e.memoizedState;if(m!==null){var S=m.dehydrated;if(Di(a),d)if(a.flags&256)a.flags&=-257,a=Dh(e,a,i);else if(a.memoizedState!==null)a.child=e.child,a.flags|=128,a=null;else throw Error("Client rendering an Activity suspended it again. This is a bug in React.");else if(M4(),(i&536870912)!==0&&Mc(a),dl||Ci(e,a,i,!1),d=(i&e.childLanes)!==0,dl||d){if(c=sa,c!==null&&(S=Ji(c,i),S!==0&&S!==m.retryLane))throw m.retryLane=S,Ll(e,S),at(c,e,S),L9;Dc(),a=Dh(e,a,i)}else e=m.treeContext,ga=Bn(S.nextSibling),en=a,zt=!0,nf=null,du=!1,Fi=null,Go=!1,e!==null&&A4(a,e),a=gd(a,c),a.flags|=4096;return a}return m=e.child,c={mode:c.mode,children:c.children},(i&536870912)!==0&&(i&e.lanes)!==0&&Mc(a),e=io(m,c),e.ref=a.ref,a.child=e,e.return=a,e}function Td(e,a){var i=a.ref;if(i===null)e!==null&&e.ref!==null&&(a.flags|=4194816);else{if(typeof i!="function"&&typeof i!="object")throw Error("Expected ref to be a function, an object returned by React.createRef(), or undefined/null.");(e===null||e.ref!==i)&&(a.flags|=4194816)}}function Lh(e,a,i,c,d){if(i.prototype&&typeof i.prototype.render=="function"){var m=be(i)||"Unknown";pv[m]||(console.error("The <%s /> component appears to have a render method, but doesn't extend React.Component. This is likely to cause errors. Change %s to extend React.Component instead.",m,m),pv[m]=!0)}return a.mode&bn&&Sr.recordLegacyContextWarning(a,null),e===null&&(vc(a,a.type),i.contextTypes&&(m=be(i)||"Unknown",Tv[m]||(Tv[m]=!0,console.error("%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with React.useContext() instead. (https://react.dev/link/legacy-context)",m)))),Fr(a),i=bh(e,a,i,c,void 0,d),c=Qu(),e!==null&&!dl?(id(e,a,d),zi(e,a,d)):(zt&&c&&tb(a),a.flags|=1,ol(e,a,i,d),a.child)}function zh(e,a,i,c,d,m){return Fr(a),Ns=-1,s2=e!==null&&e.type!==a.type,a.updateQueue=null,i=ld(a,c,i,d),Ia(e,a),c=Qu(),e!==null&&!dl?(id(e,a,m),zi(e,a,m)):(zt&&c&&tb(a),a.flags|=1,ol(e,a,i,m),a.child)}function is(e,a,i,c,d){switch(p(a)){case!1:var m=a.stateNode,S=new a.type(a.memoizedProps,m.context).state;m.updater.enqueueSetState(m,S,null);break;case!0:a.flags|=128,a.flags|=65536,m=Error("Simulated error coming from DevTools");var C=d&-d;if(a.lanes|=C,S=sa,S===null)throw Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");C=Cb(C),Eb(C,S,a,Fl(m,a)),td(a,C)}if(Fr(a),a.stateNode===null){if(S=lf,m=i.contextType,"contextType"in i&&m!==null&&(m===void 0||m.$$typeof!==wi)&&!mv.has(i)&&(mv.add(i),C=m===void 0?" However, it is set to undefined. This can be caused by a typo or by mixing up named and default imports. This can also happen due to a circular dependency, so try moving the createContext() call to a separate file.":typeof m!="object"?" However, it is set to a "+typeof m+".":m.$$typeof===f1?" Did you accidentally pass the Context.Consumer instead?":" However, it is set to an object with keys {"+Object.keys(m).join(", ")+"}.",console.error("%s defines an invalid contextType. contextType should point to the Context object returned by React.createContext().%s",be(i)||"Component",C)),typeof m=="object"&&m!==null&&(S=Ht(m)),m=new i(c,S),a.mode&bn){Kt(!0);try{m=new i(c,S)}finally{Kt(!1)}}if(S=a.memoizedState=m.state!==null&&m.state!==void 0?m.state:null,m.updater=M9,a.stateNode=m,m._reactInternals=a,m._reactInternalInstance=iv,typeof i.getDerivedStateFromProps=="function"&&S===null&&(S=be(i)||"Component",rv.has(S)||(rv.add(S),console.error("`%s` uses `getDerivedStateFromProps` but its initial state is %s. This is not recommended. Instead, define the initial state by assigning an object to `this.state` in the constructor of `%s`. This ensures that `getDerivedStateFromProps` arguments have a consistent shape.",S,m.state===null?"null":"undefined",S))),typeof i.getDerivedStateFromProps=="function"||typeof m.getSnapshotBeforeUpdate=="function"){var x=C=S=null;if(typeof m.componentWillMount=="function"&&m.componentWillMount.__suppressDeprecationWarning!==!0?S="componentWillMount":typeof m.UNSAFE_componentWillMount=="function"&&(S="UNSAFE_componentWillMount"),typeof m.componentWillReceiveProps=="function"&&m.componentWillReceiveProps.__suppressDeprecationWarning!==!0?C="componentWillReceiveProps":typeof m.UNSAFE_componentWillReceiveProps=="function"&&(C="UNSAFE_componentWillReceiveProps"),typeof m.componentWillUpdate=="function"&&m.componentWillUpdate.__suppressDeprecationWarning!==!0?x="componentWillUpdate":typeof m.UNSAFE_componentWillUpdate=="function"&&(x="UNSAFE_componentWillUpdate"),S!==null||C!==null||x!==null){m=be(i)||"Component";var N=typeof i.getDerivedStateFromProps=="function"?"getDerivedStateFromProps()":"getSnapshotBeforeUpdate()";sv.has(m)||(sv.add(m),console.error(`Unsafe legacy lifecycles will not be called for components using new component APIs.
156
+
157
+ %s uses %s but also contains the following legacy lifecycles:%s%s%s
158
+
159
+ The above lifecycles should be removed. Learn more about this warning here:
160
+ https://react.dev/link/unsafe-component-lifecycles`,m,N,S!==null?`
161
+ `+S:"",C!==null?`
162
+ `+C:"",x!==null?`
163
+ `+x:""))}}m=a.stateNode,S=be(i)||"Component",m.render||(i.prototype&&typeof i.prototype.render=="function"?console.error("No `render` method found on the %s instance: did you accidentally return an object from the constructor?",S):console.error("No `render` method found on the %s instance: you may have forgotten to define `render`.",S)),!m.getInitialState||m.getInitialState.isReactClassApproved||m.state||console.error("getInitialState was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Did you mean to define a state property instead?",S),m.getDefaultProps&&!m.getDefaultProps.isReactClassApproved&&console.error("getDefaultProps was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Use a static property to define defaultProps instead.",S),m.contextType&&console.error("contextType was defined as an instance property on %s. Use a static property to define contextType instead.",S),i.childContextTypes&&!bv.has(i)&&(bv.add(i),console.error("%s uses the legacy childContextTypes API which was removed in React 19. Use React.createContext() instead. (https://react.dev/link/legacy-context)",S)),i.contextTypes&&!dv.has(i)&&(dv.add(i),console.error("%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with static contextType instead. (https://react.dev/link/legacy-context)",S)),typeof m.componentShouldUpdate=="function"&&console.error("%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.",S),i.prototype&&i.prototype.isPureReactComponent&&typeof m.shouldComponentUpdate<"u"&&console.error("%s has a method called shouldComponentUpdate(). shouldComponentUpdate should not be used when extending React.PureComponent. Please extend React.Component if shouldComponentUpdate is used.",be(i)||"A pure component"),typeof m.componentDidUnmount=="function"&&console.error("%s has a method called componentDidUnmount(). But there is no such lifecycle method. Did you mean componentWillUnmount()?",S),typeof m.componentDidReceiveProps=="function"&&console.error("%s has a method called componentDidReceiveProps(). But there is no such lifecycle method. If you meant to update the state in response to changing props, use componentWillReceiveProps(). If you meant to fetch data or run side-effects or mutations after React has updated the UI, use componentDidUpdate().",S),typeof m.componentWillRecieveProps=="function"&&console.error("%s has a method called componentWillRecieveProps(). Did you mean componentWillReceiveProps()?",S),typeof m.UNSAFE_componentWillRecieveProps=="function"&&console.error("%s has a method called UNSAFE_componentWillRecieveProps(). Did you mean UNSAFE_componentWillReceiveProps()?",S),C=m.props!==c,m.props!==void 0&&C&&console.error("When calling super() in `%s`, make sure to pass up the same props that your component's constructor was passed.",S),m.defaultProps&&console.error("Setting defaultProps as an instance property on %s is not supported and will be ignored. Instead, define defaultProps as a static property on %s.",S,S),typeof m.getSnapshotBeforeUpdate!="function"||typeof m.componentDidUpdate=="function"||uv.has(i)||(uv.add(i),console.error("%s: getSnapshotBeforeUpdate() should be used with componentDidUpdate(). This component defines getSnapshotBeforeUpdate() only.",be(i))),typeof m.getDerivedStateFromProps=="function"&&console.error("%s: getDerivedStateFromProps() is defined as an instance method and will be ignored. Instead, declare it as a static method.",S),typeof m.getDerivedStateFromError=="function"&&console.error("%s: getDerivedStateFromError() is defined as an instance method and will be ignored. Instead, declare it as a static method.",S),typeof i.getSnapshotBeforeUpdate=="function"&&console.error("%s: getSnapshotBeforeUpdate() is defined as a static method and will be ignored. Instead, declare it as an instance method.",S),(C=m.state)&&(typeof C!="object"||Va(C))&&console.error("%s.state: must be set to an object or null",S),typeof m.getChildContext=="function"&&typeof i.childContextTypes!="object"&&console.error("%s.getChildContext(): childContextTypes must be defined in order to use getChildContext().",S),m=a.stateNode,m.props=c,m.state=a.memoizedState,m.refs={},At(a),S=i.contextType,m.context=typeof S=="object"&&S!==null?Ht(S):lf,m.state===c&&(S=be(i)||"Component",cv.has(S)||(cv.add(S),console.error("%s: It is not recommended to assign props directly to state because updates to props won't be reflected in state. In most cases, it is better to use props directly.",S))),a.mode&bn&&Sr.recordLegacyContextWarning(a,m),Sr.recordUnsafeLifecycleWarnings(a,m),m.state=a.memoizedState,S=i.getDerivedStateFromProps,typeof S=="function"&&(Tc(a,i,S,c),m.state=a.memoizedState),typeof i.getDerivedStateFromProps=="function"||typeof m.getSnapshotBeforeUpdate=="function"||typeof m.UNSAFE_componentWillMount!="function"&&typeof m.componentWillMount!="function"||(S=m.state,typeof m.componentWillMount=="function"&&m.componentWillMount(),typeof m.UNSAFE_componentWillMount=="function"&&m.UNSAFE_componentWillMount(),S!==m.state&&(console.error("%s.componentWillMount(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead.",Ce(a)||"Component"),M9.enqueueReplaceState(m,m.state,null)),co(a,c,m,d),sc(),m.state=a.memoizedState),typeof m.componentDidMount=="function"&&(a.flags|=4194308),(a.mode&vr)!==et&&(a.flags|=134217728),m=!0}else if(e===null){m=a.stateNode;var Q=a.memoizedProps;C=go(i,Q),m.props=C;var Z=m.context;x=i.contextType,S=lf,typeof x=="object"&&x!==null&&(S=Ht(x)),N=i.getDerivedStateFromProps,x=typeof N=="function"||typeof m.getSnapshotBeforeUpdate=="function",Q=a.pendingProps!==Q,x||typeof m.UNSAFE_componentWillReceiveProps!="function"&&typeof m.componentWillReceiveProps!="function"||(Q||Z!==S)&&po(a,m,c,S),cf=!1;var W=a.memoizedState;m.state=W,co(a,c,m,d),sc(),Z=a.memoizedState,Q||W!==Z||cf?(typeof N=="function"&&(Tc(a,i,N,c),Z=a.memoizedState),(C=cf||Tb(a,i,C,c,W,Z,S))?(x||typeof m.UNSAFE_componentWillMount!="function"&&typeof m.componentWillMount!="function"||(typeof m.componentWillMount=="function"&&m.componentWillMount(),typeof m.UNSAFE_componentWillMount=="function"&&m.UNSAFE_componentWillMount()),typeof m.componentDidMount=="function"&&(a.flags|=4194308),(a.mode&vr)!==et&&(a.flags|=134217728)):(typeof m.componentDidMount=="function"&&(a.flags|=4194308),(a.mode&vr)!==et&&(a.flags|=134217728),a.memoizedProps=c,a.memoizedState=Z),m.props=c,m.state=Z,m.context=S,m=C):(typeof m.componentDidMount=="function"&&(a.flags|=4194308),(a.mode&vr)!==et&&(a.flags|=134217728),m=!1)}else{m=a.stateNode,uo(e,a),S=a.memoizedProps,x=go(i,S),m.props=x,N=a.pendingProps,W=m.context,Z=i.contextType,C=lf,typeof Z=="object"&&Z!==null&&(C=Ht(Z)),Q=i.getDerivedStateFromProps,(Z=typeof Q=="function"||typeof m.getSnapshotBeforeUpdate=="function")||typeof m.UNSAFE_componentWillReceiveProps!="function"&&typeof m.componentWillReceiveProps!="function"||(S!==N||W!==C)&&po(a,m,c,C),cf=!1,W=a.memoizedState,m.state=W,co(a,c,m,d),sc();var se=a.memoizedState;S!==N||W!==se||cf||e!==null&&e.dependencies!==null&&ic(e.dependencies)?(typeof Q=="function"&&(Tc(a,i,Q,c),se=a.memoizedState),(x=cf||Tb(a,i,x,c,W,se,C)||e!==null&&e.dependencies!==null&&ic(e.dependencies))?(Z||typeof m.UNSAFE_componentWillUpdate!="function"&&typeof m.componentWillUpdate!="function"||(typeof m.componentWillUpdate=="function"&&m.componentWillUpdate(c,se,C),typeof m.UNSAFE_componentWillUpdate=="function"&&m.UNSAFE_componentWillUpdate(c,se,C)),typeof m.componentDidUpdate=="function"&&(a.flags|=4),typeof m.getSnapshotBeforeUpdate=="function"&&(a.flags|=1024)):(typeof m.componentDidUpdate!="function"||S===e.memoizedProps&&W===e.memoizedState||(a.flags|=4),typeof m.getSnapshotBeforeUpdate!="function"||S===e.memoizedProps&&W===e.memoizedState||(a.flags|=1024),a.memoizedProps=c,a.memoizedState=se),m.props=c,m.state=se,m.context=C,m=x):(typeof m.componentDidUpdate!="function"||S===e.memoizedProps&&W===e.memoizedState||(a.flags|=4),typeof m.getSnapshotBeforeUpdate!="function"||S===e.memoizedProps&&W===e.memoizedState||(a.flags|=1024),m=!1)}if(C=m,Td(e,a),S=(a.flags&128)!==0,C||S){if(C=a.stateNode,an(a),S&&typeof i.getDerivedStateFromError!="function")i=null,Gn=-1;else if(i=I3(C),a.mode&bn){Kt(!0);try{I3(C)}finally{Kt(!1)}}a.flags|=1,e!==null&&S?(a.child=s0(a,e.child,null,d),a.child=s0(a,null,i,d)):ol(e,a,i,d),a.memoizedState=C.state,e=a.child}else e=zi(e,a,d);return d=a.stateNode,m&&d.props!==c&&(V1||console.error("It looks like %s is reassigning its own `this.props` while rendering. This is not supported and can lead to confusing bugs.",Ce(a)||"a component"),V1=!0),e}function xh(e,a,i,c){return Gr(),a.flags|=256,ol(e,a,i,c),a.child}function vc(e,a){a&&a.childContextTypes&&console.error(`childContextTypes cannot be defined on a function component.
164
+ %s.childContextTypes = ...`,a.displayName||a.name||"Component"),typeof a.getDerivedStateFromProps=="function"&&(e=be(a)||"Unknown",vv[e]||(console.error("%s: Function components do not support getDerivedStateFromProps.",e),vv[e]=!0)),typeof a.contextType=="object"&&a.contextType!==null&&(a=be(a)||"Unknown",gv[a]||(console.error("%s: Function components do not support contextType.",a),gv[a]=!0))}function Sc(e){return{baseLanes:e,cachePool:uh()}}function Ab(e,a,i){return e=e!==null?e.childLanes&~i:0,a&&(e|=ri),e}function Mb(e,a,i){var c,d=a.pendingProps;h(a)&&(a.flags|=128);var m=!1,S=(a.flags&128)!==0;if((c=S)||(c=e!==null&&e.memoizedState===null?!1:(Ja.current&r2)!==0),c&&(m=!0,a.flags&=-129),c=(a.flags&32)!==0,a.flags&=-33,e===null){if(zt){if(m?Wl(a):fo(a),(e=ga)?(i=Qt(e,Go),i=i!==null&&i.data!==g0?i:null,i!==null&&(c={dehydrated:i,treeContext:E4(),retryLane:536870912,hydrationErrors:null},a.memoizedState=c,c=ah(i),c.return=a,a.child=c,en=a,ga=null)):i=null,i===null)throw zl(a,e),Qn(a);return u5(i)?a.lanes=32:a.lanes=536870912,null}var C=d.children;if(d=d.fallback,m){fo(a);var x=a.mode;return C=vd({mode:"hidden",children:C},x),d=Uu(d,x,i,null),C.return=a,d.return=a,C.sibling=d,a.child=C,d=a.child,d.memoizedState=Sc(i),d.childLanes=Ab(e,c,i),a.memoizedState=z9,ns(null,d)}return Wl(a),Rh(a,C)}var N=e.memoizedState;if(N!==null){var Q=N.dehydrated;if(Q!==null){if(S)a.flags&256?(Wl(a),a.flags&=-257,a=Db(e,a,i)):a.memoizedState!==null?(fo(a),a.child=e.child,a.flags|=128,a=null):(fo(a),C=d.fallback,x=a.mode,d=vd({mode:"visible",children:d.children},x),C=Uu(C,x,i,null),C.flags|=2,d.return=a,C.return=a,d.sibling=C,a.child=d,s0(a,e.child,null,i),d=a.child,d.memoizedState=Sc(i),d.childLanes=Ab(e,c,i),a.memoizedState=z9,a=ns(null,d));else if(Wl(a),M4(),(i&536870912)!==0&&Mc(a),u5(Q)){if(c=Q.nextSibling&&Q.nextSibling.dataset,c){C=c.dgst;var Z=c.msg;x=c.stck;var W=c.cstck}m=Z,c=C,d=x,Q=W,C=m,x=Q,C=Error(C||"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."),C.stack=d||"",C.digest=c,c=x===void 0?null:x,d={value:C,source:null,stack:c},typeof c=="string"&&r9.set(C,d),Xf(d),a=Db(e,a,i)}else if(dl||Ci(e,a,i,!1),c=(i&e.childLanes)!==0,dl||c){if(c=sa,c!==null&&(d=Ji(c,i),d!==0&&d!==N.retryLane))throw N.retryLane=d,Ll(e,d),at(c,e,d),L9;Gd(Q)||Dc(),a=Db(e,a,i)}else Gd(Q)?(a.flags|=192,a.child=e.child,a=null):(e=N.treeContext,ga=Bn(Q.nextSibling),en=a,zt=!0,nf=null,du=!1,Fi=null,Go=!1,e!==null&&A4(a,e),a=Rh(a,d.children),a.flags|=4096);return a}}return m?(fo(a),C=d.fallback,x=a.mode,W=e.child,Q=W.sibling,d=io(W,{mode:"hidden",children:d.children}),d.subtreeFlags=W.subtreeFlags&65011712,Q!==null?C=io(Q,C):(C=Uu(C,x,i,null),C.flags|=2),C.return=a,d.return=a,d.sibling=C,a.child=d,ns(null,d),d=a.child,C=e.child.memoizedState,C===null?C=Sc(i):(x=C.cachePool,x!==null?(W=sl._currentValue,x=x.parent!==W?{parent:W,pool:W}:x):x=uh(),C={baseLanes:C.baseLanes|i,cachePool:x}),d.memoizedState=C,d.childLanes=Ab(e,c,i),a.memoizedState=z9,ns(e.child,d)):(N!==null&&(i&62914560)===i&&(i&e.lanes)!==0&&Mc(a),Wl(a),i=e.child,e=i.sibling,i=io(i,{mode:"visible",children:d.children}),i.return=a,i.sibling=null,e!==null&&(c=a.deletions,c===null?(a.deletions=[e],a.flags|=16):c.push(e)),a.child=i,a.memoizedState=null,i)}function Rh(e,a){return a=vd({mode:"visible",children:a},e.mode),a.return=e,e.child=a}function vd(e,a){return e=R(22,e,null,a),e.lanes=0,e}function Db(e,a,i){return s0(a,e.child,null,i),e=Rh(a,a.pendingProps.children),e.flags|=2,a.memoizedState=null,e}function Nh(e,a,i){e.lanes|=a;var c=e.alternate;c!==null&&(c.lanes|=a),lb(e.return,a,i)}function Lb(e,a,i,c,d,m){var S=e.memoizedState;S===null?e.memoizedState={isBackwards:a,rendering:null,renderingStartTime:0,last:c,tail:i,tailMode:d,treeForkCount:m}:(S.isBackwards=a,S.rendering=null,S.renderingStartTime=0,S.last=c,S.tail=i,S.tailMode=d,S.treeForkCount=m)}function Bh(e,a,i){var c=a.pendingProps,d=c.revealOrder,m=c.tail,S=c.children,C=Ja.current;if((c=(C&r2)!==0)?(C=C&U1|r2,a.flags|=128):C&=U1,Me(Ja,C,a),C=d??"null",d!=="forwards"&&d!=="unstable_legacy-backwards"&&d!=="together"&&d!=="independent"&&!Sv[C])if(Sv[C]=!0,d==null)console.error('The default for the <SuspenseList revealOrder="..."> prop is changing. To be future compatible you must explictly specify either "independent" (the current default), "together", "forwards" or "legacy_unstable-backwards".');else if(d==="backwards")console.error('The rendering order of <SuspenseList revealOrder="backwards"> is changing. To be future compatible you must specify revealOrder="legacy_unstable-backwards" instead.');else if(typeof d=="string")switch(d.toLowerCase()){case"together":case"forwards":case"backwards":case"independent":console.error('"%s" is not a valid value for revealOrder on <SuspenseList />. Use lowercase "%s" instead.',d,d.toLowerCase());break;case"forward":case"backward":console.error('"%s" is not a valid value for revealOrder on <SuspenseList />. React uses the -s suffix in the spelling. Use "%ss" instead.',d,d.toLowerCase());break;default:console.error('"%s" is not a supported revealOrder on <SuspenseList />. Did you mean "independent", "together", "forwards" or "backwards"?',d)}else console.error('%s is not a supported value for revealOrder on <SuspenseList />. Did you mean "independent", "together", "forwards" or "backwards"?',d);C=m??"null",ag[C]||(m==null?(d==="forwards"||d==="backwards"||d==="unstable_legacy-backwards")&&(ag[C]=!0,console.error('The default for the <SuspenseList tail="..."> prop is changing. To be future compatible you must explictly specify either "visible" (the current default), "collapsed" or "hidden".')):m!=="visible"&&m!=="collapsed"&&m!=="hidden"?(ag[C]=!0,console.error('"%s" is not a supported value for tail on <SuspenseList />. Did you mean "visible", "collapsed" or "hidden"?',m)):d!=="forwards"&&d!=="backwards"&&d!=="unstable_legacy-backwards"&&(ag[C]=!0,console.error('<SuspenseList tail="%s" /> is only valid if revealOrder is "forwards" or "backwards". Did you mean to specify revealOrder="forwards"?',m)));e:if((d==="forwards"||d==="backwards"||d==="unstable_legacy-backwards")&&S!==void 0&&S!==null&&S!==!1)if(Va(S)){for(C=0;C<S.length;C++)if(!ia(S[C],C))break e}else if(C=Se(S),typeof C=="function"){if(C=C.call(S))for(var x=C.next(),N=0;!x.done;x=C.next()){if(!ia(x.value,N))break e;N++}}else console.error('A single row was passed to a <SuspenseList revealOrder="%s" />. This is not useful since it needs multiple rows. Did you mean to pass multiple children or an array?',d);if(ol(e,a,S,i),zt?(wr(),S=j5):S=0,!c&&e!==null&&(e.flags&128)!==0)e:for(e=a.child;e!==null;){if(e.tag===13)e.memoizedState!==null&&Nh(e,i,a);else if(e.tag===19)Nh(e,i,a);else if(e.child!==null){e.child.return=e,e=e.child;continue}if(e===a)break e;for(;e.sibling===null;){if(e.return===null||e.return===a)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}switch(d){case"forwards":for(i=a.child,d=null;i!==null;)e=i.alternate,e!==null&&Yu(e)===null&&(d=i),i=i.sibling;i=d,i===null?(d=a.child,a.child=null):(d=i.sibling,i.sibling=null),Lb(a,!1,d,i,m,S);break;case"backwards":case"unstable_legacy-backwards":for(i=null,d=a.child,a.child=null;d!==null;){if(e=d.alternate,e!==null&&Yu(e)===null){a.child=d;break}e=d.sibling,d.sibling=i,i=d,d=e}Lb(a,!0,i,null,m,S);break;case"together":Lb(a,!1,null,null,void 0,S);break;default:a.memoizedState=null}return a.child}function zi(e,a,i){if(e!==null&&(a.dependencies=e.dependencies),Gn=-1,bf|=a.lanes,(i&a.childLanes)===0)if(e!==null){if(Ci(e,a,i,!1),(i&a.childLanes)===0)return null}else return null;if(e!==null&&a.child!==e.child)throw Error("Resuming work not yet implemented.");if(a.child!==null){for(e=a.child,i=io(e,e.pendingProps),a.child=i,i.return=a;e.sibling!==null;)e=e.sibling,i=i.sibling=io(e,e.pendingProps),i.return=a;i.sibling=null}return a.child}function zb(e,a){return(e.lanes&a)!==0?!0:(e=e.dependencies,!!(e!==null&&ic(e)))}function _4(e,a,i){switch(a.tag){case 3:Ie(a,a.stateNode.containerInfo),Xn(a,sl,e.memoizedState.cache),Gr();break;case 27:case 5:$(a);break;case 4:Ie(a,a.stateNode.containerInfo);break;case 10:Xn(a,a.type,a.memoizedProps.value);break;case 12:(i&a.childLanes)!==0&&(a.flags|=4),a.flags|=2048;var c=a.stateNode;c.effectDuration=-0,c.passiveEffectDuration=-0;break;case 31:if(a.memoizedState!==null)return a.flags|=128,Di(a),null;break;case 13:if(c=a.memoizedState,c!==null)return c.dehydrated!==null?(Wl(a),a.flags|=128,null):(i&a.child.childLanes)!==0?Mb(e,a,i):(Wl(a),e=zi(e,a,i),e!==null?e.sibling:null);Wl(a);break;case 19:var d=(e.flags&128)!==0;if(c=(i&a.childLanes)!==0,c||(Ci(e,a,i,!1),c=(i&a.childLanes)!==0),d){if(c)return Bh(e,a,i);a.flags|=128}if(d=a.memoizedState,d!==null&&(d.rendering=null,d.tail=null,d.lastEffect=null),Me(Ja,Ja.current,a),c)break;return null;case 22:return a.lanes=0,Ah(e,a,i,a.pendingProps);case 24:Xn(a,sl,e.memoizedState.cache)}return zi(e,a,i)}function Sd(e,a,i){if(a._debugNeedsRemount&&e!==null){i=Fu(a.type,a.key,a.pendingProps,a._debugOwner||null,a.mode,a.lanes),i._debugStack=a._debugStack,i._debugTask=a._debugTask;var c=a.return;if(c===null)throw Error("Cannot swap the root fiber.");if(e.alternate=null,a.alternate=null,i.index=a.index,i.sibling=a.sibling,i.return=a.return,i.ref=a.ref,i._debugInfo=a._debugInfo,a===c.child)c.child=i;else{var d=c.child;if(d===null)throw Error("Expected parent to have a child.");for(;d.sibling!==a;)if(d=d.sibling,d===null)throw Error("Expected to find the previous sibling.");d.sibling=i}return a=c.deletions,a===null?(c.deletions=[e],c.flags|=16):a.push(e),i.flags|=2,i}if(e!==null)if(e.memoizedProps!==a.pendingProps||a.type!==e.type)dl=!0;else{if(!zb(e,i)&&(a.flags&128)===0)return dl=!1,_4(e,a,i);dl=(e.flags&131072)!==0}else dl=!1,(c=zt)&&(wr(),c=(a.flags&1048576)!==0),c&&(c=a.index,wr(),lh(a,j5,c));switch(a.lanes=0,a.tag){case 16:e:if(c=a.pendingProps,e=En(a.elementType),a.type=e,typeof e=="function")eh(e)?(c=go(e,c),a.tag=1,a.type=e=_r(e),a=is(null,a,e,c,i)):(a.tag=0,vc(a,e),a.type=e=_r(e),a=Lh(null,a,e,c,i));else{if(e!=null){if(d=e.$$typeof,d===Wc){a.tag=11,a.type=e=$0(e),a=B4(null,a,e,c,i);break e}else if(d===Yd){a.tag=14,a=Ch(null,a,e,c,i);break e}}throw a="",e!==null&&typeof e=="object"&&e.$$typeof===Rl&&(a=" Did you wrap a component in React.lazy() more than once?"),i=be(e)||e,Error("Element type is invalid. Received a promise that resolves to: "+i+". Lazy element type must resolve to a class or function."+a)}return a;case 0:return Lh(e,a,a.type,a.pendingProps,i);case 1:return c=a.type,d=go(c,a.pendingProps),is(e,a,c,d,i);case 3:e:{if(Ie(a,a.stateNode.containerInfo),e===null)throw Error("Should have a current fiber. This is a bug in React.");c=a.pendingProps;var m=a.memoizedState;d=m.element,uo(e,a),co(a,c,null,i);var S=a.memoizedState;if(c=S.cache,Xn(a,sl,c),c!==m.cache&&$o(a,[sl],i,!0),sc(),c=S.element,m.isDehydrated)if(m={element:c,isDehydrated:!1,cache:S.cache},a.updateQueue.baseState=m,a.memoizedState=m,a.flags&256){a=xh(e,a,c,i);break e}else if(c!==d){d=Fl(Error("This root received an early update, before anything was able hydrate. Switched the entire root to client rendering."),a),Xf(d),a=xh(e,a,c,i);break e}else{switch(e=a.stateNode.containerInfo,e.nodeType){case 9:e=e.body;break;default:e=e.nodeName==="HTML"?e.ownerDocument.body:e}for(ga=Bn(e.firstChild),en=a,zt=!0,nf=null,du=!1,Fi=null,Go=!0,i=X3(a,null,c,i),a.child=i;i;)i.flags=i.flags&-3|4096,i=i.sibling}else{if(Gr(),c===d){a=zi(e,a,i);break e}ol(e,a,c,i)}a=a.child}return a;case 26:return Td(e,a),e===null?(i=d5(a.type,null,a.pendingProps,null))?a.memoizedState=i:zt||(i=a.type,e=a.pendingProps,c=ze(On.current),c=Id(c).createElement(i),c[ha]=a,c[$l]=e,ma(c,i,e),Oa(c),a.stateNode=c):a.memoizedState=d5(a.type,e.memoizedProps,a.pendingProps,e.memoizedState),null;case 27:return $(a),e===null&&zt&&(c=ze(On.current),d=oe(),c=a.stateNode=hr(a.type,a.pendingProps,c,d,!1),du||(d=cn(c,a.type,a.pendingProps,d),d!==null&&(Hu(a,0).serverProps=d)),en=a,Go=!0,d=ga,iu(a.type)?(Z9=d,ga=Bn(c.firstChild)):ga=d),ol(e,a,a.pendingProps.children,i),Td(e,a),e===null&&(a.flags|=4194304),a.child;case 5:return e===null&&zt&&(m=oe(),c=Ff(a.type,m.ancestorInfo),d=ga,(S=!d)||(S=cp(d,a.type,a.pendingProps,Go),S!==null?(a.stateNode=S,du||(m=cn(S,a.type,a.pendingProps,m),m!==null&&(Hu(a,0).serverProps=m)),en=a,ga=Bn(S.firstChild),Go=!1,m=!0):m=!1,S=!m),S&&(c&&zl(a,d),Qn(a))),$(a),d=a.type,m=a.pendingProps,S=e!==null?e.memoizedProps:null,c=m.children,_c(d,m)?c=null:S!==null&&_c(d,S)&&(a.flags|=32),a.memoizedState!==null&&(d=bh(e,a,nd,null,null,i),M2._currentValue=d),Td(e,a),ol(e,a,c,i),a.child;case 6:return e===null&&zt&&(i=a.pendingProps,e=oe(),c=e.ancestorInfo.current,i=c!=null?Uf(i,c.tag,e.ancestorInfo.implicitRootScope):!0,e=ga,(c=!e)||(c=fp(e,a.pendingProps,Go),c!==null?(a.stateNode=c,en=a,ga=null,c=!0):c=!1,c=!c),c&&(i&&zl(a,e),Qn(a))),null;case 13:return Mb(e,a,i);case 4:return Ie(a,a.stateNode.containerInfo),c=a.pendingProps,e===null?a.child=s0(a,null,c,i):ol(e,a,c,i),a.child;case 11:return B4(e,a,a.type,a.pendingProps,i);case 7:return ol(e,a,a.pendingProps,i),a.child;case 8:return ol(e,a,a.pendingProps.children,i),a.child;case 12:return a.flags|=4,a.flags|=2048,c=a.stateNode,c.effectDuration=-0,c.passiveEffectDuration=-0,ol(e,a,a.pendingProps.children,i),a.child;case 10:return c=a.type,d=a.pendingProps,m=d.value,"value"in d||yv||(yv=!0,console.error("The `value` prop is required for the `<Context.Provider>`. Did you misspell it or forget to pass it?")),Xn(a,c,m),ol(e,a,d.children,i),a.child;case 9:return d=a.type._context,c=a.pendingProps.children,typeof c!="function"&&console.error("A context consumer was rendered with multiple children, or a child that isn't a function. A context consumer expects a single child that is a function. If you did pass a function, make sure there is no trailing or leading whitespace around it."),Fr(a),d=Ht(d),c=h9(c,d,void 0),a.flags|=1,ol(e,a,c,i),a.child;case 14:return Ch(e,a,a.type,a.pendingProps,i);case 15:return Eh(e,a,a.type,a.pendingProps,i);case 19:return Bh(e,a,i);case 31:return O4(e,a,i);case 22:return Ah(e,a,i,a.pendingProps);case 24:return Fr(a),c=Ht(sl),e===null?(d=ar(),d===null&&(d=sa,m=nb(),d.pooledCache=m,Wu(m),m!==null&&(d.pooledCacheLanes|=i),d=m),a.memoizedState={parent:c,cache:d},At(a),Xn(a,sl,d)):((e.lanes&i)!==0&&(uo(e,a),co(a,null,null,i),sc()),d=e.memoizedState,m=a.memoizedState,d.parent!==c?(d={parent:c,cache:c},a.memoizedState=d,a.lanes===0&&(a.memoizedState=a.updateQueue.baseState=d),Xn(a,sl,c)):(c=m.cache,Xn(a,sl,c),c!==d.cache&&$o(a,[sl],i,!0))),ol(e,a,a.pendingProps.children,i),a.child;case 29:throw a.pendingProps}throw Error("Unknown unit of work tag ("+a.tag+"). This error is likely caused by a bug in React. Please file an issue.")}function To(e){e.flags|=4}function xb(e,a,i,c,d){if((a=(e.mode&IM)!==et)&&(a=!1),a){if(e.flags|=16777216,(d&335544128)===d)if(e.stateNode.complete)e.flags|=8192;else if(Kh())e.flags|=8192;else throw u0=Kp,g9}else e.flags&=-16777217}function I4(e,a){if(a.type!=="stylesheet"||(a.state.loading&Po)!==S0)e.flags&=-16777217;else if(e.flags|=16777216,!Ct(a))if(Kh())e.flags|=8192;else throw u0=Kp,g9}function yc(e,a){a!==null&&(e.flags|=4),e.flags&16384&&(a=e.tag!==22?ve():536870912,e.lanes|=a,m0|=a)}function Cc(e,a){if(!zt)switch(e.tailMode){case"hidden":a=e.tail;for(var i=null;a!==null;)a.alternate!==null&&(i=a),a=a.sibling;i===null?e.tail=null:i.sibling=null;break;case"collapsed":i=e.tail;for(var c=null;i!==null;)i.alternate!==null&&(c=i),i=i.sibling;c===null?a||e.tail===null?e.tail=null:e.tail.sibling=null:c.sibling=null}}function ea(e){var a=e.alternate!==null&&e.alternate.child===e.child,i=0,c=0;if(a)if((e.mode&mt)!==et){for(var d=e.selfBaseDuration,m=e.child;m!==null;)i|=m.lanes|m.childLanes,c|=m.subtreeFlags&65011712,c|=m.flags&65011712,d+=m.treeBaseDuration,m=m.sibling;e.treeBaseDuration=d}else for(d=e.child;d!==null;)i|=d.lanes|d.childLanes,c|=d.subtreeFlags&65011712,c|=d.flags&65011712,d.return=e,d=d.sibling;else if((e.mode&mt)!==et){d=e.actualDuration,m=e.selfBaseDuration;for(var S=e.child;S!==null;)i|=S.lanes|S.childLanes,c|=S.subtreeFlags,c|=S.flags,d+=S.actualDuration,m+=S.treeBaseDuration,S=S.sibling;e.actualDuration=d,e.treeBaseDuration=m}else for(d=e.child;d!==null;)i|=d.lanes|d.childLanes,c|=d.subtreeFlags,c|=d.flags,d.return=e,d=d.sibling;return e.subtreeFlags|=c,e.childLanes=i,a}function Oh(e,a,i){var c=a.pendingProps;switch(ab(a),a.tag){case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return ea(a),null;case 1:return ea(a),null;case 3:return i=a.stateNode,c=null,e!==null&&(c=e.memoizedState.cache),a.memoizedState.cache!==c&&(a.flags|=2048),yi(sl,a),P(a),i.pendingContext&&(i.context=i.pendingContext,i.pendingContext=null),(e===null||e.child===null)&&(Pu(a)?(kr(),To(a)):e===null||e.memoizedState.isDehydrated&&(a.flags&256)===0||(a.flags|=1024,Qf())),ea(a),null;case 26:var d=a.type,m=a.memoizedState;return e===null?(To(a),m!==null?(ea(a),I4(a,m)):(ea(a),xb(a,d,null,c,i))):m?m!==e.memoizedState?(To(a),ea(a),I4(a,m)):(ea(a),a.flags&=-16777217):(e=e.memoizedProps,e!==c&&To(a),ea(a),xb(a,d,e,c,i)),null;case 27:if(we(a),i=ze(On.current),d=a.type,e!==null&&a.stateNode!=null)e.memoizedProps!==c&&To(a);else{if(!c){if(a.stateNode===null)throw Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");return ea(a),null}e=oe(),Pu(a)?nh(a):(e=hr(d,c,i,e,!0),a.stateNode=e,To(a))}return ea(a),null;case 5:if(we(a),d=a.type,e!==null&&a.stateNode!=null)e.memoizedProps!==c&&To(a);else{if(!c){if(a.stateNode===null)throw Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");return ea(a),null}var S=oe();if(Pu(a))nh(a);else{switch(m=ze(On.current),Ff(d,S.ancestorInfo),S=S.context,m=Id(m),S){case J1:m=m.createElementNS(ft,d);break;case Cg:m=m.createElementNS(ut,d);break;default:switch(d){case"svg":m=m.createElementNS(ft,d);break;case"math":m=m.createElementNS(ut,d);break;case"script":m=m.createElement("div"),m.innerHTML="<script><\/script>",m=m.removeChild(m.firstChild);break;case"select":m=typeof c.is=="string"?m.createElement("select",{is:c.is}):m.createElement("select"),c.multiple?m.multiple=!0:c.size&&(m.size=c.size);break;default:m=typeof c.is=="string"?m.createElement(d,{is:c.is}):m.createElement(d),d.indexOf("-")===-1&&(d!==d.toLowerCase()&&console.error("<%s /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.",d),Object.prototype.toString.call(m)!=="[object HTMLUnknownElement]"||_n.call(qv,d)||(qv[d]=!0,console.error("The tag <%s> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.",d)))}}m[ha]=a,m[$l]=c;e:for(S=a.child;S!==null;){if(S.tag===5||S.tag===6)m.appendChild(S.stateNode);else if(S.tag!==4&&S.tag!==27&&S.child!==null){S.child.return=S,S=S.child;continue}if(S===a)break e;for(;S.sibling===null;){if(S.return===null||S.return===a)break e;S=S.return}S.sibling.return=S.return,S=S.sibling}a.stateNode=m;e:switch(ma(m,d,c),d){case"button":case"input":case"select":case"textarea":c=!!c.autoFocus;break e;case"img":c=!0;break e;default:c=!1}c&&To(a)}}return ea(a),xb(a,a.type,e===null?null:e.memoizedProps,a.pendingProps,i),null;case 6:if(e&&a.stateNode!=null)e.memoizedProps!==c&&To(a);else{if(typeof c!="string"&&a.stateNode===null)throw Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");if(e=ze(On.current),i=oe(),Pu(a)){if(e=a.stateNode,i=a.memoizedProps,d=!du,c=null,m=en,m!==null)switch(m.tag){case 3:d&&(d=mp(e,i,c),d!==null&&(Hu(a,0).serverProps=d));break;case 27:case 5:c=m.memoizedProps,d&&(d=mp(e,i,c),d!==null&&(Hu(a,0).serverProps=d))}e[ha]=a,e=!!(e.nodeValue===i||c!==null&&c.suppressHydrationWarning===!0||o5(e.nodeValue,i)),e||Qn(a,!0)}else d=i.ancestorInfo.current,d!=null&&Uf(c,d.tag,i.ancestorInfo.implicitRootScope),e=Id(e).createTextNode(c),e[ha]=a,a.stateNode=e}return ea(a),null;case 31:if(i=a.memoizedState,e===null||e.memoizedState!==null){if(c=Pu(a),i!==null){if(e===null){if(!c)throw Error("A dehydrated suspense component was completed without a hydrated node. This is probably a bug in React.");if(e=a.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error("Expected to have a hydrated activity instance. This error is likely caused by a bug in React. Please file an issue.");e[ha]=a,ea(a),(a.mode&mt)!==et&&i!==null&&(e=a.child,e!==null&&(a.treeBaseDuration-=e.treeBaseDuration))}else kr(),Gr(),(a.flags&128)===0&&(i=a.memoizedState=null),a.flags|=4,ea(a),(a.mode&mt)!==et&&i!==null&&(e=a.child,e!==null&&(a.treeBaseDuration-=e.treeBaseDuration));e=!1}else i=Qf(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=i),e=!0;if(!e)return a.flags&256?(nl(a),a):(nl(a),null);if((a.flags&128)!==0)throw Error("Client rendering an Activity suspended it again. This is a bug in React.")}return ea(a),null;case 13:if(c=a.memoizedState,e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){if(d=c,m=Pu(a),d!==null&&d.dehydrated!==null){if(e===null){if(!m)throw Error("A dehydrated suspense component was completed without a hydrated node. This is probably a bug in React.");if(m=a.memoizedState,m=m!==null?m.dehydrated:null,!m)throw Error("Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.");m[ha]=a,ea(a),(a.mode&mt)!==et&&d!==null&&(d=a.child,d!==null&&(a.treeBaseDuration-=d.treeBaseDuration))}else kr(),Gr(),(a.flags&128)===0&&(d=a.memoizedState=null),a.flags|=4,ea(a),(a.mode&mt)!==et&&d!==null&&(d=a.child,d!==null&&(a.treeBaseDuration-=d.treeBaseDuration));d=!1}else d=Qf(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=d),d=!0;if(!d)return a.flags&256?(nl(a),a):(nl(a),null)}return nl(a),(a.flags&128)!==0?(a.lanes=i,(a.mode&mt)!==et&&qu(a),a):(i=c!==null,e=e!==null&&e.memoizedState!==null,i&&(c=a.child,d=null,c.alternate!==null&&c.alternate.memoizedState!==null&&c.alternate.memoizedState.cachePool!==null&&(d=c.alternate.memoizedState.cachePool.pool),m=null,c.memoizedState!==null&&c.memoizedState.cachePool!==null&&(m=c.memoizedState.cachePool.pool),m!==d&&(c.flags|=2048)),i!==e&&i&&(a.child.flags|=8192),yc(a,a.updateQueue),ea(a),(a.mode&mt)!==et&&i&&(e=a.child,e!==null&&(a.treeBaseDuration-=e.treeBaseDuration)),null);case 4:return P(a),e===null&&lu(a.stateNode.containerInfo),ea(a),null;case 10:return yi(a.type,a),ea(a),null;case 19:if(De(Ja,a),c=a.memoizedState,c===null)return ea(a),null;if(d=(a.flags&128)!==0,m=c.rendering,m===null)if(d)Cc(c,!1);else{if(Na!==Os||e!==null&&(e.flags&128)!==0)for(e=a.child;e!==null;){if(m=Yu(e),m!==null){for(a.flags|=128,Cc(c,!1),e=m.updateQueue,a.updateQueue=e,yc(a,e),a.subtreeFlags=0,e=i,i=a.child;i!==null;)th(i,e),i=i.sibling;return Me(Ja,Ja.current&U1|r2,a),zt&&Si(a,c.treeForkCount),a.child}e=e.sibling}c.tail!==null&&ul()>sg&&(a.flags|=128,d=!0,Cc(c,!1),a.lanes=4194304)}else{if(!d)if(e=Yu(m),e!==null){if(a.flags|=128,d=!0,e=e.updateQueue,a.updateQueue=e,yc(a,e),Cc(c,!0),c.tail===null&&c.tailMode==="hidden"&&!m.alternate&&!zt)return ea(a),null}else 2*ul()-c.renderingStartTime>sg&&i!==536870912&&(a.flags|=128,d=!0,Cc(c,!1),a.lanes=4194304);c.isBackwards?(m.sibling=a.child,a.child=m):(e=c.last,e!==null?e.sibling=m:a.child=m,c.last=m)}return c.tail!==null?(e=c.tail,c.rendering=e,c.tail=e.sibling,c.renderingStartTime=ul(),e.sibling=null,i=Ja.current,i=d?i&U1|r2:i&U1,Me(Ja,i,a),zt&&Si(a,c.treeForkCount),e):(ea(a),null);case 22:case 23:return nl(a),Mi(a),c=a.memoizedState!==null,e!==null?e.memoizedState!==null!==c&&(a.flags|=8192):c&&(a.flags|=8192),c?(i&536870912)!==0&&(a.flags&128)===0&&(ea(a),a.subtreeFlags&6&&(a.flags|=8192)):ea(a),i=a.updateQueue,i!==null&&yc(a,i.retryQueue),i=null,e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(i=e.memoizedState.cachePool.pool),c=null,a.memoizedState!==null&&a.memoizedState.cachePool!==null&&(c=a.memoizedState.cachePool.pool),c!==i&&(a.flags|=2048),e!==null&&De(o0,a),null;case 24:return i=null,e!==null&&(i=e.memoizedState.cache),a.memoizedState.cache!==i&&(a.flags|=2048),yi(sl,a),ea(a),null;case 25:return null;case 30:return null}throw Error("Unknown unit of work tag ("+a.tag+"). This error is likely caused by a bug in React. Please file an issue.")}function w4(e,a){switch(ab(a),a.tag){case 1:return e=a.flags,e&65536?(a.flags=e&-65537|128,(a.mode&mt)!==et&&qu(a),a):null;case 3:return yi(sl,a),P(a),e=a.flags,(e&65536)!==0&&(e&128)===0?(a.flags=e&-65537|128,a):null;case 26:case 27:case 5:return we(a),null;case 31:if(a.memoizedState!==null){if(nl(a),a.alternate===null)throw Error("Threw in newly mounted dehydrated component. This is likely a bug in React. Please file an issue.");Gr()}return e=a.flags,e&65536?(a.flags=e&-65537|128,(a.mode&mt)!==et&&qu(a),a):null;case 13:if(nl(a),e=a.memoizedState,e!==null&&e.dehydrated!==null){if(a.alternate===null)throw Error("Threw in newly mounted dehydrated component. This is likely a bug in React. Please file an issue.");Gr()}return e=a.flags,e&65536?(a.flags=e&-65537|128,(a.mode&mt)!==et&&qu(a),a):null;case 19:return De(Ja,a),null;case 4:return P(a),null;case 10:return yi(a.type,a),null;case 22:case 23:return nl(a),Mi(a),e!==null&&De(o0,a),e=a.flags,e&65536?(a.flags=e&-65537|128,(a.mode&mt)!==et&&qu(a),a):null;case 24:return yi(sl,a),null;case 25:return null;default:return null}}function _h(e,a){switch(ab(a),a.tag){case 3:yi(sl,a),P(a);break;case 26:case 27:case 5:we(a);break;case 4:P(a);break;case 31:a.memoizedState!==null&&nl(a);break;case 13:nl(a);break;case 19:De(Ja,a);break;case 10:yi(a.type,a);break;case 22:case 23:nl(a),Mi(a),e!==null&&De(o0,a);break;case 24:yi(sl,a)}}function vo(e){return(e.mode&mt)!==et}function G4(e,a){vo(e)?(La(),cr(a,e),Hl()):cr(a,e)}function Rb(e,a,i){vo(e)?(La(),Zr(i,e,a),Hl()):Zr(i,e,a)}function cr(e,a){try{var i=a.updateQueue,c=i!==null?i.lastEffect:null;if(c!==null){var d=c.next;i=d;do{if((i.tag&e)===e&&(c=void 0,(e&kn)!==Jp&&(X1=!0),c=Ge(a,HM,i),(e&kn)!==Jp&&(X1=!1),c!==void 0&&typeof c!="function")){var m=void 0;m=(i.tag&Hi)!==0?"useLayoutEffect":(i.tag&kn)!==0?"useInsertionEffect":"useEffect";var S=void 0;S=c===null?" You returned null. If your effect does not require clean up, return undefined (or nothing).":typeof c.then=="function"?`
165
+
166
+ It looks like you wrote `+m+`(async () => ...) or returned a Promise. Instead, write the async function inside your effect and call it immediately:
167
+
168
+ `+m+`(() => {
169
+ async function fetchData() {
170
+ // You can await here
171
+ const response = await MyAPI.getData(someId);
172
+ // ...
173
+ }
174
+ fetchData();
175
+ }, [someId]); // Or [] if effect doesn't need props or state
176
+
177
+ Learn more about data fetching with Hooks: https://react.dev/link/hooks-data-fetching`:" You returned: "+c,Ge(a,function(C,x){console.error("%s must not return anything besides a function, which is used for clean-up.%s",C,x)},m,S)}i=i.next}while(i!==d)}}catch(C){ct(a,a.return,C)}}function Zr(e,a,i){try{var c=a.updateQueue,d=c!==null?c.lastEffect:null;if(d!==null){var m=d.next;c=m;do{if((c.tag&e)===e){var S=c.inst,C=S.destroy;C!==void 0&&(S.destroy=void 0,(e&kn)!==Jp&&(X1=!0),d=a,Ge(d,PM,d,i,C),(e&kn)!==Jp&&(X1=!1))}c=c.next}while(c!==m)}}catch(x){ct(a,a.return,x)}}function yd(e,a){vo(e)?(La(),cr(a,e),Hl()):cr(a,e)}function Nb(e,a,i){vo(e)?(La(),Zr(i,e,a),Hl()):Zr(i,e,a)}function Ih(e){var a=e.updateQueue;if(a!==null){var i=e.stateNode;e.type.defaultProps||"ref"in e.memoizedProps||V1||(i.props!==e.memoizedProps&&console.error("Expected %s props to match memoized props before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.",Ce(e)||"instance"),i.state!==e.memoizedState&&console.error("Expected %s state to match memoized state before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.",Ce(e)||"instance"));try{Ge(e,cc,a,i)}catch(c){ct(e,e.return,c)}}}function Cd(e,a,i){return e.getSnapshotBeforeUpdate(a,i)}function k4(e,a){var i=a.memoizedProps,c=a.memoizedState;a=e.stateNode,e.type.defaultProps||"ref"in e.memoizedProps||V1||(a.props!==e.memoizedProps&&console.error("Expected %s props to match memoized props before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.",Ce(e)||"instance"),a.state!==e.memoizedState&&console.error("Expected %s state to match memoized state before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.",Ce(e)||"instance"));try{var d=go(e.type,i),m=Ge(e,Cd,a,d,c);i=Cv,m!==void 0||i.has(e.type)||(i.add(e.type),Ge(e,function(){console.error("%s.getSnapshotBeforeUpdate(): A snapshot value (or null) must be returned. You have returned undefined.",Ce(e))})),a.__reactInternalSnapshotBeforeUpdate=m}catch(S){ct(e,e.return,S)}}function Bb(e,a,i){i.props=go(e.type,e.memoizedProps),i.state=e.memoizedState,vo(e)?(La(),Ge(e,H3,e,a,i),Hl()):Ge(e,H3,e,a,i)}function F4(e){var a=e.ref;if(a!==null){switch(e.tag){case 26:case 27:case 5:var i=e.stateNode;break;case 30:i=e.stateNode;break;default:i=e.stateNode}if(typeof a=="function")if(vo(e))try{La(),e.refCleanup=a(i)}finally{Hl()}else e.refCleanup=a(i);else typeof a=="string"?console.error("String refs are no longer supported."):a.hasOwnProperty("current")||console.error("Unexpected ref object provided for %s. Use either a ref-setter function or React.createRef().",Ce(e)),a.current=i}}function os(e,a){try{Ge(e,F4,e)}catch(i){ct(e,a,i)}}function ei(e,a){var i=e.ref,c=e.refCleanup;if(i!==null)if(typeof c=="function")try{if(vo(e))try{La(),Ge(e,c)}finally{Hl(e)}else Ge(e,c)}catch(d){ct(e,a,d)}finally{e.refCleanup=null,e=e.alternate,e!=null&&(e.refCleanup=null)}else if(typeof i=="function")try{if(vo(e))try{La(),Ge(e,i,null)}finally{Hl(e)}else Ge(e,i,null)}catch(d){ct(e,a,d)}else i.current=null}function wh(e,a,i,c){var d=e.memoizedProps,m=d.id,S=d.onCommit;d=d.onRender,a=a===null?"mount":"update",jp&&(a="nested-update"),typeof d=="function"&&d(m,a,e.actualDuration,e.treeBaseDuration,e.actualStartTime,i),typeof S=="function"&&S(m,a,c,i)}function U4(e,a,i,c){var d=e.memoizedProps;e=d.id,d=d.onPostCommit,a=a===null?"mount":"update",jp&&(a="nested-update"),typeof d=="function"&&d(e,a,c,i)}function Jr(e){var a=e.type,i=e.memoizedProps,c=e.stateNode;try{Ge(e,$4,c,a,i,e)}catch(d){ct(e,e.return,d)}}function Ob(e,a,i){try{Ge(e,$b,e.stateNode,e.type,i,a,e)}catch(c){ct(e,e.return,c)}}function Gh(e){return e.tag===5||e.tag===3||e.tag===26||e.tag===27&&iu(e.type)||e.tag===4}function _b(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||Gh(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.tag===27&&iu(e.type)||e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Ec(e,a,i){var c=e.tag;if(c===5||c===6)e=e.stateNode,a?(tp(i),(i.nodeType===9?i.body:i.nodeName==="HTML"?i.ownerDocument.body:i).insertBefore(e,a)):(tp(i),a=i.nodeType===9?i.body:i.nodeName==="HTML"?i.ownerDocument.body:i,a.appendChild(e),i=i._reactRootContainer,i!=null||a.onclick!==null||(a.onclick=jn));else if(c!==4&&(c===27&&iu(e.type)&&(i=e.stateNode,a=null),e=e.child,e!==null))for(Ec(e,a,i),e=e.sibling;e!==null;)Ec(e,a,i),e=e.sibling}function Ed(e,a,i){var c=e.tag;if(c===5||c===6)e=e.stateNode,a?i.insertBefore(e,a):i.appendChild(e);else if(c!==4&&(c===27&&iu(e.type)&&(i=e.stateNode),e=e.child,e!==null))for(Ed(e,a,i),e=e.sibling;e!==null;)Ed(e,a,i),e=e.sibling}function kh(e){for(var a,i=e.return;i!==null;){if(Gh(i)){a=i;break}i=i.return}if(a==null)throw Error("Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.");switch(a.tag){case 27:a=a.stateNode,i=_b(e),Ed(e,i,a);break;case 5:i=a.stateNode,a.flags&32&&(e1(i),a.flags&=-33),a=_b(e),Ed(e,a,i);break;case 3:case 4:a=a.stateNode.containerInfo,i=_b(e),Ec(e,i,a);break;default:throw Error("Invalid host parent fiber. This error is likely caused by a bug in React. Please file an issue.")}}function Fh(e){var a=e.stateNode,i=e.memoizedProps;try{Ge(e,Lo,e.type,i,a,e)}catch(c){ct(e,e.return,c)}}function Uh(e,a){return a.tag===31?(a=a.memoizedState,e.memoizedState!==null&&a===null):a.tag===13?(e=e.memoizedState,a=a.memoizedState,e!==null&&e.dehydrated!==null&&(a===null||a.dehydrated===null)):a.tag===3?e.memoizedState.isDehydrated&&(a.flags&256)===0:!1}function k8(e,a){if(e=e.containerInfo,Q9=Dg,e=X0(e),Ym(e)){if("selectionStart"in e)var i={start:e.selectionStart,end:e.selectionEnd};else e:{i=(i=e.ownerDocument)&&i.defaultView||window;var c=i.getSelection&&i.getSelection();if(c&&c.rangeCount!==0){i=c.anchorNode;var d=c.anchorOffset,m=c.focusNode;c=c.focusOffset;try{i.nodeType,m.nodeType}catch{i=null;break e}var S=0,C=-1,x=-1,N=0,Q=0,Z=e,W=null;t:for(;;){for(var se;Z!==i||d!==0&&Z.nodeType!==3||(C=S+d),Z!==m||c!==0&&Z.nodeType!==3||(x=S+c),Z.nodeType===3&&(S+=Z.nodeValue.length),(se=Z.firstChild)!==null;)W=Z,Z=se;for(;;){if(Z===e)break t;if(W===i&&++N===d&&(C=S),W===m&&++Q===c&&(x=S),(se=Z.nextSibling)!==null)break;Z=W,W=Z.parentNode}Z=se}i=C===-1||x===-1?null:{start:C,end:x}}else i=null}i=i||{start:0,end:0}}else i=null;for(X9={focusedElem:e,selectionRange:i},Dg=!1,Ol=a;Ol!==null;)if(a=Ol,e=a.child,(a.subtreeFlags&1028)!==0&&e!==null)e.return=a,Ol=e;else for(;Ol!==null;){switch(e=a=Ol,i=e.alternate,d=e.flags,e.tag){case 0:if((d&4)!==0&&(e=e.updateQueue,e=e!==null?e.events:null,e!==null))for(i=0;i<e.length;i++)d=e[i],d.ref.impl=d.nextImpl;break;case 11:case 15:break;case 1:(d&1024)!==0&&i!==null&&k4(e,i);break;case 3:if((d&1024)!==0){if(e=e.stateNode.containerInfo,i=e.nodeType,i===9)wc(e);else if(i===1)switch(e.nodeName){case"HEAD":case"HTML":case"BODY":wc(e);break;default:e.textContent=""}}break;case 5:case 26:case 27:case 6:case 4:case 17:break;default:if((d&1024)!==0)throw Error("This unit of work tag should not have side-effects. This error is likely caused by a bug in React. Please file an issue.")}if(e=a.sibling,e!==null){e.return=a.return,Ol=e;break}Ol=a.return}}function Ib(e,a,i){var c=da(),d=Kn(),m=yn(),S=Zn(),C=i.flags;switch(i.tag){case 0:case 11:case 15:zn(e,i),C&4&&G4(i,Hi|Uo);break;case 1:if(zn(e,i),C&4)if(e=i.stateNode,a===null)i.type.defaultProps||"ref"in i.memoizedProps||V1||(e.props!==i.memoizedProps&&console.error("Expected %s props to match memoized props before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.",Ce(i)||"instance"),e.state!==i.memoizedState&&console.error("Expected %s state to match memoized state before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.",Ce(i)||"instance")),vo(i)?(La(),Ge(i,p9,i,e),Hl()):Ge(i,p9,i,e);else{var x=go(i.type,a.memoizedProps);a=a.memoizedState,i.type.defaultProps||"ref"in i.memoizedProps||V1||(e.props!==i.memoizedProps&&console.error("Expected %s props to match memoized props before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.",Ce(i)||"instance"),e.state!==i.memoizedState&&console.error("Expected %s state to match memoized state before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.",Ce(i)||"instance")),vo(i)?(La(),Ge(i,k3,i,e,x,a,e.__reactInternalSnapshotBeforeUpdate),Hl()):Ge(i,k3,i,e,x,a,e.__reactInternalSnapshotBeforeUpdate)}C&64&&Ih(i),C&512&&os(i,i.return);break;case 3:if(a=ro(),zn(e,i),C&64&&(C=i.updateQueue,C!==null)){if(x=null,i.child!==null)switch(i.child.tag){case 27:case 5:x=i.child.stateNode;break;case 1:x=i.child.stateNode}try{Ge(i,cc,C,x)}catch(Q){ct(i,i.return,Q)}}e.effectDuration+=oc(a);break;case 27:a===null&&C&4&&Fh(i);case 26:case 5:if(zn(e,i),a===null){if(C&4)Jr(i);else if(C&64){e=i.type,a=i.memoizedProps,x=i.stateNode;try{Ge(i,ep,x,e,a,i)}catch(Q){ct(i,i.return,Q)}}}C&512&&os(i,i.return);break;case 12:if(C&4){C=ro(),zn(e,i),e=i.stateNode,e.effectDuration+=Ul(C);try{Ge(i,wh,i,a,of,e.effectDuration)}catch(Q){ct(i,i.return,Q)}}else zn(e,i);break;case 31:zn(e,i),C&4&&Ph(e,i);break;case 13:zn(e,i),C&4&&Wh(e,i),C&64&&(e=i.memoizedState,e!==null&&(e=e.dehydrated,e!==null&&(C=dr.bind(null,i),dp(e,C))));break;case 22:if(C=i.memoizedState!==null||Bs,!C){a=a!==null&&a.memoizedState!==null||bl,x=Bs;var N=bl;Bs=C,(bl=a)&&!N?(xi(e,i,(i.subtreeFlags&8772)!==0),(i.mode&mt)!==et&&0<=Xe&&0<=Je&&.05<Je-Xe&&K0(i,Xe,Je)):zn(e,i),Bs=x,bl=N}break;case 30:break;default:zn(e,i)}(i.mode&mt)!==et&&0<=Xe&&0<=Je&&((Fa||.05<Ra)&&vi(i,Xe,Je,Ra,Da),i.alternate===null&&i.return!==null&&i.return.alternate!==null&&.05<Je-Xe&&(Uh(i.return.alternate,i.return)||Yn(i,Xe,Je,"Mount"))),al(c),Sn(d),Da=m,Fa=S}function Ga(e){var a=e.alternate;a!==null&&(e.alternate=null,Ga(a)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(a=e.stateNode,a!==null&&Bm(a)),e.stateNode=null,e._debugOwner=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function ca(e,a,i){for(i=i.child;i!==null;)Hh(e,a,i),i=i.sibling}function Hh(e,a,i){if(Ka&&typeof Ka.onCommitFiberUnmount=="function")try{Ka.onCommitFiberUnmount(vs,i)}catch(N){xo||(xo=!0,console.error("React instrumentation encountered an error: %o",N))}var c=da(),d=Kn(),m=yn(),S=Zn();switch(i.tag){case 26:bl||ei(i,a),ca(e,a,i),i.memoizedState?i.memoizedState.count--:i.stateNode&&(e=i.stateNode,e.parentNode.removeChild(e));break;case 27:bl||ei(i,a);var C=ml,x=ii;iu(i.type)&&(ml=i.stateNode,ii=!1),ca(e,a,i),Ge(i,pr,i.stateNode),ml=C,ii=x;break;case 5:bl||ei(i,a);case 6:if(C=ml,x=ii,ml=null,ca(e,a,i),ml=C,ii=x,ml!==null)if(ii)try{Ge(i,lp,ml,i.stateNode)}catch(N){ct(i,a,N)}else try{Ge(i,ap,ml,i.stateNode)}catch(N){ct(i,a,N)}break;case 18:ml!==null&&(ii?(e=ml,fs(e.nodeType===9?e.body:e.nodeName==="HTML"?e.ownerDocument.body:e,i.stateNode),hs(e)):fs(ml,i.stateNode));break;case 4:C=ml,x=ii,ml=i.stateNode.containerInfo,ii=!0,ca(e,a,i),ml=C,ii=x;break;case 0:case 11:case 14:case 15:Zr(kn,i,a),bl||Rb(i,a,Hi),ca(e,a,i);break;case 1:bl||(ei(i,a),C=i.stateNode,typeof C.componentWillUnmount=="function"&&Bb(i,a,C)),ca(e,a,i);break;case 21:ca(e,a,i);break;case 22:bl=(C=bl)||i.memoizedState!==null,ca(e,a,i),bl=C;break;default:ca(e,a,i)}(i.mode&mt)!==et&&0<=Xe&&0<=Je&&(Fa||.05<Ra)&&vi(i,Xe,Je,Ra,Da),al(c),Sn(d),Da=m,Fa=S}function Ph(e,a){if(a.memoizedState===null&&(e=a.alternate,e!==null&&(e=e.memoizedState,e!==null))){e=e.dehydrated;try{Ge(a,t1,e)}catch(i){ct(a,a.return,i)}}}function Wh(e,a){if(a.memoizedState===null&&(e=a.alternate,e!==null&&(e=e.memoizedState,e!==null&&(e=e.dehydrated,e!==null))))try{Ge(a,c5,e)}catch(i){ct(a,a.return,i)}}function H4(e){switch(e.tag){case 31:case 13:case 19:var a=e.stateNode;return a===null&&(a=e.stateNode=new Ev),a;case 22:return e=e.stateNode,a=e._retryCache,a===null&&(a=e._retryCache=new Ev),a;default:throw Error("Unexpected Suspense handler tag ("+e.tag+"). This is a bug in React.")}}function $r(e,a){var i=H4(e);a.forEach(function(c){if(!i.has(c)){if(i.add(c),Ro)if(q1!==null&&j1!==null)xc(j1,q1);else throw Error("Expected finished root and lanes to be set. This is a bug in React.");var d=ss.bind(null,e,c);c.then(d,d)}})}function jl(e,a){var i=a.deletions;if(i!==null)for(var c=0;c<i.length;c++){var d=e,m=a,S=i[c],C=da(),x=m;e:for(;x!==null;){switch(x.tag){case 27:if(iu(x.type)){ml=x.stateNode,ii=!1;break e}break;case 5:ml=x.stateNode,ii=!1;break e;case 3:case 4:ml=x.stateNode.containerInfo,ii=!0;break e}x=x.return}if(ml===null)throw Error("Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.");Hh(d,m,S),ml=null,ii=!1,(S.mode&mt)!==et&&0<=Xe&&0<=Je&&.05<Je-Xe&&Yn(S,Xe,Je,"Unmount"),al(C),d=S,m=d.alternate,m!==null&&(m.return=null),d.return=null}if(a.subtreeFlags&13886)for(a=a.child;a!==null;)Ad(a,e),a=a.sibling}function Ad(e,a){var i=da(),c=Kn(),d=yn(),m=Zn(),S=e.alternate,C=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:jl(a,e),Yl(e),C&4&&(Zr(kn|Uo,e,e.return),cr(kn|Uo,e),Rb(e,e.return,Hi|Uo));break;case 1:if(jl(a,e),Yl(e),C&512&&(bl||S===null||ei(S,S.return)),C&64&&Bs&&(C=e.updateQueue,C!==null&&(S=C.callbacks,S!==null))){var x=C.shared.hiddenCallbacks;C.shared.hiddenCallbacks=x===null?S:x.concat(S)}break;case 26:if(x=Cr,jl(a,e),Yl(e),C&512&&(bl||S===null||ei(S,S.return)),C&4){var N=S!==null?S.memoizedState:null;if(C=e.memoizedState,S===null)if(C===null)if(e.stateNode===null){e:{C=e.type,S=e.memoizedProps,x=x.ownerDocument||x;t:switch(C){case"title":N=x.getElementsByTagName("title")[0],(!N||N[Zc]||N[ha]||N.namespaceURI===ft||N.hasAttribute("itemprop"))&&(N=x.createElement(C),x.head.insertBefore(N,x.querySelector("head > title"))),ma(N,C,S),N[ha]=e,Oa(N),C=N;break e;case"link":var Q=Fc("link","href",x).get(C+(S.href||""));if(Q){for(var Z=0;Z<Q.length;Z++)if(N=Q[Z],N.getAttribute("href")===(S.href==null||S.href===""?null:S.href)&&N.getAttribute("rel")===(S.rel==null?null:S.rel)&&N.getAttribute("title")===(S.title==null?null:S.title)&&N.getAttribute("crossorigin")===(S.crossOrigin==null?null:S.crossOrigin)){Q.splice(Z,1);break t}}N=x.createElement(C),ma(N,C,S),x.head.appendChild(N);break;case"meta":if(Q=Fc("meta","content",x).get(C+(S.content||""))){for(Z=0;Z<Q.length;Z++)if(N=Q[Z],Ft(S.content,"content"),N.getAttribute("content")===(S.content==null?null:""+S.content)&&N.getAttribute("name")===(S.name==null?null:S.name)&&N.getAttribute("property")===(S.property==null?null:S.property)&&N.getAttribute("http-equiv")===(S.httpEquiv==null?null:S.httpEquiv)&&N.getAttribute("charset")===(S.charSet==null?null:S.charSet)){Q.splice(Z,1);break t}}N=x.createElement(C),ma(N,C,S),x.head.appendChild(N);break;default:throw Error('getNodesForType encountered a type it did not expect: "'+C+'". This is a bug in React.')}N[ha]=e,Oa(N),C=N}e.stateNode=C}else pp(x,e.type,e.stateNode);else e.stateNode=n1(x,C,e.memoizedProps);else N!==C?(N===null?S.stateNode!==null&&(S=S.stateNode,S.parentNode.removeChild(S)):N.count--,C===null?pp(x,e.type,e.stateNode):n1(x,C,e.memoizedProps)):C===null&&e.stateNode!==null&&Ob(e,e.memoizedProps,S.memoizedProps)}break;case 27:jl(a,e),Yl(e),C&512&&(bl||S===null||ei(S,S.return)),S!==null&&C&4&&Ob(e,e.memoizedProps,S.memoizedProps);break;case 5:if(jl(a,e),Yl(e),C&512&&(bl||S===null||ei(S,S.return)),e.flags&32){x=e.stateNode;try{Ge(e,e1,x)}catch(Ue){ct(e,e.return,Ue)}}C&4&&e.stateNode!=null&&(x=e.memoizedProps,Ob(e,x,S!==null?S.memoizedProps:x)),C&1024&&(x9=!0,e.type!=="form"&&console.error("Unexpected host component type. Expected a form. This is a bug in React."));break;case 6:if(jl(a,e),Yl(e),C&4){if(e.stateNode===null)throw Error("This should have a text node initialized. This error is likely caused by a bug in React. Please file an issue.");C=e.memoizedProps,S=S!==null?S.memoizedProps:C,x=e.stateNode;try{Ge(e,F8,x,S,C)}catch(Ue){ct(e,e.return,Ue)}}break;case 3:if(x=ro(),Eg=null,N=Cr,Cr=a1(a.containerInfo),jl(a,e),Cr=N,Yl(e),C&4&&S!==null&&S.memoizedState.isDehydrated)try{Ge(e,s5,a.containerInfo)}catch(Ue){ct(e,e.return,Ue)}x9&&(x9=!1,P4(e)),a.effectDuration+=oc(x);break;case 4:C=Cr,Cr=a1(e.stateNode.containerInfo),jl(a,e),Yl(e),Cr=C;break;case 12:C=ro(),jl(a,e),Yl(e),e.stateNode.effectDuration+=Ul(C);break;case 31:jl(a,e),Yl(e),C&4&&(C=e.updateQueue,C!==null&&(e.updateQueue=null,$r(e,C)));break;case 13:jl(a,e),Yl(e),e.child.flags&8192&&e.memoizedState!==null!=(S!==null&&S.memoizedState!==null)&&(ug=ul()),C&4&&(C=e.updateQueue,C!==null&&(e.updateQueue=null,$r(e,C)));break;case 22:x=e.memoizedState!==null;var W=S!==null&&S.memoizedState!==null,se=Bs,_e=bl;if(Bs=se||x,bl=_e||W,jl(a,e),bl=_e,Bs=se,W&&!x&&!se&&!_e&&(e.mode&mt)!==et&&0<=Xe&&0<=Je&&.05<Je-Xe&&K0(e,Xe,Je),Yl(e),C&8192)e:for(a=e.stateNode,a._visibility=x?a._visibility&~q5:a._visibility|q5,!x||S===null||W||Bs||bl||(eu(e),(e.mode&mt)!==et&&0<=Xe&&0<=Je&&.05<Je-Xe&&Yn(e,Xe,Je,"Disconnect")),S=null,a=e;;){if(a.tag===5||a.tag===26){if(S===null){W=S=a;try{N=W.stateNode,x?Ge(W,ip,N):Ge(W,up,W.stateNode,W.memoizedProps)}catch(Ue){ct(W,W.return,Ue)}}}else if(a.tag===6){if(S===null){W=a;try{Q=W.stateNode,x?Ge(W,op,Q):Ge(W,sp,Q,W.memoizedProps)}catch(Ue){ct(W,W.return,Ue)}}}else if(a.tag===18){if(S===null){W=a;try{Z=W.stateNode,x?Ge(W,np,Z):Ge(W,rp,W.stateNode)}catch(Ue){ct(W,W.return,Ue)}}}else if((a.tag!==22&&a.tag!==23||a.memoizedState===null||a===e)&&a.child!==null){a.child.return=a,a=a.child;continue}if(a===e)break e;for(;a.sibling===null;){if(a.return===null||a.return===e)break e;S===a&&(S=null),a=a.return}S===a&&(S=null),a.sibling.return=a.return,a=a.sibling}C&4&&(C=e.updateQueue,C!==null&&(S=C.retryQueue,S!==null&&(C.retryQueue=null,$r(e,S))));break;case 19:jl(a,e),Yl(e),C&4&&(C=e.updateQueue,C!==null&&(e.updateQueue=null,$r(e,C)));break;case 30:break;case 21:break;default:jl(a,e),Yl(e)}(e.mode&mt)!==et&&0<=Xe&&0<=Je&&((Fa||.05<Ra)&&vi(e,Xe,Je,Ra,Da),e.alternate===null&&e.return!==null&&e.return.alternate!==null&&.05<Je-Xe&&(Uh(e.return.alternate,e.return)||Yn(e,Xe,Je,"Mount"))),al(i),Sn(c),Da=d,Fa=m}function Yl(e){var a=e.flags;if(a&2){try{Ge(e,kh,e)}catch(i){ct(e,e.return,i)}e.flags&=-3}a&4096&&(e.flags&=-4097)}function P4(e){if(e.subtreeFlags&1024)for(e=e.child;e!==null;){var a=e;P4(a),a.tag===5&&a.flags&1024&&a.stateNode.reset(),e=e.sibling}}function zn(e,a){if(a.subtreeFlags&8772)for(a=a.child;a!==null;)Ib(e,a.alternate,a),a=a.sibling}function wb(e){var a=da(),i=Kn(),c=yn(),d=Zn();switch(e.tag){case 0:case 11:case 14:case 15:Rb(e,e.return,Hi),eu(e);break;case 1:ei(e,e.return);var m=e.stateNode;typeof m.componentWillUnmount=="function"&&Bb(e,e.return,m),eu(e);break;case 27:Ge(e,pr,e.stateNode);case 26:case 5:ei(e,e.return),eu(e);break;case 22:e.memoizedState===null&&eu(e);break;case 30:eu(e);break;default:eu(e)}(e.mode&mt)!==et&&0<=Xe&&0<=Je&&(Fa||.05<Ra)&&vi(e,Xe,Je,Ra,Da),al(a),Sn(i),Da=c,Fa=d}function eu(e){for(e=e.child;e!==null;)wb(e),e=e.sibling}function Vh(e,a,i,c){var d=da(),m=Kn(),S=yn(),C=Zn(),x=i.flags;switch(i.tag){case 0:case 11:case 15:xi(e,i,c),G4(i,Hi);break;case 1:if(xi(e,i,c),a=i.stateNode,typeof a.componentDidMount=="function"&&Ge(i,p9,i,a),a=i.updateQueue,a!==null){e=i.stateNode;try{Ge(i,fh,a,e)}catch(N){ct(i,i.return,N)}}c&&x&64&&Ih(i),os(i,i.return);break;case 27:Fh(i);case 26:case 5:xi(e,i,c),c&&a===null&&x&4&&Jr(i),os(i,i.return);break;case 12:if(c&&x&4){x=ro(),xi(e,i,c),c=i.stateNode,c.effectDuration+=Ul(x);try{Ge(i,wh,i,a,of,c.effectDuration)}catch(N){ct(i,i.return,N)}}else xi(e,i,c);break;case 31:xi(e,i,c),c&&x&4&&Ph(e,i);break;case 13:xi(e,i,c),c&&x&4&&Wh(e,i);break;case 22:i.memoizedState===null&&xi(e,i,c),os(i,i.return);break;case 30:break;default:xi(e,i,c)}(i.mode&mt)!==et&&0<=Xe&&0<=Je&&(Fa||.05<Ra)&&vi(i,Xe,Je,Ra,Da),al(d),Sn(m),Da=S,Fa=C}function xi(e,a,i){for(i=i&&(a.subtreeFlags&8772)!==0,a=a.child;a!==null;)Vh(e,a.alternate,a,i),a=a.sibling}function Md(e,a){var i=null;e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(i=e.memoizedState.cachePool.pool),e=null,a.memoizedState!==null&&a.memoizedState.cachePool!==null&&(e=a.memoizedState.cachePool.pool),e!==i&&(e!=null&&Wu(e),i!=null&&Zf(i))}function Dd(e,a){e=null,a.alternate!==null&&(e=a.alternate.memoizedState.cache),a=a.memoizedState.cache,a!==e&&(Wu(a),e!=null&&Zf(e))}function xn(e,a,i,c,d){if(a.subtreeFlags&10256||a.actualDuration!==0&&(a.alternate===null||a.alternate.child!==a.child))for(a=a.child;a!==null;){var m=a.sibling;qh(e,a,i,c,m!==null?m.actualStartTime:d),a=m}}function qh(e,a,i,c,d){var m=da(),S=Kn(),C=yn(),x=Zn(),N=tf,Q=a.flags;switch(a.tag){case 0:case 11:case 15:(a.mode&mt)!==et&&0<a.actualStartTime&&(a.flags&1)!==0&&Z0(a,a.actualStartTime,d,Al,i),xn(e,a,i,c,d),Q&2048&&yd(a,Fn|Uo);break;case 1:(a.mode&mt)!==et&&0<a.actualStartTime&&((a.flags&128)!==0?Xm(a,a.actualStartTime,d,[]):(a.flags&1)!==0&&Z0(a,a.actualStartTime,d,Al,i)),xn(e,a,i,c,d);break;case 3:var Z=ro(),W=Al;Al=a.alternate!==null&&a.alternate.memoizedState.isDehydrated&&(a.flags&256)===0,xn(e,a,i,c,d),Al=W,Q&2048&&(i=null,a.alternate!==null&&(i=a.alternate.memoizedState.cache),c=a.memoizedState.cache,c!==i&&(Wu(c),i!=null&&Zf(i))),e.passiveEffectDuration+=oc(Z);break;case 12:if(Q&2048){Q=ro(),xn(e,a,i,c,d),e=a.stateNode,e.passiveEffectDuration+=Ul(Q);try{Ge(a,U4,a,a.alternate,of,e.passiveEffectDuration)}catch(se){ct(a,a.return,se)}}else xn(e,a,i,c,d);break;case 31:Q=Al,Z=a.alternate!==null?a.alternate.memoizedState:null,W=a.memoizedState,Z!==null&&W===null?(W=a.deletions,W!==null&&0<W.length&&W[0].tag===18?(Al=!1,Z=Z.hydrationErrors,Z!==null&&Xm(a,a.actualStartTime,d,Z)):Al=!0):Al=!1,xn(e,a,i,c,d),Al=Q;break;case 13:Q=Al,Z=a.alternate!==null?a.alternate.memoizedState:null,W=a.memoizedState,Z===null||Z.dehydrated===null||W!==null&&W.dehydrated!==null?Al=!1:(W=a.deletions,W!==null&&0<W.length&&W[0].tag===18?(Al=!1,Z=Z.hydrationErrors,Z!==null&&Xm(a,a.actualStartTime,d,Z)):Al=!0),xn(e,a,i,c,d),Al=Q;break;case 23:break;case 22:W=a.stateNode,Z=a.alternate,a.memoizedState!==null?W._visibility&Cs?xn(e,a,i,c,d):rs(e,a,i,c,d):W._visibility&Cs?xn(e,a,i,c,d):(W._visibility|=Cs,tu(e,a,i,c,(a.subtreeFlags&10256)!==0||a.actualDuration!==0&&(a.alternate===null||a.alternate.child!==a.child),d),(a.mode&mt)===et||Al||(e=a.actualStartTime,0<=e&&.05<d-e&&K0(a,e,d),0<=Xe&&0<=Je&&.05<Je-Xe&&K0(a,Xe,Je))),Q&2048&&Md(Z,a);break;case 24:xn(e,a,i,c,d),Q&2048&&Dd(a.alternate,a);break;default:xn(e,a,i,c,d)}(a.mode&mt)!==et&&((e=!Al&&a.alternate===null&&a.return!==null&&a.return.alternate!==null)&&(i=a.actualStartTime,0<=i&&.05<d-i&&Yn(a,i,d,"Mount")),0<=Xe&&0<=Je&&((Fa||.05<Ra)&&vi(a,Xe,Je,Ra,Da),e&&.05<Je-Xe&&Yn(a,Xe,Je,"Mount"))),al(m),Sn(S),Da=C,Fa=x,tf=N}function tu(e,a,i,c,d,m){for(d=d&&((a.subtreeFlags&10256)!==0||a.actualDuration!==0&&(a.alternate===null||a.alternate.child!==a.child)),a=a.child;a!==null;){var S=a.sibling;Ld(e,a,i,c,d,S!==null?S.actualStartTime:m),a=S}}function Ld(e,a,i,c,d,m){var S=da(),C=Kn(),x=yn(),N=Zn(),Q=tf;d&&(a.mode&mt)!==et&&0<a.actualStartTime&&(a.flags&1)!==0&&Z0(a,a.actualStartTime,m,Al,i);var Z=a.flags;switch(a.tag){case 0:case 11:case 15:tu(e,a,i,c,d,m),yd(a,Fn);break;case 23:break;case 22:var W=a.stateNode;a.memoizedState!==null?W._visibility&Cs?tu(e,a,i,c,d,m):rs(e,a,i,c,m):(W._visibility|=Cs,tu(e,a,i,c,d,m)),d&&Z&2048&&Md(a.alternate,a);break;case 24:tu(e,a,i,c,d,m),d&&Z&2048&&Dd(a.alternate,a);break;default:tu(e,a,i,c,d,m)}(a.mode&mt)!==et&&0<=Xe&&0<=Je&&(Fa||.05<Ra)&&vi(a,Xe,Je,Ra,Da),al(S),Sn(C),Da=x,Fa=N,tf=Q}function rs(e,a,i,c,d){if(a.subtreeFlags&10256||a.actualDuration!==0&&(a.alternate===null||a.alternate.child!==a.child))for(var m=a.child;m!==null;){a=m.sibling;var S=e,C=i,x=c,N=a!==null?a.actualStartTime:d,Q=tf;(m.mode&mt)!==et&&0<m.actualStartTime&&(m.flags&1)!==0&&Z0(m,m.actualStartTime,N,Al,C);var Z=m.flags;switch(m.tag){case 22:rs(S,m,C,x,N),Z&2048&&Md(m.alternate,m);break;case 24:rs(S,m,C,x,N),Z&2048&&Dd(m.alternate,m);break;default:rs(S,m,C,x,N)}tf=Q,m=a}}function us(e,a,i){if(e.subtreeFlags&f2)for(e=e.child;e!==null;)Gb(e,a,i),e=e.sibling}function Gb(e,a,i){switch(e.tag){case 26:us(e,a,i),e.flags&f2&&e.memoizedState!==null&&h5(i,Cr,e.memoizedState,e.memoizedProps);break;case 5:us(e,a,i);break;case 3:case 4:var c=Cr;Cr=a1(e.stateNode.containerInfo),us(e,a,i),Cr=c;break;case 22:e.memoizedState===null&&(c=e.alternate,c!==null&&c.memoizedState!==null?(c=f2,f2=16777216,us(e,a,i),f2=c):us(e,a,i));break;default:us(e,a,i)}}function jh(e){var a=e.alternate;if(a!==null&&(e=a.child,e!==null)){a.child=null;do a=e.sibling,e.sibling=null,e=a;while(e!==null)}}function Rn(e){var a=e.deletions;if((e.flags&16)!==0){if(a!==null)for(var i=0;i<a.length;i++){var c=a[i],d=da();Ol=c,So(c,e),(c.mode&mt)!==et&&0<=Xe&&0<=Je&&.05<Je-Xe&&Yn(c,Xe,Je,"Unmount"),al(d)}jh(e)}if(e.subtreeFlags&10256)for(e=e.child;e!==null;)kb(e),e=e.sibling}function kb(e){var a=da(),i=Kn(),c=yn(),d=Zn();switch(e.tag){case 0:case 11:case 15:Rn(e),e.flags&2048&&Nb(e,e.return,Fn|Uo);break;case 3:var m=ro();Rn(e),e.stateNode.passiveEffectDuration+=oc(m);break;case 12:m=ro(),Rn(e),e.stateNode.passiveEffectDuration+=Ul(m);break;case 22:m=e.stateNode,e.memoizedState!==null&&m._visibility&Cs&&(e.return===null||e.return.tag!==13)?(m._visibility&=~Cs,Fb(e),(e.mode&mt)!==et&&0<=Xe&&0<=Je&&.05<Je-Xe&&Yn(e,Xe,Je,"Disconnect")):Rn(e);break;default:Rn(e)}(e.mode&mt)!==et&&0<=Xe&&0<=Je&&(Fa||.05<Ra)&&vi(e,Xe,Je,Ra,Da),al(a),Sn(i),Fa=d,Da=c}function Fb(e){var a=e.deletions;if((e.flags&16)!==0){if(a!==null)for(var i=0;i<a.length;i++){var c=a[i],d=da();Ol=c,So(c,e),(c.mode&mt)!==et&&0<=Xe&&0<=Je&&.05<Je-Xe&&Yn(c,Xe,Je,"Unmount"),al(d)}jh(e)}for(e=e.child;e!==null;)Yh(e),e=e.sibling}function Yh(e){var a=da(),i=Kn(),c=yn(),d=Zn();switch(e.tag){case 0:case 11:case 15:Nb(e,e.return,Fn),Fb(e);break;case 22:var m=e.stateNode;m._visibility&Cs&&(m._visibility&=~Cs,Fb(e));break;default:Fb(e)}(e.mode&mt)!==et&&0<=Xe&&0<=Je&&(Fa||.05<Ra)&&vi(e,Xe,Je,Ra,Da),al(a),Sn(i),Fa=d,Da=c}function So(e,a){for(;Ol!==null;){var i=Ol,c=i,d=a,m=da(),S=Kn(),C=yn(),x=Zn();switch(c.tag){case 0:case 11:case 15:Nb(c,d,Fn);break;case 23:case 22:c.memoizedState!==null&&c.memoizedState.cachePool!==null&&(d=c.memoizedState.cachePool.pool,d!=null&&Wu(d));break;case 24:Zf(c.memoizedState.cache)}if((c.mode&mt)!==et&&0<=Xe&&0<=Je&&(Fa||.05<Ra)&&vi(c,Xe,Je,Ra,Da),al(m),Sn(S),Fa=x,Da=C,c=i.child,c!==null)c.return=i,Ol=c;else e:for(i=e;Ol!==null;){if(c=Ol,m=c.sibling,S=c.return,Ga(c),c===i){Ol=null;break e}if(m!==null){m.return=S,Ol=m;break e}Ol=S}}}function Qh(){YM.forEach(function(e){return e()})}function Xh(){var e=typeof IS_REACT_ACT_ENVIRONMENT<"u"?IS_REACT_ACT_ENVIRONMENT:void 0;return e||fe.actQueue===null||console.error("The current testing environment is not configured to support act(...)"),e}function xl(e){if((_t&Ml)!==_l&&pt!==0)return pt&-pt;var a=fe.T;return a!==null?(a._updatedFibers||(a._updatedFibers=new Set),a._updatedFibers.add(e),i5()):Qo()}function Ac(){if(ri===0)if((pt&536870912)===0||zt){var e=Kd;Kd<<=1,(Kd&3932160)===0&&(Kd=262144),ri=e}else ri=536870912;return e=Ui.current,e!==null&&(e.flags|=32),ri}function at(e,a,i){if(X1&&console.error("useInsertionEffect must not schedule updates."),U9&&(dg=!0),(e===sa&&(na===d0||na===b0)||e.cancelPendingCommit!==null)&&(yo(e,0),ti(e,pt,ri,!1)),Ke(e,i),(_t&Ml)!==_l&&e===sa){if(zo)switch(a.tag){case 0:case 11:case 15:e=vt&&Ce(vt)||"Unknown",kv.has(e)||(kv.add(e),a=Ce(a)||"Unknown",console.error("Cannot update a component (`%s`) while rendering a different component (`%s`). To locate the bad setState() call inside `%s`, follow the stack trace as described in https://react.dev/link/setstate-in-render",a,e,e));break;case 1:Gv||(console.error("Cannot update during an existing state transition (such as within `render`). Render methods should be a pure function of props and state."),Gv=!0)}}else Ro&&Ha(e,a,i),Nd(a),e===sa&&((_t&Ml)===_l&&(mf|=i),Na===ff&&ti(e,pt,ri,!1)),un(e)}function W4(e,a,i){if((_t&(Ml|Pi))!==_l)throw Error("Should not already be working.");if(pt!==0&&vt!==null){var c=vt,d=ul();switch(R3){case m2:case d0:var m=Z5;pa&&((c=c._debugTask)?c.run(console.timeStamp.bind(console,"Suspended",m,d,Bo,void 0,"primary-light")):console.timeStamp("Suspended",m,d,Bo,void 0,"primary-light"));break;case b0:m=Z5,pa&&((c=c._debugTask)?c.run(console.timeStamp.bind(console,"Action",m,d,Bo,void 0,"primary-light")):console.timeStamp("Action",m,d,Bo,void 0,"primary-light"));break;default:pa&&(c=d-Z5,3>c||console.timeStamp("Blocked",Z5,d,Bo,void 0,5>c?"primary-light":10>c?"primary":100>c?"primary-dark":"error"))}}m=(i=!i&&(a&127)===0&&(a&e.expiredLanes)===0||ja(e,a))?fr(e,a):Lc(e,a,!0);var S=i;do{if(m===Os){Y1&&!i&&ti(e,a,0,!1),a=na,Z5=cl(),R3=a;break}else{if(c=ul(),d=e.current.alternate,S&&!q4(d)){Ti(a),d=Bl,m=c,!pa||m<=d||(qa?qa.run(console.timeStamp.bind(console,"Teared Render",d,m,Bt,Rt,"error")):console.timeStamp("Teared Render",d,m,Bt,Rt,"error")),au(a,c),m=Lc(e,a,!1),S=!1;continue}if(m===f0){if(S=a,e.errorRecoveryDisabledLanes&S)var C=0;else C=e.pendingLanes&-536870913,C=C!==0?C:C&536870912?536870912:0;if(C!==0){Ti(a),Km(Bl,c,a,qa),au(a,c),a=C;e:{c=e,m=S,S=p2;var x=c.current.memoizedState.isDehydrated;if(x&&(yo(c,C).flags|=256),C=Lc(c,C,!1),C!==f0){if(B9&&!x){c.errorRecoveryDisabledLanes|=m,mf|=m,m=ff;break e}c=Un,Un=S,c!==null&&(Un===null?Un=c:Un.push.apply(Un,c))}m=C}if(S=!1,m!==f0)continue;c=ul()}}if(m===b2){Ti(a),Km(Bl,c,a,qa),au(a,c),yo(e,0),ti(e,a,0,!0);break}e:{switch(i=e,m){case Os:case b2:throw Error("Root did not complete. This is a bug in React.");case ff:if((a&4194048)!==a)break;case ng:Ti(a),v4(Bl,c,a,qa),au(a,c),d=a,(d&127)!==0?Wp=c:(d&4194048)!==0&&(Vp=c),ti(i,a,ri,!df);break e;case f0:Un=null;break;case lg:case Av:break;default:throw Error("Unknown root exit status.")}if(fe.actQueue!==null)oa(i,d,a,Un,g2,rg,ri,mf,m0,m,null,null,Bl,c);else{if((a&62914560)===a&&(S=ug+Lv-ul(),10<S)){if(ti(i,a,ri,!df),Vs(i,0,!0)!==0)break e;Er=a,i.timeoutHandle=jv(V4.bind(null,i,d,Un,g2,rg,a,ri,mf,m0,df,m,"Throttled",Bl,c),S);break e}V4(i,d,Un,g2,rg,a,ri,mf,m0,df,m,null,Bl,c)}}}break}while(!0);un(e)}function V4(e,a,i,c,d,m,S,C,x,N,Q,Z,W,se){e.timeoutHandle=v0;var _e=a.subtreeFlags,Ue=null;if((_e&8192||(_e&16785408)===16785408)&&(Ue={stylesheets:null,count:0,imgCount:0,imgBytes:0,suspenseyImages:[],waitingForImages:!0,waitingForViewTransition:!1,unsuspend:jn},Gb(a,m,Ue),_e=(m&62914560)===m?ug-ul():(m&4194048)===m?Dv-ul():0,_e=i1(Ue,_e),_e!==null)){Er=m,e.cancelPendingCommit=_e(oa.bind(null,e,a,m,i,c,d,S,C,x,Q,Ue,Ue.waitingForViewTransition?"Waiting for the previous Animation":0<Ue.count?0<Ue.imgCount?"Suspended on CSS and Images":"Suspended on CSS":Ue.imgCount===1?"Suspended on an Image":0<Ue.imgCount?"Suspended on Images":null,W,se)),ti(e,m,S,!N);return}oa(e,a,m,i,c,d,S,C,x,Q,Ue,Z,W,se)}function q4(e){for(var a=e;;){var i=a.tag;if((i===0||i===11||i===15)&&a.flags&16384&&(i=a.updateQueue,i!==null&&(i=i.stores,i!==null)))for(var c=0;c<i.length;c++){var d=i[c],m=d.getSnapshot;d=d.value;try{if(!wn(m(),d))return!1}catch{return!1}}if(i=a.child,a.subtreeFlags&16384&&i!==null)i.return=a,a=i;else{if(a===e)break;for(;a.sibling===null;){if(a.return===null||a.return===e)return!0;a=a.return}a.sibling.return=a.return,a=a.sibling}}return!0}function ti(e,a,i,c){a&=~O9,a&=~mf,e.suspendedLanes|=a,e.pingedLanes&=~a,c&&(e.warmLanes|=a),c=e.expirationTimes;for(var d=a;0<d;){var m=31-Cl(d),S=1<<m;c[m]=-1,d&=~S}i!==0&&Ut(e,i,a)}function Nn(){return(_t&(Ml|Pi))===_l?(Eo(0),!1):!0}function Ub(){if(vt!==null){if(na===oi)var e=vt.return;else e=vt,nc(),Hr(e),k1=null,o2=0,e=vt;for(;e!==null;)_h(e.alternate,e),e=e.return;vt=null}}function au(e,a){(e&127)!==0&&(a0=a),(e&4194048)!==0&&(Ls=a),(e&62914560)!==0&&(z3=a),(e&2080374784)!==0&&(x3=a)}function yo(e,a){pa&&(console.timeStamp("Blocking Track",.003,.003,"Blocking",Rt,"primary-light"),console.timeStamp("Transition Track",.003,.003,"Transition",Rt,"primary-light"),console.timeStamp("Suspense Track",.003,.003,"Suspense",Rt,"primary-light"),console.timeStamp("Idle Track",.003,.003,"Idle",Rt,"primary-light"));var i=Bl;if(Bl=cl(),pt!==0&&0<i){if(Ti(pt),Na===lg||Na===ff)v4(i,Bl,a,qa);else{var c=Bl,d=qa;if(pa&&!(c<=i)){var m=(a&738197653)===a?"tertiary-dark":"primary-dark",S=(a&536870912)===a?"Prewarm":(a&201326741)===a?"Interrupted Hydration":"Interrupted Render";d?d.run(console.timeStamp.bind(console,S,i,c,Bt,Rt,m)):console.timeStamp(S,i,c,Bt,Rt,m)}}au(pt,Bl)}if(i=qa,qa=null,(a&127)!==0){qa=Q5,d=0<=bu&&bu<a0?a0:bu,c=0<=l0&&l0<a0?a0:l0,m=0<=c?c:0<=d?d:Bl,0<=Wp?(Ti(2),S4(Wp,m,a,i)):qp&127,i=d;var C=c,x=X5,N=0<I1,Q=rf===Y5,Z=rf===Pp;if(d=Bl,c=Q5,m=f9,S=d9,pa){if(Bt="Blocking",0<i?i>d&&(i=d):i=d,0<C?C>i&&(C=i):C=i,x!==null&&i>C){var W=N?"secondary-light":"warning";c?c.run(console.timeStamp.bind(console,N?"Consecutive":"Event: "+x,C,i,Bt,Rt,W)):console.timeStamp(N?"Consecutive":"Event: "+x,C,i,Bt,Rt,W)}d>i&&(C=Q?"error":(a&738197653)===a?"tertiary-light":"primary-light",Q=Z?"Promise Resolved":Q?"Cascading Update":5<d-i?"Update Blocked":"Update",Z=[],S!=null&&Z.push(["Component name",S]),m!=null&&Z.push(["Method name",m]),i={start:i,end:d,detail:{devtools:{properties:Z,track:Bt,trackGroup:Rt,color:C}}},c?c.run(performance.measure.bind(performance,Q,i)):performance.measure(Q,i))}bu=-1.1,rf=0,d9=f9=null,Wp=-1.1,I1=l0,l0=-1.1,a0=cl()}if((a&4194048)!==0&&(qa=K5,d=0<=zs&&zs<Ls?Ls:zs,i=0<=ko&&ko<Ls?Ls:ko,c=0<=uf&&uf<Ls?Ls:uf,m=0<=c?c:0<=i?i:Bl,0<=Vp?(Ti(256),S4(Vp,m,a,qa)):qp&4194048,Z=c,C=n0,x=0<sf,N=b9===Pp,m=Bl,c=K5,S=D3,Q=L3,pa&&(Bt="Transition",0<i?i>m&&(i=m):i=m,0<d?d>i&&(d=i):d=i,0<Z?Z>d&&(Z=d):Z=d,d>Z&&C!==null&&(W=x?"secondary-light":"warning",c?c.run(console.timeStamp.bind(console,x?"Consecutive":"Event: "+C,Z,d,Bt,Rt,W)):console.timeStamp(x?"Consecutive":"Event: "+C,Z,d,Bt,Rt,W)),i>d&&(c?c.run(console.timeStamp.bind(console,"Action",d,i,Bt,Rt,"primary-dark")):console.timeStamp("Action",d,i,Bt,Rt,"primary-dark")),m>i&&(d=N?"Promise Resolved":5<m-i?"Update Blocked":"Update",Z=[],Q!=null&&Z.push(["Component name",Q]),S!=null&&Z.push(["Method name",S]),i={start:i,end:m,detail:{devtools:{properties:Z,track:Bt,trackGroup:Rt,color:"primary-light"}}},c?c.run(performance.measure.bind(performance,d,i)):performance.measure(d,i))),ko=zs=-1.1,b9=0,Vp=-1.1,sf=uf,uf=-1.1,Ls=cl()),(a&62914560)!==0&&(qp&62914560)!==0&&(Ti(4194304),Zm(z3,Bl)),(a&2080374784)!==0&&(qp&2080374784)!==0&&(Ti(268435456),Zm(x3,Bl)),i=e.timeoutHandle,i!==v0&&(e.timeoutHandle=v0,oD(i)),i=e.cancelPendingCommit,i!==null&&(e.cancelPendingCommit=null,i()),Er=0,Ub(),sa=e,vt=i=io(e.current,null),pt=a,na=oi,Wi=null,df=!1,Y1=ja(e,a),B9=!1,Na=Os,m0=ri=O9=mf=bf=0,Un=p2=null,rg=!1,(a&8)!==0&&(a|=a&32),c=e.entangledLanes,c!==0)for(e=e.entanglements,c&=a;0<c;)d=31-Cl(c),m=1<<d,a|=e[d],c&=~m;return hu=a,J0(),e=S3(),1e3<e-v3&&(fe.recentlyCreatedOwnerStacks=0,v3=e),Sr.discardPendingWarnings(),i}function Ri(e,a){nt=null,fe.H=c2,fe.getCurrentStack=null,zo=!1,dn=null,a===G1||a===Xp?(a=ju(),na=m2):a===g9?(a=ju(),na=Mv):na=a===L9?N9:a!==null&&typeof a=="object"&&typeof a.then=="function"?h2:ig,Wi=a;var i=vt;i===null?(Na=b2,pd(e,Fl(a,e.current))):i.mode&mt&&ib(i)}function Kh(){var e=Ui.current;return e===null?!0:(pt&4194048)===pt?Fo===null:(pt&62914560)===pt||(pt&536870912)!==0?e===Fo:!1}function Hb(){var e=fe.H;return fe.H=c2,e===null?c2:e}function Zh(){var e=fe.A;return fe.A=jM,e}function Mc(e){qa===null&&(qa=e._debugTask==null?null:e._debugTask)}function Dc(){Na=ff,df||(pt&4194048)!==pt&&Ui.current!==null||(Y1=!0),(bf&134217727)===0&&(mf&134217727)===0||sa===null||ti(sa,pt,ri,!1)}function Lc(e,a,i){var c=_t;_t|=Ml;var d=Hb(),m=Zh();if(sa!==e||pt!==a){if(Ro){var S=e.memoizedUpdaters;0<S.size&&(xc(e,pt),S.clear()),Gl(e,a)}g2=null,yo(e,a)}a=!1,S=Na;e:do try{if(na!==oi&&vt!==null){var C=vt,x=Wi;switch(na){case N9:Ub(),S=ng;break e;case m2:case d0:case b0:case h2:Ui.current===null&&(a=!0);var N=na;if(na=oi,Wi=null,zc(e,C,x,N),i&&Y1){S=Os;break e}break;default:N=na,na=oi,Wi=null,zc(e,C,x,N)}}Jh(),S=Na;break}catch(Q){Ri(e,Q)}while(!0);return a&&e.shellSuspendCounter++,nc(),_t=c,fe.H=d,fe.A=m,vt===null&&(sa=null,pt=0,J0()),S}function Jh(){for(;vt!==null;)Pb(vt)}function fr(e,a){var i=_t;_t|=Ml;var c=Hb(),d=Zh();if(sa!==e||pt!==a){if(Ro){var m=e.memoizedUpdaters;0<m.size&&(xc(e,pt),m.clear()),Gl(e,a)}g2=null,sg=ul()+zv,yo(e,a)}else Y1=ja(e,a);e:do try{if(na!==oi&&vt!==null)t:switch(a=vt,m=Wi,na){case ig:na=oi,Wi=null,zc(e,a,m,ig);break;case d0:case b0:if(sh(m)){na=oi,Wi=null,$h(a);break}a=function(){na!==d0&&na!==b0||sa!==e||(na=og),un(e)},m.then(a,a);break e;case m2:na=og;break e;case Mv:na=R9;break e;case og:sh(m)?(na=oi,Wi=null,$h(a)):(na=oi,Wi=null,zc(e,a,m,og));break;case R9:var S=null;switch(vt.tag){case 26:S=vt.memoizedState;case 5:case 27:var C=vt;if(S?Ct(S):C.stateNode.complete){na=oi,Wi=null;var x=C.sibling;if(x!==null)vt=x;else{var N=C.return;N!==null?(vt=N,zd(N)):vt=null}break t}break;default:console.error("Unexpected type of fiber triggered a suspensey commit. This is a bug in React.")}na=oi,Wi=null,zc(e,a,m,R9);break;case h2:na=oi,Wi=null,zc(e,a,m,h2);break;case N9:Ub(),Na=ng;break e;default:throw Error("Unexpected SuspendedReason. This is a bug in React.")}fe.actQueue!==null?Jh():Wa();break}catch(Q){Ri(e,Q)}while(!0);return nc(),fe.H=c,fe.A=d,_t=i,vt!==null?Os:(sa=null,pt=0,J0(),Na)}function Wa(){for(;vt!==null&&!p1();)Pb(vt)}function Pb(e){var a=e.alternate;(e.mode&mt)!==et?(er(e),a=Ge(e,Sd,a,e,hu),ib(e)):a=Ge(e,Sd,a,e,hu),e.memoizedProps=e.pendingProps,a===null?zd(e):vt=a}function $h(e){var a=Ge(e,rl,e);e.memoizedProps=e.pendingProps,a===null?zd(e):vt=a}function rl(e){var a=e.alternate,i=(e.mode&mt)!==et;switch(i&&er(e),e.tag){case 15:case 0:a=zh(a,e,e.pendingProps,e.type,void 0,pt);break;case 11:a=zh(a,e,e.pendingProps,e.type.render,e.ref,pt);break;case 5:Hr(e);default:_h(a,e),e=vt=th(e,hu),a=Sd(a,e,hu)}return i&&ib(e),a}function zc(e,a,i,c){nc(),Hr(a),k1=null,o2=0;var d=a.return;try{if(yh(e,d,a,i,pt)){Na=b2,pd(e,Fl(i,e.current)),vt=null;return}}catch(m){if(d!==null)throw vt=d,m;Na=b2,pd(e,Fl(i,e.current)),vt=null;return}a.flags&32768?(zt||c===ig?e=!0:Y1||(pt&536870912)!==0?e=!1:(df=e=!0,(c===d0||c===b0||c===m2||c===h2)&&(c=Ui.current,c!==null&&c.tag===13&&(c.flags|=16384))),e5(a,e)):zd(a)}function zd(e){var a=e;do{if((a.flags&32768)!==0){e5(a,df);return}var i=a.alternate;if(e=a.return,er(a),i=Ge(a,Oh,i,a,hu),(a.mode&mt)!==et&&Jf(a),i!==null){vt=i;return}if(a=a.sibling,a!==null){vt=a;return}vt=a=e}while(a!==null);Na===Os&&(Na=Av)}function e5(e,a){do{var i=w4(e.alternate,e);if(i!==null){i.flags&=32767,vt=i;return}if((e.mode&mt)!==et){Jf(e),i=e.actualDuration;for(var c=e.child;c!==null;)i+=c.actualDuration,c=c.sibling;e.actualDuration=i}if(i=e.return,i!==null&&(i.flags|=32768,i.subtreeFlags=0,i.deletions=null),!a&&(e=e.sibling,e!==null)){vt=e;return}vt=e=i}while(e!==null);Na=ng,vt=null}function oa(e,a,i,c,d,m,S,C,x,N,Q,Z,W,se){e.cancelPendingCommit=null;do xd();while(hl!==pf);if(Sr.flushLegacyContextWarning(),Sr.flushPendingUnsafeLifecycleWarnings(),(_t&(Ml|Pi))!==_l)throw Error("Should not already be working.");if(Ti(i),N===f0?Km(W,se,i,qa):c!==null?_8(W,se,i,c,a!==null&&a.alternate!==null&&a.alternate.memoizedState.isDehydrated&&(a.flags&256)!==0,qa):O8(W,se,i,qa),a!==null){if(i===0&&console.error("finishedLanes should not be empty during a commit. This is a bug in React."),a===e.current)throw Error("Cannot commit the same tree as before. This error is likely caused by a bug in React. Please file an issue.");if(m=a.lanes|a.childLanes,m|=o9,Et(e,i,m,S,C,x),e===sa&&(vt=sa=null,pt=0),Q1=a,gf=e,Er=i,w9=m,k9=d,_v=c,G9=se,Iv=Z,Ar=cg,wv=null,a.actualDuration!==0||(a.subtreeFlags&10256)!==0||(a.flags&10256)!==0?(e.callbackNode=null,e.callbackPriority=0,Rc(Ts,function(){return E2=window.event,Ar===cg&&(Ar=I9),Rd(),null})):(e.callbackNode=null,e.callbackPriority=0),Ds=null,of=cl(),Z!==null&&I8(se,of,Z,qa),c=(a.flags&13878)!==0,(a.subtreeFlags&13878)!==0||c){c=fe.T,fe.T=null,d=Wt.p,Wt.p=Za,S=_t,_t|=Pi;try{k8(e,a,i)}finally{_t=S,Wt.p=d,fe.T=c}}hl=Rv,Ql(),Co(),t5()}}function Ql(){if(hl===Rv){hl=pf;var e=gf,a=Q1,i=Er,c=(a.flags&13878)!==0;if((a.subtreeFlags&13878)!==0||c){c=fe.T,fe.T=null;var d=Wt.p;Wt.p=Za;var m=_t;_t|=Pi;try{q1=i,j1=e,Vu(),Ad(a,e),j1=q1=null,i=X9;var S=X0(e.containerInfo),C=i.focusedElem,x=i.selectionRange;if(S!==C&&C&&C.ownerDocument&&h4(C.ownerDocument.documentElement,C)){if(x!==null&&Ym(C)){var N=x.start,Q=x.end;if(Q===void 0&&(Q=N),"selectionStart"in C)C.selectionStart=N,C.selectionEnd=Math.min(Q,C.value.length);else{var Z=C.ownerDocument||document,W=Z&&Z.defaultView||window;if(W.getSelection){var se=W.getSelection(),_e=C.textContent.length,Ue=Math.min(x.start,_e),fa=x.end===void 0?Ue:Math.min(x.end,_e);!se.extend&&Ue>fa&&(S=fa,fa=Ue,Ue=S);var Nt=m4(C,Ue),H=m4(C,fa);if(Nt&&H&&(se.rangeCount!==1||se.anchorNode!==Nt.node||se.anchorOffset!==Nt.offset||se.focusNode!==H.node||se.focusOffset!==H.offset)){var q=Z.createRange();q.setStart(Nt.node,Nt.offset),se.removeAllRanges(),Ue>fa?(se.addRange(q),se.extend(H.node,H.offset)):(q.setEnd(H.node,H.offset),se.addRange(q))}}}}for(Z=[],se=C;se=se.parentNode;)se.nodeType===1&&Z.push({element:se,left:se.scrollLeft,top:se.scrollTop});for(typeof C.focus=="function"&&C.focus(),C=0;C<Z.length;C++){var Y=Z[C];Y.element.scrollLeft=Y.left,Y.element.scrollTop=Y.top}}Dg=!!Q9,X9=Q9=null}finally{_t=m,Wt.p=d,fe.T=c}}e.current=a,hl=Nv}}function Co(){if(hl===Nv){hl=pf;var e=wv;if(e!==null){of=cl();var a=Ms,i=of;!pa||i<=a||console.timeStamp(e,a,i,Bt,Rt,"secondary-light")}e=gf,a=Q1,i=Er;var c=(a.flags&8772)!==0;if((a.subtreeFlags&8772)!==0||c){c=fe.T,fe.T=null;var d=Wt.p;Wt.p=Za;var m=_t;_t|=Pi;try{q1=i,j1=e,Vu(),Ib(e,a.alternate,a),j1=q1=null}finally{_t=m,Wt.p=d,fe.T=c}}e=G9,a=Iv,Ms=cl(),e=a===null?e:of,a=Ms,i=Ar===_9,c=qa,Ds!==null?y4(e,a,Ds,!1,c):!pa||a<=e||(c?c.run(console.timeStamp.bind(console,i?"Commit Interrupted View Transition":"Commit",e,a,Bt,Rt,i?"error":"secondary-dark")):console.timeStamp(i?"Commit Interrupted View Transition":"Commit",e,a,Bt,Rt,i?"error":"secondary-dark")),hl=Bv}}function t5(){if(hl===Ov||hl===Bv){if(hl===Ov){var e=Ms;Ms=cl();var a=Ms,i=Ar===_9;!pa||a<=e||console.timeStamp(i?"Interrupted View Transition":"Starting Animation",e,a,Bt,Rt,i?" error":"secondary-light"),Ar!==_9&&(Ar=xv)}hl=pf,g1(),e=gf;var c=Q1;a=Er,i=_v;var d=c.actualDuration!==0||(c.subtreeFlags&10256)!==0||(c.flags&10256)!==0;d?hl=fg:(hl=pf,Q1=gf=null,a5(e,e.pendingLanes),h0=0,v2=null);var m=e.pendingLanes;if(m===0&&(hf=null),d||qb(e),m=Zt(a),c=c.stateNode,Ka&&typeof Ka.onCommitFiberRoot=="function")try{var S=(c.current.flags&128)===128;switch(m){case Za:var C=B5;break;case El:C=T1;break;case Nl:C=Ts;break;case cu:C=v1;break;default:C=Ts}Ka.onCommitFiberRoot(vs,c,C,S)}catch(Z){xo||(xo=!0,console.error("React instrumentation encountered an error: %o",Z))}if(Ro&&e.memoizedUpdaters.clear(),Qh(),i!==null){S=fe.T,C=Wt.p,Wt.p=Za,fe.T=null;try{var x=e.onRecoverableError;for(c=0;c<i.length;c++){var N=i[c],Q=j4(N.stack);Ge(N.source,x,N.value,Q)}}finally{fe.T=S,Wt.p=C}}(Er&3)!==0&&xd(),un(e),m=e.pendingLanes,(a&261930)!==0&&(m&42)!==0?(Yp=!0,e===F9?T2++:(T2=0,F9=e)):T2=0,d||au(a,Ms),Eo(0)}}function j4(e){return e={componentStack:e},Object.defineProperty(e,"digest",{get:function(){console.error('You are accessing "digest" from the errorInfo object passed to onRecoverableError. This property is no longer provided as part of errorInfo but can be accessed as a property of the Error instance itself.')}}),e}function a5(e,a){(e.pooledCacheLanes&=a)===0&&(a=e.pooledCache,a!=null&&(e.pooledCache=null,Zf(a)))}function xd(){return Ql(),Co(),t5(),Rd()}function Rd(){if(hl!==fg)return!1;var e=gf,a=w9;w9=0;var i=Zt(Er),c=Nl>i?Nl:i;i=fe.T;var d=Wt.p;try{Wt.p=c,fe.T=null;var m=k9;k9=null,c=gf;var S=Er;if(hl=pf,Q1=gf=null,Er=0,(_t&(Ml|Pi))!==_l)throw Error("Cannot flush passive effects while already rendering.");Ti(S),U9=!0,dg=!1;var C=0;if(Ds=null,C=ul(),Ar===xv)Zm(Ms,C,FM);else{var x=Ms,N=C,Q=Ar===I9;!pa||N<=x||(qa?qa.run(console.timeStamp.bind(console,Q?"Waiting for Paint":"Waiting",x,N,Bt,Rt,"secondary-light")):console.timeStamp(Q?"Waiting for Paint":"Waiting",x,N,Bt,Rt,"secondary-light"))}x=_t,_t|=Pi;var Z=c.current;Vu(),kb(Z);var W=c.current;Z=G9,Vu(),qh(c,W,S,m,Z),qb(c),_t=x;var se=ul();if(W=C,Z=qa,Ds!==null?y4(W,se,Ds,!0,Z):!pa||se<=W||(Z?Z.run(console.timeStamp.bind(console,"Remaining Effects",W,se,Bt,Rt,"secondary-dark")):console.timeStamp("Remaining Effects",W,se,Bt,Rt,"secondary-dark")),au(S,se),Eo(0,!1),dg?c===v2?h0++:(h0=0,v2=c):h0=0,dg=U9=!1,Ka&&typeof Ka.onPostCommitFiberRoot=="function")try{Ka.onPostCommitFiberRoot(vs,c)}catch(Ue){xo||(xo=!0,console.error("React instrumentation encountered an error: %o",Ue))}var _e=c.current.stateNode;return _e.effectDuration=0,_e.passiveEffectDuration=0,!0}finally{Wt.p=d,fe.T=i,a5(e,a)}}function Xl(e,a,i){a=Fl(i,a),L4(a),a=yb(e.stateNode,a,2),e=so(e,a,2),e!==null&&(Ke(e,2),un(e))}function ct(e,a,i){if(X1=!1,e.tag===3)Xl(e,e,i);else{for(;a!==null;){if(a.tag===3){Xl(a,e,i);return}if(a.tag===1){var c=a.stateNode;if(typeof a.type.getDerivedStateFromError=="function"||typeof c.componentDidCatch=="function"&&(hf===null||!hf.has(c))){e=Fl(i,e),L4(e),i=Cb(2),c=so(a,i,2),c!==null&&(Eb(i,c,a,e),Ke(c,2),un(c));return}}a=a.return}console.error(`Internal React error: Attempted to capture a commit phase error inside a detached tree. This indicates a bug in React. Potential causes include deleting the same fiber more than once, committing an already-finished tree, or an inconsistent return pointer.
178
+
179
+ Error message:
180
+
181
+ %s`,i)}}function Wb(e,a,i){var c=e.pingCache;if(c===null){c=e.pingCache=new QM;var d=new Set;c.set(a,d)}else d=c.get(a),d===void 0&&(d=new Set,c.set(a,d));d.has(i)||(B9=!0,d.add(i),c=rn.bind(null,e,a,i),Ro&&xc(e,i),a.then(c,c))}function rn(e,a,i){var c=e.pingCache;c!==null&&c.delete(a),e.pingedLanes|=e.suspendedLanes&i,e.warmLanes&=~i,(i&127)!==0?0>bu&&(a0=bu=cl(),Q5=Hp("Promise Resolved"),rf=Pp):(i&4194048)!==0&&0>ko&&(Ls=ko=cl(),K5=Hp("Promise Resolved"),b9=Pp),Xh()&&fe.actQueue===null&&console.error(`A suspended resource finished loading inside a test, but the event was not wrapped in act(...).
182
+
183
+ When testing, code that resolves suspended data should be wrapped into act(...):
184
+
185
+ act(() => {
186
+ /* finish loading suspended data */
187
+ });
188
+ /* assert on the output */
189
+
190
+ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act`),sa===e&&(pt&i)===i&&(Na===ff||Na===lg&&(pt&62914560)===pt&&ul()-ug<Lv?(_t&Ml)===_l&&yo(e,0):O9|=i,m0===pt&&(m0=0)),un(e)}function l5(e,a){a===0&&(a=ve()),e=Ll(e,a),e!==null&&(Ke(e,a),un(e))}function dr(e){var a=e.memoizedState,i=0;a!==null&&(i=a.retryLane),l5(e,i)}function ss(e,a){var i=0;switch(e.tag){case 31:case 13:var c=e.stateNode,d=e.memoizedState;d!==null&&(i=d.retryLane);break;case 19:c=e.stateNode;break;case 22:c=e.stateNode._retryCache;break;default:throw Error("Pinged unknown suspense boundary type. This is probably a bug in React.")}c!==null&&c.delete(a),l5(e,i)}function Ni(e,a,i){if((a.subtreeFlags&67117056)!==0)for(a=a.child;a!==null;){var c=e,d=a,m=d.type===Jl;m=i||m,d.tag!==22?d.flags&67108864?m&&Ge(d,Vb,c,d):Ni(c,d,m):d.memoizedState===null&&(m&&d.flags&8192?Ge(d,Vb,c,d):d.subtreeFlags&67108864&&Ge(d,Ni,c,d,m)),a=a.sibling}}function Vb(e,a){Kt(!0);try{wb(a),Yh(a),Vh(e,a.alternate,a,!1),Ld(e,a,0,null,!1,0)}finally{Kt(!1)}}function qb(e){var a=!0;e.current.mode&(bn|vr)||(a=!1),Ni(e,e.current,a)}function ai(e){if((_t&Ml)===_l){var a=e.tag;if(a===3||a===1||a===0||a===11||a===14||a===15){if(a=Ce(e)||"ReactComponent",bg!==null){if(bg.has(a))return;bg.add(a)}else bg=new Set([a]);Ge(e,function(){console.error("Can't perform a React state update on a component that hasn't mounted yet. This indicates that you have a side-effect in your render function that asynchronously tries to update the component. Move this work to useEffect instead.")})}}}function xc(e,a){Ro&&e.memoizedUpdaters.forEach(function(i){Ha(e,i,a)})}function Rc(e,a){var i=fe.actQueue;return i!==null?(i.push(a),ZM):N5(e,a)}function Nd(e){Xh()&&fe.actQueue===null&&Ge(e,function(){console.error(`An update to %s inside a test was not wrapped in act(...).
191
+
192
+ When testing, code that causes React state updates should be wrapped into act(...):
193
+
194
+ act(() => {
195
+ /* fire events that update state */
196
+ });
197
+ /* assert on the output */
198
+
199
+ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act`,Ce(e))})}function un(e){e!==K1&&e.next===null&&(K1===null?mg=K1=e:K1=K1.next=e),hg=!0,fe.actQueue!==null?P9||(P9=!0,Q4()):H9||(H9=!0,Q4())}function Eo(e,a){if(!W9&&hg){W9=!0;do for(var i=!1,c=mg;c!==null;){if(e!==0){var d=c.pendingLanes;if(d===0)var m=0;else{var S=c.suspendedLanes,C=c.pingedLanes;m=(1<<31-Cl(42|e)+1)-1,m&=d&~(S&~C),m=m&201326741?m&201326741|1:m?m|2:0}m!==0&&(i=!0,Bd(c,m))}else m=pt,m=Vs(c,c===sa?m:0,c.cancelPendingCommit!==null||c.timeoutHandle!==v0),(m&3)===0||ja(c,m)||(i=!0,Bd(c,m));c=c.next}while(i);W9=!1}}function Y4(){E2=window.event,jb()}function jb(){hg=P9=H9=!1;var e=0;Tf!==0&&r5()&&(e=Tf);for(var a=ul(),i=null,c=mg;c!==null;){var d=c.next,m=Nc(c,a);m===0?(c.next=null,i===null?mg=d:i.next=d,d===null&&(K1=i)):(i=c,(e!==0||(m&3)!==0)&&(hg=!0)),c=d}hl!==pf&&hl!==fg||Eo(e),Tf!==0&&(Tf=0)}function Nc(e,a){for(var i=e.suspendedLanes,c=e.pingedLanes,d=e.expirationTimes,m=e.pendingLanes&-62914561;0<m;){var S=31-Cl(m),C=1<<S,x=d[S];x===-1?((C&i)===0||(C&c)!==0)&&(d[S]=Nm(C,a)):x<=a&&(e.expiredLanes|=C),m&=~C}if(a=sa,i=pt,i=Vs(e,e===a?i:0,e.cancelPendingCommit!==null||e.timeoutHandle!==v0),c=e.callbackNode,i===0||e===a&&(na===d0||na===b0)||e.cancelPendingCommit!==null)return c!==null&&Yb(c),e.callbackNode=null,e.callbackPriority=0;if((i&3)===0||ja(e,i)){if(a=i&-i,a!==e.callbackPriority||fe.actQueue!==null&&c!==V9)Yb(c);else return a;switch(Zt(i)){case Za:case El:i=T1;break;case Nl:i=Ts;break;case cu:i=v1;break;default:i=Ts}return c=n5.bind(null,e),fe.actQueue!==null?(fe.actQueue.push(c),i=V9):i=N5(i,c),e.callbackPriority=a,e.callbackNode=i,a}return c!==null&&Yb(c),e.callbackPriority=2,e.callbackNode=null,2}function n5(e,a){if(Yp=jp=!1,E2=window.event,hl!==pf&&hl!==fg)return e.callbackNode=null,e.callbackPriority=0,null;var i=e.callbackNode;if(Ar===cg&&(Ar=I9),xd()&&e.callbackNode!==i)return null;var c=pt;return c=Vs(e,e===sa?c:0,e.cancelPendingCommit!==null||e.timeoutHandle!==v0),c===0?null:(W4(e,c,a),Nc(e,ul()),e.callbackNode!=null&&e.callbackNode===i?n5.bind(null,e):null)}function Bd(e,a){if(xd())return null;jp=Yp,Yp=!1,W4(e,a,!0)}function Yb(e){e!==V9&&e!==null&&h1(e)}function Q4(){fe.actQueue!==null&&fe.actQueue.push(function(){return jb(),null}),rD(function(){(_t&(Ml|Pi))!==_l?N5(B5,Y4):jb()})}function i5(){if(Tf===0){var e=i0;e===0&&(e=Xc,Xc<<=1,(Xc&261888)===0&&(Xc=256)),Tf=e}return Tf}function wt(e){return e==null||typeof e=="symbol"||typeof e=="boolean"?null:typeof e=="function"?e:(Ft(e,"action"),Hf(""+e))}function ta(e,a){var i=a.ownerDocument.createElement("input");return i.name=a.name,i.value=a.value,e.id&&i.setAttribute("form",e.id),a.parentNode.insertBefore(i,a),e=new FormData(e),i.parentNode.removeChild(i),e}function Mt(e,a,i,c,d){if(a==="submit"&&i&&i.stateNode===d){var m=wt((d[$l]||null).action),S=c.submitter;S&&(a=(a=S[$l]||null)?wt(a.formAction):S.getAttribute("formAction"),a!==null&&(m=a,S=null));var C=new _p("action","action",null,c,d);e.push({event:C,listeners:[{instance:null,listener:function(){if(c.defaultPrevented){if(Tf!==0){var x=S?ta(d,S):new FormData(d),N={pending:!0,data:x,method:d.method,action:m};Object.freeze(N),ur(i,N,null,x)}}else typeof m=="function"&&(C.preventDefault(),x=S?ta(d,S):new FormData(d),N={pending:!0,data:x,method:d.method,action:m},Object.freeze(N),ur(i,N,m,x))},currentTarget:d}]})}}function Tt(e,a,i){e.currentTarget=i;try{a(e)}catch(c){a9(c)}e.currentTarget=null}function Yt(e,a){a=(a&4)!==0;for(var i=0;i<e.length;i++){var c=e[i];e:{var d=void 0,m=c.event;if(c=c.listeners,a)for(var S=c.length-1;0<=S;S--){var C=c[S],x=C.instance,N=C.currentTarget;if(C=C.listener,x!==d&&m.isPropagationStopped())break e;x!==null?Ge(x,Tt,m,C,N):Tt(m,C,N),d=x}else for(S=0;S<c.length;S++){if(C=c[S],x=C.instance,N=C.currentTarget,C=C.listener,x!==d&&m.isPropagationStopped())break e;x!==null?Ge(x,Tt,m,C,N):Tt(m,C,N),d=x}}}}function $e(e,a){q9.has(e)||console.error('Did not expect a listenToNonDelegatedEvent() call for "%s". This is a bug in React. Please file an issue.',e);var i=a[Ss];i===void 0&&(i=a[Ss]=new Set);var c=e+"__bubble";i.has(c)||(Qb(a,e,2,!1),i.add(c))}function Ao(e,a,i){q9.has(e)&&!a&&console.error('Did not expect a listenToNativeEvent() call for "%s" in the bubble phase. This is a bug in React. Please file an issue.',e);var c=0;a&&(c|=4),Qb(i,e,c,a)}function lu(e){if(!e[pg]){e[pg]=!0,xp.forEach(function(i){i!=="selectionchange"&&(q9.has(i)||Ao(i,!1,e),Ao(i,!0,e))});var a=e.nodeType===9?e:e.ownerDocument;a===null||a[pg]||(a[pg]=!0,Ao("selectionchange",!1,a))}}function Qb(e,a,i,c){switch(u1(a)){case Za:var d=S5;break;case El:d=yl;break;default:d=y5}i=d.bind(null,a,i,e),d=void 0,!j8||a!=="touchstart"&&a!=="touchmove"&&a!=="wheel"||(d=!0),c?d!==void 0?e.addEventListener(a,i,{capture:!0,passive:d}):e.addEventListener(a,i,!0):d!==void 0?e.addEventListener(a,i,{passive:d}):e.addEventListener(a,i,!1)}function Bi(e,a,i,c,d){var m=c;if((a&1)===0&&(a&2)===0&&c!==null)e:for(;;){if(c===null)return;var S=c.tag;if(S===3||S===4){var C=c.stateNode.containerInfo;if(C===d)break;if(S===4)for(S=c.return;S!==null;){var x=S.tag;if((x===3||x===4)&&S.stateNode.containerInfo===d)return;S=S.return}for(;C!==null;){if(S=Xo(C),S===null)return;if(x=S.tag,x===5||x===6||x===26||x===27){c=m=S;continue e}C=C.parentNode}}c=c.return}q0(function(){var N=m,Q=pi(i),Z=[];e:{var W=T3.get(e);if(W!==void 0){var se=_p,_e=e;switch(e){case"keypress":if(Pf(i)===0)break e;case"keydown":case"keyup":se=dM;break;case"focusin":_e="focus",se=K8;break;case"focusout":_e="blur",se=K8;break;case"beforeblur":case"afterblur":se=K8;break;case"click":if(i.button===2)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":se=n3;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":se=eM;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":se=hM;break;case m3:case h3:case p3:se=lM;break;case g3:se=gM;break;case"scroll":case"scrollend":se=JA;break;case"wheel":se=vM;break;case"copy":case"cut":case"paste":se=iM;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":se=o3;break;case"toggle":case"beforetoggle":se=yM}var Ue=(a&4)!==0,fa=!Ue&&(e==="scroll"||e==="scrollend"),Nt=Ue?W!==null?W+"Capture":null:W;Ue=[];for(var H=N,q;H!==null;){var Y=H;if(q=Y.stateNode,Y=Y.tag,Y!==5&&Y!==26&&Y!==27||q===null||Nt===null||(Y=lo(H,Nt),Y!=null&&Ue.push(ra(H,Y,q))),fa)break;H=H.return}0<Ue.length&&(W=new se(W,_e,null,i,Q),Z.push({event:W,listeners:Ue}))}}if((a&7)===0){e:{if(W=e==="mouseover"||e==="pointerover",se=e==="mouseout"||e==="pointerout",W&&i!==G5&&(_e=i.relatedTarget||i.fromElement)&&(Xo(_e)||_e[Tr]))break e;if((se||W)&&(W=Q.window===Q?Q:(W=Q.ownerDocument)?W.defaultView||W.parentWindow:window,se?(_e=i.relatedTarget||i.toElement,se=N,_e=_e?Xo(_e):null,_e!==null&&(fa=F(_e),Ue=_e.tag,_e!==fa||Ue!==5&&Ue!==27&&Ue!==6)&&(_e=null)):(se=null,_e=N),se!==_e)){if(Ue=n3,Y="onMouseLeave",Nt="onMouseEnter",H="mouse",(e==="pointerout"||e==="pointerover")&&(Ue=o3,Y="onPointerLeave",Nt="onPointerEnter",H="pointer"),fa=se==null?W:xr(se),q=_e==null?W:xr(_e),W=new Ue(Y,H+"leave",se,i,Q),W.target=fa,W.relatedTarget=q,Y=null,Xo(Q)===N&&(Ue=new Ue(Nt,H+"enter",_e,i,Q),Ue.target=q,Ue.relatedTarget=fa,Y=Ue),fa=Y,se&&_e)t:{for(Ue=cs,Nt=se,H=_e,q=0,Y=Nt;Y;Y=Ue(Y))q++;Y=0;for(var pe=H;pe;pe=Ue(pe))Y++;for(;0<q-Y;)Nt=Ue(Nt),q--;for(;0<Y-q;)H=Ue(H),Y--;for(;q--;){if(Nt===H||H!==null&&Nt===H.alternate){Ue=Nt;break t}Nt=Ue(Nt),H=Ue(H)}Ue=null}else Ue=null;se!==null&&Xb(Z,W,se,Ue,!1),_e!==null&&fa!==null&&Xb(Z,fa,_e,Ue,!0)}}e:{if(W=N?xr(N):window,se=W.nodeName&&W.nodeName.toLowerCase(),se==="select"||se==="input"&&W.type==="file")var Fe=Or;else if(Vm(W))if(d3)Fe=jf;else{Fe=qm;var it=B8}else se=W.nodeName,!se||se.toLowerCase()!=="input"||W.type!=="checkbox"&&W.type!=="radio"?N&&ao(N.elementType)&&(Fe=Or):Fe=jm;if(Fe&&(Fe=Fe(e,N))){Vf(Z,Fe,i,Q);break e}it&&it(e,W,N),e==="focusout"&&N&&W.type==="number"&&N.memoizedProps.value!=null&&Im(W,"number",W.value)}switch(it=N?xr(N):window,e){case"focusin":(Vm(it)||it.contentEditable==="true")&&(L1=it,J8=N,V5=null);break;case"focusout":V5=J8=L1=null;break;case"mousedown":$8=!0;break;case"contextmenu":case"mouseup":case"dragend":$8=!1,p4(Z,i,Q);break;case"selectionchange":if(MM)break;case"keydown":case"keyup":p4(Z,i,Q)}var Qe;if(Z8)e:{switch(e){case"compositionstart":var je="onCompositionStart";break e;case"compositionend":je="onCompositionEnd";break e;case"compositionupdate":je="onCompositionUpdate";break e}je=void 0}else D1?$s(e,i)&&(je="onCompositionEnd"):e==="keydown"&&i.keyCode===r3&&(je="onCompositionStart");je&&(u3&&i.locale!=="ko"&&(D1||je!=="onCompositionStart"?je==="onCompositionEnd"&&D1&&(Qe=_u()):(ef=Q,Y8="value"in ef?ef.value:ef.textContent,D1=!0)),it=Oi(N,je),0<it.length&&(je=new i3(je,e,null,i,Q),Z.push({event:je,listeners:it}),Qe?je.data=Qe:(Qe=Jo(i),Qe!==null&&(je.data=Qe)))),(Qe=EM?Wm(e,i):j0(e,i))&&(je=Oi(N,"onBeforeInput"),0<je.length&&(it=new rM("onBeforeInput","beforeinput",null,i,Q),Z.push({event:it,listeners:je}),it.data=Qe)),Mt(Z,e,N,i,Q)}Yt(Z,a)})}function ra(e,a,i){return{instance:e,listener:a,currentTarget:i}}function Oi(e,a){for(var i=a+"Capture",c=[];e!==null;){var d=e,m=d.stateNode;if(d=d.tag,d!==5&&d!==26&&d!==27||m===null||(d=lo(e,i),d!=null&&c.unshift(ra(e,d,m)),d=lo(e,a),d!=null&&c.push(ra(e,d,m))),e.tag===3)return c;e=e.return}return[]}function cs(e){if(e===null)return null;do e=e.return;while(e&&e.tag!==5&&e.tag!==27);return e||null}function Xb(e,a,i,c,d){for(var m=a._reactName,S=[];i!==null&&i!==c;){var C=i,x=C.alternate,N=C.stateNode;if(C=C.tag,x!==null&&x===c)break;C!==5&&C!==26&&C!==27||N===null||(x=N,d?(N=lo(i,m),N!=null&&S.unshift(ra(i,N,x))):d||(N=lo(i,m),N!=null&&S.push(ra(i,N,x)))),i=i.return}S.length!==0&&e.push({event:a,listeners:S})}function Kl(e,a){f4(e,a),e!=="input"&&e!=="textarea"&&e!=="select"||a==null||a.value!==null||a3||(a3=!0,e==="select"&&a.multiple?console.error("`value` prop on `%s` should not be null. Consider using an empty array when `multiple` is set to `true` to clear the component or `undefined` for uncontrolled components.",e):console.error("`value` prop on `%s` should not be null. Consider using an empty string to clear the component or `undefined` for uncontrolled components.",e));var i={registrationNameDependencies:No,possibleRegistrationNames:Jc};ao(e)||typeof a.is=="string"||N8(e,a,i),a.contentEditable&&!a.suppressContentEditableWarning&&a.children!=null&&console.error("A component is `contentEditable` and contains `children` managed by React. It is now your responsibility to guarantee that none of those nodes are unexpectedly modified or duplicated. This is probably not intentional.")}function Aa(e,a,i,c){a!==i&&(i=_i(i),_i(a)!==i&&(c[e]=a))}function Od(e,a,i){a.forEach(function(c){i[br(c)]=c==="style"?nu(e):e.getAttribute(c)})}function Ma(e,a){a===!1?console.error("Expected `%s` listener to be a function, instead got `false`.\n\nIf you used to conditionally omit it with %s={condition && value}, pass %s={condition ? value : undefined} instead.",e,e,e):console.error("Expected `%s` listener to be a function, instead got a value of `%s` type.",e,typeof a)}function Kb(e,a){return e=e.namespaceURI===ut||e.namespaceURI===ft?e.ownerDocument.createElementNS(e.namespaceURI,e.tagName):e.ownerDocument.createElement(e.tagName),e.innerHTML=a,e.innerHTML}function _i(e){return Wn(e)&&(console.error("The provided HTML markup uses a value of unsupported type %s. This value must be coerced to a string before using it here.",Pn(e)),Zi(e)),(typeof e=="string"?e:""+e).replace(JM,`
200
+ `).replace($M,"")}function o5(e,a){return a=_i(a),_i(e)===a}function Pt(e,a,i,c,d,m){switch(i){case"children":typeof c=="string"?(Uf(c,a,!1),a==="body"||a==="textarea"&&c===""||Ou(e,c)):(typeof c=="number"||typeof c=="bigint")&&(Uf(""+c,a,!1),a!=="body"&&Ou(e,""+c));break;case"className":Gf(e,"class",c);break;case"tabIndex":Gf(e,"tabindex",c);break;case"dir":case"role":case"viewBox":case"width":case"height":Gf(e,i,c);break;case"style":Um(e,c,m);break;case"data":if(a!=="object"){Gf(e,"data",c);break}case"src":case"href":if(c===""&&(a!=="a"||i!=="href")){console.error(i==="src"?'An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.':'An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.',i,i),e.removeAttribute(i);break}if(c==null||typeof c=="function"||typeof c=="symbol"||typeof c=="boolean"){e.removeAttribute(i);break}Ft(c,i),c=Hf(""+c),e.setAttribute(i,c);break;case"action":case"formAction":if(c!=null&&(a==="form"?i==="formAction"?console.error("You can only pass the formAction prop to <input> or <button>. Use the action prop on <form>."):typeof c=="function"&&(d.encType==null&&d.method==null||vg||(vg=!0,console.error("Cannot specify a encType or method for a form that specifies a function as the action. React provides those automatically. They will get overridden.")),d.target==null||Tg||(Tg=!0,console.error("Cannot specify a target for a form that specifies a function as the action. The function will always be executed in the same window."))):a==="input"||a==="button"?i==="action"?console.error("You can only pass the action prop to <form>. Use the formAction prop on <input> or <button>."):a!=="input"||d.type==="submit"||d.type==="image"||gg?a!=="button"||d.type==null||d.type==="submit"||gg?typeof c=="function"&&(d.name==null||Hv||(Hv=!0,console.error('Cannot specify a "name" prop for a button that specifies a function as a formAction. React needs it to encode which action should be invoked. It will get overridden.')),d.formEncType==null&&d.formMethod==null||vg||(vg=!0,console.error("Cannot specify a formEncType or formMethod for a button that specifies a function as a formAction. React provides those automatically. They will get overridden.")),d.formTarget==null||Tg||(Tg=!0,console.error("Cannot specify a formTarget for a button that specifies a function as a formAction. The function will always be executed in the same window."))):(gg=!0,console.error('A button can only specify a formAction along with type="submit" or no type.')):(gg=!0,console.error('An input can only specify a formAction along with type="submit" or type="image".')):console.error(i==="action"?"You can only pass the action prop to <form>.":"You can only pass the formAction prop to <input> or <button>.")),typeof c=="function"){e.setAttribute(i,"javascript:throw new Error('A React form was unexpectedly submitted. If you called form.submit() manually, consider using form.requestSubmit() instead. If you\\'re trying to use event.stopPropagation() in a submit event handler, consider also calling event.preventDefault().')");break}else typeof m=="function"&&(i==="formAction"?(a!=="input"&&Pt(e,a,"name",d.name,d,null),Pt(e,a,"formEncType",d.formEncType,d,null),Pt(e,a,"formMethod",d.formMethod,d,null),Pt(e,a,"formTarget",d.formTarget,d,null)):(Pt(e,a,"encType",d.encType,d,null),Pt(e,a,"method",d.method,d,null),Pt(e,a,"target",d.target,d,null)));if(c==null||typeof c=="symbol"||typeof c=="boolean"){e.removeAttribute(i);break}Ft(c,i),c=Hf(""+c),e.setAttribute(i,c);break;case"onClick":c!=null&&(typeof c!="function"&&Ma(i,c),e.onclick=jn);break;case"onScroll":c!=null&&(typeof c!="function"&&Ma(i,c),$e("scroll",e));break;case"onScrollEnd":c!=null&&(typeof c!="function"&&Ma(i,c),$e("scrollend",e));break;case"dangerouslySetInnerHTML":if(c!=null){if(typeof c!="object"||!("__html"in c))throw Error("`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://react.dev/link/dangerously-set-inner-html for more information.");if(i=c.__html,i!=null){if(d.children!=null)throw Error("Can only set one of `children` or `props.dangerouslySetInnerHTML`.");e.innerHTML=i}}break;case"multiple":e.multiple=c&&typeof c!="function"&&typeof c!="symbol";break;case"muted":e.muted=c&&typeof c!="function"&&typeof c!="symbol";break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":break;case"autoFocus":break;case"xlinkHref":if(c==null||typeof c=="function"||typeof c=="boolean"||typeof c=="symbol"){e.removeAttribute("xlink:href");break}Ft(c,i),i=Hf(""+c),e.setAttributeNS(p0,"xlink:href",i);break;case"contentEditable":case"spellCheck":case"draggable":case"value":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":c!=null&&typeof c!="function"&&typeof c!="symbol"?(Ft(c,i),e.setAttribute(i,""+c)):e.removeAttribute(i);break;case"inert":c!==""||Sg[i]||(Sg[i]=!0,console.error("Received an empty string for a boolean attribute `%s`. This will treat the attribute as if it were false. Either pass `false` to silence this warning, or pass `true` if you used an empty string in earlier versions of React to indicate this attribute is true.",i));case"allowFullScreen":case"async":case"autoPlay":case"controls":case"default":case"defer":case"disabled":case"disablePictureInPicture":case"disableRemotePlayback":case"formNoValidate":case"hidden":case"loop":case"noModule":case"noValidate":case"open":case"playsInline":case"readOnly":case"required":case"reversed":case"scoped":case"seamless":case"itemScope":c&&typeof c!="function"&&typeof c!="symbol"?e.setAttribute(i,""):e.removeAttribute(i);break;case"capture":case"download":c===!0?e.setAttribute(i,""):c!==!1&&c!=null&&typeof c!="function"&&typeof c!="symbol"?(Ft(c,i),e.setAttribute(i,c)):e.removeAttribute(i);break;case"cols":case"rows":case"size":case"span":c!=null&&typeof c!="function"&&typeof c!="symbol"&&!isNaN(c)&&1<=c?(Ft(c,i),e.setAttribute(i,c)):e.removeAttribute(i);break;case"rowSpan":case"start":c==null||typeof c=="function"||typeof c=="symbol"||isNaN(c)?e.removeAttribute(i):(Ft(c,i),e.setAttribute(i,c));break;case"popover":$e("beforetoggle",e),$e("toggle",e),_0(e,"popover",c);break;case"xlinkActuate":$i(e,p0,"xlink:actuate",c);break;case"xlinkArcrole":$i(e,p0,"xlink:arcrole",c);break;case"xlinkRole":$i(e,p0,"xlink:role",c);break;case"xlinkShow":$i(e,p0,"xlink:show",c);break;case"xlinkTitle":$i(e,p0,"xlink:title",c);break;case"xlinkType":$i(e,p0,"xlink:type",c);break;case"xmlBase":$i(e,j9,"xml:base",c);break;case"xmlLang":$i(e,j9,"xml:lang",c);break;case"xmlSpace":$i(e,j9,"xml:space",c);break;case"is":m!=null&&console.error('Cannot update the "is" prop after it has been initialized.'),_0(e,"is",c);break;case"innerText":case"textContent":break;case"popoverTarget":Pv||c==null||typeof c!="object"||(Pv=!0,console.error("The `popoverTarget` prop expects the ID of an Element as a string. Received %s instead.",c));default:!(2<i.length)||i[0]!=="o"&&i[0]!=="O"||i[1]!=="n"&&i[1]!=="N"?(i=s4(i),_0(e,i,c)):No.hasOwnProperty(i)&&c!=null&&typeof c!="function"&&Ma(i,c)}}function Bc(e,a,i,c,d,m){switch(i){case"style":Um(e,c,m);break;case"dangerouslySetInnerHTML":if(c!=null){if(typeof c!="object"||!("__html"in c))throw Error("`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://react.dev/link/dangerously-set-inner-html for more information.");if(i=c.__html,i!=null){if(d.children!=null)throw Error("Can only set one of `children` or `props.dangerouslySetInnerHTML`.");e.innerHTML=i}}break;case"children":typeof c=="string"?Ou(e,c):(typeof c=="number"||typeof c=="bigint")&&Ou(e,""+c);break;case"onScroll":c!=null&&(typeof c!="function"&&Ma(i,c),$e("scroll",e));break;case"onScrollEnd":c!=null&&(typeof c!="function"&&Ma(i,c),$e("scrollend",e));break;case"onClick":c!=null&&(typeof c!="function"&&Ma(i,c),e.onclick=jn);break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"innerHTML":case"ref":break;case"innerText":case"textContent":break;default:if(No.hasOwnProperty(i))c!=null&&typeof c!="function"&&Ma(i,c);else e:{if(i[0]==="o"&&i[1]==="n"&&(d=i.endsWith("Capture"),a=i.slice(2,d?i.length-7:void 0),m=e[$l]||null,m=m!=null?m[i]:null,typeof m=="function"&&e.removeEventListener(a,m,d),typeof c=="function")){typeof m!="function"&&m!==null&&(i in e?e[i]=null:e.hasAttribute(i)&&e.removeAttribute(i)),e.addEventListener(a,c,d);break e}i in e?e[i]=c:c===!0?e.setAttribute(i,""):_0(e,i,c)}}}function ma(e,a,i){switch(Kl(a,i),a){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"img":$e("error",e),$e("load",e);var c=!1,d=!1,m;for(m in i)if(i.hasOwnProperty(m)){var S=i[m];if(S!=null)switch(m){case"src":c=!0;break;case"srcSet":d=!0;break;case"children":case"dangerouslySetInnerHTML":throw Error(a+" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");default:Pt(e,a,m,S,i,null)}}d&&Pt(e,a,"srcSet",i.srcSet,i,null),c&&Pt(e,a,"src",i.src,i,null);return;case"input":zu("input",i),$e("invalid",e);var C=m=S=d=null,x=null,N=null;for(c in i)if(i.hasOwnProperty(c)){var Q=i[c];if(Q!=null)switch(c){case"name":d=Q;break;case"type":S=Q;break;case"checked":x=Q;break;case"defaultChecked":N=Q;break;case"value":m=Q;break;case"defaultValue":C=Q;break;case"children":case"dangerouslySetInnerHTML":if(Q!=null)throw Error(a+" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");break;default:Pt(e,a,c,Q,i,null)}}kl(e,i),G0(e,m,C,x,N,S,d,!1);return;case"select":zu("select",i),$e("invalid",e),c=S=m=null;for(d in i)if(i.hasOwnProperty(d)&&(C=i[d],C!=null))switch(d){case"value":m=C;break;case"defaultValue":S=C;break;case"multiple":c=C;default:Pt(e,a,d,C,i,null)}k0(e,i),a=m,i=S,e.multiple=!!c,a!=null?eo(e,!!c,a,!1):i!=null&&eo(e,!!c,i,!0);return;case"textarea":zu("textarea",i),$e("invalid",e),m=d=c=null;for(S in i)if(i.hasOwnProperty(S)&&(C=i[S],C!=null))switch(S){case"value":c=C;break;case"defaultValue":d=C;break;case"children":m=C;break;case"dangerouslySetInnerHTML":if(C!=null)throw Error("`dangerouslySetInnerHTML` does not make sense on <textarea>.");break;default:Pt(e,a,S,C,i,null)}xu(e,i),Ys(e,c,d,m);return;case"option":u4(e,i);for(x in i)if(i.hasOwnProperty(x)&&(c=i[x],c!=null))switch(x){case"selected":e.selected=c&&typeof c!="function"&&typeof c!="symbol";break;default:Pt(e,a,x,c,i,null)}return;case"dialog":$e("beforetoggle",e),$e("toggle",e),$e("cancel",e),$e("close",e);break;case"iframe":case"object":$e("load",e);break;case"video":case"audio":for(c=0;c<S2.length;c++)$e(S2[c],e);break;case"image":$e("error",e),$e("load",e);break;case"details":$e("toggle",e);break;case"embed":case"source":case"link":$e("error",e),$e("load",e);case"area":case"base":case"br":case"col":case"hr":case"keygen":case"meta":case"param":case"track":case"wbr":case"menuitem":for(N in i)if(i.hasOwnProperty(N)&&(c=i[N],c!=null))switch(N){case"children":case"dangerouslySetInnerHTML":throw Error(a+" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");default:Pt(e,a,N,c,i,null)}return;default:if(ao(a)){for(Q in i)i.hasOwnProperty(Q)&&(c=i[Q],c!==void 0&&Bc(e,a,Q,c,i,void 0));return}}for(C in i)i.hasOwnProperty(C)&&(c=i[C],c!=null&&Pt(e,a,C,c,i,null))}function Xa(e,a,i,c){switch(Kl(a,c),a){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"input":var d=null,m=null,S=null,C=null,x=null,N=null,Q=null;for(se in i){var Z=i[se];if(i.hasOwnProperty(se)&&Z!=null)switch(se){case"checked":break;case"value":break;case"defaultValue":x=Z;default:c.hasOwnProperty(se)||Pt(e,a,se,null,c,Z)}}for(var W in c){var se=c[W];if(Z=i[W],c.hasOwnProperty(W)&&(se!=null||Z!=null))switch(W){case"type":m=se;break;case"name":d=se;break;case"checked":N=se;break;case"defaultChecked":Q=se;break;case"value":S=se;break;case"defaultValue":C=se;break;case"children":case"dangerouslySetInnerHTML":if(se!=null)throw Error(a+" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");break;default:se!==Z&&Pt(e,a,W,se,c,Z)}}a=i.type==="checkbox"||i.type==="radio"?i.checked!=null:i.value!=null,c=c.type==="checkbox"||c.type==="radio"?c.checked!=null:c.value!=null,a||!c||Uv||(console.error("A component is changing an uncontrolled input to be controlled. This is likely caused by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://react.dev/link/controlled-components"),Uv=!0),!a||c||Fv||(console.error("A component is changing a controlled input to be uncontrolled. This is likely caused by the value changing from a defined to undefined, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://react.dev/link/controlled-components"),Fv=!0),Rr(e,S,C,x,N,Q,m,d);return;case"select":se=S=C=W=null;for(m in i)if(x=i[m],i.hasOwnProperty(m)&&x!=null)switch(m){case"value":break;case"multiple":se=x;default:c.hasOwnProperty(m)||Pt(e,a,m,null,c,x)}for(d in c)if(m=c[d],x=i[d],c.hasOwnProperty(d)&&(m!=null||x!=null))switch(d){case"value":W=m;break;case"defaultValue":C=m;break;case"multiple":S=m;default:m!==x&&Pt(e,a,d,m,c,x)}c=C,a=S,i=se,W!=null?eo(e,!!a,W,!1):!!i!=!!a&&(c!=null?eo(e,!!a,c,!0):eo(e,!!a,a?[]:"",!1));return;case"textarea":se=W=null;for(C in i)if(d=i[C],i.hasOwnProperty(C)&&d!=null&&!c.hasOwnProperty(C))switch(C){case"value":break;case"children":break;default:Pt(e,a,C,null,c,d)}for(S in c)if(d=c[S],m=i[S],c.hasOwnProperty(S)&&(d!=null||m!=null))switch(S){case"value":W=d;break;case"defaultValue":se=d;break;case"children":break;case"dangerouslySetInnerHTML":if(d!=null)throw Error("`dangerouslySetInnerHTML` does not make sense on <textarea>.");break;default:d!==m&&Pt(e,a,S,d,c,m)}Ru(e,W,se);return;case"option":for(var _e in i)if(W=i[_e],i.hasOwnProperty(_e)&&W!=null&&!c.hasOwnProperty(_e))switch(_e){case"selected":e.selected=!1;break;default:Pt(e,a,_e,null,c,W)}for(x in c)if(W=c[x],se=i[x],c.hasOwnProperty(x)&&W!==se&&(W!=null||se!=null))switch(x){case"selected":e.selected=W&&typeof W!="function"&&typeof W!="symbol";break;default:Pt(e,a,x,W,c,se)}return;case"img":case"link":case"area":case"base":case"br":case"col":case"embed":case"hr":case"keygen":case"meta":case"param":case"source":case"track":case"wbr":case"menuitem":for(var Ue in i)W=i[Ue],i.hasOwnProperty(Ue)&&W!=null&&!c.hasOwnProperty(Ue)&&Pt(e,a,Ue,null,c,W);for(N in c)if(W=c[N],se=i[N],c.hasOwnProperty(N)&&W!==se&&(W!=null||se!=null))switch(N){case"children":case"dangerouslySetInnerHTML":if(W!=null)throw Error(a+" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");break;default:Pt(e,a,N,W,c,se)}return;default:if(ao(a)){for(var fa in i)W=i[fa],i.hasOwnProperty(fa)&&W!==void 0&&!c.hasOwnProperty(fa)&&Bc(e,a,fa,void 0,c,W);for(Q in c)W=c[Q],se=i[Q],!c.hasOwnProperty(Q)||W===se||W===void 0&&se===void 0||Bc(e,a,Q,W,c,se);return}}for(var Nt in i)W=i[Nt],i.hasOwnProperty(Nt)&&W!=null&&!c.hasOwnProperty(Nt)&&Pt(e,a,Nt,null,c,W);for(Z in c)W=c[Z],se=i[Z],!c.hasOwnProperty(Z)||W===se||W==null&&se==null||Pt(e,a,Z,W,c,se)}function br(e){switch(e){case"class":return"className";case"for":return"htmlFor";default:return e}}function nu(e){var a={};e=e.style;for(var i=0;i<e.length;i++){var c=e[i];a[c]=e.getPropertyValue(c)}return a}function Mo(e,a,i){if(a!=null&&typeof a!="object")console.error("The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX.");else{var c,d=c="",m;for(m in a)if(a.hasOwnProperty(m)){var S=a[m];S!=null&&typeof S!="boolean"&&S!==""&&(m.indexOf("--")===0?(Hs(S,m),c+=d+m+":"+(""+S).trim()):typeof S!="number"||S===0||We.has(m)?(Hs(S,m),c+=d+m.replace(de,"-$1").toLowerCase().replace(Pe,"-ms-")+":"+(""+S).trim()):c+=d+m.replace(de,"-$1").toLowerCase().replace(Pe,"-ms-")+":"+S+"px",d=";")}c=c||null,a=e.getAttribute("style"),a!==c&&(c=_i(c),_i(a)!==c&&(i.style=nu(e)))}}function sn(e,a,i,c,d,m){if(d.delete(i),e=e.getAttribute(i),e===null)switch(typeof c){case"undefined":case"function":case"symbol":case"boolean":return}else if(c!=null)switch(typeof c){case"function":case"symbol":case"boolean":break;default:if(Ft(c,a),e===""+c)return}Aa(a,e,c,m)}function Zb(e,a,i,c,d,m){if(d.delete(i),e=e.getAttribute(i),e===null){switch(typeof c){case"function":case"symbol":return}if(!c)return}else switch(typeof c){case"function":case"symbol":break;default:if(c)return}Aa(a,e,c,m)}function Jb(e,a,i,c,d,m){if(d.delete(i),e=e.getAttribute(i),e===null)switch(typeof c){case"undefined":case"function":case"symbol":return}else if(c!=null)switch(typeof c){case"function":case"symbol":break;default:if(Ft(c,i),e===""+c)return}Aa(a,e,c,m)}function Oc(e,a,i,c,d,m){if(d.delete(i),e=e.getAttribute(i),e===null)switch(typeof c){case"undefined":case"function":case"symbol":case"boolean":return;default:if(isNaN(c))return}else if(c!=null)switch(typeof c){case"function":case"symbol":case"boolean":break;default:if(!isNaN(c)&&(Ft(c,a),e===""+c))return}Aa(a,e,c,m)}function _d(e,a,i,c,d,m){if(d.delete(i),e=e.getAttribute(i),e===null)switch(typeof c){case"undefined":case"function":case"symbol":case"boolean":return}else if(c!=null)switch(typeof c){case"function":case"symbol":case"boolean":break;default:if(Ft(c,a),i=Hf(""+c),e===i)return}Aa(a,e,c,m)}function cn(e,a,i,c){for(var d={},m=new Set,S=e.attributes,C=0;C<S.length;C++)switch(S[C].name.toLowerCase()){case"value":break;case"checked":break;case"selected":break;default:m.add(S[C].name)}if(ao(a)){for(var x in i)if(i.hasOwnProperty(x)){var N=i[x];if(N!=null){if(No.hasOwnProperty(x))typeof N!="function"&&Ma(x,N);else if(i.suppressHydrationWarning!==!0)switch(x){case"children":typeof N!="string"&&typeof N!="number"||Aa("children",e.textContent,N,d);continue;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":continue;case"dangerouslySetInnerHTML":S=e.innerHTML,N=N?N.__html:void 0,N!=null&&(N=Kb(e,N),Aa(x,S,N,d));continue;case"style":m.delete(x),Mo(e,N,d);continue;case"offsetParent":case"offsetTop":case"offsetLeft":case"offsetWidth":case"offsetHeight":case"isContentEditable":case"outerText":case"outerHTML":m.delete(x.toLowerCase()),console.error("Assignment to read-only property will result in a no-op: `%s`",x);continue;case"className":m.delete("class"),S=js(e,"class",N),Aa("className",S,N,d);continue;default:c.context===_s&&a!=="svg"&&a!=="math"?m.delete(x.toLowerCase()):m.delete(x),S=js(e,x,N),Aa(x,S,N,d)}}}}else for(N in i)if(i.hasOwnProperty(N)&&(x=i[N],x!=null)){if(No.hasOwnProperty(N))typeof x!="function"&&Ma(N,x);else if(i.suppressHydrationWarning!==!0)switch(N){case"children":typeof x!="string"&&typeof x!="number"||Aa("children",e.textContent,x,d);continue;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"value":case"checked":case"selected":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":continue;case"dangerouslySetInnerHTML":S=e.innerHTML,x=x?x.__html:void 0,x!=null&&(x=Kb(e,x),S!==x&&(d[N]={__html:S}));continue;case"className":sn(e,N,"class",x,m,d);continue;case"tabIndex":sn(e,N,"tabindex",x,m,d);continue;case"style":m.delete(N),Mo(e,x,d);continue;case"multiple":m.delete(N),Aa(N,e.multiple,x,d);continue;case"muted":m.delete(N),Aa(N,e.muted,x,d);continue;case"autoFocus":m.delete("autofocus"),Aa(N,e.autofocus,x,d);continue;case"data":if(a!=="object"){m.delete(N),S=e.getAttribute("data"),Aa(N,S,x,d);continue}case"src":case"href":if(!(x!==""||a==="a"&&N==="href"||a==="object"&&N==="data")){console.error(N==="src"?'An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.':'An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.',N,N);continue}_d(e,N,N,x,m,d);continue;case"action":case"formAction":if(S=e.getAttribute(N),typeof x=="function"){m.delete(N.toLowerCase()),N==="formAction"?(m.delete("name"),m.delete("formenctype"),m.delete("formmethod"),m.delete("formtarget")):(m.delete("enctype"),m.delete("method"),m.delete("target"));continue}else if(S===eD){m.delete(N.toLowerCase()),Aa(N,"function",x,d);continue}_d(e,N,N.toLowerCase(),x,m,d);continue;case"xlinkHref":_d(e,N,"xlink:href",x,m,d);continue;case"contentEditable":Jb(e,N,"contenteditable",x,m,d);continue;case"spellCheck":Jb(e,N,"spellcheck",x,m,d);continue;case"draggable":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":Jb(e,N,N,x,m,d);continue;case"allowFullScreen":case"async":case"autoPlay":case"controls":case"default":case"defer":case"disabled":case"disablePictureInPicture":case"disableRemotePlayback":case"formNoValidate":case"hidden":case"loop":case"noModule":case"noValidate":case"open":case"playsInline":case"readOnly":case"required":case"reversed":case"scoped":case"seamless":case"itemScope":Zb(e,N,N.toLowerCase(),x,m,d);continue;case"capture":case"download":e:{C=e;var Q=S=N,Z=d;if(m.delete(Q),C=C.getAttribute(Q),C===null)switch(typeof x){case"undefined":case"function":case"symbol":break e;default:if(x===!1)break e}else if(x!=null)switch(typeof x){case"function":case"symbol":break;case"boolean":if(x===!0&&C==="")break e;break;default:if(Ft(x,S),C===""+x)break e}Aa(S,C,x,Z)}continue;case"cols":case"rows":case"size":case"span":e:{if(C=e,Q=S=N,Z=d,m.delete(Q),C=C.getAttribute(Q),C===null)switch(typeof x){case"undefined":case"function":case"symbol":case"boolean":break e;default:if(isNaN(x)||1>x)break e}else if(x!=null)switch(typeof x){case"function":case"symbol":case"boolean":break;default:if(!(isNaN(x)||1>x)&&(Ft(x,S),C===""+x))break e}Aa(S,C,x,Z)}continue;case"rowSpan":Oc(e,N,"rowspan",x,m,d);continue;case"start":Oc(e,N,N,x,m,d);continue;case"xHeight":sn(e,N,"x-height",x,m,d);continue;case"xlinkActuate":sn(e,N,"xlink:actuate",x,m,d);continue;case"xlinkArcrole":sn(e,N,"xlink:arcrole",x,m,d);continue;case"xlinkRole":sn(e,N,"xlink:role",x,m,d);continue;case"xlinkShow":sn(e,N,"xlink:show",x,m,d);continue;case"xlinkTitle":sn(e,N,"xlink:title",x,m,d);continue;case"xlinkType":sn(e,N,"xlink:type",x,m,d);continue;case"xmlBase":sn(e,N,"xml:base",x,m,d);continue;case"xmlLang":sn(e,N,"xml:lang",x,m,d);continue;case"xmlSpace":sn(e,N,"xml:space",x,m,d);continue;case"inert":x!==""||Sg[N]||(Sg[N]=!0,console.error("Received an empty string for a boolean attribute `%s`. This will treat the attribute as if it were false. Either pass `false` to silence this warning, or pass `true` if you used an empty string in earlier versions of React to indicate this attribute is true.",N)),Zb(e,N,N,x,m,d);continue;default:if(!(2<N.length)||N[0]!=="o"&&N[0]!=="O"||N[1]!=="n"&&N[1]!=="N"){C=s4(N),S=!1,c.context===_s&&a!=="svg"&&a!=="math"?m.delete(C.toLowerCase()):(Q=N.toLowerCase(),Q=ki.hasOwnProperty(Q)&&ki[Q]||null,Q!==null&&Q!==N&&(S=!0,m.delete(Q)),m.delete(C));e:if(Q=e,Z=C,C=x,wf(Z))if(Q.hasAttribute(Z))Q=Q.getAttribute(Z),Ft(C,Z),C=Q===""+C?C:Q;else{switch(typeof C){case"function":case"symbol":break e;case"boolean":if(Q=Z.toLowerCase().slice(0,5),Q!=="data-"&&Q!=="aria-")break e}C=C===void 0?void 0:null}else C=void 0;S||Aa(N,C,x,d)}}}return 0<m.size&&i.suppressHydrationWarning!==!0&&Od(e,m,d),Object.keys(d).length===0?null:d}function X4(e,a){switch(e.length){case 0:return"";case 1:return e[0];case 2:return e[0]+" "+a+" "+e[1];default:return e.slice(0,-1).join(", ")+", "+a+" "+e[e.length-1]}}function Zl(e){switch(e){case"css":case"script":case"font":case"img":case"image":case"input":case"link":return!0;default:return!1}}function K4(){if(typeof performance.getEntriesByType=="function"){for(var e=0,a=0,i=performance.getEntriesByType("resource"),c=0;c<i.length;c++){var d=i[c],m=d.transferSize,S=d.initiatorType,C=d.duration;if(m&&C&&Zl(S)){for(S=0,C=d.responseEnd,c+=1;c<i.length;c++){var x=i[c],N=x.startTime;if(N>C)break;var Q=x.transferSize,Z=x.initiatorType;Q&&Zl(Z)&&(x=x.responseEnd,S+=Q*(x<C?1:(C-N)/(x-N)))}if(--c,a+=8*(m+S)/(d.duration/1e3),e++,10<e)break}}if(0<e)return a/e/1e6}return navigator.connection&&(e=navigator.connection.downlink,typeof e=="number")?e:5}function Id(e){return e.nodeType===9?e:e.ownerDocument}function Z4(e){switch(e){case ft:return J1;case ut:return Cg;default:return _s}}function mr(e,a){if(e===_s)switch(a){case"svg":return J1;case"math":return Cg;default:return _s}return e===J1&&a==="foreignObject"?_s:e}function _c(e,a){return e==="textarea"||e==="noscript"||typeof a.children=="string"||typeof a.children=="number"||typeof a.children=="bigint"||typeof a.dangerouslySetInnerHTML=="object"&&a.dangerouslySetInnerHTML!==null&&a.dangerouslySetInnerHTML.__html!=null}function r5(){var e=window.event;return e&&e.type==="popstate"?e===K9?!1:(K9=e,!0):(K9=null,!1)}function Do(){var e=window.event;return e&&e!==E2?e.type:null}function Ic(){var e=window.event;return e&&e!==E2?e.timeStamp:-1.1}function J4(e){setTimeout(function(){throw e})}function $4(e,a,i){switch(a){case"button":case"input":case"select":case"textarea":i.autoFocus&&e.focus();break;case"img":i.src?e.src=i.src:i.srcSet&&(e.srcset=i.srcSet)}}function ep(){}function $b(e,a,i,c){Xa(e,a,i,c),e[$l]=c}function e1(e){Ou(e,"")}function F8(e,a,i){e.nodeValue=i}function tp(e){if(!e.__reactWarnedAboutChildrenConflict){var a=e[$l]||null;if(a!==null){var i=bi(e);i!==null&&(typeof a.children=="string"||typeof a.children=="number"?(e.__reactWarnedAboutChildrenConflict=!0,Ge(i,function(){console.error('Cannot use a ref on a React element as a container to `createRoot` or `createPortal` if that element also sets "children" text content using React. It should be a leaf with no children. Otherwise it\'s ambiguous which children should be used.')})):a.dangerouslySetInnerHTML!=null&&(e.__reactWarnedAboutChildrenConflict=!0,Ge(i,function(){console.error('Cannot use a ref on a React element as a container to `createRoot` or `createPortal` if that element also sets "dangerouslySetInnerHTML" using React. It should be a leaf with no children. Otherwise it\'s ambiguous which children should be used.')})))}}}function iu(e){return e==="head"}function ap(e,a){e.removeChild(a)}function lp(e,a){(e.nodeType===9?e.body:e.nodeName==="HTML"?e.ownerDocument.body:e).removeChild(a)}function fs(e,a){var i=a,c=0;do{var d=i.nextSibling;if(e.removeChild(i),d&&d.nodeType===8)if(i=d.data,i===C2||i===yg){if(c===0){e.removeChild(d),hs(a);return}c--}else if(i===y2||i===vf||i===T0||i===Z1||i===g0)c++;else if(i===aD)pr(e.ownerDocument.documentElement);else if(i===nD){i=e.ownerDocument.head,pr(i);for(var m=i.firstChild;m;){var S=m.nextSibling,C=m.nodeName;m[Zc]||C==="SCRIPT"||C==="STYLE"||C==="LINK"&&m.rel.toLowerCase()==="stylesheet"||i.removeChild(m),m=S}}else i===lD&&pr(e.ownerDocument.body);i=d}while(i);hs(a)}function wd(e,a){var i=e;e=0;do{var c=i.nextSibling;if(i.nodeType===1?a?(i._stashedDisplay=i.style.display,i.style.display="none"):(i.style.display=i._stashedDisplay||"",i.getAttribute("style")===""&&i.removeAttribute("style")):i.nodeType===3&&(a?(i._stashedText=i.nodeValue,i.nodeValue=""):i.nodeValue=i._stashedText||""),c&&c.nodeType===8)if(i=c.data,i===C2){if(e===0)break;e--}else i!==y2&&i!==vf&&i!==T0&&i!==Z1||e++;i=c}while(i)}function np(e){wd(e,!0)}function ip(e){e=e.style,typeof e.setProperty=="function"?e.setProperty("display","none","important"):e.display="none"}function op(e){e.nodeValue=""}function rp(e){wd(e,!1)}function up(e,a){a=a[iD],a=a!=null&&a.hasOwnProperty("display")?a.display:null,e.style.display=a==null||typeof a=="boolean"?"":(""+a).trim()}function sp(e,a){e.nodeValue=a}function wc(e){var a=e.firstChild;for(a&&a.nodeType===10&&(a=a.nextSibling);a;){var i=a;switch(a=a.nextSibling,i.nodeName){case"HTML":case"HEAD":case"BODY":wc(i),Bm(i);continue;case"SCRIPT":case"STYLE":continue;case"LINK":if(i.rel.toLowerCase()==="stylesheet")continue}e.removeChild(i)}}function cp(e,a,i,c){for(;e.nodeType===1;){var d=i;if(e.nodeName.toLowerCase()!==a.toLowerCase()){if(!c&&(e.nodeName!=="INPUT"||e.type!=="hidden"))break}else if(c){if(!e[Zc])switch(a){case"meta":if(!e.hasAttribute("itemprop"))break;return e;case"link":if(m=e.getAttribute("rel"),m==="stylesheet"&&e.hasAttribute("data-precedence"))break;if(m!==d.rel||e.getAttribute("href")!==(d.href==null||d.href===""?null:d.href)||e.getAttribute("crossorigin")!==(d.crossOrigin==null?null:d.crossOrigin)||e.getAttribute("title")!==(d.title==null?null:d.title))break;return e;case"style":if(e.hasAttribute("data-precedence"))break;return e;case"script":if(m=e.getAttribute("src"),(m!==(d.src==null?null:d.src)||e.getAttribute("type")!==(d.type==null?null:d.type)||e.getAttribute("crossorigin")!==(d.crossOrigin==null?null:d.crossOrigin))&&m&&e.hasAttribute("async")&&!e.hasAttribute("itemprop"))break;return e;default:return e}}else if(a==="input"&&e.type==="hidden"){Ft(d.name,"name");var m=d.name==null?null:""+d.name;if(d.type==="hidden"&&e.getAttribute("name")===m)return e}else return e;if(e=Bn(e.nextSibling),e===null)break}return null}function fp(e,a,i){if(a==="")return null;for(;e.nodeType!==3;)if((e.nodeType!==1||e.nodeName!=="INPUT"||e.type!=="hidden")&&!i||(e=Bn(e.nextSibling),e===null))return null;return e}function Qt(e,a){for(;e.nodeType!==8;)if((e.nodeType!==1||e.nodeName!=="INPUT"||e.type!=="hidden")&&!a||(e=Bn(e.nextSibling),e===null))return null;return e}function Gd(e){return e.data===vf||e.data===T0}function u5(e){return e.data===Z1||e.data===vf&&e.ownerDocument.readyState!==Vv}function dp(e,a){var i=e.ownerDocument;if(e.data===T0)e._reactRetry=a;else if(e.data!==vf||i.readyState!==Vv)a();else{var c=function(){a(),i.removeEventListener("DOMContentLoaded",c)};i.addEventListener("DOMContentLoaded",c),e._reactRetry=c}}function Bn(e){for(;e!=null;e=e.nextSibling){var a=e.nodeType;if(a===1||a===3)break;if(a===8){if(a=e.data,a===y2||a===Z1||a===vf||a===T0||a===g0||a===Y9||a===Wv)break;if(a===C2||a===yg)return null}}return e}function bp(e){if(e.nodeType===1){for(var a=e.nodeName.toLowerCase(),i={},c=e.attributes,d=0;d<c.length;d++){var m=c[d];i[br(m.name)]=m.name.toLowerCase()==="style"?nu(e):m.value}return{type:a,props:i}}return e.nodeType===8?e.data===g0?{type:"Activity",props:{}}:{type:"Suspense",props:{}}:e.nodeValue}function mp(e,a,i){return i===null||i[tD]!==!0?(e.nodeValue===a?e=null:(a=_i(a),e=_i(e.nodeValue)===a?null:e.nodeValue),e):null}function Gc(e){e=e.nextSibling;for(var a=0;e;){if(e.nodeType===8){var i=e.data;if(i===C2||i===yg){if(a===0)return Bn(e.nextSibling);a--}else i!==y2&&i!==Z1&&i!==vf&&i!==T0&&i!==g0||a++}e=e.nextSibling}return null}function ds(e){e=e.previousSibling;for(var a=0;e;){if(e.nodeType===8){var i=e.data;if(i===y2||i===Z1||i===vf||i===T0||i===g0){if(a===0)return e;a--}else i!==C2&&i!==yg||a++}e=e.previousSibling}return null}function s5(e){hs(e)}function t1(e){hs(e)}function c5(e){hs(e)}function hr(e,a,i,c,d){switch(d&&Ff(e,c.ancestorInfo),a=Id(i),e){case"html":if(e=a.documentElement,!e)throw Error("React expected an <html> element (document.documentElement) to exist in the Document but one was not found. React never removes the documentElement for any Document it renders into so the cause is likely in some other script running on this page.");return e;case"head":if(e=a.head,!e)throw Error("React expected a <head> element (document.head) to exist in the Document but one was not found. React never removes the head for any Document it renders into so the cause is likely in some other script running on this page.");return e;case"body":if(e=a.body,!e)throw Error("React expected a <body> element (document.body) to exist in the Document but one was not found. React never removes the body for any Document it renders into so the cause is likely in some other script running on this page.");return e;default:throw Error("resolveSingletonInstance was called with an element type that is not supported. This is a bug in React.")}}function Lo(e,a,i,c){if(!i[Tr]&&bi(i)){var d=i.tagName.toLowerCase();console.error("You are mounting a new %s component when a previous one has not first unmounted. It is an error to render more than one %s component at a time and attributes and children of these components will likely fail in unpredictable ways. Please only render a single instance of <%s> and if you need to mount a new one, ensure any previous ones have unmounted first.",d,d,d)}switch(e){case"html":case"head":case"body":break;default:console.error("acquireSingletonInstance was called with an element type that is not supported. This is a bug in React.")}for(d=i.attributes;d.length;)i.removeAttributeNode(d[0]);ma(i,e,a),i[ha]=c,i[$l]=a}function pr(e){for(var a=e.attributes;a.length;)e.removeAttributeNode(a[0]);Bm(e)}function a1(e){return typeof e.getRootNode=="function"?e.getRootNode():e.nodeType===9?e:e.ownerDocument}function f5(e,a,i){var c=$1;if(c&&typeof a=="string"&&a){var d=$t(a);d='link[rel="'+e+'"][href="'+d+'"]',typeof i=="string"&&(d+='[crossorigin="'+i+'"]'),Kv.has(d)||(Kv.add(d),e={rel:e,crossOrigin:i,href:a},c.querySelector(d)===null&&(a=c.createElement("link"),ma(a,"link",e),Oa(a),c.head.appendChild(a)))}}function d5(e,a,i,c){var d=(d=On.current)?a1(d):null;if(!d)throw Error('"resourceRoot" was expected to exist. This is a bug in React.');switch(e){case"meta":case"title":return null;case"style":return typeof i.precedence=="string"&&typeof i.href=="string"?(i=bs(i.href),a=qn(d).hoistableStyles,c=a.get(i),c||(c={type:"style",instance:null,count:0,state:null},a.set(i,c)),c):{type:"void",instance:null,count:0,state:null};case"link":if(i.rel==="stylesheet"&&typeof i.href=="string"&&typeof i.precedence=="string"){e=bs(i.href);var m=qn(d).hoistableStyles,S=m.get(e);if(!S&&(d=d.ownerDocument||d,S={type:"stylesheet",instance:null,count:0,state:{loading:S0,preload:null}},m.set(e,S),(m=d.querySelector(Fd(e)))&&!m._p&&(S.instance=m,S.state.loading=A2|Po),!Wo.has(e))){var C={rel:"preload",as:"style",href:i.href,crossOrigin:i.crossOrigin,integrity:i.integrity,media:i.media,hrefLang:i.hrefLang,referrerPolicy:i.referrerPolicy};Wo.set(e,C),m||hp(d,e,C,S.state)}if(a&&c===null)throw i=`
201
+
202
+ - `+kd(a)+`
203
+ + `+kd(i),Error("Expected <link> not to update to be updated to a stylesheet with precedence. Check the `rel`, `href`, and `precedence` props of this component. Alternatively, check whether two different <link> components render in the same slot or share the same key."+i);return S}if(a&&c!==null)throw i=`
204
+
205
+ - `+kd(a)+`
206
+ + `+kd(i),Error("Expected stylesheet with precedence to not be updated to a different kind of <link>. Check the `rel`, `href`, and `precedence` props of this component. Alternatively, check whether two different <link> components render in the same slot or share the same key."+i);return null;case"script":return a=i.async,i=i.src,typeof i=="string"&&a&&typeof a!="function"&&typeof a!="symbol"?(i=ms(i),a=qn(d).hoistableScripts,c=a.get(i),c||(c={type:"script",instance:null,count:0,state:null},a.set(i,c)),c):{type:"void",instance:null,count:0,state:null};default:throw Error('getResource encountered a type it did not expect: "'+e+'". this is a bug in React.')}}function kd(e){var a=0,i="<link";return typeof e.rel=="string"?(a++,i+=' rel="'+e.rel+'"'):_n.call(e,"rel")&&(a++,i+=' rel="'+(e.rel===null?"null":"invalid type "+typeof e.rel)+'"'),typeof e.href=="string"?(a++,i+=' href="'+e.href+'"'):_n.call(e,"href")&&(a++,i+=' href="'+(e.href===null?"null":"invalid type "+typeof e.href)+'"'),typeof e.precedence=="string"?(a++,i+=' precedence="'+e.precedence+'"'):_n.call(e,"precedence")&&(a++,i+=" precedence={"+(e.precedence===null?"null":"invalid type "+typeof e.precedence)+"}"),Object.getOwnPropertyNames(e).length>a&&(i+=" ..."),i+" />"}function bs(e){return'href="'+$t(e)+'"'}function Fd(e){return'link[rel="stylesheet"]['+e+"]"}function l1(e){return bt({},e,{"data-precedence":e.precedence,precedence:null})}function hp(e,a,i,c){e.querySelector('link[rel="preload"][as="style"]['+a+"]")?c.loading=A2:(a=e.createElement("link"),c.preload=a,a.addEventListener("load",function(){return c.loading|=A2}),a.addEventListener("error",function(){return c.loading|=Qv}),ma(a,"link",i),Oa(a),e.head.appendChild(a))}function ms(e){return'[src="'+$t(e)+'"]'}function Ud(e){return"script[async]"+e}function n1(e,a,i){if(a.count++,a.instance===null)switch(a.type){case"style":var c=e.querySelector('style[data-href~="'+$t(i.href)+'"]');if(c)return a.instance=c,Oa(c),c;var d=bt({},i,{"data-href":i.href,"data-precedence":i.precedence,href:null,precedence:null});return c=(e.ownerDocument||e).createElement("style"),Oa(c),ma(c,"style",d),kc(c,i.precedence,e),a.instance=c;case"stylesheet":d=bs(i.href);var m=e.querySelector(Fd(d));if(m)return a.state.loading|=Po,a.instance=m,Oa(m),m;c=l1(i),(d=Wo.get(d))&&b5(c,d),m=(e.ownerDocument||e).createElement("link"),Oa(m);var S=m;return S._p=new Promise(function(C,x){S.onload=C,S.onerror=x}),ma(m,"link",c),a.state.loading|=Po,kc(m,i.precedence,e),a.instance=m;case"script":return m=ms(i.src),(d=e.querySelector(Ud(m)))?(a.instance=d,Oa(d),d):(c=i,(d=Wo.get(m))&&(c=bt({},i),m5(c,d)),e=e.ownerDocument||e,d=e.createElement("script"),Oa(d),ma(d,"link",c),e.head.appendChild(d),a.instance=d);case"void":return null;default:throw Error('acquireResource encountered a resource type it did not expect: "'+a.type+'". this is a bug in React.')}else a.type==="stylesheet"&&(a.state.loading&Po)===S0&&(c=a.instance,a.state.loading|=Po,kc(c,i.precedence,e));return a.instance}function kc(e,a,i){for(var c=i.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'),d=c.length?c[c.length-1]:null,m=d,S=0;S<c.length;S++){var C=c[S];if(C.dataset.precedence===a)m=C;else if(m!==d)break}m?m.parentNode.insertBefore(e,m.nextSibling):(a=i.nodeType===9?i.head:i,a.insertBefore(e,a.firstChild))}function b5(e,a){e.crossOrigin==null&&(e.crossOrigin=a.crossOrigin),e.referrerPolicy==null&&(e.referrerPolicy=a.referrerPolicy),e.title==null&&(e.title=a.title)}function m5(e,a){e.crossOrigin==null&&(e.crossOrigin=a.crossOrigin),e.referrerPolicy==null&&(e.referrerPolicy=a.referrerPolicy),e.integrity==null&&(e.integrity=a.integrity)}function Fc(e,a,i){if(Eg===null){var c=new Map,d=Eg=new Map;d.set(i,c)}else d=Eg,c=d.get(i),c||(c=new Map,d.set(i,c));if(c.has(e))return c;for(c.set(e,null),i=i.getElementsByTagName(e),d=0;d<i.length;d++){var m=i[d];if(!(m[Zc]||m[ha]||e==="link"&&m.getAttribute("rel")==="stylesheet")&&m.namespaceURI!==ft){var S=m.getAttribute(a)||"";S=e+S;var C=c.get(S);C?C.push(m):c.set(S,[m])}}return c}function pp(e,a,i){e=e.ownerDocument||e,e.head.insertBefore(i,a==="title"?e.querySelector("head > title"):null)}function gp(e,a,i){var c=!i.ancestorInfo.containerTagInScope;if(i.context===J1||a.itemProp!=null)return!c||a.itemProp==null||e!=="meta"&&e!=="title"&&e!=="style"&&e!=="link"&&e!=="script"||console.error("Cannot render a <%s> outside the main document if it has an `itemProp` prop. `itemProp` suggests the tag belongs to an `itemScope` which can appear anywhere in the DOM. If you were intending for React to hoist this <%s> remove the `itemProp` prop. Otherwise, try moving this tag into the <head> or <body> of the Document.",e,e),!1;switch(e){case"meta":case"title":return!0;case"style":if(typeof a.precedence!="string"||typeof a.href!="string"||a.href===""){c&&console.error('Cannot render a <style> outside the main document without knowing its precedence and a unique href key. React can hoist and deduplicate <style> tags if you provide a `precedence` prop along with an `href` prop that does not conflict with the `href` values used in any other hoisted <style> or <link rel="stylesheet" ...> tags. Note that hoisting <style> tags is considered an advanced feature that most will not use directly. Consider moving the <style> tag to the <head> or consider adding a `precedence="default"` and `href="some unique resource identifier"`.');break}return!0;case"link":if(typeof a.rel!="string"||typeof a.href!="string"||a.href===""||a.onLoad||a.onError){if(a.rel==="stylesheet"&&typeof a.precedence=="string"){e=a.href;var d=a.onError,m=a.disabled;i=[],a.onLoad&&i.push("`onLoad`"),d&&i.push("`onError`"),m!=null&&i.push("`disabled`"),d=X4(i,"and"),d+=i.length===1?" prop":" props",m=i.length===1?"an "+d:"the "+d,i.length&&console.error('React encountered a <link rel="stylesheet" href="%s" ... /> with a `precedence` prop that also included %s. The presence of loading and error handlers indicates an intent to manage the stylesheet loading state from your from your Component code and React will not hoist or deduplicate this stylesheet. If your intent was to have React hoist and deduplciate this stylesheet using the `precedence` prop remove the %s, otherwise remove the `precedence` prop.',e,m,d)}c&&(typeof a.rel!="string"||typeof a.href!="string"||a.href===""?console.error("Cannot render a <link> outside the main document without a `rel` and `href` prop. Try adding a `rel` and/or `href` prop to this <link> or moving the link into the <head> tag"):(a.onError||a.onLoad)&&console.error("Cannot render a <link> with onLoad or onError listeners outside the main document. Try removing onLoad={...} and onError={...} or moving it into the root <head> tag or somewhere in the <body>."));break}switch(a.rel){case"stylesheet":return e=a.precedence,a=a.disabled,typeof e!="string"&&c&&console.error('Cannot render a <link rel="stylesheet" /> outside the main document without knowing its precedence. Consider adding precedence="default" or moving it into the root <head> tag.'),typeof e=="string"&&a==null;default:return!0}case"script":if(e=a.async&&typeof a.async!="function"&&typeof a.async!="symbol",!e||a.onLoad||a.onError||!a.src||typeof a.src!="string"){c&&(e?a.onLoad||a.onError?console.error("Cannot render a <script> with onLoad or onError listeners outside the main document. Try removing onLoad={...} and onError={...} or moving it into the root <head> tag or somewhere in the <body>."):console.error("Cannot render a <script> outside the main document without `async={true}` and a non-empty `src` prop. Ensure there is a valid `src` and either make the script async or move it into the root <head> tag or somewhere in the <body>."):console.error('Cannot render a sync or defer <script> outside the main document without knowing its order. Try adding async="" or moving it into the root <head> tag.'));break}return!0;case"noscript":case"template":c&&console.error("Cannot render <%s> outside the main document. Try moving it into the root <head> tag.",e)}return!1}function Ct(e){return!(e.type==="stylesheet"&&(e.state.loading&Xv)===S0)}function h5(e,a,i,c){if(i.type==="stylesheet"&&(typeof c.media!="string"||matchMedia(c.media).matches!==!1)&&(i.state.loading&Po)===S0){if(i.instance===null){var d=bs(c.href),m=a.querySelector(Fd(d));if(m){a=m._p,a!==null&&typeof a=="object"&&typeof a.then=="function"&&(e.count++,e=Uc.bind(e),a.then(e,e)),i.state.loading|=Po,i.instance=m,Oa(m);return}m=a.ownerDocument||a,c=l1(c),(d=Wo.get(d))&&b5(c,d),m=m.createElement("link"),Oa(m);var S=m;S._p=new Promise(function(C,x){S.onload=C,S.onerror=x}),ma(m,"link",c),i.instance=m}e.stylesheets===null&&(e.stylesheets=new Map),e.stylesheets.set(i,a),(a=i.state.preload)&&(i.state.loading&Xv)===S0&&(e.count++,i=Uc.bind(e),a.addEventListener("load",i),a.addEventListener("error",i))}}function i1(e,a){return e.stylesheets&&e.count===0&&Hd(e,e.stylesheets),0<e.count||0<e.imgCount?function(i){var c=setTimeout(function(){if(e.stylesheets&&Hd(e,e.stylesheets),e.unsuspend){var m=e.unsuspend;e.unsuspend=null,m()}},uD+a);0<e.imgBytes&&J9===0&&(J9=125*K4()*cD);var d=setTimeout(function(){if(e.waitingForImages=!1,e.count===0&&(e.stylesheets&&Hd(e,e.stylesheets),e.unsuspend)){var m=e.unsuspend;e.unsuspend=null,m()}},(e.imgBytes>J9?50:sD)+a);return e.unsuspend=i,function(){e.unsuspend=null,clearTimeout(c),clearTimeout(d)}}:null}function Uc(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)Hd(this,this.stylesheets);else if(this.unsuspend){var e=this.unsuspend;this.unsuspend=null,e()}}}function Hd(e,a){e.stylesheets=null,e.unsuspend!==null&&(e.count++,Ag=new Map,a.forEach(p5,e),Ag=null,Uc.call(e))}function p5(e,a){if(!(a.state.loading&Po)){var i=Ag.get(e);if(i)var c=i.get($9);else{i=new Map,Ag.set(e,i);for(var d=e.querySelectorAll("link[data-precedence],style[data-precedence]"),m=0;m<d.length;m++){var S=d[m];(S.nodeName==="LINK"||S.getAttribute("media")!=="not all")&&(i.set(S.dataset.precedence,S),c=S)}c&&i.set($9,c)}d=a.instance,S=d.getAttribute("data-precedence"),m=i.get(S)||c,m===c&&i.set($9,d),i.set(S,d),this.count++,c=Uc.bind(this),d.addEventListener("load",c),d.addEventListener("error",c),m?m.parentNode.insertBefore(d,m.nextSibling):(e=e.nodeType===9?e.head:e,e.insertBefore(d,e.firstChild)),a.state.loading|=Po}}function Pd(e,a,i,c,d,m,S,C,x){for(this.tag=1,this.containerInfo=e,this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=v0,this.callbackNode=this.next=this.pendingContext=this.context=this.cancelPendingCommit=null,this.callbackPriority=0,this.expirationTimes=Oe(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Oe(0),this.hiddenUpdates=Oe(null),this.identifierPrefix=c,this.onUncaughtError=d,this.onCaughtError=m,this.onRecoverableError=S,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=x,this.incompleteTransitions=new Map,this.passiveEffectDuration=this.effectDuration=-0,this.memoizedUpdaters=new Set,e=this.pendingUpdatersLaneMap=[],a=0;31>a;a++)e.push(new Set);this._debugRootType=i?"hydrateRoot()":"createRoot()"}function Wd(e,a,i,c,d,m,S,C,x,N,Q,Z){return e=new Pd(e,a,i,S,x,N,Q,Z,C),a=_M,m===!0&&(a|=bn|vr),a|=mt,m=R(3,null,null,a),e.current=m,m.stateNode=e,a=nb(),Wu(a),e.pooledCache=a,Wu(a),m.memoizedState={element:c,isDehydrated:i,cache:a},At(m),e}function Tp(e){return e?(e=lf,e):lf}function o1(e,a,i,c,d,m){if(Ka&&typeof Ka.onScheduleFiberRoot=="function")try{Ka.onScheduleFiberRoot(vs,c,i)}catch(S){xo||(xo=!0,console.error("React instrumentation encountered an error: %o",S))}d=Tp(d),c.context===null?c.context=d:c.pendingContext=d,zo&&dn!==null&&!eS&&(eS=!0,console.error(`Render methods should be a pure function of props and state; triggering nested component updates from render is not allowed. If necessary, trigger nested updates in componentDidUpdate.
207
+
208
+ Check the render method of %s.`,Ce(dn)||"Unknown")),c=Ya(a),c.payload={element:i},m=m===void 0?null:m,m!==null&&(typeof m!="function"&&console.error("Expected the last optional `callback` argument to be a function. Instead received: %s.",m),c.callback=m),i=so(e,c,a),i!==null&&(oo(a,"root.render()",null),at(i,e,a),$n(i,e,a))}function vp(e,a){if(e=e.memoizedState,e!==null&&e.dehydrated!==null){var i=e.retryLane;e.retryLane=i!==0&&i<a?i:a}}function g5(e,a){vp(e,a),(e=e.alternate)&&vp(e,a)}function T5(e){if(e.tag===13||e.tag===31){var a=Ll(e,67108864);a!==null&&at(a,e,67108864),g5(e,67108864)}}function v5(e){if(e.tag===13||e.tag===31){var a=xl(e);a=vl(a);var i=Ll(e,a);i!==null&&at(i,e,a),g5(e,a)}}function aa(){return dn}function S5(e,a,i,c){var d=fe.T;fe.T=null;var m=Wt.p;try{Wt.p=Za,y5(e,a,i,c)}finally{Wt.p=m,fe.T=d}}function yl(e,a,i,c){var d=fe.T;fe.T=null;var m=Wt.p;try{Wt.p=El,y5(e,a,i,c)}finally{Wt.p=m,fe.T=d}}function y5(e,a,i,c){if(Dg){var d=r1(c);if(d===null)Bi(e,a,c,Lg,i),s1(e,c);else if(Sp(d,e,a,i,c))c.stopPropagation();else if(s1(e,c),a&4&&-1<dD.indexOf(e)){for(;d!==null;){var m=bi(d);if(m!==null)switch(m.tag){case 3:if(m=m.stateNode,m.current.memoizedState.isDehydrated){var S=Yo(m.pendingLanes);if(S!==0){var C=m;for(C.pendingLanes|=2,C.entangledLanes|=2;S;){var x=1<<31-Cl(S);C.entanglements[1]|=x,S&=~x}un(m),(_t&(Ml|Pi))===_l&&(sg=ul()+zv,Eo(0))}}break;case 31:case 13:C=Ll(m,2),C!==null&&at(C,m,2),Nn(),g5(m,2)}if(m=r1(c),m===null&&Bi(e,a,c,Lg,i),m===d)break;d=m}d!==null&&c.stopPropagation()}else Bi(e,a,c,null,i)}}function r1(e){return e=pi(e),C5(e)}function C5(e){if(Lg=null,e=Xo(e),e!==null){var a=F(e);if(a===null)e=null;else{var i=a.tag;if(i===13){if(e=ie(a),e!==null)return e;e=null}else if(i===31){if(e=te(a),e!==null)return e;e=null}else if(i===3){if(a.stateNode.current.memoizedState.isDehydrated)return a.tag===3?a.stateNode.containerInfo:null;e=null}else a!==e&&(e=null)}}return Lg=e,null}function u1(e){switch(e){case"beforetoggle":case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"toggle":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return Za;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return El;case"message":switch(Xd()){case B5:return Za;case T1:return El;case Ts:case Dp:return Nl;case v1:return cu;default:return Nl}default:return Nl}}function s1(e,a){switch(e){case"focusin":case"focusout":Sf=null;break;case"dragenter":case"dragleave":yf=null;break;case"mouseover":case"mouseout":Cf=null;break;case"pointerover":case"pointerout":D2.delete(a.pointerId);break;case"gotpointercapture":case"lostpointercapture":L2.delete(a.pointerId)}}function ou(e,a,i,c,d,m){return e===null||e.nativeEvent!==m?(e={blockedOn:a,domEventName:i,eventSystemFlags:c,nativeEvent:m,targetContainers:[d]},a!==null&&(a=bi(a),a!==null&&T5(a)),e):(e.eventSystemFlags|=c,a=e.targetContainers,d!==null&&a.indexOf(d)===-1&&a.push(d),e)}function Sp(e,a,i,c,d){switch(a){case"focusin":return Sf=ou(Sf,e,a,i,c,d),!0;case"dragenter":return yf=ou(yf,e,a,i,c,d),!0;case"mouseover":return Cf=ou(Cf,e,a,i,c,d),!0;case"pointerover":var m=d.pointerId;return D2.set(m,ou(D2.get(m)||null,e,a,i,c,d)),!0;case"gotpointercapture":return m=d.pointerId,L2.set(m,ou(L2.get(m)||null,e,a,i,c,d)),!0}return!1}function E5(e){var a=Xo(e.target);if(a!==null){var i=F(a);if(i!==null){if(a=i.tag,a===13){if(a=ie(i),a!==null){e.blockedOn=a,Vn(e.priority,function(){v5(i)});return}}else if(a===31){if(a=te(i),a!==null){e.blockedOn=a,Vn(e.priority,function(){v5(i)});return}}else if(a===3&&i.stateNode.current.memoizedState.isDehydrated){e.blockedOn=i.tag===3?i.stateNode.containerInfo:null;return}}}e.blockedOn=null}function Hc(e){if(e.blockedOn!==null)return!1;for(var a=e.targetContainers;0<a.length;){var i=r1(e.nativeEvent);if(i===null){i=e.nativeEvent;var c=new i.constructor(i.type,i),d=c;G5!==null&&console.error("Expected currently replaying event to be null. This error is likely caused by a bug in React. Please file an issue."),G5=d,i.target.dispatchEvent(c),G5===null&&console.error("Expected currently replaying event to not be null. This error is likely caused by a bug in React. Please file an issue."),G5=null}else return a=bi(i),a!==null&&T5(a),e.blockedOn=i,!1;a.shift()}return!0}function c1(e,a,i){Hc(e)&&i.delete(a)}function U8(){e6=!1,Sf!==null&&Hc(Sf)&&(Sf=null),yf!==null&&Hc(yf)&&(yf=null),Cf!==null&&Hc(Cf)&&(Cf=null),D2.forEach(c1),L2.forEach(c1)}function Vd(e,a){e.blockedOn===a&&(e.blockedOn=null,e6||(e6=!0,ka.unstable_scheduleCallback(ka.unstable_NormalPriority,U8)))}function yp(e){zg!==e&&(zg=e,ka.unstable_scheduleCallback(ka.unstable_NormalPriority,function(){zg===e&&(zg=null);for(var a=0;a<e.length;a+=3){var i=e[a],c=e[a+1],d=e[a+2];if(typeof c!="function"){if(C5(c||i)===null)continue;break}var m=bi(i);m!==null&&(e.splice(a,3),a-=3,i={pending:!0,data:d,method:i.method,action:c},Object.freeze(i),ur(m,i,c,d))}}))}function hs(e){function a(x){return Vd(x,e)}Sf!==null&&Vd(Sf,e),yf!==null&&Vd(yf,e),Cf!==null&&Vd(Cf,e),D2.forEach(a),L2.forEach(a);for(var i=0;i<Ef.length;i++){var c=Ef[i];c.blockedOn===e&&(c.blockedOn=null)}for(;0<Ef.length&&(i=Ef[0],i.blockedOn===null);)E5(i),i.blockedOn===null&&Ef.shift();if(i=(e.ownerDocument||e).$$reactFormReplay,i!=null)for(c=0;c<i.length;c+=3){var d=i[c],m=i[c+1],S=d[$l]||null;if(typeof m=="function")S||yp(i);else if(S){var C=null;if(m&&m.hasAttribute("formAction")){if(d=m,S=m[$l]||null)C=S.formAction;else if(C5(d)!==null)continue}else C=S.action;typeof C=="function"?i[c+1]=C:(i.splice(c,3),c-=3),yp(i)}}}function Cp(){function e(m){m.canIntercept&&m.info==="react-transition"&&m.intercept({handler:function(){return new Promise(function(S){return d=S})},focusReset:"manual",scroll:"manual"})}function a(){d!==null&&(d(),d=null),c||setTimeout(i,20)}function i(){if(!c&&!navigation.transition){var m=navigation.currentEntry;m&&m.url!=null&&navigation.navigate(m.url,{state:m.getState(),info:"react-transition",history:"replace"})}}if(typeof navigation=="object"){var c=!1,d=null;return navigation.addEventListener("navigate",e),navigation.addEventListener("navigatesuccess",a),navigation.addEventListener("navigateerror",a),setTimeout(i,100),function(){c=!0,navigation.removeEventListener("navigate",e),navigation.removeEventListener("navigatesuccess",a),navigation.removeEventListener("navigateerror",a),d!==null&&(d(),d=null)}}}function A5(e){this._internalRoot=e}function Ii(e){this._internalRoot=e}function M5(e){e[Tr]&&(e._reactRootContainer?console.error("You are calling ReactDOMClient.createRoot() on a container that was previously passed to ReactDOM.render(). This is not supported."):console.error("You are calling ReactDOMClient.createRoot() on a container that has already been passed to createRoot() before. Instead, call root.render() on the existing root instead if you want to update it."))}typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());var ka=d7(),qd=tt,H8=z0,bt=Object.assign,Ep=Symbol.for("react.element"),li=Symbol.for("react.transitional.element"),ru=Symbol.for("react.portal"),Pc=Symbol.for("react.fragment"),Jl=Symbol.for("react.strict_mode"),jd=Symbol.for("react.profiler"),f1=Symbol.for("react.consumer"),wi=Symbol.for("react.context"),Wc=Symbol.for("react.forward_ref"),ps=Symbol.for("react.suspense"),fn=Symbol.for("react.suspense_list"),Yd=Symbol.for("react.memo"),Rl=Symbol.for("react.lazy"),Gi=Symbol.for("react.activity"),P8=Symbol.for("react.memo_cache_sentinel"),Ap=Symbol.iterator,Vc=Symbol.for("react.client.reference"),Va=Array.isArray,fe=qd.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,Wt=H8.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,W8=Object.freeze({pending:!1,data:null,method:null,action:null}),D5=[],L5=[],gr=-1,uu=Re(null),qc=Re(null),On=Re(null),su=Re(null),jc=0,Mp,gs,Yc,z5,Qd,d1,b1;w.__reactDisabledLog=!0;var Qc,x5,m1=!1,R5=new(typeof WeakMap=="function"?WeakMap:Map),dn=null,zo=!1,_n=Object.prototype.hasOwnProperty,N5=ka.unstable_scheduleCallback,h1=ka.unstable_cancelCallback,p1=ka.unstable_shouldYield,g1=ka.unstable_requestPaint,ul=ka.unstable_now,Xd=ka.unstable_getCurrentPriorityLevel,B5=ka.unstable_ImmediatePriority,T1=ka.unstable_UserBlockingPriority,Ts=ka.unstable_NormalPriority,Dp=ka.unstable_LowPriority,v1=ka.unstable_IdlePriority,O5=ka.log,Lp=ka.unstable_setDisableYieldValue,vs=null,Ka=null,xo=!1,Ro=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u",Cl=Math.clz32?Math.clz32:If,_5=Math.log,S1=Math.LN2,Xc=256,Kd=262144,Kc=4194304,Za=2,El=8,Nl=32,cu=268435456,ni=Math.random().toString(36).slice(2),ha="__reactFiber$"+ni,$l="__reactProps$"+ni,Tr="__reactContainer$"+ni,Ss="__reactEvents$"+ni,V8="__reactListeners$"+ni,zp="__reactHandles$"+ni,Zd="__reactResources$"+ni,Zc="__reactMarker$"+ni,xp=new Set,No={},Jc={},Rp={button:!0,checkbox:!0,image:!0,hidden:!0,radio:!0,reset:!0,submit:!0},$c=RegExp("^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"),I5={},y1={},C1=/[\n"\\]/g,w5=!1,Np=!1,Jd=!1,l=!1,o=!1,u=!1,f=["value","defaultValue"],g=!1,v=/["'&<>\n\t]|^\s|\s$/,D="address applet area article aside base basefont bgsound blockquote body br button caption center col colgroup dd details dir div dl dt embed fieldset figcaption figure footer form frame frameset h1 h2 h3 h4 h5 h6 head header hgroup hr html iframe img input isindex li link listing main marquee menu menuitem meta nav noembed noframes noscript object ol p param plaintext pre script section select source style summary table tbody td template textarea tfoot th thead title tr track ul wbr xmp".split(" "),O="applet caption html table td th marquee object template foreignObject desc title".split(" "),j=O.concat(["button"]),re="dd dt li option optgroup p rp rt".split(" "),he={current:null,formTag:null,aTagInScope:null,buttonTagInScope:null,nobrTagInScope:null,pTagInButtonScope:null,listItemTagAutoclosing:null,dlItemTagAutoclosing:null,containerTagInScope:null,implicitRootScope:!1},Ee={},ue={animation:"animationDelay animationDirection animationDuration animationFillMode animationIterationCount animationName animationPlayState animationTimingFunction".split(" "),background:"backgroundAttachment backgroundClip backgroundColor backgroundImage backgroundOrigin backgroundPositionX backgroundPositionY backgroundRepeat backgroundSize".split(" "),backgroundPosition:["backgroundPositionX","backgroundPositionY"],border:"borderBottomColor borderBottomStyle borderBottomWidth borderImageOutset borderImageRepeat borderImageSlice borderImageSource borderImageWidth borderLeftColor borderLeftStyle borderLeftWidth borderRightColor borderRightStyle borderRightWidth borderTopColor borderTopStyle borderTopWidth".split(" "),borderBlockEnd:["borderBlockEndColor","borderBlockEndStyle","borderBlockEndWidth"],borderBlockStart:["borderBlockStartColor","borderBlockStartStyle","borderBlockStartWidth"],borderBottom:["borderBottomColor","borderBottomStyle","borderBottomWidth"],borderColor:["borderBottomColor","borderLeftColor","borderRightColor","borderTopColor"],borderImage:["borderImageOutset","borderImageRepeat","borderImageSlice","borderImageSource","borderImageWidth"],borderInlineEnd:["borderInlineEndColor","borderInlineEndStyle","borderInlineEndWidth"],borderInlineStart:["borderInlineStartColor","borderInlineStartStyle","borderInlineStartWidth"],borderLeft:["borderLeftColor","borderLeftStyle","borderLeftWidth"],borderRadius:["borderBottomLeftRadius","borderBottomRightRadius","borderTopLeftRadius","borderTopRightRadius"],borderRight:["borderRightColor","borderRightStyle","borderRightWidth"],borderStyle:["borderBottomStyle","borderLeftStyle","borderRightStyle","borderTopStyle"],borderTop:["borderTopColor","borderTopStyle","borderTopWidth"],borderWidth:["borderBottomWidth","borderLeftWidth","borderRightWidth","borderTopWidth"],columnRule:["columnRuleColor","columnRuleStyle","columnRuleWidth"],columns:["columnCount","columnWidth"],flex:["flexBasis","flexGrow","flexShrink"],flexFlow:["flexDirection","flexWrap"],font:"fontFamily fontFeatureSettings fontKerning fontLanguageOverride fontSize fontSizeAdjust fontStretch fontStyle fontVariant fontVariantAlternates fontVariantCaps fontVariantEastAsian fontVariantLigatures fontVariantNumeric fontVariantPosition fontWeight lineHeight".split(" "),fontVariant:"fontVariantAlternates fontVariantCaps fontVariantEastAsian fontVariantLigatures fontVariantNumeric fontVariantPosition".split(" "),gap:["columnGap","rowGap"],grid:"gridAutoColumns gridAutoFlow gridAutoRows gridTemplateAreas gridTemplateColumns gridTemplateRows".split(" "),gridArea:["gridColumnEnd","gridColumnStart","gridRowEnd","gridRowStart"],gridColumn:["gridColumnEnd","gridColumnStart"],gridColumnGap:["columnGap"],gridGap:["columnGap","rowGap"],gridRow:["gridRowEnd","gridRowStart"],gridRowGap:["rowGap"],gridTemplate:["gridTemplateAreas","gridTemplateColumns","gridTemplateRows"],listStyle:["listStyleImage","listStylePosition","listStyleType"],margin:["marginBottom","marginLeft","marginRight","marginTop"],marker:["markerEnd","markerMid","markerStart"],mask:"maskClip maskComposite maskImage maskMode maskOrigin maskPositionX maskPositionY maskRepeat maskSize".split(" "),maskPosition:["maskPositionX","maskPositionY"],outline:["outlineColor","outlineStyle","outlineWidth"],overflow:["overflowX","overflowY"],padding:["paddingBottom","paddingLeft","paddingRight","paddingTop"],placeContent:["alignContent","justifyContent"],placeItems:["alignItems","justifyItems"],placeSelf:["alignSelf","justifySelf"],textDecoration:["textDecorationColor","textDecorationLine","textDecorationStyle"],textEmphasis:["textEmphasisColor","textEmphasisStyle"],transition:["transitionDelay","transitionDuration","transitionProperty","transitionTimingFunction"],wordWrap:["overflowWrap"]},de=/([A-Z])/g,Pe=/^ms-/,Ze=/^(?:webkit|moz|o)[A-Z]/,la=/^-ms-/,ee=/-(.)/g,K=/;\s*$/,ae={},ye={},Ye=!1,Ot=!1,We=new Set("animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp".split(" ")),ut="http://www.w3.org/1998/Math/MathML",ft="http://www.w3.org/2000/svg",Gt=new Map([["acceptCharset","accept-charset"],["htmlFor","for"],["httpEquiv","http-equiv"],["crossOrigin","crossorigin"],["accentHeight","accent-height"],["alignmentBaseline","alignment-baseline"],["arabicForm","arabic-form"],["baselineShift","baseline-shift"],["capHeight","cap-height"],["clipPath","clip-path"],["clipRule","clip-rule"],["colorInterpolation","color-interpolation"],["colorInterpolationFilters","color-interpolation-filters"],["colorProfile","color-profile"],["colorRendering","color-rendering"],["dominantBaseline","dominant-baseline"],["enableBackground","enable-background"],["fillOpacity","fill-opacity"],["fillRule","fill-rule"],["floodColor","flood-color"],["floodOpacity","flood-opacity"],["fontFamily","font-family"],["fontSize","font-size"],["fontSizeAdjust","font-size-adjust"],["fontStretch","font-stretch"],["fontStyle","font-style"],["fontVariant","font-variant"],["fontWeight","font-weight"],["glyphName","glyph-name"],["glyphOrientationHorizontal","glyph-orientation-horizontal"],["glyphOrientationVertical","glyph-orientation-vertical"],["horizAdvX","horiz-adv-x"],["horizOriginX","horiz-origin-x"],["imageRendering","image-rendering"],["letterSpacing","letter-spacing"],["lightingColor","lighting-color"],["markerEnd","marker-end"],["markerMid","marker-mid"],["markerStart","marker-start"],["overlinePosition","overline-position"],["overlineThickness","overline-thickness"],["paintOrder","paint-order"],["panose-1","panose-1"],["pointerEvents","pointer-events"],["renderingIntent","rendering-intent"],["shapeRendering","shape-rendering"],["stopColor","stop-color"],["stopOpacity","stop-opacity"],["strikethroughPosition","strikethrough-position"],["strikethroughThickness","strikethrough-thickness"],["strokeDasharray","stroke-dasharray"],["strokeDashoffset","stroke-dashoffset"],["strokeLinecap","stroke-linecap"],["strokeLinejoin","stroke-linejoin"],["strokeMiterlimit","stroke-miterlimit"],["strokeOpacity","stroke-opacity"],["strokeWidth","stroke-width"],["textAnchor","text-anchor"],["textDecoration","text-decoration"],["textRendering","text-rendering"],["transformOrigin","transform-origin"],["underlinePosition","underline-position"],["underlineThickness","underline-thickness"],["unicodeBidi","unicode-bidi"],["unicodeRange","unicode-range"],["unitsPerEm","units-per-em"],["vAlphabetic","v-alphabetic"],["vHanging","v-hanging"],["vIdeographic","v-ideographic"],["vMathematical","v-mathematical"],["vectorEffect","vector-effect"],["vertAdvY","vert-adv-y"],["vertOriginX","vert-origin-x"],["vertOriginY","vert-origin-y"],["wordSpacing","word-spacing"],["writingMode","writing-mode"],["xmlnsXlink","xmlns:xlink"],["xHeight","x-height"]]),ki={accept:"accept",acceptcharset:"acceptCharset","accept-charset":"acceptCharset",accesskey:"accessKey",action:"action",allowfullscreen:"allowFullScreen",alt:"alt",as:"as",async:"async",autocapitalize:"autoCapitalize",autocomplete:"autoComplete",autocorrect:"autoCorrect",autofocus:"autoFocus",autoplay:"autoPlay",autosave:"autoSave",capture:"capture",cellpadding:"cellPadding",cellspacing:"cellSpacing",challenge:"challenge",charset:"charSet",checked:"checked",children:"children",cite:"cite",class:"className",classid:"classID",classname:"className",cols:"cols",colspan:"colSpan",content:"content",contenteditable:"contentEditable",contextmenu:"contextMenu",controls:"controls",controlslist:"controlsList",coords:"coords",crossorigin:"crossOrigin",dangerouslysetinnerhtml:"dangerouslySetInnerHTML",data:"data",datetime:"dateTime",default:"default",defaultchecked:"defaultChecked",defaultvalue:"defaultValue",defer:"defer",dir:"dir",disabled:"disabled",disablepictureinpicture:"disablePictureInPicture",disableremoteplayback:"disableRemotePlayback",download:"download",draggable:"draggable",enctype:"encType",enterkeyhint:"enterKeyHint",fetchpriority:"fetchPriority",for:"htmlFor",form:"form",formmethod:"formMethod",formaction:"formAction",formenctype:"formEncType",formnovalidate:"formNoValidate",formtarget:"formTarget",frameborder:"frameBorder",headers:"headers",height:"height",hidden:"hidden",high:"high",href:"href",hreflang:"hrefLang",htmlfor:"htmlFor",httpequiv:"httpEquiv","http-equiv":"httpEquiv",icon:"icon",id:"id",imagesizes:"imageSizes",imagesrcset:"imageSrcSet",inert:"inert",innerhtml:"innerHTML",inputmode:"inputMode",integrity:"integrity",is:"is",itemid:"itemID",itemprop:"itemProp",itemref:"itemRef",itemscope:"itemScope",itemtype:"itemType",keyparams:"keyParams",keytype:"keyType",kind:"kind",label:"label",lang:"lang",list:"list",loop:"loop",low:"low",manifest:"manifest",marginwidth:"marginWidth",marginheight:"marginHeight",max:"max",maxlength:"maxLength",media:"media",mediagroup:"mediaGroup",method:"method",min:"min",minlength:"minLength",multiple:"multiple",muted:"muted",name:"name",nomodule:"noModule",nonce:"nonce",novalidate:"noValidate",open:"open",optimum:"optimum",pattern:"pattern",placeholder:"placeholder",playsinline:"playsInline",poster:"poster",preload:"preload",profile:"profile",radiogroup:"radioGroup",readonly:"readOnly",referrerpolicy:"referrerPolicy",rel:"rel",required:"required",reversed:"reversed",role:"role",rows:"rows",rowspan:"rowSpan",sandbox:"sandbox",scope:"scope",scoped:"scoped",scrolling:"scrolling",seamless:"seamless",selected:"selected",shape:"shape",size:"size",sizes:"sizes",span:"span",spellcheck:"spellCheck",src:"src",srcdoc:"srcDoc",srclang:"srcLang",srcset:"srcSet",start:"start",step:"step",style:"style",summary:"summary",tabindex:"tabIndex",target:"target",title:"title",type:"type",usemap:"useMap",value:"value",width:"width",wmode:"wmode",wrap:"wrap",about:"about",accentheight:"accentHeight","accent-height":"accentHeight",accumulate:"accumulate",additive:"additive",alignmentbaseline:"alignmentBaseline","alignment-baseline":"alignmentBaseline",allowreorder:"allowReorder",alphabetic:"alphabetic",amplitude:"amplitude",arabicform:"arabicForm","arabic-form":"arabicForm",ascent:"ascent",attributename:"attributeName",attributetype:"attributeType",autoreverse:"autoReverse",azimuth:"azimuth",basefrequency:"baseFrequency",baselineshift:"baselineShift","baseline-shift":"baselineShift",baseprofile:"baseProfile",bbox:"bbox",begin:"begin",bias:"bias",by:"by",calcmode:"calcMode",capheight:"capHeight","cap-height":"capHeight",clip:"clip",clippath:"clipPath","clip-path":"clipPath",clippathunits:"clipPathUnits",cliprule:"clipRule","clip-rule":"clipRule",color:"color",colorinterpolation:"colorInterpolation","color-interpolation":"colorInterpolation",colorinterpolationfilters:"colorInterpolationFilters","color-interpolation-filters":"colorInterpolationFilters",colorprofile:"colorProfile","color-profile":"colorProfile",colorrendering:"colorRendering","color-rendering":"colorRendering",contentscripttype:"contentScriptType",contentstyletype:"contentStyleType",cursor:"cursor",cx:"cx",cy:"cy",d:"d",datatype:"datatype",decelerate:"decelerate",descent:"descent",diffuseconstant:"diffuseConstant",direction:"direction",display:"display",divisor:"divisor",dominantbaseline:"dominantBaseline","dominant-baseline":"dominantBaseline",dur:"dur",dx:"dx",dy:"dy",edgemode:"edgeMode",elevation:"elevation",enablebackground:"enableBackground","enable-background":"enableBackground",end:"end",exponent:"exponent",externalresourcesrequired:"externalResourcesRequired",fill:"fill",fillopacity:"fillOpacity","fill-opacity":"fillOpacity",fillrule:"fillRule","fill-rule":"fillRule",filter:"filter",filterres:"filterRes",filterunits:"filterUnits",floodopacity:"floodOpacity","flood-opacity":"floodOpacity",floodcolor:"floodColor","flood-color":"floodColor",focusable:"focusable",fontfamily:"fontFamily","font-family":"fontFamily",fontsize:"fontSize","font-size":"fontSize",fontsizeadjust:"fontSizeAdjust","font-size-adjust":"fontSizeAdjust",fontstretch:"fontStretch","font-stretch":"fontStretch",fontstyle:"fontStyle","font-style":"fontStyle",fontvariant:"fontVariant","font-variant":"fontVariant",fontweight:"fontWeight","font-weight":"fontWeight",format:"format",from:"from",fx:"fx",fy:"fy",g1:"g1",g2:"g2",glyphname:"glyphName","glyph-name":"glyphName",glyphorientationhorizontal:"glyphOrientationHorizontal","glyph-orientation-horizontal":"glyphOrientationHorizontal",glyphorientationvertical:"glyphOrientationVertical","glyph-orientation-vertical":"glyphOrientationVertical",glyphref:"glyphRef",gradienttransform:"gradientTransform",gradientunits:"gradientUnits",hanging:"hanging",horizadvx:"horizAdvX","horiz-adv-x":"horizAdvX",horizoriginx:"horizOriginX","horiz-origin-x":"horizOriginX",ideographic:"ideographic",imagerendering:"imageRendering","image-rendering":"imageRendering",in2:"in2",in:"in",inlist:"inlist",intercept:"intercept",k1:"k1",k2:"k2",k3:"k3",k4:"k4",k:"k",kernelmatrix:"kernelMatrix",kernelunitlength:"kernelUnitLength",kerning:"kerning",keypoints:"keyPoints",keysplines:"keySplines",keytimes:"keyTimes",lengthadjust:"lengthAdjust",letterspacing:"letterSpacing","letter-spacing":"letterSpacing",lightingcolor:"lightingColor","lighting-color":"lightingColor",limitingconeangle:"limitingConeAngle",local:"local",markerend:"markerEnd","marker-end":"markerEnd",markerheight:"markerHeight",markermid:"markerMid","marker-mid":"markerMid",markerstart:"markerStart","marker-start":"markerStart",markerunits:"markerUnits",markerwidth:"markerWidth",mask:"mask",maskcontentunits:"maskContentUnits",maskunits:"maskUnits",mathematical:"mathematical",mode:"mode",numoctaves:"numOctaves",offset:"offset",opacity:"opacity",operator:"operator",order:"order",orient:"orient",orientation:"orientation",origin:"origin",overflow:"overflow",overlineposition:"overlinePosition","overline-position":"overlinePosition",overlinethickness:"overlineThickness","overline-thickness":"overlineThickness",paintorder:"paintOrder","paint-order":"paintOrder",panose1:"panose1","panose-1":"panose1",pathlength:"pathLength",patterncontentunits:"patternContentUnits",patterntransform:"patternTransform",patternunits:"patternUnits",pointerevents:"pointerEvents","pointer-events":"pointerEvents",points:"points",pointsatx:"pointsAtX",pointsaty:"pointsAtY",pointsatz:"pointsAtZ",popover:"popover",popovertarget:"popoverTarget",popovertargetaction:"popoverTargetAction",prefix:"prefix",preservealpha:"preserveAlpha",preserveaspectratio:"preserveAspectRatio",primitiveunits:"primitiveUnits",property:"property",r:"r",radius:"radius",refx:"refX",refy:"refY",renderingintent:"renderingIntent","rendering-intent":"renderingIntent",repeatcount:"repeatCount",repeatdur:"repeatDur",requiredextensions:"requiredExtensions",requiredfeatures:"requiredFeatures",resource:"resource",restart:"restart",result:"result",results:"results",rotate:"rotate",rx:"rx",ry:"ry",scale:"scale",security:"security",seed:"seed",shaperendering:"shapeRendering","shape-rendering":"shapeRendering",slope:"slope",spacing:"spacing",specularconstant:"specularConstant",specularexponent:"specularExponent",speed:"speed",spreadmethod:"spreadMethod",startoffset:"startOffset",stddeviation:"stdDeviation",stemh:"stemh",stemv:"stemv",stitchtiles:"stitchTiles",stopcolor:"stopColor","stop-color":"stopColor",stopopacity:"stopOpacity","stop-opacity":"stopOpacity",strikethroughposition:"strikethroughPosition","strikethrough-position":"strikethroughPosition",strikethroughthickness:"strikethroughThickness","strikethrough-thickness":"strikethroughThickness",string:"string",stroke:"stroke",strokedasharray:"strokeDasharray","stroke-dasharray":"strokeDasharray",strokedashoffset:"strokeDashoffset","stroke-dashoffset":"strokeDashoffset",strokelinecap:"strokeLinecap","stroke-linecap":"strokeLinecap",strokelinejoin:"strokeLinejoin","stroke-linejoin":"strokeLinejoin",strokemiterlimit:"strokeMiterlimit","stroke-miterlimit":"strokeMiterlimit",strokewidth:"strokeWidth","stroke-width":"strokeWidth",strokeopacity:"strokeOpacity","stroke-opacity":"strokeOpacity",suppresscontenteditablewarning:"suppressContentEditableWarning",suppresshydrationwarning:"suppressHydrationWarning",surfacescale:"surfaceScale",systemlanguage:"systemLanguage",tablevalues:"tableValues",targetx:"targetX",targety:"targetY",textanchor:"textAnchor","text-anchor":"textAnchor",textdecoration:"textDecoration","text-decoration":"textDecoration",textlength:"textLength",textrendering:"textRendering","text-rendering":"textRendering",to:"to",transform:"transform",transformorigin:"transformOrigin","transform-origin":"transformOrigin",typeof:"typeof",u1:"u1",u2:"u2",underlineposition:"underlinePosition","underline-position":"underlinePosition",underlinethickness:"underlineThickness","underline-thickness":"underlineThickness",unicode:"unicode",unicodebidi:"unicodeBidi","unicode-bidi":"unicodeBidi",unicoderange:"unicodeRange","unicode-range":"unicodeRange",unitsperem:"unitsPerEm","units-per-em":"unitsPerEm",unselectable:"unselectable",valphabetic:"vAlphabetic","v-alphabetic":"vAlphabetic",values:"values",vectoreffect:"vectorEffect","vector-effect":"vectorEffect",version:"version",vertadvy:"vertAdvY","vert-adv-y":"vertAdvY",vertoriginx:"vertOriginX","vert-origin-x":"vertOriginX",vertoriginy:"vertOriginY","vert-origin-y":"vertOriginY",vhanging:"vHanging","v-hanging":"vHanging",videographic:"vIdeographic","v-ideographic":"vIdeographic",viewbox:"viewBox",viewtarget:"viewTarget",visibility:"visibility",vmathematical:"vMathematical","v-mathematical":"vMathematical",vocab:"vocab",widths:"widths",wordspacing:"wordSpacing","word-spacing":"wordSpacing",writingmode:"writingMode","writing-mode":"writingMode",x1:"x1",x2:"x2",x:"x",xchannelselector:"xChannelSelector",xheight:"xHeight","x-height":"xHeight",xlinkactuate:"xlinkActuate","xlink:actuate":"xlinkActuate",xlinkarcrole:"xlinkArcrole","xlink:arcrole":"xlinkArcrole",xlinkhref:"xlinkHref","xlink:href":"xlinkHref",xlinkrole:"xlinkRole","xlink:role":"xlinkRole",xlinkshow:"xlinkShow","xlink:show":"xlinkShow",xlinktitle:"xlinkTitle","xlink:title":"xlinkTitle",xlinktype:"xlinkType","xlink:type":"xlinkType",xmlbase:"xmlBase","xml:base":"xmlBase",xmllang:"xmlLang","xml:lang":"xmlLang",xmlns:"xmlns","xml:space":"xmlSpace",xmlnsxlink:"xmlnsXlink","xmlns:xlink":"xmlnsXlink",xmlspace:"xmlSpace",y1:"y1",y2:"y2",y:"y",ychannelselector:"yChannelSelector",z:"z",zoomandpan:"zoomAndPan"},Bp={"aria-current":0,"aria-description":0,"aria-details":0,"aria-disabled":0,"aria-hidden":0,"aria-invalid":0,"aria-keyshortcuts":0,"aria-label":0,"aria-roledescription":0,"aria-autocomplete":0,"aria-checked":0,"aria-expanded":0,"aria-haspopup":0,"aria-level":0,"aria-modal":0,"aria-multiline":0,"aria-multiselectable":0,"aria-orientation":0,"aria-placeholder":0,"aria-pressed":0,"aria-readonly":0,"aria-required":0,"aria-selected":0,"aria-sort":0,"aria-valuemax":0,"aria-valuemin":0,"aria-valuenow":0,"aria-valuetext":0,"aria-atomic":0,"aria-busy":0,"aria-live":0,"aria-relevant":0,"aria-dropeffect":0,"aria-grabbed":0,"aria-activedescendant":0,"aria-colcount":0,"aria-colindex":0,"aria-colspan":0,"aria-controls":0,"aria-describedby":0,"aria-errormessage":0,"aria-flowto":0,"aria-labelledby":0,"aria-owns":0,"aria-posinset":0,"aria-rowcount":0,"aria-rowindex":0,"aria-rowspan":0,"aria-setsize":0,"aria-braillelabel":0,"aria-brailleroledescription":0,"aria-colindextext":0,"aria-rowindextext":0},E1={},jA=RegExp("^(aria)-[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"),YA=RegExp("^(aria)[A-Z][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"),a3=!1,In={},l3=/^on./,QA=/^on[^A-Z]/,XA=RegExp("^(aria)-[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"),KA=RegExp("^(aria)[A-Z][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"),ZA=/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*:/i,G5=null,A1=null,M1=null,q8=!1,fu=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),j8=!1;if(fu)try{var k5={};Object.defineProperty(k5,"passive",{get:function(){j8=!0}}),window.addEventListener("test",k5,k5),window.removeEventListener("test",k5,k5)}catch{j8=!1}var ef=null,Y8=null,Op=null,$d={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},_p=tl($d),F5=bt({},$d,{view:0,detail:0}),JA=tl(F5),Q8,X8,U5,Ip=bt({},F5,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Wf,button:0,buttons:0,relatedTarget:function(e){return e.relatedTarget===void 0?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==U5&&(U5&&e.type==="mousemove"?(Q8=e.screenX-U5.screenX,X8=e.screenY-U5.screenY):X8=Q8=0,U5=e),Q8)},movementY:function(e){return"movementY"in e?e.movementY:X8}}),n3=tl(Ip),$A=bt({},Ip,{dataTransfer:0}),eM=tl($A),tM=bt({},F5,{relatedTarget:0}),K8=tl(tM),aM=bt({},$d,{animationName:0,elapsedTime:0,pseudoElement:0}),lM=tl(aM),nM=bt({},$d,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),iM=tl(nM),oM=bt({},$d,{data:0}),i3=tl(oM),rM=i3,uM={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},sM={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},cM={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"},fM=bt({},F5,{key:function(e){if(e.key){var a=uM[e.key]||e.key;if(a!=="Unidentified")return a}return e.type==="keypress"?(e=Pf(e),e===13?"Enter":String.fromCharCode(e)):e.type==="keydown"||e.type==="keyup"?sM[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Wf,charCode:function(e){return e.type==="keypress"?Pf(e):0},keyCode:function(e){return e.type==="keydown"||e.type==="keyup"?e.keyCode:0},which:function(e){return e.type==="keypress"?Pf(e):e.type==="keydown"||e.type==="keyup"?e.keyCode:0}}),dM=tl(fM),bM=bt({},Ip,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),o3=tl(bM),mM=bt({},F5,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Wf}),hM=tl(mM),pM=bt({},$d,{propertyName:0,elapsedTime:0,pseudoElement:0}),gM=tl(pM),TM=bt({},Ip,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),vM=tl(TM),SM=bt({},$d,{newState:0,oldState:0}),yM=tl(SM),CM=[9,13,27,32],r3=229,Z8=fu&&"CompositionEvent"in window,H5=null;fu&&"documentMode"in document&&(H5=document.documentMode);var EM=fu&&"TextEvent"in window&&!H5,u3=fu&&(!Z8||H5&&8<H5&&11>=H5),s3=32,c3=String.fromCharCode(s3),f3=!1,D1=!1,AM={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0},P5=null,W5=null,d3=!1;fu&&(d3=Y0("input")&&(!document.documentMode||9<document.documentMode));var wn=typeof Object.is=="function"?Object.is:Q0,MM=fu&&"documentMode"in document&&11>=document.documentMode,L1=null,J8=null,V5=null,$8=!1,z1={animationend:Iu("Animation","AnimationEnd"),animationiteration:Iu("Animation","AnimationIteration"),animationstart:Iu("Animation","AnimationStart"),transitionrun:Iu("Transition","TransitionRun"),transitionstart:Iu("Transition","TransitionStart"),transitioncancel:Iu("Transition","TransitionCancel"),transitionend:Iu("Transition","TransitionEnd")},e9={},b3={};fu&&(b3=document.createElement("div").style,"AnimationEvent"in window||(delete z1.animationend.animation,delete z1.animationiteration.animation,delete z1.animationstart.animation),"TransitionEvent"in window||delete z1.transitionend.transition);var m3=wu("animationend"),h3=wu("animationiteration"),p3=wu("animationstart"),DM=wu("transitionrun"),LM=wu("transitionstart"),zM=wu("transitioncancel"),g3=wu("transitionend"),T3=new Map,t9="abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");t9.push("scrollEnd");var v3=0;if(typeof performance=="object"&&typeof performance.now=="function")var xM=performance,S3=function(){return xM.now()};else{var RM=Date;S3=function(){return RM.now()}}var a9=typeof reportError=="function"?reportError:function(e){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var a=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof e=="object"&&e!==null&&typeof e.message=="string"?String(e.message):String(e),error:e});if(!window.dispatchEvent(a))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",e);return}console.error(e)},NM="This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects.",wp=0,l9=1,n9=2,i9=3,Gp="– ",kp="+ ",y3="  ",pa=typeof console<"u"&&typeof console.timeStamp=="function"&&typeof performance<"u"&&typeof performance.measure=="function",Bo="Components ⚛",Rt="Scheduler ⚛",Bt="Blocking",tf=!1,ys={color:"primary",properties:null,tooltipText:"",track:Bo},af={start:-0,end:-0,detail:{devtools:ys}},BM=["Changed Props",""],C3="This component received deeply equal props. It might benefit from useMemo or the React Compiler in its owner.",OM=["Changed Props",C3],q5=1,Cs=2,Oo=[],x1=0,o9=0,lf={};Object.freeze(lf);var _o=null,R1=null,et=0,_M=1,mt=2,bn=8,vr=16,IM=32,E3=!1;try{var A3=Object.preventExtensions({})}catch{E3=!0}var r9=new WeakMap,N1=[],B1=0,Fp=null,j5=0,Io=[],wo=0,e0=null,Es=1,As="",en=null,ga=null,zt=!1,du=!1,Fi=null,nf=null,Go=!1,u9=Error("Hydration Mismatch Exception: This is not a real error, and should not leak into userspace. If you're seeing this, it's likely a bug in React."),s9=Re(null),c9=Re(null),M3={},Up=null,O1=null,_1=!1,wM=typeof AbortController<"u"?AbortController:function(){var e=[],a=this.signal={aborted:!1,addEventListener:function(i,c){e.push(c)}};this.abort=function(){a.aborted=!0,e.forEach(function(i){return i()})}},GM=ka.unstable_scheduleCallback,kM=ka.unstable_NormalPriority,sl={$$typeof:wi,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0,_currentRenderer:null,_currentRenderer2:null},cl=ka.unstable_now,Hp=console.createTask?console.createTask:function(){return null},Y5=1,Pp=2,Bl=-0,of=-0,Ms=-0,Ds=null,Gn=-1.1,t0=-0,Ra=-0,Xe=-1.1,Je=-1.1,Da=null,Fa=!1,a0=-0,bu=-1.1,Q5=null,rf=0,f9=null,d9=null,l0=-1.1,X5=null,I1=-1.1,Wp=-1.1,Ls=-0,zs=-1.1,ko=-1.1,b9=0,K5=null,D3=null,L3=null,uf=-1.1,n0=null,sf=-1.1,Vp=-1.1,z3=-0,x3=-0,qp=0,FM=null,R3=0,Z5=-1.1,jp=!1,Yp=!1,J5=null,m9=0,i0=0,w1=null,N3=fe.S;fe.S=function(e,a){if(Dv=ul(),typeof a=="object"&&a!==null&&typeof a.then=="function"){if(0>zs&&0>ko){zs=cl();var i=Ic(),c=Do();(i!==sf||c!==n0)&&(sf=-1.1),uf=i,n0=c}tr(e,a)}N3!==null&&N3(e,a)};var o0=Re(null),Sr={recordUnsafeLifecycleWarnings:function(){},flushPendingUnsafeLifecycleWarnings:function(){},recordLegacyContextWarning:function(){},flushLegacyContextWarning:function(){},discardPendingWarnings:function(){}},$5=[],e2=[],t2=[],a2=[],l2=[],n2=[],r0=new Set;Sr.recordUnsafeLifecycleWarnings=function(e,a){r0.has(e.type)||(typeof a.componentWillMount=="function"&&a.componentWillMount.__suppressDeprecationWarning!==!0&&$5.push(e),e.mode&bn&&typeof a.UNSAFE_componentWillMount=="function"&&e2.push(e),typeof a.componentWillReceiveProps=="function"&&a.componentWillReceiveProps.__suppressDeprecationWarning!==!0&&t2.push(e),e.mode&bn&&typeof a.UNSAFE_componentWillReceiveProps=="function"&&a2.push(e),typeof a.componentWillUpdate=="function"&&a.componentWillUpdate.__suppressDeprecationWarning!==!0&&l2.push(e),e.mode&bn&&typeof a.UNSAFE_componentWillUpdate=="function"&&n2.push(e))},Sr.flushPendingUnsafeLifecycleWarnings=function(){var e=new Set;0<$5.length&&($5.forEach(function(C){e.add(Ce(C)||"Component"),r0.add(C.type)}),$5=[]);var a=new Set;0<e2.length&&(e2.forEach(function(C){a.add(Ce(C)||"Component"),r0.add(C.type)}),e2=[]);var i=new Set;0<t2.length&&(t2.forEach(function(C){i.add(Ce(C)||"Component"),r0.add(C.type)}),t2=[]);var c=new Set;0<a2.length&&(a2.forEach(function(C){c.add(Ce(C)||"Component"),r0.add(C.type)}),a2=[]);var d=new Set;0<l2.length&&(l2.forEach(function(C){d.add(Ce(C)||"Component"),r0.add(C.type)}),l2=[]);var m=new Set;if(0<n2.length&&(n2.forEach(function(C){m.add(Ce(C)||"Component"),r0.add(C.type)}),n2=[]),0<a.size){var S=L(a);console.error(`Using UNSAFE_componentWillMount in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.
209
+
210
+ * Move code with side effects to componentDidMount, and set initial state in the constructor.
211
+
212
+ Please update the following components: %s`,S)}0<c.size&&(S=L(c),console.error(`Using UNSAFE_componentWillReceiveProps in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.
213
+
214
+ * Move data fetching code or side effects to componentDidUpdate.
215
+ * If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://react.dev/link/derived-state
216
+
217
+ Please update the following components: %s`,S)),0<m.size&&(S=L(m),console.error(`Using UNSAFE_componentWillUpdate in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.
218
+
219
+ * Move data fetching code or side effects to componentDidUpdate.
220
+
221
+ Please update the following components: %s`,S)),0<e.size&&(S=L(e),console.warn(`componentWillMount has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.
222
+
223
+ * Move code with side effects to componentDidMount, and set initial state in the constructor.
224
+ * Rename componentWillMount to UNSAFE_componentWillMount to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run \`npx react-codemod rename-unsafe-lifecycles\` in your project source folder.
225
+
226
+ Please update the following components: %s`,S)),0<i.size&&(S=L(i),console.warn(`componentWillReceiveProps has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.
227
+
228
+ * Move data fetching code or side effects to componentDidUpdate.
229
+ * If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://react.dev/link/derived-state
230
+ * Rename componentWillReceiveProps to UNSAFE_componentWillReceiveProps to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run \`npx react-codemod rename-unsafe-lifecycles\` in your project source folder.
231
+
232
+ Please update the following components: %s`,S)),0<d.size&&(S=L(d),console.warn(`componentWillUpdate has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.
233
+
234
+ * Move data fetching code or side effects to componentDidUpdate.
235
+ * Rename componentWillUpdate to UNSAFE_componentWillUpdate to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run \`npx react-codemod rename-unsafe-lifecycles\` in your project source folder.
236
+
237
+ Please update the following components: %s`,S))};var Qp=new Map,B3=new Set;Sr.recordLegacyContextWarning=function(e,a){for(var i=null,c=e;c!==null;)c.mode&bn&&(i=c),c=c.return;i===null?console.error("Expected to find a StrictMode component in a strict mode tree. This error is likely caused by a bug in React. Please file an issue."):!B3.has(e.type)&&(c=Qp.get(i),e.type.contextTypes!=null||e.type.childContextTypes!=null||a!==null&&typeof a.getChildContext=="function")&&(c===void 0&&(c=[],Qp.set(i,c)),c.push(e))},Sr.flushLegacyContextWarning=function(){Qp.forEach(function(e){if(e.length!==0){var a=e[0],i=new Set;e.forEach(function(d){i.add(Ce(d)||"Component"),B3.add(d.type)});var c=L(i);Ge(a,function(){console.error(`Legacy context API has been detected within a strict-mode tree.
238
+
239
+ The old API will be supported in all 16.x releases, but applications using it should migrate to the new version.
240
+
241
+ Please update the following components: %s
242
+
243
+ Learn more about this warning here: https://react.dev/link/legacy-context`,c)})}})},Sr.discardPendingWarnings=function(){$5=[],e2=[],t2=[],a2=[],l2=[],n2=[],Qp=new Map};var O3={react_stack_bottom_frame:function(e,a,i){var c=zo;zo=!0;try{return e(a,i)}finally{zo=c}}},h9=O3.react_stack_bottom_frame.bind(O3),_3={react_stack_bottom_frame:function(e){var a=zo;zo=!0;try{return e.render()}finally{zo=a}}},I3=_3.react_stack_bottom_frame.bind(_3),w3={react_stack_bottom_frame:function(e,a){try{a.componentDidMount()}catch(i){ct(e,e.return,i)}}},p9=w3.react_stack_bottom_frame.bind(w3),G3={react_stack_bottom_frame:function(e,a,i,c,d){try{a.componentDidUpdate(i,c,d)}catch(m){ct(e,e.return,m)}}},k3=G3.react_stack_bottom_frame.bind(G3),F3={react_stack_bottom_frame:function(e,a){var i=a.stack;e.componentDidCatch(a.value,{componentStack:i!==null?i:""})}},UM=F3.react_stack_bottom_frame.bind(F3),U3={react_stack_bottom_frame:function(e,a,i){try{i.componentWillUnmount()}catch(c){ct(e,a,c)}}},H3=U3.react_stack_bottom_frame.bind(U3),P3={react_stack_bottom_frame:function(e){var a=e.create;return e=e.inst,a=a(),e.destroy=a}},HM=P3.react_stack_bottom_frame.bind(P3),W3={react_stack_bottom_frame:function(e,a,i){try{i()}catch(c){ct(e,a,c)}}},PM=W3.react_stack_bottom_frame.bind(W3),V3={react_stack_bottom_frame:function(e){var a=e._init;return a(e._payload)}},WM=V3.react_stack_bottom_frame.bind(V3),G1=Error("Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."),g9=Error("Suspense Exception: This is not a real error, and should not leak into userspace. If you're seeing this, it's likely a bug in React."),Xp=Error("Suspense Exception: This is not a real error! It's an implementation detail of `useActionState` to interrupt the current render. You must either rethrow it immediately, or move the `useActionState` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary."),Kp={then:function(){console.error('Internal React error: A listener was unexpectedly attached to a "noop" thenable. This is a bug in React. Please file an issue.')}},u0=null,i2=!1,k1=null,o2=0,ht=null,T9,q3=T9=!1,j3={},Y3={},Q3={};M=function(e,a,i){if(i!==null&&typeof i=="object"&&i._store&&(!i._store.validated&&i.key==null||i._store.validated===2)){if(typeof i._store!="object")throw Error("React Component in warnForMissingKey should have a _store. This error is likely caused by a bug in React. Please file an issue.");i._store.validated=1;var c=Ce(e),d=c||"null";if(!j3[d]){j3[d]=!0,i=i._owner,e=e._debugOwner;var m="";e&&typeof e.tag=="number"&&(d=Ce(e))&&(m=`
244
+
245
+ Check the render method of \``+d+"`."),m||c&&(m=`
246
+
247
+ Check the top-level render call using <`+c+">.");var S="";i!=null&&e!==i&&(c=null,typeof i.tag=="number"?c=Ce(i):typeof i.name=="string"&&(c=i.name),c&&(S=" It was passed a child from "+c+".")),Ge(a,function(){console.error('Each child in a list should have a unique "key" prop.%s%s See https://react.dev/link/warning-keys for more information.',m,S)})}}};var s0=ll(!0),X3=ll(!1),K3=0,Z3=1,J3=2,v9=3,cf=!1,$3=!1,S9=null,y9=!1,F1=Re(null),Zp=Re(0),Ui=Re(null),Fo=null,U1=1,r2=2,Ja=Re(0),Jp=0,Uo=1,kn=2,Hi=4,Fn=8,H1,ev=new Set,tv=new Set,C9=new Set,av=new Set,xs=0,nt=null,ua=null,fl=null,$p=!1,P1=!1,c0=!1,eg=0,u2=0,Rs=null,VM=0,qM=25,ce=null,Ho=null,Ns=-1,s2=!1,c2={readContext:Ht,use:ir,useCallback:za,useContext:za,useEffect:za,useImperativeHandle:za,useLayoutEffect:za,useInsertionEffect:za,useMemo:za,useReducer:za,useRef:za,useState:za,useDebugValue:za,useDeferredValue:za,useTransition:za,useSyncExternalStore:za,useId:za,useHostTransitionStatus:za,useFormState:za,useActionState:za,useOptimistic:za,useMemoCache:za,useCacheRefresh:za};c2.useEffectEvent=za;var E9=null,lv=null,A9=null,nv=null,mu=null,yr=null,tg=null;E9={readContext:function(e){return Ht(e)},use:ir,useCallback:function(e,a){return ce="useCallback",lt(),nr(a),hb(e,a)},useContext:function(e){return ce="useContext",lt(),Ht(e)},useEffect:function(e,a){return ce="useEffect",lt(),nr(a),$u(e,a)},useImperativeHandle:function(e,a,i){return ce="useImperativeHandle",lt(),nr(i),mo(e,a,i)},useInsertionEffect:function(e,a){ce="useInsertionEffect",lt(),nr(a),Xr(4,kn,e,a)},useLayoutEffect:function(e,a){return ce="useLayoutEffect",lt(),nr(a),Vl(e,a)},useMemo:function(e,a){ce="useMemo",lt(),nr(a);var i=fe.H;fe.H=mu;try{return ql(e,a)}finally{fe.H=i}},useReducer:function(e,a,i){ce="useReducer",lt();var c=fe.H;fe.H=mu;try{return fc(e,a,i)}finally{fe.H=c}},useRef:function(e){return ce="useRef",lt(),mb(e)},useState:function(e){ce="useState",lt();var a=fe.H;fe.H=mu;try{return qr(e)}finally{fe.H=a}},useDebugValue:function(){ce="useDebugValue",lt()},useDeferredValue:function(e,a){return ce="useDeferredValue",lt(),pc(e,a)},useTransition:function(){return ce="useTransition",lt(),Kr()},useSyncExternalStore:function(e,a,i){return ce="useSyncExternalStore",lt(),dc(e,a,i)},useId:function(){return ce="useId",lt(),bd()},useFormState:function(e,a){return ce="useFormState",lt(),ad(),Dn(e,a)},useActionState:function(e,a){return ce="useActionState",lt(),Dn(e,a)},useOptimistic:function(e){return ce="useOptimistic",lt(),Ju(e)},useHostTransitionStatus:sr,useMemoCache:An,useCacheRefresh:function(){return ce="useCacheRefresh",lt(),pb()},useEffectEvent:function(e){return ce="useEffectEvent",lt(),fd(e)}},lv={readContext:function(e){return Ht(e)},use:ir,useCallback:function(e,a){return ce="useCallback",Ae(),hb(e,a)},useContext:function(e){return ce="useContext",Ae(),Ht(e)},useEffect:function(e,a){return ce="useEffect",Ae(),$u(e,a)},useImperativeHandle:function(e,a,i){return ce="useImperativeHandle",Ae(),mo(e,a,i)},useInsertionEffect:function(e,a){ce="useInsertionEffect",Ae(),Xr(4,kn,e,a)},useLayoutEffect:function(e,a){return ce="useLayoutEffect",Ae(),Vl(e,a)},useMemo:function(e,a){ce="useMemo",Ae();var i=fe.H;fe.H=mu;try{return ql(e,a)}finally{fe.H=i}},useReducer:function(e,a,i){ce="useReducer",Ae();var c=fe.H;fe.H=mu;try{return fc(e,a,i)}finally{fe.H=c}},useRef:function(e){return ce="useRef",Ae(),mb(e)},useState:function(e){ce="useState",Ae();var a=fe.H;fe.H=mu;try{return qr(e)}finally{fe.H=a}},useDebugValue:function(){ce="useDebugValue",Ae()},useDeferredValue:function(e,a){return ce="useDeferredValue",Ae(),pc(e,a)},useTransition:function(){return ce="useTransition",Ae(),Kr()},useSyncExternalStore:function(e,a,i){return ce="useSyncExternalStore",Ae(),dc(e,a,i)},useId:function(){return ce="useId",Ae(),bd()},useActionState:function(e,a){return ce="useActionState",Ae(),Dn(e,a)},useFormState:function(e,a){return ce="useFormState",Ae(),ad(),Dn(e,a)},useOptimistic:function(e){return ce="useOptimistic",Ae(),Ju(e)},useHostTransitionStatus:sr,useMemoCache:An,useCacheRefresh:function(){return ce="useCacheRefresh",Ae(),pb()},useEffectEvent:function(e){return ce="useEffectEvent",Ae(),fd(e)}},A9={readContext:function(e){return Ht(e)},use:ir,useCallback:function(e,a){return ce="useCallback",Ae(),Li(e,a)},useContext:function(e){return ce="useContext",Ae(),Ht(e)},useEffect:function(e,a){ce="useEffect",Ae(),Qa(2048,Fn,e,a)},useImperativeHandle:function(e,a,i){return ce="useImperativeHandle",Ae(),hc(e,a,i)},useInsertionEffect:function(e,a){return ce="useInsertionEffect",Ae(),Qa(4,kn,e,a)},useLayoutEffect:function(e,a){return ce="useLayoutEffect",Ae(),Qa(4,Hi,e,a)},useMemo:function(e,a){ce="useMemo",Ae();var i=fe.H;fe.H=yr;try{return ba(e,a)}finally{fe.H=i}},useReducer:function(e,a,i){ce="useReducer",Ae();var c=fe.H;fe.H=yr;try{return Xu(e,a,i)}finally{fe.H=c}},useRef:function(){return ce="useRef",Ae(),qt().memoizedState},useState:function(){ce="useState",Ae();var e=fe.H;fe.H=yr;try{return Xu(Mn)}finally{fe.H=e}},useDebugValue:function(){ce="useDebugValue",Ae()},useDeferredValue:function(e,a){return ce="useDeferredValue",Ae(),ho(e,a)},useTransition:function(){return ce="useTransition",Ae(),R4()},useSyncExternalStore:function(e,a,i){return ce="useSyncExternalStore",Ae(),Zu(e,a,i)},useId:function(){return ce="useId",Ae(),qt().memoizedState},useFormState:function(e){return ce="useFormState",Ae(),ad(),Yr(e)},useActionState:function(e){return ce="useActionState",Ae(),Yr(e)},useOptimistic:function(e,a){return ce="useOptimistic",Ae(),ud(e,a)},useHostTransitionStatus:sr,useMemoCache:An,useCacheRefresh:function(){return ce="useCacheRefresh",Ae(),qt().memoizedState},useEffectEvent:function(e){return ce="useEffectEvent",Ae(),mc(e)}},nv={readContext:function(e){return Ht(e)},use:ir,useCallback:function(e,a){return ce="useCallback",Ae(),Li(e,a)},useContext:function(e){return ce="useContext",Ae(),Ht(e)},useEffect:function(e,a){ce="useEffect",Ae(),Qa(2048,Fn,e,a)},useImperativeHandle:function(e,a,i){return ce="useImperativeHandle",Ae(),hc(e,a,i)},useInsertionEffect:function(e,a){return ce="useInsertionEffect",Ae(),Qa(4,kn,e,a)},useLayoutEffect:function(e,a){return ce="useLayoutEffect",Ae(),Qa(4,Hi,e,a)},useMemo:function(e,a){ce="useMemo",Ae();var i=fe.H;fe.H=tg;try{return ba(e,a)}finally{fe.H=i}},useReducer:function(e,a,i){ce="useReducer",Ae();var c=fe.H;fe.H=tg;try{return Ku(e,a,i)}finally{fe.H=c}},useRef:function(){return ce="useRef",Ae(),qt().memoizedState},useState:function(){ce="useState",Ae();var e=fe.H;fe.H=tg;try{return Ku(Mn)}finally{fe.H=e}},useDebugValue:function(){ce="useDebugValue",Ae()},useDeferredValue:function(e,a){return ce="useDeferredValue",Ae(),st(e,a)},useTransition:function(){return ce="useTransition",Ae(),Ea()},useSyncExternalStore:function(e,a,i){return ce="useSyncExternalStore",Ae(),Zu(e,a,i)},useId:function(){return ce="useId",Ae(),qt().memoizedState},useFormState:function(e){return ce="useFormState",Ae(),ad(),Qr(e)},useActionState:function(e){return ce="useActionState",Ae(),Qr(e)},useOptimistic:function(e,a){return ce="useOptimistic",Ae(),sd(e,a)},useHostTransitionStatus:sr,useMemoCache:An,useCacheRefresh:function(){return ce="useCacheRefresh",Ae(),qt().memoizedState},useEffectEvent:function(e){return ce="useEffectEvent",Ae(),mc(e)}},mu={readContext:function(e){return E(),Ht(e)},use:function(e){return T(),ir(e)},useCallback:function(e,a){return ce="useCallback",T(),lt(),hb(e,a)},useContext:function(e){return ce="useContext",T(),lt(),Ht(e)},useEffect:function(e,a){return ce="useEffect",T(),lt(),$u(e,a)},useImperativeHandle:function(e,a,i){return ce="useImperativeHandle",T(),lt(),mo(e,a,i)},useInsertionEffect:function(e,a){ce="useInsertionEffect",T(),lt(),Xr(4,kn,e,a)},useLayoutEffect:function(e,a){return ce="useLayoutEffect",T(),lt(),Vl(e,a)},useMemo:function(e,a){ce="useMemo",T(),lt();var i=fe.H;fe.H=mu;try{return ql(e,a)}finally{fe.H=i}},useReducer:function(e,a,i){ce="useReducer",T(),lt();var c=fe.H;fe.H=mu;try{return fc(e,a,i)}finally{fe.H=c}},useRef:function(e){return ce="useRef",T(),lt(),mb(e)},useState:function(e){ce="useState",T(),lt();var a=fe.H;fe.H=mu;try{return qr(e)}finally{fe.H=a}},useDebugValue:function(){ce="useDebugValue",T(),lt()},useDeferredValue:function(e,a){return ce="useDeferredValue",T(),lt(),pc(e,a)},useTransition:function(){return ce="useTransition",T(),lt(),Kr()},useSyncExternalStore:function(e,a,i){return ce="useSyncExternalStore",T(),lt(),dc(e,a,i)},useId:function(){return ce="useId",T(),lt(),bd()},useFormState:function(e,a){return ce="useFormState",T(),lt(),Dn(e,a)},useActionState:function(e,a){return ce="useActionState",T(),lt(),Dn(e,a)},useOptimistic:function(e){return ce="useOptimistic",T(),lt(),Ju(e)},useMemoCache:function(e){return T(),An(e)},useHostTransitionStatus:sr,useCacheRefresh:function(){return ce="useCacheRefresh",lt(),pb()},useEffectEvent:function(e){return ce="useEffectEvent",T(),lt(),fd(e)}},yr={readContext:function(e){return E(),Ht(e)},use:function(e){return T(),ir(e)},useCallback:function(e,a){return ce="useCallback",T(),Ae(),Li(e,a)},useContext:function(e){return ce="useContext",T(),Ae(),Ht(e)},useEffect:function(e,a){ce="useEffect",T(),Ae(),Qa(2048,Fn,e,a)},useImperativeHandle:function(e,a,i){return ce="useImperativeHandle",T(),Ae(),hc(e,a,i)},useInsertionEffect:function(e,a){return ce="useInsertionEffect",T(),Ae(),Qa(4,kn,e,a)},useLayoutEffect:function(e,a){return ce="useLayoutEffect",T(),Ae(),Qa(4,Hi,e,a)},useMemo:function(e,a){ce="useMemo",T(),Ae();var i=fe.H;fe.H=yr;try{return ba(e,a)}finally{fe.H=i}},useReducer:function(e,a,i){ce="useReducer",T(),Ae();var c=fe.H;fe.H=yr;try{return Xu(e,a,i)}finally{fe.H=c}},useRef:function(){return ce="useRef",T(),Ae(),qt().memoizedState},useState:function(){ce="useState",T(),Ae();var e=fe.H;fe.H=yr;try{return Xu(Mn)}finally{fe.H=e}},useDebugValue:function(){ce="useDebugValue",T(),Ae()},useDeferredValue:function(e,a){return ce="useDeferredValue",T(),Ae(),ho(e,a)},useTransition:function(){return ce="useTransition",T(),Ae(),R4()},useSyncExternalStore:function(e,a,i){return ce="useSyncExternalStore",T(),Ae(),Zu(e,a,i)},useId:function(){return ce="useId",T(),Ae(),qt().memoizedState},useFormState:function(e){return ce="useFormState",T(),Ae(),Yr(e)},useActionState:function(e){return ce="useActionState",T(),Ae(),Yr(e)},useOptimistic:function(e,a){return ce="useOptimistic",T(),Ae(),ud(e,a)},useMemoCache:function(e){return T(),An(e)},useHostTransitionStatus:sr,useCacheRefresh:function(){return ce="useCacheRefresh",Ae(),qt().memoizedState},useEffectEvent:function(e){return ce="useEffectEvent",T(),Ae(),mc(e)}},tg={readContext:function(e){return E(),Ht(e)},use:function(e){return T(),ir(e)},useCallback:function(e,a){return ce="useCallback",T(),Ae(),Li(e,a)},useContext:function(e){return ce="useContext",T(),Ae(),Ht(e)},useEffect:function(e,a){ce="useEffect",T(),Ae(),Qa(2048,Fn,e,a)},useImperativeHandle:function(e,a,i){return ce="useImperativeHandle",T(),Ae(),hc(e,a,i)},useInsertionEffect:function(e,a){return ce="useInsertionEffect",T(),Ae(),Qa(4,kn,e,a)},useLayoutEffect:function(e,a){return ce="useLayoutEffect",T(),Ae(),Qa(4,Hi,e,a)},useMemo:function(e,a){ce="useMemo",T(),Ae();var i=fe.H;fe.H=yr;try{return ba(e,a)}finally{fe.H=i}},useReducer:function(e,a,i){ce="useReducer",T(),Ae();var c=fe.H;fe.H=yr;try{return Ku(e,a,i)}finally{fe.H=c}},useRef:function(){return ce="useRef",T(),Ae(),qt().memoizedState},useState:function(){ce="useState",T(),Ae();var e=fe.H;fe.H=yr;try{return Ku(Mn)}finally{fe.H=e}},useDebugValue:function(){ce="useDebugValue",T(),Ae()},useDeferredValue:function(e,a){return ce="useDeferredValue",T(),Ae(),st(e,a)},useTransition:function(){return ce="useTransition",T(),Ae(),Ea()},useSyncExternalStore:function(e,a,i){return ce="useSyncExternalStore",T(),Ae(),Zu(e,a,i)},useId:function(){return ce="useId",T(),Ae(),qt().memoizedState},useFormState:function(e){return ce="useFormState",T(),Ae(),Qr(e)},useActionState:function(e){return ce="useActionState",T(),Ae(),Qr(e)},useOptimistic:function(e,a){return ce="useOptimistic",T(),Ae(),sd(e,a)},useMemoCache:function(e){return T(),An(e)},useHostTransitionStatus:sr,useCacheRefresh:function(){return ce="useCacheRefresh",Ae(),qt().memoizedState},useEffectEvent:function(e){return ce="useEffectEvent",T(),Ae(),mc(e)}};var iv={},ov=new Set,rv=new Set,uv=new Set,sv=new Set,cv=new Set,fv=new Set,dv=new Set,bv=new Set,mv=new Set,hv=new Set;Object.freeze(iv);var M9={enqueueSetState:function(e,a,i){e=e._reactInternals;var c=xl(e),d=Ya(c);d.payload=a,i!=null&&(ls(i),d.callback=i),a=so(e,d,c),a!==null&&(oo(c,"this.setState()",e),at(a,e,c),$n(a,e,c))},enqueueReplaceState:function(e,a,i){e=e._reactInternals;var c=xl(e),d=Ya(c);d.tag=Z3,d.payload=a,i!=null&&(ls(i),d.callback=i),a=so(e,d,c),a!==null&&(oo(c,"this.replaceState()",e),at(a,e,c),$n(a,e,c))},enqueueForceUpdate:function(e,a){e=e._reactInternals;var i=xl(e),c=Ya(i);c.tag=J3,a!=null&&(ls(a),c.callback=a),a=so(e,c,i),a!==null&&(oo(i,"this.forceUpdate()",e),at(a,e,i),$n(a,e,i))}},W1=null,D9=null,L9=Error("This is not a real error. It's an implementation detail of React's selective hydration feature. If this leaks into userspace, it's a bug in React. Please file an issue."),dl=!1,pv={},gv={},Tv={},vv={},V1=!1,Sv={},ag={},z9={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null},yv=!1,Cv=null;Cv=new Set;var Bs=!1,bl=!1,x9=!1,Ev=typeof WeakSet=="function"?WeakSet:Set,Ol=null,q1=null,j1=null,ml=null,ii=!1,Cr=null,Al=!1,f2=8192,jM={getCacheForType:function(e){var a=Ht(sl),i=a.data.get(e);return i===void 0&&(i=e(),a.data.set(e,i)),i},cacheSignal:function(){return Ht(sl).controller.signal},getOwner:function(){return dn}};if(typeof Symbol=="function"&&Symbol.for){var d2=Symbol.for;d2("selector.component"),d2("selector.has_pseudo_class"),d2("selector.role"),d2("selector.test_id"),d2("selector.text")}var YM=[],QM=typeof WeakMap=="function"?WeakMap:Map,_l=0,Ml=2,Pi=4,Os=0,b2=1,f0=2,lg=3,ff=4,ng=6,Av=5,_t=_l,sa=null,vt=null,pt=0,oi=0,ig=1,d0=2,m2=3,Mv=4,R9=5,h2=6,og=7,N9=8,b0=9,na=oi,Wi=null,df=!1,Y1=!1,B9=!1,hu=0,Na=Os,bf=0,mf=0,O9=0,ri=0,m0=0,p2=null,Un=null,rg=!1,ug=0,Dv=0,Lv=300,sg=1/0,zv=500,g2=null,qa=null,hf=null,cg=0,_9=1,I9=2,xv=3,pf=0,Rv=1,Nv=2,Bv=3,Ov=4,fg=5,hl=0,gf=null,Q1=null,Er=0,w9=0,G9=-0,k9=null,_v=null,Iv=null,Ar=cg,wv=null,XM=50,T2=0,F9=null,U9=!1,dg=!1,KM=50,h0=0,v2=null,X1=!1,bg=null,Gv=!1,kv=new Set,ZM={},mg=null,K1=null,H9=!1,P9=!1,hg=!1,W9=!1,Tf=0,V9={};(function(){for(var e=0;e<t9.length;e++){var a=t9[e],i=a.toLowerCase();a=a[0].toUpperCase()+a.slice(1),gi(i,"on"+a)}gi(m3,"onAnimationEnd"),gi(h3,"onAnimationIteration"),gi(p3,"onAnimationStart"),gi("dblclick","onDoubleClick"),gi("focusin","onFocus"),gi("focusout","onBlur"),gi(DM,"onTransitionRun"),gi(LM,"onTransitionStart"),gi(zM,"onTransitionCancel"),gi(g3,"onTransitionEnd")})(),qs("onMouseEnter",["mouseout","mouseover"]),qs("onMouseLeave",["mouseout","mouseover"]),qs("onPointerEnter",["pointerout","pointerover"]),qs("onPointerLeave",["pointerout","pointerover"]),mi("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),mi("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),mi("onBeforeInput",["compositionend","keypress","textInput","paste"]),mi("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),mi("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),mi("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var S2="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),q9=new Set("beforetoggle cancel close invalid load scroll scrollend toggle".split(" ").concat(S2)),pg="_reactListening"+Math.random().toString(36).slice(2),Fv=!1,Uv=!1,gg=!1,Hv=!1,Tg=!1,vg=!1,Pv=!1,Sg={},JM=/\r\n?/g,$M=/\u0000|\uFFFD/g,p0="http://www.w3.org/1999/xlink",j9="http://www.w3.org/XML/1998/namespace",eD="javascript:throw new Error('React form unexpectedly submitted.')",tD="suppressHydrationWarning",g0="&",yg="/&",y2="$",C2="/$",vf="$?",T0="$~",Z1="$!",aD="html",lD="body",nD="head",Y9="F!",Wv="F",Vv="loading",iD="style",_s=0,J1=1,Cg=2,Q9=null,X9=null,qv={dialog:!0,webview:!0},K9=null,E2=void 0,jv=typeof setTimeout=="function"?setTimeout:void 0,oD=typeof clearTimeout=="function"?clearTimeout:void 0,v0=-1,Yv=typeof Promise=="function"?Promise:void 0,rD=typeof queueMicrotask=="function"?queueMicrotask:typeof Yv<"u"?function(e){return Yv.resolve(null).then(e).catch(J4)}:jv,Z9=null,S0=0,A2=1,Qv=2,Xv=3,Po=4,Wo=new Map,Kv=new Set,Is=Wt.d;Wt.d={f:function(){var e=Is.f(),a=Nn();return e||a},r:function(e){var a=bi(e);a!==null&&a.tag===5&&a.type==="form"?gc(a):Is.r(e)},D:function(e){Is.D(e),f5("dns-prefetch",e,null)},C:function(e,a){Is.C(e,a),f5("preconnect",e,a)},L:function(e,a,i){Is.L(e,a,i);var c=$1;if(c&&e&&a){var d='link[rel="preload"][as="'+$t(a)+'"]';a==="image"&&i&&i.imageSrcSet?(d+='[imagesrcset="'+$t(i.imageSrcSet)+'"]',typeof i.imageSizes=="string"&&(d+='[imagesizes="'+$t(i.imageSizes)+'"]')):d+='[href="'+$t(e)+'"]';var m=d;switch(a){case"style":m=bs(e);break;case"script":m=ms(e)}Wo.has(m)||(e=bt({rel:"preload",href:a==="image"&&i&&i.imageSrcSet?void 0:e,as:a},i),Wo.set(m,e),c.querySelector(d)!==null||a==="style"&&c.querySelector(Fd(m))||a==="script"&&c.querySelector(Ud(m))||(a=c.createElement("link"),ma(a,"link",e),Oa(a),c.head.appendChild(a)))}},m:function(e,a){Is.m(e,a);var i=$1;if(i&&e){var c=a&&typeof a.as=="string"?a.as:"script",d='link[rel="modulepreload"][as="'+$t(c)+'"][href="'+$t(e)+'"]',m=d;switch(c){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":m=ms(e)}if(!Wo.has(m)&&(e=bt({rel:"modulepreload",href:e},a),Wo.set(m,e),i.querySelector(d)===null)){switch(c){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":if(i.querySelector(Ud(m)))return}c=i.createElement("link"),ma(c,"link",e),Oa(c),i.head.appendChild(c)}}},X:function(e,a){Is.X(e,a);var i=$1;if(i&&e){var c=qn(i).hoistableScripts,d=ms(e),m=c.get(d);m||(m=i.querySelector(Ud(d)),m||(e=bt({src:e,async:!0},a),(a=Wo.get(d))&&m5(e,a),m=i.createElement("script"),Oa(m),ma(m,"link",e),i.head.appendChild(m)),m={type:"script",instance:m,count:1,state:null},c.set(d,m))}},S:function(e,a,i){Is.S(e,a,i);var c=$1;if(c&&e){var d=qn(c).hoistableStyles,m=bs(e);a=a||"default";var S=d.get(m);if(!S){var C={loading:S0,preload:null};if(S=c.querySelector(Fd(m)))C.loading=A2|Po;else{e=bt({rel:"stylesheet",href:e,"data-precedence":a},i),(i=Wo.get(m))&&b5(e,i);var x=S=c.createElement("link");Oa(x),ma(x,"link",e),x._p=new Promise(function(N,Q){x.onload=N,x.onerror=Q}),x.addEventListener("load",function(){C.loading|=A2}),x.addEventListener("error",function(){C.loading|=Qv}),C.loading|=Po,kc(S,a,c)}S={type:"stylesheet",instance:S,count:1,state:C},d.set(m,S)}}},M:function(e,a){Is.M(e,a);var i=$1;if(i&&e){var c=qn(i).hoistableScripts,d=ms(e),m=c.get(d);m||(m=i.querySelector(Ud(d)),m||(e=bt({src:e,async:!0,type:"module"},a),(a=Wo.get(d))&&m5(e,a),m=i.createElement("script"),Oa(m),ma(m,"link",e),i.head.appendChild(m)),m={type:"script",instance:m,count:1,state:null},c.set(d,m))}}};var $1=typeof document>"u"?null:document,Eg=null,uD=6e4,sD=800,cD=500,J9=0,$9=null,Ag=null,y0=W8,M2={$$typeof:wi,Provider:null,Consumer:null,_currentValue:y0,_currentValue2:y0,_threadCount:0},Zv="%c%s%c",Jv="background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px",$v="",Mg=" ",fD=Function.prototype.bind,eS=!1,tS=null,aS=null,lS=null,nS=null,iS=null,oS=null,rS=null,uS=null,sS=null,cS=null;tS=function(e,a,i,c){a=t(e,a),a!==null&&(i=n(a.memoizedState,i,0,c),a.memoizedState=i,a.baseState=i,e.memoizedProps=bt({},e.memoizedProps),i=Ll(e,2),i!==null&&at(i,e,2))},aS=function(e,a,i){a=t(e,a),a!==null&&(i=b(a.memoizedState,i,0),a.memoizedState=i,a.baseState=i,e.memoizedProps=bt({},e.memoizedProps),i=Ll(e,2),i!==null&&at(i,e,2))},lS=function(e,a,i,c){a=t(e,a),a!==null&&(i=r(a.memoizedState,i,c),a.memoizedState=i,a.baseState=i,e.memoizedProps=bt({},e.memoizedProps),i=Ll(e,2),i!==null&&at(i,e,2))},nS=function(e,a,i){e.pendingProps=n(e.memoizedProps,a,0,i),e.alternate&&(e.alternate.pendingProps=e.pendingProps),a=Ll(e,2),a!==null&&at(a,e,2)},iS=function(e,a){e.pendingProps=b(e.memoizedProps,a,0),e.alternate&&(e.alternate.pendingProps=e.pendingProps),a=Ll(e,2),a!==null&&at(a,e,2)},oS=function(e,a,i){e.pendingProps=r(e.memoizedProps,a,i),e.alternate&&(e.alternate.pendingProps=e.pendingProps),a=Ll(e,2),a!==null&&at(a,e,2)},rS=function(e){var a=Ll(e,2);a!==null&&at(a,e,2)},uS=function(e){var a=ve(),i=Ll(e,a);i!==null&&at(i,e,a)},sS=function(e){p=e},cS=function(e){h=e};var Dg=!0,Lg=null,e6=!1,Sf=null,yf=null,Cf=null,D2=new Map,L2=new Map,Ef=[],dD="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset".split(" "),zg=null;if(Ii.prototype.render=A5.prototype.render=function(e){var a=this._internalRoot;if(a===null)throw Error("Cannot update an unmounted root.");var i=arguments;typeof i[1]=="function"?console.error("does not support the second callback argument. To execute a side effect after rendering, declare it in a component body with useEffect()."):J(i[1])?console.error("You passed a container to the second argument of root.render(...). You don't need to pass it again since you already passed it to create the root."):typeof i[1]<"u"&&console.error("You passed a second argument to root.render(...) but it only accepts one argument."),i=e;var c=a.current,d=xl(c);o1(c,d,i,a,null,null)},Ii.prototype.unmount=A5.prototype.unmount=function(){var e=arguments;if(typeof e[0]=="function"&&console.error("does not support a callback argument. To execute a side effect after rendering, declare it in a component body with useEffect()."),e=this._internalRoot,e!==null){this._internalRoot=null;var a=e.containerInfo;(_t&(Ml|Pi))!==_l&&console.error("Attempted to synchronously unmount a root while React was already rendering. React cannot finish unmounting the root until the current render has completed, which may lead to a race condition."),o1(e.current,2,null,e,null,null),Nn(),a[Tr]=null}},Ii.prototype.unstable_scheduleHydration=function(e){if(e){var a=Qo();e={blockedOn:null,target:e,priority:a};for(var i=0;i<Ef.length&&a!==0&&a<Ef[i].priority;i++);Ef.splice(i,0,e),i===0&&E5(e)}},(function(){var e=qd.version;if(e!=="19.2.0")throw Error(`Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:
248
+ - react: `+(e+`
249
+ - react-dom: 19.2.0
250
+ Learn more: https://react.dev/warnings/version-mismatch`))})(),typeof Map=="function"&&Map.prototype!=null&&typeof Map.prototype.forEach=="function"&&typeof Set=="function"&&Set.prototype!=null&&typeof Set.prototype.clear=="function"&&typeof Set.prototype.forEach=="function"||console.error("React depends on Map and Set built-in types. Make sure that you load a polyfill in older browsers. https://react.dev/link/react-polyfills"),Wt.findDOMNode=function(e){var a=e._reactInternals;if(a===void 0)throw typeof e.render=="function"?Error("Unable to find node on an unmounted component."):(e=Object.keys(e).join(","),Error("Argument appears to not be a ReactComponent. Keys: "+e));return e=ge(a),e=e!==null?le(e):null,e=e===null?null:e.stateNode,e},!(function(){var e={bundleType:1,version:"19.2.0",rendererPackageName:"react-dom",currentDispatcherRef:fe,reconcilerVersion:"19.2.0"};return e.overrideHookState=tS,e.overrideHookStateDeletePath=aS,e.overrideHookStateRenamePath=lS,e.overrideProps=nS,e.overridePropsDeletePath=iS,e.overridePropsRenamePath=oS,e.scheduleUpdate=rS,e.scheduleRetry=uS,e.setErrorHandler=sS,e.setSuspenseHandler=cS,e.scheduleRefresh=U,e.scheduleRoot=z,e.setRefreshHandler=G,e.getCurrentFiber=aa,Ws(e)})()&&fu&&window.top===window.self&&(-1<navigator.userAgent.indexOf("Chrome")&&navigator.userAgent.indexOf("Edge")===-1||-1<navigator.userAgent.indexOf("Firefox"))){var fS=window.location.protocol;/^(https?|file):$/.test(fS)&&console.info("%cDownload the React DevTools for a better development experience: https://react.dev/link/react-devtools"+(fS==="file:"?`
251
+ You might need to use a local HTTP server (instead of file://): https://react.dev/link/react-devtools-faq`:""),"font-weight:bold")}x2.createRoot=function(e,a){if(!J(e))throw Error("Target container is not a DOM element.");M5(e);var i=!1,c="",d=vb,m=Sb,S=vh;return a!=null&&(a.hydrate?console.warn("hydrate through createRoot is deprecated. Use ReactDOMClient.hydrateRoot(container, <App />) instead."):typeof a=="object"&&a!==null&&a.$$typeof===li&&console.error(`You passed a JSX element to createRoot. You probably meant to call root.render instead. Example usage:
252
+
253
+ let root = createRoot(domContainer);
254
+ root.render(<App />);`),a.unstable_strictMode===!0&&(i=!0),a.identifierPrefix!==void 0&&(c=a.identifierPrefix),a.onUncaughtError!==void 0&&(d=a.onUncaughtError),a.onCaughtError!==void 0&&(m=a.onCaughtError),a.onRecoverableError!==void 0&&(S=a.onRecoverableError)),a=Wd(e,1,!1,null,null,i,c,null,d,m,S,Cp),e[Tr]=a.current,lu(e),new A5(a)},x2.hydrateRoot=function(e,a,i){if(!J(e))throw Error("Target container is not a DOM element.");M5(e),a===void 0&&console.error("Must provide initial children as second argument to hydrateRoot. Example usage: hydrateRoot(domContainer, <App />)");var c=!1,d="",m=vb,S=Sb,C=vh,x=null;return i!=null&&(i.unstable_strictMode===!0&&(c=!0),i.identifierPrefix!==void 0&&(d=i.identifierPrefix),i.onUncaughtError!==void 0&&(m=i.onUncaughtError),i.onCaughtError!==void 0&&(S=i.onCaughtError),i.onRecoverableError!==void 0&&(C=i.onRecoverableError),i.formState!==void 0&&(x=i.formState)),a=Wd(e,1,!0,a,i??null,c,d,x,m,S,C,Cp),a.context=Tp(null),i=a.current,c=xl(i),c=vl(c),d=Ya(c),d.callback=null,so(i,d,c),oo(c,"hydrateRoot()",null),i=c,a.current.lanes=i,Ke(a,i),un(a),e[Tr]=a.current,lu(e),new Ii(a)},x2.version="19.2.0",typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())})()),x2}var gS;function TD(){if(gS)return xg.exports;gS=1;function t(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function")){if(process.env.NODE_ENV!=="production")throw new Error("^_^");try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(n){console.error(n)}}}return process.env.NODE_ENV==="production"?(t(),xg.exports=pD()):xg.exports=gD(),xg.exports}var vD=TD();const Tu={UI:"UI",DATA_INPUT:"DATA_INPUT",DATA_ALL_PRODUCT:"DATA_ALL_PRODUCT"},SD={Finish:"Material",Color:"Color",Look:"Look"},yD=(t,n)=>t.toLowerCase()===n.toLowerCase();class Y2{static getMaterialsValuesFromOptions(n){if(n.length)return n.reduce((r,s)=>{if(Array.isArray(s.values)&&s.values.length){const b=s.metadata?.Name??s.metadata?.Label??"without_name",h=s.values.map(p=>({...p,parentName:b}));r.push(...h)}return r},[]).sort((r,s)=>{const b=r.name?.toLowerCase()??"",h=s.name?.toLowerCase()??"";return b.localeCompare(h)})}static getUniqueByAssetId(n){const r=new Set;return n.filter(s=>r.has(s.assetId)?!1:(r.add(s.assetId),!0))}static normalizeToArray(n,r=!0){return n?Array.isArray(n)?n.map(s=>s.trim()).filter(Boolean):(r?n.split(","):[n]).map(s=>s.trim()).filter(Boolean):[]}static mapFiltersFromValues(n,r){return Object.keys(r).map(s=>{const b=SD[s],p=r[s].map(T=>{let E=0;for(const A of n){const M=Array.isArray(A.values)?A.values:[];for(const L of M){const R=this.normalizeToArray(L.metadata?.[b]);E+=R.filter(z=>yD(z,T)).length}}return{filterKey:T,filterCount:E}});return{filterType:s,filters:p}})}static getPositiveSelectedFilers(n){return n.map(r=>({filterName:r.filterType,filterKeys:r.filters.filter(s=>s.filterCount!==0).map(s=>s.filterKey)})).filter(r=>r.filterKeys.length>0)}}const b7=t=>Array.from(new Set(t)),m7=[{id:"1c3f582f-723e-4611-8864-b2ecd7a5f3fa",type:"Asset",name:"UI_Conceptsize",metadata:{Name:"Conceptsize",Label:"Conceptsize"},blacklist:[],assetType:"model",values:[{assetId:"195ea440-41ee-4bb1-8378-f636d86cd0b9",name:"40",tags:["conceptsize"],metadata:{Label:"40",value:"40"},fileSize:95548,tagids:["21f0dd32-2e39-428b-bb00-c2dd2971ddb0"],type:"item",label:"40",visible:!0,enabled:!0},{assetId:"d7ec6b94-6e4e-48ae-8e75-0e7ad5129be5",name:"50",tags:["conceptsize"],metadata:{Label:"50",value:"50"},fileSize:95548,tagids:["21f0dd32-2e39-428b-bb00-c2dd2971ddb0"],type:"item",label:"50",visible:!0,enabled:!0},{assetId:"8e7379f4-c6f1-4362-98f2-1e5e8433ae7a",name:"60",tags:["conceptsize"],metadata:{Label:"60",value:"60"},fileSize:95548,tagids:["21f0dd32-2e39-428b-bb00-c2dd2971ddb0"],type:"item",label:"60",visible:!0,enabled:!0},{assetId:"5189615f-990c-45bc-a20e-aabe43c085d0",name:"70",tags:["conceptsize"],metadata:{Label:"70",value:"70"},fileSize:95548,tagids:["21f0dd32-2e39-428b-bb00-c2dd2971ddb0"],type:"item",label:"70",visible:!0,enabled:!0},{assetId:"cb9e0fb3-b31e-4272-a914-a460839fd4b3",name:"80",tags:["conceptsize"],metadata:{Label:"80",value:"80"},fileSize:95548,tagids:["21f0dd32-2e39-428b-bb00-c2dd2971ddb0"],type:"item",label:"80",visible:!0,enabled:!0},{assetId:"570bbb46-9084-4cb2-b5d5-07e7b9137232",name:"90",tags:["conceptsize"],metadata:{Label:"90",value:"90"},fileSize:95548,tagids:["21f0dd32-2e39-428b-bb00-c2dd2971ddb0"],type:"item",label:"90",visible:!0,enabled:!0},{assetId:"3578a561-3653-4b93-8680-7ead83b3a02f",name:"30",tags:["conceptsize"],metadata:{Label:"30",value:"30"},fileSize:95548,tagids:["21f0dd32-2e39-428b-bb00-c2dd2971ddb0"],type:"item",label:"30",visible:!0,enabled:!0},{assetId:"ee71c78b-0846-45f5-8cd3-11ec7c254471",name:"24",tags:["conceptsize"],metadata:{Label:"24",value:"24"},fileSize:95548,tagids:["21f0dd32-2e39-428b-bb00-c2dd2971ddb0"],type:"item",label:"24",visible:!0,enabled:!0}],defaultValue:{assetId:""},global:{id:"1c3f582f-723e-4611-8864-b2ecd7a5f3fa",type:"Global",name:"Global",metadata:[]},visible:!0,enabled:!0,hiddenValues:[],disabledValues:[],value:{assetId:""}},{id:"4073e443-7ec6-4ea6-889b-6e84f5fa36b8",type:"Asset",name:"UI_Model",metadata:{Name:"Model",Label:"Model",hasRenderImagePreview:"true"},blacklist:[],assetType:"model",values:[{assetId:"20ae8634-868b-45ec-8f66-6b1c503e4c25",name:"99 2DW OSS_90",tags:["model Urban Duplex"],metadata:{Label:"99 2DW OSS",value:"99 2DW OSS_90",thumbnail:"/api/files/hash/sha256-940fabfe541191b2bc03ffb278b2cde9234ed1bbd6d1f3701709b91238ed3dd5",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"99 2DW OSS_90",visible:!0,enabled:!0},{assetId:"d7b5e48b-5abd-4a30-96e2-af4393eb5efd",name:"95 2DW Double 1_90",tags:["model Urban Duplex"],metadata:{Label:"95 2DW Double 1",value:"95 2DW Double 1_90",thumbnail:"/api/files/hash/sha256-1d50688538a5ac56b4162464ebd9866ccdee38f3e52a1011ceb6c0332098f27e",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"95 2DW Double 1_90",visible:!0,enabled:!0},{assetId:"be7481b9-8cf2-42ee-bb69-82a6c49666ba",name:"95 2DW Double_90",tags:["model Urban Duplex"],metadata:{Label:"95 2DW Double",value:"95 2DW Double_90",thumbnail:"/api/files/hash/sha256-1324f83343769b737935cde84658efabdaf908af61450469e8e1be560b632fa0",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"95 2DW Double_90",visible:!0,enabled:!0},{assetId:"aad09ee1-47c0-48bf-8879-6c5f5cab2376",name:"95 1DW Double_90",tags:["model Urban Duplex"],metadata:{Label:"95 1DW Double",value:"95 1DW Double_90",thumbnail:"/api/files/hash/sha256-868b18068e8195f9b4b6eeaf4c2aed03240dfd831513d48fc31f246e3b44a0f0",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"95 1DW Double_90",visible:!0,enabled:!0},{assetId:"31cfab37-7605-466c-a4f0-588888854063",name:"94 1DW Multi-Level_90",tags:["model Urban Duplex"],metadata:{Label:"94 1DW Multi-Level",value:"94 1DW Multi-Level_90",thumbnail:"/api/files/hash/sha256-b23d7c91cf59d8a5a1dd9806d26eb9a2b02c7ed2fab1fe5f30a617183b84c19a",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"94 1DW Multi-Level_90",visible:!0,enabled:!0},{assetId:"aa098a6d-db73-45e2-99b0-6736089583e8",name:"97 1DW Slim 1_90",tags:["model Urban Duplex"],metadata:{Label:"97 1DW Slim 1",value:"97 1DW Slim 1_90",thumbnail:"/api/files/hash/sha256-85c71a4df0df172824cd0f82c0c2df9e59b60a3c80fee275dcc5945617ca81c8",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"97 1DW Slim 1_90",visible:!0,enabled:!0},{assetId:"4f1678a8-d687-4bbe-a383-62a2c9259377",name:"97 1DW_90",tags:["model Urban Duplex"],metadata:{Label:"97 1DW",value:"97 1DW_90",thumbnail:"/api/files/hash/sha256-fbcee2fabcf350c2fb793481beb9f317c7205e5a687e6aab6083c39debde33b0",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"97 1DW_90",visible:!0,enabled:!0},{assetId:"c18edde7-d10a-4435-9d60-74ebfeb0607a",name:"97 1DW Slim_90",tags:["model Urban Duplex"],metadata:{Label:"97 1DW Slim",value:"97 1DW Slim_90",thumbnail:"/api/files/hash/sha256-8b6093572e980990b3c1fbd15bcb348b089a76de35d1a81a08bc8c50c34efd47",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"97 1DW Slim_90",visible:!0,enabled:!0},{assetId:"804279e0-e302-411c-a38d-6478654806c1",name:"85 1DW Slim OSS_80",tags:["model Urban Duplex"],metadata:{Label:"85 1DW Slim OSS",value:"85 1DW Slim OSS_80",thumbnail:"/api/files/hash/sha256-9ee80abe1354c5fefb449252fb3f175a3754fc2efc9dcc1164af01059bf1caa2",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"85 1DW Slim OSS_80",visible:!0,enabled:!0},{assetId:"a9b4dd75-faaa-4c82-a033-5b2693adbfad",name:"83 2DW Double_80",tags:["model Urban Duplex"],metadata:{Label:"83 2DW Double_80",value:"83 2DW Double_80",thumbnail:"/api/files/hash/sha256-93131b2c80c6720c2f129a68c391804e5b7bcfa703951fa55450dce87e4f5c9d",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"83 2DW Double_80",visible:!0,enabled:!0},{assetId:"732b4657-5dde-4977-9df7-ee1159e5e62f",name:"87 2DW Double_80",tags:["model Urban Duplex"],metadata:{Label:"87 2DW Double",value:"87 2DW Double_80",thumbnail:"/api/files/hash/sha256-4680d0fda422a576727690f29bd65883140d03f36eb8073a626fb3a8f3cbff0e",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"87 2DW Double_80",visible:!0,enabled:!0},{assetId:"52e5d7ed-e28a-49b9-8f97-2ed13ac35b92",name:"83 2DW_80",tags:["model Urban Duplex"],metadata:{Label:"83 2DW",value:"83 2DW_80",thumbnail:"/api/files/hash/sha256-fa2451b63dc94b82eef2645282f5bb246a9a10d1039da3aecb4a8653201652b7",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"83 2DW_80",visible:!0,enabled:!0},{assetId:"acc81ec8-fab8-4adf-973d-12efafe3e2d6",name:"89 2DW_80",tags:["model Urban Duplex"],metadata:{Label:"89 2DW",value:"89 2DW_80",thumbnail:"/api/files/hash/sha256-082f16c9244e6580622f61270d0bf61f42d29320ec3d063ca9695a6454bb8bb6",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"89 2DW_80",visible:!0,enabled:!0},{assetId:"8fb6a7ce-1910-4a46-988c-ddfd044e2e8e",name:"83 1DW Slim_80",tags:["model Urban Duplex"],metadata:{Label:"83 1DW Slim",value:"83 1DW Slim_80",thumbnail:"/api/files/hash/sha256-5bfa0a6525ebb7a8987de55062eea1f5f883e9fda4eac11bb8417d1608291594",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"83 1DW Slim_80",visible:!0,enabled:!0},{assetId:"90e89c2d-bf21-4a48-b405-e4ba886fcb1d",name:"87 1DW Double_80",tags:["model Urban Duplex"],metadata:{Label:"87 1DW Double",value:"87 1DW Double_80",thumbnail:"/api/files/hash/sha256-83c8b14bbcab514df98be093ac49649cce3497d865ca7fdfaf45a8d7b68079ca",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"87 1DW Double_80",visible:!0,enabled:!0},{assetId:"3f788e64-cef6-49ab-973f-ad85cab66335",name:"83 1DW Slim Double 1_80",tags:["model Urban Duplex"],metadata:{Label:"83 1DW Slim Double 1",value:"83 1DW Slim Double 1_80",thumbnail:"/api/files/hash/sha256-041fea51edfc1799a8c80c496ea38941a9d373c0772c762f3db4dfb7a972cb5c",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"83 1DW Slim Double 1_80",visible:!0,enabled:!0},{assetId:"12070213-1717-45e9-88d0-346e0a1ecb9a",name:"83 1DW Slim Double_80",tags:["model Urban Duplex"],metadata:{Label:"83 1DW Slim Double",value:"83 1DW Slim Double_80",thumbnail:"/api/files/hash/sha256-10f2eaa93c99651320cbba22a5b63dd6e3274cfb239a2836273cd6a0eeb5b5ad",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"83 1DW Slim Double_80",visible:!0,enabled:!0},{assetId:"c0bf5dcd-5772-456c-a22b-39af7ac8ac0c",name:"71 1DW OSS_70",tags:["model Urban Duplex"],metadata:{Label:"71 1DW OSS",value:"71 1DW OSS_70",thumbnail:"/api/files/hash/sha256-3e6dc77f528c1378999621db73b51f48d654070bc53ca36b02bf463b2a7a17ad",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"71 1DW OSS_70",visible:!0,enabled:!0},{assetId:"bda78f40-c8df-4f45-90f2-287d0b2de5fc",name:"70 1DW Multi-Level_70",tags:["model Urban Duplex"],metadata:{Label:"70 1DW Multi-Level",value:"70 1DW Multi-Level_70",thumbnail:"/api/files/hash/sha256-67220a64b43c95d0579e69f8ead383e5a021bf749801fbb90e435e9faa71fe89",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"70 1DW Multi-Level_70",visible:!0,enabled:!0},{assetId:"10d513a6-3c39-49c9-940e-a52c90dc405e",name:"71 2DW Double_70",tags:["model Urban Duplex"],metadata:{Label:"71 2DW Double",value:"71 2DW Double_70",thumbnail:"/api/files/hash/sha256-ce3f83b9d7502bef9f53f91120e1bd38763790e85e0d0e4c5b4191f419359257",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"71 2DW Double_70",visible:!0,enabled:!0},{assetId:"6e7ba44a-9736-44e3-b5bd-0d4dd2548d38",name:"73 2DW_70",tags:["model Urban Duplex"],metadata:{Label:"73 2DW",value:"73 2DW_70",thumbnail:"/api/files/hash/sha256-c33a547c0e92e490e070c4a001ebc5e4afb645b96362c4325bef776a7ba692a2",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"73 2DW_70",visible:!0,enabled:!0},{assetId:"3852b7c9-f9c9-42c5-8e65-fa05d5430c1d",name:"77 2DW Double_70",tags:["model Urban Duplex"],metadata:{Label:"77 2DW Double",value:"77 2DW Double_70",thumbnail:"/api/files/hash/sha256-61e631e181f0d872acc8b14b7ebec1695d8390e57a7ee019ceb15d01ea1ff07d",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"77 2DW Double_70",visible:!0,enabled:!0},{assetId:"cacc8e61-6254-4078-b74e-8db2ac5875c7",name:"79 2DW_70",tags:["model Urban Duplex"],metadata:{Label:"79 2DW",value:"79 2DW_70",thumbnail:"/api/files/hash/sha256-a371d75448bff3c2b6d903a78607806d39c2a41c597135e5254ef5fdc76f5887",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"79 2DW_70",visible:!0,enabled:!0},{assetId:"bc971a8e-2322-4c08-ae82-d8876f47897e",name:"71 1DW Multi-Level_70",tags:["model Urban Duplex"],metadata:{Label:"71 1DW Multi-Level",value:"71 1DW Multi-Level_70",thumbnail:"/api/files/hash/sha256-6a88c4f0a08cbd0474fa1f7caa5ee5a3c7d3c8cb01d306ca868993f506f070a9",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"71 1DW Multi-Level_70",visible:!0,enabled:!0},{assetId:"b4562675-9b2f-4229-87cf-2089d47b339c",name:"71 2DW_70",tags:["model Urban Duplex"],metadata:{Label:"71 2DW",value:"71 2DW_70",thumbnail:"/api/files/hash/sha256-3205a7f8edc273b4f5f6966a25aad44fd82071cccf1b3575c7bec8157e9a0e30",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"71 2DW_70",visible:!0,enabled:!0},{assetId:"79f815be-0f3c-4110-aeb6-3b6b34854c40",name:"75 1DW Slim_70",tags:["model Urban Duplex"],metadata:{Label:"75 1DW Slim",value:"75 1DW Slim_70",thumbnail:"/api/files/hash/sha256-d7d464799455e66e12403a58d82cfb1acf8a57a126d5f3d6b659bdcb79538f1a",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"75 1DW Slim_70",visible:!0,enabled:!0},{assetId:"42c070f7-8677-442d-9e06-1c4d74634f91",name:"73 1DW Slim_70",tags:["model Urban Duplex"],metadata:{Label:"73 1DW Slim",value:"73 1DW Slim_70",thumbnail:"/api/files/hash/sha256-4f3deeb6ad373fa4a0c0d745d22e43d8cc7227b7b3f2931cf1f084e2defe87ce",heightImage:"100px",filtration_Style:"1-Drawer_Single Basin_Asymmetrical"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"73 1DW Slim_70",visible:!0,enabled:!0},{assetId:"ef53123c-4707-4d53-a006-1093cd563fbb",name:"79 1DW Double_70",tags:["model Urban Duplex"],metadata:{Label:"79 1DW Double",value:"79 1DW Double_70",thumbnail:"/api/files/hash/sha256-215dcde7537401dce9cebbca526102de65eeb720242c88c090443f39b21933f2",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"79 1DW Double_70",visible:!0,enabled:!0},{assetId:"82cdc27e-1223-4587-ad90-04f84823d038",name:"65 1DW OSS_60",tags:["model Urban Duplex"],metadata:{Label:"65 1DW OSS",value:"65 1DW OSS_60",thumbnail:"/api/files/hash/sha256-7ba990438f5c339b1e57b688eb11b87af414eb39e247491637859535c3635376",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"65 1DW OSS_60",visible:!0,enabled:!0},{assetId:"aa83e649-0ca8-488c-ac20-b1afe4c2f91a",name:"65 2DW_60",tags:["model Urban Duplex"],metadata:{Label:"65 2DW",value:"65 2DW_60",thumbnail:"/api/files/hash/sha256-f0ee3129d1da058bf875bd907dfa941326059b700361d94eae7155fcc7d3d1de",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"65 2DW_60",visible:!0,enabled:!0},{assetId:"e34b4d22-e489-48c3-975e-f46d62b641db",name:"63 2DW_60",tags:["model Urban Duplex"],metadata:{Label:"63 2DW",value:"63 2DW_60",thumbnail:"/api/files/hash/sha256-61a1235598417c6541a12875fe94317ab1814c39ab180ace1f3deb57a41963f0",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"63 2DW_60",visible:!0,enabled:!0},{assetId:"b5d1d0f0-8211-4f21-ba5c-96c28366773b",name:"69 2DW Double_60",tags:["model Urban Duplex"],metadata:{Label:"69 2DW Double",value:"69 2DW Double_60",thumbnail:"/api/files/hash/sha256-ece3069f1ddea1986cd5fca48c7f260157bf4f0a006d5114f804a4c6b8391f7e",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"69 2DW Double_60",visible:!0,enabled:!0},{assetId:"99f926d6-dc6d-49a2-bef0-f73c487fb7df",name:"63 1DW Slim 2_60",tags:["model","model Urban Duplex"],metadata:{Label:"63 1DW Slim 2",value:"63 1DW Slim 2_60",thumbnail:"/api/files/hash/sha256-9f0e37bd5fd81d5e9d63c438410f92c25f13d4636e070a0ad4aed71f95c1f5ff",heightImage:"100px"},fileSize:95548,tagids:["19b3f1fb-357c-4f51-976b-b17cff00679b","7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"63 1DW Slim 2_60",visible:!0,enabled:!0},{assetId:"2a187a35-ffd5-4317-b4d4-3eb8b934a61d",name:"63 1DW Slim 1_60",tags:["model Urban Duplex"],metadata:{Label:"63 1DW Slim 1",value:"63 1DW Slim 1_60",thumbnail:"/api/files/hash/sha256-3755538f13ae39a1eba57bcdbd9df721ab8cd9d9cd43ac3c7c4c43b0f06d5fed",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"63 1DW Slim 1_60",visible:!0,enabled:!0},{assetId:"adc7bb13-868e-4345-92df-5cbf4a94de48",name:"63 1DW Double_60",tags:["model Urban Duplex"],metadata:{Label:"63 1DW Double",value:"63 1DW Double_60",thumbnail:"/api/files/hash/sha256-6ceeb645962ffd36daff8a7e465674757c9a936c19d54d74366a4295ab484318",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"63 1DW Double_60",visible:!0,enabled:!0},{assetId:"699adf5b-4322-4c80-a24c-3dfcd2db4fe3",name:"63 1DW Slim_60",tags:["model Urban Duplex"],metadata:{Label:"63 1DW Slim",value:"63 1DW Slim_60",thumbnail:"/api/files/hash/sha256-17e4f226e50528f9f74d7e78d229f4b3fa770f08f8bcd5388f52395d51286870",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"63 1DW Slim_60",visible:!0,enabled:!0},{assetId:"17ebddb7-38d5-4863-b79b-7d6ef5a54e2c",name:"61 1DW Multi-Level_60",tags:["model Urban Duplex"],metadata:{Label:"61 1DW Multi-Level",value:"61 1DW Multi-Level_60",thumbnail:"/api/files/hash/sha256-453cf42dae46259e33875f87cfd20b75c819a9fedee9f298eb3911d783dd7fdf",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"61 1DW Multi-Level_60",visible:!0,enabled:!0},{assetId:"3168081b-e8bf-4321-9af1-076b5ca56d7e",name:"67 1DW Slim_60",tags:["model Urban Duplex"],metadata:{Label:"67 1DW Slim",value:"67 1DW Slim_60",thumbnail:"/api/files/hash/sha256-b965e9d064606b0fd868c6e179577bce4c9724a84588b210c3915688ffdc92b6",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"67 1DW Slim_60",visible:!0,enabled:!0},{assetId:"1a66d901-4fb1-4914-80f3-4e960c1f85f7",name:"59 2DW Double_50",tags:["model Urban Duplex"],metadata:{Label:"59 2DW Double",value:"59 2DW Double_50",thumbnail:"/api/files/hash/sha256-7a0659806a56eb543a5ca2253d7aebae498b4656dd8711c225513e88b1fc1a50",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"59 2DW Double_50",visible:!0,enabled:!0},{assetId:"5f5187ce-198f-495b-bd1e-7a0a962da147",name:"53 1DW OSS_50",tags:["model Urban Duplex"],metadata:{Label:"53 1DW OSS",value:"53 1DW OSS_50",thumbnail:"/api/files/hash/sha256-5401ab6997db9eeba92db07683eab28c86e136db0a7cf1de4ad709762c87e107",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"53 1DW OSS_50",visible:!0,enabled:!0},{assetId:"27ba8dca-bf5b-4492-b240-d274c6bff366",name:"55 2DW OSS_50",tags:["model Urban Duplex"],metadata:{Label:"55 2DW OSS",value:"55 2DW OSS_50",thumbnail:"/api/files/hash/sha256-07e999385f3f180123e85c46be6e20aa6ca5048f83a58642e4e3aae2a05580e0",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"55 2DW OSS_50",visible:!0,enabled:!0},{assetId:"0ef17d93-d257-47e2-8f90-090f4ec8c960",name:"59 1DW Double OSS_50",tags:["model Urban Duplex"],metadata:{Label:"59 1DW Double OSS",value:"59 1DW Double OSS_50",thumbnail:"/api/files/hash/sha256-ce91b265c267a829eee5dec3ecef4a6e263ea1ff4e5c5a7670d3e40d6e7a249c",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"59 1DW Double OSS_50",visible:!0,enabled:!0},{assetId:"e8b30941-0e35-4e80-8078-770d900b70b2",name:"55 1DW Slim 1_50",tags:["model Urban Duplex"],metadata:{Label:"55 1DW Slim 1",value:"55 1DW Slim 1_50",thumbnail:"/api/files/hash/sha256-027cb432918da8b48d1cac5f91f97a19bd410bbc8f646d299476d2ec4dcee9b3",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"55 1DW Slim 1_50",visible:!0,enabled:!0},{assetId:"5659a2f1-2549-4ba6-943a-58b04f426e58",name:"59 1DW_50",tags:["model Urban Duplex"],metadata:{Label:"59 1DW",value:"59 1DW_50",thumbnail:"/api/files/hash/sha256-5bd84d4666dde93d90daea7fa4c028b6e8d4069ab15adef974821d8c4b4051b8",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"59 1DW_50",visible:!0,enabled:!0},{assetId:"8ec9ba74-8ee3-4f2d-bdab-ea7b6d5343fc",name:"59 1DW Slim_50",tags:["model Urban Duplex"],metadata:{Label:"59 1DW Slim",value:"59 1DW Slim_50",thumbnail:"/api/files/hash/sha256-e10cd3fec425019b7c0a03df561b5a584942bc7010b4ad07a9e83167d417196a",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"59 1DW Slim_50",visible:!0,enabled:!0},{assetId:"b6d7b435-ed1f-4b30-8909-c04af88c1e28",name:"57 1DW Multi-level_50",tags:["model Urban Duplex"],metadata:{Label:"57 1DW Multi-level",value:"57 1DW Multi-level_50",thumbnail:"/api/files/hash/sha256-6067e010ae90835f59c3715c729a1f356f48c4e72f2ebfaff7d919fb6f8d9f51",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"57 1DW Multi-level_50",visible:!0,enabled:!0},{assetId:"148be97f-e7d5-44f0-9875-4fed40099966",name:"51 2DW_50",tags:["model Urban Duplex"],metadata:{Label:"51 2DW",value:"51 2DW_50",thumbnail:"/api/files/hash/sha256-f7fe1e49bbefa64e6956011693ba9199a744d59a8a0bcc9b72d2c3d6e34d78eb",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"51 2DW_50",visible:!0,enabled:!0},{assetId:"95a2a635-eb60-4032-b8a5-26b3de95493d",name:"55 1DW Slim_50",tags:["model Urban Duplex"],metadata:{Label:"55 1DW Slim",value:"55 1DW Slim_50",thumbnail:"/api/files/hash/sha256-9e4afe81db704e46508a894274b73901c7af1601ee23f0ee6aa04e90bfbce5c0",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"55 1DW Slim_50",visible:!0,enabled:!0},{assetId:"8dba195c-cb60-4f93-9705-88de5c3292eb",name:"42 1DW Slim OSS_40",tags:["model Urban Duplex"],metadata:{Label:"42 1DW Slim OSS",value:"42 1DW Slim OSS_40",thumbnail:"/api/files/hash/sha256-957b94217474e7cbfaf5fc44f09226bf107d4e17983ac1be54225cbb766b0dd4",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"42 1DW Slim OSS_40",visible:!0,enabled:!0},{assetId:"0f152381-0cf4-4b2d-9d95-83f53b975228",name:"48 2DW_40",tags:["model Urban Duplex"],metadata:{Label:"48 2DW",value:"48 2DW_40",thumbnail:"/api/files/hash/sha256-a35a523586422039da937c7567be01e477b3782fde945dc3e0c51622ae0f8338",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"48 2DW_40",visible:!0,enabled:!0},{assetId:"d4c45838-462e-4ba4-ace0-a8ae9e202fe6",name:"48 2DW Double_40",tags:["model Urban Duplex"],metadata:{Label:"48 2DW Double",value:"48 2DW Double_40",thumbnail:"/api/files/hash/sha256-d9911083ef3c8537ec9a8e8d6ef6487cf323c977ae8202fa394e0043fd08cd6b",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"48 2DW Double_40",visible:!0,enabled:!0},{assetId:"e5ad9918-b4de-4b89-bcf3-2d9b35b62856",name:"48 1DW Slim_40",tags:["model Urban Duplex"],metadata:{Label:"48 1DW Slim",value:"48 1DW Slim_40",thumbnail:"/api/files/hash/sha256-68deb96791a97db34d7b84d4de6a32d009cb166a1447340695a2d9f4c7dc6aa2",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"48 1DW Slim_40",visible:!0,enabled:!0},{assetId:"10b73a23-3473-4043-9ffa-06b30950f56a",name:"42 1DW 1_40",tags:["model Urban Duplex"],metadata:{Label:"42 1DW 1",value:"42 1DW 1_40",thumbnail:"/api/files/hash/sha256-237d0ba2a068accd89f019e9e3ed6b74c03f765d7e4e9fb87a2f99839e0d7e92",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"42 1DW 1_40",visible:!0,enabled:!0},{assetId:"243fd8ee-0a09-4262-a6f4-3f0cb999af74",name:"42 1DW Slim 1_40",tags:["model Urban Duplex"],metadata:{Label:"42 1DW Slim 1",value:"42 1DW Slim 1_40",thumbnail:"/api/files/hash/sha256-a1986e03357d037191374fb0b50982240731fcdfa9b163f45b6a93e34d406e99",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"42 1DW Slim 1_40",visible:!0,enabled:!0},{assetId:"14961583-1d01-47fa-8f50-d6bae281d08f",name:"46 1DW Slim_40",tags:["model Urban Duplex"],metadata:{Label:"46 1DW Slim",value:"46 1DW Slim_40",thumbnail:"/api/files/hash/sha256-6c919a4dc53e07d8c2dea89df95a5950995939b9502ce8c9920f0cf7119b0bbb",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"46 1DW Slim_40",visible:!0,enabled:!0},{assetId:"e9a06a37-7605-44a5-8b50-78a8364cea10",name:"42 1DW_40",tags:["model Urban Duplex"],metadata:{Label:"42 1DW",value:"42 1DW_40",thumbnail:"/api/files/hash/sha256-daef8397016ccd132d462dd1c579b85044c68d3419e2d2cef5dff8eaa017e905",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"42 1DW_40",visible:!0,enabled:!0},{assetId:"9d25a611-5e60-4e98-9550-f1cf55ed8af3",name:"42 1DW Slim_40",tags:["model Urban Duplex"],metadata:{Label:"42 1DW Slim_40",value:"42 1DW Slim_40",thumbnail:"/api/files/hash/sha256-afc4eb6a31c51465e4ef429b7c00e4a5ee5ed5f820111144135e1fd250cf7bae",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"42 1DW Slim_40",visible:!0,enabled:!0},{assetId:"dfe10703-f219-487c-bcf5-d3d310168a8f",name:"48 1DW Double_40",tags:["model Urban Duplex"],metadata:{Label:"48 1DW Double",value:"48 1DW Double_40",thumbnail:"/api/files/hash/sha256-bfd5be661f5ca7837d8e552e0035aab866a5d760eedcd2a8754d9c36df6daf02",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"48 1DW Double_40",visible:!0,enabled:!0},{assetId:"0fa00003-cf80-429f-b51f-601123a43d7a",name:"34 2DW OSS_30",tags:["model Urban Duplex"],metadata:{Label:"34 2DW OSS",value:"34 2DW OSS_30",thumbnail:"/api/files/hash/sha256-913c3da360df99c11f980bbff037ed4b9a95bfa1d69f0040caa6b4c25f186e7d",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"34 2DW OSS_30",visible:!0,enabled:!0},{assetId:"92792cf4-053a-485a-9e7c-18457d777699",name:"34 1DW OSS_30",tags:["model Urban Duplex"],metadata:{Label:"34 1DW OSS_30",value:"34 1DW OSS_30",thumbnail:"/api/files/hash/sha256-3eee548a488e6a7a4c45b23dc60a8d8f90d7507466c592223fc178e4d5d3be19",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"34 1DW OSS_30",visible:!0,enabled:!0},{assetId:"a419d587-a6a3-4dcf-aba2-5eeb850b64a4",name:"36 2DW_30",tags:["model Urban Duplex"],metadata:{Label:"36 2DW",value:"36 2DW_30",thumbnail:"/api/files/hash/sha256-0f3a42ae610327d622a1a0bf855d4591c28679a889df660f557d5388d59f82b9",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"36 2DW_30",visible:!0,enabled:!0},{assetId:"4dbecc91-5d81-4a3f-8c54-14fe5cbdf653",name:"36 1DW Slim_30",tags:["model Urban Duplex"],metadata:{Label:"36 1DW Slim_30",value:"36 1DW Slim_30",thumbnail:"/api/files/hash/sha256-205390d4bf14a8d853b337799e10e1c7356276f8bd02b333c2dd763945bae86c",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"36 1DW Slim_30",visible:!0,enabled:!0},{assetId:"a578c9b0-7885-47c9-b241-f4dcfc16e9ea",name:"32 1DW_30",tags:["model Urban Duplex"],metadata:{Label:"32 1DW_30",value:"32 1DW_30",thumbnail:"/api/files/hash/sha256-553a1aa09e2f19d78d25bbd80ffcc2952303a0b54e96db7844194c31fcabd396",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"32 1DW_30",visible:!0,enabled:!0},{assetId:"2c8ab13b-abd4-4a33-b31a-255f13dfe5cb",name:"32 1DW Slim_30",tags:["model Urban Duplex"],metadata:{Label:"32 1DW Slim",value:"32 1DW Slim_30",thumbnail:"/api/files/hash/sha256-a8e1f7e5997885fb779eef1cac6cd837b70c8f559c4445ee3b4730f23841e8fb",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"32 1DW Slim_30",visible:!0,enabled:!0},{assetId:"a779764b-708a-42d9-802a-a5e581844409",name:"34 1DW_30",tags:["model Urban Duplex"],metadata:{Label:"34 1DW_30",value:"34 1DW_30",thumbnail:"/api/files/hash/sha256-1c8931c1d2707632af3c5ea54809bdd48c2af2062e94dbf98c6cc1772b83035e",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"34 1DW_30",visible:!0,enabled:!0},{assetId:"124c8fb1-9430-41b5-a78e-58de9082874f",name:"34 1DW Slim_30",tags:["model Urban Duplex"],metadata:{Label:"34 1DW Slim",value:"34 1DW Slim_30",thumbnail:"/api/files/hash/sha256-3a2daa101624f5e7dda43f63116f00c58fbd0c61e581436941c08e3acb733924",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"34 1DW Slim_30",visible:!0,enabled:!0},{assetId:"55e6b457-8a8e-43fe-abed-71fcb7f659ed",name:"24 2DW_24",tags:["model Urban Duplex"],metadata:{Label:"24 2DW",value:"24 2DW_24",thumbnail:"/api/files/hash/sha256-2d21c8e150025fe389c005c99c46340089bd1166bfda65a13e77b0576f679fbe",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"24 2DW_24",visible:!0,enabled:!0},{assetId:"eb05b71a-3602-47c1-88ee-176fdc4dc8cc",name:"28 1DW Slim_24",tags:["model Urban Duplex"],metadata:{Label:"28 1DW Slim_24",value:"28 1DW Slim_24",thumbnail:"/api/files/hash/sha256-9cf89ee02d37311a9321c240bfe992fa5a5bcc2eb92d7523a2813b9ed04b89a5",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"28 1DW Slim_24",visible:!0,enabled:!0},{assetId:"6e089c8b-7d62-40c7-b2cb-a59f6398cfa4",name:"24 1DW Slim_24",tags:["model Urban Duplex"],metadata:{Label:"24 1DW Slim_24",value:"24 1DW Slim_24",thumbnail:"/api/files/hash/sha256-f5a367cc9e7ffaa5275414f869c3f68c17299e736e15313f783414aafe9f8b1d",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"24 1DW Slim_24",visible:!0,enabled:!0},{assetId:"cbc1bfe2-8cdc-4792-a036-43d08c4f430b",name:"28 1DW_24",tags:["model Urban Duplex"],metadata:{Label:"28 1DW_24",value:"28 1DW_24",thumbnail:"/api/files/hash/sha256-3e2d1b9e56aafa004e8f99f00e829e6355cb3adb27a013763ff130a5b1fe990e",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"28 1DW_24",visible:!0,enabled:!0},{assetId:"be136781-c863-424b-bfd4-743401cf6768",name:"28 2DW_24",tags:["model Urban Duplex"],metadata:{Label:"28 2DW_24",value:"28 2DW_24",thumbnail:"/api/files/hash/sha256-bb2734fccff227ad6c9b08716469b8dac7eb2bcc362b1aa1162f400d6a126f69",heightImage:"100px"},fileSize:95548,tagids:["7f6cba5d-af17-443c-9b85-e7ea77908b3b"],type:"item",label:"28 2DW_24",visible:!0,enabled:!0}],defaultValue:{assetId:"9d25a611-5e60-4e98-9550-f1cf55ed8af3",type:"item"},global:{id:"4073e443-7ec6-4ea6-889b-6e84f5fa36b8",type:"Global",name:"Global",metadata:[],defaultValue:{assetId:"9d25a611-5e60-4e98-9550-f1cf55ed8af3",type:"item"}},visible:!0,enabled:!0,hiddenValues:[],disabledValues:[],value:{assetId:"9d25a611-5e60-4e98-9550-f1cf55ed8af3",type:"item"}},{id:"84be1dcc-fe28-463f-853f-435f534477c7",type:"Asset",name:"UI_Base Panel",metadata:{Name:"Base Panel",Label:"Base Panel",thumbnail:"https://preview.threekit.com/api/images/texture/sha256-8bb06aafce5ba9519736cc65156892d5e00884ddca433c18edfb2980203c5e7f?power2=1024",hasRenderImagePreview:"true"},blacklist:[],assetType:"model",values:[{assetId:"d7d451da-ef2a-4b18-8968-dc334e9871e1",name:"Verde Salvia 42 ST",tags:["Materials","Azzurra"],metadata:{hex:"#7f8e7c",soft:"Verde Salvia 42 MT",Color:"Green",label:"Verde Salvia 42 ST",value:"Verde Salvia 42 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Salvia 42 ST",visible:!0,enabled:!0},{assetId:"20328789-8dd1-4ef8-9dae-b4f0620629b2",name:"Verde Polvere 34 ST",tags:["Materials","Azzurra"],metadata:{hex:"#a3b0ab",soft:"Verde Polvere 34 MT",Color:"Green",label:"Verde Polvere 34 ST",value:"Verde Polvere 34 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Polvere 34 ST",visible:!0,enabled:!0},{assetId:"7c542842-7cb0-496a-a3d7-3c74be3d64b6",name:"Verde Ghiaia 31 ST",tags:["Materials","Azzurra"],metadata:{hex:"#c0cac6",soft:"Verde Ghiaia 31 MT",Color:"Green",label:"Verde Ghiaia 31 ST",value:"Verde Ghiaia 31 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Ghiaia 31 ST",visible:!0,enabled:!0},{assetId:"2391ec54-0d5a-4c8b-97ae-ac7899e3178c",name:"Verde Comodoro FG ST",tags:["Materials","Azzurra"],metadata:{hex:"#48544d",soft:"Verde Comodoro FG MT",Color:"Green",label:"Verde Comodoro FG ST",value:"Verde Comodoro FG ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Comodoro FG ST",visible:!0,enabled:!0},{assetId:"584577fc-7555-49af-82de-8628474b7adb",name:"Tortora BE ST",tags:["Materials","Azzurra"],metadata:{hex:"#b2b1a9",soft:"Tortora BE MT",Color:"Grey, Brown",label:"Tortora BE ST",value:"Tortora BE ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Tortora BE ST",visible:!0,enabled:!0},{assetId:"6ac76228-e6e3-4051-bd95-21049c138f31",name:"Torba DS ST",tags:["Materials","Azzurra"],metadata:{hex:"#53514c",soft:"Torba DS MT",Color:"Brown",label:"Torba DS ST",value:"Torba DS ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Torba DS ST",visible:!0,enabled:!0},{assetId:"5bb788b0-63a3-45bb-b798-6066e0a50022",name:"Titanio 93 ST",tags:["Materials","Azzurra"],metadata:{hex:"#aaa59d",soft:"Titanio 93 MT",Color:"Brown, Grey",label:"Titanio 93 ST",value:"Titanio 93 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Titanio 93 ST",visible:!0,enabled:!0},{assetId:"064c7fb6-f23a-479d-bdf0-b13f67d435e9",name:"Terra DB ST",tags:["Materials","Azzurra"],metadata:{hex:"#9a9182",soft:"Terra DB MT",Color:"Brown",label:"Terra DB ST",value:"Terra DB ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Terra DB ST",visible:!0,enabled:!0},{assetId:"0f399e8d-18ce-477e-a4c7-414621b22a48",name:"Rosso Rubino 19 ST",tags:["Materials","Azzurra"],metadata:{hex:"#6c323c",soft:"Rosso Rubino 19 MT",Color:"Red",label:"Rosso Rubino 19 ST",value:"Rosso Rubino 19 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Rubino 19 ST",visible:!0,enabled:!0},{assetId:"114b2017-d63d-44fa-8378-2b21b5f5b580",name:"Rosso Jaipur FH ST",tags:["Materials","Azzurra"],metadata:{hex:"#3f2626",soft:"Rosso Jaipur FH MT",Color:"Red, Purple",label:"Rosso Jaipur FH ST",value:"Rosso Jaipur FH ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Jaipur FH ST",visible:!0,enabled:!0},{assetId:"e40f0d60-f94d-47e1-a62f-b9e743630b62",name:"Rosso Fuoco 21 ST",tags:["Materials","Azzurra"],metadata:{hex:"#802a2e",soft:"Rosso Fuoco 21 MT",Color:"Red",label:"Rosso Fuoco 21 ST",value:"Rosso Fuoco 21 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Fuoco 21 ST",visible:!0,enabled:!0},{assetId:"cb0e5c75-9af8-41ac-8ed0-c3d20336d0f3",name:"Rosa Retro 46 ST",tags:["Materials","Azzurra"],metadata:{hex:"#bfaea2",soft:"Rosa Retro 46 MT",Color:"Pink, Beige",label:"Rosa Retro 46 ST",value:"Rosa Retro 46 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosa Retro 46 ST",visible:!0,enabled:!0},{assetId:"e7deaffc-c2e0-4778-9323-e8d845676a1b",name:"Rosa Etoile 45 ST",tags:["Materials","Azzurra"],metadata:{hex:"#d1c2b7",soft:"Rosa Etoile 45 MT",Color:"Pink",label:"Rosa Etoile 45 ST",value:"Rosa Etoile 45 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosa Etoile 45 ST",visible:!0,enabled:!0},{assetId:"1cd18d40-6079-4366-a17d-4e6b73c722ec",name:"Roccia CE ST",tags:["Materials","Azzurra"],metadata:{hex:"#8c8680",soft:"Roccia CE MT",Color:"Brown",label:"Roccia CE ST",value:"Roccia CE ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Roccia CE ST",visible:!0,enabled:!0},{assetId:"614fdcd2-8af2-466c-a61a-270cfdb32215",name:"Platino DF ST",tags:["Materials","Azzurra"],metadata:{hex:"#d0d1cd",soft:"Platino DF MT",Color:"Beige",label:"Platino DF ST",value:"Platino DF ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Platino DF ST",visible:!0,enabled:!0},{assetId:"eb18fc87-5431-4b54-9b2d-3d593e7bf284",name:"Nero 03 ST",tags:["Materials","Azzurra"],metadata:{hex:"#1c1c1d",soft:"Nero 03 MT",Color:"Black",label:"Nero 03 ST",value:"Nero 03 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Nero 03 ST",visible:!0,enabled:!0},{assetId:"6c6c06e5-68ec-4a1f-a0cf-736ba5466ade",name:"Nebbia 91 ST",tags:["Materials","Azzurra"],metadata:{hex:"#c9c7c0",soft:"Nebbia 91 MT",Color:"Beige, Brown",label:"Nebbia 91 ST",value:"Nebbia 91 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Nebbia 91 ST",visible:!0,enabled:!0},{assetId:"e38fce2b-87d7-460e-9ad3-6fb5af6436aa",name:"Mattone 10 ST",tags:["Materials","Azzurra"],metadata:{hex:"#b07252",soft:"Mattone 10 MT",Color:"Orange",label:"Mattone 10 ST",value:"Mattone 10 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Mattone 10 ST",visible:!0,enabled:!0},{assetId:"3500cff3-20ef-40a4-b228-91a54d981e5b",name:"Marrone Havana 79 ST",tags:["Materials","Azzurra"],metadata:{hex:"#322f30",soft:"Marrone Havana 79 MT",Color:"Brown",label:"Marrone Havana 79 ST",value:"Marrone Havana 79 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Marrone Havana 79 ST",visible:!0,enabled:!0},{assetId:"6b1a0234-a90d-4335-8aa4-f85efb176ea6",name:"Juta DP ST",tags:["Materials","Azzurra"],metadata:{hex:"#c2c0b3",soft:"Juta DP MT",Color:"Beige",label:"Juta DP ST",value:"Juta DP ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Juta DP ST",visible:!0,enabled:!0},{assetId:"e12a4f37-7ad9-452e-94f2-2d32a275c868",name:"Grigio Talpa B5 ST",tags:["Materials","Azzurra"],metadata:{hex:"#9d9d93",soft:"Grigio Talpa B5 MT",Color:"Grey, Brown",label:"Grigio Talpa B5 ST",value:"Grigio Talpa B5 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Talpa B5 ST",visible:!0,enabled:!0},{assetId:"bdd616ff-6727-4baf-bb67-a82b5d557348",name:"Grigio Pioggia 80 ST",tags:["Materials","Azzurra"],metadata:{hex:"#949696",soft:"Grigio Pioggia 80 MT",Color:"Grey",label:"Grigio Pioggia 80 ST",value:"Grigio Pioggia 80 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Pioggia 80 ST",visible:!0,enabled:!0},{assetId:"dcd99716-aa23-4c4f-acc4-7d413445727e",name:"Grigio Perla 33 ST",tags:["Materials","Azzurra"],metadata:{hex:"#b0aead",soft:"Grigio Perla 33 MT",Color:"Grey",label:"Grigio Perla 33 ST",value:"Grigio Perla 33 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Perla 33 ST",visible:!0,enabled:!0},{assetId:"4280caea-a3e4-49b6-8376-d72610ad78cd",name:"Grigio Luce 07 ST",tags:["Materials","Azzurra"],metadata:{hex:"#bfbfbb",soft:"Grigio Luce 07 MT",Color:"Grey",label:"Grigio Luce 07 ST",value:"Grigio Luce 07 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Luce 07 ST",visible:!0,enabled:!0},{assetId:"284bcab2-1015-4766-85ce-9f3c3831bc76",name:"Grigio Londra FD ST",tags:["Materials","Azzurra"],metadata:{hex:"#75736e",soft:"Grigio Londra FD MT",Color:"Grey",label:"Grigio Londra FD ST",value:"Grigio Londra FD ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Londra FD ST",visible:!0,enabled:!0},{assetId:"2abe38f7-4a90-4bb8-a0a5-91573ac79d16",name:"Grigio Lavagna A9 ST",tags:["Materials","Azzurra"],metadata:{hex:"#767a7e",soft:"Grigio Lavagna A9 MT",Color:"Grey",label:"Grigio Lavagna A9 ST",value:"Grigio Lavagna A9 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Lavagna A9 ST",visible:!0,enabled:!0},{assetId:"a0d2faff-5e77-4f96-a79d-5361901d1f22",name:"Grigio Grafite 02 ST",tags:["Materials","Azzurra"],metadata:{hex:"#555558",soft:"Grigio Grafite 02 MT",Color:"Grey",label:"Grigio Grafite 02 ST",value:"Grigio Grafite 02 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Grafite 02 ST",visible:!0,enabled:!0},{assetId:"9a08508b-fe52-41f4-9db8-416092ab27b9",name:"Grigio Efeso FB ST",tags:["Materials","Azzurra"],metadata:{hex:"#bcbdbd",soft:"Grigio Efeso FB MT",Color:"Grey",label:"Grigio Efeso FB ST",value:"Grigio Efeso FB ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Efeso FB ST",visible:!0,enabled:!0},{assetId:"eeb1c4e7-53ea-4b59-9b7b-1cf985202332",name:"Grigio Chiaro A8 ST",tags:["Materials","Azzurra"],metadata:{hex:"#c7cbca",soft:"Grigio Chiaro A8 MT",Color:"Grey",label:"Grigio Chiaro A8 ST",value:"Grigio Chiaro A8 ST",Material:"Soft-Touch",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Chiaro A8 ST",visible:!0,enabled:!0},{assetId:"f4631dc8-9015-4cb5-af99-1026e4425dc6",name:"Grigio Bromo FE ST",tags:["Materials","Azzurra"],metadata:{hex:"#545a60",soft:"Grigio Bromo FE MT",Color:"Grey, Blue",label:"Grigio Bromo FE ST",value:"Grigio Bromo FE ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Bromo FE ST",visible:!0,enabled:!0},{assetId:"c30709b6-9277-468a-b35e-38d198d1526a",name:"Giallo Curry 08 ST",tags:["Materials","Azzurra"],metadata:{hex:"#d2c38b",soft:"Giallo Curry 08 MT",Color:"Yellow",label:"Giallo Curry 08 ST",value:"Giallo Curry 08 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Giallo Curry 08 ST",visible:!0,enabled:!0},{assetId:"a53927c5-9133-424c-97c4-ecc77c8262a5",name:"Cenere 92 ST",tags:["Materials","Azzurra"],metadata:{hex:"#b2ada4",soft:"Cenere 92 MT",Color:"Brown",label:"Cenere 92 ST",value:"Cenere 92 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cenere 92 ST",visible:!0,enabled:!0},{assetId:"a2fa7bf5-2344-4ff3-a0da-0552d4a571de",name:"Castoro Ottawa FC ST",tags:["Materials","Azzurra"],metadata:{hex:"#857f74",soft:"Castoro Ottawa FC MT",Color:"Brown",label:"Castoro Ottawa FC ST",value:"Castoro Ottawa FC ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Castoro Ottawa FC ST",visible:!0,enabled:!0},{assetId:"186811d0-8add-4b2e-8423-6ca43e9bc141",name:"Carta da Zucchero 47 ST",tags:["Materials","Azzurra"],metadata:{hex:"#a7b3bb",soft:"Carta da Zucchero 47 MT",Color:"Blue, Grey",label:"Carta da Zucchero 47 ST",value:"Carta da Zucchero 47 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Carta da Zucchero 47 ST",visible:!0,enabled:!0},{assetId:"3f2a6d98-a58c-4b64-8922-32e0f685eaf5",name:"Carbone 43 ST",tags:["Materials","Azzurra"],metadata:{hex:"#4f5050",soft:"Carbone 43 MT",Color:"Grey",label:"Carbone 43 ST",value:"Carbone 43 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Carbone 43 ST",visible:!0,enabled:!0},{assetId:"c7ce37d8-e428-4822-a513-ff56e2a80c42",name:"Canyon 90 ST",tags:["Materials","Azzurra"],metadata:{hex:"#cac5b2",soft:"Canyon 90 MT",Color:"Beige",label:"Canyon 90 ST",value:"Canyon 90 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Canyon 90 ST",visible:!0,enabled:!0},{assetId:"8a27f0cf-f885-4621-9e2c-a34d1fd2acfd",name:"Canapa 94 ST",tags:["Materials","Azzurra"],metadata:{hex:"#c4c3bd",soft:"Canapa 94 MT",Color:"Grey, Beige",label:"Canapa 94 ST",value:"Canapa 94 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Canapa 94 ST",visible:!0,enabled:!0},{assetId:"bb290770-56fc-49e8-8548-20533bd8962b",name:"Cacao Orinoco FF ST",tags:["Materials","Azzurra"],metadata:{hex:"#3d3a3b",soft:"Cacao Orinoco FF MT",Color:"Brown",label:"Cacao Orinoco FF ST",value:"Cacao Orinoco FF ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cacao Orinoco FF ST",visible:!0,enabled:!0},{assetId:"ebe9a649-aaa9-41fe-818b-b4e47edd99e6",name:"Cacao 05 ST",tags:["Materials","Azzurra"],metadata:{hex:"#3e352d",soft:"Cacao 05 MT",Color:"Brown",label:"Cacao 05 ST",value:"Cacao 05 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cacao 05 ST",visible:!0,enabled:!0},{assetId:"8607017f-93d1-49dd-a03d-c1f139691bb5",name:"Blu Reale 48 ST",tags:["Materials","Azzurra"],metadata:{hex:"#2e303d",soft:"Blu Reale 48 MT",Color:"Blue",label:"Blu Reale 48 ST",value:"Blu Reale 48 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Reale 48 ST",visible:!0,enabled:!0},{assetId:"fd18c7e1-67e2-415f-91d2-8f8507a55b5d",name:"Blu Pavone A6 ST",tags:["Materials","Azzurra"],metadata:{hex:"#25656e",soft:"Blu Pavone A6 MT",Color:"Blue",label:"Blu Pavone A6 ST",value:"Blu Pavone A6 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Pavone A6 ST",visible:!0,enabled:!0},{assetId:"fdac3243-20d0-49c6-bc6c-17194c9e7a0d",name:"Blu Oltremare BG ST",tags:["Materials","Azzurra"],metadata:{hex:"#3b4247",soft:"Blu Oltremare BG ST",Color:"Blue",label:"Blu Oltremare BG ST",value:"Blu Oltremare BG ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Oltremare BG ST",visible:!0,enabled:!0},{assetId:"a173d6d7-c2d4-4355-914f-8cc32c3fc9b3",name:"Blu Laguna A7 ST",tags:["Materials","Azzurra"],metadata:{hex:"#184148",soft:"Blu Laguna A7 MT",Color:"Blue",label:"Blu Laguna A7 ST",value:"Blu Laguna A7 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Laguna A7 ST",visible:!0,enabled:!0},{assetId:"a54236e6-651e-4404-96d7-0fe4ecbd2d88",name:"Blu Avio 41 ST",tags:["Materials","Azzurra"],metadata:{hex:"#788892",soft:"Blu Avio 41 MT",Color:"Blue",label:"Blu Avio 41 ST",value:"Blu Avio 41 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Avio 41 ST",visible:!0,enabled:!0},{assetId:"ca8d50f0-d80e-43b9-ad9c-066f4a2f33ae",name:"Blu Artico 37 ST",tags:["Materials","Azzurra"],metadata:{hex:"#4b5f6f",soft:"Blu Artico 37 MT",Color:"Blue",label:"Blu Artico 37 ST",value:"Blu Artico 37 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Artico 37 ST",visible:!0,enabled:!0},{assetId:"9dbddb33-0aab-4b70-b574-a323fe08af47",name:"Bianco Male FA ST",tags:["Materials","Azzurra"],metadata:{hex:"#dadad4",soft:"Bianco Male FA MT",Color:"White, Beige",label:"Bianco Male FA ST",value:"Bianco Male FA ST",Material:"Soft-Touch",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco Male FA ST",visible:!0,enabled:!0},{assetId:"abb65419-cfa9-445a-9719-8a6f0aeb0eb5",name:"Bianco Calce DA ST",tags:["Materials","Azzurra"],metadata:{hex:"#e4e2df",soft:"Bianco Calce DA MT",Color:"White, Beige",label:"Bianco Calce DA ST",value:"Bianco Calce DA ST",Material:"Soft-Touch",zoomIconColor:"Dark Grey",hasDefaultConfuguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco Calce DA ST",visible:!0,enabled:!0},{assetId:"f2d6875d-d9bf-42da-a6e3-a8d1d3a1a19f",name:"Bianco 0B ST",tags:["Materials","Azzurra"],metadata:{hex:"#fffffe",soft:"Bianco 0B MT",Color:"White",label:"Bianco 0B ST",value:"Bianco 0B ST",Material:"Soft-Touch",zoomIconColor:"Dark Grey",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco 0B ST",visible:!0,enabled:!0},{assetId:"8ff6d955-9668-434e-ae8e-3d092e4145d4",name:"Argilla DR ST",tags:["Materials","Azzurra"],metadata:{hex:"#817d74",soft:"Argilla DR MT",Color:"Grey, Brown",label:"Argilla DR ST",value:"Argilla DR ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Argilla DR ST",visible:!0,enabled:!0},{assetId:"1be06217-9f77-40b7-ada8-2cefeec351fb",name:"Ardesia DD ST",tags:["Materials","Azzurra"],metadata:{hex:"#5f5d5a",soft:"Ardesia DD MT",Color:"Grey",label:"Ardesia DD ST",value:"Ardesia DD ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Ardesia DD ST",visible:!0,enabled:!0},{assetId:"0963a65f-b841-4ca2-9407-acdac8d16fbf",name:"Arancio Zucca 09 ST",tags:["Materials","Azzurra"],metadata:{hex:"#c69b6b",soft:"Arancio Zucca 09 MT",Color:"Orange",label:"Arancio Zucca 09 ST",value:"Arancio Zucca 09 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Arancio Zucca 09 ST",visible:!0,enabled:!0},{assetId:"911ab5b7-fafe-4292-b7db-7c12ae0b0866",name:"Aragosta 77 ST",tags:["Materials","Azzurra"],metadata:{hex:"#ba5b3a",soft:"Aragosta 77 MT",Color:"Orange",label:"Aragosta 77 ST",value:"Aragosta 77 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Aragosta 77 ST",visible:!0,enabled:!0},{assetId:"82f43401-b911-40e2-9781-fc2e03c3f556",name:"Agata BD ST",tags:["Materials","Azzurra"],metadata:{hex:"#caccc9",soft:"Agata BD MT",Color:"Grey, Beige",label:"Agata BD ST",value:"Agata BD ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Agata BD ST",visible:!0,enabled:!0},{assetId:"4a1d4776-4887-4aba-b631-cc61df8a8766",name:"Verde Salvia 42 GL",tags:["Materials","Azzurra"],metadata:{hex:"#7f8e7c",Color:"Green",label:"Verde Salvia 42 GL",value:"Verde Salvia 42 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Salvia 42 GL",visible:!0,enabled:!0},{assetId:"c08ea7b5-781a-489f-9e17-cd919c54abd4",name:"Verde Polvere 34 GL",tags:["Materials","Azzurra"],metadata:{hex:"#a3b0ab",Color:"Green",label:"Verde Polvere 34 GL",value:"Verde Polvere 34 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Polvere 34 GL",visible:!0,enabled:!0},{assetId:"2b8de8d3-8d40-4e7b-8d10-24300b963ec2",name:"Verde Ghiaia 31 GL",tags:["Materials","Azzurra"],metadata:{hex:"#c0cac6",Color:"Green",label:"Verde Ghiaia 31 GL",value:"Verde Ghiaia 31 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Ghiaia 31 GL",visible:!0,enabled:!0},{assetId:"1784c7e1-e87c-4b18-a3a5-7735fa8a1cd8",name:"Verde Comodoro FG GL",tags:["Materials","Azzurra"],metadata:{hex:"#48544d",Color:"Green",label:"Verde Comodoro FG GL",value:"Verde Comodoro FG GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Comodoro FG GL",visible:!0,enabled:!0},{assetId:"4eaa6b9c-b3f3-4494-8129-65bb579f5d4b",name:"Tortora BE GL",tags:["Materials","Azzurra"],metadata:{hex:"#b2b1a9",Color:"Grey, Brown",label:"Tortora BE GL",value:"Tortora BE GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Tortora BE GL",visible:!0,enabled:!0},{assetId:"30f594ab-e223-4fca-abaa-b31a3e0d7b55",name:"Torba DS GL",tags:["Materials","Azzurra"],metadata:{hex:"#53514c",Color:"Brown",label:"Torba DS GL",value:"Torba DS GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Torba DS GL",visible:!0,enabled:!0},{assetId:"3f204516-2cf2-4da8-ab5c-bbe02798bd17",name:"Titanio 93 GL",tags:["Materials","Azzurra"],metadata:{hex:"#aaa59d",Color:"Brown, Grey",label:"Titanio 93 GL",value:"Titanio 93 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Titanio 93 GL",visible:!0,enabled:!0},{assetId:"a09ad2c0-e273-4f96-9535-8ed3aaee16c6",name:"Terra DB GL",tags:["Materials","Azzurra"],metadata:{hex:"#9a9182",Color:"Brown",label:"Terra DB GL",value:"Terra DB GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Terra DB GL",visible:!0,enabled:!0},{assetId:"cb5b5f13-a43c-46df-8870-4b89cd52c83b",name:"Rosso Rubino 19 GL",tags:["Materials","Azzurra"],metadata:{hex:"#6c323c",Color:"Red",label:"Rosso Rubino 19 GL",value:"Rosso Rubino 19 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Rubino 19 GL",visible:!0,enabled:!0},{assetId:"eb8e8b75-354e-4247-9d92-701eef3aa636",name:"Rosso Jaipur FH GL",tags:["Materials","Azzurra"],metadata:{hex:"#3f2626",Color:"Red, Purple",label:"Rosso Jaipur FH GL",value:"Rosso Jaipur FH GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Jaipur FH GL",visible:!0,enabled:!0},{assetId:"e41e9f41-0470-4ff1-84cd-dac4fb890a05",name:"Rosso Fuoco 21 GL",tags:["Materials","Azzurra"],metadata:{hex:"#802a2e",Color:"Red",label:"Rosso Fuoco 21 GL",value:"Rosso Fuoco 21 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Fuoco 21 GL",visible:!0,enabled:!0},{assetId:"bf6cde7e-082c-4a70-8578-45769d5ee7f9",name:"Rosa Retro 46 GL",tags:["Materials","Azzurra"],metadata:{hex:"#bfaea2",Color:"Pink, Beige",label:"Rosa Retro 46 GL",value:"Rosa Retro 46 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosa Retro 46 GL",visible:!0,enabled:!0},{assetId:"fd708b90-7b8a-4d15-aa22-f2beade948a5",name:"Rosa Etoile 45 GL",tags:["Materials","Azzurra"],metadata:{hex:"#d1c2b7",Color:"Pink",label:"Rosa Etoile 45 GL",value:"Rosa Etoile 45 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosa Etoile 45 GL",visible:!0,enabled:!0},{assetId:"9b4afa6b-d041-4c10-b311-66dba0db9945",name:"Roccia CE GL",tags:["Materials","Azzurra"],metadata:{hex:"#8c8680",Color:"Brown",label:"Roccia CE GL",value:"Roccia CE GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Roccia CE GL",visible:!0,enabled:!0},{assetId:"d226b192-5f71-4bf5-b060-379c97139d36",name:"Platino DF GL",tags:["Materials","Azzurra"],metadata:{hex:"#d0d1cd",Color:"Beige",label:"Platino DF GL",value:"Platino DF GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Platino DF GL",visible:!0,enabled:!0},{assetId:"dd26676a-6efe-417f-95ed-e5b095342a4a",name:"Nero 03 GL",tags:["Materials","Azzurra"],metadata:{hex:"#1c1c1d",Color:"Black",label:"Nero 03 GL",value:"Nero 03 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Nero 03 GL",visible:!0,enabled:!0},{assetId:"6cca15f4-50d5-49ac-927b-1f3746390591",name:"Nebbia 91 GL",tags:["Materials","Azzurra"],metadata:{hex:"#c9c7c0",Color:"Beige, Brown",label:"Nebbia 91 GL",value:"Nebbia 91 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Nebbia 91 GL",visible:!0,enabled:!0},{assetId:"d7df19f1-c154-48a3-a73b-45672d80ddb1",name:"Mattone 10 GL",tags:["Materials","Azzurra"],metadata:{hex:"#b07252",Color:"Orange",label:"Mattone 10 GL",value:"Mattone 10 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Mattone 10 GL",visible:!0,enabled:!0},{assetId:"37cab846-db46-4c97-8ef2-03d40c844440",name:"Marrone Havana 79 GL",tags:["Materials","Azzurra"],metadata:{hex:"#322f30",Color:"Brown",label:"Marrone Havana 79 GL",value:"Marrone Havana 79 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Marrone Havana 79 GL",visible:!0,enabled:!0},{assetId:"d337d7d8-91b3-4459-b2ab-093e89701bce",name:"Juta DP GL",tags:["Materials","Azzurra"],metadata:{hex:"#c2c0b3",Color:"Beige",label:"Juta DP GL",value:"Juta DP GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Juta DP GL",visible:!0,enabled:!0},{assetId:"7e4dc26e-2918-467f-a596-f9c3c654d5a6",name:"Grigio Talpa B5 GL",tags:["Materials","Azzurra"],metadata:{hex:"#9d9d93",Color:"Grey, Brown",label:"Grigio Talpa B5 GL",value:"Grigio Talpa B5 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Talpa B5 GL",visible:!0,enabled:!0},{assetId:"db1f40f4-1bd9-4dbb-ac25-5572c81787b4",name:"Grigio Pioggia 80 GL",tags:["Materials","Azzurra"],metadata:{hex:"#949696",Color:"Grey",label:"Grigio Pioggia 80 GL",value:"Grigio Pioggia 80 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Pioggia 80 GL",visible:!0,enabled:!0},{assetId:"6d670d1b-0f81-4940-a347-3ae72db916ac",name:"Grigio Perla 33 GL",tags:["Materials","Azzurra"],metadata:{hex:"#b0aead",Color:"Grey",label:"Grigio Perla 33 GL",value:"Grigio Perla 33 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Perla 33 GL",visible:!0,enabled:!0},{assetId:"ef2a5e0c-75e3-4358-aa26-9f0e48f1eea2",name:"Grigio Luce 07 GL",tags:["Materials","Azzurra"],metadata:{hex:"#bfbfbb",Color:"Grey",label:"Grigio Luce 07 GL",value:"Grigio Luce 07 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Luce 07 GL",visible:!0,enabled:!0},{assetId:"1a8366a9-1c17-4c91-889b-ee43244c9354",name:"Grigio Londra FD GL",tags:["Materials","Azzurra"],metadata:{hex:"#75736e",Color:"Grey",label:"Grigio Londra FD GL",value:"Grigio Londra FD GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Londra FD GL",visible:!0,enabled:!0},{assetId:"f00c4b2c-7c2d-4201-b62c-2848aa5e7834",name:"Grigio Lavagna A9 GL",tags:["Materials","Azzurra"],metadata:{hex:"#767a7e",Color:"Grey",label:"Grigio Lavagna A9 GL",value:"Grigio Lavagna A9 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Lavagna A9 GL",visible:!0,enabled:!0},{assetId:"2b0eaec0-9844-4b43-b266-f593f8231cf9",name:"Grigio Grafite 02 GL",tags:["Materials","Azzurra"],metadata:{hex:"#555558",Color:"Grey",label:"Grigio Grafite 02 GL",value:"Grigio Grafite 02 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Grafite 02 GL",visible:!0,enabled:!0},{assetId:"9d606e23-4a6e-412e-952a-3aff87c86c12",name:"Grigio Efeso FB GL",tags:["Materials","Azzurra"],metadata:{hex:"#bcbdbd",Color:"Grey",label:"Grigio Efeso FB GL",value:"Grigio Efeso FB GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Efeso FB GL",visible:!0,enabled:!0},{assetId:"c078d55f-3250-4a49-9c4b-f23d5a022ffa",name:"Grigio Chiaro A8 GL",tags:["Materials","Azzurra"],metadata:{hex:"#c7cbca",Color:"Grey",label:"Grigio Chiaro A8 GL",value:"Grigio Chiaro A8 GL",Material:"Lacquered GL",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Chiaro A8 GL",visible:!0,enabled:!0},{assetId:"2d0b0443-ea3b-4ecb-932f-fbd88568a940",name:"Grigio Bromo FE GL",tags:["Materials","Azzurra"],metadata:{hex:"#545a60",Color:"Grey, Blue",label:"Grigio Bromo FE GL",value:"Grigio Bromo FE GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Bromo FE GL",visible:!0,enabled:!0},{assetId:"a2cdc305-3a66-4360-92d5-617b2294e2ac",name:"Giallo Curry 08 GL",tags:["Materials","Azzurra"],metadata:{hex:"#d2c38b",Color:"Yellow",label:"Giallo Curry 08 GL",value:"Giallo Curry 08 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Giallo Curry 08 GL",visible:!0,enabled:!0},{assetId:"778c34d7-25ff-4e33-a9cd-de7e5429cccb",name:"Cenere 92 GL",tags:["Materials","Azzurra"],metadata:{hex:"#b2ada4",Color:"Brown",label:"Cenere 92 GL",value:"Cenere 92 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cenere 92 GL",visible:!0,enabled:!0},{assetId:"e31c7006-bb41-4535-ac29-207bf1b82151",name:"Castoro Ottawa FC GL",tags:["Materials","Azzurra"],metadata:{hex:"#857f74",Color:"Brown",label:"Castoro Ottawa FC GL",value:"Castoro Ottawa FC GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Castoro Ottawa FC GL",visible:!0,enabled:!0},{assetId:"bb90d982-9375-4eb8-976e-70b4edb2a234",name:"Carta da Zucchero 47 GL",tags:["Materials","Azzurra"],metadata:{hex:"#a7b3bb",Color:"Blue, Grey",label:"Carta da Zucchero 47 GL",value:"Carta da Zucchero 47 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Carta da Zucchero 47 GL",visible:!0,enabled:!0},{assetId:"03f11c8a-df5c-4533-87ff-460dfa86099f",name:"Carbone 43 GL",tags:["Materials","Azzurra"],metadata:{hex:"#4f5050",Color:"Grey",label:"Carbone 43 GL",value:"Carbone 43 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Carbone 43 GL",visible:!0,enabled:!0},{assetId:"6bff8002-b9b3-4ba9-b538-41c72f13e22b",name:"Canyon 90 GL",tags:["Materials","Azzurra"],metadata:{hex:"#cac5b2",Color:"Beige",label:"Canyon 90 GL",value:"Canyon 90 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Canyon 90 GL",visible:!0,enabled:!0},{assetId:"70e2b6a3-a2bd-41dc-8a62-008faccb5ca3",name:"Canapa 94 GL",tags:["Materials","Azzurra"],metadata:{hex:"#c4c3bd",Color:"Grey, Beige",label:"Canapa 94 GL",value:"Canapa 94 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Canapa 94 GL",visible:!0,enabled:!0},{assetId:"64092ba9-9a76-4abb-b5ec-7a00fb012a87",name:"Cacao Orinoco FF GL",tags:["Materials","Azzurra"],metadata:{hex:"#3d3a3b",Color:"Brown",label:"Cacao Orinoco FF GL",value:"Cacao Orinoco FF GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cacao Orinoco FF GL",visible:!0,enabled:!0},{assetId:"cd3b2b48-adfc-42e4-8fdd-6667ad635ded",name:"Cacao 05 GL",tags:["Materials","Azzurra"],metadata:{hex:"#3e352d",Color:"Brown",label:"Cacao 05 GL",value:"Cacao 05 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cacao 05 GL",visible:!0,enabled:!0},{assetId:"e9212dd4-f451-4a7a-8714-7f80d2fabbbb",name:"Blu Reale 48 GL",tags:["Materials","Azzurra"],metadata:{hex:"#2e303d",Color:"Blue",label:"Blu Reale 48 GL",value:"Blu Reale 48 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Reale 48 GL",visible:!0,enabled:!0},{assetId:"bcd79906-577d-4321-b318-f56455babb9b",name:"Blu Pavone A6 GL",tags:["Materials","Azzurra"],metadata:{hex:"#25656e",Color:"Blue",label:"Blu Pavone A6 GL",value:"Blu Pavone A6 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Pavone A6 GL",visible:!0,enabled:!0},{assetId:"4148c35b-cbd9-413c-8bb0-e7c22dcfe5a7",name:"Blu Oltremare BG GL",tags:["Materials","Azzurra"],metadata:{hex:"#3b4247",Color:"Blue",label:"Blu Oltremare BG GL",value:"Blu Oltremare BG GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Oltremare BG GL",visible:!0,enabled:!0},{assetId:"dbb43f89-cf31-4dac-9d15-fb544561f7dd",name:"Blu Laguna A7 GL",tags:["Materials","Azzurra"],metadata:{hex:"#184148",Color:"Blue",label:"Blu Laguna A7 GL",value:"Blu Laguna A7 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Laguna A7 GL",visible:!0,enabled:!0},{assetId:"e8512433-8070-4d41-b7e8-7d4361c0d672",name:"Blu Avio 41 GL",tags:["Materials","Azzurra"],metadata:{hex:"#788892",Color:"Blue",label:"Blu Avio 41 GL",value:"Blu Avio 41 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Avio 41 GL",visible:!0,enabled:!0},{assetId:"79076ef6-0279-4d1a-ab1d-393796d60749",name:"Blu Artico 37 GL",tags:["Materials","Azzurra"],metadata:{hex:"#4b5f6f",Color:"Blue",label:"Blu Artico 37 GL",value:"Blu Artico 37 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Artico 37 GL",visible:!0,enabled:!0},{assetId:"6a25ecd1-9ae0-4598-8315-5ba098795837",name:"Bianco Male FA GL",tags:["Materials","Azzurra"],metadata:{hex:"#dadad4",Color:"White, Beige",label:"Bianco Male FA GL",value:"Bianco Male FA GL",Material:"Lacquered GL",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco Male FA GL",visible:!0,enabled:!0},{assetId:"a0ea7be5-ddaa-4ed0-bc02-b4b3aa4b3938",name:"Bianco Calce DA GL",tags:["Materials","Azzurra","krostest"],metadata:{hex:"#e4e2df",Color:"White, Beige",label:"Bianco Calce DA GL",value:"Bianco Calce DA GL",Material:"Lacquered GL",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","6f3a860d-6b17-4648-966b-5f084fede54c"],type:"item",label:"Bianco Calce DA GL",visible:!0,enabled:!0},{assetId:"0aa8946f-882e-43e0-ad3a-b4c79a2d6dd5",name:"Bianco 0B GL",tags:["Materials","Azzurra"],metadata:{hex:"#fffffe",Color:"White",label:"Bianco 0B GL",value:"Bianco 0B GL",Material:"Lacquered GL",zoomIconColor:"Dark Grey",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco 0B GL",visible:!0,enabled:!0},{assetId:"406286a7-d17d-45d8-b9f9-0c1e0131f272",name:"Argilla DR GL",tags:["Materials","Azzurra"],metadata:{hex:"#817d74",Color:"Grey, Brown",label:"Argilla DR GL",value:"Argilla DR GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Argilla DR GL",visible:!0,enabled:!0},{assetId:"fa90c6bc-12ac-4f44-8ccc-d968cbd19a8a",name:"Ardesia DD GL",tags:["Materials","Azzurra"],metadata:{hex:"#5f5d5a",Color:"Grey",label:"Ardesia DD GL",value:"Ardesia DD GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Ardesia DD GL",visible:!0,enabled:!0},{assetId:"ef1f676f-ef1b-4fc5-bb33-f39d276f94db",name:"Arancio Zucca 09 GL",tags:["Materials","Azzurra"],metadata:{hex:"#c69b6b",Color:"Orange",label:"Arancio Zucca 09 GL",value:"Arancio Zucca 09 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Arancio Zucca 09 GL",visible:!0,enabled:!0},{assetId:"1f6f07d6-c0f4-4b9c-94f3-c8d0fadeb9b5",name:"Aragosta 77 GL",tags:["Materials","Azzurra"],metadata:{hex:"#ba5b3a",Color:"Orange",label:"Aragosta 77 GL",value:"Aragosta 77 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Aragosta 77 GL",visible:!0,enabled:!0},{assetId:"46fea197-f969-4788-bcb4-386afd24c921",name:"Agata BD GL",tags:["Materials","Azzurra"],metadata:{hex:"#caccc9",Color:"Grey, Beige",label:"Agata BD GL",value:"Agata BD GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Agata BD GL",visible:!0,enabled:!0},{assetId:"c81e7570-7059-41d3-bee2-fd10e331454d",name:"Verde Salvia 42 MT",tags:["Materials","Azzurra"],metadata:{hex:"#7f8e7c",Color:"Green",label:"Verde Salvia 42 MT",value:"Verde Salvia 42 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Salvia 42 MT",visible:!0,enabled:!0},{assetId:"3373cd97-ca8b-4715-b9f2-beae05bd1c32",name:"Verde Polvere 34 MT",tags:["Materials","Azzurra"],metadata:{hex:"#a3b0ab",Color:"Green",label:"Verde Polvere 34 MT",value:"Verde Polvere 34 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Polvere 34 MT",visible:!0,enabled:!0},{assetId:"deb6988d-849d-495f-9bc8-e79291a919b5",name:"Verde Ghiaia 31 MT",tags:["Materials","Azzurra"],metadata:{hex:"#c0cac6",Color:"Green",label:"Verde Ghiaia 31 MT",value:"Verde Ghiaia 31 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Ghiaia 31 MT",visible:!0,enabled:!0},{assetId:"dc614604-7b90-4697-81b3-2b39f3f08859",name:"Verde Comodoro FG MT",tags:["Materials","Azzurra"],metadata:{hex:"#48544d",Color:"Green",label:"Verde Comodoro FG MT",value:"Verde Comodoro FG MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Comodoro FG MT",visible:!0,enabled:!0},{assetId:"0528d338-4a0b-4e13-a986-127c0658de0a",name:"Tortora BE MT",tags:["Materials","Azzurra"],metadata:{hex:"#b2b1a9",Color:"Grey, Brown",label:"Tortora BE MT",value:"Tortora BE MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Tortora BE MT",visible:!0,enabled:!0},{assetId:"d968572e-752c-4886-a115-9b724f8b3d38",name:"Torba DS MT",tags:["Materials","Azzurra"],metadata:{hex:"#53514c",Color:"Brown",label:"Torba DS MT",value:"Torba DS MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Torba DS MT",visible:!0,enabled:!0},{assetId:"44f3858c-9db7-4af2-84fc-b1924e48201d",name:"Titanio 93 MT",tags:["Materials","Azzurra"],metadata:{hex:"#aaa59d",Color:"Brown, Grey",label:"Titanio 93 MT",value:"Titanio 93 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Titanio 93 MT",visible:!0,enabled:!0},{assetId:"af5b9902-7259-45e9-b0e7-3a1d22a554ed",name:"Terra DB MT",tags:["Materials","Azzurra"],metadata:{hex:"#9a9182",Color:"Brown",label:"Terra DB MT",value:"Terra DB MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Terra DB MT",visible:!0,enabled:!0},{assetId:"6adaad4a-2347-4c0a-8ddf-613b81482a0d",name:"Rosso Rubino 19 MT",tags:["Materials","Azzurra"],metadata:{hex:"#6c323c",Color:"Red",label:"Rosso Rubino 19 MT",value:"Rosso Rubino 19 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Rubino 19 MT",visible:!0,enabled:!0},{assetId:"9210b3ce-2d4f-46af-a11c-e37f972853b2",name:"Rosso Jaipur FH MT",tags:["Materials","Azzurra"],metadata:{hex:"#3f2626",Color:"Red, Purple",label:"Rosso Jaipur FH MT",value:"Rosso Jaipur FH MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Jaipur FH MT",visible:!0,enabled:!0},{assetId:"a6b92d16-c401-4fd9-805d-665db1ea9aa5",name:"Rosso Fuoco 21 MT",tags:["Materials","Azzurra"],metadata:{hex:"#802a2e",Color:"Red",label:"Rosso Fuoco 21 MT",value:"Rosso Fuoco 21 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Fuoco 21 MT",visible:!0,enabled:!0},{assetId:"6233a5b5-0bdb-4cd3-b6ed-b000c272f88d",name:"Rosa Retro 46 MT",tags:["Materials","Azzurra"],metadata:{hex:"#bfaea2",Color:"Pink, Beige",label:"Rosa Retro 46 MT",value:"Rosa Retro 46 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosa Retro 46 MT",visible:!0,enabled:!0},{assetId:"c3b4bba5-bf5d-485d-aafd-090b49d1fa1c",name:"Rosa Etoile 45 MT",tags:["Materials","Azzurra"],metadata:{hex:"#d1c2b7",Color:"Pink",label:"Rosa Etoile 45 MT",value:"Rosa Etoile 45 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosa Etoile 45 MT",visible:!0,enabled:!0},{assetId:"f31bdd61-67d5-4a14-85ef-f8be8508b2d9",name:"Roccia CE MT",tags:["Materials","Azzurra"],metadata:{hex:"#8c8680",Color:"Brown",label:"Roccia CE MT",value:"Roccia CE MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Roccia CE MT",visible:!0,enabled:!0},{assetId:"3434169b-fafa-4eef-b629-27e5f6e802c9",name:"Platino DF MT",tags:["Materials","Azzurra"],metadata:{hex:"#d0d1cd",Color:"Beige",label:"Platino DF MT",value:"Platino DF MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Platino DF MT",visible:!0,enabled:!0},{assetId:"4b198de6-1a80-44e7-bb3e-ecd1eb3f1cd2",name:"Nero 03 MT",tags:["Materials","Azzurra","msidecolor"],metadata:{hex:"#1c1c1d",Color:"Black",label:"Nero 03 MT",value:"Nero 03 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","ed7278e2-c79e-48c4-b04d-b7dee94306e5"],type:"item",label:"Nero 03 MT",visible:!0,enabled:!0},{assetId:"ea25d89e-2755-4117-bba8-43f66e83abc1",name:"Nebbia 91 MT",tags:["Materials","Azzurra"],metadata:{hex:"#c9c7c0",Color:"Beige, Brown",label:"Nebbia 91 MT",value:"Nebbia 91 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Nebbia 91 MT",visible:!0,enabled:!0},{assetId:"f9cd0ff7-a2c2-4c54-89b6-a0199fdf2ee6",name:"Metallizzato Creta M6 MT",tags:["Materials","Azzurra","msidecolor","krostest"],metadata:{Look:"Metallic",Color:"Grey, Brown",image:"/api/files/hash/sha256-558d9db0b0da23f99665949733dc60d007d6276a256f6f229537a95c33e69c4c",label:"Metallizzato Creta M6 MT",value:"Metallizzato Creta M6 MT",Material:"Lacquered MT",zoomIconColor:"White",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","ed7278e2-c79e-48c4-b04d-b7dee94306e5","6f3a860d-6b17-4648-966b-5f084fede54c"],type:"item",label:"Metallizzato Creta M6 MT",visible:!0,enabled:!0},{assetId:"3f5e5831-92a5-4c49-b71b-354395c05788",name:"Metallizzato Copper M7 MT",tags:["Materials","Azzurra","msidecolor"],metadata:{Look:"Metallic",Color:"Orange, Brown",image:"/api/files/hash/sha256-8c57c1bc9f512b2bc1eecd1c52fffb5d85b43994fa309eccc42942ab53442c7e",label:"Metallizzato Copper M7 MT",value:"Metallizzato Copper M7 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","ed7278e2-c79e-48c4-b04d-b7dee94306e5"],type:"item",label:"Metallizzato Copper M7 MT",visible:!0,enabled:!0},{assetId:"f6073b6e-aafb-46fb-bfa6-3b1798af9e82",name:"Metallizzato Bronzo M4 MT",tags:["Materials","Azzurra"],metadata:{Look:"Metallic",Color:"Brown, Yellow",image:"/api/files/hash/sha256-7eea8ac99e7c140e8bee12582e07b027a30e66ea6d07dffcb7edb0bb45534aec",label:"Metallizzato Bronzo M4 MT",value:"Metallizzato Bronzo M4 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Metallizzato Bronzo M4 MT",visible:!0,enabled:!0},{assetId:"37cdcc22-0554-44d0-bd8c-1152eb00603c",name:"Metallizzato Antracite M5 MT",tags:["Materials","Azzurra"],metadata:{Look:"Metallic",Color:"Grey",image:"/api/files/hash/sha256-1c8f49877261f6942893ad7266638108c8e524000d2704d18799a869a4d9d84f",label:"Metallizzato Antracite M5 MT",value:"Metallizzato Antracite M5 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Metallizzato Antracite M5 MT",visible:!0,enabled:!0},{assetId:"7bdceb22-447e-44f5-8d28-0be7d3850ea0",name:"Metallizzato Alluminio M1 MT",tags:["Materials","Azzurra"],metadata:{Look:"Metallic",Color:"Grey",image:"/api/files/hash/sha256-0fbaef4b135362c20dbc520559c6199d057e20b53a1c8b76dea3ae0558348c6b",label:"Metallizzato Alluminio M1 MT",value:"Metallizzato Alluminio M1 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Metallizzato Alluminio M1 MT",visible:!0,enabled:!0},{assetId:"11cfeb10-1c3b-4efa-94f1-e0ba9912d87d",name:"Mattone 10 MT",tags:["Materials","Azzurra"],metadata:{hex:"#b07252",Color:"Orange",label:"Mattone 10 MT",value:"Mattone 10 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Mattone 10 MT",visible:!0,enabled:!0},{assetId:"2d99df77-094e-42fd-8f19-3ad4f4baf415",name:"Marrone Havana 79 MT",tags:["Materials","Azzurra"],metadata:{hex:"#322f30",Color:"Brown",label:"Marrone Havana 79 MT",value:"Marrone Havana 79 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Marrone Havana 79 MT",visible:!0,enabled:!0},{assetId:"b7e31c93-388f-454d-b2f9-5f72f34ee141",name:"Juta DP MT",tags:["Materials","Azzurra"],metadata:{hex:"#c2c0b3",Color:"Beige",label:"Juta DP MT",value:"Juta DP MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Juta DP MT",visible:!0,enabled:!0},{assetId:"61d62e03-de14-41c0-afeb-a4bf18758472",name:"Grigio Talpa B5 MT",tags:["Materials","Azzurra"],metadata:{hex:"#9d9d93",Color:"Grey, Brown",label:"Grigio Talpa B5 MT",value:"Grigio Talpa B5 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Talpa B5 MT",visible:!0,enabled:!0},{assetId:"e7dacd89-68fd-464d-bc37-32601c66c459",name:"Grigio Pioggia 80 MT",tags:["Materials","Azzurra"],metadata:{hex:"#949696",Color:"Grey",label:"Grigio Pioggia 80 MT",value:"Grigio Pioggia 80 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Pioggia 80 MT",visible:!0,enabled:!0},{assetId:"445ce0ca-f561-41e6-87ed-16a3105632e7",name:"Grigio Perla 33 MT",tags:["Materials","Azzurra"],metadata:{hex:"#b0aead",Color:"Grey",label:"Grigio Perla 33 MT",value:"Grigio Perla 33 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Perla 33 MT",visible:!0,enabled:!0},{assetId:"3729509a-462e-4057-b903-de2cccfd6fdd",name:"Grigio Luce 07 MT",tags:["Materials","Azzurra"],metadata:{hex:"#bfbfbb",Color:"Grey",label:"Grigio Luce 07 MT",value:"Grigio Luce 07 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Luce 07 MT",visible:!0,enabled:!0},{assetId:"b7671109-1886-4875-b111-40934c2130d4",name:"Grigio Londra FD MT",tags:["Materials","Azzurra"],metadata:{hex:"#75736e",Color:"Grey",label:"Grigio Londra FD MT",value:"Grigio Londra FD MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Londra FD MT",visible:!0,enabled:!0},{assetId:"415af7a5-d25c-481b-8025-2f5b4ea40c89",name:"Grigio Lavagna A9 MT",tags:["Materials","Azzurra"],metadata:{hex:"#767a7e",Color:"Grey",label:"Grigio Lavagna A9 MT",value:"Grigio Lavagna A9 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Lavagna A9 MT",visible:!0,enabled:!0},{assetId:"f8ed9f86-ca5e-4884-8f1b-312ff4f7c1a3",name:"Grigio Grafite 02 MT",tags:["Materials","Azzurra"],metadata:{hex:"#555558",Color:"Grey",label:"Grigio Grafite 02 MT",value:"Grigio Grafite 02 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Grafite 02 MT",visible:!0,enabled:!0},{assetId:"29685e60-35df-4b78-ab4d-e2002cf70ae9",name:"Grigio Efeso FB MT",tags:["Materials","Azzurra"],metadata:{hex:"#bcbdbd",Color:"Grey",label:"Grigio Efeso FB MT",value:"Grigio Efeso FB MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Efeso FB MT",visible:!0,enabled:!0},{assetId:"734bf3d3-2fe0-407f-9b87-4455014fc36b",name:"Grigio Chiaro A8 MT",tags:["Materials","Azzurra"],metadata:{hex:"#c7cbca",Color:"Grey",label:"Grigio Chiaro A8 MT",value:"Grigio Chiaro A8 MT",Material:"Lacquered MT",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Chiaro A8 MT",visible:!0,enabled:!0},{assetId:"e5ee304a-7b12-4de3-bd49-2e68e1d05269",name:"Grigio Bromo FE MT",tags:["Materials","Azzurra"],metadata:{hex:"#545a60",Color:"Grey, Blue",label:"Grigio Bromo FE MT",value:"Grigio Bromo FE MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Bromo FE MT",visible:!0,enabled:!0},{assetId:"f210cdfe-7922-46be-9d93-3db1f22fa93e",name:"Giallo Curry 08 MT",tags:["Materials","Azzurra"],metadata:{hex:"#d2c38b",Color:"Yellow",label:"Giallo Curry 08 MT",value:"Giallo Curry 08 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Giallo Curry 08 MT",visible:!0,enabled:!0},{assetId:"e46a7d84-e177-44d4-ba75-0931d2f1a1a9",name:"Cenere 92 MT",tags:["Materials","Azzurra"],metadata:{hex:"#b2ada4",Color:"Brown",label:"Cenere 92 MT",value:"Cenere 92 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cenere 92 MT",visible:!0,enabled:!0},{assetId:"cb5d17d7-1e70-40ad-a0c5-9b324ace2db0",name:"Castoro Ottawa FC MT",tags:["Materials","Azzurra"],metadata:{hex:"#857f74",Color:"Brown",label:"Castoro Ottawa FC MT",value:"Castoro Ottawa FC MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Castoro Ottawa FC MT",visible:!0,enabled:!0},{assetId:"c344b27f-1ef5-49f4-be27-e73269ff3650",name:"Carta da Zucchero 47 MT",tags:["Materials","Azzurra"],metadata:{hex:"#a7b3bb",Color:"Blue, Grey",label:"Carta da Zucchero 47 MT",value:"Carta da Zucchero 47 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Carta da Zucchero 47 MT",visible:!0,enabled:!0},{assetId:"a8596d1f-3284-4f1e-9e34-def496f5b7f4",name:"Carbone 43 MT",tags:["Materials","Azzurra","msidecolor"],metadata:{hex:"#4f5050",Color:"Grey",label:"Carbone 43 MT",value:"Carbone 43 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","ed7278e2-c79e-48c4-b04d-b7dee94306e5"],type:"item",label:"Carbone 43 MT",visible:!0,enabled:!0},{assetId:"97d7ef51-84be-444d-916d-a1fb60477057",name:"Canyon 90 MT",tags:["Materials","Azzurra"],metadata:{hex:"#cac5b2",Color:"Beige",label:"Canyon 90 MT",value:"Canyon 90 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Canyon 90 MT",visible:!0,enabled:!0},{assetId:"5527c5ed-37b4-4ff6-a988-04a7947c812c",name:"Canapa 94 MT",tags:["Materials","Azzurra"],metadata:{hex:"#c4c3bd",Color:"Grey, Beige",label:"Canapa 94 MT",value:"Canapa 94 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Canapa 94 MT",visible:!0,enabled:!0},{assetId:"6c46a72f-a5e9-4a3c-bfde-59d4aec50e2f",name:"Cacao Orinoco FF MT",tags:["Materials","Azzurra"],metadata:{hex:"#3d3a3b",Color:"Brown",label:"Cacao Orinoco FF MT",value:"Cacao Orinoco FF MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cacao Orinoco FF MT",visible:!0,enabled:!0},{assetId:"dca2bff2-ae23-4fe3-8553-97c2b4fe01ce",name:"Cacao 05 MT",tags:["Materials","Azzurra"],metadata:{hex:"#3e352d",Color:"Brown",label:"Cacao 05 MT",value:"Cacao 05 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cacao 05 MT",visible:!0,enabled:!0},{assetId:"1c80efb4-9051-4bc9-ab73-d189350434e9",name:"Blu Reale 48 MT",tags:["Materials","Azzurra"],metadata:{hex:"#2e303d",Color:"Blue",label:"Blu Reale 48 MT",value:"Blu Reale 48 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Reale 48 MT",visible:!0,enabled:!0},{assetId:"d29ff03a-41bc-4e57-896a-dfbfa4edff65",name:"Blu Pavone A6 MT",tags:["Materials","Azzurra"],metadata:{hex:"#25656e",Color:"Blue",label:"Blu Pavone A6 MT",value:"Blu Pavone A6 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Pavone A6 MT",visible:!0,enabled:!0},{assetId:"2ccbc172-8ef5-496e-bda7-07cc640ba3db",name:"Blu Oltremare BG MT",tags:["Materials","Azzurra"],metadata:{hex:"#3b4247",Color:"Blue",label:"Blu Oltremare BG MT",value:"Blu Oltremare BG MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Oltremare BG MT",visible:!0,enabled:!0},{assetId:"c2627fc0-4242-4b0c-9156-2ef972b4be70",name:"Blu Laguna A7 MT",tags:["Materials","Azzurra"],metadata:{hex:"#184148",Color:"Blue",label:"Blu Laguna A7 MT",value:"Blu Laguna A7 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Laguna A7 MT",visible:!0,enabled:!0},{assetId:"1fdffbb0-48b5-4d76-9bff-e0d941b86428",name:"Blu Avio 41 MT",tags:["Materials","Azzurra"],metadata:{hex:"#788892",Color:"Blue",label:"Blu Avio 41 MT",value:"Blu Avio 41 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Avio 41 MT",visible:!0,enabled:!0},{assetId:"066d34f3-5541-47c3-8c11-84641aba26f3",name:"Blu Artico 37 MT",tags:["Materials","Azzurra","krostest"],metadata:{hex:"#4b5f6f",Color:"Blue",label:"Blu Artico 37 MT",value:"Blu Artico 37 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","6f3a860d-6b17-4648-966b-5f084fede54c"],type:"item",label:"Blu Artico 37 MT",visible:!0,enabled:!0},{assetId:"6277605b-c003-4b05-aa75-9630584e0ba2",name:"Bianco Male FA MT",tags:["Materials","Azzurra"],metadata:{hex:"#dadad4",Color:"White, Beige",label:"Bianco Male FA MT",value:"Bianco Male FA MT",Material:"Lacquered MT",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco Male FA MT",visible:!0,enabled:!0},{assetId:"a85b5501-aba8-4100-b53e-6bbf8ae18e34",name:"Bianco Calce DA MT",tags:["Materials","Azzurra"],metadata:{hex:"#e4e2df",Color:"White, Beige",label:"Bianco Calce DA MT",value:"Bianco Calce DA MT",Material:"Lacquered MT",zoomIconColor:"Dark Grey","hasDefaultConfiguration#UI_Color":"#Urban Open Storage#","hasDefaultConfiguration#UI_Base Panel":"#Urban Duplex#"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco Calce DA MT",visible:!0,enabled:!0},{assetId:"2d829e3d-9f41-4758-893e-26ee68094953",name:"Bianco 0B MT",tags:["Materials","Azzurra","msidecolor"],metadata:{hex:"#fffffe",Color:"White",label:"Bianco 0B MT",value:"Bianco 0B MT",Material:"Lacquered MT",zoomIconColor:"Dark Grey",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","ed7278e2-c79e-48c4-b04d-b7dee94306e5"],type:"item",label:"Bianco 0B MT",visible:!0,enabled:!0},{assetId:"bc48ceb2-6b9c-4b82-b51f-d42a08389cba",name:"Argilla DR MT",tags:["Materials","Azzurra"],metadata:{hex:"#817d74",Color:"Grey, Brown",label:"Argilla DR MT",value:"Argilla DR MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Argilla DR MT",visible:!0,enabled:!0},{assetId:"34db9ded-67de-47cf-9100-9917aeb17c82",name:"Ardesia DD MT",tags:["Materials","Azzurra"],metadata:{hex:"#5f5d5a",Color:"Grey",label:"Ardesia DD MT",value:"Ardesia DD MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Ardesia DD MT",visible:!0,enabled:!0},{assetId:"2b269fe6-54f4-49cb-a1ba-014a6f247c40",name:"Arancio Zucca 09 MT",tags:["Materials","Azzurra"],metadata:{hex:"#c69b6b",Color:"Orange",label:"Arancio Zucca 09 MT",value:"Arancio Zucca 09 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Arancio Zucca 09 MT",visible:!0,enabled:!0},{assetId:"0cab70b6-a0e2-4dd2-bbff-9a1f603003e1",name:"Aragosta 77 MT",tags:["Materials","Azzurra"],metadata:{hex:"#ba5b3a",Color:"Orange",label:"Aragosta 77 MT",value:"Aragosta 77 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Aragosta 77 MT",visible:!0,enabled:!0},{assetId:"b21ccfb6-9584-464b-9cc7-2a9822c7735d",name:"Agata BD MT",tags:["Materials","Azzurra"],metadata:{hex:"#caccc9",Color:"Grey, Beige",label:"Agata BD MT",value:"Agata BD MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Agata BD MT",visible:!0,enabled:!0},{assetId:"093b3db6-9447-4a83-8131-81a79a24985e",name:"Rox Black TKQ",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey",image:"/api/files/hash/sha256-be3d9d42c0d0c78943c8971ac07d2e7bcc573c29282a99a296298e2d9e1ef06b",label:"Rox Black TKQ",value:"Rox Black TKQ",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rox Black TKQ",visible:!0,enabled:!0},{assetId:"2cb25415-2e97-4aa4-8166-6d3f46d09c10",name:"Cepp Stone TKP",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey",image:"/api/files/hash/sha256-b29efe12550ef933d62bcca25d57796aee1c87d225b7935c9b1675ad9be1d4e4",label:"Cepp Stone TKP",value:"Cepp Stone TKP",Material:"HPL",zoomIconColor:"White",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cepp Stone TKP",visible:!0,enabled:!0},{assetId:"9f507901-ac89-486b-900b-79112bb9111f",name:"Brera Brown TKN",tags:["Materials","Azzurra"],metadata:{Look:"Metallic, Stone/Marble-Look",Color:"Brown",image:"/api/files/hash/sha256-176b100a4f17f7c9ec5717097a5ac79f91c524977307559300d0f63536acdff2",label:"Brera Brown TKN",value:"Brera Brown TKN",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Brera Brown TKN",visible:!0,enabled:!0},{assetId:"95701f88-54ca-429c-82c2-62db4ade9e12",name:"Noce Sinfonia TKM",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-c2fadedf011e8a7e2ff5d1f842f59cf40608d2e8ae032a1d99dc364c5222e663",label:"Noce Sinfonia TKM",value:"Noce Sinfonia TKM",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Noce Sinfonia TKM",visible:!0,enabled:!0},{assetId:"012c5296-1201-48f5-b270-3fd473625eee",name:"Rovere Alba TKL",tags:["Materials","Azzurra","krostest"],metadata:{Look:"Wood-Look",Color:"Grey, Brown",image:"/api/files/hash/sha256-ba1fc1fa08e7e6aeaa7b836b17531cfc802b072fec18b2dd6e4beb3cffd96784",label:"Rovere Alba TKL",value:"Rovere Alba TKL",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","6f3a860d-6b17-4648-966b-5f084fede54c"],type:"item",label:"Rovere Alba TKL",visible:!0,enabled:!0},{assetId:"742ab384-3881-4e70-998d-5888e821793a",name:"Rovere Valdweg TKK",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-a7f1023552a4083e3efc21ed7577d69af8f36632a190f2e0563cd4eda67a1284",label:"Rovere Valdweg TKK",value:"Rovere Valdweg TKK",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Valdweg TKK",visible:!0,enabled:!0},{assetId:"3552b459-d700-4a0d-b100-a5f7b447d6c3",name:"Pulpis Scuro TKJ",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Black, Brown, Grey",image:"/api/files/hash/sha256-8f2c62bc1d2c65416dbe26c6e4c82e6e49bf70c065d61b8c27922f1b2a97c1c4",label:"Pulpis Scuro TKJ",value:"Pulpis Scuro TKJ",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pulpis Scuro TKJ",visible:!0,enabled:!0},{assetId:"be20009d-8b5e-42b4-b429-4846fcd9fd9d",name:"Pulpis Chiaro TKH",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey, Beige",image:"/api/files/hash/sha256-280c91328ee6883296a278d492ea1c41993a5e2b31c4ee39b1cf89dbba3937a9",label:"Pulpis Chiaro TKH",value:"Pulpis Chiaro TKH",Material:"HPL",zoomIconColor:"White","hasDefaultConfiguration#UI_Color":"#Urban Horizontal Storage#","hasDefaultConfiguration#UI_Cabinet color":"#Urban Standard#","hasDefaultConfiguration#UI_Lateral Panel":"#Urban Duplex#","hasDefaultConfiguration#UI_Fenix Countertop":"#HPL#"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pulpis Chiaro TKH",visible:!0,enabled:!0},{assetId:"c0f2a7ac-d7bf-4ea6-8209-dc73daec20fb",name:"Noce Savoia TKG",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-db40f7f277f690e8a17f8fafe60fd97dd6dedf7509cbc1eaa230e0194942589d",label:"Noce Savoia TKG",value:"Noce Savoia TKG",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Noce Savoia TKG",visible:!0,enabled:!0},{assetId:"84acc9b2-f3a2-4ac5-9e3c-62c1427f5bb0",name:"Ardesia TKF",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Black",image:"/api/files/hash/sha256-8389293023e9622179eddefcf0e934a28fdc3f80207f62ab1aff4c79f96134d8",label:"Ardesia TKF",value:"Ardesia TKF",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Ardesia TKF",visible:!0,enabled:!0},{assetId:"de1a3842-26c3-4fd5-aeea-89bd7a248e12",name:"Rovere Slavonia TK6",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-320dc7175409c080fd9a4c00742d908c38402a9f568d3465d32b6547a63b8bc7",label:"Rovere Slavonia TK6",value:"Rovere Slavonia TK6",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Slavonia TK6",visible:!0,enabled:!0},{assetId:"7f67815a-68a1-4d1b-8557-c25754e77db3",name:"Rovere Monet TK3",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-da9050a34ec6532e9378e0bb676c924fa5641a4009842482cdf1b5717cabea39",label:"Rovere Monet TK3",value:"Rovere Monet TK3",Material:"HPL",zoomIconColor:"White",filtelistMaterial:"Material#Color#Look"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Monet TK3",visible:!0,enabled:!0},{assetId:"92e3fef6-eb3a-402d-9f0e-b1d18494efa1",name:"Rovere Nero 06J",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Black",image:"/api/files/hash/sha256-bdb2036ece48be19cc5f690e5bd9d97f15069c785a811dcc062a7f8c28766767",label:"Rovere Nero 06J",value:"Rovere Nero 06J",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Nero 06J",visible:!0,enabled:!0},{assetId:"8bf30d43-70dc-49ba-a163-bdecc61774be",name:"Rovere Moka 06H",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Black",image:"/api/files/hash/sha256-8ce07391a770be516f0d974e2679b3aaeb61f3e0fcc0c8fa4265c588b330db37",label:"Rovere Moka 06H",value:"Rovere Moka 06H",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Moka 06H",visible:!0,enabled:!0},{assetId:"c7f22a0a-02ad-4f2b-a3cb-76c71adf267a",name:"Rovere Carbone 06G",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-85667b6d83ae91f892600acf9fbfcdf9eb993b9d2882e42c274372371cf39b03",label:"Rovere Carbone 06G",value:"Rovere Carbone 06G",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Carbone 06G",visible:!0,enabled:!0},{assetId:"5a6770b0-f1bd-4364-adb9-700b7c58d008",name:"Rovere Fumo 06F",tags:["Materials","Azzurra","krostest"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-04c2bcef8e680af0f40bd0ad77272a491c57f989b62a687b0c887d141471ef34",label:"Rovere Fumo 06F",value:"Rovere Fumo 06F",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","6f3a860d-6b17-4648-966b-5f084fede54c"],type:"item",label:"Rovere Fumo 06F",visible:!0,enabled:!0},{assetId:"a08105fe-bc68-46ac-93b1-991f67fe7b83",name:"Rovere Avena 06E",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-8a0bedba2d7f026330ecf889d822b36160540ed989e7c0aa8d6f02551d4ac0f8",label:"Rovere Avena 06E",value:"Rovere Avena 06E",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Avena 06E",visible:!0,enabled:!0},{assetId:"2d95f213-dd17-44d8-b0c7-96635ed255c7",name:"Rovere Cenere 06D",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Grey",image:"/api/files/hash/sha256-71d417511dac70fe039e6a393c01799ef2e8d0f1fbb8a002c4a31399a2bec853",label:"Rovere Cenere 06D",value:"Rovere Cenere 06D",Material:"Essenze",zoomIconColor:"White",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Cenere 06D",visible:!0,enabled:!0},{assetId:"c47815d1-2afb-4daa-af8e-59de129a076f",name:"Rovere Sabbia 06C",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-4d6bd66af400e70c06e4817a6ce9e284de55125d67c69194869147ca52fbf6fa",label:"Rovere Sabbia 06C",value:"Rovere Sabbia 06C",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Sabbia 06C",visible:!0,enabled:!0},{assetId:"c5303510-732c-4ed1-a241-ddf813448a66",name:"Rovere Naturale 06B",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-b2591b7f4f8c072220c82694d99fa3c8ad3fd8ab1d40ab16e1b55a59c5aa1585",label:"Rovere Naturale 06B",value:"Rovere Naturale 06B",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Naturale 06B",visible:!0,enabled:!0},{assetId:"63166dee-207f-4ff3-a52a-895005d32d6f",name:"Rovere Bianco 06A",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-c7663be667ce249f6637eeda8b8d043d7b19e60256a0c49386fdf99f15f90372",label:"Rovere Bianco 06A",value:"Rovere Bianco 06A",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Bianco 06A",visible:!0,enabled:!0},{assetId:"55410697-22d3-4372-a8e6-298802176836",name:"Rovere Eucalipto 01A",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-20f1c0362faaa3c13215a496d98c527822e231a1e4704cd0ae832fd18ce60372",label:"Rovere Eucalipto 01A",value:"Rovere Eucalipto 01A",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Eucalipto 01A",visible:!0,enabled:!0},{assetId:"2a426546-329f-43dc-8941-1cea187b2cad",name:"Metal bronzo 2MD",tags:["Materials","Azzurra"],metadata:{Look:"Metallic",Color:"Brown, Orange",image:"/api/files/hash/sha256-9923e745a84c76b8f367a85ee839b215551a9ecf3b02fea1d2d74533a35ed488",label:"Metal Bronzo 2MD",value:"Metal bronzo 2MD",Material:"Brushed Metal",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Metal bronzo 2MD",visible:!0,enabled:!0},{assetId:"c2b9a429-26a6-4641-a8a0-4d42617233bd",name:"Metal titanio 2MC",tags:["Materials","Azzurra","krostest"],metadata:{Look:"Metallic",Color:"Grey ",image:"/api/files/hash/sha256-dfbdf4748fb842704b08c56a5527e2f1af196c3f10d17f90ef82723ee42cc27e",label:"Metal Titanio 2MC",value:"Metal titanio 2MC",Material:"Brushed Metal",zoomIconColor:"White",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","6f3a860d-6b17-4648-966b-5f084fede54c"],type:"item",label:"Metal titanio 2MC",visible:!0,enabled:!0},{assetId:"a776c1a9-5c0b-465a-a288-6ff8d3782440",name:"Metal piombo 2MB",tags:["Materials","Azzurra"],metadata:{Look:"Metallic",Color:"Grey, Black",image:"/api/files/hash/sha256-089b4432e52cf6c7742318ce45b2a943743c1cae704311db9418e2c906112bdd",label:"Metal Piombo 2MB",value:"Metal piombo 2MB",Material:"Brushed Metal",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Metal piombo 2MB",visible:!0,enabled:!0},{assetId:"01e8e452-3402-457b-9c5c-2ddea51566ef",name:"Metal acciaio 2MA",tags:["Materials","Azzurra"],metadata:{Look:"Metallic",Color:"Grey ",image:"/api/files/hash/sha256-bd251d52235a7bf08b7784912adbeb526e5ac8650d3e313297478062fc40f865",label:"Metal Acciaio 2MA",value:"Metal acciaio 2MA",Material:"Brushed Metal",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Metal acciaio 2MA",visible:!0,enabled:!0},{assetId:"e69b3d47-bd29-4baa-96a7-81dda9ee19a8",name:"Rovere Sherwood Castano 1S3",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-3aa2248400dad333a1c9d39d76cde7dddef13b5ab347a691a0c1cc2cf42bc357",label:"Rovere Sherwood Castano 1S3",value:"Rovere Sherwood Castano 1S3",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Sherwood Castano 1S3",visible:!0,enabled:!0},{assetId:"3c4cfb2f-5975-41a0-b65e-7e5b6551823c",name:"Rovere Sherwood Scuro 1S2",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Black",image:"/api/files/hash/sha256-b4f5474053660e1964121c9503b7763015b2dc52ed436867bfa8ca1cc32a0367",label:"Rovere Sherwood Scuro 1S2",value:"Rovere Sherwood Scuro 1S2",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Sherwood Scuro 1S2",visible:!0,enabled:!0},{assetId:"066d2647-83e9-4346-9ca6-147948dc4987",name:"Rovere Sherwood Chiaro 1S1",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Pink, White",image:"/api/files/hash/sha256-d8af49f10f347b27d8c837d90fde6db67d8c8e26dc7b96b4290bf1d2e8f9de13",label:"Rovere Sherwood Chiaro 1S1",value:"Rovere Sherwood Chiaro 1S1",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Sherwood Chiaro 1S1",visible:!0,enabled:!0},{assetId:"11596557-e805-4425-b197-1d1a33ef8834",name:"Rigatino Beton 1RQ",tags:["Materials","Azzurra"],metadata:{Look:"",Color:"Beige, Grey",image:"/api/files/hash/sha256-d1240cb2e3ac44db648bd5a393efed237087ed8631c49a52f30b9bab3e278bd9",label:"Rigatino Beton 1RQ",value:"Rigatino Beton 1RQ",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rigatino Beton 1RQ",visible:!0,enabled:!0},{assetId:"b64de9dd-ebce-469c-bc3d-7d27e95c69b7",name:"Rigatino Tabacco 1RP",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-eb6d9f15eed4d7b0512f1722d0fd18bfafd174a888bb88f64815fd33372b0e84",label:"Rigatino Tabacco 1RP",value:"Rigatino Tabacco 1RP",Material:"3D",zoomIconColor:"White","hasDefaultConfiguration#UI_Backpanel Color":"Tiquaranta"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rigatino Tabacco 1RP",visible:!0,enabled:!0},{assetId:"badd7ed2-4517-4671-97ae-0bd1972c8c9d",name:"Rigatino Naturale 1RN",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-5c9f615203c9a3633c046c212799ff189bb7440c0c9f283a0e7b31fa989822ba",label:"Rigatino Naturale 1RN",value:"Rigatino Naturale 1RN",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rigatino Naturale 1RN",visible:!0,enabled:!0},{assetId:"3b57fadb-29bd-4ee6-a0a9-9ef0740877cd",name:"Pelle Pecari Tortora 1PE",tags:["Materials","Azzurra"],metadata:{Look:"Cement-Look",Color:"Grey ",image:"/api/files/hash/sha256-af3217a6caf186775d19af75d82291bd9e7475fc113edc8871d6f56a7ae09e20",label:"Pelle Pecari Tortora 1PE",value:"Pelle Pecari Tortora 1PE",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pelle Pecari Tortora 1PE",visible:!0,enabled:!0},{assetId:"9b233739-2418-4cf0-8bad-f7b710c642a5",name:"Rovere Dogato Naturale 1P3",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-532a3ffabcad2e00a7c5b6cee3e99d3c17f46a30b007fdb8accd074af7846c7c",label:"Rovere Dogato Naturale 1P3",value:"Rovere Dogato Naturale 1P3",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Dogato Naturale 1P3",visible:!0,enabled:!0},{assetId:"41819fcf-80f6-4ab2-ba6c-aced9fec5c25",name:"Rovere Dogato Grigio 1P1",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Grey",image:"/api/files/hash/sha256-15f0c9237e60738f6fd01b878aab3160a4c5ee0e76238585287225d4a65227a4",label:"Rovere Dogato Grigio 1P1",value:"Rovere Dogato Grigio 1P1",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Dogato Grigio 1P1",visible:!0,enabled:!0},{assetId:"66e8440e-e56f-4bac-b07e-8d6a0ab3cb5d",name:"Rovere Dogato Bianco 1P0",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"White",image:"/api/files/hash/sha256-6439c22937829a5f3d0c68279ebd869c217150bd7e0d46ad8e5633abdeb660ac",label:"Rovere Dogato Bianco 1P0",value:"Rovere Dogato Bianco 1P0",Material:"3D",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Dogato Bianco 1P0",visible:!0,enabled:!0},{assetId:"431b5b7c-84ff-401f-987f-d34cce2c96ea",name:"Noce Tavola Antico Scuro 1NE",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Black",image:"/api/files/hash/sha256-8891ef908e947f9c872a18719eea01c4ed497b4b987bbae5ddd9342770c6b2d6",label:"Noce Tavola Antico Scuro 1NE",value:"Noce Tavola Antico Scuro 1NE",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Noce Tavola Antico Scuro 1NE",visible:!0,enabled:!0},{assetId:"afdfd3ec-baa8-4e2f-906e-baefb1ea1ba4",name:"Noce Tavola Antico Chiaro 1ND",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-be651d1057315fd4ca65cdeb21a1fac011be6946617cff387bc2b8043b484834",label:"Noce Tavola Antico Chiaro 1ND",value:"Noce Tavola Antico Chiaro 1ND",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Noce Tavola Antico Chiaro 1ND",visible:!0,enabled:!0},{assetId:"16ad5433-ff29-4f2f-98d8-03ff9f945c1f",name:"Nodato spaccato Tabacco 1NB",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-c478093cf22958f575c41bf0550e28d83a71d2e15e2956ddbad477b4283130b4",label:"Nodato Spaccato Tabacco 1NB",value:"Nodato spaccato Tabacco 1NB",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Nodato spaccato Tabacco 1NB",visible:!0,enabled:!0},{assetId:"1996ec85-03b0-4cde-a4da-40e8941d5fc4",name:"Nodato spaccato Biondo 1NA",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-969234b1674622b98c4f519123138874a4075b0251fe0679e5639e584f25421e",label:"Nodato Spaccato Biondo 1NA",value:"Nodato spaccato Biondo 1NA",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Nodato spaccato Biondo 1NA",visible:!0,enabled:!0},{assetId:"15e07087-dcc0-4ed9-a71e-ed2d464da0c1",name:"Noce Rigato Grigio 1N3",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Grey, Brown",image:"/api/files/hash/sha256-5ad94c21a8a0d327bb6fcc0825f81d418a0136be2cd739cddf5a3c0298b51bf8",label:"Noce Rigato Grigio 1N3",value:"Noce Rigato Grigio 1N3",Material:"3D",zoomIconColor:"White",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Noce Rigato Grigio 1N3",visible:!0,enabled:!0},{assetId:"9a95b8eb-862a-4473-9e5c-53fd08461b8a",name:"Noce rigato Canaletto Naturale 1N2",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-fd792b351a4bb16919e29db2c1ce370a8a31498ba28e43988f409f5bf88f6593",label:"Noce Rigato Canaletto Naturale 1N2",value:"Noce rigato Canaletto Naturale 1N2",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Noce rigato Canaletto Naturale 1N2",visible:!0,enabled:!0},{assetId:"1c5f411f-9dfb-41e5-8f7a-a94f10a48df4",name:"Noce Rigato Chiaro 1N1",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Beige",image:"/api/files/hash/sha256-0c7a8ab49b47df2d9995a5ceeee0f065201b233e9e99eb0638a9d73d778d41d0",label:"Noce Rigato Chiaro 1N1",value:"Noce Rigato Chiaro 1N1",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Noce Rigato Chiaro 1N1",visible:!0,enabled:!0},{assetId:"94816844-7f4d-42ba-8147-ded18931607a",name:"Paulownia Seppia 1F2",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Beige",image:"/api/files/hash/sha256-33698e77978d2f09d373b6631d2074170229e5627ffe805135f93ae69d956193",label:"Paulownia Seppia 1F2",value:"Paulownia Seppia 1F2",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Paulownia Seppia 1F2",visible:!0,enabled:!0},{assetId:"70b7574a-d8ae-4772-8716-3d4b5593c92b",name:"Eucalipto Affumicato 1E2",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-7993725f579e4b423a2fdde370b5335b9f0b1bac5ed26fb89898e6d0866cd7b9",label:"Eucalipto Affumicato 1E2",value:"Eucalipto Affumicato 1E2",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Eucalipto Affumicato 1E2",visible:!0,enabled:!0},{assetId:"92781a43-67fa-414f-8d49-52dd402be93d",name:"Eucalipto Naturale 1E1",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-6ac83550373aa787ac7cfb7ebde482b3a99379f52bd61bbcf39a2797c4e5306d",label:"Eucalipto Naturale 1E1",value:"Eucalipto Naturale 1E1",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Eucalipto Naturale 1E1",visible:!0,enabled:!0},{assetId:"e5f0e001-5176-4d57-9c55-b56f959a7916",name:"Castagno Scuro 1C3",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Black",image:"/api/files/hash/sha256-b535e9693c4c42ef93d956c20b433e20a067ef3733f0180f593fd9bd23a65b3a",label:"Castagno Scuro 1C3",value:"Castagno Scuro 1C3",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Castagno Scuro 1C3",visible:!0,enabled:!0},{assetId:"d2c3c23f-26f9-4cbd-97f8-1b49172e4d83",name:"Castagno Malto 1C2",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-20e1b04e87bbc93d17c1ae374b12cf566d1a198c73c6f188884e5a71cd32942b",label:"Castagno Malto 1C2",value:"Castagno Malto 1C2",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Castagno Malto 1C2",visible:!0,enabled:!0},{assetId:"c768e374-44ca-481c-bd58-e5116d729053",name:"Castagno chiaro 1C1",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"White ",image:"/api/files/hash/sha256-d11b75498d9c094da836240b1ae0e4cf7a0c017765fdeb3769084ae513caef1e",label:"Castagno Chiaro 1C1",value:"Castagno chiaro 1C1",Material:"3D",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Castagno chiaro 1C1",visible:!0,enabled:!0},{assetId:"4353d884-2dc7-4847-803c-7c4407e0c1fc",name:"Pietra Piasentina Grigio Scuro 1AB",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey ",image:"/api/files/hash/sha256-547f3fcafe3e14734f8d6889b648a327f7e7bcbe6e1c1bfb29a725d44ddac891",label:"Pietra Piasentina Grigio Scuro 1AB",value:"Pietra Piasentina Grigio Scuro 1AB",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pietra Piasentina Grigio Scuro 1AB",visible:!0,enabled:!0},{assetId:"cf1716fc-e40f-47b4-a3c8-d173ce8ab009",name:"Pietra Piasentina Grigio Chiaro 1AA",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey ",image:"/api/files/hash/sha256-47eb0b6d3740e0c233c88e289807a400caf978947c19c0b9fe26f628a3d205f5",label:"Pietra Piasentina Grigio Chiaro 1AA",value:"Pietra Piasentina Grigio Chiaro 1AA",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pietra Piasentina Grigio Chiaro 1AA",visible:!0,enabled:!0},{assetId:"b42ad6e9-76bc-4edd-8656-890ea75ce4e5",name:"Cemento Ghiaccio 1A5",tags:["Materials","Azzurra"],metadata:{Look:"Cement-Look",Color:"White ",image:"/api/files/hash/sha256-78612ed164c818c3f07651a7bc384f5ecd978af58cb731aadd1a877e8cf4332d",label:"Cemento Ghiaccio 1A5",value:"Cemento Ghiaccio 1A5",Material:"3D",zoomIconColor:"Dark Grey",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cemento Ghiaccio 1A5",visible:!0,enabled:!0},{assetId:"24360a49-b7dc-4e91-8002-b716da2e9b2f",name:"Cemento Oltremare 1A4",tags:["Materials","Azzurra"],metadata:{Look:"Cement-Look",Color:"Black",image:"/api/files/hash/sha256-9f6100dcb59a10685fecd5657f471a6ab3477cf863ba4345145f8be68b7c2d93",label:"Cemento Oltremare 1A4",value:"Cemento Oltremare 1A4",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cemento Oltremare 1A4",visible:!0,enabled:!0},{assetId:"2278a549-5f5e-409f-ae14-be667ae5f85a",name:"Cemento Creta 1A3",tags:["Materials","Azzurra","krostest"],metadata:{Look:"Cement-Look",Color:"Grey, Brown",image:"/api/files/hash/sha256-b0b77cddb072eb3eefb723a0c8058d05d3c35cb34f398fc71e63ead582783567",label:"Cemento Creta 1A3",value:"Cemento Creta 1A3",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","6f3a860d-6b17-4648-966b-5f084fede54c"],type:"item",label:"Cemento Creta 1A3",visible:!0,enabled:!0},{assetId:"2a5bc07c-03fd-44b0-8d47-1f8bd3816086",name:"Cemento Tortora 1A2",tags:["Materials","Azzurra"],metadata:{Look:"Cement-Look",Color:"Grey, Beige, Brown",image:"/api/files/hash/sha256-841e7d936699edd6cd9d75eb770e7117595dd6f2fb7506b0d657bd13ea8d8800",label:"Cemento Tortora 1A2",value:"Cemento Tortora 1A2",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cemento Tortora 1A2",visible:!0,enabled:!0},{assetId:"9df3c540-0978-4c08-ba1a-7940aeb35663",name:"Cemento Cenere 1A1",tags:["Materials","Azzurra"],metadata:{Look:"Cement-Look",Color:"Grey, Beige",image:"/api/files/hash/sha256-10dac44e536ad3751df920413c0624acb2ebfc9e437f004ac91779a837fe9421",label:"Cemento Cenere 1A1",value:"Cemento Cenere 1A1",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cemento Cenere 1A1",visible:!0,enabled:!0},{assetId:"751af9b9-1c45-4b0b-88a3-1e0f2461fa88",name:"Colortech Grigio fume 10F",tags:["Materials","Azzurra"],metadata:{hex:"#5a5555",Color:"Grey",label:"Colortech Grigio fumè 10F",value:"Colortech Grigio fume 10F",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Colortech Grigio fume 10F",visible:!0,enabled:!0},{assetId:"346595b3-653a-4ed6-a00a-44b6696c0a0f",name:"Colortech Bianco 10B",tags:["Materials","Azzurra"],metadata:{hex:"#d7d9d6",Color:"White ",label:"Colortech Bianco 10B",value:"Colortech Bianco 10B",Material:"3D",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Colortech Bianco 10B",visible:!0,enabled:!0}],defaultValue:{assetId:""},global:{id:"84be1dcc-fe28-463f-853f-435f534477c7",type:"Global",name:"Global",metadata:[]},visible:!0,enabled:!0,hiddenValues:[],disabledValues:[],value:{assetId:"abb65419-cfa9-445a-9719-8a6f0aeb0eb5",type:"item"}},{id:"83e8511d-47ae-46ec-aa02-259da96e5b9a",type:"Asset",name:"UI_Basin Style",metadata:{Name:"Basin Style",Label:"Basin Style","":null},blacklist:[],assetType:"model",values:[{assetId:"3ad3d0c3-dc0d-4ab9-a568-74c66ab85bcb",name:"HPL: Cover",tags:["basstyle"],metadata:{label:"",value:"HPL: Cover",thumbnail:"/api/files/hash/sha256-863cf8be1b4575bb466e10694d2c167d9b3e5b939f4695c0d7dd97c7b48f6823",heightImage:"100px"},fileSize:95548,tagids:["788a9f06-da0c-444d-96ff-5c30ae89aac4"],type:"item",label:"HPL: Cover",visible:!0,enabled:!0},{assetId:"ece656f2-8b64-435f-87da-c1a717e6e248",name:"HPL: Quadra",tags:["basstyle"],metadata:{label:"",value:"HPL: Quadra",thumbnail:"/api/files/hash/sha256-26529077184831a1fe376de47bfbc57bb80757456ad2b343e7ea44e552199a8b",heightImage:"100px"},fileSize:95548,tagids:["788a9f06-da0c-444d-96ff-5c30ae89aac4"],type:"item",label:"HPL: Quadra",visible:!0,enabled:!0},{assetId:"9a74b3e2-c757-4d60-8dbc-e05da3eaf372",name:"HPL: Prisma",tags:["basstyle"],metadata:{label:"",value:"HPL: Prisma",thumbnail:"/api/files/hash/sha256-b5fc1e6bc39d89270f8f350f30f8ad98d8e79df53130b32e70f98a46a2bd0001",heightImage:"100px"},fileSize:95548,tagids:["788a9f06-da0c-444d-96ff-5c30ae89aac4"],type:"item",label:"HPL: Prisma",visible:!0,enabled:!0},{assetId:"137e5e19-ce6e-453a-8bb0-1e3769414047",name:"HPL: Strip",tags:["basstyle"],metadata:{label:"",value:"HPL: Strip",thumbnail:"/api/files/hash/sha256-f612af6ae3e7a9d341c124f67d50c6a1dc5dea760b1afb5dfd226224ece2e7ab",heightImage:"100px",hasDefaultConfiguration:""},fileSize:95548,tagids:["788a9f06-da0c-444d-96ff-5c30ae89aac4"],type:"item",label:"HPL: Strip",visible:!0,enabled:!0}],defaultValue:{assetId:""},global:{id:"83e8511d-47ae-46ec-aa02-259da96e5b9a",type:"Global",name:"Global",metadata:[]},visible:!0,enabled:!0,hiddenValues:["137e5e19-ce6e-453a-8bb0-1e3769414047","3ad3d0c3-dc0d-4ab9-a568-74c66ab85bcb","ece656f2-8b64-435f-87da-c1a717e6e248","9a74b3e2-c757-4d60-8dbc-e05da3eaf372"],disabledValues:[],value:{assetId:"137e5e19-ce6e-453a-8bb0-1e3769414047",type:"item"}},{id:"1afbdec3-9797-4f0a-a597-26661605a1ca",type:"Asset",name:"UI_Lateral Panel",metadata:{Name:"Lateral Panel",Label:"Lateral Panel",thumbnail:"https://preview.threekit.com/api/images/texture/sha256-68a0d669261b4ec1cd5ce9b6faa44e97118a2f1c18ceac2a04c0d9e3d637547b?power2=1024",hasRenderImagePreview:"true"},blacklist:[],assetType:"model",values:[{assetId:"d7d451da-ef2a-4b18-8968-dc334e9871e1",name:"Verde Salvia 42 ST",tags:["Materials","Azzurra"],metadata:{hex:"#7f8e7c",soft:"Verde Salvia 42 MT",Color:"Green",label:"Verde Salvia 42 ST",value:"Verde Salvia 42 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Salvia 42 ST",visible:!0,enabled:!0},{assetId:"20328789-8dd1-4ef8-9dae-b4f0620629b2",name:"Verde Polvere 34 ST",tags:["Materials","Azzurra"],metadata:{hex:"#a3b0ab",soft:"Verde Polvere 34 MT",Color:"Green",label:"Verde Polvere 34 ST",value:"Verde Polvere 34 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Polvere 34 ST",visible:!0,enabled:!0},{assetId:"7c542842-7cb0-496a-a3d7-3c74be3d64b6",name:"Verde Ghiaia 31 ST",tags:["Materials","Azzurra"],metadata:{hex:"#c0cac6",soft:"Verde Ghiaia 31 MT",Color:"Green",label:"Verde Ghiaia 31 ST",value:"Verde Ghiaia 31 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Ghiaia 31 ST",visible:!0,enabled:!0},{assetId:"2391ec54-0d5a-4c8b-97ae-ac7899e3178c",name:"Verde Comodoro FG ST",tags:["Materials","Azzurra"],metadata:{hex:"#48544d",soft:"Verde Comodoro FG MT",Color:"Green",label:"Verde Comodoro FG ST",value:"Verde Comodoro FG ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Comodoro FG ST",visible:!0,enabled:!0},{assetId:"584577fc-7555-49af-82de-8628474b7adb",name:"Tortora BE ST",tags:["Materials","Azzurra"],metadata:{hex:"#b2b1a9",soft:"Tortora BE MT",Color:"Grey, Brown",label:"Tortora BE ST",value:"Tortora BE ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Tortora BE ST",visible:!0,enabled:!0},{assetId:"6ac76228-e6e3-4051-bd95-21049c138f31",name:"Torba DS ST",tags:["Materials","Azzurra"],metadata:{hex:"#53514c",soft:"Torba DS MT",Color:"Brown",label:"Torba DS ST",value:"Torba DS ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Torba DS ST",visible:!0,enabled:!0},{assetId:"5bb788b0-63a3-45bb-b798-6066e0a50022",name:"Titanio 93 ST",tags:["Materials","Azzurra"],metadata:{hex:"#aaa59d",soft:"Titanio 93 MT",Color:"Brown, Grey",label:"Titanio 93 ST",value:"Titanio 93 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Titanio 93 ST",visible:!0,enabled:!0},{assetId:"064c7fb6-f23a-479d-bdf0-b13f67d435e9",name:"Terra DB ST",tags:["Materials","Azzurra"],metadata:{hex:"#9a9182",soft:"Terra DB MT",Color:"Brown",label:"Terra DB ST",value:"Terra DB ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Terra DB ST",visible:!0,enabled:!0},{assetId:"0f399e8d-18ce-477e-a4c7-414621b22a48",name:"Rosso Rubino 19 ST",tags:["Materials","Azzurra"],metadata:{hex:"#6c323c",soft:"Rosso Rubino 19 MT",Color:"Red",label:"Rosso Rubino 19 ST",value:"Rosso Rubino 19 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Rubino 19 ST",visible:!0,enabled:!0},{assetId:"114b2017-d63d-44fa-8378-2b21b5f5b580",name:"Rosso Jaipur FH ST",tags:["Materials","Azzurra"],metadata:{hex:"#3f2626",soft:"Rosso Jaipur FH MT",Color:"Red, Purple",label:"Rosso Jaipur FH ST",value:"Rosso Jaipur FH ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Jaipur FH ST",visible:!0,enabled:!0},{assetId:"e40f0d60-f94d-47e1-a62f-b9e743630b62",name:"Rosso Fuoco 21 ST",tags:["Materials","Azzurra"],metadata:{hex:"#802a2e",soft:"Rosso Fuoco 21 MT",Color:"Red",label:"Rosso Fuoco 21 ST",value:"Rosso Fuoco 21 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Fuoco 21 ST",visible:!0,enabled:!0},{assetId:"cb0e5c75-9af8-41ac-8ed0-c3d20336d0f3",name:"Rosa Retro 46 ST",tags:["Materials","Azzurra"],metadata:{hex:"#bfaea2",soft:"Rosa Retro 46 MT",Color:"Pink, Beige",label:"Rosa Retro 46 ST",value:"Rosa Retro 46 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosa Retro 46 ST",visible:!0,enabled:!0},{assetId:"e7deaffc-c2e0-4778-9323-e8d845676a1b",name:"Rosa Etoile 45 ST",tags:["Materials","Azzurra"],metadata:{hex:"#d1c2b7",soft:"Rosa Etoile 45 MT",Color:"Pink",label:"Rosa Etoile 45 ST",value:"Rosa Etoile 45 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosa Etoile 45 ST",visible:!0,enabled:!0},{assetId:"1cd18d40-6079-4366-a17d-4e6b73c722ec",name:"Roccia CE ST",tags:["Materials","Azzurra"],metadata:{hex:"#8c8680",soft:"Roccia CE MT",Color:"Brown",label:"Roccia CE ST",value:"Roccia CE ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Roccia CE ST",visible:!0,enabled:!0},{assetId:"614fdcd2-8af2-466c-a61a-270cfdb32215",name:"Platino DF ST",tags:["Materials","Azzurra"],metadata:{hex:"#d0d1cd",soft:"Platino DF MT",Color:"Beige",label:"Platino DF ST",value:"Platino DF ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Platino DF ST",visible:!0,enabled:!0},{assetId:"eb18fc87-5431-4b54-9b2d-3d593e7bf284",name:"Nero 03 ST",tags:["Materials","Azzurra"],metadata:{hex:"#1c1c1d",soft:"Nero 03 MT",Color:"Black",label:"Nero 03 ST",value:"Nero 03 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Nero 03 ST",visible:!0,enabled:!0},{assetId:"6c6c06e5-68ec-4a1f-a0cf-736ba5466ade",name:"Nebbia 91 ST",tags:["Materials","Azzurra"],metadata:{hex:"#c9c7c0",soft:"Nebbia 91 MT",Color:"Beige, Brown",label:"Nebbia 91 ST",value:"Nebbia 91 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Nebbia 91 ST",visible:!0,enabled:!0},{assetId:"e38fce2b-87d7-460e-9ad3-6fb5af6436aa",name:"Mattone 10 ST",tags:["Materials","Azzurra"],metadata:{hex:"#b07252",soft:"Mattone 10 MT",Color:"Orange",label:"Mattone 10 ST",value:"Mattone 10 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Mattone 10 ST",visible:!0,enabled:!0},{assetId:"3500cff3-20ef-40a4-b228-91a54d981e5b",name:"Marrone Havana 79 ST",tags:["Materials","Azzurra"],metadata:{hex:"#322f30",soft:"Marrone Havana 79 MT",Color:"Brown",label:"Marrone Havana 79 ST",value:"Marrone Havana 79 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Marrone Havana 79 ST",visible:!0,enabled:!0},{assetId:"6b1a0234-a90d-4335-8aa4-f85efb176ea6",name:"Juta DP ST",tags:["Materials","Azzurra"],metadata:{hex:"#c2c0b3",soft:"Juta DP MT",Color:"Beige",label:"Juta DP ST",value:"Juta DP ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Juta DP ST",visible:!0,enabled:!0},{assetId:"e12a4f37-7ad9-452e-94f2-2d32a275c868",name:"Grigio Talpa B5 ST",tags:["Materials","Azzurra"],metadata:{hex:"#9d9d93",soft:"Grigio Talpa B5 MT",Color:"Grey, Brown",label:"Grigio Talpa B5 ST",value:"Grigio Talpa B5 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Talpa B5 ST",visible:!0,enabled:!0},{assetId:"bdd616ff-6727-4baf-bb67-a82b5d557348",name:"Grigio Pioggia 80 ST",tags:["Materials","Azzurra"],metadata:{hex:"#949696",soft:"Grigio Pioggia 80 MT",Color:"Grey",label:"Grigio Pioggia 80 ST",value:"Grigio Pioggia 80 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Pioggia 80 ST",visible:!0,enabled:!0},{assetId:"dcd99716-aa23-4c4f-acc4-7d413445727e",name:"Grigio Perla 33 ST",tags:["Materials","Azzurra"],metadata:{hex:"#b0aead",soft:"Grigio Perla 33 MT",Color:"Grey",label:"Grigio Perla 33 ST",value:"Grigio Perla 33 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Perla 33 ST",visible:!0,enabled:!0},{assetId:"4280caea-a3e4-49b6-8376-d72610ad78cd",name:"Grigio Luce 07 ST",tags:["Materials","Azzurra"],metadata:{hex:"#bfbfbb",soft:"Grigio Luce 07 MT",Color:"Grey",label:"Grigio Luce 07 ST",value:"Grigio Luce 07 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Luce 07 ST",visible:!0,enabled:!0},{assetId:"284bcab2-1015-4766-85ce-9f3c3831bc76",name:"Grigio Londra FD ST",tags:["Materials","Azzurra"],metadata:{hex:"#75736e",soft:"Grigio Londra FD MT",Color:"Grey",label:"Grigio Londra FD ST",value:"Grigio Londra FD ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Londra FD ST",visible:!0,enabled:!0},{assetId:"2abe38f7-4a90-4bb8-a0a5-91573ac79d16",name:"Grigio Lavagna A9 ST",tags:["Materials","Azzurra"],metadata:{hex:"#767a7e",soft:"Grigio Lavagna A9 MT",Color:"Grey",label:"Grigio Lavagna A9 ST",value:"Grigio Lavagna A9 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Lavagna A9 ST",visible:!0,enabled:!0},{assetId:"a0d2faff-5e77-4f96-a79d-5361901d1f22",name:"Grigio Grafite 02 ST",tags:["Materials","Azzurra"],metadata:{hex:"#555558",soft:"Grigio Grafite 02 MT",Color:"Grey",label:"Grigio Grafite 02 ST",value:"Grigio Grafite 02 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Grafite 02 ST",visible:!0,enabled:!0},{assetId:"9a08508b-fe52-41f4-9db8-416092ab27b9",name:"Grigio Efeso FB ST",tags:["Materials","Azzurra"],metadata:{hex:"#bcbdbd",soft:"Grigio Efeso FB MT",Color:"Grey",label:"Grigio Efeso FB ST",value:"Grigio Efeso FB ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Efeso FB ST",visible:!0,enabled:!0},{assetId:"eeb1c4e7-53ea-4b59-9b7b-1cf985202332",name:"Grigio Chiaro A8 ST",tags:["Materials","Azzurra"],metadata:{hex:"#c7cbca",soft:"Grigio Chiaro A8 MT",Color:"Grey",label:"Grigio Chiaro A8 ST",value:"Grigio Chiaro A8 ST",Material:"Soft-Touch",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Chiaro A8 ST",visible:!0,enabled:!0},{assetId:"f4631dc8-9015-4cb5-af99-1026e4425dc6",name:"Grigio Bromo FE ST",tags:["Materials","Azzurra"],metadata:{hex:"#545a60",soft:"Grigio Bromo FE MT",Color:"Grey, Blue",label:"Grigio Bromo FE ST",value:"Grigio Bromo FE ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Bromo FE ST",visible:!0,enabled:!0},{assetId:"c30709b6-9277-468a-b35e-38d198d1526a",name:"Giallo Curry 08 ST",tags:["Materials","Azzurra"],metadata:{hex:"#d2c38b",soft:"Giallo Curry 08 MT",Color:"Yellow",label:"Giallo Curry 08 ST",value:"Giallo Curry 08 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Giallo Curry 08 ST",visible:!0,enabled:!0},{assetId:"a53927c5-9133-424c-97c4-ecc77c8262a5",name:"Cenere 92 ST",tags:["Materials","Azzurra"],metadata:{hex:"#b2ada4",soft:"Cenere 92 MT",Color:"Brown",label:"Cenere 92 ST",value:"Cenere 92 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cenere 92 ST",visible:!0,enabled:!0},{assetId:"a2fa7bf5-2344-4ff3-a0da-0552d4a571de",name:"Castoro Ottawa FC ST",tags:["Materials","Azzurra"],metadata:{hex:"#857f74",soft:"Castoro Ottawa FC MT",Color:"Brown",label:"Castoro Ottawa FC ST",value:"Castoro Ottawa FC ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Castoro Ottawa FC ST",visible:!0,enabled:!0},{assetId:"186811d0-8add-4b2e-8423-6ca43e9bc141",name:"Carta da Zucchero 47 ST",tags:["Materials","Azzurra"],metadata:{hex:"#a7b3bb",soft:"Carta da Zucchero 47 MT",Color:"Blue, Grey",label:"Carta da Zucchero 47 ST",value:"Carta da Zucchero 47 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Carta da Zucchero 47 ST",visible:!0,enabled:!0},{assetId:"3f2a6d98-a58c-4b64-8922-32e0f685eaf5",name:"Carbone 43 ST",tags:["Materials","Azzurra"],metadata:{hex:"#4f5050",soft:"Carbone 43 MT",Color:"Grey",label:"Carbone 43 ST",value:"Carbone 43 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Carbone 43 ST",visible:!0,enabled:!0},{assetId:"c7ce37d8-e428-4822-a513-ff56e2a80c42",name:"Canyon 90 ST",tags:["Materials","Azzurra"],metadata:{hex:"#cac5b2",soft:"Canyon 90 MT",Color:"Beige",label:"Canyon 90 ST",value:"Canyon 90 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Canyon 90 ST",visible:!0,enabled:!0},{assetId:"8a27f0cf-f885-4621-9e2c-a34d1fd2acfd",name:"Canapa 94 ST",tags:["Materials","Azzurra"],metadata:{hex:"#c4c3bd",soft:"Canapa 94 MT",Color:"Grey, Beige",label:"Canapa 94 ST",value:"Canapa 94 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Canapa 94 ST",visible:!0,enabled:!0},{assetId:"bb290770-56fc-49e8-8548-20533bd8962b",name:"Cacao Orinoco FF ST",tags:["Materials","Azzurra"],metadata:{hex:"#3d3a3b",soft:"Cacao Orinoco FF MT",Color:"Brown",label:"Cacao Orinoco FF ST",value:"Cacao Orinoco FF ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cacao Orinoco FF ST",visible:!0,enabled:!0},{assetId:"ebe9a649-aaa9-41fe-818b-b4e47edd99e6",name:"Cacao 05 ST",tags:["Materials","Azzurra"],metadata:{hex:"#3e352d",soft:"Cacao 05 MT",Color:"Brown",label:"Cacao 05 ST",value:"Cacao 05 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cacao 05 ST",visible:!0,enabled:!0},{assetId:"8607017f-93d1-49dd-a03d-c1f139691bb5",name:"Blu Reale 48 ST",tags:["Materials","Azzurra"],metadata:{hex:"#2e303d",soft:"Blu Reale 48 MT",Color:"Blue",label:"Blu Reale 48 ST",value:"Blu Reale 48 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Reale 48 ST",visible:!0,enabled:!0},{assetId:"fd18c7e1-67e2-415f-91d2-8f8507a55b5d",name:"Blu Pavone A6 ST",tags:["Materials","Azzurra"],metadata:{hex:"#25656e",soft:"Blu Pavone A6 MT",Color:"Blue",label:"Blu Pavone A6 ST",value:"Blu Pavone A6 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Pavone A6 ST",visible:!0,enabled:!0},{assetId:"fdac3243-20d0-49c6-bc6c-17194c9e7a0d",name:"Blu Oltremare BG ST",tags:["Materials","Azzurra"],metadata:{hex:"#3b4247",soft:"Blu Oltremare BG ST",Color:"Blue",label:"Blu Oltremare BG ST",value:"Blu Oltremare BG ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Oltremare BG ST",visible:!0,enabled:!0},{assetId:"a173d6d7-c2d4-4355-914f-8cc32c3fc9b3",name:"Blu Laguna A7 ST",tags:["Materials","Azzurra"],metadata:{hex:"#184148",soft:"Blu Laguna A7 MT",Color:"Blue",label:"Blu Laguna A7 ST",value:"Blu Laguna A7 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Laguna A7 ST",visible:!0,enabled:!0},{assetId:"a54236e6-651e-4404-96d7-0fe4ecbd2d88",name:"Blu Avio 41 ST",tags:["Materials","Azzurra"],metadata:{hex:"#788892",soft:"Blu Avio 41 MT",Color:"Blue",label:"Blu Avio 41 ST",value:"Blu Avio 41 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Avio 41 ST",visible:!0,enabled:!0},{assetId:"ca8d50f0-d80e-43b9-ad9c-066f4a2f33ae",name:"Blu Artico 37 ST",tags:["Materials","Azzurra"],metadata:{hex:"#4b5f6f",soft:"Blu Artico 37 MT",Color:"Blue",label:"Blu Artico 37 ST",value:"Blu Artico 37 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Artico 37 ST",visible:!0,enabled:!0},{assetId:"9dbddb33-0aab-4b70-b574-a323fe08af47",name:"Bianco Male FA ST",tags:["Materials","Azzurra"],metadata:{hex:"#dadad4",soft:"Bianco Male FA MT",Color:"White, Beige",label:"Bianco Male FA ST",value:"Bianco Male FA ST",Material:"Soft-Touch",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco Male FA ST",visible:!0,enabled:!0},{assetId:"abb65419-cfa9-445a-9719-8a6f0aeb0eb5",name:"Bianco Calce DA ST",tags:["Materials","Azzurra"],metadata:{hex:"#e4e2df",soft:"Bianco Calce DA MT",Color:"White, Beige",label:"Bianco Calce DA ST",value:"Bianco Calce DA ST",Material:"Soft-Touch",zoomIconColor:"Dark Grey",hasDefaultConfuguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco Calce DA ST",visible:!0,enabled:!0},{assetId:"f2d6875d-d9bf-42da-a6e3-a8d1d3a1a19f",name:"Bianco 0B ST",tags:["Materials","Azzurra"],metadata:{hex:"#fffffe",soft:"Bianco 0B MT",Color:"White",label:"Bianco 0B ST",value:"Bianco 0B ST",Material:"Soft-Touch",zoomIconColor:"Dark Grey",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco 0B ST",visible:!0,enabled:!0},{assetId:"8ff6d955-9668-434e-ae8e-3d092e4145d4",name:"Argilla DR ST",tags:["Materials","Azzurra"],metadata:{hex:"#817d74",soft:"Argilla DR MT",Color:"Grey, Brown",label:"Argilla DR ST",value:"Argilla DR ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Argilla DR ST",visible:!0,enabled:!0},{assetId:"1be06217-9f77-40b7-ada8-2cefeec351fb",name:"Ardesia DD ST",tags:["Materials","Azzurra"],metadata:{hex:"#5f5d5a",soft:"Ardesia DD MT",Color:"Grey",label:"Ardesia DD ST",value:"Ardesia DD ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Ardesia DD ST",visible:!0,enabled:!0},{assetId:"0963a65f-b841-4ca2-9407-acdac8d16fbf",name:"Arancio Zucca 09 ST",tags:["Materials","Azzurra"],metadata:{hex:"#c69b6b",soft:"Arancio Zucca 09 MT",Color:"Orange",label:"Arancio Zucca 09 ST",value:"Arancio Zucca 09 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Arancio Zucca 09 ST",visible:!0,enabled:!0},{assetId:"911ab5b7-fafe-4292-b7db-7c12ae0b0866",name:"Aragosta 77 ST",tags:["Materials","Azzurra"],metadata:{hex:"#ba5b3a",soft:"Aragosta 77 MT",Color:"Orange",label:"Aragosta 77 ST",value:"Aragosta 77 ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Aragosta 77 ST",visible:!0,enabled:!0},{assetId:"82f43401-b911-40e2-9781-fc2e03c3f556",name:"Agata BD ST",tags:["Materials","Azzurra"],metadata:{hex:"#caccc9",soft:"Agata BD MT",Color:"Grey, Beige",label:"Agata BD ST",value:"Agata BD ST",Material:"Soft-Touch",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Agata BD ST",visible:!0,enabled:!0},{assetId:"4a1d4776-4887-4aba-b631-cc61df8a8766",name:"Verde Salvia 42 GL",tags:["Materials","Azzurra"],metadata:{hex:"#7f8e7c",Color:"Green",label:"Verde Salvia 42 GL",value:"Verde Salvia 42 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Salvia 42 GL",visible:!0,enabled:!0},{assetId:"c08ea7b5-781a-489f-9e17-cd919c54abd4",name:"Verde Polvere 34 GL",tags:["Materials","Azzurra"],metadata:{hex:"#a3b0ab",Color:"Green",label:"Verde Polvere 34 GL",value:"Verde Polvere 34 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Polvere 34 GL",visible:!0,enabled:!0},{assetId:"2b8de8d3-8d40-4e7b-8d10-24300b963ec2",name:"Verde Ghiaia 31 GL",tags:["Materials","Azzurra"],metadata:{hex:"#c0cac6",Color:"Green",label:"Verde Ghiaia 31 GL",value:"Verde Ghiaia 31 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Ghiaia 31 GL",visible:!0,enabled:!0},{assetId:"1784c7e1-e87c-4b18-a3a5-7735fa8a1cd8",name:"Verde Comodoro FG GL",tags:["Materials","Azzurra"],metadata:{hex:"#48544d",Color:"Green",label:"Verde Comodoro FG GL",value:"Verde Comodoro FG GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Comodoro FG GL",visible:!0,enabled:!0},{assetId:"4eaa6b9c-b3f3-4494-8129-65bb579f5d4b",name:"Tortora BE GL",tags:["Materials","Azzurra"],metadata:{hex:"#b2b1a9",Color:"Grey, Brown",label:"Tortora BE GL",value:"Tortora BE GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Tortora BE GL",visible:!0,enabled:!0},{assetId:"30f594ab-e223-4fca-abaa-b31a3e0d7b55",name:"Torba DS GL",tags:["Materials","Azzurra"],metadata:{hex:"#53514c",Color:"Brown",label:"Torba DS GL",value:"Torba DS GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Torba DS GL",visible:!0,enabled:!0},{assetId:"3f204516-2cf2-4da8-ab5c-bbe02798bd17",name:"Titanio 93 GL",tags:["Materials","Azzurra"],metadata:{hex:"#aaa59d",Color:"Brown, Grey",label:"Titanio 93 GL",value:"Titanio 93 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Titanio 93 GL",visible:!0,enabled:!0},{assetId:"a09ad2c0-e273-4f96-9535-8ed3aaee16c6",name:"Terra DB GL",tags:["Materials","Azzurra"],metadata:{hex:"#9a9182",Color:"Brown",label:"Terra DB GL",value:"Terra DB GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Terra DB GL",visible:!0,enabled:!0},{assetId:"cb5b5f13-a43c-46df-8870-4b89cd52c83b",name:"Rosso Rubino 19 GL",tags:["Materials","Azzurra"],metadata:{hex:"#6c323c",Color:"Red",label:"Rosso Rubino 19 GL",value:"Rosso Rubino 19 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Rubino 19 GL",visible:!0,enabled:!0},{assetId:"eb8e8b75-354e-4247-9d92-701eef3aa636",name:"Rosso Jaipur FH GL",tags:["Materials","Azzurra"],metadata:{hex:"#3f2626",Color:"Red, Purple",label:"Rosso Jaipur FH GL",value:"Rosso Jaipur FH GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Jaipur FH GL",visible:!0,enabled:!0},{assetId:"e41e9f41-0470-4ff1-84cd-dac4fb890a05",name:"Rosso Fuoco 21 GL",tags:["Materials","Azzurra"],metadata:{hex:"#802a2e",Color:"Red",label:"Rosso Fuoco 21 GL",value:"Rosso Fuoco 21 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Fuoco 21 GL",visible:!0,enabled:!0},{assetId:"bf6cde7e-082c-4a70-8578-45769d5ee7f9",name:"Rosa Retro 46 GL",tags:["Materials","Azzurra"],metadata:{hex:"#bfaea2",Color:"Pink, Beige",label:"Rosa Retro 46 GL",value:"Rosa Retro 46 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosa Retro 46 GL",visible:!0,enabled:!0},{assetId:"fd708b90-7b8a-4d15-aa22-f2beade948a5",name:"Rosa Etoile 45 GL",tags:["Materials","Azzurra"],metadata:{hex:"#d1c2b7",Color:"Pink",label:"Rosa Etoile 45 GL",value:"Rosa Etoile 45 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosa Etoile 45 GL",visible:!0,enabled:!0},{assetId:"9b4afa6b-d041-4c10-b311-66dba0db9945",name:"Roccia CE GL",tags:["Materials","Azzurra"],metadata:{hex:"#8c8680",Color:"Brown",label:"Roccia CE GL",value:"Roccia CE GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Roccia CE GL",visible:!0,enabled:!0},{assetId:"d226b192-5f71-4bf5-b060-379c97139d36",name:"Platino DF GL",tags:["Materials","Azzurra"],metadata:{hex:"#d0d1cd",Color:"Beige",label:"Platino DF GL",value:"Platino DF GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Platino DF GL",visible:!0,enabled:!0},{assetId:"dd26676a-6efe-417f-95ed-e5b095342a4a",name:"Nero 03 GL",tags:["Materials","Azzurra"],metadata:{hex:"#1c1c1d",Color:"Black",label:"Nero 03 GL",value:"Nero 03 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Nero 03 GL",visible:!0,enabled:!0},{assetId:"6cca15f4-50d5-49ac-927b-1f3746390591",name:"Nebbia 91 GL",tags:["Materials","Azzurra"],metadata:{hex:"#c9c7c0",Color:"Beige, Brown",label:"Nebbia 91 GL",value:"Nebbia 91 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Nebbia 91 GL",visible:!0,enabled:!0},{assetId:"d7df19f1-c154-48a3-a73b-45672d80ddb1",name:"Mattone 10 GL",tags:["Materials","Azzurra"],metadata:{hex:"#b07252",Color:"Orange",label:"Mattone 10 GL",value:"Mattone 10 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Mattone 10 GL",visible:!0,enabled:!0},{assetId:"37cab846-db46-4c97-8ef2-03d40c844440",name:"Marrone Havana 79 GL",tags:["Materials","Azzurra"],metadata:{hex:"#322f30",Color:"Brown",label:"Marrone Havana 79 GL",value:"Marrone Havana 79 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Marrone Havana 79 GL",visible:!0,enabled:!0},{assetId:"d337d7d8-91b3-4459-b2ab-093e89701bce",name:"Juta DP GL",tags:["Materials","Azzurra"],metadata:{hex:"#c2c0b3",Color:"Beige",label:"Juta DP GL",value:"Juta DP GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Juta DP GL",visible:!0,enabled:!0},{assetId:"7e4dc26e-2918-467f-a596-f9c3c654d5a6",name:"Grigio Talpa B5 GL",tags:["Materials","Azzurra"],metadata:{hex:"#9d9d93",Color:"Grey, Brown",label:"Grigio Talpa B5 GL",value:"Grigio Talpa B5 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Talpa B5 GL",visible:!0,enabled:!0},{assetId:"db1f40f4-1bd9-4dbb-ac25-5572c81787b4",name:"Grigio Pioggia 80 GL",tags:["Materials","Azzurra"],metadata:{hex:"#949696",Color:"Grey",label:"Grigio Pioggia 80 GL",value:"Grigio Pioggia 80 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Pioggia 80 GL",visible:!0,enabled:!0},{assetId:"6d670d1b-0f81-4940-a347-3ae72db916ac",name:"Grigio Perla 33 GL",tags:["Materials","Azzurra"],metadata:{hex:"#b0aead",Color:"Grey",label:"Grigio Perla 33 GL",value:"Grigio Perla 33 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Perla 33 GL",visible:!0,enabled:!0},{assetId:"ef2a5e0c-75e3-4358-aa26-9f0e48f1eea2",name:"Grigio Luce 07 GL",tags:["Materials","Azzurra"],metadata:{hex:"#bfbfbb",Color:"Grey",label:"Grigio Luce 07 GL",value:"Grigio Luce 07 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Luce 07 GL",visible:!0,enabled:!0},{assetId:"1a8366a9-1c17-4c91-889b-ee43244c9354",name:"Grigio Londra FD GL",tags:["Materials","Azzurra"],metadata:{hex:"#75736e",Color:"Grey",label:"Grigio Londra FD GL",value:"Grigio Londra FD GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Londra FD GL",visible:!0,enabled:!0},{assetId:"f00c4b2c-7c2d-4201-b62c-2848aa5e7834",name:"Grigio Lavagna A9 GL",tags:["Materials","Azzurra"],metadata:{hex:"#767a7e",Color:"Grey",label:"Grigio Lavagna A9 GL",value:"Grigio Lavagna A9 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Lavagna A9 GL",visible:!0,enabled:!0},{assetId:"2b0eaec0-9844-4b43-b266-f593f8231cf9",name:"Grigio Grafite 02 GL",tags:["Materials","Azzurra"],metadata:{hex:"#555558",Color:"Grey",label:"Grigio Grafite 02 GL",value:"Grigio Grafite 02 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Grafite 02 GL",visible:!0,enabled:!0},{assetId:"9d606e23-4a6e-412e-952a-3aff87c86c12",name:"Grigio Efeso FB GL",tags:["Materials","Azzurra"],metadata:{hex:"#bcbdbd",Color:"Grey",label:"Grigio Efeso FB GL",value:"Grigio Efeso FB GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Efeso FB GL",visible:!0,enabled:!0},{assetId:"c078d55f-3250-4a49-9c4b-f23d5a022ffa",name:"Grigio Chiaro A8 GL",tags:["Materials","Azzurra"],metadata:{hex:"#c7cbca",Color:"Grey",label:"Grigio Chiaro A8 GL",value:"Grigio Chiaro A8 GL",Material:"Lacquered GL",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Chiaro A8 GL",visible:!0,enabled:!0},{assetId:"2d0b0443-ea3b-4ecb-932f-fbd88568a940",name:"Grigio Bromo FE GL",tags:["Materials","Azzurra"],metadata:{hex:"#545a60",Color:"Grey, Blue",label:"Grigio Bromo FE GL",value:"Grigio Bromo FE GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Bromo FE GL",visible:!0,enabled:!0},{assetId:"a2cdc305-3a66-4360-92d5-617b2294e2ac",name:"Giallo Curry 08 GL",tags:["Materials","Azzurra"],metadata:{hex:"#d2c38b",Color:"Yellow",label:"Giallo Curry 08 GL",value:"Giallo Curry 08 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Giallo Curry 08 GL",visible:!0,enabled:!0},{assetId:"778c34d7-25ff-4e33-a9cd-de7e5429cccb",name:"Cenere 92 GL",tags:["Materials","Azzurra"],metadata:{hex:"#b2ada4",Color:"Brown",label:"Cenere 92 GL",value:"Cenere 92 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cenere 92 GL",visible:!0,enabled:!0},{assetId:"e31c7006-bb41-4535-ac29-207bf1b82151",name:"Castoro Ottawa FC GL",tags:["Materials","Azzurra"],metadata:{hex:"#857f74",Color:"Brown",label:"Castoro Ottawa FC GL",value:"Castoro Ottawa FC GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Castoro Ottawa FC GL",visible:!0,enabled:!0},{assetId:"bb90d982-9375-4eb8-976e-70b4edb2a234",name:"Carta da Zucchero 47 GL",tags:["Materials","Azzurra"],metadata:{hex:"#a7b3bb",Color:"Blue, Grey",label:"Carta da Zucchero 47 GL",value:"Carta da Zucchero 47 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Carta da Zucchero 47 GL",visible:!0,enabled:!0},{assetId:"03f11c8a-df5c-4533-87ff-460dfa86099f",name:"Carbone 43 GL",tags:["Materials","Azzurra"],metadata:{hex:"#4f5050",Color:"Grey",label:"Carbone 43 GL",value:"Carbone 43 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Carbone 43 GL",visible:!0,enabled:!0},{assetId:"6bff8002-b9b3-4ba9-b538-41c72f13e22b",name:"Canyon 90 GL",tags:["Materials","Azzurra"],metadata:{hex:"#cac5b2",Color:"Beige",label:"Canyon 90 GL",value:"Canyon 90 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Canyon 90 GL",visible:!0,enabled:!0},{assetId:"70e2b6a3-a2bd-41dc-8a62-008faccb5ca3",name:"Canapa 94 GL",tags:["Materials","Azzurra"],metadata:{hex:"#c4c3bd",Color:"Grey, Beige",label:"Canapa 94 GL",value:"Canapa 94 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Canapa 94 GL",visible:!0,enabled:!0},{assetId:"64092ba9-9a76-4abb-b5ec-7a00fb012a87",name:"Cacao Orinoco FF GL",tags:["Materials","Azzurra"],metadata:{hex:"#3d3a3b",Color:"Brown",label:"Cacao Orinoco FF GL",value:"Cacao Orinoco FF GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cacao Orinoco FF GL",visible:!0,enabled:!0},{assetId:"cd3b2b48-adfc-42e4-8fdd-6667ad635ded",name:"Cacao 05 GL",tags:["Materials","Azzurra"],metadata:{hex:"#3e352d",Color:"Brown",label:"Cacao 05 GL",value:"Cacao 05 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cacao 05 GL",visible:!0,enabled:!0},{assetId:"e9212dd4-f451-4a7a-8714-7f80d2fabbbb",name:"Blu Reale 48 GL",tags:["Materials","Azzurra"],metadata:{hex:"#2e303d",Color:"Blue",label:"Blu Reale 48 GL",value:"Blu Reale 48 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Reale 48 GL",visible:!0,enabled:!0},{assetId:"bcd79906-577d-4321-b318-f56455babb9b",name:"Blu Pavone A6 GL",tags:["Materials","Azzurra"],metadata:{hex:"#25656e",Color:"Blue",label:"Blu Pavone A6 GL",value:"Blu Pavone A6 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Pavone A6 GL",visible:!0,enabled:!0},{assetId:"4148c35b-cbd9-413c-8bb0-e7c22dcfe5a7",name:"Blu Oltremare BG GL",tags:["Materials","Azzurra"],metadata:{hex:"#3b4247",Color:"Blue",label:"Blu Oltremare BG GL",value:"Blu Oltremare BG GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Oltremare BG GL",visible:!0,enabled:!0},{assetId:"dbb43f89-cf31-4dac-9d15-fb544561f7dd",name:"Blu Laguna A7 GL",tags:["Materials","Azzurra"],metadata:{hex:"#184148",Color:"Blue",label:"Blu Laguna A7 GL",value:"Blu Laguna A7 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Laguna A7 GL",visible:!0,enabled:!0},{assetId:"e8512433-8070-4d41-b7e8-7d4361c0d672",name:"Blu Avio 41 GL",tags:["Materials","Azzurra"],metadata:{hex:"#788892",Color:"Blue",label:"Blu Avio 41 GL",value:"Blu Avio 41 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Avio 41 GL",visible:!0,enabled:!0},{assetId:"79076ef6-0279-4d1a-ab1d-393796d60749",name:"Blu Artico 37 GL",tags:["Materials","Azzurra"],metadata:{hex:"#4b5f6f",Color:"Blue",label:"Blu Artico 37 GL",value:"Blu Artico 37 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Artico 37 GL",visible:!0,enabled:!0},{assetId:"6a25ecd1-9ae0-4598-8315-5ba098795837",name:"Bianco Male FA GL",tags:["Materials","Azzurra"],metadata:{hex:"#dadad4",Color:"White, Beige",label:"Bianco Male FA GL",value:"Bianco Male FA GL",Material:"Lacquered GL",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco Male FA GL",visible:!0,enabled:!0},{assetId:"a0ea7be5-ddaa-4ed0-bc02-b4b3aa4b3938",name:"Bianco Calce DA GL",tags:["Materials","Azzurra","krostest"],metadata:{hex:"#e4e2df",Color:"White, Beige",label:"Bianco Calce DA GL",value:"Bianco Calce DA GL",Material:"Lacquered GL",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","6f3a860d-6b17-4648-966b-5f084fede54c"],type:"item",label:"Bianco Calce DA GL",visible:!0,enabled:!0},{assetId:"0aa8946f-882e-43e0-ad3a-b4c79a2d6dd5",name:"Bianco 0B GL",tags:["Materials","Azzurra"],metadata:{hex:"#fffffe",Color:"White",label:"Bianco 0B GL",value:"Bianco 0B GL",Material:"Lacquered GL",zoomIconColor:"Dark Grey",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco 0B GL",visible:!0,enabled:!0},{assetId:"406286a7-d17d-45d8-b9f9-0c1e0131f272",name:"Argilla DR GL",tags:["Materials","Azzurra"],metadata:{hex:"#817d74",Color:"Grey, Brown",label:"Argilla DR GL",value:"Argilla DR GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Argilla DR GL",visible:!0,enabled:!0},{assetId:"fa90c6bc-12ac-4f44-8ccc-d968cbd19a8a",name:"Ardesia DD GL",tags:["Materials","Azzurra"],metadata:{hex:"#5f5d5a",Color:"Grey",label:"Ardesia DD GL",value:"Ardesia DD GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Ardesia DD GL",visible:!0,enabled:!0},{assetId:"ef1f676f-ef1b-4fc5-bb33-f39d276f94db",name:"Arancio Zucca 09 GL",tags:["Materials","Azzurra"],metadata:{hex:"#c69b6b",Color:"Orange",label:"Arancio Zucca 09 GL",value:"Arancio Zucca 09 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Arancio Zucca 09 GL",visible:!0,enabled:!0},{assetId:"1f6f07d6-c0f4-4b9c-94f3-c8d0fadeb9b5",name:"Aragosta 77 GL",tags:["Materials","Azzurra"],metadata:{hex:"#ba5b3a",Color:"Orange",label:"Aragosta 77 GL",value:"Aragosta 77 GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Aragosta 77 GL",visible:!0,enabled:!0},{assetId:"46fea197-f969-4788-bcb4-386afd24c921",name:"Agata BD GL",tags:["Materials","Azzurra"],metadata:{hex:"#caccc9",Color:"Grey, Beige",label:"Agata BD GL",value:"Agata BD GL",Material:"Lacquered GL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Agata BD GL",visible:!0,enabled:!0},{assetId:"c81e7570-7059-41d3-bee2-fd10e331454d",name:"Verde Salvia 42 MT",tags:["Materials","Azzurra"],metadata:{hex:"#7f8e7c",Color:"Green",label:"Verde Salvia 42 MT",value:"Verde Salvia 42 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Salvia 42 MT",visible:!0,enabled:!0},{assetId:"3373cd97-ca8b-4715-b9f2-beae05bd1c32",name:"Verde Polvere 34 MT",tags:["Materials","Azzurra"],metadata:{hex:"#a3b0ab",Color:"Green",label:"Verde Polvere 34 MT",value:"Verde Polvere 34 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Polvere 34 MT",visible:!0,enabled:!0},{assetId:"deb6988d-849d-495f-9bc8-e79291a919b5",name:"Verde Ghiaia 31 MT",tags:["Materials","Azzurra"],metadata:{hex:"#c0cac6",Color:"Green",label:"Verde Ghiaia 31 MT",value:"Verde Ghiaia 31 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Ghiaia 31 MT",visible:!0,enabled:!0},{assetId:"dc614604-7b90-4697-81b3-2b39f3f08859",name:"Verde Comodoro FG MT",tags:["Materials","Azzurra"],metadata:{hex:"#48544d",Color:"Green",label:"Verde Comodoro FG MT",value:"Verde Comodoro FG MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Comodoro FG MT",visible:!0,enabled:!0},{assetId:"0528d338-4a0b-4e13-a986-127c0658de0a",name:"Tortora BE MT",tags:["Materials","Azzurra"],metadata:{hex:"#b2b1a9",Color:"Grey, Brown",label:"Tortora BE MT",value:"Tortora BE MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Tortora BE MT",visible:!0,enabled:!0},{assetId:"d968572e-752c-4886-a115-9b724f8b3d38",name:"Torba DS MT",tags:["Materials","Azzurra"],metadata:{hex:"#53514c",Color:"Brown",label:"Torba DS MT",value:"Torba DS MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Torba DS MT",visible:!0,enabled:!0},{assetId:"44f3858c-9db7-4af2-84fc-b1924e48201d",name:"Titanio 93 MT",tags:["Materials","Azzurra"],metadata:{hex:"#aaa59d",Color:"Brown, Grey",label:"Titanio 93 MT",value:"Titanio 93 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Titanio 93 MT",visible:!0,enabled:!0},{assetId:"af5b9902-7259-45e9-b0e7-3a1d22a554ed",name:"Terra DB MT",tags:["Materials","Azzurra"],metadata:{hex:"#9a9182",Color:"Brown",label:"Terra DB MT",value:"Terra DB MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Terra DB MT",visible:!0,enabled:!0},{assetId:"6adaad4a-2347-4c0a-8ddf-613b81482a0d",name:"Rosso Rubino 19 MT",tags:["Materials","Azzurra"],metadata:{hex:"#6c323c",Color:"Red",label:"Rosso Rubino 19 MT",value:"Rosso Rubino 19 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Rubino 19 MT",visible:!0,enabled:!0},{assetId:"9210b3ce-2d4f-46af-a11c-e37f972853b2",name:"Rosso Jaipur FH MT",tags:["Materials","Azzurra"],metadata:{hex:"#3f2626",Color:"Red, Purple",label:"Rosso Jaipur FH MT",value:"Rosso Jaipur FH MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Jaipur FH MT",visible:!0,enabled:!0},{assetId:"a6b92d16-c401-4fd9-805d-665db1ea9aa5",name:"Rosso Fuoco 21 MT",tags:["Materials","Azzurra"],metadata:{hex:"#802a2e",Color:"Red",label:"Rosso Fuoco 21 MT",value:"Rosso Fuoco 21 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Fuoco 21 MT",visible:!0,enabled:!0},{assetId:"6233a5b5-0bdb-4cd3-b6ed-b000c272f88d",name:"Rosa Retro 46 MT",tags:["Materials","Azzurra"],metadata:{hex:"#bfaea2",Color:"Pink, Beige",label:"Rosa Retro 46 MT",value:"Rosa Retro 46 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosa Retro 46 MT",visible:!0,enabled:!0},{assetId:"c3b4bba5-bf5d-485d-aafd-090b49d1fa1c",name:"Rosa Etoile 45 MT",tags:["Materials","Azzurra"],metadata:{hex:"#d1c2b7",Color:"Pink",label:"Rosa Etoile 45 MT",value:"Rosa Etoile 45 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosa Etoile 45 MT",visible:!0,enabled:!0},{assetId:"f31bdd61-67d5-4a14-85ef-f8be8508b2d9",name:"Roccia CE MT",tags:["Materials","Azzurra"],metadata:{hex:"#8c8680",Color:"Brown",label:"Roccia CE MT",value:"Roccia CE MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Roccia CE MT",visible:!0,enabled:!0},{assetId:"3434169b-fafa-4eef-b629-27e5f6e802c9",name:"Platino DF MT",tags:["Materials","Azzurra"],metadata:{hex:"#d0d1cd",Color:"Beige",label:"Platino DF MT",value:"Platino DF MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Platino DF MT",visible:!0,enabled:!0},{assetId:"4b198de6-1a80-44e7-bb3e-ecd1eb3f1cd2",name:"Nero 03 MT",tags:["Materials","Azzurra","msidecolor"],metadata:{hex:"#1c1c1d",Color:"Black",label:"Nero 03 MT",value:"Nero 03 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","ed7278e2-c79e-48c4-b04d-b7dee94306e5"],type:"item",label:"Nero 03 MT",visible:!0,enabled:!0},{assetId:"ea25d89e-2755-4117-bba8-43f66e83abc1",name:"Nebbia 91 MT",tags:["Materials","Azzurra"],metadata:{hex:"#c9c7c0",Color:"Beige, Brown",label:"Nebbia 91 MT",value:"Nebbia 91 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Nebbia 91 MT",visible:!0,enabled:!0},{assetId:"f9cd0ff7-a2c2-4c54-89b6-a0199fdf2ee6",name:"Metallizzato Creta M6 MT",tags:["Materials","Azzurra","msidecolor","krostest"],metadata:{Look:"Metallic",Color:"Grey, Brown",image:"/api/files/hash/sha256-558d9db0b0da23f99665949733dc60d007d6276a256f6f229537a95c33e69c4c",label:"Metallizzato Creta M6 MT",value:"Metallizzato Creta M6 MT",Material:"Lacquered MT",zoomIconColor:"White",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","ed7278e2-c79e-48c4-b04d-b7dee94306e5","6f3a860d-6b17-4648-966b-5f084fede54c"],type:"item",label:"Metallizzato Creta M6 MT",visible:!0,enabled:!0},{assetId:"3f5e5831-92a5-4c49-b71b-354395c05788",name:"Metallizzato Copper M7 MT",tags:["Materials","Azzurra","msidecolor"],metadata:{Look:"Metallic",Color:"Orange, Brown",image:"/api/files/hash/sha256-8c57c1bc9f512b2bc1eecd1c52fffb5d85b43994fa309eccc42942ab53442c7e",label:"Metallizzato Copper M7 MT",value:"Metallizzato Copper M7 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","ed7278e2-c79e-48c4-b04d-b7dee94306e5"],type:"item",label:"Metallizzato Copper M7 MT",visible:!0,enabled:!0},{assetId:"f6073b6e-aafb-46fb-bfa6-3b1798af9e82",name:"Metallizzato Bronzo M4 MT",tags:["Materials","Azzurra"],metadata:{Look:"Metallic",Color:"Brown, Yellow",image:"/api/files/hash/sha256-7eea8ac99e7c140e8bee12582e07b027a30e66ea6d07dffcb7edb0bb45534aec",label:"Metallizzato Bronzo M4 MT",value:"Metallizzato Bronzo M4 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Metallizzato Bronzo M4 MT",visible:!0,enabled:!0},{assetId:"37cdcc22-0554-44d0-bd8c-1152eb00603c",name:"Metallizzato Antracite M5 MT",tags:["Materials","Azzurra"],metadata:{Look:"Metallic",Color:"Grey",image:"/api/files/hash/sha256-1c8f49877261f6942893ad7266638108c8e524000d2704d18799a869a4d9d84f",label:"Metallizzato Antracite M5 MT",value:"Metallizzato Antracite M5 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Metallizzato Antracite M5 MT",visible:!0,enabled:!0},{assetId:"7bdceb22-447e-44f5-8d28-0be7d3850ea0",name:"Metallizzato Alluminio M1 MT",tags:["Materials","Azzurra"],metadata:{Look:"Metallic",Color:"Grey",image:"/api/files/hash/sha256-0fbaef4b135362c20dbc520559c6199d057e20b53a1c8b76dea3ae0558348c6b",label:"Metallizzato Alluminio M1 MT",value:"Metallizzato Alluminio M1 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Metallizzato Alluminio M1 MT",visible:!0,enabled:!0},{assetId:"11cfeb10-1c3b-4efa-94f1-e0ba9912d87d",name:"Mattone 10 MT",tags:["Materials","Azzurra"],metadata:{hex:"#b07252",Color:"Orange",label:"Mattone 10 MT",value:"Mattone 10 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Mattone 10 MT",visible:!0,enabled:!0},{assetId:"2d99df77-094e-42fd-8f19-3ad4f4baf415",name:"Marrone Havana 79 MT",tags:["Materials","Azzurra"],metadata:{hex:"#322f30",Color:"Brown",label:"Marrone Havana 79 MT",value:"Marrone Havana 79 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Marrone Havana 79 MT",visible:!0,enabled:!0},{assetId:"b7e31c93-388f-454d-b2f9-5f72f34ee141",name:"Juta DP MT",tags:["Materials","Azzurra"],metadata:{hex:"#c2c0b3",Color:"Beige",label:"Juta DP MT",value:"Juta DP MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Juta DP MT",visible:!0,enabled:!0},{assetId:"61d62e03-de14-41c0-afeb-a4bf18758472",name:"Grigio Talpa B5 MT",tags:["Materials","Azzurra"],metadata:{hex:"#9d9d93",Color:"Grey, Brown",label:"Grigio Talpa B5 MT",value:"Grigio Talpa B5 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Talpa B5 MT",visible:!0,enabled:!0},{assetId:"e7dacd89-68fd-464d-bc37-32601c66c459",name:"Grigio Pioggia 80 MT",tags:["Materials","Azzurra"],metadata:{hex:"#949696",Color:"Grey",label:"Grigio Pioggia 80 MT",value:"Grigio Pioggia 80 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Pioggia 80 MT",visible:!0,enabled:!0},{assetId:"445ce0ca-f561-41e6-87ed-16a3105632e7",name:"Grigio Perla 33 MT",tags:["Materials","Azzurra"],metadata:{hex:"#b0aead",Color:"Grey",label:"Grigio Perla 33 MT",value:"Grigio Perla 33 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Perla 33 MT",visible:!0,enabled:!0},{assetId:"3729509a-462e-4057-b903-de2cccfd6fdd",name:"Grigio Luce 07 MT",tags:["Materials","Azzurra"],metadata:{hex:"#bfbfbb",Color:"Grey",label:"Grigio Luce 07 MT",value:"Grigio Luce 07 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Luce 07 MT",visible:!0,enabled:!0},{assetId:"b7671109-1886-4875-b111-40934c2130d4",name:"Grigio Londra FD MT",tags:["Materials","Azzurra"],metadata:{hex:"#75736e",Color:"Grey",label:"Grigio Londra FD MT",value:"Grigio Londra FD MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Londra FD MT",visible:!0,enabled:!0},{assetId:"415af7a5-d25c-481b-8025-2f5b4ea40c89",name:"Grigio Lavagna A9 MT",tags:["Materials","Azzurra"],metadata:{hex:"#767a7e",Color:"Grey",label:"Grigio Lavagna A9 MT",value:"Grigio Lavagna A9 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Lavagna A9 MT",visible:!0,enabled:!0},{assetId:"f8ed9f86-ca5e-4884-8f1b-312ff4f7c1a3",name:"Grigio Grafite 02 MT",tags:["Materials","Azzurra"],metadata:{hex:"#555558",Color:"Grey",label:"Grigio Grafite 02 MT",value:"Grigio Grafite 02 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Grafite 02 MT",visible:!0,enabled:!0},{assetId:"29685e60-35df-4b78-ab4d-e2002cf70ae9",name:"Grigio Efeso FB MT",tags:["Materials","Azzurra"],metadata:{hex:"#bcbdbd",Color:"Grey",label:"Grigio Efeso FB MT",value:"Grigio Efeso FB MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Efeso FB MT",visible:!0,enabled:!0},{assetId:"734bf3d3-2fe0-407f-9b87-4455014fc36b",name:"Grigio Chiaro A8 MT",tags:["Materials","Azzurra"],metadata:{hex:"#c7cbca",Color:"Grey",label:"Grigio Chiaro A8 MT",value:"Grigio Chiaro A8 MT",Material:"Lacquered MT",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Chiaro A8 MT",visible:!0,enabled:!0},{assetId:"e5ee304a-7b12-4de3-bd49-2e68e1d05269",name:"Grigio Bromo FE MT",tags:["Materials","Azzurra"],metadata:{hex:"#545a60",Color:"Grey, Blue",label:"Grigio Bromo FE MT",value:"Grigio Bromo FE MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Bromo FE MT",visible:!0,enabled:!0},{assetId:"f210cdfe-7922-46be-9d93-3db1f22fa93e",name:"Giallo Curry 08 MT",tags:["Materials","Azzurra"],metadata:{hex:"#d2c38b",Color:"Yellow",label:"Giallo Curry 08 MT",value:"Giallo Curry 08 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Giallo Curry 08 MT",visible:!0,enabled:!0},{assetId:"e46a7d84-e177-44d4-ba75-0931d2f1a1a9",name:"Cenere 92 MT",tags:["Materials","Azzurra"],metadata:{hex:"#b2ada4",Color:"Brown",label:"Cenere 92 MT",value:"Cenere 92 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cenere 92 MT",visible:!0,enabled:!0},{assetId:"cb5d17d7-1e70-40ad-a0c5-9b324ace2db0",name:"Castoro Ottawa FC MT",tags:["Materials","Azzurra"],metadata:{hex:"#857f74",Color:"Brown",label:"Castoro Ottawa FC MT",value:"Castoro Ottawa FC MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Castoro Ottawa FC MT",visible:!0,enabled:!0},{assetId:"c344b27f-1ef5-49f4-be27-e73269ff3650",name:"Carta da Zucchero 47 MT",tags:["Materials","Azzurra"],metadata:{hex:"#a7b3bb",Color:"Blue, Grey",label:"Carta da Zucchero 47 MT",value:"Carta da Zucchero 47 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Carta da Zucchero 47 MT",visible:!0,enabled:!0},{assetId:"a8596d1f-3284-4f1e-9e34-def496f5b7f4",name:"Carbone 43 MT",tags:["Materials","Azzurra","msidecolor"],metadata:{hex:"#4f5050",Color:"Grey",label:"Carbone 43 MT",value:"Carbone 43 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","ed7278e2-c79e-48c4-b04d-b7dee94306e5"],type:"item",label:"Carbone 43 MT",visible:!0,enabled:!0},{assetId:"97d7ef51-84be-444d-916d-a1fb60477057",name:"Canyon 90 MT",tags:["Materials","Azzurra"],metadata:{hex:"#cac5b2",Color:"Beige",label:"Canyon 90 MT",value:"Canyon 90 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Canyon 90 MT",visible:!0,enabled:!0},{assetId:"5527c5ed-37b4-4ff6-a988-04a7947c812c",name:"Canapa 94 MT",tags:["Materials","Azzurra"],metadata:{hex:"#c4c3bd",Color:"Grey, Beige",label:"Canapa 94 MT",value:"Canapa 94 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Canapa 94 MT",visible:!0,enabled:!0},{assetId:"6c46a72f-a5e9-4a3c-bfde-59d4aec50e2f",name:"Cacao Orinoco FF MT",tags:["Materials","Azzurra"],metadata:{hex:"#3d3a3b",Color:"Brown",label:"Cacao Orinoco FF MT",value:"Cacao Orinoco FF MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cacao Orinoco FF MT",visible:!0,enabled:!0},{assetId:"dca2bff2-ae23-4fe3-8553-97c2b4fe01ce",name:"Cacao 05 MT",tags:["Materials","Azzurra"],metadata:{hex:"#3e352d",Color:"Brown",label:"Cacao 05 MT",value:"Cacao 05 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cacao 05 MT",visible:!0,enabled:!0},{assetId:"1c80efb4-9051-4bc9-ab73-d189350434e9",name:"Blu Reale 48 MT",tags:["Materials","Azzurra"],metadata:{hex:"#2e303d",Color:"Blue",label:"Blu Reale 48 MT",value:"Blu Reale 48 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Reale 48 MT",visible:!0,enabled:!0},{assetId:"d29ff03a-41bc-4e57-896a-dfbfa4edff65",name:"Blu Pavone A6 MT",tags:["Materials","Azzurra"],metadata:{hex:"#25656e",Color:"Blue",label:"Blu Pavone A6 MT",value:"Blu Pavone A6 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Pavone A6 MT",visible:!0,enabled:!0},{assetId:"2ccbc172-8ef5-496e-bda7-07cc640ba3db",name:"Blu Oltremare BG MT",tags:["Materials","Azzurra"],metadata:{hex:"#3b4247",Color:"Blue",label:"Blu Oltremare BG MT",value:"Blu Oltremare BG MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Oltremare BG MT",visible:!0,enabled:!0},{assetId:"c2627fc0-4242-4b0c-9156-2ef972b4be70",name:"Blu Laguna A7 MT",tags:["Materials","Azzurra"],metadata:{hex:"#184148",Color:"Blue",label:"Blu Laguna A7 MT",value:"Blu Laguna A7 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Laguna A7 MT",visible:!0,enabled:!0},{assetId:"1fdffbb0-48b5-4d76-9bff-e0d941b86428",name:"Blu Avio 41 MT",tags:["Materials","Azzurra"],metadata:{hex:"#788892",Color:"Blue",label:"Blu Avio 41 MT",value:"Blu Avio 41 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Blu Avio 41 MT",visible:!0,enabled:!0},{assetId:"066d34f3-5541-47c3-8c11-84641aba26f3",name:"Blu Artico 37 MT",tags:["Materials","Azzurra","krostest"],metadata:{hex:"#4b5f6f",Color:"Blue",label:"Blu Artico 37 MT",value:"Blu Artico 37 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","6f3a860d-6b17-4648-966b-5f084fede54c"],type:"item",label:"Blu Artico 37 MT",visible:!0,enabled:!0},{assetId:"6277605b-c003-4b05-aa75-9630584e0ba2",name:"Bianco Male FA MT",tags:["Materials","Azzurra"],metadata:{hex:"#dadad4",Color:"White, Beige",label:"Bianco Male FA MT",value:"Bianco Male FA MT",Material:"Lacquered MT",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco Male FA MT",visible:!0,enabled:!0},{assetId:"a85b5501-aba8-4100-b53e-6bbf8ae18e34",name:"Bianco Calce DA MT",tags:["Materials","Azzurra"],metadata:{hex:"#e4e2df",Color:"White, Beige",label:"Bianco Calce DA MT",value:"Bianco Calce DA MT",Material:"Lacquered MT",zoomIconColor:"Dark Grey","hasDefaultConfiguration#UI_Color":"#Urban Open Storage#","hasDefaultConfiguration#UI_Base Panel":"#Urban Duplex#"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco Calce DA MT",visible:!0,enabled:!0},{assetId:"2d829e3d-9f41-4758-893e-26ee68094953",name:"Bianco 0B MT",tags:["Materials","Azzurra","msidecolor"],metadata:{hex:"#fffffe",Color:"White",label:"Bianco 0B MT",value:"Bianco 0B MT",Material:"Lacquered MT",zoomIconColor:"Dark Grey",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","ed7278e2-c79e-48c4-b04d-b7dee94306e5"],type:"item",label:"Bianco 0B MT",visible:!0,enabled:!0},{assetId:"bc48ceb2-6b9c-4b82-b51f-d42a08389cba",name:"Argilla DR MT",tags:["Materials","Azzurra"],metadata:{hex:"#817d74",Color:"Grey, Brown",label:"Argilla DR MT",value:"Argilla DR MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Argilla DR MT",visible:!0,enabled:!0},{assetId:"34db9ded-67de-47cf-9100-9917aeb17c82",name:"Ardesia DD MT",tags:["Materials","Azzurra"],metadata:{hex:"#5f5d5a",Color:"Grey",label:"Ardesia DD MT",value:"Ardesia DD MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Ardesia DD MT",visible:!0,enabled:!0},{assetId:"2b269fe6-54f4-49cb-a1ba-014a6f247c40",name:"Arancio Zucca 09 MT",tags:["Materials","Azzurra"],metadata:{hex:"#c69b6b",Color:"Orange",label:"Arancio Zucca 09 MT",value:"Arancio Zucca 09 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Arancio Zucca 09 MT",visible:!0,enabled:!0},{assetId:"0cab70b6-a0e2-4dd2-bbff-9a1f603003e1",name:"Aragosta 77 MT",tags:["Materials","Azzurra"],metadata:{hex:"#ba5b3a",Color:"Orange",label:"Aragosta 77 MT",value:"Aragosta 77 MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Aragosta 77 MT",visible:!0,enabled:!0},{assetId:"b21ccfb6-9584-464b-9cc7-2a9822c7735d",name:"Agata BD MT",tags:["Materials","Azzurra"],metadata:{hex:"#caccc9",Color:"Grey, Beige",label:"Agata BD MT",value:"Agata BD MT",Material:"Lacquered MT",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Agata BD MT",visible:!0,enabled:!0},{assetId:"093b3db6-9447-4a83-8131-81a79a24985e",name:"Rox Black TKQ",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey",image:"/api/files/hash/sha256-be3d9d42c0d0c78943c8971ac07d2e7bcc573c29282a99a296298e2d9e1ef06b",label:"Rox Black TKQ",value:"Rox Black TKQ",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rox Black TKQ",visible:!0,enabled:!0},{assetId:"2cb25415-2e97-4aa4-8166-6d3f46d09c10",name:"Cepp Stone TKP",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey",image:"/api/files/hash/sha256-b29efe12550ef933d62bcca25d57796aee1c87d225b7935c9b1675ad9be1d4e4",label:"Cepp Stone TKP",value:"Cepp Stone TKP",Material:"HPL",zoomIconColor:"White",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cepp Stone TKP",visible:!0,enabled:!0},{assetId:"9f507901-ac89-486b-900b-79112bb9111f",name:"Brera Brown TKN",tags:["Materials","Azzurra"],metadata:{Look:"Metallic, Stone/Marble-Look",Color:"Brown",image:"/api/files/hash/sha256-176b100a4f17f7c9ec5717097a5ac79f91c524977307559300d0f63536acdff2",label:"Brera Brown TKN",value:"Brera Brown TKN",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Brera Brown TKN",visible:!0,enabled:!0},{assetId:"95701f88-54ca-429c-82c2-62db4ade9e12",name:"Noce Sinfonia TKM",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-c2fadedf011e8a7e2ff5d1f842f59cf40608d2e8ae032a1d99dc364c5222e663",label:"Noce Sinfonia TKM",value:"Noce Sinfonia TKM",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Noce Sinfonia TKM",visible:!0,enabled:!0},{assetId:"012c5296-1201-48f5-b270-3fd473625eee",name:"Rovere Alba TKL",tags:["Materials","Azzurra","krostest"],metadata:{Look:"Wood-Look",Color:"Grey, Brown",image:"/api/files/hash/sha256-ba1fc1fa08e7e6aeaa7b836b17531cfc802b072fec18b2dd6e4beb3cffd96784",label:"Rovere Alba TKL",value:"Rovere Alba TKL",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","6f3a860d-6b17-4648-966b-5f084fede54c"],type:"item",label:"Rovere Alba TKL",visible:!0,enabled:!0},{assetId:"742ab384-3881-4e70-998d-5888e821793a",name:"Rovere Valdweg TKK",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-a7f1023552a4083e3efc21ed7577d69af8f36632a190f2e0563cd4eda67a1284",label:"Rovere Valdweg TKK",value:"Rovere Valdweg TKK",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Valdweg TKK",visible:!0,enabled:!0},{assetId:"3552b459-d700-4a0d-b100-a5f7b447d6c3",name:"Pulpis Scuro TKJ",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Black, Brown, Grey",image:"/api/files/hash/sha256-8f2c62bc1d2c65416dbe26c6e4c82e6e49bf70c065d61b8c27922f1b2a97c1c4",label:"Pulpis Scuro TKJ",value:"Pulpis Scuro TKJ",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pulpis Scuro TKJ",visible:!0,enabled:!0},{assetId:"be20009d-8b5e-42b4-b429-4846fcd9fd9d",name:"Pulpis Chiaro TKH",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey, Beige",image:"/api/files/hash/sha256-280c91328ee6883296a278d492ea1c41993a5e2b31c4ee39b1cf89dbba3937a9",label:"Pulpis Chiaro TKH",value:"Pulpis Chiaro TKH",Material:"HPL",zoomIconColor:"White","hasDefaultConfiguration#UI_Color":"#Urban Horizontal Storage#","hasDefaultConfiguration#UI_Cabinet color":"#Urban Standard#","hasDefaultConfiguration#UI_Lateral Panel":"#Urban Duplex#","hasDefaultConfiguration#UI_Fenix Countertop":"#HPL#"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pulpis Chiaro TKH",visible:!0,enabled:!0},{assetId:"c0f2a7ac-d7bf-4ea6-8209-dc73daec20fb",name:"Noce Savoia TKG",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-db40f7f277f690e8a17f8fafe60fd97dd6dedf7509cbc1eaa230e0194942589d",label:"Noce Savoia TKG",value:"Noce Savoia TKG",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Noce Savoia TKG",visible:!0,enabled:!0},{assetId:"84acc9b2-f3a2-4ac5-9e3c-62c1427f5bb0",name:"Ardesia TKF",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Black",image:"/api/files/hash/sha256-8389293023e9622179eddefcf0e934a28fdc3f80207f62ab1aff4c79f96134d8",label:"Ardesia TKF",value:"Ardesia TKF",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Ardesia TKF",visible:!0,enabled:!0},{assetId:"de1a3842-26c3-4fd5-aeea-89bd7a248e12",name:"Rovere Slavonia TK6",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-320dc7175409c080fd9a4c00742d908c38402a9f568d3465d32b6547a63b8bc7",label:"Rovere Slavonia TK6",value:"Rovere Slavonia TK6",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Slavonia TK6",visible:!0,enabled:!0},{assetId:"7f67815a-68a1-4d1b-8557-c25754e77db3",name:"Rovere Monet TK3",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-da9050a34ec6532e9378e0bb676c924fa5641a4009842482cdf1b5717cabea39",label:"Rovere Monet TK3",value:"Rovere Monet TK3",Material:"HPL",zoomIconColor:"White",filtelistMaterial:"Material#Color#Look"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Monet TK3",visible:!0,enabled:!0},{assetId:"92e3fef6-eb3a-402d-9f0e-b1d18494efa1",name:"Rovere Nero 06J",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Black",image:"/api/files/hash/sha256-bdb2036ece48be19cc5f690e5bd9d97f15069c785a811dcc062a7f8c28766767",label:"Rovere Nero 06J",value:"Rovere Nero 06J",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Nero 06J",visible:!0,enabled:!0},{assetId:"8bf30d43-70dc-49ba-a163-bdecc61774be",name:"Rovere Moka 06H",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Black",image:"/api/files/hash/sha256-8ce07391a770be516f0d974e2679b3aaeb61f3e0fcc0c8fa4265c588b330db37",label:"Rovere Moka 06H",value:"Rovere Moka 06H",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Moka 06H",visible:!0,enabled:!0},{assetId:"c7f22a0a-02ad-4f2b-a3cb-76c71adf267a",name:"Rovere Carbone 06G",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-85667b6d83ae91f892600acf9fbfcdf9eb993b9d2882e42c274372371cf39b03",label:"Rovere Carbone 06G",value:"Rovere Carbone 06G",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Carbone 06G",visible:!0,enabled:!0},{assetId:"5a6770b0-f1bd-4364-adb9-700b7c58d008",name:"Rovere Fumo 06F",tags:["Materials","Azzurra","krostest"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-04c2bcef8e680af0f40bd0ad77272a491c57f989b62a687b0c887d141471ef34",label:"Rovere Fumo 06F",value:"Rovere Fumo 06F",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","6f3a860d-6b17-4648-966b-5f084fede54c"],type:"item",label:"Rovere Fumo 06F",visible:!0,enabled:!0},{assetId:"a08105fe-bc68-46ac-93b1-991f67fe7b83",name:"Rovere Avena 06E",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-8a0bedba2d7f026330ecf889d822b36160540ed989e7c0aa8d6f02551d4ac0f8",label:"Rovere Avena 06E",value:"Rovere Avena 06E",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Avena 06E",visible:!0,enabled:!0},{assetId:"2d95f213-dd17-44d8-b0c7-96635ed255c7",name:"Rovere Cenere 06D",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Grey",image:"/api/files/hash/sha256-71d417511dac70fe039e6a393c01799ef2e8d0f1fbb8a002c4a31399a2bec853",label:"Rovere Cenere 06D",value:"Rovere Cenere 06D",Material:"Essenze",zoomIconColor:"White",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Cenere 06D",visible:!0,enabled:!0},{assetId:"c47815d1-2afb-4daa-af8e-59de129a076f",name:"Rovere Sabbia 06C",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-4d6bd66af400e70c06e4817a6ce9e284de55125d67c69194869147ca52fbf6fa",label:"Rovere Sabbia 06C",value:"Rovere Sabbia 06C",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Sabbia 06C",visible:!0,enabled:!0},{assetId:"c5303510-732c-4ed1-a241-ddf813448a66",name:"Rovere Naturale 06B",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-b2591b7f4f8c072220c82694d99fa3c8ad3fd8ab1d40ab16e1b55a59c5aa1585",label:"Rovere Naturale 06B",value:"Rovere Naturale 06B",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Naturale 06B",visible:!0,enabled:!0},{assetId:"63166dee-207f-4ff3-a52a-895005d32d6f",name:"Rovere Bianco 06A",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-c7663be667ce249f6637eeda8b8d043d7b19e60256a0c49386fdf99f15f90372",label:"Rovere Bianco 06A",value:"Rovere Bianco 06A",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Bianco 06A",visible:!0,enabled:!0},{assetId:"55410697-22d3-4372-a8e6-298802176836",name:"Rovere Eucalipto 01A",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-20f1c0362faaa3c13215a496d98c527822e231a1e4704cd0ae832fd18ce60372",label:"Rovere Eucalipto 01A",value:"Rovere Eucalipto 01A",Material:"Essenze",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Eucalipto 01A",visible:!0,enabled:!0},{assetId:"2a426546-329f-43dc-8941-1cea187b2cad",name:"Metal bronzo 2MD",tags:["Materials","Azzurra"],metadata:{Look:"Metallic",Color:"Brown, Orange",image:"/api/files/hash/sha256-9923e745a84c76b8f367a85ee839b215551a9ecf3b02fea1d2d74533a35ed488",label:"Metal Bronzo 2MD",value:"Metal bronzo 2MD",Material:"Brushed Metal",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Metal bronzo 2MD",visible:!0,enabled:!0},{assetId:"c2b9a429-26a6-4641-a8a0-4d42617233bd",name:"Metal titanio 2MC",tags:["Materials","Azzurra","krostest"],metadata:{Look:"Metallic",Color:"Grey ",image:"/api/files/hash/sha256-dfbdf4748fb842704b08c56a5527e2f1af196c3f10d17f90ef82723ee42cc27e",label:"Metal Titanio 2MC",value:"Metal titanio 2MC",Material:"Brushed Metal",zoomIconColor:"White",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","6f3a860d-6b17-4648-966b-5f084fede54c"],type:"item",label:"Metal titanio 2MC",visible:!0,enabled:!0},{assetId:"a776c1a9-5c0b-465a-a288-6ff8d3782440",name:"Metal piombo 2MB",tags:["Materials","Azzurra"],metadata:{Look:"Metallic",Color:"Grey, Black",image:"/api/files/hash/sha256-089b4432e52cf6c7742318ce45b2a943743c1cae704311db9418e2c906112bdd",label:"Metal Piombo 2MB",value:"Metal piombo 2MB",Material:"Brushed Metal",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Metal piombo 2MB",visible:!0,enabled:!0},{assetId:"01e8e452-3402-457b-9c5c-2ddea51566ef",name:"Metal acciaio 2MA",tags:["Materials","Azzurra"],metadata:{Look:"Metallic",Color:"Grey ",image:"/api/files/hash/sha256-bd251d52235a7bf08b7784912adbeb526e5ac8650d3e313297478062fc40f865",label:"Metal Acciaio 2MA",value:"Metal acciaio 2MA",Material:"Brushed Metal",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Metal acciaio 2MA",visible:!0,enabled:!0},{assetId:"e69b3d47-bd29-4baa-96a7-81dda9ee19a8",name:"Rovere Sherwood Castano 1S3",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-3aa2248400dad333a1c9d39d76cde7dddef13b5ab347a691a0c1cc2cf42bc357",label:"Rovere Sherwood Castano 1S3",value:"Rovere Sherwood Castano 1S3",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Sherwood Castano 1S3",visible:!0,enabled:!0},{assetId:"3c4cfb2f-5975-41a0-b65e-7e5b6551823c",name:"Rovere Sherwood Scuro 1S2",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Black",image:"/api/files/hash/sha256-b4f5474053660e1964121c9503b7763015b2dc52ed436867bfa8ca1cc32a0367",label:"Rovere Sherwood Scuro 1S2",value:"Rovere Sherwood Scuro 1S2",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Sherwood Scuro 1S2",visible:!0,enabled:!0},{assetId:"066d2647-83e9-4346-9ca6-147948dc4987",name:"Rovere Sherwood Chiaro 1S1",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Pink, White",image:"/api/files/hash/sha256-d8af49f10f347b27d8c837d90fde6db67d8c8e26dc7b96b4290bf1d2e8f9de13",label:"Rovere Sherwood Chiaro 1S1",value:"Rovere Sherwood Chiaro 1S1",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Sherwood Chiaro 1S1",visible:!0,enabled:!0},{assetId:"11596557-e805-4425-b197-1d1a33ef8834",name:"Rigatino Beton 1RQ",tags:["Materials","Azzurra"],metadata:{Look:"",Color:"Beige, Grey",image:"/api/files/hash/sha256-d1240cb2e3ac44db648bd5a393efed237087ed8631c49a52f30b9bab3e278bd9",label:"Rigatino Beton 1RQ",value:"Rigatino Beton 1RQ",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rigatino Beton 1RQ",visible:!0,enabled:!0},{assetId:"b64de9dd-ebce-469c-bc3d-7d27e95c69b7",name:"Rigatino Tabacco 1RP",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-eb6d9f15eed4d7b0512f1722d0fd18bfafd174a888bb88f64815fd33372b0e84",label:"Rigatino Tabacco 1RP",value:"Rigatino Tabacco 1RP",Material:"3D",zoomIconColor:"White","hasDefaultConfiguration#UI_Backpanel Color":"Tiquaranta"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rigatino Tabacco 1RP",visible:!0,enabled:!0},{assetId:"badd7ed2-4517-4671-97ae-0bd1972c8c9d",name:"Rigatino Naturale 1RN",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-5c9f615203c9a3633c046c212799ff189bb7440c0c9f283a0e7b31fa989822ba",label:"Rigatino Naturale 1RN",value:"Rigatino Naturale 1RN",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rigatino Naturale 1RN",visible:!0,enabled:!0},{assetId:"3b57fadb-29bd-4ee6-a0a9-9ef0740877cd",name:"Pelle Pecari Tortora 1PE",tags:["Materials","Azzurra"],metadata:{Look:"Cement-Look",Color:"Grey ",image:"/api/files/hash/sha256-af3217a6caf186775d19af75d82291bd9e7475fc113edc8871d6f56a7ae09e20",label:"Pelle Pecari Tortora 1PE",value:"Pelle Pecari Tortora 1PE",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pelle Pecari Tortora 1PE",visible:!0,enabled:!0},{assetId:"9b233739-2418-4cf0-8bad-f7b710c642a5",name:"Rovere Dogato Naturale 1P3",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-532a3ffabcad2e00a7c5b6cee3e99d3c17f46a30b007fdb8accd074af7846c7c",label:"Rovere Dogato Naturale 1P3",value:"Rovere Dogato Naturale 1P3",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Dogato Naturale 1P3",visible:!0,enabled:!0},{assetId:"41819fcf-80f6-4ab2-ba6c-aced9fec5c25",name:"Rovere Dogato Grigio 1P1",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Grey",image:"/api/files/hash/sha256-15f0c9237e60738f6fd01b878aab3160a4c5ee0e76238585287225d4a65227a4",label:"Rovere Dogato Grigio 1P1",value:"Rovere Dogato Grigio 1P1",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Dogato Grigio 1P1",visible:!0,enabled:!0},{assetId:"66e8440e-e56f-4bac-b07e-8d6a0ab3cb5d",name:"Rovere Dogato Bianco 1P0",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"White",image:"/api/files/hash/sha256-6439c22937829a5f3d0c68279ebd869c217150bd7e0d46ad8e5633abdeb660ac",label:"Rovere Dogato Bianco 1P0",value:"Rovere Dogato Bianco 1P0",Material:"3D",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Dogato Bianco 1P0",visible:!0,enabled:!0},{assetId:"431b5b7c-84ff-401f-987f-d34cce2c96ea",name:"Noce Tavola Antico Scuro 1NE",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Black",image:"/api/files/hash/sha256-8891ef908e947f9c872a18719eea01c4ed497b4b987bbae5ddd9342770c6b2d6",label:"Noce Tavola Antico Scuro 1NE",value:"Noce Tavola Antico Scuro 1NE",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Noce Tavola Antico Scuro 1NE",visible:!0,enabled:!0},{assetId:"afdfd3ec-baa8-4e2f-906e-baefb1ea1ba4",name:"Noce Tavola Antico Chiaro 1ND",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-be651d1057315fd4ca65cdeb21a1fac011be6946617cff387bc2b8043b484834",label:"Noce Tavola Antico Chiaro 1ND",value:"Noce Tavola Antico Chiaro 1ND",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Noce Tavola Antico Chiaro 1ND",visible:!0,enabled:!0},{assetId:"16ad5433-ff29-4f2f-98d8-03ff9f945c1f",name:"Nodato spaccato Tabacco 1NB",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-c478093cf22958f575c41bf0550e28d83a71d2e15e2956ddbad477b4283130b4",label:"Nodato Spaccato Tabacco 1NB",value:"Nodato spaccato Tabacco 1NB",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Nodato spaccato Tabacco 1NB",visible:!0,enabled:!0},{assetId:"1996ec85-03b0-4cde-a4da-40e8941d5fc4",name:"Nodato spaccato Biondo 1NA",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-969234b1674622b98c4f519123138874a4075b0251fe0679e5639e584f25421e",label:"Nodato Spaccato Biondo 1NA",value:"Nodato spaccato Biondo 1NA",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Nodato spaccato Biondo 1NA",visible:!0,enabled:!0},{assetId:"15e07087-dcc0-4ed9-a71e-ed2d464da0c1",name:"Noce Rigato Grigio 1N3",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Grey, Brown",image:"/api/files/hash/sha256-5ad94c21a8a0d327bb6fcc0825f81d418a0136be2cd739cddf5a3c0298b51bf8",label:"Noce Rigato Grigio 1N3",value:"Noce Rigato Grigio 1N3",Material:"3D",zoomIconColor:"White",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Noce Rigato Grigio 1N3",visible:!0,enabled:!0},{assetId:"9a95b8eb-862a-4473-9e5c-53fd08461b8a",name:"Noce rigato Canaletto Naturale 1N2",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-fd792b351a4bb16919e29db2c1ce370a8a31498ba28e43988f409f5bf88f6593",label:"Noce Rigato Canaletto Naturale 1N2",value:"Noce rigato Canaletto Naturale 1N2",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Noce rigato Canaletto Naturale 1N2",visible:!0,enabled:!0},{assetId:"1c5f411f-9dfb-41e5-8f7a-a94f10a48df4",name:"Noce Rigato Chiaro 1N1",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Beige",image:"/api/files/hash/sha256-0c7a8ab49b47df2d9995a5ceeee0f065201b233e9e99eb0638a9d73d778d41d0",label:"Noce Rigato Chiaro 1N1",value:"Noce Rigato Chiaro 1N1",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Noce Rigato Chiaro 1N1",visible:!0,enabled:!0},{assetId:"94816844-7f4d-42ba-8147-ded18931607a",name:"Paulownia Seppia 1F2",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Beige",image:"/api/files/hash/sha256-33698e77978d2f09d373b6631d2074170229e5627ffe805135f93ae69d956193",label:"Paulownia Seppia 1F2",value:"Paulownia Seppia 1F2",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Paulownia Seppia 1F2",visible:!0,enabled:!0},{assetId:"70b7574a-d8ae-4772-8716-3d4b5593c92b",name:"Eucalipto Affumicato 1E2",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-7993725f579e4b423a2fdde370b5335b9f0b1bac5ed26fb89898e6d0866cd7b9",label:"Eucalipto Affumicato 1E2",value:"Eucalipto Affumicato 1E2",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Eucalipto Affumicato 1E2",visible:!0,enabled:!0},{assetId:"92781a43-67fa-414f-8d49-52dd402be93d",name:"Eucalipto Naturale 1E1",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-6ac83550373aa787ac7cfb7ebde482b3a99379f52bd61bbcf39a2797c4e5306d",label:"Eucalipto Naturale 1E1",value:"Eucalipto Naturale 1E1",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Eucalipto Naturale 1E1",visible:!0,enabled:!0},{assetId:"e5f0e001-5176-4d57-9c55-b56f959a7916",name:"Castagno Scuro 1C3",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown, Black",image:"/api/files/hash/sha256-b535e9693c4c42ef93d956c20b433e20a067ef3733f0180f593fd9bd23a65b3a",label:"Castagno Scuro 1C3",value:"Castagno Scuro 1C3",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Castagno Scuro 1C3",visible:!0,enabled:!0},{assetId:"d2c3c23f-26f9-4cbd-97f8-1b49172e4d83",name:"Castagno Malto 1C2",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-20e1b04e87bbc93d17c1ae374b12cf566d1a198c73c6f188884e5a71cd32942b",label:"Castagno Malto 1C2",value:"Castagno Malto 1C2",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Castagno Malto 1C2",visible:!0,enabled:!0},{assetId:"c768e374-44ca-481c-bd58-e5116d729053",name:"Castagno chiaro 1C1",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"White ",image:"/api/files/hash/sha256-d11b75498d9c094da836240b1ae0e4cf7a0c017765fdeb3769084ae513caef1e",label:"Castagno Chiaro 1C1",value:"Castagno chiaro 1C1",Material:"3D",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Castagno chiaro 1C1",visible:!0,enabled:!0},{assetId:"4353d884-2dc7-4847-803c-7c4407e0c1fc",name:"Pietra Piasentina Grigio Scuro 1AB",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey ",image:"/api/files/hash/sha256-547f3fcafe3e14734f8d6889b648a327f7e7bcbe6e1c1bfb29a725d44ddac891",label:"Pietra Piasentina Grigio Scuro 1AB",value:"Pietra Piasentina Grigio Scuro 1AB",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pietra Piasentina Grigio Scuro 1AB",visible:!0,enabled:!0},{assetId:"cf1716fc-e40f-47b4-a3c8-d173ce8ab009",name:"Pietra Piasentina Grigio Chiaro 1AA",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey ",image:"/api/files/hash/sha256-47eb0b6d3740e0c233c88e289807a400caf978947c19c0b9fe26f628a3d205f5",label:"Pietra Piasentina Grigio Chiaro 1AA",value:"Pietra Piasentina Grigio Chiaro 1AA",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pietra Piasentina Grigio Chiaro 1AA",visible:!0,enabled:!0},{assetId:"b42ad6e9-76bc-4edd-8656-890ea75ce4e5",name:"Cemento Ghiaccio 1A5",tags:["Materials","Azzurra"],metadata:{Look:"Cement-Look",Color:"White ",image:"/api/files/hash/sha256-78612ed164c818c3f07651a7bc384f5ecd978af58cb731aadd1a877e8cf4332d",label:"Cemento Ghiaccio 1A5",value:"Cemento Ghiaccio 1A5",Material:"3D",zoomIconColor:"Dark Grey",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cemento Ghiaccio 1A5",visible:!0,enabled:!0},{assetId:"24360a49-b7dc-4e91-8002-b716da2e9b2f",name:"Cemento Oltremare 1A4",tags:["Materials","Azzurra"],metadata:{Look:"Cement-Look",Color:"Black",image:"/api/files/hash/sha256-9f6100dcb59a10685fecd5657f471a6ab3477cf863ba4345145f8be68b7c2d93",label:"Cemento Oltremare 1A4",value:"Cemento Oltremare 1A4",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cemento Oltremare 1A4",visible:!0,enabled:!0},{assetId:"2278a549-5f5e-409f-ae14-be667ae5f85a",name:"Cemento Creta 1A3",tags:["Materials","Azzurra","krostest"],metadata:{Look:"Cement-Look",Color:"Grey, Brown",image:"/api/files/hash/sha256-b0b77cddb072eb3eefb723a0c8058d05d3c35cb34f398fc71e63ead582783567",label:"Cemento Creta 1A3",value:"Cemento Creta 1A3",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","6f3a860d-6b17-4648-966b-5f084fede54c"],type:"item",label:"Cemento Creta 1A3",visible:!0,enabled:!0},{assetId:"2a5bc07c-03fd-44b0-8d47-1f8bd3816086",name:"Cemento Tortora 1A2",tags:["Materials","Azzurra"],metadata:{Look:"Cement-Look",Color:"Grey, Beige, Brown",image:"/api/files/hash/sha256-841e7d936699edd6cd9d75eb770e7117595dd6f2fb7506b0d657bd13ea8d8800",label:"Cemento Tortora 1A2",value:"Cemento Tortora 1A2",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cemento Tortora 1A2",visible:!0,enabled:!0},{assetId:"9df3c540-0978-4c08-ba1a-7940aeb35663",name:"Cemento Cenere 1A1",tags:["Materials","Azzurra"],metadata:{Look:"Cement-Look",Color:"Grey, Beige",image:"/api/files/hash/sha256-10dac44e536ad3751df920413c0624acb2ebfc9e437f004ac91779a837fe9421",label:"Cemento Cenere 1A1",value:"Cemento Cenere 1A1",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cemento Cenere 1A1",visible:!0,enabled:!0},{assetId:"751af9b9-1c45-4b0b-88a3-1e0f2461fa88",name:"Colortech Grigio fume 10F",tags:["Materials","Azzurra"],metadata:{hex:"#5a5555",Color:"Grey",label:"Colortech Grigio fumè 10F",value:"Colortech Grigio fume 10F",Material:"3D",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Colortech Grigio fume 10F",visible:!0,enabled:!0},{assetId:"346595b3-653a-4ed6-a00a-44b6696c0a0f",name:"Colortech Bianco 10B",tags:["Materials","Azzurra"],metadata:{hex:"#d7d9d6",Color:"White ",label:"Colortech Bianco 10B",value:"Colortech Bianco 10B",Material:"3D",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Colortech Bianco 10B",visible:!0,enabled:!0}],defaultValue:{assetId:""},global:{id:"1afbdec3-9797-4f0a-a597-26661605a1ca",type:"Global",name:"Global",metadata:[]},visible:!0,enabled:!0,hiddenValues:[],disabledValues:[],value:{assetId:"be20009d-8b5e-42b4-b429-4846fcd9fd9d",type:"item"}},{id:"1c23523d-560d-46ac-b085-2d8fa40fddd6",type:"Asset",name:"UI_Counertops materials",metadata:{Name:"Counertops materials",Label:"Counertops materials",hasRenderImagePreview:"true"},blacklist:[],assetType:"model",values:[{assetId:"e626ccdd-f6ac-4d1c-94bb-0792a9c7a15d",name:"Travertino Lucidato TR6",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Beige, Grey, Brown",image:"/api/files/hash/sha256-99d70fffed63c6eb02f432ccb6a179810ca21772f07ba50922a7206dceddf458",label:"Travertino Lucidato TR6",value:"Travertino Lucidato TR6",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Travertino Lucidato TR6",visible:!0,enabled:!0},{assetId:"a4eccc93-c5dd-485b-8a1d-cc6cf8b2ddc2",name:"Travertino Silver Matte TQY",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Beige, Grey",image:"/api/files/hash/sha256-c5d73e43596137877ad3de33ed6f96984399bf8cd51d6d13c56e17bc5c0092c5",label:"Travertino Silver Matte TQY",value:"Travertino Silver Matte TQY",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Travertino Silver Matte TQY",visible:!0,enabled:!0},{assetId:"d5d7ba40-471f-464d-bbfd-ae25441397de",name:"Travertino Beige Matte TQX",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Beige ",image:"/api/files/hash/sha256-f69e182c2d08a3dafad785e2963ef66c9ba37c333e5faf47f29c09e2f82aa4ef",label:"Travertino Beige Matte TQX",value:"Travertino Beige Matte TQX",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Travertino Beige Matte TQX",visible:!0,enabled:!0},{assetId:"363d366e-32fb-4ce3-bddc-ece5433897e0",name:"Sahara Noir Silky Matte TR8",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Black",image:"/api/files/hash/sha256-2f774ec1d584944350669ed971691d93c0930efbe8ea758e08b27a187c477996",label:"Sahara Noir Silky Matte TR8",value:"Sahara Noir Silky Matte TR8",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Sahara Noir Silky Matte TR8",visible:!0,enabled:!0},{assetId:"0ef9db94-feb7-4f28-80ac-3bd055b28f45",name:"Sahara Noir Lucidato TR2",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Black",image:"/api/files/hash/sha256-2f774ec1d584944350669ed971691d93c0930efbe8ea758e08b27a187c477996",label:"Sahara Noir Lucidato TR2",value:"Sahara Noir Lucidato TR2",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Sahara Noir Lucidato TR2",visible:!0,enabled:!0},{assetId:"79d82096-71fe-499f-b028-b0ee87fbf131",name:"Pietra Piasentina Taupe Matte TQQ",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey, Brown",image:"/api/files/hash/sha256-4a108479ff20e5b8bf7c312b00a8c993f3cb8ad266efc5af1dcea90c9f0e36c6",label:"Pietra Piasentina Taupe Matte TQQ",value:"Pietra Piasentina Taupe Matte TQQ",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pietra Piasentina Taupe Matte TQQ",visible:!0,enabled:!0},{assetId:"3fc9569f-f46d-4ac2-b040-becebd89736e",name:"Pietra Piasentina Grigia Matte TQP",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey",image:"/api/files/hash/sha256-9351f44df97c1faaddc0ceb03541ac1698f96d040d5ecc00fba0b8c921b32b1b",label:"Pietra Piasentina Grigia Matte TQP",value:"Pietra Piasentina Grigia Matte TQP",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pietra Piasentina Grigia Matte TQP",visible:!0,enabled:!0},{assetId:"cd138a03-5b94-4e39-9a90-73078d79fb23",name:"Pietra Grey Matte TQU",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey",image:"/api/files/hash/sha256-2dc094a5e8d0578caaffbd4afbd62a664789b54def67a5b9ae6e0ca2de8e44c0",label:"Pietra Grey Matte TQU",value:"Pietra Grey Matte TQU",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pietra Grey Matte TQU",visible:!0,enabled:!0},{assetId:"c152811a-f957-4862-8d14-e08627981e94",name:"Pietra Grey Lucidata TQR",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey",image:"/api/files/hash/sha256-2dc094a5e8d0578caaffbd4afbd62a664789b54def67a5b9ae6e0ca2de8e44c0",label:"Pietra Grey Lucidata TQR",value:"Pietra Grey Lucidata TQR",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pietra Grey Lucidata TQR",visible:!0,enabled:!0},{assetId:"2b266552-e28a-4269-a2c2-09aff26406f8",name:"Pietra Di Savoia Grigia TQ4",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey",image:"/api/files/hash/sha256-36d2f5e29f17d9a81570257329620803a74cafd74e128ea3790ce1f12112c9bf",label:"Pietra Di Savoia Grigia TQ4",value:"Pietra Di Savoia Grigia TQ4",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pietra Di Savoia Grigia TQ4",visible:!0,enabled:!0},{assetId:"7b0032f3-5b1a-4bdf-b215-33fc427083fe",name:"Pietra Di Savoia Antracite TQ6",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey",image:"/api/files/hash/sha256-9cd5bcc1dffbaf3fc7e0ece302d066b5853b0ea00690821cce6c00a702e2dcff",label:"Pietra Di Savoia Antracite TQ6",value:"Pietra Di Savoia Antracite TQ6",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pietra Di Savoia Antracite TQ6",visible:!0,enabled:!0},{assetId:"79f6c8d2-d006-4124-b3a6-4225266d750c",name:"Ossido Nero TQS",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look, Metallic",Color:"Black, Grey",image:"/api/files/hash/sha256-76ee1a06f58120dce7ee65588229783adf53c1b099ffb4137e2e88cbc378c319",label:"Ossido Nero TQS",value:"Ossido Nero TQS",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Ossido Nero TQS",visible:!0,enabled:!0},{assetId:"4772b203-796a-45ca-9ded-a63bc531ecd7",name:"Ossido Bruno TQT",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look, Metallic",Color:"Brown, Orange",image:"/api/files/hash/sha256-471e4519c7316b864ecbb0e85009f82b82d2824b36312f6ca844563cac120954",label:"Ossido Bruno TQT",value:"Ossido Bruno TQT",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Ossido Bruno TQT",visible:!0,enabled:!0},{assetId:"9b54218c-7cfb-4b62-8098-57128f30d9e6",name:"Nero Assoluto Matte TQ9",tags:["Materials","Azzurra"],metadata:{hex:"#222222",Color:"Black",label:"Nero Assoluto Matte TQ9",value:"Nero Assoluto Matte TQ9",Material:"Porcelain",zoomIconColor:"White","hasDefaultConfiguration#UI_Counertops materials":"#Urban Standard#"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Nero Assoluto Matte TQ9",visible:!0,enabled:!0},{assetId:"8e65fb78-987d-48e1-b61c-c7ed02ef3e5b",name:"Limestone Moon TRE",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"White, Beige",image:"/api/files/hash/sha256-0ec0ee8784423554b6488843807d0aa1cd4a4d86f48fcd72765a97163442e8f0",label:"Limestone Moon TRE",value:"Limestone Moon TRE",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Limestone Moon TRE",visible:!0,enabled:!0},{assetId:"61fd5701-0890-4d7c-b4f4-b0b74889b40a",name:"Limestone Deep TRG",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey",image:"/api/files/hash/sha256-43e7ed28a0b4662ddbc7854dd0770373b1509188e9f50b4638105fd92f693d2e",label:"Limestone Deep TRG",value:"Limestone Deep TRG",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Limestone Deep TRG",visible:!0,enabled:!0},{assetId:"b4ebea87-7769-4af8-a4df-03b60ebdd2fa",name:"Limestone Ash TRF",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey",image:"/api/files/hash/sha256-aba1d24c088cbefb0c93a58e4bbc0c58175eaf756b93e0978dde01965e9e272f",label:"Limestone Ash TRF",value:"Limestone Ash TRF",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Limestone Ash TRF",visible:!0,enabled:!0},{assetId:"d2f5e780-c0ff-4ee4-abbb-e114443a9ab6",name:"Guadi Stone Lucidato TR5",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Brown",image:"/api/files/hash/sha256-4cb8981f0fb67a4b4c59c2e6eed038b845ca9947906d0dc2b322f858edb73e35",label:"Guadì Stone Lucidato TR5",value:"Guadi Stone Lucidato TR5",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Guadi Stone Lucidato TR5",visible:!0,enabled:!0},{assetId:"4d8fb388-71ea-461e-ab14-9a0fd2b2e505",name:"Fokos Sale TQ1",tags:["Materials","Azzurra"],metadata:{Look:"Cement-Look",Color:"Beige, White",image:"/api/files/hash/sha256-2f1bd106bd2ae8e6f411df7500cde23b3aae60899bc1819f0daf70f345f40da8",label:"Fokos Sale TQ1",value:"Fokos Sale TQ1",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Fokos Sale TQ1",visible:!0,enabled:!0},{assetId:"04bc6c33-8210-4cd8-a2bc-ccd48d12f0f3",name:"Fokos Roccia TQ3",tags:["Materials","Azzurra"],metadata:{Look:"Cement-Look",Color:"Grey",image:"/api/files/hash/sha256-0ec6804849e81dc23feaa85cb1df39e072f734a2d325893c02b2b9e634a91f90",label:"Fokos Roccia TQ3",value:"Fokos Roccia TQ3",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Fokos Roccia TQ3",visible:!0,enabled:!0},{assetId:"4274cd42-ce89-4c91-8fc3-cd12e7ecf434",name:"Fokos Rena TQ2",tags:["Materials","Azzurra"],metadata:{Look:"Cement-Look",Color:"Beige ",image:"/api/files/hash/sha256-8f6dbf60fb6a3ff9d88987a0899d1aa5cd04052be36517c0117080849f5097af",label:"Fokos Rena TQ2",value:"Fokos Rena TQ2",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Fokos Rena TQ2",visible:!0,enabled:!0},{assetId:"284e94c7-37f8-402b-b3da-7b84119e0601",name:"Emperador Lucidato TR3",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Brown",image:"/api/files/hash/sha256-b56cc0921f439d2930e6dd2fa900933449e14ae4aefec28ce442c6ebb56c6eb4",label:"Emperador Lucidato TR3",value:"Emperador Lucidato TR3",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Emperador Lucidato TR3",visible:!0,enabled:!0},{assetId:"35b3cce6-176c-4792-ac6e-0d5ba65438c8",name:"Cava Noir Desir Matte TQH",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Black",image:"/api/files/hash/sha256-c4033555265bacf3a9ac949a1809ad08f3111935e53341388b60aca8230b20a7",label:"Cava Noir Desir Matte TQH",value:"Cava Noir Desir Matte TQH",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cava Noir Desir Matte TQH",visible:!0,enabled:!0},{assetId:"e075de9c-bc20-4a07-bdec-49b7ff54b35a",name:"Cava Noir Desir Lucidato TQJ",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Black",image:"/api/files/hash/sha256-c4033555265bacf3a9ac949a1809ad08f3111935e53341388b60aca8230b20a7",label:"Cava Noir Desir Lucidato TQJ",value:"Cava Noir Desir Lucidato TQJ",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cava Noir Desir Lucidato TQJ",visible:!0,enabled:!0},{assetId:"2d20f465-7d7e-4d99-8ad5-07a5c7286ce5",name:"Cava Diamond Cream TQE",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"White, Beige, Grey",image:"/api/files/hash/sha256-d6aa057777a76f0739fc4b3d29e7c42b91bd0a1f90371dbc1d061daaf2e125c9",label:"Cava Diamond Cream TQE",value:"Cava Diamond Cream TQE",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cava Diamond Cream TQE",visible:!0,enabled:!0},{assetId:"f32ac58e-8385-479b-92a3-4db9097dea9a",name:"Calacatta Oro Venato Matte TQW",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"White",image:"/api/files/hash/sha256-5b4340749ef35e07472efa7f4d0d4a640f16aadc3cd8842090b9917fad4d793d",label:"Calacatta Oro Venato Matte TQW",value:"Calacatta Oro Venato Matte TQW",Material:"Porcelain",zoomIconColor:"Dark Grey","hasDefaultConfiguration#UI_Fenix Countertop":"#Porcelain#"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Calacatta Oro Venato Matte TQW",visible:!0,enabled:!0},{assetId:"da3f3dc7-c853-4021-9801-8f1286bd2f3c",name:"Calacatta Oro Venato Lucidato TQD",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"White",image:"/api/files/hash/sha256-5b4340749ef35e07472efa7f4d0d4a640f16aadc3cd8842090b9917fad4d793d",label:"Calacatta Oro Venato Lucidato TQD",value:"Calacatta Oro Venato Lucidato TQD",Material:"Porcelain",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Calacatta Oro Venato Lucidato TQD",visible:!0,enabled:!0},{assetId:"5bc4af03-3a32-4b2e-8147-1584452548d2",name:"Black Marquinia Silky Matte TR7",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Black",image:"/api/files/hash/sha256-74f83a250362206ad94013d003d09175abd4ccfe301bc57ea69c593cdfabb54d",label:"Black Marquinia Silky Matte TR7",value:"Black Marquinia Silky Matte TR7",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Black Marquinia Silky Matte TR7",visible:!0,enabled:!0},{assetId:"b6692f59-6549-4c5e-a74b-b80447580018",name:"Black Marquinia Lucidato TR1",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Black",image:"/api/files/hash/sha256-74f83a250362206ad94013d003d09175abd4ccfe301bc57ea69c593cdfabb54d",label:"Black Marquinia Lucidato TR1",value:"Black Marquinia Lucidato TR1",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Black Marquinia Lucidato TR1",visible:!0,enabled:!0},{assetId:"e083e15c-f614-4a86-a342-710bcb24db91",name:"Bianco Statuario Venato Matte TQV",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"White",image:"/api/files/hash/sha256-84c83d1fe178c42bddea56f36fcba854713104756ce5a3d90284eb6b4624b5be",label:"Bianco Statuario Venato Matte TQV",value:"Bianco Statuario Venato Matte TQV",Material:"Porcelain",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco Statuario Venato Matte TQV",visible:!0,enabled:!0},{assetId:"76cdbc05-55f0-40aa-85be-3d491b5f7f61",name:"Bianco Statuario Venato Lucidato TQC",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"White",image:"/api/files/hash/sha256-84c83d1fe178c42bddea56f36fcba854713104756ce5a3d90284eb6b4624b5be",label:"Bianco Statuario Venato Lucidato TQC",value:"Bianco Statuario Venato Lucidato TQC",Material:"Porcelain",zoomIconColor:"Dark Grey",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco Statuario Venato Lucidato TQC",visible:!0,enabled:!0},{assetId:"3d84ded8-d755-4d98-a215-29b967fa4509",name:"Bianco Assoluto Matte TQK",tags:["Materials","Azzurra"],metadata:{hex:"#dddcdc",Color:"White",label:"Bianco Assoluto Matte TQK",value:"Bianco Assoluto Matte TQK",Material:"Porcelain",zoomIconColor:"Dark Grey"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco Assoluto Matte TQK",visible:!0,enabled:!0},{assetId:"b2720980-0303-427d-96c2-be18c8211226",name:"Avenue Silver TRA",tags:["Materials","Azzurra"],metadata:{Look:"Cement-Look",Color:"Grey",image:"/api/files/hash/sha256-aa47329e51c7fb33879a6a7cbbf192f002c9334ef3508dcb3959734103774ba8",label:"Avenue Silver TRA",value:"Avenue Silver TRA",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Avenue Silver TRA",visible:!0,enabled:!0},{assetId:"31eab032-ddd3-4f7f-bb04-2bafc3c868d7",name:"Avenue Ivory TR9",tags:["Materials","Azzurra"],metadata:{Look:"Cement-Look",Color:"White, Beige",image:"/api/files/hash/sha256-fb218c75b8a54e742e3c2c946c8d5c620729ed717caf5b5468c463126ddda47b",label:"Avenue Ivory TR9",value:"Avenue Ivory TR9",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Avenue Ivory TR9",visible:!0,enabled:!0},{assetId:"d15262a9-bc8c-4646-adbe-2314557787be",name:"Avenue Amber TRC",tags:["Materials","Azzurra"],metadata:{Look:"Cement-Look",Color:"Brown",image:"/api/files/hash/sha256-592a855f44932c39b408f009903f7566b62f2d5a1715e416638d591ca665885b",label:"Avenue Amber TRC",value:"Avenue Amber TRC",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Avenue Amber TRC",visible:!0,enabled:!0},{assetId:"cbb8d461-592c-465e-aad4-4dbff435c2a3",name:"Aosta Green Marble Lucidato TR4",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Green",image:"/api/files/hash/sha256-e4245e8484c76a652ee1b806a167cd3680bd46be1ab64201b9e00dbe7cf61697",label:"Aosta Green Marble Lucidato TR4",value:"Aosta Green Marble Lucidato TR4",Material:"Porcelain",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Aosta Green Marble Lucidato TR4",visible:!0,enabled:!0},{assetId:"093b3db6-9447-4a83-8131-81a79a24985e",name:"Rox Black TKQ",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey",image:"/api/files/hash/sha256-be3d9d42c0d0c78943c8971ac07d2e7bcc573c29282a99a296298e2d9e1ef06b",label:"Rox Black TKQ",value:"Rox Black TKQ",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rox Black TKQ",visible:!0,enabled:!0},{assetId:"2cb25415-2e97-4aa4-8166-6d3f46d09c10",name:"Cepp Stone TKP",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey",image:"/api/files/hash/sha256-b29efe12550ef933d62bcca25d57796aee1c87d225b7935c9b1675ad9be1d4e4",label:"Cepp Stone TKP",value:"Cepp Stone TKP",Material:"HPL",zoomIconColor:"White",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cepp Stone TKP",visible:!0,enabled:!0},{assetId:"9f507901-ac89-486b-900b-79112bb9111f",name:"Brera Brown TKN",tags:["Materials","Azzurra"],metadata:{Look:"Metallic, Stone/Marble-Look",Color:"Brown",image:"/api/files/hash/sha256-176b100a4f17f7c9ec5717097a5ac79f91c524977307559300d0f63536acdff2",label:"Brera Brown TKN",value:"Brera Brown TKN",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Brera Brown TKN",visible:!0,enabled:!0},{assetId:"95701f88-54ca-429c-82c2-62db4ade9e12",name:"Noce Sinfonia TKM",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-c2fadedf011e8a7e2ff5d1f842f59cf40608d2e8ae032a1d99dc364c5222e663",label:"Noce Sinfonia TKM",value:"Noce Sinfonia TKM",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Noce Sinfonia TKM",visible:!0,enabled:!0},{assetId:"012c5296-1201-48f5-b270-3fd473625eee",name:"Rovere Alba TKL",tags:["Materials","Azzurra","krostest"],metadata:{Look:"Wood-Look",Color:"Grey, Brown",image:"/api/files/hash/sha256-ba1fc1fa08e7e6aeaa7b836b17531cfc802b072fec18b2dd6e4beb3cffd96784",label:"Rovere Alba TKL",value:"Rovere Alba TKL",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822","6f3a860d-6b17-4648-966b-5f084fede54c"],type:"item",label:"Rovere Alba TKL",visible:!0,enabled:!0},{assetId:"742ab384-3881-4e70-998d-5888e821793a",name:"Rovere Valdweg TKK",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-a7f1023552a4083e3efc21ed7577d69af8f36632a190f2e0563cd4eda67a1284",label:"Rovere Valdweg TKK",value:"Rovere Valdweg TKK",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Valdweg TKK",visible:!0,enabled:!0},{assetId:"3552b459-d700-4a0d-b100-a5f7b447d6c3",name:"Pulpis Scuro TKJ",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Black, Brown, Grey",image:"/api/files/hash/sha256-8f2c62bc1d2c65416dbe26c6e4c82e6e49bf70c065d61b8c27922f1b2a97c1c4",label:"Pulpis Scuro TKJ",value:"Pulpis Scuro TKJ",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pulpis Scuro TKJ",visible:!0,enabled:!0},{assetId:"be20009d-8b5e-42b4-b429-4846fcd9fd9d",name:"Pulpis Chiaro TKH",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Grey, Beige",image:"/api/files/hash/sha256-280c91328ee6883296a278d492ea1c41993a5e2b31c4ee39b1cf89dbba3937a9",label:"Pulpis Chiaro TKH",value:"Pulpis Chiaro TKH",Material:"HPL",zoomIconColor:"White","hasDefaultConfiguration#UI_Color":"#Urban Horizontal Storage#","hasDefaultConfiguration#UI_Cabinet color":"#Urban Standard#","hasDefaultConfiguration#UI_Lateral Panel":"#Urban Duplex#","hasDefaultConfiguration#UI_Fenix Countertop":"#HPL#"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Pulpis Chiaro TKH",visible:!0,enabled:!0},{assetId:"c0f2a7ac-d7bf-4ea6-8209-dc73daec20fb",name:"Noce Savoia TKG",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-db40f7f277f690e8a17f8fafe60fd97dd6dedf7509cbc1eaa230e0194942589d",label:"Noce Savoia TKG",value:"Noce Savoia TKG",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Noce Savoia TKG",visible:!0,enabled:!0},{assetId:"84acc9b2-f3a2-4ac5-9e3c-62c1427f5bb0",name:"Ardesia TKF",tags:["Materials","Azzurra"],metadata:{Look:"Stone/Marble-Look",Color:"Black",image:"/api/files/hash/sha256-8389293023e9622179eddefcf0e934a28fdc3f80207f62ab1aff4c79f96134d8",label:"Ardesia TKF",value:"Ardesia TKF",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Ardesia TKF",visible:!0,enabled:!0},{assetId:"de1a3842-26c3-4fd5-aeea-89bd7a248e12",name:"Rovere Slavonia TK6",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-320dc7175409c080fd9a4c00742d908c38402a9f568d3465d32b6547a63b8bc7",label:"Rovere Slavonia TK6",value:"Rovere Slavonia TK6",Material:"HPL",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Slavonia TK6",visible:!0,enabled:!0},{assetId:"7f67815a-68a1-4d1b-8557-c25754e77db3",name:"Rovere Monet TK3",tags:["Materials","Azzurra"],metadata:{Look:"Wood-Look",Color:"Brown",image:"/api/files/hash/sha256-da9050a34ec6532e9378e0bb676c924fa5641a4009842482cdf1b5717cabea39",label:"Rovere Monet TK3",value:"Rovere Monet TK3",Material:"HPL",zoomIconColor:"White",filtelistMaterial:"Material#Color#Look"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rovere Monet TK3",visible:!0,enabled:!0},{assetId:"2e30f6ac-3785-4952-ae98-2b1b865e2921",name:"Nero Ingo TFJ",tags:["Materials","Azzurra"],metadata:{hex:"#121212",Color:"Black",label:"Nero Ingo TFJ",value:"Nero Ingo TFJ",Material:"Fenix",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Nero Ingo TFJ",visible:!0,enabled:!0},{assetId:"86ae3b2f-1f19-403b-abda-9f26b673b70b",name:"Rosso Jaipur TFH",tags:["Materials","Azzurra"],metadata:{hex:"#6d403d",Color:"Red",label:"Rosso Jaipur TFH",value:"Rosso Jaipur TFH",Material:"Fenix",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Rosso Jaipur TFH",visible:!0,enabled:!0},{assetId:"92c41fa8-66cc-48a6-ad2b-18bcb2ab05d3",name:"Verde Comodoro TFG",tags:["Materials","Azzurra"],metadata:{hex:"#67706c",Color:"Green",label:"Verde Comodoro TFG",value:"Verde Comodoro TFG",Material:"Fenix",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Verde Comodoro TFG",visible:!0,enabled:!0},{assetId:"e6feec85-ae3d-4272-85b5-13de71350888",name:"Cacao Orinoco TFF",tags:["Materials","Azzurra"],metadata:{hex:"#3f3a3b",Color:"Brown",label:"Cacao Orinoco TFF",value:"Cacao Orinoco TFF",Material:"Fenix",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Cacao Orinoco TFF",visible:!0,enabled:!0},{assetId:"b3b6e538-9e15-4a77-bb7f-6b2cd9cdd7c2",name:"Grigio Bromo TFE",tags:["Materials","Azzurra"],metadata:{hex:"#44484c",Color:"Grey, Blue",label:"Grigio Bromo TFE",value:"Grigio Bromo TFE",Material:"Fenix",zoomIconColor:"White",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Bromo TFE",visible:!0,enabled:!0},{assetId:"39386cef-6c7f-4b4e-bea6-c4f71f087c8b",name:"Grigio Londra TFD",tags:["Materials","Azzurra"],metadata:{hex:"#6f6e68",Color:"Grey ",label:"Grigio Londra TFD",value:"Grigio Londra TFD",Material:"Fenix",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Londra TFD",visible:!0,enabled:!0},{assetId:"82163972-d1b6-4873-bae6-831c4c3ca4d7",name:"Castoro Ottawa TFC",tags:["Materials","Azzurra"],metadata:{hex:"#978d74",Color:"Brown",label:"Castoro Ottawa TFC",value:"Castoro Ottawa TFC",Material:"Fenix",zoomIconColor:"White"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Castoro Ottawa TFC",visible:!0,enabled:!0},{assetId:"33cabc33-9612-4627-8ef3-98f17eb1dba9",name:"Grigio Efeso TFB",tags:["Materials","Azzurra"],metadata:{hex:"#babbbc",Color:"Grey",label:"Grigio Efeso TFB",value:"Grigio Efeso TFB",Material:"Fenix",zoomIconColor:"White","hasDefaultConfiguration#UI_Fenix Countertop":"Fenix"},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Grigio Efeso TFB",visible:!0,enabled:!0},{assetId:"a4bd5da2-8770-4ea1-8401-1ae6451f77a7",name:"Bianco Male TFA",tags:["Materials","Azzurra"],metadata:{hex:"#eeeeee",Color:"White",label:"Bianco Male TFA",value:"Bianco Male TFA",Material:"Fenix",zoomIconColor:"Dark Grey",hasDefaultConfiguration:""},fileSize:95548,tagids:["9fca857a-c51c-46f5-b559-8f8f9e5930e7","d6b2f429-2141-4580-a84f-211f65654822"],type:"item",label:"Bianco Male TFA",visible:!0,enabled:!0},{assetId:"0ce7c193-db9d-47cc-9437-75a2b1bc9e97",name:"Matte White",tags:["solid-surface","Common"],metadata:{hex:"#ffffff",Color:"White",Label:"Matte White",value:"Matte White",Material:"Solid-Surface",hasDefaultConfiguration:""},fileSize:95548,tagids:["0f737be8-5c86-47f5-8f27-a052423caca4","09c52be0-bd79-434c-8e7e-ca8e17250bb3"],type:"item",label:"Matte White",visible:!0,enabled:!0},{assetId:"057340d6-8ebb-4db8-8845-61d7290cb9bc",name:"Gloss White",tags:["solid-surface","Common"],metadata:{hex:"#ffffff",Color:"White",Label:"Gloss White",value:"Gloss White",Material:"Solid-Surface"},fileSize:95548,tagids:["0f737be8-5c86-47f5-8f27-a052423caca4","09c52be0-bd79-434c-8e7e-ca8e17250bb3"],type:"item",label:"Gloss White",visible:!0,enabled:!0}],defaultValue:{assetId:""},global:{id:"1c23523d-560d-46ac-b085-2d8fa40fddd6",type:"Global",name:"Global",metadata:[]},visible:!0,enabled:!0,hiddenValues:["f9ea63c0-82c6-4d0f-9b51-fcee32e8cc28"],disabledValues:[],value:{assetId:"be20009d-8b5e-42b4-b429-4846fcd9fd9d",type:"item"}},{id:"e48e2d24-2a9b-4426-b7c7-5052f5d65a7e",type:"String",name:"UIGrouping",metadata:{},blacklist:[],values:[],defaultValue:"",global:{id:"e48e2d24-2a9b-4426-b7c7-5052f5d65a7e",type:"Global",name:"Global",metadata:[]},visible:!0,enabled:!0,hiddenValues:[],disabledValues:[],value:`[{"section":"Select Model","sort":"1","groups":[{"groupName":"Model","order":"1","type":"combined","options":[{"option":"Conceptsize","label":"Size","optionName":"UI_Conceptsize","order":"1","type":"simple","typeComponent":"filtration","values":{"24":"24-29\\"","30":"30-39\\"","40":"40-49\\"","50":"50-59\\"","60":"60-69\\"","70":"70-79\\"","80":"80-89\\"","90":"90+\\""},"valuesArray":[{"value":"24","additionalFilter":"","label":"24-29\\""},{"value":"30","additionalFilter":"","label":"30-39\\""},{"value":"40","additionalFilter":"","label":"40-49\\""},{"value":"50","additionalFilter":"","label":"50-59\\""},{"value":"60","additionalFilter":"","label":"60-69\\""},{"value":"70","additionalFilter":"","label":"70-79\\""},{"value":"80","additionalFilter":"","label":"80-89\\""},{"value":"90","additionalFilter":"","label":"90+\\""}]},{"option":"Style","label":"Style","optionName":"UI_Style","order":"2","type":"simple","typeComponent":"filtration","values":{"1-Drawer":"1-Drawer","2-Drawer":"2-Drawer","Single basin":"Single basin","Double basin":"Double basin","Asymmetrical":"Asymmetrical","Open Shelving":"Open Shelving","Multi-level":"Multi-level"},"valuesArray":[{"value":"1-Drawer","additionalFilter":"","label":"1-Drawer"},{"value":"2-Drawer","additionalFilter":"","label":"2-Drawer"},{"value":"Single basin","additionalFilter":"","label":"Single basin"},{"value":"Double basin","additionalFilter":"","label":"Double basin"},{"value":"Asymmetrical","additionalFilter":"","label":"Asymmetrical"},{"value":"Open Shelving","additionalFilter":"","label":"Open Shelving"},{"value":"Multi-level","additionalFilter":"","label":"Multi-level"}]},{"option":"Model","label":"Model","optionName":"UI_Model","order":"3","type":"simple","typeComponent":"list","values":{"24 1DW Slim_24":"Urban Duplex · 24'' 1-Drawer Slim","24 2DW_24":"Urban Duplex · 24'' 2-Drawer","28 1DW Slim_24":"Urban Duplex · 28'' 1-Drawer Slim","28 1DW_24":"Urban Duplex · 28'' 1-Drawer","28 2DW_24":"Urban Duplex · 28'' 2-Drawer","32 1DW Slim_30":"Urban Duplex · 32'' 1-Drawer Slim","32 1DW_30":"Urban Duplex · 32'' 1-Drawer","34 1DW OSS_30":"Urban Duplex · 34'' 1-Drawer OSS","34 1DW Slim_30":"Urban Duplex · 34'' 1-Drawer Slim","34 1DW_30":"Urban Duplex · 34'' 1-Drawer","34 2DW OSS_30":"Urban Duplex · 34'' 2-Drawer OSS","36 1DW Slim_30":"Urban Duplex · 36'' 1-Drawer Slim","36 2DW_30":"Urban Duplex · 36'' 2-Drawer","42 1DW 1_40":"Urban Duplex · 42'' 1-Drawer 1","42 1DW Slim 1_40":"Urban Duplex · 42'' 1-Drawer Slim 1","42 1DW Slim OSS_40":"Urban Duplex · 42'' 1-Drawer Slim OSS","42 1DW Slim_40":"Urban Duplex · 42'' 1-Drawer Slim","42 1DW_40":"Urban Duplex · 42'' 1-Drawer","46 1DW Slim_40":"Urban Duplex · 46'' 1-Drawer Slim","48 1DW Double_40":"Urban Duplex · 48'' 1-Drawer Double","48 1DW Slim_40":"Urban Duplex · 48'' 1-Drawer Slim","48 2DW Double_40":"Urban Duplex · 48'' 2-Drawer Double","48 2DW_40":"Urban Duplex · 48'' 2-Drawer","51 2DW_50":"Urban Duplex · 51'' 2-Drawer","53 1DW OSS_50":"Urban Duplex · 53'' 1-Drawer OSS","55 1DW Slim 1_50":"Urban Duplex · 55'' 1-Drawer Slim 1","55 1DW Slim_50":"Urban Duplex · 55'' 1-Drawer Slim","55 2DW OSS_50":"Urban Duplex · 55'' 2-Drawer OSS","57 1DW Multi-level_50":"Urban Duplex · 57'' 1-Drawer Multi-level","59 1DW Double OSS_50":"Urban Duplex · 59'' 1-Drawer Double OSS","59 1DW Slim_50":"Urban Duplex · 59'' 1-Drawer Slim","59 1DW_50":"Urban Duplex · 59'' 1-Drawer","59 2DW Double_50":"Urban Duplex · 59'' 2-Drawer Double","61 1DW Multi-Level_60":"Urban Duplex · 61'' 1-Drawer Multi-Level","63 1DW Double_60":"Urban Duplex · 63'' 1-Drawer Double","63 1DW Slim 1_60":"Urban Duplex · 63'' 1-Drawer Slim 1","63 1DW Slim 2_60":"Urban Duplex · 63'' 1-Drawer Slim 2","63 1DW Slim_60":"Urban Duplex · 63'' 1-Drawer Slim","63 2DW_60":"Urban Duplex · 63'' 2-Drawer","65 1DW OSS_60":"Urban Duplex · 65'' 1-Drawer OSS","65 2DW_60":"Urban Duplex · 65'' 2-Drawer","67 1DW Slim_60":"Urban Duplex · 67'' 1-Drawer Slim","69 2DW Double_60":"Urban Duplex · 69'' 2-Drawer Double","70 1DW Multi-Level_70":"Urban Duplex · 70'' 1-Drawer Multi-Level","71 1DW Multi-Level_70":"Urban Duplex · 71'' 1-Drawer Multi-Level","71 1DW OSS_70":"Urban Duplex · 71'' 1-Drawer OSS","71 2DW Double_70":"Urban Duplex · 71'' 2-Drawer Double","71 2DW_70":"Urban Duplex · 71'' 2-Drawer","73 1DW Slim_70":"Urban Duplex · 73'' 1-Drawer Slim","73 2DW_70":"Urban Duplex · 73'' 2-Drawer","75 1DW Slim_70":"Urban Duplex · 75'' 1-Drawer Slim","77 2DW Double_70":"Urban Duplex · 77'' 2-Drawer Double","79 1DW Double_70":"Urban Duplex · 79'' 1-Drawer Double","79 2DW_70":"Urban Duplex · 79'' 2-Drawer","83 1DW Slim Double 1_80":"Urban Duplex · 83'' 1-Drawer Slim Double 1","83 1DW Slim Double_80":"Urban Duplex · 83'' 1-Drawer Slim Double","83 1DW Slim_80":"Urban Duplex · 83'' 1-Drawer Slim","83 2DW Double_80":"Urban Duplex · 83'' 2-Drawer Double","83 2DW_80":"Urban Duplex · 83'' 2-Drawer","85 1DW Slim OSS_80":"Urban Duplex · 85'' 1-Drawer Slim OSS","87 1DW Double_80":"Urban Duplex · 87'' 1-Drawer Double","87 2DW Double_80":"Urban Duplex · 87'' 2-Drawer Double","89 2DW_80":"Urban Duplex · 89'' 2-Drawer","94 1DW Multi-Level_90":"Urban Duplex · 94'' 1-Drawer Multi-Level","95 1DW Double_90":"Urban Duplex · 95'' 1-Drawer Double","95 2DW Double 1_90":"Urban Duplex · 95'' 2-Drawer Double 1","95 2DW Double_90":"Urban Duplex · 95'' 2-Drawer Double","97 1DW Slim 1_90":"Urban Duplex · 97'' 1-Drawer Slim 1","97 1DW Slim_90":"Urban Duplex · 97'' 1-Drawer Slim","97 1DW_90":"Urban Duplex · 97'' 1-Drawer","99 2DW OSS_90":"Urban Duplex · 99'' 2-Drawer OSS"},"valuesArray":[{"value":"24 1DW Slim_24","additionalFilter":"1-Drawer, Single Basin","label":"Urban Duplex · 24'' 1-Drawer Slim"},{"value":"24 2DW_24","additionalFilter":"2-Drawer, Single Basin","label":"Urban Duplex · 24'' 2-Drawer"},{"value":"28 1DW Slim_24","additionalFilter":"1-Drawer, Single Basin","label":"Urban Duplex · 28'' 1-Drawer Slim"},{"value":"28 1DW_24","additionalFilter":"1-Drawer, Single Basin","label":"Urban Duplex · 28'' 1-Drawer"},{"value":"28 2DW_24","additionalFilter":"2-Drawer, Single Basin","label":"Urban Duplex · 28'' 2-Drawer"},{"value":"32 1DW Slim_30","additionalFilter":"1-Drawer, Single Basin","label":"Urban Duplex · 32'' 1-Drawer Slim"},{"value":"32 1DW_30","additionalFilter":"1-Drawer, Single Basin","label":"Urban Duplex · 32'' 1-Drawer"},{"value":"34 1DW OSS_30","additionalFilter":"1-Drawer, Single Basin, Open Shelving, Asymmetrical","label":"Urban Duplex · 34'' 1-Drawer OSS"},{"value":"34 1DW Slim_30","additionalFilter":"1-Drawer, Single Basin, Asymmetrical, Open Shelving","label":"Urban Duplex · 34'' 1-Drawer Slim"},{"value":"34 1DW_30","additionalFilter":"1-Drawer, Single Basin, Asymmetrical, Open Shelving","label":"Urban Duplex · 34'' 1-Drawer"},{"value":"34 2DW OSS_30","additionalFilter":"2-Drawer, Single Basin, Open Shelving, Asymmetrical","label":"Urban Duplex · 34'' 2-Drawer OSS"},{"value":"36 1DW Slim_30","additionalFilter":"1-Drawer, Single Basin","label":"Urban Duplex · 36'' 1-Drawer Slim"},{"value":"36 2DW_30","additionalFilter":"2-Drawer, Single Basin","label":"Urban Duplex · 36'' 2-Drawer"},{"value":"42 1DW 1_40","additionalFilter":"1-Drawer, Single Basin","label":"Urban Duplex · 42'' 1-Drawer 1"},{"value":"42 1DW Slim 1_40","additionalFilter":"1-Drawer, Single Basin","label":"Urban Duplex · 42'' 1-Drawer Slim 1"},{"value":"42 1DW Slim OSS_40","additionalFilter":"1-Drawer, Single Basin, Open Shelving, Asymmetrical","label":"Urban Duplex · 42'' 1-Drawer Slim OSS"},{"value":"42 1DW Slim_40","additionalFilter":"1-Drawer, Single Basin, Asymmetrical","label":"Urban Duplex · 42'' 1-Drawer Slim"},{"value":"42 1DW_40","additionalFilter":"1-Drawer, Single Basin, Asymmetrical","label":"Urban Duplex · 42'' 1-Drawer"},{"value":"46 1DW Slim_40","additionalFilter":"1-Drawer, Single Basin, Asymmetrical","label":"Urban Duplex · 46'' 1-Drawer Slim"},{"value":"48 1DW Double_40","additionalFilter":"1-Drawer, Double basin","label":"Urban Duplex · 48'' 1-Drawer Double"},{"value":"48 1DW Slim_40","additionalFilter":"1-Drawer, Single Basin","label":"Urban Duplex · 48'' 1-Drawer Slim"},{"value":"48 2DW Double_40","additionalFilter":"2-Drawer, Double basin","label":"Urban Duplex · 48'' 2-Drawer Double"},{"value":"48 2DW_40","additionalFilter":"2-Drawer, Single Basin, Asymmetrical","label":"Urban Duplex · 48'' 2-Drawer"},{"value":"51 2DW_50","additionalFilter":"2-Drawer, Single Basin, Asymmetrical","label":"Urban Duplex · 51'' 2-Drawer"},{"value":"53 1DW OSS_50","additionalFilter":"1-Drawer, Single Basin, Asymmetrical, Open Shelving","label":"Urban Duplex · 53'' 1-Drawer OSS"},{"value":"55 1DW Slim 1_50","additionalFilter":"1-Drawer, Single Basin, Asymmetrical","label":"Urban Duplex · 55'' 1-Drawer Slim 1"},{"value":"55 1DW Slim_50","additionalFilter":"1-Drawer, Single Basin, Asymmetrical","label":"Urban Duplex · 55'' 1-Drawer Slim"},{"value":"55 2DW OSS_50","additionalFilter":"2-Drawer, Single Basin, Open Shelving, Asymmetrical","label":"Urban Duplex · 55'' 2-Drawer OSS"},{"value":"57 1DW Multi-level_50","additionalFilter":"1-Drawer, Single Basin, Multi-level","label":"Urban Duplex · 57'' 1-Drawer Multi-level"},{"value":"59 1DW Double OSS_50","additionalFilter":"1-Drawer, Double basin, Open Shelving","label":"Urban Duplex · 59'' 1-Drawer Double OSS"},{"value":"59 1DW Slim_50","additionalFilter":"1-Drawer, Single Basin, Asymmetrical","label":"Urban Duplex · 59'' 1-Drawer Slim"},{"value":"59 1DW_50","additionalFilter":"1-Drawer, Single Basin, Asymmetrical","label":"Urban Duplex · 59'' 1-Drawer"},{"value":"59 2DW Double_50","additionalFilter":"2-Drawer, Double basin","label":"Urban Duplex · 59'' 2-Drawer Double"},{"value":"61 1DW Multi-Level_60","additionalFilter":"1-Drawer, Single basin, Multi-level, Open Shelving","label":"Urban Duplex · 61'' 1-Drawer Multi-Level"},{"value":"63 1DW Double_60","additionalFilter":"1-Drawer, Double basin","label":"Urban Duplex · 63'' 1-Drawer Double"},{"value":"63 1DW Slim 1_60","additionalFilter":"1-Drawer, Single basin, Asymmetrical","label":"Urban Duplex · 63'' 1-Drawer Slim 1"},{"value":"63 1DW Slim 2_60","additionalFilter":"1-Drawer, Single basin, Asymmetrical","label":"Urban Duplex · 63'' 1-Drawer Slim 2"},{"value":"63 1DW Slim_60","additionalFilter":"1-Drawer, Single basin, Asymmetrical","label":"Urban Duplex · 63'' 1-Drawer Slim"},{"value":"63 2DW_60","additionalFilter":"2-Drawer, Single basin, Asymmetrical","label":"Urban Duplex · 63'' 2-Drawer"},{"value":"65 1DW OSS_60","additionalFilter":"1-Drawer, Single basin, Asymmetrical, Open Shelving","label":"Urban Duplex · 65'' 1-Drawer OSS"},{"value":"65 2DW_60","additionalFilter":"2-Drawer, Single basin, Asymmetrical","label":"Urban Duplex · 65'' 2-Drawer"},{"value":"67 1DW Slim_60","additionalFilter":"1-Drawer, Single basin, Asymmetrical","label":"Urban Duplex · 67'' 1-Drawer Slim"},{"value":"69 2DW Double_60","additionalFilter":"2-Drawer, Double basin","label":"Urban Duplex · 69'' 2-Drawer Double"},{"value":"70 1DW Multi-Level_70","additionalFilter":"1-Drawer, Single basin, Multi-Level","label":"Urban Duplex · 70'' 1-Drawer Multi-Level"},{"value":"71 1DW Multi-Level_70","additionalFilter":"1-Drawer, Single basin, Multi-Level","label":"Urban Duplex · 71'' 1-Drawer Multi-Level"},{"value":"71 1DW OSS_70","additionalFilter":"1-Drawer, Single basin, Asymmetrical, Open Shelving","label":"Urban Duplex · 71'' 1-Drawer OSS"},{"value":"71 2DW Double_70","additionalFilter":"2-Drawer, Double basin","label":"Urban Duplex · 71'' 2-Drawer Double"},{"value":"71 2DW_70","additionalFilter":"2-Drawer, Single basin, Asymmetrical","label":"Urban Duplex · 71'' 2-Drawer"},{"value":"73 1DW Slim_70","additionalFilter":"1-Drawer, Single basin, Asymmetrical","label":"Urban Duplex · 73'' 1-Drawer Slim"},{"value":"73 2DW_70","additionalFilter":"2-Drawer, Single basin, Asymmetrical","label":"Urban Duplex · 73'' 2-Drawer"},{"value":"75 1DW Slim_70","additionalFilter":"1-Drawer, Single basin, Asymmetrical","label":"Urban Duplex · 75'' 1-Drawer Slim"},{"value":"77 2DW Double_70","additionalFilter":"2-Drawer, Double basin","label":"Urban Duplex · 77'' 2-Drawer Double"},{"value":"79 1DW Double_70","additionalFilter":"1-Drawer, Double basin","label":"Urban Duplex · 79'' 1-Drawer Double"},{"value":"79 2DW_70","additionalFilter":"2-Drawer, Single basin, Asymmetrical","label":"Urban Duplex · 79'' 2-Drawer"},{"value":"83 1DW Slim Double 1_80","additionalFilter":"1-Drawer, Double basin","label":"Urban Duplex · 83'' 1-Drawer Slim Double 1"},{"value":"83 1DW Slim Double_80","additionalFilter":"1-Drawer, Double basin","label":"Urban Duplex · 83'' 1-Drawer Slim Double"},{"value":"83 1DW Slim_80","additionalFilter":"1-Drawer, Single basin, Asymmetrical","label":"Urban Duplex · 83'' 1-Drawer Slim"},{"value":"83 2DW Double_80","additionalFilter":"2-Drawer, Double basin","label":"Urban Duplex · 83'' 2-Drawer Double"},{"value":"83 2DW_80","additionalFilter":"2-Drawer, Single basin, Asymmetrical","label":"Urban Duplex · 83'' 2-Drawer"},{"value":"85 1DW Slim OSS_80","additionalFilter":"1-Drawer, Single basin, Asymmetrical, Open Shelving","label":"Urban Duplex · 85'' 1-Drawer Slim OSS"},{"value":"87 1DW Double_80","additionalFilter":"1-Drawer, Double basin","label":"Urban Duplex · 87'' 1-Drawer Double"},{"value":"87 2DW Double_80","additionalFilter":"2-Drawer, Double basin","label":"Urban Duplex · 87'' 2-Drawer Double"},{"value":"89 2DW_80","additionalFilter":"2-Drawer, Single basin, Asymmetrical","label":"Urban Duplex · 89'' 2-Drawer"},{"value":"94 1DW Multi-Level_90","additionalFilter":"1-Drawer, Single basin, Multi-Level","label":"Urban Duplex · 94'' 1-Drawer Multi-Level"},{"value":"95 1DW Double_90","additionalFilter":"1-Drawer, Double basin","label":"Urban Duplex · 95'' 1-Drawer Double"},{"value":"95 2DW Double 1_90","additionalFilter":"2-Drawer, Double basin","label":"Urban Duplex · 95'' 2-Drawer Double 1"},{"value":"95 2DW Double_90","additionalFilter":"2-Drawer, Double basin","label":"Urban Duplex · 95'' 2-Drawer Double"},{"value":"97 1DW Slim 1_90","additionalFilter":"1-Drawer, Single basin, Asymmetrical","label":"Urban Duplex · 97'' 1-Drawer Slim 1"},{"value":"97 1DW Slim_90","additionalFilter":"1-Drawer, Single basin, Asymmetrical","label":"Urban Duplex · 97'' 1-Drawer Slim"},{"value":"97 1DW_90","additionalFilter":"1-Drawer, Single basin, Asymmetrical","label":"Urban Duplex · 97'' 1-Drawer"},{"value":"99 2DW OSS_90","additionalFilter":"2-Drawer, Single basin, Asymmetrical, Open Shelving","label":"Urban Duplex · 99'' 2-Drawer OSS"}]}]}],"enabledCTA":true},{"section":"Select Cabinet Colors","sort":"2","groups":[{"groupName":"Select Color for Each Panel","order":"1","type":"combined","options":[{"option":"Base Panel","label":"Base Panel","optionName":"UI_Base Panel","order":"1","type":"simple","typeComponent":"material","values":{"Colortech Bianco 10B":"Colortech Bianco 10B","Colortech Grigio fume 10F":"Colortech Grigio fume 10F","Cemento Cenere 1A1":"Cemento Cenere 1A1","Cemento Tortora 1A2":"Cemento Tortora 1A2","Cemento Creta 1A3":"Cemento Creta 1A3","Cemento Oltremare 1A4":"Cemento Oltremare 1A4","Cemento Ghiaccio 1A5":"Cemento Ghiaccio 1A5","Pietra Piasentina Grigio Chiaro 1AA":"Pietra Piasentina Grigio Chiaro 1AA","Pietra Piasentina Grigio Scuro 1AB":"Pietra Piasentina Grigio Scuro 1AB","Castagno chiaro 1C1":"Castagno chiaro 1C1","Castagno Malto 1C2":"Castagno Malto 1C2","Castagno Scuro 1C3":"Castagno Scuro 1C3","Eucalipto Naturale 1E1":"Eucalipto Naturale 1E1","Eucalipto Affumicato 1E2":"Eucalipto Affumicato 1E2","Paulownia Seppia 1F2":"Paulownia Seppia 1F2","Noce Rigato Chiaro 1N1":"Noce Rigato Chiaro 1N1","Noce rigato Canaletto Naturale 1N2":"Noce rigato Canaletto Naturale 1N2","Noce Rigato Grigio 1N3":"Noce Rigato Grigio 1N3","Nodato spaccato Biondo 1NA":"Nodato spaccato Biondo 1NA","Nodato spaccato Tabacco 1NB":"Nodato spaccato Tabacco 1NB","Noce Tavola Antico Chiaro 1ND":"Noce Tavola Antico Chiaro 1ND","Noce Tavola Antico Scuro 1NE":"Noce Tavola Antico Scuro 1NE","Rovere Dogato Bianco 1P0":"Rovere Dogato Bianco 1P0","Rovere Dogato Grigio 1P1":"Rovere Dogato Grigio 1P1","Rovere Dogato Naturale 1P3":"Rovere Dogato Naturale 1P3","Pelle Pecari Tortora 1PE":"Pelle Pecari Tortora 1PE","Rigatino Naturale 1RN":"Rigatino Naturale 1RN","Rigatino Tabacco 1RP":"Rigatino Tabacco 1RP","Rigatino Beton 1RQ":"Rigatino Beton 1RQ","Rovere Sherwood Chiaro 1S1":"Rovere Sherwood Chiaro 1S1","Rovere Sherwood Scuro 1S2":"Rovere Sherwood Scuro 1S2","Rovere Sherwood Castano 1S3":"Rovere Sherwood Castano 1S3","Agata BD MT":"Agata BD MT","Aragosta 77 MT":"Aragosta 77 MT","Arancio Zucca 09 MT":"Arancio Zucca 09 MT","Ardesia DD MT":"Ardesia DD MT","Argilla DR MT":"Argilla DR MT","Bianco 0B MT":"Bianco 0B MT","Bianco Calce DA MT":"Bianco Calce DA MT","Bianco Male FA MT":"Bianco Male FA MT","Blu Artico 37 MT":"Blu Artico 37 MT","Blu Avio 41 MT":"Blu Avio 41 MT","Blu Laguna A7 MT":"Blu Laguna A7 MT","Blu Oltremare BG MT":"Blu Oltremare BG MT","Blu Pavone A6 MT":"Blu Pavone A6 MT","Blu Reale 48 MT":"Blu Reale 48 MT","Cacao 05 MT":"Cacao 05 MT","Cacao Orinoco FF MT":"Cacao Orinoco FF MT","Canapa 94 MT":"Canapa 94 MT","Canyon 90 MT":"Canyon 90 MT","Carbone 43 MT":"Carbone 43 MT","Carta da Zucchero 47 MT":"Carta da Zucchero 47 MT","Castoro Ottawa FC MT":"Castoro Ottawa FC MT","Cenere 92 MT":"Cenere 92 MT","Giallo Curry 08 MT":"Giallo Curry 08 MT","Grigio Bromo FE MT":"Grigio Bromo FE MT","Grigio Chiaro A8 MT":"Grigio Chiaro A8 MT","Grigio Efeso FB MT":"Grigio Efeso FB MT","Grigio Grafite 02 MT":"Grigio Grafite 02 MT","Grigio Lavagna A9 MT":"Grigio Lavagna A9 MT","Grigio Londra FD MT":"Grigio Londra FD MT","Grigio Luce 07 MT":"Grigio Luce 07 MT","Grigio Perla 33 MT":"Grigio Perla 33 MT","Grigio Pioggia 80 MT":"Grigio Pioggia 80 MT","Grigio Talpa B5 MT":"Grigio Talpa B5 MT","Juta DP MT":"Juta DP MT","Marrone Havana 79 MT":"Marrone Havana 79 MT","Mattone 10 MT":"Mattone 10 MT","Metallizzato Alluminio M1 MT":"Metallizzato Alluminio M1 MT","Metallizzato Antracite M5 MT":"Metallizzato Antracite M5 MT","Metallizzato Bronzo M4 MT":"Metallizzato Bronzo M4 MT","Metallizzato Copper M7 MT":"Metallizzato Copper M7 MT","Metallizzato Creta M6 MT":"Metallizzato Creta M6 MT","Nebbia 91 MT":"Nebbia 91 MT","Nero 03 MT":"Nero 03 MT","Platino DF MT":"Platino DF MT","Roccia CE MT":"Roccia CE MT","Rosa Etoile 45 MT":"Rosa Etoile 45 MT","Rosa Retro 46 MT":"Rosa Retro 46 MT","Rosso Fuoco 21 MT":"Rosso Fuoco 21 MT","Rosso Jaipur FH MT":"Rosso Jaipur FH MT","Rosso Rubino 19 MT":"Rosso Rubino 19 MT","Terra DB MT":"Terra DB MT","Titanio 93 MT":"Titanio 93 MT","Torba DS MT":"Torba DS MT","Tortora BE MT":"Tortora BE MT","Verde Comodoro FG MT":"Verde Comodoro FG MT","Verde Ghiaia 31 MT":"Verde Ghiaia 31 MT","Verde Polvere 34 MT":"Verde Polvere 34 MT","Verde Salvia 42 MT":"Verde Salvia 42 MT","Agata BD GL":"Agata BD GL","Aragosta 77 GL":"Aragosta 77 GL","Arancio Zucca 09 GL":"Arancio Zucca 09 GL","Ardesia DD GL":"Ardesia DD GL","Argilla DR GL":"Argilla DR GL","Bianco 0B GL":"Bianco 0B GL","Bianco Calce DA GL":"Bianco Calce DA GL","Bianco Male FA GL":"Bianco Male FA GL","Blu Artico 37 GL":"Blu Artico 37 GL","Blu Avio 41 GL":"Blu Avio 41 GL","Blu Laguna A7 GL":"Blu Laguna A7 GL","Blu Oltremare BG GL":"Blu Oltremare BG GL","Blu Pavone A6 GL":"Blu Pavone A6 GL","Blu Reale 48 GL":"Blu Reale 48 GL","Cacao 05 GL":"Cacao 05 GL","Cacao Orinoco FF GL":"Cacao Orinoco FF GL","Canapa 94 GL":"Canapa 94 GL","Canyon 90 GL":"Canyon 90 GL","Carbone 43 GL":"Carbone 43 GL","Carta da Zucchero 47 GL":"Carta da Zucchero 47 GL","Castoro Ottawa FC GL":"Castoro Ottawa FC GL","Cenere 92 GL":"Cenere 92 GL","Giallo Curry 08 GL":"Giallo Curry 08 GL","Grigio Bromo FE GL":"Grigio Bromo FE GL","Grigio Chiaro A8 GL":"Grigio Chiaro A8 GL","Grigio Efeso FB GL":"Grigio Efeso FB GL","Grigio Grafite 02 GL":"Grigio Grafite 02 GL","Grigio Lavagna A9 GL":"Grigio Lavagna A9 GL","Grigio Londra FD GL":"Grigio Londra FD GL","Grigio Luce 07 GL":"Grigio Luce 07 GL","Grigio Perla 33 GL":"Grigio Perla 33 GL","Grigio Pioggia 80 GL":"Grigio Pioggia 80 GL","Grigio Talpa B5 GL":"Grigio Talpa B5 GL","Juta DP GL":"Juta DP GL","Marrone Havana 79 GL":"Marrone Havana 79 GL","Mattone 10 GL":"Mattone 10 GL","Metallizzato Alluminio M1 GL":"Metallizzato Alluminio M1 GL","Metallizzato Antracite M5 GL":"Metallizzato Antracite M5 GL","Metallizzato Bronzo M4 GL":"Metallizzato Bronzo M4 GL","Metallizzato Copper M7 GL":"Metallizzato Copper M7 GL","Metallizzato Creta M6 GL":"Metallizzato Creta M6 GL","Nebbia 91 GL":"Nebbia 91 GL","Nero 03 GL":"Nero 03 GL","Platino DF GL":"Platino DF GL","Roccia CE GL":"Roccia CE GL","Rosa Etoile 45 GL":"Rosa Etoile 45 GL","Rosa Retro 46 GL":"Rosa Retro 46 GL","Rosso Fuoco 21 GL":"Rosso Fuoco 21 GL","Rosso Jaipur FH GL":"Rosso Jaipur FH GL","Rosso Rubino 19 GL":"Rosso Rubino 19 GL","Terra DB GL":"Terra DB GL","Titanio 93 GL":"Titanio 93 GL","Torba DS GL":"Torba DS GL","Tortora BE GL":"Tortora BE GL","Verde Comodoro FG GL":"Verde Comodoro FG GL","Verde Ghiaia 31 GL":"Verde Ghiaia 31 GL","Verde Polvere 34 GL":"Verde Polvere 34 GL","Verde Salvia 42 GL":"Verde Salvia 42 GL","Agata BD ST":"Agata BD ST","Aragosta 77 ST":"Aragosta 77 ST","Arancio Zucca 09 ST":"Arancio Zucca 09 ST","Ardesia DD ST":"Ardesia DD ST","Argilla DR ST":"Argilla DR ST","Bianco 0B ST":"Bianco 0B ST","Bianco Calce DA ST":"Bianco Calce DA ST","Bianco Male FA ST":"Bianco Male FA ST","Blu Artico 37 ST":"Blu Artico 37 ST","Blu Avio 41 ST":"Blu Avio 41 ST","Blu Laguna A7 ST":"Blu Laguna A7 ST","Blu Oltremare BG ST":"Blu Oltremare BG ST","Blu Pavone A6 ST":"Blu Pavone A6 ST","Blu Reale 48 ST":"Blu Reale 48 ST","Cacao 05 ST":"Cacao 05 ST","Cacao Orinoco FF ST":"Cacao Orinoco FF ST","Canapa 94 ST":"Canapa 94 ST","Canyon 90 ST":"Canyon 90 ST","Carbone 43 ST":"Carbone 43 ST","Carta da Zucchero 47 ST":"Carta da Zucchero 47 ST","Castoro Ottawa FC ST":"Castoro Ottawa FC ST","Cenere 92 ST":"Cenere 92 ST","Giallo Curry 08 ST":"Giallo Curry 08 ST","Grigio Bromo FE ST":"Grigio Bromo FE ST","Grigio Chiaro A8 ST":"Grigio Chiaro A8 ST","Grigio Efeso FB ST":"Grigio Efeso FB ST","Grigio Grafite 02 ST":"Grigio Grafite 02 ST","Grigio Lavagna A9 ST":"Grigio Lavagna A9 ST","Grigio Londra FD ST":"Grigio Londra FD ST","Grigio Luce 07 ST":"Grigio Luce 07 ST","Grigio Perla 33 ST":"Grigio Perla 33 ST","Grigio Pioggia 80 ST":"Grigio Pioggia 80 ST","Grigio Talpa B5 ST":"Grigio Talpa B5 ST","Juta DP ST":"Juta DP ST","Marrone Havana 79 ST":"Marrone Havana 79 ST","Mattone 10 ST":"Mattone 10 ST","Metallizzato Alluminio M1 ST":"Metallizzato Alluminio M1 ST","Metallizzato Antracite M5 ST":"Metallizzato Antracite M5 ST","Metallizzato Bronzo M4 ST":"Metallizzato Bronzo M4 ST","Metallizzato Copper M7 ST":"Metallizzato Copper M7 ST","Metallizzato Creta M6 ST":"Metallizzato Creta M6 ST","Nebbia 91 ST":"Nebbia 91 ST","Nero 03 ST":"Nero 03 ST","Platino DF ST":"Platino DF ST","Roccia CE ST":"Roccia CE ST","Rosa Etoile 45 ST":"Rosa Etoile 45 ST","Rosa Retro 46 ST":"Rosa Retro 46 ST","Rosso Fuoco 21 ST":"Rosso Fuoco 21 ST","Rosso Jaipur FH ST":"Rosso Jaipur FH ST","Rosso Rubino 19 ST":"Rosso Rubino 19 ST","Terra DB ST":"Terra DB ST","Titanio 93 ST":"Titanio 93 ST","Torba DS ST":"Torba DS ST","Tortora BE ST":"Tortora BE ST","Verde Comodoro FG ST":"Verde Comodoro FG ST","Verde Ghiaia 31 ST":"Verde Ghiaia 31 ST","Verde Polvere 34 ST":"Verde Polvere 34 ST","Verde Salvia 42 ST":"Verde Salvia 42 ST","Metal acciaio 2MA":"Metal acciaio 2MA","Metal piombo 2MB":"Metal piombo 2MB","Metal titanio 2MC":"Metal titanio 2MC","Metal bronzo 2MD":"Metal bronzo 2MD","Rovere Monet TK3":"Rovere Monet TK3","Rovere Slavonia TK6":"Rovere Slavonia TK6","Ardesia TKF":"Ardesia TKF","Noce Savoia TKG":"Noce Savoia TKG","Pulpis Chiaro TKH":"Pulpis Chiaro TKH","Pulpis Scuro TKJ":"Pulpis Scuro TKJ","Rovere Valdweg TKK":"Rovere Valdweg TKK","Rovere Alba TKL":"Rovere Alba TKL","Noce Sinfonia TKM":"Noce Sinfonia TKM","Brera Brown TKN":"Brera Brown TKN","Cepp Stone TKP":"Cepp Stone TKP","Rox Black TKQ":"Rox Black TKQ","Rovere Eucalipto 01A":"Rovere Eucalipto 01A","Rovere Bianco 06A":"Rovere Bianco 06A","Rovere Naturale 06B":"Rovere Naturale 06B","Rovere Sabbia 06C":"Rovere Sabbia 06C","Rovere Cenere 06D":"Rovere Cenere 06D","Rovere Avena 06E":"Rovere Avena 06E","Rovere Fumo 06F":"Rovere Fumo 06F","Rovere Carbone 06G":"Rovere Carbone 06G","Rovere Moka 06H":"Rovere Moka 06H","Rovere Nero 06J":"Rovere Nero 06J"},"valuesArray":[{"value":"Colortech Bianco 10B","additionalFilter":"","label":"Colortech Bianco 10B"},{"value":"Colortech Grigio fume 10F","additionalFilter":"","label":"Colortech Grigio fume 10F"},{"value":"Cemento Cenere 1A1","additionalFilter":"","label":"Cemento Cenere 1A1"},{"value":"Cemento Tortora 1A2","additionalFilter":"","label":"Cemento Tortora 1A2"},{"value":"Cemento Creta 1A3","additionalFilter":"","label":"Cemento Creta 1A3"},{"value":"Cemento Oltremare 1A4","additionalFilter":"","label":"Cemento Oltremare 1A4"},{"value":"Cemento Ghiaccio 1A5","additionalFilter":"","label":"Cemento Ghiaccio 1A5"},{"value":"Pietra Piasentina Grigio Chiaro 1AA","additionalFilter":"","label":"Pietra Piasentina Grigio Chiaro 1AA"},{"value":"Pietra Piasentina Grigio Scuro 1AB","additionalFilter":"","label":"Pietra Piasentina Grigio Scuro 1AB"},{"value":"Castagno chiaro 1C1","additionalFilter":"","label":"Castagno chiaro 1C1"},{"value":"Castagno Malto 1C2","additionalFilter":"","label":"Castagno Malto 1C2"},{"value":"Castagno Scuro 1C3","additionalFilter":"","label":"Castagno Scuro 1C3"},{"value":"Eucalipto Naturale 1E1","additionalFilter":"","label":"Eucalipto Naturale 1E1"},{"value":"Eucalipto Affumicato 1E2","additionalFilter":"","label":"Eucalipto Affumicato 1E2"},{"value":"Paulownia Seppia 1F2","additionalFilter":"","label":"Paulownia Seppia 1F2"},{"value":"Noce Rigato Chiaro 1N1","additionalFilter":"","label":"Noce Rigato Chiaro 1N1"},{"value":"Noce rigato Canaletto Naturale 1N2","additionalFilter":"","label":"Noce rigato Canaletto Naturale 1N2"},{"value":"Noce Rigato Grigio 1N3","additionalFilter":"","label":"Noce Rigato Grigio 1N3"},{"value":"Nodato spaccato Biondo 1NA","additionalFilter":"","label":"Nodato spaccato Biondo 1NA"},{"value":"Nodato spaccato Tabacco 1NB","additionalFilter":"","label":"Nodato spaccato Tabacco 1NB"},{"value":"Noce Tavola Antico Chiaro 1ND","additionalFilter":"","label":"Noce Tavola Antico Chiaro 1ND"},{"value":"Noce Tavola Antico Scuro 1NE","additionalFilter":"","label":"Noce Tavola Antico Scuro 1NE"},{"value":"Rovere Dogato Bianco 1P0","additionalFilter":"","label":"Rovere Dogato Bianco 1P0"},{"value":"Rovere Dogato Grigio 1P1","additionalFilter":"","label":"Rovere Dogato Grigio 1P1"},{"value":"Rovere Dogato Naturale 1P3","additionalFilter":"","label":"Rovere Dogato Naturale 1P3"},{"value":"Pelle Pecari Tortora 1PE","additionalFilter":"","label":"Pelle Pecari Tortora 1PE"},{"value":"Rigatino Naturale 1RN","additionalFilter":"","label":"Rigatino Naturale 1RN"},{"value":"Rigatino Tabacco 1RP","additionalFilter":"","label":"Rigatino Tabacco 1RP"},{"value":"Rigatino Beton 1RQ","additionalFilter":"","label":"Rigatino Beton 1RQ"},{"value":"Rovere Sherwood Chiaro 1S1","additionalFilter":"","label":"Rovere Sherwood Chiaro 1S1"},{"value":"Rovere Sherwood Scuro 1S2","additionalFilter":"","label":"Rovere Sherwood Scuro 1S2"},{"value":"Rovere Sherwood Castano 1S3","additionalFilter":"","label":"Rovere Sherwood Castano 1S3"},{"value":"Agata BD MT","additionalFilter":"","label":"Agata BD MT"},{"value":"Aragosta 77 MT","additionalFilter":"","label":"Aragosta 77 MT"},{"value":"Arancio Zucca 09 MT","additionalFilter":"","label":"Arancio Zucca 09 MT"},{"value":"Ardesia DD MT","additionalFilter":"","label":"Ardesia DD MT"},{"value":"Argilla DR MT","additionalFilter":"","label":"Argilla DR MT"},{"value":"Bianco 0B MT","additionalFilter":"","label":"Bianco 0B MT"},{"value":"Bianco Calce DA MT","additionalFilter":"","label":"Bianco Calce DA MT"},{"value":"Bianco Male FA MT","additionalFilter":"","label":"Bianco Male FA MT"},{"value":"Blu Artico 37 MT","additionalFilter":"","label":"Blu Artico 37 MT"},{"value":"Blu Avio 41 MT","additionalFilter":"","label":"Blu Avio 41 MT"},{"value":"Blu Laguna A7 MT","additionalFilter":"","label":"Blu Laguna A7 MT"},{"value":"Blu Oltremare BG MT","additionalFilter":"","label":"Blu Oltremare BG MT"},{"value":"Blu Pavone A6 MT","additionalFilter":"","label":"Blu Pavone A6 MT"},{"value":"Blu Reale 48 MT","additionalFilter":"","label":"Blu Reale 48 MT"},{"value":"Cacao 05 MT","additionalFilter":"","label":"Cacao 05 MT"},{"value":"Cacao Orinoco FF MT","additionalFilter":"","label":"Cacao Orinoco FF MT"},{"value":"Canapa 94 MT","additionalFilter":"","label":"Canapa 94 MT"},{"value":"Canyon 90 MT","additionalFilter":"","label":"Canyon 90 MT"},{"value":"Carbone 43 MT","additionalFilter":"","label":"Carbone 43 MT"},{"value":"Carta da Zucchero 47 MT","additionalFilter":"","label":"Carta da Zucchero 47 MT"},{"value":"Castoro Ottawa FC MT","additionalFilter":"","label":"Castoro Ottawa FC MT"},{"value":"Cenere 92 MT","additionalFilter":"","label":"Cenere 92 MT"},{"value":"Giallo Curry 08 MT","additionalFilter":"","label":"Giallo Curry 08 MT"},{"value":"Grigio Bromo FE MT","additionalFilter":"","label":"Grigio Bromo FE MT"},{"value":"Grigio Chiaro A8 MT","additionalFilter":"","label":"Grigio Chiaro A8 MT"},{"value":"Grigio Efeso FB MT","additionalFilter":"","label":"Grigio Efeso FB MT"},{"value":"Grigio Grafite 02 MT","additionalFilter":"","label":"Grigio Grafite 02 MT"},{"value":"Grigio Lavagna A9 MT","additionalFilter":"","label":"Grigio Lavagna A9 MT"},{"value":"Grigio Londra FD MT","additionalFilter":"","label":"Grigio Londra FD MT"},{"value":"Grigio Luce 07 MT","additionalFilter":"","label":"Grigio Luce 07 MT"},{"value":"Grigio Perla 33 MT","additionalFilter":"","label":"Grigio Perla 33 MT"},{"value":"Grigio Pioggia 80 MT","additionalFilter":"","label":"Grigio Pioggia 80 MT"},{"value":"Grigio Talpa B5 MT","additionalFilter":"","label":"Grigio Talpa B5 MT"},{"value":"Juta DP MT","additionalFilter":"","label":"Juta DP MT"},{"value":"Marrone Havana 79 MT","additionalFilter":"","label":"Marrone Havana 79 MT"},{"value":"Mattone 10 MT","additionalFilter":"","label":"Mattone 10 MT"},{"value":"Metallizzato Alluminio M1 MT","additionalFilter":"","label":"Metallizzato Alluminio M1 MT"},{"value":"Metallizzato Antracite M5 MT","additionalFilter":"","label":"Metallizzato Antracite M5 MT"},{"value":"Metallizzato Bronzo M4 MT","additionalFilter":"","label":"Metallizzato Bronzo M4 MT"},{"value":"Metallizzato Copper M7 MT","additionalFilter":"","label":"Metallizzato Copper M7 MT"},{"value":"Metallizzato Creta M6 MT","additionalFilter":"","label":"Metallizzato Creta M6 MT"},{"value":"Nebbia 91 MT","additionalFilter":"","label":"Nebbia 91 MT"},{"value":"Nero 03 MT","additionalFilter":"","label":"Nero 03 MT"},{"value":"Platino DF MT","additionalFilter":"","label":"Platino DF MT"},{"value":"Roccia CE MT","additionalFilter":"","label":"Roccia CE MT"},{"value":"Rosa Etoile 45 MT","additionalFilter":"","label":"Rosa Etoile 45 MT"},{"value":"Rosa Retro 46 MT","additionalFilter":"","label":"Rosa Retro 46 MT"},{"value":"Rosso Fuoco 21 MT","additionalFilter":"","label":"Rosso Fuoco 21 MT"},{"value":"Rosso Jaipur FH MT","additionalFilter":"","label":"Rosso Jaipur FH MT"},{"value":"Rosso Rubino 19 MT","additionalFilter":"","label":"Rosso Rubino 19 MT"},{"value":"Terra DB MT","additionalFilter":"","label":"Terra DB MT"},{"value":"Titanio 93 MT","additionalFilter":"","label":"Titanio 93 MT"},{"value":"Torba DS MT","additionalFilter":"","label":"Torba DS MT"},{"value":"Tortora BE MT","additionalFilter":"","label":"Tortora BE MT"},{"value":"Verde Comodoro FG MT","additionalFilter":"","label":"Verde Comodoro FG MT"},{"value":"Verde Ghiaia 31 MT","additionalFilter":"","label":"Verde Ghiaia 31 MT"},{"value":"Verde Polvere 34 MT","additionalFilter":"","label":"Verde Polvere 34 MT"},{"value":"Verde Salvia 42 MT","additionalFilter":"","label":"Verde Salvia 42 MT"},{"value":"Agata BD GL","additionalFilter":"","label":"Agata BD GL"},{"value":"Aragosta 77 GL","additionalFilter":"","label":"Aragosta 77 GL"},{"value":"Arancio Zucca 09 GL","additionalFilter":"","label":"Arancio Zucca 09 GL"},{"value":"Ardesia DD GL","additionalFilter":"","label":"Ardesia DD GL"},{"value":"Argilla DR GL","additionalFilter":"","label":"Argilla DR GL"},{"value":"Bianco 0B GL","additionalFilter":"","label":"Bianco 0B GL"},{"value":"Bianco Calce DA GL","additionalFilter":"","label":"Bianco Calce DA GL"},{"value":"Bianco Male FA GL","additionalFilter":"","label":"Bianco Male FA GL"},{"value":"Blu Artico 37 GL","additionalFilter":"","label":"Blu Artico 37 GL"},{"value":"Blu Avio 41 GL","additionalFilter":"","label":"Blu Avio 41 GL"},{"value":"Blu Laguna A7 GL","additionalFilter":"","label":"Blu Laguna A7 GL"},{"value":"Blu Oltremare BG GL","additionalFilter":"","label":"Blu Oltremare BG GL"},{"value":"Blu Pavone A6 GL","additionalFilter":"","label":"Blu Pavone A6 GL"},{"value":"Blu Reale 48 GL","additionalFilter":"","label":"Blu Reale 48 GL"},{"value":"Cacao 05 GL","additionalFilter":"","label":"Cacao 05 GL"},{"value":"Cacao Orinoco FF GL","additionalFilter":"","label":"Cacao Orinoco FF GL"},{"value":"Canapa 94 GL","additionalFilter":"","label":"Canapa 94 GL"},{"value":"Canyon 90 GL","additionalFilter":"","label":"Canyon 90 GL"},{"value":"Carbone 43 GL","additionalFilter":"","label":"Carbone 43 GL"},{"value":"Carta da Zucchero 47 GL","additionalFilter":"","label":"Carta da Zucchero 47 GL"},{"value":"Castoro Ottawa FC GL","additionalFilter":"","label":"Castoro Ottawa FC GL"},{"value":"Cenere 92 GL","additionalFilter":"","label":"Cenere 92 GL"},{"value":"Giallo Curry 08 GL","additionalFilter":"","label":"Giallo Curry 08 GL"},{"value":"Grigio Bromo FE GL","additionalFilter":"","label":"Grigio Bromo FE GL"},{"value":"Grigio Chiaro A8 GL","additionalFilter":"","label":"Grigio Chiaro A8 GL"},{"value":"Grigio Efeso FB GL","additionalFilter":"","label":"Grigio Efeso FB GL"},{"value":"Grigio Grafite 02 GL","additionalFilter":"","label":"Grigio Grafite 02 GL"},{"value":"Grigio Lavagna A9 GL","additionalFilter":"","label":"Grigio Lavagna A9 GL"},{"value":"Grigio Londra FD GL","additionalFilter":"","label":"Grigio Londra FD GL"},{"value":"Grigio Luce 07 GL","additionalFilter":"","label":"Grigio Luce 07 GL"},{"value":"Grigio Perla 33 GL","additionalFilter":"","label":"Grigio Perla 33 GL"},{"value":"Grigio Pioggia 80 GL","additionalFilter":"","label":"Grigio Pioggia 80 GL"},{"value":"Grigio Talpa B5 GL","additionalFilter":"","label":"Grigio Talpa B5 GL"},{"value":"Juta DP GL","additionalFilter":"","label":"Juta DP GL"},{"value":"Marrone Havana 79 GL","additionalFilter":"","label":"Marrone Havana 79 GL"},{"value":"Mattone 10 GL","additionalFilter":"","label":"Mattone 10 GL"},{"value":"Metallizzato Alluminio M1 GL","additionalFilter":"","label":"Metallizzato Alluminio M1 GL"},{"value":"Metallizzato Antracite M5 GL","additionalFilter":"","label":"Metallizzato Antracite M5 GL"},{"value":"Metallizzato Bronzo M4 GL","additionalFilter":"","label":"Metallizzato Bronzo M4 GL"},{"value":"Metallizzato Copper M7 GL","additionalFilter":"","label":"Metallizzato Copper M7 GL"},{"value":"Metallizzato Creta M6 GL","additionalFilter":"","label":"Metallizzato Creta M6 GL"},{"value":"Nebbia 91 GL","additionalFilter":"","label":"Nebbia 91 GL"},{"value":"Nero 03 GL","additionalFilter":"","label":"Nero 03 GL"},{"value":"Platino DF GL","additionalFilter":"","label":"Platino DF GL"},{"value":"Roccia CE GL","additionalFilter":"","label":"Roccia CE GL"},{"value":"Rosa Etoile 45 GL","additionalFilter":"","label":"Rosa Etoile 45 GL"},{"value":"Rosa Retro 46 GL","additionalFilter":"","label":"Rosa Retro 46 GL"},{"value":"Rosso Fuoco 21 GL","additionalFilter":"","label":"Rosso Fuoco 21 GL"},{"value":"Rosso Jaipur FH GL","additionalFilter":"","label":"Rosso Jaipur FH GL"},{"value":"Rosso Rubino 19 GL","additionalFilter":"","label":"Rosso Rubino 19 GL"},{"value":"Terra DB GL","additionalFilter":"","label":"Terra DB GL"},{"value":"Titanio 93 GL","additionalFilter":"","label":"Titanio 93 GL"},{"value":"Torba DS GL","additionalFilter":"","label":"Torba DS GL"},{"value":"Tortora BE GL","additionalFilter":"","label":"Tortora BE GL"},{"value":"Verde Comodoro FG GL","additionalFilter":"","label":"Verde Comodoro FG GL"},{"value":"Verde Ghiaia 31 GL","additionalFilter":"","label":"Verde Ghiaia 31 GL"},{"value":"Verde Polvere 34 GL","additionalFilter":"","label":"Verde Polvere 34 GL"},{"value":"Verde Salvia 42 GL","additionalFilter":"","label":"Verde Salvia 42 GL"},{"value":"Agata BD ST","additionalFilter":"","label":"Agata BD ST"},{"value":"Aragosta 77 ST","additionalFilter":"","label":"Aragosta 77 ST"},{"value":"Arancio Zucca 09 ST","additionalFilter":"","label":"Arancio Zucca 09 ST"},{"value":"Ardesia DD ST","additionalFilter":"","label":"Ardesia DD ST"},{"value":"Argilla DR ST","additionalFilter":"","label":"Argilla DR ST"},{"value":"Bianco 0B ST","additionalFilter":"","label":"Bianco 0B ST"},{"value":"Bianco Calce DA ST","additionalFilter":"","label":"Bianco Calce DA ST"},{"value":"Bianco Male FA ST","additionalFilter":"","label":"Bianco Male FA ST"},{"value":"Blu Artico 37 ST","additionalFilter":"","label":"Blu Artico 37 ST"},{"value":"Blu Avio 41 ST","additionalFilter":"","label":"Blu Avio 41 ST"},{"value":"Blu Laguna A7 ST","additionalFilter":"","label":"Blu Laguna A7 ST"},{"value":"Blu Oltremare BG ST","additionalFilter":"","label":"Blu Oltremare BG ST"},{"value":"Blu Pavone A6 ST","additionalFilter":"","label":"Blu Pavone A6 ST"},{"value":"Blu Reale 48 ST","additionalFilter":"","label":"Blu Reale 48 ST"},{"value":"Cacao 05 ST","additionalFilter":"","label":"Cacao 05 ST"},{"value":"Cacao Orinoco FF ST","additionalFilter":"","label":"Cacao Orinoco FF ST"},{"value":"Canapa 94 ST","additionalFilter":"","label":"Canapa 94 ST"},{"value":"Canyon 90 ST","additionalFilter":"","label":"Canyon 90 ST"},{"value":"Carbone 43 ST","additionalFilter":"","label":"Carbone 43 ST"},{"value":"Carta da Zucchero 47 ST","additionalFilter":"","label":"Carta da Zucchero 47 ST"},{"value":"Castoro Ottawa FC ST","additionalFilter":"","label":"Castoro Ottawa FC ST"},{"value":"Cenere 92 ST","additionalFilter":"","label":"Cenere 92 ST"},{"value":"Giallo Curry 08 ST","additionalFilter":"","label":"Giallo Curry 08 ST"},{"value":"Grigio Bromo FE ST","additionalFilter":"","label":"Grigio Bromo FE ST"},{"value":"Grigio Chiaro A8 ST","additionalFilter":"","label":"Grigio Chiaro A8 ST"},{"value":"Grigio Efeso FB ST","additionalFilter":"","label":"Grigio Efeso FB ST"},{"value":"Grigio Grafite 02 ST","additionalFilter":"","label":"Grigio Grafite 02 ST"},{"value":"Grigio Lavagna A9 ST","additionalFilter":"","label":"Grigio Lavagna A9 ST"},{"value":"Grigio Londra FD ST","additionalFilter":"","label":"Grigio Londra FD ST"},{"value":"Grigio Luce 07 ST","additionalFilter":"","label":"Grigio Luce 07 ST"},{"value":"Grigio Perla 33 ST","additionalFilter":"","label":"Grigio Perla 33 ST"},{"value":"Grigio Pioggia 80 ST","additionalFilter":"","label":"Grigio Pioggia 80 ST"},{"value":"Grigio Talpa B5 ST","additionalFilter":"","label":"Grigio Talpa B5 ST"},{"value":"Juta DP ST","additionalFilter":"","label":"Juta DP ST"},{"value":"Marrone Havana 79 ST","additionalFilter":"","label":"Marrone Havana 79 ST"},{"value":"Mattone 10 ST","additionalFilter":"","label":"Mattone 10 ST"},{"value":"Metallizzato Alluminio M1 ST","additionalFilter":"","label":"Metallizzato Alluminio M1 ST"},{"value":"Metallizzato Antracite M5 ST","additionalFilter":"","label":"Metallizzato Antracite M5 ST"},{"value":"Metallizzato Bronzo M4 ST","additionalFilter":"","label":"Metallizzato Bronzo M4 ST"},{"value":"Metallizzato Copper M7 ST","additionalFilter":"","label":"Metallizzato Copper M7 ST"},{"value":"Metallizzato Creta M6 ST","additionalFilter":"","label":"Metallizzato Creta M6 ST"},{"value":"Nebbia 91 ST","additionalFilter":"","label":"Nebbia 91 ST"},{"value":"Nero 03 ST","additionalFilter":"","label":"Nero 03 ST"},{"value":"Platino DF ST","additionalFilter":"","label":"Platino DF ST"},{"value":"Roccia CE ST","additionalFilter":"","label":"Roccia CE ST"},{"value":"Rosa Etoile 45 ST","additionalFilter":"","label":"Rosa Etoile 45 ST"},{"value":"Rosa Retro 46 ST","additionalFilter":"","label":"Rosa Retro 46 ST"},{"value":"Rosso Fuoco 21 ST","additionalFilter":"","label":"Rosso Fuoco 21 ST"},{"value":"Rosso Jaipur FH ST","additionalFilter":"","label":"Rosso Jaipur FH ST"},{"value":"Rosso Rubino 19 ST","additionalFilter":"","label":"Rosso Rubino 19 ST"},{"value":"Terra DB ST","additionalFilter":"","label":"Terra DB ST"},{"value":"Titanio 93 ST","additionalFilter":"","label":"Titanio 93 ST"},{"value":"Torba DS ST","additionalFilter":"","label":"Torba DS ST"},{"value":"Tortora BE ST","additionalFilter":"","label":"Tortora BE ST"},{"value":"Verde Comodoro FG ST","additionalFilter":"","label":"Verde Comodoro FG ST"},{"value":"Verde Ghiaia 31 ST","additionalFilter":"","label":"Verde Ghiaia 31 ST"},{"value":"Verde Polvere 34 ST","additionalFilter":"","label":"Verde Polvere 34 ST"},{"value":"Verde Salvia 42 ST","additionalFilter":"","label":"Verde Salvia 42 ST"},{"value":"Metal acciaio 2MA","additionalFilter":"","label":"Metal acciaio 2MA"},{"value":"Metal piombo 2MB","additionalFilter":"","label":"Metal piombo 2MB"},{"value":"Metal titanio 2MC","additionalFilter":"","label":"Metal titanio 2MC"},{"value":"Metal bronzo 2MD","additionalFilter":"","label":"Metal bronzo 2MD"},{"value":"Rovere Monet TK3","additionalFilter":"","label":"Rovere Monet TK3"},{"value":"Rovere Slavonia TK6","additionalFilter":"","label":"Rovere Slavonia TK6"},{"value":"Ardesia TKF","additionalFilter":"","label":"Ardesia TKF"},{"value":"Noce Savoia TKG","additionalFilter":"","label":"Noce Savoia TKG"},{"value":"Pulpis Chiaro TKH","additionalFilter":"","label":"Pulpis Chiaro TKH"},{"value":"Pulpis Scuro TKJ","additionalFilter":"","label":"Pulpis Scuro TKJ"},{"value":"Rovere Valdweg TKK","additionalFilter":"","label":"Rovere Valdweg TKK"},{"value":"Rovere Alba TKL","additionalFilter":"","label":"Rovere Alba TKL"},{"value":"Noce Sinfonia TKM","additionalFilter":"","label":"Noce Sinfonia TKM"},{"value":"Brera Brown TKN","additionalFilter":"","label":"Brera Brown TKN"},{"value":"Cepp Stone TKP","additionalFilter":"","label":"Cepp Stone TKP"},{"value":"Rox Black TKQ","additionalFilter":"","label":"Rox Black TKQ"},{"value":"Rovere Eucalipto 01A","additionalFilter":"","label":"Rovere Eucalipto 01A"},{"value":"Rovere Bianco 06A","additionalFilter":"","label":"Rovere Bianco 06A"},{"value":"Rovere Naturale 06B","additionalFilter":"","label":"Rovere Naturale 06B"},{"value":"Rovere Sabbia 06C","additionalFilter":"","label":"Rovere Sabbia 06C"},{"value":"Rovere Cenere 06D","additionalFilter":"","label":"Rovere Cenere 06D"},{"value":"Rovere Avena 06E","additionalFilter":"","label":"Rovere Avena 06E"},{"value":"Rovere Fumo 06F","additionalFilter":"","label":"Rovere Fumo 06F"},{"value":"Rovere Carbone 06G","additionalFilter":"","label":"Rovere Carbone 06G"},{"value":"Rovere Moka 06H","additionalFilter":"","label":"Rovere Moka 06H"},{"value":"Rovere Nero 06J","additionalFilter":"","label":"Rovere Nero 06J"}]},{"option":"Lateral Panel","label":"Lateral Panel","optionName":"UI_Lateral Panel","order":"2","type":"simple","typeComponent":"material","values":{"Colortech Bianco 10B":"Colortech Bianco 10B","Colortech Grigio fume 10F":"Colortech Grigio fume 10F","Cemento Cenere 1A1":"Cemento Cenere 1A1","Cemento Tortora 1A2":"Cemento Tortora 1A2","Cemento Creta 1A3":"Cemento Creta 1A3","Cemento Oltremare 1A4":"Cemento Oltremare 1A4","Cemento Ghiaccio 1A5":"Cemento Ghiaccio 1A5","Pietra Piasentina Grigio Chiaro 1AA":"Pietra Piasentina Grigio Chiaro 1AA","Pietra Piasentina Grigio Scuro 1AB":"Pietra Piasentina Grigio Scuro 1AB","Castagno chiaro 1C1":"Castagno chiaro 1C1","Castagno Malto 1C2":"Castagno Malto 1C2","Castagno Scuro 1C3":"Castagno Scuro 1C3","Eucalipto Naturale 1E1":"Eucalipto Naturale 1E1","Eucalipto Affumicato 1E2":"Eucalipto Affumicato 1E2","Paulownia Seppia 1F2":"Paulownia Seppia 1F2","Noce Rigato Chiaro 1N1":"Noce Rigato Chiaro 1N1","Noce rigato Canaletto Naturale 1N2":"Noce rigato Canaletto Naturale 1N2","Noce Rigato Grigio 1N3":"Noce Rigato Grigio 1N3","Nodato spaccato Biondo 1NA":"Nodato spaccato Biondo 1NA","Nodato spaccato Tabacco 1NB":"Nodato spaccato Tabacco 1NB","Noce Tavola Antico Chiaro 1ND":"Noce Tavola Antico Chiaro 1ND","Noce Tavola Antico Scuro 1NE":"Noce Tavola Antico Scuro 1NE","Rovere Dogato Bianco 1P0":"Rovere Dogato Bianco 1P0","Rovere Dogato Grigio 1P1":"Rovere Dogato Grigio 1P1","Rovere Dogato Naturale 1P3":"Rovere Dogato Naturale 1P3","Pelle Pecari Tortora 1PE":"Pelle Pecari Tortora 1PE","Rigatino Naturale 1RN":"Rigatino Naturale 1RN","Rigatino Tabacco 1RP":"Rigatino Tabacco 1RP","Rigatino Beton 1RQ":"Rigatino Beton 1RQ","Rovere Sherwood Chiaro 1S1":"Rovere Sherwood Chiaro 1S1","Rovere Sherwood Scuro 1S2":"Rovere Sherwood Scuro 1S2","Rovere Sherwood Castano 1S3":"Rovere Sherwood Castano 1S3","Agata BD MT":"Agata BD MT","Aragosta 77 MT":"Aragosta 77 MT","Arancio Zucca 09 MT":"Arancio Zucca 09 MT","Ardesia DD MT":"Ardesia DD MT","Argilla DR MT":"Argilla DR MT","Bianco 0B MT":"Bianco 0B MT","Bianco Calce DA MT":"Bianco Calce DA MT","Bianco Male FA MT":"Bianco Male FA MT","Blu Artico 37 MT":"Blu Artico 37 MT","Blu Avio 41 MT":"Blu Avio 41 MT","Blu Laguna A7 MT":"Blu Laguna A7 MT","Blu Oltremare BG MT":"Blu Oltremare BG MT","Blu Pavone A6 MT":"Blu Pavone A6 MT","Blu Reale 48 MT":"Blu Reale 48 MT","Cacao 05 MT":"Cacao 05 MT","Cacao Orinoco FF MT":"Cacao Orinoco FF MT","Canapa 94 MT":"Canapa 94 MT","Canyon 90 MT":"Canyon 90 MT","Carbone 43 MT":"Carbone 43 MT","Carta da Zucchero 47 MT":"Carta da Zucchero 47 MT","Castoro Ottawa FC MT":"Castoro Ottawa FC MT","Cenere 92 MT":"Cenere 92 MT","Giallo Curry 08 MT":"Giallo Curry 08 MT","Grigio Bromo FE MT":"Grigio Bromo FE MT","Grigio Chiaro A8 MT":"Grigio Chiaro A8 MT","Grigio Efeso FB MT":"Grigio Efeso FB MT","Grigio Grafite 02 MT":"Grigio Grafite 02 MT","Grigio Lavagna A9 MT":"Grigio Lavagna A9 MT","Grigio Londra FD MT":"Grigio Londra FD MT","Grigio Luce 07 MT":"Grigio Luce 07 MT","Grigio Perla 33 MT":"Grigio Perla 33 MT","Grigio Pioggia 80 MT":"Grigio Pioggia 80 MT","Grigio Talpa B5 MT":"Grigio Talpa B5 MT","Juta DP MT":"Juta DP MT","Marrone Havana 79 MT":"Marrone Havana 79 MT","Mattone 10 MT":"Mattone 10 MT","Metallizzato Alluminio M1 MT":"Metallizzato Alluminio M1 MT","Metallizzato Antracite M5 MT":"Metallizzato Antracite M5 MT","Metallizzato Bronzo M4 MT":"Metallizzato Bronzo M4 MT","Metallizzato Copper M7 MT":"Metallizzato Copper M7 MT","Metallizzato Creta M6 MT":"Metallizzato Creta M6 MT","Nebbia 91 MT":"Nebbia 91 MT","Nero 03 MT":"Nero 03 MT","Platino DF MT":"Platino DF MT","Roccia CE MT":"Roccia CE MT","Rosa Etoile 45 MT":"Rosa Etoile 45 MT","Rosa Retro 46 MT":"Rosa Retro 46 MT","Rosso Fuoco 21 MT":"Rosso Fuoco 21 MT","Rosso Jaipur FH MT":"Rosso Jaipur FH MT","Rosso Rubino 19 MT":"Rosso Rubino 19 MT","Terra DB MT":"Terra DB MT","Titanio 93 MT":"Titanio 93 MT","Torba DS MT":"Torba DS MT","Tortora BE MT":"Tortora BE MT","Verde Comodoro FG MT":"Verde Comodoro FG MT","Verde Ghiaia 31 MT":"Verde Ghiaia 31 MT","Verde Polvere 34 MT":"Verde Polvere 34 MT","Verde Salvia 42 MT":"Verde Salvia 42 MT","Agata BD GL":"Agata BD GL","Aragosta 77 GL":"Aragosta 77 GL","Arancio Zucca 09 GL":"Arancio Zucca 09 GL","Ardesia DD GL":"Ardesia DD GL","Argilla DR GL":"Argilla DR GL","Bianco 0B GL":"Bianco 0B GL","Bianco Calce DA GL":"Bianco Calce DA GL","Bianco Male FA GL":"Bianco Male FA GL","Blu Artico 37 GL":"Blu Artico 37 GL","Blu Avio 41 GL":"Blu Avio 41 GL","Blu Laguna A7 GL":"Blu Laguna A7 GL","Blu Oltremare BG GL":"Blu Oltremare BG GL","Blu Pavone A6 GL":"Blu Pavone A6 GL","Blu Reale 48 GL":"Blu Reale 48 GL","Cacao 05 GL":"Cacao 05 GL","Cacao Orinoco FF GL":"Cacao Orinoco FF GL","Canapa 94 GL":"Canapa 94 GL","Canyon 90 GL":"Canyon 90 GL","Carbone 43 GL":"Carbone 43 GL","Carta da Zucchero 47 GL":"Carta da Zucchero 47 GL","Castoro Ottawa FC GL":"Castoro Ottawa FC GL","Cenere 92 GL":"Cenere 92 GL","Giallo Curry 08 GL":"Giallo Curry 08 GL","Grigio Bromo FE GL":"Grigio Bromo FE GL","Grigio Chiaro A8 GL":"Grigio Chiaro A8 GL","Grigio Efeso FB GL":"Grigio Efeso FB GL","Grigio Grafite 02 GL":"Grigio Grafite 02 GL","Grigio Lavagna A9 GL":"Grigio Lavagna A9 GL","Grigio Londra FD GL":"Grigio Londra FD GL","Grigio Luce 07 GL":"Grigio Luce 07 GL","Grigio Perla 33 GL":"Grigio Perla 33 GL","Grigio Pioggia 80 GL":"Grigio Pioggia 80 GL","Grigio Talpa B5 GL":"Grigio Talpa B5 GL","Juta DP GL":"Juta DP GL","Marrone Havana 79 GL":"Marrone Havana 79 GL","Mattone 10 GL":"Mattone 10 GL","Metallizzato Alluminio M1 GL":"Metallizzato Alluminio M1 GL","Metallizzato Antracite M5 GL":"Metallizzato Antracite M5 GL","Metallizzato Bronzo M4 GL":"Metallizzato Bronzo M4 GL","Metallizzato Copper M7 GL":"Metallizzato Copper M7 GL","Metallizzato Creta M6 GL":"Metallizzato Creta M6 GL","Nebbia 91 GL":"Nebbia 91 GL","Nero 03 GL":"Nero 03 GL","Platino DF GL":"Platino DF GL","Roccia CE GL":"Roccia CE GL","Rosa Etoile 45 GL":"Rosa Etoile 45 GL","Rosa Retro 46 GL":"Rosa Retro 46 GL","Rosso Fuoco 21 GL":"Rosso Fuoco 21 GL","Rosso Jaipur FH GL":"Rosso Jaipur FH GL","Rosso Rubino 19 GL":"Rosso Rubino 19 GL","Terra DB GL":"Terra DB GL","Titanio 93 GL":"Titanio 93 GL","Torba DS GL":"Torba DS GL","Tortora BE GL":"Tortora BE GL","Verde Comodoro FG GL":"Verde Comodoro FG GL","Verde Ghiaia 31 GL":"Verde Ghiaia 31 GL","Verde Polvere 34 GL":"Verde Polvere 34 GL","Verde Salvia 42 GL":"Verde Salvia 42 GL","Agata BD ST":"Agata BD ST","Aragosta 77 ST":"Aragosta 77 ST","Arancio Zucca 09 ST":"Arancio Zucca 09 ST","Ardesia DD ST":"Ardesia DD ST","Argilla DR ST":"Argilla DR ST","Bianco 0B ST":"Bianco 0B ST","Bianco Calce DA ST":"Bianco Calce DA ST","Bianco Male FA ST":"Bianco Male FA ST","Blu Artico 37 ST":"Blu Artico 37 ST","Blu Avio 41 ST":"Blu Avio 41 ST","Blu Laguna A7 ST":"Blu Laguna A7 ST","Blu Oltremare BG ST":"Blu Oltremare BG ST","Blu Pavone A6 ST":"Blu Pavone A6 ST","Blu Reale 48 ST":"Blu Reale 48 ST","Cacao 05 ST":"Cacao 05 ST","Cacao Orinoco FF ST":"Cacao Orinoco FF ST","Canapa 94 ST":"Canapa 94 ST","Canyon 90 ST":"Canyon 90 ST","Carbone 43 ST":"Carbone 43 ST","Carta da Zucchero 47 ST":"Carta da Zucchero 47 ST","Castoro Ottawa FC ST":"Castoro Ottawa FC ST","Cenere 92 ST":"Cenere 92 ST","Giallo Curry 08 ST":"Giallo Curry 08 ST","Grigio Bromo FE ST":"Grigio Bromo FE ST","Grigio Chiaro A8 ST":"Grigio Chiaro A8 ST","Grigio Efeso FB ST":"Grigio Efeso FB ST","Grigio Grafite 02 ST":"Grigio Grafite 02 ST","Grigio Lavagna A9 ST":"Grigio Lavagna A9 ST","Grigio Londra FD ST":"Grigio Londra FD ST","Grigio Luce 07 ST":"Grigio Luce 07 ST","Grigio Perla 33 ST":"Grigio Perla 33 ST","Grigio Pioggia 80 ST":"Grigio Pioggia 80 ST","Grigio Talpa B5 ST":"Grigio Talpa B5 ST","Juta DP ST":"Juta DP ST","Marrone Havana 79 ST":"Marrone Havana 79 ST","Mattone 10 ST":"Mattone 10 ST","Metallizzato Alluminio M1 ST":"Metallizzato Alluminio M1 ST","Metallizzato Antracite M5 ST":"Metallizzato Antracite M5 ST","Metallizzato Bronzo M4 ST":"Metallizzato Bronzo M4 ST","Metallizzato Copper M7 ST":"Metallizzato Copper M7 ST","Metallizzato Creta M6 ST":"Metallizzato Creta M6 ST","Nebbia 91 ST":"Nebbia 91 ST","Nero 03 ST":"Nero 03 ST","Platino DF ST":"Platino DF ST","Roccia CE ST":"Roccia CE ST","Rosa Etoile 45 ST":"Rosa Etoile 45 ST","Rosa Retro 46 ST":"Rosa Retro 46 ST","Rosso Fuoco 21 ST":"Rosso Fuoco 21 ST","Rosso Jaipur FH ST":"Rosso Jaipur FH ST","Rosso Rubino 19 ST":"Rosso Rubino 19 ST","Terra DB ST":"Terra DB ST","Titanio 93 ST":"Titanio 93 ST","Torba DS ST":"Torba DS ST","Tortora BE ST":"Tortora BE ST","Verde Comodoro FG ST":"Verde Comodoro FG ST","Verde Ghiaia 31 ST":"Verde Ghiaia 31 ST","Verde Polvere 34 ST":"Verde Polvere 34 ST","Verde Salvia 42 ST":"Verde Salvia 42 ST","Metal acciaio 2MA":"Metal acciaio 2MA","Metal piombo 2MB":"Metal piombo 2MB","Metal titanio 2MC":"Metal titanio 2MC","Metal bronzo 2MD":"Metal bronzo 2MD","Rovere Monet TK3":"Rovere Monet TK3","Rovere Slavonia TK6":"Rovere Slavonia TK6","Ardesia TKF":"Ardesia TKF","Noce Savoia TKG":"Noce Savoia TKG","Pulpis Chiaro TKH":"Pulpis Chiaro TKH","Pulpis Scuro TKJ":"Pulpis Scuro TKJ","Rovere Valdweg TKK":"Rovere Valdweg TKK","Rovere Alba TKL":"Rovere Alba TKL","Noce Sinfonia TKM":"Noce Sinfonia TKM","Brera Brown TKN":"Brera Brown TKN","Cepp Stone TKP":"Cepp Stone TKP","Rox Black TKQ":"Rox Black TKQ","Rovere Eucalipto 01A":"Rovere Eucalipto 01A","Rovere Bianco 06A":"Rovere Bianco 06A","Rovere Naturale 06B":"Rovere Naturale 06B","Rovere Sabbia 06C":"Rovere Sabbia 06C","Rovere Cenere 06D":"Rovere Cenere 06D","Rovere Avena 06E":"Rovere Avena 06E","Rovere Fumo 06F":"Rovere Fumo 06F","Rovere Carbone 06G":"Rovere Carbone 06G","Rovere Moka 06H":"Rovere Moka 06H","Rovere Nero 06J":"Rovere Nero 06J"},"valuesArray":[{"value":"Colortech Bianco 10B","additionalFilter":"","label":"Colortech Bianco 10B"},{"value":"Colortech Grigio fume 10F","additionalFilter":"","label":"Colortech Grigio fume 10F"},{"value":"Cemento Cenere 1A1","additionalFilter":"","label":"Cemento Cenere 1A1"},{"value":"Cemento Tortora 1A2","additionalFilter":"","label":"Cemento Tortora 1A2"},{"value":"Cemento Creta 1A3","additionalFilter":"","label":"Cemento Creta 1A3"},{"value":"Cemento Oltremare 1A4","additionalFilter":"","label":"Cemento Oltremare 1A4"},{"value":"Cemento Ghiaccio 1A5","additionalFilter":"","label":"Cemento Ghiaccio 1A5"},{"value":"Pietra Piasentina Grigio Chiaro 1AA","additionalFilter":"","label":"Pietra Piasentina Grigio Chiaro 1AA"},{"value":"Pietra Piasentina Grigio Scuro 1AB","additionalFilter":"","label":"Pietra Piasentina Grigio Scuro 1AB"},{"value":"Castagno chiaro 1C1","additionalFilter":"","label":"Castagno chiaro 1C1"},{"value":"Castagno Malto 1C2","additionalFilter":"","label":"Castagno Malto 1C2"},{"value":"Castagno Scuro 1C3","additionalFilter":"","label":"Castagno Scuro 1C3"},{"value":"Eucalipto Naturale 1E1","additionalFilter":"","label":"Eucalipto Naturale 1E1"},{"value":"Eucalipto Affumicato 1E2","additionalFilter":"","label":"Eucalipto Affumicato 1E2"},{"value":"Paulownia Seppia 1F2","additionalFilter":"","label":"Paulownia Seppia 1F2"},{"value":"Noce Rigato Chiaro 1N1","additionalFilter":"","label":"Noce Rigato Chiaro 1N1"},{"value":"Noce rigato Canaletto Naturale 1N2","additionalFilter":"","label":"Noce rigato Canaletto Naturale 1N2"},{"value":"Noce Rigato Grigio 1N3","additionalFilter":"","label":"Noce Rigato Grigio 1N3"},{"value":"Nodato spaccato Biondo 1NA","additionalFilter":"","label":"Nodato spaccato Biondo 1NA"},{"value":"Nodato spaccato Tabacco 1NB","additionalFilter":"","label":"Nodato spaccato Tabacco 1NB"},{"value":"Noce Tavola Antico Chiaro 1ND","additionalFilter":"","label":"Noce Tavola Antico Chiaro 1ND"},{"value":"Noce Tavola Antico Scuro 1NE","additionalFilter":"","label":"Noce Tavola Antico Scuro 1NE"},{"value":"Rovere Dogato Bianco 1P0","additionalFilter":"","label":"Rovere Dogato Bianco 1P0"},{"value":"Rovere Dogato Grigio 1P1","additionalFilter":"","label":"Rovere Dogato Grigio 1P1"},{"value":"Rovere Dogato Naturale 1P3","additionalFilter":"","label":"Rovere Dogato Naturale 1P3"},{"value":"Pelle Pecari Tortora 1PE","additionalFilter":"","label":"Pelle Pecari Tortora 1PE"},{"value":"Rigatino Naturale 1RN","additionalFilter":"","label":"Rigatino Naturale 1RN"},{"value":"Rigatino Tabacco 1RP","additionalFilter":"","label":"Rigatino Tabacco 1RP"},{"value":"Rigatino Beton 1RQ","additionalFilter":"","label":"Rigatino Beton 1RQ"},{"value":"Rovere Sherwood Chiaro 1S1","additionalFilter":"","label":"Rovere Sherwood Chiaro 1S1"},{"value":"Rovere Sherwood Scuro 1S2","additionalFilter":"","label":"Rovere Sherwood Scuro 1S2"},{"value":"Rovere Sherwood Castano 1S3","additionalFilter":"","label":"Rovere Sherwood Castano 1S3"},{"value":"Agata BD MT","additionalFilter":"","label":"Agata BD MT"},{"value":"Aragosta 77 MT","additionalFilter":"","label":"Aragosta 77 MT"},{"value":"Arancio Zucca 09 MT","additionalFilter":"","label":"Arancio Zucca 09 MT"},{"value":"Ardesia DD MT","additionalFilter":"","label":"Ardesia DD MT"},{"value":"Argilla DR MT","additionalFilter":"","label":"Argilla DR MT"},{"value":"Bianco 0B MT","additionalFilter":"","label":"Bianco 0B MT"},{"value":"Bianco Calce DA MT","additionalFilter":"","label":"Bianco Calce DA MT"},{"value":"Bianco Male FA MT","additionalFilter":"","label":"Bianco Male FA MT"},{"value":"Blu Artico 37 MT","additionalFilter":"","label":"Blu Artico 37 MT"},{"value":"Blu Avio 41 MT","additionalFilter":"","label":"Blu Avio 41 MT"},{"value":"Blu Laguna A7 MT","additionalFilter":"","label":"Blu Laguna A7 MT"},{"value":"Blu Oltremare BG MT","additionalFilter":"","label":"Blu Oltremare BG MT"},{"value":"Blu Pavone A6 MT","additionalFilter":"","label":"Blu Pavone A6 MT"},{"value":"Blu Reale 48 MT","additionalFilter":"","label":"Blu Reale 48 MT"},{"value":"Cacao 05 MT","additionalFilter":"","label":"Cacao 05 MT"},{"value":"Cacao Orinoco FF MT","additionalFilter":"","label":"Cacao Orinoco FF MT"},{"value":"Canapa 94 MT","additionalFilter":"","label":"Canapa 94 MT"},{"value":"Canyon 90 MT","additionalFilter":"","label":"Canyon 90 MT"},{"value":"Carbone 43 MT","additionalFilter":"","label":"Carbone 43 MT"},{"value":"Carta da Zucchero 47 MT","additionalFilter":"","label":"Carta da Zucchero 47 MT"},{"value":"Castoro Ottawa FC MT","additionalFilter":"","label":"Castoro Ottawa FC MT"},{"value":"Cenere 92 MT","additionalFilter":"","label":"Cenere 92 MT"},{"value":"Giallo Curry 08 MT","additionalFilter":"","label":"Giallo Curry 08 MT"},{"value":"Grigio Bromo FE MT","additionalFilter":"","label":"Grigio Bromo FE MT"},{"value":"Grigio Chiaro A8 MT","additionalFilter":"","label":"Grigio Chiaro A8 MT"},{"value":"Grigio Efeso FB MT","additionalFilter":"","label":"Grigio Efeso FB MT"},{"value":"Grigio Grafite 02 MT","additionalFilter":"","label":"Grigio Grafite 02 MT"},{"value":"Grigio Lavagna A9 MT","additionalFilter":"","label":"Grigio Lavagna A9 MT"},{"value":"Grigio Londra FD MT","additionalFilter":"","label":"Grigio Londra FD MT"},{"value":"Grigio Luce 07 MT","additionalFilter":"","label":"Grigio Luce 07 MT"},{"value":"Grigio Perla 33 MT","additionalFilter":"","label":"Grigio Perla 33 MT"},{"value":"Grigio Pioggia 80 MT","additionalFilter":"","label":"Grigio Pioggia 80 MT"},{"value":"Grigio Talpa B5 MT","additionalFilter":"","label":"Grigio Talpa B5 MT"},{"value":"Juta DP MT","additionalFilter":"","label":"Juta DP MT"},{"value":"Marrone Havana 79 MT","additionalFilter":"","label":"Marrone Havana 79 MT"},{"value":"Mattone 10 MT","additionalFilter":"","label":"Mattone 10 MT"},{"value":"Metallizzato Alluminio M1 MT","additionalFilter":"","label":"Metallizzato Alluminio M1 MT"},{"value":"Metallizzato Antracite M5 MT","additionalFilter":"","label":"Metallizzato Antracite M5 MT"},{"value":"Metallizzato Bronzo M4 MT","additionalFilter":"","label":"Metallizzato Bronzo M4 MT"},{"value":"Metallizzato Copper M7 MT","additionalFilter":"","label":"Metallizzato Copper M7 MT"},{"value":"Metallizzato Creta M6 MT","additionalFilter":"","label":"Metallizzato Creta M6 MT"},{"value":"Nebbia 91 MT","additionalFilter":"","label":"Nebbia 91 MT"},{"value":"Nero 03 MT","additionalFilter":"","label":"Nero 03 MT"},{"value":"Platino DF MT","additionalFilter":"","label":"Platino DF MT"},{"value":"Roccia CE MT","additionalFilter":"","label":"Roccia CE MT"},{"value":"Rosa Etoile 45 MT","additionalFilter":"","label":"Rosa Etoile 45 MT"},{"value":"Rosa Retro 46 MT","additionalFilter":"","label":"Rosa Retro 46 MT"},{"value":"Rosso Fuoco 21 MT","additionalFilter":"","label":"Rosso Fuoco 21 MT"},{"value":"Rosso Jaipur FH MT","additionalFilter":"","label":"Rosso Jaipur FH MT"},{"value":"Rosso Rubino 19 MT","additionalFilter":"","label":"Rosso Rubino 19 MT"},{"value":"Terra DB MT","additionalFilter":"","label":"Terra DB MT"},{"value":"Titanio 93 MT","additionalFilter":"","label":"Titanio 93 MT"},{"value":"Torba DS MT","additionalFilter":"","label":"Torba DS MT"},{"value":"Tortora BE MT","additionalFilter":"","label":"Tortora BE MT"},{"value":"Verde Comodoro FG MT","additionalFilter":"","label":"Verde Comodoro FG MT"},{"value":"Verde Ghiaia 31 MT","additionalFilter":"","label":"Verde Ghiaia 31 MT"},{"value":"Verde Polvere 34 MT","additionalFilter":"","label":"Verde Polvere 34 MT"},{"value":"Verde Salvia 42 MT","additionalFilter":"","label":"Verde Salvia 42 MT"},{"value":"Agata BD GL","additionalFilter":"","label":"Agata BD GL"},{"value":"Aragosta 77 GL","additionalFilter":"","label":"Aragosta 77 GL"},{"value":"Arancio Zucca 09 GL","additionalFilter":"","label":"Arancio Zucca 09 GL"},{"value":"Ardesia DD GL","additionalFilter":"","label":"Ardesia DD GL"},{"value":"Argilla DR GL","additionalFilter":"","label":"Argilla DR GL"},{"value":"Bianco 0B GL","additionalFilter":"","label":"Bianco 0B GL"},{"value":"Bianco Calce DA GL","additionalFilter":"","label":"Bianco Calce DA GL"},{"value":"Bianco Male FA GL","additionalFilter":"","label":"Bianco Male FA GL"},{"value":"Blu Artico 37 GL","additionalFilter":"","label":"Blu Artico 37 GL"},{"value":"Blu Avio 41 GL","additionalFilter":"","label":"Blu Avio 41 GL"},{"value":"Blu Laguna A7 GL","additionalFilter":"","label":"Blu Laguna A7 GL"},{"value":"Blu Oltremare BG GL","additionalFilter":"","label":"Blu Oltremare BG GL"},{"value":"Blu Pavone A6 GL","additionalFilter":"","label":"Blu Pavone A6 GL"},{"value":"Blu Reale 48 GL","additionalFilter":"","label":"Blu Reale 48 GL"},{"value":"Cacao 05 GL","additionalFilter":"","label":"Cacao 05 GL"},{"value":"Cacao Orinoco FF GL","additionalFilter":"","label":"Cacao Orinoco FF GL"},{"value":"Canapa 94 GL","additionalFilter":"","label":"Canapa 94 GL"},{"value":"Canyon 90 GL","additionalFilter":"","label":"Canyon 90 GL"},{"value":"Carbone 43 GL","additionalFilter":"","label":"Carbone 43 GL"},{"value":"Carta da Zucchero 47 GL","additionalFilter":"","label":"Carta da Zucchero 47 GL"},{"value":"Castoro Ottawa FC GL","additionalFilter":"","label":"Castoro Ottawa FC GL"},{"value":"Cenere 92 GL","additionalFilter":"","label":"Cenere 92 GL"},{"value":"Giallo Curry 08 GL","additionalFilter":"","label":"Giallo Curry 08 GL"},{"value":"Grigio Bromo FE GL","additionalFilter":"","label":"Grigio Bromo FE GL"},{"value":"Grigio Chiaro A8 GL","additionalFilter":"","label":"Grigio Chiaro A8 GL"},{"value":"Grigio Efeso FB GL","additionalFilter":"","label":"Grigio Efeso FB GL"},{"value":"Grigio Grafite 02 GL","additionalFilter":"","label":"Grigio Grafite 02 GL"},{"value":"Grigio Lavagna A9 GL","additionalFilter":"","label":"Grigio Lavagna A9 GL"},{"value":"Grigio Londra FD GL","additionalFilter":"","label":"Grigio Londra FD GL"},{"value":"Grigio Luce 07 GL","additionalFilter":"","label":"Grigio Luce 07 GL"},{"value":"Grigio Perla 33 GL","additionalFilter":"","label":"Grigio Perla 33 GL"},{"value":"Grigio Pioggia 80 GL","additionalFilter":"","label":"Grigio Pioggia 80 GL"},{"value":"Grigio Talpa B5 GL","additionalFilter":"","label":"Grigio Talpa B5 GL"},{"value":"Juta DP GL","additionalFilter":"","label":"Juta DP GL"},{"value":"Marrone Havana 79 GL","additionalFilter":"","label":"Marrone Havana 79 GL"},{"value":"Mattone 10 GL","additionalFilter":"","label":"Mattone 10 GL"},{"value":"Metallizzato Alluminio M1 GL","additionalFilter":"","label":"Metallizzato Alluminio M1 GL"},{"value":"Metallizzato Antracite M5 GL","additionalFilter":"","label":"Metallizzato Antracite M5 GL"},{"value":"Metallizzato Bronzo M4 GL","additionalFilter":"","label":"Metallizzato Bronzo M4 GL"},{"value":"Metallizzato Copper M7 GL","additionalFilter":"","label":"Metallizzato Copper M7 GL"},{"value":"Metallizzato Creta M6 GL","additionalFilter":"","label":"Metallizzato Creta M6 GL"},{"value":"Nebbia 91 GL","additionalFilter":"","label":"Nebbia 91 GL"},{"value":"Nero 03 GL","additionalFilter":"","label":"Nero 03 GL"},{"value":"Platino DF GL","additionalFilter":"","label":"Platino DF GL"},{"value":"Roccia CE GL","additionalFilter":"","label":"Roccia CE GL"},{"value":"Rosa Etoile 45 GL","additionalFilter":"","label":"Rosa Etoile 45 GL"},{"value":"Rosa Retro 46 GL","additionalFilter":"","label":"Rosa Retro 46 GL"},{"value":"Rosso Fuoco 21 GL","additionalFilter":"","label":"Rosso Fuoco 21 GL"},{"value":"Rosso Jaipur FH GL","additionalFilter":"","label":"Rosso Jaipur FH GL"},{"value":"Rosso Rubino 19 GL","additionalFilter":"","label":"Rosso Rubino 19 GL"},{"value":"Terra DB GL","additionalFilter":"","label":"Terra DB GL"},{"value":"Titanio 93 GL","additionalFilter":"","label":"Titanio 93 GL"},{"value":"Torba DS GL","additionalFilter":"","label":"Torba DS GL"},{"value":"Tortora BE GL","additionalFilter":"","label":"Tortora BE GL"},{"value":"Verde Comodoro FG GL","additionalFilter":"","label":"Verde Comodoro FG GL"},{"value":"Verde Ghiaia 31 GL","additionalFilter":"","label":"Verde Ghiaia 31 GL"},{"value":"Verde Polvere 34 GL","additionalFilter":"","label":"Verde Polvere 34 GL"},{"value":"Verde Salvia 42 GL","additionalFilter":"","label":"Verde Salvia 42 GL"},{"value":"Agata BD ST","additionalFilter":"","label":"Agata BD ST"},{"value":"Aragosta 77 ST","additionalFilter":"","label":"Aragosta 77 ST"},{"value":"Arancio Zucca 09 ST","additionalFilter":"","label":"Arancio Zucca 09 ST"},{"value":"Ardesia DD ST","additionalFilter":"","label":"Ardesia DD ST"},{"value":"Argilla DR ST","additionalFilter":"","label":"Argilla DR ST"},{"value":"Bianco 0B ST","additionalFilter":"","label":"Bianco 0B ST"},{"value":"Bianco Calce DA ST","additionalFilter":"","label":"Bianco Calce DA ST"},{"value":"Bianco Male FA ST","additionalFilter":"","label":"Bianco Male FA ST"},{"value":"Blu Artico 37 ST","additionalFilter":"","label":"Blu Artico 37 ST"},{"value":"Blu Avio 41 ST","additionalFilter":"","label":"Blu Avio 41 ST"},{"value":"Blu Laguna A7 ST","additionalFilter":"","label":"Blu Laguna A7 ST"},{"value":"Blu Oltremare BG ST","additionalFilter":"","label":"Blu Oltremare BG ST"},{"value":"Blu Pavone A6 ST","additionalFilter":"","label":"Blu Pavone A6 ST"},{"value":"Blu Reale 48 ST","additionalFilter":"","label":"Blu Reale 48 ST"},{"value":"Cacao 05 ST","additionalFilter":"","label":"Cacao 05 ST"},{"value":"Cacao Orinoco FF ST","additionalFilter":"","label":"Cacao Orinoco FF ST"},{"value":"Canapa 94 ST","additionalFilter":"","label":"Canapa 94 ST"},{"value":"Canyon 90 ST","additionalFilter":"","label":"Canyon 90 ST"},{"value":"Carbone 43 ST","additionalFilter":"","label":"Carbone 43 ST"},{"value":"Carta da Zucchero 47 ST","additionalFilter":"","label":"Carta da Zucchero 47 ST"},{"value":"Castoro Ottawa FC ST","additionalFilter":"","label":"Castoro Ottawa FC ST"},{"value":"Cenere 92 ST","additionalFilter":"","label":"Cenere 92 ST"},{"value":"Giallo Curry 08 ST","additionalFilter":"","label":"Giallo Curry 08 ST"},{"value":"Grigio Bromo FE ST","additionalFilter":"","label":"Grigio Bromo FE ST"},{"value":"Grigio Chiaro A8 ST","additionalFilter":"","label":"Grigio Chiaro A8 ST"},{"value":"Grigio Efeso FB ST","additionalFilter":"","label":"Grigio Efeso FB ST"},{"value":"Grigio Grafite 02 ST","additionalFilter":"","label":"Grigio Grafite 02 ST"},{"value":"Grigio Lavagna A9 ST","additionalFilter":"","label":"Grigio Lavagna A9 ST"},{"value":"Grigio Londra FD ST","additionalFilter":"","label":"Grigio Londra FD ST"},{"value":"Grigio Luce 07 ST","additionalFilter":"","label":"Grigio Luce 07 ST"},{"value":"Grigio Perla 33 ST","additionalFilter":"","label":"Grigio Perla 33 ST"},{"value":"Grigio Pioggia 80 ST","additionalFilter":"","label":"Grigio Pioggia 80 ST"},{"value":"Grigio Talpa B5 ST","additionalFilter":"","label":"Grigio Talpa B5 ST"},{"value":"Juta DP ST","additionalFilter":"","label":"Juta DP ST"},{"value":"Marrone Havana 79 ST","additionalFilter":"","label":"Marrone Havana 79 ST"},{"value":"Mattone 10 ST","additionalFilter":"","label":"Mattone 10 ST"},{"value":"Metallizzato Alluminio M1 ST","additionalFilter":"","label":"Metallizzato Alluminio M1 ST"},{"value":"Metallizzato Antracite M5 ST","additionalFilter":"","label":"Metallizzato Antracite M5 ST"},{"value":"Metallizzato Bronzo M4 ST","additionalFilter":"","label":"Metallizzato Bronzo M4 ST"},{"value":"Metallizzato Copper M7 ST","additionalFilter":"","label":"Metallizzato Copper M7 ST"},{"value":"Metallizzato Creta M6 ST","additionalFilter":"","label":"Metallizzato Creta M6 ST"},{"value":"Nebbia 91 ST","additionalFilter":"","label":"Nebbia 91 ST"},{"value":"Nero 03 ST","additionalFilter":"","label":"Nero 03 ST"},{"value":"Platino DF ST","additionalFilter":"","label":"Platino DF ST"},{"value":"Roccia CE ST","additionalFilter":"","label":"Roccia CE ST"},{"value":"Rosa Etoile 45 ST","additionalFilter":"","label":"Rosa Etoile 45 ST"},{"value":"Rosa Retro 46 ST","additionalFilter":"","label":"Rosa Retro 46 ST"},{"value":"Rosso Fuoco 21 ST","additionalFilter":"","label":"Rosso Fuoco 21 ST"},{"value":"Rosso Jaipur FH ST","additionalFilter":"","label":"Rosso Jaipur FH ST"},{"value":"Rosso Rubino 19 ST","additionalFilter":"","label":"Rosso Rubino 19 ST"},{"value":"Terra DB ST","additionalFilter":"","label":"Terra DB ST"},{"value":"Titanio 93 ST","additionalFilter":"","label":"Titanio 93 ST"},{"value":"Torba DS ST","additionalFilter":"","label":"Torba DS ST"},{"value":"Tortora BE ST","additionalFilter":"","label":"Tortora BE ST"},{"value":"Verde Comodoro FG ST","additionalFilter":"","label":"Verde Comodoro FG ST"},{"value":"Verde Ghiaia 31 ST","additionalFilter":"","label":"Verde Ghiaia 31 ST"},{"value":"Verde Polvere 34 ST","additionalFilter":"","label":"Verde Polvere 34 ST"},{"value":"Verde Salvia 42 ST","additionalFilter":"","label":"Verde Salvia 42 ST"},{"value":"Metal acciaio 2MA","additionalFilter":"","label":"Metal acciaio 2MA"},{"value":"Metal piombo 2MB","additionalFilter":"","label":"Metal piombo 2MB"},{"value":"Metal titanio 2MC","additionalFilter":"","label":"Metal titanio 2MC"},{"value":"Metal bronzo 2MD","additionalFilter":"","label":"Metal bronzo 2MD"},{"value":"Rovere Monet TK3","additionalFilter":"","label":"Rovere Monet TK3"},{"value":"Rovere Slavonia TK6","additionalFilter":"","label":"Rovere Slavonia TK6"},{"value":"Ardesia TKF","additionalFilter":"","label":"Ardesia TKF"},{"value":"Noce Savoia TKG","additionalFilter":"","label":"Noce Savoia TKG"},{"value":"Pulpis Chiaro TKH","additionalFilter":"","label":"Pulpis Chiaro TKH"},{"value":"Pulpis Scuro TKJ","additionalFilter":"","label":"Pulpis Scuro TKJ"},{"value":"Rovere Valdweg TKK","additionalFilter":"","label":"Rovere Valdweg TKK"},{"value":"Rovere Alba TKL","additionalFilter":"","label":"Rovere Alba TKL"},{"value":"Noce Sinfonia TKM","additionalFilter":"","label":"Noce Sinfonia TKM"},{"value":"Brera Brown TKN","additionalFilter":"","label":"Brera Brown TKN"},{"value":"Cepp Stone TKP","additionalFilter":"","label":"Cepp Stone TKP"},{"value":"Rox Black TKQ","additionalFilter":"","label":"Rox Black TKQ"},{"value":"Rovere Eucalipto 01A","additionalFilter":"","label":"Rovere Eucalipto 01A"},{"value":"Rovere Bianco 06A","additionalFilter":"","label":"Rovere Bianco 06A"},{"value":"Rovere Naturale 06B","additionalFilter":"","label":"Rovere Naturale 06B"},{"value":"Rovere Sabbia 06C","additionalFilter":"","label":"Rovere Sabbia 06C"},{"value":"Rovere Cenere 06D","additionalFilter":"","label":"Rovere Cenere 06D"},{"value":"Rovere Avena 06E","additionalFilter":"","label":"Rovere Avena 06E"},{"value":"Rovere Fumo 06F","additionalFilter":"","label":"Rovere Fumo 06F"},{"value":"Rovere Carbone 06G","additionalFilter":"","label":"Rovere Carbone 06G"},{"value":"Rovere Moka 06H","additionalFilter":"","label":"Rovere Moka 06H"},{"value":"Rovere Nero 06J","additionalFilter":"","label":"Rovere Nero 06J"}]}]}],"enabledCTA":false},{"section":"Select Countertop Color","sort":"3","groups":[{"groupName":"Countertop Color","order":"1","type":"simple","options":[{"option":"Counertops materials","label":"Color","optionName":"UI_Counertops materials","order":"1","type":"simple","typeComponent":"material","values":{"Gloss White":"Gloss White","Matte White":"Matte White","Bianco Male TFA":"Bianco Male TFA","Grigio Efeso TFB":"Grigio Efeso TFB","Castoro Ottawa TFC":"Castoro Ottawa TFC","Grigio Londra TFD":"Grigio Londra TFD","Grigio Bromo TFE":"Grigio Bromo TFE","Cacao Orinoco TFF":"Cacao Orinoco TFF","Verde Comodoro TFG":"Verde Comodoro TFG","Rosso Jaipur TFH":"Rosso Jaipur TFH","Nero Ingo TFJ":"Nero Ingo TFJ","Rovere Monet TK3":"Rovere Monet TK3","Rovere Slavonia TK6":"Rovere Slavonia TK6","Ardesia TKF":"Ardesia TKF","Noce Savoia TKG":"Noce Savoia TKG","Pulpis Chiaro TKH":"Pulpis Chiaro TKH","Pulpis Scuro TKJ":"Pulpis Scuro TKJ","Rovere Valdweg TKK":"Rovere Valdweg TKK","Rovere Alba TKL":"Rovere Alba TKL","Noce Sinfonia TKM":"Noce Sinfonia TKM","Brera Brown TKN":"Brera Brown TKN","Cepp Stone TKP":"Cepp Stone TKP","Rox Black TKQ":"Rox Black TKQ","Aosta Green Marble Lucidato TR4":"Aosta Green Marble Lucidato TR4","Avenue Amber TRC":"Avenue Amber TRC","Avenue Ivory TR9":"Avenue Ivory TR9","Avenue Plumb TRB":"Avenue Plumb TRB","Avenue Silver TRA":"Avenue Silver TRA","Bianco Assoluto Matte TQK":"Bianco Assoluto Matte TQK","Bianco Statuario Venato Lucidato TQC":"Bianco Statuario Venato Lucidato TQC","Bianco Statuario Venato Matte TQV":"Bianco Statuario Venato Matte TQV","Black Marquinia Lucidato TR1":"Black Marquinia Lucidato TR1","Black Marquinia Silky Matte TR7":"Black Marquinia Silky Matte TR7","Calacatta Oro Venato Lucidato TQD":"Calacatta Oro Venato Lucidato TQD","Calacatta Oro Venato Matte TQW":"Calacatta Oro Venato Matte TQW","Cava Diamond Cream TQE":"Cava Diamond Cream TQE","Cava Noir Desir Lucidato TQJ":"Cava Noir Desir Lucidato TQJ","Cava Noir Desir Matte TQH":"Cava Noir Desir Matte TQH","Emperador Lucidato TR3":"Emperador Lucidato TR3","Fokos Rena TQ2":"Fokos Rena TQ2","Fokos Roccia TQ3":"Fokos Roccia TQ3","Fokos Sale TQ1":"Fokos Sale TQ1","Guadi Stone Lucidato TR5":"Guadi Stone Lucidato TR5","Limestone Ash TRF":"Limestone Ash TRF","Limestone Deep TRG":"Limestone Deep TRG","Limestone Moon TRE":"Limestone Moon TRE","Metal Grey TRD":"Metal Grey TRD","Nero Assoluto Matte TQ9":"Nero Assoluto Matte TQ9","Ossido Bruno TQT":"Ossido Bruno TQT","Ossido Nero TQS":"Ossido Nero TQS","Pietra Di Savoia Antracite TQ6":"Pietra Di Savoia Antracite TQ6","Pietra Di Savoia Grigia TQ4":"Pietra Di Savoia Grigia TQ4","Pietra Grey Lucidata TQR":"Pietra Grey Lucidata TQR","Pietra Grey Matte TQU":"Pietra Grey Matte TQU","Pietra Piasentina Grigia Matte TQP":"Pietra Piasentina Grigia Matte TQP","Pietra Piasentina Taupe Matte TQQ":"Pietra Piasentina Taupe Matte TQQ","Sahara Noir Lucidato TR2":"Sahara Noir Lucidato TR2","Sahara Noir Silky Matte TR8":"Sahara Noir Silky Matte TR8","Travertino Beige Matte TQX":"Travertino Beige Matte TQX","Travertino Silver Matte TQY":"Travertino Silver Matte TQY","Travertino Lucidato TR6":"Travertino Lucidato TR6"},"valuesArray":[{"value":"Gloss White","additionalFilter":"","label":"Gloss White"},{"value":"Matte White","additionalFilter":"","label":"Matte White"},{"value":"Bianco Male TFA","additionalFilter":"","label":"Bianco Male TFA"},{"value":"Grigio Efeso TFB","additionalFilter":"","label":"Grigio Efeso TFB"},{"value":"Castoro Ottawa TFC","additionalFilter":"","label":"Castoro Ottawa TFC"},{"value":"Grigio Londra TFD","additionalFilter":"","label":"Grigio Londra TFD"},{"value":"Grigio Bromo TFE","additionalFilter":"","label":"Grigio Bromo TFE"},{"value":"Cacao Orinoco TFF","additionalFilter":"","label":"Cacao Orinoco TFF"},{"value":"Verde Comodoro TFG","additionalFilter":"","label":"Verde Comodoro TFG"},{"value":"Rosso Jaipur TFH","additionalFilter":"","label":"Rosso Jaipur TFH"},{"value":"Nero Ingo TFJ","additionalFilter":"","label":"Nero Ingo TFJ"},{"value":"Rovere Monet TK3","additionalFilter":"","label":"Rovere Monet TK3"},{"value":"Rovere Slavonia TK6","additionalFilter":"","label":"Rovere Slavonia TK6"},{"value":"Ardesia TKF","additionalFilter":"","label":"Ardesia TKF"},{"value":"Noce Savoia TKG","additionalFilter":"","label":"Noce Savoia TKG"},{"value":"Pulpis Chiaro TKH","additionalFilter":"","label":"Pulpis Chiaro TKH"},{"value":"Pulpis Scuro TKJ","additionalFilter":"","label":"Pulpis Scuro TKJ"},{"value":"Rovere Valdweg TKK","additionalFilter":"","label":"Rovere Valdweg TKK"},{"value":"Rovere Alba TKL","additionalFilter":"","label":"Rovere Alba TKL"},{"value":"Noce Sinfonia TKM","additionalFilter":"","label":"Noce Sinfonia TKM"},{"value":"Brera Brown TKN","additionalFilter":"","label":"Brera Brown TKN"},{"value":"Cepp Stone TKP","additionalFilter":"","label":"Cepp Stone TKP"},{"value":"Rox Black TKQ","additionalFilter":"","label":"Rox Black TKQ"},{"value":"Aosta Green Marble Lucidato TR4","additionalFilter":"","label":"Aosta Green Marble Lucidato TR4"},{"value":"Avenue Amber TRC","additionalFilter":"","label":"Avenue Amber TRC"},{"value":"Avenue Ivory TR9","additionalFilter":"","label":"Avenue Ivory TR9"},{"value":"Avenue Plumb TRB","additionalFilter":"","label":"Avenue Plumb TRB"},{"value":"Avenue Silver TRA","additionalFilter":"","label":"Avenue Silver TRA"},{"value":"Bianco Assoluto Matte TQK","additionalFilter":"","label":"Bianco Assoluto Matte TQK"},{"value":"Bianco Statuario Venato Lucidato TQC","additionalFilter":"","label":"Bianco Statuario Venato Lucidato TQC"},{"value":"Bianco Statuario Venato Matte TQV","additionalFilter":"","label":"Bianco Statuario Venato Matte TQV"},{"value":"Black Marquinia Lucidato TR1","additionalFilter":"","label":"Black Marquinia Lucidato TR1"},{"value":"Black Marquinia Silky Matte TR7","additionalFilter":"","label":"Black Marquinia Silky Matte TR7"},{"value":"Calacatta Oro Venato Lucidato TQD","additionalFilter":"","label":"Calacatta Oro Venato Lucidato TQD"},{"value":"Calacatta Oro Venato Matte TQW","additionalFilter":"","label":"Calacatta Oro Venato Matte TQW"},{"value":"Cava Diamond Cream TQE","additionalFilter":"","label":"Cava Diamond Cream TQE"},{"value":"Cava Noir Desir Lucidato TQJ","additionalFilter":"","label":"Cava Noir Desir Lucidato TQJ"},{"value":"Cava Noir Desir Matte TQH","additionalFilter":"","label":"Cava Noir Desir Matte TQH"},{"value":"Emperador Lucidato TR3","additionalFilter":"","label":"Emperador Lucidato TR3"},{"value":"Fokos Rena TQ2","additionalFilter":"","label":"Fokos Rena TQ2"},{"value":"Fokos Roccia TQ3","additionalFilter":"","label":"Fokos Roccia TQ3"},{"value":"Fokos Sale TQ1","additionalFilter":"","label":"Fokos Sale TQ1"},{"value":"Guadi Stone Lucidato TR5","additionalFilter":"","label":"Guadi Stone Lucidato TR5"},{"value":"Limestone Ash TRF","additionalFilter":"","label":"Limestone Ash TRF"},{"value":"Limestone Deep TRG","additionalFilter":"","label":"Limestone Deep TRG"},{"value":"Limestone Moon TRE","additionalFilter":"","label":"Limestone Moon TRE"},{"value":"Metal Grey TRD","additionalFilter":"","label":"Metal Grey TRD"},{"value":"Nero Assoluto Matte TQ9","additionalFilter":"","label":"Nero Assoluto Matte TQ9"},{"value":"Ossido Bruno TQT","additionalFilter":"","label":"Ossido Bruno TQT"},{"value":"Ossido Nero TQS","additionalFilter":"","label":"Ossido Nero TQS"},{"value":"Pietra Di Savoia Antracite TQ6","additionalFilter":"","label":"Pietra Di Savoia Antracite TQ6"},{"value":"Pietra Di Savoia Grigia TQ4","additionalFilter":"","label":"Pietra Di Savoia Grigia TQ4"},{"value":"Pietra Grey Lucidata TQR","additionalFilter":"","label":"Pietra Grey Lucidata TQR"},{"value":"Pietra Grey Matte TQU","additionalFilter":"","label":"Pietra Grey Matte TQU"},{"value":"Pietra Piasentina Grigia Matte TQP","additionalFilter":"","label":"Pietra Piasentina Grigia Matte TQP"},{"value":"Pietra Piasentina Taupe Matte TQQ","additionalFilter":"","label":"Pietra Piasentina Taupe Matte TQQ"},{"value":"Sahara Noir Lucidato TR2","additionalFilter":"","label":"Sahara Noir Lucidato TR2"},{"value":"Sahara Noir Silky Matte TR8","additionalFilter":"","label":"Sahara Noir Silky Matte TR8"},{"value":"Travertino Beige Matte TQX","additionalFilter":"","label":"Travertino Beige Matte TQX"},{"value":"Travertino Silver Matte TQY","additionalFilter":"","label":"Travertino Silver Matte TQY"},{"value":"Travertino Lucidato TR6","additionalFilter":"","label":"Travertino Lucidato TR6"}]}]}],"enabledCTA":false},{"section":"Select Countertop Basin Style","sort":"4","groups":[{"groupName":"Countertop Basin Style","order":"1","type":"simple","options":[{"option":"Basin Style","label":"Basin Style","optionName":"UI_Basin Style","order":"1","type":"simple","typeComponent":"image","values":{"Solid-Surface: Rectangular":"Rectangular","Fenix: Strip":"Strip","Fenix: Cover":"Cover","Fenix: Prisma":"Prisma","Fenix: Quadra":"Quadra","HPL: Strip":"Strip","HPL: Cover":"Cover","HPL: Prisma":"Prisma","HPL: Quadra":"Quadra","Porcelain: Strip":"Strip","Porcelain: Cover":"Cover","Porcelain: Prisma":"Prisma","Porcelain: Quadra":"Quadra"},"valuesArray":[{"value":"Solid-Surface: Rectangular","additionalFilter":"","label":"Rectangular"},{"value":"Fenix: Strip","additionalFilter":"","label":"Strip"},{"value":"Fenix: Cover","additionalFilter":"","label":"Cover"},{"value":"Fenix: Prisma","additionalFilter":"","label":"Prisma"},{"value":"Fenix: Quadra","additionalFilter":"","label":"Quadra"},{"value":"HPL: Strip","additionalFilter":"","label":"Strip"},{"value":"HPL: Cover","additionalFilter":"","label":"Cover"},{"value":"HPL: Prisma","additionalFilter":"","label":"Prisma"},{"value":"HPL: Quadra","additionalFilter":"","label":"Quadra"},{"value":"Porcelain: Strip","additionalFilter":"","label":"Strip"},{"value":"Porcelain: Cover","additionalFilter":"","label":"Cover"},{"value":"Porcelain: Prisma","additionalFilter":"","label":"Prisma"},{"value":"Porcelain: Quadra","additionalFilter":"","label":"Quadra"}]}]}],"enabledCTA":false}]`},{id:"b61a72c8-b23d-424a-b8b6-87f2302ddf27",type:"Boolean",name:"start_script",metadata:{},defaultValue:!1,global:{id:"b61a72c8-b23d-424a-b8b6-87f2302ddf27",type:"Global",name:"Global",metadata:[]},visible:!0,enabled:!0,hiddenValues:[],disabledValues:[],values:[],value:!0},{id:"a6b54f1b-8da8-4e93-910b-cbbfcbc77c18",type:"Boolean",name:"hasLoadeAppConfig",metadata:{},defaultValue:!1,global:{id:"a6b54f1b-8da8-4e93-910b-cbbfcbc77c18",type:"Global",name:"Global",metadata:[]},visible:!0,enabled:!0,hiddenValues:[],disabledValues:[],values:[],value:!0},{id:"2fdf2c2f-1326-4a13-a1da-9c2165d8c081",type:"Asset",name:"UI_Style",metadata:{Name:"Style",Label:"Style",hasRenderImagePreview:"true"},blacklist:[],assetType:"model",values:[{assetId:"4db1330a-fbc2-4372-9dbf-ca145bbce5f4",name:"Open Shelving",tags:["duplexstyle"],metadata:{label:"Open Shelving",value:"Open Shelving"},fileSize:95548,tagids:["79919cde-401a-493f-8581-8081d823a1a0"],type:"item",label:"Open Shelving",visible:!0,enabled:!0},{assetId:"98fa93a1-c3a1-4adc-9333-004a173b05f3",name:"Single basin",tags:["duplexstyle"],metadata:{label:"Single basin",value:"Single basin"},fileSize:95548,tagids:["79919cde-401a-493f-8581-8081d823a1a0"],type:"item",label:"Single basin",visible:!0,enabled:!0},{assetId:"52e32de8-b9dc-41eb-9a34-d660a093f291",name:"Double basin",tags:["duplexstyle"],metadata:{label:"Double basin",value:"Double basin"},fileSize:95548,tagids:["79919cde-401a-493f-8581-8081d823a1a0"],type:"item",label:"Double basin",visible:!0,enabled:!0},{assetId:"bad3f234-638e-4636-abc8-29a7b52e8f4f",name:"Multi-level",tags:["duplexstyle"],metadata:{label:"Multi-level",value:"Multi-level"},fileSize:95548,tagids:["79919cde-401a-493f-8581-8081d823a1a0"],type:"item",label:"Multi-level",visible:!0,enabled:!0},{assetId:"99e81a49-ca4d-4b5b-aa2d-20e312f76c22",name:"2-Drawer",tags:["duplexstyle"],metadata:{label:"2-Drawer",value:"2-Drawer"},fileSize:95548,tagids:["79919cde-401a-493f-8581-8081d823a1a0"],type:"item",label:"2-Drawer",visible:!0,enabled:!0},{assetId:"32344eaf-fdf4-45f5-873d-c95915883f49",name:"1-Drawer",tags:["duplexstyle"],metadata:{label:"1-Drawer",value:"1-Drawer"},fileSize:95548,tagids:["79919cde-401a-493f-8581-8081d823a1a0"],type:"item",label:"1-Drawer",visible:!0,enabled:!0},{assetId:"b6bc96e8-ff45-42b2-b081-49f1d0398ae3",name:"Asymmetrical",tags:["style"],metadata:{label:"Asymmetrical",value:"Asymmetrical"},fileSize:95548,tagids:["379a77ba-e8d1-4748-b30a-0d6976159d96"],type:"item",label:"Asymmetrical",visible:!0,enabled:!0}],defaultValue:{assetId:""},global:{id:"2fdf2c2f-1326-4a13-a1da-9c2165d8c081",type:"Global",name:"Global",metadata:[]},visible:!0,enabled:!0,hiddenValues:["4a6edce3-a6b2-4d8b-afa4-b492dc02b149"],disabledValues:[],value:{assetId:""}},{id:"42fa7400-406f-404a-bd77-2a523f7bc2fc",type:"Number",name:"Camera",metadata:{},step:1,min:1,max:12,lockToStep:!1,defaultValue:1,global:{id:"42fa7400-406f-404a-bd77-2a523f7bc2fc",type:"Global",name:"Global",metadata:[]},visible:!0,enabled:!0,hiddenValues:[],disabledValues:[],values:[],value:2},{id:"8009c970-3f06-46cd-8d74-a5a5499308f8",type:"String",name:"img-load-2",metadata:{},blacklist:[],values:[{value:'?assetId=c5f1aeee-d13b-41f6-98d6-75fd35c49236&orgId=12a6bfdf-aa5f-48e7-97ff-172e9c5775d8&display=image&height=300&width=300&bearer_token=714ecdb5-8ef7-4671-99f3-6d426c13a250&stageId=266e9c2f-0a94-431b-956f-395171123bc1&cacheKey=2905&configuration=%7B"UI_Conceptsize"%3A%7B"assetId"%3A""%7D%2C"UI_Model"%3A%7B"assetId"%3A"9d25a611-5e60-4e98-9550-f1cf55ed8af3"%2C"type"%3A"item"%7D%2C"UI_Base+Panel"%3A%7B"assetId"%3A"abb65419-cfa9-445a-9719-8a6f0aeb0eb5"%2C"type"%3A"item"%7D%2C"UI_Basin+Style"%3A%7B"assetId"%3A"137e5e19-ce6e-453a-8bb0-1e3769414047"%2C"type"%3A"item"%7D%2C"UI_Lateral+Panel"%3A%7B"assetId"%3A"be20009d-8b5e-42b4-b429-4846fcd9fd9d"%2C"type"%3A"item"%7D%2C"UI_Counertops+materials"%3A%7B"assetId"%3A"be20009d-8b5e-42b4-b429-4846fcd9fd9d"%2C"type"%3A"item"%7D%2C"UI_Style"%3A%7B"assetId"%3A""%7D%7D&stageConfiguration=%7B"Camera"%3A2%7D',enabled:!0,visible:!0,label:'?assetId=c5f1aeee-d13b-41f6-98d6-75fd35c49236&orgId=12a6bfdf-aa5f-48e7-97ff-172e9c5775d8&display=image&height=300&width=300&bearer_token=714ecdb5-8ef7-4671-99f3-6d426c13a250&stageId=266e9c2f-0a94-431b-956f-395171123bc1&cacheKey=2905&configuration=%7B"UI_Conceptsize"%3A%7B"assetId"%3A""%7D%2C"UI_Model"%3A%7B"assetId"%3A"9d25a611-5e60-4e98-9550-f1cf55ed8af3"%2C"type"%3A"item"%7D%2C"UI_Base+Panel"%3A%7B"assetId"%3A"abb65419-cfa9-445a-9719-8a6f0aeb0eb5"%2C"type"%3A"item"%7D%2C"UI_Basin+Style"%3A%7B"assetId"%3A"137e5e19-ce6e-453a-8bb0-1e3769414047"%2C"type"%3A"item"%7D%2C"UI_Lateral+Panel"%3A%7B"assetId"%3A"be20009d-8b5e-42b4-b429-4846fcd9fd9d"%2C"type"%3A"item"%7D%2C"UI_Counertops+materials"%3A%7B"assetId"%3A"be20009d-8b5e-42b4-b429-4846fcd9fd9d"%2C"type"%3A"item"%7D%2C"UI_Style"%3A%7B"assetId"%3A""%7D%7D&stageConfiguration=%7B"Camera"%3A2%7D'}],defaultValue:"",global:{id:"8009c970-3f06-46cd-8d74-a5a5499308f8",type:"Global",name:"Global",metadata:[]},visible:!0,enabled:!0,hiddenValues:[],disabledValues:[],value:""},{id:"f26f1d70-c944-447c-9082-f0cca290eee4",type:"String",name:"img-load-3",metadata:{},blacklist:[],values:[{value:'?assetId=c5f1aeee-d13b-41f6-98d6-75fd35c49236&orgId=12a6bfdf-aa5f-48e7-97ff-172e9c5775d8&display=image&height=300&width=300&bearer_token=714ecdb5-8ef7-4671-99f3-6d426c13a250&stageId=266e9c2f-0a94-431b-956f-395171123bc1&cacheKey=2905&configuration=%7B"UI_Conceptsize"%3A%7B"assetId"%3A""%7D%2C"UI_Model"%3A%7B"assetId"%3A"9d25a611-5e60-4e98-9550-f1cf55ed8af3"%2C"type"%3A"item"%7D%2C"UI_Base+Panel"%3A%7B"assetId"%3A"abb65419-cfa9-445a-9719-8a6f0aeb0eb5"%2C"type"%3A"item"%7D%2C"UI_Basin+Style"%3A%7B"assetId"%3A"137e5e19-ce6e-453a-8bb0-1e3769414047"%2C"type"%3A"item"%7D%2C"UI_Lateral+Panel"%3A%7B"assetId"%3A"be20009d-8b5e-42b4-b429-4846fcd9fd9d"%2C"type"%3A"item"%7D%2C"UI_Counertops+materials"%3A%7B"assetId"%3A"be20009d-8b5e-42b4-b429-4846fcd9fd9d"%2C"type"%3A"item"%7D%2C"UI_Style"%3A%7B"assetId"%3A""%7D%7D&stageConfiguration=%7B"Camera"%3A3%7D',enabled:!0,visible:!0,label:'?assetId=c5f1aeee-d13b-41f6-98d6-75fd35c49236&orgId=12a6bfdf-aa5f-48e7-97ff-172e9c5775d8&display=image&height=300&width=300&bearer_token=714ecdb5-8ef7-4671-99f3-6d426c13a250&stageId=266e9c2f-0a94-431b-956f-395171123bc1&cacheKey=2905&configuration=%7B"UI_Conceptsize"%3A%7B"assetId"%3A""%7D%2C"UI_Model"%3A%7B"assetId"%3A"9d25a611-5e60-4e98-9550-f1cf55ed8af3"%2C"type"%3A"item"%7D%2C"UI_Base+Panel"%3A%7B"assetId"%3A"abb65419-cfa9-445a-9719-8a6f0aeb0eb5"%2C"type"%3A"item"%7D%2C"UI_Basin+Style"%3A%7B"assetId"%3A"137e5e19-ce6e-453a-8bb0-1e3769414047"%2C"type"%3A"item"%7D%2C"UI_Lateral+Panel"%3A%7B"assetId"%3A"be20009d-8b5e-42b4-b429-4846fcd9fd9d"%2C"type"%3A"item"%7D%2C"UI_Counertops+materials"%3A%7B"assetId"%3A"be20009d-8b5e-42b4-b429-4846fcd9fd9d"%2C"type"%3A"item"%7D%2C"UI_Style"%3A%7B"assetId"%3A""%7D%7D&stageConfiguration=%7B"Camera"%3A3%7D'}],defaultValue:"",global:{id:"f26f1d70-c944-447c-9082-f0cca290eee4",type:"Global",name:"Global",metadata:[]},visible:!0,enabled:!0,hiddenValues:[],disabledValues:[],value:""},{id:"db43eec9-9146-4d26-a99c-3d70c4a95263",type:"String",name:"img-load-4",metadata:{},blacklist:[],values:[{value:'?assetId=c5f1aeee-d13b-41f6-98d6-75fd35c49236&orgId=12a6bfdf-aa5f-48e7-97ff-172e9c5775d8&display=image&height=300&width=300&bearer_token=714ecdb5-8ef7-4671-99f3-6d426c13a250&stageId=266e9c2f-0a94-431b-956f-395171123bc1&cacheKey=2905&configuration=%7B"UI_Conceptsize"%3A%7B"assetId"%3A""%7D%2C"UI_Model"%3A%7B"assetId"%3A"9d25a611-5e60-4e98-9550-f1cf55ed8af3"%2C"type"%3A"item"%7D%2C"UI_Base+Panel"%3A%7B"assetId"%3A"abb65419-cfa9-445a-9719-8a6f0aeb0eb5"%2C"type"%3A"item"%7D%2C"UI_Basin+Style"%3A%7B"assetId"%3A"137e5e19-ce6e-453a-8bb0-1e3769414047"%2C"type"%3A"item"%7D%2C"UI_Lateral+Panel"%3A%7B"assetId"%3A"be20009d-8b5e-42b4-b429-4846fcd9fd9d"%2C"type"%3A"item"%7D%2C"UI_Counertops+materials"%3A%7B"assetId"%3A"be20009d-8b5e-42b4-b429-4846fcd9fd9d"%2C"type"%3A"item"%7D%2C"UI_Style"%3A%7B"assetId"%3A""%7D%7D&stageConfiguration=%7B"Camera"%3A4%7D',enabled:!0,visible:!0,label:'?assetId=c5f1aeee-d13b-41f6-98d6-75fd35c49236&orgId=12a6bfdf-aa5f-48e7-97ff-172e9c5775d8&display=image&height=300&width=300&bearer_token=714ecdb5-8ef7-4671-99f3-6d426c13a250&stageId=266e9c2f-0a94-431b-956f-395171123bc1&cacheKey=2905&configuration=%7B"UI_Conceptsize"%3A%7B"assetId"%3A""%7D%2C"UI_Model"%3A%7B"assetId"%3A"9d25a611-5e60-4e98-9550-f1cf55ed8af3"%2C"type"%3A"item"%7D%2C"UI_Base+Panel"%3A%7B"assetId"%3A"abb65419-cfa9-445a-9719-8a6f0aeb0eb5"%2C"type"%3A"item"%7D%2C"UI_Basin+Style"%3A%7B"assetId"%3A"137e5e19-ce6e-453a-8bb0-1e3769414047"%2C"type"%3A"item"%7D%2C"UI_Lateral+Panel"%3A%7B"assetId"%3A"be20009d-8b5e-42b4-b429-4846fcd9fd9d"%2C"type"%3A"item"%7D%2C"UI_Counertops+materials"%3A%7B"assetId"%3A"be20009d-8b5e-42b4-b429-4846fcd9fd9d"%2C"type"%3A"item"%7D%2C"UI_Style"%3A%7B"assetId"%3A""%7D%7D&stageConfiguration=%7B"Camera"%3A4%7D'}],defaultValue:"",global:{id:"db43eec9-9146-4d26-a99c-3d70c4a95263",type:"Global",name:"Global",metadata:[]},visible:!0,enabled:!0,hiddenValues:[],disabledValues:[],value:""},{id:"f01da09a-92a2-4166-a979-bcae1dc7a643",type:"String",name:"img-load-5",metadata:{},blacklist:[],values:[{value:'?assetId=c5f1aeee-d13b-41f6-98d6-75fd35c49236&orgId=12a6bfdf-aa5f-48e7-97ff-172e9c5775d8&display=image&height=300&width=300&bearer_token=714ecdb5-8ef7-4671-99f3-6d426c13a250&stageId=266e9c2f-0a94-431b-956f-395171123bc1&cacheKey=2905&configuration=%7B"UI_Conceptsize"%3A%7B"assetId"%3A""%7D%2C"UI_Model"%3A%7B"assetId"%3A"9d25a611-5e60-4e98-9550-f1cf55ed8af3"%2C"type"%3A"item"%7D%2C"UI_Base+Panel"%3A%7B"assetId"%3A"abb65419-cfa9-445a-9719-8a6f0aeb0eb5"%2C"type"%3A"item"%7D%2C"UI_Basin+Style"%3A%7B"assetId"%3A"137e5e19-ce6e-453a-8bb0-1e3769414047"%2C"type"%3A"item"%7D%2C"UI_Lateral+Panel"%3A%7B"assetId"%3A"be20009d-8b5e-42b4-b429-4846fcd9fd9d"%2C"type"%3A"item"%7D%2C"UI_Counertops+materials"%3A%7B"assetId"%3A"be20009d-8b5e-42b4-b429-4846fcd9fd9d"%2C"type"%3A"item"%7D%2C"UI_Style"%3A%7B"assetId"%3A""%7D%7D&stageConfiguration=%7B"Camera"%3A5%7D',enabled:!0,visible:!0,label:'?assetId=c5f1aeee-d13b-41f6-98d6-75fd35c49236&orgId=12a6bfdf-aa5f-48e7-97ff-172e9c5775d8&display=image&height=300&width=300&bearer_token=714ecdb5-8ef7-4671-99f3-6d426c13a250&stageId=266e9c2f-0a94-431b-956f-395171123bc1&cacheKey=2905&configuration=%7B"UI_Conceptsize"%3A%7B"assetId"%3A""%7D%2C"UI_Model"%3A%7B"assetId"%3A"9d25a611-5e60-4e98-9550-f1cf55ed8af3"%2C"type"%3A"item"%7D%2C"UI_Base+Panel"%3A%7B"assetId"%3A"abb65419-cfa9-445a-9719-8a6f0aeb0eb5"%2C"type"%3A"item"%7D%2C"UI_Basin+Style"%3A%7B"assetId"%3A"137e5e19-ce6e-453a-8bb0-1e3769414047"%2C"type"%3A"item"%7D%2C"UI_Lateral+Panel"%3A%7B"assetId"%3A"be20009d-8b5e-42b4-b429-4846fcd9fd9d"%2C"type"%3A"item"%7D%2C"UI_Counertops+materials"%3A%7B"assetId"%3A"be20009d-8b5e-42b4-b429-4846fcd9fd9d"%2C"type"%3A"item"%7D%2C"UI_Style"%3A%7B"assetId"%3A""%7D%7D&stageConfiguration=%7B"Camera"%3A5%7D'}],defaultValue:"",global:{id:"f01da09a-92a2-4166-a979-bcae1dc7a643",type:"Global",name:"Global",metadata:[]},visible:!0,enabled:!0,hiddenValues:[],disabledValues:[],value:""}],CD={name:"mock_product",categories:[],productId:999,attributes:m7},h7={name:"All",value:"",productId:0,items:[]},TS=["Kitchen","Bathroom","Outdoor","Office","Furniture","Lighting","Decor","Electronics","Appliances","Storage","Garden","Bedroom","Living Room","Tools","Accessories","Hardware","Flooring","Paint","Home Decor","Smart Home"],ED=(t=100)=>{const n=[];for(let r=1;r<=t;r++){const s=Math.floor(Math.random()*4)+1,b=Array.from({length:s},()=>TS[Math.floor(Math.random()*TS.length)]),h=Array.from(new Set(b));n.push({name:`product-${r}`,categories:h,productId:r,attributes:m7})}return n},AD=()=>new Promise(t=>{setTimeout(()=>{t(ED(100))},400)}),MD=({productId:t,productName:n})=>new Promise(r=>{setTimeout(()=>{r({...CD,productId:t,name:n})},400)}),Wg=fi.createAsyncThunk("multiProducts/getProductListThunk",async(t,{rejectWithValue:n})=>{try{return await AD()}catch(r){return console.error(r.message),n(r.message)}}),DD=fi.createAsyncThunk("multiProducts/getSelectedProductThunk",async({productId:t,productName:n},{rejectWithValue:r})=>{try{return await MD({productId:t,productName:n})}catch(s){return console.error(s.message),r(s.message)}}),LD={listAttributes:[],productElementOptions:[],materialSelectState:{Finish:[],Color:[],Look:[]},allMaterialsValues:[],selectedMaterials:[],productList:[],isLoadingProductList:!1,selectedProduct:null,isLoadingSelectedProduct:!1,isOpenMultiProductCart:!1},p7=fi.createSlice({name:"swatches",initialState:LD,reducers:{setMaterialSelect(t,n){const{filterName:r,values:s}=n.payload;if(s.length===0){t.materialSelectState[r]=[];return}t.materialSelectState[r]=b7(s)},setPanelFilter(t,n){const r=n.payload.attributes;if(r.length){const s=Y2.getMaterialsValuesFromOptions(r);s?.length&&(t.allMaterialsValues=Y2.getUniqueByAssetId(s))}},clearMaterialFilter:(t,n)=>{t.materialSelectState[n.payload]=[]},clearAllMaterialFilters:t=>{t.materialSelectState={Finish:[],Color:[],Look:[]}},setAllMaterialsOptions:(t,n)=>{const{allMaterialValues:r,productElementOptions:s}=n.payload;r?.length&&(t.allMaterialsValues=r),s?.length&&(t.productElementOptions=s)},setSelectedMaterials(t,n){const{selectedMaterial:r}=n.payload;if(!r)return;const s=fi.current(t.selectedMaterials),b=p=>p.metadata?.label===r.metadata?.label&&p.parentName===r.parentName;s.some(b)?t.selectedMaterials=s.filter(p=>!b(p)):s.length<5&&(t.selectedMaterials=[...s,r])},resetSelectedMaterials(t){t.selectedMaterials=[]},setSelectedProduct(t,n){t.selectedProduct=n.payload},deleteSelectedProduct(t){t.selectedProduct=null},setIsOpenMultiProductCart(t,n){t.isOpenMultiProductCart=n.payload}},extraReducers:t=>{t.addCase(Wg.pending,n=>{n.isLoadingProductList=!0}).addCase(Wg.fulfilled,(n,r)=>{n.productList=r.payload,n.isLoadingProductList=!1}).addCase(Wg.rejected,n=>{n.isLoadingProductList=!1})}}),g7=p7.reducer,{setMaterialSelect:r8,setAllMaterialsOptions:T7,setPanelFilter:vS,setSelectedMaterials:u8,clearMaterialFilter:JF,clearAllMaterialFilters:$F,setSelectedProduct:zD,deleteSelectedProduct:xD,setIsOpenMultiProductCart:v7,resetSelectedMaterials:RD}=p7.actions,Qi=5,ND={items:[]},BD=t=>t.reduce((n,r)=>n+r.count,0),S7=fi.createSlice({name:"cart",initialState:ND,reducers:{setCartItems(t,n){t.items=n.payload},removeItem(t,n){const{metadata:r,parentName:s}=n.payload.selectedMaterial;t.items=t.items.filter(b=>!(b.metadata.label===r.label&&b.parentName===s))},increment(t,n){const{metadata:r,parentName:s}=n.payload.selectedMaterial,b=t.items.find(h=>h.metadata.label===r.label&&h.parentName===s);b&&BD(t.items)<Qi&&(b.count+=1)},decrement(t,n){const{metadata:r,parentName:s}=n.payload.selectedMaterial,b=t.items.find(h=>h.metadata.label===r.label&&h.parentName===s);b&&b.count>1&&(b.count-=1)},setCount(t,n){const{metadata:r,parentName:s}=n.payload.selectedMaterial,{next:b}=n.payload,h=t.items.find(A=>A.metadata.label===r.label&&A.parentName===s);if(!h)return;const p=Math.max(1,Math.floor(b)),T=t.items.filter(A=>!(A.metadata.label===r.label&&A.parentName===s)).reduce((A,M)=>A+M.count,0),E=Math.max(1,Qi-T);h.count=Math.min(p,E)},clear(t){t.items=[]}}}),{setCartItems:OD,removeItem:_D,increment:ID,decrement:wD,setCount:eU,clear:tU}=S7.actions,y7=S7.reducer,GD={items:[],activeMultiCartProduct:null};function kD(t,n,r){let s=t.items.find(b=>b.productId===n);return s?r&&!s.name&&(s.name=r):(s={productId:n,name:r??"",items:[]},t.items.push(s)),s}const l6=(t,n)=>t.items.findIndex(r=>r.productId===n),SS=(t,n,r,s)=>n===-1?-1:t.items[n].items.findIndex(b=>b.metadata.label===r&&b.parentName===s),C7=fi.createSlice({name:"multiProduct",initialState:GD,reducers:{setCartForProduct(t,n){const{productId:r}=n.payload,s=t.items.findIndex(b=>b.productId===r);s>=0?t.items[s]=n.payload:t.items.push(n.payload)},setActiveMultiCartProduct(t,n){t.activeMultiCartProduct=n.payload},setCartItems(t,n){const{productId:r,items:s,name:b}=n.payload;if(!s||s.length===0){const p=t.items.findIndex(T=>T.productId===r);p!==-1&&t.items.splice(p,1);return}const h=kD(t,r,b);h.items=s},incrementMultiProductItem(t,n){const{productId:r,label:s,parentName:b}=n.payload,h=l6(t,r),p=SS(t,h,s,b);p!==-1&&(t.items[h].items[p].count+=1)},decrementMultiProductItem(t,n){const{productId:r,label:s,parentName:b}=n.payload,h=l6(t,r),p=SS(t,h,s,b);if(p!==-1){const T=t.items[h].items[p];T.count>1&&(T.count-=1)}},removeMultiProductItem(t,n){const{productId:r,label:s,parentName:b}=n.payload,h=l6(t,r);if(h===-1)return;const p=t.items[h].items.filter(T=>!(T.metadata.label===s&&T.parentName===b));t.items[h].items=p},clear(t){t.items=[]}}}),{setCartForProduct:aU,setCartItems:FD,incrementMultiProductItem:UD,decrementMultiProductItem:HD,removeMultiProductItem:PD,clear:lU,setActiveMultiCartProduct:E7}=C7.actions,A7=C7.reducer,WD=fi.combineReducers({swatches:g7,cart:y7,multiProductCart:A7}),VD={},{NODE_ENV:qD}=VD;fi.configureStore({reducer:WD,middleware:t=>t({thunk:!0}),devTools:qD!=="production"});const mn=$2.useDispatch.withTypes(),Xt=$2.useSelector.withTypes(),s8=t=>t.swatches.allMaterialsValues,e4=t=>t.swatches.materialSelectState,jD=t=>t.swatches.productElementOptions,c8=t=>t.swatches.selectedMaterials,YD=t=>t.swatches.productList,QD=t=>t.swatches.isLoadingProductList,lT=t=>t.swatches.selectedProduct,XD=t=>t.swatches.isOpenMultiProductCart,KD=({isOpen:t,onClose:n,children:r})=>{const s=tt.useRef(null);return tt.useEffect(()=>{const b=h=>{s.current&&!s.current.contains(h.target)&&n()};return t&&document.addEventListener("mousedown",b),()=>{document.removeEventListener("mousedown",b)}},[t,n]),t?z0.createPortal(B.jsx("div",{className:"fixed inset-0 z-50 flex items-center justify-center bg-black/40",children:B.jsx("div",{ref:s,className:`flex h-full flex-col bg-white rounded-sm shadow-lg w-[95%] max-h-[90vh] overflow-hidden transition-all duration-200 max-w-[1100px]\r
255
+ `,children:r})}),document.body):null},M7=({containerStyles:t="flex flex-col gap-2 text-xs/snug p-[var(--padding)] border-t border-solid border-[var(--border)] sm:gap-3 sm:p-[var(--sm-padding)]"})=>{const n="flex justify-between items-center";return B.jsxs("div",{className:t,children:[B.jsxs("div",{className:n,children:[B.jsx("span",{children:"Subtotal"}),B.jsx("span",{children:"$32.50"})]}),B.jsxs("div",{className:`${n} text-[var(--main-accent-color)]`,children:[B.jsx("span",{children:"Savings"}),B.jsx("span",{children:"-$32.50"})]}),B.jsxs("div",{className:`${n} text-sm font-medium`,children:[B.jsx("span",{children:"Total"}),B.jsx("span",{children:"$32.50"})]})]})},D7=({children:t,disabled:n,...r})=>B.jsx("button",{className:`w-full bg-[var(--main-accent-color)] text-white py-3 rounded-full font-bold transition-colors duration-300 ${n?"bg-gray-400 text-gray-200 cursor-not-allowed opacity-70":"cursor-pointer hover:opacity-90"}`,...r,children:t}),ZD=t=>t.multiProductCart,nT=t=>t.multiProductCart.items,L7=t=>fi.createSelector(ZD,n=>n.items.find(s=>s.productId===t)?.items??[]),iT=t=>t.multiProductCart.activeMultiCartProduct,JD=({text:t,isActive:n=!1,onClick:r})=>{const s=()=>{r&&r()},b=h=>{(h.key==="Enter"||h.key===" ")&&(h.preventDefault(),s())};return B.jsx("div",{role:"button",tabIndex:0,onClick:s,onKeyDown:b,className:`
256
+ flex justify-center items-center max-w-max px-4 py-2 capitalize rounded-full
257
+ font-medium text-sm cursor-pointer transition-all duration-[400ms] ease-in-out
258
+ outline-none focus:ring-2 focus:ring-[var(--main-accent-color)] focus:ring-offset-2
259
+ ${n?"bg-[var(--main-accent-color)] text-white hover:brightness-90":"bg-[var(--label-bg)] hover:brightness-95"}
260
+ `,children:t})},B6=({items:t,activeId:n,onSelect:r,className:s="",stepRatio:b=.8})=>{const h=tt.useRef(null),[p,T]=tt.useState(!1),[E,A]=tt.useState(!1),M=tt.useCallback(()=>{const R=h.current;if(!R)return;const{scrollLeft:z,scrollWidth:U,clientWidth:G}=R,J=U-G;T(z>0),A(z<J-1)},[]);tt.useEffect(()=>{const R=h.current;if(!R)return;M();const z=new ResizeObserver(()=>M());z.observe(R);const U=()=>M();return R.addEventListener("scroll",U,{passive:!0}),()=>{z.disconnect(),R.removeEventListener("scroll",U)}},[M]);const L=R=>{const z=h.current;if(!z)return;const U=z.clientWidth*b*(R==="left"?-1:1);z.scrollBy({left:U,behavior:"smooth"})};return B.jsxs("div",{className:`flex items-center gap-2 w-full ${s}`,role:"region","aria-label":"Category slider",children:[B.jsx("button",{type:"button","aria-label":"Scroll left",disabled:!p,onClick:()=>L("left"),className:`flex-shrink-0 h-8 w-8 rounded-full flex items-center justify-center shadow
261
+ ${p?"bg-white hover:bg-gray-100":"bg-gray-200 opacity-60 cursor-not-allowed"}`,children:B.jsx("svg",{width:"18",height:"18",viewBox:"0 0 24 24","aria-hidden":"true",children:B.jsx("path",{d:"M15 18l-6-6 6-6",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})})}),B.jsx("div",{ref:h,className:`\r
262
+ no-scrollbar flex-1 overflow-hidden scroll-smooth\r
263
+ `,style:{WebkitOverflowScrolling:"touch",paddingLeft:"0.5rem",paddingRight:"0.5rem"},children:B.jsxs("div",{className:"flex gap-3 sm:gap-4 py-2 min-w-min",children:[t.map(R=>{const z=R.productId,U=n===z;return B.jsx("div",{className:"shrink-0",children:B.jsx(JD,{text:R.name,isActive:U,onClick:()=>r(R)})},z)}),B.jsx("div",{"aria-hidden":!0,className:"shrink-0 w-1 sm:w-4"})]})}),B.jsx("button",{type:"button","aria-label":"Scroll right",disabled:!E,onClick:()=>L("right"),className:`flex-shrink-0 h-8 w-8 rounded-full flex items-center justify-center shadow
264
+ ${E?"bg-black text-white hover:brightness-110":"bg-gray-200 text-gray-500 opacity-60 cursor-not-allowed"}`,children:B.jsx("svg",{width:"18",height:"18",viewBox:"0 0 24 24","aria-hidden":"true",children:B.jsx("path",{d:"M9 6l6 6-6 6",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})})})]})},$D=()=>{const t=mn(),n=Xt(iT),r=Xt(nT),s=b=>{t(E7(b))};return B.jsx("div",{className:"flex items-center gap-4 p-[var(--sm-padding)] border-b border-solid border-[var(--border)]",children:B.jsx(B6,{items:r,activeId:n?.productId,onSelect:s})})};class f8{static getCartTotalCount({cartItems:n}){return n.reduce((r,s)=>r+s.count,0)}static getUniqueCategories(n){return[...[...new Set(n.flatMap(b=>b.categories))].map((b,h)=>({name:b,value:b,productId:h+1,items:[]})),h7].sort((b,h)=>b.productId-h.productId)}static getCartPreparedOption(n,r){if(!n?.length)return[];const s=r.flatMap(b=>b.items||[]);return n.map(b=>{const h=s.find(p=>p.parentName===b.parentName&&p.metadata.label===b.metadata.label);return{...b,count:h?h.count:1}})}}class M0{static getImage(n){const r=n?.metadata?.Image||n?.metadata?.image;return r?`https://preview.threekit.com${r}`:void 0}static getValueLabel(n){return n?.metadata?.label||n?.metadata?.Label||n?.name||"Unnamed"}static getZoomIconColor(n){return n?.metadata?.zoomIconColor||n?.metadata?.zoomIconColor||null}static getHexColor(n){return n?.metadata?.hex||n?.metadata?.Hex||null}static getAttributeLabel(n){return n?.metadata?.label||n?.metadata?.Label||n?.name||"Unnamed"}}function Hn(t,n,{checkForDefaultPrevented:r=!0}={}){return function(b){if(t?.(b),r===!1||!b.defaultPrevented)return n?.(b)}}function yS(t,n){if(typeof t=="function")return t(n);t!=null&&(t.current=n)}function z7(...t){return n=>{let r=!1;const s=t.map(b=>{const h=yS(b,n);return!r&&typeof h=="function"&&(r=!0),h});if(r)return()=>{for(let b=0;b<s.length;b++){const h=s[b];typeof h=="function"?h():yS(t[b],null)}}}}function Ki(...t){return X.useCallback(z7(...t),t)}function eL(t,n){const r=X.createContext(n),s=h=>{const{children:p,...T}=h,E=X.useMemo(()=>T,Object.values(T));return B.jsx(r.Provider,{value:E,children:p})};s.displayName=t+"Provider";function b(h){const p=X.useContext(r);if(p)return p;if(n!==void 0)return n;throw new Error(`\`${h}\` must be used within \`${t}\``)}return[s,b]}function d8(t,n=[]){let r=[];function s(h,p){const T=X.createContext(p),E=r.length;r=[...r,p];const A=L=>{const{scope:R,children:z,...U}=L,G=R?.[t]?.[E]||T,J=X.useMemo(()=>U,Object.values(U));return B.jsx(G.Provider,{value:J,children:z})};A.displayName=h+"Provider";function M(L,R){const z=R?.[t]?.[E]||T,U=X.useContext(z);if(U)return U;if(p!==void 0)return p;throw new Error(`\`${L}\` must be used within \`${h}\``)}return[A,M]}const b=()=>{const h=r.map(p=>X.createContext(p));return function(T){const E=T?.[t]||h;return X.useMemo(()=>({[`__scope${t}`]:{...T,[t]:E}}),[T,E])}};return b.scopeName=t,[s,tL(b,...n)]}function tL(...t){const n=t[0];if(t.length===1)return n;const r=()=>{const s=t.map(b=>({useScope:b(),scopeName:b.scopeName}));return function(h){const p=s.reduce((T,{useScope:E,scopeName:A})=>{const L=E(h)[`__scope${A}`];return{...T,...L}},{});return X.useMemo(()=>({[`__scope${n.scopeName}`]:p}),[p])}};return r.scopeName=n.scopeName,r}var Nf=globalThis?.document?X.useLayoutEffect:()=>{},aL=X[" useId ".trim().toString()]||(()=>{}),lL=0;function Vg(t){const[n,r]=X.useState(aL());return Nf(()=>{r(s=>s??String(lL++))},[t]),t||(n?`radix-${n}`:"")}var nL=X[" useInsertionEffect ".trim().toString()]||Nf;function oT({prop:t,defaultProp:n,onChange:r=()=>{},caller:s}){const[b,h,p]=iL({defaultProp:n,onChange:r}),T=t!==void 0,E=T?t:b;{const M=X.useRef(t!==void 0);X.useEffect(()=>{const L=M.current;L!==T&&console.warn(`${s} is changing from ${L?"controlled":"uncontrolled"} to ${T?"controlled":"uncontrolled"}. Components should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled value for the lifetime of the component.`),M.current=T},[T,s])}const A=X.useCallback(M=>{if(T){const L=oL(M)?M(t):M;L!==t&&p.current?.(L)}else h(M)},[T,t,h,p]);return[E,A]}function iL({defaultProp:t,onChange:n}){const[r,s]=X.useState(t),b=X.useRef(r),h=X.useRef(n);return nL(()=>{h.current=n},[n]),X.useEffect(()=>{b.current!==r&&(h.current?.(r),b.current=r)},[r,b]),[r,s,h]}function oL(t){return typeof t=="function"}function rT(t){const n=rL(t),r=X.forwardRef((s,b)=>{const{children:h,...p}=s,T=X.Children.toArray(h),E=T.find(sL);if(E){const A=E.props.children,M=T.map(L=>L===E?X.Children.count(A)>1?X.Children.only(null):X.isValidElement(A)?A.props.children:null:L);return B.jsx(n,{...p,ref:b,children:X.isValidElement(A)?X.cloneElement(A,void 0,M):null})}return B.jsx(n,{...p,ref:b,children:h})});return r.displayName=`${t}.Slot`,r}function rL(t){const n=X.forwardRef((r,s)=>{const{children:b,...h}=r;if(X.isValidElement(b)){const p=fL(b),T=cL(h,b.props);return b.type!==X.Fragment&&(T.ref=s?z7(s,p):p),X.cloneElement(b,T)}return X.Children.count(b)>1?X.Children.only(null):null});return n.displayName=`${t}.SlotClone`,n}var uL=Symbol("radix.slottable");function sL(t){return X.isValidElement(t)&&typeof t.type=="function"&&"__radixId"in t.type&&t.type.__radixId===uL}function cL(t,n){const r={...n};for(const s in n){const b=t[s],h=n[s];/^on[A-Z]/.test(s)?b&&h?r[s]=(...T)=>{const E=h(...T);return b(...T),E}:b&&(r[s]=b):s==="style"?r[s]={...b,...h}:s==="className"&&(r[s]=[b,h].filter(Boolean).join(" "))}return{...t,...r}}function fL(t){let n=Object.getOwnPropertyDescriptor(t.props,"ref")?.get,r=n&&"isReactWarning"in n&&n.isReactWarning;return r?t.ref:(n=Object.getOwnPropertyDescriptor(t,"ref")?.get,r=n&&"isReactWarning"in n&&n.isReactWarning,r?t.props.ref:t.props.ref||t.ref)}var dL=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],tn=dL.reduce((t,n)=>{const r=rT(`Primitive.${n}`),s=X.forwardRef((b,h)=>{const{asChild:p,...T}=b,E=p?r:n;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),B.jsx(E,{...T,ref:h})});return s.displayName=`Primitive.${n}`,{...t,[n]:s}},{});function bL(t,n){t&&c7.flushSync(()=>t.dispatchEvent(n))}function bm(t){const n=X.useRef(t);return X.useEffect(()=>{n.current=t}),X.useMemo(()=>(...r)=>n.current?.(...r),[])}function mL(t,n=globalThis?.document){const r=bm(t);X.useEffect(()=>{const s=b=>{b.key==="Escape"&&r(b)};return n.addEventListener("keydown",s,{capture:!0}),()=>n.removeEventListener("keydown",s,{capture:!0})},[r,n])}var hL="DismissableLayer",O6="dismissableLayer.update",pL="dismissableLayer.pointerDownOutside",gL="dismissableLayer.focusOutside",CS,x7=X.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),uT=X.forwardRef((t,n)=>{const{disableOutsidePointerEvents:r=!1,onEscapeKeyDown:s,onPointerDownOutside:b,onFocusOutside:h,onInteractOutside:p,onDismiss:T,...E}=t,A=X.useContext(x7),[M,L]=X.useState(null),R=M?.ownerDocument??globalThis?.document,[,z]=X.useState({}),U=Ki(n,Se=>L(Se)),G=Array.from(A.layers),[J]=[...A.layersWithOutsidePointerEventsDisabled].slice(-1),F=G.indexOf(J),ie=M?G.indexOf(M):-1,te=A.layersWithOutsidePointerEventsDisabled.size>0,Te=ie>=F,ge=SL(Se=>{const be=Se.target,ke=[...A.branches].some(Ce=>Ce.contains(be));!Te||ke||(b?.(Se),p?.(Se),Se.defaultPrevented||T?.())},R),le=yL(Se=>{const be=Se.target;[...A.branches].some(Ce=>Ce.contains(be))||(h?.(Se),p?.(Se),Se.defaultPrevented||T?.())},R);return mL(Se=>{ie===A.layers.size-1&&(s?.(Se),!Se.defaultPrevented&&T&&(Se.preventDefault(),T()))},R),X.useEffect(()=>{if(M)return r&&(A.layersWithOutsidePointerEventsDisabled.size===0&&(CS=R.body.style.pointerEvents,R.body.style.pointerEvents="none"),A.layersWithOutsidePointerEventsDisabled.add(M)),A.layers.add(M),ES(),()=>{r&&A.layersWithOutsidePointerEventsDisabled.size===1&&(R.body.style.pointerEvents=CS)}},[M,R,r,A]),X.useEffect(()=>()=>{M&&(A.layers.delete(M),A.layersWithOutsidePointerEventsDisabled.delete(M),ES())},[M,A]),X.useEffect(()=>{const Se=()=>z({});return document.addEventListener(O6,Se),()=>document.removeEventListener(O6,Se)},[]),B.jsx(tn.div,{...E,ref:U,style:{pointerEvents:te?Te?"auto":"none":void 0,...t.style},onFocusCapture:Hn(t.onFocusCapture,le.onFocusCapture),onBlurCapture:Hn(t.onBlurCapture,le.onBlurCapture),onPointerDownCapture:Hn(t.onPointerDownCapture,ge.onPointerDownCapture)})});uT.displayName=hL;var TL="DismissableLayerBranch",vL=X.forwardRef((t,n)=>{const r=X.useContext(x7),s=X.useRef(null),b=Ki(n,s);return X.useEffect(()=>{const h=s.current;if(h)return r.branches.add(h),()=>{r.branches.delete(h)}},[r.branches]),B.jsx(tn.div,{...t,ref:b})});vL.displayName=TL;function SL(t,n=globalThis?.document){const r=bm(t),s=X.useRef(!1),b=X.useRef(()=>{});return X.useEffect(()=>{const h=T=>{if(T.target&&!s.current){let E=function(){R7(pL,r,A,{discrete:!0})};const A={originalEvent:T};T.pointerType==="touch"?(n.removeEventListener("click",b.current),b.current=E,n.addEventListener("click",b.current,{once:!0})):E()}else n.removeEventListener("click",b.current);s.current=!1},p=window.setTimeout(()=>{n.addEventListener("pointerdown",h)},0);return()=>{window.clearTimeout(p),n.removeEventListener("pointerdown",h),n.removeEventListener("click",b.current)}},[n,r]),{onPointerDownCapture:()=>s.current=!0}}function yL(t,n=globalThis?.document){const r=bm(t),s=X.useRef(!1);return X.useEffect(()=>{const b=h=>{h.target&&!s.current&&R7(gL,r,{originalEvent:h},{discrete:!1})};return n.addEventListener("focusin",b),()=>n.removeEventListener("focusin",b)},[n,r]),{onFocusCapture:()=>s.current=!0,onBlurCapture:()=>s.current=!1}}function ES(){const t=new CustomEvent(O6);document.dispatchEvent(t)}function R7(t,n,r,{discrete:s}){const b=r.originalEvent.target,h=new CustomEvent(t,{bubbles:!1,cancelable:!0,detail:r});n&&b.addEventListener(t,n,{once:!0}),s?bL(b,h):b.dispatchEvent(h)}var n6="focusScope.autoFocusOnMount",i6="focusScope.autoFocusOnUnmount",AS={bubbles:!1,cancelable:!0},CL="FocusScope",sT=X.forwardRef((t,n)=>{const{loop:r=!1,trapped:s=!1,onMountAutoFocus:b,onUnmountAutoFocus:h,...p}=t,[T,E]=X.useState(null),A=bm(b),M=bm(h),L=X.useRef(null),R=Ki(n,G=>E(G)),z=X.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;X.useEffect(()=>{if(s){let G=function(te){if(z.paused||!T)return;const Te=te.target;T.contains(Te)?L.current=Te:Df(L.current,{select:!0})},J=function(te){if(z.paused||!T)return;const Te=te.relatedTarget;Te!==null&&(T.contains(Te)||Df(L.current,{select:!0}))},F=function(te){if(document.activeElement===document.body)for(const ge of te)ge.removedNodes.length>0&&Df(T)};document.addEventListener("focusin",G),document.addEventListener("focusout",J);const ie=new MutationObserver(F);return T&&ie.observe(T,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",G),document.removeEventListener("focusout",J),ie.disconnect()}}},[s,T,z.paused]),X.useEffect(()=>{if(T){DS.add(z);const G=document.activeElement;if(!T.contains(G)){const F=new CustomEvent(n6,AS);T.addEventListener(n6,A),T.dispatchEvent(F),F.defaultPrevented||(EL(zL(N7(T)),{select:!0}),document.activeElement===G&&Df(T))}return()=>{T.removeEventListener(n6,A),setTimeout(()=>{const F=new CustomEvent(i6,AS);T.addEventListener(i6,M),T.dispatchEvent(F),F.defaultPrevented||Df(G??document.body,{select:!0}),T.removeEventListener(i6,M),DS.remove(z)},0)}}},[T,A,M,z]);const U=X.useCallback(G=>{if(!r&&!s||z.paused)return;const J=G.key==="Tab"&&!G.altKey&&!G.ctrlKey&&!G.metaKey,F=document.activeElement;if(J&&F){const ie=G.currentTarget,[te,Te]=AL(ie);te&&Te?!G.shiftKey&&F===Te?(G.preventDefault(),r&&Df(te,{select:!0})):G.shiftKey&&F===te&&(G.preventDefault(),r&&Df(Te,{select:!0})):F===ie&&G.preventDefault()}},[r,s,z.paused]);return B.jsx(tn.div,{tabIndex:-1,...p,ref:R,onKeyDown:U})});sT.displayName=CL;function EL(t,{select:n=!1}={}){const r=document.activeElement;for(const s of t)if(Df(s,{select:n}),document.activeElement!==r)return}function AL(t){const n=N7(t),r=MS(n,t),s=MS(n.reverse(),t);return[r,s]}function N7(t){const n=[],r=document.createTreeWalker(t,NodeFilter.SHOW_ELEMENT,{acceptNode:s=>{const b=s.tagName==="INPUT"&&s.type==="hidden";return s.disabled||s.hidden||b?NodeFilter.FILTER_SKIP:s.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;r.nextNode();)n.push(r.currentNode);return n}function MS(t,n){for(const r of t)if(!ML(r,{upTo:n}))return r}function ML(t,{upTo:n}){if(getComputedStyle(t).visibility==="hidden")return!0;for(;t;){if(n!==void 0&&t===n)return!1;if(getComputedStyle(t).display==="none")return!0;t=t.parentElement}return!1}function DL(t){return t instanceof HTMLInputElement&&"select"in t}function Df(t,{select:n=!1}={}){if(t&&t.focus){const r=document.activeElement;t.focus({preventScroll:!0}),t!==r&&DL(t)&&n&&t.select()}}var DS=LL();function LL(){let t=[];return{add(n){const r=t[0];n!==r&&r?.pause(),t=LS(t,n),t.unshift(n)},remove(n){t=LS(t,n),t[0]?.resume()}}}function LS(t,n){const r=[...t],s=r.indexOf(n);return s!==-1&&r.splice(s,1),r}function zL(t){return t.filter(n=>n.tagName!=="A")}var xL="Portal",B7=X.forwardRef((t,n)=>{const{container:r,...s}=t,[b,h]=X.useState(!1);Nf(()=>h(!0),[]);const p=r||b&&globalThis?.document?.body;return p?z0.createPortal(B.jsx(tn.div,{...s,ref:n}),p):null});B7.displayName=xL;function RL(t,n){return X.useReducer((r,s)=>n[r][s]??r,t)}var Tm=t=>{const{present:n,children:r}=t,s=NL(n),b=typeof r=="function"?r({present:s.isPresent}):X.Children.only(r),h=Ki(s.ref,BL(b));return typeof r=="function"||s.isPresent?X.cloneElement(b,{ref:h}):null};Tm.displayName="Presence";function NL(t){const[n,r]=X.useState(),s=X.useRef(null),b=X.useRef(t),h=X.useRef("none"),p=t?"mounted":"unmounted",[T,E]=RL(p,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return X.useEffect(()=>{const A=Ng(s.current);h.current=T==="mounted"?A:"none"},[T]),Nf(()=>{const A=s.current,M=b.current;if(M!==t){const R=h.current,z=Ng(A);t?E("MOUNT"):z==="none"||A?.display==="none"?E("UNMOUNT"):E(M&&R!==z?"ANIMATION_OUT":"UNMOUNT"),b.current=t}},[t,E]),Nf(()=>{if(n){let A;const M=n.ownerDocument.defaultView??window,L=z=>{const G=Ng(s.current).includes(CSS.escape(z.animationName));if(z.target===n&&G&&(E("ANIMATION_END"),!b.current)){const J=n.style.animationFillMode;n.style.animationFillMode="forwards",A=M.setTimeout(()=>{n.style.animationFillMode==="forwards"&&(n.style.animationFillMode=J)})}},R=z=>{z.target===n&&(h.current=Ng(s.current))};return n.addEventListener("animationstart",R),n.addEventListener("animationcancel",L),n.addEventListener("animationend",L),()=>{M.clearTimeout(A),n.removeEventListener("animationstart",R),n.removeEventListener("animationcancel",L),n.removeEventListener("animationend",L)}}else E("ANIMATION_END")},[n,E]),{isPresent:["mounted","unmountSuspended"].includes(T),ref:X.useCallback(A=>{s.current=A?getComputedStyle(A):null,r(A)},[])}}function Ng(t){return t?.animationName||"none"}function BL(t){let n=Object.getOwnPropertyDescriptor(t.props,"ref")?.get,r=n&&"isReactWarning"in n&&n.isReactWarning;return r?t.ref:(n=Object.getOwnPropertyDescriptor(t,"ref")?.get,r=n&&"isReactWarning"in n&&n.isReactWarning,r?t.props.ref:t.props.ref||t.ref)}var o6=0;function O7(){X.useEffect(()=>{const t=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",t[0]??zS()),document.body.insertAdjacentElement("beforeend",t[1]??zS()),o6++,()=>{o6===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(n=>n.remove()),o6--}},[])}function zS(){const t=document.createElement("span");return t.setAttribute("data-radix-focus-guard",""),t.tabIndex=0,t.style.outline="none",t.style.opacity="0",t.style.position="fixed",t.style.pointerEvents="none",t}var vu=function(){return vu=Object.assign||function(n){for(var r,s=1,b=arguments.length;s<b;s++){r=arguments[s];for(var h in r)Object.prototype.hasOwnProperty.call(r,h)&&(n[h]=r[h])}return n},vu.apply(this,arguments)};function _7(t,n){var r={};for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&n.indexOf(s)<0&&(r[s]=t[s]);if(t!=null&&typeof Object.getOwnPropertySymbols=="function")for(var b=0,s=Object.getOwnPropertySymbols(t);b<s.length;b++)n.indexOf(s[b])<0&&Object.prototype.propertyIsEnumerable.call(t,s[b])&&(r[s[b]]=t[s[b]]);return r}function OL(t,n,r){if(r||arguments.length===2)for(var s=0,b=n.length,h;s<b;s++)(h||!(s in n))&&(h||(h=Array.prototype.slice.call(n,0,s)),h[s]=n[s]);return t.concat(h||Array.prototype.slice.call(n))}var qg="right-scroll-bar-position",jg="width-before-scroll-bar",_L="with-scroll-bars-hidden",IL="--removed-body-scroll-bar-size";function r6(t,n){return typeof t=="function"?t(n):t&&(t.current=n),t}function wL(t,n){var r=tt.useState(function(){return{value:t,callback:n,facade:{get current(){return r.value},set current(s){var b=r.value;b!==s&&(r.value=s,r.callback(s,b))}}}})[0];return r.callback=n,r.facade}var GL=typeof window<"u"?X.useLayoutEffect:X.useEffect,xS=new WeakMap;function kL(t,n){var r=wL(null,function(s){return t.forEach(function(b){return r6(b,s)})});return GL(function(){var s=xS.get(r);if(s){var b=new Set(s),h=new Set(t),p=r.current;b.forEach(function(T){h.has(T)||r6(T,null)}),h.forEach(function(T){b.has(T)||r6(T,p)})}xS.set(r,t)},[t]),r}function FL(t){return t}function UL(t,n){n===void 0&&(n=FL);var r=[],s=!1,b={read:function(){if(s)throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return r.length?r[r.length-1]:t},useMedium:function(h){var p=n(h,s);return r.push(p),function(){r=r.filter(function(T){return T!==p})}},assignSyncMedium:function(h){for(s=!0;r.length;){var p=r;r=[],p.forEach(h)}r={push:function(T){return h(T)},filter:function(){return r}}},assignMedium:function(h){s=!0;var p=[];if(r.length){var T=r;r=[],T.forEach(h),p=r}var E=function(){var M=p;p=[],M.forEach(h)},A=function(){return Promise.resolve().then(E)};A(),r={push:function(M){p.push(M),A()},filter:function(M){return p=p.filter(M),r}}}};return b}function HL(t){t===void 0&&(t={});var n=UL(null);return n.options=vu({async:!0,ssr:!1},t),n}var I7=function(t){var n=t.sideCar,r=_7(t,["sideCar"]);if(!n)throw new Error("Sidecar: please provide `sideCar` property to import the right car");var s=n.read();if(!s)throw new Error("Sidecar medium not found");return X.createElement(s,vu({},r))};I7.isSideCarExport=!0;function PL(t,n){return t.useMedium(n),I7}var w7=HL(),u6=function(){},b8=X.forwardRef(function(t,n){var r=X.useRef(null),s=X.useState({onScrollCapture:u6,onWheelCapture:u6,onTouchMoveCapture:u6}),b=s[0],h=s[1],p=t.forwardProps,T=t.children,E=t.className,A=t.removeScrollBar,M=t.enabled,L=t.shards,R=t.sideCar,z=t.noRelative,U=t.noIsolation,G=t.inert,J=t.allowPinchZoom,F=t.as,ie=F===void 0?"div":F,te=t.gapMode,Te=_7(t,["forwardProps","children","className","removeScrollBar","enabled","shards","sideCar","noRelative","noIsolation","inert","allowPinchZoom","as","gapMode"]),ge=R,le=kL([r,n]),Se=vu(vu({},Te),b);return X.createElement(X.Fragment,null,M&&X.createElement(ge,{sideCar:w7,removeScrollBar:A,shards:L,noRelative:z,noIsolation:U,inert:G,setCallbacks:h,allowPinchZoom:!!J,lockRef:r,gapMode:te}),p?X.cloneElement(X.Children.only(T),vu(vu({},Se),{ref:le})):X.createElement(ie,vu({},Se,{className:E,ref:le}),T))});b8.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1};b8.classNames={fullWidth:jg,zeroRight:qg};var WL=function(){if(typeof __webpack_nonce__<"u")return __webpack_nonce__};function VL(){if(!document)return null;var t=document.createElement("style");t.type="text/css";var n=WL();return n&&t.setAttribute("nonce",n),t}function qL(t,n){t.styleSheet?t.styleSheet.cssText=n:t.appendChild(document.createTextNode(n))}function jL(t){var n=document.head||document.getElementsByTagName("head")[0];n.appendChild(t)}var YL=function(){var t=0,n=null;return{add:function(r){t==0&&(n=VL())&&(qL(n,r),jL(n)),t++},remove:function(){t--,!t&&n&&(n.parentNode&&n.parentNode.removeChild(n),n=null)}}},QL=function(){var t=YL();return function(n,r){X.useEffect(function(){return t.add(n),function(){t.remove()}},[n&&r])}},G7=function(){var t=QL(),n=function(r){var s=r.styles,b=r.dynamic;return t(s,b),null};return n},XL={left:0,top:0,right:0,gap:0},s6=function(t){return parseInt(t||"",10)||0},KL=function(t){var n=window.getComputedStyle(document.body),r=n[t==="padding"?"paddingLeft":"marginLeft"],s=n[t==="padding"?"paddingTop":"marginTop"],b=n[t==="padding"?"paddingRight":"marginRight"];return[s6(r),s6(s),s6(b)]},ZL=function(t){if(t===void 0&&(t="margin"),typeof window>"u")return XL;var n=KL(t),r=document.documentElement.clientWidth,s=window.innerWidth;return{left:n[0],top:n[1],right:n[2],gap:Math.max(0,s-r+n[2]-n[0])}},JL=G7(),um="data-scroll-locked",$L=function(t,n,r,s){var b=t.left,h=t.top,p=t.right,T=t.gap;return r===void 0&&(r="margin"),`
265
+ .`.concat(_L,` {
266
+ overflow: hidden `).concat(s,`;
267
+ padding-right: `).concat(T,"px ").concat(s,`;
268
+ }
269
+ body[`).concat(um,`] {
270
+ overflow: hidden `).concat(s,`;
271
+ overscroll-behavior: contain;
272
+ `).concat([n&&"position: relative ".concat(s,";"),r==="margin"&&`
273
+ padding-left: `.concat(b,`px;
274
+ padding-top: `).concat(h,`px;
275
+ padding-right: `).concat(p,`px;
276
+ margin-left:0;
277
+ margin-top:0;
278
+ margin-right: `).concat(T,"px ").concat(s,`;
279
+ `),r==="padding"&&"padding-right: ".concat(T,"px ").concat(s,";")].filter(Boolean).join(""),`
280
+ }
281
+
282
+ .`).concat(qg,` {
283
+ right: `).concat(T,"px ").concat(s,`;
284
+ }
285
+
286
+ .`).concat(jg,` {
287
+ margin-right: `).concat(T,"px ").concat(s,`;
288
+ }
289
+
290
+ .`).concat(qg," .").concat(qg,` {
291
+ right: 0 `).concat(s,`;
292
+ }
293
+
294
+ .`).concat(jg," .").concat(jg,` {
295
+ margin-right: 0 `).concat(s,`;
296
+ }
297
+
298
+ body[`).concat(um,`] {
299
+ `).concat(IL,": ").concat(T,`px;
300
+ }
301
+ `)},RS=function(){var t=parseInt(document.body.getAttribute(um)||"0",10);return isFinite(t)?t:0},ez=function(){X.useEffect(function(){return document.body.setAttribute(um,(RS()+1).toString()),function(){var t=RS()-1;t<=0?document.body.removeAttribute(um):document.body.setAttribute(um,t.toString())}},[])},tz=function(t){var n=t.noRelative,r=t.noImportant,s=t.gapMode,b=s===void 0?"margin":s;ez();var h=X.useMemo(function(){return ZL(b)},[b]);return X.createElement(JL,{styles:$L(h,!n,b,r?"":"!important")})},_6=!1;if(typeof window<"u")try{var Bg=Object.defineProperty({},"passive",{get:function(){return _6=!0,!0}});window.addEventListener("test",Bg,Bg),window.removeEventListener("test",Bg,Bg)}catch{_6=!1}var em=_6?{passive:!1}:!1,az=function(t){return t.tagName==="TEXTAREA"},k7=function(t,n){if(!(t instanceof Element))return!1;var r=window.getComputedStyle(t);return r[n]!=="hidden"&&!(r.overflowY===r.overflowX&&!az(t)&&r[n]==="visible")},lz=function(t){return k7(t,"overflowY")},nz=function(t){return k7(t,"overflowX")},NS=function(t,n){var r=n.ownerDocument,s=n;do{typeof ShadowRoot<"u"&&s instanceof ShadowRoot&&(s=s.host);var b=F7(t,s);if(b){var h=U7(t,s),p=h[1],T=h[2];if(p>T)return!0}s=s.parentNode}while(s&&s!==r.body);return!1},iz=function(t){var n=t.scrollTop,r=t.scrollHeight,s=t.clientHeight;return[n,r,s]},oz=function(t){var n=t.scrollLeft,r=t.scrollWidth,s=t.clientWidth;return[n,r,s]},F7=function(t,n){return t==="v"?lz(n):nz(n)},U7=function(t,n){return t==="v"?iz(n):oz(n)},rz=function(t,n){return t==="h"&&n==="rtl"?-1:1},uz=function(t,n,r,s,b){var h=rz(t,window.getComputedStyle(n).direction),p=h*s,T=r.target,E=n.contains(T),A=!1,M=p>0,L=0,R=0;do{if(!T)break;var z=U7(t,T),U=z[0],G=z[1],J=z[2],F=G-J-h*U;(U||F)&&F7(t,T)&&(L+=F,R+=U);var ie=T.parentNode;T=ie&&ie.nodeType===Node.DOCUMENT_FRAGMENT_NODE?ie.host:ie}while(!E&&T!==document.body||E&&(n.contains(T)||n===T));return(M&&Math.abs(L)<1||!M&&Math.abs(R)<1)&&(A=!0),A},Og=function(t){return"changedTouches"in t?[t.changedTouches[0].clientX,t.changedTouches[0].clientY]:[0,0]},BS=function(t){return[t.deltaX,t.deltaY]},OS=function(t){return t&&"current"in t?t.current:t},sz=function(t,n){return t[0]===n[0]&&t[1]===n[1]},cz=function(t){return`
302
+ .block-interactivity-`.concat(t,` {pointer-events: none;}
303
+ .allow-interactivity-`).concat(t,` {pointer-events: all;}
304
+ `)},fz=0,tm=[];function dz(t){var n=X.useRef([]),r=X.useRef([0,0]),s=X.useRef(),b=X.useState(fz++)[0],h=X.useState(G7)[0],p=X.useRef(t);X.useEffect(function(){p.current=t},[t]),X.useEffect(function(){if(t.inert){document.body.classList.add("block-interactivity-".concat(b));var G=OL([t.lockRef.current],(t.shards||[]).map(OS),!0).filter(Boolean);return G.forEach(function(J){return J.classList.add("allow-interactivity-".concat(b))}),function(){document.body.classList.remove("block-interactivity-".concat(b)),G.forEach(function(J){return J.classList.remove("allow-interactivity-".concat(b))})}}},[t.inert,t.lockRef.current,t.shards]);var T=X.useCallback(function(G,J){if("touches"in G&&G.touches.length===2||G.type==="wheel"&&G.ctrlKey)return!p.current.allowPinchZoom;var F=Og(G),ie=r.current,te="deltaX"in G?G.deltaX:ie[0]-F[0],Te="deltaY"in G?G.deltaY:ie[1]-F[1],ge,le=G.target,Se=Math.abs(te)>Math.abs(Te)?"h":"v";if("touches"in G&&Se==="h"&&le.type==="range")return!1;var be=NS(Se,le);if(!be)return!0;if(be?ge=Se:(ge=Se==="v"?"h":"v",be=NS(Se,le)),!be)return!1;if(!s.current&&"changedTouches"in G&&(te||Te)&&(s.current=ge),!ge)return!0;var ke=s.current||ge;return uz(ke,J,G,ke==="h"?te:Te)},[]),E=X.useCallback(function(G){var J=G;if(!(!tm.length||tm[tm.length-1]!==h)){var F="deltaY"in J?BS(J):Og(J),ie=n.current.filter(function(ge){return ge.name===J.type&&(ge.target===J.target||J.target===ge.shadowParent)&&sz(ge.delta,F)})[0];if(ie&&ie.should){J.cancelable&&J.preventDefault();return}if(!ie){var te=(p.current.shards||[]).map(OS).filter(Boolean).filter(function(ge){return ge.contains(J.target)}),Te=te.length>0?T(J,te[0]):!p.current.noIsolation;Te&&J.cancelable&&J.preventDefault()}}},[]),A=X.useCallback(function(G,J,F,ie){var te={name:G,delta:J,target:F,should:ie,shadowParent:bz(F)};n.current.push(te),setTimeout(function(){n.current=n.current.filter(function(Te){return Te!==te})},1)},[]),M=X.useCallback(function(G){r.current=Og(G),s.current=void 0},[]),L=X.useCallback(function(G){A(G.type,BS(G),G.target,T(G,t.lockRef.current))},[]),R=X.useCallback(function(G){A(G.type,Og(G),G.target,T(G,t.lockRef.current))},[]);X.useEffect(function(){return tm.push(h),t.setCallbacks({onScrollCapture:L,onWheelCapture:L,onTouchMoveCapture:R}),document.addEventListener("wheel",E,em),document.addEventListener("touchmove",E,em),document.addEventListener("touchstart",M,em),function(){tm=tm.filter(function(G){return G!==h}),document.removeEventListener("wheel",E,em),document.removeEventListener("touchmove",E,em),document.removeEventListener("touchstart",M,em)}},[]);var z=t.removeScrollBar,U=t.inert;return X.createElement(X.Fragment,null,U?X.createElement(h,{styles:cz(b)}):null,z?X.createElement(tz,{noRelative:t.noRelative,gapMode:t.gapMode}):null)}function bz(t){for(var n=null;t!==null;)t instanceof ShadowRoot&&(n=t.host,t=t.host),t=t.parentNode;return n}const mz=PL(w7,dz);var cT=X.forwardRef(function(t,n){return X.createElement(b8,vu({},t,{ref:n,sideCar:mz}))});cT.classNames=b8.classNames;var hz=function(t){if(typeof document>"u")return null;var n=Array.isArray(t)?t[0]:t;return n.ownerDocument.body},am=new WeakMap,_g=new WeakMap,Ig={},c6=0,H7=function(t){return t&&(t.host||H7(t.parentNode))},pz=function(t,n){return n.map(function(r){if(t.contains(r))return r;var s=H7(r);return s&&t.contains(s)?s:(console.error("aria-hidden",r,"in not contained inside",t,". Doing nothing"),null)}).filter(function(r){return!!r})},gz=function(t,n,r,s){var b=pz(n,Array.isArray(t)?t:[t]);Ig[r]||(Ig[r]=new WeakMap);var h=Ig[r],p=[],T=new Set,E=new Set(b),A=function(L){!L||T.has(L)||(T.add(L),A(L.parentNode))};b.forEach(A);var M=function(L){!L||E.has(L)||Array.prototype.forEach.call(L.children,function(R){if(T.has(R))M(R);else try{var z=R.getAttribute(s),U=z!==null&&z!=="false",G=(am.get(R)||0)+1,J=(h.get(R)||0)+1;am.set(R,G),h.set(R,J),p.push(R),G===1&&U&&_g.set(R,!0),J===1&&R.setAttribute(r,"true"),U||R.setAttribute(s,"true")}catch(F){console.error("aria-hidden: cannot operate on ",R,F)}})};return M(n),T.clear(),c6++,function(){p.forEach(function(L){var R=am.get(L)-1,z=h.get(L)-1;am.set(L,R),h.set(L,z),R||(_g.has(L)||L.removeAttribute(s),_g.delete(L)),z||L.removeAttribute(r)}),c6--,c6||(am=new WeakMap,am=new WeakMap,_g=new WeakMap,Ig={})}},P7=function(t,n,r){r===void 0&&(r="data-aria-hidden");var s=Array.from(Array.isArray(t)?t:[t]),b=hz(t);return b?(s.push.apply(s,Array.from(b.querySelectorAll("[aria-live], script"))),gz(s,b,r,"aria-hidden")):function(){return null}},m8="Dialog",[W7]=d8(m8),[Tz,Lr]=W7(m8),V7=t=>{const{__scopeDialog:n,children:r,open:s,defaultOpen:b,onOpenChange:h,modal:p=!0}=t,T=X.useRef(null),E=X.useRef(null),[A,M]=oT({prop:s,defaultProp:b??!1,onChange:h,caller:m8});return B.jsx(Tz,{scope:n,triggerRef:T,contentRef:E,contentId:Vg(),titleId:Vg(),descriptionId:Vg(),open:A,onOpenChange:M,onOpenToggle:X.useCallback(()=>M(L=>!L),[M]),modal:p,children:r})};V7.displayName=m8;var q7="DialogTrigger",vz=X.forwardRef((t,n)=>{const{__scopeDialog:r,...s}=t,b=Lr(q7,r),h=Ki(n,b.triggerRef);return B.jsx(tn.button,{type:"button","aria-haspopup":"dialog","aria-expanded":b.open,"aria-controls":b.contentId,"data-state":bT(b.open),...s,ref:h,onClick:Hn(t.onClick,b.onOpenToggle)})});vz.displayName=q7;var fT="DialogPortal",[Sz,j7]=W7(fT,{forceMount:void 0}),Y7=t=>{const{__scopeDialog:n,forceMount:r,children:s,container:b}=t,h=Lr(fT,n);return B.jsx(Sz,{scope:n,forceMount:r,children:X.Children.map(s,p=>B.jsx(Tm,{present:r||h.open,children:B.jsx(B7,{asChild:!0,container:b,children:p})}))})};Y7.displayName=fT;var Zg="DialogOverlay",Q7=X.forwardRef((t,n)=>{const r=j7(Zg,t.__scopeDialog),{forceMount:s=r.forceMount,...b}=t,h=Lr(Zg,t.__scopeDialog);return h.modal?B.jsx(Tm,{present:s||h.open,children:B.jsx(Cz,{...b,ref:n})}):null});Q7.displayName=Zg;var yz=rT("DialogOverlay.RemoveScroll"),Cz=X.forwardRef((t,n)=>{const{__scopeDialog:r,...s}=t,b=Lr(Zg,r);return B.jsx(cT,{as:yz,allowPinchZoom:!0,shards:[b.contentRef],children:B.jsx(tn.div,{"data-state":bT(b.open),...s,ref:n,style:{pointerEvents:"auto",...s.style}})})}),D0="DialogContent",X7=X.forwardRef((t,n)=>{const r=j7(D0,t.__scopeDialog),{forceMount:s=r.forceMount,...b}=t,h=Lr(D0,t.__scopeDialog);return B.jsx(Tm,{present:s||h.open,children:h.modal?B.jsx(Ez,{...b,ref:n}):B.jsx(Az,{...b,ref:n})})});X7.displayName=D0;var Ez=X.forwardRef((t,n)=>{const r=Lr(D0,t.__scopeDialog),s=X.useRef(null),b=Ki(n,r.contentRef,s);return X.useEffect(()=>{const h=s.current;if(h)return P7(h)},[]),B.jsx(K7,{...t,ref:b,trapFocus:r.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:Hn(t.onCloseAutoFocus,h=>{h.preventDefault(),r.triggerRef.current?.focus()}),onPointerDownOutside:Hn(t.onPointerDownOutside,h=>{const p=h.detail.originalEvent,T=p.button===0&&p.ctrlKey===!0;(p.button===2||T)&&h.preventDefault()}),onFocusOutside:Hn(t.onFocusOutside,h=>h.preventDefault())})}),Az=X.forwardRef((t,n)=>{const r=Lr(D0,t.__scopeDialog),s=X.useRef(!1),b=X.useRef(!1);return B.jsx(K7,{...t,ref:n,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:h=>{t.onCloseAutoFocus?.(h),h.defaultPrevented||(s.current||r.triggerRef.current?.focus(),h.preventDefault()),s.current=!1,b.current=!1},onInteractOutside:h=>{t.onInteractOutside?.(h),h.defaultPrevented||(s.current=!0,h.detail.originalEvent.type==="pointerdown"&&(b.current=!0));const p=h.target;r.triggerRef.current?.contains(p)&&h.preventDefault(),h.detail.originalEvent.type==="focusin"&&b.current&&h.preventDefault()}})}),K7=X.forwardRef((t,n)=>{const{__scopeDialog:r,trapFocus:s,onOpenAutoFocus:b,onCloseAutoFocus:h,...p}=t,T=Lr(D0,r),E=X.useRef(null),A=Ki(n,E);return O7(),B.jsxs(B.Fragment,{children:[B.jsx(sT,{asChild:!0,loop:!0,trapped:s,onMountAutoFocus:b,onUnmountAutoFocus:h,children:B.jsx(uT,{role:"dialog",id:T.contentId,"aria-describedby":T.descriptionId,"aria-labelledby":T.titleId,"data-state":bT(T.open),...p,ref:A,onDismiss:()=>T.onOpenChange(!1)})}),B.jsxs(B.Fragment,{children:[B.jsx(Mz,{titleId:T.titleId}),B.jsx(Lz,{contentRef:E,descriptionId:T.descriptionId})]})]})}),dT="DialogTitle",Z7=X.forwardRef((t,n)=>{const{__scopeDialog:r,...s}=t,b=Lr(dT,r);return B.jsx(tn.h2,{id:b.titleId,...s,ref:n})});Z7.displayName=dT;var J7="DialogDescription",$7=X.forwardRef((t,n)=>{const{__scopeDialog:r,...s}=t,b=Lr(J7,r);return B.jsx(tn.p,{id:b.descriptionId,...s,ref:n})});$7.displayName=J7;var eC="DialogClose",tC=X.forwardRef((t,n)=>{const{__scopeDialog:r,...s}=t,b=Lr(eC,r);return B.jsx(tn.button,{type:"button",...s,ref:n,onClick:Hn(t.onClick,()=>b.onOpenChange(!1))})});tC.displayName=eC;function bT(t){return t?"open":"closed"}var aC="DialogTitleWarning",[nU,lC]=eL(aC,{contentName:D0,titleName:dT,docsSlug:"dialog"}),Mz=({titleId:t})=>{const n=lC(aC),r=`\`${n.contentName}\` requires a \`${n.titleName}\` for the component to be accessible for screen reader users.
305
+
306
+ If you want to hide the \`${n.titleName}\`, you can wrap it with our VisuallyHidden component.
307
+
308
+ For more information, see https://radix-ui.com/primitives/docs/components/${n.docsSlug}`;return X.useEffect(()=>{t&&(document.getElementById(t)||console.error(r))},[r,t]),null},Dz="DialogDescriptionWarning",Lz=({contentRef:t,descriptionId:n})=>{const s=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${lC(Dz).contentName}}.`;return X.useEffect(()=>{const b=t.current?.getAttribute("aria-describedby");n&&b&&(document.getElementById(n)||console.warn(s))},[s,t,n]),null},zz=V7,xz=Y7,nC=Q7,iC=X7,oC=Z7,rC=$7,Rz=tC;/**
309
+ * @license lucide-react v0.487.0 - ISC
310
+ *
311
+ * This source code is licensed under the ISC license.
312
+ * See the LICENSE file in the root directory of this source tree.
313
+ */const Nz=t=>t.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),Bz=t=>t.replace(/^([A-Z])|[\s-_]+(\w)/g,(n,r,s)=>s?s.toUpperCase():r.toLowerCase()),_S=t=>{const n=Bz(t);return n.charAt(0).toUpperCase()+n.slice(1)},uC=(...t)=>t.filter((n,r,s)=>!!n&&n.trim()!==""&&s.indexOf(n)===r).join(" ").trim();/**
314
+ * @license lucide-react v0.487.0 - ISC
315
+ *
316
+ * This source code is licensed under the ISC license.
317
+ * See the LICENSE file in the root directory of this source tree.
318
+ */var Oz={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};/**
319
+ * @license lucide-react v0.487.0 - ISC
320
+ *
321
+ * This source code is licensed under the ISC license.
322
+ * See the LICENSE file in the root directory of this source tree.
323
+ */const _z=tt.forwardRef(({color:t="currentColor",size:n=24,strokeWidth:r=2,absoluteStrokeWidth:s,className:b="",children:h,iconNode:p,...T},E)=>tt.createElement("svg",{ref:E,...Oz,width:n,height:n,stroke:t,strokeWidth:s?Number(r)*24/Number(n):r,className:uC("lucide",b),...T},[...p.map(([A,M])=>tt.createElement(A,M)),...Array.isArray(h)?h:[h]]));/**
324
+ * @license lucide-react v0.487.0 - ISC
325
+ *
326
+ * This source code is licensed under the ISC license.
327
+ * See the LICENSE file in the root directory of this source tree.
328
+ */const mT=(t,n)=>{const r=tt.forwardRef(({className:s,...b},h)=>tt.createElement(_z,{ref:h,iconNode:n,className:uC(`lucide-${Nz(_S(t))}`,`lucide-${t}`,s),...b}));return r.displayName=_S(t),r};/**
329
+ * @license lucide-react v0.487.0 - ISC
330
+ *
331
+ * This source code is licensed under the ISC license.
332
+ * See the LICENSE file in the root directory of this source tree.
333
+ */const Iz=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],wz=mT("check",Iz);/**
334
+ * @license lucide-react v0.487.0 - ISC
335
+ *
336
+ * This source code is licensed under the ISC license.
337
+ * See the LICENSE file in the root directory of this source tree.
338
+ */const Gz=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],kz=mT("chevron-down",Gz);/**
339
+ * @license lucide-react v0.487.0 - ISC
340
+ *
341
+ * This source code is licensed under the ISC license.
342
+ * See the LICENSE file in the root directory of this source tree.
343
+ */const Fz=[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],sC=mT("x",Fz);function cC(t){var n,r,s="";if(typeof t=="string"||typeof t=="number")s+=t;else if(typeof t=="object")if(Array.isArray(t)){var b=t.length;for(n=0;n<b;n++)t[n]&&(r=cC(t[n]))&&(s&&(s+=" "),s+=r)}else for(r in t)t[r]&&(s&&(s+=" "),s+=r);return s}function fC(){for(var t,n,r=0,s="",b=arguments.length;r<b;r++)(t=arguments[r])&&(n=cC(t))&&(s&&(s+=" "),s+=n);return s}const hT="-",Uz=t=>{const n=Pz(t),{conflictingClassGroups:r,conflictingClassGroupModifiers:s}=t;return{getClassGroupId:p=>{const T=p.split(hT);return T[0]===""&&T.length!==1&&T.shift(),dC(T,n)||Hz(p)},getConflictingClassGroupIds:(p,T)=>{const E=r[p]||[];return T&&s[p]?[...E,...s[p]]:E}}},dC=(t,n)=>{if(t.length===0)return n.classGroupId;const r=t[0],s=n.nextPart.get(r),b=s?dC(t.slice(1),s):void 0;if(b)return b;if(n.validators.length===0)return;const h=t.join(hT);return n.validators.find(({validator:p})=>p(h))?.classGroupId},IS=/^\[(.+)\]$/,Hz=t=>{if(IS.test(t)){const n=IS.exec(t)[1],r=n?.substring(0,n.indexOf(":"));if(r)return"arbitrary.."+r}},Pz=t=>{const{theme:n,classGroups:r}=t,s={nextPart:new Map,validators:[]};for(const b in r)I6(r[b],s,b,n);return s},I6=(t,n,r,s)=>{t.forEach(b=>{if(typeof b=="string"){const h=b===""?n:wS(n,b);h.classGroupId=r;return}if(typeof b=="function"){if(Wz(b)){I6(b(s),n,r,s);return}n.validators.push({validator:b,classGroupId:r});return}Object.entries(b).forEach(([h,p])=>{I6(p,wS(n,h),r,s)})})},wS=(t,n)=>{let r=t;return n.split(hT).forEach(s=>{r.nextPart.has(s)||r.nextPart.set(s,{nextPart:new Map,validators:[]}),r=r.nextPart.get(s)}),r},Wz=t=>t.isThemeGetter,Vz=t=>{if(t<1)return{get:()=>{},set:()=>{}};let n=0,r=new Map,s=new Map;const b=(h,p)=>{r.set(h,p),n++,n>t&&(n=0,s=r,r=new Map)};return{get(h){let p=r.get(h);if(p!==void 0)return p;if((p=s.get(h))!==void 0)return b(h,p),p},set(h,p){r.has(h)?r.set(h,p):b(h,p)}}},w6="!",G6=":",qz=G6.length,jz=t=>{const{prefix:n,experimentalParseClassName:r}=t;let s=b=>{const h=[];let p=0,T=0,E=0,A;for(let U=0;U<b.length;U++){let G=b[U];if(p===0&&T===0){if(G===G6){h.push(b.slice(E,U)),E=U+qz;continue}if(G==="/"){A=U;continue}}G==="["?p++:G==="]"?p--:G==="("?T++:G===")"&&T--}const M=h.length===0?b:b.substring(E),L=Yz(M),R=L!==M,z=A&&A>E?A-E:void 0;return{modifiers:h,hasImportantModifier:R,baseClassName:L,maybePostfixModifierPosition:z}};if(n){const b=n+G6,h=s;s=p=>p.startsWith(b)?h(p.substring(b.length)):{isExternal:!0,modifiers:[],hasImportantModifier:!1,baseClassName:p,maybePostfixModifierPosition:void 0}}if(r){const b=s;s=h=>r({className:h,parseClassName:b})}return s},Yz=t=>t.endsWith(w6)?t.substring(0,t.length-1):t.startsWith(w6)?t.substring(1):t,Qz=t=>{const n=Object.fromEntries(t.orderSensitiveModifiers.map(s=>[s,!0]));return s=>{if(s.length<=1)return s;const b=[];let h=[];return s.forEach(p=>{p[0]==="["||n[p]?(b.push(...h.sort(),p),h=[]):h.push(p)}),b.push(...h.sort()),b}},Xz=t=>({cache:Vz(t.cacheSize),parseClassName:jz(t),sortModifiers:Qz(t),...Uz(t)}),Kz=/\s+/,Zz=(t,n)=>{const{parseClassName:r,getClassGroupId:s,getConflictingClassGroupIds:b,sortModifiers:h}=n,p=[],T=t.trim().split(Kz);let E="";for(let A=T.length-1;A>=0;A-=1){const M=T[A],{isExternal:L,modifiers:R,hasImportantModifier:z,baseClassName:U,maybePostfixModifierPosition:G}=r(M);if(L){E=M+(E.length>0?" "+E:E);continue}let J=!!G,F=s(J?U.substring(0,G):U);if(!F){if(!J){E=M+(E.length>0?" "+E:E);continue}if(F=s(U),!F){E=M+(E.length>0?" "+E:E);continue}J=!1}const ie=h(R).join(":"),te=z?ie+w6:ie,Te=te+F;if(p.includes(Te))continue;p.push(Te);const ge=b(F,J);for(let le=0;le<ge.length;++le){const Se=ge[le];p.push(te+Se)}E=M+(E.length>0?" "+E:E)}return E};function Jz(){let t=0,n,r,s="";for(;t<arguments.length;)(n=arguments[t++])&&(r=bC(n))&&(s&&(s+=" "),s+=r);return s}const bC=t=>{if(typeof t=="string")return t;let n,r="";for(let s=0;s<t.length;s++)t[s]&&(n=bC(t[s]))&&(r&&(r+=" "),r+=n);return r};function $z(t,...n){let r,s,b,h=p;function p(E){const A=n.reduce((M,L)=>L(M),t());return r=Xz(A),s=r.cache.get,b=r.cache.set,h=T,T(E)}function T(E){const A=s(E);if(A)return A;const M=Zz(E,r);return b(E,M),M}return function(){return h(Jz.apply(null,arguments))}}const Dl=t=>{const n=r=>r[t]||[];return n.isThemeGetter=!0,n},mC=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,hC=/^\((?:(\w[\w-]*):)?(.+)\)$/i,ex=/^\d+\/\d+$/,tx=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,ax=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,lx=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,nx=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,ix=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,lm=t=>ex.test(t),Dt=t=>!!t&&!Number.isNaN(Number(t)),Af=t=>!!t&&Number.isInteger(Number(t)),f6=t=>t.endsWith("%")&&Dt(t.slice(0,-1)),Gs=t=>tx.test(t),ox=()=>!0,rx=t=>ax.test(t)&&!lx.test(t),pC=()=>!1,ux=t=>nx.test(t),sx=t=>ix.test(t),cx=t=>!Ve(t)&&!qe(t),fx=t=>vm(t,vC,pC),Ve=t=>mC.test(t),C0=t=>vm(t,SC,rx),d6=t=>vm(t,px,Dt),GS=t=>vm(t,gC,pC),dx=t=>vm(t,TC,sx),wg=t=>vm(t,yC,ux),qe=t=>hC.test(t),R2=t=>Sm(t,SC),bx=t=>Sm(t,gx),kS=t=>Sm(t,gC),mx=t=>Sm(t,vC),hx=t=>Sm(t,TC),Gg=t=>Sm(t,yC,!0),vm=(t,n,r)=>{const s=mC.exec(t);return s?s[1]?n(s[1]):r(s[2]):!1},Sm=(t,n,r=!1)=>{const s=hC.exec(t);return s?s[1]?n(s[1]):r:!1},gC=t=>t==="position"||t==="percentage",TC=t=>t==="image"||t==="url",vC=t=>t==="length"||t==="size"||t==="bg-size",SC=t=>t==="length",px=t=>t==="number",gx=t=>t==="family-name",yC=t=>t==="shadow",Tx=()=>{const t=Dl("color"),n=Dl("font"),r=Dl("text"),s=Dl("font-weight"),b=Dl("tracking"),h=Dl("leading"),p=Dl("breakpoint"),T=Dl("container"),E=Dl("spacing"),A=Dl("radius"),M=Dl("shadow"),L=Dl("inset-shadow"),R=Dl("text-shadow"),z=Dl("drop-shadow"),U=Dl("blur"),G=Dl("perspective"),J=Dl("aspect"),F=Dl("ease"),ie=Dl("animate"),te=()=>["auto","avoid","all","avoid-page","page","left","right","column"],Te=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"],ge=()=>[...Te(),qe,Ve],le=()=>["auto","hidden","clip","visible","scroll"],Se=()=>["auto","contain","none"],be=()=>[qe,Ve,E],ke=()=>[lm,"full","auto",...be()],Ce=()=>[Af,"none","subgrid",qe,Ve],Re=()=>["auto",{span:["full",Af,qe,Ve]},Af,qe,Ve],De=()=>[Af,"auto",qe,Ve],Me=()=>["auto","min","max","fr",qe,Ve],ze=()=>["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"],Ie=()=>["start","end","center","stretch","center-safe","end-safe"],P=()=>["auto",...be()],oe=()=>[lm,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...be()],$=()=>[t,qe,Ve],we=()=>[...Te(),kS,GS,{position:[qe,Ve]}],w=()=>["no-repeat",{repeat:["","x","y","space","round"]}],yt=()=>["auto","cover","contain",mx,fx,{size:[qe,Ve]}],rt=()=>[f6,R2,C0],k=()=>["","none","full",A,qe,Ve],He=()=>["",Dt,R2,C0],It=()=>["solid","dashed","dotted","double"],kt=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],Lt=()=>[Dt,f6,kS,GS],Ua=()=>["","none",U,qe,Ve],Ca=()=>["none",Dt,qe,Ve],Tl=()=>["none",Dt,qe,Ve],Ge=()=>[Dt,qe,Ve],an=()=>[lm,"full",...be()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[Gs],breakpoint:[Gs],color:[ox],container:[Gs],"drop-shadow":[Gs],ease:["in","out","in-out"],font:[cx],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[Gs],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[Gs],shadow:[Gs],spacing:["px",Dt],text:[Gs],"text-shadow":[Gs],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",lm,Ve,qe,J]}],container:["container"],columns:[{columns:[Dt,Ve,qe,T]}],"break-after":[{"break-after":te()}],"break-before":[{"break-before":te()}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],sr:["sr-only","not-sr-only"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:ge()}],overflow:[{overflow:le()}],"overflow-x":[{"overflow-x":le()}],"overflow-y":[{"overflow-y":le()}],overscroll:[{overscroll:Se()}],"overscroll-x":[{"overscroll-x":Se()}],"overscroll-y":[{"overscroll-y":Se()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:ke()}],"inset-x":[{"inset-x":ke()}],"inset-y":[{"inset-y":ke()}],start:[{start:ke()}],end:[{end:ke()}],top:[{top:ke()}],right:[{right:ke()}],bottom:[{bottom:ke()}],left:[{left:ke()}],visibility:["visible","invisible","collapse"],z:[{z:[Af,"auto",qe,Ve]}],basis:[{basis:[lm,"full","auto",T,...be()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[Dt,lm,"auto","initial","none",Ve]}],grow:[{grow:["",Dt,qe,Ve]}],shrink:[{shrink:["",Dt,qe,Ve]}],order:[{order:[Af,"first","last","none",qe,Ve]}],"grid-cols":[{"grid-cols":Ce()}],"col-start-end":[{col:Re()}],"col-start":[{"col-start":De()}],"col-end":[{"col-end":De()}],"grid-rows":[{"grid-rows":Ce()}],"row-start-end":[{row:Re()}],"row-start":[{"row-start":De()}],"row-end":[{"row-end":De()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":Me()}],"auto-rows":[{"auto-rows":Me()}],gap:[{gap:be()}],"gap-x":[{"gap-x":be()}],"gap-y":[{"gap-y":be()}],"justify-content":[{justify:[...ze(),"normal"]}],"justify-items":[{"justify-items":[...Ie(),"normal"]}],"justify-self":[{"justify-self":["auto",...Ie()]}],"align-content":[{content:["normal",...ze()]}],"align-items":[{items:[...Ie(),{baseline:["","last"]}]}],"align-self":[{self:["auto",...Ie(),{baseline:["","last"]}]}],"place-content":[{"place-content":ze()}],"place-items":[{"place-items":[...Ie(),"baseline"]}],"place-self":[{"place-self":["auto",...Ie()]}],p:[{p:be()}],px:[{px:be()}],py:[{py:be()}],ps:[{ps:be()}],pe:[{pe:be()}],pt:[{pt:be()}],pr:[{pr:be()}],pb:[{pb:be()}],pl:[{pl:be()}],m:[{m:P()}],mx:[{mx:P()}],my:[{my:P()}],ms:[{ms:P()}],me:[{me:P()}],mt:[{mt:P()}],mr:[{mr:P()}],mb:[{mb:P()}],ml:[{ml:P()}],"space-x":[{"space-x":be()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":be()}],"space-y-reverse":["space-y-reverse"],size:[{size:oe()}],w:[{w:[T,"screen",...oe()]}],"min-w":[{"min-w":[T,"screen","none",...oe()]}],"max-w":[{"max-w":[T,"screen","none","prose",{screen:[p]},...oe()]}],h:[{h:["screen","lh",...oe()]}],"min-h":[{"min-h":["screen","lh","none",...oe()]}],"max-h":[{"max-h":["screen","lh",...oe()]}],"font-size":[{text:["base",r,R2,C0]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[s,qe,d6]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",f6,Ve]}],"font-family":[{font:[bx,Ve,n]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:[b,qe,Ve]}],"line-clamp":[{"line-clamp":[Dt,"none",qe,d6]}],leading:[{leading:[h,...be()]}],"list-image":[{"list-image":["none",qe,Ve]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",qe,Ve]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:$()}],"text-color":[{text:$()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...It(),"wavy"]}],"text-decoration-thickness":[{decoration:[Dt,"from-font","auto",qe,C0]}],"text-decoration-color":[{decoration:$()}],"underline-offset":[{"underline-offset":[Dt,"auto",qe,Ve]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:be()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",qe,Ve]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",qe,Ve]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:we()}],"bg-repeat":[{bg:w()}],"bg-size":[{bg:yt()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},Af,qe,Ve],radial:["",qe,Ve],conic:[Af,qe,Ve]},hx,dx]}],"bg-color":[{bg:$()}],"gradient-from-pos":[{from:rt()}],"gradient-via-pos":[{via:rt()}],"gradient-to-pos":[{to:rt()}],"gradient-from":[{from:$()}],"gradient-via":[{via:$()}],"gradient-to":[{to:$()}],rounded:[{rounded:k()}],"rounded-s":[{"rounded-s":k()}],"rounded-e":[{"rounded-e":k()}],"rounded-t":[{"rounded-t":k()}],"rounded-r":[{"rounded-r":k()}],"rounded-b":[{"rounded-b":k()}],"rounded-l":[{"rounded-l":k()}],"rounded-ss":[{"rounded-ss":k()}],"rounded-se":[{"rounded-se":k()}],"rounded-ee":[{"rounded-ee":k()}],"rounded-es":[{"rounded-es":k()}],"rounded-tl":[{"rounded-tl":k()}],"rounded-tr":[{"rounded-tr":k()}],"rounded-br":[{"rounded-br":k()}],"rounded-bl":[{"rounded-bl":k()}],"border-w":[{border:He()}],"border-w-x":[{"border-x":He()}],"border-w-y":[{"border-y":He()}],"border-w-s":[{"border-s":He()}],"border-w-e":[{"border-e":He()}],"border-w-t":[{"border-t":He()}],"border-w-r":[{"border-r":He()}],"border-w-b":[{"border-b":He()}],"border-w-l":[{"border-l":He()}],"divide-x":[{"divide-x":He()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":He()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:[...It(),"hidden","none"]}],"divide-style":[{divide:[...It(),"hidden","none"]}],"border-color":[{border:$()}],"border-color-x":[{"border-x":$()}],"border-color-y":[{"border-y":$()}],"border-color-s":[{"border-s":$()}],"border-color-e":[{"border-e":$()}],"border-color-t":[{"border-t":$()}],"border-color-r":[{"border-r":$()}],"border-color-b":[{"border-b":$()}],"border-color-l":[{"border-l":$()}],"divide-color":[{divide:$()}],"outline-style":[{outline:[...It(),"none","hidden"]}],"outline-offset":[{"outline-offset":[Dt,qe,Ve]}],"outline-w":[{outline:["",Dt,R2,C0]}],"outline-color":[{outline:$()}],shadow:[{shadow:["","none",M,Gg,wg]}],"shadow-color":[{shadow:$()}],"inset-shadow":[{"inset-shadow":["none",L,Gg,wg]}],"inset-shadow-color":[{"inset-shadow":$()}],"ring-w":[{ring:He()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:$()}],"ring-offset-w":[{"ring-offset":[Dt,C0]}],"ring-offset-color":[{"ring-offset":$()}],"inset-ring-w":[{"inset-ring":He()}],"inset-ring-color":[{"inset-ring":$()}],"text-shadow":[{"text-shadow":["none",R,Gg,wg]}],"text-shadow-color":[{"text-shadow":$()}],opacity:[{opacity:[Dt,qe,Ve]}],"mix-blend":[{"mix-blend":[...kt(),"plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":kt()}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[Dt]}],"mask-image-linear-from-pos":[{"mask-linear-from":Lt()}],"mask-image-linear-to-pos":[{"mask-linear-to":Lt()}],"mask-image-linear-from-color":[{"mask-linear-from":$()}],"mask-image-linear-to-color":[{"mask-linear-to":$()}],"mask-image-t-from-pos":[{"mask-t-from":Lt()}],"mask-image-t-to-pos":[{"mask-t-to":Lt()}],"mask-image-t-from-color":[{"mask-t-from":$()}],"mask-image-t-to-color":[{"mask-t-to":$()}],"mask-image-r-from-pos":[{"mask-r-from":Lt()}],"mask-image-r-to-pos":[{"mask-r-to":Lt()}],"mask-image-r-from-color":[{"mask-r-from":$()}],"mask-image-r-to-color":[{"mask-r-to":$()}],"mask-image-b-from-pos":[{"mask-b-from":Lt()}],"mask-image-b-to-pos":[{"mask-b-to":Lt()}],"mask-image-b-from-color":[{"mask-b-from":$()}],"mask-image-b-to-color":[{"mask-b-to":$()}],"mask-image-l-from-pos":[{"mask-l-from":Lt()}],"mask-image-l-to-pos":[{"mask-l-to":Lt()}],"mask-image-l-from-color":[{"mask-l-from":$()}],"mask-image-l-to-color":[{"mask-l-to":$()}],"mask-image-x-from-pos":[{"mask-x-from":Lt()}],"mask-image-x-to-pos":[{"mask-x-to":Lt()}],"mask-image-x-from-color":[{"mask-x-from":$()}],"mask-image-x-to-color":[{"mask-x-to":$()}],"mask-image-y-from-pos":[{"mask-y-from":Lt()}],"mask-image-y-to-pos":[{"mask-y-to":Lt()}],"mask-image-y-from-color":[{"mask-y-from":$()}],"mask-image-y-to-color":[{"mask-y-to":$()}],"mask-image-radial":[{"mask-radial":[qe,Ve]}],"mask-image-radial-from-pos":[{"mask-radial-from":Lt()}],"mask-image-radial-to-pos":[{"mask-radial-to":Lt()}],"mask-image-radial-from-color":[{"mask-radial-from":$()}],"mask-image-radial-to-color":[{"mask-radial-to":$()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":Te()}],"mask-image-conic-pos":[{"mask-conic":[Dt]}],"mask-image-conic-from-pos":[{"mask-conic-from":Lt()}],"mask-image-conic-to-pos":[{"mask-conic-to":Lt()}],"mask-image-conic-from-color":[{"mask-conic-from":$()}],"mask-image-conic-to-color":[{"mask-conic-to":$()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:we()}],"mask-repeat":[{mask:w()}],"mask-size":[{mask:yt()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",qe,Ve]}],filter:[{filter:["","none",qe,Ve]}],blur:[{blur:Ua()}],brightness:[{brightness:[Dt,qe,Ve]}],contrast:[{contrast:[Dt,qe,Ve]}],"drop-shadow":[{"drop-shadow":["","none",z,Gg,wg]}],"drop-shadow-color":[{"drop-shadow":$()}],grayscale:[{grayscale:["",Dt,qe,Ve]}],"hue-rotate":[{"hue-rotate":[Dt,qe,Ve]}],invert:[{invert:["",Dt,qe,Ve]}],saturate:[{saturate:[Dt,qe,Ve]}],sepia:[{sepia:["",Dt,qe,Ve]}],"backdrop-filter":[{"backdrop-filter":["","none",qe,Ve]}],"backdrop-blur":[{"backdrop-blur":Ua()}],"backdrop-brightness":[{"backdrop-brightness":[Dt,qe,Ve]}],"backdrop-contrast":[{"backdrop-contrast":[Dt,qe,Ve]}],"backdrop-grayscale":[{"backdrop-grayscale":["",Dt,qe,Ve]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[Dt,qe,Ve]}],"backdrop-invert":[{"backdrop-invert":["",Dt,qe,Ve]}],"backdrop-opacity":[{"backdrop-opacity":[Dt,qe,Ve]}],"backdrop-saturate":[{"backdrop-saturate":[Dt,qe,Ve]}],"backdrop-sepia":[{"backdrop-sepia":["",Dt,qe,Ve]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":be()}],"border-spacing-x":[{"border-spacing-x":be()}],"border-spacing-y":[{"border-spacing-y":be()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",qe,Ve]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[Dt,"initial",qe,Ve]}],ease:[{ease:["linear","initial",F,qe,Ve]}],delay:[{delay:[Dt,qe,Ve]}],animate:[{animate:["none",ie,qe,Ve]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[G,qe,Ve]}],"perspective-origin":[{"perspective-origin":ge()}],rotate:[{rotate:Ca()}],"rotate-x":[{"rotate-x":Ca()}],"rotate-y":[{"rotate-y":Ca()}],"rotate-z":[{"rotate-z":Ca()}],scale:[{scale:Tl()}],"scale-x":[{"scale-x":Tl()}],"scale-y":[{"scale-y":Tl()}],"scale-z":[{"scale-z":Tl()}],"scale-3d":["scale-3d"],skew:[{skew:Ge()}],"skew-x":[{"skew-x":Ge()}],"skew-y":[{"skew-y":Ge()}],transform:[{transform:[qe,Ve,"","none","gpu","cpu"]}],"transform-origin":[{origin:ge()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:an()}],"translate-x":[{"translate-x":an()}],"translate-y":[{"translate-y":an()}],"translate-z":[{"translate-z":an()}],"translate-none":["translate-none"],accent:[{accent:$()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:$()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",qe,Ve]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":be()}],"scroll-mx":[{"scroll-mx":be()}],"scroll-my":[{"scroll-my":be()}],"scroll-ms":[{"scroll-ms":be()}],"scroll-me":[{"scroll-me":be()}],"scroll-mt":[{"scroll-mt":be()}],"scroll-mr":[{"scroll-mr":be()}],"scroll-mb":[{"scroll-mb":be()}],"scroll-ml":[{"scroll-ml":be()}],"scroll-p":[{"scroll-p":be()}],"scroll-px":[{"scroll-px":be()}],"scroll-py":[{"scroll-py":be()}],"scroll-ps":[{"scroll-ps":be()}],"scroll-pe":[{"scroll-pe":be()}],"scroll-pt":[{"scroll-pt":be()}],"scroll-pr":[{"scroll-pr":be()}],"scroll-pb":[{"scroll-pb":be()}],"scroll-pl":[{"scroll-pl":be()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",qe,Ve]}],fill:[{fill:["none",...$()]}],"stroke-w":[{stroke:[Dt,R2,C0,d6]}],stroke:[{stroke:["none",...$()]}],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-x","border-w-y","border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-x","border-color-y","border-color-s","border-color-e","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]},orderSensitiveModifiers:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}},vx=$z(Tx);function Cu(...t){return vx(fC(t))}const CC=zz,Sx=xz,EC=X.forwardRef(({className:t,...n},r)=>B.jsx(nC,{ref:r,className:Cu("fixed inset-0 z-10000 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",t),...n,onClick:s=>s.stopPropagation()}));EC.displayName=nC.displayName;const pT=X.forwardRef(({className:t,children:n,...r},s)=>B.jsxs(Sx,{container:document.querySelector(".root-app"),children:[B.jsx(EC,{}),B.jsxs(iC,{ref:s,className:Cu("z-10001 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] w-full max-w-[calc(100%-2rem)] max-h-[80vh] translate-x-[-50%] translate-y-[-50%] duration-200 overflow-y-auto",t),...r,children:[n,B.jsxs(Rz,{className:"absolute right-4 top-4 cursor-pointer rounded-full bg-gray-200 transition-background hover:bg-gray-300 disabled:pointer-events-none duration-200 p-2",children:[B.jsx(sC,{className:"h-8 w-8"}),B.jsx("span",{className:"sr-only",children:"Close"})]})]})]}));pT.displayName=iC.displayName;const gT=({className:t,...n})=>B.jsx("div",{className:Cu("flex flex-col space-y-1.5 text-left",t),...n});gT.displayName="DialogHeader";const TT=X.forwardRef(({className:t,...n},r)=>B.jsx(oC,{ref:r,className:Cu("text-3xl font-semibold leading-none tracking-tight",t),...n}));TT.displayName=oC.displayName;const yx=X.forwardRef(({className:t,...n},r)=>B.jsx(rC,{ref:r,className:Cu("text-muted-foreground",t),...n}));yx.displayName=rC.displayName;const vT=({item:t})=>{const[n,r]=tt.useState(""),[s,b]=tt.useState(!1),h=M0.getImage(t),p=M0.getValueLabel(t);return B.jsxs(B.Fragment,{children:[B.jsx("div",{className:"group relative w-full h-full aspect-video overflow-hidden shadow-sm group cursor-pointer rounded-sm",children:h&&B.jsx("img",{src:h,alt:p,className:"w-full h-full object-cover",loading:"lazy"})}),B.jsx(CC,{open:!!s,onOpenChange:()=>{b(!1)},children:B.jsxs(pT,{className:"sm:max-w-5xl",onClick:T=>T.stopPropagation(),children:[B.jsx(gT,{children:B.jsx(TT,{className:"sr-only",children:"Image Zoom"})}),B.jsx("img",{src:n,alt:"Zoomed",className:"w-full h-auto"}),B.jsxs("span",{className:"text-white mt-2 block",children:[(t?.metadata?.Finish||t?.metadata?.Material)&&`${t.metadata?.Finish||t.metadata?.Material} | `,p]})]})})]})},x0=t=>B.jsx("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:B.jsx("path",{d:"M11 1L1 11M1 1L11 11",stroke:"current",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}),ST=({item:t})=>{const[n,r]=tt.useState(null),[s,b]=tt.useState(!1),h="#f2f1f1",p=M0.getHexColor(t);return B.jsxs(B.Fragment,{children:[B.jsx("div",{className:"group relative w-full h-full aspect-video overflow-hidden shadow-sm group cursor-pointer rounded-sm",style:{backgroundColor:p||h}}),B.jsx(CC,{open:!!s,onOpenChange:()=>{b(!1)},children:B.jsxs(pT,{className:"sm:max-w-5xl",onClick:T=>T.stopPropagation(),children:[B.jsx(gT,{children:B.jsx(TT,{className:"sr-only",children:"Hex Color"})}),B.jsx("div",{className:"w-full aspect-video rounded",style:{backgroundColor:n||"transparent"}}),p&&B.jsxs("span",{className:"text-white mt-2 block",children:[" ",(t?.metadata?.Material||t?.metadata?.Material)&&`${t.metadata?.Material} | `,M0.getAttributeLabel(t)]})]})})]})},Cx="w-16 h-16 bg-[var(--sidebar-b)] border border-solid border-[var(--border)] rounded-sm aspect-square overflow-hidden transition",Ex=({val:t,className:n,isShowDeleteIcon:r=!1,handleSelect:s})=>B.jsxs("button",{onClick:()=>{s&&s(t)},className:`relative ${n||Cx}`,"aria-label":`Selected swatch ${t.name??t.assetId}`,title:"Click to remove",children:[M0.getImage(t)?B.jsx(vT,{item:t}):B.jsx(ST,{item:t}),r?B.jsx("div",{className:`absolute top-0 right-0 m-2 w-[16px] h-[16px] flex justify-center items-center\r
344
+ bg-[var(--background-grey)] rounded-2xl border-none pointer-events-none`,children:B.jsx(x0,{className:"w-2 h-2 stroke-[var(--svg-dark)]"})}):null]},t.assetId),Ax=t=>B.jsx("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:B.jsx("path",{d:"M2.5 6H9.5",stroke:"current",strokeLinecap:"round",strokeLinejoin:"round"})}),Mx=t=>B.jsx("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:B.jsx("path",{d:"M2.5 6H9.5M6 2.5V9.5",stroke:"current",strokeLinecap:"round",strokeLinejoin:"round"})}),Dx=t=>B.jsx("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:B.jsx("path",{d:"M5 5.5V8.5M7 5.5V8.5M9.5 3V10C9.5 10.2652 9.39464 10.5196 9.20711 10.7071C9.01957 10.8946 8.76522 11 8.5 11H3.5C3.23478 11 2.98043 10.8946 2.79289 10.7071C2.60536 10.5196 2.5 10.2652 2.5 10V3M1.5 3H10.5M4 3V2C4 1.73478 4.10536 1.48043 4.29289 1.29289C4.48043 1.10536 4.73478 1 5 1H7C7.26522 1 7.51957 1.10536 7.70711 1.29289C7.89464 1.48043 8 1.73478 8 2V3",stroke:"current",strokeLinecap:"round",strokeLinejoin:"round"})}),Lx=({value:t,canIncrement:n,onIncrement:r,onDecrement:s,onDelete:b})=>{const h=t<=1;return B.jsxs("div",{className:"flex items-center gap-2 text-sm",children:[h?B.jsx("button",{"aria-label":"Remove item",onClick:b,className:"[&_svg_path]:stroke-[var(--main-accent-color)]",children:B.jsx(Dx,{})}):B.jsx("button",{"aria-label":"Decrease",onClick:s,className:"[&_svg_path]:stroke-[var(--svg-dark)]",children:B.jsx(Ax,{})}),B.jsx("span",{className:"min-w-4 text-center select-none",children:t}),B.jsx("button",{"aria-label":"Increase",onClick:r,disabled:!n,className:"[&_svg_path]:stroke-[var(--svg-dark)] disabled:opacity-40",children:B.jsx(Mx,{})})]})},AC=({item:t,canInc:n,onDelete:r,onIncrement:s,onDecrement:b})=>B.jsx("li",{className:`\r
345
+ border-b border-[var(--border)] p-[var(--padding)]\r
346
+ sm:px-[var(--sm-padding)] sm:pb-[var(--sm-padding)]`,children:B.jsxs("div",{className:"relative flex gap-4 ",children:[B.jsx("div",{children:B.jsx(Ex,{val:t})}),B.jsxs("div",{className:"flex flex-col justify-between",children:[B.jsxs("div",{className:"flex flex-col",children:[B.jsx("span",{className:"mb-1 font-medium",children:t.metadata.label}),B.jsx("span",{className:"mb-1 font-semibold",children:t.parentName})]}),B.jsx(Lx,{value:t.count,canIncrement:n,onIncrement:()=>s(t),onDecrement:()=>b(t),onDelete:()=>r(t)})]}),B.jsx("div",{className:"absolute top-0 right-0",children:"$13.00"})]})},t.assetId),yT=t=>B.jsx("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:B.jsx("path",{d:"M9.99984 15.8333L4.1665 9.99996M4.1665 9.99996L9.99984 4.16663M4.1665 9.99996H15.8332",stroke:"current",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}),zx=({onToggleSidebar:t})=>{const n=mn(),r=Xt(iT),s=Xt(L7(r?.productId||999)),b=tt.useMemo(()=>f8.getCartTotalCount({cartItems:s}),[s]),h=()=>{console.log("MultiProductCartHeader"),t()},p=()=>{n(v7(!1))};return B.jsxs("header",{className:"flex p-[var(--padding)] justify-between items-center border-b border-solid border-[var(--border)] sm:p-[var(--sm-padding)]",children:[B.jsxs("div",{className:"flex items-center flex-row gap-[4px]",children:[B.jsxs("div",{className:"flex items-center gap-2",children:[B.jsx("button",{className:"[&_svg_path]:stroke-[var(--main-accent-color)] cursor-pointer",onClick:p,children:B.jsx(yT,{})}),B.jsx("h2",{className:"m-0 text-base leading-[1.6] font-medium ",children:"Your cart"})]}),b>=Qi?B.jsxs(B.Fragment,{children:[B.jsxs("span",{className:"text-[var(--main-accent-color)] hidden text-xs sm:block",children:["(",Qi,") You reached maximum amount of swatches"]}),B.jsxs("span",{className:"text-[var(--main-accent-color)] block sm:hidden",children:["(",Qi,") Max"]})]}):null]}),B.jsx("button",{className:`flex justify-center items-center w-[30px] h-[30px] bg-[var(--background-grey)]
347
+ border-none cursor-pointer rounded-full
348
+ [&_svg_path]:stroke-[var(--svg-dark)]`,onClick:h,children:B.jsx(x0,{width:10,height:10})})]})},xx=({onSendData:t,onToggleSidebar:n})=>{const r=mn(),s=Xt(iT),b=Xt(nT),h=Xt(L7(s?.productId||999)),p=tt.useMemo(()=>f8.getCartTotalCount({cartItems:h}),[h]),T=M=>{const{parentName:L,metadata:R}=M,z=s?.productId,U=R.label;z&&U&&L&&(r(PD({productId:z,label:U,parentName:L})),r(u8({selectedMaterial:M})))},E=M=>{const{parentName:L,metadata:R}=M,z=s?.productId,U=R.label;z&&U&&L&&r(UD({productId:z,label:U,parentName:L}))},A=M=>{const{parentName:L,metadata:R}=M,z=s?.productId,U=R.label;z&&U&&L&&r(HD({productId:z,label:U,parentName:L}))};return B.jsxs("div",{className:"flex min-h-0 flex-1 flex-col",children:[B.jsx(zx,{onToggleSidebar:n}),B.jsx($D,{}),B.jsxs("div",{className:"flex flex-col h-full min-h-0",children:[B.jsx("ul",{className:"flex flex-col gap-3 flex-1 min-h-0 overflow-y-auto py-[var(--sm-padding)] sm:gap-5",children:h?.map(M=>B.jsx(AC,{item:M,canInc:p<Qi,onDelete:T,onIncrement:E,onDecrement:A},`${M.assetId}/${M.parentName}`))}),B.jsxs("div",{className:`flex flex-col
349
+ sm:flex-row sm:w-full sm:justify-between sm:items-center
350
+ sm:border-t sm:border-solid sm:border-[var(--border)]
351
+ `,children:[B.jsx("div",{className:"sm:w-[50%] sm:border-r sm:border-solid sm:border-[var(--border)]",children:B.jsx(M7,{containerStyles:"flex flex-col gap-2 text-xs/snug p-[var(--padding)] border-t border-solid border-[var(--border)] sm:gap-3 sm:p-[var(--sm-padding)] sm:border-none"})}),B.jsx("div",{className:"p-[var(--padding)] border-t border-solid border-[var(--border)] shrink-0 sm:w-[50%] sm:border-none",children:B.jsx(D7,{onClick:()=>t&&t(b),disabled:p>Qi+1,children:"GO TO SHIPPING"})})]})]})]})},Rx=t=>B.jsxs("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:[B.jsx("path",{d:"M13.9998 14L11.1064 11.1067",stroke:"current",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),B.jsx("path",{d:"M7.33333 12.6667C10.2789 12.6667 12.6667 10.2789 12.6667 7.33333C12.6667 4.38781 10.2789 2 7.33333 2C4.38781 2 2 4.38781 2 7.33333C2 10.2789 4.38781 12.6667 7.33333 12.6667Z",stroke:"current",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})]}),Nx=["top","right","bottom","left"],Bf=Math.min,ji=Math.max,Jg=Math.round,kg=Math.floor,Eu=t=>({x:t,y:t}),Bx={left:"right",right:"left",bottom:"top",top:"bottom"},Ox={start:"end",end:"start"};function k6(t,n,r){return ji(t,Bf(n,r))}function Fs(t,n){return typeof t=="function"?t(n):t}function Us(t){return t.split("-")[0]}function ym(t){return t.split("-")[1]}function CT(t){return t==="x"?"y":"x"}function ET(t){return t==="y"?"height":"width"}const _x=new Set(["top","bottom"]);function yu(t){return _x.has(Us(t))?"y":"x"}function AT(t){return CT(yu(t))}function Ix(t,n,r){r===void 0&&(r=!1);const s=ym(t),b=AT(t),h=ET(b);let p=b==="x"?s===(r?"end":"start")?"right":"left":s==="start"?"bottom":"top";return n.reference[h]>n.floating[h]&&(p=$g(p)),[p,$g(p)]}function wx(t){const n=$g(t);return[F6(t),n,F6(n)]}function F6(t){return t.replace(/start|end/g,n=>Ox[n])}const FS=["left","right"],US=["right","left"],Gx=["top","bottom"],kx=["bottom","top"];function Fx(t,n,r){switch(t){case"top":case"bottom":return r?n?US:FS:n?FS:US;case"left":case"right":return n?Gx:kx;default:return[]}}function Ux(t,n,r,s){const b=ym(t);let h=Fx(Us(t),r==="start",s);return b&&(h=h.map(p=>p+"-"+b),n&&(h=h.concat(h.map(F6)))),h}function $g(t){return t.replace(/left|right|bottom|top/g,n=>Bx[n])}function Hx(t){return{top:0,right:0,bottom:0,left:0,...t}}function MC(t){return typeof t!="number"?Hx(t):{top:t,right:t,bottom:t,left:t}}function e8(t){const{x:n,y:r,width:s,height:b}=t;return{width:s,height:b,top:r,left:n,right:n+s,bottom:r+b,x:n,y:r}}function HS(t,n,r){let{reference:s,floating:b}=t;const h=yu(n),p=AT(n),T=ET(p),E=Us(n),A=h==="y",M=s.x+s.width/2-b.width/2,L=s.y+s.height/2-b.height/2,R=s[T]/2-b[T]/2;let z;switch(E){case"top":z={x:M,y:s.y-b.height};break;case"bottom":z={x:M,y:s.y+s.height};break;case"right":z={x:s.x+s.width,y:L};break;case"left":z={x:s.x-b.width,y:L};break;default:z={x:s.x,y:s.y}}switch(ym(n)){case"start":z[p]-=R*(r&&A?-1:1);break;case"end":z[p]+=R*(r&&A?-1:1);break}return z}const Px=async(t,n,r)=>{const{placement:s="bottom",strategy:b="absolute",middleware:h=[],platform:p}=r,T=h.filter(Boolean),E=await(p.isRTL==null?void 0:p.isRTL(n));let A=await p.getElementRects({reference:t,floating:n,strategy:b}),{x:M,y:L}=HS(A,s,E),R=s,z={},U=0;for(let G=0;G<T.length;G++){const{name:J,fn:F}=T[G],{x:ie,y:te,data:Te,reset:ge}=await F({x:M,y:L,initialPlacement:s,placement:R,strategy:b,middlewareData:z,rects:A,platform:p,elements:{reference:t,floating:n}});M=ie??M,L=te??L,z={...z,[J]:{...z[J],...Te}},ge&&U<=50&&(U++,typeof ge=="object"&&(ge.placement&&(R=ge.placement),ge.rects&&(A=ge.rects===!0?await p.getElementRects({reference:t,floating:n,strategy:b}):ge.rects),{x:M,y:L}=HS(A,R,E)),G=-1)}return{x:M,y:L,placement:R,strategy:b,middlewareData:z}};async function Q2(t,n){var r;n===void 0&&(n={});const{x:s,y:b,platform:h,rects:p,elements:T,strategy:E}=t,{boundary:A="clippingAncestors",rootBoundary:M="viewport",elementContext:L="floating",altBoundary:R=!1,padding:z=0}=Fs(n,t),U=MC(z),J=T[R?L==="floating"?"reference":"floating":L],F=e8(await h.getClippingRect({element:(r=await(h.isElement==null?void 0:h.isElement(J)))==null||r?J:J.contextElement||await(h.getDocumentElement==null?void 0:h.getDocumentElement(T.floating)),boundary:A,rootBoundary:M,strategy:E})),ie=L==="floating"?{x:s,y:b,width:p.floating.width,height:p.floating.height}:p.reference,te=await(h.getOffsetParent==null?void 0:h.getOffsetParent(T.floating)),Te=await(h.isElement==null?void 0:h.isElement(te))?await(h.getScale==null?void 0:h.getScale(te))||{x:1,y:1}:{x:1,y:1},ge=e8(h.convertOffsetParentRelativeRectToViewportRelativeRect?await h.convertOffsetParentRelativeRectToViewportRelativeRect({elements:T,rect:ie,offsetParent:te,strategy:E}):ie);return{top:(F.top-ge.top+U.top)/Te.y,bottom:(ge.bottom-F.bottom+U.bottom)/Te.y,left:(F.left-ge.left+U.left)/Te.x,right:(ge.right-F.right+U.right)/Te.x}}const Wx=t=>({name:"arrow",options:t,async fn(n){const{x:r,y:s,placement:b,rects:h,platform:p,elements:T,middlewareData:E}=n,{element:A,padding:M=0}=Fs(t,n)||{};if(A==null)return{};const L=MC(M),R={x:r,y:s},z=AT(b),U=ET(z),G=await p.getDimensions(A),J=z==="y",F=J?"top":"left",ie=J?"bottom":"right",te=J?"clientHeight":"clientWidth",Te=h.reference[U]+h.reference[z]-R[z]-h.floating[U],ge=R[z]-h.reference[z],le=await(p.getOffsetParent==null?void 0:p.getOffsetParent(A));let Se=le?le[te]:0;(!Se||!await(p.isElement==null?void 0:p.isElement(le)))&&(Se=T.floating[te]||h.floating[U]);const be=Te/2-ge/2,ke=Se/2-G[U]/2-1,Ce=Bf(L[F],ke),Re=Bf(L[ie],ke),De=Ce,Me=Se-G[U]-Re,ze=Se/2-G[U]/2+be,Ie=k6(De,ze,Me),P=!E.arrow&&ym(b)!=null&&ze!==Ie&&h.reference[U]/2-(ze<De?Ce:Re)-G[U]/2<0,oe=P?ze<De?ze-De:ze-Me:0;return{[z]:R[z]+oe,data:{[z]:Ie,centerOffset:ze-Ie-oe,...P&&{alignmentOffset:oe}},reset:P}}}),Vx=function(t){return t===void 0&&(t={}),{name:"flip",options:t,async fn(n){var r,s;const{placement:b,middlewareData:h,rects:p,initialPlacement:T,platform:E,elements:A}=n,{mainAxis:M=!0,crossAxis:L=!0,fallbackPlacements:R,fallbackStrategy:z="bestFit",fallbackAxisSideDirection:U="none",flipAlignment:G=!0,...J}=Fs(t,n);if((r=h.arrow)!=null&&r.alignmentOffset)return{};const F=Us(b),ie=yu(T),te=Us(T)===T,Te=await(E.isRTL==null?void 0:E.isRTL(A.floating)),ge=R||(te||!G?[$g(T)]:wx(T)),le=U!=="none";!R&&le&&ge.push(...Ux(T,G,U,Te));const Se=[T,...ge],be=await Q2(n,J),ke=[];let Ce=((s=h.flip)==null?void 0:s.overflows)||[];if(M&&ke.push(be[F]),L){const ze=Ix(b,p,Te);ke.push(be[ze[0]],be[ze[1]])}if(Ce=[...Ce,{placement:b,overflows:ke}],!ke.every(ze=>ze<=0)){var Re,De;const ze=(((Re=h.flip)==null?void 0:Re.index)||0)+1,Ie=Se[ze];if(Ie&&(!(L==="alignment"?ie!==yu(Ie):!1)||Ce.every($=>yu($.placement)===ie?$.overflows[0]>0:!0)))return{data:{index:ze,overflows:Ce},reset:{placement:Ie}};let P=(De=Ce.filter(oe=>oe.overflows[0]<=0).sort((oe,$)=>oe.overflows[1]-$.overflows[1])[0])==null?void 0:De.placement;if(!P)switch(z){case"bestFit":{var Me;const oe=(Me=Ce.filter($=>{if(le){const we=yu($.placement);return we===ie||we==="y"}return!0}).map($=>[$.placement,$.overflows.filter(we=>we>0).reduce((we,w)=>we+w,0)]).sort(($,we)=>$[1]-we[1])[0])==null?void 0:Me[0];oe&&(P=oe);break}case"initialPlacement":P=T;break}if(b!==P)return{reset:{placement:P}}}return{}}}};function PS(t,n){return{top:t.top-n.height,right:t.right-n.width,bottom:t.bottom-n.height,left:t.left-n.width}}function WS(t){return Nx.some(n=>t[n]>=0)}const qx=function(t){return t===void 0&&(t={}),{name:"hide",options:t,async fn(n){const{rects:r}=n,{strategy:s="referenceHidden",...b}=Fs(t,n);switch(s){case"referenceHidden":{const h=await Q2(n,{...b,elementContext:"reference"}),p=PS(h,r.reference);return{data:{referenceHiddenOffsets:p,referenceHidden:WS(p)}}}case"escaped":{const h=await Q2(n,{...b,altBoundary:!0}),p=PS(h,r.floating);return{data:{escapedOffsets:p,escaped:WS(p)}}}default:return{}}}}},DC=new Set(["left","top"]);async function jx(t,n){const{placement:r,platform:s,elements:b}=t,h=await(s.isRTL==null?void 0:s.isRTL(b.floating)),p=Us(r),T=ym(r),E=yu(r)==="y",A=DC.has(p)?-1:1,M=h&&E?-1:1,L=Fs(n,t);let{mainAxis:R,crossAxis:z,alignmentAxis:U}=typeof L=="number"?{mainAxis:L,crossAxis:0,alignmentAxis:null}:{mainAxis:L.mainAxis||0,crossAxis:L.crossAxis||0,alignmentAxis:L.alignmentAxis};return T&&typeof U=="number"&&(z=T==="end"?U*-1:U),E?{x:z*M,y:R*A}:{x:R*A,y:z*M}}const Yx=function(t){return t===void 0&&(t=0),{name:"offset",options:t,async fn(n){var r,s;const{x:b,y:h,placement:p,middlewareData:T}=n,E=await jx(n,t);return p===((r=T.offset)==null?void 0:r.placement)&&(s=T.arrow)!=null&&s.alignmentOffset?{}:{x:b+E.x,y:h+E.y,data:{...E,placement:p}}}}},Qx=function(t){return t===void 0&&(t={}),{name:"shift",options:t,async fn(n){const{x:r,y:s,placement:b}=n,{mainAxis:h=!0,crossAxis:p=!1,limiter:T={fn:J=>{let{x:F,y:ie}=J;return{x:F,y:ie}}},...E}=Fs(t,n),A={x:r,y:s},M=await Q2(n,E),L=yu(Us(b)),R=CT(L);let z=A[R],U=A[L];if(h){const J=R==="y"?"top":"left",F=R==="y"?"bottom":"right",ie=z+M[J],te=z-M[F];z=k6(ie,z,te)}if(p){const J=L==="y"?"top":"left",F=L==="y"?"bottom":"right",ie=U+M[J],te=U-M[F];U=k6(ie,U,te)}const G=T.fn({...n,[R]:z,[L]:U});return{...G,data:{x:G.x-r,y:G.y-s,enabled:{[R]:h,[L]:p}}}}}},Xx=function(t){return t===void 0&&(t={}),{options:t,fn(n){const{x:r,y:s,placement:b,rects:h,middlewareData:p}=n,{offset:T=0,mainAxis:E=!0,crossAxis:A=!0}=Fs(t,n),M={x:r,y:s},L=yu(b),R=CT(L);let z=M[R],U=M[L];const G=Fs(T,n),J=typeof G=="number"?{mainAxis:G,crossAxis:0}:{mainAxis:0,crossAxis:0,...G};if(E){const te=R==="y"?"height":"width",Te=h.reference[R]-h.floating[te]+J.mainAxis,ge=h.reference[R]+h.reference[te]-J.mainAxis;z<Te?z=Te:z>ge&&(z=ge)}if(A){var F,ie;const te=R==="y"?"width":"height",Te=DC.has(Us(b)),ge=h.reference[L]-h.floating[te]+(Te&&((F=p.offset)==null?void 0:F[L])||0)+(Te?0:J.crossAxis),le=h.reference[L]+h.reference[te]+(Te?0:((ie=p.offset)==null?void 0:ie[L])||0)-(Te?J.crossAxis:0);U<ge?U=ge:U>le&&(U=le)}return{[R]:z,[L]:U}}}},Kx=function(t){return t===void 0&&(t={}),{name:"size",options:t,async fn(n){var r,s;const{placement:b,rects:h,platform:p,elements:T}=n,{apply:E=()=>{},...A}=Fs(t,n),M=await Q2(n,A),L=Us(b),R=ym(b),z=yu(b)==="y",{width:U,height:G}=h.floating;let J,F;L==="top"||L==="bottom"?(J=L,F=R===(await(p.isRTL==null?void 0:p.isRTL(T.floating))?"start":"end")?"left":"right"):(F=L,J=R==="end"?"top":"bottom");const ie=G-M.top-M.bottom,te=U-M.left-M.right,Te=Bf(G-M[J],ie),ge=Bf(U-M[F],te),le=!n.middlewareData.shift;let Se=Te,be=ge;if((r=n.middlewareData.shift)!=null&&r.enabled.x&&(be=te),(s=n.middlewareData.shift)!=null&&s.enabled.y&&(Se=ie),le&&!R){const Ce=ji(M.left,0),Re=ji(M.right,0),De=ji(M.top,0),Me=ji(M.bottom,0);z?be=U-2*(Ce!==0||Re!==0?Ce+Re:ji(M.left,M.right)):Se=G-2*(De!==0||Me!==0?De+Me:ji(M.top,M.bottom))}await E({...n,availableWidth:be,availableHeight:Se});const ke=await p.getDimensions(T.floating);return U!==ke.width||G!==ke.height?{reset:{rects:!0}}:{}}}};function h8(){return typeof window<"u"}function Cm(t){return LC(t)?(t.nodeName||"").toLowerCase():"#document"}function Xi(t){var n;return(t==null||(n=t.ownerDocument)==null?void 0:n.defaultView)||window}function Du(t){var n;return(n=(LC(t)?t.ownerDocument:t.document)||window.document)==null?void 0:n.documentElement}function LC(t){return h8()?t instanceof Node||t instanceof Xi(t).Node:!1}function Mr(t){return h8()?t instanceof Element||t instanceof Xi(t).Element:!1}function Au(t){return h8()?t instanceof HTMLElement||t instanceof Xi(t).HTMLElement:!1}function VS(t){return!h8()||typeof ShadowRoot>"u"?!1:t instanceof ShadowRoot||t instanceof Xi(t).ShadowRoot}const Zx=new Set(["inline","contents"]);function t4(t){const{overflow:n,overflowX:r,overflowY:s,display:b}=Dr(t);return/auto|scroll|overlay|hidden|clip/.test(n+s+r)&&!Zx.has(b)}const Jx=new Set(["table","td","th"]);function $x(t){return Jx.has(Cm(t))}const eR=[":popover-open",":modal"];function p8(t){return eR.some(n=>{try{return t.matches(n)}catch{return!1}})}const tR=["transform","translate","scale","rotate","perspective"],aR=["transform","translate","scale","rotate","perspective","filter"],lR=["paint","layout","strict","content"];function MT(t){const n=DT(),r=Mr(t)?Dr(t):t;return tR.some(s=>r[s]?r[s]!=="none":!1)||(r.containerType?r.containerType!=="normal":!1)||!n&&(r.backdropFilter?r.backdropFilter!=="none":!1)||!n&&(r.filter?r.filter!=="none":!1)||aR.some(s=>(r.willChange||"").includes(s))||lR.some(s=>(r.contain||"").includes(s))}function nR(t){let n=Of(t);for(;Au(n)&&!mm(n);){if(MT(n))return n;if(p8(n))return null;n=Of(n)}return null}function DT(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}const iR=new Set(["html","body","#document"]);function mm(t){return iR.has(Cm(t))}function Dr(t){return Xi(t).getComputedStyle(t)}function g8(t){return Mr(t)?{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}:{scrollLeft:t.scrollX,scrollTop:t.scrollY}}function Of(t){if(Cm(t)==="html")return t;const n=t.assignedSlot||t.parentNode||VS(t)&&t.host||Du(t);return VS(n)?n.host:n}function zC(t){const n=Of(t);return mm(n)?t.ownerDocument?t.ownerDocument.body:t.body:Au(n)&&t4(n)?n:zC(n)}function X2(t,n,r){var s;n===void 0&&(n=[]),r===void 0&&(r=!0);const b=zC(t),h=b===((s=t.ownerDocument)==null?void 0:s.body),p=Xi(b);if(h){const T=U6(p);return n.concat(p,p.visualViewport||[],t4(b)?b:[],T&&r?X2(T):[])}return n.concat(b,X2(b,[],r))}function U6(t){return t.parent&&Object.getPrototypeOf(t.parent)?t.frameElement:null}function xC(t){const n=Dr(t);let r=parseFloat(n.width)||0,s=parseFloat(n.height)||0;const b=Au(t),h=b?t.offsetWidth:r,p=b?t.offsetHeight:s,T=Jg(r)!==h||Jg(s)!==p;return T&&(r=h,s=p),{width:r,height:s,$:T}}function LT(t){return Mr(t)?t:t.contextElement}function sm(t){const n=LT(t);if(!Au(n))return Eu(1);const r=n.getBoundingClientRect(),{width:s,height:b,$:h}=xC(n);let p=(h?Jg(r.width):r.width)/s,T=(h?Jg(r.height):r.height)/b;return(!p||!Number.isFinite(p))&&(p=1),(!T||!Number.isFinite(T))&&(T=1),{x:p,y:T}}const oR=Eu(0);function RC(t){const n=Xi(t);return!DT()||!n.visualViewport?oR:{x:n.visualViewport.offsetLeft,y:n.visualViewport.offsetTop}}function rR(t,n,r){return n===void 0&&(n=!1),!r||n&&r!==Xi(t)?!1:n}function L0(t,n,r,s){n===void 0&&(n=!1),r===void 0&&(r=!1);const b=t.getBoundingClientRect(),h=LT(t);let p=Eu(1);n&&(s?Mr(s)&&(p=sm(s)):p=sm(t));const T=rR(h,r,s)?RC(h):Eu(0);let E=(b.left+T.x)/p.x,A=(b.top+T.y)/p.y,M=b.width/p.x,L=b.height/p.y;if(h){const R=Xi(h),z=s&&Mr(s)?Xi(s):s;let U=R,G=U6(U);for(;G&&s&&z!==U;){const J=sm(G),F=G.getBoundingClientRect(),ie=Dr(G),te=F.left+(G.clientLeft+parseFloat(ie.paddingLeft))*J.x,Te=F.top+(G.clientTop+parseFloat(ie.paddingTop))*J.y;E*=J.x,A*=J.y,M*=J.x,L*=J.y,E+=te,A+=Te,U=Xi(G),G=U6(U)}}return e8({width:M,height:L,x:E,y:A})}function T8(t,n){const r=g8(t).scrollLeft;return n?n.left+r:L0(Du(t)).left+r}function NC(t,n){const r=t.getBoundingClientRect(),s=r.left+n.scrollLeft-T8(t,r),b=r.top+n.scrollTop;return{x:s,y:b}}function uR(t){let{elements:n,rect:r,offsetParent:s,strategy:b}=t;const h=b==="fixed",p=Du(s),T=n?p8(n.floating):!1;if(s===p||T&&h)return r;let E={scrollLeft:0,scrollTop:0},A=Eu(1);const M=Eu(0),L=Au(s);if((L||!L&&!h)&&((Cm(s)!=="body"||t4(p))&&(E=g8(s)),Au(s))){const z=L0(s);A=sm(s),M.x=z.x+s.clientLeft,M.y=z.y+s.clientTop}const R=p&&!L&&!h?NC(p,E):Eu(0);return{width:r.width*A.x,height:r.height*A.y,x:r.x*A.x-E.scrollLeft*A.x+M.x+R.x,y:r.y*A.y-E.scrollTop*A.y+M.y+R.y}}function sR(t){return Array.from(t.getClientRects())}function cR(t){const n=Du(t),r=g8(t),s=t.ownerDocument.body,b=ji(n.scrollWidth,n.clientWidth,s.scrollWidth,s.clientWidth),h=ji(n.scrollHeight,n.clientHeight,s.scrollHeight,s.clientHeight);let p=-r.scrollLeft+T8(t);const T=-r.scrollTop;return Dr(s).direction==="rtl"&&(p+=ji(n.clientWidth,s.clientWidth)-b),{width:b,height:h,x:p,y:T}}const qS=25;function fR(t,n){const r=Xi(t),s=Du(t),b=r.visualViewport;let h=s.clientWidth,p=s.clientHeight,T=0,E=0;if(b){h=b.width,p=b.height;const M=DT();(!M||M&&n==="fixed")&&(T=b.offsetLeft,E=b.offsetTop)}const A=T8(s);if(A<=0){const M=s.ownerDocument,L=M.body,R=getComputedStyle(L),z=M.compatMode==="CSS1Compat"&&parseFloat(R.marginLeft)+parseFloat(R.marginRight)||0,U=Math.abs(s.clientWidth-L.clientWidth-z);U<=qS&&(h-=U)}else A<=qS&&(h+=A);return{width:h,height:p,x:T,y:E}}const dR=new Set(["absolute","fixed"]);function bR(t,n){const r=L0(t,!0,n==="fixed"),s=r.top+t.clientTop,b=r.left+t.clientLeft,h=Au(t)?sm(t):Eu(1),p=t.clientWidth*h.x,T=t.clientHeight*h.y,E=b*h.x,A=s*h.y;return{width:p,height:T,x:E,y:A}}function jS(t,n,r){let s;if(n==="viewport")s=fR(t,r);else if(n==="document")s=cR(Du(t));else if(Mr(n))s=bR(n,r);else{const b=RC(t);s={x:n.x-b.x,y:n.y-b.y,width:n.width,height:n.height}}return e8(s)}function BC(t,n){const r=Of(t);return r===n||!Mr(r)||mm(r)?!1:Dr(r).position==="fixed"||BC(r,n)}function mR(t,n){const r=n.get(t);if(r)return r;let s=X2(t,[],!1).filter(T=>Mr(T)&&Cm(T)!=="body"),b=null;const h=Dr(t).position==="fixed";let p=h?Of(t):t;for(;Mr(p)&&!mm(p);){const T=Dr(p),E=MT(p);!E&&T.position==="fixed"&&(b=null),(h?!E&&!b:!E&&T.position==="static"&&!!b&&dR.has(b.position)||t4(p)&&!E&&BC(t,p))?s=s.filter(M=>M!==p):b=T,p=Of(p)}return n.set(t,s),s}function hR(t){let{element:n,boundary:r,rootBoundary:s,strategy:b}=t;const p=[...r==="clippingAncestors"?p8(n)?[]:mR(n,this._c):[].concat(r),s],T=p[0],E=p.reduce((A,M)=>{const L=jS(n,M,b);return A.top=ji(L.top,A.top),A.right=Bf(L.right,A.right),A.bottom=Bf(L.bottom,A.bottom),A.left=ji(L.left,A.left),A},jS(n,T,b));return{width:E.right-E.left,height:E.bottom-E.top,x:E.left,y:E.top}}function pR(t){const{width:n,height:r}=xC(t);return{width:n,height:r}}function gR(t,n,r){const s=Au(n),b=Du(n),h=r==="fixed",p=L0(t,!0,h,n);let T={scrollLeft:0,scrollTop:0};const E=Eu(0);function A(){E.x=T8(b)}if(s||!s&&!h)if((Cm(n)!=="body"||t4(b))&&(T=g8(n)),s){const z=L0(n,!0,h,n);E.x=z.x+n.clientLeft,E.y=z.y+n.clientTop}else b&&A();h&&!s&&b&&A();const M=b&&!s&&!h?NC(b,T):Eu(0),L=p.left+T.scrollLeft-E.x-M.x,R=p.top+T.scrollTop-E.y-M.y;return{x:L,y:R,width:p.width,height:p.height}}function b6(t){return Dr(t).position==="static"}function YS(t,n){if(!Au(t)||Dr(t).position==="fixed")return null;if(n)return n(t);let r=t.offsetParent;return Du(t)===r&&(r=r.ownerDocument.body),r}function OC(t,n){const r=Xi(t);if(p8(t))return r;if(!Au(t)){let b=Of(t);for(;b&&!mm(b);){if(Mr(b)&&!b6(b))return b;b=Of(b)}return r}let s=YS(t,n);for(;s&&$x(s)&&b6(s);)s=YS(s,n);return s&&mm(s)&&b6(s)&&!MT(s)?r:s||nR(t)||r}const TR=async function(t){const n=this.getOffsetParent||OC,r=this.getDimensions,s=await r(t.floating);return{reference:gR(t.reference,await n(t.floating),t.strategy),floating:{x:0,y:0,width:s.width,height:s.height}}};function vR(t){return Dr(t).direction==="rtl"}const SR={convertOffsetParentRelativeRectToViewportRelativeRect:uR,getDocumentElement:Du,getClippingRect:hR,getOffsetParent:OC,getElementRects:TR,getClientRects:sR,getDimensions:pR,getScale:sm,isElement:Mr,isRTL:vR};function _C(t,n){return t.x===n.x&&t.y===n.y&&t.width===n.width&&t.height===n.height}function yR(t,n){let r=null,s;const b=Du(t);function h(){var T;clearTimeout(s),(T=r)==null||T.disconnect(),r=null}function p(T,E){T===void 0&&(T=!1),E===void 0&&(E=1),h();const A=t.getBoundingClientRect(),{left:M,top:L,width:R,height:z}=A;if(T||n(),!R||!z)return;const U=kg(L),G=kg(b.clientWidth-(M+R)),J=kg(b.clientHeight-(L+z)),F=kg(M),te={rootMargin:-U+"px "+-G+"px "+-J+"px "+-F+"px",threshold:ji(0,Bf(1,E))||1};let Te=!0;function ge(le){const Se=le[0].intersectionRatio;if(Se!==E){if(!Te)return p();Se?p(!1,Se):s=setTimeout(()=>{p(!1,1e-7)},1e3)}Se===1&&!_C(A,t.getBoundingClientRect())&&p(),Te=!1}try{r=new IntersectionObserver(ge,{...te,root:b.ownerDocument})}catch{r=new IntersectionObserver(ge,te)}r.observe(t)}return p(!0),h}function CR(t,n,r,s){s===void 0&&(s={});const{ancestorScroll:b=!0,ancestorResize:h=!0,elementResize:p=typeof ResizeObserver=="function",layoutShift:T=typeof IntersectionObserver=="function",animationFrame:E=!1}=s,A=LT(t),M=b||h?[...A?X2(A):[],...X2(n)]:[];M.forEach(F=>{b&&F.addEventListener("scroll",r,{passive:!0}),h&&F.addEventListener("resize",r)});const L=A&&T?yR(A,r):null;let R=-1,z=null;p&&(z=new ResizeObserver(F=>{let[ie]=F;ie&&ie.target===A&&z&&(z.unobserve(n),cancelAnimationFrame(R),R=requestAnimationFrame(()=>{var te;(te=z)==null||te.observe(n)})),r()}),A&&!E&&z.observe(A),z.observe(n));let U,G=E?L0(t):null;E&&J();function J(){const F=L0(t);G&&!_C(G,F)&&r(),G=F,U=requestAnimationFrame(J)}return r(),()=>{var F;M.forEach(ie=>{b&&ie.removeEventListener("scroll",r),h&&ie.removeEventListener("resize",r)}),L?.(),(F=z)==null||F.disconnect(),z=null,E&&cancelAnimationFrame(U)}}const ER=Yx,AR=Qx,MR=Vx,DR=Kx,LR=qx,QS=Wx,zR=Xx,xR=(t,n,r)=>{const s=new Map,b={platform:SR,...r},h={...b.platform,_c:s};return Px(t,n,{...b,platform:h})};var RR=typeof document<"u",NR=function(){},Yg=RR?tt.useLayoutEffect:NR;function t8(t,n){if(t===n)return!0;if(typeof t!=typeof n)return!1;if(typeof t=="function"&&t.toString()===n.toString())return!0;let r,s,b;if(t&&n&&typeof t=="object"){if(Array.isArray(t)){if(r=t.length,r!==n.length)return!1;for(s=r;s--!==0;)if(!t8(t[s],n[s]))return!1;return!0}if(b=Object.keys(t),r=b.length,r!==Object.keys(n).length)return!1;for(s=r;s--!==0;)if(!{}.hasOwnProperty.call(n,b[s]))return!1;for(s=r;s--!==0;){const h=b[s];if(!(h==="_owner"&&t.$$typeof)&&!t8(t[h],n[h]))return!1}return!0}return t!==t&&n!==n}function IC(t){return typeof window>"u"?1:(t.ownerDocument.defaultView||window).devicePixelRatio||1}function XS(t,n){const r=IC(t);return Math.round(n*r)/r}function m6(t){const n=X.useRef(t);return Yg(()=>{n.current=t}),n}function BR(t){t===void 0&&(t={});const{placement:n="bottom",strategy:r="absolute",middleware:s=[],platform:b,elements:{reference:h,floating:p}={},transform:T=!0,whileElementsMounted:E,open:A}=t,[M,L]=X.useState({x:0,y:0,strategy:r,placement:n,middlewareData:{},isPositioned:!1}),[R,z]=X.useState(s);t8(R,s)||z(s);const[U,G]=X.useState(null),[J,F]=X.useState(null),ie=X.useCallback($=>{$!==le.current&&(le.current=$,G($))},[]),te=X.useCallback($=>{$!==Se.current&&(Se.current=$,F($))},[]),Te=h||U,ge=p||J,le=X.useRef(null),Se=X.useRef(null),be=X.useRef(M),ke=E!=null,Ce=m6(E),Re=m6(b),De=m6(A),Me=X.useCallback(()=>{if(!le.current||!Se.current)return;const $={placement:n,strategy:r,middleware:R};Re.current&&($.platform=Re.current),xR(le.current,Se.current,$).then(we=>{const w={...we,isPositioned:De.current!==!1};ze.current&&!t8(be.current,w)&&(be.current=w,c7.flushSync(()=>{L(w)}))})},[R,n,r,Re,De]);Yg(()=>{A===!1&&be.current.isPositioned&&(be.current.isPositioned=!1,L($=>({...$,isPositioned:!1})))},[A]);const ze=X.useRef(!1);Yg(()=>(ze.current=!0,()=>{ze.current=!1}),[]),Yg(()=>{if(Te&&(le.current=Te),ge&&(Se.current=ge),Te&&ge){if(Ce.current)return Ce.current(Te,ge,Me);Me()}},[Te,ge,Me,Ce,ke]);const Ie=X.useMemo(()=>({reference:le,floating:Se,setReference:ie,setFloating:te}),[ie,te]),P=X.useMemo(()=>({reference:Te,floating:ge}),[Te,ge]),oe=X.useMemo(()=>{const $={position:r,left:0,top:0};if(!P.floating)return $;const we=XS(P.floating,M.x),w=XS(P.floating,M.y);return T?{...$,transform:"translate("+we+"px, "+w+"px)",...IC(P.floating)>=1.5&&{willChange:"transform"}}:{position:r,left:we,top:w}},[r,T,P.floating,M.x,M.y]);return X.useMemo(()=>({...M,update:Me,refs:Ie,elements:P,floatingStyles:oe}),[M,Me,Ie,P,oe])}const OR=t=>{function n(r){return{}.hasOwnProperty.call(r,"current")}return{name:"arrow",options:t,fn(r){const{element:s,padding:b}=typeof t=="function"?t(r):t;return s&&n(s)?s.current!=null?QS({element:s.current,padding:b}).fn(r):{}:s?QS({element:s,padding:b}).fn(r):{}}}},_R=(t,n)=>({...ER(t),options:[t,n]}),IR=(t,n)=>({...AR(t),options:[t,n]}),wR=(t,n)=>({...zR(t),options:[t,n]}),GR=(t,n)=>({...MR(t),options:[t,n]}),kR=(t,n)=>({...DR(t),options:[t,n]}),FR=(t,n)=>({...LR(t),options:[t,n]}),UR=(t,n)=>({...OR(t),options:[t,n]});var HR="Arrow",wC=X.forwardRef((t,n)=>{const{children:r,width:s=10,height:b=5,...h}=t;return B.jsx(tn.svg,{...h,ref:n,width:s,height:b,viewBox:"0 0 30 10",preserveAspectRatio:"none",children:t.asChild?r:B.jsx("polygon",{points:"0,0 30,0 15,10"})})});wC.displayName=HR;var PR=wC;function GC(t){const[n,r]=X.useState(void 0);return Nf(()=>{if(t){r({width:t.offsetWidth,height:t.offsetHeight});const s=new ResizeObserver(b=>{if(!Array.isArray(b)||!b.length)return;const h=b[0];let p,T;if("borderBoxSize"in h){const E=h.borderBoxSize,A=Array.isArray(E)?E[0]:E;p=A.inlineSize,T=A.blockSize}else p=t.offsetWidth,T=t.offsetHeight;r({width:p,height:T})});return s.observe(t,{box:"border-box"}),()=>s.unobserve(t)}else r(void 0)},[t]),n}var zT="Popper",[kC,FC]=d8(zT),[WR,UC]=kC(zT),HC=t=>{const{__scopePopper:n,children:r}=t,[s,b]=X.useState(null);return B.jsx(WR,{scope:n,anchor:s,onAnchorChange:b,children:r})};HC.displayName=zT;var PC="PopperAnchor",WC=X.forwardRef((t,n)=>{const{__scopePopper:r,virtualRef:s,...b}=t,h=UC(PC,r),p=X.useRef(null),T=Ki(n,p),E=X.useRef(null);return X.useEffect(()=>{const A=E.current;E.current=s?.current||p.current,A!==E.current&&h.onAnchorChange(E.current)}),s?null:B.jsx(tn.div,{...b,ref:T})});WC.displayName=PC;var xT="PopperContent",[VR,qR]=kC(xT),VC=X.forwardRef((t,n)=>{const{__scopePopper:r,side:s="bottom",sideOffset:b=0,align:h="center",alignOffset:p=0,arrowPadding:T=0,avoidCollisions:E=!0,collisionBoundary:A=[],collisionPadding:M=0,sticky:L="partial",hideWhenDetached:R=!1,updatePositionStrategy:z="optimized",onPlaced:U,...G}=t,J=UC(xT,r),[F,ie]=X.useState(null),te=Ki(n,Lt=>ie(Lt)),[Te,ge]=X.useState(null),le=GC(Te),Se=le?.width??0,be=le?.height??0,ke=s+(h!=="center"?"-"+h:""),Ce=typeof M=="number"?M:{top:0,right:0,bottom:0,left:0,...M},Re=Array.isArray(A)?A:[A],De=Re.length>0,Me={padding:Ce,boundary:Re.filter(YR),altBoundary:De},{refs:ze,floatingStyles:Ie,placement:P,isPositioned:oe,middlewareData:$}=BR({strategy:"fixed",placement:ke,whileElementsMounted:(...Lt)=>CR(...Lt,{animationFrame:z==="always"}),elements:{reference:J.anchor},middleware:[_R({mainAxis:b+be,alignmentAxis:p}),E&&IR({mainAxis:!0,crossAxis:!1,limiter:L==="partial"?wR():void 0,...Me}),E&&GR({...Me}),kR({...Me,apply:({elements:Lt,rects:Ua,availableWidth:Ca,availableHeight:Tl})=>{const{width:Ge,height:an}=Ua.reference,Pn=Lt.floating.style;Pn.setProperty("--radix-popper-available-width",`${Ca}px`),Pn.setProperty("--radix-popper-available-height",`${Tl}px`),Pn.setProperty("--radix-popper-anchor-width",`${Ge}px`),Pn.setProperty("--radix-popper-anchor-height",`${an}px`)}}),Te&&UR({element:Te,padding:T}),QR({arrowWidth:Se,arrowHeight:be}),R&&FR({strategy:"referenceHidden",...Me})]}),[we,w]=YC(P),yt=bm(U);Nf(()=>{oe&&yt?.()},[oe,yt]);const rt=$.arrow?.x,k=$.arrow?.y,He=$.arrow?.centerOffset!==0,[It,kt]=X.useState();return Nf(()=>{F&&kt(window.getComputedStyle(F).zIndex)},[F]),B.jsx("div",{ref:ze.setFloating,"data-radix-popper-content-wrapper":"",style:{...Ie,transform:oe?Ie.transform:"translate(0, -200%)",minWidth:"max-content",zIndex:It,"--radix-popper-transform-origin":[$.transformOrigin?.x,$.transformOrigin?.y].join(" "),...$.hide?.referenceHidden&&{visibility:"hidden",pointerEvents:"none"}},dir:t.dir,children:B.jsx(VR,{scope:r,placedSide:we,onArrowChange:ge,arrowX:rt,arrowY:k,shouldHideArrow:He,children:B.jsx(tn.div,{"data-side":we,"data-align":w,...G,ref:te,style:{...G.style,animation:oe?void 0:"none"}})})})});VC.displayName=xT;var qC="PopperArrow",jR={top:"bottom",right:"left",bottom:"top",left:"right"},jC=X.forwardRef(function(n,r){const{__scopePopper:s,...b}=n,h=qR(qC,s),p=jR[h.placedSide];return B.jsx("span",{ref:h.onArrowChange,style:{position:"absolute",left:h.arrowX,top:h.arrowY,[p]:0,transformOrigin:{top:"",right:"0 0",bottom:"center 0",left:"100% 0"}[h.placedSide],transform:{top:"translateY(100%)",right:"translateY(50%) rotate(90deg) translateX(-50%)",bottom:"rotate(180deg)",left:"translateY(50%) rotate(-90deg) translateX(50%)"}[h.placedSide],visibility:h.shouldHideArrow?"hidden":void 0},children:B.jsx(PR,{...b,ref:r,style:{...b.style,display:"block"}})})});jC.displayName=qC;function YR(t){return t!==null}var QR=t=>({name:"transformOrigin",options:t,fn(n){const{placement:r,rects:s,middlewareData:b}=n,p=b.arrow?.centerOffset!==0,T=p?0:t.arrowWidth,E=p?0:t.arrowHeight,[A,M]=YC(r),L={start:"0%",center:"50%",end:"100%"}[M],R=(b.arrow?.x??0)+T/2,z=(b.arrow?.y??0)+E/2;let U="",G="";return A==="bottom"?(U=p?L:`${R}px`,G=`${-E}px`):A==="top"?(U=p?L:`${R}px`,G=`${s.floating.height+E}px`):A==="right"?(U=`${-E}px`,G=p?L:`${z}px`):A==="left"&&(U=`${s.floating.width+E}px`,G=p?L:`${z}px`),{data:{x:U,y:G}}}});function YC(t){const[n,r="center"]=t.split("-");return[n,r]}var XR=HC,QC=WC,KR=VC,ZR=jC,v8="Popover",[XC]=d8(v8,[FC]),a4=FC(),[JR,R0]=XC(v8),RT=t=>{const{__scopePopover:n,children:r,open:s,defaultOpen:b,onOpenChange:h,modal:p=!1}=t,T=a4(n),E=X.useRef(null),[A,M]=X.useState(!1),[L,R]=oT({prop:s,defaultProp:b??!1,onChange:h,caller:v8});return B.jsx(XR,{...T,children:B.jsx(JR,{scope:n,contentId:Vg(),triggerRef:E,open:L,onOpenChange:R,onOpenToggle:X.useCallback(()=>R(z=>!z),[R]),hasCustomAnchor:A,onCustomAnchorAdd:X.useCallback(()=>M(!0),[]),onCustomAnchorRemove:X.useCallback(()=>M(!1),[]),modal:p,children:r})})};RT.displayName=v8;var KC="PopoverAnchor",$R=X.forwardRef((t,n)=>{const{__scopePopover:r,...s}=t,b=R0(KC,r),h=a4(r),{onCustomAnchorAdd:p,onCustomAnchorRemove:T}=b;return X.useEffect(()=>(p(),()=>T()),[p,T]),B.jsx(QC,{...h,...s,ref:n})});$R.displayName=KC;var ZC="PopoverTrigger",NT=X.forwardRef((t,n)=>{const{__scopePopover:r,...s}=t,b=R0(ZC,r),h=a4(r),p=Ki(n,b.triggerRef),T=B.jsx(tn.button,{type:"button","aria-haspopup":"dialog","aria-expanded":b.open,"aria-controls":b.contentId,"data-state":eE(b.open),...s,ref:p,onClick:Hn(t.onClick,b.onOpenToggle)});return b.hasCustomAnchor?T:B.jsx(QC,{asChild:!0,...h,children:T})});NT.displayName=ZC;var eN="PopoverPortal",[iU,tN]=XC(eN,{forceMount:void 0}),hm="PopoverContent",BT=X.forwardRef((t,n)=>{const r=tN(hm,t.__scopePopover),{forceMount:s=r.forceMount,...b}=t,h=R0(hm,t.__scopePopover);return B.jsx(Tm,{present:s||h.open,children:h.modal?B.jsx(lN,{...b,ref:n}):B.jsx(nN,{...b,ref:n})})});BT.displayName=hm;var aN=rT("PopoverContent.RemoveScroll"),lN=X.forwardRef((t,n)=>{const r=R0(hm,t.__scopePopover),s=X.useRef(null),b=Ki(n,s),h=X.useRef(!1);return X.useEffect(()=>{const p=s.current;if(p)return P7(p)},[]),B.jsx(cT,{as:aN,allowPinchZoom:!0,children:B.jsx(JC,{...t,ref:b,trapFocus:r.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:Hn(t.onCloseAutoFocus,p=>{p.preventDefault(),h.current||r.triggerRef.current?.focus()}),onPointerDownOutside:Hn(t.onPointerDownOutside,p=>{const T=p.detail.originalEvent,E=T.button===0&&T.ctrlKey===!0,A=T.button===2||E;h.current=A},{checkForDefaultPrevented:!1}),onFocusOutside:Hn(t.onFocusOutside,p=>p.preventDefault(),{checkForDefaultPrevented:!1})})})}),nN=X.forwardRef((t,n)=>{const r=R0(hm,t.__scopePopover),s=X.useRef(!1),b=X.useRef(!1);return B.jsx(JC,{...t,ref:n,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:h=>{t.onCloseAutoFocus?.(h),h.defaultPrevented||(s.current||r.triggerRef.current?.focus(),h.preventDefault()),s.current=!1,b.current=!1},onInteractOutside:h=>{t.onInteractOutside?.(h),h.defaultPrevented||(s.current=!0,h.detail.originalEvent.type==="pointerdown"&&(b.current=!0));const p=h.target;r.triggerRef.current?.contains(p)&&h.preventDefault(),h.detail.originalEvent.type==="focusin"&&b.current&&h.preventDefault()}})}),JC=X.forwardRef((t,n)=>{const{__scopePopover:r,trapFocus:s,onOpenAutoFocus:b,onCloseAutoFocus:h,disableOutsidePointerEvents:p,onEscapeKeyDown:T,onPointerDownOutside:E,onFocusOutside:A,onInteractOutside:M,...L}=t,R=R0(hm,r),z=a4(r);return O7(),B.jsx(sT,{asChild:!0,loop:!0,trapped:s,onMountAutoFocus:b,onUnmountAutoFocus:h,children:B.jsx(uT,{asChild:!0,disableOutsidePointerEvents:p,onInteractOutside:M,onEscapeKeyDown:T,onPointerDownOutside:E,onFocusOutside:A,onDismiss:()=>R.onOpenChange(!1),children:B.jsx(KR,{"data-state":eE(R.open),role:"dialog",id:R.contentId,...z,...L,ref:n,style:{...L.style,"--radix-popover-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-popover-content-available-width":"var(--radix-popper-available-width)","--radix-popover-content-available-height":"var(--radix-popper-available-height)","--radix-popover-trigger-width":"var(--radix-popper-anchor-width)","--radix-popover-trigger-height":"var(--radix-popper-anchor-height)"}})})})}),$C="PopoverClose",iN=X.forwardRef((t,n)=>{const{__scopePopover:r,...s}=t,b=R0($C,r);return B.jsx(tn.button,{type:"button",...s,ref:n,onClick:Hn(t.onClick,()=>b.onOpenChange(!1))})});iN.displayName=$C;var oN="PopoverArrow",rN=X.forwardRef((t,n)=>{const{__scopePopover:r,...s}=t,b=a4(r);return B.jsx(ZR,{...b,...s,ref:n})});rN.displayName=oN;function eE(t){return t?"open":"closed"}var uN=RT,sN=NT,cN=BT;function KS(t){const n=[],r=String(t||"");let s=r.indexOf(","),b=0,h=!1;for(;!h;){s===-1&&(s=r.length,h=!0);const p=r.slice(b,s).trim();(p||!h)&&n.push(p),b=s+1,s=r.indexOf(",",b)}return n}function tE(t,n){const r={};return(t[t.length-1]===""?[...t,""]:t).join((r.padRight?" ":"")+","+(r.padLeft===!1?"":" ")).trim()}const fN=/^[$_\p{ID_Start}][$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,dN=/^[$_\p{ID_Start}][-$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,bN={};function ZS(t,n){return(bN.jsx?dN:fN).test(t)}const mN=/[ \t\n\f\r]/g;function hN(t){return typeof t=="object"?t.type==="text"?JS(t.value):!1:JS(t)}function JS(t){return t.replace(mN,"")===""}let l4=class{constructor(n,r,s){this.normal=r,this.property=n,s&&(this.space=s)}};l4.prototype.normal={};l4.prototype.property={};l4.prototype.space=void 0;function aE(t,n){const r={},s={};for(const b of t)Object.assign(r,b.property),Object.assign(s,b.normal);return new l4(r,s,n)}function K2(t){return t.toLowerCase()}let di=class{constructor(n,r){this.attribute=r,this.property=n}};di.prototype.attribute="";di.prototype.booleanish=!1;di.prototype.boolean=!1;di.prototype.commaOrSpaceSeparated=!1;di.prototype.commaSeparated=!1;di.prototype.defined=!1;di.prototype.mustUseProperty=!1;di.prototype.number=!1;di.prototype.overloadedBoolean=!1;di.prototype.property="";di.prototype.spaceSeparated=!1;di.prototype.space=void 0;let pN=0;const St=N0(),pl=N0(),H6=N0(),Ne=N0(),va=N0(),cm=N0(),Vi=N0();function N0(){return 2**++pN}const P6=Object.freeze(Object.defineProperty({__proto__:null,boolean:St,booleanish:pl,commaOrSpaceSeparated:Vi,commaSeparated:cm,number:Ne,overloadedBoolean:H6,spaceSeparated:va},Symbol.toStringTag,{value:"Module"})),h6=Object.keys(P6);let OT=class extends di{constructor(n,r,s,b){let h=-1;if(super(n,r),$S(this,"space",b),typeof s=="number")for(;++h<h6.length;){const p=h6[h];$S(this,h6[h],(s&P6[p])===P6[p])}}};OT.prototype.defined=!0;function $S(t,n,r){r&&(t[n]=r)}function Em(t){const n={},r={};for(const[s,b]of Object.entries(t.properties)){const h=new OT(s,t.transform(t.attributes||{},s),b,t.space);t.mustUseProperty&&t.mustUseProperty.includes(s)&&(h.mustUseProperty=!0),n[s]=h,r[K2(s)]=s,r[K2(h.attribute)]=s}return new l4(n,r,t.space)}const lE=Em({properties:{ariaActiveDescendant:null,ariaAtomic:pl,ariaAutoComplete:null,ariaBusy:pl,ariaChecked:pl,ariaColCount:Ne,ariaColIndex:Ne,ariaColSpan:Ne,ariaControls:va,ariaCurrent:null,ariaDescribedBy:va,ariaDetails:null,ariaDisabled:pl,ariaDropEffect:va,ariaErrorMessage:null,ariaExpanded:pl,ariaFlowTo:va,ariaGrabbed:pl,ariaHasPopup:null,ariaHidden:pl,ariaInvalid:null,ariaKeyShortcuts:null,ariaLabel:null,ariaLabelledBy:va,ariaLevel:Ne,ariaLive:null,ariaModal:pl,ariaMultiLine:pl,ariaMultiSelectable:pl,ariaOrientation:null,ariaOwns:va,ariaPlaceholder:null,ariaPosInSet:Ne,ariaPressed:pl,ariaReadOnly:pl,ariaRelevant:null,ariaRequired:pl,ariaRoleDescription:va,ariaRowCount:Ne,ariaRowIndex:Ne,ariaRowSpan:Ne,ariaSelected:pl,ariaSetSize:Ne,ariaSort:null,ariaValueMax:Ne,ariaValueMin:Ne,ariaValueNow:Ne,ariaValueText:null,role:null},transform(t,n){return n==="role"?n:"aria-"+n.slice(4).toLowerCase()}});function nE(t,n){return n in t?t[n]:n}function iE(t,n){return nE(t,n.toLowerCase())}const gN=Em({attributes:{acceptcharset:"accept-charset",classname:"class",htmlfor:"for",httpequiv:"http-equiv"},mustUseProperty:["checked","multiple","muted","selected"],properties:{abbr:null,accept:cm,acceptCharset:va,accessKey:va,action:null,allow:null,allowFullScreen:St,allowPaymentRequest:St,allowUserMedia:St,alt:null,as:null,async:St,autoCapitalize:null,autoComplete:va,autoFocus:St,autoPlay:St,blocking:va,capture:null,charSet:null,checked:St,cite:null,className:va,cols:Ne,colSpan:null,content:null,contentEditable:pl,controls:St,controlsList:va,coords:Ne|cm,crossOrigin:null,data:null,dateTime:null,decoding:null,default:St,defer:St,dir:null,dirName:null,disabled:St,download:H6,draggable:pl,encType:null,enterKeyHint:null,fetchPriority:null,form:null,formAction:null,formEncType:null,formMethod:null,formNoValidate:St,formTarget:null,headers:va,height:Ne,hidden:H6,high:Ne,href:null,hrefLang:null,htmlFor:va,httpEquiv:va,id:null,imageSizes:null,imageSrcSet:null,inert:St,inputMode:null,integrity:null,is:null,isMap:St,itemId:null,itemProp:va,itemRef:va,itemScope:St,itemType:va,kind:null,label:null,lang:null,language:null,list:null,loading:null,loop:St,low:Ne,manifest:null,max:null,maxLength:Ne,media:null,method:null,min:null,minLength:Ne,multiple:St,muted:St,name:null,nonce:null,noModule:St,noValidate:St,onAbort:null,onAfterPrint:null,onAuxClick:null,onBeforeMatch:null,onBeforePrint:null,onBeforeToggle:null,onBeforeUnload:null,onBlur:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onContextLost:null,onContextMenu:null,onContextRestored:null,onCopy:null,onCueChange:null,onCut:null,onDblClick:null,onDrag:null,onDragEnd:null,onDragEnter:null,onDragExit:null,onDragLeave:null,onDragOver:null,onDragStart:null,onDrop:null,onDurationChange:null,onEmptied:null,onEnded:null,onError:null,onFocus:null,onFormData:null,onHashChange:null,onInput:null,onInvalid:null,onKeyDown:null,onKeyPress:null,onKeyUp:null,onLanguageChange:null,onLoad:null,onLoadedData:null,onLoadedMetadata:null,onLoadEnd:null,onLoadStart:null,onMessage:null,onMessageError:null,onMouseDown:null,onMouseEnter:null,onMouseLeave:null,onMouseMove:null,onMouseOut:null,onMouseOver:null,onMouseUp:null,onOffline:null,onOnline:null,onPageHide:null,onPageShow:null,onPaste:null,onPause:null,onPlay:null,onPlaying:null,onPopState:null,onProgress:null,onRateChange:null,onRejectionHandled:null,onReset:null,onResize:null,onScroll:null,onScrollEnd:null,onSecurityPolicyViolation:null,onSeeked:null,onSeeking:null,onSelect:null,onSlotChange:null,onStalled:null,onStorage:null,onSubmit:null,onSuspend:null,onTimeUpdate:null,onToggle:null,onUnhandledRejection:null,onUnload:null,onVolumeChange:null,onWaiting:null,onWheel:null,open:St,optimum:Ne,pattern:null,ping:va,placeholder:null,playsInline:St,popover:null,popoverTarget:null,popoverTargetAction:null,poster:null,preload:null,readOnly:St,referrerPolicy:null,rel:va,required:St,reversed:St,rows:Ne,rowSpan:Ne,sandbox:va,scope:null,scoped:St,seamless:St,selected:St,shadowRootClonable:St,shadowRootDelegatesFocus:St,shadowRootMode:null,shape:null,size:Ne,sizes:null,slot:null,span:Ne,spellCheck:pl,src:null,srcDoc:null,srcLang:null,srcSet:null,start:Ne,step:null,style:null,tabIndex:Ne,target:null,title:null,translate:null,type:null,typeMustMatch:St,useMap:null,value:pl,width:Ne,wrap:null,writingSuggestions:null,align:null,aLink:null,archive:va,axis:null,background:null,bgColor:null,border:Ne,borderColor:null,bottomMargin:Ne,cellPadding:null,cellSpacing:null,char:null,charOff:null,classId:null,clear:null,code:null,codeBase:null,codeType:null,color:null,compact:St,declare:St,event:null,face:null,frame:null,frameBorder:null,hSpace:Ne,leftMargin:Ne,link:null,longDesc:null,lowSrc:null,marginHeight:Ne,marginWidth:Ne,noResize:St,noHref:St,noShade:St,noWrap:St,object:null,profile:null,prompt:null,rev:null,rightMargin:Ne,rules:null,scheme:null,scrolling:pl,standby:null,summary:null,text:null,topMargin:Ne,valueType:null,version:null,vAlign:null,vLink:null,vSpace:Ne,allowTransparency:null,autoCorrect:null,autoSave:null,disablePictureInPicture:St,disableRemotePlayback:St,prefix:null,property:null,results:Ne,security:null,unselectable:null},space:"html",transform:iE}),TN=Em({attributes:{accentHeight:"accent-height",alignmentBaseline:"alignment-baseline",arabicForm:"arabic-form",baselineShift:"baseline-shift",capHeight:"cap-height",className:"class",clipPath:"clip-path",clipRule:"clip-rule",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",crossOrigin:"crossorigin",dataType:"datatype",dominantBaseline:"dominant-baseline",enableBackground:"enable-background",fillOpacity:"fill-opacity",fillRule:"fill-rule",floodColor:"flood-color",floodOpacity:"flood-opacity",fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"glyph-orientation-vertical",hrefLang:"hreflang",horizAdvX:"horiz-adv-x",horizOriginX:"horiz-origin-x",horizOriginY:"horiz-origin-y",imageRendering:"image-rendering",letterSpacing:"letter-spacing",lightingColor:"lighting-color",markerEnd:"marker-end",markerMid:"marker-mid",markerStart:"marker-start",navDown:"nav-down",navDownLeft:"nav-down-left",navDownRight:"nav-down-right",navLeft:"nav-left",navNext:"nav-next",navPrev:"nav-prev",navRight:"nav-right",navUp:"nav-up",navUpLeft:"nav-up-left",navUpRight:"nav-up-right",onAbort:"onabort",onActivate:"onactivate",onAfterPrint:"onafterprint",onBeforePrint:"onbeforeprint",onBegin:"onbegin",onCancel:"oncancel",onCanPlay:"oncanplay",onCanPlayThrough:"oncanplaythrough",onChange:"onchange",onClick:"onclick",onClose:"onclose",onCopy:"oncopy",onCueChange:"oncuechange",onCut:"oncut",onDblClick:"ondblclick",onDrag:"ondrag",onDragEnd:"ondragend",onDragEnter:"ondragenter",onDragExit:"ondragexit",onDragLeave:"ondragleave",onDragOver:"ondragover",onDragStart:"ondragstart",onDrop:"ondrop",onDurationChange:"ondurationchange",onEmptied:"onemptied",onEnd:"onend",onEnded:"onended",onError:"onerror",onFocus:"onfocus",onFocusIn:"onfocusin",onFocusOut:"onfocusout",onHashChange:"onhashchange",onInput:"oninput",onInvalid:"oninvalid",onKeyDown:"onkeydown",onKeyPress:"onkeypress",onKeyUp:"onkeyup",onLoad:"onload",onLoadedData:"onloadeddata",onLoadedMetadata:"onloadedmetadata",onLoadStart:"onloadstart",onMessage:"onmessage",onMouseDown:"onmousedown",onMouseEnter:"onmouseenter",onMouseLeave:"onmouseleave",onMouseMove:"onmousemove",onMouseOut:"onmouseout",onMouseOver:"onmouseover",onMouseUp:"onmouseup",onMouseWheel:"onmousewheel",onOffline:"onoffline",onOnline:"ononline",onPageHide:"onpagehide",onPageShow:"onpageshow",onPaste:"onpaste",onPause:"onpause",onPlay:"onplay",onPlaying:"onplaying",onPopState:"onpopstate",onProgress:"onprogress",onRateChange:"onratechange",onRepeat:"onrepeat",onReset:"onreset",onResize:"onresize",onScroll:"onscroll",onSeeked:"onseeked",onSeeking:"onseeking",onSelect:"onselect",onShow:"onshow",onStalled:"onstalled",onStorage:"onstorage",onSubmit:"onsubmit",onSuspend:"onsuspend",onTimeUpdate:"ontimeupdate",onToggle:"ontoggle",onUnload:"onunload",onVolumeChange:"onvolumechange",onWaiting:"onwaiting",onZoom:"onzoom",overlinePosition:"overline-position",overlineThickness:"overline-thickness",paintOrder:"paint-order",panose1:"panose-1",pointerEvents:"pointer-events",referrerPolicy:"referrerpolicy",renderingIntent:"rendering-intent",shapeRendering:"shape-rendering",stopColor:"stop-color",stopOpacity:"stop-opacity",strikethroughPosition:"strikethrough-position",strikethroughThickness:"strikethrough-thickness",strokeDashArray:"stroke-dasharray",strokeDashOffset:"stroke-dashoffset",strokeLineCap:"stroke-linecap",strokeLineJoin:"stroke-linejoin",strokeMiterLimit:"stroke-miterlimit",strokeOpacity:"stroke-opacity",strokeWidth:"stroke-width",tabIndex:"tabindex",textAnchor:"text-anchor",textDecoration:"text-decoration",textRendering:"text-rendering",transformOrigin:"transform-origin",typeOf:"typeof",underlinePosition:"underline-position",underlineThickness:"underline-thickness",unicodeBidi:"unicode-bidi",unicodeRange:"unicode-range",unitsPerEm:"units-per-em",vAlphabetic:"v-alphabetic",vHanging:"v-hanging",vIdeographic:"v-ideographic",vMathematical:"v-mathematical",vectorEffect:"vector-effect",vertAdvY:"vert-adv-y",vertOriginX:"vert-origin-x",vertOriginY:"vert-origin-y",wordSpacing:"word-spacing",writingMode:"writing-mode",xHeight:"x-height",playbackOrder:"playbackorder",timelineBegin:"timelinebegin"},properties:{about:Vi,accentHeight:Ne,accumulate:null,additive:null,alignmentBaseline:null,alphabetic:Ne,amplitude:Ne,arabicForm:null,ascent:Ne,attributeName:null,attributeType:null,azimuth:Ne,bandwidth:null,baselineShift:null,baseFrequency:null,baseProfile:null,bbox:null,begin:null,bias:Ne,by:null,calcMode:null,capHeight:Ne,className:va,clip:null,clipPath:null,clipPathUnits:null,clipRule:null,color:null,colorInterpolation:null,colorInterpolationFilters:null,colorProfile:null,colorRendering:null,content:null,contentScriptType:null,contentStyleType:null,crossOrigin:null,cursor:null,cx:null,cy:null,d:null,dataType:null,defaultAction:null,descent:Ne,diffuseConstant:Ne,direction:null,display:null,dur:null,divisor:Ne,dominantBaseline:null,download:St,dx:null,dy:null,edgeMode:null,editable:null,elevation:Ne,enableBackground:null,end:null,event:null,exponent:Ne,externalResourcesRequired:null,fill:null,fillOpacity:Ne,fillRule:null,filter:null,filterRes:null,filterUnits:null,floodColor:null,floodOpacity:null,focusable:null,focusHighlight:null,fontFamily:null,fontSize:null,fontSizeAdjust:null,fontStretch:null,fontStyle:null,fontVariant:null,fontWeight:null,format:null,fr:null,from:null,fx:null,fy:null,g1:cm,g2:cm,glyphName:cm,glyphOrientationHorizontal:null,glyphOrientationVertical:null,glyphRef:null,gradientTransform:null,gradientUnits:null,handler:null,hanging:Ne,hatchContentUnits:null,hatchUnits:null,height:null,href:null,hrefLang:null,horizAdvX:Ne,horizOriginX:Ne,horizOriginY:Ne,id:null,ideographic:Ne,imageRendering:null,initialVisibility:null,in:null,in2:null,intercept:Ne,k:Ne,k1:Ne,k2:Ne,k3:Ne,k4:Ne,kernelMatrix:Vi,kernelUnitLength:null,keyPoints:null,keySplines:null,keyTimes:null,kerning:null,lang:null,lengthAdjust:null,letterSpacing:null,lightingColor:null,limitingConeAngle:Ne,local:null,markerEnd:null,markerMid:null,markerStart:null,markerHeight:null,markerUnits:null,markerWidth:null,mask:null,maskContentUnits:null,maskUnits:null,mathematical:null,max:null,media:null,mediaCharacterEncoding:null,mediaContentEncodings:null,mediaSize:Ne,mediaTime:null,method:null,min:null,mode:null,name:null,navDown:null,navDownLeft:null,navDownRight:null,navLeft:null,navNext:null,navPrev:null,navRight:null,navUp:null,navUpLeft:null,navUpRight:null,numOctaves:null,observer:null,offset:null,onAbort:null,onActivate:null,onAfterPrint:null,onBeforePrint:null,onBegin:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onCopy:null,onCueChange:null,onCut:null,onDblClick:null,onDrag:null,onDragEnd:null,onDragEnter:null,onDragExit:null,onDragLeave:null,onDragOver:null,onDragStart:null,onDrop:null,onDurationChange:null,onEmptied:null,onEnd:null,onEnded:null,onError:null,onFocus:null,onFocusIn:null,onFocusOut:null,onHashChange:null,onInput:null,onInvalid:null,onKeyDown:null,onKeyPress:null,onKeyUp:null,onLoad:null,onLoadedData:null,onLoadedMetadata:null,onLoadStart:null,onMessage:null,onMouseDown:null,onMouseEnter:null,onMouseLeave:null,onMouseMove:null,onMouseOut:null,onMouseOver:null,onMouseUp:null,onMouseWheel:null,onOffline:null,onOnline:null,onPageHide:null,onPageShow:null,onPaste:null,onPause:null,onPlay:null,onPlaying:null,onPopState:null,onProgress:null,onRateChange:null,onRepeat:null,onReset:null,onResize:null,onScroll:null,onSeeked:null,onSeeking:null,onSelect:null,onShow:null,onStalled:null,onStorage:null,onSubmit:null,onSuspend:null,onTimeUpdate:null,onToggle:null,onUnload:null,onVolumeChange:null,onWaiting:null,onZoom:null,opacity:null,operator:null,order:null,orient:null,orientation:null,origin:null,overflow:null,overlay:null,overlinePosition:Ne,overlineThickness:Ne,paintOrder:null,panose1:null,path:null,pathLength:Ne,patternContentUnits:null,patternTransform:null,patternUnits:null,phase:null,ping:va,pitch:null,playbackOrder:null,pointerEvents:null,points:null,pointsAtX:Ne,pointsAtY:Ne,pointsAtZ:Ne,preserveAlpha:null,preserveAspectRatio:null,primitiveUnits:null,propagate:null,property:Vi,r:null,radius:null,referrerPolicy:null,refX:null,refY:null,rel:Vi,rev:Vi,renderingIntent:null,repeatCount:null,repeatDur:null,requiredExtensions:Vi,requiredFeatures:Vi,requiredFonts:Vi,requiredFormats:Vi,resource:null,restart:null,result:null,rotate:null,rx:null,ry:null,scale:null,seed:null,shapeRendering:null,side:null,slope:null,snapshotTime:null,specularConstant:Ne,specularExponent:Ne,spreadMethod:null,spacing:null,startOffset:null,stdDeviation:null,stemh:null,stemv:null,stitchTiles:null,stopColor:null,stopOpacity:null,strikethroughPosition:Ne,strikethroughThickness:Ne,string:null,stroke:null,strokeDashArray:Vi,strokeDashOffset:null,strokeLineCap:null,strokeLineJoin:null,strokeMiterLimit:Ne,strokeOpacity:Ne,strokeWidth:null,style:null,surfaceScale:Ne,syncBehavior:null,syncBehaviorDefault:null,syncMaster:null,syncTolerance:null,syncToleranceDefault:null,systemLanguage:Vi,tabIndex:Ne,tableValues:null,target:null,targetX:Ne,targetY:Ne,textAnchor:null,textDecoration:null,textRendering:null,textLength:null,timelineBegin:null,title:null,transformBehavior:null,type:null,typeOf:Vi,to:null,transform:null,transformOrigin:null,u1:null,u2:null,underlinePosition:Ne,underlineThickness:Ne,unicode:null,unicodeBidi:null,unicodeRange:null,unitsPerEm:Ne,values:null,vAlphabetic:Ne,vMathematical:Ne,vectorEffect:null,vHanging:Ne,vIdeographic:Ne,version:null,vertAdvY:Ne,vertOriginX:Ne,vertOriginY:Ne,viewBox:null,viewTarget:null,visibility:null,width:null,widths:null,wordSpacing:null,writingMode:null,x:null,x1:null,x2:null,xChannelSelector:null,xHeight:Ne,y:null,y1:null,y2:null,yChannelSelector:null,z:null,zoomAndPan:null},space:"svg",transform:nE}),oE=Em({properties:{xLinkActuate:null,xLinkArcRole:null,xLinkHref:null,xLinkRole:null,xLinkShow:null,xLinkTitle:null,xLinkType:null},space:"xlink",transform(t,n){return"xlink:"+n.slice(5).toLowerCase()}}),rE=Em({attributes:{xmlnsxlink:"xmlns:xlink"},properties:{xmlnsXLink:null,xmlns:null},space:"xmlns",transform:iE}),uE=Em({properties:{xmlBase:null,xmlLang:null,xmlSpace:null},space:"xml",transform(t,n){return"xml:"+n.slice(3).toLowerCase()}}),vN={classId:"classID",dataType:"datatype",itemId:"itemID",strokeDashArray:"strokeDasharray",strokeDashOffset:"strokeDashoffset",strokeLineCap:"strokeLinecap",strokeLineJoin:"strokeLinejoin",strokeMiterLimit:"strokeMiterlimit",typeOf:"typeof",xLinkActuate:"xlinkActuate",xLinkArcRole:"xlinkArcrole",xLinkHref:"xlinkHref",xLinkRole:"xlinkRole",xLinkShow:"xlinkShow",xLinkTitle:"xlinkTitle",xLinkType:"xlinkType",xmlnsXLink:"xmlnsXlink"},SN=/[A-Z]/g,ey=/-[a-z]/g,yN=/^data[-\w.:]+$/i;function _T(t,n){const r=K2(n);let s=n,b=di;if(r in t.normal)return t.property[t.normal[r]];if(r.length>4&&r.slice(0,4)==="data"&&yN.test(n)){if(n.charAt(4)==="-"){const h=n.slice(5).replace(ey,EN);s="data"+h.charAt(0).toUpperCase()+h.slice(1)}else{const h=n.slice(4);if(!ey.test(h)){let p=h.replace(SN,CN);p.charAt(0)!=="-"&&(p="-"+p),n="data"+p}}b=OT}return new b(s,n)}function CN(t){return"-"+t.toLowerCase()}function EN(t){return t.charAt(1).toUpperCase()}const S8=aE([lE,gN,oE,rE,uE],"html"),Am=aE([lE,TN,oE,rE,uE],"svg");function ty(t){const n=String(t||"").trim();return n?n.split(/[ \t\n\r\f]+/g):[]}function sE(t){return t.join(" ").trim()}var nm={},p6,ay;function AN(){if(ay)return p6;ay=1;var t=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,n=/\n/g,r=/^\s*/,s=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,b=/^:\s*/,h=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,p=/^[;\s]*/,T=/^\s+|\s+$/g,E=`
352
+ `,A="/",M="*",L="",R="comment",z="declaration";p6=function(G,J){if(typeof G!="string")throw new TypeError("First argument must be a string");if(!G)return[];J=J||{};var F=1,ie=1;function te(Me){var ze=Me.match(n);ze&&(F+=ze.length);var Ie=Me.lastIndexOf(E);ie=~Ie?Me.length-Ie:ie+Me.length}function Te(){var Me={line:F,column:ie};return function(ze){return ze.position=new ge(Me),be(),ze}}function ge(Me){this.start=Me,this.end={line:F,column:ie},this.source=J.source}ge.prototype.content=G;function le(Me){var ze=new Error(J.source+":"+F+":"+ie+": "+Me);if(ze.reason=Me,ze.filename=J.source,ze.line=F,ze.column=ie,ze.source=G,!J.silent)throw ze}function Se(Me){var ze=Me.exec(G);if(ze){var Ie=ze[0];return te(Ie),G=G.slice(Ie.length),ze}}function be(){Se(r)}function ke(Me){var ze;for(Me=Me||[];ze=Ce();)ze!==!1&&Me.push(ze);return Me}function Ce(){var Me=Te();if(!(A!=G.charAt(0)||M!=G.charAt(1))){for(var ze=2;L!=G.charAt(ze)&&(M!=G.charAt(ze)||A!=G.charAt(ze+1));)++ze;if(ze+=2,L===G.charAt(ze-1))return le("End of comment missing");var Ie=G.slice(2,ze-2);return ie+=2,te(Ie),G=G.slice(ze),ie+=2,Me({type:R,comment:Ie})}}function Re(){var Me=Te(),ze=Se(s);if(ze){if(Ce(),!Se(b))return le("property missing ':'");var Ie=Se(h),P=Me({type:z,property:U(ze[0].replace(t,L)),value:Ie?U(Ie[0].replace(t,L)):L});return Se(p),P}}function De(){var Me=[];ke(Me);for(var ze;ze=Re();)ze!==!1&&(Me.push(ze),ke(Me));return Me}return be(),De()};function U(G){return G?G.replace(T,L):L}return p6}var ly;function MN(){if(ly)return nm;ly=1;var t=nm&&nm.__importDefault||function(s){return s&&s.__esModule?s:{default:s}};Object.defineProperty(nm,"__esModule",{value:!0}),nm.default=r;const n=t(AN());function r(s,b){let h=null;if(!s||typeof s!="string")return h;const p=(0,n.default)(s),T=typeof b=="function";return p.forEach(E=>{if(E.type!=="declaration")return;const{property:A,value:M}=E;T?b(A,M,E):M&&(h=h||{},h[A]=M)}),h}return nm}var N2={},ny;function DN(){if(ny)return N2;ny=1,Object.defineProperty(N2,"__esModule",{value:!0}),N2.camelCase=void 0;var t=/^--[a-zA-Z0-9_-]+$/,n=/-([a-z])/g,r=/^[^-]+$/,s=/^-(webkit|moz|ms|o|khtml)-/,b=/^-(ms)-/,h=function(A){return!A||r.test(A)||t.test(A)},p=function(A,M){return M.toUpperCase()},T=function(A,M){return"".concat(M,"-")},E=function(A,M){return M===void 0&&(M={}),h(A)?A:(A=A.toLowerCase(),M.reactCompat?A=A.replace(b,T):A=A.replace(s,T),A.replace(n,p))};return N2.camelCase=E,N2}var B2,iy;function LN(){if(iy)return B2;iy=1;var t=B2&&B2.__importDefault||function(b){return b&&b.__esModule?b:{default:b}},n=t(MN()),r=DN();function s(b,h){var p={};return!b||typeof b!="string"||(0,n.default)(b,function(T,E){T&&E&&(p[(0,r.camelCase)(T,h)]=E)}),p}return s.default=s,B2=s,B2}var zN=LN();const xN=f7(zN),y8=cE("end"),Lu=cE("start");function cE(t){return n;function n(r){const s=r&&r.position&&r.position[t]||{};if(typeof s.line=="number"&&s.line>0&&typeof s.column=="number"&&s.column>0)return{line:s.line,column:s.column,offset:typeof s.offset=="number"&&s.offset>-1?s.offset:void 0}}}function RN(t){const n=Lu(t),r=y8(t);if(n&&r)return{start:n,end:r}}function F2(t){return!t||typeof t!="object"?"":"position"in t||"type"in t?oy(t.position):"start"in t||"end"in t?oy(t):"line"in t||"column"in t?W6(t):""}function W6(t){return ry(t&&t.line)+":"+ry(t&&t.column)}function oy(t){return W6(t&&t.start)+"-"+W6(t&&t.end)}function ry(t){return t&&typeof t=="number"?t:1}class hn extends Error{constructor(n,r,s){super(),typeof r=="string"&&(s=r,r=void 0);let b="",h={},p=!1;if(r&&("line"in r&&"column"in r?h={place:r}:"start"in r&&"end"in r?h={place:r}:"type"in r?h={ancestors:[r],place:r.position}:h={...r}),typeof n=="string"?b=n:!h.cause&&n&&(p=!0,b=n.message,h.cause=n),!h.ruleId&&!h.source&&typeof s=="string"){const E=s.indexOf(":");E===-1?h.ruleId=s:(h.source=s.slice(0,E),h.ruleId=s.slice(E+1))}if(!h.place&&h.ancestors&&h.ancestors){const E=h.ancestors[h.ancestors.length-1];E&&(h.place=E.position)}const T=h.place&&"start"in h.place?h.place.start:h.place;this.ancestors=h.ancestors||void 0,this.cause=h.cause||void 0,this.column=T?T.column:void 0,this.fatal=void 0,this.file="",this.message=b,this.line=T?T.line:void 0,this.name=F2(h.place)||"1:1",this.place=h.place||void 0,this.reason=this.message,this.ruleId=h.ruleId||void 0,this.source=h.source||void 0,this.stack=p&&h.cause&&typeof h.cause.stack=="string"?h.cause.stack:"",this.actual=void 0,this.expected=void 0,this.note=void 0,this.url=void 0}}hn.prototype.file="";hn.prototype.name="";hn.prototype.reason="";hn.prototype.message="";hn.prototype.stack="";hn.prototype.column=void 0;hn.prototype.line=void 0;hn.prototype.ancestors=void 0;hn.prototype.cause=void 0;hn.prototype.fatal=void 0;hn.prototype.place=void 0;hn.prototype.ruleId=void 0;hn.prototype.source=void 0;const IT={}.hasOwnProperty,NN=new Map,BN=/[A-Z]/g,ON=new Set(["table","tbody","thead","tfoot","tr"]),_N=new Set(["td","th"]),fE="https://github.com/syntax-tree/hast-util-to-jsx-runtime";function IN(t,n){if(!n||n.Fragment===void 0)throw new TypeError("Expected `Fragment` in options");const r=n.filePath||void 0;let s;if(n.development){if(typeof n.jsxDEV!="function")throw new TypeError("Expected `jsxDEV` in options when `development: true`");s=WN(r,n.jsxDEV)}else{if(typeof n.jsx!="function")throw new TypeError("Expected `jsx` in production options");if(typeof n.jsxs!="function")throw new TypeError("Expected `jsxs` in production options");s=PN(r,n.jsx,n.jsxs)}const b={Fragment:n.Fragment,ancestors:[],components:n.components||{},create:s,elementAttributeNameCase:n.elementAttributeNameCase||"react",evaluater:n.createEvaluater?n.createEvaluater():void 0,filePath:r,ignoreInvalidStyle:n.ignoreInvalidStyle||!1,passKeys:n.passKeys!==!1,passNode:n.passNode||!1,schema:n.space==="svg"?Am:S8,stylePropertyNameCase:n.stylePropertyNameCase||"dom",tableCellAlignToStyle:n.tableCellAlignToStyle!==!1},h=dE(b,t,void 0);return h&&typeof h!="string"?h:b.create(t,b.Fragment,{children:h||void 0},void 0)}function dE(t,n,r){if(n.type==="element")return wN(t,n,r);if(n.type==="mdxFlowExpression"||n.type==="mdxTextExpression")return GN(t,n);if(n.type==="mdxJsxFlowElement"||n.type==="mdxJsxTextElement")return FN(t,n,r);if(n.type==="mdxjsEsm")return kN(t,n);if(n.type==="root")return UN(t,n,r);if(n.type==="text")return HN(t,n)}function wN(t,n,r){const s=t.schema;let b=s;n.tagName.toLowerCase()==="svg"&&s.space==="html"&&(b=Am,t.schema=b),t.ancestors.push(n);const h=mE(t,n.tagName,!1),p=VN(t,n);let T=GT(t,n);return ON.has(n.tagName)&&(T=T.filter(function(E){return typeof E=="string"?!hN(E):!0})),bE(t,p,h,n),wT(p,T),t.ancestors.pop(),t.schema=s,t.create(n,h,p,r)}function GN(t,n){if(n.data&&n.data.estree&&t.evaluater){const s=n.data.estree.body[0];return s.type,t.evaluater.evaluateExpression(s.expression)}Z2(t,n.position)}function kN(t,n){if(n.data&&n.data.estree&&t.evaluater)return t.evaluater.evaluateProgram(n.data.estree);Z2(t,n.position)}function FN(t,n,r){const s=t.schema;let b=s;n.name==="svg"&&s.space==="html"&&(b=Am,t.schema=b),t.ancestors.push(n);const h=n.name===null?t.Fragment:mE(t,n.name,!0),p=qN(t,n),T=GT(t,n);return bE(t,p,h,n),wT(p,T),t.ancestors.pop(),t.schema=s,t.create(n,h,p,r)}function UN(t,n,r){const s={};return wT(s,GT(t,n)),t.create(n,t.Fragment,s,r)}function HN(t,n){return n.value}function bE(t,n,r,s){typeof r!="string"&&r!==t.Fragment&&t.passNode&&(n.node=s)}function wT(t,n){if(n.length>0){const r=n.length>1?n:n[0];r&&(t.children=r)}}function PN(t,n,r){return s;function s(b,h,p,T){const A=Array.isArray(p.children)?r:n;return T?A(h,p,T):A(h,p)}}function WN(t,n){return r;function r(s,b,h,p){const T=Array.isArray(h.children),E=Lu(s);return n(b,h,p,T,{columnNumber:E?E.column-1:void 0,fileName:t,lineNumber:E?E.line:void 0},void 0)}}function VN(t,n){const r={};let s,b;for(b in n.properties)if(b!=="children"&&IT.call(n.properties,b)){const h=jN(t,b,n.properties[b]);if(h){const[p,T]=h;t.tableCellAlignToStyle&&p==="align"&&typeof T=="string"&&_N.has(n.tagName)?s=T:r[p]=T}}if(s){const h=r.style||(r.style={});h[t.stylePropertyNameCase==="css"?"text-align":"textAlign"]=s}return r}function qN(t,n){const r={};for(const s of n.attributes)if(s.type==="mdxJsxExpressionAttribute")if(s.data&&s.data.estree&&t.evaluater){const h=s.data.estree.body[0];h.type;const p=h.expression;p.type;const T=p.properties[0];T.type,Object.assign(r,t.evaluater.evaluateExpression(T.argument))}else Z2(t,n.position);else{const b=s.name;let h;if(s.value&&typeof s.value=="object")if(s.value.data&&s.value.data.estree&&t.evaluater){const T=s.value.data.estree.body[0];T.type,h=t.evaluater.evaluateExpression(T.expression)}else Z2(t,n.position);else h=s.value===null?!0:s.value;r[b]=h}return r}function GT(t,n){const r=[];let s=-1;const b=t.passKeys?new Map:NN;for(;++s<n.children.length;){const h=n.children[s];let p;if(t.passKeys){const E=h.type==="element"?h.tagName:h.type==="mdxJsxFlowElement"||h.type==="mdxJsxTextElement"?h.name:void 0;if(E){const A=b.get(E)||0;p=E+"-"+A,b.set(E,A+1)}}const T=dE(t,h,p);T!==void 0&&r.push(T)}return r}function jN(t,n,r){const s=_T(t.schema,n);if(!(r==null||typeof r=="number"&&Number.isNaN(r))){if(Array.isArray(r)&&(r=s.commaSeparated?tE(r):sE(r)),s.property==="style"){let b=typeof r=="object"?r:YN(t,String(r));return t.stylePropertyNameCase==="css"&&(b=QN(b)),["style",b]}return[t.elementAttributeNameCase==="react"&&s.space?vN[s.property]||s.property:s.attribute,r]}}function YN(t,n){try{return xN(n,{reactCompat:!0})}catch(r){if(t.ignoreInvalidStyle)return{};const s=r,b=new hn("Cannot parse `style` attribute",{ancestors:t.ancestors,cause:s,ruleId:"style",source:"hast-util-to-jsx-runtime"});throw b.file=t.filePath||void 0,b.url=fE+"#cannot-parse-style-attribute",b}}function mE(t,n,r){let s;if(!r)s={type:"Literal",value:n};else if(n.includes(".")){const b=n.split(".");let h=-1,p;for(;++h<b.length;){const T=ZS(b[h])?{type:"Identifier",name:b[h]}:{type:"Literal",value:b[h]};p=p?{type:"MemberExpression",object:p,property:T,computed:!!(h&&T.type==="Literal"),optional:!1}:T}s=p}else s=ZS(n)&&!/^[a-z]/.test(n)?{type:"Identifier",name:n}:{type:"Literal",value:n};if(s.type==="Literal"){const b=s.value;return IT.call(t.components,b)?t.components[b]:b}if(t.evaluater)return t.evaluater.evaluateExpression(s);Z2(t)}function Z2(t,n){const r=new hn("Cannot handle MDX estrees without `createEvaluater`",{ancestors:t.ancestors,place:n,ruleId:"mdx-estree",source:"hast-util-to-jsx-runtime"});throw r.file=t.filePath||void 0,r.url=fE+"#cannot-handle-mdx-estrees-without-createevaluater",r}function QN(t){const n={};let r;for(r in t)IT.call(t,r)&&(n[XN(r)]=t[r]);return n}function XN(t){let n=t.replace(BN,KN);return n.slice(0,3)==="ms-"&&(n="-"+n),n}function KN(t){return"-"+t.toLowerCase()}const g6={action:["form"],cite:["blockquote","del","ins","q"],data:["object"],formAction:["button","input"],href:["a","area","base","link"],icon:["menuitem"],itemId:null,manifest:["html"],ping:["a","area"],poster:["video"],src:["audio","embed","iframe","img","input","script","source","track","video"]},ZN={};function JN(t,n){const r=ZN,s=typeof r.includeImageAlt=="boolean"?r.includeImageAlt:!0,b=typeof r.includeHtml=="boolean"?r.includeHtml:!0;return hE(t,s,b)}function hE(t,n,r){if($N(t)){if("value"in t)return t.type==="html"&&!r?"":t.value;if(n&&"alt"in t&&t.alt)return t.alt;if("children"in t)return uy(t.children,n,r)}return Array.isArray(t)?uy(t,n,r):""}function uy(t,n,r){const s=[];let b=-1;for(;++b<t.length;)s[b]=hE(t[b],n,r);return s.join("")}function $N(t){return!!(t&&typeof t=="object")}const sy=document.createElement("i");function kT(t){const n="&"+t+";";sy.innerHTML=n;const r=sy.textContent;return r.charCodeAt(r.length-1)===59&&t!=="semi"||r===n?!1:r}function Mu(t,n,r,s){const b=t.length;let h=0,p;if(n<0?n=-n>b?0:b+n:n=n>b?b:n,r=r>0?r:0,s.length<1e4)p=Array.from(s),p.unshift(n,r),t.splice(...p);else for(r&&t.splice(n,r);h<s.length;)p=s.slice(h,h+1e4),p.unshift(n,0),t.splice(...p),h+=1e4,n+=1e4}function Vo(t,n){return t.length>0?(Mu(t,t.length,0,n),t):n}const cy={}.hasOwnProperty;function eB(t){const n={};let r=-1;for(;++r<t.length;)tB(n,t[r]);return n}function tB(t,n){let r;for(r in n){const b=(cy.call(t,r)?t[r]:void 0)||(t[r]={}),h=n[r];let p;if(h)for(p in h){cy.call(b,p)||(b[p]=[]);const T=h[p];aB(b[p],Array.isArray(T)?T:T?[T]:[])}}}function aB(t,n){let r=-1;const s=[];for(;++r<n.length;)(n[r].add==="after"?t:s).push(n[r]);Mu(t,0,0,s)}function pE(t,n){const r=Number.parseInt(t,n);return r<9||r===11||r>13&&r<32||r>126&&r<160||r>55295&&r<57344||r>64975&&r<65008||(r&65535)===65535||(r&65535)===65534||r>1114111?"�":String.fromCodePoint(r)}function fm(t){return t.replace(/[\t\n\r ]+/g," ").replace(/^ | $/g,"").toLowerCase().toUpperCase()}const Su=_f(/[A-Za-z]/),Yi=_f(/[\dA-Za-z]/),lB=_f(/[#-'*+\--9=?A-Z^-~]/);function V6(t){return t!==null&&(t<32||t===127)}const q6=_f(/\d/),nB=_f(/[\dA-Fa-f]/),iB=_f(/[!-/:-@[-`{-~]/);function ot(t){return t!==null&&t<-2}function ci(t){return t!==null&&(t<0||t===32)}function Jt(t){return t===-2||t===-1||t===32}const oB=_f(new RegExp("\\p{P}|\\p{S}","u")),rB=_f(/\s/);function _f(t){return n;function n(r){return r!==null&&r>-1&&t.test(String.fromCharCode(r))}}function Mm(t){const n=[];let r=-1,s=0,b=0;for(;++r<t.length;){const h=t.charCodeAt(r);let p="";if(h===37&&Yi(t.charCodeAt(r+1))&&Yi(t.charCodeAt(r+2)))b=2;else if(h<128)/[!#$&-;=?-Z_a-z~]/.test(String.fromCharCode(h))||(p=String.fromCharCode(h));else if(h>55295&&h<57344){const T=t.charCodeAt(r+1);h<56320&&T>56319&&T<57344?(p=String.fromCharCode(h,T),b=1):p="�"}else p=String.fromCharCode(h);p&&(n.push(t.slice(s,r),encodeURIComponent(p)),s=r+b+1,p=""),b&&(r+=b,b=0)}return n.join("")+t.slice(s)}function ya(t,n,r,s){const b=s?s-1:Number.POSITIVE_INFINITY;let h=0;return p;function p(E){return Jt(E)?(t.enter(r),T(E)):n(E)}function T(E){return Jt(E)&&h++<b?(t.consume(E),T):(t.exit(r),n(E))}}const uB={tokenize:sB};function sB(t){const n=t.attempt(this.parser.constructs.contentInitial,s,b);let r;return n;function s(T){if(T===null){t.consume(T);return}return t.enter("lineEnding"),t.consume(T),t.exit("lineEnding"),ya(t,n,"linePrefix")}function b(T){return t.enter("paragraph"),h(T)}function h(T){const E=t.enter("chunkText",{contentType:"text",previous:r});return r&&(r.next=E),r=E,p(T)}function p(T){if(T===null){t.exit("chunkText"),t.exit("paragraph"),t.consume(T);return}return ot(T)?(t.consume(T),t.exit("chunkText"),h):(t.consume(T),p)}}const cB={tokenize:fB},fy={tokenize:dB};function fB(t){const n=this,r=[];let s=0,b,h,p;return T;function T(te){if(s<r.length){const Te=r[s];return n.containerState=Te[1],t.attempt(Te[0].continuation,E,A)(te)}return A(te)}function E(te){if(s++,n.containerState._closeFlow){n.containerState._closeFlow=void 0,b&&ie();const Te=n.events.length;let ge=Te,le;for(;ge--;)if(n.events[ge][0]==="exit"&&n.events[ge][1].type==="chunkFlow"){le=n.events[ge][1].end;break}F(s);let Se=Te;for(;Se<n.events.length;)n.events[Se][1].end={...le},Se++;return Mu(n.events,ge+1,0,n.events.slice(Te)),n.events.length=Se,A(te)}return T(te)}function A(te){if(s===r.length){if(!b)return R(te);if(b.currentConstruct&&b.currentConstruct.concrete)return U(te);n.interrupt=!!(b.currentConstruct&&!b._gfmTableDynamicInterruptHack)}return n.containerState={},t.check(fy,M,L)(te)}function M(te){return b&&ie(),F(s),R(te)}function L(te){return n.parser.lazy[n.now().line]=s!==r.length,p=n.now().offset,U(te)}function R(te){return n.containerState={},t.attempt(fy,z,U)(te)}function z(te){return s++,r.push([n.currentConstruct,n.containerState]),R(te)}function U(te){if(te===null){b&&ie(),F(0),t.consume(te);return}return b=b||n.parser.flow(n.now()),t.enter("chunkFlow",{_tokenizer:b,contentType:"flow",previous:h}),G(te)}function G(te){if(te===null){J(t.exit("chunkFlow"),!0),F(0),t.consume(te);return}return ot(te)?(t.consume(te),J(t.exit("chunkFlow")),s=0,n.interrupt=void 0,T):(t.consume(te),G)}function J(te,Te){const ge=n.sliceStream(te);if(Te&&ge.push(null),te.previous=h,h&&(h.next=te),h=te,b.defineSkip(te.start),b.write(ge),n.parser.lazy[te.start.line]){let le=b.events.length;for(;le--;)if(b.events[le][1].start.offset<p&&(!b.events[le][1].end||b.events[le][1].end.offset>p))return;const Se=n.events.length;let be=Se,ke,Ce;for(;be--;)if(n.events[be][0]==="exit"&&n.events[be][1].type==="chunkFlow"){if(ke){Ce=n.events[be][1].end;break}ke=!0}for(F(s),le=Se;le<n.events.length;)n.events[le][1].end={...Ce},le++;Mu(n.events,be+1,0,n.events.slice(Se)),n.events.length=le}}function F(te){let Te=r.length;for(;Te-- >te;){const ge=r[Te];n.containerState=ge[1],ge[0].exit.call(n,t)}r.length=te}function ie(){b.write([null]),h=void 0,b=void 0,n.containerState._closeFlow=void 0}}function dB(t,n,r){return ya(t,t.attempt(this.parser.constructs.document,n,r),"linePrefix",this.parser.constructs.disable.null.includes("codeIndented")?void 0:4)}function dy(t){if(t===null||ci(t)||rB(t))return 1;if(oB(t))return 2}function FT(t,n,r){const s=[];let b=-1;for(;++b<t.length;){const h=t[b].resolveAll;h&&!s.includes(h)&&(n=h(n,r),s.push(h))}return n}const j6={name:"attention",resolveAll:bB,tokenize:mB};function bB(t,n){let r=-1,s,b,h,p,T,E,A,M;for(;++r<t.length;)if(t[r][0]==="enter"&&t[r][1].type==="attentionSequence"&&t[r][1]._close){for(s=r;s--;)if(t[s][0]==="exit"&&t[s][1].type==="attentionSequence"&&t[s][1]._open&&n.sliceSerialize(t[s][1]).charCodeAt(0)===n.sliceSerialize(t[r][1]).charCodeAt(0)){if((t[s][1]._close||t[r][1]._open)&&(t[r][1].end.offset-t[r][1].start.offset)%3&&!((t[s][1].end.offset-t[s][1].start.offset+t[r][1].end.offset-t[r][1].start.offset)%3))continue;E=t[s][1].end.offset-t[s][1].start.offset>1&&t[r][1].end.offset-t[r][1].start.offset>1?2:1;const L={...t[s][1].end},R={...t[r][1].start};by(L,-E),by(R,E),p={type:E>1?"strongSequence":"emphasisSequence",start:L,end:{...t[s][1].end}},T={type:E>1?"strongSequence":"emphasisSequence",start:{...t[r][1].start},end:R},h={type:E>1?"strongText":"emphasisText",start:{...t[s][1].end},end:{...t[r][1].start}},b={type:E>1?"strong":"emphasis",start:{...p.start},end:{...T.end}},t[s][1].end={...p.start},t[r][1].start={...T.end},A=[],t[s][1].end.offset-t[s][1].start.offset&&(A=Vo(A,[["enter",t[s][1],n],["exit",t[s][1],n]])),A=Vo(A,[["enter",b,n],["enter",p,n],["exit",p,n],["enter",h,n]]),A=Vo(A,FT(n.parser.constructs.insideSpan.null,t.slice(s+1,r),n)),A=Vo(A,[["exit",h,n],["enter",T,n],["exit",T,n],["exit",b,n]]),t[r][1].end.offset-t[r][1].start.offset?(M=2,A=Vo(A,[["enter",t[r][1],n],["exit",t[r][1],n]])):M=0,Mu(t,s-1,r-s+3,A),r=s+A.length-M-2;break}}for(r=-1;++r<t.length;)t[r][1].type==="attentionSequence"&&(t[r][1].type="data");return t}function mB(t,n){const r=this.parser.constructs.attentionMarkers.null,s=this.previous,b=dy(s);let h;return p;function p(E){return h=E,t.enter("attentionSequence"),T(E)}function T(E){if(E===h)return t.consume(E),T;const A=t.exit("attentionSequence"),M=dy(E),L=!M||M===2&&b||r.includes(E),R=!b||b===2&&M||r.includes(s);return A._open=!!(h===42?L:L&&(b||!R)),A._close=!!(h===42?R:R&&(M||!L)),n(E)}}function by(t,n){t.column+=n,t.offset+=n,t._bufferIndex+=n}const hB={name:"autolink",tokenize:pB};function pB(t,n,r){let s=0;return b;function b(z){return t.enter("autolink"),t.enter("autolinkMarker"),t.consume(z),t.exit("autolinkMarker"),t.enter("autolinkProtocol"),h}function h(z){return Su(z)?(t.consume(z),p):z===64?r(z):A(z)}function p(z){return z===43||z===45||z===46||Yi(z)?(s=1,T(z)):A(z)}function T(z){return z===58?(t.consume(z),s=0,E):(z===43||z===45||z===46||Yi(z))&&s++<32?(t.consume(z),T):(s=0,A(z))}function E(z){return z===62?(t.exit("autolinkProtocol"),t.enter("autolinkMarker"),t.consume(z),t.exit("autolinkMarker"),t.exit("autolink"),n):z===null||z===32||z===60||V6(z)?r(z):(t.consume(z),E)}function A(z){return z===64?(t.consume(z),M):lB(z)?(t.consume(z),A):r(z)}function M(z){return Yi(z)?L(z):r(z)}function L(z){return z===46?(t.consume(z),s=0,M):z===62?(t.exit("autolinkProtocol").type="autolinkEmail",t.enter("autolinkMarker"),t.consume(z),t.exit("autolinkMarker"),t.exit("autolink"),n):R(z)}function R(z){if((z===45||Yi(z))&&s++<63){const U=z===45?R:L;return t.consume(z),U}return r(z)}}const C8={partial:!0,tokenize:gB};function gB(t,n,r){return s;function s(h){return Jt(h)?ya(t,b,"linePrefix")(h):b(h)}function b(h){return h===null||ot(h)?n(h):r(h)}}const gE={continuation:{tokenize:vB},exit:SB,name:"blockQuote",tokenize:TB};function TB(t,n,r){const s=this;return b;function b(p){if(p===62){const T=s.containerState;return T.open||(t.enter("blockQuote",{_container:!0}),T.open=!0),t.enter("blockQuotePrefix"),t.enter("blockQuoteMarker"),t.consume(p),t.exit("blockQuoteMarker"),h}return r(p)}function h(p){return Jt(p)?(t.enter("blockQuotePrefixWhitespace"),t.consume(p),t.exit("blockQuotePrefixWhitespace"),t.exit("blockQuotePrefix"),n):(t.exit("blockQuotePrefix"),n(p))}}function vB(t,n,r){const s=this;return b;function b(p){return Jt(p)?ya(t,h,"linePrefix",s.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(p):h(p)}function h(p){return t.attempt(gE,n,r)(p)}}function SB(t){t.exit("blockQuote")}const TE={name:"characterEscape",tokenize:yB};function yB(t,n,r){return s;function s(h){return t.enter("characterEscape"),t.enter("escapeMarker"),t.consume(h),t.exit("escapeMarker"),b}function b(h){return iB(h)?(t.enter("characterEscapeValue"),t.consume(h),t.exit("characterEscapeValue"),t.exit("characterEscape"),n):r(h)}}const vE={name:"characterReference",tokenize:CB};function CB(t,n,r){const s=this;let b=0,h,p;return T;function T(L){return t.enter("characterReference"),t.enter("characterReferenceMarker"),t.consume(L),t.exit("characterReferenceMarker"),E}function E(L){return L===35?(t.enter("characterReferenceMarkerNumeric"),t.consume(L),t.exit("characterReferenceMarkerNumeric"),A):(t.enter("characterReferenceValue"),h=31,p=Yi,M(L))}function A(L){return L===88||L===120?(t.enter("characterReferenceMarkerHexadecimal"),t.consume(L),t.exit("characterReferenceMarkerHexadecimal"),t.enter("characterReferenceValue"),h=6,p=nB,M):(t.enter("characterReferenceValue"),h=7,p=q6,M(L))}function M(L){if(L===59&&b){const R=t.exit("characterReferenceValue");return p===Yi&&!kT(s.sliceSerialize(R))?r(L):(t.enter("characterReferenceMarker"),t.consume(L),t.exit("characterReferenceMarker"),t.exit("characterReference"),n)}return p(L)&&b++<h?(t.consume(L),M):r(L)}}const my={partial:!0,tokenize:AB},hy={concrete:!0,name:"codeFenced",tokenize:EB};function EB(t,n,r){const s=this,b={partial:!0,tokenize:ge};let h=0,p=0,T;return E;function E(le){return A(le)}function A(le){const Se=s.events[s.events.length-1];return h=Se&&Se[1].type==="linePrefix"?Se[2].sliceSerialize(Se[1],!0).length:0,T=le,t.enter("codeFenced"),t.enter("codeFencedFence"),t.enter("codeFencedFenceSequence"),M(le)}function M(le){return le===T?(p++,t.consume(le),M):p<3?r(le):(t.exit("codeFencedFenceSequence"),Jt(le)?ya(t,L,"whitespace")(le):L(le))}function L(le){return le===null||ot(le)?(t.exit("codeFencedFence"),s.interrupt?n(le):t.check(my,G,Te)(le)):(t.enter("codeFencedFenceInfo"),t.enter("chunkString",{contentType:"string"}),R(le))}function R(le){return le===null||ot(le)?(t.exit("chunkString"),t.exit("codeFencedFenceInfo"),L(le)):Jt(le)?(t.exit("chunkString"),t.exit("codeFencedFenceInfo"),ya(t,z,"whitespace")(le)):le===96&&le===T?r(le):(t.consume(le),R)}function z(le){return le===null||ot(le)?L(le):(t.enter("codeFencedFenceMeta"),t.enter("chunkString",{contentType:"string"}),U(le))}function U(le){return le===null||ot(le)?(t.exit("chunkString"),t.exit("codeFencedFenceMeta"),L(le)):le===96&&le===T?r(le):(t.consume(le),U)}function G(le){return t.attempt(b,Te,J)(le)}function J(le){return t.enter("lineEnding"),t.consume(le),t.exit("lineEnding"),F}function F(le){return h>0&&Jt(le)?ya(t,ie,"linePrefix",h+1)(le):ie(le)}function ie(le){return le===null||ot(le)?t.check(my,G,Te)(le):(t.enter("codeFlowValue"),te(le))}function te(le){return le===null||ot(le)?(t.exit("codeFlowValue"),ie(le)):(t.consume(le),te)}function Te(le){return t.exit("codeFenced"),n(le)}function ge(le,Se,be){let ke=0;return Ce;function Ce(Ie){return le.enter("lineEnding"),le.consume(Ie),le.exit("lineEnding"),Re}function Re(Ie){return le.enter("codeFencedFence"),Jt(Ie)?ya(le,De,"linePrefix",s.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(Ie):De(Ie)}function De(Ie){return Ie===T?(le.enter("codeFencedFenceSequence"),Me(Ie)):be(Ie)}function Me(Ie){return Ie===T?(ke++,le.consume(Ie),Me):ke>=p?(le.exit("codeFencedFenceSequence"),Jt(Ie)?ya(le,ze,"whitespace")(Ie):ze(Ie)):be(Ie)}function ze(Ie){return Ie===null||ot(Ie)?(le.exit("codeFencedFence"),Se(Ie)):be(Ie)}}}function AB(t,n,r){const s=this;return b;function b(p){return p===null?r(p):(t.enter("lineEnding"),t.consume(p),t.exit("lineEnding"),h)}function h(p){return s.parser.lazy[s.now().line]?r(p):n(p)}}const T6={name:"codeIndented",tokenize:DB},MB={partial:!0,tokenize:LB};function DB(t,n,r){const s=this;return b;function b(A){return t.enter("codeIndented"),ya(t,h,"linePrefix",5)(A)}function h(A){const M=s.events[s.events.length-1];return M&&M[1].type==="linePrefix"&&M[2].sliceSerialize(M[1],!0).length>=4?p(A):r(A)}function p(A){return A===null?E(A):ot(A)?t.attempt(MB,p,E)(A):(t.enter("codeFlowValue"),T(A))}function T(A){return A===null||ot(A)?(t.exit("codeFlowValue"),p(A)):(t.consume(A),T)}function E(A){return t.exit("codeIndented"),n(A)}}function LB(t,n,r){const s=this;return b;function b(p){return s.parser.lazy[s.now().line]?r(p):ot(p)?(t.enter("lineEnding"),t.consume(p),t.exit("lineEnding"),b):ya(t,h,"linePrefix",5)(p)}function h(p){const T=s.events[s.events.length-1];return T&&T[1].type==="linePrefix"&&T[2].sliceSerialize(T[1],!0).length>=4?n(p):ot(p)?b(p):r(p)}}const zB={name:"codeText",previous:RB,resolve:xB,tokenize:NB};function xB(t){let n=t.length-4,r=3,s,b;if((t[r][1].type==="lineEnding"||t[r][1].type==="space")&&(t[n][1].type==="lineEnding"||t[n][1].type==="space")){for(s=r;++s<n;)if(t[s][1].type==="codeTextData"){t[r][1].type="codeTextPadding",t[n][1].type="codeTextPadding",r+=2,n-=2;break}}for(s=r-1,n++;++s<=n;)b===void 0?s!==n&&t[s][1].type!=="lineEnding"&&(b=s):(s===n||t[s][1].type==="lineEnding")&&(t[b][1].type="codeTextData",s!==b+2&&(t[b][1].end=t[s-1][1].end,t.splice(b+2,s-b-2),n-=s-b-2,s=b+2),b=void 0);return t}function RB(t){return t!==96||this.events[this.events.length-1][1].type==="characterEscape"}function NB(t,n,r){let s=0,b,h;return p;function p(L){return t.enter("codeText"),t.enter("codeTextSequence"),T(L)}function T(L){return L===96?(t.consume(L),s++,T):(t.exit("codeTextSequence"),E(L))}function E(L){return L===null?r(L):L===32?(t.enter("space"),t.consume(L),t.exit("space"),E):L===96?(h=t.enter("codeTextSequence"),b=0,M(L)):ot(L)?(t.enter("lineEnding"),t.consume(L),t.exit("lineEnding"),E):(t.enter("codeTextData"),A(L))}function A(L){return L===null||L===32||L===96||ot(L)?(t.exit("codeTextData"),E(L)):(t.consume(L),A)}function M(L){return L===96?(t.consume(L),b++,M):b===s?(t.exit("codeTextSequence"),t.exit("codeText"),n(L)):(h.type="codeTextData",A(L))}}class BB{constructor(n){this.left=n?[...n]:[],this.right=[]}get(n){if(n<0||n>=this.left.length+this.right.length)throw new RangeError("Cannot access index `"+n+"` in a splice buffer of size `"+(this.left.length+this.right.length)+"`");return n<this.left.length?this.left[n]:this.right[this.right.length-n+this.left.length-1]}get length(){return this.left.length+this.right.length}shift(){return this.setCursor(0),this.right.pop()}slice(n,r){const s=r??Number.POSITIVE_INFINITY;return s<this.left.length?this.left.slice(n,s):n>this.left.length?this.right.slice(this.right.length-s+this.left.length,this.right.length-n+this.left.length).reverse():this.left.slice(n).concat(this.right.slice(this.right.length-s+this.left.length).reverse())}splice(n,r,s){const b=r||0;this.setCursor(Math.trunc(n));const h=this.right.splice(this.right.length-b,Number.POSITIVE_INFINITY);return s&&O2(this.left,s),h.reverse()}pop(){return this.setCursor(Number.POSITIVE_INFINITY),this.left.pop()}push(n){this.setCursor(Number.POSITIVE_INFINITY),this.left.push(n)}pushMany(n){this.setCursor(Number.POSITIVE_INFINITY),O2(this.left,n)}unshift(n){this.setCursor(0),this.right.push(n)}unshiftMany(n){this.setCursor(0),O2(this.right,n.reverse())}setCursor(n){if(!(n===this.left.length||n>this.left.length&&this.right.length===0||n<0&&this.left.length===0))if(n<this.left.length){const r=this.left.splice(n,Number.POSITIVE_INFINITY);O2(this.right,r.reverse())}else{const r=this.right.splice(this.left.length+this.right.length-n,Number.POSITIVE_INFINITY);O2(this.left,r.reverse())}}}function O2(t,n){let r=0;if(n.length<1e4)t.push(...n);else for(;r<n.length;)t.push(...n.slice(r,r+1e4)),r+=1e4}function SE(t){const n={};let r=-1,s,b,h,p,T,E,A;const M=new BB(t);for(;++r<M.length;){for(;r in n;)r=n[r];if(s=M.get(r),r&&s[1].type==="chunkFlow"&&M.get(r-1)[1].type==="listItemPrefix"&&(E=s[1]._tokenizer.events,h=0,h<E.length&&E[h][1].type==="lineEndingBlank"&&(h+=2),h<E.length&&E[h][1].type==="content"))for(;++h<E.length&&E[h][1].type!=="content";)E[h][1].type==="chunkText"&&(E[h][1]._isInFirstContentOfListItem=!0,h++);if(s[0]==="enter")s[1].contentType&&(Object.assign(n,OB(M,r)),r=n[r],A=!0);else if(s[1]._container){for(h=r,b=void 0;h--;)if(p=M.get(h),p[1].type==="lineEnding"||p[1].type==="lineEndingBlank")p[0]==="enter"&&(b&&(M.get(b)[1].type="lineEndingBlank"),p[1].type="lineEnding",b=h);else if(!(p[1].type==="linePrefix"||p[1].type==="listItemIndent"))break;b&&(s[1].end={...M.get(b)[1].start},T=M.slice(b,r),T.unshift(s),M.splice(b,r-b+1,T))}}return Mu(t,0,Number.POSITIVE_INFINITY,M.slice(0)),!A}function OB(t,n){const r=t.get(n)[1],s=t.get(n)[2];let b=n-1;const h=[];let p=r._tokenizer;p||(p=s.parser[r.contentType](r.start),r._contentTypeTextTrailing&&(p._contentTypeTextTrailing=!0));const T=p.events,E=[],A={};let M,L,R=-1,z=r,U=0,G=0;const J=[G];for(;z;){for(;t.get(++b)[1]!==z;);h.push(b),z._tokenizer||(M=s.sliceStream(z),z.next||M.push(null),L&&p.defineSkip(z.start),z._isInFirstContentOfListItem&&(p._gfmTasklistFirstContentOfListItem=!0),p.write(M),z._isInFirstContentOfListItem&&(p._gfmTasklistFirstContentOfListItem=void 0)),L=z,z=z.next}for(z=r;++R<T.length;)T[R][0]==="exit"&&T[R-1][0]==="enter"&&T[R][1].type===T[R-1][1].type&&T[R][1].start.line!==T[R][1].end.line&&(G=R+1,J.push(G),z._tokenizer=void 0,z.previous=void 0,z=z.next);for(p.events=[],z?(z._tokenizer=void 0,z.previous=void 0):J.pop(),R=J.length;R--;){const F=T.slice(J[R],J[R+1]),ie=h.pop();E.push([ie,ie+F.length-1]),t.splice(ie,2,F)}for(E.reverse(),R=-1;++R<E.length;)A[U+E[R][0]]=U+E[R][1],U+=E[R][1]-E[R][0]-1;return A}const _B={resolve:wB,tokenize:GB},IB={partial:!0,tokenize:kB};function wB(t){return SE(t),t}function GB(t,n){let r;return s;function s(T){return t.enter("content"),r=t.enter("chunkContent",{contentType:"content"}),b(T)}function b(T){return T===null?h(T):ot(T)?t.check(IB,p,h)(T):(t.consume(T),b)}function h(T){return t.exit("chunkContent"),t.exit("content"),n(T)}function p(T){return t.consume(T),t.exit("chunkContent"),r.next=t.enter("chunkContent",{contentType:"content",previous:r}),r=r.next,b}}function kB(t,n,r){const s=this;return b;function b(p){return t.exit("chunkContent"),t.enter("lineEnding"),t.consume(p),t.exit("lineEnding"),ya(t,h,"linePrefix")}function h(p){if(p===null||ot(p))return r(p);const T=s.events[s.events.length-1];return!s.parser.constructs.disable.null.includes("codeIndented")&&T&&T[1].type==="linePrefix"&&T[2].sliceSerialize(T[1],!0).length>=4?n(p):t.interrupt(s.parser.constructs.flow,r,n)(p)}}function yE(t,n,r,s,b,h,p,T,E){const A=E||Number.POSITIVE_INFINITY;let M=0;return L;function L(F){return F===60?(t.enter(s),t.enter(b),t.enter(h),t.consume(F),t.exit(h),R):F===null||F===32||F===41||V6(F)?r(F):(t.enter(s),t.enter(p),t.enter(T),t.enter("chunkString",{contentType:"string"}),G(F))}function R(F){return F===62?(t.enter(h),t.consume(F),t.exit(h),t.exit(b),t.exit(s),n):(t.enter(T),t.enter("chunkString",{contentType:"string"}),z(F))}function z(F){return F===62?(t.exit("chunkString"),t.exit(T),R(F)):F===null||F===60||ot(F)?r(F):(t.consume(F),F===92?U:z)}function U(F){return F===60||F===62||F===92?(t.consume(F),z):z(F)}function G(F){return!M&&(F===null||F===41||ci(F))?(t.exit("chunkString"),t.exit(T),t.exit(p),t.exit(s),n(F)):M<A&&F===40?(t.consume(F),M++,G):F===41?(t.consume(F),M--,G):F===null||F===32||F===40||V6(F)?r(F):(t.consume(F),F===92?J:G)}function J(F){return F===40||F===41||F===92?(t.consume(F),G):G(F)}}function CE(t,n,r,s,b,h){const p=this;let T=0,E;return A;function A(z){return t.enter(s),t.enter(b),t.consume(z),t.exit(b),t.enter(h),M}function M(z){return T>999||z===null||z===91||z===93&&!E||z===94&&!T&&"_hiddenFootnoteSupport"in p.parser.constructs?r(z):z===93?(t.exit(h),t.enter(b),t.consume(z),t.exit(b),t.exit(s),n):ot(z)?(t.enter("lineEnding"),t.consume(z),t.exit("lineEnding"),M):(t.enter("chunkString",{contentType:"string"}),L(z))}function L(z){return z===null||z===91||z===93||ot(z)||T++>999?(t.exit("chunkString"),M(z)):(t.consume(z),E||(E=!Jt(z)),z===92?R:L)}function R(z){return z===91||z===92||z===93?(t.consume(z),T++,L):L(z)}}function EE(t,n,r,s,b,h){let p;return T;function T(R){return R===34||R===39||R===40?(t.enter(s),t.enter(b),t.consume(R),t.exit(b),p=R===40?41:R,E):r(R)}function E(R){return R===p?(t.enter(b),t.consume(R),t.exit(b),t.exit(s),n):(t.enter(h),A(R))}function A(R){return R===p?(t.exit(h),E(p)):R===null?r(R):ot(R)?(t.enter("lineEnding"),t.consume(R),t.exit("lineEnding"),ya(t,A,"linePrefix")):(t.enter("chunkString",{contentType:"string"}),M(R))}function M(R){return R===p||R===null||ot(R)?(t.exit("chunkString"),A(R)):(t.consume(R),R===92?L:M)}function L(R){return R===p||R===92?(t.consume(R),M):M(R)}}function U2(t,n){let r;return s;function s(b){return ot(b)?(t.enter("lineEnding"),t.consume(b),t.exit("lineEnding"),r=!0,s):Jt(b)?ya(t,s,r?"linePrefix":"lineSuffix")(b):n(b)}}const FB={name:"definition",tokenize:HB},UB={partial:!0,tokenize:PB};function HB(t,n,r){const s=this;let b;return h;function h(z){return t.enter("definition"),p(z)}function p(z){return CE.call(s,t,T,r,"definitionLabel","definitionLabelMarker","definitionLabelString")(z)}function T(z){return b=fm(s.sliceSerialize(s.events[s.events.length-1][1]).slice(1,-1)),z===58?(t.enter("definitionMarker"),t.consume(z),t.exit("definitionMarker"),E):r(z)}function E(z){return ci(z)?U2(t,A)(z):A(z)}function A(z){return yE(t,M,r,"definitionDestination","definitionDestinationLiteral","definitionDestinationLiteralMarker","definitionDestinationRaw","definitionDestinationString")(z)}function M(z){return t.attempt(UB,L,L)(z)}function L(z){return Jt(z)?ya(t,R,"whitespace")(z):R(z)}function R(z){return z===null||ot(z)?(t.exit("definition"),s.parser.defined.push(b),n(z)):r(z)}}function PB(t,n,r){return s;function s(T){return ci(T)?U2(t,b)(T):r(T)}function b(T){return EE(t,h,r,"definitionTitle","definitionTitleMarker","definitionTitleString")(T)}function h(T){return Jt(T)?ya(t,p,"whitespace")(T):p(T)}function p(T){return T===null||ot(T)?n(T):r(T)}}const WB={name:"hardBreakEscape",tokenize:VB};function VB(t,n,r){return s;function s(h){return t.enter("hardBreakEscape"),t.consume(h),b}function b(h){return ot(h)?(t.exit("hardBreakEscape"),n(h)):r(h)}}const qB={name:"headingAtx",resolve:jB,tokenize:YB};function jB(t,n){let r=t.length-2,s=3,b,h;return t[s][1].type==="whitespace"&&(s+=2),r-2>s&&t[r][1].type==="whitespace"&&(r-=2),t[r][1].type==="atxHeadingSequence"&&(s===r-1||r-4>s&&t[r-2][1].type==="whitespace")&&(r-=s+1===r?2:4),r>s&&(b={type:"atxHeadingText",start:t[s][1].start,end:t[r][1].end},h={type:"chunkText",start:t[s][1].start,end:t[r][1].end,contentType:"text"},Mu(t,s,r-s+1,[["enter",b,n],["enter",h,n],["exit",h,n],["exit",b,n]])),t}function YB(t,n,r){let s=0;return b;function b(M){return t.enter("atxHeading"),h(M)}function h(M){return t.enter("atxHeadingSequence"),p(M)}function p(M){return M===35&&s++<6?(t.consume(M),p):M===null||ci(M)?(t.exit("atxHeadingSequence"),T(M)):r(M)}function T(M){return M===35?(t.enter("atxHeadingSequence"),E(M)):M===null||ot(M)?(t.exit("atxHeading"),n(M)):Jt(M)?ya(t,T,"whitespace")(M):(t.enter("atxHeadingText"),A(M))}function E(M){return M===35?(t.consume(M),E):(t.exit("atxHeadingSequence"),T(M))}function A(M){return M===null||M===35||ci(M)?(t.exit("atxHeadingText"),T(M)):(t.consume(M),A)}}const QB=["address","article","aside","base","basefont","blockquote","body","caption","center","col","colgroup","dd","details","dialog","dir","div","dl","dt","fieldset","figcaption","figure","footer","form","frame","frameset","h1","h2","h3","h4","h5","h6","head","header","hr","html","iframe","legend","li","link","main","menu","menuitem","nav","noframes","ol","optgroup","option","p","param","search","section","summary","table","tbody","td","tfoot","th","thead","title","tr","track","ul"],py=["pre","script","style","textarea"],XB={concrete:!0,name:"htmlFlow",resolveTo:JB,tokenize:$B},KB={partial:!0,tokenize:tO},ZB={partial:!0,tokenize:eO};function JB(t){let n=t.length;for(;n--&&!(t[n][0]==="enter"&&t[n][1].type==="htmlFlow"););return n>1&&t[n-2][1].type==="linePrefix"&&(t[n][1].start=t[n-2][1].start,t[n+1][1].start=t[n-2][1].start,t.splice(n-2,2)),t}function $B(t,n,r){const s=this;let b,h,p,T,E;return A;function A(k){return M(k)}function M(k){return t.enter("htmlFlow"),t.enter("htmlFlowData"),t.consume(k),L}function L(k){return k===33?(t.consume(k),R):k===47?(t.consume(k),h=!0,G):k===63?(t.consume(k),b=3,s.interrupt?n:w):Su(k)?(t.consume(k),p=String.fromCharCode(k),J):r(k)}function R(k){return k===45?(t.consume(k),b=2,z):k===91?(t.consume(k),b=5,T=0,U):Su(k)?(t.consume(k),b=4,s.interrupt?n:w):r(k)}function z(k){return k===45?(t.consume(k),s.interrupt?n:w):r(k)}function U(k){const He="CDATA[";return k===He.charCodeAt(T++)?(t.consume(k),T===He.length?s.interrupt?n:De:U):r(k)}function G(k){return Su(k)?(t.consume(k),p=String.fromCharCode(k),J):r(k)}function J(k){if(k===null||k===47||k===62||ci(k)){const He=k===47,It=p.toLowerCase();return!He&&!h&&py.includes(It)?(b=1,s.interrupt?n(k):De(k)):QB.includes(p.toLowerCase())?(b=6,He?(t.consume(k),F):s.interrupt?n(k):De(k)):(b=7,s.interrupt&&!s.parser.lazy[s.now().line]?r(k):h?ie(k):te(k))}return k===45||Yi(k)?(t.consume(k),p+=String.fromCharCode(k),J):r(k)}function F(k){return k===62?(t.consume(k),s.interrupt?n:De):r(k)}function ie(k){return Jt(k)?(t.consume(k),ie):Ce(k)}function te(k){return k===47?(t.consume(k),Ce):k===58||k===95||Su(k)?(t.consume(k),Te):Jt(k)?(t.consume(k),te):Ce(k)}function Te(k){return k===45||k===46||k===58||k===95||Yi(k)?(t.consume(k),Te):ge(k)}function ge(k){return k===61?(t.consume(k),le):Jt(k)?(t.consume(k),ge):te(k)}function le(k){return k===null||k===60||k===61||k===62||k===96?r(k):k===34||k===39?(t.consume(k),E=k,Se):Jt(k)?(t.consume(k),le):be(k)}function Se(k){return k===E?(t.consume(k),E=null,ke):k===null||ot(k)?r(k):(t.consume(k),Se)}function be(k){return k===null||k===34||k===39||k===47||k===60||k===61||k===62||k===96||ci(k)?ge(k):(t.consume(k),be)}function ke(k){return k===47||k===62||Jt(k)?te(k):r(k)}function Ce(k){return k===62?(t.consume(k),Re):r(k)}function Re(k){return k===null||ot(k)?De(k):Jt(k)?(t.consume(k),Re):r(k)}function De(k){return k===45&&b===2?(t.consume(k),P):k===60&&b===1?(t.consume(k),oe):k===62&&b===4?(t.consume(k),yt):k===63&&b===3?(t.consume(k),w):k===93&&b===5?(t.consume(k),we):ot(k)&&(b===6||b===7)?(t.exit("htmlFlowData"),t.check(KB,rt,Me)(k)):k===null||ot(k)?(t.exit("htmlFlowData"),Me(k)):(t.consume(k),De)}function Me(k){return t.check(ZB,ze,rt)(k)}function ze(k){return t.enter("lineEnding"),t.consume(k),t.exit("lineEnding"),Ie}function Ie(k){return k===null||ot(k)?Me(k):(t.enter("htmlFlowData"),De(k))}function P(k){return k===45?(t.consume(k),w):De(k)}function oe(k){return k===47?(t.consume(k),p="",$):De(k)}function $(k){if(k===62){const He=p.toLowerCase();return py.includes(He)?(t.consume(k),yt):De(k)}return Su(k)&&p.length<8?(t.consume(k),p+=String.fromCharCode(k),$):De(k)}function we(k){return k===93?(t.consume(k),w):De(k)}function w(k){return k===62?(t.consume(k),yt):k===45&&b===2?(t.consume(k),w):De(k)}function yt(k){return k===null||ot(k)?(t.exit("htmlFlowData"),rt(k)):(t.consume(k),yt)}function rt(k){return t.exit("htmlFlow"),n(k)}}function eO(t,n,r){const s=this;return b;function b(p){return ot(p)?(t.enter("lineEnding"),t.consume(p),t.exit("lineEnding"),h):r(p)}function h(p){return s.parser.lazy[s.now().line]?r(p):n(p)}}function tO(t,n,r){return s;function s(b){return t.enter("lineEnding"),t.consume(b),t.exit("lineEnding"),t.attempt(C8,n,r)}}const aO={name:"htmlText",tokenize:lO};function lO(t,n,r){const s=this;let b,h,p;return T;function T(w){return t.enter("htmlText"),t.enter("htmlTextData"),t.consume(w),E}function E(w){return w===33?(t.consume(w),A):w===47?(t.consume(w),ge):w===63?(t.consume(w),te):Su(w)?(t.consume(w),be):r(w)}function A(w){return w===45?(t.consume(w),M):w===91?(t.consume(w),h=0,U):Su(w)?(t.consume(w),ie):r(w)}function M(w){return w===45?(t.consume(w),z):r(w)}function L(w){return w===null?r(w):w===45?(t.consume(w),R):ot(w)?(p=L,oe(w)):(t.consume(w),L)}function R(w){return w===45?(t.consume(w),z):L(w)}function z(w){return w===62?P(w):w===45?R(w):L(w)}function U(w){const yt="CDATA[";return w===yt.charCodeAt(h++)?(t.consume(w),h===yt.length?G:U):r(w)}function G(w){return w===null?r(w):w===93?(t.consume(w),J):ot(w)?(p=G,oe(w)):(t.consume(w),G)}function J(w){return w===93?(t.consume(w),F):G(w)}function F(w){return w===62?P(w):w===93?(t.consume(w),F):G(w)}function ie(w){return w===null||w===62?P(w):ot(w)?(p=ie,oe(w)):(t.consume(w),ie)}function te(w){return w===null?r(w):w===63?(t.consume(w),Te):ot(w)?(p=te,oe(w)):(t.consume(w),te)}function Te(w){return w===62?P(w):te(w)}function ge(w){return Su(w)?(t.consume(w),le):r(w)}function le(w){return w===45||Yi(w)?(t.consume(w),le):Se(w)}function Se(w){return ot(w)?(p=Se,oe(w)):Jt(w)?(t.consume(w),Se):P(w)}function be(w){return w===45||Yi(w)?(t.consume(w),be):w===47||w===62||ci(w)?ke(w):r(w)}function ke(w){return w===47?(t.consume(w),P):w===58||w===95||Su(w)?(t.consume(w),Ce):ot(w)?(p=ke,oe(w)):Jt(w)?(t.consume(w),ke):P(w)}function Ce(w){return w===45||w===46||w===58||w===95||Yi(w)?(t.consume(w),Ce):Re(w)}function Re(w){return w===61?(t.consume(w),De):ot(w)?(p=Re,oe(w)):Jt(w)?(t.consume(w),Re):ke(w)}function De(w){return w===null||w===60||w===61||w===62||w===96?r(w):w===34||w===39?(t.consume(w),b=w,Me):ot(w)?(p=De,oe(w)):Jt(w)?(t.consume(w),De):(t.consume(w),ze)}function Me(w){return w===b?(t.consume(w),b=void 0,Ie):w===null?r(w):ot(w)?(p=Me,oe(w)):(t.consume(w),Me)}function ze(w){return w===null||w===34||w===39||w===60||w===61||w===96?r(w):w===47||w===62||ci(w)?ke(w):(t.consume(w),ze)}function Ie(w){return w===47||w===62||ci(w)?ke(w):r(w)}function P(w){return w===62?(t.consume(w),t.exit("htmlTextData"),t.exit("htmlText"),n):r(w)}function oe(w){return t.exit("htmlTextData"),t.enter("lineEnding"),t.consume(w),t.exit("lineEnding"),$}function $(w){return Jt(w)?ya(t,we,"linePrefix",s.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(w):we(w)}function we(w){return t.enter("htmlTextData"),p(w)}}const UT={name:"labelEnd",resolveAll:rO,resolveTo:uO,tokenize:sO},nO={tokenize:cO},iO={tokenize:fO},oO={tokenize:dO};function rO(t){let n=-1;const r=[];for(;++n<t.length;){const s=t[n][1];if(r.push(t[n]),s.type==="labelImage"||s.type==="labelLink"||s.type==="labelEnd"){const b=s.type==="labelImage"?4:2;s.type="data",n+=b}}return t.length!==r.length&&Mu(t,0,t.length,r),t}function uO(t,n){let r=t.length,s=0,b,h,p,T;for(;r--;)if(b=t[r][1],h){if(b.type==="link"||b.type==="labelLink"&&b._inactive)break;t[r][0]==="enter"&&b.type==="labelLink"&&(b._inactive=!0)}else if(p){if(t[r][0]==="enter"&&(b.type==="labelImage"||b.type==="labelLink")&&!b._balanced&&(h=r,b.type!=="labelLink")){s=2;break}}else b.type==="labelEnd"&&(p=r);const E={type:t[h][1].type==="labelLink"?"link":"image",start:{...t[h][1].start},end:{...t[t.length-1][1].end}},A={type:"label",start:{...t[h][1].start},end:{...t[p][1].end}},M={type:"labelText",start:{...t[h+s+2][1].end},end:{...t[p-2][1].start}};return T=[["enter",E,n],["enter",A,n]],T=Vo(T,t.slice(h+1,h+s+3)),T=Vo(T,[["enter",M,n]]),T=Vo(T,FT(n.parser.constructs.insideSpan.null,t.slice(h+s+4,p-3),n)),T=Vo(T,[["exit",M,n],t[p-2],t[p-1],["exit",A,n]]),T=Vo(T,t.slice(p+1)),T=Vo(T,[["exit",E,n]]),Mu(t,h,t.length,T),t}function sO(t,n,r){const s=this;let b=s.events.length,h,p;for(;b--;)if((s.events[b][1].type==="labelImage"||s.events[b][1].type==="labelLink")&&!s.events[b][1]._balanced){h=s.events[b][1];break}return T;function T(R){return h?h._inactive?L(R):(p=s.parser.defined.includes(fm(s.sliceSerialize({start:h.end,end:s.now()}))),t.enter("labelEnd"),t.enter("labelMarker"),t.consume(R),t.exit("labelMarker"),t.exit("labelEnd"),E):r(R)}function E(R){return R===40?t.attempt(nO,M,p?M:L)(R):R===91?t.attempt(iO,M,p?A:L)(R):p?M(R):L(R)}function A(R){return t.attempt(oO,M,L)(R)}function M(R){return n(R)}function L(R){return h._balanced=!0,r(R)}}function cO(t,n,r){return s;function s(L){return t.enter("resource"),t.enter("resourceMarker"),t.consume(L),t.exit("resourceMarker"),b}function b(L){return ci(L)?U2(t,h)(L):h(L)}function h(L){return L===41?M(L):yE(t,p,T,"resourceDestination","resourceDestinationLiteral","resourceDestinationLiteralMarker","resourceDestinationRaw","resourceDestinationString",32)(L)}function p(L){return ci(L)?U2(t,E)(L):M(L)}function T(L){return r(L)}function E(L){return L===34||L===39||L===40?EE(t,A,r,"resourceTitle","resourceTitleMarker","resourceTitleString")(L):M(L)}function A(L){return ci(L)?U2(t,M)(L):M(L)}function M(L){return L===41?(t.enter("resourceMarker"),t.consume(L),t.exit("resourceMarker"),t.exit("resource"),n):r(L)}}function fO(t,n,r){const s=this;return b;function b(T){return CE.call(s,t,h,p,"reference","referenceMarker","referenceString")(T)}function h(T){return s.parser.defined.includes(fm(s.sliceSerialize(s.events[s.events.length-1][1]).slice(1,-1)))?n(T):r(T)}function p(T){return r(T)}}function dO(t,n,r){return s;function s(h){return t.enter("reference"),t.enter("referenceMarker"),t.consume(h),t.exit("referenceMarker"),b}function b(h){return h===93?(t.enter("referenceMarker"),t.consume(h),t.exit("referenceMarker"),t.exit("reference"),n):r(h)}}const bO={name:"labelStartImage",resolveAll:UT.resolveAll,tokenize:mO};function mO(t,n,r){const s=this;return b;function b(T){return t.enter("labelImage"),t.enter("labelImageMarker"),t.consume(T),t.exit("labelImageMarker"),h}function h(T){return T===91?(t.enter("labelMarker"),t.consume(T),t.exit("labelMarker"),t.exit("labelImage"),p):r(T)}function p(T){return T===94&&"_hiddenFootnoteSupport"in s.parser.constructs?r(T):n(T)}}const hO={name:"labelStartLink",resolveAll:UT.resolveAll,tokenize:pO};function pO(t,n,r){const s=this;return b;function b(p){return t.enter("labelLink"),t.enter("labelMarker"),t.consume(p),t.exit("labelMarker"),t.exit("labelLink"),h}function h(p){return p===94&&"_hiddenFootnoteSupport"in s.parser.constructs?r(p):n(p)}}const v6={name:"lineEnding",tokenize:gO};function gO(t,n){return r;function r(s){return t.enter("lineEnding"),t.consume(s),t.exit("lineEnding"),ya(t,n,"linePrefix")}}const Qg={name:"thematicBreak",tokenize:TO};function TO(t,n,r){let s=0,b;return h;function h(A){return t.enter("thematicBreak"),p(A)}function p(A){return b=A,T(A)}function T(A){return A===b?(t.enter("thematicBreakSequence"),E(A)):s>=3&&(A===null||ot(A))?(t.exit("thematicBreak"),n(A)):r(A)}function E(A){return A===b?(t.consume(A),s++,E):(t.exit("thematicBreakSequence"),Jt(A)?ya(t,T,"whitespace")(A):T(A))}}const si={continuation:{tokenize:CO},exit:AO,name:"list",tokenize:yO},vO={partial:!0,tokenize:MO},SO={partial:!0,tokenize:EO};function yO(t,n,r){const s=this,b=s.events[s.events.length-1];let h=b&&b[1].type==="linePrefix"?b[2].sliceSerialize(b[1],!0).length:0,p=0;return T;function T(z){const U=s.containerState.type||(z===42||z===43||z===45?"listUnordered":"listOrdered");if(U==="listUnordered"?!s.containerState.marker||z===s.containerState.marker:q6(z)){if(s.containerState.type||(s.containerState.type=U,t.enter(U,{_container:!0})),U==="listUnordered")return t.enter("listItemPrefix"),z===42||z===45?t.check(Qg,r,A)(z):A(z);if(!s.interrupt||z===49)return t.enter("listItemPrefix"),t.enter("listItemValue"),E(z)}return r(z)}function E(z){return q6(z)&&++p<10?(t.consume(z),E):(!s.interrupt||p<2)&&(s.containerState.marker?z===s.containerState.marker:z===41||z===46)?(t.exit("listItemValue"),A(z)):r(z)}function A(z){return t.enter("listItemMarker"),t.consume(z),t.exit("listItemMarker"),s.containerState.marker=s.containerState.marker||z,t.check(C8,s.interrupt?r:M,t.attempt(vO,R,L))}function M(z){return s.containerState.initialBlankLine=!0,h++,R(z)}function L(z){return Jt(z)?(t.enter("listItemPrefixWhitespace"),t.consume(z),t.exit("listItemPrefixWhitespace"),R):r(z)}function R(z){return s.containerState.size=h+s.sliceSerialize(t.exit("listItemPrefix"),!0).length,n(z)}}function CO(t,n,r){const s=this;return s.containerState._closeFlow=void 0,t.check(C8,b,h);function b(T){return s.containerState.furtherBlankLines=s.containerState.furtherBlankLines||s.containerState.initialBlankLine,ya(t,n,"listItemIndent",s.containerState.size+1)(T)}function h(T){return s.containerState.furtherBlankLines||!Jt(T)?(s.containerState.furtherBlankLines=void 0,s.containerState.initialBlankLine=void 0,p(T)):(s.containerState.furtherBlankLines=void 0,s.containerState.initialBlankLine=void 0,t.attempt(SO,n,p)(T))}function p(T){return s.containerState._closeFlow=!0,s.interrupt=void 0,ya(t,t.attempt(si,n,r),"linePrefix",s.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(T)}}function EO(t,n,r){const s=this;return ya(t,b,"listItemIndent",s.containerState.size+1);function b(h){const p=s.events[s.events.length-1];return p&&p[1].type==="listItemIndent"&&p[2].sliceSerialize(p[1],!0).length===s.containerState.size?n(h):r(h)}}function AO(t){t.exit(this.containerState.type)}function MO(t,n,r){const s=this;return ya(t,b,"listItemPrefixWhitespace",s.parser.constructs.disable.null.includes("codeIndented")?void 0:5);function b(h){const p=s.events[s.events.length-1];return!Jt(h)&&p&&p[1].type==="listItemPrefixWhitespace"?n(h):r(h)}}const gy={name:"setextUnderline",resolveTo:DO,tokenize:LO};function DO(t,n){let r=t.length,s,b,h;for(;r--;)if(t[r][0]==="enter"){if(t[r][1].type==="content"){s=r;break}t[r][1].type==="paragraph"&&(b=r)}else t[r][1].type==="content"&&t.splice(r,1),!h&&t[r][1].type==="definition"&&(h=r);const p={type:"setextHeading",start:{...t[s][1].start},end:{...t[t.length-1][1].end}};return t[b][1].type="setextHeadingText",h?(t.splice(b,0,["enter",p,n]),t.splice(h+1,0,["exit",t[s][1],n]),t[s][1].end={...t[h][1].end}):t[s][1]=p,t.push(["exit",p,n]),t}function LO(t,n,r){const s=this;let b;return h;function h(A){let M=s.events.length,L;for(;M--;)if(s.events[M][1].type!=="lineEnding"&&s.events[M][1].type!=="linePrefix"&&s.events[M][1].type!=="content"){L=s.events[M][1].type==="paragraph";break}return!s.parser.lazy[s.now().line]&&(s.interrupt||L)?(t.enter("setextHeadingLine"),b=A,p(A)):r(A)}function p(A){return t.enter("setextHeadingLineSequence"),T(A)}function T(A){return A===b?(t.consume(A),T):(t.exit("setextHeadingLineSequence"),Jt(A)?ya(t,E,"lineSuffix")(A):E(A))}function E(A){return A===null||ot(A)?(t.exit("setextHeadingLine"),n(A)):r(A)}}const zO={tokenize:xO};function xO(t){const n=this,r=t.attempt(C8,s,t.attempt(this.parser.constructs.flowInitial,b,ya(t,t.attempt(this.parser.constructs.flow,b,t.attempt(_B,b)),"linePrefix")));return r;function s(h){if(h===null){t.consume(h);return}return t.enter("lineEndingBlank"),t.consume(h),t.exit("lineEndingBlank"),n.currentConstruct=void 0,r}function b(h){if(h===null){t.consume(h);return}return t.enter("lineEnding"),t.consume(h),t.exit("lineEnding"),n.currentConstruct=void 0,r}}const RO={resolveAll:ME()},NO=AE("string"),BO=AE("text");function AE(t){return{resolveAll:ME(t==="text"?OO:void 0),tokenize:n};function n(r){const s=this,b=this.parser.constructs[t],h=r.attempt(b,p,T);return p;function p(M){return A(M)?h(M):T(M)}function T(M){if(M===null){r.consume(M);return}return r.enter("data"),r.consume(M),E}function E(M){return A(M)?(r.exit("data"),h(M)):(r.consume(M),E)}function A(M){if(M===null)return!0;const L=b[M];let R=-1;if(L)for(;++R<L.length;){const z=L[R];if(!z.previous||z.previous.call(s,s.previous))return!0}return!1}}}function ME(t){return n;function n(r,s){let b=-1,h;for(;++b<=r.length;)h===void 0?r[b]&&r[b][1].type==="data"&&(h=b,b++):(!r[b]||r[b][1].type!=="data")&&(b!==h+2&&(r[h][1].end=r[b-1][1].end,r.splice(h+2,b-h-2),b=h+2),h=void 0);return t?t(r,s):r}}function OO(t,n){let r=0;for(;++r<=t.length;)if((r===t.length||t[r][1].type==="lineEnding")&&t[r-1][1].type==="data"){const s=t[r-1][1],b=n.sliceStream(s);let h=b.length,p=-1,T=0,E;for(;h--;){const A=b[h];if(typeof A=="string"){for(p=A.length;A.charCodeAt(p-1)===32;)T++,p--;if(p)break;p=-1}else if(A===-2)E=!0,T++;else if(A!==-1){h++;break}}if(n._contentTypeTextTrailing&&r===t.length&&(T=0),T){const A={type:r===t.length||E||T<2?"lineSuffix":"hardBreakTrailing",start:{_bufferIndex:h?p:s.start._bufferIndex+p,_index:s.start._index+h,line:s.end.line,column:s.end.column-T,offset:s.end.offset-T},end:{...s.end}};s.end={...A.start},s.start.offset===s.end.offset?Object.assign(s,A):(t.splice(r,0,["enter",A,n],["exit",A,n]),r+=2)}r++}return t}const _O={42:si,43:si,45:si,48:si,49:si,50:si,51:si,52:si,53:si,54:si,55:si,56:si,57:si,62:gE},IO={91:FB},wO={[-2]:T6,[-1]:T6,32:T6},GO={35:qB,42:Qg,45:[gy,Qg],60:XB,61:gy,95:Qg,96:hy,126:hy},kO={38:vE,92:TE},FO={[-5]:v6,[-4]:v6,[-3]:v6,33:bO,38:vE,42:j6,60:[hB,aO],91:hO,92:[WB,TE],93:UT,95:j6,96:zB},UO={null:[j6,RO]},HO={null:[42,95]},PO={null:[]},WO=Object.freeze(Object.defineProperty({__proto__:null,attentionMarkers:HO,contentInitial:IO,disable:PO,document:_O,flow:GO,flowInitial:wO,insideSpan:UO,string:kO,text:FO},Symbol.toStringTag,{value:"Module"}));function VO(t,n,r){let s={_bufferIndex:-1,_index:0,line:r&&r.line||1,column:r&&r.column||1,offset:r&&r.offset||0};const b={},h=[];let p=[],T=[];const E={attempt:Se(ge),check:Se(le),consume:ie,enter:te,exit:Te,interrupt:Se(le,{interrupt:!0})},A={code:null,containerState:{},defineSkip:G,events:[],now:U,parser:t,previous:null,sliceSerialize:R,sliceStream:z,write:L};let M=n.tokenize.call(A,E);return n.resolveAll&&h.push(n),A;function L(Re){return p=Vo(p,Re),J(),p[p.length-1]!==null?[]:(be(n,0),A.events=FT(h,A.events,A),A.events)}function R(Re,De){return jO(z(Re),De)}function z(Re){return qO(p,Re)}function U(){const{_bufferIndex:Re,_index:De,line:Me,column:ze,offset:Ie}=s;return{_bufferIndex:Re,_index:De,line:Me,column:ze,offset:Ie}}function G(Re){b[Re.line]=Re.column,Ce()}function J(){let Re;for(;s._index<p.length;){const De=p[s._index];if(typeof De=="string")for(Re=s._index,s._bufferIndex<0&&(s._bufferIndex=0);s._index===Re&&s._bufferIndex<De.length;)F(De.charCodeAt(s._bufferIndex));else F(De)}}function F(Re){M=M(Re)}function ie(Re){ot(Re)?(s.line++,s.column=1,s.offset+=Re===-3?2:1,Ce()):Re!==-1&&(s.column++,s.offset++),s._bufferIndex<0?s._index++:(s._bufferIndex++,s._bufferIndex===p[s._index].length&&(s._bufferIndex=-1,s._index++)),A.previous=Re}function te(Re,De){const Me=De||{};return Me.type=Re,Me.start=U(),A.events.push(["enter",Me,A]),T.push(Me),Me}function Te(Re){const De=T.pop();return De.end=U(),A.events.push(["exit",De,A]),De}function ge(Re,De){be(Re,De.from)}function le(Re,De){De.restore()}function Se(Re,De){return Me;function Me(ze,Ie,P){let oe,$,we,w;return Array.isArray(ze)?rt(ze):"tokenize"in ze?rt([ze]):yt(ze);function yt(kt){return Lt;function Lt(Ua){const Ca=Ua!==null&&kt[Ua],Tl=Ua!==null&&kt.null,Ge=[...Array.isArray(Ca)?Ca:Ca?[Ca]:[],...Array.isArray(Tl)?Tl:Tl?[Tl]:[]];return rt(Ge)(Ua)}}function rt(kt){return oe=kt,$=0,kt.length===0?P:k(kt[$])}function k(kt){return Lt;function Lt(Ua){return w=ke(),we=kt,kt.partial||(A.currentConstruct=kt),kt.name&&A.parser.constructs.disable.null.includes(kt.name)?It():kt.tokenize.call(De?Object.assign(Object.create(A),De):A,E,He,It)(Ua)}}function He(kt){return Re(we,w),Ie}function It(kt){return w.restore(),++$<oe.length?k(oe[$]):P}}}function be(Re,De){Re.resolveAll&&!h.includes(Re)&&h.push(Re),Re.resolve&&Mu(A.events,De,A.events.length-De,Re.resolve(A.events.slice(De),A)),Re.resolveTo&&(A.events=Re.resolveTo(A.events,A))}function ke(){const Re=U(),De=A.previous,Me=A.currentConstruct,ze=A.events.length,Ie=Array.from(T);return{from:ze,restore:P};function P(){s=Re,A.previous=De,A.currentConstruct=Me,A.events.length=ze,T=Ie,Ce()}}function Ce(){s.line in b&&s.column<2&&(s.column=b[s.line],s.offset+=b[s.line]-1)}}function qO(t,n){const r=n.start._index,s=n.start._bufferIndex,b=n.end._index,h=n.end._bufferIndex;let p;if(r===b)p=[t[r].slice(s,h)];else{if(p=t.slice(r,b),s>-1){const T=p[0];typeof T=="string"?p[0]=T.slice(s):p.shift()}h>0&&p.push(t[b].slice(0,h))}return p}function jO(t,n){let r=-1;const s=[];let b;for(;++r<t.length;){const h=t[r];let p;if(typeof h=="string")p=h;else switch(h){case-5:{p="\r";break}case-4:{p=`
353
+ `;break}case-3:{p=`\r
354
+ `;break}case-2:{p=n?" ":" ";break}case-1:{if(!n&&b)continue;p=" ";break}default:p=String.fromCharCode(h)}b=h===-2,s.push(p)}return s.join("")}function YO(t){const s={constructs:eB([WO,...(t||{}).extensions||[]]),content:b(uB),defined:[],document:b(cB),flow:b(zO),lazy:{},string:b(NO),text:b(BO)};return s;function b(h){return p;function p(T){return VO(s,h,T)}}}function QO(t){for(;!SE(t););return t}const Ty=/[\0\t\n\r]/g;function XO(){let t=1,n="",r=!0,s;return b;function b(h,p,T){const E=[];let A,M,L,R,z;for(h=n+(typeof h=="string"?h.toString():new TextDecoder(p||void 0).decode(h)),L=0,n="",r&&(h.charCodeAt(0)===65279&&L++,r=void 0);L<h.length;){if(Ty.lastIndex=L,A=Ty.exec(h),R=A&&A.index!==void 0?A.index:h.length,z=h.charCodeAt(R),!A){n=h.slice(L);break}if(z===10&&L===R&&s)E.push(-3),s=void 0;else switch(s&&(E.push(-5),s=void 0),L<R&&(E.push(h.slice(L,R)),t+=R-L),z){case 0:{E.push(65533),t++;break}case 9:{for(M=Math.ceil(t/4)*4,E.push(-2);t++<M;)E.push(-1);break}case 10:{E.push(-4),t=1;break}default:s=!0,t=1}L=R+1}return T&&(s&&E.push(-5),n&&E.push(n),E.push(null)),E}}const KO=/\\([!-/:-@[-`{-~])|&(#(?:\d{1,7}|x[\da-f]{1,6})|[\da-z]{1,31});/gi;function ZO(t){return t.replace(KO,JO)}function JO(t,n,r){if(n)return n;if(r.charCodeAt(0)===35){const b=r.charCodeAt(1),h=b===120||b===88;return pE(r.slice(h?2:1),h?16:10)}return kT(r)||t}const DE={}.hasOwnProperty;function $O(t,n,r){return typeof n!="string"&&(r=n,n=void 0),e_(r)(QO(YO(r).document().write(XO()(t,n,!0))))}function e_(t){const n={transforms:[],canContainEols:["emphasis","fragment","heading","paragraph","strong"],enter:{autolink:h(Ws),autolinkProtocol:ke,autolinkEmail:ke,atxHeading:h(Zi),blockQuote:h(Tl),characterEscape:ke,characterReference:ke,codeFenced:h(Ge),codeFencedFenceInfo:p,codeFencedFenceMeta:p,codeIndented:h(Ge,p),codeText:h(an,p),codeTextData:ke,data:ke,codeFlowValue:ke,definition:h(Pn),definitionDestinationString:p,definitionLabelString:p,definitionTitleString:p,emphasis:h(Wn),hardBreakEscape:h(Ft),hardBreakTrailing:h(Ft),htmlFlow:h(Hs,p),htmlFlowData:ke,htmlText:h(Hs,p),htmlTextData:ke,image:h(Ps),label:p,link:h(Ws),listItem:h(If),listItemValue:R,listOrdered:h(Kt,L),listUnordered:h(Kt),paragraph:h(Yo),reference:k,referenceString:p,resourceDestinationString:p,resourceTitleString:p,setextHeading:h(Zi),strong:h(Vs),thematicBreak:h(Nm)},exit:{atxHeading:E(),atxHeadingSequence:ge,autolink:E(),autolinkEmail:Ca,autolinkProtocol:Ua,blockQuote:E(),characterEscapeValue:Ce,characterReferenceMarkerHexadecimal:It,characterReferenceMarkerNumeric:It,characterReferenceValue:kt,characterReference:Lt,codeFenced:E(J),codeFencedFence:G,codeFencedFenceInfo:z,codeFencedFenceMeta:U,codeFlowValue:Ce,codeIndented:E(F),codeText:E(Ie),codeTextData:Ce,data:Ce,definition:E(),definitionDestinationString:Te,definitionLabelString:ie,definitionTitleString:te,emphasis:E(),hardBreakEscape:E(De),hardBreakTrailing:E(De),htmlFlow:E(Me),htmlFlowData:Ce,htmlText:E(ze),htmlTextData:Ce,image:E(oe),label:we,labelText:$,lineEnding:Re,link:E(P),listItem:E(),listOrdered:E(),listUnordered:E(),paragraph:E(),referenceString:He,resourceDestinationString:w,resourceTitleString:yt,resource:rt,setextHeading:E(be),setextHeadingLineSequence:Se,setextHeadingText:le,strong:E(),thematicBreak:E()}};LE(n,(t||{}).mdastExtensions||[]);const r={};return s;function s(ve){let Oe={type:"root",children:[]};const Ke={stack:[Oe],tokenStack:[],config:n,enter:T,exit:A,buffer:p,resume:M,data:r},Et=[];let Ut=-1;for(;++Ut<ve.length;)if(ve[Ut][1].type==="listOrdered"||ve[Ut][1].type==="listUnordered")if(ve[Ut][0]==="enter")Et.push(Ut);else{const ln=Et.pop();Ut=b(ve,ln,Ut)}for(Ut=-1;++Ut<ve.length;){const ln=n[ve[Ut][0]];DE.call(ln,ve[Ut][1].type)&&ln[ve[Ut][1].type].call(Object.assign({sliceSerialize:ve[Ut][2].sliceSerialize},Ke),ve[Ut][1])}if(Ke.tokenStack.length>0){const ln=Ke.tokenStack[Ke.tokenStack.length-1];(ln[1]||vy).call(Ke,void 0,ln[0])}for(Oe.position={start:Mf(ve.length>0?ve[0][1].start:{line:1,column:1,offset:0}),end:Mf(ve.length>0?ve[ve.length-2][1].end:{line:1,column:1,offset:0})},Ut=-1;++Ut<n.transforms.length;)Oe=n.transforms[Ut](Oe)||Oe;return Oe}function b(ve,Oe,Ke){let Et=Oe-1,Ut=-1,ln=!1,Ji,vl,Ha,Gl;for(;++Et<=Ke;){const Zt=ve[Et];switch(Zt[1].type){case"listUnordered":case"listOrdered":case"blockQuote":{Zt[0]==="enter"?Ut++:Ut--,Gl=void 0;break}case"lineEndingBlank":{Zt[0]==="enter"&&(Ji&&!Gl&&!Ut&&!Ha&&(Ha=Et),Gl=void 0);break}case"linePrefix":case"listItemValue":case"listItemMarker":case"listItemPrefix":case"listItemPrefixWhitespace":break;default:Gl=void 0}if(!Ut&&Zt[0]==="enter"&&Zt[1].type==="listItemPrefix"||Ut===-1&&Zt[0]==="exit"&&(Zt[1].type==="listUnordered"||Zt[1].type==="listOrdered")){if(Ji){let Qo=Et;for(vl=void 0;Qo--;){const Vn=ve[Qo];if(Vn[1].type==="lineEnding"||Vn[1].type==="lineEndingBlank"){if(Vn[0]==="exit")continue;vl&&(ve[vl][1].type="lineEndingBlank",ln=!0),Vn[1].type="lineEnding",vl=Qo}else if(!(Vn[1].type==="linePrefix"||Vn[1].type==="blockQuotePrefix"||Vn[1].type==="blockQuotePrefixWhitespace"||Vn[1].type==="blockQuoteMarker"||Vn[1].type==="listItemIndent"))break}Ha&&(!vl||Ha<vl)&&(Ji._spread=!0),Ji.end=Object.assign({},vl?ve[vl][1].start:Zt[1].end),ve.splice(vl||Et,0,["exit",Ji,Zt[2]]),Et++,Ke++}if(Zt[1].type==="listItemPrefix"){const Qo={type:"listItem",_spread:!1,start:Object.assign({},Zt[1].start),end:void 0};Ji=Qo,ve.splice(Et,0,["enter",Qo,Zt[2]]),Et++,Ke++,Ha=void 0,Gl=!0}}}return ve[Oe][1]._spread=ln,Ke}function h(ve,Oe){return Ke;function Ke(Et){T.call(this,ve(Et),Et),Oe&&Oe.call(this,Et)}}function p(){this.stack.push({type:"fragment",children:[]})}function T(ve,Oe,Ke){this.stack[this.stack.length-1].children.push(ve),this.stack.push(ve),this.tokenStack.push([Oe,Ke||void 0]),ve.position={start:Mf(Oe.start),end:void 0}}function E(ve){return Oe;function Oe(Ke){ve&&ve.call(this,Ke),A.call(this,Ke)}}function A(ve,Oe){const Ke=this.stack.pop(),Et=this.tokenStack.pop();if(Et)Et[0].type!==ve.type&&(Oe?Oe.call(this,ve,Et[0]):(Et[1]||vy).call(this,ve,Et[0]));else throw new Error("Cannot close `"+ve.type+"` ("+F2({start:ve.start,end:ve.end})+"): it’s not open");Ke.position.end=Mf(ve.end)}function M(){return JN(this.stack.pop())}function L(){this.data.expectingFirstListItemValue=!0}function R(ve){if(this.data.expectingFirstListItemValue){const Oe=this.stack[this.stack.length-2];Oe.start=Number.parseInt(this.sliceSerialize(ve),10),this.data.expectingFirstListItemValue=void 0}}function z(){const ve=this.resume(),Oe=this.stack[this.stack.length-1];Oe.lang=ve}function U(){const ve=this.resume(),Oe=this.stack[this.stack.length-1];Oe.meta=ve}function G(){this.data.flowCodeInside||(this.buffer(),this.data.flowCodeInside=!0)}function J(){const ve=this.resume(),Oe=this.stack[this.stack.length-1];Oe.value=ve.replace(/^(\r?\n|\r)|(\r?\n|\r)$/g,""),this.data.flowCodeInside=void 0}function F(){const ve=this.resume(),Oe=this.stack[this.stack.length-1];Oe.value=ve.replace(/(\r?\n|\r)$/g,"")}function ie(ve){const Oe=this.resume(),Ke=this.stack[this.stack.length-1];Ke.label=Oe,Ke.identifier=fm(this.sliceSerialize(ve)).toLowerCase()}function te(){const ve=this.resume(),Oe=this.stack[this.stack.length-1];Oe.title=ve}function Te(){const ve=this.resume(),Oe=this.stack[this.stack.length-1];Oe.url=ve}function ge(ve){const Oe=this.stack[this.stack.length-1];if(!Oe.depth){const Ke=this.sliceSerialize(ve).length;Oe.depth=Ke}}function le(){this.data.setextHeadingSlurpLineEnding=!0}function Se(ve){const Oe=this.stack[this.stack.length-1];Oe.depth=this.sliceSerialize(ve).codePointAt(0)===61?1:2}function be(){this.data.setextHeadingSlurpLineEnding=void 0}function ke(ve){const Ke=this.stack[this.stack.length-1].children;let Et=Ke[Ke.length-1];(!Et||Et.type!=="text")&&(Et=ja(),Et.position={start:Mf(ve.start),end:void 0},Ke.push(Et)),this.stack.push(Et)}function Ce(ve){const Oe=this.stack.pop();Oe.value+=this.sliceSerialize(ve),Oe.position.end=Mf(ve.end)}function Re(ve){const Oe=this.stack[this.stack.length-1];if(this.data.atHardBreak){const Ke=Oe.children[Oe.children.length-1];Ke.position.end=Mf(ve.end),this.data.atHardBreak=void 0;return}!this.data.setextHeadingSlurpLineEnding&&n.canContainEols.includes(Oe.type)&&(ke.call(this,ve),Ce.call(this,ve))}function De(){this.data.atHardBreak=!0}function Me(){const ve=this.resume(),Oe=this.stack[this.stack.length-1];Oe.value=ve}function ze(){const ve=this.resume(),Oe=this.stack[this.stack.length-1];Oe.value=ve}function Ie(){const ve=this.resume(),Oe=this.stack[this.stack.length-1];Oe.value=ve}function P(){const ve=this.stack[this.stack.length-1];if(this.data.inReference){const Oe=this.data.referenceType||"shortcut";ve.type+="Reference",ve.referenceType=Oe,delete ve.url,delete ve.title}else delete ve.identifier,delete ve.label;this.data.referenceType=void 0}function oe(){const ve=this.stack[this.stack.length-1];if(this.data.inReference){const Oe=this.data.referenceType||"shortcut";ve.type+="Reference",ve.referenceType=Oe,delete ve.url,delete ve.title}else delete ve.identifier,delete ve.label;this.data.referenceType=void 0}function $(ve){const Oe=this.sliceSerialize(ve),Ke=this.stack[this.stack.length-2];Ke.label=ZO(Oe),Ke.identifier=fm(Oe).toLowerCase()}function we(){const ve=this.stack[this.stack.length-1],Oe=this.resume(),Ke=this.stack[this.stack.length-1];if(this.data.inReference=!0,Ke.type==="link"){const Et=ve.children;Ke.children=Et}else Ke.alt=Oe}function w(){const ve=this.resume(),Oe=this.stack[this.stack.length-1];Oe.url=ve}function yt(){const ve=this.resume(),Oe=this.stack[this.stack.length-1];Oe.title=ve}function rt(){this.data.inReference=void 0}function k(){this.data.referenceType="collapsed"}function He(ve){const Oe=this.resume(),Ke=this.stack[this.stack.length-1];Ke.label=Oe,Ke.identifier=fm(this.sliceSerialize(ve)).toLowerCase(),this.data.referenceType="full"}function It(ve){this.data.characterReferenceType=ve.type}function kt(ve){const Oe=this.sliceSerialize(ve),Ke=this.data.characterReferenceType;let Et;Ke?(Et=pE(Oe,Ke==="characterReferenceMarkerNumeric"?10:16),this.data.characterReferenceType=void 0):Et=kT(Oe);const Ut=this.stack[this.stack.length-1];Ut.value+=Et}function Lt(ve){const Oe=this.stack.pop();Oe.position.end=Mf(ve.end)}function Ua(ve){Ce.call(this,ve);const Oe=this.stack[this.stack.length-1];Oe.url=this.sliceSerialize(ve)}function Ca(ve){Ce.call(this,ve);const Oe=this.stack[this.stack.length-1];Oe.url="mailto:"+this.sliceSerialize(ve)}function Tl(){return{type:"blockquote",children:[]}}function Ge(){return{type:"code",lang:null,meta:null,value:""}}function an(){return{type:"inlineCode",value:""}}function Pn(){return{type:"definition",identifier:"",label:null,title:null,url:""}}function Wn(){return{type:"emphasis",children:[]}}function Zi(){return{type:"heading",depth:0,children:[]}}function Ft(){return{type:"break"}}function Hs(){return{type:"html",value:""}}function Ps(){return{type:"image",title:null,url:"",alt:null}}function Ws(){return{type:"link",title:null,url:"",children:[]}}function Kt(ve){return{type:"list",ordered:ve.type==="listOrdered",start:null,spread:ve._spread,children:[]}}function If(ve){return{type:"listItem",spread:ve._spread,checked:null,children:[]}}function Yo(){return{type:"paragraph",children:[]}}function Vs(){return{type:"strong",children:[]}}function ja(){return{type:"text",value:""}}function Nm(){return{type:"thematicBreak"}}}function Mf(t){return{line:t.line,column:t.column,offset:t.offset}}function LE(t,n){let r=-1;for(;++r<n.length;){const s=n[r];Array.isArray(s)?LE(t,s):t_(t,s)}}function t_(t,n){let r;for(r in n)if(DE.call(n,r))switch(r){case"canContainEols":{const s=n[r];s&&t[r].push(...s);break}case"transforms":{const s=n[r];s&&t[r].push(...s);break}case"enter":case"exit":{const s=n[r];s&&Object.assign(t[r],s);break}}}function vy(t,n){throw t?new Error("Cannot close `"+t.type+"` ("+F2({start:t.start,end:t.end})+"): a different token (`"+n.type+"`, "+F2({start:n.start,end:n.end})+") is open"):new Error("Cannot close document, a token (`"+n.type+"`, "+F2({start:n.start,end:n.end})+") is still open")}function a_(t){const n=this;n.parser=r;function r(s){return $O(s,{...n.data("settings"),...t,extensions:n.data("micromarkExtensions")||[],mdastExtensions:n.data("fromMarkdownExtensions")||[]})}}function l_(t,n){const r={type:"element",tagName:"blockquote",properties:{},children:t.wrap(t.all(n),!0)};return t.patch(n,r),t.applyData(n,r)}function n_(t,n){const r={type:"element",tagName:"br",properties:{},children:[]};return t.patch(n,r),[t.applyData(n,r),{type:"text",value:`
355
+ `}]}function i_(t,n){const r=n.value?n.value+`
356
+ `:"",s={};n.lang&&(s.className=["language-"+n.lang]);let b={type:"element",tagName:"code",properties:s,children:[{type:"text",value:r}]};return n.meta&&(b.data={meta:n.meta}),t.patch(n,b),b=t.applyData(n,b),b={type:"element",tagName:"pre",properties:{},children:[b]},t.patch(n,b),b}function o_(t,n){const r={type:"element",tagName:"del",properties:{},children:t.all(n)};return t.patch(n,r),t.applyData(n,r)}function r_(t,n){const r={type:"element",tagName:"em",properties:{},children:t.all(n)};return t.patch(n,r),t.applyData(n,r)}function u_(t,n){const r=typeof t.options.clobberPrefix=="string"?t.options.clobberPrefix:"user-content-",s=String(n.identifier).toUpperCase(),b=Mm(s.toLowerCase()),h=t.footnoteOrder.indexOf(s);let p,T=t.footnoteCounts.get(s);T===void 0?(T=0,t.footnoteOrder.push(s),p=t.footnoteOrder.length):p=h+1,T+=1,t.footnoteCounts.set(s,T);const E={type:"element",tagName:"a",properties:{href:"#"+r+"fn-"+b,id:r+"fnref-"+b+(T>1?"-"+T:""),dataFootnoteRef:!0,ariaDescribedBy:["footnote-label"]},children:[{type:"text",value:String(p)}]};t.patch(n,E);const A={type:"element",tagName:"sup",properties:{},children:[E]};return t.patch(n,A),t.applyData(n,A)}function s_(t,n){const r={type:"element",tagName:"h"+n.depth,properties:{},children:t.all(n)};return t.patch(n,r),t.applyData(n,r)}function c_(t,n){if(t.options.allowDangerousHtml){const r={type:"raw",value:n.value};return t.patch(n,r),t.applyData(n,r)}}function zE(t,n){const r=n.referenceType;let s="]";if(r==="collapsed"?s+="[]":r==="full"&&(s+="["+(n.label||n.identifier)+"]"),n.type==="imageReference")return[{type:"text",value:"!["+n.alt+s}];const b=t.all(n),h=b[0];h&&h.type==="text"?h.value="["+h.value:b.unshift({type:"text",value:"["});const p=b[b.length-1];return p&&p.type==="text"?p.value+=s:b.push({type:"text",value:s}),b}function f_(t,n){const r=String(n.identifier).toUpperCase(),s=t.definitionById.get(r);if(!s)return zE(t,n);const b={src:Mm(s.url||""),alt:n.alt};s.title!==null&&s.title!==void 0&&(b.title=s.title);const h={type:"element",tagName:"img",properties:b,children:[]};return t.patch(n,h),t.applyData(n,h)}function d_(t,n){const r={src:Mm(n.url)};n.alt!==null&&n.alt!==void 0&&(r.alt=n.alt),n.title!==null&&n.title!==void 0&&(r.title=n.title);const s={type:"element",tagName:"img",properties:r,children:[]};return t.patch(n,s),t.applyData(n,s)}function b_(t,n){const r={type:"text",value:n.value.replace(/\r?\n|\r/g," ")};t.patch(n,r);const s={type:"element",tagName:"code",properties:{},children:[r]};return t.patch(n,s),t.applyData(n,s)}function m_(t,n){const r=String(n.identifier).toUpperCase(),s=t.definitionById.get(r);if(!s)return zE(t,n);const b={href:Mm(s.url||"")};s.title!==null&&s.title!==void 0&&(b.title=s.title);const h={type:"element",tagName:"a",properties:b,children:t.all(n)};return t.patch(n,h),t.applyData(n,h)}function h_(t,n){const r={href:Mm(n.url)};n.title!==null&&n.title!==void 0&&(r.title=n.title);const s={type:"element",tagName:"a",properties:r,children:t.all(n)};return t.patch(n,s),t.applyData(n,s)}function p_(t,n,r){const s=t.all(n),b=r?g_(r):xE(n),h={},p=[];if(typeof n.checked=="boolean"){const M=s[0];let L;M&&M.type==="element"&&M.tagName==="p"?L=M:(L={type:"element",tagName:"p",properties:{},children:[]},s.unshift(L)),L.children.length>0&&L.children.unshift({type:"text",value:" "}),L.children.unshift({type:"element",tagName:"input",properties:{type:"checkbox",checked:n.checked,disabled:!0},children:[]}),h.className=["task-list-item"]}let T=-1;for(;++T<s.length;){const M=s[T];(b||T!==0||M.type!=="element"||M.tagName!=="p")&&p.push({type:"text",value:`
357
+ `}),M.type==="element"&&M.tagName==="p"&&!b?p.push(...M.children):p.push(M)}const E=s[s.length-1];E&&(b||E.type!=="element"||E.tagName!=="p")&&p.push({type:"text",value:`
358
+ `});const A={type:"element",tagName:"li",properties:h,children:p};return t.patch(n,A),t.applyData(n,A)}function g_(t){let n=!1;if(t.type==="list"){n=t.spread||!1;const r=t.children;let s=-1;for(;!n&&++s<r.length;)n=xE(r[s])}return n}function xE(t){const n=t.spread;return n??t.children.length>1}function T_(t,n){const r={},s=t.all(n);let b=-1;for(typeof n.start=="number"&&n.start!==1&&(r.start=n.start);++b<s.length;){const p=s[b];if(p.type==="element"&&p.tagName==="li"&&p.properties&&Array.isArray(p.properties.className)&&p.properties.className.includes("task-list-item")){r.className=["contains-task-list"];break}}const h={type:"element",tagName:n.ordered?"ol":"ul",properties:r,children:t.wrap(s,!0)};return t.patch(n,h),t.applyData(n,h)}function v_(t,n){const r={type:"element",tagName:"p",properties:{},children:t.all(n)};return t.patch(n,r),t.applyData(n,r)}function S_(t,n){const r={type:"root",children:t.wrap(t.all(n))};return t.patch(n,r),t.applyData(n,r)}function y_(t,n){const r={type:"element",tagName:"strong",properties:{},children:t.all(n)};return t.patch(n,r),t.applyData(n,r)}function C_(t,n){const r=t.all(n),s=r.shift(),b=[];if(s){const p={type:"element",tagName:"thead",properties:{},children:t.wrap([s],!0)};t.patch(n.children[0],p),b.push(p)}if(r.length>0){const p={type:"element",tagName:"tbody",properties:{},children:t.wrap(r,!0)},T=Lu(n.children[1]),E=y8(n.children[n.children.length-1]);T&&E&&(p.position={start:T,end:E}),b.push(p)}const h={type:"element",tagName:"table",properties:{},children:t.wrap(b,!0)};return t.patch(n,h),t.applyData(n,h)}function E_(t,n,r){const s=r?r.children:void 0,h=(s?s.indexOf(n):1)===0?"th":"td",p=r&&r.type==="table"?r.align:void 0,T=p?p.length:n.children.length;let E=-1;const A=[];for(;++E<T;){const L=n.children[E],R={},z=p?p[E]:void 0;z&&(R.align=z);let U={type:"element",tagName:h,properties:R,children:[]};L&&(U.children=t.all(L),t.patch(L,U),U=t.applyData(L,U)),A.push(U)}const M={type:"element",tagName:"tr",properties:{},children:t.wrap(A,!0)};return t.patch(n,M),t.applyData(n,M)}function A_(t,n){const r={type:"element",tagName:"td",properties:{},children:t.all(n)};return t.patch(n,r),t.applyData(n,r)}const Sy=9,yy=32;function M_(t){const n=String(t),r=/\r?\n|\r/g;let s=r.exec(n),b=0;const h=[];for(;s;)h.push(Cy(n.slice(b,s.index),b>0,!0),s[0]),b=s.index+s[0].length,s=r.exec(n);return h.push(Cy(n.slice(b),b>0,!1)),h.join("")}function Cy(t,n,r){let s=0,b=t.length;if(n){let h=t.codePointAt(s);for(;h===Sy||h===yy;)s++,h=t.codePointAt(s)}if(r){let h=t.codePointAt(b-1);for(;h===Sy||h===yy;)b--,h=t.codePointAt(b-1)}return b>s?t.slice(s,b):""}function D_(t,n){const r={type:"text",value:M_(String(n.value))};return t.patch(n,r),t.applyData(n,r)}function L_(t,n){const r={type:"element",tagName:"hr",properties:{},children:[]};return t.patch(n,r),t.applyData(n,r)}const z_={blockquote:l_,break:n_,code:i_,delete:o_,emphasis:r_,footnoteReference:u_,heading:s_,html:c_,imageReference:f_,image:d_,inlineCode:b_,linkReference:m_,link:h_,listItem:p_,list:T_,paragraph:v_,root:S_,strong:y_,table:C_,tableCell:A_,tableRow:E_,text:D_,thematicBreak:L_,toml:Fg,yaml:Fg,definition:Fg,footnoteDefinition:Fg};function Fg(){}const RE=-1,E8=0,H2=1,a8=2,HT=3,PT=4,WT=5,VT=6,NE=7,BE=8,Ey=typeof self=="object"?self:globalThis,x_=(t,n)=>{const r=(b,h)=>(t.set(h,b),b),s=b=>{if(t.has(b))return t.get(b);const[h,p]=n[b];switch(h){case E8:case RE:return r(p,b);case H2:{const T=r([],b);for(const E of p)T.push(s(E));return T}case a8:{const T=r({},b);for(const[E,A]of p)T[s(E)]=s(A);return T}case HT:return r(new Date(p),b);case PT:{const{source:T,flags:E}=p;return r(new RegExp(T,E),b)}case WT:{const T=r(new Map,b);for(const[E,A]of p)T.set(s(E),s(A));return T}case VT:{const T=r(new Set,b);for(const E of p)T.add(s(E));return T}case NE:{const{name:T,message:E}=p;return r(new Ey[T](E),b)}case BE:return r(BigInt(p),b);case"BigInt":return r(Object(BigInt(p)),b);case"ArrayBuffer":return r(new Uint8Array(p).buffer,p);case"DataView":{const{buffer:T}=new Uint8Array(p);return r(new DataView(T),p)}}return r(new Ey[h](p),b)};return s},Ay=t=>x_(new Map,t)(0),im="",{toString:R_}={},{keys:N_}=Object,_2=t=>{const n=typeof t;if(n!=="object"||!t)return[E8,n];const r=R_.call(t).slice(8,-1);switch(r){case"Array":return[H2,im];case"Object":return[a8,im];case"Date":return[HT,im];case"RegExp":return[PT,im];case"Map":return[WT,im];case"Set":return[VT,im];case"DataView":return[H2,r]}return r.includes("Array")?[H2,r]:r.includes("Error")?[NE,r]:[a8,r]},Ug=([t,n])=>t===E8&&(n==="function"||n==="symbol"),B_=(t,n,r,s)=>{const b=(p,T)=>{const E=s.push(p)-1;return r.set(T,E),E},h=p=>{if(r.has(p))return r.get(p);let[T,E]=_2(p);switch(T){case E8:{let M=p;switch(E){case"bigint":T=BE,M=p.toString();break;case"function":case"symbol":if(t)throw new TypeError("unable to serialize "+E);M=null;break;case"undefined":return b([RE],p)}return b([T,M],p)}case H2:{if(E){let R=p;return E==="DataView"?R=new Uint8Array(p.buffer):E==="ArrayBuffer"&&(R=new Uint8Array(p)),b([E,[...R]],p)}const M=[],L=b([T,M],p);for(const R of p)M.push(h(R));return L}case a8:{if(E)switch(E){case"BigInt":return b([E,p.toString()],p);case"Boolean":case"Number":case"String":return b([E,p.valueOf()],p)}if(n&&"toJSON"in p)return h(p.toJSON());const M=[],L=b([T,M],p);for(const R of N_(p))(t||!Ug(_2(p[R])))&&M.push([h(R),h(p[R])]);return L}case HT:return b([T,p.toISOString()],p);case PT:{const{source:M,flags:L}=p;return b([T,{source:M,flags:L}],p)}case WT:{const M=[],L=b([T,M],p);for(const[R,z]of p)(t||!(Ug(_2(R))||Ug(_2(z))))&&M.push([h(R),h(z)]);return L}case VT:{const M=[],L=b([T,M],p);for(const R of p)(t||!Ug(_2(R)))&&M.push(h(R));return L}}const{message:A}=p;return b([T,{name:E,message:A}],p)};return h},My=(t,{json:n,lossy:r}={})=>{const s=[];return B_(!(n||r),!!n,new Map,s)(t),s},pm=typeof structuredClone=="function"?(t,n)=>n&&("json"in n||"lossy"in n)?Ay(My(t,n)):structuredClone(t):(t,n)=>Ay(My(t,n));function O_(t,n){const r=[{type:"text",value:"↩"}];return n>1&&r.push({type:"element",tagName:"sup",properties:{},children:[{type:"text",value:String(n)}]}),r}function __(t,n){return"Back to reference "+(t+1)+(n>1?"-"+n:"")}function I_(t){const n=typeof t.options.clobberPrefix=="string"?t.options.clobberPrefix:"user-content-",r=t.options.footnoteBackContent||O_,s=t.options.footnoteBackLabel||__,b=t.options.footnoteLabel||"Footnotes",h=t.options.footnoteLabelTagName||"h2",p=t.options.footnoteLabelProperties||{className:["sr-only"]},T=[];let E=-1;for(;++E<t.footnoteOrder.length;){const A=t.footnoteById.get(t.footnoteOrder[E]);if(!A)continue;const M=t.all(A),L=String(A.identifier).toUpperCase(),R=Mm(L.toLowerCase());let z=0;const U=[],G=t.footnoteCounts.get(L);for(;G!==void 0&&++z<=G;){U.length>0&&U.push({type:"text",value:" "});let ie=typeof r=="string"?r:r(E,z);typeof ie=="string"&&(ie={type:"text",value:ie}),U.push({type:"element",tagName:"a",properties:{href:"#"+n+"fnref-"+R+(z>1?"-"+z:""),dataFootnoteBackref:"",ariaLabel:typeof s=="string"?s:s(E,z),className:["data-footnote-backref"]},children:Array.isArray(ie)?ie:[ie]})}const J=M[M.length-1];if(J&&J.type==="element"&&J.tagName==="p"){const ie=J.children[J.children.length-1];ie&&ie.type==="text"?ie.value+=" ":J.children.push({type:"text",value:" "}),J.children.push(...U)}else M.push(...U);const F={type:"element",tagName:"li",properties:{id:n+"fn-"+R},children:t.wrap(M,!0)};t.patch(A,F),T.push(F)}if(T.length!==0)return{type:"element",tagName:"section",properties:{dataFootnotes:!0,className:["footnotes"]},children:[{type:"element",tagName:h,properties:{...pm(p),id:"footnote-label"},children:[{type:"text",value:b}]},{type:"text",value:`
359
+ `},{type:"element",tagName:"ol",properties:{},children:t.wrap(T,!0)},{type:"text",value:`
360
+ `}]}}const OE=(function(t){if(t==null)return F_;if(typeof t=="function")return A8(t);if(typeof t=="object")return Array.isArray(t)?w_(t):G_(t);if(typeof t=="string")return k_(t);throw new Error("Expected function, string, or object as test")});function w_(t){const n=[];let r=-1;for(;++r<t.length;)n[r]=OE(t[r]);return A8(s);function s(...b){let h=-1;for(;++h<n.length;)if(n[h].apply(this,b))return!0;return!1}}function G_(t){const n=t;return A8(r);function r(s){const b=s;let h;for(h in t)if(b[h]!==n[h])return!1;return!0}}function k_(t){return A8(n);function n(r){return r&&r.type===t}}function A8(t){return n;function n(r,s,b){return!!(U_(r)&&t.call(this,r,typeof s=="number"?s:void 0,b||void 0))}}function F_(){return!0}function U_(t){return t!==null&&typeof t=="object"&&"type"in t}const _E=[],H_=!0,Dy=!1,P_="skip";function W_(t,n,r,s){let b;typeof n=="function"&&typeof r!="function"?(s=r,r=n):b=n;const h=OE(b),p=s?-1:1;T(t,void 0,[])();function T(E,A,M){const L=E&&typeof E=="object"?E:{};if(typeof L.type=="string"){const z=typeof L.tagName=="string"?L.tagName:typeof L.name=="string"?L.name:void 0;Object.defineProperty(R,"name",{value:"node ("+(E.type+(z?"<"+z+">":""))+")"})}return R;function R(){let z=_E,U,G,J;if((!n||h(E,A,M[M.length-1]||void 0))&&(z=V_(r(E,M)),z[0]===Dy))return z;if("children"in E&&E.children){const F=E;if(F.children&&z[0]!==P_)for(G=(s?F.children.length:-1)+p,J=M.concat(F);G>-1&&G<F.children.length;){const ie=F.children[G];if(U=T(ie,G,J)(),U[0]===Dy)return U;G=typeof U[1]=="number"?U[1]:G+p}}return z}}}function V_(t){return Array.isArray(t)?t:typeof t=="number"?[H_,t]:t==null?_E:[t]}function qT(t,n,r,s){let b,h,p;typeof n=="function"&&typeof r!="function"?(h=void 0,p=n,b=r):(h=n,p=r,b=s),W_(t,h,T,b);function T(E,A){const M=A[A.length-1],L=M?M.children.indexOf(E):void 0;return p(E,L,M)}}const Y6={}.hasOwnProperty,q_={};function j_(t,n){const r=n||q_,s=new Map,b=new Map,h=new Map,p={...z_,...r.handlers},T={all:A,applyData:Q_,definitionById:s,footnoteById:b,footnoteCounts:h,footnoteOrder:[],handlers:p,one:E,options:r,patch:Y_,wrap:K_};return qT(t,function(M){if(M.type==="definition"||M.type==="footnoteDefinition"){const L=M.type==="definition"?s:b,R=String(M.identifier).toUpperCase();L.has(R)||L.set(R,M)}}),T;function E(M,L){const R=M.type,z=T.handlers[R];if(Y6.call(T.handlers,R)&&z)return z(T,M,L);if(T.options.passThrough&&T.options.passThrough.includes(R)){if("children"in M){const{children:G,...J}=M,F=pm(J);return F.children=T.all(M),F}return pm(M)}return(T.options.unknownHandler||X_)(T,M,L)}function A(M){const L=[];if("children"in M){const R=M.children;let z=-1;for(;++z<R.length;){const U=T.one(R[z],M);if(U){if(z&&R[z-1].type==="break"&&(!Array.isArray(U)&&U.type==="text"&&(U.value=Ly(U.value)),!Array.isArray(U)&&U.type==="element")){const G=U.children[0];G&&G.type==="text"&&(G.value=Ly(G.value))}Array.isArray(U)?L.push(...U):L.push(U)}}}return L}}function Y_(t,n){t.position&&(n.position=RN(t))}function Q_(t,n){let r=n;if(t&&t.data){const s=t.data.hName,b=t.data.hChildren,h=t.data.hProperties;if(typeof s=="string")if(r.type==="element")r.tagName=s;else{const p="children"in r?r.children:[r];r={type:"element",tagName:s,properties:{},children:p}}r.type==="element"&&h&&Object.assign(r.properties,pm(h)),"children"in r&&r.children&&b!==null&&b!==void 0&&(r.children=b)}return r}function X_(t,n){const r=n.data||{},s="value"in n&&!(Y6.call(r,"hProperties")||Y6.call(r,"hChildren"))?{type:"text",value:n.value}:{type:"element",tagName:"div",properties:{},children:t.all(n)};return t.patch(n,s),t.applyData(n,s)}function K_(t,n){const r=[];let s=-1;for(n&&r.push({type:"text",value:`
361
+ `});++s<t.length;)s&&r.push({type:"text",value:`
362
+ `}),r.push(t[s]);return n&&t.length>0&&r.push({type:"text",value:`
363
+ `}),r}function Ly(t){let n=0,r=t.charCodeAt(n);for(;r===9||r===32;)n++,r=t.charCodeAt(n);return t.slice(n)}function zy(t,n){const r=j_(t,n),s=r.one(t,void 0),b=I_(r),h=Array.isArray(s)?{type:"root",children:s}:s||{type:"root",children:[]};return b&&h.children.push({type:"text",value:`
364
+ `},b),h}function Z_(t,n){return t&&"run"in t?async function(r,s){const b=zy(r,{file:s,...n});await t.run(b,s)}:function(r,s){return zy(r,{file:s,...t||n})}}function xy(t){if(t)throw t}var S6,Ry;function J_(){if(Ry)return S6;Ry=1;var t=Object.prototype.hasOwnProperty,n=Object.prototype.toString,r=Object.defineProperty,s=Object.getOwnPropertyDescriptor,b=function(A){return typeof Array.isArray=="function"?Array.isArray(A):n.call(A)==="[object Array]"},h=function(A){if(!A||n.call(A)!=="[object Object]")return!1;var M=t.call(A,"constructor"),L=A.constructor&&A.constructor.prototype&&t.call(A.constructor.prototype,"isPrototypeOf");if(A.constructor&&!M&&!L)return!1;var R;for(R in A);return typeof R>"u"||t.call(A,R)},p=function(A,M){r&&M.name==="__proto__"?r(A,M.name,{enumerable:!0,configurable:!0,value:M.newValue,writable:!0}):A[M.name]=M.newValue},T=function(A,M){if(M==="__proto__")if(t.call(A,M)){if(s)return s(A,M).value}else return;return A[M]};return S6=function E(){var A,M,L,R,z,U,G=arguments[0],J=1,F=arguments.length,ie=!1;for(typeof G=="boolean"&&(ie=G,G=arguments[1]||{},J=2),(G==null||typeof G!="object"&&typeof G!="function")&&(G={});J<F;++J)if(A=arguments[J],A!=null)for(M in A)L=T(G,M),R=T(A,M),G!==R&&(ie&&R&&(h(R)||(z=b(R)))?(z?(z=!1,U=L&&b(L)?L:[]):U=L&&h(L)?L:{},p(G,{name:M,newValue:E(ie,U,R)})):typeof R<"u"&&p(G,{name:M,newValue:R}));return G},S6}var $_=J_();const y6=f7($_);function Q6(t){if(typeof t!="object"||t===null)return!1;const n=Object.getPrototypeOf(t);return(n===null||n===Object.prototype||Object.getPrototypeOf(n)===null)&&!(Symbol.toStringTag in t)&&!(Symbol.iterator in t)}function eI(){const t=[],n={run:r,use:s};return n;function r(...b){let h=-1;const p=b.pop();if(typeof p!="function")throw new TypeError("Expected function as last argument, not "+p);T(null,...b);function T(E,...A){const M=t[++h];let L=-1;if(E){p(E);return}for(;++L<b.length;)(A[L]===null||A[L]===void 0)&&(A[L]=b[L]);b=A,M?tI(M,T)(...A):p(null,...A)}}function s(b){if(typeof b!="function")throw new TypeError("Expected `middelware` to be a function, not "+b);return t.push(b),n}}function tI(t,n){let r;return s;function s(...p){const T=t.length>p.length;let E;T&&p.push(b);try{E=t.apply(this,p)}catch(A){const M=A;if(T&&r)throw M;return b(M)}T||(E&&E.then&&typeof E.then=="function"?E.then(h,b):E instanceof Error?b(E):h(E))}function b(p,...T){r||(r=!0,n(p,...T))}function h(p){b(null,p)}}const pu={basename:aI,dirname:lI,extname:nI,join:iI,sep:"/"};function aI(t,n){if(n!==void 0&&typeof n!="string")throw new TypeError('"ext" argument must be a string');n4(t);let r=0,s=-1,b=t.length,h;if(n===void 0||n.length===0||n.length>t.length){for(;b--;)if(t.codePointAt(b)===47){if(h){r=b+1;break}}else s<0&&(h=!0,s=b+1);return s<0?"":t.slice(r,s)}if(n===t)return"";let p=-1,T=n.length-1;for(;b--;)if(t.codePointAt(b)===47){if(h){r=b+1;break}}else p<0&&(h=!0,p=b+1),T>-1&&(t.codePointAt(b)===n.codePointAt(T--)?T<0&&(s=b):(T=-1,s=p));return r===s?s=p:s<0&&(s=t.length),t.slice(r,s)}function lI(t){if(n4(t),t.length===0)return".";let n=-1,r=t.length,s;for(;--r;)if(t.codePointAt(r)===47){if(s){n=r;break}}else s||(s=!0);return n<0?t.codePointAt(0)===47?"/":".":n===1&&t.codePointAt(0)===47?"//":t.slice(0,n)}function nI(t){n4(t);let n=t.length,r=-1,s=0,b=-1,h=0,p;for(;n--;){const T=t.codePointAt(n);if(T===47){if(p){s=n+1;break}continue}r<0&&(p=!0,r=n+1),T===46?b<0?b=n:h!==1&&(h=1):b>-1&&(h=-1)}return b<0||r<0||h===0||h===1&&b===r-1&&b===s+1?"":t.slice(b,r)}function iI(...t){let n=-1,r;for(;++n<t.length;)n4(t[n]),t[n]&&(r=r===void 0?t[n]:r+"/"+t[n]);return r===void 0?".":oI(r)}function oI(t){n4(t);const n=t.codePointAt(0)===47;let r=rI(t,!n);return r.length===0&&!n&&(r="."),r.length>0&&t.codePointAt(t.length-1)===47&&(r+="/"),n?"/"+r:r}function rI(t,n){let r="",s=0,b=-1,h=0,p=-1,T,E;for(;++p<=t.length;){if(p<t.length)T=t.codePointAt(p);else{if(T===47)break;T=47}if(T===47){if(!(b===p-1||h===1))if(b!==p-1&&h===2){if(r.length<2||s!==2||r.codePointAt(r.length-1)!==46||r.codePointAt(r.length-2)!==46){if(r.length>2){if(E=r.lastIndexOf("/"),E!==r.length-1){E<0?(r="",s=0):(r=r.slice(0,E),s=r.length-1-r.lastIndexOf("/")),b=p,h=0;continue}}else if(r.length>0){r="",s=0,b=p,h=0;continue}}n&&(r=r.length>0?r+"/..":"..",s=2)}else r.length>0?r+="/"+t.slice(b+1,p):r=t.slice(b+1,p),s=p-b-1;b=p,h=0}else T===46&&h>-1?h++:h=-1}return r}function n4(t){if(typeof t!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(t))}const uI={cwd:sI};function sI(){return"/"}function X6(t){return!!(t!==null&&typeof t=="object"&&"href"in t&&t.href&&"protocol"in t&&t.protocol&&t.auth===void 0)}function cI(t){if(typeof t=="string")t=new URL(t);else if(!X6(t)){const n=new TypeError('The "path" argument must be of type string or an instance of URL. Received `'+t+"`");throw n.code="ERR_INVALID_ARG_TYPE",n}if(t.protocol!=="file:"){const n=new TypeError("The URL must be of scheme file");throw n.code="ERR_INVALID_URL_SCHEME",n}return fI(t)}function fI(t){if(t.hostname!==""){const s=new TypeError('File URL host must be "localhost" or empty on darwin');throw s.code="ERR_INVALID_FILE_URL_HOST",s}const n=t.pathname;let r=-1;for(;++r<n.length;)if(n.codePointAt(r)===37&&n.codePointAt(r+1)===50){const s=n.codePointAt(r+2);if(s===70||s===102){const b=new TypeError("File URL path must not include encoded / characters");throw b.code="ERR_INVALID_FILE_URL_PATH",b}}return decodeURIComponent(n)}const C6=["history","path","basename","stem","extname","dirname"];class IE{constructor(n){let r;n?X6(n)?r={path:n}:typeof n=="string"||dI(n)?r={value:n}:r=n:r={},this.cwd="cwd"in r?"":uI.cwd(),this.data={},this.history=[],this.messages=[],this.value,this.map,this.result,this.stored;let s=-1;for(;++s<C6.length;){const h=C6[s];h in r&&r[h]!==void 0&&r[h]!==null&&(this[h]=h==="history"?[...r[h]]:r[h])}let b;for(b in r)C6.includes(b)||(this[b]=r[b])}get basename(){return typeof this.path=="string"?pu.basename(this.path):void 0}set basename(n){A6(n,"basename"),E6(n,"basename"),this.path=pu.join(this.dirname||"",n)}get dirname(){return typeof this.path=="string"?pu.dirname(this.path):void 0}set dirname(n){Ny(this.basename,"dirname"),this.path=pu.join(n||"",this.basename)}get extname(){return typeof this.path=="string"?pu.extname(this.path):void 0}set extname(n){if(E6(n,"extname"),Ny(this.dirname,"extname"),n){if(n.codePointAt(0)!==46)throw new Error("`extname` must start with `.`");if(n.includes(".",1))throw new Error("`extname` cannot contain multiple dots")}this.path=pu.join(this.dirname,this.stem+(n||""))}get path(){return this.history[this.history.length-1]}set path(n){X6(n)&&(n=cI(n)),A6(n,"path"),this.path!==n&&this.history.push(n)}get stem(){return typeof this.path=="string"?pu.basename(this.path,this.extname):void 0}set stem(n){A6(n,"stem"),E6(n,"stem"),this.path=pu.join(this.dirname||"",n+(this.extname||""))}fail(n,r,s){const b=this.message(n,r,s);throw b.fatal=!0,b}info(n,r,s){const b=this.message(n,r,s);return b.fatal=void 0,b}message(n,r,s){const b=new hn(n,r,s);return this.path&&(b.name=this.path+":"+b.name,b.file=this.path),b.fatal=!1,this.messages.push(b),b}toString(n){return this.value===void 0?"":typeof this.value=="string"?this.value:new TextDecoder(n||void 0).decode(this.value)}}function E6(t,n){if(t&&t.includes(pu.sep))throw new Error("`"+n+"` cannot be a path: did not expect `"+pu.sep+"`")}function A6(t,n){if(!t)throw new Error("`"+n+"` cannot be empty")}function Ny(t,n){if(!t)throw new Error("Setting `"+n+"` requires `path` to be set too")}function dI(t){return!!(t&&typeof t=="object"&&"byteLength"in t&&"byteOffset"in t)}const bI=(function(t){const s=this.constructor.prototype,b=s[t],h=function(){return b.apply(h,arguments)};return Object.setPrototypeOf(h,s),h}),mI={}.hasOwnProperty;class jT extends bI{constructor(){super("copy"),this.Compiler=void 0,this.Parser=void 0,this.attachers=[],this.compiler=void 0,this.freezeIndex=-1,this.frozen=void 0,this.namespace={},this.parser=void 0,this.transformers=eI()}copy(){const n=new jT;let r=-1;for(;++r<this.attachers.length;){const s=this.attachers[r];n.use(...s)}return n.data(y6(!0,{},this.namespace)),n}data(n,r){return typeof n=="string"?arguments.length===2?(L6("data",this.frozen),this.namespace[n]=r,this):mI.call(this.namespace,n)&&this.namespace[n]||void 0:n?(L6("data",this.frozen),this.namespace=n,this):this.namespace}freeze(){if(this.frozen)return this;const n=this;for(;++this.freezeIndex<this.attachers.length;){const[r,...s]=this.attachers[this.freezeIndex];if(s[0]===!1)continue;s[0]===!0&&(s[0]=void 0);const b=r.call(n,...s);typeof b=="function"&&this.transformers.use(b)}return this.frozen=!0,this.freezeIndex=Number.POSITIVE_INFINITY,this}parse(n){this.freeze();const r=Hg(n),s=this.parser||this.Parser;return M6("parse",s),s(String(r),r)}process(n,r){const s=this;return this.freeze(),M6("process",this.parser||this.Parser),D6("process",this.compiler||this.Compiler),r?b(void 0,r):new Promise(b);function b(h,p){const T=Hg(n),E=s.parse(T);s.run(E,T,function(M,L,R){if(M||!L||!R)return A(M);const z=L,U=s.stringify(z,R);gI(U)?R.value=U:R.result=U,A(M,R)});function A(M,L){M||!L?p(M):h?h(L):r(void 0,L)}}}processSync(n){let r=!1,s;return this.freeze(),M6("processSync",this.parser||this.Parser),D6("processSync",this.compiler||this.Compiler),this.process(n,b),Oy("processSync","process",r),s;function b(h,p){r=!0,xy(h),s=p}}run(n,r,s){By(n),this.freeze();const b=this.transformers;return!s&&typeof r=="function"&&(s=r,r=void 0),s?h(void 0,s):new Promise(h);function h(p,T){const E=Hg(r);b.run(n,E,A);function A(M,L,R){const z=L||n;M?T(M):p?p(z):s(void 0,z,R)}}}runSync(n,r){let s=!1,b;return this.run(n,r,h),Oy("runSync","run",s),b;function h(p,T){xy(p),b=T,s=!0}}stringify(n,r){this.freeze();const s=Hg(r),b=this.compiler||this.Compiler;return D6("stringify",b),By(n),b(n,s)}use(n,...r){const s=this.attachers,b=this.namespace;if(L6("use",this.frozen),n!=null)if(typeof n=="function")E(n,r);else if(typeof n=="object")Array.isArray(n)?T(n):p(n);else throw new TypeError("Expected usable value, not `"+n+"`");return this;function h(A){if(typeof A=="function")E(A,[]);else if(typeof A=="object")if(Array.isArray(A)){const[M,...L]=A;E(M,L)}else p(A);else throw new TypeError("Expected usable value, not `"+A+"`")}function p(A){if(!("plugins"in A)&&!("settings"in A))throw new Error("Expected usable value but received an empty preset, which is probably a mistake: presets typically come with `plugins` and sometimes with `settings`, but this has neither");T(A.plugins),A.settings&&(b.settings=y6(!0,b.settings,A.settings))}function T(A){let M=-1;if(A!=null)if(Array.isArray(A))for(;++M<A.length;){const L=A[M];h(L)}else throw new TypeError("Expected a list of plugins, not `"+A+"`")}function E(A,M){let L=-1,R=-1;for(;++L<s.length;)if(s[L][0]===A){R=L;break}if(R===-1)s.push([A,...M]);else if(M.length>0){let[z,...U]=M;const G=s[R][1];Q6(G)&&Q6(z)&&(z=y6(!0,G,z)),s[R]=[A,z,...U]}}}}const hI=new jT().freeze();function M6(t,n){if(typeof n!="function")throw new TypeError("Cannot `"+t+"` without `parser`")}function D6(t,n){if(typeof n!="function")throw new TypeError("Cannot `"+t+"` without `compiler`")}function L6(t,n){if(n)throw new Error("Cannot call `"+t+"` on a frozen processor.\nCreate a new processor first, by calling it: use `processor()` instead of `processor`.")}function By(t){if(!Q6(t)||typeof t.type!="string")throw new TypeError("Expected node, got `"+t+"`")}function Oy(t,n,r){if(!r)throw new Error("`"+t+"` finished async. Use `"+n+"` instead")}function Hg(t){return pI(t)?t:new IE(t)}function pI(t){return!!(t&&typeof t=="object"&&"message"in t&&"messages"in t)}function gI(t){return typeof t=="string"||TI(t)}function TI(t){return!!(t&&typeof t=="object"&&"byteLength"in t&&"byteOffset"in t)}const vI="https://github.com/remarkjs/react-markdown/blob/main/changelog.md",_y=[],Iy={allowDangerousHtml:!0},SI=/^(https?|ircs?|mailto|xmpp)$/i,yI=[{from:"astPlugins",id:"remove-buggy-html-in-markdown-parser"},{from:"allowDangerousHtml",id:"remove-buggy-html-in-markdown-parser"},{from:"allowNode",id:"replace-allownode-allowedtypes-and-disallowedtypes",to:"allowElement"},{from:"allowedTypes",id:"replace-allownode-allowedtypes-and-disallowedtypes",to:"allowedElements"},{from:"className",id:"remove-classname"},{from:"disallowedTypes",id:"replace-allownode-allowedtypes-and-disallowedtypes",to:"disallowedElements"},{from:"escapeHtml",id:"remove-buggy-html-in-markdown-parser"},{from:"includeElementIndex",id:"#remove-includeelementindex"},{from:"includeNodeIndex",id:"change-includenodeindex-to-includeelementindex"},{from:"linkTarget",id:"remove-linktarget"},{from:"plugins",id:"change-plugins-to-remarkplugins",to:"remarkPlugins"},{from:"rawSourcePos",id:"#remove-rawsourcepos"},{from:"renderers",id:"change-renderers-to-components",to:"components"},{from:"source",id:"change-source-to-children",to:"children"},{from:"sourcePos",id:"#remove-sourcepos"},{from:"transformImageUri",id:"#add-urltransform",to:"urlTransform"},{from:"transformLinkUri",id:"#add-urltransform",to:"urlTransform"}];function CI(t){const n=EI(t),r=AI(t);return MI(n.runSync(n.parse(r),r),t)}function EI(t){const n=t.rehypePlugins||_y,r=t.remarkPlugins||_y,s=t.remarkRehypeOptions?{...t.remarkRehypeOptions,...Iy}:Iy;return hI().use(a_).use(r).use(Z_,s).use(n)}function AI(t){const n=t.children||"",r=new IE;return typeof n=="string"&&(r.value=n),r}function MI(t,n){const r=n.allowedElements,s=n.allowElement,b=n.components,h=n.disallowedElements,p=n.skipHtml,T=n.unwrapDisallowed,E=n.urlTransform||DI;for(const M of yI)Object.hasOwn(n,M.from)&&(""+M.from+(M.to?"use `"+M.to+"` instead":"remove it")+vI+M.id,void 0);return qT(t,A),IN(t,{Fragment:B.Fragment,components:b,ignoreInvalidStyle:!0,jsx:B.jsx,jsxs:B.jsxs,passKeys:!0,passNode:!0});function A(M,L,R){if(M.type==="raw"&&R&&typeof L=="number")return p?R.children.splice(L,1):R.children[L]={type:"text",value:M.value},L;if(M.type==="element"){let z;for(z in g6)if(Object.hasOwn(g6,z)&&Object.hasOwn(M.properties,z)){const U=M.properties[z],G=g6[z];(G===null||G.includes(M.tagName))&&(M.properties[z]=E(String(U||""),z,M))}}if(M.type==="element"){let z=r?!r.includes(M.tagName):h?h.includes(M.tagName):!1;if(!z&&s&&typeof L=="number"&&(z=!s(M,L,R)),z&&R&&typeof L=="number")return T&&M.children?R.children.splice(L,1,...M.children):R.children.splice(L,1),L}}}function DI(t){const n=t.indexOf(":"),r=t.indexOf("?"),s=t.indexOf("#"),b=t.indexOf("/");return n===-1||b!==-1&&n>b||r!==-1&&n>r||s!==-1&&n>s||SI.test(t.slice(0,n))?t:""}const wy=/[#.]/g;function LI(t,n){const r=t||"",s={};let b=0,h,p;for(;b<r.length;){wy.lastIndex=b;const T=wy.exec(r),E=r.slice(b,T?T.index:r.length);E&&(h?h==="#"?s.id=E:Array.isArray(s.className)?s.className.push(E):s.className=[E]:p=E,b+=E.length),T&&(h=T[0],b++)}return{type:"element",tagName:p||n||"div",properties:s,children:[]}}function wE(t,n,r){const s=r?NI(r):void 0;function b(h,p,...T){let E;if(h==null){E={type:"root",children:[]};const A=p;T.unshift(A)}else{E=LI(h,n);const A=E.tagName.toLowerCase(),M=s?s.get(A):void 0;if(E.tagName=M||A,zI(p))T.unshift(p);else for(const[L,R]of Object.entries(p))xI(t,E.properties,L,R)}for(const A of T)K6(E.children,A);return E.type==="element"&&E.tagName==="template"&&(E.content={type:"root",children:E.children},E.children=[]),E}return b}function zI(t){if(t===null||typeof t!="object"||Array.isArray(t))return!0;if(typeof t.type!="string")return!1;const n=t,r=Object.keys(t);for(const s of r){const b=n[s];if(b&&typeof b=="object"){if(!Array.isArray(b))return!0;const h=b;for(const p of h)if(typeof p!="number"&&typeof p!="string")return!0}}return!!("children"in t&&Array.isArray(t.children))}function xI(t,n,r,s){const b=_T(t,r);let h;if(s!=null){if(typeof s=="number"){if(Number.isNaN(s))return;h=s}else typeof s=="boolean"?h=s:typeof s=="string"?b.spaceSeparated?h=ty(s):b.commaSeparated?h=KS(s):b.commaOrSpaceSeparated?h=ty(KS(s).join(" ")):h=Gy(b,b.property,s):Array.isArray(s)?h=[...s]:h=b.property==="style"?RI(s):String(s);if(Array.isArray(h)){const p=[];for(const T of h)p.push(Gy(b,b.property,T));h=p}b.property==="className"&&Array.isArray(n.className)&&(h=n.className.concat(h)),n[b.property]=h}}function K6(t,n){if(n!=null)if(typeof n=="number"||typeof n=="string")t.push({type:"text",value:String(n)});else if(Array.isArray(n))for(const r of n)K6(t,r);else if(typeof n=="object"&&"type"in n)n.type==="root"?K6(t,n.children):t.push(n);else throw new Error("Expected node, nodes, or string, got `"+n+"`")}function Gy(t,n,r){if(typeof r=="string"){if(t.number&&r&&!Number.isNaN(Number(r)))return Number(r);if((t.boolean||t.overloadedBoolean)&&(r===""||K2(r)===K2(n)))return!0}return r}function RI(t){const n=[];for(const[r,s]of Object.entries(t))n.push([r,s].join(": "));return n.join("; ")}function NI(t){const n=new Map;for(const r of t)n.set(r.toLowerCase(),r);return n}const BI=["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","solidColor","textArea","textPath"],OI=wE(S8,"div"),_I=wE(Am,"g",BI);function II(t){const n=String(t),r=[];return{toOffset:b,toPoint:s};function s(h){if(typeof h=="number"&&h>-1&&h<=n.length){let p=0;for(;;){let T=r[p];if(T===void 0){const E=ky(n,r[p-1]);T=E===-1?n.length+1:E+1,r[p]=T}if(T>h)return{line:p+1,column:h-(p>0?r[p-1]:0)+1,offset:h};p++}}}function b(h){if(h&&typeof h.line=="number"&&typeof h.column=="number"&&!Number.isNaN(h.line)&&!Number.isNaN(h.column)){for(;r.length<h.line;){const T=r[r.length-1],E=ky(n,T),A=E===-1?n.length+1:E+1;if(T===A)break;r.push(A)}const p=(h.line>1?r[h.line-2]:0)+h.column-1;if(p<r[h.line-1])return p}}}function ky(t,n){const r=t.indexOf("\r",n),s=t.indexOf(`
365
+ `,n);return s===-1?r:r===-1||r+1===s?s:r<s?r:s}const E0={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"},GE={}.hasOwnProperty,wI=Object.prototype;function GI(t,n){const r=n||{};return YT({file:r.file||void 0,location:!1,schema:r.space==="svg"?Am:S8,verbose:r.verbose||!1},t)}function YT(t,n){let r;switch(n.nodeName){case"#comment":{const s=n;return r={type:"comment",value:s.data},Xg(t,s,r),r}case"#document":case"#document-fragment":{const s=n,b="mode"in s?s.mode==="quirks"||s.mode==="limited-quirks":!1;if(r={type:"root",children:kE(t,n.childNodes),data:{quirksMode:b}},t.file&&t.location){const h=String(t.file),p=II(h),T=p.toPoint(0),E=p.toPoint(h.length);r.position={start:T,end:E}}return r}case"#documentType":{const s=n;return r={type:"doctype"},Xg(t,s,r),r}case"#text":{const s=n;return r={type:"text",value:s.value},Xg(t,s,r),r}default:return r=kI(t,n),r}}function kE(t,n){let r=-1;const s=[];for(;++r<n.length;){const b=YT(t,n[r]);s.push(b)}return s}function kI(t,n){const r=t.schema;t.schema=n.namespaceURI===E0.svg?Am:S8;let s=-1;const b={};for(;++s<n.attrs.length;){const T=n.attrs[s],E=(T.prefix?T.prefix+":":"")+T.name;GE.call(wI,E)||(b[E]=T.value)}const p=(t.schema.space==="svg"?_I:OI)(n.tagName,b,kE(t,n.childNodes));if(Xg(t,n,p),p.tagName==="template"){const T=n,E=T.sourceCodeLocation,A=E&&E.startTag&&rm(E.startTag),M=E&&E.endTag&&rm(E.endTag),L=YT(t,T.content);A&&M&&t.file&&(L.position={start:A.end,end:M.start}),p.content=L}return t.schema=r,p}function Xg(t,n,r){if("sourceCodeLocation"in n&&n.sourceCodeLocation&&t.file){const s=FI(t,r,n.sourceCodeLocation);s&&(t.location=!0,r.position=s)}}function FI(t,n,r){const s=rm(r);if(n.type==="element"){const b=n.children[n.children.length-1];if(s&&!r.endTag&&b&&b.position&&b.position.end&&(s.end=Object.assign({},b.position.end)),t.verbose){const h={};let p;if(r.attrs)for(p in r.attrs)GE.call(r.attrs,p)&&(h[_T(t.schema,p).property]=rm(r.attrs[p]));r.startTag;const T=rm(r.startTag),E=r.endTag?rm(r.endTag):void 0,A={opening:T};E&&(A.closing=E),A.properties=h,n.data={position:A}}}return s}function rm(t){const n=Fy({line:t.startLine,column:t.startCol,offset:t.startOffset}),r=Fy({line:t.endLine,column:t.endCol,offset:t.endOffset});return n||r?{start:n,end:r}:void 0}function Fy(t){return t.line&&t.column?t:void 0}class i4{constructor(n,r,s){this.property=n,this.normal=r,s&&(this.space=s)}}i4.prototype.property={};i4.prototype.normal={};i4.prototype.space=null;function FE(t,n){const r={},s={};let b=-1;for(;++b<t.length;)Object.assign(r,t[b].property),Object.assign(s,t[b].normal);return new i4(r,s,n)}function Z6(t){return t.toLowerCase()}class jo{constructor(n,r){this.property=n,this.attribute=r}}jo.prototype.space=null;jo.prototype.boolean=!1;jo.prototype.booleanish=!1;jo.prototype.overloadedBoolean=!1;jo.prototype.number=!1;jo.prototype.commaSeparated=!1;jo.prototype.spaceSeparated=!1;jo.prototype.commaOrSpaceSeparated=!1;jo.prototype.mustUseProperty=!1;jo.prototype.defined=!1;let UI=0;const gt=B0(),gl=B0(),UE=B0(),Be=B0(),Sa=B0(),dm=B0(),qi=B0();function B0(){return 2**++UI}const J6=Object.freeze(Object.defineProperty({__proto__:null,boolean:gt,booleanish:gl,commaOrSpaceSeparated:qi,commaSeparated:dm,number:Be,overloadedBoolean:UE,spaceSeparated:Sa},Symbol.toStringTag,{value:"Module"})),z6=Object.keys(J6);class QT extends jo{constructor(n,r,s,b){let h=-1;if(super(n,r),Uy(this,"space",b),typeof s=="number")for(;++h<z6.length;){const p=z6[h];Uy(this,z6[h],(s&J6[p])===J6[p])}}}QT.prototype.defined=!0;function Uy(t,n,r){r&&(t[n]=r)}const HI={}.hasOwnProperty;function Dm(t){const n={},r={};let s;for(s in t.properties)if(HI.call(t.properties,s)){const b=t.properties[s],h=new QT(s,t.transform(t.attributes||{},s),b,t.space);t.mustUseProperty&&t.mustUseProperty.includes(s)&&(h.mustUseProperty=!0),n[s]=h,r[Z6(s)]=s,r[Z6(h.attribute)]=s}return new i4(n,r,t.space)}const HE=Dm({space:"xlink",transform(t,n){return"xlink:"+n.slice(5).toLowerCase()},properties:{xLinkActuate:null,xLinkArcRole:null,xLinkHref:null,xLinkRole:null,xLinkShow:null,xLinkTitle:null,xLinkType:null}}),PE=Dm({space:"xml",transform(t,n){return"xml:"+n.slice(3).toLowerCase()},properties:{xmlLang:null,xmlBase:null,xmlSpace:null}});function WE(t,n){return n in t?t[n]:n}function VE(t,n){return WE(t,n.toLowerCase())}const qE=Dm({space:"xmlns",attributes:{xmlnsxlink:"xmlns:xlink"},transform:VE,properties:{xmlns:null,xmlnsXLink:null}}),jE=Dm({transform(t,n){return n==="role"?n:"aria-"+n.slice(4).toLowerCase()},properties:{ariaActiveDescendant:null,ariaAtomic:gl,ariaAutoComplete:null,ariaBusy:gl,ariaChecked:gl,ariaColCount:Be,ariaColIndex:Be,ariaColSpan:Be,ariaControls:Sa,ariaCurrent:null,ariaDescribedBy:Sa,ariaDetails:null,ariaDisabled:gl,ariaDropEffect:Sa,ariaErrorMessage:null,ariaExpanded:gl,ariaFlowTo:Sa,ariaGrabbed:gl,ariaHasPopup:null,ariaHidden:gl,ariaInvalid:null,ariaKeyShortcuts:null,ariaLabel:null,ariaLabelledBy:Sa,ariaLevel:Be,ariaLive:null,ariaModal:gl,ariaMultiLine:gl,ariaMultiSelectable:gl,ariaOrientation:null,ariaOwns:Sa,ariaPlaceholder:null,ariaPosInSet:Be,ariaPressed:gl,ariaReadOnly:gl,ariaRelevant:null,ariaRequired:gl,ariaRoleDescription:Sa,ariaRowCount:Be,ariaRowIndex:Be,ariaRowSpan:Be,ariaSelected:gl,ariaSetSize:Be,ariaSort:null,ariaValueMax:Be,ariaValueMin:Be,ariaValueNow:Be,ariaValueText:null,role:null}}),PI=Dm({space:"html",attributes:{acceptcharset:"accept-charset",classname:"class",htmlfor:"for",httpequiv:"http-equiv"},transform:VE,mustUseProperty:["checked","multiple","muted","selected"],properties:{abbr:null,accept:dm,acceptCharset:Sa,accessKey:Sa,action:null,allow:null,allowFullScreen:gt,allowPaymentRequest:gt,allowUserMedia:gt,alt:null,as:null,async:gt,autoCapitalize:null,autoComplete:Sa,autoFocus:gt,autoPlay:gt,blocking:Sa,capture:null,charSet:null,checked:gt,cite:null,className:Sa,cols:Be,colSpan:null,content:null,contentEditable:gl,controls:gt,controlsList:Sa,coords:Be|dm,crossOrigin:null,data:null,dateTime:null,decoding:null,default:gt,defer:gt,dir:null,dirName:null,disabled:gt,download:UE,draggable:gl,encType:null,enterKeyHint:null,fetchPriority:null,form:null,formAction:null,formEncType:null,formMethod:null,formNoValidate:gt,formTarget:null,headers:Sa,height:Be,hidden:gt,high:Be,href:null,hrefLang:null,htmlFor:Sa,httpEquiv:Sa,id:null,imageSizes:null,imageSrcSet:null,inert:gt,inputMode:null,integrity:null,is:null,isMap:gt,itemId:null,itemProp:Sa,itemRef:Sa,itemScope:gt,itemType:Sa,kind:null,label:null,lang:null,language:null,list:null,loading:null,loop:gt,low:Be,manifest:null,max:null,maxLength:Be,media:null,method:null,min:null,minLength:Be,multiple:gt,muted:gt,name:null,nonce:null,noModule:gt,noValidate:gt,onAbort:null,onAfterPrint:null,onAuxClick:null,onBeforeMatch:null,onBeforePrint:null,onBeforeToggle:null,onBeforeUnload:null,onBlur:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onContextLost:null,onContextMenu:null,onContextRestored:null,onCopy:null,onCueChange:null,onCut:null,onDblClick:null,onDrag:null,onDragEnd:null,onDragEnter:null,onDragExit:null,onDragLeave:null,onDragOver:null,onDragStart:null,onDrop:null,onDurationChange:null,onEmptied:null,onEnded:null,onError:null,onFocus:null,onFormData:null,onHashChange:null,onInput:null,onInvalid:null,onKeyDown:null,onKeyPress:null,onKeyUp:null,onLanguageChange:null,onLoad:null,onLoadedData:null,onLoadedMetadata:null,onLoadEnd:null,onLoadStart:null,onMessage:null,onMessageError:null,onMouseDown:null,onMouseEnter:null,onMouseLeave:null,onMouseMove:null,onMouseOut:null,onMouseOver:null,onMouseUp:null,onOffline:null,onOnline:null,onPageHide:null,onPageShow:null,onPaste:null,onPause:null,onPlay:null,onPlaying:null,onPopState:null,onProgress:null,onRateChange:null,onRejectionHandled:null,onReset:null,onResize:null,onScroll:null,onScrollEnd:null,onSecurityPolicyViolation:null,onSeeked:null,onSeeking:null,onSelect:null,onSlotChange:null,onStalled:null,onStorage:null,onSubmit:null,onSuspend:null,onTimeUpdate:null,onToggle:null,onUnhandledRejection:null,onUnload:null,onVolumeChange:null,onWaiting:null,onWheel:null,open:gt,optimum:Be,pattern:null,ping:Sa,placeholder:null,playsInline:gt,popover:null,popoverTarget:null,popoverTargetAction:null,poster:null,preload:null,readOnly:gt,referrerPolicy:null,rel:Sa,required:gt,reversed:gt,rows:Be,rowSpan:Be,sandbox:Sa,scope:null,scoped:gt,seamless:gt,selected:gt,shadowRootClonable:gt,shadowRootDelegatesFocus:gt,shadowRootMode:null,shape:null,size:Be,sizes:null,slot:null,span:Be,spellCheck:gl,src:null,srcDoc:null,srcLang:null,srcSet:null,start:Be,step:null,style:null,tabIndex:Be,target:null,title:null,translate:null,type:null,typeMustMatch:gt,useMap:null,value:gl,width:Be,wrap:null,writingSuggestions:null,align:null,aLink:null,archive:Sa,axis:null,background:null,bgColor:null,border:Be,borderColor:null,bottomMargin:Be,cellPadding:null,cellSpacing:null,char:null,charOff:null,classId:null,clear:null,code:null,codeBase:null,codeType:null,color:null,compact:gt,declare:gt,event:null,face:null,frame:null,frameBorder:null,hSpace:Be,leftMargin:Be,link:null,longDesc:null,lowSrc:null,marginHeight:Be,marginWidth:Be,noResize:gt,noHref:gt,noShade:gt,noWrap:gt,object:null,profile:null,prompt:null,rev:null,rightMargin:Be,rules:null,scheme:null,scrolling:gl,standby:null,summary:null,text:null,topMargin:Be,valueType:null,version:null,vAlign:null,vLink:null,vSpace:Be,allowTransparency:null,autoCorrect:null,autoSave:null,disablePictureInPicture:gt,disableRemotePlayback:gt,prefix:null,property:null,results:Be,security:null,unselectable:null}}),WI=Dm({space:"svg",attributes:{accentHeight:"accent-height",alignmentBaseline:"alignment-baseline",arabicForm:"arabic-form",baselineShift:"baseline-shift",capHeight:"cap-height",className:"class",clipPath:"clip-path",clipRule:"clip-rule",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",crossOrigin:"crossorigin",dataType:"datatype",dominantBaseline:"dominant-baseline",enableBackground:"enable-background",fillOpacity:"fill-opacity",fillRule:"fill-rule",floodColor:"flood-color",floodOpacity:"flood-opacity",fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"glyph-orientation-vertical",hrefLang:"hreflang",horizAdvX:"horiz-adv-x",horizOriginX:"horiz-origin-x",horizOriginY:"horiz-origin-y",imageRendering:"image-rendering",letterSpacing:"letter-spacing",lightingColor:"lighting-color",markerEnd:"marker-end",markerMid:"marker-mid",markerStart:"marker-start",navDown:"nav-down",navDownLeft:"nav-down-left",navDownRight:"nav-down-right",navLeft:"nav-left",navNext:"nav-next",navPrev:"nav-prev",navRight:"nav-right",navUp:"nav-up",navUpLeft:"nav-up-left",navUpRight:"nav-up-right",onAbort:"onabort",onActivate:"onactivate",onAfterPrint:"onafterprint",onBeforePrint:"onbeforeprint",onBegin:"onbegin",onCancel:"oncancel",onCanPlay:"oncanplay",onCanPlayThrough:"oncanplaythrough",onChange:"onchange",onClick:"onclick",onClose:"onclose",onCopy:"oncopy",onCueChange:"oncuechange",onCut:"oncut",onDblClick:"ondblclick",onDrag:"ondrag",onDragEnd:"ondragend",onDragEnter:"ondragenter",onDragExit:"ondragexit",onDragLeave:"ondragleave",onDragOver:"ondragover",onDragStart:"ondragstart",onDrop:"ondrop",onDurationChange:"ondurationchange",onEmptied:"onemptied",onEnd:"onend",onEnded:"onended",onError:"onerror",onFocus:"onfocus",onFocusIn:"onfocusin",onFocusOut:"onfocusout",onHashChange:"onhashchange",onInput:"oninput",onInvalid:"oninvalid",onKeyDown:"onkeydown",onKeyPress:"onkeypress",onKeyUp:"onkeyup",onLoad:"onload",onLoadedData:"onloadeddata",onLoadedMetadata:"onloadedmetadata",onLoadStart:"onloadstart",onMessage:"onmessage",onMouseDown:"onmousedown",onMouseEnter:"onmouseenter",onMouseLeave:"onmouseleave",onMouseMove:"onmousemove",onMouseOut:"onmouseout",onMouseOver:"onmouseover",onMouseUp:"onmouseup",onMouseWheel:"onmousewheel",onOffline:"onoffline",onOnline:"ononline",onPageHide:"onpagehide",onPageShow:"onpageshow",onPaste:"onpaste",onPause:"onpause",onPlay:"onplay",onPlaying:"onplaying",onPopState:"onpopstate",onProgress:"onprogress",onRateChange:"onratechange",onRepeat:"onrepeat",onReset:"onreset",onResize:"onresize",onScroll:"onscroll",onSeeked:"onseeked",onSeeking:"onseeking",onSelect:"onselect",onShow:"onshow",onStalled:"onstalled",onStorage:"onstorage",onSubmit:"onsubmit",onSuspend:"onsuspend",onTimeUpdate:"ontimeupdate",onToggle:"ontoggle",onUnload:"onunload",onVolumeChange:"onvolumechange",onWaiting:"onwaiting",onZoom:"onzoom",overlinePosition:"overline-position",overlineThickness:"overline-thickness",paintOrder:"paint-order",panose1:"panose-1",pointerEvents:"pointer-events",referrerPolicy:"referrerpolicy",renderingIntent:"rendering-intent",shapeRendering:"shape-rendering",stopColor:"stop-color",stopOpacity:"stop-opacity",strikethroughPosition:"strikethrough-position",strikethroughThickness:"strikethrough-thickness",strokeDashArray:"stroke-dasharray",strokeDashOffset:"stroke-dashoffset",strokeLineCap:"stroke-linecap",strokeLineJoin:"stroke-linejoin",strokeMiterLimit:"stroke-miterlimit",strokeOpacity:"stroke-opacity",strokeWidth:"stroke-width",tabIndex:"tabindex",textAnchor:"text-anchor",textDecoration:"text-decoration",textRendering:"text-rendering",transformOrigin:"transform-origin",typeOf:"typeof",underlinePosition:"underline-position",underlineThickness:"underline-thickness",unicodeBidi:"unicode-bidi",unicodeRange:"unicode-range",unitsPerEm:"units-per-em",vAlphabetic:"v-alphabetic",vHanging:"v-hanging",vIdeographic:"v-ideographic",vMathematical:"v-mathematical",vectorEffect:"vector-effect",vertAdvY:"vert-adv-y",vertOriginX:"vert-origin-x",vertOriginY:"vert-origin-y",wordSpacing:"word-spacing",writingMode:"writing-mode",xHeight:"x-height",playbackOrder:"playbackorder",timelineBegin:"timelinebegin"},transform:WE,properties:{about:qi,accentHeight:Be,accumulate:null,additive:null,alignmentBaseline:null,alphabetic:Be,amplitude:Be,arabicForm:null,ascent:Be,attributeName:null,attributeType:null,azimuth:Be,bandwidth:null,baselineShift:null,baseFrequency:null,baseProfile:null,bbox:null,begin:null,bias:Be,by:null,calcMode:null,capHeight:Be,className:Sa,clip:null,clipPath:null,clipPathUnits:null,clipRule:null,color:null,colorInterpolation:null,colorInterpolationFilters:null,colorProfile:null,colorRendering:null,content:null,contentScriptType:null,contentStyleType:null,crossOrigin:null,cursor:null,cx:null,cy:null,d:null,dataType:null,defaultAction:null,descent:Be,diffuseConstant:Be,direction:null,display:null,dur:null,divisor:Be,dominantBaseline:null,download:gt,dx:null,dy:null,edgeMode:null,editable:null,elevation:Be,enableBackground:null,end:null,event:null,exponent:Be,externalResourcesRequired:null,fill:null,fillOpacity:Be,fillRule:null,filter:null,filterRes:null,filterUnits:null,floodColor:null,floodOpacity:null,focusable:null,focusHighlight:null,fontFamily:null,fontSize:null,fontSizeAdjust:null,fontStretch:null,fontStyle:null,fontVariant:null,fontWeight:null,format:null,fr:null,from:null,fx:null,fy:null,g1:dm,g2:dm,glyphName:dm,glyphOrientationHorizontal:null,glyphOrientationVertical:null,glyphRef:null,gradientTransform:null,gradientUnits:null,handler:null,hanging:Be,hatchContentUnits:null,hatchUnits:null,height:null,href:null,hrefLang:null,horizAdvX:Be,horizOriginX:Be,horizOriginY:Be,id:null,ideographic:Be,imageRendering:null,initialVisibility:null,in:null,in2:null,intercept:Be,k:Be,k1:Be,k2:Be,k3:Be,k4:Be,kernelMatrix:qi,kernelUnitLength:null,keyPoints:null,keySplines:null,keyTimes:null,kerning:null,lang:null,lengthAdjust:null,letterSpacing:null,lightingColor:null,limitingConeAngle:Be,local:null,markerEnd:null,markerMid:null,markerStart:null,markerHeight:null,markerUnits:null,markerWidth:null,mask:null,maskContentUnits:null,maskUnits:null,mathematical:null,max:null,media:null,mediaCharacterEncoding:null,mediaContentEncodings:null,mediaSize:Be,mediaTime:null,method:null,min:null,mode:null,name:null,navDown:null,navDownLeft:null,navDownRight:null,navLeft:null,navNext:null,navPrev:null,navRight:null,navUp:null,navUpLeft:null,navUpRight:null,numOctaves:null,observer:null,offset:null,onAbort:null,onActivate:null,onAfterPrint:null,onBeforePrint:null,onBegin:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onCopy:null,onCueChange:null,onCut:null,onDblClick:null,onDrag:null,onDragEnd:null,onDragEnter:null,onDragExit:null,onDragLeave:null,onDragOver:null,onDragStart:null,onDrop:null,onDurationChange:null,onEmptied:null,onEnd:null,onEnded:null,onError:null,onFocus:null,onFocusIn:null,onFocusOut:null,onHashChange:null,onInput:null,onInvalid:null,onKeyDown:null,onKeyPress:null,onKeyUp:null,onLoad:null,onLoadedData:null,onLoadedMetadata:null,onLoadStart:null,onMessage:null,onMouseDown:null,onMouseEnter:null,onMouseLeave:null,onMouseMove:null,onMouseOut:null,onMouseOver:null,onMouseUp:null,onMouseWheel:null,onOffline:null,onOnline:null,onPageHide:null,onPageShow:null,onPaste:null,onPause:null,onPlay:null,onPlaying:null,onPopState:null,onProgress:null,onRateChange:null,onRepeat:null,onReset:null,onResize:null,onScroll:null,onSeeked:null,onSeeking:null,onSelect:null,onShow:null,onStalled:null,onStorage:null,onSubmit:null,onSuspend:null,onTimeUpdate:null,onToggle:null,onUnload:null,onVolumeChange:null,onWaiting:null,onZoom:null,opacity:null,operator:null,order:null,orient:null,orientation:null,origin:null,overflow:null,overlay:null,overlinePosition:Be,overlineThickness:Be,paintOrder:null,panose1:null,path:null,pathLength:Be,patternContentUnits:null,patternTransform:null,patternUnits:null,phase:null,ping:Sa,pitch:null,playbackOrder:null,pointerEvents:null,points:null,pointsAtX:Be,pointsAtY:Be,pointsAtZ:Be,preserveAlpha:null,preserveAspectRatio:null,primitiveUnits:null,propagate:null,property:qi,r:null,radius:null,referrerPolicy:null,refX:null,refY:null,rel:qi,rev:qi,renderingIntent:null,repeatCount:null,repeatDur:null,requiredExtensions:qi,requiredFeatures:qi,requiredFonts:qi,requiredFormats:qi,resource:null,restart:null,result:null,rotate:null,rx:null,ry:null,scale:null,seed:null,shapeRendering:null,side:null,slope:null,snapshotTime:null,specularConstant:Be,specularExponent:Be,spreadMethod:null,spacing:null,startOffset:null,stdDeviation:null,stemh:null,stemv:null,stitchTiles:null,stopColor:null,stopOpacity:null,strikethroughPosition:Be,strikethroughThickness:Be,string:null,stroke:null,strokeDashArray:qi,strokeDashOffset:null,strokeLineCap:null,strokeLineJoin:null,strokeMiterLimit:Be,strokeOpacity:Be,strokeWidth:null,style:null,surfaceScale:Be,syncBehavior:null,syncBehaviorDefault:null,syncMaster:null,syncTolerance:null,syncToleranceDefault:null,systemLanguage:qi,tabIndex:Be,tableValues:null,target:null,targetX:Be,targetY:Be,textAnchor:null,textDecoration:null,textRendering:null,textLength:null,timelineBegin:null,title:null,transformBehavior:null,type:null,typeOf:qi,to:null,transform:null,transformOrigin:null,u1:null,u2:null,underlinePosition:Be,underlineThickness:Be,unicode:null,unicodeBidi:null,unicodeRange:null,unitsPerEm:Be,values:null,vAlphabetic:Be,vMathematical:Be,vectorEffect:null,vHanging:Be,vIdeographic:Be,version:null,vertAdvY:Be,vertOriginX:Be,vertOriginY:Be,viewBox:null,viewTarget:null,visibility:null,width:null,widths:null,wordSpacing:null,writingMode:null,x:null,x1:null,x2:null,xChannelSelector:null,xHeight:Be,y:null,y1:null,y2:null,yChannelSelector:null,z:null,zoomAndPan:null}}),VI=/^data[-\w.:]+$/i,Hy=/-[a-z]/g,qI=/[A-Z]/g;function jI(t,n){const r=Z6(n);let s=n,b=jo;if(r in t.normal)return t.property[t.normal[r]];if(r.length>4&&r.slice(0,4)==="data"&&VI.test(n)){if(n.charAt(4)==="-"){const h=n.slice(5).replace(Hy,QI);s="data"+h.charAt(0).toUpperCase()+h.slice(1)}else{const h=n.slice(4);if(!Hy.test(h)){let p=h.replace(qI,YI);p.charAt(0)!=="-"&&(p="-"+p),n="data"+p}}b=QT}return new b(s,n)}function YI(t){return"-"+t.toLowerCase()}function QI(t){return t.charAt(1).toUpperCase()}const XI=FE([PE,HE,qE,jE,PI],"html"),YE=FE([PE,HE,qE,jE,WI],"svg"),Py={}.hasOwnProperty;function QE(t,n){const r=n||{};function s(b,...h){let p=s.invalid;const T=s.handlers;if(b&&Py.call(b,t)){const E=String(b[t]);p=Py.call(T,E)?T[E]:s.unknown}if(p)return p.call(this,b,...h)}return s.handlers=r.handlers||{},s.invalid=r.invalid,s.unknown=r.unknown,s}const KI={},ZI={}.hasOwnProperty,XE=QE("type",{handlers:{root:$I,element:nw,text:aw,comment:lw,doctype:tw}});function JI(t,n){const s=(n||KI).space;return XE(t,s==="svg"?YE:XI)}function $I(t,n){const r={nodeName:"#document",mode:(t.data||{}).quirksMode?"quirks":"no-quirks",childNodes:[]};return r.childNodes=XT(t.children,r,n),Lm(t,r),r}function ew(t,n){const r={nodeName:"#document-fragment",childNodes:[]};return r.childNodes=XT(t.children,r,n),Lm(t,r),r}function tw(t){const n={nodeName:"#documentType",name:"html",publicId:"",systemId:"",parentNode:null};return Lm(t,n),n}function aw(t){const n={nodeName:"#text",value:t.value,parentNode:null};return Lm(t,n),n}function lw(t){const n={nodeName:"#comment",data:t.value,parentNode:null};return Lm(t,n),n}function nw(t,n){const r=n;let s=r;t.type==="element"&&t.tagName.toLowerCase()==="svg"&&r.space==="html"&&(s=YE);const b=[];let h;if(t.properties){for(h in t.properties)if(h!=="children"&&ZI.call(t.properties,h)){const E=iw(s,h,t.properties[h]);E&&b.push(E)}}const p=s.space,T={nodeName:t.tagName,tagName:t.tagName,attrs:b,namespaceURI:E0[p],childNodes:[],parentNode:null};return T.childNodes=XT(t.children,T,s),Lm(t,T),t.tagName==="template"&&t.content&&(T.content=ew(t.content,s)),T}function iw(t,n,r){const s=jI(t,n);if(r===!1||r===null||r===void 0||typeof r=="number"&&Number.isNaN(r)||!r&&s.boolean)return;Array.isArray(r)&&(r=s.commaSeparated?tE(r):sE(r));const b={name:s.attribute,value:r===!0?"":String(r)};if(s.space&&s.space!=="html"&&s.space!=="svg"){const h=b.name.indexOf(":");h<0?b.prefix="":(b.name=b.name.slice(h+1),b.prefix=s.attribute.slice(0,h)),b.namespace=E0[s.space]}return b}function XT(t,n,r){let s=-1;const b=[];if(t)for(;++s<t.length;){const h=XE(t[s],r);h.parentNode=n,b.push(h)}return b}function Lm(t,n){const r=t.position;r&&r.start&&r.end&&(r.start.offset,r.end.offset,n.sourceCodeLocation={startLine:r.start.line,startCol:r.start.column,startOffset:r.start.offset,endLine:r.end.line,endCol:r.end.column,endOffset:r.end.offset})}const ow=["area","base","basefont","bgsound","br","col","command","embed","frame","hr","image","img","input","keygen","link","meta","param","source","track","wbr"],rw=new Set([65534,65535,131070,131071,196606,196607,262142,262143,327678,327679,393214,393215,458750,458751,524286,524287,589822,589823,655358,655359,720894,720895,786430,786431,851966,851967,917502,917503,983038,983039,1048574,1048575,1114110,1114111]),Ba="�";var _;(function(t){t[t.EOF=-1]="EOF",t[t.NULL=0]="NULL",t[t.TABULATION=9]="TABULATION",t[t.CARRIAGE_RETURN=13]="CARRIAGE_RETURN",t[t.LINE_FEED=10]="LINE_FEED",t[t.FORM_FEED=12]="FORM_FEED",t[t.SPACE=32]="SPACE",t[t.EXCLAMATION_MARK=33]="EXCLAMATION_MARK",t[t.QUOTATION_MARK=34]="QUOTATION_MARK",t[t.AMPERSAND=38]="AMPERSAND",t[t.APOSTROPHE=39]="APOSTROPHE",t[t.HYPHEN_MINUS=45]="HYPHEN_MINUS",t[t.SOLIDUS=47]="SOLIDUS",t[t.DIGIT_0=48]="DIGIT_0",t[t.DIGIT_9=57]="DIGIT_9",t[t.SEMICOLON=59]="SEMICOLON",t[t.LESS_THAN_SIGN=60]="LESS_THAN_SIGN",t[t.EQUALS_SIGN=61]="EQUALS_SIGN",t[t.GREATER_THAN_SIGN=62]="GREATER_THAN_SIGN",t[t.QUESTION_MARK=63]="QUESTION_MARK",t[t.LATIN_CAPITAL_A=65]="LATIN_CAPITAL_A",t[t.LATIN_CAPITAL_Z=90]="LATIN_CAPITAL_Z",t[t.RIGHT_SQUARE_BRACKET=93]="RIGHT_SQUARE_BRACKET",t[t.GRAVE_ACCENT=96]="GRAVE_ACCENT",t[t.LATIN_SMALL_A=97]="LATIN_SMALL_A",t[t.LATIN_SMALL_Z=122]="LATIN_SMALL_Z"})(_||(_={}));const ui={DASH_DASH:"--",CDATA_START:"[CDATA[",DOCTYPE:"doctype",SCRIPT:"script",PUBLIC:"public",SYSTEM:"system"};function KE(t){return t>=55296&&t<=57343}function uw(t){return t>=56320&&t<=57343}function sw(t,n){return(t-55296)*1024+9216+n}function ZE(t){return t!==32&&t!==10&&t!==13&&t!==9&&t!==12&&t>=1&&t<=31||t>=127&&t<=159}function JE(t){return t>=64976&&t<=65007||rw.has(t)}var me;(function(t){t.controlCharacterInInputStream="control-character-in-input-stream",t.noncharacterInInputStream="noncharacter-in-input-stream",t.surrogateInInputStream="surrogate-in-input-stream",t.nonVoidHtmlElementStartTagWithTrailingSolidus="non-void-html-element-start-tag-with-trailing-solidus",t.endTagWithAttributes="end-tag-with-attributes",t.endTagWithTrailingSolidus="end-tag-with-trailing-solidus",t.unexpectedSolidusInTag="unexpected-solidus-in-tag",t.unexpectedNullCharacter="unexpected-null-character",t.unexpectedQuestionMarkInsteadOfTagName="unexpected-question-mark-instead-of-tag-name",t.invalidFirstCharacterOfTagName="invalid-first-character-of-tag-name",t.unexpectedEqualsSignBeforeAttributeName="unexpected-equals-sign-before-attribute-name",t.missingEndTagName="missing-end-tag-name",t.unexpectedCharacterInAttributeName="unexpected-character-in-attribute-name",t.unknownNamedCharacterReference="unknown-named-character-reference",t.missingSemicolonAfterCharacterReference="missing-semicolon-after-character-reference",t.unexpectedCharacterAfterDoctypeSystemIdentifier="unexpected-character-after-doctype-system-identifier",t.unexpectedCharacterInUnquotedAttributeValue="unexpected-character-in-unquoted-attribute-value",t.eofBeforeTagName="eof-before-tag-name",t.eofInTag="eof-in-tag",t.missingAttributeValue="missing-attribute-value",t.missingWhitespaceBetweenAttributes="missing-whitespace-between-attributes",t.missingWhitespaceAfterDoctypePublicKeyword="missing-whitespace-after-doctype-public-keyword",t.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers="missing-whitespace-between-doctype-public-and-system-identifiers",t.missingWhitespaceAfterDoctypeSystemKeyword="missing-whitespace-after-doctype-system-keyword",t.missingQuoteBeforeDoctypePublicIdentifier="missing-quote-before-doctype-public-identifier",t.missingQuoteBeforeDoctypeSystemIdentifier="missing-quote-before-doctype-system-identifier",t.missingDoctypePublicIdentifier="missing-doctype-public-identifier",t.missingDoctypeSystemIdentifier="missing-doctype-system-identifier",t.abruptDoctypePublicIdentifier="abrupt-doctype-public-identifier",t.abruptDoctypeSystemIdentifier="abrupt-doctype-system-identifier",t.cdataInHtmlContent="cdata-in-html-content",t.incorrectlyOpenedComment="incorrectly-opened-comment",t.eofInScriptHtmlCommentLikeText="eof-in-script-html-comment-like-text",t.eofInDoctype="eof-in-doctype",t.nestedComment="nested-comment",t.abruptClosingOfEmptyComment="abrupt-closing-of-empty-comment",t.eofInComment="eof-in-comment",t.incorrectlyClosedComment="incorrectly-closed-comment",t.eofInCdata="eof-in-cdata",t.absenceOfDigitsInNumericCharacterReference="absence-of-digits-in-numeric-character-reference",t.nullCharacterReference="null-character-reference",t.surrogateCharacterReference="surrogate-character-reference",t.characterReferenceOutsideUnicodeRange="character-reference-outside-unicode-range",t.controlCharacterReference="control-character-reference",t.noncharacterCharacterReference="noncharacter-character-reference",t.missingWhitespaceBeforeDoctypeName="missing-whitespace-before-doctype-name",t.missingDoctypeName="missing-doctype-name",t.invalidCharacterSequenceAfterDoctypeName="invalid-character-sequence-after-doctype-name",t.duplicateAttribute="duplicate-attribute",t.nonConformingDoctype="non-conforming-doctype",t.missingDoctype="missing-doctype",t.misplacedDoctype="misplaced-doctype",t.endTagWithoutMatchingOpenElement="end-tag-without-matching-open-element",t.closingOfElementWithOpenChildElements="closing-of-element-with-open-child-elements",t.disallowedContentInNoscriptInHead="disallowed-content-in-noscript-in-head",t.openElementsLeftAfterEof="open-elements-left-after-eof",t.abandonedHeadElementChild="abandoned-head-element-child",t.misplacedStartTagForHeadElement="misplaced-start-tag-for-head-element",t.nestedNoscriptInHead="nested-noscript-in-head",t.eofInElementThatCanContainOnlyText="eof-in-element-that-can-contain-only-text"})(me||(me={}));const cw=65536;class fw{constructor(n){this.handler=n,this.html="",this.pos=-1,this.lastGapPos=-2,this.gapStack=[],this.skipNextNewLine=!1,this.lastChunkWritten=!1,this.endOfChunkHit=!1,this.bufferWaterline=cw,this.isEol=!1,this.lineStartPos=0,this.droppedBufferSize=0,this.line=1,this.lastErrOffset=-1}get col(){return this.pos-this.lineStartPos+ +(this.lastGapPos!==this.pos)}get offset(){return this.droppedBufferSize+this.pos}getError(n,r){const{line:s,col:b,offset:h}=this,p=b+r,T=h+r;return{code:n,startLine:s,endLine:s,startCol:p,endCol:p,startOffset:T,endOffset:T}}_err(n){this.handler.onParseError&&this.lastErrOffset!==this.offset&&(this.lastErrOffset=this.offset,this.handler.onParseError(this.getError(n,0)))}_addGap(){this.gapStack.push(this.lastGapPos),this.lastGapPos=this.pos}_processSurrogate(n){if(this.pos!==this.html.length-1){const r=this.html.charCodeAt(this.pos+1);if(uw(r))return this.pos++,this._addGap(),sw(n,r)}else if(!this.lastChunkWritten)return this.endOfChunkHit=!0,_.EOF;return this._err(me.surrogateInInputStream),n}willDropParsedChunk(){return this.pos>this.bufferWaterline}dropParsedChunk(){this.willDropParsedChunk()&&(this.html=this.html.substring(this.pos),this.lineStartPos-=this.pos,this.droppedBufferSize+=this.pos,this.pos=0,this.lastGapPos=-2,this.gapStack.length=0)}write(n,r){this.html.length>0?this.html+=n:this.html=n,this.endOfChunkHit=!1,this.lastChunkWritten=r}insertHtmlAtCurrentPos(n){this.html=this.html.substring(0,this.pos+1)+n+this.html.substring(this.pos+1),this.endOfChunkHit=!1}startsWith(n,r){if(this.pos+n.length>this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,!1;if(r)return this.html.startsWith(n,this.pos);for(let s=0;s<n.length;s++)if((this.html.charCodeAt(this.pos+s)|32)!==n.charCodeAt(s))return!1;return!0}peek(n){const r=this.pos+n;if(r>=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,_.EOF;const s=this.html.charCodeAt(r);return s===_.CARRIAGE_RETURN?_.LINE_FEED:s}advance(){if(this.pos++,this.isEol&&(this.isEol=!1,this.line++,this.lineStartPos=this.pos),this.pos>=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,_.EOF;let n=this.html.charCodeAt(this.pos);return n===_.CARRIAGE_RETURN?(this.isEol=!0,this.skipNextNewLine=!0,_.LINE_FEED):n===_.LINE_FEED&&(this.isEol=!0,this.skipNextNewLine)?(this.line--,this.skipNextNewLine=!1,this._addGap(),this.advance()):(this.skipNextNewLine=!1,KE(n)&&(n=this._processSurrogate(n)),this.handler.onParseError===null||n>31&&n<127||n===_.LINE_FEED||n===_.CARRIAGE_RETURN||n>159&&n<64976||this._checkForProblematicCharacters(n),n)}_checkForProblematicCharacters(n){ZE(n)?this._err(me.controlCharacterInInputStream):JE(n)&&this._err(me.noncharacterInInputStream)}retreat(n){for(this.pos-=n;this.pos<this.lastGapPos;)this.lastGapPos=this.gapStack.pop(),this.pos--;this.isEol=!1}}var xt;(function(t){t[t.CHARACTER=0]="CHARACTER",t[t.NULL_CHARACTER=1]="NULL_CHARACTER",t[t.WHITESPACE_CHARACTER=2]="WHITESPACE_CHARACTER",t[t.START_TAG=3]="START_TAG",t[t.END_TAG=4]="END_TAG",t[t.COMMENT=5]="COMMENT",t[t.DOCTYPE=6]="DOCTYPE",t[t.EOF=7]="EOF",t[t.HIBERNATION=8]="HIBERNATION"})(xt||(xt={}));function $E(t,n){for(let r=t.attrs.length-1;r>=0;r--)if(t.attrs[r].name===n)return t.attrs[r].value;return null}const dw=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀𝒵௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀𝔟g΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀𝔫ȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀𝔬ͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roð໻tré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split("").map(t=>t.charCodeAt(0))),bw=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function mw(t){var n;return t>=55296&&t<=57343||t>1114111?65533:(n=bw.get(t))!==null&&n!==void 0?n:t}var wl;(function(t){t[t.NUM=35]="NUM",t[t.SEMI=59]="SEMI",t[t.EQUALS=61]="EQUALS",t[t.ZERO=48]="ZERO",t[t.NINE=57]="NINE",t[t.LOWER_A=97]="LOWER_A",t[t.LOWER_F=102]="LOWER_F",t[t.LOWER_X=120]="LOWER_X",t[t.LOWER_Z=122]="LOWER_Z",t[t.UPPER_A=65]="UPPER_A",t[t.UPPER_F=70]="UPPER_F",t[t.UPPER_Z=90]="UPPER_Z"})(wl||(wl={}));const hw=32;var xf;(function(t){t[t.VALUE_LENGTH=49152]="VALUE_LENGTH",t[t.BRANCH_LENGTH=16256]="BRANCH_LENGTH",t[t.JUMP_TABLE=127]="JUMP_TABLE"})(xf||(xf={}));function $6(t){return t>=wl.ZERO&&t<=wl.NINE}function pw(t){return t>=wl.UPPER_A&&t<=wl.UPPER_F||t>=wl.LOWER_A&&t<=wl.LOWER_F}function gw(t){return t>=wl.UPPER_A&&t<=wl.UPPER_Z||t>=wl.LOWER_A&&t<=wl.LOWER_Z||$6(t)}function Tw(t){return t===wl.EQUALS||gw(t)}var Il;(function(t){t[t.EntityStart=0]="EntityStart",t[t.NumericStart=1]="NumericStart",t[t.NumericDecimal=2]="NumericDecimal",t[t.NumericHex=3]="NumericHex",t[t.NamedEntity=4]="NamedEntity"})(Il||(Il={}));var ks;(function(t){t[t.Legacy=0]="Legacy",t[t.Strict=1]="Strict",t[t.Attribute=2]="Attribute"})(ks||(ks={}));class vw{constructor(n,r,s){this.decodeTree=n,this.emitCodePoint=r,this.errors=s,this.state=Il.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ks.Strict}startEntity(n){this.decodeMode=n,this.state=Il.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}write(n,r){switch(this.state){case Il.EntityStart:return n.charCodeAt(r)===wl.NUM?(this.state=Il.NumericStart,this.consumed+=1,this.stateNumericStart(n,r+1)):(this.state=Il.NamedEntity,this.stateNamedEntity(n,r));case Il.NumericStart:return this.stateNumericStart(n,r);case Il.NumericDecimal:return this.stateNumericDecimal(n,r);case Il.NumericHex:return this.stateNumericHex(n,r);case Il.NamedEntity:return this.stateNamedEntity(n,r)}}stateNumericStart(n,r){return r>=n.length?-1:(n.charCodeAt(r)|hw)===wl.LOWER_X?(this.state=Il.NumericHex,this.consumed+=1,this.stateNumericHex(n,r+1)):(this.state=Il.NumericDecimal,this.stateNumericDecimal(n,r))}addToNumericResult(n,r,s,b){if(r!==s){const h=s-r;this.result=this.result*Math.pow(b,h)+Number.parseInt(n.substr(r,h),b),this.consumed+=h}}stateNumericHex(n,r){const s=r;for(;r<n.length;){const b=n.charCodeAt(r);if($6(b)||pw(b))r+=1;else return this.addToNumericResult(n,s,r,16),this.emitNumericEntity(b,3)}return this.addToNumericResult(n,s,r,16),-1}stateNumericDecimal(n,r){const s=r;for(;r<n.length;){const b=n.charCodeAt(r);if($6(b))r+=1;else return this.addToNumericResult(n,s,r,10),this.emitNumericEntity(b,2)}return this.addToNumericResult(n,s,r,10),-1}emitNumericEntity(n,r){var s;if(this.consumed<=r)return(s=this.errors)===null||s===void 0||s.absenceOfDigitsInNumericCharacterReference(this.consumed),0;if(n===wl.SEMI)this.consumed+=1;else if(this.decodeMode===ks.Strict)return 0;return this.emitCodePoint(mw(this.result),this.consumed),this.errors&&(n!==wl.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed}stateNamedEntity(n,r){const{decodeTree:s}=this;let b=s[this.treeIndex],h=(b&xf.VALUE_LENGTH)>>14;for(;r<n.length;r++,this.excess++){const p=n.charCodeAt(r);if(this.treeIndex=Sw(s,b,this.treeIndex+Math.max(1,h),p),this.treeIndex<0)return this.result===0||this.decodeMode===ks.Attribute&&(h===0||Tw(p))?0:this.emitNotTerminatedNamedEntity();if(b=s[this.treeIndex],h=(b&xf.VALUE_LENGTH)>>14,h!==0){if(p===wl.SEMI)return this.emitNamedEntityData(this.treeIndex,h,this.consumed+this.excess);this.decodeMode!==ks.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return-1}emitNotTerminatedNamedEntity(){var n;const{result:r,decodeTree:s}=this,b=(s[r]&xf.VALUE_LENGTH)>>14;return this.emitNamedEntityData(r,b,this.consumed),(n=this.errors)===null||n===void 0||n.missingSemicolonAfterCharacterReference(),this.consumed}emitNamedEntityData(n,r,s){const{decodeTree:b}=this;return this.emitCodePoint(r===1?b[n]&~xf.VALUE_LENGTH:b[n+1],s),r===3&&this.emitCodePoint(b[n+2],s),s}end(){var n;switch(this.state){case Il.NamedEntity:return this.result!==0&&(this.decodeMode!==ks.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case Il.NumericDecimal:return this.emitNumericEntity(0,2);case Il.NumericHex:return this.emitNumericEntity(0,3);case Il.NumericStart:return(n=this.errors)===null||n===void 0||n.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case Il.EntityStart:return 0}}}function Sw(t,n,r,s){const b=(n&xf.BRANCH_LENGTH)>>7,h=n&xf.JUMP_TABLE;if(b===0)return h!==0&&s===h?r:-1;if(h){const E=s-h;return E<0||E>=b?-1:t[r+E]-1}let p=r,T=p+b-1;for(;p<=T;){const E=p+T>>>1,A=t[E];if(A<s)p=E+1;else if(A>s)T=E-1;else return t[E+b]}return-1}var Le;(function(t){t.HTML="http://www.w3.org/1999/xhtml",t.MATHML="http://www.w3.org/1998/Math/MathML",t.SVG="http://www.w3.org/2000/svg",t.XLINK="http://www.w3.org/1999/xlink",t.XML="http://www.w3.org/XML/1998/namespace",t.XMLNS="http://www.w3.org/2000/xmlns/"})(Le||(Le={}));var A0;(function(t){t.TYPE="type",t.ACTION="action",t.ENCODING="encoding",t.PROMPT="prompt",t.NAME="name",t.COLOR="color",t.FACE="face",t.SIZE="size"})(A0||(A0={}));var qo;(function(t){t.NO_QUIRKS="no-quirks",t.QUIRKS="quirks",t.LIMITED_QUIRKS="limited-quirks"})(qo||(qo={}));var ne;(function(t){t.A="a",t.ADDRESS="address",t.ANNOTATION_XML="annotation-xml",t.APPLET="applet",t.AREA="area",t.ARTICLE="article",t.ASIDE="aside",t.B="b",t.BASE="base",t.BASEFONT="basefont",t.BGSOUND="bgsound",t.BIG="big",t.BLOCKQUOTE="blockquote",t.BODY="body",t.BR="br",t.BUTTON="button",t.CAPTION="caption",t.CENTER="center",t.CODE="code",t.COL="col",t.COLGROUP="colgroup",t.DD="dd",t.DESC="desc",t.DETAILS="details",t.DIALOG="dialog",t.DIR="dir",t.DIV="div",t.DL="dl",t.DT="dt",t.EM="em",t.EMBED="embed",t.FIELDSET="fieldset",t.FIGCAPTION="figcaption",t.FIGURE="figure",t.FONT="font",t.FOOTER="footer",t.FOREIGN_OBJECT="foreignObject",t.FORM="form",t.FRAME="frame",t.FRAMESET="frameset",t.H1="h1",t.H2="h2",t.H3="h3",t.H4="h4",t.H5="h5",t.H6="h6",t.HEAD="head",t.HEADER="header",t.HGROUP="hgroup",t.HR="hr",t.HTML="html",t.I="i",t.IMG="img",t.IMAGE="image",t.INPUT="input",t.IFRAME="iframe",t.KEYGEN="keygen",t.LABEL="label",t.LI="li",t.LINK="link",t.LISTING="listing",t.MAIN="main",t.MALIGNMARK="malignmark",t.MARQUEE="marquee",t.MATH="math",t.MENU="menu",t.META="meta",t.MGLYPH="mglyph",t.MI="mi",t.MO="mo",t.MN="mn",t.MS="ms",t.MTEXT="mtext",t.NAV="nav",t.NOBR="nobr",t.NOFRAMES="noframes",t.NOEMBED="noembed",t.NOSCRIPT="noscript",t.OBJECT="object",t.OL="ol",t.OPTGROUP="optgroup",t.OPTION="option",t.P="p",t.PARAM="param",t.PLAINTEXT="plaintext",t.PRE="pre",t.RB="rb",t.RP="rp",t.RT="rt",t.RTC="rtc",t.RUBY="ruby",t.S="s",t.SCRIPT="script",t.SEARCH="search",t.SECTION="section",t.SELECT="select",t.SOURCE="source",t.SMALL="small",t.SPAN="span",t.STRIKE="strike",t.STRONG="strong",t.STYLE="style",t.SUB="sub",t.SUMMARY="summary",t.SUP="sup",t.TABLE="table",t.TBODY="tbody",t.TEMPLATE="template",t.TEXTAREA="textarea",t.TFOOT="tfoot",t.TD="td",t.TH="th",t.THEAD="thead",t.TITLE="title",t.TR="tr",t.TRACK="track",t.TT="tt",t.U="u",t.UL="ul",t.SVG="svg",t.VAR="var",t.WBR="wbr",t.XMP="xmp"})(ne||(ne={}));var y;(function(t){t[t.UNKNOWN=0]="UNKNOWN",t[t.A=1]="A",t[t.ADDRESS=2]="ADDRESS",t[t.ANNOTATION_XML=3]="ANNOTATION_XML",t[t.APPLET=4]="APPLET",t[t.AREA=5]="AREA",t[t.ARTICLE=6]="ARTICLE",t[t.ASIDE=7]="ASIDE",t[t.B=8]="B",t[t.BASE=9]="BASE",t[t.BASEFONT=10]="BASEFONT",t[t.BGSOUND=11]="BGSOUND",t[t.BIG=12]="BIG",t[t.BLOCKQUOTE=13]="BLOCKQUOTE",t[t.BODY=14]="BODY",t[t.BR=15]="BR",t[t.BUTTON=16]="BUTTON",t[t.CAPTION=17]="CAPTION",t[t.CENTER=18]="CENTER",t[t.CODE=19]="CODE",t[t.COL=20]="COL",t[t.COLGROUP=21]="COLGROUP",t[t.DD=22]="DD",t[t.DESC=23]="DESC",t[t.DETAILS=24]="DETAILS",t[t.DIALOG=25]="DIALOG",t[t.DIR=26]="DIR",t[t.DIV=27]="DIV",t[t.DL=28]="DL",t[t.DT=29]="DT",t[t.EM=30]="EM",t[t.EMBED=31]="EMBED",t[t.FIELDSET=32]="FIELDSET",t[t.FIGCAPTION=33]="FIGCAPTION",t[t.FIGURE=34]="FIGURE",t[t.FONT=35]="FONT",t[t.FOOTER=36]="FOOTER",t[t.FOREIGN_OBJECT=37]="FOREIGN_OBJECT",t[t.FORM=38]="FORM",t[t.FRAME=39]="FRAME",t[t.FRAMESET=40]="FRAMESET",t[t.H1=41]="H1",t[t.H2=42]="H2",t[t.H3=43]="H3",t[t.H4=44]="H4",t[t.H5=45]="H5",t[t.H6=46]="H6",t[t.HEAD=47]="HEAD",t[t.HEADER=48]="HEADER",t[t.HGROUP=49]="HGROUP",t[t.HR=50]="HR",t[t.HTML=51]="HTML",t[t.I=52]="I",t[t.IMG=53]="IMG",t[t.IMAGE=54]="IMAGE",t[t.INPUT=55]="INPUT",t[t.IFRAME=56]="IFRAME",t[t.KEYGEN=57]="KEYGEN",t[t.LABEL=58]="LABEL",t[t.LI=59]="LI",t[t.LINK=60]="LINK",t[t.LISTING=61]="LISTING",t[t.MAIN=62]="MAIN",t[t.MALIGNMARK=63]="MALIGNMARK",t[t.MARQUEE=64]="MARQUEE",t[t.MATH=65]="MATH",t[t.MENU=66]="MENU",t[t.META=67]="META",t[t.MGLYPH=68]="MGLYPH",t[t.MI=69]="MI",t[t.MO=70]="MO",t[t.MN=71]="MN",t[t.MS=72]="MS",t[t.MTEXT=73]="MTEXT",t[t.NAV=74]="NAV",t[t.NOBR=75]="NOBR",t[t.NOFRAMES=76]="NOFRAMES",t[t.NOEMBED=77]="NOEMBED",t[t.NOSCRIPT=78]="NOSCRIPT",t[t.OBJECT=79]="OBJECT",t[t.OL=80]="OL",t[t.OPTGROUP=81]="OPTGROUP",t[t.OPTION=82]="OPTION",t[t.P=83]="P",t[t.PARAM=84]="PARAM",t[t.PLAINTEXT=85]="PLAINTEXT",t[t.PRE=86]="PRE",t[t.RB=87]="RB",t[t.RP=88]="RP",t[t.RT=89]="RT",t[t.RTC=90]="RTC",t[t.RUBY=91]="RUBY",t[t.S=92]="S",t[t.SCRIPT=93]="SCRIPT",t[t.SEARCH=94]="SEARCH",t[t.SECTION=95]="SECTION",t[t.SELECT=96]="SELECT",t[t.SOURCE=97]="SOURCE",t[t.SMALL=98]="SMALL",t[t.SPAN=99]="SPAN",t[t.STRIKE=100]="STRIKE",t[t.STRONG=101]="STRONG",t[t.STYLE=102]="STYLE",t[t.SUB=103]="SUB",t[t.SUMMARY=104]="SUMMARY",t[t.SUP=105]="SUP",t[t.TABLE=106]="TABLE",t[t.TBODY=107]="TBODY",t[t.TEMPLATE=108]="TEMPLATE",t[t.TEXTAREA=109]="TEXTAREA",t[t.TFOOT=110]="TFOOT",t[t.TD=111]="TD",t[t.TH=112]="TH",t[t.THEAD=113]="THEAD",t[t.TITLE=114]="TITLE",t[t.TR=115]="TR",t[t.TRACK=116]="TRACK",t[t.TT=117]="TT",t[t.U=118]="U",t[t.UL=119]="UL",t[t.SVG=120]="SVG",t[t.VAR=121]="VAR",t[t.WBR=122]="WBR",t[t.XMP=123]="XMP"})(y||(y={}));const yw=new Map([[ne.A,y.A],[ne.ADDRESS,y.ADDRESS],[ne.ANNOTATION_XML,y.ANNOTATION_XML],[ne.APPLET,y.APPLET],[ne.AREA,y.AREA],[ne.ARTICLE,y.ARTICLE],[ne.ASIDE,y.ASIDE],[ne.B,y.B],[ne.BASE,y.BASE],[ne.BASEFONT,y.BASEFONT],[ne.BGSOUND,y.BGSOUND],[ne.BIG,y.BIG],[ne.BLOCKQUOTE,y.BLOCKQUOTE],[ne.BODY,y.BODY],[ne.BR,y.BR],[ne.BUTTON,y.BUTTON],[ne.CAPTION,y.CAPTION],[ne.CENTER,y.CENTER],[ne.CODE,y.CODE],[ne.COL,y.COL],[ne.COLGROUP,y.COLGROUP],[ne.DD,y.DD],[ne.DESC,y.DESC],[ne.DETAILS,y.DETAILS],[ne.DIALOG,y.DIALOG],[ne.DIR,y.DIR],[ne.DIV,y.DIV],[ne.DL,y.DL],[ne.DT,y.DT],[ne.EM,y.EM],[ne.EMBED,y.EMBED],[ne.FIELDSET,y.FIELDSET],[ne.FIGCAPTION,y.FIGCAPTION],[ne.FIGURE,y.FIGURE],[ne.FONT,y.FONT],[ne.FOOTER,y.FOOTER],[ne.FOREIGN_OBJECT,y.FOREIGN_OBJECT],[ne.FORM,y.FORM],[ne.FRAME,y.FRAME],[ne.FRAMESET,y.FRAMESET],[ne.H1,y.H1],[ne.H2,y.H2],[ne.H3,y.H3],[ne.H4,y.H4],[ne.H5,y.H5],[ne.H6,y.H6],[ne.HEAD,y.HEAD],[ne.HEADER,y.HEADER],[ne.HGROUP,y.HGROUP],[ne.HR,y.HR],[ne.HTML,y.HTML],[ne.I,y.I],[ne.IMG,y.IMG],[ne.IMAGE,y.IMAGE],[ne.INPUT,y.INPUT],[ne.IFRAME,y.IFRAME],[ne.KEYGEN,y.KEYGEN],[ne.LABEL,y.LABEL],[ne.LI,y.LI],[ne.LINK,y.LINK],[ne.LISTING,y.LISTING],[ne.MAIN,y.MAIN],[ne.MALIGNMARK,y.MALIGNMARK],[ne.MARQUEE,y.MARQUEE],[ne.MATH,y.MATH],[ne.MENU,y.MENU],[ne.META,y.META],[ne.MGLYPH,y.MGLYPH],[ne.MI,y.MI],[ne.MO,y.MO],[ne.MN,y.MN],[ne.MS,y.MS],[ne.MTEXT,y.MTEXT],[ne.NAV,y.NAV],[ne.NOBR,y.NOBR],[ne.NOFRAMES,y.NOFRAMES],[ne.NOEMBED,y.NOEMBED],[ne.NOSCRIPT,y.NOSCRIPT],[ne.OBJECT,y.OBJECT],[ne.OL,y.OL],[ne.OPTGROUP,y.OPTGROUP],[ne.OPTION,y.OPTION],[ne.P,y.P],[ne.PARAM,y.PARAM],[ne.PLAINTEXT,y.PLAINTEXT],[ne.PRE,y.PRE],[ne.RB,y.RB],[ne.RP,y.RP],[ne.RT,y.RT],[ne.RTC,y.RTC],[ne.RUBY,y.RUBY],[ne.S,y.S],[ne.SCRIPT,y.SCRIPT],[ne.SEARCH,y.SEARCH],[ne.SECTION,y.SECTION],[ne.SELECT,y.SELECT],[ne.SOURCE,y.SOURCE],[ne.SMALL,y.SMALL],[ne.SPAN,y.SPAN],[ne.STRIKE,y.STRIKE],[ne.STRONG,y.STRONG],[ne.STYLE,y.STYLE],[ne.SUB,y.SUB],[ne.SUMMARY,y.SUMMARY],[ne.SUP,y.SUP],[ne.TABLE,y.TABLE],[ne.TBODY,y.TBODY],[ne.TEMPLATE,y.TEMPLATE],[ne.TEXTAREA,y.TEXTAREA],[ne.TFOOT,y.TFOOT],[ne.TD,y.TD],[ne.TH,y.TH],[ne.THEAD,y.THEAD],[ne.TITLE,y.TITLE],[ne.TR,y.TR],[ne.TRACK,y.TRACK],[ne.TT,y.TT],[ne.U,y.U],[ne.UL,y.UL],[ne.SVG,y.SVG],[ne.VAR,y.VAR],[ne.WBR,y.WBR],[ne.XMP,y.XMP]]);function zm(t){var n;return(n=yw.get(t))!==null&&n!==void 0?n:y.UNKNOWN}const xe=y,Cw={[Le.HTML]:new Set([xe.ADDRESS,xe.APPLET,xe.AREA,xe.ARTICLE,xe.ASIDE,xe.BASE,xe.BASEFONT,xe.BGSOUND,xe.BLOCKQUOTE,xe.BODY,xe.BR,xe.BUTTON,xe.CAPTION,xe.CENTER,xe.COL,xe.COLGROUP,xe.DD,xe.DETAILS,xe.DIR,xe.DIV,xe.DL,xe.DT,xe.EMBED,xe.FIELDSET,xe.FIGCAPTION,xe.FIGURE,xe.FOOTER,xe.FORM,xe.FRAME,xe.FRAMESET,xe.H1,xe.H2,xe.H3,xe.H4,xe.H5,xe.H6,xe.HEAD,xe.HEADER,xe.HGROUP,xe.HR,xe.HTML,xe.IFRAME,xe.IMG,xe.INPUT,xe.LI,xe.LINK,xe.LISTING,xe.MAIN,xe.MARQUEE,xe.MENU,xe.META,xe.NAV,xe.NOEMBED,xe.NOFRAMES,xe.NOSCRIPT,xe.OBJECT,xe.OL,xe.P,xe.PARAM,xe.PLAINTEXT,xe.PRE,xe.SCRIPT,xe.SECTION,xe.SELECT,xe.SOURCE,xe.STYLE,xe.SUMMARY,xe.TABLE,xe.TBODY,xe.TD,xe.TEMPLATE,xe.TEXTAREA,xe.TFOOT,xe.TH,xe.THEAD,xe.TITLE,xe.TR,xe.TRACK,xe.UL,xe.WBR,xe.XMP]),[Le.MATHML]:new Set([xe.MI,xe.MO,xe.MN,xe.MS,xe.MTEXT,xe.ANNOTATION_XML]),[Le.SVG]:new Set([xe.TITLE,xe.FOREIGN_OBJECT,xe.DESC]),[Le.XLINK]:new Set,[Le.XML]:new Set,[Le.XMLNS]:new Set},eT=new Set([xe.H1,xe.H2,xe.H3,xe.H4,xe.H5,xe.H6]);ne.STYLE,ne.SCRIPT,ne.XMP,ne.IFRAME,ne.NOEMBED,ne.NOFRAMES,ne.PLAINTEXT;var I;(function(t){t[t.DATA=0]="DATA",t[t.RCDATA=1]="RCDATA",t[t.RAWTEXT=2]="RAWTEXT",t[t.SCRIPT_DATA=3]="SCRIPT_DATA",t[t.PLAINTEXT=4]="PLAINTEXT",t[t.TAG_OPEN=5]="TAG_OPEN",t[t.END_TAG_OPEN=6]="END_TAG_OPEN",t[t.TAG_NAME=7]="TAG_NAME",t[t.RCDATA_LESS_THAN_SIGN=8]="RCDATA_LESS_THAN_SIGN",t[t.RCDATA_END_TAG_OPEN=9]="RCDATA_END_TAG_OPEN",t[t.RCDATA_END_TAG_NAME=10]="RCDATA_END_TAG_NAME",t[t.RAWTEXT_LESS_THAN_SIGN=11]="RAWTEXT_LESS_THAN_SIGN",t[t.RAWTEXT_END_TAG_OPEN=12]="RAWTEXT_END_TAG_OPEN",t[t.RAWTEXT_END_TAG_NAME=13]="RAWTEXT_END_TAG_NAME",t[t.SCRIPT_DATA_LESS_THAN_SIGN=14]="SCRIPT_DATA_LESS_THAN_SIGN",t[t.SCRIPT_DATA_END_TAG_OPEN=15]="SCRIPT_DATA_END_TAG_OPEN",t[t.SCRIPT_DATA_END_TAG_NAME=16]="SCRIPT_DATA_END_TAG_NAME",t[t.SCRIPT_DATA_ESCAPE_START=17]="SCRIPT_DATA_ESCAPE_START",t[t.SCRIPT_DATA_ESCAPE_START_DASH=18]="SCRIPT_DATA_ESCAPE_START_DASH",t[t.SCRIPT_DATA_ESCAPED=19]="SCRIPT_DATA_ESCAPED",t[t.SCRIPT_DATA_ESCAPED_DASH=20]="SCRIPT_DATA_ESCAPED_DASH",t[t.SCRIPT_DATA_ESCAPED_DASH_DASH=21]="SCRIPT_DATA_ESCAPED_DASH_DASH",t[t.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN=22]="SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN",t[t.SCRIPT_DATA_ESCAPED_END_TAG_OPEN=23]="SCRIPT_DATA_ESCAPED_END_TAG_OPEN",t[t.SCRIPT_DATA_ESCAPED_END_TAG_NAME=24]="SCRIPT_DATA_ESCAPED_END_TAG_NAME",t[t.SCRIPT_DATA_DOUBLE_ESCAPE_START=25]="SCRIPT_DATA_DOUBLE_ESCAPE_START",t[t.SCRIPT_DATA_DOUBLE_ESCAPED=26]="SCRIPT_DATA_DOUBLE_ESCAPED",t[t.SCRIPT_DATA_DOUBLE_ESCAPED_DASH=27]="SCRIPT_DATA_DOUBLE_ESCAPED_DASH",t[t.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH=28]="SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH",t[t.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN=29]="SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN",t[t.SCRIPT_DATA_DOUBLE_ESCAPE_END=30]="SCRIPT_DATA_DOUBLE_ESCAPE_END",t[t.BEFORE_ATTRIBUTE_NAME=31]="BEFORE_ATTRIBUTE_NAME",t[t.ATTRIBUTE_NAME=32]="ATTRIBUTE_NAME",t[t.AFTER_ATTRIBUTE_NAME=33]="AFTER_ATTRIBUTE_NAME",t[t.BEFORE_ATTRIBUTE_VALUE=34]="BEFORE_ATTRIBUTE_VALUE",t[t.ATTRIBUTE_VALUE_DOUBLE_QUOTED=35]="ATTRIBUTE_VALUE_DOUBLE_QUOTED",t[t.ATTRIBUTE_VALUE_SINGLE_QUOTED=36]="ATTRIBUTE_VALUE_SINGLE_QUOTED",t[t.ATTRIBUTE_VALUE_UNQUOTED=37]="ATTRIBUTE_VALUE_UNQUOTED",t[t.AFTER_ATTRIBUTE_VALUE_QUOTED=38]="AFTER_ATTRIBUTE_VALUE_QUOTED",t[t.SELF_CLOSING_START_TAG=39]="SELF_CLOSING_START_TAG",t[t.BOGUS_COMMENT=40]="BOGUS_COMMENT",t[t.MARKUP_DECLARATION_OPEN=41]="MARKUP_DECLARATION_OPEN",t[t.COMMENT_START=42]="COMMENT_START",t[t.COMMENT_START_DASH=43]="COMMENT_START_DASH",t[t.COMMENT=44]="COMMENT",t[t.COMMENT_LESS_THAN_SIGN=45]="COMMENT_LESS_THAN_SIGN",t[t.COMMENT_LESS_THAN_SIGN_BANG=46]="COMMENT_LESS_THAN_SIGN_BANG",t[t.COMMENT_LESS_THAN_SIGN_BANG_DASH=47]="COMMENT_LESS_THAN_SIGN_BANG_DASH",t[t.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH=48]="COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH",t[t.COMMENT_END_DASH=49]="COMMENT_END_DASH",t[t.COMMENT_END=50]="COMMENT_END",t[t.COMMENT_END_BANG=51]="COMMENT_END_BANG",t[t.DOCTYPE=52]="DOCTYPE",t[t.BEFORE_DOCTYPE_NAME=53]="BEFORE_DOCTYPE_NAME",t[t.DOCTYPE_NAME=54]="DOCTYPE_NAME",t[t.AFTER_DOCTYPE_NAME=55]="AFTER_DOCTYPE_NAME",t[t.AFTER_DOCTYPE_PUBLIC_KEYWORD=56]="AFTER_DOCTYPE_PUBLIC_KEYWORD",t[t.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER=57]="BEFORE_DOCTYPE_PUBLIC_IDENTIFIER",t[t.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED=58]="DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED",t[t.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED=59]="DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED",t[t.AFTER_DOCTYPE_PUBLIC_IDENTIFIER=60]="AFTER_DOCTYPE_PUBLIC_IDENTIFIER",t[t.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS=61]="BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS",t[t.AFTER_DOCTYPE_SYSTEM_KEYWORD=62]="AFTER_DOCTYPE_SYSTEM_KEYWORD",t[t.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER=63]="BEFORE_DOCTYPE_SYSTEM_IDENTIFIER",t[t.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED=64]="DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED",t[t.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED=65]="DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED",t[t.AFTER_DOCTYPE_SYSTEM_IDENTIFIER=66]="AFTER_DOCTYPE_SYSTEM_IDENTIFIER",t[t.BOGUS_DOCTYPE=67]="BOGUS_DOCTYPE",t[t.CDATA_SECTION=68]="CDATA_SECTION",t[t.CDATA_SECTION_BRACKET=69]="CDATA_SECTION_BRACKET",t[t.CDATA_SECTION_END=70]="CDATA_SECTION_END",t[t.CHARACTER_REFERENCE=71]="CHARACTER_REFERENCE",t[t.AMBIGUOUS_AMPERSAND=72]="AMBIGUOUS_AMPERSAND"})(I||(I={}));const el={DATA:I.DATA,RCDATA:I.RCDATA,RAWTEXT:I.RAWTEXT,SCRIPT_DATA:I.SCRIPT_DATA,PLAINTEXT:I.PLAINTEXT,CDATA_SECTION:I.CDATA_SECTION};function Ew(t){return t>=_.DIGIT_0&&t<=_.DIGIT_9}function k2(t){return t>=_.LATIN_CAPITAL_A&&t<=_.LATIN_CAPITAL_Z}function Aw(t){return t>=_.LATIN_SMALL_A&&t<=_.LATIN_SMALL_Z}function Lf(t){return Aw(t)||k2(t)}function Wy(t){return Lf(t)||Ew(t)}function Pg(t){return t+32}function eA(t){return t===_.SPACE||t===_.LINE_FEED||t===_.TABULATION||t===_.FORM_FEED}function Vy(t){return eA(t)||t===_.SOLIDUS||t===_.GREATER_THAN_SIGN}function Mw(t){return t===_.NULL?me.nullCharacterReference:t>1114111?me.characterReferenceOutsideUnicodeRange:KE(t)?me.surrogateCharacterReference:JE(t)?me.noncharacterCharacterReference:ZE(t)||t===_.CARRIAGE_RETURN?me.controlCharacterReference:null}class Dw{constructor(n,r){this.options=n,this.handler=r,this.paused=!1,this.inLoop=!1,this.inForeignNode=!1,this.lastStartTagName="",this.active=!1,this.state=I.DATA,this.returnState=I.DATA,this.entityStartPos=0,this.consumedAfterSnapshot=-1,this.currentCharacterToken=null,this.currentToken=null,this.currentAttr={name:"",value:""},this.preprocessor=new fw(r),this.currentLocation=this.getCurrentLocation(-1),this.entityDecoder=new vw(dw,(s,b)=>{this.preprocessor.pos=this.entityStartPos+b-1,this._flushCodePointConsumedAsCharacterReference(s)},r.onParseError?{missingSemicolonAfterCharacterReference:()=>{this._err(me.missingSemicolonAfterCharacterReference,1)},absenceOfDigitsInNumericCharacterReference:s=>{this._err(me.absenceOfDigitsInNumericCharacterReference,this.entityStartPos-this.preprocessor.pos+s)},validateNumericCharacterReference:s=>{const b=Mw(s);b&&this._err(b,1)}}:void 0)}_err(n,r=0){var s,b;(b=(s=this.handler).onParseError)===null||b===void 0||b.call(s,this.preprocessor.getError(n,r))}getCurrentLocation(n){return this.options.sourceCodeLocationInfo?{startLine:this.preprocessor.line,startCol:this.preprocessor.col-n,startOffset:this.preprocessor.offset-n,endLine:-1,endCol:-1,endOffset:-1}:null}_runParsingLoop(){if(!this.inLoop){for(this.inLoop=!0;this.active&&!this.paused;){this.consumedAfterSnapshot=0;const n=this._consume();this._ensureHibernation()||this._callState(n)}this.inLoop=!1}}pause(){this.paused=!0}resume(n){if(!this.paused)throw new Error("Parser was already resumed");this.paused=!1,!this.inLoop&&(this._runParsingLoop(),this.paused||n?.())}write(n,r,s){this.active=!0,this.preprocessor.write(n,r),this._runParsingLoop(),this.paused||s?.()}insertHtmlAtCurrentPos(n){this.active=!0,this.preprocessor.insertHtmlAtCurrentPos(n),this._runParsingLoop()}_ensureHibernation(){return this.preprocessor.endOfChunkHit?(this.preprocessor.retreat(this.consumedAfterSnapshot),this.consumedAfterSnapshot=0,this.active=!1,!0):!1}_consume(){return this.consumedAfterSnapshot++,this.preprocessor.advance()}_advanceBy(n){this.consumedAfterSnapshot+=n;for(let r=0;r<n;r++)this.preprocessor.advance()}_consumeSequenceIfMatch(n,r){return this.preprocessor.startsWith(n,r)?(this._advanceBy(n.length-1),!0):!1}_createStartTagToken(){this.currentToken={type:xt.START_TAG,tagName:"",tagID:y.UNKNOWN,selfClosing:!1,ackSelfClosing:!1,attrs:[],location:this.getCurrentLocation(1)}}_createEndTagToken(){this.currentToken={type:xt.END_TAG,tagName:"",tagID:y.UNKNOWN,selfClosing:!1,ackSelfClosing:!1,attrs:[],location:this.getCurrentLocation(2)}}_createCommentToken(n){this.currentToken={type:xt.COMMENT,data:"",location:this.getCurrentLocation(n)}}_createDoctypeToken(n){this.currentToken={type:xt.DOCTYPE,name:n,forceQuirks:!1,publicId:null,systemId:null,location:this.currentLocation}}_createCharacterToken(n,r){this.currentCharacterToken={type:n,chars:r,location:this.currentLocation}}_createAttr(n){this.currentAttr={name:n,value:""},this.currentLocation=this.getCurrentLocation(0)}_leaveAttrName(){var n,r;const s=this.currentToken;if($E(s,this.currentAttr.name)===null){if(s.attrs.push(this.currentAttr),s.location&&this.currentLocation){const b=(n=(r=s.location).attrs)!==null&&n!==void 0?n:r.attrs=Object.create(null);b[this.currentAttr.name]=this.currentLocation,this._leaveAttrValue()}}else this._err(me.duplicateAttribute)}_leaveAttrValue(){this.currentLocation&&(this.currentLocation.endLine=this.preprocessor.line,this.currentLocation.endCol=this.preprocessor.col,this.currentLocation.endOffset=this.preprocessor.offset)}prepareToken(n){this._emitCurrentCharacterToken(n.location),this.currentToken=null,n.location&&(n.location.endLine=this.preprocessor.line,n.location.endCol=this.preprocessor.col+1,n.location.endOffset=this.preprocessor.offset+1),this.currentLocation=this.getCurrentLocation(-1)}emitCurrentTagToken(){const n=this.currentToken;this.prepareToken(n),n.tagID=zm(n.tagName),n.type===xt.START_TAG?(this.lastStartTagName=n.tagName,this.handler.onStartTag(n)):(n.attrs.length>0&&this._err(me.endTagWithAttributes),n.selfClosing&&this._err(me.endTagWithTrailingSolidus),this.handler.onEndTag(n)),this.preprocessor.dropParsedChunk()}emitCurrentComment(n){this.prepareToken(n),this.handler.onComment(n),this.preprocessor.dropParsedChunk()}emitCurrentDoctype(n){this.prepareToken(n),this.handler.onDoctype(n),this.preprocessor.dropParsedChunk()}_emitCurrentCharacterToken(n){if(this.currentCharacterToken){switch(n&&this.currentCharacterToken.location&&(this.currentCharacterToken.location.endLine=n.startLine,this.currentCharacterToken.location.endCol=n.startCol,this.currentCharacterToken.location.endOffset=n.startOffset),this.currentCharacterToken.type){case xt.CHARACTER:{this.handler.onCharacter(this.currentCharacterToken);break}case xt.NULL_CHARACTER:{this.handler.onNullCharacter(this.currentCharacterToken);break}case xt.WHITESPACE_CHARACTER:{this.handler.onWhitespaceCharacter(this.currentCharacterToken);break}}this.currentCharacterToken=null}}_emitEOFToken(){const n=this.getCurrentLocation(0);n&&(n.endLine=n.startLine,n.endCol=n.startCol,n.endOffset=n.startOffset),this._emitCurrentCharacterToken(n),this.handler.onEof({type:xt.EOF,location:n}),this.active=!1}_appendCharToCurrentCharacterToken(n,r){if(this.currentCharacterToken)if(this.currentCharacterToken.type===n){this.currentCharacterToken.chars+=r;return}else this.currentLocation=this.getCurrentLocation(0),this._emitCurrentCharacterToken(this.currentLocation),this.preprocessor.dropParsedChunk();this._createCharacterToken(n,r)}_emitCodePoint(n){const r=eA(n)?xt.WHITESPACE_CHARACTER:n===_.NULL?xt.NULL_CHARACTER:xt.CHARACTER;this._appendCharToCurrentCharacterToken(r,String.fromCodePoint(n))}_emitChars(n){this._appendCharToCurrentCharacterToken(xt.CHARACTER,n)}_startCharacterReference(){this.returnState=this.state,this.state=I.CHARACTER_REFERENCE,this.entityStartPos=this.preprocessor.pos,this.entityDecoder.startEntity(this._isCharacterReferenceInAttribute()?ks.Attribute:ks.Legacy)}_isCharacterReferenceInAttribute(){return this.returnState===I.ATTRIBUTE_VALUE_DOUBLE_QUOTED||this.returnState===I.ATTRIBUTE_VALUE_SINGLE_QUOTED||this.returnState===I.ATTRIBUTE_VALUE_UNQUOTED}_flushCodePointConsumedAsCharacterReference(n){this._isCharacterReferenceInAttribute()?this.currentAttr.value+=String.fromCodePoint(n):this._emitCodePoint(n)}_callState(n){switch(this.state){case I.DATA:{this._stateData(n);break}case I.RCDATA:{this._stateRcdata(n);break}case I.RAWTEXT:{this._stateRawtext(n);break}case I.SCRIPT_DATA:{this._stateScriptData(n);break}case I.PLAINTEXT:{this._statePlaintext(n);break}case I.TAG_OPEN:{this._stateTagOpen(n);break}case I.END_TAG_OPEN:{this._stateEndTagOpen(n);break}case I.TAG_NAME:{this._stateTagName(n);break}case I.RCDATA_LESS_THAN_SIGN:{this._stateRcdataLessThanSign(n);break}case I.RCDATA_END_TAG_OPEN:{this._stateRcdataEndTagOpen(n);break}case I.RCDATA_END_TAG_NAME:{this._stateRcdataEndTagName(n);break}case I.RAWTEXT_LESS_THAN_SIGN:{this._stateRawtextLessThanSign(n);break}case I.RAWTEXT_END_TAG_OPEN:{this._stateRawtextEndTagOpen(n);break}case I.RAWTEXT_END_TAG_NAME:{this._stateRawtextEndTagName(n);break}case I.SCRIPT_DATA_LESS_THAN_SIGN:{this._stateScriptDataLessThanSign(n);break}case I.SCRIPT_DATA_END_TAG_OPEN:{this._stateScriptDataEndTagOpen(n);break}case I.SCRIPT_DATA_END_TAG_NAME:{this._stateScriptDataEndTagName(n);break}case I.SCRIPT_DATA_ESCAPE_START:{this._stateScriptDataEscapeStart(n);break}case I.SCRIPT_DATA_ESCAPE_START_DASH:{this._stateScriptDataEscapeStartDash(n);break}case I.SCRIPT_DATA_ESCAPED:{this._stateScriptDataEscaped(n);break}case I.SCRIPT_DATA_ESCAPED_DASH:{this._stateScriptDataEscapedDash(n);break}case I.SCRIPT_DATA_ESCAPED_DASH_DASH:{this._stateScriptDataEscapedDashDash(n);break}case I.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN:{this._stateScriptDataEscapedLessThanSign(n);break}case I.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:{this._stateScriptDataEscapedEndTagOpen(n);break}case I.SCRIPT_DATA_ESCAPED_END_TAG_NAME:{this._stateScriptDataEscapedEndTagName(n);break}case I.SCRIPT_DATA_DOUBLE_ESCAPE_START:{this._stateScriptDataDoubleEscapeStart(n);break}case I.SCRIPT_DATA_DOUBLE_ESCAPED:{this._stateScriptDataDoubleEscaped(n);break}case I.SCRIPT_DATA_DOUBLE_ESCAPED_DASH:{this._stateScriptDataDoubleEscapedDash(n);break}case I.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH:{this._stateScriptDataDoubleEscapedDashDash(n);break}case I.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN:{this._stateScriptDataDoubleEscapedLessThanSign(n);break}case I.SCRIPT_DATA_DOUBLE_ESCAPE_END:{this._stateScriptDataDoubleEscapeEnd(n);break}case I.BEFORE_ATTRIBUTE_NAME:{this._stateBeforeAttributeName(n);break}case I.ATTRIBUTE_NAME:{this._stateAttributeName(n);break}case I.AFTER_ATTRIBUTE_NAME:{this._stateAfterAttributeName(n);break}case I.BEFORE_ATTRIBUTE_VALUE:{this._stateBeforeAttributeValue(n);break}case I.ATTRIBUTE_VALUE_DOUBLE_QUOTED:{this._stateAttributeValueDoubleQuoted(n);break}case I.ATTRIBUTE_VALUE_SINGLE_QUOTED:{this._stateAttributeValueSingleQuoted(n);break}case I.ATTRIBUTE_VALUE_UNQUOTED:{this._stateAttributeValueUnquoted(n);break}case I.AFTER_ATTRIBUTE_VALUE_QUOTED:{this._stateAfterAttributeValueQuoted(n);break}case I.SELF_CLOSING_START_TAG:{this._stateSelfClosingStartTag(n);break}case I.BOGUS_COMMENT:{this._stateBogusComment(n);break}case I.MARKUP_DECLARATION_OPEN:{this._stateMarkupDeclarationOpen(n);break}case I.COMMENT_START:{this._stateCommentStart(n);break}case I.COMMENT_START_DASH:{this._stateCommentStartDash(n);break}case I.COMMENT:{this._stateComment(n);break}case I.COMMENT_LESS_THAN_SIGN:{this._stateCommentLessThanSign(n);break}case I.COMMENT_LESS_THAN_SIGN_BANG:{this._stateCommentLessThanSignBang(n);break}case I.COMMENT_LESS_THAN_SIGN_BANG_DASH:{this._stateCommentLessThanSignBangDash(n);break}case I.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH:{this._stateCommentLessThanSignBangDashDash(n);break}case I.COMMENT_END_DASH:{this._stateCommentEndDash(n);break}case I.COMMENT_END:{this._stateCommentEnd(n);break}case I.COMMENT_END_BANG:{this._stateCommentEndBang(n);break}case I.DOCTYPE:{this._stateDoctype(n);break}case I.BEFORE_DOCTYPE_NAME:{this._stateBeforeDoctypeName(n);break}case I.DOCTYPE_NAME:{this._stateDoctypeName(n);break}case I.AFTER_DOCTYPE_NAME:{this._stateAfterDoctypeName(n);break}case I.AFTER_DOCTYPE_PUBLIC_KEYWORD:{this._stateAfterDoctypePublicKeyword(n);break}case I.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER:{this._stateBeforeDoctypePublicIdentifier(n);break}case I.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED:{this._stateDoctypePublicIdentifierDoubleQuoted(n);break}case I.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED:{this._stateDoctypePublicIdentifierSingleQuoted(n);break}case I.AFTER_DOCTYPE_PUBLIC_IDENTIFIER:{this._stateAfterDoctypePublicIdentifier(n);break}case I.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS:{this._stateBetweenDoctypePublicAndSystemIdentifiers(n);break}case I.AFTER_DOCTYPE_SYSTEM_KEYWORD:{this._stateAfterDoctypeSystemKeyword(n);break}case I.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER:{this._stateBeforeDoctypeSystemIdentifier(n);break}case I.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED:{this._stateDoctypeSystemIdentifierDoubleQuoted(n);break}case I.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED:{this._stateDoctypeSystemIdentifierSingleQuoted(n);break}case I.AFTER_DOCTYPE_SYSTEM_IDENTIFIER:{this._stateAfterDoctypeSystemIdentifier(n);break}case I.BOGUS_DOCTYPE:{this._stateBogusDoctype(n);break}case I.CDATA_SECTION:{this._stateCdataSection(n);break}case I.CDATA_SECTION_BRACKET:{this._stateCdataSectionBracket(n);break}case I.CDATA_SECTION_END:{this._stateCdataSectionEnd(n);break}case I.CHARACTER_REFERENCE:{this._stateCharacterReference();break}case I.AMBIGUOUS_AMPERSAND:{this._stateAmbiguousAmpersand(n);break}default:throw new Error("Unknown state")}}_stateData(n){switch(n){case _.LESS_THAN_SIGN:{this.state=I.TAG_OPEN;break}case _.AMPERSAND:{this._startCharacterReference();break}case _.NULL:{this._err(me.unexpectedNullCharacter),this._emitCodePoint(n);break}case _.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(n)}}_stateRcdata(n){switch(n){case _.AMPERSAND:{this._startCharacterReference();break}case _.LESS_THAN_SIGN:{this.state=I.RCDATA_LESS_THAN_SIGN;break}case _.NULL:{this._err(me.unexpectedNullCharacter),this._emitChars(Ba);break}case _.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(n)}}_stateRawtext(n){switch(n){case _.LESS_THAN_SIGN:{this.state=I.RAWTEXT_LESS_THAN_SIGN;break}case _.NULL:{this._err(me.unexpectedNullCharacter),this._emitChars(Ba);break}case _.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(n)}}_stateScriptData(n){switch(n){case _.LESS_THAN_SIGN:{this.state=I.SCRIPT_DATA_LESS_THAN_SIGN;break}case _.NULL:{this._err(me.unexpectedNullCharacter),this._emitChars(Ba);break}case _.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(n)}}_statePlaintext(n){switch(n){case _.NULL:{this._err(me.unexpectedNullCharacter),this._emitChars(Ba);break}case _.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(n)}}_stateTagOpen(n){if(Lf(n))this._createStartTagToken(),this.state=I.TAG_NAME,this._stateTagName(n);else switch(n){case _.EXCLAMATION_MARK:{this.state=I.MARKUP_DECLARATION_OPEN;break}case _.SOLIDUS:{this.state=I.END_TAG_OPEN;break}case _.QUESTION_MARK:{this._err(me.unexpectedQuestionMarkInsteadOfTagName),this._createCommentToken(1),this.state=I.BOGUS_COMMENT,this._stateBogusComment(n);break}case _.EOF:{this._err(me.eofBeforeTagName),this._emitChars("<"),this._emitEOFToken();break}default:this._err(me.invalidFirstCharacterOfTagName),this._emitChars("<"),this.state=I.DATA,this._stateData(n)}}_stateEndTagOpen(n){if(Lf(n))this._createEndTagToken(),this.state=I.TAG_NAME,this._stateTagName(n);else switch(n){case _.GREATER_THAN_SIGN:{this._err(me.missingEndTagName),this.state=I.DATA;break}case _.EOF:{this._err(me.eofBeforeTagName),this._emitChars("</"),this._emitEOFToken();break}default:this._err(me.invalidFirstCharacterOfTagName),this._createCommentToken(2),this.state=I.BOGUS_COMMENT,this._stateBogusComment(n)}}_stateTagName(n){const r=this.currentToken;switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:{this.state=I.BEFORE_ATTRIBUTE_NAME;break}case _.SOLIDUS:{this.state=I.SELF_CLOSING_START_TAG;break}case _.GREATER_THAN_SIGN:{this.state=I.DATA,this.emitCurrentTagToken();break}case _.NULL:{this._err(me.unexpectedNullCharacter),r.tagName+=Ba;break}case _.EOF:{this._err(me.eofInTag),this._emitEOFToken();break}default:r.tagName+=String.fromCodePoint(k2(n)?Pg(n):n)}}_stateRcdataLessThanSign(n){n===_.SOLIDUS?this.state=I.RCDATA_END_TAG_OPEN:(this._emitChars("<"),this.state=I.RCDATA,this._stateRcdata(n))}_stateRcdataEndTagOpen(n){Lf(n)?(this.state=I.RCDATA_END_TAG_NAME,this._stateRcdataEndTagName(n)):(this._emitChars("</"),this.state=I.RCDATA,this._stateRcdata(n))}handleSpecialEndTag(n){if(!this.preprocessor.startsWith(this.lastStartTagName,!1))return!this._ensureHibernation();this._createEndTagToken();const r=this.currentToken;switch(r.tagName=this.lastStartTagName,this.preprocessor.peek(this.lastStartTagName.length)){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:return this._advanceBy(this.lastStartTagName.length),this.state=I.BEFORE_ATTRIBUTE_NAME,!1;case _.SOLIDUS:return this._advanceBy(this.lastStartTagName.length),this.state=I.SELF_CLOSING_START_TAG,!1;case _.GREATER_THAN_SIGN:return this._advanceBy(this.lastStartTagName.length),this.emitCurrentTagToken(),this.state=I.DATA,!1;default:return!this._ensureHibernation()}}_stateRcdataEndTagName(n){this.handleSpecialEndTag(n)&&(this._emitChars("</"),this.state=I.RCDATA,this._stateRcdata(n))}_stateRawtextLessThanSign(n){n===_.SOLIDUS?this.state=I.RAWTEXT_END_TAG_OPEN:(this._emitChars("<"),this.state=I.RAWTEXT,this._stateRawtext(n))}_stateRawtextEndTagOpen(n){Lf(n)?(this.state=I.RAWTEXT_END_TAG_NAME,this._stateRawtextEndTagName(n)):(this._emitChars("</"),this.state=I.RAWTEXT,this._stateRawtext(n))}_stateRawtextEndTagName(n){this.handleSpecialEndTag(n)&&(this._emitChars("</"),this.state=I.RAWTEXT,this._stateRawtext(n))}_stateScriptDataLessThanSign(n){switch(n){case _.SOLIDUS:{this.state=I.SCRIPT_DATA_END_TAG_OPEN;break}case _.EXCLAMATION_MARK:{this.state=I.SCRIPT_DATA_ESCAPE_START,this._emitChars("<!");break}default:this._emitChars("<"),this.state=I.SCRIPT_DATA,this._stateScriptData(n)}}_stateScriptDataEndTagOpen(n){Lf(n)?(this.state=I.SCRIPT_DATA_END_TAG_NAME,this._stateScriptDataEndTagName(n)):(this._emitChars("</"),this.state=I.SCRIPT_DATA,this._stateScriptData(n))}_stateScriptDataEndTagName(n){this.handleSpecialEndTag(n)&&(this._emitChars("</"),this.state=I.SCRIPT_DATA,this._stateScriptData(n))}_stateScriptDataEscapeStart(n){n===_.HYPHEN_MINUS?(this.state=I.SCRIPT_DATA_ESCAPE_START_DASH,this._emitChars("-")):(this.state=I.SCRIPT_DATA,this._stateScriptData(n))}_stateScriptDataEscapeStartDash(n){n===_.HYPHEN_MINUS?(this.state=I.SCRIPT_DATA_ESCAPED_DASH_DASH,this._emitChars("-")):(this.state=I.SCRIPT_DATA,this._stateScriptData(n))}_stateScriptDataEscaped(n){switch(n){case _.HYPHEN_MINUS:{this.state=I.SCRIPT_DATA_ESCAPED_DASH,this._emitChars("-");break}case _.LESS_THAN_SIGN:{this.state=I.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN;break}case _.NULL:{this._err(me.unexpectedNullCharacter),this._emitChars(Ba);break}case _.EOF:{this._err(me.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this._emitCodePoint(n)}}_stateScriptDataEscapedDash(n){switch(n){case _.HYPHEN_MINUS:{this.state=I.SCRIPT_DATA_ESCAPED_DASH_DASH,this._emitChars("-");break}case _.LESS_THAN_SIGN:{this.state=I.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN;break}case _.NULL:{this._err(me.unexpectedNullCharacter),this.state=I.SCRIPT_DATA_ESCAPED,this._emitChars(Ba);break}case _.EOF:{this._err(me.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=I.SCRIPT_DATA_ESCAPED,this._emitCodePoint(n)}}_stateScriptDataEscapedDashDash(n){switch(n){case _.HYPHEN_MINUS:{this._emitChars("-");break}case _.LESS_THAN_SIGN:{this.state=I.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN;break}case _.GREATER_THAN_SIGN:{this.state=I.SCRIPT_DATA,this._emitChars(">");break}case _.NULL:{this._err(me.unexpectedNullCharacter),this.state=I.SCRIPT_DATA_ESCAPED,this._emitChars(Ba);break}case _.EOF:{this._err(me.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=I.SCRIPT_DATA_ESCAPED,this._emitCodePoint(n)}}_stateScriptDataEscapedLessThanSign(n){n===_.SOLIDUS?this.state=I.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:Lf(n)?(this._emitChars("<"),this.state=I.SCRIPT_DATA_DOUBLE_ESCAPE_START,this._stateScriptDataDoubleEscapeStart(n)):(this._emitChars("<"),this.state=I.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(n))}_stateScriptDataEscapedEndTagOpen(n){Lf(n)?(this.state=I.SCRIPT_DATA_ESCAPED_END_TAG_NAME,this._stateScriptDataEscapedEndTagName(n)):(this._emitChars("</"),this.state=I.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(n))}_stateScriptDataEscapedEndTagName(n){this.handleSpecialEndTag(n)&&(this._emitChars("</"),this.state=I.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(n))}_stateScriptDataDoubleEscapeStart(n){if(this.preprocessor.startsWith(ui.SCRIPT,!1)&&Vy(this.preprocessor.peek(ui.SCRIPT.length))){this._emitCodePoint(n);for(let r=0;r<ui.SCRIPT.length;r++)this._emitCodePoint(this._consume());this.state=I.SCRIPT_DATA_DOUBLE_ESCAPED}else this._ensureHibernation()||(this.state=I.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(n))}_stateScriptDataDoubleEscaped(n){switch(n){case _.HYPHEN_MINUS:{this.state=I.SCRIPT_DATA_DOUBLE_ESCAPED_DASH,this._emitChars("-");break}case _.LESS_THAN_SIGN:{this.state=I.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN,this._emitChars("<");break}case _.NULL:{this._err(me.unexpectedNullCharacter),this._emitChars(Ba);break}case _.EOF:{this._err(me.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this._emitCodePoint(n)}}_stateScriptDataDoubleEscapedDash(n){switch(n){case _.HYPHEN_MINUS:{this.state=I.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH,this._emitChars("-");break}case _.LESS_THAN_SIGN:{this.state=I.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN,this._emitChars("<");break}case _.NULL:{this._err(me.unexpectedNullCharacter),this.state=I.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitChars(Ba);break}case _.EOF:{this._err(me.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=I.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitCodePoint(n)}}_stateScriptDataDoubleEscapedDashDash(n){switch(n){case _.HYPHEN_MINUS:{this._emitChars("-");break}case _.LESS_THAN_SIGN:{this.state=I.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN,this._emitChars("<");break}case _.GREATER_THAN_SIGN:{this.state=I.SCRIPT_DATA,this._emitChars(">");break}case _.NULL:{this._err(me.unexpectedNullCharacter),this.state=I.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitChars(Ba);break}case _.EOF:{this._err(me.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=I.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitCodePoint(n)}}_stateScriptDataDoubleEscapedLessThanSign(n){n===_.SOLIDUS?(this.state=I.SCRIPT_DATA_DOUBLE_ESCAPE_END,this._emitChars("/")):(this.state=I.SCRIPT_DATA_DOUBLE_ESCAPED,this._stateScriptDataDoubleEscaped(n))}_stateScriptDataDoubleEscapeEnd(n){if(this.preprocessor.startsWith(ui.SCRIPT,!1)&&Vy(this.preprocessor.peek(ui.SCRIPT.length))){this._emitCodePoint(n);for(let r=0;r<ui.SCRIPT.length;r++)this._emitCodePoint(this._consume());this.state=I.SCRIPT_DATA_ESCAPED}else this._ensureHibernation()||(this.state=I.SCRIPT_DATA_DOUBLE_ESCAPED,this._stateScriptDataDoubleEscaped(n))}_stateBeforeAttributeName(n){switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:break;case _.SOLIDUS:case _.GREATER_THAN_SIGN:case _.EOF:{this.state=I.AFTER_ATTRIBUTE_NAME,this._stateAfterAttributeName(n);break}case _.EQUALS_SIGN:{this._err(me.unexpectedEqualsSignBeforeAttributeName),this._createAttr("="),this.state=I.ATTRIBUTE_NAME;break}default:this._createAttr(""),this.state=I.ATTRIBUTE_NAME,this._stateAttributeName(n)}}_stateAttributeName(n){switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:case _.SOLIDUS:case _.GREATER_THAN_SIGN:case _.EOF:{this._leaveAttrName(),this.state=I.AFTER_ATTRIBUTE_NAME,this._stateAfterAttributeName(n);break}case _.EQUALS_SIGN:{this._leaveAttrName(),this.state=I.BEFORE_ATTRIBUTE_VALUE;break}case _.QUOTATION_MARK:case _.APOSTROPHE:case _.LESS_THAN_SIGN:{this._err(me.unexpectedCharacterInAttributeName),this.currentAttr.name+=String.fromCodePoint(n);break}case _.NULL:{this._err(me.unexpectedNullCharacter),this.currentAttr.name+=Ba;break}default:this.currentAttr.name+=String.fromCodePoint(k2(n)?Pg(n):n)}}_stateAfterAttributeName(n){switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:break;case _.SOLIDUS:{this.state=I.SELF_CLOSING_START_TAG;break}case _.EQUALS_SIGN:{this.state=I.BEFORE_ATTRIBUTE_VALUE;break}case _.GREATER_THAN_SIGN:{this.state=I.DATA,this.emitCurrentTagToken();break}case _.EOF:{this._err(me.eofInTag),this._emitEOFToken();break}default:this._createAttr(""),this.state=I.ATTRIBUTE_NAME,this._stateAttributeName(n)}}_stateBeforeAttributeValue(n){switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:break;case _.QUOTATION_MARK:{this.state=I.ATTRIBUTE_VALUE_DOUBLE_QUOTED;break}case _.APOSTROPHE:{this.state=I.ATTRIBUTE_VALUE_SINGLE_QUOTED;break}case _.GREATER_THAN_SIGN:{this._err(me.missingAttributeValue),this.state=I.DATA,this.emitCurrentTagToken();break}default:this.state=I.ATTRIBUTE_VALUE_UNQUOTED,this._stateAttributeValueUnquoted(n)}}_stateAttributeValueDoubleQuoted(n){switch(n){case _.QUOTATION_MARK:{this.state=I.AFTER_ATTRIBUTE_VALUE_QUOTED;break}case _.AMPERSAND:{this._startCharacterReference();break}case _.NULL:{this._err(me.unexpectedNullCharacter),this.currentAttr.value+=Ba;break}case _.EOF:{this._err(me.eofInTag),this._emitEOFToken();break}default:this.currentAttr.value+=String.fromCodePoint(n)}}_stateAttributeValueSingleQuoted(n){switch(n){case _.APOSTROPHE:{this.state=I.AFTER_ATTRIBUTE_VALUE_QUOTED;break}case _.AMPERSAND:{this._startCharacterReference();break}case _.NULL:{this._err(me.unexpectedNullCharacter),this.currentAttr.value+=Ba;break}case _.EOF:{this._err(me.eofInTag),this._emitEOFToken();break}default:this.currentAttr.value+=String.fromCodePoint(n)}}_stateAttributeValueUnquoted(n){switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:{this._leaveAttrValue(),this.state=I.BEFORE_ATTRIBUTE_NAME;break}case _.AMPERSAND:{this._startCharacterReference();break}case _.GREATER_THAN_SIGN:{this._leaveAttrValue(),this.state=I.DATA,this.emitCurrentTagToken();break}case _.NULL:{this._err(me.unexpectedNullCharacter),this.currentAttr.value+=Ba;break}case _.QUOTATION_MARK:case _.APOSTROPHE:case _.LESS_THAN_SIGN:case _.EQUALS_SIGN:case _.GRAVE_ACCENT:{this._err(me.unexpectedCharacterInUnquotedAttributeValue),this.currentAttr.value+=String.fromCodePoint(n);break}case _.EOF:{this._err(me.eofInTag),this._emitEOFToken();break}default:this.currentAttr.value+=String.fromCodePoint(n)}}_stateAfterAttributeValueQuoted(n){switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:{this._leaveAttrValue(),this.state=I.BEFORE_ATTRIBUTE_NAME;break}case _.SOLIDUS:{this._leaveAttrValue(),this.state=I.SELF_CLOSING_START_TAG;break}case _.GREATER_THAN_SIGN:{this._leaveAttrValue(),this.state=I.DATA,this.emitCurrentTagToken();break}case _.EOF:{this._err(me.eofInTag),this._emitEOFToken();break}default:this._err(me.missingWhitespaceBetweenAttributes),this.state=I.BEFORE_ATTRIBUTE_NAME,this._stateBeforeAttributeName(n)}}_stateSelfClosingStartTag(n){switch(n){case _.GREATER_THAN_SIGN:{const r=this.currentToken;r.selfClosing=!0,this.state=I.DATA,this.emitCurrentTagToken();break}case _.EOF:{this._err(me.eofInTag),this._emitEOFToken();break}default:this._err(me.unexpectedSolidusInTag),this.state=I.BEFORE_ATTRIBUTE_NAME,this._stateBeforeAttributeName(n)}}_stateBogusComment(n){const r=this.currentToken;switch(n){case _.GREATER_THAN_SIGN:{this.state=I.DATA,this.emitCurrentComment(r);break}case _.EOF:{this.emitCurrentComment(r),this._emitEOFToken();break}case _.NULL:{this._err(me.unexpectedNullCharacter),r.data+=Ba;break}default:r.data+=String.fromCodePoint(n)}}_stateMarkupDeclarationOpen(n){this._consumeSequenceIfMatch(ui.DASH_DASH,!0)?(this._createCommentToken(ui.DASH_DASH.length+1),this.state=I.COMMENT_START):this._consumeSequenceIfMatch(ui.DOCTYPE,!1)?(this.currentLocation=this.getCurrentLocation(ui.DOCTYPE.length+1),this.state=I.DOCTYPE):this._consumeSequenceIfMatch(ui.CDATA_START,!0)?this.inForeignNode?this.state=I.CDATA_SECTION:(this._err(me.cdataInHtmlContent),this._createCommentToken(ui.CDATA_START.length+1),this.currentToken.data="[CDATA[",this.state=I.BOGUS_COMMENT):this._ensureHibernation()||(this._err(me.incorrectlyOpenedComment),this._createCommentToken(2),this.state=I.BOGUS_COMMENT,this._stateBogusComment(n))}_stateCommentStart(n){switch(n){case _.HYPHEN_MINUS:{this.state=I.COMMENT_START_DASH;break}case _.GREATER_THAN_SIGN:{this._err(me.abruptClosingOfEmptyComment),this.state=I.DATA;const r=this.currentToken;this.emitCurrentComment(r);break}default:this.state=I.COMMENT,this._stateComment(n)}}_stateCommentStartDash(n){const r=this.currentToken;switch(n){case _.HYPHEN_MINUS:{this.state=I.COMMENT_END;break}case _.GREATER_THAN_SIGN:{this._err(me.abruptClosingOfEmptyComment),this.state=I.DATA,this.emitCurrentComment(r);break}case _.EOF:{this._err(me.eofInComment),this.emitCurrentComment(r),this._emitEOFToken();break}default:r.data+="-",this.state=I.COMMENT,this._stateComment(n)}}_stateComment(n){const r=this.currentToken;switch(n){case _.HYPHEN_MINUS:{this.state=I.COMMENT_END_DASH;break}case _.LESS_THAN_SIGN:{r.data+="<",this.state=I.COMMENT_LESS_THAN_SIGN;break}case _.NULL:{this._err(me.unexpectedNullCharacter),r.data+=Ba;break}case _.EOF:{this._err(me.eofInComment),this.emitCurrentComment(r),this._emitEOFToken();break}default:r.data+=String.fromCodePoint(n)}}_stateCommentLessThanSign(n){const r=this.currentToken;switch(n){case _.EXCLAMATION_MARK:{r.data+="!",this.state=I.COMMENT_LESS_THAN_SIGN_BANG;break}case _.LESS_THAN_SIGN:{r.data+="<";break}default:this.state=I.COMMENT,this._stateComment(n)}}_stateCommentLessThanSignBang(n){n===_.HYPHEN_MINUS?this.state=I.COMMENT_LESS_THAN_SIGN_BANG_DASH:(this.state=I.COMMENT,this._stateComment(n))}_stateCommentLessThanSignBangDash(n){n===_.HYPHEN_MINUS?this.state=I.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH:(this.state=I.COMMENT_END_DASH,this._stateCommentEndDash(n))}_stateCommentLessThanSignBangDashDash(n){n!==_.GREATER_THAN_SIGN&&n!==_.EOF&&this._err(me.nestedComment),this.state=I.COMMENT_END,this._stateCommentEnd(n)}_stateCommentEndDash(n){const r=this.currentToken;switch(n){case _.HYPHEN_MINUS:{this.state=I.COMMENT_END;break}case _.EOF:{this._err(me.eofInComment),this.emitCurrentComment(r),this._emitEOFToken();break}default:r.data+="-",this.state=I.COMMENT,this._stateComment(n)}}_stateCommentEnd(n){const r=this.currentToken;switch(n){case _.GREATER_THAN_SIGN:{this.state=I.DATA,this.emitCurrentComment(r);break}case _.EXCLAMATION_MARK:{this.state=I.COMMENT_END_BANG;break}case _.HYPHEN_MINUS:{r.data+="-";break}case _.EOF:{this._err(me.eofInComment),this.emitCurrentComment(r),this._emitEOFToken();break}default:r.data+="--",this.state=I.COMMENT,this._stateComment(n)}}_stateCommentEndBang(n){const r=this.currentToken;switch(n){case _.HYPHEN_MINUS:{r.data+="--!",this.state=I.COMMENT_END_DASH;break}case _.GREATER_THAN_SIGN:{this._err(me.incorrectlyClosedComment),this.state=I.DATA,this.emitCurrentComment(r);break}case _.EOF:{this._err(me.eofInComment),this.emitCurrentComment(r),this._emitEOFToken();break}default:r.data+="--!",this.state=I.COMMENT,this._stateComment(n)}}_stateDoctype(n){switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:{this.state=I.BEFORE_DOCTYPE_NAME;break}case _.GREATER_THAN_SIGN:{this.state=I.BEFORE_DOCTYPE_NAME,this._stateBeforeDoctypeName(n);break}case _.EOF:{this._err(me.eofInDoctype),this._createDoctypeToken(null);const r=this.currentToken;r.forceQuirks=!0,this.emitCurrentDoctype(r),this._emitEOFToken();break}default:this._err(me.missingWhitespaceBeforeDoctypeName),this.state=I.BEFORE_DOCTYPE_NAME,this._stateBeforeDoctypeName(n)}}_stateBeforeDoctypeName(n){if(k2(n))this._createDoctypeToken(String.fromCharCode(Pg(n))),this.state=I.DOCTYPE_NAME;else switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:break;case _.NULL:{this._err(me.unexpectedNullCharacter),this._createDoctypeToken(Ba),this.state=I.DOCTYPE_NAME;break}case _.GREATER_THAN_SIGN:{this._err(me.missingDoctypeName),this._createDoctypeToken(null);const r=this.currentToken;r.forceQuirks=!0,this.emitCurrentDoctype(r),this.state=I.DATA;break}case _.EOF:{this._err(me.eofInDoctype),this._createDoctypeToken(null);const r=this.currentToken;r.forceQuirks=!0,this.emitCurrentDoctype(r),this._emitEOFToken();break}default:this._createDoctypeToken(String.fromCodePoint(n)),this.state=I.DOCTYPE_NAME}}_stateDoctypeName(n){const r=this.currentToken;switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:{this.state=I.AFTER_DOCTYPE_NAME;break}case _.GREATER_THAN_SIGN:{this.state=I.DATA,this.emitCurrentDoctype(r);break}case _.NULL:{this._err(me.unexpectedNullCharacter),r.name+=Ba;break}case _.EOF:{this._err(me.eofInDoctype),r.forceQuirks=!0,this.emitCurrentDoctype(r),this._emitEOFToken();break}default:r.name+=String.fromCodePoint(k2(n)?Pg(n):n)}}_stateAfterDoctypeName(n){const r=this.currentToken;switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:break;case _.GREATER_THAN_SIGN:{this.state=I.DATA,this.emitCurrentDoctype(r);break}case _.EOF:{this._err(me.eofInDoctype),r.forceQuirks=!0,this.emitCurrentDoctype(r),this._emitEOFToken();break}default:this._consumeSequenceIfMatch(ui.PUBLIC,!1)?this.state=I.AFTER_DOCTYPE_PUBLIC_KEYWORD:this._consumeSequenceIfMatch(ui.SYSTEM,!1)?this.state=I.AFTER_DOCTYPE_SYSTEM_KEYWORD:this._ensureHibernation()||(this._err(me.invalidCharacterSequenceAfterDoctypeName),r.forceQuirks=!0,this.state=I.BOGUS_DOCTYPE,this._stateBogusDoctype(n))}}_stateAfterDoctypePublicKeyword(n){const r=this.currentToken;switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:{this.state=I.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER;break}case _.QUOTATION_MARK:{this._err(me.missingWhitespaceAfterDoctypePublicKeyword),r.publicId="",this.state=I.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED;break}case _.APOSTROPHE:{this._err(me.missingWhitespaceAfterDoctypePublicKeyword),r.publicId="",this.state=I.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED;break}case _.GREATER_THAN_SIGN:{this._err(me.missingDoctypePublicIdentifier),r.forceQuirks=!0,this.state=I.DATA,this.emitCurrentDoctype(r);break}case _.EOF:{this._err(me.eofInDoctype),r.forceQuirks=!0,this.emitCurrentDoctype(r),this._emitEOFToken();break}default:this._err(me.missingQuoteBeforeDoctypePublicIdentifier),r.forceQuirks=!0,this.state=I.BOGUS_DOCTYPE,this._stateBogusDoctype(n)}}_stateBeforeDoctypePublicIdentifier(n){const r=this.currentToken;switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:break;case _.QUOTATION_MARK:{r.publicId="",this.state=I.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED;break}case _.APOSTROPHE:{r.publicId="",this.state=I.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED;break}case _.GREATER_THAN_SIGN:{this._err(me.missingDoctypePublicIdentifier),r.forceQuirks=!0,this.state=I.DATA,this.emitCurrentDoctype(r);break}case _.EOF:{this._err(me.eofInDoctype),r.forceQuirks=!0,this.emitCurrentDoctype(r),this._emitEOFToken();break}default:this._err(me.missingQuoteBeforeDoctypePublicIdentifier),r.forceQuirks=!0,this.state=I.BOGUS_DOCTYPE,this._stateBogusDoctype(n)}}_stateDoctypePublicIdentifierDoubleQuoted(n){const r=this.currentToken;switch(n){case _.QUOTATION_MARK:{this.state=I.AFTER_DOCTYPE_PUBLIC_IDENTIFIER;break}case _.NULL:{this._err(me.unexpectedNullCharacter),r.publicId+=Ba;break}case _.GREATER_THAN_SIGN:{this._err(me.abruptDoctypePublicIdentifier),r.forceQuirks=!0,this.emitCurrentDoctype(r),this.state=I.DATA;break}case _.EOF:{this._err(me.eofInDoctype),r.forceQuirks=!0,this.emitCurrentDoctype(r),this._emitEOFToken();break}default:r.publicId+=String.fromCodePoint(n)}}_stateDoctypePublicIdentifierSingleQuoted(n){const r=this.currentToken;switch(n){case _.APOSTROPHE:{this.state=I.AFTER_DOCTYPE_PUBLIC_IDENTIFIER;break}case _.NULL:{this._err(me.unexpectedNullCharacter),r.publicId+=Ba;break}case _.GREATER_THAN_SIGN:{this._err(me.abruptDoctypePublicIdentifier),r.forceQuirks=!0,this.emitCurrentDoctype(r),this.state=I.DATA;break}case _.EOF:{this._err(me.eofInDoctype),r.forceQuirks=!0,this.emitCurrentDoctype(r),this._emitEOFToken();break}default:r.publicId+=String.fromCodePoint(n)}}_stateAfterDoctypePublicIdentifier(n){const r=this.currentToken;switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:{this.state=I.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS;break}case _.GREATER_THAN_SIGN:{this.state=I.DATA,this.emitCurrentDoctype(r);break}case _.QUOTATION_MARK:{this._err(me.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers),r.systemId="",this.state=I.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED;break}case _.APOSTROPHE:{this._err(me.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers),r.systemId="",this.state=I.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED;break}case _.EOF:{this._err(me.eofInDoctype),r.forceQuirks=!0,this.emitCurrentDoctype(r),this._emitEOFToken();break}default:this._err(me.missingQuoteBeforeDoctypeSystemIdentifier),r.forceQuirks=!0,this.state=I.BOGUS_DOCTYPE,this._stateBogusDoctype(n)}}_stateBetweenDoctypePublicAndSystemIdentifiers(n){const r=this.currentToken;switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:break;case _.GREATER_THAN_SIGN:{this.emitCurrentDoctype(r),this.state=I.DATA;break}case _.QUOTATION_MARK:{r.systemId="",this.state=I.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED;break}case _.APOSTROPHE:{r.systemId="",this.state=I.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED;break}case _.EOF:{this._err(me.eofInDoctype),r.forceQuirks=!0,this.emitCurrentDoctype(r),this._emitEOFToken();break}default:this._err(me.missingQuoteBeforeDoctypeSystemIdentifier),r.forceQuirks=!0,this.state=I.BOGUS_DOCTYPE,this._stateBogusDoctype(n)}}_stateAfterDoctypeSystemKeyword(n){const r=this.currentToken;switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:{this.state=I.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER;break}case _.QUOTATION_MARK:{this._err(me.missingWhitespaceAfterDoctypeSystemKeyword),r.systemId="",this.state=I.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED;break}case _.APOSTROPHE:{this._err(me.missingWhitespaceAfterDoctypeSystemKeyword),r.systemId="",this.state=I.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED;break}case _.GREATER_THAN_SIGN:{this._err(me.missingDoctypeSystemIdentifier),r.forceQuirks=!0,this.state=I.DATA,this.emitCurrentDoctype(r);break}case _.EOF:{this._err(me.eofInDoctype),r.forceQuirks=!0,this.emitCurrentDoctype(r),this._emitEOFToken();break}default:this._err(me.missingQuoteBeforeDoctypeSystemIdentifier),r.forceQuirks=!0,this.state=I.BOGUS_DOCTYPE,this._stateBogusDoctype(n)}}_stateBeforeDoctypeSystemIdentifier(n){const r=this.currentToken;switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:break;case _.QUOTATION_MARK:{r.systemId="",this.state=I.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED;break}case _.APOSTROPHE:{r.systemId="",this.state=I.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED;break}case _.GREATER_THAN_SIGN:{this._err(me.missingDoctypeSystemIdentifier),r.forceQuirks=!0,this.state=I.DATA,this.emitCurrentDoctype(r);break}case _.EOF:{this._err(me.eofInDoctype),r.forceQuirks=!0,this.emitCurrentDoctype(r),this._emitEOFToken();break}default:this._err(me.missingQuoteBeforeDoctypeSystemIdentifier),r.forceQuirks=!0,this.state=I.BOGUS_DOCTYPE,this._stateBogusDoctype(n)}}_stateDoctypeSystemIdentifierDoubleQuoted(n){const r=this.currentToken;switch(n){case _.QUOTATION_MARK:{this.state=I.AFTER_DOCTYPE_SYSTEM_IDENTIFIER;break}case _.NULL:{this._err(me.unexpectedNullCharacter),r.systemId+=Ba;break}case _.GREATER_THAN_SIGN:{this._err(me.abruptDoctypeSystemIdentifier),r.forceQuirks=!0,this.emitCurrentDoctype(r),this.state=I.DATA;break}case _.EOF:{this._err(me.eofInDoctype),r.forceQuirks=!0,this.emitCurrentDoctype(r),this._emitEOFToken();break}default:r.systemId+=String.fromCodePoint(n)}}_stateDoctypeSystemIdentifierSingleQuoted(n){const r=this.currentToken;switch(n){case _.APOSTROPHE:{this.state=I.AFTER_DOCTYPE_SYSTEM_IDENTIFIER;break}case _.NULL:{this._err(me.unexpectedNullCharacter),r.systemId+=Ba;break}case _.GREATER_THAN_SIGN:{this._err(me.abruptDoctypeSystemIdentifier),r.forceQuirks=!0,this.emitCurrentDoctype(r),this.state=I.DATA;break}case _.EOF:{this._err(me.eofInDoctype),r.forceQuirks=!0,this.emitCurrentDoctype(r),this._emitEOFToken();break}default:r.systemId+=String.fromCodePoint(n)}}_stateAfterDoctypeSystemIdentifier(n){const r=this.currentToken;switch(n){case _.SPACE:case _.LINE_FEED:case _.TABULATION:case _.FORM_FEED:break;case _.GREATER_THAN_SIGN:{this.emitCurrentDoctype(r),this.state=I.DATA;break}case _.EOF:{this._err(me.eofInDoctype),r.forceQuirks=!0,this.emitCurrentDoctype(r),this._emitEOFToken();break}default:this._err(me.unexpectedCharacterAfterDoctypeSystemIdentifier),this.state=I.BOGUS_DOCTYPE,this._stateBogusDoctype(n)}}_stateBogusDoctype(n){const r=this.currentToken;switch(n){case _.GREATER_THAN_SIGN:{this.emitCurrentDoctype(r),this.state=I.DATA;break}case _.NULL:{this._err(me.unexpectedNullCharacter);break}case _.EOF:{this.emitCurrentDoctype(r),this._emitEOFToken();break}}}_stateCdataSection(n){switch(n){case _.RIGHT_SQUARE_BRACKET:{this.state=I.CDATA_SECTION_BRACKET;break}case _.EOF:{this._err(me.eofInCdata),this._emitEOFToken();break}default:this._emitCodePoint(n)}}_stateCdataSectionBracket(n){n===_.RIGHT_SQUARE_BRACKET?this.state=I.CDATA_SECTION_END:(this._emitChars("]"),this.state=I.CDATA_SECTION,this._stateCdataSection(n))}_stateCdataSectionEnd(n){switch(n){case _.GREATER_THAN_SIGN:{this.state=I.DATA;break}case _.RIGHT_SQUARE_BRACKET:{this._emitChars("]");break}default:this._emitChars("]]"),this.state=I.CDATA_SECTION,this._stateCdataSection(n)}}_stateCharacterReference(){let n=this.entityDecoder.write(this.preprocessor.html,this.preprocessor.pos);if(n<0)if(this.preprocessor.lastChunkWritten)n=this.entityDecoder.end();else{this.active=!1,this.preprocessor.pos=this.preprocessor.html.length-1,this.consumedAfterSnapshot=0,this.preprocessor.endOfChunkHit=!0;return}n===0?(this.preprocessor.pos=this.entityStartPos,this._flushCodePointConsumedAsCharacterReference(_.AMPERSAND),this.state=!this._isCharacterReferenceInAttribute()&&Wy(this.preprocessor.peek(1))?I.AMBIGUOUS_AMPERSAND:this.returnState):this.state=this.returnState}_stateAmbiguousAmpersand(n){Wy(n)?this._flushCodePointConsumedAsCharacterReference(n):(n===_.SEMICOLON&&this._err(me.unknownNamedCharacterReference),this.state=this.returnState,this._callState(n))}}const tA=new Set([y.DD,y.DT,y.LI,y.OPTGROUP,y.OPTION,y.P,y.RB,y.RP,y.RT,y.RTC]),qy=new Set([...tA,y.CAPTION,y.COLGROUP,y.TBODY,y.TD,y.TFOOT,y.TH,y.THEAD,y.TR]),l8=new Set([y.APPLET,y.CAPTION,y.HTML,y.MARQUEE,y.OBJECT,y.TABLE,y.TD,y.TEMPLATE,y.TH]),Lw=new Set([...l8,y.OL,y.UL]),zw=new Set([...l8,y.BUTTON]),jy=new Set([y.ANNOTATION_XML,y.MI,y.MN,y.MO,y.MS,y.MTEXT]),Yy=new Set([y.DESC,y.FOREIGN_OBJECT,y.TITLE]),xw=new Set([y.TR,y.TEMPLATE,y.HTML]),Rw=new Set([y.TBODY,y.TFOOT,y.THEAD,y.TEMPLATE,y.HTML]),Nw=new Set([y.TABLE,y.TEMPLATE,y.HTML]),Bw=new Set([y.TD,y.TH]);class Ow{get currentTmplContentOrNode(){return this._isInTemplate()?this.treeAdapter.getTemplateContent(this.current):this.current}constructor(n,r,s){this.treeAdapter=r,this.handler=s,this.items=[],this.tagIDs=[],this.stackTop=-1,this.tmplCount=0,this.currentTagId=y.UNKNOWN,this.current=n}_indexOf(n){return this.items.lastIndexOf(n,this.stackTop)}_isInTemplate(){return this.currentTagId===y.TEMPLATE&&this.treeAdapter.getNamespaceURI(this.current)===Le.HTML}_updateCurrentElement(){this.current=this.items[this.stackTop],this.currentTagId=this.tagIDs[this.stackTop]}push(n,r){this.stackTop++,this.items[this.stackTop]=n,this.current=n,this.tagIDs[this.stackTop]=r,this.currentTagId=r,this._isInTemplate()&&this.tmplCount++,this.handler.onItemPush(n,r,!0)}pop(){const n=this.current;this.tmplCount>0&&this._isInTemplate()&&this.tmplCount--,this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(n,!0)}replace(n,r){const s=this._indexOf(n);this.items[s]=r,s===this.stackTop&&(this.current=r)}insertAfter(n,r,s){const b=this._indexOf(n)+1;this.items.splice(b,0,r),this.tagIDs.splice(b,0,s),this.stackTop++,b===this.stackTop&&this._updateCurrentElement(),this.current&&this.currentTagId!==void 0&&this.handler.onItemPush(this.current,this.currentTagId,b===this.stackTop)}popUntilTagNamePopped(n){let r=this.stackTop+1;do r=this.tagIDs.lastIndexOf(n,r-1);while(r>0&&this.treeAdapter.getNamespaceURI(this.items[r])!==Le.HTML);this.shortenToLength(Math.max(r,0))}shortenToLength(n){for(;this.stackTop>=n;){const r=this.current;this.tmplCount>0&&this._isInTemplate()&&(this.tmplCount-=1),this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(r,this.stackTop<n)}}popUntilElementPopped(n){const r=this._indexOf(n);this.shortenToLength(Math.max(r,0))}popUntilPopped(n,r){const s=this._indexOfTagNames(n,r);this.shortenToLength(Math.max(s,0))}popUntilNumberedHeaderPopped(){this.popUntilPopped(eT,Le.HTML)}popUntilTableCellPopped(){this.popUntilPopped(Bw,Le.HTML)}popAllUpToHtmlElement(){this.tmplCount=0,this.shortenToLength(1)}_indexOfTagNames(n,r){for(let s=this.stackTop;s>=0;s--)if(n.has(this.tagIDs[s])&&this.treeAdapter.getNamespaceURI(this.items[s])===r)return s;return-1}clearBackTo(n,r){const s=this._indexOfTagNames(n,r);this.shortenToLength(s+1)}clearBackToTableContext(){this.clearBackTo(Nw,Le.HTML)}clearBackToTableBodyContext(){this.clearBackTo(Rw,Le.HTML)}clearBackToTableRowContext(){this.clearBackTo(xw,Le.HTML)}remove(n){const r=this._indexOf(n);r>=0&&(r===this.stackTop?this.pop():(this.items.splice(r,1),this.tagIDs.splice(r,1),this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(n,!1)))}tryPeekProperlyNestedBodyElement(){return this.stackTop>=1&&this.tagIDs[1]===y.BODY?this.items[1]:null}contains(n){return this._indexOf(n)>-1}getCommonAncestor(n){const r=this._indexOf(n)-1;return r>=0?this.items[r]:null}isRootHtmlElementCurrent(){return this.stackTop===0&&this.tagIDs[0]===y.HTML}hasInDynamicScope(n,r){for(let s=this.stackTop;s>=0;s--){const b=this.tagIDs[s];switch(this.treeAdapter.getNamespaceURI(this.items[s])){case Le.HTML:{if(b===n)return!0;if(r.has(b))return!1;break}case Le.SVG:{if(Yy.has(b))return!1;break}case Le.MATHML:{if(jy.has(b))return!1;break}}}return!0}hasInScope(n){return this.hasInDynamicScope(n,l8)}hasInListItemScope(n){return this.hasInDynamicScope(n,Lw)}hasInButtonScope(n){return this.hasInDynamicScope(n,zw)}hasNumberedHeaderInScope(){for(let n=this.stackTop;n>=0;n--){const r=this.tagIDs[n];switch(this.treeAdapter.getNamespaceURI(this.items[n])){case Le.HTML:{if(eT.has(r))return!0;if(l8.has(r))return!1;break}case Le.SVG:{if(Yy.has(r))return!1;break}case Le.MATHML:{if(jy.has(r))return!1;break}}}return!0}hasInTableScope(n){for(let r=this.stackTop;r>=0;r--)if(this.treeAdapter.getNamespaceURI(this.items[r])===Le.HTML)switch(this.tagIDs[r]){case n:return!0;case y.TABLE:case y.HTML:return!1}return!0}hasTableBodyContextInTableScope(){for(let n=this.stackTop;n>=0;n--)if(this.treeAdapter.getNamespaceURI(this.items[n])===Le.HTML)switch(this.tagIDs[n]){case y.TBODY:case y.THEAD:case y.TFOOT:return!0;case y.TABLE:case y.HTML:return!1}return!0}hasInSelectScope(n){for(let r=this.stackTop;r>=0;r--)if(this.treeAdapter.getNamespaceURI(this.items[r])===Le.HTML)switch(this.tagIDs[r]){case n:return!0;case y.OPTION:case y.OPTGROUP:break;default:return!1}return!0}generateImpliedEndTags(){for(;this.currentTagId!==void 0&&tA.has(this.currentTagId);)this.pop()}generateImpliedEndTagsThoroughly(){for(;this.currentTagId!==void 0&&qy.has(this.currentTagId);)this.pop()}generateImpliedEndTagsWithExclusion(n){for(;this.currentTagId!==void 0&&this.currentTagId!==n&&qy.has(this.currentTagId);)this.pop()}}const x6=3;var gu;(function(t){t[t.Marker=0]="Marker",t[t.Element=1]="Element"})(gu||(gu={}));const Qy={type:gu.Marker};class _w{constructor(n){this.treeAdapter=n,this.entries=[],this.bookmark=null}_getNoahArkConditionCandidates(n,r){const s=[],b=r.length,h=this.treeAdapter.getTagName(n),p=this.treeAdapter.getNamespaceURI(n);for(let T=0;T<this.entries.length;T++){const E=this.entries[T];if(E.type===gu.Marker)break;const{element:A}=E;if(this.treeAdapter.getTagName(A)===h&&this.treeAdapter.getNamespaceURI(A)===p){const M=this.treeAdapter.getAttrList(A);M.length===b&&s.push({idx:T,attrs:M})}}return s}_ensureNoahArkCondition(n){if(this.entries.length<x6)return;const r=this.treeAdapter.getAttrList(n),s=this._getNoahArkConditionCandidates(n,r);if(s.length<x6)return;const b=new Map(r.map(p=>[p.name,p.value]));let h=0;for(let p=0;p<s.length;p++){const T=s[p];T.attrs.every(E=>b.get(E.name)===E.value)&&(h+=1,h>=x6&&this.entries.splice(T.idx,1))}}insertMarker(){this.entries.unshift(Qy)}pushElement(n,r){this._ensureNoahArkCondition(n),this.entries.unshift({type:gu.Element,element:n,token:r})}insertElementAfterBookmark(n,r){const s=this.entries.indexOf(this.bookmark);this.entries.splice(s,0,{type:gu.Element,element:n,token:r})}removeEntry(n){const r=this.entries.indexOf(n);r!==-1&&this.entries.splice(r,1)}clearToLastMarker(){const n=this.entries.indexOf(Qy);n===-1?this.entries.length=0:this.entries.splice(0,n+1)}getElementEntryInScopeWithTagName(n){const r=this.entries.find(s=>s.type===gu.Marker||this.treeAdapter.getTagName(s.element)===n);return r&&r.type===gu.Element?r:null}getElementEntry(n){return this.entries.find(r=>r.type===gu.Element&&r.element===n)}}const zf={createDocument(){return{nodeName:"#document",mode:qo.NO_QUIRKS,childNodes:[]}},createDocumentFragment(){return{nodeName:"#document-fragment",childNodes:[]}},createElement(t,n,r){return{nodeName:t,tagName:t,attrs:r,namespaceURI:n,childNodes:[],parentNode:null}},createCommentNode(t){return{nodeName:"#comment",data:t,parentNode:null}},createTextNode(t){return{nodeName:"#text",value:t,parentNode:null}},appendChild(t,n){t.childNodes.push(n),n.parentNode=t},insertBefore(t,n,r){const s=t.childNodes.indexOf(r);t.childNodes.splice(s,0,n),n.parentNode=t},setTemplateContent(t,n){t.content=n},getTemplateContent(t){return t.content},setDocumentType(t,n,r,s){const b=t.childNodes.find(h=>h.nodeName==="#documentType");if(b)b.name=n,b.publicId=r,b.systemId=s;else{const h={nodeName:"#documentType",name:n,publicId:r,systemId:s,parentNode:null};zf.appendChild(t,h)}},setDocumentMode(t,n){t.mode=n},getDocumentMode(t){return t.mode},detachNode(t){if(t.parentNode){const n=t.parentNode.childNodes.indexOf(t);t.parentNode.childNodes.splice(n,1),t.parentNode=null}},insertText(t,n){if(t.childNodes.length>0){const r=t.childNodes[t.childNodes.length-1];if(zf.isTextNode(r)){r.value+=n;return}}zf.appendChild(t,zf.createTextNode(n))},insertTextBefore(t,n,r){const s=t.childNodes[t.childNodes.indexOf(r)-1];s&&zf.isTextNode(s)?s.value+=n:zf.insertBefore(t,zf.createTextNode(n),r)},adoptAttributes(t,n){const r=new Set(t.attrs.map(s=>s.name));for(let s=0;s<n.length;s++)r.has(n[s].name)||t.attrs.push(n[s])},getFirstChild(t){return t.childNodes[0]},getChildNodes(t){return t.childNodes},getParentNode(t){return t.parentNode},getAttrList(t){return t.attrs},getTagName(t){return t.tagName},getNamespaceURI(t){return t.namespaceURI},getTextNodeContent(t){return t.value},getCommentNodeContent(t){return t.data},getDocumentTypeNodeName(t){return t.name},getDocumentTypeNodePublicId(t){return t.publicId},getDocumentTypeNodeSystemId(t){return t.systemId},isTextNode(t){return t.nodeName==="#text"},isCommentNode(t){return t.nodeName==="#comment"},isDocumentTypeNode(t){return t.nodeName==="#documentType"},isElementNode(t){return Object.prototype.hasOwnProperty.call(t,"tagName")},setNodeSourceCodeLocation(t,n){t.sourceCodeLocation=n},getNodeSourceCodeLocation(t){return t.sourceCodeLocation},updateNodeSourceCodeLocation(t,n){t.sourceCodeLocation={...t.sourceCodeLocation,...n}}},aA="html",Iw="about:legacy-compat",ww="http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd",lA=["+//silmaril//dtd html pro v0r11 19970101//","-//as//dtd html 3.0 aswedit + extensions//","-//advasoft ltd//dtd html 3.0 aswedit + extensions//","-//ietf//dtd html 2.0 level 1//","-//ietf//dtd html 2.0 level 2//","-//ietf//dtd html 2.0 strict level 1//","-//ietf//dtd html 2.0 strict level 2//","-//ietf//dtd html 2.0 strict//","-//ietf//dtd html 2.0//","-//ietf//dtd html 2.1e//","-//ietf//dtd html 3.0//","-//ietf//dtd html 3.2 final//","-//ietf//dtd html 3.2//","-//ietf//dtd html 3//","-//ietf//dtd html level 0//","-//ietf//dtd html level 1//","-//ietf//dtd html level 2//","-//ietf//dtd html level 3//","-//ietf//dtd html strict level 0//","-//ietf//dtd html strict level 1//","-//ietf//dtd html strict level 2//","-//ietf//dtd html strict level 3//","-//ietf//dtd html strict//","-//ietf//dtd html//","-//metrius//dtd metrius presentational//","-//microsoft//dtd internet explorer 2.0 html strict//","-//microsoft//dtd internet explorer 2.0 html//","-//microsoft//dtd internet explorer 2.0 tables//","-//microsoft//dtd internet explorer 3.0 html strict//","-//microsoft//dtd internet explorer 3.0 html//","-//microsoft//dtd internet explorer 3.0 tables//","-//netscape comm. corp.//dtd html//","-//netscape comm. corp.//dtd strict html//","-//o'reilly and associates//dtd html 2.0//","-//o'reilly and associates//dtd html extended 1.0//","-//o'reilly and associates//dtd html extended relaxed 1.0//","-//sq//dtd html 2.0 hotmetal + extensions//","-//softquad software//dtd hotmetal pro 6.0::19990601::extensions to html 4.0//","-//softquad//dtd hotmetal pro 4.0::19971010::extensions to html 4.0//","-//spyglass//dtd html 2.0 extended//","-//sun microsystems corp.//dtd hotjava html//","-//sun microsystems corp.//dtd hotjava strict html//","-//w3c//dtd html 3 1995-03-24//","-//w3c//dtd html 3.2 draft//","-//w3c//dtd html 3.2 final//","-//w3c//dtd html 3.2//","-//w3c//dtd html 3.2s draft//","-//w3c//dtd html 4.0 frameset//","-//w3c//dtd html 4.0 transitional//","-//w3c//dtd html experimental 19960712//","-//w3c//dtd html experimental 970421//","-//w3c//dtd w3 html//","-//w3o//dtd w3 html 3.0//","-//webtechs//dtd mozilla html 2.0//","-//webtechs//dtd mozilla html//"],Gw=[...lA,"-//w3c//dtd html 4.01 frameset//","-//w3c//dtd html 4.01 transitional//"],kw=new Set(["-//w3o//dtd w3 html strict 3.0//en//","-/w3c/dtd html 4.0 transitional/en","html"]),nA=["-//w3c//dtd xhtml 1.0 frameset//","-//w3c//dtd xhtml 1.0 transitional//"],Fw=[...nA,"-//w3c//dtd html 4.01 frameset//","-//w3c//dtd html 4.01 transitional//"];function Xy(t,n){return n.some(r=>t.startsWith(r))}function Uw(t){return t.name===aA&&t.publicId===null&&(t.systemId===null||t.systemId===Iw)}function Hw(t){if(t.name!==aA)return qo.QUIRKS;const{systemId:n}=t;if(n&&n.toLowerCase()===ww)return qo.QUIRKS;let{publicId:r}=t;if(r!==null){if(r=r.toLowerCase(),kw.has(r))return qo.QUIRKS;let s=n===null?Gw:lA;if(Xy(r,s))return qo.QUIRKS;if(s=n===null?nA:Fw,Xy(r,s))return qo.LIMITED_QUIRKS}return qo.NO_QUIRKS}const Ky={TEXT_HTML:"text/html",APPLICATION_XML:"application/xhtml+xml"},Pw="definitionurl",Ww="definitionURL",Vw=new Map(["attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(t=>[t.toLowerCase(),t])),qw=new Map([["xlink:actuate",{prefix:"xlink",name:"actuate",namespace:Le.XLINK}],["xlink:arcrole",{prefix:"xlink",name:"arcrole",namespace:Le.XLINK}],["xlink:href",{prefix:"xlink",name:"href",namespace:Le.XLINK}],["xlink:role",{prefix:"xlink",name:"role",namespace:Le.XLINK}],["xlink:show",{prefix:"xlink",name:"show",namespace:Le.XLINK}],["xlink:title",{prefix:"xlink",name:"title",namespace:Le.XLINK}],["xlink:type",{prefix:"xlink",name:"type",namespace:Le.XLINK}],["xml:lang",{prefix:"xml",name:"lang",namespace:Le.XML}],["xml:space",{prefix:"xml",name:"space",namespace:Le.XML}],["xmlns",{prefix:"",name:"xmlns",namespace:Le.XMLNS}],["xmlns:xlink",{prefix:"xmlns",name:"xlink",namespace:Le.XMLNS}]]),jw=new Map(["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(t=>[t.toLowerCase(),t])),Yw=new Set([y.B,y.BIG,y.BLOCKQUOTE,y.BODY,y.BR,y.CENTER,y.CODE,y.DD,y.DIV,y.DL,y.DT,y.EM,y.EMBED,y.H1,y.H2,y.H3,y.H4,y.H5,y.H6,y.HEAD,y.HR,y.I,y.IMG,y.LI,y.LISTING,y.MENU,y.META,y.NOBR,y.OL,y.P,y.PRE,y.RUBY,y.S,y.SMALL,y.SPAN,y.STRONG,y.STRIKE,y.SUB,y.SUP,y.TABLE,y.TT,y.U,y.UL,y.VAR]);function Qw(t){const n=t.tagID;return n===y.FONT&&t.attrs.some(({name:s})=>s===A0.COLOR||s===A0.SIZE||s===A0.FACE)||Yw.has(n)}function iA(t){for(let n=0;n<t.attrs.length;n++)if(t.attrs[n].name===Pw){t.attrs[n].name=Ww;break}}function oA(t){for(let n=0;n<t.attrs.length;n++){const r=Vw.get(t.attrs[n].name);r!=null&&(t.attrs[n].name=r)}}function KT(t){for(let n=0;n<t.attrs.length;n++){const r=qw.get(t.attrs[n].name);r&&(t.attrs[n].prefix=r.prefix,t.attrs[n].name=r.name,t.attrs[n].namespace=r.namespace)}}function Xw(t){const n=jw.get(t.tagName);n!=null&&(t.tagName=n,t.tagID=zm(t.tagName))}function Kw(t,n){return n===Le.MATHML&&(t===y.MI||t===y.MO||t===y.MN||t===y.MS||t===y.MTEXT)}function Zw(t,n,r){if(n===Le.MATHML&&t===y.ANNOTATION_XML){for(let s=0;s<r.length;s++)if(r[s].name===A0.ENCODING){const b=r[s].value.toLowerCase();return b===Ky.TEXT_HTML||b===Ky.APPLICATION_XML}}return n===Le.SVG&&(t===y.FOREIGN_OBJECT||t===y.DESC||t===y.TITLE)}function Jw(t,n,r,s){return(!s||s===Le.HTML)&&Zw(t,n,r)||(!s||s===Le.MATHML)&&Kw(t,n)}const $w="hidden",eG=8,tG=3;var V;(function(t){t[t.INITIAL=0]="INITIAL",t[t.BEFORE_HTML=1]="BEFORE_HTML",t[t.BEFORE_HEAD=2]="BEFORE_HEAD",t[t.IN_HEAD=3]="IN_HEAD",t[t.IN_HEAD_NO_SCRIPT=4]="IN_HEAD_NO_SCRIPT",t[t.AFTER_HEAD=5]="AFTER_HEAD",t[t.IN_BODY=6]="IN_BODY",t[t.TEXT=7]="TEXT",t[t.IN_TABLE=8]="IN_TABLE",t[t.IN_TABLE_TEXT=9]="IN_TABLE_TEXT",t[t.IN_CAPTION=10]="IN_CAPTION",t[t.IN_COLUMN_GROUP=11]="IN_COLUMN_GROUP",t[t.IN_TABLE_BODY=12]="IN_TABLE_BODY",t[t.IN_ROW=13]="IN_ROW",t[t.IN_CELL=14]="IN_CELL",t[t.IN_SELECT=15]="IN_SELECT",t[t.IN_SELECT_IN_TABLE=16]="IN_SELECT_IN_TABLE",t[t.IN_TEMPLATE=17]="IN_TEMPLATE",t[t.AFTER_BODY=18]="AFTER_BODY",t[t.IN_FRAMESET=19]="IN_FRAMESET",t[t.AFTER_FRAMESET=20]="AFTER_FRAMESET",t[t.AFTER_AFTER_BODY=21]="AFTER_AFTER_BODY",t[t.AFTER_AFTER_FRAMESET=22]="AFTER_AFTER_FRAMESET"})(V||(V={}));const aG={startLine:-1,startCol:-1,startOffset:-1,endLine:-1,endCol:-1,endOffset:-1},rA=new Set([y.TABLE,y.TBODY,y.TFOOT,y.THEAD,y.TR]),Zy={scriptingEnabled:!0,sourceCodeLocationInfo:!1,treeAdapter:zf,onParseError:null};class Jy{constructor(n,r,s=null,b=null){this.fragmentContext=s,this.scriptHandler=b,this.currentToken=null,this.stopped=!1,this.insertionMode=V.INITIAL,this.originalInsertionMode=V.INITIAL,this.headElement=null,this.formElement=null,this.currentNotInHTML=!1,this.tmplInsertionModeStack=[],this.pendingCharacterTokens=[],this.hasNonWhitespacePendingCharacterToken=!1,this.framesetOk=!0,this.skipNextNewLine=!1,this.fosterParentingEnabled=!1,this.options={...Zy,...n},this.treeAdapter=this.options.treeAdapter,this.onParseError=this.options.onParseError,this.onParseError&&(this.options.sourceCodeLocationInfo=!0),this.document=r??this.treeAdapter.createDocument(),this.tokenizer=new Dw(this.options,this),this.activeFormattingElements=new _w(this.treeAdapter),this.fragmentContextID=s?zm(this.treeAdapter.getTagName(s)):y.UNKNOWN,this._setContextModes(s??this.document,this.fragmentContextID),this.openElements=new Ow(this.document,this.treeAdapter,this)}static parse(n,r){const s=new this(r);return s.tokenizer.write(n,!0),s.document}static getFragmentParser(n,r){const s={...Zy,...r};n??(n=s.treeAdapter.createElement(ne.TEMPLATE,Le.HTML,[]));const b=s.treeAdapter.createElement("documentmock",Le.HTML,[]),h=new this(s,b,n);return h.fragmentContextID===y.TEMPLATE&&h.tmplInsertionModeStack.unshift(V.IN_TEMPLATE),h._initTokenizerForFragmentParsing(),h._insertFakeRootElement(),h._resetInsertionMode(),h._findFormInFragmentContext(),h}getFragment(){const n=this.treeAdapter.getFirstChild(this.document),r=this.treeAdapter.createDocumentFragment();return this._adoptNodes(n,r),r}_err(n,r,s){var b;if(!this.onParseError)return;const h=(b=n.location)!==null&&b!==void 0?b:aG,p={code:r,startLine:h.startLine,startCol:h.startCol,startOffset:h.startOffset,endLine:s?h.startLine:h.endLine,endCol:s?h.startCol:h.endCol,endOffset:s?h.startOffset:h.endOffset};this.onParseError(p)}onItemPush(n,r,s){var b,h;(h=(b=this.treeAdapter).onItemPush)===null||h===void 0||h.call(b,n),s&&this.openElements.stackTop>0&&this._setContextModes(n,r)}onItemPop(n,r){var s,b;if(this.options.sourceCodeLocationInfo&&this._setEndLocation(n,this.currentToken),(b=(s=this.treeAdapter).onItemPop)===null||b===void 0||b.call(s,n,this.openElements.current),r){let h,p;this.openElements.stackTop===0&&this.fragmentContext?(h=this.fragmentContext,p=this.fragmentContextID):{current:h,currentTagId:p}=this.openElements,this._setContextModes(h,p)}}_setContextModes(n,r){const s=n===this.document||n&&this.treeAdapter.getNamespaceURI(n)===Le.HTML;this.currentNotInHTML=!s,this.tokenizer.inForeignNode=!s&&n!==void 0&&r!==void 0&&!this._isIntegrationPoint(r,n)}_switchToTextParsing(n,r){this._insertElement(n,Le.HTML),this.tokenizer.state=r,this.originalInsertionMode=this.insertionMode,this.insertionMode=V.TEXT}switchToPlaintextParsing(){this.insertionMode=V.TEXT,this.originalInsertionMode=V.IN_BODY,this.tokenizer.state=el.PLAINTEXT}_getAdjustedCurrentElement(){return this.openElements.stackTop===0&&this.fragmentContext?this.fragmentContext:this.openElements.current}_findFormInFragmentContext(){let n=this.fragmentContext;for(;n;){if(this.treeAdapter.getTagName(n)===ne.FORM){this.formElement=n;break}n=this.treeAdapter.getParentNode(n)}}_initTokenizerForFragmentParsing(){if(!(!this.fragmentContext||this.treeAdapter.getNamespaceURI(this.fragmentContext)!==Le.HTML))switch(this.fragmentContextID){case y.TITLE:case y.TEXTAREA:{this.tokenizer.state=el.RCDATA;break}case y.STYLE:case y.XMP:case y.IFRAME:case y.NOEMBED:case y.NOFRAMES:case y.NOSCRIPT:{this.tokenizer.state=el.RAWTEXT;break}case y.SCRIPT:{this.tokenizer.state=el.SCRIPT_DATA;break}case y.PLAINTEXT:{this.tokenizer.state=el.PLAINTEXT;break}}}_setDocumentType(n){const r=n.name||"",s=n.publicId||"",b=n.systemId||"";if(this.treeAdapter.setDocumentType(this.document,r,s,b),n.location){const p=this.treeAdapter.getChildNodes(this.document).find(T=>this.treeAdapter.isDocumentTypeNode(T));p&&this.treeAdapter.setNodeSourceCodeLocation(p,n.location)}}_attachElementToTree(n,r){if(this.options.sourceCodeLocationInfo){const s=r&&{...r,startTag:r};this.treeAdapter.setNodeSourceCodeLocation(n,s)}if(this._shouldFosterParentOnInsertion())this._fosterParentElement(n);else{const s=this.openElements.currentTmplContentOrNode;this.treeAdapter.appendChild(s??this.document,n)}}_appendElement(n,r){const s=this.treeAdapter.createElement(n.tagName,r,n.attrs);this._attachElementToTree(s,n.location)}_insertElement(n,r){const s=this.treeAdapter.createElement(n.tagName,r,n.attrs);this._attachElementToTree(s,n.location),this.openElements.push(s,n.tagID)}_insertFakeElement(n,r){const s=this.treeAdapter.createElement(n,Le.HTML,[]);this._attachElementToTree(s,null),this.openElements.push(s,r)}_insertTemplate(n){const r=this.treeAdapter.createElement(n.tagName,Le.HTML,n.attrs),s=this.treeAdapter.createDocumentFragment();this.treeAdapter.setTemplateContent(r,s),this._attachElementToTree(r,n.location),this.openElements.push(r,n.tagID),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(s,null)}_insertFakeRootElement(){const n=this.treeAdapter.createElement(ne.HTML,Le.HTML,[]);this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(n,null),this.treeAdapter.appendChild(this.openElements.current,n),this.openElements.push(n,y.HTML)}_appendCommentNode(n,r){const s=this.treeAdapter.createCommentNode(n.data);this.treeAdapter.appendChild(r,s),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(s,n.location)}_insertCharacters(n){let r,s;if(this._shouldFosterParentOnInsertion()?({parent:r,beforeElement:s}=this._findFosterParentingLocation(),s?this.treeAdapter.insertTextBefore(r,n.chars,s):this.treeAdapter.insertText(r,n.chars)):(r=this.openElements.currentTmplContentOrNode,this.treeAdapter.insertText(r,n.chars)),!n.location)return;const b=this.treeAdapter.getChildNodes(r),h=s?b.lastIndexOf(s):b.length,p=b[h-1];if(this.treeAdapter.getNodeSourceCodeLocation(p)){const{endLine:E,endCol:A,endOffset:M}=n.location;this.treeAdapter.updateNodeSourceCodeLocation(p,{endLine:E,endCol:A,endOffset:M})}else this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(p,n.location)}_adoptNodes(n,r){for(let s=this.treeAdapter.getFirstChild(n);s;s=this.treeAdapter.getFirstChild(n))this.treeAdapter.detachNode(s),this.treeAdapter.appendChild(r,s)}_setEndLocation(n,r){if(this.treeAdapter.getNodeSourceCodeLocation(n)&&r.location){const s=r.location,b=this.treeAdapter.getTagName(n),h=r.type===xt.END_TAG&&b===r.tagName?{endTag:{...s},endLine:s.endLine,endCol:s.endCol,endOffset:s.endOffset}:{endLine:s.startLine,endCol:s.startCol,endOffset:s.startOffset};this.treeAdapter.updateNodeSourceCodeLocation(n,h)}}shouldProcessStartTagTokenInForeignContent(n){if(!this.currentNotInHTML)return!1;let r,s;return this.openElements.stackTop===0&&this.fragmentContext?(r=this.fragmentContext,s=this.fragmentContextID):{current:r,currentTagId:s}=this.openElements,n.tagID===y.SVG&&this.treeAdapter.getTagName(r)===ne.ANNOTATION_XML&&this.treeAdapter.getNamespaceURI(r)===Le.MATHML?!1:this.tokenizer.inForeignNode||(n.tagID===y.MGLYPH||n.tagID===y.MALIGNMARK)&&s!==void 0&&!this._isIntegrationPoint(s,r,Le.HTML)}_processToken(n){switch(n.type){case xt.CHARACTER:{this.onCharacter(n);break}case xt.NULL_CHARACTER:{this.onNullCharacter(n);break}case xt.COMMENT:{this.onComment(n);break}case xt.DOCTYPE:{this.onDoctype(n);break}case xt.START_TAG:{this._processStartTag(n);break}case xt.END_TAG:{this.onEndTag(n);break}case xt.EOF:{this.onEof(n);break}case xt.WHITESPACE_CHARACTER:{this.onWhitespaceCharacter(n);break}}}_isIntegrationPoint(n,r,s){const b=this.treeAdapter.getNamespaceURI(r),h=this.treeAdapter.getAttrList(r);return Jw(n,b,h,s)}_reconstructActiveFormattingElements(){const n=this.activeFormattingElements.entries.length;if(n){const r=this.activeFormattingElements.entries.findIndex(b=>b.type===gu.Marker||this.openElements.contains(b.element)),s=r===-1?n-1:r-1;for(let b=s;b>=0;b--){const h=this.activeFormattingElements.entries[b];this._insertElement(h.token,this.treeAdapter.getNamespaceURI(h.element)),h.element=this.openElements.current}}}_closeTableCell(){this.openElements.generateImpliedEndTags(),this.openElements.popUntilTableCellPopped(),this.activeFormattingElements.clearToLastMarker(),this.insertionMode=V.IN_ROW}_closePElement(){this.openElements.generateImpliedEndTagsWithExclusion(y.P),this.openElements.popUntilTagNamePopped(y.P)}_resetInsertionMode(){for(let n=this.openElements.stackTop;n>=0;n--)switch(n===0&&this.fragmentContext?this.fragmentContextID:this.openElements.tagIDs[n]){case y.TR:{this.insertionMode=V.IN_ROW;return}case y.TBODY:case y.THEAD:case y.TFOOT:{this.insertionMode=V.IN_TABLE_BODY;return}case y.CAPTION:{this.insertionMode=V.IN_CAPTION;return}case y.COLGROUP:{this.insertionMode=V.IN_COLUMN_GROUP;return}case y.TABLE:{this.insertionMode=V.IN_TABLE;return}case y.BODY:{this.insertionMode=V.IN_BODY;return}case y.FRAMESET:{this.insertionMode=V.IN_FRAMESET;return}case y.SELECT:{this._resetInsertionModeForSelect(n);return}case y.TEMPLATE:{this.insertionMode=this.tmplInsertionModeStack[0];return}case y.HTML:{this.insertionMode=this.headElement?V.AFTER_HEAD:V.BEFORE_HEAD;return}case y.TD:case y.TH:{if(n>0){this.insertionMode=V.IN_CELL;return}break}case y.HEAD:{if(n>0){this.insertionMode=V.IN_HEAD;return}break}}this.insertionMode=V.IN_BODY}_resetInsertionModeForSelect(n){if(n>0)for(let r=n-1;r>0;r--){const s=this.openElements.tagIDs[r];if(s===y.TEMPLATE)break;if(s===y.TABLE){this.insertionMode=V.IN_SELECT_IN_TABLE;return}}this.insertionMode=V.IN_SELECT}_isElementCausesFosterParenting(n){return rA.has(n)}_shouldFosterParentOnInsertion(){return this.fosterParentingEnabled&&this.openElements.currentTagId!==void 0&&this._isElementCausesFosterParenting(this.openElements.currentTagId)}_findFosterParentingLocation(){for(let n=this.openElements.stackTop;n>=0;n--){const r=this.openElements.items[n];switch(this.openElements.tagIDs[n]){case y.TEMPLATE:{if(this.treeAdapter.getNamespaceURI(r)===Le.HTML)return{parent:this.treeAdapter.getTemplateContent(r),beforeElement:null};break}case y.TABLE:{const s=this.treeAdapter.getParentNode(r);return s?{parent:s,beforeElement:r}:{parent:this.openElements.items[n-1],beforeElement:null}}}}return{parent:this.openElements.items[0],beforeElement:null}}_fosterParentElement(n){const r=this._findFosterParentingLocation();r.beforeElement?this.treeAdapter.insertBefore(r.parent,n,r.beforeElement):this.treeAdapter.appendChild(r.parent,n)}_isSpecialElement(n,r){const s=this.treeAdapter.getNamespaceURI(n);return Cw[s].has(r)}onCharacter(n){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){Bk(this,n);return}switch(this.insertionMode){case V.INITIAL:{I2(this,n);break}case V.BEFORE_HTML:{P2(this,n);break}case V.BEFORE_HEAD:{W2(this,n);break}case V.IN_HEAD:{V2(this,n);break}case V.IN_HEAD_NO_SCRIPT:{q2(this,n);break}case V.AFTER_HEAD:{j2(this,n);break}case V.IN_BODY:case V.IN_CAPTION:case V.IN_CELL:case V.IN_TEMPLATE:{sA(this,n);break}case V.TEXT:case V.IN_SELECT:case V.IN_SELECT_IN_TABLE:{this._insertCharacters(n);break}case V.IN_TABLE:case V.IN_TABLE_BODY:case V.IN_ROW:{R6(this,n);break}case V.IN_TABLE_TEXT:{hA(this,n);break}case V.IN_COLUMN_GROUP:{n8(this,n);break}case V.AFTER_BODY:{i8(this,n);break}case V.AFTER_AFTER_BODY:{Kg(this,n);break}}}onNullCharacter(n){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){Nk(this,n);return}switch(this.insertionMode){case V.INITIAL:{I2(this,n);break}case V.BEFORE_HTML:{P2(this,n);break}case V.BEFORE_HEAD:{W2(this,n);break}case V.IN_HEAD:{V2(this,n);break}case V.IN_HEAD_NO_SCRIPT:{q2(this,n);break}case V.AFTER_HEAD:{j2(this,n);break}case V.TEXT:{this._insertCharacters(n);break}case V.IN_TABLE:case V.IN_TABLE_BODY:case V.IN_ROW:{R6(this,n);break}case V.IN_COLUMN_GROUP:{n8(this,n);break}case V.AFTER_BODY:{i8(this,n);break}case V.AFTER_AFTER_BODY:{Kg(this,n);break}}}onComment(n){if(this.skipNextNewLine=!1,this.currentNotInHTML){tT(this,n);return}switch(this.insertionMode){case V.INITIAL:case V.BEFORE_HTML:case V.BEFORE_HEAD:case V.IN_HEAD:case V.IN_HEAD_NO_SCRIPT:case V.AFTER_HEAD:case V.IN_BODY:case V.IN_TABLE:case V.IN_CAPTION:case V.IN_COLUMN_GROUP:case V.IN_TABLE_BODY:case V.IN_ROW:case V.IN_CELL:case V.IN_SELECT:case V.IN_SELECT_IN_TABLE:case V.IN_TEMPLATE:case V.IN_FRAMESET:case V.AFTER_FRAMESET:{tT(this,n);break}case V.IN_TABLE_TEXT:{w2(this,n);break}case V.AFTER_BODY:{sG(this,n);break}case V.AFTER_AFTER_BODY:case V.AFTER_AFTER_FRAMESET:{cG(this,n);break}}}onDoctype(n){switch(this.skipNextNewLine=!1,this.insertionMode){case V.INITIAL:{fG(this,n);break}case V.BEFORE_HEAD:case V.IN_HEAD:case V.IN_HEAD_NO_SCRIPT:case V.AFTER_HEAD:{this._err(n,me.misplacedDoctype);break}case V.IN_TABLE_TEXT:{w2(this,n);break}}}onStartTag(n){this.skipNextNewLine=!1,this.currentToken=n,this._processStartTag(n),n.selfClosing&&!n.ackSelfClosing&&this._err(n,me.nonVoidHtmlElementStartTagWithTrailingSolidus)}_processStartTag(n){this.shouldProcessStartTagTokenInForeignContent(n)?Ok(this,n):this._startTagOutsideForeignContent(n)}_startTagOutsideForeignContent(n){switch(this.insertionMode){case V.INITIAL:{I2(this,n);break}case V.BEFORE_HTML:{dG(this,n);break}case V.BEFORE_HEAD:{mG(this,n);break}case V.IN_HEAD:{zr(this,n);break}case V.IN_HEAD_NO_SCRIPT:{gG(this,n);break}case V.AFTER_HEAD:{vG(this,n);break}case V.IN_BODY:{pn(this,n);break}case V.IN_TABLE:{gm(this,n);break}case V.IN_TABLE_TEXT:{w2(this,n);break}case V.IN_CAPTION:{hk(this,n);break}case V.IN_COLUMN_GROUP:{$T(this,n);break}case V.IN_TABLE_BODY:{L8(this,n);break}case V.IN_ROW:{z8(this,n);break}case V.IN_CELL:{Tk(this,n);break}case V.IN_SELECT:{TA(this,n);break}case V.IN_SELECT_IN_TABLE:{Sk(this,n);break}case V.IN_TEMPLATE:{Ck(this,n);break}case V.AFTER_BODY:{Ak(this,n);break}case V.IN_FRAMESET:{Mk(this,n);break}case V.AFTER_FRAMESET:{Lk(this,n);break}case V.AFTER_AFTER_BODY:{xk(this,n);break}case V.AFTER_AFTER_FRAMESET:{Rk(this,n);break}}}onEndTag(n){this.skipNextNewLine=!1,this.currentToken=n,this.currentNotInHTML?_k(this,n):this._endTagOutsideForeignContent(n)}_endTagOutsideForeignContent(n){switch(this.insertionMode){case V.INITIAL:{I2(this,n);break}case V.BEFORE_HTML:{bG(this,n);break}case V.BEFORE_HEAD:{hG(this,n);break}case V.IN_HEAD:{pG(this,n);break}case V.IN_HEAD_NO_SCRIPT:{TG(this,n);break}case V.AFTER_HEAD:{SG(this,n);break}case V.IN_BODY:{D8(this,n);break}case V.TEXT:{ik(this,n);break}case V.IN_TABLE:{J2(this,n);break}case V.IN_TABLE_TEXT:{w2(this,n);break}case V.IN_CAPTION:{pk(this,n);break}case V.IN_COLUMN_GROUP:{gk(this,n);break}case V.IN_TABLE_BODY:{aT(this,n);break}case V.IN_ROW:{gA(this,n);break}case V.IN_CELL:{vk(this,n);break}case V.IN_SELECT:{vA(this,n);break}case V.IN_SELECT_IN_TABLE:{yk(this,n);break}case V.IN_TEMPLATE:{Ek(this,n);break}case V.AFTER_BODY:{yA(this,n);break}case V.IN_FRAMESET:{Dk(this,n);break}case V.AFTER_FRAMESET:{zk(this,n);break}case V.AFTER_AFTER_BODY:{Kg(this,n);break}}}onEof(n){switch(this.insertionMode){case V.INITIAL:{I2(this,n);break}case V.BEFORE_HTML:{P2(this,n);break}case V.BEFORE_HEAD:{W2(this,n);break}case V.IN_HEAD:{V2(this,n);break}case V.IN_HEAD_NO_SCRIPT:{q2(this,n);break}case V.AFTER_HEAD:{j2(this,n);break}case V.IN_BODY:case V.IN_TABLE:case V.IN_CAPTION:case V.IN_COLUMN_GROUP:case V.IN_TABLE_BODY:case V.IN_ROW:case V.IN_CELL:case V.IN_SELECT:case V.IN_SELECT_IN_TABLE:{bA(this,n);break}case V.TEXT:{ok(this,n);break}case V.IN_TABLE_TEXT:{w2(this,n);break}case V.IN_TEMPLATE:{SA(this,n);break}case V.AFTER_BODY:case V.IN_FRAMESET:case V.AFTER_FRAMESET:case V.AFTER_AFTER_BODY:case V.AFTER_AFTER_FRAMESET:{JT(this,n);break}}}onWhitespaceCharacter(n){if(this.skipNextNewLine&&(this.skipNextNewLine=!1,n.chars.charCodeAt(0)===_.LINE_FEED)){if(n.chars.length===1)return;n.chars=n.chars.substr(1)}if(this.tokenizer.inForeignNode){this._insertCharacters(n);return}switch(this.insertionMode){case V.IN_HEAD:case V.IN_HEAD_NO_SCRIPT:case V.AFTER_HEAD:case V.TEXT:case V.IN_COLUMN_GROUP:case V.IN_SELECT:case V.IN_SELECT_IN_TABLE:case V.IN_FRAMESET:case V.AFTER_FRAMESET:{this._insertCharacters(n);break}case V.IN_BODY:case V.IN_CAPTION:case V.IN_CELL:case V.IN_TEMPLATE:case V.AFTER_BODY:case V.AFTER_AFTER_BODY:case V.AFTER_AFTER_FRAMESET:{uA(this,n);break}case V.IN_TABLE:case V.IN_TABLE_BODY:case V.IN_ROW:{R6(this,n);break}case V.IN_TABLE_TEXT:{mA(this,n);break}}}}function lG(t,n){let r=t.activeFormattingElements.getElementEntryInScopeWithTagName(n.tagName);return r?t.openElements.contains(r.element)?t.openElements.hasInScope(n.tagID)||(r=null):(t.activeFormattingElements.removeEntry(r),r=null):dA(t,n),r}function nG(t,n){let r=null,s=t.openElements.stackTop;for(;s>=0;s--){const b=t.openElements.items[s];if(b===n.element)break;t._isSpecialElement(b,t.openElements.tagIDs[s])&&(r=b)}return r||(t.openElements.shortenToLength(Math.max(s,0)),t.activeFormattingElements.removeEntry(n)),r}function iG(t,n,r){let s=n,b=t.openElements.getCommonAncestor(n);for(let h=0,p=b;p!==r;h++,p=b){b=t.openElements.getCommonAncestor(p);const T=t.activeFormattingElements.getElementEntry(p),E=T&&h>=tG;!T||E?(E&&t.activeFormattingElements.removeEntry(T),t.openElements.remove(p)):(p=oG(t,T),s===n&&(t.activeFormattingElements.bookmark=T),t.treeAdapter.detachNode(s),t.treeAdapter.appendChild(p,s),s=p)}return s}function oG(t,n){const r=t.treeAdapter.getNamespaceURI(n.element),s=t.treeAdapter.createElement(n.token.tagName,r,n.token.attrs);return t.openElements.replace(n.element,s),n.element=s,s}function rG(t,n,r){const s=t.treeAdapter.getTagName(n),b=zm(s);if(t._isElementCausesFosterParenting(b))t._fosterParentElement(r);else{const h=t.treeAdapter.getNamespaceURI(n);b===y.TEMPLATE&&h===Le.HTML&&(n=t.treeAdapter.getTemplateContent(n)),t.treeAdapter.appendChild(n,r)}}function uG(t,n,r){const s=t.treeAdapter.getNamespaceURI(r.element),{token:b}=r,h=t.treeAdapter.createElement(b.tagName,s,b.attrs);t._adoptNodes(n,h),t.treeAdapter.appendChild(n,h),t.activeFormattingElements.insertElementAfterBookmark(h,b),t.activeFormattingElements.removeEntry(r),t.openElements.remove(r.element),t.openElements.insertAfter(n,h,b.tagID)}function ZT(t,n){for(let r=0;r<eG;r++){const s=lG(t,n);if(!s)break;const b=nG(t,s);if(!b)break;t.activeFormattingElements.bookmark=s;const h=iG(t,b,s.element),p=t.openElements.getCommonAncestor(s.element);t.treeAdapter.detachNode(h),p&&rG(t,p,h),uG(t,b,s)}}function tT(t,n){t._appendCommentNode(n,t.openElements.currentTmplContentOrNode)}function sG(t,n){t._appendCommentNode(n,t.openElements.items[0])}function cG(t,n){t._appendCommentNode(n,t.document)}function JT(t,n){if(t.stopped=!0,n.location){const r=t.fragmentContext?0:2;for(let s=t.openElements.stackTop;s>=r;s--)t._setEndLocation(t.openElements.items[s],n);if(!t.fragmentContext&&t.openElements.stackTop>=0){const s=t.openElements.items[0],b=t.treeAdapter.getNodeSourceCodeLocation(s);if(b&&!b.endTag&&(t._setEndLocation(s,n),t.openElements.stackTop>=1)){const h=t.openElements.items[1],p=t.treeAdapter.getNodeSourceCodeLocation(h);p&&!p.endTag&&t._setEndLocation(h,n)}}}}function fG(t,n){t._setDocumentType(n);const r=n.forceQuirks?qo.QUIRKS:Hw(n);Uw(n)||t._err(n,me.nonConformingDoctype),t.treeAdapter.setDocumentMode(t.document,r),t.insertionMode=V.BEFORE_HTML}function I2(t,n){t._err(n,me.missingDoctype,!0),t.treeAdapter.setDocumentMode(t.document,qo.QUIRKS),t.insertionMode=V.BEFORE_HTML,t._processToken(n)}function dG(t,n){n.tagID===y.HTML?(t._insertElement(n,Le.HTML),t.insertionMode=V.BEFORE_HEAD):P2(t,n)}function bG(t,n){const r=n.tagID;(r===y.HTML||r===y.HEAD||r===y.BODY||r===y.BR)&&P2(t,n)}function P2(t,n){t._insertFakeRootElement(),t.insertionMode=V.BEFORE_HEAD,t._processToken(n)}function mG(t,n){switch(n.tagID){case y.HTML:{pn(t,n);break}case y.HEAD:{t._insertElement(n,Le.HTML),t.headElement=t.openElements.current,t.insertionMode=V.IN_HEAD;break}default:W2(t,n)}}function hG(t,n){const r=n.tagID;r===y.HEAD||r===y.BODY||r===y.HTML||r===y.BR?W2(t,n):t._err(n,me.endTagWithoutMatchingOpenElement)}function W2(t,n){t._insertFakeElement(ne.HEAD,y.HEAD),t.headElement=t.openElements.current,t.insertionMode=V.IN_HEAD,t._processToken(n)}function zr(t,n){switch(n.tagID){case y.HTML:{pn(t,n);break}case y.BASE:case y.BASEFONT:case y.BGSOUND:case y.LINK:case y.META:{t._appendElement(n,Le.HTML),n.ackSelfClosing=!0;break}case y.TITLE:{t._switchToTextParsing(n,el.RCDATA);break}case y.NOSCRIPT:{t.options.scriptingEnabled?t._switchToTextParsing(n,el.RAWTEXT):(t._insertElement(n,Le.HTML),t.insertionMode=V.IN_HEAD_NO_SCRIPT);break}case y.NOFRAMES:case y.STYLE:{t._switchToTextParsing(n,el.RAWTEXT);break}case y.SCRIPT:{t._switchToTextParsing(n,el.SCRIPT_DATA);break}case y.TEMPLATE:{t._insertTemplate(n),t.activeFormattingElements.insertMarker(),t.framesetOk=!1,t.insertionMode=V.IN_TEMPLATE,t.tmplInsertionModeStack.unshift(V.IN_TEMPLATE);break}case y.HEAD:{t._err(n,me.misplacedStartTagForHeadElement);break}default:V2(t,n)}}function pG(t,n){switch(n.tagID){case y.HEAD:{t.openElements.pop(),t.insertionMode=V.AFTER_HEAD;break}case y.BODY:case y.BR:case y.HTML:{V2(t,n);break}case y.TEMPLATE:{O0(t,n);break}default:t._err(n,me.endTagWithoutMatchingOpenElement)}}function O0(t,n){t.openElements.tmplCount>0?(t.openElements.generateImpliedEndTagsThoroughly(),t.openElements.currentTagId!==y.TEMPLATE&&t._err(n,me.closingOfElementWithOpenChildElements),t.openElements.popUntilTagNamePopped(y.TEMPLATE),t.activeFormattingElements.clearToLastMarker(),t.tmplInsertionModeStack.shift(),t._resetInsertionMode()):t._err(n,me.endTagWithoutMatchingOpenElement)}function V2(t,n){t.openElements.pop(),t.insertionMode=V.AFTER_HEAD,t._processToken(n)}function gG(t,n){switch(n.tagID){case y.HTML:{pn(t,n);break}case y.BASEFONT:case y.BGSOUND:case y.HEAD:case y.LINK:case y.META:case y.NOFRAMES:case y.STYLE:{zr(t,n);break}case y.NOSCRIPT:{t._err(n,me.nestedNoscriptInHead);break}default:q2(t,n)}}function TG(t,n){switch(n.tagID){case y.NOSCRIPT:{t.openElements.pop(),t.insertionMode=V.IN_HEAD;break}case y.BR:{q2(t,n);break}default:t._err(n,me.endTagWithoutMatchingOpenElement)}}function q2(t,n){const r=n.type===xt.EOF?me.openElementsLeftAfterEof:me.disallowedContentInNoscriptInHead;t._err(n,r),t.openElements.pop(),t.insertionMode=V.IN_HEAD,t._processToken(n)}function vG(t,n){switch(n.tagID){case y.HTML:{pn(t,n);break}case y.BODY:{t._insertElement(n,Le.HTML),t.framesetOk=!1,t.insertionMode=V.IN_BODY;break}case y.FRAMESET:{t._insertElement(n,Le.HTML),t.insertionMode=V.IN_FRAMESET;break}case y.BASE:case y.BASEFONT:case y.BGSOUND:case y.LINK:case y.META:case y.NOFRAMES:case y.SCRIPT:case y.STYLE:case y.TEMPLATE:case y.TITLE:{t._err(n,me.abandonedHeadElementChild),t.openElements.push(t.headElement,y.HEAD),zr(t,n),t.openElements.remove(t.headElement);break}case y.HEAD:{t._err(n,me.misplacedStartTagForHeadElement);break}default:j2(t,n)}}function SG(t,n){switch(n.tagID){case y.BODY:case y.HTML:case y.BR:{j2(t,n);break}case y.TEMPLATE:{O0(t,n);break}default:t._err(n,me.endTagWithoutMatchingOpenElement)}}function j2(t,n){t._insertFakeElement(ne.BODY,y.BODY),t.insertionMode=V.IN_BODY,M8(t,n)}function M8(t,n){switch(n.type){case xt.CHARACTER:{sA(t,n);break}case xt.WHITESPACE_CHARACTER:{uA(t,n);break}case xt.COMMENT:{tT(t,n);break}case xt.START_TAG:{pn(t,n);break}case xt.END_TAG:{D8(t,n);break}case xt.EOF:{bA(t,n);break}}}function uA(t,n){t._reconstructActiveFormattingElements(),t._insertCharacters(n)}function sA(t,n){t._reconstructActiveFormattingElements(),t._insertCharacters(n),t.framesetOk=!1}function yG(t,n){t.openElements.tmplCount===0&&t.treeAdapter.adoptAttributes(t.openElements.items[0],n.attrs)}function CG(t,n){const r=t.openElements.tryPeekProperlyNestedBodyElement();r&&t.openElements.tmplCount===0&&(t.framesetOk=!1,t.treeAdapter.adoptAttributes(r,n.attrs))}function EG(t,n){const r=t.openElements.tryPeekProperlyNestedBodyElement();t.framesetOk&&r&&(t.treeAdapter.detachNode(r),t.openElements.popAllUpToHtmlElement(),t._insertElement(n,Le.HTML),t.insertionMode=V.IN_FRAMESET)}function AG(t,n){t.openElements.hasInButtonScope(y.P)&&t._closePElement(),t._insertElement(n,Le.HTML)}function MG(t,n){t.openElements.hasInButtonScope(y.P)&&t._closePElement(),t.openElements.currentTagId!==void 0&&eT.has(t.openElements.currentTagId)&&t.openElements.pop(),t._insertElement(n,Le.HTML)}function DG(t,n){t.openElements.hasInButtonScope(y.P)&&t._closePElement(),t._insertElement(n,Le.HTML),t.skipNextNewLine=!0,t.framesetOk=!1}function LG(t,n){const r=t.openElements.tmplCount>0;(!t.formElement||r)&&(t.openElements.hasInButtonScope(y.P)&&t._closePElement(),t._insertElement(n,Le.HTML),r||(t.formElement=t.openElements.current))}function zG(t,n){t.framesetOk=!1;const r=n.tagID;for(let s=t.openElements.stackTop;s>=0;s--){const b=t.openElements.tagIDs[s];if(r===y.LI&&b===y.LI||(r===y.DD||r===y.DT)&&(b===y.DD||b===y.DT)){t.openElements.generateImpliedEndTagsWithExclusion(b),t.openElements.popUntilTagNamePopped(b);break}if(b!==y.ADDRESS&&b!==y.DIV&&b!==y.P&&t._isSpecialElement(t.openElements.items[s],b))break}t.openElements.hasInButtonScope(y.P)&&t._closePElement(),t._insertElement(n,Le.HTML)}function xG(t,n){t.openElements.hasInButtonScope(y.P)&&t._closePElement(),t._insertElement(n,Le.HTML),t.tokenizer.state=el.PLAINTEXT}function RG(t,n){t.openElements.hasInScope(y.BUTTON)&&(t.openElements.generateImpliedEndTags(),t.openElements.popUntilTagNamePopped(y.BUTTON)),t._reconstructActiveFormattingElements(),t._insertElement(n,Le.HTML),t.framesetOk=!1}function NG(t,n){const r=t.activeFormattingElements.getElementEntryInScopeWithTagName(ne.A);r&&(ZT(t,n),t.openElements.remove(r.element),t.activeFormattingElements.removeEntry(r)),t._reconstructActiveFormattingElements(),t._insertElement(n,Le.HTML),t.activeFormattingElements.pushElement(t.openElements.current,n)}function BG(t,n){t._reconstructActiveFormattingElements(),t._insertElement(n,Le.HTML),t.activeFormattingElements.pushElement(t.openElements.current,n)}function OG(t,n){t._reconstructActiveFormattingElements(),t.openElements.hasInScope(y.NOBR)&&(ZT(t,n),t._reconstructActiveFormattingElements()),t._insertElement(n,Le.HTML),t.activeFormattingElements.pushElement(t.openElements.current,n)}function _G(t,n){t._reconstructActiveFormattingElements(),t._insertElement(n,Le.HTML),t.activeFormattingElements.insertMarker(),t.framesetOk=!1}function IG(t,n){t.treeAdapter.getDocumentMode(t.document)!==qo.QUIRKS&&t.openElements.hasInButtonScope(y.P)&&t._closePElement(),t._insertElement(n,Le.HTML),t.framesetOk=!1,t.insertionMode=V.IN_TABLE}function cA(t,n){t._reconstructActiveFormattingElements(),t._appendElement(n,Le.HTML),t.framesetOk=!1,n.ackSelfClosing=!0}function fA(t){const n=$E(t,A0.TYPE);return n!=null&&n.toLowerCase()===$w}function wG(t,n){t._reconstructActiveFormattingElements(),t._appendElement(n,Le.HTML),fA(n)||(t.framesetOk=!1),n.ackSelfClosing=!0}function GG(t,n){t._appendElement(n,Le.HTML),n.ackSelfClosing=!0}function kG(t,n){t.openElements.hasInButtonScope(y.P)&&t._closePElement(),t._appendElement(n,Le.HTML),t.framesetOk=!1,n.ackSelfClosing=!0}function FG(t,n){n.tagName=ne.IMG,n.tagID=y.IMG,cA(t,n)}function UG(t,n){t._insertElement(n,Le.HTML),t.skipNextNewLine=!0,t.tokenizer.state=el.RCDATA,t.originalInsertionMode=t.insertionMode,t.framesetOk=!1,t.insertionMode=V.TEXT}function HG(t,n){t.openElements.hasInButtonScope(y.P)&&t._closePElement(),t._reconstructActiveFormattingElements(),t.framesetOk=!1,t._switchToTextParsing(n,el.RAWTEXT)}function PG(t,n){t.framesetOk=!1,t._switchToTextParsing(n,el.RAWTEXT)}function $y(t,n){t._switchToTextParsing(n,el.RAWTEXT)}function WG(t,n){t._reconstructActiveFormattingElements(),t._insertElement(n,Le.HTML),t.framesetOk=!1,t.insertionMode=t.insertionMode===V.IN_TABLE||t.insertionMode===V.IN_CAPTION||t.insertionMode===V.IN_TABLE_BODY||t.insertionMode===V.IN_ROW||t.insertionMode===V.IN_CELL?V.IN_SELECT_IN_TABLE:V.IN_SELECT}function VG(t,n){t.openElements.currentTagId===y.OPTION&&t.openElements.pop(),t._reconstructActiveFormattingElements(),t._insertElement(n,Le.HTML)}function qG(t,n){t.openElements.hasInScope(y.RUBY)&&t.openElements.generateImpliedEndTags(),t._insertElement(n,Le.HTML)}function jG(t,n){t.openElements.hasInScope(y.RUBY)&&t.openElements.generateImpliedEndTagsWithExclusion(y.RTC),t._insertElement(n,Le.HTML)}function YG(t,n){t._reconstructActiveFormattingElements(),iA(n),KT(n),n.selfClosing?t._appendElement(n,Le.MATHML):t._insertElement(n,Le.MATHML),n.ackSelfClosing=!0}function QG(t,n){t._reconstructActiveFormattingElements(),oA(n),KT(n),n.selfClosing?t._appendElement(n,Le.SVG):t._insertElement(n,Le.SVG),n.ackSelfClosing=!0}function e7(t,n){t._reconstructActiveFormattingElements(),t._insertElement(n,Le.HTML)}function pn(t,n){switch(n.tagID){case y.I:case y.S:case y.B:case y.U:case y.EM:case y.TT:case y.BIG:case y.CODE:case y.FONT:case y.SMALL:case y.STRIKE:case y.STRONG:{BG(t,n);break}case y.A:{NG(t,n);break}case y.H1:case y.H2:case y.H3:case y.H4:case y.H5:case y.H6:{MG(t,n);break}case y.P:case y.DL:case y.OL:case y.UL:case y.DIV:case y.DIR:case y.NAV:case y.MAIN:case y.MENU:case y.ASIDE:case y.CENTER:case y.FIGURE:case y.FOOTER:case y.HEADER:case y.HGROUP:case y.DIALOG:case y.DETAILS:case y.ADDRESS:case y.ARTICLE:case y.SEARCH:case y.SECTION:case y.SUMMARY:case y.FIELDSET:case y.BLOCKQUOTE:case y.FIGCAPTION:{AG(t,n);break}case y.LI:case y.DD:case y.DT:{zG(t,n);break}case y.BR:case y.IMG:case y.WBR:case y.AREA:case y.EMBED:case y.KEYGEN:{cA(t,n);break}case y.HR:{kG(t,n);break}case y.RB:case y.RTC:{qG(t,n);break}case y.RT:case y.RP:{jG(t,n);break}case y.PRE:case y.LISTING:{DG(t,n);break}case y.XMP:{HG(t,n);break}case y.SVG:{QG(t,n);break}case y.HTML:{yG(t,n);break}case y.BASE:case y.LINK:case y.META:case y.STYLE:case y.TITLE:case y.SCRIPT:case y.BGSOUND:case y.BASEFONT:case y.TEMPLATE:{zr(t,n);break}case y.BODY:{CG(t,n);break}case y.FORM:{LG(t,n);break}case y.NOBR:{OG(t,n);break}case y.MATH:{YG(t,n);break}case y.TABLE:{IG(t,n);break}case y.INPUT:{wG(t,n);break}case y.PARAM:case y.TRACK:case y.SOURCE:{GG(t,n);break}case y.IMAGE:{FG(t,n);break}case y.BUTTON:{RG(t,n);break}case y.APPLET:case y.OBJECT:case y.MARQUEE:{_G(t,n);break}case y.IFRAME:{PG(t,n);break}case y.SELECT:{WG(t,n);break}case y.OPTION:case y.OPTGROUP:{VG(t,n);break}case y.NOEMBED:case y.NOFRAMES:{$y(t,n);break}case y.FRAMESET:{EG(t,n);break}case y.TEXTAREA:{UG(t,n);break}case y.NOSCRIPT:{t.options.scriptingEnabled?$y(t,n):e7(t,n);break}case y.PLAINTEXT:{xG(t,n);break}case y.COL:case y.TH:case y.TD:case y.TR:case y.HEAD:case y.FRAME:case y.TBODY:case y.TFOOT:case y.THEAD:case y.CAPTION:case y.COLGROUP:break;default:e7(t,n)}}function XG(t,n){if(t.openElements.hasInScope(y.BODY)&&(t.insertionMode=V.AFTER_BODY,t.options.sourceCodeLocationInfo)){const r=t.openElements.tryPeekProperlyNestedBodyElement();r&&t._setEndLocation(r,n)}}function KG(t,n){t.openElements.hasInScope(y.BODY)&&(t.insertionMode=V.AFTER_BODY,yA(t,n))}function ZG(t,n){const r=n.tagID;t.openElements.hasInScope(r)&&(t.openElements.generateImpliedEndTags(),t.openElements.popUntilTagNamePopped(r))}function JG(t){const n=t.openElements.tmplCount>0,{formElement:r}=t;n||(t.formElement=null),(r||n)&&t.openElements.hasInScope(y.FORM)&&(t.openElements.generateImpliedEndTags(),n?t.openElements.popUntilTagNamePopped(y.FORM):r&&t.openElements.remove(r))}function $G(t){t.openElements.hasInButtonScope(y.P)||t._insertFakeElement(ne.P,y.P),t._closePElement()}function ek(t){t.openElements.hasInListItemScope(y.LI)&&(t.openElements.generateImpliedEndTagsWithExclusion(y.LI),t.openElements.popUntilTagNamePopped(y.LI))}function tk(t,n){const r=n.tagID;t.openElements.hasInScope(r)&&(t.openElements.generateImpliedEndTagsWithExclusion(r),t.openElements.popUntilTagNamePopped(r))}function ak(t){t.openElements.hasNumberedHeaderInScope()&&(t.openElements.generateImpliedEndTags(),t.openElements.popUntilNumberedHeaderPopped())}function lk(t,n){const r=n.tagID;t.openElements.hasInScope(r)&&(t.openElements.generateImpliedEndTags(),t.openElements.popUntilTagNamePopped(r),t.activeFormattingElements.clearToLastMarker())}function nk(t){t._reconstructActiveFormattingElements(),t._insertFakeElement(ne.BR,y.BR),t.openElements.pop(),t.framesetOk=!1}function dA(t,n){const r=n.tagName,s=n.tagID;for(let b=t.openElements.stackTop;b>0;b--){const h=t.openElements.items[b],p=t.openElements.tagIDs[b];if(s===p&&(s!==y.UNKNOWN||t.treeAdapter.getTagName(h)===r)){t.openElements.generateImpliedEndTagsWithExclusion(s),t.openElements.stackTop>=b&&t.openElements.shortenToLength(b);break}if(t._isSpecialElement(h,p))break}}function D8(t,n){switch(n.tagID){case y.A:case y.B:case y.I:case y.S:case y.U:case y.EM:case y.TT:case y.BIG:case y.CODE:case y.FONT:case y.NOBR:case y.SMALL:case y.STRIKE:case y.STRONG:{ZT(t,n);break}case y.P:{$G(t);break}case y.DL:case y.UL:case y.OL:case y.DIR:case y.DIV:case y.NAV:case y.PRE:case y.MAIN:case y.MENU:case y.ASIDE:case y.BUTTON:case y.CENTER:case y.FIGURE:case y.FOOTER:case y.HEADER:case y.HGROUP:case y.DIALOG:case y.ADDRESS:case y.ARTICLE:case y.DETAILS:case y.SEARCH:case y.SECTION:case y.SUMMARY:case y.LISTING:case y.FIELDSET:case y.BLOCKQUOTE:case y.FIGCAPTION:{ZG(t,n);break}case y.LI:{ek(t);break}case y.DD:case y.DT:{tk(t,n);break}case y.H1:case y.H2:case y.H3:case y.H4:case y.H5:case y.H6:{ak(t);break}case y.BR:{nk(t);break}case y.BODY:{XG(t,n);break}case y.HTML:{KG(t,n);break}case y.FORM:{JG(t);break}case y.APPLET:case y.OBJECT:case y.MARQUEE:{lk(t,n);break}case y.TEMPLATE:{O0(t,n);break}default:dA(t,n)}}function bA(t,n){t.tmplInsertionModeStack.length>0?SA(t,n):JT(t,n)}function ik(t,n){var r;n.tagID===y.SCRIPT&&((r=t.scriptHandler)===null||r===void 0||r.call(t,t.openElements.current)),t.openElements.pop(),t.insertionMode=t.originalInsertionMode}function ok(t,n){t._err(n,me.eofInElementThatCanContainOnlyText),t.openElements.pop(),t.insertionMode=t.originalInsertionMode,t.onEof(n)}function R6(t,n){if(t.openElements.currentTagId!==void 0&&rA.has(t.openElements.currentTagId))switch(t.pendingCharacterTokens.length=0,t.hasNonWhitespacePendingCharacterToken=!1,t.originalInsertionMode=t.insertionMode,t.insertionMode=V.IN_TABLE_TEXT,n.type){case xt.CHARACTER:{hA(t,n);break}case xt.WHITESPACE_CHARACTER:{mA(t,n);break}}else o4(t,n)}function rk(t,n){t.openElements.clearBackToTableContext(),t.activeFormattingElements.insertMarker(),t._insertElement(n,Le.HTML),t.insertionMode=V.IN_CAPTION}function uk(t,n){t.openElements.clearBackToTableContext(),t._insertElement(n,Le.HTML),t.insertionMode=V.IN_COLUMN_GROUP}function sk(t,n){t.openElements.clearBackToTableContext(),t._insertFakeElement(ne.COLGROUP,y.COLGROUP),t.insertionMode=V.IN_COLUMN_GROUP,$T(t,n)}function ck(t,n){t.openElements.clearBackToTableContext(),t._insertElement(n,Le.HTML),t.insertionMode=V.IN_TABLE_BODY}function fk(t,n){t.openElements.clearBackToTableContext(),t._insertFakeElement(ne.TBODY,y.TBODY),t.insertionMode=V.IN_TABLE_BODY,L8(t,n)}function dk(t,n){t.openElements.hasInTableScope(y.TABLE)&&(t.openElements.popUntilTagNamePopped(y.TABLE),t._resetInsertionMode(),t._processStartTag(n))}function bk(t,n){fA(n)?t._appendElement(n,Le.HTML):o4(t,n),n.ackSelfClosing=!0}function mk(t,n){!t.formElement&&t.openElements.tmplCount===0&&(t._insertElement(n,Le.HTML),t.formElement=t.openElements.current,t.openElements.pop())}function gm(t,n){switch(n.tagID){case y.TD:case y.TH:case y.TR:{fk(t,n);break}case y.STYLE:case y.SCRIPT:case y.TEMPLATE:{zr(t,n);break}case y.COL:{sk(t,n);break}case y.FORM:{mk(t,n);break}case y.TABLE:{dk(t,n);break}case y.TBODY:case y.TFOOT:case y.THEAD:{ck(t,n);break}case y.INPUT:{bk(t,n);break}case y.CAPTION:{rk(t,n);break}case y.COLGROUP:{uk(t,n);break}default:o4(t,n)}}function J2(t,n){switch(n.tagID){case y.TABLE:{t.openElements.hasInTableScope(y.TABLE)&&(t.openElements.popUntilTagNamePopped(y.TABLE),t._resetInsertionMode());break}case y.TEMPLATE:{O0(t,n);break}case y.BODY:case y.CAPTION:case y.COL:case y.COLGROUP:case y.HTML:case y.TBODY:case y.TD:case y.TFOOT:case y.TH:case y.THEAD:case y.TR:break;default:o4(t,n)}}function o4(t,n){const r=t.fosterParentingEnabled;t.fosterParentingEnabled=!0,M8(t,n),t.fosterParentingEnabled=r}function mA(t,n){t.pendingCharacterTokens.push(n)}function hA(t,n){t.pendingCharacterTokens.push(n),t.hasNonWhitespacePendingCharacterToken=!0}function w2(t,n){let r=0;if(t.hasNonWhitespacePendingCharacterToken)for(;r<t.pendingCharacterTokens.length;r++)o4(t,t.pendingCharacterTokens[r]);else for(;r<t.pendingCharacterTokens.length;r++)t._insertCharacters(t.pendingCharacterTokens[r]);t.insertionMode=t.originalInsertionMode,t._processToken(n)}const pA=new Set([y.CAPTION,y.COL,y.COLGROUP,y.TBODY,y.TD,y.TFOOT,y.TH,y.THEAD,y.TR]);function hk(t,n){const r=n.tagID;pA.has(r)?t.openElements.hasInTableScope(y.CAPTION)&&(t.openElements.generateImpliedEndTags(),t.openElements.popUntilTagNamePopped(y.CAPTION),t.activeFormattingElements.clearToLastMarker(),t.insertionMode=V.IN_TABLE,gm(t,n)):pn(t,n)}function pk(t,n){const r=n.tagID;switch(r){case y.CAPTION:case y.TABLE:{t.openElements.hasInTableScope(y.CAPTION)&&(t.openElements.generateImpliedEndTags(),t.openElements.popUntilTagNamePopped(y.CAPTION),t.activeFormattingElements.clearToLastMarker(),t.insertionMode=V.IN_TABLE,r===y.TABLE&&J2(t,n));break}case y.BODY:case y.COL:case y.COLGROUP:case y.HTML:case y.TBODY:case y.TD:case y.TFOOT:case y.TH:case y.THEAD:case y.TR:break;default:D8(t,n)}}function $T(t,n){switch(n.tagID){case y.HTML:{pn(t,n);break}case y.COL:{t._appendElement(n,Le.HTML),n.ackSelfClosing=!0;break}case y.TEMPLATE:{zr(t,n);break}default:n8(t,n)}}function gk(t,n){switch(n.tagID){case y.COLGROUP:{t.openElements.currentTagId===y.COLGROUP&&(t.openElements.pop(),t.insertionMode=V.IN_TABLE);break}case y.TEMPLATE:{O0(t,n);break}case y.COL:break;default:n8(t,n)}}function n8(t,n){t.openElements.currentTagId===y.COLGROUP&&(t.openElements.pop(),t.insertionMode=V.IN_TABLE,t._processToken(n))}function L8(t,n){switch(n.tagID){case y.TR:{t.openElements.clearBackToTableBodyContext(),t._insertElement(n,Le.HTML),t.insertionMode=V.IN_ROW;break}case y.TH:case y.TD:{t.openElements.clearBackToTableBodyContext(),t._insertFakeElement(ne.TR,y.TR),t.insertionMode=V.IN_ROW,z8(t,n);break}case y.CAPTION:case y.COL:case y.COLGROUP:case y.TBODY:case y.TFOOT:case y.THEAD:{t.openElements.hasTableBodyContextInTableScope()&&(t.openElements.clearBackToTableBodyContext(),t.openElements.pop(),t.insertionMode=V.IN_TABLE,gm(t,n));break}default:gm(t,n)}}function aT(t,n){const r=n.tagID;switch(n.tagID){case y.TBODY:case y.TFOOT:case y.THEAD:{t.openElements.hasInTableScope(r)&&(t.openElements.clearBackToTableBodyContext(),t.openElements.pop(),t.insertionMode=V.IN_TABLE);break}case y.TABLE:{t.openElements.hasTableBodyContextInTableScope()&&(t.openElements.clearBackToTableBodyContext(),t.openElements.pop(),t.insertionMode=V.IN_TABLE,J2(t,n));break}case y.BODY:case y.CAPTION:case y.COL:case y.COLGROUP:case y.HTML:case y.TD:case y.TH:case y.TR:break;default:J2(t,n)}}function z8(t,n){switch(n.tagID){case y.TH:case y.TD:{t.openElements.clearBackToTableRowContext(),t._insertElement(n,Le.HTML),t.insertionMode=V.IN_CELL,t.activeFormattingElements.insertMarker();break}case y.CAPTION:case y.COL:case y.COLGROUP:case y.TBODY:case y.TFOOT:case y.THEAD:case y.TR:{t.openElements.hasInTableScope(y.TR)&&(t.openElements.clearBackToTableRowContext(),t.openElements.pop(),t.insertionMode=V.IN_TABLE_BODY,L8(t,n));break}default:gm(t,n)}}function gA(t,n){switch(n.tagID){case y.TR:{t.openElements.hasInTableScope(y.TR)&&(t.openElements.clearBackToTableRowContext(),t.openElements.pop(),t.insertionMode=V.IN_TABLE_BODY);break}case y.TABLE:{t.openElements.hasInTableScope(y.TR)&&(t.openElements.clearBackToTableRowContext(),t.openElements.pop(),t.insertionMode=V.IN_TABLE_BODY,aT(t,n));break}case y.TBODY:case y.TFOOT:case y.THEAD:{(t.openElements.hasInTableScope(n.tagID)||t.openElements.hasInTableScope(y.TR))&&(t.openElements.clearBackToTableRowContext(),t.openElements.pop(),t.insertionMode=V.IN_TABLE_BODY,aT(t,n));break}case y.BODY:case y.CAPTION:case y.COL:case y.COLGROUP:case y.HTML:case y.TD:case y.TH:break;default:J2(t,n)}}function Tk(t,n){const r=n.tagID;pA.has(r)?(t.openElements.hasInTableScope(y.TD)||t.openElements.hasInTableScope(y.TH))&&(t._closeTableCell(),z8(t,n)):pn(t,n)}function vk(t,n){const r=n.tagID;switch(r){case y.TD:case y.TH:{t.openElements.hasInTableScope(r)&&(t.openElements.generateImpliedEndTags(),t.openElements.popUntilTagNamePopped(r),t.activeFormattingElements.clearToLastMarker(),t.insertionMode=V.IN_ROW);break}case y.TABLE:case y.TBODY:case y.TFOOT:case y.THEAD:case y.TR:{t.openElements.hasInTableScope(r)&&(t._closeTableCell(),gA(t,n));break}case y.BODY:case y.CAPTION:case y.COL:case y.COLGROUP:case y.HTML:break;default:D8(t,n)}}function TA(t,n){switch(n.tagID){case y.HTML:{pn(t,n);break}case y.OPTION:{t.openElements.currentTagId===y.OPTION&&t.openElements.pop(),t._insertElement(n,Le.HTML);break}case y.OPTGROUP:{t.openElements.currentTagId===y.OPTION&&t.openElements.pop(),t.openElements.currentTagId===y.OPTGROUP&&t.openElements.pop(),t._insertElement(n,Le.HTML);break}case y.HR:{t.openElements.currentTagId===y.OPTION&&t.openElements.pop(),t.openElements.currentTagId===y.OPTGROUP&&t.openElements.pop(),t._appendElement(n,Le.HTML),n.ackSelfClosing=!0;break}case y.INPUT:case y.KEYGEN:case y.TEXTAREA:case y.SELECT:{t.openElements.hasInSelectScope(y.SELECT)&&(t.openElements.popUntilTagNamePopped(y.SELECT),t._resetInsertionMode(),n.tagID!==y.SELECT&&t._processStartTag(n));break}case y.SCRIPT:case y.TEMPLATE:{zr(t,n);break}}}function vA(t,n){switch(n.tagID){case y.OPTGROUP:{t.openElements.stackTop>0&&t.openElements.currentTagId===y.OPTION&&t.openElements.tagIDs[t.openElements.stackTop-1]===y.OPTGROUP&&t.openElements.pop(),t.openElements.currentTagId===y.OPTGROUP&&t.openElements.pop();break}case y.OPTION:{t.openElements.currentTagId===y.OPTION&&t.openElements.pop();break}case y.SELECT:{t.openElements.hasInSelectScope(y.SELECT)&&(t.openElements.popUntilTagNamePopped(y.SELECT),t._resetInsertionMode());break}case y.TEMPLATE:{O0(t,n);break}}}function Sk(t,n){const r=n.tagID;r===y.CAPTION||r===y.TABLE||r===y.TBODY||r===y.TFOOT||r===y.THEAD||r===y.TR||r===y.TD||r===y.TH?(t.openElements.popUntilTagNamePopped(y.SELECT),t._resetInsertionMode(),t._processStartTag(n)):TA(t,n)}function yk(t,n){const r=n.tagID;r===y.CAPTION||r===y.TABLE||r===y.TBODY||r===y.TFOOT||r===y.THEAD||r===y.TR||r===y.TD||r===y.TH?t.openElements.hasInTableScope(r)&&(t.openElements.popUntilTagNamePopped(y.SELECT),t._resetInsertionMode(),t.onEndTag(n)):vA(t,n)}function Ck(t,n){switch(n.tagID){case y.BASE:case y.BASEFONT:case y.BGSOUND:case y.LINK:case y.META:case y.NOFRAMES:case y.SCRIPT:case y.STYLE:case y.TEMPLATE:case y.TITLE:{zr(t,n);break}case y.CAPTION:case y.COLGROUP:case y.TBODY:case y.TFOOT:case y.THEAD:{t.tmplInsertionModeStack[0]=V.IN_TABLE,t.insertionMode=V.IN_TABLE,gm(t,n);break}case y.COL:{t.tmplInsertionModeStack[0]=V.IN_COLUMN_GROUP,t.insertionMode=V.IN_COLUMN_GROUP,$T(t,n);break}case y.TR:{t.tmplInsertionModeStack[0]=V.IN_TABLE_BODY,t.insertionMode=V.IN_TABLE_BODY,L8(t,n);break}case y.TD:case y.TH:{t.tmplInsertionModeStack[0]=V.IN_ROW,t.insertionMode=V.IN_ROW,z8(t,n);break}default:t.tmplInsertionModeStack[0]=V.IN_BODY,t.insertionMode=V.IN_BODY,pn(t,n)}}function Ek(t,n){n.tagID===y.TEMPLATE&&O0(t,n)}function SA(t,n){t.openElements.tmplCount>0?(t.openElements.popUntilTagNamePopped(y.TEMPLATE),t.activeFormattingElements.clearToLastMarker(),t.tmplInsertionModeStack.shift(),t._resetInsertionMode(),t.onEof(n)):JT(t,n)}function Ak(t,n){n.tagID===y.HTML?pn(t,n):i8(t,n)}function yA(t,n){var r;if(n.tagID===y.HTML){if(t.fragmentContext||(t.insertionMode=V.AFTER_AFTER_BODY),t.options.sourceCodeLocationInfo&&t.openElements.tagIDs[0]===y.HTML){t._setEndLocation(t.openElements.items[0],n);const s=t.openElements.items[1];s&&!(!((r=t.treeAdapter.getNodeSourceCodeLocation(s))===null||r===void 0)&&r.endTag)&&t._setEndLocation(s,n)}}else i8(t,n)}function i8(t,n){t.insertionMode=V.IN_BODY,M8(t,n)}function Mk(t,n){switch(n.tagID){case y.HTML:{pn(t,n);break}case y.FRAMESET:{t._insertElement(n,Le.HTML);break}case y.FRAME:{t._appendElement(n,Le.HTML),n.ackSelfClosing=!0;break}case y.NOFRAMES:{zr(t,n);break}}}function Dk(t,n){n.tagID===y.FRAMESET&&!t.openElements.isRootHtmlElementCurrent()&&(t.openElements.pop(),!t.fragmentContext&&t.openElements.currentTagId!==y.FRAMESET&&(t.insertionMode=V.AFTER_FRAMESET))}function Lk(t,n){switch(n.tagID){case y.HTML:{pn(t,n);break}case y.NOFRAMES:{zr(t,n);break}}}function zk(t,n){n.tagID===y.HTML&&(t.insertionMode=V.AFTER_AFTER_FRAMESET)}function xk(t,n){n.tagID===y.HTML?pn(t,n):Kg(t,n)}function Kg(t,n){t.insertionMode=V.IN_BODY,M8(t,n)}function Rk(t,n){switch(n.tagID){case y.HTML:{pn(t,n);break}case y.NOFRAMES:{zr(t,n);break}}}function Nk(t,n){n.chars=Ba,t._insertCharacters(n)}function Bk(t,n){t._insertCharacters(n),t.framesetOk=!1}function CA(t){for(;t.treeAdapter.getNamespaceURI(t.openElements.current)!==Le.HTML&&t.openElements.currentTagId!==void 0&&!t._isIntegrationPoint(t.openElements.currentTagId,t.openElements.current);)t.openElements.pop()}function Ok(t,n){if(Qw(n))CA(t),t._startTagOutsideForeignContent(n);else{const r=t._getAdjustedCurrentElement(),s=t.treeAdapter.getNamespaceURI(r);s===Le.MATHML?iA(n):s===Le.SVG&&(Xw(n),oA(n)),KT(n),n.selfClosing?t._appendElement(n,s):t._insertElement(n,s),n.ackSelfClosing=!0}}function _k(t,n){if(n.tagID===y.P||n.tagID===y.BR){CA(t),t._endTagOutsideForeignContent(n);return}for(let r=t.openElements.stackTop;r>0;r--){const s=t.openElements.items[r];if(t.treeAdapter.getNamespaceURI(s)===Le.HTML){t._endTagOutsideForeignContent(n);break}const b=t.treeAdapter.getTagName(s);if(b.toLowerCase()===n.tagName){n.tagName=b,t.openElements.shortenToLength(r);break}}}ne.AREA,ne.BASE,ne.BASEFONT,ne.BGSOUND,ne.BR,ne.COL,ne.EMBED,ne.FRAME,ne.HR,ne.IMG,ne.INPUT,ne.KEYGEN,ne.LINK,ne.META,ne.PARAM,ne.SOURCE,ne.TRACK,ne.WBR;const Ik=/<(\/?)(iframe|noembed|noframes|plaintext|script|style|textarea|title|xmp)(?=[\t\n\f\r />])/gi,wk=new Set(["mdxFlowExpression","mdxJsxFlowElement","mdxJsxTextElement","mdxTextExpression","mdxjsEsm"]),t7={sourceCodeLocationInfo:!0,scriptingEnabled:!1};function EA(t,n){const r=jk(t),s=QE("type",{handlers:{root:Gk,element:kk,text:Fk,comment:MA,doctype:Uk,raw:Pk},unknown:Wk}),b={parser:r?new Jy(t7):Jy.getFragmentParser(void 0,t7),handle(T){s(T,b)},stitches:!1,options:n||{}};s(t,b),xm(b,Lu());const h=r?b.parser.document:b.parser.getFragment(),p=GI(h,{file:b.options.file});return b.stitches&&qT(p,"comment",function(T,E,A){const M=T;if(M.value.stitch&&A&&E!==void 0){const L=A.children;return L[E]=M.value.stitch,E}}),p.type==="root"&&p.children.length===1&&p.children[0].type===t.type?p.children[0]:p}function AA(t,n){let r=-1;if(t)for(;++r<t.length;)n.handle(t[r])}function Gk(t,n){AA(t.children,n)}function kk(t,n){Vk(t,n),AA(t.children,n),qk(t,n)}function Fk(t,n){n.parser.tokenizer.state>4&&(n.parser.tokenizer.state=0);const r={type:xt.CHARACTER,chars:t.value,location:r4(t)};xm(n,Lu(t)),n.parser.currentToken=r,n.parser._processToken(n.parser.currentToken)}function Uk(t,n){const r={type:xt.DOCTYPE,name:"html",forceQuirks:!1,publicId:"",systemId:"",location:r4(t)};xm(n,Lu(t)),n.parser.currentToken=r,n.parser._processToken(n.parser.currentToken)}function Hk(t,n){n.stitches=!0;const r=Yk(t);if("children"in t&&"children"in r){const s=EA({type:"root",children:t.children},n.options);r.children=s.children}MA({type:"comment",value:{stitch:r}},n)}function MA(t,n){const r=t.value,s={type:xt.COMMENT,data:r,location:r4(t)};xm(n,Lu(t)),n.parser.currentToken=s,n.parser._processToken(n.parser.currentToken)}function Pk(t,n){if(n.parser.tokenizer.preprocessor.html="",n.parser.tokenizer.preprocessor.pos=-1,n.parser.tokenizer.preprocessor.lastGapPos=-2,n.parser.tokenizer.preprocessor.gapStack=[],n.parser.tokenizer.preprocessor.skipNextNewLine=!1,n.parser.tokenizer.preprocessor.lastChunkWritten=!1,n.parser.tokenizer.preprocessor.endOfChunkHit=!1,n.parser.tokenizer.preprocessor.isEol=!1,DA(n,Lu(t)),n.parser.tokenizer.write(n.options.tagfilter?t.value.replace(Ik,"&lt;$1$2"):t.value,!1),n.parser.tokenizer._runParsingLoop(),n.parser.tokenizer.state===72||n.parser.tokenizer.state===78){n.parser.tokenizer.preprocessor.lastChunkWritten=!0;const r=n.parser.tokenizer._consume();n.parser.tokenizer._callState(r)}}function Wk(t,n){const r=t;if(n.options.passThrough&&n.options.passThrough.includes(r.type))Hk(r,n);else{let s="";throw wk.has(r.type)&&(s=". It looks like you are using MDX nodes with `hast-util-raw` (or `rehype-raw`). If you use this because you are using remark or rehype plugins that inject `'html'` nodes, then please raise an issue with that plugin, as its a bad and slow idea. If you use this because you are using markdown syntax, then you have to configure this utility (or plugin) to pass through these nodes (see `passThrough` in docs), but you can also migrate to use the MDX syntax"),new Error("Cannot compile `"+r.type+"` node"+s)}}function xm(t,n){DA(t,n);const r=t.parser.tokenizer.currentCharacterToken;r&&r.location&&(r.location.endLine=t.parser.tokenizer.preprocessor.line,r.location.endCol=t.parser.tokenizer.preprocessor.col+1,r.location.endOffset=t.parser.tokenizer.preprocessor.offset+1,t.parser.currentToken=r,t.parser._processToken(t.parser.currentToken)),t.parser.tokenizer.paused=!1,t.parser.tokenizer.inLoop=!1,t.parser.tokenizer.active=!1,t.parser.tokenizer.returnState=el.DATA,t.parser.tokenizer.charRefCode=-1,t.parser.tokenizer.consumedAfterSnapshot=-1,t.parser.tokenizer.currentLocation=null,t.parser.tokenizer.currentCharacterToken=null,t.parser.tokenizer.currentToken=null,t.parser.tokenizer.currentAttr={name:"",value:""}}function DA(t,n){if(n&&n.offset!==void 0){const r={startLine:n.line,startCol:n.column,startOffset:n.offset,endLine:-1,endCol:-1,endOffset:-1};t.parser.tokenizer.preprocessor.lineStartPos=-n.column+1,t.parser.tokenizer.preprocessor.droppedBufferSize=n.offset,t.parser.tokenizer.preprocessor.line=n.line,t.parser.tokenizer.currentLocation=r}}function Vk(t,n){const r=t.tagName.toLowerCase();if(n.parser.tokenizer.state===el.PLAINTEXT)return;xm(n,Lu(t));const s=n.parser.openElements.current;let b="namespaceURI"in s?s.namespaceURI:E0.html;b===E0.html&&r==="svg"&&(b=E0.svg);const h=JI({...t,children:[]},{space:b===E0.svg?"svg":"html"}),p={type:xt.START_TAG,tagName:r,tagID:zm(r),selfClosing:!1,ackSelfClosing:!1,attrs:"attrs"in h?h.attrs:[],location:r4(t)};n.parser.currentToken=p,n.parser._processToken(n.parser.currentToken),n.parser.tokenizer.lastStartTagName=r}function qk(t,n){const r=t.tagName.toLowerCase();if(!n.parser.tokenizer.inForeignNode&&ow.includes(r)||n.parser.tokenizer.state===el.PLAINTEXT)return;xm(n,y8(t));const s={type:xt.END_TAG,tagName:r,tagID:zm(r),selfClosing:!1,ackSelfClosing:!1,attrs:[],location:r4(t)};n.parser.currentToken=s,n.parser._processToken(n.parser.currentToken),r===n.parser.tokenizer.lastStartTagName&&(n.parser.tokenizer.state===el.RCDATA||n.parser.tokenizer.state===el.RAWTEXT||n.parser.tokenizer.state===el.SCRIPT_DATA)&&(n.parser.tokenizer.state=el.DATA)}function jk(t){const n=t.type==="root"?t.children[0]:t;return!!(n&&(n.type==="doctype"||n.type==="element"&&n.tagName.toLowerCase()==="html"))}function r4(t){const n=Lu(t)||{line:void 0,column:void 0,offset:void 0},r=y8(t)||{line:void 0,column:void 0,offset:void 0};return{startLine:n.line,startCol:n.column,startOffset:n.offset,endLine:r.line,endCol:r.column,endOffset:r.offset}}function Yk(t){return"children"in t?pm({...t,children:[]}):pm(t)}function Qk(t){return function(n,r){return EA(n,{...t,file:r})}}const Xk="_prose_1l8lv_1",Kk="_mdAccordion_1l8lv_16",LA={prose:Xk,mdAccordion:Kk};function Zk(t,{openFirst:n=!1}={}){if(!t)return"";const r=/~H~~([\s\S]*?)~~\s*~M~~([\s\S]*?)~~/g;let s=0;return t.replace(r,(b,h,p)=>{const T=n&&s===0?" open":"";return s+=1,`
366
+ <details class="${LA.mdAccordion}"${T}>
367
+ <summary>${String(h).trim()}</summary>
368
+ <div class="p-4">
369
+ ${String(p).trim()}
370
+ </div>
371
+ </details>`})}function Jk({children:t,className:n="",openFirst:r=!1}){const b=Zk(typeof t=="string"?t:"",{openFirst:r});return B.jsx("div",{className:["prose",LA.prose,n].filter(Boolean).join(" "),children:B.jsx(CI,{rehypePlugins:[Qk],children:b})})}function $k(t){return B.jsxs("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":!0,className:"size-5",...t,children:[B.jsx("rect",{x:"0.666667",y:"0.666667",width:"10.6667",height:"10.6667",rx:"5.33333",stroke:"#B1B1B1",strokeWidth:"1.33333"}),B.jsx("circle",{cx:"6.00065",cy:"3.33268",r:"0.666667",fill:"#B1B1B1"}),B.jsx("rect",{x:"5.33398",y:"5.33398",width:"1.33333",height:"4",fill:"#B1B1B1"})]})}const a7={},eF=({tooltipData:t,openFirst:n=!1,trigger:r})=>{if(!t?.trim())return null;const s=b=>{b.stopPropagation()};return B.jsxs(RT,{children:[B.jsx(NT,{asChild:!0,children:r??B.jsx("button",{className:a7.iconBtn,"aria-label":"Open tooltip",onClick:s,children:B.jsx($k,{className:a7.iconSvg})})}),B.jsx(BT,{className:"bg-[#000] text-white text-[1.1rem] leading-[1.45] w-auto max-w-[300px]",side:"top",children:B.jsx(Jk,{openFirst:n,children:t})})]})};function tF(t){const n=X.useRef({value:t,previous:t});return X.useMemo(()=>(n.current.value!==t&&(n.current.previous=n.current.value,n.current.value=t),n.current.previous),[t])}var x8="Checkbox",[aF]=d8(x8),[lF,e3]=aF(x8);function nF(t){const{__scopeCheckbox:n,checked:r,children:s,defaultChecked:b,disabled:h,form:p,name:T,onCheckedChange:E,required:A,value:M="on",internal_do_not_use_render:L}=t,[R,z]=oT({prop:r,defaultProp:b??!1,onChange:E,caller:x8}),[U,G]=X.useState(null),[J,F]=X.useState(null),ie=X.useRef(!1),te=U?!!p||!!U.closest("form"):!0,Te={checked:R,disabled:h,setChecked:z,control:U,setControl:G,name:T,form:p,value:M,hasConsumerStoppedPropagationRef:ie,required:A,defaultChecked:Rf(b)?!1:b,isFormControl:te,bubbleInput:J,setBubbleInput:F};return B.jsx(lF,{scope:n,...Te,children:iF(L)?L(Te):s})}var zA="CheckboxTrigger",xA=X.forwardRef(({__scopeCheckbox:t,onKeyDown:n,onClick:r,...s},b)=>{const{control:h,value:p,disabled:T,checked:E,required:A,setControl:M,setChecked:L,hasConsumerStoppedPropagationRef:R,isFormControl:z,bubbleInput:U}=e3(zA,t),G=Ki(b,M),J=X.useRef(E);return X.useEffect(()=>{const F=h?.form;if(F){const ie=()=>L(J.current);return F.addEventListener("reset",ie),()=>F.removeEventListener("reset",ie)}},[h,L]),B.jsx(tn.button,{type:"button",role:"checkbox","aria-checked":Rf(E)?"mixed":E,"aria-required":A,"data-state":IA(E),"data-disabled":T?"":void 0,disabled:T,value:p,...s,ref:G,onKeyDown:Hn(n,F=>{F.key==="Enter"&&F.preventDefault()}),onClick:Hn(r,F=>{L(ie=>Rf(ie)?!0:!ie),U&&z&&(R.current=F.isPropagationStopped(),R.current||F.stopPropagation())})})});xA.displayName=zA;var RA=X.forwardRef((t,n)=>{const{__scopeCheckbox:r,name:s,checked:b,defaultChecked:h,required:p,disabled:T,value:E,onCheckedChange:A,form:M,...L}=t;return B.jsx(nF,{__scopeCheckbox:r,checked:b,defaultChecked:h,disabled:T,required:p,onCheckedChange:A,name:s,form:M,value:E,internal_do_not_use_render:({isFormControl:R})=>B.jsxs(B.Fragment,{children:[B.jsx(xA,{...L,ref:n,__scopeCheckbox:r}),R&&B.jsx(_A,{__scopeCheckbox:r})]})})});RA.displayName=x8;var NA="CheckboxIndicator",BA=X.forwardRef((t,n)=>{const{__scopeCheckbox:r,forceMount:s,...b}=t,h=e3(NA,r);return B.jsx(Tm,{present:s||Rf(h.checked)||h.checked===!0,children:B.jsx(tn.span,{"data-state":IA(h.checked),"data-disabled":h.disabled?"":void 0,...b,ref:n,style:{pointerEvents:"none",...t.style}})})});BA.displayName=NA;var OA="CheckboxBubbleInput",_A=X.forwardRef(({__scopeCheckbox:t,...n},r)=>{const{control:s,hasConsumerStoppedPropagationRef:b,checked:h,defaultChecked:p,required:T,disabled:E,name:A,value:M,form:L,bubbleInput:R,setBubbleInput:z}=e3(OA,t),U=Ki(r,z),G=tF(h),J=GC(s);X.useEffect(()=>{const ie=R;if(!ie)return;const te=window.HTMLInputElement.prototype,ge=Object.getOwnPropertyDescriptor(te,"checked").set,le=!b.current;if(G!==h&&ge){const Se=new Event("click",{bubbles:le});ie.indeterminate=Rf(h),ge.call(ie,Rf(h)?!1:h),ie.dispatchEvent(Se)}},[R,G,h,b]);const F=X.useRef(Rf(h)?!1:h);return B.jsx(tn.input,{type:"checkbox","aria-hidden":!0,defaultChecked:p??F.current,required:T,disabled:E,name:A,value:M,form:L,...n,tabIndex:-1,ref:U,style:{...n.style,...J,position:"absolute",pointerEvents:"none",opacity:0,margin:0,transform:"translateX(-100%)"}})});_A.displayName=OA;function iF(t){return typeof t=="function"}function Rf(t){return t==="indeterminate"}function IA(t){return Rf(t)?"indeterminate":t?"checked":"unchecked"}function oF({className:t,...n}){return B.jsx(RA,{"data-slot":"checkbox",className:Cu("bg-white peer border-input dark:bg-input/30 data-[state=checked]:bg-black data-[state=checked]:text-primary-foreground dark:data-[state=checked]:bg-black data-[state=checked]:border-black focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive size-4 shrink-0 rounded-[4px] border shadow-xs transition-shadow outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50",t),...n,children:B.jsx(BA,{"data-slot":"checkbox-indicator",className:"flex items-center justify-center text-current transition-none",children:B.jsx(wz,{className:"size-5"})})})}const Rm=X.forwardRef(({options:t,values:n,onValueChange:r,placeholder:s="Select options...",className:b,dropdownWidth:h,align:p="start",getTooltipByMaterialAndSection:T,sectionName:E},A)=>{const[M,L]=X.useState(!1),R=X.useRef(null);X.useEffect(()=>{if(!M)return;const F=te=>{const Te=te.target,ge=R.current;ge&&(ge.contains(Te)||Te===ge)||L(!1)},ie=te=>{te.key==="Escape"&&L(!1)};return window.addEventListener("scroll",F,!0),window.addEventListener("resize",F),document.addEventListener("keydown",ie),()=>{window.removeEventListener("scroll",F,!0),window.removeEventListener("resize",F),document.removeEventListener("keydown",ie)}},[M]);const z=(F,ie)=>{r(ie?[...n,F]:n.filter(te=>te!==F))},U=()=>{r([])},G=n.length,J=G===0?s:G===1?t.find(F=>F.value===n[0])?.label||`${s} selected`:B.jsxs("div",{className:"flex flex-row items-center justify-between w-full",children:[B.jsx("span",{className:"truncate",children:s}),B.jsx("span",{className:"text-[0.8rem] text-white bg-[var(--main-accent-color)] px-1.5 py-0.5 ml-2 rounded-full whitespace-nowrap",children:G})]});return B.jsxs(uN,{open:M,onOpenChange:L,children:[B.jsxs(sN,{ref:A,className:Cu("flex flex-row items-center justify-between rounded-full border px-3 sm:px-5 py-2 bg-white cursor-pointer hover:bg-gray-50 data-[state=open]:border-primary hover:border-primary focus:border-primary",b),children:[B.jsx("div",{className:"w-full text-[0.9rem] truncate text-left",children:J}),B.jsx(kz,{className:Cu("ml-2 h-4 w-4 transition-transform",M&&"rotate-180")})]}),B.jsxs(cN,{ref:R,className:Cu("bg-white border rounded-lg shadow-lg z-50 max-h-80 overflow-y-auto overscroll-behavior-y-contain touch-pan-y p-2",h||"w-[var(--radix-popover-trigger-width)]"),align:p,sideOffset:4,style:{WebkitOverflowScrolling:"touch",overscrollBehavior:"contain"},onTouchStart:F=>{F.stopPropagation()},onTouchMove:F=>{F.stopPropagation()},onWheel:F=>{F.stopPropagation()},children:[G>0&&B.jsx("div",{className:"flex flex-row gap-2 items-center justify-between px-2 py-1 mb-2 border-b",children:B.jsxs("button",{onClick:U,className:"text-[1.2rem] text-black hover:text-primary transition-color cursor-pointer duration-200 flex flex-row items-center gap-1",children:[B.jsx(sC,{className:"h-3 w-3"}),"Clear all"]})}),B.jsx("div",{className:"flex flex-col gap-1",children:t.map(F=>{const ie=n.includes(F.value);return B.jsxs("div",{className:"flex flex-row items-start gap-2 px-2 py-1 hover:bg-gray-50 rounded transition-background duration-300 cursor-pointer",onClick:()=>z(F.value,!ie),children:[B.jsx(oF,{checked:ie,className:"size-6",onCheckedChange:te=>z(F.value,te)}),B.jsxs("div",{className:"flex-1 flex flex-row items-start justify-between",children:[B.jsxs("div",{className:"flex flex-row items-center gap-2",children:[B.jsx("span",{className:"text-[1.2rem]",children:F.label}),(()=>{if(!T||!E)return null;const te=T(F.value,E);return te&&te.Description?B.jsx(eF,{tooltipData:te?.Description}):null})()]}),F.count!==void 0&&B.jsx("span",{className:"text-[1rem] text-gray-800 bg-gray-100 px-2 py-0.5 ml-2 rounded-full whitespace-nowrap",children:F.count})]})]},F.value)})})]})]})});Rm.displayName="MultiSelect";const rF="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAACgCAYAAACLz2ctAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAIyTSURBVHgBnf1prGXZlSaGrb3PuW9+L14MmRE5D2SSycpkklXNGlnd1VDLVrXdkDxBkAVIsC0DbUmA/cP+Yxgw/EsQYNgwDEHQH/8wJECCJAiSSmi1epKqS1VdJJtFFrOKTOacGRnzHPHGe+85W3sN39rr3BdJVesmg++9e889w95rr/Wtbw07/c/++l8pXc40m80ovkoplFKqP+sf40il/lffkPe2N7fo5Zdfpo2NNTmOUib+uO97euW112lza1vOMY5LWszndHR8TA/vP6DrN76g+/fv0zCM1He5Ht9RV7/D5+xyR6VeR6+p19ZzjHoNIn8Pf/Nnud47Phvr+9m+z//Gcaj/itw/HzsMAy2XSz+e/xuoyGfzep/ffPttOnd+v96HHFHPzdcrdP7CBerXN+iTDz+ke3fvyDVxL3G8+H1+Bn4mfvG4pnC/8d7jM+J+F4uFvMfjONo943i+d/4dz3B6ckKDHcNnGfB89edJ/ezZy8/STp2H9bU1GednnnmG9s9fotzxeLf77mYdff7ZVTo8OPBnxpjys+NYeU/GTJ8L4zxijvgYPtiOWR2b+JwyV6Oevz89mcsNFntD/htJJi/lpIMIQUx6ktPTU7nQSy+9QOvr6/VgPSkPzOeffU5ffeOrNgn1YbpOBnRrZ7sOwHk6PjkmvubDBw9oc2NDBJ9vn8+TqyB3Odm5BpkQ/qkCQypME0Ec/cH4M/052kMWufflMMq9j/LEhZaLpfwU4SxJ3uf75sm7dfs2be/sUFfvWY/PMiFHRyd0fnO7TtaMTk5PZLEkDLQI/igLUASwXmxeJ5OfK9nEZVu48YX7lH/2Ny8gvuejKkBjvZ+ZCSKOh8Cd2OcQSD734eGhnGdRn4WvNOtnft21KoSz+o+Szmuu9y9zXf8+evyYbty47sLDg9XPZjIXcow8F8mY8L9ii5yPHXgx28J3AbF77fsm6FhM/Dn/1PFV4a7X6l0qc5dJh1UPTFlXRJRgvJ48eUy3b83oypXnZLDx2Xx+Sp9//hm9+tprfgP8OQvY3rlzdHx8Qrdu3qznzjbwxYVVblZWcZEJ5XPO1mcyKUUeotj96GKZzxcyGWtr6/WheCxU2CGc/P01OacOADSMCDNPXh3AnKug5M06uSrwmNAm1KkuuBM5LwveWn2OpDMp96/au3dh47/5WSGgfJ7eBBpacinXzUEbjKK5sv3NY5PkenoMjh9ZuPh89bPBBBfaiRfOcR0LsuvzJJPdz/b2lgjh40cPaXfvnM1vvZeqeJ48eUJ7u7s+/rgv+b0KYRKFUCZa37V9PWd7j6ChdGyHQSwgXiJfmednFjRsFcCN9U2ZLBE4viBUbv1vGJb1/SaE8Qb4t/vVrPJ3nn32WRNCfoCRDutD3bx5nS5ffs4fiAdts17r/LnzdFA/Pzh4QqdVWFlCROPV83U9r0xdIcXuZ1jWlSMLdpSJ0QeDliPaqZpVVpc9OK9wrGRoj2V9DhEoEUpdicsqbMXMlmih+vujhw8FMvQ9D2wzf2VUzdTXxcoCz88EDbOq0SIkkN9Ny+G9Bm30JwSehXRhmnjNFhFe0Dz8/sDf5cXI3+Nz1PcEVphmWtTPtre39X7rP/7uWr1vNr2i3ZOsSPkuz+2jR4+omdo8mWdKsDZlonz4FRcqZELVAvncsUJQBdRPzG989ddv3qDtrS2Z/H6eZVVAYwCXsBYaBjl1fajO8IDe4OfXrslFrzx7WTQoPxR/cO/OXWLh3j2354PIqn2t4saNrc06SDtiDo+Oj8S0qLnp5PdiJg0TOs5VQEYTqoTBsVUKDTGbrdlCUpigE8zPMJcBWS4XNnijCCOfjwVRrlG/d3R8WjX0MW1t79aJORDhVtO/lGvw6mWNOJ8vfbUXsxkspNBJ2SbN1oHcu8CAMp4RQpguFhC+Bn+HrcRoeJgC9OFJn5/OZUHBpClMWahJ5IVW31Nzm+Sr63W8+9n6BBvLSatwfP755/Tw4WNqWiq7MHVhjjtYRnuebLclc2RmmhXEst4fwyu2SLMqR/w8/PnabM3ma7rwRDFtbm4ST+nN63doc3NDwO3+/jna3d6UA1mzLfiBB8ViJRV54HkVHjaBXZ/p408+Fjy3t7dnJq5eaDHSjavXiM/vjoYJ4Xq9wYsXL9KDigPnVTj4/SwYo6+Dl91MqmYigwMV39Tr8SQqBlNBYuHZqNdWAG0ruD4RNDL/U01ezJwtRMjl+6MewBp+sEX3+NFjunDhGdrd3ZHvsfpN9sw83Ft1sZ5UHOsmxzQbmyqemd40YM5p6jQlfRaVVnLtrBOi982aQt+jiZbn5xZBEOxWz7swYWLNXIWjIgQZR9agvLBZ2IDTeF54XAdZQL05borXWZvz8Ty3owlmFgWjc8XX6rpmmtuzJNhcx+XAwTtbRceCl0JJFD2SVWdMsOKlixfkQc7V1U5JNYpOVgPJs/oA69tr7kmyFuCx2mAHhNQJ/uzq5/TKSy/Xidt1ITxdnNKnn3xCr77+FT23ma6NjU3aqp70/FQxF2srOXdSxwcDn0SC6mDarLDnzGbCtUinnhkRJnUgBdestvCkgw54FaajCtTFK+yyLWUysC0rS1bo4eFR1Sqnos110FUFLU5VcOV40z6C4uvng0wUY7QFLXjRrqnwQwDhQbLPKPc98TRJtBhPOAvJaGPOJhn3Nuuye7+lWpj5iXny8q+IJ7ue1+Q593fViWK4wgI3q4s91fnjxdEcmkIPquktw2jYtd4/m19Si4N742eCZudHZU0uTgffhzknjh3lToqMm8oNCa6GLERWQ+aPVBP2x4Zp4DwvDYwv66rj1Q51OZgG5Bfs/zAAU5FgtU+rB/yVr7xehWtTzVH9iL2z69eu0suvvFpXmj7g/v6+CN1eNc/HJ0dyvkdV8wgtUwG9OBLmlJGtomKgHyarQfD2ynav8igjubPioLpbq7iTMeQCJ/ezMOzgAeNnYmyqWrVRPccVKpyrTtRnZmrIaBxxptic1+eHEwdmIQ78KoaCUIoGNozH5+psfJfAWAY9RFDrxM/r3PDMs7DKMSYC4sx1FeJU2CPMRdVkW5vrsuD5CH6ulNXMsvd//959EWj+t+Ye8ugjIricGQOYThqNIRntc2i/s9jOTX0yaJLKU/GiaMAMdZoUmIsZ5JXDatuETtVx465YTfOgqyAqwGQejV+MK1599VXRNHJ8/ccPu1U5qQvV7MIM8HcZFO8d7Ynm4uOFhuiUtmBMKl4YsIvfeFGMClOckw2QPlTzgtUpSWFAhkrpLG1gYIqKCR8A95PDJ3R8dCR4ku9lsVDTxd7i5ardt6pHef/+XTP39XodLxjVHnyeKk5iSqMJhiMCQXLtB+eEyD1qTH4x2gWTxQt2AcdpuTTaZpQJXjAkYvNbx1i4y6x01nrlLlkQZZ7qexUV1TEtwvmdMpas32Fh5bkDVcKLqDOcz8+dTQvyNYADaVSNKOM4mAIasWCKY8PozJSx4U9ApyI+Rcq+Uru19YkEJ+eCVslTA84G3vkdXkX8kzUe80ovPP+CPICcqw7AF1e/ELyB86h3tlZx4znh1hhPPq6clNAbIkR1wtLUVIGD4lsQlS8AMblwgtLAJIqXGHAaiQlncFyMBqrXqELJjkc3613b3atk+Vb1JPt+U1a5cIn1/uZVCMQM506EU85bVPCawKljoAM9iNY/qGZ9d3dLtCoWFLx5mLwzGoRoQtUwps2mHTsbk4XBFzAAu+w0ZcV/rEQ2N7ZEAGWOoIHrnDLfyRcQ7J3bIodzyQyI4jif6sk8iLNZ1CKJcgocKGs7X0TBSuF9vY4+vwQvHlc6pO/USchPMRfNczr7Wgy2SkWjLWVSuvqAN2/eFhf8uSuXwwMu6MP3f05v/tJbMmgy8PX4tY3KD+5WfrCSvbtVIz548Ii6JePME10UvX6/N7ohyQQvqdGe5KsSA5wN70AYmYZwbi6Taza+Dya6WWsdHhz5QrxXnSOlltYUWw6KLRfDQolzkPZFvVvWmGxG+TNYixxM087Opvx+dKRwQzCaPVM0X6JFyJy4+jdbJBDUg5nLxUKtEmNaFeIi2oyfme8326Jlh5JWiGy+1sOHj+j2ndvmCCtkEFJbPPHklI/cI1hhszLwXNk0s4XqLMgASAYhjMIana02ZggaVA24NlOM0BsxHFfdGY6nTLUh66neAHLfgffSC9+uq2y21tPFGsaS90c1I599+im9/tWv0o1K/5A9KIP2nQqeHz1aOq+n6r9zkwxDVUQjDRPc6jaMpgvHTVgpEwCu3l0nHrp/rV4fGIev4QKcVOsMjP2qFmQqhk2ukuLqIbPjRWYt1FNVU8cvmVC772SeKUKO0eSqizzzaIfQF4zNEAGp55mT4jGNUs1MgMd6XCfMAlsziTzVf+zo8Yyy9w5Lxff++PEjwehEzTmAkkg291ggQMm+KIJcOF5kh3QmQEbHlnH4cpBx0WcrLYJVVFkp3aTn7NkMygDboPhEmXOBOdWLkeKZ6N3JPSj2wSHQTNev35BzstPBmpGvc//+Pbpw/yJdunSpxlXv6Squ59ys3CBHUfhv1ijMrWYhyLPFHrN7VgMiA2Nj6HWgcLvFqQ48T/PsOjd/cXUWM9d8fg3NhRi0mWuGCjL5whQsRciU28vkzrSEmrJNMJaD0TQFtE/TEA4VkiqABI+0AGelCbmb61gnFhCO7Cz1XhnD7VR405n5ZXYCWDsl8p9M1TCWTR7h0EXjAmhC2GBWm0uFBW1cCYuhNOcU487asZiwkdBvbeGL2WYnyvyAHvwc45aDo0NZdYIL7epJtJcOhtAF9bP5UidQEhhECMi0y0i4tTpFxJaLA925muPdvR3VrtV0fPjhB/Stb/8yqfAvhbk/OkqCuwRs1/MeVKAsOJGdk64zth9kaH24hQ4Km9LOKBOlcEaPQEAbgVDHChY6Y6IVRxceMhroyZODqtn2TJMqC8ALZq9ypBq2m5vmappNFoRpjrwSxoxYa/U1EXS7FywS/C4k9Hzp4UJ+zZf6OxwGCI9izezxVn4xHfPx+x/UOT6SMdf768wR6RxXtlitxpTVQ09nrB9Ich4LcfxEvkYXXigHhBLBpmjix8I4VrG8qp7XjT3nic/RNBA5JuHXoix1kJm8rZNQhOEf5CGAV2RyLXLC9MVy+RG9+Y2vOQjnyfvZez+ld955h+7cWfrDsRnZ3tqRG2ThZszEoTHEJLuUjeqQKa2acCEcWTH1n9WVVMzGg2OBeWA10DdiYsWsFjF9eoyZG/5ZKZWHDx/UUOJl9fBP50ai9+L88P2wJvHFZ5RMFtxkgfuk4TUVThKroViLjA5psEIXrMWnjXcbDV/zERphOBFPl80b4O5oC2MjcK8sDByvBrTAdY6qI3Trxg1bqFlwLNTFWPi8yjfyfZeKdeGDMLepDl9xfi9bKAQhUOZIXV5Av9gN8LwMS8XsTKjzoiHBfr2yCAzO+eFYT6alAnOe9Ket1lVOa9VDnWJHI2ll5Z7SRx/19OabX3dy90n1eD/66CN65ZVXqtNy06IdGtXgfxw4v3vnjlIyna7QPoUIg60ovzesTE9WIMckrmEiRjRzgaiIfq7n5lUtEZ+vfEVoKbl2oKL4dfvWLZkYoWAKkgiKLhJ+nyezU+gQEyiSmWNJUKDiVIx8ygujGIXE92ACJIucnQ5LLxuBJxmH1x8bfXaPlseut+QQfJedsJ/86If06N4dcmiQlLziSAffwSxr7Fa4VCHc08RhKIY9ZbGkRo2JxjT/gU87jJp1RBQw49jCkkrd1OdY2ILhkBjn6DF90tsKjgx+u4ESMX7DDVR8oET7hAePr5s3bkrWxXPPP2fCXOjGdQ3V7VTvl6+PmC6DZPXosgxQFgZlhVIhpUAU/urEwyy4Xsmq/YBkVB4Vb4l5wYKCx2p/8XmOKxyZn5zWFToVEHieGqVAJMHCb0m1tN2kCpqF2bIx6wD3otVNWyCMpc80mifbNZNHSlbLsdXMVb1HwJX8CHDYZOxq8IBo6oUyzXSzUmOaXte5YDBCEXzN5yrk44vIE3g/meWxofvRzD6UQ/QTNArX8KQ4K46Fi8+PaEG2KFs7u3ShOgTb1QtcDZu4k5lSC1nh75xMo+ggxK/YAiPgS7z/ySef0q1K0WBl8c19/NGHInhMosKEsLe2WUN1TA+xWWAPewIHgEfMvK3yaAD82QVWV6AKijpL2bQdHByYSvmM8VMd5CeVokpmcqPjwtTQZCxSkuB7bzlzSke18JTGuqdA3508HUHnAzFeSP+KXB3/3Qte459NkCXrJWtSMVLj8I+/++HPfy6LcTbr5N5n9d8a3y9x5CVNEkyiVwwnU8Ymt3H2OfXnSe27acprxnnBM+I5xTNnlc2De/HiJbnYnbt3KQ2KneTiBgY0JmgXzeTgewwrJ+FLpqaRKavBdvV6Pvvs08rJrVWnZFfPW9//+Xs/o29845ckWbUYCJZ/PQufaQsTjmQmbZBcs+zai+w6eN6Y1wYzkM1UdCEuSvZ3KtkdGBHAxBk9d2j//AWP1SbLKdRULNMi9eesV4jQZViBUSY3rSxaTJDAhFHhQoQRmHBoVNYQYCYQPSITSPndzB+oKrYc2SIfCLHxM92/f8c1FS8JjzO785OEfCabvumY2tyOjUBfhV7xGaPMwPHwRNbcUtXwt3jBm8ILkYTKmJ9TF1pNDbAVZ1khCoGEATJQSql5fpqORe2C4hkjP0xJ5A/ef5/e+NobEopjD2scTumDDz6gF196SSebteBMM2q7lKcrzrzLzCA6F2M2AplrpCiIV/GEDV9qsF2PkxXI4TyjP7qkroAMHq+qOqmPnzzSAeTUonrfrMXYMRJ8Z46EhOKYUOcMaGCcomatjGViRTDZMgF5yhMCf2pkaUrqrlom4Ejl29RcS+SjWg0N+ZGbv1s3r1e65lQ1NGvP1LQbiG9oI9Xu3WRxCuwYBz8marRVAZR76xr2cy1KjWlQB6VEMl6lU0nN9bpqZrQ4qe8B/4U8t9HI3ZSg9cwLLM0JaIPdnBKeDmDDbHTOxx9/Qq+99poMGt8kJ6kyJrxQNTETvnoeHUicU8x+tsyTcXCNrJNUHGPFCZf7Ns4rhdWH+0LqEp9LFRhnt0gOGM3Zg6/3yqCeuTbht/g4dkwEGmRxQtb475SbsOHZgyaA6YnXjmYSr8nvafqd+K8rlTqr/ynuyqJEVAEM6kwYRrv6+SfqQBUz6yHnjwUS8Wkx9RgHE14smC41DRYXe+RYRUhzN1k0UUARU5ZnzsUhT8/eHJtfeHl97g0oJ/EEc59dm3DKeG9gmOCtFV2xEXeE9UHwhho/pg/BnjYnLrAXLGnu9cOHDx9KAJ0TKouZF4SWFPO1QVC1PjhQdvXepi+svqWAdKmHSNNkhU60bCSNVRPWwJdov4PDJzVevd/CbFnpFMGnHOIzrOaQJExKsoFXTq69H1mEEgTgjDmzVzRhE4xOJEkC4AEpgZxXT/nOvdvUjajPaFhX73Nwrs6FPrdFGu8NP2MdCyJRSLJFAsOq6Y7PU3I5c87+ZhVA5v4uX3muhWACIMeXI/h34ElnMUAURFXrxU2oPmPL9+PETg7ZvfDiCzJAPOG8IF55tWrG6s2tWV1EgoCkMtFwneQsTN+TOq2kDH0ylyjl3olhebSEgdKkSXFNAl4T82ie1JMautrZ3pVUKHkNioHZ7K3PNLcQPJkMqEUgVjUBnAnXgIFhwAKOmgdCFzU2jvHFZsQ7a+b1zU0bc+UF+Ihb164KXuXFAkGBIMkys+dY1WxR4JAwAYI6zq1GbdrcxvuLZjzKB3AhnqdfVk30oPJ0HGZ6/rnnvJIqPrRfgM7yfzgxbiCaiXEl5gmKQ8C+Hf/kyUO6d29dnSBiontBV69+VimbHfHuch+827Ti7eqbkwlNJuxd1+igUlKYwFb+yWdgbCSZu0FgoGF5oLhqbHxuFDpoueSgfxXmevzGWhO+KEyYMIxFxK++SOxawzicwXgRqMfxjR4k5mSWKu7cSFX4NiahN34dHDyWqJMEGGSt5cm8xPlanTdEOBq8STZ32RMSfAJWlBSEL44Jnin+7df8q7/2zYJ4IIRMA94xi4H8xlcpD5MB1yiesewAXM/XG+Gp9QX6MIJZjKdDOAjaUcztymJYNT8x9coH1G4IWii+mukuPn6ZlIqJ3md8bhVwpTkkdilpW0WIYX5FoYgWQoQrxezibiJQ0RStLnjcJ84fJ1gFxPIjLWmik/zD7BbHE6HY/M5mE6GI4Ud1wrqJY8AvzR9MDbPF50IRVxDCBEcwyAY8dcSDySBPFG6O9vQYhFWM4oNiGGt1EBD8hwD63eDvjOWB1avOg954cm8Upk+/oiw8pTSpOAM0KCsAWLEq+QOmFTAfBypqIMc5oHUsRV9j4C2PLa5WNd/qUVPAbXFRRIGfCJ/VEUfhg3aMXnuEOqv3HMef7BkGDoHOOuVjC1gJzUFkAkwI6hUBnpj53E3GCuPqizTi4pXxj+/LcYieEE0U1UihYN0yaBqmJ6ZhmuBgEKPwpW46uLg+KJlVLaMa3Go6UvLuANny8JqZmA52nHDFl+PEJMVJiWrdr5vPppG5E1JapowMxqiMffSwQUfEF7KugZ+wqvkU8GJXTayPIU0XawlYeFVw47jH+49aMJ4TE+wCbBQTnIEQCJngtoZHs1JLHHlK00ULvK3rTMctfQlGxOKRew6LaFV7P00Dy/1ypAhfUi2gHzG5Wow81ihC5IDsc1LtMRGClHyiUd8A4L+6EuNDk1V3iUoaO01cTlOTFR/oaRpHHaNAtUD18/d48EJXBXYyIpTIJoDeHYCgIY0zk886oxqswCiXpwyyxm8x0KvmVDzFbpq0+TRsqPfUoiXR01/9LgQRgtm0WyuEkowWM9f6HaPeun6Cy6DNzjgTiqzOaGmUPwhHOIwTQYtzvYo9VXrViepd6vUb5Gn4I8yE5rYhJQcrhHB8FAAMpk1q515nmgxsi66YkKSg4sUu6j2smiAI3RlBJJrQB0hscKdC0qwUq8CVihon0xRfRq3rk7CyiFax29MwXvRkAUN04joRVLUg5MkF7TjlFDvjT6k0IfQJJUcCOkcJjkJkHLIXR7G5jq1WxCqU5rX7XCJ2nbQ9ii5su9Hw/NB+PveWNY3rTpRDuHdv+ZGVF+x1UI2SCP1AIDg6EVbAMzZy1VO2cnYqpPgFLcidpxpCueKGYcYJVqSQok52ramgrdIFuBg8UQih4Lmu8xCepAyMoSgc2t5m0QnUlCcCGK8dJzUKp16PPMJBQbijyRHB6oLmT8lvIeYNCk6mkPUzaiqZYtMpq5CLWZcuEL9j5NnaOWV+jffTZ248JZvjKFCAZBqiS/53GaZllhGbr45ZCiZZHRUbD1KnUzLpq4BbHTXoihIEr1Cs7FJAmSYVcngfeXCuifxGgvBQaoUu1LSVe095ao7oKQ+kg9lNHQ4TNq5x7Zwf6xz4jwaOk8c/7WupWH7rtBYGg+r3Ee4hmhcZdBPk3AXNSKNnjsTJEm4uTycYC3c0fJfDM/H7muqlJZUYWVUSwQymzpw7VRASMjV2IQcrAB4UL56+ftY1QbLkBo1NY8EnQvaQmGpSRyxaNLyi1lt1osQDphVcbGMdmpBkExg6o2VUdSaJ0a6WFiqJexZQr9I3q550DMIDYEcP6Wnemz9UvJ6b7uxpP07spjwNka3cY/xbUv6pnL0WZitMVLEYOQtfzPbRcel0ldsi5nCX4qo2qYAXo2k3yIUqJ4zbWY6ugDLycbWFwM/L1+hMmLlAycJnyJohnwfFgBPsb4xGxk2Q3W/W6JN416RaU0P9LYm32S+SspYI0SS3EUkspbELoNj4rx6ZKhCqUkY/yeoAtEHO5q+cNZNtcJsSWzVNaUVg9Rjwg9F7JNcGOA8Wg3/PsATZAGIyRFCo+LGehVIaB1jC80STEavV4mJyT9RT/zta9YSLm/+WEItFDQqqrZ08WfDZND9S6RMBs9kYlOxCXERjsgSaAwUcWEx4xcQ2bckhVgmFAUfagtcEijbfybJdSsH9GadpFrIzUW24tTgzhTpr/C4+pabdEqg+ZKczHGGx62WQvIcHhKdQdAKkkqk07TQGPIXsWUkN6ojgGacImFOyoqKzVEMT7uQNceCNunleEcBIC+i5m5aWFTeOptEo4LpELQSnQodaBWi8PnSlWjX7q1RGKYEikhZzBv4nVsTSw3xtQsO2hY1YOp5LxwYJH3x+TYwQ75nwXTxfsuQMa/8mXbyAsbN47i0hgs+tPQ9V8xUtJhuLZz/zNaNHnUzDqWowT0HVqT0jLCE8/uQlE6plB0lr00ZQ5KUAUHAcs+5ViyhGaSk3Kx5oSmcmBjfZ55iAWM4cA80RzWqhFbxH0EhGBuc80b5x4nGtrrM0q6T0DQqpkGkBAVzFK9CEKP2EcPJkATdF7xVQIaYiOazA/QdN716e/T8EUBZvcPic7B1bBaILud0nhEzrdbNZFe1HyOeW1nVhXDhDRhdM01BtTrNqy5zC/WfDmfydpQuWPqcKls5jSM03oZOsbJtyL1zLZItJZ5nDluLcsN22tnnJ4Iw8Z/1C7wOXe4qVTGeFY+o44KFtaU/ej6tIB5YmAhS1Cd5n7DLLDRRjQuJ9uPAZxyWOhWkPGsbJQlFhSxNhitfL5oWpwPXuDaPdR3yWMoEBOiKlnB2rZA6A1QKoY0eN9Nb8u2ZSV8dAqCPT4rpQtPUHJ98ynTIsQeEYZOpUupWhmMagY94jmXNZ7AH8esXhrXYwo2QJp5pp1LBwZ6G/0ecapZVYnMhJcCWSEBuHDDVNXNyZK5qQCiGJkz4JyWFG8VlKRnkYX2UFOFCv0ZHQn+STVAzQqsk5iwdXTXS8l+zUQRNQZ/KD1ozeavz+atQC0QmYv7MCpcdNGH/DgdS1eKc/swIw9UIdlyav3dBGQTJl5DH3YRrxAf7S+zJtaZPlpH6nk5gC58DxYPaWB2tJrIvVwmLu2RefZzyz/05TFqC1KVYazjUdWUkCj8OoCchxvloigvYGpDKeWaxhsqlfnWhdxVNhAL7Kjol0gPmra2u9f9fVPWkm82iAHFEBDLQc05OTpBAm6auc0hkBwIAoh0WA1lXlaxGQDF6aetirmgv3KOfLOvGoO46fYQWPhrNwb/GexHyTZm1L99UxQoQ0SUSFJpjSFjExtZ4PCywpbuM2dfqdkAnO99W3jG7J+kmNZ5OOqZnEiiBO7wu+jObBk7R3s9mlBplIzqXhRdOenJi7bA5Hq/nNpPJYlDoL8Apsh0aE7L2s/GMf24TA7WcqiFKc7JbingP4702NNw1SHDusmrdsPFUxQW2CDc8LVIQ6BWDnMdDxJ34X4TZ071VcIZkB/KWYL1FOyo1JO7gO12qxXJlolFMSuYaIdBD/RN8T8GmRptEx0nw4BvMy2CWSv13AQiEvMLf4NJm2FpA+ImyXz6S/6/X5TAOFIj+jR3QMYh5izCoaB8xNNhOq1XDS1dDmRDVbwoCbNtR8S3VGNJPFFxFDvqGY12stj60baglJrmraRR3p79bUKI/ZLWHfyEHy1VWKxRdtODFJ8N7czc7JMRGEb0zas06FVUNiuFmxXCZ8PDDqOTYBxsB7HBMhomTljkkruLSew4QnmEGZMPGck+I60tjtWKbXwKQ2AW8eslyfw1m5TEwShD1h8DtQHySamHSYVUMW0D9K1fgCRXq7WAmjZQqgzGh5ihQEWPt083ELaU6JZWkaNxWzRs2JeRohjDYjqD/RZw8hO16kJU0UCdKu+FAWLRQttfPr/XMtymJhkTImzWlwGUnwuQj3Y1gwQHVzQlroZ2L2cp7wcAp4yVeLUw2kWIdMg7RSwo40i7lhspZevpIOTsHUklXV9TG4beY2m5bDAinFG1pSmWpR8HmrGjZqpEl8lzS6kVM+g0ERn5Xnoeh0nI0Py7ISj7oncH9qLnSCJEZrNAV7j5I6Vb81UDPxigP1HlEvrUZK24foYiheXEVlei8iRMuWHCF5mLlYiDQ/NYvHx6NMuU/JgRzQmxuLUTNgyqgwo5MmVVMrSQZjxtRyCETzj03IzQlpZkpf4LAiBcI3NDouiSBV44pT3gw4QjVLOjPhWK3R45Wb5GO7ZFSEeYTGR8FkgKIw5Tt1MPwJ2msVw7HmTXTWC+1CID9yf+6Qkd5f6XQe2go3784aFYHQF01fBrifdn8NtPfdTI5fWBs2HfdeNNIwDn7POdJSJky68LrJfa8+j3ByWb1XxKHhfCSaeviT7HVbRJ69Mp6FRcgBkGybbM9PS2NbdO6hFXghsXCqhWrPLwuxs1AR0VQDdrkRuPiZUj6jJSP20wfR1YCbgOdK4aKrXrJrRblB8pQlW/L6LGXaNiz2r4lODqVpDuHTKBRPFk0mEDlZGIkcXjiXZ1q+uIBkUkgcHIKcTMgiaa7aL5cGW1Jqi4hwr+kphd40JfynVqLdk6RAdfmMx48JxjlLaeFIxO0dl9uxTMOgVGG1lCKWbboTmcjGojmZDC65c4PSWO2ehJtlSDNycbyOMQtkKWPkATOh6ycEMN6MkpJtBUwHTIXTBTXThIrAiitmFvEQKNWTwSgaE1W+EbRDFsALU5toilOA+SI5vaoFVl1/DP6qlxwzVZKZN1k0Emeqf/fRjJuzAY3cJc8UgmaFcMeoEZyeZDswkY2J/ORJ9HNbBovDHX0eRG5g1nUXqs4FEDstRQ3DXvok6XRFgUx42dzqTqRrliW84tgpfjb8OzYPGMXvMbSp9zWK/GhOYRsfNt+9VPGnzh8cZZB5sopKELDsXqz87R5mCqq3PRxuJvJcU61ptIeNUWcpRpSRCASpn8KC6BzERMdJXJaUq0LkQ+9vigHjvYogUMsCKkYjYfEgxpFCWFEdq84bcft5HZPm4LyZ00HkoTXGgINoIGg2/boLRWnRk7bhy+jRkdgTuw84G+MyVSJTkx7/TRZjnhYUrWpELAA5tzkdPi9rrYTUm9lLs0fyrhf6/UE0Tt/Znl7e8zgny84wamMlqVSdk96FFQ+lD97SqsSJoGlN66oApvCwCGGh9Vsz6UiUOFvWCCEDBsJ1oUWToJIaRUj9ZPVCU8V78udI5KFJHWTEprPvlZITPFuY4u6p1kG1iraC68ImgRGScBG81mQjEmDCJ8Art3ER56tlkeSVBSQb82Tt0IAoA2LRjrOJGqPhAhUEDY6HmdphJbt58lwmI3C0VovAEOqUPoDQtFAKod9gr+B+ak4bd6WUDFYwWsBCzUfPU8F9mgpZWEG4+clKtOt1JhCrfUSATUY0QfQR1xAV3+BysfBrAteVAXgt6S49YaIwKY6bfCEkow5S+5da5rDcr2ubSEFNHauJNuW/jVbC/Yk5GolSSEgYzKDIc5NeU6M0vbEOxaJ70zS3SLnIZo82N/pMqimlVWJwgpzQJ8CkwVjPrIUgJqiR2nF6ClbHzi+CZuA2WqP4O7zwqI3H0jRqr55tb9RADsI3Bb/wdHsPXan7rRFoXaFPozdcIC2PbrKKspK7sjKN1M02gEjylEEeNdjdyVZZlmhppjGFXng4d+zkhPccoySaLAaQv8lghVAwuYUPs46yTzYiJPr9csa0RQ0PLQA8JZ/x3nuGJ7HgfLwtEoLjuaNDF+qim1OVfRzwXit46gkZM4gZIxmBu45F715rnXE+miwieS7mAu2Z0B1Mvg/8XrQx01y6z06dvmilYi0xhNj3yFvnrqXQOKSB8yg8pbRqNggfKBY7wjVKNJERY8lE2sQCzLqAF903gqUw8nXQVgrGO29dCw+2CwIWOSu+md62BotgvC2odNZcOrUhVk839MvZ6mIDPBGtns4szlU8FU17pJp8MaYp9uKX5yByeKpftzHn9waPwMCbjpgyOieiRHpEdRqJLfdI5O1FsMEQn7uFyIrPM+ZdQ4aYZVrRnNb5rBgsyHp8HNfoxas1aalnsLA9MFef26qKZYNyMng2ZObavDMICXAEHjZqgqjKMRIunGKiLB5Y6MwkQsRFOJzqWNk4h5q5FI/MhcXaltmiQEgNqy+a+kQN/2VoNoupAu8086p4L3q3+szdxCRDU6nFws8p94i/n9bp1U32qOEujGU089FRyCsOiMKXdcGGx3ONCG1trUkIlbipke00M3gCagsF8iNB2zmTYeWfeKFTa6yWhMceSViPDxssQta6hxBZhfIVdeX0fuFsmS5yc4NSMAg9YZB0BaTmeERHw27HnQzDAU4JhKxfxBmlRkD2wrWVk1ZaW4SCG2gMZQNUCAfjxSgsBExalm5W/aS/XdSMXTD5EtdkVr83wSk0wV6rP2EVoHmbuWmc2SpOjJoBdEf8bnL/H/FWhQWrZs7WsV+Dz4VQ5fr6VnUkEn303od06eIl2trbrXFYEwQR/MUER0LI9bTJ+327rXNsTmFR6vU1fj76QuNb7iwOL9AlIRa/JG2UpF/ss3l9mGhP0rTVbjpf3H5PAMjZ9zDLGdpmGtoBJ0UBn8z6niaG2QZRc/CyVqvxPcT6WRDF/NAdTVYsBQHX+7aH65q2iJQNJjtWqrkwoLiHdH8O3YetecE+CSOyASC8ZMLW2d6Fxa1GwaIttAIXmuBEzL1a6ihj12sUQa8xbXzkJQSzlqkkZpi3Z60/d87t14nXPZfXNzal4dO4WEq/wHGcjmNcHKvvTcbatPEQHD2Bi6N+hmRYnQODO8ayKH2UPVpiCc1NC7jnyZO01KQCd8XTFNOh8DwKwWpFGTAe+SSbI2KFMnITZN51NmIVBTO0AmStHyBWuJpLdYxKKhOzb3beUpCaadLzjA1v5TQRDn1Ww1K+QIpbF2kdUsgoHAx+yyDqLVNZvOYO8IR8EgTnupNQXNvKgg2RhohN9RZ73aZrHJ4qLKIMLCNGz5+lxZ20upsd+waOa+t1YfE9H7GQLNw7boiohHM3mB9ZCTdt1CJBZNo6SR0zrKOR9WQkvcElHcjii6qPZqAYoBxjpmt42Ilg0VlMY/cyER4IKAQxe4qWuvKSTGspSFjFiJacMVd2Ht+DzgbEtxoz3ChNtGFSU0uOQK4iWtKO49Or+PmkLqSdMvajxVPVgpXJFlX6ry0KNDtCKWLrKl8cl0avUgeZhMRdNfHaPkM9/r5vmofPtzDvkzWc7L+2HCXctZCtHJJFVjQzSDYc5B0LTnVT7vn8hECvNNxP7vBAu2HcPPxm9+rzavfKWphhC3vEgCSywIalzb+NB48FP7vNQQ9haKo2NbOZNBQVvS8IZjQBE2FLZyc0JZDDVuUlq8S6YnUtqTSpvfNVvirsXRDKBn6nJgNmf9LvLwxmIV+YEwoEq1xxbyJsGpOsNFs5vc62ukeda3bPOufgXNlM5THEZgPhK9wnNLm9OAkVzkjUggwHQGMwRmfXiBfY4dFj2Vfv/DNXaHt/e4J3l/Xn4viETr74gs5deEY219nZOUdXP70qezgfyU5US23Mad87OjqQlnjn97Y1hQ2x70wTU60/R1pNa1OvuBHUZAvcQ5R8LWzXYIeI1Zjku+UWlUh5lFUt7HXwamSSV2iF+Hc0m6u/49WLBrDjs9ZkFNswJtl7EbOtFgZF0Bw15dPuSfMLW8IpP0xMrlzV5jg2UXIhjiTqdLxEHDx6E59XJq9rTgkWNzg39LqGJyp/l7NwKI43nK6HD+/R/Qf36Y0336G9c+erlpnrxjujNjLHxobLJcONNRE0nvmFbXjdGWHNkIeJfN50hzc8/Pzqdfr6V16ny5f2XUunMKajQ5Tedpsiv6+IbZsHr2l3yfAwJZhjsvbypOlYccIGC153YWsE2ZutOxs/nTSncWCfJvhPOTujLszEW06z3hA1eqPtXl5WyjE1I3gsxVsJ4x50UKbFTPGFDaXR22ZpoQE8s+SkhTrgqH14TYsnyH9aWnlx7c+aZukeZ2dCS4arEKICaSx0is1EERyqZLsAcU7t563HRnCCHaFADBgRC/L05Lhqvge0u3eeLl56xiIRFQ6IJ2CEb2dFRDR4i2DBtYIPec+7I3kWbpP85MmhaFJuRXxu71z9/SHt7WxWymadIoOh90A2lvDoB9nKNlFL/Vd6Jfnx2E+lUJMn/n8eL84T7COY5etwk/KIjZTHmWZCPI3Laj/tYfu2/26HY0UrZMdFaj5tVaWzJHYD5SqErDmles7J06QPZyEnRDSA1YsJzyDXWco2WHMWGr5HSwUqpTkA4pQMHKnQZFFuzgNI0JmXrmEq3vh60G4EfB5eAGNnOW/k6VrWeFVw28LqJAq1zV10aFUbjZ31aDQTrxOazsTSGcOxeD3/4ksaXy6NOIYjqHDBWuhylCtpzh53TmCcxpsZcltmxoJfXLsmx5/b26P1mSqU+WKgLTprcXRhISKEOSej/lRpyBwNg88P9oTJhgHRG0bKGaIJzp6EYE5AShP1ixc8UUywC+JTQm2iilOMSCStHy0hikJWIMT96oy5j7iJSxLdsyWNj54usH28rjpWLNo2ZNBM85K8TQQPxj/4Rz+mv/Ib3xFhGrmtLXOGeUYnpJ73IBp3ZviJ6Pvf+1P6zq+8pQ7HqLswcbz2aH5M73/4Mf3Sm18nIYh4iwnRBp0Ivbah4M2tdW80Nm2cHIDtq8AE9LwLlBVUAW/zMfw30qfEpFeB2dtaI2yQDS0DCCFU1RATe8tECDV6ITybee5GMg+WUFHv+3zFh7wDgHT6t04Po3UvkC00SgwyhIrD0vhBz0bi7c0Wgy+GZNxksrCgZrpr0RWZTPTAK6RjLe4+9g4mmmbNJujV8HLtZyYjhsGSOTFjakSywJhgOqXtQ73GYqlbyDvzbjKHDf7InCAx5/XPpWit0C62rnLGM3AeloNu+MetdK9du0HvfnSjkrEX5BgeOt73Qyc7ye+sWRa8H1uVwD/7+c/qg2/I+dmrk0VUeOPFEzqox+1ceE7e500V+YEW8/rdiqFO6mcnJyfVOz2V/VAODw7p+eef90Wo/XU6MYXyM/dCjczE60fhToMRmxvrtPvqM6TtLwyHFt1HLhNMK5wbtAkJkZRSCDuo67SpxpINDdfW5fvcKH6o9yolo46t27kFrY0xqWQaiQENBoejUKNz+L1BMJ8lYKSp0yLKLhlJ6FrHYnwQrol5zdMsWmg7EVQT2kngvbTSQtuozVbpqmc12O4+C8Fo3vyHyPATWgibSZbcslb+h3rV6A1Lxu1oOwrVlfzF55/R8cFjH8hVGoUn9qSaJDa73LD99q0buuvk2IL+x1W4Hj16Qp9+/LFoCdkzxS6JLWCX5gDwuXh/3jXDYwD1ZCafK8MGu2fNfhl0my0iB/vSOsN3+mzaZim2G+lpY8BqnY3t0ASQeuMzrVWHZSzDUehsnxNvj5yRyqUWS4h/xrlOkq90hSCatIST81CZyo5kh0x1Fzz7HvxPtpQoCuk6UcOBoqAwGBM8mHMz2dCAuhwU36UWYiq2ihEjZDOiprjoNvXmFYqrPjZVz4PCWqtHmLCDh26EZwlEKqkJV+ql+MbO/BlPNDxr/pvjpfw582pzub4K5GBB/tOq4eanC9FwrC1Zy0lLOJDUJnh8Lr4G/2Nh5YlamCeJaM3UUWoTxe+LKay0Cwqzknmq2K9ZHTct9lJlYL+nMtEsarKbADQv3TzU1Lxt2bWzb1aus8hNKVGIdJeAYWjCLs0rc7LIjyoAwYJWATmGCr4s8pfcikKo1RnrWzHPKrdjy0kl3dAmVg8oCT6ZbpCHSq4Q9rJVhrgmHmgMQj2MC0koVS03+MMjB89ESo/vyJ2cgvsjcnwSvfRiDH8xIeYB4UGD8EGw2euf285MAgGs+ktM9EL3zBtNSHXVGri2UKSantH3Z2PTy5QGVrmTjkTyGZ9fzO6slx1BpcXFEptOa+cEWBCNrGhdtlbr6eLuwwbdWnMyZScQa00pRjmmnK0kpUpsXss/SbURYUeAOMcuiDl53UgsKTCWV3FmDyto21BYtr2jeHSMSFqQ37cQUXfGw8XkQl3HjBIIaRO4aQYNGtYg6bQQQjF2I/WaMvFJPaXRalfRIFEHtZCWQUL4GtGb7ad/J5h1CKRAw/re/vld2tzeos3Ndfu6ZfDI/c9cKDlThLXHM9V8bm1tugDzIp3PNyRJgrm02Uy98Jnl7GGcloNuKM0UBp/99KRqtI0N1XDZNDKbu/pPvOiKezvOYOYYN3vp9fucE3lydCJsxDDwv/0aUptZJd8o51HTStaKbkr4Oz4bdfPEwyeP6Mrzz9V72qDjw0G8f9eKCQECzW6JlYWr/KosNJjjcdqHJhYzgVbzqFMiX4BUQOOYTPHiEs+ky4FgVWmOZGgjXs8mHcB8wEHBPrgotm6+dHthdSEreKQySfVpVIYKXqQhcM2I9+K9iFYayJwZFe4nB0d069bDSpclr/NJQVh1cC3iw97u8YLu3b1nobW4GEdJ07opu8srmUzWSli0YGnnAb68W8+jY9l5VCETMqTbPset0ZB+xouCd7/8ztuvy8IRAmMZrIJyU6p5VgRQPpaBq3j2+AntbO8IvvZk0hyTMJKn4qPZEK0omUjAr0bBgMGHkK85lHYN9xVkJevC5y5eGPdeQ0KZYgV/nFRK0/AaQnSqXtJkgiDViZCyg+ozrLLRM4rLspjpVVZ8vljqzXW2zZbFVh1fBGFDyGmCp7JizrIMzohRBezYMNWy1a+LRmVTwxu4xGImhBx54h48viHkrkYLeunavy772VU8WO9zb29XzCxrpQ17n/EjXwccGO/hxotvZ2eX3vnmN+jNN9+oGuiQ1qtnO+vW6f0PPqLbt+9Lb53tbQ2l7VYujumkNUkc7asX3FuxErRJak6LWIdmcrX3XyOsMQQ5NfCfzBr5d8xDlkXQJ7dyUQbiYofzGJUAH+MRE7s2YJ0eSGqii+0GP7QsJbE6iEkCs1GabrgXhRGrYtUL9uNM34kQBqdEmH0xG0W8P5atrijnBYESLIS2YLKhYAmM+tT7RuQFjSxBJIvAGeYjA92d4SGtn9XAPEoZY/OhkaYZxxLlGTXlXHIls+0HPOh3WCCFZhjGlveHsTItxYJ+8dJFOn/+HL3x1Tfos88/pf3Ku3GRFG+GzdGRjY11cTyidckBVymVMbim1JYjwdFLQFfTcGeC00KN/lCrA+2m1oqfcxYWY7Z5i1pO5IdamQJS/ME8REYDMoGkX1kkY9OubmOTUVIQKAjixJNcUetR4KBCNdJhdIDdrDg0OaSlM74UqqXoHr/SnkJLMItYsapBBEtp668ChydcN3plzjOVYkJXXCPzv36W3TkgW/XMtfFG2XxOTlXqzIvUXSP1OdhJoKxgn0sx8qwTXAgtx7jseP7Et7B1s8STYBu/aPiu7VB5+Zln6NKFZ0Vgz9dQ1+7ufhXIC6L9Ds8v5VpIxIXpBeG8ubkhZHETJGTVqGqJ8CYM1cR6rfxyxlx3E+85T4IHGB+/IpSOQI+RVmm6+ALpjVsR7cp4fjAn1tqJ9MBveYXjA0aKHeT9GHsovvnetIiWahab8PCwklkCwlIzIhggj5Y9olyaOh2Cc4qm6Y9l+tDjCnaJQFjKJROAbxby0wuqSzHKRsEB7xCPNnCjRVLY+wR41ueLhLo+n9RT5G6ieXIGv1XPtbRiJSsiwo5KLHhr1Yn42td/ibphTnsXn61a8Vn6yU/+jPq1mRCaKtwrbeKKWqPUaSy9UJmkRJXg0Km2WsXaEUoFCJOD9gz2GRo4Jt8iaTWWDMi9jatlAW2+oyAqdMhG1STzDcyUs3An64yAm4iTDA0y+smaNyzb0WeXMnfRvRN6obDzUlJPlmOeSQuZ0bKjsfu48RogXxa5MQomfjUmGYVP7i1OhLV8SCnuzKPOyGrygZrP3ot6EM4aAw8Gz07MfGqeHuiiyIuSed8p/MlCfnx86CQ7OwZb586LBmGiel208Uopqt2H17pQco++GJGtnCA1PG7P2bRb05CIhLi5toUFyNQWnj130G6rgtVi8PF3tQha99HkRcaY97Oze9S2eDPvhWPP3JIHsmFArIbO3stpmiVCamm1Zb+l1yAi4CCXGjYsy2SE82ieZHPLlaAkStYR268d+MToAROd1dbRM0fHAFl1UTqpEbFtMbXzg4hWgrVdRwbaWHvmAjUO24UJIBdUfvE5mKrRhNNBqBWucitV+7GTwRPPcIBLTAXXmTlflmmHfjl/KbZbOelGLysF8dHqnd02rQnWhIgo5OfwA4OQQUgj3JkopVL8uyC3VWj1OQCfmiCa/k0hikMNB/YKrhteK2a4pxdMk1UxmoPgBdvieg+02s2gmPnTTvrZ8GFyzk6yQAaN6Uq/vTJteRsnN2LRGH6CVmur1bS1tAsbvTsVJmyQAit0+WqmiL+9kFg0vMmWQ6gZxqcGSQDqk5UWaLkA838cOWHtyfFkFughJ4mxMt45Pjqgi89eEcfrwf37togNR1opwiTP0pLWfDMdI6IHSYa1XagYwkyEbtUMRweSVsYwMAUB7mj2E50Z/yiMft6x+QryHGM6M1/CtbqhKM0cQwBpBUjC5scTyYAkeLhGPPatJYPsqGme0hQbhIyINPUy3dHIGo8sS2hijTsWhwX0FM+7RWyQLpYzCqV0sAcbtL7rCG3TUBsBD42/+8Jzz9Irr75UMdyycoU36Ufv/lyeZb3is9/57V+j/QuX6OjwgD748AN678Orkkpy5fIz9PZb36D9S5cFPvy9v/t36NWXn6crz14Wc3n1s0/o9//wHxNIVw7dzWvQf+/8s7S/fY7ef/+nTYD43hZ13Gd8X417LVmxlmhEMs8+afZOsUU4FbC0IoRmbsP/T7UhBHGK7+U9Vzx5cl5QQK1diDl7OBFFJ1XneUSOINm957Y9Br+8YUn0epFYAMkGZ5NzA6m4eOxgoAKVgpqHqTWNStPULjITHjURQkvFV5ENnl7EBytyeHpIA9TS7zgl7xvNtzS3jfckLFf/Y3PKk/hXvvvr9Bu/8R0ByFc//Zg++OgzGcxnnrlE/9t/6X8tWuvxw/v0e7/3n9FPfvZh5fBm9Ovf+Uv0z/6Nf4auvPqmRFje+9mf0//+f/Mv08WLF2lWnZw/+8ffoz/63o/rNdVkn0rER1uMbFcO0e+dow+UvUvYUqIs6iDx7xsba4SoDVfLe+OoHIqv6Kzmg/MEbpDSlLIpNNWIgFmdCXfDkTRRTpP2KNGz1jv0eWmYvS0crgGRSApNnbh+tV2X/AspWFHtrsN7HDS3K1liJZX2QKt8kHtumcRjlnivYQytPWZTZ1m/NCW14cFJ5ouDfn0vm/cpWHSwRdF1bXWZPArpUzTfUHaMpOneHw+qcB08fiLZzbfv3q1RkCPRupyedbNqxJ39C3T/3n3JHObQ4dCNdP/+XYmuXOT0r+NTWtT3Hz1+SJs1fLdWnaC79ZycwKDXzXR4dFjd6A26f+cu9Rtb9ODBPckVTJakgc4MeB6BFqz5UvI9RFD2KRwqa8ccGhpNBK+R0Gd9JHOSHMqrkCEU6U0nC00WOM4NSYsOCWDWKkWG6yEZmQQLNliHc/YprfBCIdl0MHJ1hlDbqGpZjsnwbJpaj+Y3mUZCPUIZV7rJWz5bSUtX9ZpkkCYBcFlVShMbJ0bCI+IhMlJ9Smugg7w1g7P07KVLdcLWKp/Xm8kZfSD+/L0P6bNrN+Vch08e17jxefrq2jbtnNuhv/X3/hva+qMfSIbOzZu36M03XqeT+Zyu3bxN/9F/8p/R+Yt/WKmU9Sq0h/R7f+tvS1x3c2OT7t65RV/56qt0eHhEDx89pJNbJ/Rv/Vv/diWh90SoWPue1vPkaneZW1RDEIrtbVI5IvLKc9+WkJyOj46NZGAXchy1+nIBSxb0p1UTHcxx+L4qmjKpb5nwfIEdgIw0pdCc8Rj3H8wZFHNsTSCRPDERQDDgDsotCVESCsxx8K1Zs+1vkYNqN7AcNaY+FVT5VFCT8XKr+WNlLCHDllr2hIPi0dP3ffWNLfbayku1ITpnVN+6eYeOTpeSCCpmpGgdBl/n5vWbol0X1XHgdCuGGYdHx7RRQ2Q/++nP5ZwblcCWLlv19wdVoG7fuqdCzJRO5T+7Slj/yZ/8aXU+FtLsR9eqJnnevnVboQunGTDEmOkk870wRzhbU294fW1dhHG3hu64gHz//D5d5m4GVfhcQ6XmhJUzQpcmwnjm91KeaqopzLmUgHJ2QJ7ufefm1D3cmOtXGn2DjJuJFxyoM5MPkRWTMTHqsUoKmosHMNEUJ4xWbIH9xaLrj/I7YEE9r2bLMurq0yzckNYmyN8sNByWM3MdSU/mx9hsRqoF1FO2NraSyh4GywfGeKFsGlueR+x2sYzgNfFa/+bf/N/R/+f/++/Q66++XOO2m/S9H75rGSbZ8/c4fts7LOl0DxQ+d6/hqJkkdXZUEV8V4mNaWO0uV6RduHBBngPPLtGSOlEvXHmuCtsOPa7mnzX466+8RpeeuShm/6tfeUPGcXt7c+J1wvEQZ8TmicxKrb5cWFJ6qrDGeRsCt8fzwvMM+MQvFJETpYnzI+NBZ4U+zkVzPMnhBSdaizdfjAfUQWlqFWB3MJec+T7GSKLNujwppvbvhIwajaUqoEUXz+xUT2eYEILdCuIbeKazuDTgy0TBcbIbSaFFHAZLV3b2qA6EW+Kp9Yscifjud39brv3qKy/Ra1UI5ZuG0gebCBSR4/7YJDPuY9pmUd//6+9coH/td1+iv/lPv0T/8199nk4Wo/Rk4TE9v79fhfB8dVAuiMDx5B4dHtJp9Yz3Ki/48itXquk/qFj0gRYZVceB48Ode7uBjUhaUz2JvaaniR8FbVkmpnr1JywfEYqi9PujxwJiaWrrcyjvrWA+XE+1pZHndp12bMN//IlrwJh6IwcYIQw6RHmD7Imc0RtbVf+4EWRb86i1lO5WUCNVZxQSHFRuzJSjWs00ZikrJiFm7OoXh7Gh7iiYytIP0ksQ6f2z6pX+8rfepC+ufkFvv/02fftbv0SP7z+o5rbGe0/mkq/XZ1TftRYfrL0Wkl0ziubOYxKcszzlRFSuM1kIJ5jMRO/s7gqW4/viOozjk1MZl2erBtzb26iOzw26fPkc7e2er3HiNdo72KjmONPRUdM02RaSYG67J8dwv0AIv+wVD/fFXsws2n+qAfXzZn0Gx3nK50YmnII2RAIrWeFY8R03kzlWgGo9cFP0eOUBw0QD2MN+E8yogfxI4UTOTjqbckOdmB9GWvzNvWcspk0OigMAjys1EqETwbMR1AkxkAwKwAWQBCQXiky/4pVf/ZW/RL/6G79Jf/ruz+g3f+u36PTJQ/qP/vP/qjoOh+q1MSTIqgpmVv8rWp3TjQY0W9Lzcry3O17oMNs88OLd21XapXDKfj1+f2+net1cE3JCl3aJXn7ua1UNrNOHH3xOL13eoPN7FQpUweS9gMdgcpW7tKSPQmfMH8aK6Ok472nCR0QB25lXnHUMoxfs2UbUrBCsg4mb7zLQrjcGFzy1LV+t3qeY3PR6E83jxCTF7Ag/jZGL0UOCgBZzTnA+PC1ikiihlIeAN4T3RHDIxw5JAhF3DkNxvqw5KQauMXyJrJOD4k7VvHbO0ro6MZWiDbN7x3mcHr9kgQrtR5wDHcfQL7k4Pvznvvs6feONK3T5XHVSKt79w9/7Hj2z09PvfvMiHVfE8u71U4Eix4dzIbP5tVbvYbdiu+OjI3q1asHf/h/9s9XpqZ71Z/8/OrexQ7/6ne/QbHuf/su//Xc5bKyZRJaDifDeaN7r08zfFL7Q2VehRnetyCtCa48fH9BmdX54DNYkbBhzAMVn97lvcpocOy6txEDi8vK9ajEsEgYP2clqAH+w3MAcq8KnOXXavYC1Gnt4rMmQNYJi66ixJOMBKji3QXGNNhYXjlgPQjQNhK8my+L95gk3Lw3YQu/JKujkb6SM6ZhzYinY/sHKM3EMHy9mc0SzJm26c3Jyas2BdEG88fJF+pU3LtDF7Rnt727RkypIG/V7L57boOd29fvcgZbP9/jxY6Fl5sNCpuDhw0d0cnyiuxnZ7kmCLVGHggZLsAoFvGnye/iyVxNMaChy84e/27FtwR9XXLvDVFE9/XsffEL3qiAeVqx6cjL3MYdHDAsYr6eN5LtGhWWFQL4gcmo9JrNi/R4limQP7Z2kSgvLZURG7KalrbWh1Phg8WZAWKu7OLqAOMFsq0HaxYaME7j5jQsk05LFBUavC54P7HsTTBGaFDBK/clV/9LI25wk/t7dGpO9c/tmFQb+eZse3L2jnaaqNlvrZ4Z/NFtcs3e1tZoE1UUbsbD0HFeRTGxeRKdVoOb1mebz0fppJo3/PngoWmVnZ0vM+UEVvnvV8bh9+1qNmBBtbK7X786rM3KXDk/nUrxu7Jdh4+QF6xp9KpPniwI1NbtpouVK+H8RmqRW7agK/jvvfJuuf/6BsgTSuqPGs9eTJEp0XawHss6psmCXwWpCeVArpKfQYUHZ6HB/YbtWt+2hQ1NzJFq4Jp1BHjTBj/Enzls8G7YVpMPr0tWXdPdvIncoIGBExT1AngAp5hFMUSarMWrNEhYDy+65irv2zl/QLQzEy9b2F//wD/6I7ty5Se9//Dk9enCXHleOjwXhhRrr5cxlfZbOsS/nPG5ub9s2rQPdPezoo7tc6TYTj7g7d4WO1zfphEtA85JeeuGcjBmn3L/w8ouS2Lq1uSH3u7GzTZ8/eEz//3//36vmf71iw0t0/eEh/ez3/wFxb+idc5cFY57Ot2i78oLZeIzGZSrFklbMcHw1bEfO1eE1hpYe/NvLr71BT+7fMg5wIQLIC2yQLJyygp9NVqxvDa4V0+SKErRTuUjZFQ3SbPscy+6CQ9IEq7WaHewk2cy1Yok8EcLVARCw2hmZnWiS4BBDb0zIlnkAu6MWZ+t60Ptw01Naxsr4JXuqIUmBuUjugzKvwIknn/k8vhZPLpuX7//Jn0tR+P37D2UiWLge1EjH6fxEzssENFfB9dY5gAvTdyqG47v+ez/8gv7rH12z3cyXMpM37h9Yhdsomu/v/f1/UL/fyQITzDlTTMVhyRvXbjj3Ous/qbTQmhDPrCkvXngoQru19ZIX0bvglBZOK79A8FbedeHR6AXe5d8H4SyHUzQGJRVuFTMi33YLmm5wXyA6iG7iR9slNSCFlKc8rXzE1pe/ghw8vzkiT3PSnyO1BubVLM8XnnqFB3b+jpIDfheINDTzHgScIIayki3akVqdrK8e5XXJDL4Pfiwup9Q8w8gbipkfR6FIhEzu7V4pZlVbpT6PCZcyHp1I4Fy2WFgMNby2QSgT5eIpcQY4mRX1IIOG0DgXEHgamTcLOb5o+KxTLL25tkFrlevbrBpxb2ePNqpAb29t19936Ny5c1aklLSlLlM+BifGofVqDNL2FEF7mlA2IfT3xoYVP/345/TON9+i06ufmunHLqRJGDilYhp3OI6tgRVCtq6E0lMiKOM0EoManh4TmY2wharG5Mf9yUSFDqNjEvJVYXW2SKsfpxnMbcv5PMkxpATCW3MMTRwnK0VXi5pdMrVdKIXuTMWZIWzhMAmkl0ToFDAzQrwLZHrkMzXchaRcHXD3kqVhE3u/B+oFzzorWJrJHaElCbQv84S8e/mVy5fl3Cz8XJDOdR4bVcNt15gxa7vt7a3691bVqttSLoB76bL2TCwhtzLSYZ7W+VRXNwqe4W/MT1AykEWO7MyqFrx+7Vq9h6rdj7Srw3rViltrM6nOI4qOHzm/B8y9qgVBheWUQgN2m2HMa7HWHIM1N5wFamUae2zdQ7mBj24C3YqQYDZT2CdOBa/ThFDKEq7ylH9KlrY1SDGSDniW5EpcexJPlnPK49Ak2RWrqZTJ5Md7ACEqArC2pp5X30/2WIuNz5NhTe4+gOIlbM7NpprN6PbWppsf7Muh9INiIhlLW4QXL553aINaX9Z2jOtY4Fjb8TlQ7YYXa9POiqu83ZlRV0rg62R+mcajcIQ+J35pwoPODny/zMs+uHNX5pW180vPX/GKOanvDtAGzgVkJSqsOC/oHgFHFXBJ6lckx6DOhcdebSLg7XoIJQBL7ZWSA34gp076flroDdIS4FkSREfNKZQyQ0KFfbJC8pamE7c7mJYGkqr3cUpDxEziFNS/xGA7kOCDOCFSlyt8X7Ym4FnrNeoEMDazWlXaruZwJl0MsmiuZNflTgq8z+9sTeuGFesNbqJEG1ThYWeBrfZWFbYNFuSK/TbXNwTfcR3IljkWTGfpz36i9aWWJzVOVhcaiufH/x6xa6+m8abCMqKVXMDLgDB7u3u0VTWzNCbNZ+mW6XlXvO5g+aJGHMcysYpoVtqverqrHCC28OTVzcVIDLCLxVylHJNPkls5ZzOBxS+qVInGYN3EW8RAyjLH2JQRnmzLruYDlS9rHjVKMgEdYhcrmCrgsEvn96rAbNH+uT2icF49Z3OytK1b/XdySC+/9KJpVe2GIJ/V47c31ujKlWft+Fapxo2FEE+Xdm/cBq5+tr+zIQ4YOzJrNcTWlYUQzMdH2j9lXKqWPSa0ObFalfr31uZFfQ/QiMiv+xeTwCnD0UxvCwBgrKMG01Qvy4ri3MuumySJYGxj6n3EhBA694hNE8rYg0Hi/yCAuDhO4kRi0ljZwouM68XEKUrWdFVUm7aENWyAXikw2W1hKIEjuyeSbTmQfDyc3BlHFciMuCSEMhUqgevzREc7AQYiYhB0af2Nd74q76EaC/HIvlubxLMxYL/06sUGQ/RkDQfnS5UfU0eDecV+XRs7MpUyW+duBju0u3eu/r5mZr5YhrmOzzRhAkLR8Kd+lKU1HEMGWCTIE3agl7Emsi1sphoJQuKLWvC+jW9RvO3a0AS6mEby5pdSv9nJuKPzF/9bhoq2Vczn1y7FqZ9xJazHxVVDC09pYToGuwuNZ5pkhPYbSXu1kPV/4YHtrMtAMenBOdyEGghGXxTsxsSfi9awfeJEW1JII3eKRrc2wO00DalvLM1MYDtX/WYW7BkXlhLsLVpDopVmFi1pzRb5e6A6oMFlZ07rlrAuQqEdCji5oK8mnXP5WBjZvOM+ojZIucGWbGwBf7oYx+CYGW1k+6RIe4sVWgNjwK+Dg0f1Lp4/gwKjySWzMjI1Q8t2mZri1lBIvdkkDpZov6HYODRTLW3rxtYZDNoPQqaQq3joEp9BQKVhJXhbIq2KY1vfr3RGsNHzpuDRc+WXNh63QUltZHAcWPFsIF40WCAmeWSYY+P9fJPtOsSZJLPcu8dk7IM37VbLXvwzfsi1mZ6TuT12VBSLde4Q8ISz5mP+DR60clidDrThNkQMWkEOOUbkegzdi0QdE5h93X1o06NHU1oquWCTDbdoBK6TzZ10cOV0/yePHtgkDU72Q6SQKiXmziAHY1M+97XPPqavvfEmfZkPXMzMcvjvyeGpdNw6f353ovEUT+p9cpdUfmj20rkzGKimQmWCx7EKhB4ahonzl9I0S2lS3AYYMTZCe6hwxHlAqHH080DJ3ThOuyFhVY+ZWh2DZTggrIfMjWjWOI9QEjhN7Ut8l72/+o8FJNc7mZWZ7cqhcWeNuk3NSlsbbVC07FNLIL3z/LDmWohjD4zfZKO+pDHL3jfqnun1LDYpz0kNu+YOfWG0TjrZc7H2FBMcNs3x7R9WJkPmzIlxzfObn57UWPIb9NFP/3EN3S0nwtOI+uZ4gda4/PyLdOP6Nbpz6xb98Pt/TG++9U25j7PCp8riv/xvvid0EHfX/5VvvV0x6RauYuM3uKBw65JnnnnGQm0SQzWcu3SzKTHqFbO7quWgKbF4KMIZCqwKhW0aoqfbz2Ze7YYL6Qoh6YEippdzks0N7gNpjeMjGQz8l7R4Q4qZtLvpKKnqa2stGzpiMsVwxZwMTUmUyAoppmE8yQPY2QYoalJnhkWt4RG30pVi884L3pFhIvlo3BkeZtkanou5y00rSh2GFerHNsWU0mSVw0lQYr1xdE4NmUDxBF6/fYvW3//A099XX4K3Qlg0zsVb3/w2fbj+M7p58ypdv36Vzu9fdFPbCHgVlt21Qj/78FP65Iub4o0/e2FHi8qShthk3nInWz7s7G3p9g2LuWdca/0MiZlTKwRYAJSHz4isRKz17NEHmfyEPMg4MKyJvJlIpucGklX1a7McpjBGIz7XLCwlVIONc9NIzXzw4XF/EQ3H2aTmTKgTGYtqvM7IXuEZJdV9TY4R2bAJyMvBzQs275PGjp2mUvWWozcY/uxLp00hTcN10Lym2XKKERGtgRFc20FDNvPKvy+tEyq/EAuVbgqpFRax8zAGzY3v83d7G4v79x/T+NHH9MqL59uCC9WIMFurYJ8HnMfpa2++Ra999evqINRjOauah3Ozktr92sy7s379rbfoT/5f/07F20v6nb/8HRGWItWBMKPKAUob4MrE8t4hUZthEVKJPCDcAxPKgu3Cknm5LY4vQhxkbKLdS3BCXDLLNB1Lj9cJjQ5LJHL15Lq5TcR+cTXb2CmmBJSUm1OSWTVxpy0osrWjzb1PIDJQsLMmgukSEssGmrvsuXN90BhwQiJvpVq5aSwnUevXj25fowuXr9DYG+FclDSVbgfjaAJYx6HGi9crLXNwoHFjvi80GYpZ5iUAeaGzOLqCsoXSIjknNWa9VolpfCcHHOXzQY0GARUi/a8lXexEkiIuXrokfKM6aJ2Y1uevXKqa8nwNSZ6oGa3nYidQQoWperbz5cS5AAsCTpjxuWoByMRgXSayOZImO0PLpJ7sC5imzU4h3DJPfLHVyiuPWpiZAdbRvD8jFDvtOOqmlkNcqUwcDeiuRkKaMU7Zipb1obQPioa9Rio+2FISkK0oM2kmtWr/bAA5S0sP6hpviQmcNLCkZsqUYG2cIfCbTAw7K+s7dPvq57RZR2f7wkUa13Zp8+IVcZru3rouZZWHBw9pfHiXvvK1N+i511+iH/35+6rVOYRl7dz4PoUrHccJu6CUByc69KRF+LLJCM2qUyMRkBUmAf/4MwoCyNqKhe7w8RN69OAhPXz0iPYvXaC9Gk9WR0mprO1NjT2TOVZdssiTCTHXGFcx5kC4hFrZU+UYuKbgj1OhMe2HLKZioU5JOEmRhB6pJaq0nbQw1shc75H7h1Ub8Ru0xwRM24qVbgf8s+88JCe+XrZaXZN8gF2cH5MOotMHmR2HTjGWcoVGtqZWlC5CkwbPWkZChOPMFewpwja0rRiAi4q9b9iBkPcoAl+90839fdqo/z74+Qf047/ze9LbkKvbvv72O7RRyeyfvftnNH/8gPb3d2lRx+H5h4/o6oef0FGdtG++85YLkRQwDSfyHBonmcl2r5zoMK+L4Hh+Wp/5HPWbO1UYtU3H4/v3vK1IMU0V6Y7oaePn0RFvt3VfBLCftZAeqKUeBU5DI++jNhKqLDeekI2L9LphATRsy3l/DMc6bdlKoHmKZYp0wMzuwPXeog4dXvFccHoHhSTavBFaCj8nfKA5EUJTmKZbzhcaoHf0qyQjWWuOMWSqRE0Tzx0zcBh36SAU7wKgdbed4z8ITWTa8RNaYzUmPMFQqSUxIBTk5yWitq+cnuPO3Xt0MpCYsFsPHtPGz9+VZNJ33/uMdrfX6ebt+3Tj9iP64sJ1Sbl69Ph0EjF4eO8BLe68J2EtnsgLl1+icf2S9pKu//7khz+ggzuX6e1v/Sp969f+mjgF3//9vyVeMbJF4vnAMGQz9bBOjFe5ZTDLBb+Pz5DxI9gYVRlpGipzjs/2PdHNDgfFdoOmwGF3gMWCLeWo6WVlsAwXcuyffaelocrGujQjGJfF5Ub60GamxYxfZAy46nlGjYLJy8bkI1qxNN5QWKJEvnH1MmnakdAsvWq5LniKstda0u9jkCCMugfF6DFa3uGIrHY0rng4A7jHLrbj4OPqQx+cLGRCfIIsS0ZXdHHPFmaKSVquCSlWesrNw1m0uVbjST3XIaeqb8zos3u6zenjo1M6HRQXP5jfp7uPD8Us7z/7LB1XLZgq77azf5nOP7dPT85f0U24OaenmsHF4YFMxFE9x72bN+j4mT3ZVZPHlzsrcEkn79VGdp/QQGk5J5C3nthZBWXBe6sw11mfdV4/XFbcfHy6dBaDd8xc1POtr3V0//GBFlQVPS9r6tP5UvoUcpnpcq5tRoZhIfewXGD3qpAAwtq8CiB71JtrWt5qvq9FsQxudCNpF9ISWqEUqc9GJwVhOP6N/+u/WqBBHJiXuF8bWRC+c0DKawlpStqtyUIvKXveV+yugNWcApD2hAOJ71qWLGvUXh0KMQXsnflALj1HkTEWYxWElHirrIcVB3107T59+PnNOtBH3mCpjIgIJKdaPFKAwKQfp0R1Mj6QvVvpG1hx1jA/FnwrpZo0Cug/PakLaXOdtnbP0cb2juK6deUyv/r6V2hrZ9vqYjSjZc73yViteqw8yWMVqnO7u/TMpYv0jbfekd55f/z971sheKHm+6s20+QBYLCRHlXTz8Ijs4bIp0irTjzh72KLl7+bV/CcShZGQcb3+Fh307xw/oIQ/HrI2CB9UcWws7FBF3fXaX+3YkzOohZnRSsUgb9lr5WEUkyNxGCHKZGTf/P/9q+XqdfbzFvEH8BtnUVOhKpInfY2MXUvZKX1jxFrnBt1IObAzCuN033l4B1qU0zdPFBizQx0rauSOh8qsLK/W9Vw6gwc0uOKx3786R26e7AwrjHMXXipABb8QV/+MvAZXpyEwU5IKpmKbwuW2qlKm3vVFBpqjLAmnjt+p6GYBmeC7PntAAbhNAorVj6Pz0pPH4PR8gx3dvYmOQDxGNS+6HmSv1cM6wPuYBxn9bPX9211lOKBCMCAQi3bqlhIUKg8UBBOIuc8aQMWeUJkl2irC/Y/tEJL+gMOqgUBcCfxZFE2rSG27qfRJATUDiiFArVu7zEmWUr3Um1rwUQp817Yl42/zzmTvPGezzGu7RKif7upJhg06Be3DH5PoplxD9aT5uqn1yRtS5xzcaR0wTEeXqveJi8gDtdxnh+vRyF1u2ZZnAtzrdOutyo00ZladT4iVGp/JxdMHKfPR27NFstTrcar4/nWO9+ykOpscg28OmwOlJpox+tFXm/Gpa7LE/9sNIenhLBiGYEFNeNGeEB4iS1ZtLnZmgRq3iNKKMfRN6BWioRcwERLFcNxLPVwTMjSqMYmBCmsMGSpIO1L6ktzsq2tBt3D7XQuk7kwQRwsJKQJj1y/ukYXdjdNlPS+pBO+eYGDVfUn0xSCXY0/lHIB5hzRu9pWsDQe71B3kuiTqzdUy2Mb4WT7olj3Bd8DraiGePnFF2hzZuG/QhZH7gj9VbS4qEiuoEYfsm7WWJTQ1r2RsX9zi76sWSd9IbxH3SqilwKmuZQPwPHQXEeNbJVxcI6WFzQ/72e37v2FSjyTStWXalX7mJC9xHOO1ixUmoLBa5Qab8tIgiptkp3ds3H9DorFVpXY8E6BsFurkXT7U05N6qy9v322tETWEritpiFVM3BSqIgSb+681DpUjpfyhi+L04XVVoCUVSEbTLWPlrO3s7Xl95jNG+8z/PTenRdsN4W9PpBYCgvHgoJ94xy0E00WjVwFZbus3UdybImx3KiCdeHctoYPi2lNLN6goZh3m1l8et0gjWRty07qS+dgsZ9HChYKc8djs7ezNdn9HTwfHD5gaOwP9/H127YofxEcWRHGLz1W5wPFZ8tQ1wOcL8KHeH7x+WnpSrpFwhB2k2yURaQz2ByR7UjUS6UNiQkebfv2+empHY9+ImUi0DGLQiZASgKWAswZgDPA59gzE63LUPonHBZqYkkxiRZMESHTBo0WddsErb4Sx8HSwuC2ZSt+Ug28dLwiexdXTzAKCF45TSkeOGs9aQQIXFcsTBoLrEgRrYOEDV5w3nG0LARLU2AeBKzbjpTY4JBf2FME7AVrcV6kfk9j20WKBQ85kUsj32UEQKdRa4D53yeEkRk5Y+INv8jO9cU67JaWEbPKzTaNaJGQCEQR8qLSEhHxYMMKtydeKkJj1pJMBSBZGpQSyjFbAgPEAgf+iIlnFjZ2brizqDD+hUy4ioPtzrxjxSTq9he7f60/WUwiHMmQ/mJYCIEacx7dS7NnxKKDZtEYa5ngnKfNkTwLKfclCRt8TjN9/IUFUt1ya5xJWcnf44pZWcuxhuxL79vJQshoJE+YwKTlrOll0IIQvqgJ+VnanOqGivw3O21S40GtYvBpQvaLXqufQ7E4FxiwqobzNFyau5V6EZOhXlKhzCNFmCSBt0vJY5fQROPYNmlWHhAFSZblXBpXN7fAdrwg8ElaWs+V5eA1GaAqcIxEQMbim6uoitfCcvTw03ikBvrl0Y0/Ey1Uj9+w/L24AQueQ2p0qW3Cx/eMyRUB6KYk9apn7M8li5O3Ght0J/f6/tp8JocjwWA5LIy2QsgwSe5jXulEAU2BvYNZUNkMs7AAMnhIcWg10cfHx1q0PutdA/P3BVsi9anvbWyWHl1KT3meXySET//csr07peFi2hxosOhEuRykZIXpwWzw4csyrXKHlvAA9WhORb395biwfdimG90hcI+2G8qua+KldlbS6VzYvrxqdooD17FYiIjUwmN/DkQw4CxBE5iy8yo2/owTRscYh8UxRl5r+C1NojKsIcRcpWypX8lzDBOIYZnP5PfGVkyewyI1y2F0j19Ieb6ehecGO07x2NJxGhZt7LUTCXeMKaIgERK5xs/q0G2sb7gQx/CqNhbNirGT0mri3asURymb/D01t08zw8khkDohrYpSh7yVZrpw2un7MeSzyUrk8Jd5V/HC49j2XosSzN4dA/AhaM1442DS9TuDOCrSU6Ug5WsI60ix2aiJhtqJ1BpPttMq3YC/8VCDEdOSHyhZhsmD9x7VGUtg6rXJEq4vlXpZBVMzli1hIZUphkmqmXsbXWBHc/fkuRbssXMfGuZNzbJojDZJLqT0kDk99cadgumWw8TMxgmGIoDgRWiUzdOPPC4/C2NGYFxAGCaVByP8lxYiczajBHrHhPBpmnCVFmqSOf1cE3vBoIzG37Y94iQrm4l9xii08qDLqs6VZci+gj1FxwhEMhArBUppaIQjVge1ijEO6QxL/f5gWlC+O1rLNXMzBcSzQMDEwJMuyfGc/NCkY1tbOnhcq3Ey6M5C7MRQbmE6fvF78HahDSRVHxnNQnqXSSYKNI7i2k41RT32tecu0Xd++S2FGUcnVZiO6KiOGd8rn/P7f/aJCFjuOtu6NAm+XQpG1IgG8BrGjMs0I4bT7yu2ld9NS3uwwLAVvr+aYDAsFItD8wAXynNZSAy5fWkFDUZzmb5EE46r5ru0bgeaRBwSTeCQxObyhrP7ZQS09js0nHuqpiXkCym5uAuZOE69m3aDms5Ddi4UxUT1rTtltl4wpDEGaTykWbWp8V9EEy2tK19r88DuS2Io92uezXxRSYYveMPceQ5edIow6DxpUpg9U+wVKQ2+EpvWV164TP+X/9O/Kk3MDw6PBC8fHT2W3Y9G2Q9uQT/7+BotDGPBw8b1ZRt7c4BEsKTOZCZpVcl2XgIUgOPgVBArh8VyskBWu9tysTv/4+synoYQ83khyMshFv4Xn89VU2tv6hGrzsdoKer2uSi21JIT6CyJoD4D4BDmR/bspenWWMuQx+/hOFIyeknhAkEdr5psWeVja7jRBC8w9XyN0hIeNJY8tmxie+bIfbk5H9qWXiLMg/axHuejdXYq0sUhJeX1JMS3HKjtl5sbL4ZnZ3NP2c2vb2JYv7vWqbd6r8Zyf/8f/gF9++03pfffSdV8h0+e0OHhYQ0PntLG1kad9Jk4WWSQRZiFucKBbI4OYumUAi0xkNMmLCzg8LjqzoUik3uzoGN666rA7yEVjN9nrQrPH2FBvhbfM/IpMTcR903n8Szucw0ZnQ01VU52R4cN8sIKawAEskXZyyATQCpyv4rjHXGrI3YyBwArcnoDuGmrKjMTKSQ0QWDVYxLHpAyewoMXzOM4TrOqI88FE8/CAhOz8B42ZBviqckWE8b0Rn2LmwG1jGzl1+D5QtuD8pDVaQ4BtAZfk/eN+8Y3vkEvvfIa3b93l3a3e2lpMnIhOvf4q5rsfCWEb9x/rE3eS6AjiiaiAotG5weLC//A47EGY+Hm3yFI0RRzKajwhLM114jQdNwVDBiT35OdAUwglwNKNEcXlhTmEYIGHlgWT5vsM06K1o4UF8Q0jp61E/0DzB8EsV8a+O2CplOerpnLbApPai+ssxQSOGPdAgQIVrqzcBU5od0aVUrFfUJUpGGFlND1oAnb2QEZPcsEWyBIooBBCArakl+dcWlaajiYZ6idGpZDM2N4BqE/jER28tY0Nx//+edX6fGj+/J9Jt2fPHxYJ/uxOB/rm+uSziWCVEYRmN6KmVAPIptSszDPp0Xeuk2XGxbHiMrdkWM57OyJ8eB/c+FR6/H96M+Hlmh8HWh0iaYkNB2dzttEEdBZK+ra0ITQQ3RRSYS/ldabNqvya2C+/7V/+Z8ryFiNpjSSx35yFlQ7/fiUGCIGQzyyTtt6UUkWO1bwrVpUmxapojaBytkGvkgeGcoAs2k1/I28xIk3Vv9388mCbj8+NtzYvFMNn5EvsjbQsTpLN5HR49tCBNVCtoo5L5CdKQ41ItZNFKIJwoPppLDE8tZmMylumfaucYdOKB5drWqmdAsy7YRvHqo5aB52o2Qeu1b8xYxnuVMrqkKz8dgRC932hXutC+lUaJl+cm9P+z0KFd6fHptpZ6OjC/2B0lx2H3ghicUTZG0OxAQzWC2mLmUzFwO3q/ZeRoSjFlm7IvBEiBnMeSJ8jdLpjRMuksrE2xkAHaDfocpU2NjOHI/JZihE3pTHzXNZiSkXzTp5cngyWX0uwGb2fPByckrJKRSKz6tirtRTpEfW6NNPP7PKuzYJfA0OpXVr2vySg//sCAyzDY9ry3HW81muY9EjLdq3a8MZAMVDyN8ozm36vPj1tabE6RY7RtyzLHWsTrWIOayOFmNAJv+/8sbXSbtFNJPqFiSdzcRZFdD2dwk9fjhtTsOTaukKhSF2gRTNyEkUEglJuqpYK8GLcQ/RpF8iDUWaSlsVVHFtER2YKUBNBrIVaxQIGg2+Oh1QEk0eDk5QLCyKKtxde/Mu97Z26LUXd7RW2ZJk+dwcqxazGzZZkeLy3PL1+BnWuhnFUtfewmmyapO0kqUfv/cBgYeD5pVjO+MNxzwxqS++cIUunduFSIlgdsHUp9x6cIvWEgdwaRi6lRsMxhBoV//OvfRitNas0z6FApPqvbHzwduOiQNkkSxQQhoW6+rnC/rT9z5u2TDByRDcaoIY9ODEEVl96VwY3uWUzxQpGPKFh++i2WbPKVQD3ixoxqNCgx4pMmiCR8i1RsrTVQFp5wo1zg8sekKdJF2uppaTtYaAkUvmysNf1v9XOcohnRvZtIOz+/DiKsmivFRWrJSLXjeJ+VcyeNJ2pChhPOvU4WDtJYAYxU5ZhVb7CHZ2P8VriCdb0tr1xfpKUkVmdSxUEOsh9J8ZLUkiTiKuoetNFzs3NeJzx4ZAG9aoiMNtfl1ZvNrHkAUbOPG0KIuB8lCaeMajZ8ZsW733l9EwmAsc0eZm6qioDJiCAaXGZLy18XVsb/Jk27n4PPQczNY/2snhtUmjoKK5bNwFHuoZOKyJP7mNh1DCPMK0JOuoNVrEAZjE7qOdz7HLUwYm0aToqBhGkoY5RVPAQOeomVPhjtu4gqLAwHSWOgZ8IrfA3NxMowZcnliEE5xZEqDdD8wPn6eu/EHOW98/qc7BrArBbCm1HktJrLAECJpW6cUwIQSOtZcshk5T/3E9OBCgbmJxEv/OPKLvtmlzMJ+3ODC8YSQ8SKhzLI67z1AspZwxwZTSRHiiqKoGtMCDkf+pWHpWKRM6B5iZx7dHExpcSFOvLOJhxCJZDHH1BXVdgo2PKtrVrQDPznrIBG8on92RO3a24vvCHr/QPMBPcF68hJFakHsurdc6i9vq/huKs0bpsr+xtqFJsEWbqPfW8QDpUbFarxBS0BiCdA07YrMdWyRiOpmMrM85s10nmfqgna0WIgvZRFLXEsbHyxF4mwfJos4eTYi8ISgW3OfR0ZHHjXWTa23zy9SNJC9YtIQpmd3dXY1DpzxZhET0VMGKwuifBWGMcjBaoziwKlBSmg2u32NFhp1XMa79fL6YXhgXSeQaip4CQqHxoKcAgClNscLEiybTWENo51+msdbJPzLBd1piVLK4qFMxUnTr9QfoJAKGHUffFGWwhcCTJh1JGTgvtcJ/Ztu3kmkblA3ASZAsafNm16twbcwYtyXd0qyztsOkq/v+wamylKaJXUhMwPjFAgEr4RZn3mK6gn9T53AD3mMcT93BvvN4O3/vWEKCSunw72Al8LcuniY4E+GyYZzMcxTEp8mJC+Ho1FAMD8r2GyIrRvsQeTxYND00HnL0U8LW8O384lGZ7Y5RiRhBnAgb921J3USYVo9xb9nMeoyklBXBGkOmxYjBM7DaOqYyJaEbOffJg8V67KgZ3JyYyo6QdPyw82UURhleRRo7Jw1w+zYZ6GKjYDstXdjfor/+T/0OXXn+ebp5/Rod8jYQp8cS+qojTgcnS/rTD6/5ZHmSQ4AP4B7daRlVKw5WggDBi7l/o00mFrnmR2pmN2tNWI3O+lazGef3sfgR9WKVwxvhgDxe9W5XseAqBrQDJ9qylBWBpoAReWZyE3CtXbF0LM5ClkNsZcSbAQcl9t00IroReF4fNTyTV0C2k7tB5caHdEwZBBS4CJ+PpQmmaiMdCNY5y9KiIyRmYNC9esMzgDJR+mbwNCkqoEIGi44USUPjfX857WBh+YSCndgZGluT7c31LfrOr31H6m3P7e7Rvbt36MYXn1Xcx4D/lM7tr9Hntx4J3QQyWXCv58ppIkQcK6ZvsM0D3zNrq/VRW3ywQHGYketDkKwggiq4cWxOBjtDvZppiSF3rVsZHwPHBOZXsduX14QoJCIfz6gdgYOjYxKx7ep7wJoiCUy1JYVavWj/rGEWeKSafFmolYklN7dt9YUwGXAjTXuxREoir2CGKHDwWCWhyng+5K4hooB90gRHpOQAfQqaSbAaEmg9K1gvoCu+JNd+qFEZbPf3LmkcmCkE7O4tVAdpR6q5pXft7mxLbJc7Ua1JR69CxwcPZQPC5XKNPvviC7rz4BF9dTn4zvLCwY2DJ/giTxL3il3fMW7rIizWc7AoMY9FzsKE+hA4GqIsrDAcMWL5rGuOoDftzHmifc8I3QRqpcluTGccMDJlGDrvUylnIEODVcpbIgDY/85f+2ek4zt7jszcow+eNuVeaoiHVwwXLFdPixsdnhwf0ZPHj+no4IlkfwjIzisp1wChT4nnYhBcEANrHoV2TKP3QB7tnGR/ZwyMebZpyFrZNi4naVaSAmYLgDUZCxgDZaZJsPP5kutgKg/IdAdrFdY2ij11dYqQLrWBEL+++fZbMtAPuI9LHZeDOhbMJsCkPXPxUh3DG1psxR0eBiWheyuMioKAnEVoMXCPp8NcnpM7sPJMwTxDQOAVwzN2TnOp8yY7T9VjuZqQTyS5gHNsvrOULceoTJ3FM04HPd38ThGinmbsTHAhhE01muDZth3j4Pv4sYT0/8K/8C9KYBrNxfmB1tZ6iWTwF9m9jylL+s+2D60Dfsqb7lUT9Nmnn9CNa5/TF59/Qg/u3NJGNumsS/9lP/H7YFnQgukG1WryQFk1gZp0FZwxODHsYJwsT+U52BPEvQJ3icmzZ0DJo8jYUjst8FXnhrdksxY2W/O5ZRAvLXVMz/mTd39Cr7zwjJC961nN7nKuHQp485rf/8H7St/YdqVIywe+a0VfJOMrmyiaMMI7Xu83hCLixZFtAYADlfEc1NtngefnBQ+oybna3wWUDwu/CLhhQy4DPeJ5fQpmi0KYAs5bNb+rjko0tzDD2klNLap0fCyqDHz/kPqv110fhwAY7WqgYp56QcV1HJncqg+/9dJL9OKLL0jD/NOTeQ3Wf0Y/+MP/mj7/+OfEHTXTyo3yK6bva4Zy2wVosNCOUzZ2vdWMmOj0cEMhiXz0a875sWcbs4fjIHUWYWDNILmEEq/UHLfTxdyPG8y8YaME7ofyu//0P0Vr65uV6jimx8MhPXn0sFqER8SMwk7VWJtcWincpxXX233iXpBsyk4RWrkhy4V/gs5KSzzDIAkOVDSDaDDcymlaQxpdsJHKFbuQAYrALHNPbu6DQzQdy6e9Vs3z0wTOXzw3OcAqO0azp4rIRruWsgucI9r96/+Hf+X/Ec1ej+6hdt4FJjB6SpQDMFXjmCzUxZuxrFUy9evvfLtqxnt07/aNiQbEiUWrBbpEm04W14Iu/emsliQTBgwgawHuYrUs2WK+ej+jBesdh0bsY2fRwqhlM+td49jw0rLRocaaj6rgbUuo75iL5bmEdGTueagaZS5k+IMaj5beNHUcL1w4XznHmbekWMYM7FJarTOpFuOtGXhhnFRvmiMio4U9k1QYqiacG6dJAi20gbsKtg1XTlZ/o0Lp+ZxYrPZMvOBu3X2oDkIUrPDPPBDTgua06GwT1BWoFcbBW9kydOQj9RY1yaMQ+tXwcV4vwyY41t2Cy1MaBIVBZeINKelY/FaacLQ8vXPndyt22aNf/a3fpvd+8kMX0Ij1IADCnfF4DksTPHLPGcIXeSWN9mgDHC0cUnO0UTXEekLgnb+3wG25iVbAp7WofAlpCSftN5bynCPCdUk7XzWvXSvxXtqv2mp/g+aPb9ONR7fk2gSsmzT+Oas/33j5GcGjXX/Ce5sp0Z814jJfklFd1mOb+cnTyhUePzJqQvMA5w8PLDafLLu6wp0ETnDw+1Te06g0u1+PiBiFJcXw2VxJEPP1tVOOlFHIxuem7HMC3k5NnWYLKQtCrgBkgehFvBeMKyvDganAAR01iUWsm40XWWeEaM6agKgQluAptWNGitp5oqHqQzz77HO0trGh+XYjNqobztAwLuX05ThRBdAGE5JLZBET0CvqpshgJktTKuQLQlK0kvkUBJaeJFNEi7LIwHPALYmMdsmCP3nwNtdC51J4lSWkoduz8QJfn2mUZnm8kNWPZDIpOeC/I0inZOWnjI+qtjs9Jlrx8l37mNAj2K9MgfVNtM74C3X68TUTCnAZydunbPRN6Rjfbt/Jvnmk7A6QkgtYkw5tsSHhR4EHA6ayjQU3kk9gSFS0lRIz+alvTzas1vpUSxqlQi3DVWWlREDqt+LPKb/vX3yW1ja3JVv56OjYi1cimz/BZEHQVkGwv4pyR9p5wUxnShNPml84v3i3pTg1gBXOTzwMoYklkTcMQpZKDu3LYt1E5C7xE71p4iu+76ZIgHiyftg2UmGy0D1BuQkQ9O18xYRcvpRamEu/Px3TVNrseCTJ7kNb/VgrXXsmYNWcgevy1ONN+BccSoNdSg3RVOvRVIEoZaY9F2UGnHdMsoj6VXyl0EzFczkE58S2iEq6gYiW8plwyMPVSb105UXa2TtnBGWnfE/RZo9/EbALZ2NVSP0WixEx9rAoIcAjIZYLXCgrjrm9cZoWLuE5CliHNI1/bTbdlhS/x59xsaxq7DZBpUVv7H6Lx6wVE/kG3qahpZEjFiSpYc9n+I52z5H495eu9PAZtQWCebLn8Gx0dCxITdjkVAWsB02KnnTBWK0QdtwaxzPHYCww0rmEXIKkXS0Yq/b4MjQUgCubTOlO5e0pVI2qxuhs5vRiGzUycPmlV2TrKvnM1pBUeq1MUJyo1b8niQo4Rm58nGhHmAc9rLiQDtZ9gCyhQUCwHdgwbEtajitWuDWOCYOiseMHW0AQSteC1JJFfVwNgI8j8vmeHoqUx0ohwTQ1DYJjR9OaEKoS3/PDp9eGAJwZ14QYc9t5YPWF7XDtWy4TvhtWuC8hzUvLnJfPPUkjGZxp8xU7cKXJ/BXVgBEHwikpBjKh6qdYsdgRiZ59vmq9/Uveso2CApdmNcO0Oc0v0ihxFflxYrpSGIBgchJWHJkXbj1UQuyY4IDYbU+1m/ZNiddaWrZul0KyRMj6do3mnSRSmESldmTrWiIj4lXQcA+uLVzgyLVWnGhosGZokLhQ/F8c1zim/MOr/UytSUJqZzsQ0DT5Q3MesbhILN2kKwOEzjz2Yr5BvGccO5rwZWqmWaM5Tc7a85apCcbkixYkNQPgdqaDNtDuuX26cPlFoQ+wkldf8Lbia4pfil8Tf7sKL2DUNV5ZwoO6MJSIQDFR9hwQbEwKtdqNAjA+IhhPxkuN/pNym3gZ7GRejNESw9iwDECx91C0+8e2DcB50urYzObq5OH3KBgkjo5tgqOOtI2zjUlpTZim81gFbmZb8IZMcDhYfc4rMKd1QsUsKeRqhfMITWoG0hicP3JhyhbfHQt8idHDhEs7hsamGPgcvSRjplYr64Ni9t/B8qgX3drbo2evPF9DOXt205nS06EdHdZQHVYD8Jt7pisvMY3D6BpOG6jqpI/jVEO2h9YX3tbQV2tt0Y6dmmwB0LiugftI9WjTo2YuIZTASCgoasKusWo1ANnN1iJkNbuGIJvmIDCxETvuOjZFktRDYp6ThHLS7+j84L74DJ1pOmTaxLJPCOqaKRIRNxf0lcycEpE1wqJkOxe0xaMLOqsXXzDHSHDgweoIqHaYOKDm9Sf3gvVEMT0KA4IJ2azk8sVnL9PWzrkaytnwQf5FrydPnhCAOKjfVJowZCMn3WGoP3bPn5P0pkF69KHPtGqSoSBxgZxeURBfvPuVps03agTFMkgPj69S2raiAPyrmRwTnJXJ0/JNyU20mafrU4+b9KQDH9+cKawj+z641uT4SC9YBSdYAmQw+y0V5fWk2ClZR9ikJQXYnYhfWJCThWnmO26n4btPYWPCUjxZWdrojdpWBc8PzYfxHgZyqkjbj1ijAdBZhNxAw8pclNTwF+kgUVPEPKWzKmw7e7t07txFWq/0yl9U+Ph16/Y9evDwSB+QyPrMaN6N9ntRz2+0SMSvf+15+q3f/BYzxIq7em5/cUxXa2jvRz/9lG7eO3AaRibVuq6yeseu7a6xzpizVuoJHItu9BE7YXgivQEciH2TJWN71LR2zVmA06Geq+63V5r5Nm0Or1KWVIIHWxp/5iOH3KOmhWEh7SsuWNJupLNMoYz98Gz3omQ0S9fi4lSo0UMJwqKLWRNqi2ekayOp4s4RhE8WAkX4YBjEHkJNrFJnqhWLO04q7G0Oek3EVHZduSAt4tne2pG9aXf2L9LW9q50zCJK9E/yunb9Jt269yB4aMUvngxT/fP/k9+i3/2rvyyZvafHc7r+8QcS5D9lDrE+7OHBCb36+it05a9+h372wWc1FLWUlfbkZElf3LpHn31+i6z82KnOMWgzpp/GFY+RqP1tw2NFM22LMBeFFZCvOGhKxCPkJ9c3LdNNukGcxchKB7XtrZqVePq1V27eNVjUbF71F97joKrWaCd3ALwJvf0tWjOFDGQbmdHyF1F9h5+g54ZA02Hxw2TjHKu3H1CdvEQDqgeu7P56DbKfv8D7jdV/5y+SbicaJPwv9NILP378kKLXyzvsoFDu1ecv0D//P/1t+srLF2nO+50dn9bg+hZtXXqeNpbaxf24Ysiv/NJz9Mt/+Xfo5u079TsXJZB+4eIz8nNnd58+v3Gb/t//9r9Lf/b+55qyD4RZbOdPIu9IIJ+NLnIBchd/xEnqREqOyxr9wm2J2y6hbb+7FAQjnCet1NhSevpQ/qIhTsl5QyKaLIgo2GjKDmFTuAcnpAkoCtQVK7bNIeX7kubfji/2eEPAh6j/HSyLSuLp5iUvLQ6t8fPRfIfpFq4l/N4zSctX39k+R+f2z9H+/nna2dmWrJLkYOWfTPNp4qduCbqzo3WxEPtn9jfp9Rcu0ZuvPU/Xr16nD9//lI6PT2qg/0Bjq/XmNzbW5R726r+hf0ib775bzfSpNF7c3Tsvgsfn5q5UexuF/o//yu/S//3/+R/SwbHuJiRxxqILihyDpfBPbyZGOoAfXZbcTVFSXXmyYgmt5EOiOYloc6GOgG/SR2aiqUxHEE5ASmflLjUDHAVZJss7IBR/DhwLDKwY1Px8dxIbZUMwy4lcMKGx4bSg4Whn+FIbviev5ShwTErDuR5BA01UNMlDNebS2okspb0L861LSxfrX379q2JqsaJlZ5yCIUv/hKKH+Sx0cqSbHl/c35e621dfvES/+c6rdPnijph5vYlTEVamcrh+QVYg7z3C3QQkF1TTy4fFIV28eLl63vsyQJwIenxyUP8dVZA+0PrWLr3+2ivV3D+UwYkhdW4hnEbTShlhMmhlLAzjxawKMEHj+GRbhjiEIoS3HJSZXKdgGonOml68F99PwYHySIVlB+E94Lan8amTf/o4/pk2Ty8ufPGe/OfKvflPE4p8hrbRZ26Wtri1wOfRo26aUwVVoNiojEW/tbXttnu9ar2ZgXmt9/gf9mLBefjwfsV0x3Rub5PeeXmfNjdndPPadbp1XZ0PTjfi0BcncG5saJf4Gee3jad08cJF2q2LYrNGy3erBt3a2aNubVO4sEf379b7HOnx8WH1sg/oxedfpuMlV7qdyCrWgVAPTGQidVbeSB7n7SbCpcKK+Khmd9MENPtEU4uhko99ojZXIf5LTcO2bgjJBdwFDZ2uKOBUpQg8jvtlAh3boui4qylVRyzU5xC52XXNW8qXCjNI/gjWVqktJ8xtDY9UJqFBOBmAHAmacjSu1TRpunPzmvLN9U3O5ePvcaV9X8NroSHXL37Vk82r1kJW7uL0iD794M/pgx/9IX3+ySf03k9+ICp3jmaNFsoZlkU2xdMCI4T+rIJrqUmXzz57ib759tfpX/yX/le0s97R4ePHVbse0PUbd2h9+yIdnBbJv+Mbv3f/Mb3/4af00/c/CpEEm8hEK4MznQgMGOga0E8paJMzk2aWok1ci8/m4CBEYYm/xzDoKv31NEGL5xDjakm8LWzWhCwKVLwPPU96aiRlcv5VDT05prjFzO79BW2akuPiZKgnj9Pz+lzcuXG1yFZTa71UXfGZZcup2RbRl0mbAe7R8NWdmzdoY2uTFof36cH1j+noycMqQHPZOuvqJx/RH/7D3xcCc7FUD4obCTG9NCAykCz6QKkBWsODrGEeVe32wuXz9G/+G/9n2uZ9dYcZ3X5wTJ/dfCTpX7zKFp6UmejnH35MP/zxzwg0RhQkamNFIOAhOPgs0i5OznusEwPbzKILMVHDzRPBjkLfcFc0Xatm7ox2W/l5RljSindrmqfLbWNvLDJAq0JTQeuCJm3Kr2nteH1oMrEmYSzQsqWkhnPlfvG8FP5Olg0DElYaRtogfdlLHYxRwmx3b9+U3brv3LpBF3czHT++K9ViqNY6PT2mn77708oHPqJOmmZz2vlMODvWmHPJzmTgqz2UuRJMODVuk1vBb0WRlQc8pQfHA+1Xcvrdd9+n3/jOL9P124/p6o2H2hOFu1GZtuqsj8v+uW/Tj37yXqB8yAVHhXL6viZQ0GSAIVQA911ogeaTUDTKE81dnNinYT3fxC+aMzNVUTPaF/x7UfCeLtiN68uFfDHI55bs52bRr91+qtJCkNLMqsYJZI6g5JBkka1I36kcaOmUnFWRCE6nez9jLKNTpfsYFxWqMiC1CaGUp7+4rdfjhw/o1q2b0pjxT/74j6ojsKBf++U3SUy27H2r28Cztnvl9dfozt279fyn9fNtEcy7Dw8kfibdCIrGOXkqT3mPWnPl19dnkjC6tzGTVPWd9Z4217bp1sO5aOfXXt22dHrt3yKVbZWauXTxPL1XzTAPSpfPTn4Mi8E0KRVV6IUrV8J7qvGG+rwz40DBfWWjO7ouTxpFiqdqKWGorNMu+STJC4TPU7Jio0xrve4nAi2mMd5kNcm2K5Xdr/Qm7G0TG1KnCc+UOAMbmnAsrRES35XRLdhIBtGcQSdftTIXQC017Z/P2VlLYmi2Puxxh947fM7DwyOpp44aW+7DhBCauc9WLoEFa4u1V16GJr1CuLdJNztDEIjpfP+9n0oZ4uMqfD/6x38s/ZF3ttbp+vVr1ZvetZZj3OP4hI4qt7dRaZNf+fXv0o0b16XYWirJdo8FD7LZlU2RB93ghesqsuzCvhRzrTdLdOX8Nv3Gb/4mbe4/Q48OjvV7tpcvjwlTRrw3L9do/P0/+D79/d//I6UDEjm5ziOim9nkiRkBO7dVBeH1l16QwZ/ZZoAIpLMZ4w2w93Z35f55T+Pesn/GAK45lV6+C3NtXbE2NzbpuFqDne0dKVziHdi5Ncd2/ZtfvMewZJssdXs0fp65lWnyXsi886a02N1Yl7HlxYk9TtBsibX4TBqyW0FVtsagOVPbLEYdRD6eS1AlU7xXcz3MdVNDHvRhqc0K0E7EMsAI7UB47FkWuKCKe2b/+M9/SrpRVnP+tC9j8sUlyQxGSXG/nmyauMfmwrK6TcLZvK5t8EO13DH+4q0b1+jm9Rv05MEj+ujDn9GDBw/kYofzih93n6V7d6/WEzIHpPuX8aRJf+Z60MVLl3UzF9lidSETMZcduQfnrDY2N2vMeaNGXrarOe5pf2+v0i8XZYKYKzw40E7yUte7pppxGBI9fPSIvvcnP6mRksopnpyaFotmRhdTttoOeZclU6QnVW/6kL7xza/J+50Rsbz6+R5ZS3N9x/bWzBkX2bCh6OY0yBLqbLfKziZYmohnTcXnemqupWYczFzm6fGp5E4qcau11yzQvGP6cdUom1oKXJ25U2muypOtOYrYr3k0bUbivCl/p/e8Xs8vNcKkW6Whz7V0fzBjzzuLLupin1WBPuF7meluUkvv7cI2fJCxKgvl69alYKoTa8PnyrN1ocou7O/Sd375W/TDH73ri9u9+azakL836/UetclSloo+nqN+79w5QjMclnD0Hy7cR6RvAsjNtz+tHu1HP/853bl9vUY5Hkvdaz/jvXLX6bf+2t+Q36/VUNpH771Ln1UB5f573J+Y99A4PdGfLoSjFoezlpJ2sfXzk7sPpNTxoE6WbPayqBzhJkc8tunFK5fpwgUlyo9PF7JFwr2Hj+juvfsafDcyWBn8kOxZYhqTCmSC42YB+3mldJ577jnrdLqmrc6qgG/aNl/cB5onwEsf2Ur0XBZZqaGFFjSh7QU/F2uNeV1kUptiuGmrajs2a9g2AVk/0Jiy+yj3ealCka1+F11OB+unyNp307pfaax28OblXIetVsGan0vJ54YQv2qibSco20Fgtr6hAmDPo4J7IrtL8bWXogU1HrxWqbrOxndtw/rNFNbsWyLslyrX+91f/3X6R9//Xl1gM5lXzjHc3FCLkI2+ArwapAy2KrnM3WR54PiG2ZywNmJhkRrZqSNy7fPPKof3BV29+omsZudf60le/crr9WJa3P3Km9+i7//4Xfov/v73aKuaZtl+lHTbVIbx2rEpWx+UKux18I9P59J7hQdue3NNPrt08QJ97auvSu+V/Sp4n16/TT+t2C7nawHHZe3bR81pYIdGf586HtDjyRNNkXYx0AsvXJF927gLQanv7FRTq019tMniuhW68z4gog23t7zFxsKIXikul+oxjSIcHR3K96TPn5VIyt503htRcdaabQ3rJr+MjvHYVCORgoyFTJ5mRWJGPRuGq3CyCtgwLs1JSGZKNWnByAvR1qrxlnWBb4njyNpuW7ol6CJIeUM4WEl+5y10T+dtx82yKfelfXe2ZMxeemlfOlnc+uJzKo2Vl3JSLvDncVpYr0WWE5YH/rsXgApTa/W0TPzmbs2F7/DgMV374irdrDju9OTUskhs69Cqvn/9t/6yDjL3S9nZoD/+b/9Qburw6FRwIARgo8aCH95/KDcWawcWvDKrSuZC7b3NdTo+qhNTOb+333qj3tu6mNqtOhjM8U0LpaYNkeILf7NASnG8hZaiieDfn1Qv/i+99StV6Ha0gaY5GeKRk+3PlrRxJLhEXsm8cAfpopVlmwbWBCxkO5VA5++sVx51qwqq0E/zwXr49daKl3QMpevCQFtVCI6lb7OavcH7NWoXf85I4vvR5pKa4s7dG7gbF+O1rW3WxDoWc+m8YBq0cE+bmdw/LyTZ9iFr9wteMGuz3tKsNI+Kzy8dtKxo/P79B5pi1iXD9brVg4jXiF2uZCLozgMOi27Q9Sqx16/f1HG2Aii0EN7e0A27BStmpWr6nJqgMeCY1QfL/ZprFb6zTz/+qN7MPWnBAVMNOuCFF7krwovVjJ1WQVrSvWtf0IcfvO9lfuoAaHsurr/l7e41u5c9wCSYjfs41+mkjW4ppmlzbYPOnztfheOgmsY92q1a8PULL9F/+l/8XavnmJLC7V7JuadIT3iMlxo3JRqAm1PWyXimatultb2AAxITWzcrKEN7tTUThNHipgDmXI8iGoTIzPWgGC6zGeLJLu4QqGe8FDPF5pXpKl4oajJbgyJeYBpF0aaVvv2CcWobtju6bBNriQesASWzZ9Q+MFtbamrRopf/LarDIc3Ke+UMNSWf5Hy8QGSb3arNDnhR8SJbaqkC41S+lu7ipLXcKduWFhznrdd4/eWXKyy6W2HLUmuW6zPM6zmO67keVYcVW/Cif8ykQoVd+ZS6iTa5e+c23b93h+7duSNdN1HqyKtka2uHfvU3f0vU82ENi21XQPrH/+3fsf1BpjzVTh2IR9VzhmcLx4C1Anu8GxVnzLjwqXpxfaVczl/cpyvPXZbVvbu3Lc7A22+/RT/5s582wXKqoV2PjOtC21Yk2Wakrpvny7QIx6Nfff45SX5Axi5olLg3B34i0xibBgIzczgT1QfYhZMpod4oGBZYcWbMNJ2Kk0CePcJCgva500VkW9MW7ZctDsNab1k+KnhyL9K6bU1Mp+y3fLr09m/Hx5pcMAwn9W/+ORfBZqvSLyyHsQqWOm9FzL70yOEx6GfGJoySc4hsmmL8nu65Qp6gwBifP//229+kP/r+D6rAHckCQ6s7sC0xU2YqgJTaRJKuoi8++4QeP3pcyeZbVmap5oE9pxdfeqXitDdki6qTxQntrz9Lf/e/+tuTc3iq0zh4OzT+lEkWSUPtOBOnmnw2wR3voTuI8LCnxxO7v78nRT4Miq9cOkc/7RqAT8Y3oe7XSVFcO8QyIXguUHWgHt29T//jv/xd+TuWdLKp4QQN3s4ANAe0n/c/tgXA2pG91F7giO75JotbHCHNIFmzVmuiOY2qUAsxSK4e6nCw57G0XlssTQNqAixbKsbUPBZ71SLw+cBJLpe9OHPH4uzNdYsIo9XEgz7RwnXWsL20Chl1M8NeHTKtJlQvmGFUb5hRYur8vmh85YD1+KVgWyZTDmtYlLWzeO3LuXdrfbPKxT/64Q+FAUDmC3rY4BjJhqEvefHNX6uA8qBipLt37lYK5BEhnMPNtzlf8K/8zncrpXAompN75f2jP/h9ulG/g82dlZxlD5FVt/axA/ZjzceriyMZzG/xNxgWbdbBzZwfeKQdR2NE4e1f+hr9gz/4gQJ9eBlWNCX9RlaoSwjJJPLAGtNop9dffZFV4aR7PUyt7qXR9oyDtiulTDQgwPjcum+R1c4kQ/z8XIvFiTgk3AIOhUreB9oEQ8/Hu3oei2njBzlXvUs+ZlMaGClsYYdBNnOs12CP+JB7Eo7qbTM/ytwiKw5eGGLOeWzq4uaFgf7SyTB4L7sEjM7xYZdOocREiEcRTsHCNayqbX5P6nzNKgtxIIoiZr2wU8PY7rB+xmzGW1//Ov3R936gqXbcr5AF3ASQsSYrmS8VQO4DeLN6vY8q13f92lVJEIVg7lTN9I1vvEmXLz8rJvthxWoXLz1D//F/8B+IME4q7+tNblW1/uTRIXmWRWqp7hxDTtmME+8fywx8P5NB/MH3f0z/i//l31AccTrICt2rzsJB9TAhYPiZwK008YuKuOFGE142F9+t/BWbRjaJoDcQ0B9MENn5QLdR/oe+y2oyT8XUMqbj0OHe3o7wXrt7u9q7b21Ncd6CU8Y2JKu8VC3CgnJSF5jUHNfxkjy5+oxcQ3N8nCRBgxuKS1qatN7oHRKcO7+vu6MbD4oIhlAs0gplFCpmblvDrtnWXtJiIyQv8OukBgtYUMkWUTHLwMLC1/A2clnHa9capTOGZAVyfHRsHv+RL1Se95PTufdNfO7ZS3TtT28IL8zCx9yqbu49ikb97wDHvPgA5c4mAwAAAABJRU5ErkJggg==",uF={MATERIAL:"material"},sF="UIGrouping";class wA{static getTransformedData({dataType:n,data:r}){switch(n){case Tu.UI:return this.getMapUIData(r);case Tu.DATA_INPUT:return console.log(Tu.DATA_INPUT);case Tu.DATA_ALL_PRODUCT:return console.log(Tu.DATA_ALL_PRODUCT);default:throw new Error("Unsupported format")}}static getGroupingValue(n){if(n)return n.find(r=>r.name===sF)}static getAllMaterialValuesKeys(n){if(n)return n.flatMap(r=>r.groups.flatMap(s=>s.options.filter(b=>b.typeComponent===uF.MATERIAL)).map(s=>s.optionName))}static getAllMaterialOptions(n){const r=JSON.parse(this.getGroupingValue(n).value);if(r){const s=this.getAllMaterialValuesKeys(r);if(s?.length){const b=n.filter(h=>s.includes(h.name));if(b?.length){const h=Y2.getMaterialsValuesFromOptions(b);if(h?.length)return{allMaterialValues:h,productElementOptions:b}}}}}static getMapUIData(n){return this.getAllMaterialOptions(n)}}const cF=({productListItem:t})=>{const n=mn(),{name:r}=t,s=async()=>{const{productId:b,name:h}=t;if(b&&h){const p=await n(DD({productId:b,productName:h})).unwrap();if(p){const T=p.attributes;if(n(zD(p)),T?.length){const A=wA.getTransformedData({dataType:Tu.UI,data:T});A&&(n(RD()),n(T7(A)))}}}};return B.jsxs("li",{className:"min-w-0 cursor-pointer",tabIndex:0,onClick:s,children:[B.jsx("div",{className:"mb-3 aspect-[16/9] w-ful sm:w-full",children:B.jsx("img",{src:rF,alt:"product-list-item",className:`w-30 h-30 object-cover rounded-sm\r
372
+ sm:w-40 sm:h-40\r
373
+ `})}),r]})},fF=[{value:"opt",label:"opt"},{value:"opt1",label:"opt1"},{value:"opt2",label:"opt2"}],dF=({onSidebarToggle:t})=>{const n=mn(),r=Xt(QD),[s,b]=tt.useState(h7),[h,p]=tt.useState(""),[T,E]=tt.useState("");tt.useEffect(()=>{const z=setTimeout(()=>{E(h.trim().toLowerCase())},300);return()=>clearTimeout(z)},[h]);const A=Xt(YD),M=tt.useMemo(()=>f8.getUniqueCategories(A),[A]),L=z=>z.toLowerCase(),R=tt.useMemo(()=>{let z=A;if(s?.value){const U=L(s.value);z=z.filter(G=>G.categories.some(J=>L(J)===U))}return T&&(z=z.filter(U=>L(U.name).includes(T))),z},[A,s,T]);return tt.useEffect(()=>{n(Wg())},[n]),B.jsxs("div",{className:"flex h-full flex-col",children:[B.jsxs("header",{className:"flex items-center justify-between p-[var(--sm-padding)] border-b border-[var(--border)]",children:[B.jsx("span",{className:"text-base font-medium",children:"Swatches List"}),B.jsx("button",{onClick:t,className:`flex h-[30px] w-[30px] items-center justify-center rounded-full bg-[var(--background-grey)]\r
374
+ [&_svg_path]:stroke-[var(--svg-dark)]`,children:B.jsx(x0,{width:10,height:10})})]}),B.jsxs("div",{className:"flex min-h-0 flex-1 flex-col",children:[B.jsxs("div",{className:"flex justify-between items-center gap-4 h-[64px] p-[var(--sm-padding)] border-b border-[var(--border)] sm:justify-start",children:[B.jsxs("div",{className:"relative w-full max-w-[180px] h-[36px] sm:max-w-[240px]",children:[B.jsx("input",{type:"text",placeholder:"Search",value:h,onChange:z=>p(z.target.value),className:`\r
375
+ h-full w-full pr-8 pl-4 rounded-2xl border border-[var(--border)]\r
376
+ text-sm text-[var(--grey-text-color)] placeholder-[var(--text-muted)]\r
377
+ focus:outline-none focus:border-[var(--main-accent-color)]\r
378
+ bg-[var(--background)] transition\r
379
+ `}),B.jsx("div",{className:`\r
380
+ absolute right-2 top-1/2 -translate-y-1/2\r
381
+ pointer-events-none\r
382
+ [&_svg_path]:stroke-[var(--svg-dark)]\r
383
+ `,children:B.jsx(Rx,{width:16,height:16})})]}),B.jsx(Rm,{options:fF,values:["opt"],onValueChange:z=>console.log("value",z),className:"max-w-[100px] sm:max-w-[auto] sm:min-w-[160px]",dropdownWidth:"w-80"}),B.jsx(B6,{items:M,activeId:s?.productId,className:"hidden sm:max-w-[680px] sm:overflow-hidden sm:flex",onSelect:z=>b(z)})]}),B.jsx(B6,{items:M,activeId:s?.productId,className:"h-[64px] p-[var(--sm-padding)] border-b border-[var(--border)] sm:hidden sm:max-w-[680px] sm:overflow-hidden",onSelect:z=>b(z)}),r?B.jsx("div",{className:"w-full flex justify-center items-center flex-1 min-h-0",children:"loading..."}):B.jsxs("div",{className:"flex-1 min-h-0 overflow-y-auto p-[var(--sm-padding)]",children:[B.jsx("div",{className:"mb-4",children:"Select Product"}),B.jsx("ul",{className:`\r
384
+ grid grid-cols-2 gap-4\r
385
+ sm:grid-cols-6\r
386
+ `,children:R.length?R.map(z=>{const{name:U}=z;return B.jsx(cF,{productListItem:z},U)}):null})]})]})]})};function om(t,n,r){let s=r.initialDeps??[],b;function h(){var p,T,E,A;let M;r.key&&((p=r.debug)!=null&&p.call(r))&&(M=Date.now());const L=t();if(!(L.length!==s.length||L.some((U,G)=>s[G]!==U)))return b;s=L;let z;if(r.key&&((T=r.debug)!=null&&T.call(r))&&(z=Date.now()),b=n(...L),r.key&&((E=r.debug)!=null&&E.call(r))){const U=Math.round((Date.now()-M)*100)/100,G=Math.round((Date.now()-z)*100)/100,J=G/16,F=(ie,te)=>{for(ie=String(ie);ie.length<te;)ie=" "+ie;return ie};console.info(`%c⏱ ${F(G,5)} /${F(U,5)} ms`,`
387
+ font-size: .6rem;
388
+ font-weight: bold;
389
+ color: hsl(${Math.max(0,Math.min(120-120*J,120))}deg 100% 31%);`,r?.key)}return(A=r?.onChange)==null||A.call(r,b),b}return h.updateDeps=p=>{s=p},h}function l7(t,n){if(t===void 0)throw new Error("Unexpected undefined");return t}const bF=(t,n)=>Math.abs(t-n)<1.01,mF=(t,n,r)=>{let s;return function(...b){t.clearTimeout(s),s=t.setTimeout(()=>n.apply(this,b),r)}},n7=t=>{const{offsetWidth:n,offsetHeight:r}=t;return{width:n,height:r}},hF=t=>t,pF=t=>{const n=Math.max(t.startIndex-t.overscan,0),r=Math.min(t.endIndex+t.overscan,t.count-1),s=[];for(let b=n;b<=r;b++)s.push(b);return s},gF=(t,n)=>{const r=t.scrollElement;if(!r)return;const s=t.targetWindow;if(!s)return;const b=p=>{const{width:T,height:E}=p;n({width:Math.round(T),height:Math.round(E)})};if(b(n7(r)),!s.ResizeObserver)return()=>{};const h=new s.ResizeObserver(p=>{const T=()=>{const E=p[0];if(E?.borderBoxSize){const A=E.borderBoxSize[0];if(A){b({width:A.inlineSize,height:A.blockSize});return}}b(n7(r))};t.options.useAnimationFrameWithResizeObserver?requestAnimationFrame(T):T()});return h.observe(r,{box:"border-box"}),()=>{h.unobserve(r)}},i7={passive:!0},o7=typeof window>"u"?!0:"onscrollend"in window,TF=(t,n)=>{const r=t.scrollElement;if(!r)return;const s=t.targetWindow;if(!s)return;let b=0;const h=t.options.useScrollendEvent&&o7?()=>{}:mF(s,()=>{n(b,!1)},t.options.isScrollingResetDelay),p=M=>()=>{const{horizontal:L,isRtl:R}=t.options;b=L?r.scrollLeft*(R&&-1||1):r.scrollTop,h(),n(b,M)},T=p(!0),E=p(!1);E(),r.addEventListener("scroll",T,i7);const A=t.options.useScrollendEvent&&o7;return A&&r.addEventListener("scrollend",E,i7),()=>{r.removeEventListener("scroll",T),A&&r.removeEventListener("scrollend",E)}},vF=(t,n,r)=>{if(n?.borderBoxSize){const s=n.borderBoxSize[0];if(s)return Math.round(s[r.options.horizontal?"inlineSize":"blockSize"])}return t[r.options.horizontal?"offsetWidth":"offsetHeight"]},SF=(t,{adjustments:n=0,behavior:r},s)=>{var b,h;const p=t+n;(h=(b=s.scrollElement)==null?void 0:b.scrollTo)==null||h.call(b,{[s.options.horizontal?"left":"top"]:p,behavior:r})};class yF{constructor(n){this.unsubs=[],this.scrollElement=null,this.targetWindow=null,this.isScrolling=!1,this.measurementsCache=[],this.itemSizeCache=new Map,this.pendingMeasuredCacheIndexes=[],this.scrollRect=null,this.scrollOffset=null,this.scrollDirection=null,this.scrollAdjustments=0,this.elementsCache=new Map,this.observer=(()=>{let r=null;const s=()=>r||(!this.targetWindow||!this.targetWindow.ResizeObserver?null:r=new this.targetWindow.ResizeObserver(b=>{b.forEach(h=>{const p=()=>{this._measureElement(h.target,h)};this.options.useAnimationFrameWithResizeObserver?requestAnimationFrame(p):p()})}));return{disconnect:()=>{var b;(b=s())==null||b.disconnect(),r=null},observe:b=>{var h;return(h=s())==null?void 0:h.observe(b,{box:"border-box"})},unobserve:b=>{var h;return(h=s())==null?void 0:h.unobserve(b)}}})(),this.range=null,this.setOptions=r=>{Object.entries(r).forEach(([s,b])=>{typeof b>"u"&&delete r[s]}),this.options={debug:!1,initialOffset:0,overscan:1,paddingStart:0,paddingEnd:0,scrollPaddingStart:0,scrollPaddingEnd:0,horizontal:!1,getItemKey:hF,rangeExtractor:pF,onChange:()=>{},measureElement:vF,initialRect:{width:0,height:0},scrollMargin:0,gap:0,indexAttribute:"data-index",initialMeasurementsCache:[],lanes:1,isScrollingResetDelay:150,enabled:!0,isRtl:!1,useScrollendEvent:!1,useAnimationFrameWithResizeObserver:!1,...r}},this.notify=r=>{var s,b;(b=(s=this.options).onChange)==null||b.call(s,this,r)},this.maybeNotify=om(()=>(this.calculateRange(),[this.isScrolling,this.range?this.range.startIndex:null,this.range?this.range.endIndex:null]),r=>{this.notify(r)},{key:process.env.NODE_ENV!=="production"&&"maybeNotify",debug:()=>this.options.debug,initialDeps:[this.isScrolling,this.range?this.range.startIndex:null,this.range?this.range.endIndex:null]}),this.cleanup=()=>{this.unsubs.filter(Boolean).forEach(r=>r()),this.unsubs=[],this.observer.disconnect(),this.scrollElement=null,this.targetWindow=null},this._didMount=()=>()=>{this.cleanup()},this._willUpdate=()=>{var r;const s=this.options.enabled?this.options.getScrollElement():null;if(this.scrollElement!==s){if(this.cleanup(),!s){this.maybeNotify();return}this.scrollElement=s,this.scrollElement&&"ownerDocument"in this.scrollElement?this.targetWindow=this.scrollElement.ownerDocument.defaultView:this.targetWindow=((r=this.scrollElement)==null?void 0:r.window)??null,this.elementsCache.forEach(b=>{this.observer.observe(b)}),this._scrollToOffset(this.getScrollOffset(),{adjustments:void 0,behavior:void 0}),this.unsubs.push(this.options.observeElementRect(this,b=>{this.scrollRect=b,this.maybeNotify()})),this.unsubs.push(this.options.observeElementOffset(this,(b,h)=>{this.scrollAdjustments=0,this.scrollDirection=h?this.getScrollOffset()<b?"forward":"backward":null,this.scrollOffset=b,this.isScrolling=h,this.maybeNotify()}))}},this.getSize=()=>this.options.enabled?(this.scrollRect=this.scrollRect??this.options.initialRect,this.scrollRect[this.options.horizontal?"width":"height"]):(this.scrollRect=null,0),this.getScrollOffset=()=>this.options.enabled?(this.scrollOffset=this.scrollOffset??(typeof this.options.initialOffset=="function"?this.options.initialOffset():this.options.initialOffset),this.scrollOffset):(this.scrollOffset=null,0),this.getFurthestMeasurement=(r,s)=>{const b=new Map,h=new Map;for(let p=s-1;p>=0;p--){const T=r[p];if(b.has(T.lane))continue;const E=h.get(T.lane);if(E==null||T.end>E.end?h.set(T.lane,T):T.end<E.end&&b.set(T.lane,!0),b.size===this.options.lanes)break}return h.size===this.options.lanes?Array.from(h.values()).sort((p,T)=>p.end===T.end?p.index-T.index:p.end-T.end)[0]:void 0},this.getMeasurementOptions=om(()=>[this.options.count,this.options.paddingStart,this.options.scrollMargin,this.options.getItemKey,this.options.enabled],(r,s,b,h,p)=>(this.pendingMeasuredCacheIndexes=[],{count:r,paddingStart:s,scrollMargin:b,getItemKey:h,enabled:p}),{key:!1}),this.getMeasurements=om(()=>[this.getMeasurementOptions(),this.itemSizeCache],({count:r,paddingStart:s,scrollMargin:b,getItemKey:h,enabled:p},T)=>{if(!p)return this.measurementsCache=[],this.itemSizeCache.clear(),[];this.measurementsCache.length===0&&(this.measurementsCache=this.options.initialMeasurementsCache,this.measurementsCache.forEach(M=>{this.itemSizeCache.set(M.key,M.size)}));const E=this.pendingMeasuredCacheIndexes.length>0?Math.min(...this.pendingMeasuredCacheIndexes):0;this.pendingMeasuredCacheIndexes=[];const A=this.measurementsCache.slice(0,E);for(let M=E;M<r;M++){const L=h(M),R=this.options.lanes===1?A[M-1]:this.getFurthestMeasurement(A,M),z=R?R.end+this.options.gap:s+b,U=T.get(L),G=typeof U=="number"?U:this.options.estimateSize(M),J=z+G,F=R?R.lane:M%this.options.lanes;A[M]={index:M,start:z,size:G,end:J,key:L,lane:F}}return this.measurementsCache=A,A},{key:process.env.NODE_ENV!=="production"&&"getMeasurements",debug:()=>this.options.debug}),this.calculateRange=om(()=>[this.getMeasurements(),this.getSize(),this.getScrollOffset(),this.options.lanes],(r,s,b,h)=>this.range=r.length>0&&s>0?CF({measurements:r,outerSize:s,scrollOffset:b,lanes:h}):null,{key:process.env.NODE_ENV!=="production"&&"calculateRange",debug:()=>this.options.debug}),this.getVirtualIndexes=om(()=>{let r=null,s=null;const b=this.calculateRange();return b&&(r=b.startIndex,s=b.endIndex),this.maybeNotify.updateDeps([this.isScrolling,r,s]),[this.options.rangeExtractor,this.options.overscan,this.options.count,r,s]},(r,s,b,h,p)=>h===null||p===null?[]:r({startIndex:h,endIndex:p,overscan:s,count:b}),{key:process.env.NODE_ENV!=="production"&&"getVirtualIndexes",debug:()=>this.options.debug}),this.indexFromElement=r=>{const s=this.options.indexAttribute,b=r.getAttribute(s);return b?parseInt(b,10):(console.warn(`Missing attribute name '${s}={index}' on measured element.`),-1)},this._measureElement=(r,s)=>{const b=this.indexFromElement(r),h=this.measurementsCache[b];if(!h)return;const p=h.key,T=this.elementsCache.get(p);T!==r&&(T&&this.observer.unobserve(T),this.observer.observe(r),this.elementsCache.set(p,r)),r.isConnected&&this.resizeItem(b,this.options.measureElement(r,s,this))},this.resizeItem=(r,s)=>{const b=this.measurementsCache[r];if(!b)return;const h=this.itemSizeCache.get(b.key)??b.size,p=s-h;p!==0&&((this.shouldAdjustScrollPositionOnItemSizeChange!==void 0?this.shouldAdjustScrollPositionOnItemSizeChange(b,p,this):b.start<this.getScrollOffset()+this.scrollAdjustments)&&(process.env.NODE_ENV!=="production"&&this.options.debug&&console.info("correction",p),this._scrollToOffset(this.getScrollOffset(),{adjustments:this.scrollAdjustments+=p,behavior:void 0})),this.pendingMeasuredCacheIndexes.push(b.index),this.itemSizeCache=new Map(this.itemSizeCache.set(b.key,s)),this.notify(!1))},this.measureElement=r=>{if(!r){this.elementsCache.forEach((s,b)=>{s.isConnected||(this.observer.unobserve(s),this.elementsCache.delete(b))});return}this._measureElement(r,void 0)},this.getVirtualItems=om(()=>[this.getVirtualIndexes(),this.getMeasurements()],(r,s)=>{const b=[];for(let h=0,p=r.length;h<p;h++){const T=r[h],E=s[T];b.push(E)}return b},{key:process.env.NODE_ENV!=="production"&&"getVirtualItems",debug:()=>this.options.debug}),this.getVirtualItemForOffset=r=>{const s=this.getMeasurements();if(s.length!==0)return l7(s[GA(0,s.length-1,b=>l7(s[b]).start,r)])},this.getOffsetForAlignment=(r,s,b=0)=>{const h=this.getSize(),p=this.getScrollOffset();s==="auto"&&(s=r>=p+h?"end":"start"),s==="center"?r+=(b-h)/2:s==="end"&&(r-=h);const T=this.getTotalSize()+this.options.scrollMargin-h;return Math.max(Math.min(T,r),0)},this.getOffsetForIndex=(r,s="auto")=>{r=Math.max(0,Math.min(r,this.options.count-1));const b=this.measurementsCache[r];if(!b)return;const h=this.getSize(),p=this.getScrollOffset();if(s==="auto")if(b.end>=p+h-this.options.scrollPaddingEnd)s="end";else if(b.start<=p+this.options.scrollPaddingStart)s="start";else return[p,s];const T=s==="end"?b.end+this.options.scrollPaddingEnd:b.start-this.options.scrollPaddingStart;return[this.getOffsetForAlignment(T,s,b.size),s]},this.isDynamicMode=()=>this.elementsCache.size>0,this.scrollToOffset=(r,{align:s="start",behavior:b}={})=>{b==="smooth"&&this.isDynamicMode()&&console.warn("The `smooth` scroll behavior is not fully supported with dynamic size."),this._scrollToOffset(this.getOffsetForAlignment(r,s),{adjustments:void 0,behavior:b})},this.scrollToIndex=(r,{align:s="auto",behavior:b}={})=>{b==="smooth"&&this.isDynamicMode()&&console.warn("The `smooth` scroll behavior is not fully supported with dynamic size."),r=Math.max(0,Math.min(r,this.options.count-1));let h=0;const p=10,T=A=>{if(!this.targetWindow)return;const M=this.getOffsetForIndex(r,A);if(!M){console.warn("Failed to get offset for index:",r);return}const[L,R]=M;this._scrollToOffset(L,{adjustments:void 0,behavior:b}),this.targetWindow.requestAnimationFrame(()=>{const z=this.getScrollOffset(),U=this.getOffsetForIndex(r,R);if(!U){console.warn("Failed to get offset for index:",r);return}bF(U[0],z)||E(R)})},E=A=>{this.targetWindow&&(h++,h<p?(process.env.NODE_ENV!=="production"&&this.options.debug&&console.info("Schedule retry",h,p),this.targetWindow.requestAnimationFrame(()=>T(A))):console.warn(`Failed to scroll to index ${r} after ${p} attempts.`))};T(s)},this.scrollBy=(r,{behavior:s}={})=>{s==="smooth"&&this.isDynamicMode()&&console.warn("The `smooth` scroll behavior is not fully supported with dynamic size."),this._scrollToOffset(this.getScrollOffset()+r,{adjustments:void 0,behavior:s})},this.getTotalSize=()=>{var r;const s=this.getMeasurements();let b;if(s.length===0)b=this.options.paddingStart;else if(this.options.lanes===1)b=((r=s[s.length-1])==null?void 0:r.end)??0;else{const h=Array(this.options.lanes).fill(null);let p=s.length-1;for(;p>=0&&h.some(T=>T===null);){const T=s[p];h[T.lane]===null&&(h[T.lane]=T.end),p--}b=Math.max(...h.filter(T=>T!==null))}return Math.max(b-this.options.scrollMargin+this.options.paddingEnd,0)},this._scrollToOffset=(r,{adjustments:s,behavior:b})=>{this.options.scrollToFn(r,{behavior:b,adjustments:s},this)},this.measure=()=>{this.itemSizeCache=new Map,this.notify(!1)},this.setOptions(n)}}const GA=(t,n,r,s)=>{for(;t<=n;){const b=(t+n)/2|0,h=r(b);if(h<s)t=b+1;else if(h>s)n=b-1;else return b}return t>0?t-1:0};function CF({measurements:t,outerSize:n,scrollOffset:r,lanes:s}){const b=t.length-1,h=E=>t[E].start;if(t.length<=s)return{startIndex:0,endIndex:b};let p=GA(0,b,h,r),T=p;if(s===1)for(;T<b&&t[T].end<r+n;)T++;else if(s>1){const E=Array(s).fill(0);for(;T<b&&E.some(M=>M<r+n);){const M=t[T];E[M.lane]=M.end,T++}const A=Array(s).fill(r+n);for(;p>=0&&A.some(M=>M>=r);){const M=t[p];A[M.lane]=M.start,p--}p=Math.max(0,p-p%s),T=Math.min(b,T+(s-1-T%s))}return{startIndex:p,endIndex:T}}const r7=typeof document<"u"?X.useLayoutEffect:X.useEffect;function EF(t){const n=X.useReducer(()=>({}),{})[1],r={...t,onChange:(b,h)=>{var p;h?z0.flushSync(n):n(),(p=t.onChange)==null||p.call(t,b,h)}},[s]=X.useState(()=>new yF(r));return s.setOptions(r),r7(()=>s._didMount(),[]),r7(()=>s._willUpdate()),s}function AF(t){return EF({observeElementRect:gF,observeElementOffset:TF,scrollToFn:SF,...t})}const MF=t=>B.jsx("svg",{width:"16",height:"11",viewBox:"0 0 16 11",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:B.jsx("path",{d:"M14.6668 1L5.50016 10.1667L1.3335 6",stroke:"white",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}),u7=({val:t})=>{const n=mn(),r=Xt(c8),s=p=>{n(u8({selectedMaterial:p}))},b=t&&t.assetId?t.assetId:"false",h=r.find(p=>p.assetId===b&&p.parentName===t.parentName);return B.jsxs("div",{className:"w-31 rounded mb-[20px] sm:w-40",children:[B.jsxs("button",{onClick:()=>s(t),className:`w-31 h-31 rounded sm:w-40 sm:h-40 relative aspect-square overflow-hidden transition ${h?"border-amber-700":"border-transparent"}`,children:[M0.getImage(t)?B.jsx(vT,{item:t}):B.jsx(ST,{item:t}),B.jsx("div",{className:`absolute top-0 right-0 m-2 w-[30px] h-[30px] flex justify-center items-center
390
+ bg-[var(--background-grey)] rounded-2xl
391
+ border-none pointer-events-none
392
+ ${h?"bg-[var(--main-accent-color)]":""}`,children:B.jsx(MF,{})})]},t.assetId),B.jsxs("div",{className:"flex flex-col mt-3",children:[B.jsxs("span",{className:"font-normal mb-1",children:[t.metadata.label," "]}),B.jsxs("span",{className:"font-medium",children:[t.parentName," "]})]})]})},kA=({containerStyles:t="flex-1 min-h-0 overflow-y-auto p-[var(--padding)] sm:p-[var(--sm-padding)]",gridStyles:n="grid grid-cols-1 gap-[8px] sm:grid-cols-3",desktopColumnsCount:r=3})=>{const s=tt.useRef(null),b=Xt(s8),h=Xt(e4),p=tt.useMemo(()=>b.filter(ge=>{const le=h.Finish.length===0||h.Finish.some(Ce=>ge.metadata?.Finish===Ce||ge.metadata?.Material===Ce),Se=h.Color.length===0||ge.metadata?.Color&&h.Color.some(Ce=>ge.metadata?.Color?.split(",").map(Re=>Re.trim()).includes(Ce)),be=ge.metadata?.Look,ke=!h.Look||h.Look.length===0||h.Look.some(Ce=>be&&be.includes(Ce));return le&&Se&&ke}),[h,b]),T=typeof window<"u"?window.matchMedia("(min-width: 640px)").matches:!1,E=T?r:1,A=Math.ceil(p.length/E),M=T?300:200,L=AF({count:A,getScrollElement:()=>s.current,estimateSize:()=>M,overscan:24,measureElement:ge=>ge?.getBoundingClientRect().height}),R=L.getVirtualItems(),z=L.getTotalSize(),U=R[0]?.index??0,G=R[R.length-1]?.index??-1,J=U*E,F=Math.min((G+1)*E,p.length),ie=p.slice(J,F),te=R[0]?.start??0,Te=z-(R[R.length-1]?.end??0);return B.jsxs("div",{ref:s,className:t,children:[B.jsx("div",{style:{height:te},"aria-hidden":!0}),B.jsx("div",{className:n,children:ie.map((ge,le)=>{const Se=J+le,be=`${ge.metadata.label||Se}/${ge.parentName}`;return(Se+1)%E===0||Se===p.length-1?B.jsx("div",{ref:L.measureElement,children:B.jsx(u7,{val:ge})},be):B.jsx(u7,{val:ge},be)})}),B.jsx("div",{style:{height:Te},"aria-hidden":!0})]})},FA=({containerStyles:t,selectStyles:n})=>{const r=mn(),s=Xt(jD),b=Xt(e4),[h,p]=tt.useState([]),[T,E]=tt.useState([]);tt.useEffect(()=>{if(!s?.length)return;const M=s.map(L=>{const{Name:R,Label:z}=L.metadata||{};return{value:R,label:z,id:R}});p(M)},[s]);const A=(M,L)=>{if(L.length){const R=b7(L);if(R.length){const z=s.filter(J=>R.includes(J.metadata?.Label));E(R);const U=Y2.mapFiltersFromValues(z,b),G=Y2.getPositiveSelectedFilers(U);G.length&&G.forEach(J=>{const{filterName:F,filterKeys:ie}=J;r(r8({filterName:F,values:ie}))}),r(vS({attributes:z}))}else r(vS({attributes:s}))}else E([])};return B.jsxs("div",{className:t,children:[B.jsx("span",{children:"Product element"}),B.jsx(Rm,{options:h,values:T,onValueChange:M=>A("PanelElement",M),placeholder:"All product elements",className:n,dropdownWidth:"w-80"})]})},DF=()=>{const t=mn(),n=Xt(e4),r=Xt(s8),[s,b]=tt.useState([]);tt.useEffect(()=>{if(r?.length){const p=[...new Set(r.map(T=>T.metadata?.Finish||T.metadata?.Material))].filter(Boolean).map(T=>{const E=r.filter(A=>A.metadata?.Finish===T||A.metadata?.Material===T).length;return{value:T,label:T,count:E}});p?.length&&b(p)}},[r]);const h=(p,T)=>{t(r8({filterName:p,values:T}))};return B.jsx(Rm,{options:s,values:n.Finish,onValueChange:p=>h("Finish",p),placeholder:"Material",className:"max-w-[100px] sm:max-w-[auto] sm:min-w-[160px]",dropdownWidth:"w-80"})},LF=()=>{const t=mn(),n=Xt(e4),r=Xt(s8),[s,b]=tt.useState([]);tt.useEffect(()=>{if(r?.length){const p=[...new Set(r.map(T=>T?.metadata?.Color).filter(Boolean).map(T=>T.split(",").map(E=>E.trim())).flat())].map(T=>{const E=r.filter(A=>A.metadata?.Color&&A.metadata?.Color.split(",").map(M=>M.trim()).includes(T)).length;return{value:T,label:T,count:E}});p?.length&&b(p)}},[r]);const h=(p,T)=>{t(r8({filterName:p,values:T}))};return B.jsx(Rm,{options:s,values:n.Color,onValueChange:p=>h("Color",p),placeholder:"Color",className:"max-w-[100px] sm:max-w-[auto] sm:min-w-[160px]",dropdownWidth:"w-80"})},zF=()=>{const t=mn(),n=Xt(e4),r=Xt(s8),[s,b]=tt.useState([]);tt.useEffect(()=>{if(r?.length){const p=[...new Set(r.map(T=>T?.metadata?.Look).filter(Boolean).map(T=>T.split(",").map(E=>E.trim())).flat())].map(T=>{const E=r.filter(A=>A.metadata?.Look&&A.metadata?.Look.split(",").map(M=>M.trim()).includes(T)).length;return{value:T,label:T,count:E}});p?.length&&b(p)}},[r]);const h=(p,T)=>{t(r8({filterName:p,values:T}))};return B.jsx(Rm,{options:s,values:n.Look,onValueChange:p=>h("Look",p),placeholder:"Look",className:"max-w-[100px] sm:max-w-[auto] sm:min-w-[160px]",dropdownWidth:"w-80"})},UA=({containerStyles:t})=>B.jsxs("div",{className:t,children:[B.jsx(DF,{}),B.jsx(LF,{}),B.jsx(zF,{})]}),xF=()=>B.jsxs("div",{className:`flex flex-col justify-between items-center border-b border-[var(--border)]\r
393
+ sm:flex-row\r
394
+ `,children:[B.jsx(FA,{containerStyles:`flex justify-between items-center gap-2 p-[var(--sm-padding)] w-full text-xs\r
395
+ border-b border-[var(--border)]\r
396
+ sm:max-w-[360px] sm:text-sm sm:border-none\r
397
+ `,selectStyles:"min-w-[auto] max-w-[154px] sm:max-w-[auto] sm:min-w-[160px] font-normal"}),B.jsx(UA,{containerStyles:"flex justify-between items-center gap-1 p-[var(--sm-padding)] sm:gap-4"})]}),RF=()=>B.jsx("div",{className:["relative w-10 h-10 rounded-sm aspect-square overflow-hidden","border border-solid border-[var(--border)] bg-[var(--sidebar-b)] sm:w-16 sm:h-16"].join(" "),"aria-hidden":!0}),HA=({containerStyles:t="p-[var(--padding)] border-t border-solid border-[var(--border)] shrink-0 sm:p-[var(--sm-padding)]"})=>{const n=mn(),r=Xt(c8)??[],s=h=>{n(u8({selectedMaterial:h}))},b=Math.max(0,Qi-r.length);return B.jsxs("div",{className:t,children:[B.jsxs("div",{className:"flex justify-between items-center mb-3",children:[B.jsxs("div",{className:"relative w-30",children:[B.jsx("div",{className:"",children:"Swatches list"}),B.jsx("span",{className:"absolute top-0 right-[-6px] font-medium text-[var(--main-accent-color)] text-[8px] leading-none",children:"Free"})]}),B.jsxs("div",{children:[r.length,"/",Qi," Selected"]})]}),B.jsxs("div",{className:"flex flex-wrap gap-2",children:[r.map((h,p)=>B.jsxs("button",{onClick:()=>s(h),className:`relative w-10 h-10 bg-[var(--sidebar-b)] border border-solid border-[var(--border)] rounded-sm aspect-square overflow-hidden transition\r
398
+ sm:w-16 sm:h-16`,"aria-label":`Selected swatch ${h.name??h.assetId}`,title:"Click to remove",children:[M0.getImage(h)?B.jsx(vT,{item:h}):B.jsx(ST,{item:h}),B.jsx("div",{className:`absolute top-0 right-0 m-2 w-[16px] h-[16px] flex justify-center items-center\r
399
+ bg-[var(--background-grey)] rounded-2xl border-none pointer-events-none`,children:B.jsx(x0,{className:"w-2 h-2 stroke-[var(--svg-dark)]"})})]},`${h.metadata.label||p}/${h.parentName}`)),Array.from({length:b}).map((h,p)=>B.jsx(RF,{},`mock-${p}`))]})]})},NF=()=>{const t=mn(),n=Xt(c8)??[],r=Xt(lT),s=Xt(nT),b=()=>{const h=f8.getCartPreparedOption(n,s);if(r){const p={productId:r.productId,name:r.name,items:h};t(FD(p)),t(v7(!0)),t(E7(p))}};return B.jsxs("div",{className:`flex flex-col border-t border-[var(--border)]\r
400
+ sm:flex-row\r
401
+ `,children:[B.jsx(HA,{containerStyles:"flex flex-col p-[var(--sm-padding)] shrink-0 sm:w-[50%] sm:border-r sm:border-[var(--border)]"}),B.jsx("div",{className:"flex p-[var(--sm-padding)] border-t border-[var(--border)] sm:border-none sm:w-[50%] sm:justify-center sm:items-center",children:B.jsx(D7,{onClick:b,children:"ADD SWATCHES TO CART"})})]})},BF=({onSidebarToggle:t})=>{const n=mn(),r=Xt(lT),s=()=>{n(xD())};return B.jsxs("div",{className:"flex h-full flex-col",children:[B.jsxs("header",{className:"flex items-center justify-between p-[var(--sm-padding)] border-b border-[var(--border)]",children:[B.jsxs("div",{className:"flex items-center gap-2",children:[B.jsx("button",{className:"[&_svg_path]:stroke-[var(--main-accent-color)] cursor-pointer",onClick:s,children:B.jsx(yT,{})}),B.jsx("h2",{className:"m-0 text-base leading-[1.6] font-medium ",children:r?.name})]}),B.jsx("button",{onClick:t,className:`flex h-[30px] w-[30px] items-center justify-center rounded-full bg-[var(--background-grey)]\r
402
+ [&_svg_path]:stroke-[var(--svg-dark)]`,children:B.jsx(x0,{width:10,height:10})})]}),B.jsxs("div",{className:"flex min-h-0 flex-1 flex-col",children:[B.jsx(xF,{}),B.jsx(kA,{containerStyles:"flex-1 min-h-0 overflow-y-auto p-[var(--sm-padding)]",gridStyles:"grid grid-cols-2 gap-4 sm:grid-cols-6",desktopColumnsCount:6}),B.jsx(NF,{})]})]})},OF=({onSendData:t,onToggleSidebar:n})=>{const r=Xt(XD),s=Xt(lT),b=()=>{n()};return B.jsx(KD,{isOpen:!0,onClose:b,children:r?B.jsx(xx,{onSendData:t,onToggleSidebar:n}):s?B.jsx(BF,{onSidebarToggle:b}):B.jsx(dF,{onSidebarToggle:b})})},o8={SWATCH:"swatch",CART:"cart"},_F="_overlay_18vc6_1",IF="_panel_18vc6_10",wF="_enter_18vc6_28",GF="_exit_18vc6_32",G2={overlay:_F,panel:IF,enter:wF,exit:GF},PA=({children:t,isOpen:n,setIsOpen:r})=>{const s=tt.useRef(null),b=tt.useRef(null),h=()=>r(!1);return tt.useLayoutEffect(()=>{n&&typeof document<"u"&&(b.current=document.activeElement)},[n]),tt.useEffect(()=>{n?s.current?.focus():b.current?.focus?.()},[n]),tt.useEffect(()=>{if(!n)return;const p=T=>{T.key==="Escape"&&h()};return window.addEventListener("keydown",p),()=>window.removeEventListener("keydown",p)},[n]),tt.useEffect(()=>{if(!n)return;const p=document.documentElement,T=document.body,E=p.style.overflow,A=T.style.overflow;return p.style.overflow="hidden",T.style.overflow="hidden",()=>{p.style.overflow=E,T.style.overflow=A}},[n]),n?z0.createPortal(B.jsx("div",{className:fC(G2.overlay),onMouseDown:h,onTouchStart:h,children:B.jsx("div",{ref:s,tabIndex:-1,className:Cu(G2.panel,G2.right,n?G2.enter:G2.exit,"bg-[var(--sidebar-bg)]"),onMouseDown:p=>p.stopPropagation(),onTouchStart:p=>p.stopPropagation(),children:t})}),document.body):null};class kF{static getCartPreparedOption(n){return n?.length?n.map(r=>({...r,count:1})):[]}}const FF=({isOpen:t,onToggleSidebar:n,onSetActiveTab:r})=>{const s=mn(),b=Xt(c8)??[],h=()=>{const p=kF.getCartPreparedOption(b);p&&s(OD(p)),r(o8.CART)};return B.jsxs(PA,{isOpen:t,setIsOpen:n,children:[B.jsxs("header",{className:"flex p-[var(--padding)] justify-between items-center border-b border-solid border-[var(--border)] sm:p-[var(--sm-padding)]",children:[B.jsx("h2",{className:"m-0 text-[16px] leading-[1.6] font-medium",children:"Order free swatches"}),B.jsx("button",{className:`flex justify-center items-center w-[30px] h-[30px] bg-[var(--background-grey)]
403
+ border-none cursor-pointer rounded-full
404
+ [&_svg_path]:stroke-[var(--svg-dark)]`,onClick:n,children:B.jsx(x0,{width:10,height:10})})]}),B.jsxs("div",{className:"flex flex-col h-full min-h-0",children:[B.jsx(FA,{containerStyles:"flex justify-between items-center shrink-0 p-[var(--padding)] border-b border-solid border-[var(--border)] sm:p-[var(--sm-padding)]",selectStyles:"min-w-[auto] max-w-[154px] sm:max-w-[auto] sm:min-w-[250px]"}),B.jsx(UA,{containerStyles:"shrink-0 flex justify-between items-center gap-2 p-[var(--padding)] border-b border-solid border-[var(--border)] sm:p-[var(--sm-padding)]"}),B.jsx(kA,{}),B.jsx(HA,{}),B.jsx("div",{className:"p-[var(--padding)] border-t border-solid border-[var(--border)] shrink-0",children:B.jsx("button",{className:"w-full bg-[var(--main-accent-color)] text-white py-3 rounded-full font-bold cursor-pointer",onClick:h,children:"ADD SWATCHES TO CART"})})]})]})},t3=t=>t.cart.items,WA=fi.createSelector(t3,t=>t.reduce((n,r)=>n+r.count,0)),UF=fi.createSelector(WA,t=>Math.max(0,Qi-t)),HF=fi.createSelector(UF,t=>t>0),PF=({onSetActiveTab:t,onToggleSidebar:n})=>{const r=Xt(WA);return B.jsxs("header",{className:"flex p-[var(--padding)] justify-between items-center border-b border-solid border-[var(--border)] sm:p-[var(--sm-padding)]",children:[B.jsxs("div",{className:"flex items-center flex-row gap-[4px]",children:[B.jsxs("div",{className:"flex items-center gap-2",children:[B.jsx("button",{className:"[&_svg_path]:stroke-[var(--main-accent-color)] cursor-pointer",onClick:()=>t&&t(o8.SWATCH),children:B.jsx(yT,{})}),B.jsx("h2",{className:"m-0 text-base leading-[1.6] font-medium ",children:"Your cart"})]}),r>=Qi?B.jsxs(B.Fragment,{children:[B.jsxs("span",{className:"text-[var(--main-accent-color)] hidden text-xs sm:block",children:["(",Qi,") You reached maximum amount of swatches"]}),B.jsxs("span",{className:"text-[var(--main-accent-color)] block sm:hidden",children:["(",Qi,") Max"]})]}):null]}),B.jsx("button",{className:`flex justify-center items-center w-[30px] h-[30px] bg-[var(--background-grey)]\r
405
+ border-none cursor-pointer rounded-full\r
406
+ [&_svg_path]:stroke-[var(--svg-dark)]`,onClick:n,children:B.jsx(x0,{width:10,height:10})})]})},WF=()=>{const t=mn(),n=Xt(t3)??[],r=Xt(HF),s=p=>{t(_D({selectedMaterial:p})),t(u8({selectedMaterial:p}))},b=p=>{t(ID({selectedMaterial:p}))},h=p=>{t(wD({selectedMaterial:p}))};return B.jsx("ul",{className:"flex flex-col gap-3 flex-1 min-h-0 overflow-y-auto py-[var(--padding)] sm:py-[var(--sm-padding)] sm:gap-5",children:n?.map(p=>B.jsx(AC,{item:p,canInc:r,onDelete:s,onIncrement:b,onDecrement:h},`${p.assetId}/${p.parentName}`))})},VF=({isOpen:t,onToggleSidebar:n,onSetActiveTab:r,onSendData:s})=>{const b=Xt(t3);return B.jsxs(PA,{isOpen:t,setIsOpen:n,children:[B.jsx(PF,{onSetActiveTab:r,onToggleSidebar:n}),B.jsxs("div",{className:"flex flex-col h-full min-h-0",children:[B.jsx(WF,{}),B.jsx(M7,{}),B.jsx("div",{className:"p-[var(--padding)] border-t border-solid border-[var(--border)] shrink-0",children:B.jsx("button",{className:"w-full bg-[var(--main-accent-color)] text-white py-3 rounded-full font-bold cursor-pointer",onClick:()=>s(b),children:"GO TO SHIPPING"})})]})]})},qF=({isOpen:t,uiDataType:n,data:r,onToggleSidebar:s,onSendData:b})=>{const h=mn(),[p,T]=tt.useState(o8.SWATCH);tt.useEffect(()=>{if(r){if(n===Tu.UI){const A=wA.getTransformedData({dataType:Tu.UI,data:r});A&&h(T7(A))}}else throw new Error("SwatchCart-module: Attributes are important")},[r]);const E=A=>{T(A)};return B.jsx(B.Fragment,{children:p===o8.SWATCH?B.jsx(FF,{isOpen:t,onToggleSidebar:s,onSetActiveTab:E}):B.jsx(VF,{isOpen:t,onToggleSidebar:s,onSetActiveTab:E,onSendData:b})})},jF=fi.combineReducers({swatches:g7,cart:y7,multiProductCart:A7});let N6=null;function YF(){return fi.configureStore({reducer:jF,devTools:!1,middleware:t=>t({thunk:!0})})}const QF=()=>(N6||(N6=YF()),N6);$2.useDispatch.withTypes();$2.useSelector.withTypes();function VA({children:t}){return B.jsx($2.Provider,{store:QF(),children:t})}const XF=({isOpen:t,uiDataType:n,data:r,onToggleSidebar:s,onSendData:b})=>B.jsx(VA,{children:t?B.jsxs(B.Fragment,{children:[n===Tu.DATA_ALL_PRODUCT?B.jsx(OF,{onSendData:b,onToggleSidebar:s}):null,n===Tu.UI?B.jsx(qF,{isOpen:t,uiDataType:"UI",data:r,onToggleSidebar:s,onSendData:b}):null]}):null});function KF(t){const n=r=>B.jsx(VA,{children:B.jsx(t,{...r})});return n.displayName=`withStore(${t.displayName||t.name||"Component"})`,n}const qA=KF(XF);function ZF(t,n){const r=vD.createRoot(t);return r.render(tt.createElement(qA,n)),()=>r.unmount()}exports.SwatchModule=qA;exports.mountSwatchModule=ZF;
407
+ //# sourceMappingURL=main.cjs.map