@oliasoft-open-source/charts-library 5.2.0 → 5.2.1-beta-2

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 (172) hide show
  1. package/dist/assets/Color-YHDXOIA2-BH-AgNhy.js +1 -0
  2. package/dist/assets/DocsRenderer-CFRXHY34-Dx3M1XwG.js +1 -0
  3. package/dist/assets/bar-chart-const-DT-Qreyz.js +1 -0
  4. package/dist/assets/bar-chart.stories-BGngamFz.js +145 -0
  5. package/dist/assets/chunk-2PTXLE6R-BSsKYLj_.js +1 -0
  6. package/dist/assets/chunk-H6MOWX77-Ds8Hqw1O.js +1 -0
  7. package/dist/assets/chunk-NUUEMKO5-2vSX1C-f.js +56 -0
  8. package/dist/assets/chunk-PRSJUHPQ-ClaE-lMK.js +2 -0
  9. package/dist/assets/chunk-XP5HYGXS-DyEAuB1b.js +1 -0
  10. package/dist/assets/client-mhWrpqNE.js +1 -0
  11. package/dist/assets/components-BTILpkCb.js +1 -0
  12. package/dist/assets/components-BUMWgrws.js +534 -0
  13. package/dist/assets/docs-tools-C8juKH9v.js +8 -0
  14. package/dist/assets/entry-preview-D8bkngdo.js +2 -0
  15. package/dist/assets/entry-preview-docs-DkpGzTK0.js +48 -0
  16. package/dist/assets/fast-deep-equal-GJSfJzsC.js +1 -0
  17. package/dist/assets/get-custom-legend-plugin-example-DlEN0LEe.js +1 -0
  18. package/dist/assets/get-draggableData-DyVot8Zl.js +2 -0
  19. package/dist/assets/iframe-BC9QdfhZ.js +226 -0
  20. package/dist/assets/jsx-runtime-BNVfsWEC.js +1 -0
  21. package/dist/assets/legend-Be3VjYcC.js +1266 -0
  22. package/dist/assets/legend-context-Bh42wyEh.js +47 -0
  23. package/dist/assets/line-chart-B0hmsdC3.js +1 -0
  24. package/dist/assets/line-chart.stories-tGGdFPhQ.js +1162 -0
  25. package/dist/assets/line-chart.test-case.stories-Cv2J7QkQ.js +430 -0
  26. package/dist/assets/pie-chart.stories-Cmh7O_JI.js +45 -0
  27. package/dist/assets/preview-Ba4CwQIJ.js +1 -0
  28. package/dist/assets/preview-Dihi2lh7.js +3 -0
  29. package/dist/assets/preview-xQjOlnQG.js +1 -0
  30. package/dist/assets/react-18-D9p-ZSzh.js +1 -0
  31. package/dist/assets/react-B_00WdD4.js +1 -0
  32. package/dist/assets/react-CJCPsloc.js +1 -0
  33. package/dist/assets/react-dom-BggwCd6n.js +8 -0
  34. package/dist/assets/react-lj49T_jL.js +1 -0
  35. package/dist/assets/scatter-chart.stories-Ch-mWz43.js +41 -0
  36. package/dist/assets/test-utils-D1bSFP61.js +1 -0
  37. package/dist/bar-chart/bar-chart-const.d.ts +2 -0
  38. package/dist/bar-chart/bar-chart-default-props.d.ts +2 -0
  39. package/dist/bar-chart/bar-chart.d.ts +3 -0
  40. package/dist/bar-chart/bar-chart.interface.d.ts +96 -0
  41. package/dist/bar-chart/utils/get-bar-chart-data-labels.d.ts +10 -0
  42. package/dist/bar-chart/utils/get-bar-chart-scales.d.ts +3 -0
  43. package/dist/bar-chart/utils/get-bar-chart-tooltips.d.ts +6 -0
  44. package/dist/bar-chart/utils/use-bar-chart-config.d.ts +13 -0
  45. package/dist/bar-chart/utils/use-bar-chart-options.d.ts +55 -0
  46. package/dist/common/common.interface.d.ts +210 -0
  47. package/dist/common/controls-portal.d.ts +7 -0
  48. package/dist/common/enums.d.ts +10 -0
  49. package/dist/common/helpers/chart-border-plugin.d.ts +16 -0
  50. package/dist/common/helpers/chart-consts.d.ts +39 -0
  51. package/dist/common/helpers/chart-utils.d.ts +86 -0
  52. package/dist/common/helpers/container.d.ts +18 -0
  53. package/dist/common/helpers/custom-format-number.d.ts +1 -0
  54. package/dist/common/helpers/download-pgn.d.ts +3 -0
  55. package/dist/common/helpers/enums.d.ts +80 -0
  56. package/dist/common/helpers/get-chart-annotation.d.ts +91 -0
  57. package/dist/common/helpers/get-custom-legend-plugin-example.d.ts +8 -0
  58. package/dist/common/helpers/get-draggableData.d.ts +18 -0
  59. package/dist/common/helpers/range/estimate-data-series-have-close-values.d.ts +8 -0
  60. package/dist/common/helpers/range/range.d.ts +33 -0
  61. package/dist/common/helpers/text.d.ts +1 -0
  62. package/dist/common/helpers/to-annotation.d.ts +4 -0
  63. package/dist/common/hooks/use-generated-labels.d.ts +4 -0
  64. package/dist/common/hooks/use-legend-state.d.ts +28 -0
  65. package/dist/common/hooks/use-legend.d.ts +4 -0
  66. package/dist/common/hooks/use-reset.d.ts +3 -0
  67. package/dist/common/hooks/use-update-annotations.d.ts +7 -0
  68. package/dist/common/legend-component/legend-dropzone.d.ts +3 -0
  69. package/dist/common/legend-component/legend-interface.d.ts +48 -0
  70. package/dist/common/legend-component/legend-item/LegendItemLine.d.ts +5 -0
  71. package/dist/common/legend-component/legend-item/legend-item.d.ts +3 -0
  72. package/dist/common/legend-component/legend-panel.d.ts +3 -0
  73. package/dist/common/legend-component/legend.d.ts +3 -0
  74. package/dist/common/legend-component/state/legend-action-types.d.ts +3 -0
  75. package/dist/common/legend-component/state/legend-context.d.ts +14 -0
  76. package/dist/common/legend-component/state/legend-state-reducer.d.ts +30 -0
  77. package/dist/common/legend-component/utils/create-style-object.d.ts +27 -0
  78. package/dist/common/legend-component/utils/get-generated-labels.d.ts +2 -0
  79. package/dist/common/plugins/annotation-dragger-plugin/annotation-dragger-plugin.d.ts +15 -0
  80. package/dist/common/plugins/annotation-dragger-plugin/enums.d.ts +20 -0
  81. package/dist/common/plugins/annotation-dragger-plugin/event-helpers.d.ts +6 -0
  82. package/dist/common/plugins/annotation-dragger-plugin/helpers.d.ts +53 -0
  83. package/dist/common/plugins/annotation-dragger-plugin/point-annotation-label.d.ts +5 -0
  84. package/dist/common/plugins/ellipsis-annotation-plugin/compute-ellipse-geometry.d.ts +9 -0
  85. package/dist/common/plugins/ellipsis-annotation-plugin/ellipsis-annotation-plugin.d.ts +18 -0
  86. package/dist/common/plugins/gradient-background-plugin/enums.d.ts +10 -0
  87. package/dist/common/plugins/gradient-background-plugin/gradient-background-plugin.d.ts +2 -0
  88. package/dist/favicon.svg +1 -0
  89. package/dist/iframe.html +666 -0
  90. package/dist/index.html +149 -0
  91. package/dist/index.js +4298 -38749
  92. package/dist/index.json +1 -0
  93. package/dist/line-chart/constants/default-translations.d.ts +25 -0
  94. package/dist/line-chart/constants/line-chart-consts.d.ts +13 -0
  95. package/dist/line-chart/controls/axes-options/axes-options-interfaces.d.ts +57 -0
  96. package/dist/line-chart/controls/axes-options/axes-options.d.ts +6 -0
  97. package/dist/line-chart/controls/axes-options/axes-validation.d.ts +8 -0
  98. package/dist/line-chart/controls/controls-interfaces.d.ts +20 -0
  99. package/dist/line-chart/controls/controls.d.ts +3 -0
  100. package/dist/line-chart/controls/drag-options-interfaces.d.ts +14 -0
  101. package/dist/line-chart/controls/drag-options.d.ts +23 -0
  102. package/dist/line-chart/controls/line-options.d.ts +19 -0
  103. package/dist/line-chart/hooks/use-chart-functions.d.ts +33 -0
  104. package/dist/line-chart/hooks/use-chart-options.d.ts +16 -0
  105. package/dist/line-chart/hooks/use-chart-plugins.d.ts +7 -0
  106. package/dist/line-chart/hooks/use-chart-state.d.ts +12 -0
  107. package/dist/line-chart/hooks/use-toggle-handler.d.ts +12 -0
  108. package/dist/line-chart/initialize/config.d.ts +12 -0
  109. package/dist/line-chart/initialize/initialize-line-chart.d.ts +12 -0
  110. package/dist/line-chart/line-chart-get-default-props.d.ts +2 -0
  111. package/dist/line-chart/line-chart.d.ts +3 -0
  112. package/dist/line-chart/line-chart.interface.d.ts +150 -0
  113. package/dist/line-chart/plugins/chart-area-text-plugin.d.ts +17 -0
  114. package/dist/line-chart/plugins/line-chart.minor-gridlines-plugin.d.ts +8 -0
  115. package/dist/line-chart/plugins/plugin-constants.d.ts +11 -0
  116. package/dist/line-chart/plugins/plugins.interface.d.ts +9 -0
  117. package/dist/line-chart/state/action-types.d.ts +12 -0
  118. package/dist/line-chart/state/helpers.d.ts +13 -0
  119. package/dist/line-chart/state/initial-state.d.ts +11 -0
  120. package/dist/line-chart/state/line-chart-reducer.d.ts +2 -0
  121. package/dist/line-chart/state/manage-state-in-local-storage.d.ts +15 -0
  122. package/dist/line-chart/state/state.interfaces.d.ts +26 -0
  123. package/dist/line-chart/utils/axis-formatting/axis-formatting.d.ts +2 -0
  124. package/dist/line-chart/utils/axis-scales/axis-scales.d.ts +9 -0
  125. package/dist/line-chart/utils/check-custom-option/check-custom-option.d.ts +12 -0
  126. package/dist/line-chart/utils/datalabels-alignment/datalabels-alignment.interface.d.ts +20 -0
  127. package/dist/line-chart/utils/datalabels-alignment/get-alignment-condition.d.ts +8 -0
  128. package/dist/line-chart/utils/datalabels-alignment/get-alignment-data.d.ts +11 -0
  129. package/dist/line-chart/utils/datalabels-alignment/get-datalabels-position.d.ts +6 -0
  130. package/dist/line-chart/utils/enums.d.ts +4 -0
  131. package/dist/line-chart/utils/generate-line-chart-datasets.d.ts +8 -0
  132. package/dist/line-chart/utils/get-annotations-data.d.ts +1 -0
  133. package/dist/line-chart/utils/get-axes-data-from-metasets.d.ts +1 -0
  134. package/dist/line-chart/utils/get-axes-ranges-from-chart.d.ts +9 -0
  135. package/dist/line-chart/utils/get-axis-range-by-type.d.ts +10 -0
  136. package/dist/line-chart/utils/get-generated-labels.d.ts +2 -0
  137. package/dist/line-chart/utils/get-line-chart-data-labels.d.ts +16 -0
  138. package/dist/line-chart/utils/get-line-chart-scales.d.ts +4 -0
  139. package/dist/line-chart/utils/get-line-chart-tooltips.d.ts +34 -0
  140. package/dist/line-chart/utils/line-chart-utils.d.ts +24 -0
  141. package/dist/line-chart/utils/translations/get-translations.d.ts +8 -0
  142. package/dist/nunito-sans-bold-italic.woff2 +0 -0
  143. package/dist/nunito-sans-bold.woff2 +0 -0
  144. package/dist/nunito-sans-italic.woff2 +0 -0
  145. package/dist/nunito-sans-regular.woff2 +0 -0
  146. package/dist/pie-chart/pie-chart-defalut-props.interface.d.ts +50 -0
  147. package/dist/pie-chart/pie-chart-get-default-props.d.ts +3 -0
  148. package/dist/pie-chart/pie-chart.d.ts +3 -0
  149. package/dist/pie-chart/pie-chart.interface.d.ts +70 -0
  150. package/dist/pie-chart/use-pie-chart-config.d.ts +42 -0
  151. package/dist/project.json +1 -0
  152. package/dist/sb-addons/actions-1/manager-bundle.js +3 -0
  153. package/dist/sb-addons/docs-2/manager-bundle.js +242 -0
  154. package/dist/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js +3 -0
  155. package/dist/sb-addons/storybook-dark-mode-esm-preset-3/manager-bundle.js +5 -0
  156. package/dist/sb-common-assets/favicon.svg +1 -0
  157. package/dist/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
  158. package/dist/sb-common-assets/nunito-sans-bold.woff2 +0 -0
  159. package/dist/sb-common-assets/nunito-sans-italic.woff2 +0 -0
  160. package/dist/sb-common-assets/nunito-sans-regular.woff2 +0 -0
  161. package/dist/sb-manager/globals-module-info.js +1051 -0
  162. package/dist/sb-manager/globals-runtime.js +41591 -0
  163. package/dist/sb-manager/globals.js +48 -0
  164. package/dist/sb-manager/runtime.js +12048 -0
  165. package/dist/scatter-chart/hooks/use-scatter-chart-config.d.ts +113 -0
  166. package/dist/scatter-chart/scatter-chart-default-props.interface.d.ts +71 -0
  167. package/dist/scatter-chart/scatter-chart-get-default-props.d.ts +3 -0
  168. package/dist/scatter-chart/scatter-chart.d.ts +3 -0
  169. package/dist/scatter-chart/scatter-chart.interface.d.ts +81 -0
  170. package/dist/scatter-chart/utils/get-scales-config.d.ts +49 -0
  171. package/dist/scatter-chart/utils/get-tooltip-config.d.ts +21 -0
  172. package/package.json +1 -1
@@ -0,0 +1,534 @@
1
+ import{n as e,s as t,u as n}from"./iframe-BC9QdfhZ.js";import{t as r}from"./react-CJCPsloc.js";import{t as i}from"./jsx-runtime-BNVfsWEC.js";import{t as a}from"./react-dom-BggwCd6n.js";var o=n(r(),1),s=Object.create,c=Object.defineProperty,l=Object.getOwnPropertyDescriptor,u=Object.getOwnPropertyNames,d=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty,p=(e,t)=>c(e,`name`,{value:t,configurable:!0}),m=(e=>typeof t<`u`?t:typeof Proxy<`u`?new Proxy(e,{get:(e,n)=>(typeof t<`u`?t:e)[n]}):e)(function(e){if(typeof t<`u`)return t.apply(this,arguments);throw Error(`Dynamic require of "`+e+`" is not supported`)}),h=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),g=(e,t,n,r)=>{if(t&&typeof t==`object`||typeof t==`function`)for(let i of u(t))!f.call(e,i)&&i!==n&&c(e,i,{get:()=>t[i],enumerable:!(r=l(t,i))||r.enumerable});return e},_=(e,t,n)=>(n=e==null?{}:s(d(e)),g(t||!e||!e.__esModule?c(n,`default`,{value:e,enumerable:!0}):n,e)),v=h(e=>{(function(){var t=typeof Symbol==`function`&&Symbol.for,n=t?Symbol.for(`react.element`):60103,r=t?Symbol.for(`react.portal`):60106,i=t?Symbol.for(`react.fragment`):60107,a=t?Symbol.for(`react.strict_mode`):60108,o=t?Symbol.for(`react.profiler`):60114,s=t?Symbol.for(`react.provider`):60109,c=t?Symbol.for(`react.context`):60110,l=t?Symbol.for(`react.async_mode`):60111,u=t?Symbol.for(`react.concurrent_mode`):60111,d=t?Symbol.for(`react.forward_ref`):60112,f=t?Symbol.for(`react.suspense`):60113,m=t?Symbol.for(`react.suspense_list`):60120,h=t?Symbol.for(`react.memo`):60115,g=t?Symbol.for(`react.lazy`):60116,_=t?Symbol.for(`react.block`):60121,v=t?Symbol.for(`react.fundamental`):60117,y=t?Symbol.for(`react.responder`):60118,b=t?Symbol.for(`react.scope`):60119;function x(e){return typeof e==`string`||typeof e==`function`||e===i||e===u||e===o||e===a||e===f||e===m||typeof e==`object`&&!!e&&(e.$$typeof===g||e.$$typeof===h||e.$$typeof===s||e.$$typeof===c||e.$$typeof===d||e.$$typeof===v||e.$$typeof===y||e.$$typeof===b||e.$$typeof===_)}p(x,`isValidElementType`);function S(e){if(typeof e==`object`&&e){var t=e.$$typeof;switch(t){case n:var p=e.type;switch(p){case l:case u:case i:case o:case a:case f:return p;default:var m=p&&p.$$typeof;switch(m){case c:case d:case g:case h:case s:return m;default:return t}}case r:return t}}}p(S,`typeOf`);var C=l,w=u,T=c,E=s,D=n,O=d,k=i,ee=g,A=h,j=r,te=o,ne=a,re=f,ie=!1;function ae(e){return ie||(ie=!0,console.warn(`The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.`)),oe(e)||S(e)===l}p(ae,`isAsyncMode`);function oe(e){return S(e)===u}p(oe,`isConcurrentMode`);function se(e){return S(e)===c}p(se,`isContextConsumer`);function ce(e){return S(e)===s}p(ce,`isContextProvider`);function le(e){return typeof e==`object`&&!!e&&e.$$typeof===n}p(le,`isElement`);function M(e){return S(e)===d}p(M,`isForwardRef`);function ue(e){return S(e)===i}p(ue,`isFragment`);function N(e){return S(e)===g}p(N,`isLazy`);function de(e){return S(e)===h}p(de,`isMemo`);function P(e){return S(e)===r}p(P,`isPortal`);function fe(e){return S(e)===o}p(fe,`isProfiler`);function pe(e){return S(e)===a}p(pe,`isStrictMode`);function me(e){return S(e)===f}p(me,`isSuspense`),e.AsyncMode=C,e.ConcurrentMode=w,e.ContextConsumer=T,e.ContextProvider=E,e.Element=D,e.ForwardRef=O,e.Fragment=k,e.Lazy=ee,e.Memo=A,e.Portal=j,e.Profiler=te,e.StrictMode=ne,e.Suspense=re,e.isAsyncMode=ae,e.isConcurrentMode=oe,e.isContextConsumer=se,e.isContextProvider=ce,e.isElement=le,e.isForwardRef=M,e.isFragment=ue,e.isLazy=N,e.isMemo=de,e.isPortal=P,e.isProfiler=fe,e.isStrictMode=pe,e.isSuspense=me,e.isValidElementType=x,e.typeOf=S})()}),y=h((e,t)=>{t.exports=v()}),b=h((e,t)=>{var n=y(),r={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},i={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},a={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},o={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},s={};s[n.ForwardRef]=a,s[n.Memo]=o;function c(e){return n.isMemo(e)?o:s[e.$$typeof]||r}p(c,`getStatics`);var l=Object.defineProperty,u=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,f=Object.getOwnPropertyDescriptor,m=Object.getPrototypeOf,h=Object.prototype;function g(e,t,n){if(typeof t!=`string`){if(h){var r=m(t);r&&r!==h&&g(e,r,n)}var a=u(t);d&&(a=a.concat(d(t)));for(var o=c(e),s=c(t),p=0;p<a.length;++p){var _=a[p];if(!i[_]&&!(n&&n[_])&&!(s&&s[_])&&!(o&&o[_])){var v=f(t,_);try{l(e,_,v)}catch{}}}}return e}p(g,`hoistNonReactStatics`),t.exports=g}),x=h((e,t)=>{(function(n){if(typeof e==`object`&&typeof t<`u`)t.exports=n();else if(typeof define==`function`&&define.amd)define([],n);else{var r=typeof window<`u`?window:typeof global<`u`?global:typeof self<`u`?self:this;r.memoizerific=n()}})(function(){return p(function e(t,n,r){function i(o,s){if(!n[o]){if(!t[o]){var c=typeof m==`function`&&m;if(!s&&c)return c(o,!0);if(a)return a(o,!0);var l=Error(`Cannot find module '`+o+`'`);throw l.code=`MODULE_NOT_FOUND`,l}var u=n[o]={exports:{}};t[o][0].call(u.exports,function(e){var n=t[o][1][e];return i(n||e)},u,u.exports,e,t,n,r)}return n[o].exports}p(i,`s`);for(var a=typeof m==`function`&&m,o=0;o<r.length;o++)i(r[o]);return i},`e`)({1:[function(e,t,n){t.exports=function(t){return typeof Map!=`function`||t?new(e(`./similar`)):new Map}},{"./similar":2}],2:[function(e,t,n){function r(){return this.list=[],this.lastItem=void 0,this.size=0,this}p(r,`Similar`),r.prototype.get=function(e){var t;if(this.lastItem&&this.isEqual(this.lastItem.key,e))return this.lastItem.val;if(t=this.indexOf(e),t>=0)return this.lastItem=this.list[t],this.list[t].val},r.prototype.set=function(e,t){var n;return this.lastItem&&this.isEqual(this.lastItem.key,e)?(this.lastItem.val=t,this):(n=this.indexOf(e),n>=0?(this.lastItem=this.list[n],this.list[n].val=t,this):(this.lastItem={key:e,val:t},this.list.push(this.lastItem),this.size++,this))},r.prototype.delete=function(e){var t;if(this.lastItem&&this.isEqual(this.lastItem.key,e)&&(this.lastItem=void 0),t=this.indexOf(e),t>=0)return this.size--,this.list.splice(t,1)[0]},r.prototype.has=function(e){var t;return this.lastItem&&this.isEqual(this.lastItem.key,e)?!0:(t=this.indexOf(e),t>=0?(this.lastItem=this.list[t],!0):!1)},r.prototype.forEach=function(e,t){var n;for(n=0;n<this.size;n++)e.call(t||this,this.list[n].val,this.list[n].key,this)},r.prototype.indexOf=function(e){var t;for(t=0;t<this.size;t++)if(this.isEqual(this.list[t].key,e))return t;return-1},r.prototype.isEqual=function(e,t){return e===t||e!==e&&t!==t},t.exports=r},{}],3:[function(e,t,n){var r=e(`map-or-similar`);t.exports=function(e){var t=new r(!1),n=[];return function(o){var s=p(function(){var c=t,l,u,d=arguments.length-1,f=Array(d+1),p=!0,m;if((s.numArgs||s.numArgs===0)&&s.numArgs!==d+1)throw Error(`Memoizerific functions should always be called with the same number of arguments`);for(m=0;m<d;m++){if(f[m]={cacheItem:c,arg:arguments[m]},c.has(arguments[m])){c=c.get(arguments[m]);continue}p=!1,l=new r(!1),c.set(arguments[m],l),c=l}return p&&(c.has(arguments[d])?u=c.get(arguments[d]):p=!1),p||(u=o.apply(null,arguments),c.set(arguments[d],u)),e>0&&(f[d]={cacheItem:c,arg:arguments[d]},p?i(n,f):n.push(f),n.length>e&&a(n.shift())),s.wasMemoized=p,s.numArgs=d+1,u},`memoizerific`);return s.limit=e,s.wasMemoized=!1,s.cache=t,s.lru=n,s}};function i(e,t){var n=e.length,r=t.length,i,a,s;for(a=0;a<n;a++){for(i=!0,s=0;s<r;s++)if(!o(e[a][s].arg,t[s].arg)){i=!1;break}if(i)break}e.push(e.splice(a,1)[0])}p(i,`moveToMostRecentLru`);function a(e){var t=e.length,n=e[t-1],r,i;for(n.cacheItem.delete(n.arg),i=t-2;i>=0&&(n=e[i],r=n.cacheItem.get(n.arg),!r||!r.size);i--)n.cacheItem.delete(n.arg)}p(a,`removeCachedResult`);function o(e,t){return e===t||e!==e&&t!==t}p(o,`isEqual`)},{"map-or-similar":1}]},{},[3])(3)})});function S(){return S=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)({}).hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},S.apply(null,arguments)}p(S,`_extends`);var C=!1;function w(e){if(e.sheet)return e.sheet;for(var t=0;t<document.styleSheets.length;t++)if(document.styleSheets[t].ownerNode===e)return document.styleSheets[t]}p(w,`sheetForTag`);function T(e){var t=document.createElement(`style`);return t.setAttribute(`data-emotion`,e.key),e.nonce!==void 0&&t.setAttribute(`nonce`,e.nonce),t.appendChild(document.createTextNode(``)),t.setAttribute(`data-s`,``),t}p(T,`createStyleElement`);var E=function(){function e(e){var t=this;this._insertTag=function(e){var n=t.tags.length===0?t.insertionPoint?t.insertionPoint.nextSibling:t.prepend?t.container.firstChild:t.before:t.tags[t.tags.length-1].nextSibling;t.container.insertBefore(e,n),t.tags.push(e)},this.isSpeedy=e.speedy===void 0?!C:e.speedy,this.tags=[],this.ctr=0,this.nonce=e.nonce,this.key=e.key,this.container=e.container,this.prepend=e.prepend,this.insertionPoint=e.insertionPoint,this.before=null}p(e,`StyleSheet`);var t=e.prototype;return t.hydrate=p(function(e){e.forEach(this._insertTag)},`hydrate`),t.insert=p(function(e){this.ctr%(this.isSpeedy?65e3:1)==0&&this._insertTag(T(this));var t=this.tags[this.tags.length-1];if(this.isSpeedy){var n=w(t);try{n.insertRule(e,n.cssRules.length)}catch{}}else t.appendChild(document.createTextNode(e));this.ctr++},`insert`),t.flush=p(function(){this.tags.forEach(function(e){return e.parentNode?.removeChild(e)}),this.tags=[],this.ctr=0},`flush`),e}(),D=`-ms-`,O=`-moz-`,k=`-webkit-`,ee=`comm`,A=`rule`,j=`decl`,te=`@import`,ne=`@keyframes`,re=`@layer`,ie=Math.abs,ae=String.fromCharCode,oe=Object.assign;function se(e,t){return N(e,0)^45?(((t<<2^N(e,0))<<2^N(e,1))<<2^N(e,2))<<2^N(e,3):0}p(se,`hash`);function ce(e){return e.trim()}p(ce,`trim`);function le(e,t){return(e=t.exec(e))?e[0]:e}p(le,`match`);function M(e,t,n){return e.replace(t,n)}p(M,`replace`);function ue(e,t){return e.indexOf(t)}p(ue,`indexof`);function N(e,t){return e.charCodeAt(t)|0}p(N,`charat`);function de(e,t,n){return e.slice(t,n)}p(de,`substr`);function P(e){return e.length}p(P,`strlen`);function fe(e){return e.length}p(fe,`sizeof`);function pe(e,t){return t.push(e),e}p(pe,`append`);function me(e,t){return e.map(t).join(``)}p(me,`combine`);var he=1,ge=1,_e=0,F=0,I=0,ve=``;function L(e,t,n,r,i,a,o){return{value:e,root:t,parent:n,type:r,props:i,children:a,line:he,column:ge,length:o,return:``}}p(L,`node`);function ye(e,t){return oe(L(``,null,null,``,null,null,0),e,{length:-e.length},t)}p(ye,`copy`);function R(){return I}p(R,`char`);function z(){return I=F>0?N(ve,--F):0,ge--,I===10&&(ge=1,he--),I}p(z,`prev`);function B(){return I=F<_e?N(ve,F++):0,ge++,I===10&&(ge=1,he++),I}p(B,`next`);function be(){return N(ve,F)}p(be,`peek`);function xe(){return F}p(xe,`caret`);function Se(e,t){return de(ve,e,t)}p(Se,`slice`);function Ce(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}p(Ce,`token`);function we(e){return he=ge=1,_e=P(ve=e),F=0,[]}p(we,`alloc`);function Te(e){return ve=``,e}p(Te,`dealloc`);function Ee(e){return ce(Se(F-1,ke(e===91?e+2:e===40?e+1:e)))}p(Ee,`delimit`);function De(e){for(;(I=be())&&I<33;)B();return Ce(e)>2||Ce(I)>3?``:` `}p(De,`whitespace`);function Oe(e,t){for(;--t&&B()&&!(I<48||I>102||I>57&&I<65||I>70&&I<97););return Se(e,xe()+(t<6&&be()==32&&B()==32))}p(Oe,`escaping`);function ke(e){for(;B();)switch(I){case e:return F;case 34:case 39:e!==34&&e!==39&&ke(I);break;case 40:e===41&&ke(e);break;case 92:B();break}return F}p(ke,`delimiter`);function V(e,t){for(;B()&&e+I!==57&&!(e+I===84&&be()===47););return`/*`+Se(t,F-1)+`*`+ae(e===47?e:B())}p(V,`commenter`);function Ae(e){for(;!Ce(be());)B();return Se(e,F)}p(Ae,`identifier`);function je(e){return Te(Me(``,null,null,null,[``],e=we(e),0,[0],e))}p(je,`compile`);function Me(e,t,n,r,i,a,o,s,c){for(var l=0,u=0,d=o,f=0,p=0,m=0,h=1,g=1,_=1,v=0,y=``,b=i,x=a,S=r,C=y;g;)switch(m=v,v=B()){case 40:if(m!=108&&N(C,d-1)==58){ue(C+=M(Ee(v),`&`,`&\f`),`&\f`)!=-1&&(_=-1);break}case 34:case 39:case 91:C+=Ee(v);break;case 9:case 10:case 13:case 32:C+=De(m);break;case 92:C+=Oe(xe()-1,7);continue;case 47:switch(be()){case 42:case 47:pe(Pe(V(B(),xe()),t,n),c);break;default:C+=`/`}break;case 123*h:s[l++]=P(C)*_;case 125*h:case 59:case 0:switch(v){case 0:case 125:g=0;case 59+u:_==-1&&(C=M(C,/\f/g,``)),p>0&&P(C)-d&&pe(p>32?Fe(C+`;`,r,n,d-1):Fe(M(C,` `,``)+`;`,r,n,d-2),c);break;case 59:C+=`;`;default:if(pe(S=Ne(C,t,n,l,u,i,s,y,b=[],x=[],d),a),v===123)if(u===0)Me(C,t,S,S,b,a,d,s,x);else switch(f===99&&N(C,3)===110?100:f){case 100:case 108:case 109:case 115:Me(e,S,S,r&&pe(Ne(e,S,S,0,0,i,s,y,i,b=[],d),x),i,x,d,s,r?b:x);break;default:Me(C,S,S,S,[``],x,0,s,x)}}l=u=p=0,h=_=1,y=C=``,d=o;break;case 58:d=1+P(C),p=m;default:if(h<1){if(v==123)--h;else if(v==125&&h++==0&&z()==125)continue}switch(C+=ae(v),v*h){case 38:_=u>0?1:(C+=`\f`,-1);break;case 44:s[l++]=(P(C)-1)*_,_=1;break;case 64:be()===45&&(C+=Ee(B())),f=be(),u=d=P(y=C+=Ae(xe())),v++;break;case 45:m===45&&P(C)==2&&(h=0)}}return a}p(Me,`parse`);function Ne(e,t,n,r,i,a,o,s,c,l,u){for(var d=i-1,f=i===0?a:[``],p=fe(f),m=0,h=0,g=0;m<r;++m)for(var _=0,v=de(e,d+1,d=ie(h=o[m])),y=e;_<p;++_)(y=ce(h>0?f[_]+` `+v:M(v,/&\f/g,f[_])))&&(c[g++]=y);return L(e,t,n,i===0?A:s,c,l,u)}p(Ne,`ruleset`);function Pe(e,t,n){return L(e,t,n,ee,ae(R()),de(e,2,-2),0)}p(Pe,`comment`);function Fe(e,t,n,r){return L(e,t,n,j,de(e,0,r),de(e,r+1,-1),r)}p(Fe,`declaration`);function Ie(e,t){for(var n=``,r=fe(e),i=0;i<r;i++)n+=t(e[i],i,e,t)||``;return n}p(Ie,`serialize`);function Le(e,t,n,r){switch(e.type){case re:if(e.children.length)break;case te:case j:return e.return=e.return||e.value;case ee:return``;case ne:return e.return=e.value+`{`+Ie(e.children,r)+`}`;case A:e.value=e.props.join(`,`)}return P(n=Ie(e.children,r))?e.return=e.value+`{`+n+`}`:``}p(Le,`stringify`);function Re(e){var t=fe(e);return function(n,r,i,a){for(var o=``,s=0;s<t;s++)o+=e[s](n,r,i,a)||``;return o}}p(Re,`middleware`);function ze(e){return function(t){t.root||(t=t.return)&&e(t)}}p(ze,`rulesheet`);var Be=p(function(e){var t=new WeakMap;return function(n){if(t.has(n))return t.get(n);var r=e(n);return t.set(n,r),r}},`weakMemoize`);function Ve(e){var t=Object.create(null);return function(n){return t[n]===void 0&&(t[n]=e(n)),t[n]}}p(Ve,`memoize`);var He=p(function(e,t,n){for(var r=0,i=0;r=i,i=be(),r===38&&i===12&&(t[n]=1),!Ce(i);)B();return Se(e,F)},`identifierWithPointTracking`),Ue=p(function(e,t){var n=-1,r=44;do switch(Ce(r)){case 0:r===38&&be()===12&&(t[n]=1),e[n]+=He(F-1,t,n);break;case 2:e[n]+=Ee(r);break;case 4:if(r===44){e[++n]=be()===58?`&\f`:``,t[n]=e[n].length;break}default:e[n]+=ae(r)}while(r=B());return e},`toRules`),We=p(function(e,t){return Te(Ue(we(e),t))},`getRules`),Ge=new WeakMap,Ke=p(function(e){if(!(e.type!==`rule`||!e.parent||e.length<1)){for(var t=e.value,n=e.parent,r=e.column===n.column&&e.line===n.line;n.type!==`rule`;)if(n=n.parent,!n)return;if(!(e.props.length===1&&t.charCodeAt(0)!==58&&!Ge.get(n))&&!r){Ge.set(e,!0);for(var i=[],a=We(t,i),o=n.props,s=0,c=0;s<a.length;s++)for(var l=0;l<o.length;l++,c++)e.props[c]=i[s]?a[s].replace(/&\f/g,o[l]):o[l]+` `+a[s]}}},`compat`),qe=p(function(e){if(e.type===`decl`){var t=e.value;t.charCodeAt(0)===108&&t.charCodeAt(2)===98&&(e.return=``,e.value=``)}},`removeLabel`);function Je(e,t){switch(se(e,t)){case 5103:return k+`print-`+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return k+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return k+e+O+e+D+e+e;case 6828:case 4268:return k+e+D+e+e;case 6165:return k+e+D+`flex-`+e+e;case 5187:return k+e+M(e,/(\w+).+(:[^]+)/,k+`box-$1$2`+D+`flex-$1$2`)+e;case 5443:return k+e+D+`flex-item-`+M(e,/flex-|-self/,``)+e;case 4675:return k+e+D+`flex-line-pack`+M(e,/align-content|flex-|-self/,``)+e;case 5548:return k+e+D+M(e,`shrink`,`negative`)+e;case 5292:return k+e+D+M(e,`basis`,`preferred-size`)+e;case 6060:return k+`box-`+M(e,`-grow`,``)+k+e+D+M(e,`grow`,`positive`)+e;case 4554:return k+M(e,/([^-])(transform)/g,`$1`+k+`$2`)+e;case 6187:return M(M(M(e,/(zoom-|grab)/,k+`$1`),/(image-set)/,k+`$1`),e,``)+e;case 5495:case 3959:return M(e,/(image-set\([^]*)/,k+"$1$`$1");case 4968:return M(M(e,/(.+:)(flex-)?(.*)/,k+`box-pack:$3`+D+`flex-pack:$3`),/s.+-b[^;]+/,`justify`)+k+e+e;case 4095:case 3583:case 4068:case 2532:return M(e,/(.+)-inline(.+)/,k+`$1$2`)+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(P(e)-1-t>6)switch(N(e,t+1)){case 109:if(N(e,t+4)!==45)break;case 102:return M(e,/(.+:)(.+)-([^]+)/,`$1`+k+`$2-$3$1`+O+(N(e,t+3)==108?`$3`:`$2-$3`))+e;case 115:return~ue(e,`stretch`)?Je(M(e,`stretch`,`fill-available`),t)+e:e}break;case 4949:if(N(e,t+1)!==115)break;case 6444:switch(N(e,P(e)-3-(~ue(e,`!important`)&&10))){case 107:return M(e,`:`,`:`+k)+e;case 101:return M(e,/(.+:)([^;!]+)(;|!.+)?/,`$1`+k+(N(e,14)===45?`inline-`:``)+`box$3$1`+k+`$2$3$1`+D+`$2box$3`)+e}break;case 5936:switch(N(e,t+11)){case 114:return k+e+D+M(e,/[svh]\w+-[tblr]{2}/,`tb`)+e;case 108:return k+e+D+M(e,/[svh]\w+-[tblr]{2}/,`tb-rl`)+e;case 45:return k+e+D+M(e,/[svh]\w+-[tblr]{2}/,`lr`)+e}return k+e+D+e+e}return e}p(Je,`prefix`);var Ye=[p(function(e,t,n,r){if(e.length>-1&&!e.return)switch(e.type){case j:e.return=Je(e.value,e.length);break;case ne:return Ie([ye(e,{value:M(e.value,`@`,`@`+k)})],r);case A:if(e.length)return me(e.props,function(t){switch(le(t,/(::plac\w+|:read-\w+)/)){case`:read-only`:case`:read-write`:return Ie([ye(e,{props:[M(t,/:(read-\w+)/,`:`+O+`$1`)]})],r);case`::placeholder`:return Ie([ye(e,{props:[M(t,/:(plac\w+)/,`:`+k+`input-$1`)]}),ye(e,{props:[M(t,/:(plac\w+)/,`:`+O+`$1`)]}),ye(e,{props:[M(t,/:(plac\w+)/,D+`input-$1`)]})],r)}return``})}},`prefixer`)],Xe=p(function(e){var t=e.key;if(t===`css`){var n=document.querySelectorAll(`style[data-emotion]:not([data-s])`);Array.prototype.forEach.call(n,function(e){e.getAttribute(`data-emotion`).indexOf(` `)!==-1&&(document.head.appendChild(e),e.setAttribute(`data-s`,``))})}var r=e.stylisPlugins||Ye,i={},a,o=[];a=e.container||document.head,Array.prototype.forEach.call(document.querySelectorAll(`style[data-emotion^="`+t+` "]`),function(e){for(var t=e.getAttribute(`data-emotion`).split(` `),n=1;n<t.length;n++)i[t[n]]=!0;o.push(e)});var s,c=[Ke,qe],l,u=[Le,ze(function(e){l.insert(e)})],d=Re(c.concat(r,u)),f=p(function(e){return Ie(je(e),d)},`stylis`);s=p(function(e,t,n,r){l=n,f(e?e+`{`+t.styles+`}`:t.styles),r&&(m.inserted[t.name]=!0)},`insert`);var m={key:t,sheet:new E({key:t,container:a,nonce:e.nonce,speedy:e.speedy,prepend:e.prepend,insertionPoint:e.insertionPoint}),nonce:e.nonce,inserted:i,registered:{},insert:s};return m.sheet.hydrate(o),m},`createCache`),Ze=_(b()),Qe=p(function(e,t){return(0,Ze.default)(e,t)},`hoistNonReactStatics`),$e=!0;function et(e,t,n){var r=``;return n.split(` `).forEach(function(n){e[n]===void 0?n&&(r+=n+` `):t.push(e[n]+`;`)}),r}p(et,`getRegisteredStyles`);var tt=p(function(e,t,n){var r=e.key+`-`+t.name;(n===!1||$e===!1)&&e.registered[r]===void 0&&(e.registered[r]=t.styles)},`registerStyles`),nt=p(function(e,t,n){tt(e,t,n);var r=e.key+`-`+t.name;if(e.inserted[t.name]===void 0){var i=t;do e.insert(t===i?`.`+r:``,i,e.sheet,!0),i=i.next;while(i!==void 0)}},`insertStyles`);function rt(e){for(var t=0,n,r=0,i=e.length;i>=4;++r,i-=4)n=e.charCodeAt(r)&255|(e.charCodeAt(++r)&255)<<8|(e.charCodeAt(++r)&255)<<16|(e.charCodeAt(++r)&255)<<24,n=(n&65535)*1540483477+((n>>>16)*59797<<16),n^=n>>>24,t=(n&65535)*1540483477+((n>>>16)*59797<<16)^(t&65535)*1540483477+((t>>>16)*59797<<16);switch(i){case 3:t^=(e.charCodeAt(r+2)&255)<<16;case 2:t^=(e.charCodeAt(r+1)&255)<<8;case 1:t^=e.charCodeAt(r)&255,t=(t&65535)*1540483477+((t>>>16)*59797<<16)}return t^=t>>>13,t=(t&65535)*1540483477+((t>>>16)*59797<<16),((t^t>>>15)>>>0).toString(36)}p(rt,`murmur2`);var it={animationIterationCount:1,aspectRatio:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,scale:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},at=!1,ot=/[A-Z]|^ms/g,st=/_EMO_([^_]+?)_([^]*?)_EMO_/g,ct=p(function(e){return e.charCodeAt(1)===45},`isCustomProperty`),lt=p(function(e){return e!=null&&typeof e!=`boolean`},`isProcessableValue`),ut=Ve(function(e){return ct(e)?e:e.replace(ot,`-$&`).toLowerCase()}),dt=p(function(e,t){switch(e){case`animation`:case`animationName`:if(typeof t==`string`)return t.replace(st,function(e,t,n){return gt={name:t,styles:n,next:gt},t})}return it[e]!==1&&!ct(e)&&typeof t==`number`&&t!==0?t+`px`:t},`processStyleValue`),ft=`Component selectors can only be used in conjunction with @emotion/babel-plugin, the swc Emotion plugin, or another Emotion-aware compiler transform.`;function pt(e,t,n){if(n==null)return``;var r=n;if(r.__emotion_styles!==void 0)return r;switch(typeof n){case`boolean`:return``;case`object`:var i=n;if(i.anim===1)return gt={name:i.name,styles:i.styles,next:gt},i.name;var a=n;if(a.styles!==void 0){var o=a.next;if(o!==void 0)for(;o!==void 0;)gt={name:o.name,styles:o.styles,next:gt},o=o.next;return a.styles+`;`}return mt(e,t,n);case`function`:if(e!==void 0){var s=gt,c=n(e);return gt=s,pt(e,t,c)}break}var l=n;if(t==null)return l;var u=t[l];return u===void 0?l:u}p(pt,`handleInterpolation`);function mt(e,t,n){var r=``;if(Array.isArray(n))for(var i=0;i<n.length;i++)r+=pt(e,t,n[i])+`;`;else for(var a in n){var o=n[a];if(typeof o!=`object`){var s=o;t!=null&&t[s]!==void 0?r+=a+`{`+t[s]+`}`:lt(s)&&(r+=ut(a)+`:`+dt(a,s)+`;`)}else{if(a===`NO_COMPONENT_SELECTOR`&&at)throw Error(ft);if(Array.isArray(o)&&typeof o[0]==`string`&&(t==null||t[o[0]]===void 0))for(var c=0;c<o.length;c++)lt(o[c])&&(r+=ut(a)+`:`+dt(a,o[c])+`;`);else{var l=pt(e,t,o);switch(a){case`animation`:case`animationName`:r+=ut(a)+`:`+l+`;`;break;default:r+=a+`{`+l+`}`}}}}return r}p(mt,`createStringFromObject`);var ht=/label:\s*([^\s;{]+)\s*(;|$)/g,gt;function _t(e,t,n){if(e.length===1&&typeof e[0]==`object`&&e[0]!==null&&e[0].styles!==void 0)return e[0];var r=!0,i=``;gt=void 0;var a=e[0];a==null||a.raw===void 0?(r=!1,i+=pt(n,t,a)):i+=a[0];for(var o=1;o<e.length;o++)i+=pt(n,t,e[o]),r&&(i+=a[o]);ht.lastIndex=0;for(var s=``,c;(c=ht.exec(i))!==null;)s+=`-`+c[1];return{name:rt(i)+s,styles:i,next:gt}}p(_t,`serializeStyles`);var vt=p(function(e){return e()},`syncFallback`),yt=o.useInsertionEffect?o.useInsertionEffect:!1,bt=yt||vt;yt||o.useLayoutEffect;var xt=!1,St=o.createContext(typeof HTMLElement<`u`?Xe({key:`css`}):null);St.Provider;var Ct=p(function(e){return(0,o.forwardRef)(function(t,n){return e(t,(0,o.useContext)(St),n)})},`withEmotionCache`),wt=o.createContext({}),Tt=p(function(){return o.useContext(wt)},`useTheme`),Et=p(function(e,t){return typeof t==`function`?t(e):S({},e,t)},`getTheme`),Dt=Be(function(e){return Be(function(t){return Et(e,t)})}),Ot=p(function(e){var t=o.useContext(wt);return e.theme!==t&&(t=Dt(t)(e.theme)),o.createElement(wt.Provider,{value:t},e.children)},`ThemeProvider`);function kt(e){var t=e.displayName||e.name||`Component`,n=o.forwardRef(p(function(t,n){var r=o.useContext(wt);return o.createElement(e,S({theme:r,ref:n},t))},`render`));return n.displayName=`WithTheme(`+t+`)`,Qe(n,e)}p(kt,`withTheme`);var At={}.hasOwnProperty,jt=`__EMOTION_TYPE_PLEASE_DO_NOT_USE__`,Mt=p(function(e,t){var n={};for(var r in t)At.call(t,r)&&(n[r]=t[r]);return n[jt]=e,n},`createEmotionProps`),Nt=p(function(e){var t=e.cache,n=e.serialized,r=e.isStringTag;return tt(t,n,r),bt(function(){return nt(t,n,r)}),null},`Insertion`),Pt=Ct(function(e,t,n){var r=e.css;typeof r==`string`&&t.registered[r]!==void 0&&(r=t.registered[r]);var i=e[jt],a=[r],s=``;typeof e.className==`string`?s=et(t.registered,a,e.className):e.className!=null&&(s=e.className+` `);var c=_t(a,void 0,o.useContext(wt));s+=t.key+`-`+c.name;var l={};for(var u in e)At.call(e,u)&&u!==`css`&&u!==jt&&!xt&&(l[u]=e[u]);return l.className=s,n&&(l.ref=n),o.createElement(o.Fragment,null,o.createElement(Nt,{cache:t,serialized:c,isStringTag:typeof i==`string`}),o.createElement(i,l))});_(b());var Ft=p(function(e,t){var n=arguments;if(t==null||!At.call(t,`css`))return o.createElement.apply(void 0,n);var r=n.length,i=Array(r);i[0]=Pt,i[1]=Mt(e,t);for(var a=2;a<r;a++)i[a]=n[a];return o.createElement.apply(null,i)},`jsx`);(function(e){var t;t||=e.JSX||={}})(Ft||={});function It(){return _t([...arguments])}p(It,`css`);function Lt(){var e=It.apply(void 0,arguments),t=`animation-`+e.name;return{name:t,styles:`@keyframes `+t+`{`+e.styles+`}`,anim:1,toString:p(function(){return`_EMO_`+this.name+`_`+this.styles+`_EMO_`},`toString`)}}p(Lt,`keyframes`);function Rt(e,t,n){var r=[],i=et(e,r,n);return r.length<2?n:i+t(r)}p(Rt,`merge`);var zt=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,Bt=Ve(function(e){return zt.test(e)||e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)<91}),Vt=!1,Ht=Bt,Ut=p(function(e){return e!==`theme`},`testOmitPropsOnComponent`),Wt=p(function(e){return typeof e==`string`&&e.charCodeAt(0)>96?Ht:Ut},`getDefaultShouldForwardProp`),Gt=p(function(e,t,n){var r;if(t){var i=t.shouldForwardProp;r=e.__emotion_forwardProp&&i?function(t){return e.__emotion_forwardProp(t)&&i(t)}:i}return typeof r!=`function`&&n&&(r=e.__emotion_forwardProp),r},`composeShouldForwardProps`),Kt=p(function(e){var t=e.cache,n=e.serialized,r=e.isStringTag;return tt(t,n,r),bt(function(){return nt(t,n,r)}),null},`Insertion`),qt=p(function e(t,n){var r=t.__emotion_real===t,i=r&&t.__emotion_base||t,a,s;n!==void 0&&(a=n.label,s=n.target);var c=Gt(t,n,r),l=c||Wt(i),u=!l(`as`);return function(){var d=arguments,f=r&&t.__emotion_styles!==void 0?t.__emotion_styles.slice(0):[];if(a!==void 0&&f.push(`label:`+a+`;`),d[0]==null||d[0].raw===void 0)f.push.apply(f,d);else{var m=d[0];f.push(m[0]);for(var h=d.length,g=1;g<h;g++)f.push(d[g],m[g])}var _=Ct(function(e,t,n){var r=u&&e.as||i,a=``,d=[],p=e;if(e.theme==null){for(var m in p={},e)p[m]=e[m];p.theme=o.useContext(wt)}typeof e.className==`string`?a=et(t.registered,d,e.className):e.className!=null&&(a=e.className+` `);var h=_t(f.concat(d),t.registered,p);a+=t.key+`-`+h.name,s!==void 0&&(a+=` `+s);var g=u&&c===void 0?Wt(r):l,_={};for(var v in e)u&&v===`as`||g(v)&&(_[v]=e[v]);return _.className=a,n&&(_.ref=n),o.createElement(o.Fragment,null,o.createElement(Kt,{cache:t,serialized:h,isStringTag:typeof r==`string`}),o.createElement(r,_))});return _.displayName=a===void 0?`Styled(`+(typeof i==`string`?i:i.displayName||i.name||`Component`)+`)`:a,_.defaultProps=t.defaultProps,_.__emotion_real=_,_.__emotion_base=i,_.__emotion_styles=f,_.__emotion_forwardProp=c,Object.defineProperty(_,`toString`,{value:p(function(){return s===void 0&&Vt?`NO_COMPONENT_SELECTOR`:`.`+s},`value`)}),_.withComponent=function(t,r){return e(t,S({},n,r,{shouldForwardProp:Gt(_,r,!0)})).apply(void 0,f)},_}},`createStyled`),Jt=`a.abbr.address.area.article.aside.audio.b.base.bdi.bdo.big.blockquote.body.br.button.canvas.caption.cite.code.col.colgroup.data.datalist.dd.del.details.dfn.dialog.div.dl.dt.em.embed.fieldset.figcaption.figure.footer.form.h1.h2.h3.h4.h5.h6.head.header.hgroup.hr.html.i.iframe.img.input.ins.kbd.keygen.label.legend.li.link.main.map.mark.marquee.menu.menuitem.meta.meter.nav.noscript.object.ol.optgroup.option.output.p.param.picture.pre.progress.q.rp.rt.ruby.s.samp.script.section.select.small.source.span.strong.style.sub.summary.sup.table.tbody.td.textarea.tfoot.th.thead.time.title.tr.track.u.ul.var.video.wbr.circle.clipPath.defs.ellipse.foreignObject.g.image.line.linearGradient.mask.path.pattern.polygon.polyline.radialGradient.rect.stop.svg.text.tspan`.split(`.`),H=qt.bind(null);Jt.forEach(function(e){H[e]=H(e)});function Yt(e){if(e===void 0)throw ReferenceError(`this hasn't been initialised - super() hasn't been called`);return e}p(Yt,`_assertThisInitialized`);function Xt(e,t){return Xt=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},Xt(e,t)}p(Xt,`_setPrototypeOf`);function Zt(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,Xt(e,t)}p(Zt,`_inheritsLoose`);function Qt(e){return Qt=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},Qt(e)}p(Qt,`_getPrototypeOf`);function $t(e){try{return Function.toString.call(e).indexOf(`[native code]`)!==-1}catch{return typeof e==`function`}}p($t,`_isNativeFunction`);function en(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch{}return(en=p(function(){return!!e},`_isNativeReflectConstruct`))()}p(en,`_isNativeReflectConstruct`);function tn(e,t,n){if(en())return Reflect.construct.apply(null,arguments);var r=[null];r.push.apply(r,t);var i=new(e.bind.apply(e,r));return n&&Xt(i,n.prototype),i}p(tn,`_construct`);function nn(e){var t=typeof Map==`function`?new Map:void 0;return nn=p(function(e){if(e===null||!$t(e))return e;if(typeof e!=`function`)throw TypeError(`Super expression must either be null or a function`);if(t!==void 0){if(t.has(e))return t.get(e);t.set(e,n)}function n(){return tn(e,arguments,Qt(this).constructor)}return p(n,`Wrapper`),n.prototype=Object.create(e.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),Xt(n,e)},`_wrapNativeSuper`),nn(e)}p(nn,`_wrapNativeSuper`);var rn={1:`Passed invalid arguments to hsl, please pass multiple numbers e.g. hsl(360, 0.75, 0.4) or an object e.g. rgb({ hue: 255, saturation: 0.4, lightness: 0.75 }).
2
+
3
+ `,2:`Passed invalid arguments to hsla, please pass multiple numbers e.g. hsla(360, 0.75, 0.4, 0.7) or an object e.g. rgb({ hue: 255, saturation: 0.4, lightness: 0.75, alpha: 0.7 }).
4
+
5
+ `,3:`Passed an incorrect argument to a color function, please pass a string representation of a color.
6
+
7
+ `,4:`Couldn't generate valid rgb string from %s, it returned %s.
8
+
9
+ `,5:`Couldn't parse the color string. Please provide the color as a string in hex, rgb, rgba, hsl or hsla notation.
10
+
11
+ `,6:`Passed invalid arguments to rgb, please pass multiple numbers e.g. rgb(255, 205, 100) or an object e.g. rgb({ red: 255, green: 205, blue: 100 }).
12
+
13
+ `,7:`Passed invalid arguments to rgba, please pass multiple numbers e.g. rgb(255, 205, 100, 0.75) or an object e.g. rgb({ red: 255, green: 205, blue: 100, alpha: 0.75 }).
14
+
15
+ `,8:`Passed invalid argument to toColorString, please pass a RgbColor, RgbaColor, HslColor or HslaColor object.
16
+
17
+ `,9:`Please provide a number of steps to the modularScale helper.
18
+
19
+ `,10:`Please pass a number or one of the predefined scales to the modularScale helper as the ratio.
20
+
21
+ `,11:`Invalid value passed as base to modularScale, expected number or em string but got "%s"
22
+
23
+ `,12:`Expected a string ending in "px" or a number passed as the first argument to %s(), got "%s" instead.
24
+
25
+ `,13:`Expected a string ending in "px" or a number passed as the second argument to %s(), got "%s" instead.
26
+
27
+ `,14:`Passed invalid pixel value ("%s") to %s(), please pass a value like "12px" or 12.
28
+
29
+ `,15:`Passed invalid base value ("%s") to %s(), please pass a value like "12px" or 12.
30
+
31
+ `,16:`You must provide a template to this method.
32
+
33
+ `,17:`You passed an unsupported selector state to this method.
34
+
35
+ `,18:`minScreen and maxScreen must be provided as stringified numbers with the same units.
36
+
37
+ `,19:`fromSize and toSize must be provided as stringified numbers with the same units.
38
+
39
+ `,20:`expects either an array of objects or a single object with the properties prop, fromSize, and toSize.
40
+
41
+ `,21:"expects the objects in the first argument array to have the properties `prop`, `fromSize`, and `toSize`.\n\n",22:"expects the first argument object to have the properties `prop`, `fromSize`, and `toSize`.\n\n",23:`fontFace expects a name of a font-family.
42
+
43
+ `,24:`fontFace expects either the path to the font file(s) or a name of a local copy.
44
+
45
+ `,25:`fontFace expects localFonts to be an array.
46
+
47
+ `,26:`fontFace expects fileFormats to be an array.
48
+
49
+ `,27:`radialGradient requries at least 2 color-stops to properly render.
50
+
51
+ `,28:`Please supply a filename to retinaImage() as the first argument.
52
+
53
+ `,29:`Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'.
54
+
55
+ `,30:"Passed an invalid value to `height` or `width`. Please provide a pixel based unit.\n\n",31:`The animation shorthand only takes 8 arguments. See the specification for more information: http://mdn.io/animation
56
+
57
+ `,32:`To pass multiple animations please supply them in arrays, e.g. animation(['rotate', '2s'], ['move', '1s'])
58
+ To pass a single animation please supply them in simple values, e.g. animation('rotate', '2s')
59
+
60
+ `,33:`The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation
61
+
62
+ `,34:`borderRadius expects a radius value as a string or number as the second argument.
63
+
64
+ `,35:`borderRadius expects one of "top", "bottom", "left" or "right" as the first argument.
65
+
66
+ `,36:`Property must be a string value.
67
+
68
+ `,37:`Syntax Error at %s.
69
+
70
+ `,38:`Formula contains a function that needs parentheses at %s.
71
+
72
+ `,39:`Formula is missing closing parenthesis at %s.
73
+
74
+ `,40:`Formula has too many closing parentheses at %s.
75
+
76
+ `,41:`All values in a formula must have the same unit or be unitless.
77
+
78
+ `,42:`Please provide a number of steps to the modularScale helper.
79
+
80
+ `,43:`Please pass a number or one of the predefined scales to the modularScale helper as the ratio.
81
+
82
+ `,44:`Invalid value passed as base to modularScale, expected number or em/rem string but got %s.
83
+
84
+ `,45:`Passed invalid argument to hslToColorString, please pass a HslColor or HslaColor object.
85
+
86
+ `,46:`Passed invalid argument to rgbToColorString, please pass a RgbColor or RgbaColor object.
87
+
88
+ `,47:`minScreen and maxScreen must be provided as stringified numbers with the same units.
89
+
90
+ `,48:`fromSize and toSize must be provided as stringified numbers with the same units.
91
+
92
+ `,49:`Expects either an array of objects or a single object with the properties prop, fromSize, and toSize.
93
+
94
+ `,50:`Expects the objects in the first argument array to have the properties prop, fromSize, and toSize.
95
+
96
+ `,51:`Expects the first argument object to have the properties prop, fromSize, and toSize.
97
+
98
+ `,52:`fontFace expects either the path to the font file(s) or a name of a local copy.
99
+
100
+ `,53:`fontFace expects localFonts to be an array.
101
+
102
+ `,54:`fontFace expects fileFormats to be an array.
103
+
104
+ `,55:`fontFace expects a name of a font-family.
105
+
106
+ `,56:`linearGradient requries at least 2 color-stops to properly render.
107
+
108
+ `,57:`radialGradient requries at least 2 color-stops to properly render.
109
+
110
+ `,58:`Please supply a filename to retinaImage() as the first argument.
111
+
112
+ `,59:`Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'.
113
+
114
+ `,60:"Passed an invalid value to `height` or `width`. Please provide a pixel based unit.\n\n",61:`Property must be a string value.
115
+
116
+ `,62:`borderRadius expects a radius value as a string or number as the second argument.
117
+
118
+ `,63:`borderRadius expects one of "top", "bottom", "left" or "right" as the first argument.
119
+
120
+ `,64:`The animation shorthand only takes 8 arguments. See the specification for more information: http://mdn.io/animation.
121
+
122
+ `,65:`To pass multiple animations please supply them in arrays, e.g. animation(['rotate', '2s'], ['move', '1s'])\\nTo pass a single animation please supply them in simple values, e.g. animation('rotate', '2s').
123
+
124
+ `,66:`The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation.
125
+
126
+ `,67:`You must provide a template to this method.
127
+
128
+ `,68:`You passed an unsupported selector state to this method.
129
+
130
+ `,69:`Expected a string ending in "px" or a number passed as the first argument to %s(), got %s instead.
131
+
132
+ `,70:`Expected a string ending in "px" or a number passed as the second argument to %s(), got %s instead.
133
+
134
+ `,71:`Passed invalid pixel value %s to %s(), please pass a value like "12px" or 12.
135
+
136
+ `,72:`Passed invalid base value %s to %s(), please pass a value like "12px" or 12.
137
+
138
+ `,73:`Please provide a valid CSS variable.
139
+
140
+ `,74:`CSS variable not found and no default was provided.
141
+
142
+ `,75:`important requires a valid style object, got a %s instead.
143
+
144
+ `,76:`fromSize and toSize must be provided as stringified numbers with the same units as minScreen and maxScreen.
145
+
146
+ `,77:`remToPx expects a value in "rem" but you provided it in "%s".
147
+
148
+ `,78:`base must be set in "px" or "%" but you set it in "%s".
149
+ `};function an(){var e=[...arguments],t=e[0],n=[],r;for(r=1;r<e.length;r+=1)n.push(e[r]);return n.forEach(function(e){t=t.replace(/%[a-z]/,e)}),t}p(an,`format`);var on=function(e){Zt(t,e);function t(t){for(var n,r=arguments.length,i=Array(r>1?r-1:0),a=1;a<r;a++)i[a-1]=arguments[a];return n=e.call(this,an.apply(void 0,[rn[t]].concat(i)))||this,Yt(n)}return p(t,`PolishedError`),t}(nn(Error));function sn(e){return Math.round(e*255)}p(sn,`colorToInt`);function cn(e,t,n){return sn(e)+`,`+sn(t)+`,`+sn(n)}p(cn,`convertToInt`);function ln(e,t,n,r){if(r===void 0&&(r=cn),t===0)return r(n,n,n);var i=(e%360+360)%360/60,a=(1-Math.abs(2*n-1))*t,o=a*(1-Math.abs(i%2-1)),s=0,c=0,l=0;i>=0&&i<1?(s=a,c=o):i>=1&&i<2?(s=o,c=a):i>=2&&i<3?(c=a,l=o):i>=3&&i<4?(c=o,l=a):i>=4&&i<5?(s=o,l=a):i>=5&&i<6&&(s=a,l=o);var u=n-a/2,d=s+u,f=c+u,p=l+u;return r(d,f,p)}p(ln,`hslToRgb`);var un={aliceblue:`f0f8ff`,antiquewhite:`faebd7`,aqua:`00ffff`,aquamarine:`7fffd4`,azure:`f0ffff`,beige:`f5f5dc`,bisque:`ffe4c4`,black:`000`,blanchedalmond:`ffebcd`,blue:`0000ff`,blueviolet:`8a2be2`,brown:`a52a2a`,burlywood:`deb887`,cadetblue:`5f9ea0`,chartreuse:`7fff00`,chocolate:`d2691e`,coral:`ff7f50`,cornflowerblue:`6495ed`,cornsilk:`fff8dc`,crimson:`dc143c`,cyan:`00ffff`,darkblue:`00008b`,darkcyan:`008b8b`,darkgoldenrod:`b8860b`,darkgray:`a9a9a9`,darkgreen:`006400`,darkgrey:`a9a9a9`,darkkhaki:`bdb76b`,darkmagenta:`8b008b`,darkolivegreen:`556b2f`,darkorange:`ff8c00`,darkorchid:`9932cc`,darkred:`8b0000`,darksalmon:`e9967a`,darkseagreen:`8fbc8f`,darkslateblue:`483d8b`,darkslategray:`2f4f4f`,darkslategrey:`2f4f4f`,darkturquoise:`00ced1`,darkviolet:`9400d3`,deeppink:`ff1493`,deepskyblue:`00bfff`,dimgray:`696969`,dimgrey:`696969`,dodgerblue:`1e90ff`,firebrick:`b22222`,floralwhite:`fffaf0`,forestgreen:`228b22`,fuchsia:`ff00ff`,gainsboro:`dcdcdc`,ghostwhite:`f8f8ff`,gold:`ffd700`,goldenrod:`daa520`,gray:`808080`,green:`008000`,greenyellow:`adff2f`,grey:`808080`,honeydew:`f0fff0`,hotpink:`ff69b4`,indianred:`cd5c5c`,indigo:`4b0082`,ivory:`fffff0`,khaki:`f0e68c`,lavender:`e6e6fa`,lavenderblush:`fff0f5`,lawngreen:`7cfc00`,lemonchiffon:`fffacd`,lightblue:`add8e6`,lightcoral:`f08080`,lightcyan:`e0ffff`,lightgoldenrodyellow:`fafad2`,lightgray:`d3d3d3`,lightgreen:`90ee90`,lightgrey:`d3d3d3`,lightpink:`ffb6c1`,lightsalmon:`ffa07a`,lightseagreen:`20b2aa`,lightskyblue:`87cefa`,lightslategray:`789`,lightslategrey:`789`,lightsteelblue:`b0c4de`,lightyellow:`ffffe0`,lime:`0f0`,limegreen:`32cd32`,linen:`faf0e6`,magenta:`f0f`,maroon:`800000`,mediumaquamarine:`66cdaa`,mediumblue:`0000cd`,mediumorchid:`ba55d3`,mediumpurple:`9370db`,mediumseagreen:`3cb371`,mediumslateblue:`7b68ee`,mediumspringgreen:`00fa9a`,mediumturquoise:`48d1cc`,mediumvioletred:`c71585`,midnightblue:`191970`,mintcream:`f5fffa`,mistyrose:`ffe4e1`,moccasin:`ffe4b5`,navajowhite:`ffdead`,navy:`000080`,oldlace:`fdf5e6`,olive:`808000`,olivedrab:`6b8e23`,orange:`ffa500`,orangered:`ff4500`,orchid:`da70d6`,palegoldenrod:`eee8aa`,palegreen:`98fb98`,paleturquoise:`afeeee`,palevioletred:`db7093`,papayawhip:`ffefd5`,peachpuff:`ffdab9`,peru:`cd853f`,pink:`ffc0cb`,plum:`dda0dd`,powderblue:`b0e0e6`,purple:`800080`,rebeccapurple:`639`,red:`f00`,rosybrown:`bc8f8f`,royalblue:`4169e1`,saddlebrown:`8b4513`,salmon:`fa8072`,sandybrown:`f4a460`,seagreen:`2e8b57`,seashell:`fff5ee`,sienna:`a0522d`,silver:`c0c0c0`,skyblue:`87ceeb`,slateblue:`6a5acd`,slategray:`708090`,slategrey:`708090`,snow:`fffafa`,springgreen:`00ff7f`,steelblue:`4682b4`,tan:`d2b48c`,teal:`008080`,thistle:`d8bfd8`,tomato:`ff6347`,turquoise:`40e0d0`,violet:`ee82ee`,wheat:`f5deb3`,white:`fff`,whitesmoke:`f5f5f5`,yellow:`ff0`,yellowgreen:`9acd32`};function dn(e){if(typeof e!=`string`)return e;var t=e.toLowerCase();return un[t]?`#`+un[t]:e}p(dn,`nameToHex`);var fn=/^#[a-fA-F0-9]{6}$/,pn=/^#[a-fA-F0-9]{8}$/,mn=/^#[a-fA-F0-9]{3}$/,hn=/^#[a-fA-F0-9]{4}$/,gn=/^rgb\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*\)$/i,_n=/^rgb(?:a)?\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i,vn=/^hsl\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*\)$/i,yn=/^hsl(?:a)?\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i;function bn(e){if(typeof e!=`string`)throw new on(3);var t=dn(e);if(t.match(fn))return{red:parseInt(``+t[1]+t[2],16),green:parseInt(``+t[3]+t[4],16),blue:parseInt(``+t[5]+t[6],16)};if(t.match(pn)){var n=parseFloat((parseInt(``+t[7]+t[8],16)/255).toFixed(2));return{red:parseInt(``+t[1]+t[2],16),green:parseInt(``+t[3]+t[4],16),blue:parseInt(``+t[5]+t[6],16),alpha:n}}if(t.match(mn))return{red:parseInt(``+t[1]+t[1],16),green:parseInt(``+t[2]+t[2],16),blue:parseInt(``+t[3]+t[3],16)};if(t.match(hn)){var r=parseFloat((parseInt(``+t[4]+t[4],16)/255).toFixed(2));return{red:parseInt(``+t[1]+t[1],16),green:parseInt(``+t[2]+t[2],16),blue:parseInt(``+t[3]+t[3],16),alpha:r}}var i=gn.exec(t);if(i)return{red:parseInt(``+i[1],10),green:parseInt(``+i[2],10),blue:parseInt(``+i[3],10)};var a=_n.exec(t.substring(0,50));if(a)return{red:parseInt(``+a[1],10),green:parseInt(``+a[2],10),blue:parseInt(``+a[3],10),alpha:parseFloat(``+a[4])>1?parseFloat(``+a[4])/100:parseFloat(``+a[4])};var o=vn.exec(t);if(o){var s=`rgb(`+ln(parseInt(``+o[1],10),parseInt(``+o[2],10)/100,parseInt(``+o[3],10)/100)+`)`,c=gn.exec(s);if(!c)throw new on(4,t,s);return{red:parseInt(``+c[1],10),green:parseInt(``+c[2],10),blue:parseInt(``+c[3],10)}}var l=yn.exec(t.substring(0,50));if(l){var u=`rgb(`+ln(parseInt(``+l[1],10),parseInt(``+l[2],10)/100,parseInt(``+l[3],10)/100)+`)`,d=gn.exec(u);if(!d)throw new on(4,t,u);return{red:parseInt(``+d[1],10),green:parseInt(``+d[2],10),blue:parseInt(``+d[3],10),alpha:parseFloat(``+l[4])>1?parseFloat(``+l[4])/100:parseFloat(``+l[4])}}throw new on(5)}p(bn,`parseToRgb`);function xn(e){var t=e.red/255,n=e.green/255,r=e.blue/255,i=Math.max(t,n,r),a=Math.min(t,n,r),o=(i+a)/2;if(i===a)return e.alpha===void 0?{hue:0,saturation:0,lightness:o}:{hue:0,saturation:0,lightness:o,alpha:e.alpha};var s,c=i-a,l=o>.5?c/(2-i-a):c/(i+a);switch(i){case t:s=(n-r)/c+(n<r?6:0);break;case n:s=(r-t)/c+2;break;default:s=(t-n)/c+4;break}return s*=60,e.alpha===void 0?{hue:s,saturation:l,lightness:o}:{hue:s,saturation:l,lightness:o,alpha:e.alpha}}p(xn,`rgbToHsl`);function Sn(e){return xn(bn(e))}p(Sn,`parseToHsl`);var Cn=p(function(e){return e.length===7&&e[1]===e[2]&&e[3]===e[4]&&e[5]===e[6]?`#`+e[1]+e[3]+e[5]:e},`reduceHexValue`);function wn(e){var t=e.toString(16);return t.length===1?`0`+t:t}p(wn,`numberToHex`);function Tn(e){return wn(Math.round(e*255))}p(Tn,`colorToHex`);function En(e,t,n){return Cn(`#`+Tn(e)+Tn(t)+Tn(n))}p(En,`convertToHex`);function Dn(e,t,n){return ln(e,t,n,En)}p(Dn,`hslToHex`);function On(e,t,n){if(typeof e==`number`&&typeof t==`number`&&typeof n==`number`)return Dn(e,t,n);if(typeof e==`object`&&t===void 0&&n===void 0)return Dn(e.hue,e.saturation,e.lightness);throw new on(1)}p(On,`hsl`);function kn(e,t,n,r){if(typeof e==`number`&&typeof t==`number`&&typeof n==`number`&&typeof r==`number`)return r>=1?Dn(e,t,n):`rgba(`+ln(e,t,n)+`,`+r+`)`;if(typeof e==`object`&&t===void 0&&n===void 0&&r===void 0)return e.alpha>=1?Dn(e.hue,e.saturation,e.lightness):`rgba(`+ln(e.hue,e.saturation,e.lightness)+`,`+e.alpha+`)`;throw new on(2)}p(kn,`hsla`);function An(e,t,n){if(typeof e==`number`&&typeof t==`number`&&typeof n==`number`)return Cn(`#`+wn(e)+wn(t)+wn(n));if(typeof e==`object`&&t===void 0&&n===void 0)return Cn(`#`+wn(e.red)+wn(e.green)+wn(e.blue));throw new on(6)}p(An,`rgb`);function jn(e,t,n,r){if(typeof e==`string`&&typeof t==`number`){var i=bn(e);return`rgba(`+i.red+`,`+i.green+`,`+i.blue+`,`+t+`)`}else{if(typeof e==`number`&&typeof t==`number`&&typeof n==`number`&&typeof r==`number`)return r>=1?An(e,t,n):`rgba(`+e+`,`+t+`,`+n+`,`+r+`)`;if(typeof e==`object`&&t===void 0&&n===void 0&&r===void 0)return e.alpha>=1?An(e.red,e.green,e.blue):`rgba(`+e.red+`,`+e.green+`,`+e.blue+`,`+e.alpha+`)`}throw new on(7)}p(jn,`rgba`);var Mn=p(function(e){return typeof e.red==`number`&&typeof e.green==`number`&&typeof e.blue==`number`&&(typeof e.alpha!=`number`||typeof e.alpha>`u`)},`isRgb`),Nn=p(function(e){return typeof e.red==`number`&&typeof e.green==`number`&&typeof e.blue==`number`&&typeof e.alpha==`number`},`isRgba`),Pn=p(function(e){return typeof e.hue==`number`&&typeof e.saturation==`number`&&typeof e.lightness==`number`&&(typeof e.alpha!=`number`||typeof e.alpha>`u`)},`isHsl`),Fn=p(function(e){return typeof e.hue==`number`&&typeof e.saturation==`number`&&typeof e.lightness==`number`&&typeof e.alpha==`number`},`isHsla`);function In(e){if(typeof e!=`object`)throw new on(8);if(Nn(e))return jn(e);if(Mn(e))return An(e);if(Fn(e))return kn(e);if(Pn(e))return On(e);throw new on(8)}p(In,`toColorString`);function Ln(e,t,n){return p(function(){var r=n.concat(Array.prototype.slice.call(arguments));return r.length>=t?e.apply(this,r):Ln(e,t,r)},`fn`)}p(Ln,`curried`);function Rn(e){return Ln(e,e.length,[])}p(Rn,`curry`);function zn(e,t,n){return Math.max(e,Math.min(t,n))}p(zn,`guard`);function Bn(e,t){if(t===`transparent`)return t;var n=Sn(t);return In(S({},n,{lightness:zn(0,1,n.lightness-parseFloat(e))}))}p(Bn,`darken`);var Vn=Rn(Bn);function Hn(e,t){if(t===`transparent`)return t;var n=Sn(t);return In(S({},n,{lightness:zn(0,1,n.lightness+parseFloat(e))}))}p(Hn,`lighten`);var Un=Rn(Hn);function Wn(e,t){if(t===`transparent`)return t;var n=bn(t),r=typeof n.alpha==`number`?n.alpha:1;return jn(S({},n,{alpha:zn(0,1,(r*100+parseFloat(e)*100)/100)}))}p(Wn,`opacify`);var Gn=Rn(Wn);function Kn(e,t){if(t===`transparent`)return t;var n=bn(t),r=typeof n.alpha==`number`?n.alpha:1;return jn(S({},n,{alpha:zn(0,1,(r*100-parseFloat(e)*100).toFixed(2)/100)}))}p(Kn,`transparentize`);var qn=Rn(Kn),U={primary:`#FF4785`,secondary:`#029CFD`,tertiary:`#FAFBFC`,ancillary:`#22a699`,orange:`#FC521F`,gold:`#FFAE00`,green:`#66BF3C`,seafoam:`#37D5D3`,purple:`#6F2CAC`,ultraviolet:`#2A0481`,lightest:`#FFFFFF`,lighter:`#F7FAFC`,light:`#EEF3F6`,mediumlight:`#ECF4F9`,medium:`#D9E8F2`,mediumdark:`#73828C`,dark:`#5C6870`,darker:`#454E54`,darkest:`#2E3438`,border:`hsla(203, 50%, 30%, 0.15)`,positive:`#66BF3C`,negative:`#FF4400`,warning:`#E69D00`,critical:`#FFFFFF`,defaultText:`#2E3438`,inverseText:`#FFFFFF`,positiveText:`#448028`,negativeText:`#D43900`,warningText:`#A15C20`},Jn={app:`#F6F9FC`,bar:U.lightest,content:U.lightest,preview:U.lightest,gridCellSize:10,hoverable:qn(.9,U.secondary),positive:`#E1FFD4`,negative:`#FEDED2`,warning:`#FFF5CF`,critical:`#FF4400`},Yn={fonts:{base:[`"Nunito Sans"`,`-apple-system`,`".SFNSText-Regular"`,`"San Francisco"`,`BlinkMacSystemFont`,`"Segoe UI"`,`"Helvetica Neue"`,`Helvetica`,`Arial`,`sans-serif`].join(`, `),mono:[`ui-monospace`,`Menlo`,`Monaco`,`"Roboto Mono"`,`"Oxygen Mono"`,`"Ubuntu Monospace"`,`"Source Code Pro"`,`"Droid Sans Mono"`,`"Courier New"`,`monospace`].join(`, `)},weight:{regular:400,bold:700},size:{s1:12,s2:14,s3:16,m1:20,m2:24,m3:28,l1:32,l2:40,l3:48,code:90}},Xn=_(x(),1),Zn=(0,Xn.default)(1)(({typography:e})=>({body:{fontFamily:e.fonts.base,fontSize:e.size.s3,margin:0,WebkitFontSmoothing:`antialiased`,MozOsxFontSmoothing:`grayscale`,WebkitTapHighlightColor:`rgba(0, 0, 0, 0)`,WebkitOverflowScrolling:`touch`},"*":{boxSizing:`border-box`},"h1, h2, h3, h4, h5, h6":{fontWeight:e.weight.regular,margin:0,padding:0},"button, input, textarea, select":{fontFamily:`inherit`,fontSize:`inherit`,boxSizing:`border-box`},sub:{fontSize:`0.8em`,bottom:`-0.2em`},sup:{fontSize:`0.8em`,top:`-0.2em`},"b, strong":{fontWeight:e.weight.bold},hr:{border:`none`,borderTop:`1px solid silver`,clear:`both`,marginBottom:`1.25rem`},code:{fontFamily:e.fonts.mono,WebkitFontSmoothing:`antialiased`,MozOsxFontSmoothing:`grayscale`,display:`inline-block`,paddingLeft:2,paddingRight:2,verticalAlign:`baseline`,color:`inherit`},pre:{fontFamily:e.fonts.mono,WebkitFontSmoothing:`antialiased`,MozOsxFontSmoothing:`grayscale`,lineHeight:`18px`,padding:`11px 1rem`,whiteSpace:`pre-wrap`,color:`inherit`,borderRadius:3,margin:`1rem 0`}}));(0,Xn.default)(1)(({color:e,background:t,typography:n})=>{let r=Zn({typography:n});return{...r,body:{...r.body,color:e.defaultText,background:t.app,overflow:`hidden`},hr:{...r.hr,borderTop:`1px solid ${e.border}`}}});var Qn={base:`dark`,colorPrimary:`#FF4785`,colorSecondary:`#029CFD`,appBg:`#222425`,appContentBg:`#1B1C1D`,appPreviewBg:U.lightest,appBorderColor:`rgba(255,255,255,.1)`,appBorderRadius:4,fontBase:Yn.fonts.base,fontCode:Yn.fonts.mono,textColor:`#C9CDCF`,textInverseColor:`#222425`,textMutedColor:`#798186`,barTextColor:U.mediumdark,barHoverColor:U.secondary,barSelectedColor:U.secondary,barBg:`#292C2E`,buttonBg:`#222425`,buttonBorder:`rgba(255,255,255,.1)`,booleanBg:`#222425`,booleanSelectedBg:`#2E3438`,inputBg:`#1B1C1D`,inputBorder:`rgba(255,255,255,.1)`,inputTextColor:U.lightest,inputBorderRadius:4},$n={base:`light`,colorPrimary:`#FF4785`,colorSecondary:`#029CFD`,appBg:Jn.app,appContentBg:U.lightest,appPreviewBg:U.lightest,appBorderColor:U.border,appBorderRadius:4,fontBase:Yn.fonts.base,fontCode:Yn.fonts.mono,textColor:U.darkest,textInverseColor:U.lightest,textMutedColor:U.dark,barTextColor:U.mediumdark,barHoverColor:U.secondary,barSelectedColor:U.secondary,barBg:U.lightest,buttonBg:Jn.app,buttonBorder:U.medium,booleanBg:U.mediumlight,booleanSelectedBg:U.lightest,inputBg:U.lightest,inputBorder:U.border,inputTextColor:U.darkest,inputBorderRadius:4},er=(()=>{let e;return e=typeof window<`u`?window:typeof globalThis<`u`?globalThis:typeof global<`u`?global:typeof self<`u`?self:{},e})(),{logger:tr}=__STORYBOOK_MODULE_CLIENT_LOGGER__,{window:nr}=er,rr=p(e=>({color:e}),`mkColor`),ir=p(e=>typeof e==`string`?!0:(tr.warn(`Color passed to theme object should be a string. Instead ${e}(${typeof e}) was passed.`),!1),`isColorString`),ar=p(e=>!/(gradient|var|calc)/.test(e),`isValidColorForPolished`),or=p((e,t)=>e===`darken`?jn(`${Vn(1,t)}`,.95):e===`lighten`?jn(`${Un(1,t)}`,.95):t,`applyPolished`),sr=p(e=>t=>{if(!ir(t)||!ar(t))return t;try{return or(e,t)}catch{return t}},`colorFactory`),cr=sr(`lighten`);sr(`darken`);var lr=p(()=>!nr||!nr.matchMedia?`light`:nr.matchMedia(`(prefers-color-scheme: dark)`).matches?`dark`:`light`,`getPreferredColorScheme`),ur={light:$n,dark:Qn,normal:$n};lr();var dr={rubber:`cubic-bezier(0.175, 0.885, 0.335, 1.05)`},fr=Lt`
150
+ from {
151
+ transform: rotate(0deg);
152
+ }
153
+ to {
154
+ transform: rotate(360deg);
155
+ }
156
+ `,pr=Lt`
157
+ 0%, 100% { opacity: 1; }
158
+ 50% { opacity: .4; }
159
+ `,mr={rotate360:fr,glow:pr,float:Lt`
160
+ 0% { transform: translateY(1px); }
161
+ 25% { transform: translateY(0px); }
162
+ 50% { transform: translateY(-3px); }
163
+ 100% { transform: translateY(1px); }
164
+ `,jiggle:Lt`
165
+ 0%, 100% { transform:translate3d(0,0,0); }
166
+ 12.5%, 62.5% { transform:translate3d(-4px,0,0); }
167
+ 37.5%, 87.5% { transform: translate3d(4px,0,0); }
168
+ `,inlineGlow:It`
169
+ animation: ${pr} 1.5s ease-in-out infinite;
170
+ color: transparent;
171
+ cursor: progress;
172
+ `,hoverable:It`
173
+ transition: all 150ms ease-out;
174
+ transform: translate3d(0, 0, 0);
175
+
176
+ &:hover {
177
+ transform: translate3d(0, -2px, 0);
178
+ }
179
+
180
+ &:active {
181
+ transform: translate3d(0, 0, 0);
182
+ }
183
+ `},hr={BASE_FONT_FAMILY:`Menlo, monospace`,BASE_FONT_SIZE:`11px`,BASE_LINE_HEIGHT:1.2,BASE_BACKGROUND_COLOR:`rgb(36, 36, 36)`,BASE_COLOR:`rgb(213, 213, 213)`,OBJECT_PREVIEW_ARRAY_MAX_PROPERTIES:10,OBJECT_PREVIEW_OBJECT_MAX_PROPERTIES:5,OBJECT_NAME_COLOR:`rgb(227, 110, 236)`,OBJECT_VALUE_NULL_COLOR:`rgb(127, 127, 127)`,OBJECT_VALUE_UNDEFINED_COLOR:`rgb(127, 127, 127)`,OBJECT_VALUE_REGEXP_COLOR:`rgb(233, 63, 59)`,OBJECT_VALUE_STRING_COLOR:`rgb(233, 63, 59)`,OBJECT_VALUE_SYMBOL_COLOR:`rgb(233, 63, 59)`,OBJECT_VALUE_NUMBER_COLOR:`hsl(252, 100%, 75%)`,OBJECT_VALUE_BOOLEAN_COLOR:`hsl(252, 100%, 75%)`,OBJECT_VALUE_FUNCTION_PREFIX_COLOR:`rgb(85, 106, 242)`,HTML_TAG_COLOR:`rgb(93, 176, 215)`,HTML_TAGNAME_COLOR:`rgb(93, 176, 215)`,HTML_TAGNAME_TEXT_TRANSFORM:`lowercase`,HTML_ATTRIBUTE_NAME_COLOR:`rgb(155, 187, 220)`,HTML_ATTRIBUTE_VALUE_COLOR:`rgb(242, 151, 102)`,HTML_COMMENT_COLOR:`rgb(137, 137, 137)`,HTML_DOCTYPE_COLOR:`rgb(192, 192, 192)`,ARROW_COLOR:`rgb(145, 145, 145)`,ARROW_MARGIN_RIGHT:3,ARROW_FONT_SIZE:12,ARROW_ANIMATION_DURATION:`0`,TREENODE_FONT_FAMILY:`Menlo, monospace`,TREENODE_FONT_SIZE:`11px`,TREENODE_LINE_HEIGHT:1.2,TREENODE_PADDING_LEFT:12,TABLE_BORDER_COLOR:`rgb(85, 85, 85)`,TABLE_TH_BACKGROUND_COLOR:`rgb(44, 44, 44)`,TABLE_TH_HOVER_COLOR:`rgb(48, 48, 48)`,TABLE_SORT_ICON_COLOR:`black`,TABLE_DATA_BACKGROUND_IMAGE:`linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(51, 139, 255, 0.0980392) 50%, rgba(51, 139, 255, 0.0980392))`,TABLE_DATA_BACKGROUND_SIZE:`128px 32px`},gr={BASE_FONT_FAMILY:`Menlo, monospace`,BASE_FONT_SIZE:`11px`,BASE_LINE_HEIGHT:1.2,BASE_BACKGROUND_COLOR:`white`,BASE_COLOR:`black`,OBJECT_PREVIEW_ARRAY_MAX_PROPERTIES:10,OBJECT_PREVIEW_OBJECT_MAX_PROPERTIES:5,OBJECT_NAME_COLOR:`rgb(136, 19, 145)`,OBJECT_VALUE_NULL_COLOR:`rgb(128, 128, 128)`,OBJECT_VALUE_UNDEFINED_COLOR:`rgb(128, 128, 128)`,OBJECT_VALUE_REGEXP_COLOR:`rgb(196, 26, 22)`,OBJECT_VALUE_STRING_COLOR:`rgb(196, 26, 22)`,OBJECT_VALUE_SYMBOL_COLOR:`rgb(196, 26, 22)`,OBJECT_VALUE_NUMBER_COLOR:`rgb(28, 0, 207)`,OBJECT_VALUE_BOOLEAN_COLOR:`rgb(28, 0, 207)`,OBJECT_VALUE_FUNCTION_PREFIX_COLOR:`rgb(13, 34, 170)`,HTML_TAG_COLOR:`rgb(168, 148, 166)`,HTML_TAGNAME_COLOR:`rgb(136, 18, 128)`,HTML_TAGNAME_TEXT_TRANSFORM:`lowercase`,HTML_ATTRIBUTE_NAME_COLOR:`rgb(153, 69, 0)`,HTML_ATTRIBUTE_VALUE_COLOR:`rgb(26, 26, 166)`,HTML_COMMENT_COLOR:`rgb(35, 110, 37)`,HTML_DOCTYPE_COLOR:`rgb(192, 192, 192)`,ARROW_COLOR:`#6e6e6e`,ARROW_MARGIN_RIGHT:3,ARROW_FONT_SIZE:12,ARROW_ANIMATION_DURATION:`0`,TREENODE_FONT_FAMILY:`Menlo, monospace`,TREENODE_FONT_SIZE:`11px`,TREENODE_LINE_HEIGHT:1.2,TREENODE_PADDING_LEFT:12,TABLE_BORDER_COLOR:`#aaa`,TABLE_TH_BACKGROUND_COLOR:`#eee`,TABLE_TH_HOVER_COLOR:`hsla(0, 0%, 90%, 1)`,TABLE_SORT_ICON_COLOR:`#6e6e6e`,TABLE_DATA_BACKGROUND_IMAGE:`linear-gradient(to bottom, white, white 50%, rgb(234, 243, 255) 50%, rgb(234, 243, 255))`,TABLE_DATA_BACKGROUND_SIZE:`128px 32px`},_r=p(e=>Object.entries(e).reduce((e,[t,n])=>({...e,[t]:rr(n)}),{}),`convertColors`),vr=p(({colors:e,mono:t})=>{let n=_r(e);return{token:{fontFamily:t,WebkitFontSmoothing:`antialiased`,"&.tag":n.red3,"&.comment":{...n.green1,fontStyle:`italic`},"&.prolog":{...n.green1,fontStyle:`italic`},"&.doctype":{...n.green1,fontStyle:`italic`},"&.cdata":{...n.green1,fontStyle:`italic`},"&.string":n.red1,"&.url":n.cyan1,"&.symbol":n.cyan1,"&.number":n.cyan1,"&.boolean":n.cyan1,"&.variable":n.cyan1,"&.constant":n.cyan1,"&.inserted":n.cyan1,"&.atrule":n.blue1,"&.keyword":n.blue1,"&.attr-value":n.blue1,"&.punctuation":n.gray1,"&.operator":n.gray1,"&.function":n.gray1,"&.deleted":n.red2,"&.important":{fontWeight:`bold`},"&.bold":{fontWeight:`bold`},"&.italic":{fontStyle:`italic`},"&.class-name":n.cyan2,"&.selector":n.red3,"&.attr-name":n.red4,"&.property":n.red4,"&.regex":n.red4,"&.entity":n.red4,"&.directive.tag .tag":{background:`#ffff00`,...n.gray1}},"language-json .token.boolean":n.blue1,"language-json .token.number":n.blue1,"language-json .token.property":n.cyan2,namespace:{opacity:.7}}},`create`),yr={green1:`#008000`,red1:`#A31515`,red2:`#9a050f`,red3:`#800000`,red4:`#ff0000`,gray1:`#393A34`,cyan1:`#36acaa`,cyan2:`#2B91AF`,blue1:`#0000ff`,blue2:`#00009f`},br={green1:`#7C7C7C`,red1:`#92C379`,red2:`#9a050f`,red3:`#A8FF60`,red4:`#96CBFE`,gray1:`#EDEDED`,cyan1:`#C6C5FE`,cyan2:`#FFFFB6`,blue1:`#B474DD`,blue2:`#00009f`},xr=p(e=>({primary:e.colorPrimary,secondary:e.colorSecondary,tertiary:U.tertiary,ancillary:U.ancillary,orange:U.orange,gold:U.gold,green:U.green,seafoam:U.seafoam,purple:U.purple,ultraviolet:U.ultraviolet,lightest:U.lightest,lighter:U.lighter,light:U.light,mediumlight:U.mediumlight,medium:U.medium,mediumdark:U.mediumdark,dark:U.dark,darker:U.darker,darkest:U.darkest,border:U.border,positive:U.positive,negative:U.negative,warning:U.warning,critical:U.critical,defaultText:e.textColor||U.darkest,inverseText:e.textInverseColor||U.lightest,positiveText:U.positiveText,negativeText:U.negativeText,warningText:U.warningText}),`createColors`),Sr=p((e=ur[lr()])=>{let{base:t,colorPrimary:n,colorSecondary:r,appBg:i,appContentBg:a,appPreviewBg:o,appBorderColor:s,appBorderRadius:c,fontBase:l,fontCode:u,textColor:d,textInverseColor:f,barTextColor:p,barHoverColor:m,barSelectedColor:h,barBg:g,buttonBg:_,buttonBorder:v,booleanBg:y,booleanSelectedBg:b,inputBg:x,inputBorder:S,inputTextColor:C,inputBorderRadius:w,brandTitle:T,brandUrl:E,brandImage:D,brandTarget:O,gridCellSize:k,...ee}=e;return{...ee,base:t,color:xr(e),background:{app:i,bar:g,content:a,preview:o,gridCellSize:k||Jn.gridCellSize,hoverable:Jn.hoverable,positive:Jn.positive,negative:Jn.negative,warning:Jn.warning,critical:Jn.critical},typography:{fonts:{base:l,mono:u},weight:Yn.weight,size:Yn.size},animation:mr,easing:dr,input:{background:x,border:S,borderRadius:w,color:C},button:{background:_||x,border:v||S},boolean:{background:y||S,selectedBackground:b||x},layoutMargin:10,appBorderColor:s,appBorderRadius:c,barTextColor:p,barHoverColor:m||r,barSelectedColor:h||r,barBg:g,brand:{title:T,url:E,image:D||(T?null:void 0),target:O},code:vr({colors:t===`light`?yr:br,mono:u}),addonActionsTheme:{...t===`light`?gr:hr,BASE_FONT_FAMILY:u,BASE_FONT_SIZE:Yn.size.s2-1,BASE_LINE_HEIGHT:`18px`,BASE_BACKGROUND_COLOR:`transparent`,BASE_COLOR:d,ARROW_COLOR:Gn(.2,s),ARROW_MARGIN_RIGHT:4,ARROW_FONT_SIZE:8,TREENODE_FONT_FAMILY:u,TREENODE_FONT_SIZE:Yn.size.s2-1,TREENODE_LINE_HEIGHT:`18px`,TREENODE_PADDING_LEFT:12}}},`convert`),{logger:Cr}=__STORYBOOK_MODULE_CLIENT_LOGGER__,wr=p(e=>Object.keys(e).length===0,`isEmpty`),Tr=p(e=>typeof e==`object`&&!!e,`isObject`),Er=p((e,...t)=>Object.prototype.hasOwnProperty.call(e,...t),`hasOwnProperty`),Dr=p(()=>Object.create(null),`makeObjectWithoutPrototype`),Or=p((e,t)=>e===t||!Tr(e)||!Tr(t)?{}:Object.keys(e).reduce((n,r)=>{if(Er(t,r)){let i=Or(e[r],t[r]);return Tr(i)&&wr(i)||(n[r]=i),n}return n[r]=void 0,n},Dr()),`deletedDiff`),kr=Or;function Ar(e){var t=[...arguments].slice(1),n=Array.from(typeof e==`string`?[e]:e);n[n.length-1]=n[n.length-1].replace(/\r?\n([\t ]*)$/,``);var r=n.reduce(function(e,t){var n=t.match(/\n([\t ]+|(?!\s).)/g);return n?e.concat(n.map(function(e){return e.match(/[\t ]/g)?.length??0})):e},[]);if(r.length){var i=RegExp(`
184
+ [ ]{`+Math.min.apply(Math,r)+`}`,`g`);n=n.map(function(e){return e.replace(i,`
185
+ `)})}n[0]=n[0].replace(/^\r?\n/,``);var a=n[0];return t.forEach(function(e,t){var r=a.match(/(?:^|\n)( *)$/),i=r?r[1]:``,o=e;typeof e==`string`&&e.includes(`
186
+ `)&&(o=String(e).split(`
187
+ `).map(function(e,t){return t===0?e:``+i+e}).join(`
188
+ `)),a+=o+n[t+1]}),a}p(Ar,`dedent`);var jr=p(e=>{if(!e)return Sr($n);let t=kr($n,e);return Object.keys(t).length&&Cr.warn(Ar`
189
+ Your theme is missing properties, you should update your theme!
190
+
191
+ theme-data missing:
192
+ `,t),Sr(e)},`ensure`),Mr=`/* emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason */`,W=n(i(),1),Nr=n(a(),1),Pr=n(a(),1),Fr=n(a(),1),Ir=n(a(),1),Lr=n(a(),1),Rr=Object.create,zr=Object.defineProperty,Br=Object.getOwnPropertyDescriptor,Vr=Object.getOwnPropertyNames,Hr=Object.getPrototypeOf,Ur=Object.prototype.hasOwnProperty,G=(e,t)=>zr(e,`name`,{value:t,configurable:!0}),Wr=(e=>typeof t<`u`?t:typeof Proxy<`u`?new Proxy(e,{get:(e,n)=>(typeof t<`u`?t:e)[n]}):e)(function(e){if(typeof t<`u`)return t.apply(this,arguments);throw Error(`Dynamic require of "`+e+`" is not supported`)}),K=(e,t)=>()=>(e&&(t=e(e=0)),t),q=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),Gr=(e,t)=>{for(var n in t)zr(e,n,{get:t[n],enumerable:!0})},Kr=(e,t,n,r)=>{if(t&&typeof t==`object`||typeof t==`function`)for(let i of Vr(t))!Ur.call(e,i)&&i!==n&&zr(e,i,{get:()=>t[i],enumerable:!(r=Br(t,i))||r.enumerable});return e},qr=(e,t,n)=>(n=e==null?{}:Rr(Hr(e)),Kr(t||!e||!e.__esModule?zr(n,`default`,{value:e,enumerable:!0}):n,e));function Jr(){return Jr=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)({}).hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Jr.apply(null,arguments)}var Yr=K(()=>{G(Jr,`_extends`)});function Xr(e){if(e===void 0)throw ReferenceError(`this hasn't been initialised - super() hasn't been called`);return e}var Zr=K(()=>{G(Xr,`_assertThisInitialized`)});function Qr(e,t){return Qr=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},Qr(e,t)}var $r=K(()=>{G(Qr,`_setPrototypeOf`)});function ei(e){return ei=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},ei(e)}var ti=K(()=>{G(ei,`_getPrototypeOf`)}),ni,ri=K(()=>{ni=(()=>{let e;return e=typeof window<`u`?window:typeof globalThis<`u`?globalThis:typeof global<`u`?global:typeof self<`u`?self:{},e})()}),ii=q((e,t)=>{(function(n){if(typeof e==`object`&&typeof t<`u`)t.exports=n();else if(typeof define==`function`&&define.amd)define([],n);else{var r=typeof window<`u`?window:typeof global<`u`?global:typeof self<`u`?self:this;r.memoizerific=n()}})(function(){return G(function e(t,n,r){function i(o,s){if(!n[o]){if(!t[o]){var c=typeof Wr==`function`&&Wr;if(!s&&c)return c(o,!0);if(a)return a(o,!0);var l=Error(`Cannot find module '`+o+`'`);throw l.code=`MODULE_NOT_FOUND`,l}var u=n[o]={exports:{}};t[o][0].call(u.exports,function(e){var n=t[o][1][e];return i(n||e)},u,u.exports,e,t,n,r)}return n[o].exports}G(i,`s`);for(var a=typeof Wr==`function`&&Wr,o=0;o<r.length;o++)i(r[o]);return i},`e`)({1:[function(e,t,n){t.exports=function(t){return typeof Map!=`function`||t?new(e(`./similar`)):new Map}},{"./similar":2}],2:[function(e,t,n){function r(){return this.list=[],this.lastItem=void 0,this.size=0,this}G(r,`Similar`),r.prototype.get=function(e){var t;if(this.lastItem&&this.isEqual(this.lastItem.key,e))return this.lastItem.val;if(t=this.indexOf(e),t>=0)return this.lastItem=this.list[t],this.list[t].val},r.prototype.set=function(e,t){var n;return this.lastItem&&this.isEqual(this.lastItem.key,e)?(this.lastItem.val=t,this):(n=this.indexOf(e),n>=0?(this.lastItem=this.list[n],this.list[n].val=t,this):(this.lastItem={key:e,val:t},this.list.push(this.lastItem),this.size++,this))},r.prototype.delete=function(e){var t;if(this.lastItem&&this.isEqual(this.lastItem.key,e)&&(this.lastItem=void 0),t=this.indexOf(e),t>=0)return this.size--,this.list.splice(t,1)[0]},r.prototype.has=function(e){var t;return this.lastItem&&this.isEqual(this.lastItem.key,e)?!0:(t=this.indexOf(e),t>=0?(this.lastItem=this.list[t],!0):!1)},r.prototype.forEach=function(e,t){var n;for(n=0;n<this.size;n++)e.call(t||this,this.list[n].val,this.list[n].key,this)},r.prototype.indexOf=function(e){var t;for(t=0;t<this.size;t++)if(this.isEqual(this.list[t].key,e))return t;return-1},r.prototype.isEqual=function(e,t){return e===t||e!==e&&t!==t},t.exports=r},{}],3:[function(e,t,n){var r=e(`map-or-similar`);t.exports=function(e){var t=new r(!1),n=[];return function(o){var s=G(function(){var c=t,l,u,d=arguments.length-1,f=Array(d+1),p=!0,m;if((s.numArgs||s.numArgs===0)&&s.numArgs!==d+1)throw Error(`Memoizerific functions should always be called with the same number of arguments`);for(m=0;m<d;m++){if(f[m]={cacheItem:c,arg:arguments[m]},c.has(arguments[m])){c=c.get(arguments[m]);continue}p=!1,l=new r(!1),c.set(arguments[m],l),c=l}return p&&(c.has(arguments[d])?u=c.get(arguments[d]):p=!1),p||(u=o.apply(null,arguments),c.set(arguments[d],u)),e>0&&(f[d]={cacheItem:c,arg:arguments[d]},p?i(n,f):n.push(f),n.length>e&&a(n.shift())),s.wasMemoized=p,s.numArgs=d+1,u},`memoizerific`);return s.limit=e,s.wasMemoized=!1,s.cache=t,s.lru=n,s}};function i(e,t){var n=e.length,r=t.length,i,a,s;for(a=0;a<n;a++){for(i=!0,s=0;s<r;s++)if(!o(e[a][s].arg,t[s].arg)){i=!1;break}if(i)break}e.push(e.splice(a,1)[0])}G(i,`moveToMostRecentLru`);function a(e){var t=e.length,n=e[t-1],r,i;for(n.cacheItem.delete(n.arg),i=t-2;i>=0&&(n=e[i],r=n.cacheItem.get(n.arg),!r||!r.size);i--)n.cacheItem.delete(n.arg)}G(a,`removeCachedResult`);function o(e,t){return e===t||e!==e&&t!==t}G(o,`isEqual`)},{"map-or-similar":1}]},{},[3])(3)})});function ai(e,t){if(e==null)return{};var n={};for(var r in e)if({}.hasOwnProperty.call(e,r)){if(t.indexOf(r)>=0)continue;n[r]=e[r]}return n}var oi=K(()=>{G(ai,`_objectWithoutPropertiesLoose`)});function si(e,t){if(e==null)return{};var n,r,i=ai(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||{}.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}var ci=K(()=>{oi(),G(si,`_objectWithoutProperties`)});function li(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}var ui=K(()=>{G(li,`_arrayLikeToArray`)});function di(e){if(Array.isArray(e))return li(e)}var fi=K(()=>{ui(),G(di,`_arrayWithoutHoles`)});function pi(e){if(typeof Symbol<`u`&&e[Symbol.iterator]!=null||e[`@@iterator`]!=null)return Array.from(e)}var mi=K(()=>{G(pi,`_iterableToArray`)});function hi(e,t){if(e){if(typeof e==`string`)return li(e,t);var n={}.toString.call(e).slice(8,-1);return n===`Object`&&e.constructor&&(n=e.constructor.name),n===`Map`||n===`Set`?Array.from(e):n===`Arguments`||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?li(e,t):void 0}}var gi=K(()=>{ui(),G(hi,`_unsupportedIterableToArray`)});function _i(){throw TypeError(`Invalid attempt to spread non-iterable instance.
193
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var vi=K(()=>{G(_i,`_nonIterableSpread`)});function yi(e){return di(e)||pi(e)||hi(e)||_i()}var bi=K(()=>{fi(),mi(),gi(),vi(),G(yi,`_toConsumableArray`)});function xi(e){"@babel/helpers - typeof";return xi=typeof Symbol==`function`&&typeof Symbol.iterator==`symbol`?function(e){return typeof e}:function(e){return e&&typeof Symbol==`function`&&e.constructor===Symbol&&e!==Symbol.prototype?`symbol`:typeof e},xi(e)}var Si=K(()=>{G(xi,`_typeof`)});function Ci(e,t){if(xi(e)!=`object`||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t||`default`);if(xi(r)!=`object`)return r;throw TypeError(`@@toPrimitive must return a primitive value.`)}return(t===`string`?String:Number)(e)}var wi=K(()=>{Si(),G(Ci,`toPrimitive`)});function Ti(e){var t=Ci(e,`string`);return xi(t)==`symbol`?t:t+``}var Ei=K(()=>{Si(),wi(),G(Ti,`toPropertyKey`)});function Di(e,t,n){return(t=Ti(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Oi=K(()=>{Ei(),G(Di,`_defineProperty`)});function ki(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function Ai(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]==null?{}:arguments[t];t%2?ki(Object(n),!0).forEach(function(t){Di(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ki(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}function ji(e){var t=e.length;if(t===0||t===1)return e;if(t===2)return[e[0],e[1],`${e[0]}.${e[1]}`,`${e[1]}.${e[0]}`];if(t===3)return[e[0],e[1],e[2],`${e[0]}.${e[1]}`,`${e[0]}.${e[2]}`,`${e[1]}.${e[0]}`,`${e[1]}.${e[2]}`,`${e[2]}.${e[0]}`,`${e[2]}.${e[1]}`,`${e[0]}.${e[1]}.${e[2]}`,`${e[0]}.${e[2]}.${e[1]}`,`${e[1]}.${e[0]}.${e[2]}`,`${e[1]}.${e[2]}.${e[0]}`,`${e[2]}.${e[0]}.${e[1]}`,`${e[2]}.${e[1]}.${e[0]}`];if(t>=4)return[e[0],e[1],e[2],e[3],`${e[0]}.${e[1]}`,`${e[0]}.${e[2]}`,`${e[0]}.${e[3]}`,`${e[1]}.${e[0]}`,`${e[1]}.${e[2]}`,`${e[1]}.${e[3]}`,`${e[2]}.${e[0]}`,`${e[2]}.${e[1]}`,`${e[2]}.${e[3]}`,`${e[3]}.${e[0]}`,`${e[3]}.${e[1]}`,`${e[3]}.${e[2]}`,`${e[0]}.${e[1]}.${e[2]}`,`${e[0]}.${e[1]}.${e[3]}`,`${e[0]}.${e[2]}.${e[1]}`,`${e[0]}.${e[2]}.${e[3]}`,`${e[0]}.${e[3]}.${e[1]}`,`${e[0]}.${e[3]}.${e[2]}`,`${e[1]}.${e[0]}.${e[2]}`,`${e[1]}.${e[0]}.${e[3]}`,`${e[1]}.${e[2]}.${e[0]}`,`${e[1]}.${e[2]}.${e[3]}`,`${e[1]}.${e[3]}.${e[0]}`,`${e[1]}.${e[3]}.${e[2]}`,`${e[2]}.${e[0]}.${e[1]}`,`${e[2]}.${e[0]}.${e[3]}`,`${e[2]}.${e[1]}.${e[0]}`,`${e[2]}.${e[1]}.${e[3]}`,`${e[2]}.${e[3]}.${e[0]}`,`${e[2]}.${e[3]}.${e[1]}`,`${e[3]}.${e[0]}.${e[1]}`,`${e[3]}.${e[0]}.${e[2]}`,`${e[3]}.${e[1]}.${e[0]}`,`${e[3]}.${e[1]}.${e[2]}`,`${e[3]}.${e[2]}.${e[0]}`,`${e[3]}.${e[2]}.${e[1]}`,`${e[0]}.${e[1]}.${e[2]}.${e[3]}`,`${e[0]}.${e[1]}.${e[3]}.${e[2]}`,`${e[0]}.${e[2]}.${e[1]}.${e[3]}`,`${e[0]}.${e[2]}.${e[3]}.${e[1]}`,`${e[0]}.${e[3]}.${e[1]}.${e[2]}`,`${e[0]}.${e[3]}.${e[2]}.${e[1]}`,`${e[1]}.${e[0]}.${e[2]}.${e[3]}`,`${e[1]}.${e[0]}.${e[3]}.${e[2]}`,`${e[1]}.${e[2]}.${e[0]}.${e[3]}`,`${e[1]}.${e[2]}.${e[3]}.${e[0]}`,`${e[1]}.${e[3]}.${e[0]}.${e[2]}`,`${e[1]}.${e[3]}.${e[2]}.${e[0]}`,`${e[2]}.${e[0]}.${e[1]}.${e[3]}`,`${e[2]}.${e[0]}.${e[3]}.${e[1]}`,`${e[2]}.${e[1]}.${e[0]}.${e[3]}`,`${e[2]}.${e[1]}.${e[3]}.${e[0]}`,`${e[2]}.${e[3]}.${e[0]}.${e[1]}`,`${e[2]}.${e[3]}.${e[1]}.${e[0]}`,`${e[3]}.${e[0]}.${e[1]}.${e[2]}`,`${e[3]}.${e[0]}.${e[2]}.${e[1]}`,`${e[3]}.${e[1]}.${e[0]}.${e[2]}`,`${e[3]}.${e[1]}.${e[2]}.${e[0]}`,`${e[3]}.${e[2]}.${e[0]}.${e[1]}`,`${e[3]}.${e[2]}.${e[1]}.${e[0]}`]}function Mi(e){if(e.length===0||e.length===1)return e;var t=e.join(`.`);return Li[t]||(Li[t]=ji(e)),Li[t]}function Ni(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=arguments.length>2?arguments[2]:void 0;return Mi(e.filter(function(e){return e!==`token`})).reduce(function(e,t){return Ai(Ai({},e),n[t])},t)}function Pi(e){return e.join(` `)}function Fi(e,t){var n=0;return function(r){return n+=1,r.map(function(r,i){return Ii({node:r,stylesheet:e,useInlineStyles:t,key:`code-segment-${n}-${i}`})})}}function Ii(e){var t=e.node,n=e.stylesheet,r=e.style,i=r===void 0?{}:r,a=e.useInlineStyles,s=e.key,c=t.properties,l=t.type,u=t.tagName,d=t.value;if(l===`text`)return d;if(u){var f=Fi(n,a),p;if(!a)p=Ai(Ai({},c),{},{className:Pi(c.className)});else{var m=Object.keys(n).reduce(function(e,t){return t.split(`.`).forEach(function(t){e.includes(t)||e.push(t)}),e},[]),h=c.className&&c.className.includes(`token`)?[`token`]:[],g=c.className&&h.concat(c.className.filter(function(e){return!m.includes(e)}));p=Ai(Ai({},c),{},{className:Pi(g)||void 0,style:Ni(c.className,Object.assign({},c.style,i),n)})}var _=f(t.children);return o.createElement(u,Jr({key:s},p),_)}}var Li,Ri=K(()=>{Yr(),Oi(),G(ki,`ownKeys`),G(Ai,`_objectSpread`),G(ji,`powerSetPermutations`),Li={},G(Mi,`getClassNameCombinations`),G(Ni,`createStyleObject`),G(Pi,`createClassNameString`),G(Fi,`createChildren`),G(Ii,`createElement`)}),zi,Bi=K(()=>{zi=G(function(e,t){return e.listLanguages().indexOf(t)!==-1},`default`)});function Vi(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function Hi(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]==null?{}:arguments[t];t%2?Vi(Object(n),!0).forEach(function(t){Di(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Vi(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}function Ui(e){return e.match(ra)}function Wi(e){var t=e.lines,n=e.startingLineNumber,r=e.style;return t.map(function(e,t){var i=t+n;return o.createElement(`span`,{key:`line-${t}`,className:`react-syntax-highlighter-line-number`,style:typeof r==`function`?r(i):r},`${i}
194
+ `)})}function Gi(e){var t=e.codeString,n=e.codeStyle,r=e.containerStyle,i=r===void 0?{float:`left`,paddingRight:`10px`}:r,a=e.numberStyle,s=a===void 0?{}:a,c=e.startingLineNumber;return o.createElement(`code`,{style:Object.assign({},n,i)},Wi({lines:t.replace(/\n$/,``).split(`
195
+ `),style:s,startingLineNumber:c}))}function Ki(e){return`${e.toString().length}.25em`}function qi(e,t){return{type:`element`,tagName:`span`,properties:{key:`line-number--${e}`,className:[`comment`,`linenumber`,`react-syntax-highlighter-line-number`],style:t},children:[{type:`text`,value:e}]}}function Ji(e,t,n){var r={display:`inline-block`,minWidth:Ki(n),paddingRight:`1em`,textAlign:`right`,userSelect:`none`},i=typeof e==`function`?e(t):e;return Hi(Hi({},r),i)}function Yi(e){var t=e.children,n=e.lineNumber,r=e.lineNumberStyle,i=e.largestLineNumber,a=e.showInlineLineNumbers,o=e.lineProps,s=o===void 0?{}:o,c=e.className,l=c===void 0?[]:c,u=e.showLineNumbers,d=e.wrapLongLines,f=typeof s==`function`?s(n):s;if(f.className=l,n&&a){var p=Ji(r,n,i);t.unshift(qi(n,p))}return d&u&&(f.style=Hi(Hi({},f.style),{},{display:`flex`})),{type:`element`,tagName:`span`,properties:f,children:t}}function Xi(e){for(var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:[],r=0;r<e.length;r++){var i=e[r];if(i.type===`text`)n.push(Yi({children:[i],className:yi(new Set(t))}));else if(i.children){var a=t.concat(i.properties.className);Xi(i.children,a).forEach(function(e){return n.push(e)})}}return n}function Zi(e,t,n,r,i,a,o,s,c){var l,u=Xi(e.value),d=[],f=-1,p=0;function m(e,t){return Yi({children:e,lineNumber:t,lineNumberStyle:s,largestLineNumber:o,showInlineLineNumbers:i,lineProps:n,className:arguments.length>2&&arguments[2]!==void 0?arguments[2]:[],showLineNumbers:r,wrapLongLines:c})}G(m,`createWrappedLine`);function h(e,t){if(r&&t&&i){var n=Ji(s,t,o);e.unshift(qi(t,n))}return e}G(h,`createUnwrappedLine`);function g(e,n){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:[];return t||r.length>0?m(e,n,r):h(e,n)}G(g,`createLine`);for(var _=G(function(){var e=u[p],t=e.children[0].value;if(Ui(t)){var n=t.split(`
196
+ `);n.forEach(function(t,i){var o=r&&d.length+a,s={type:`text`,value:`${t}
197
+ `};if(i===0){var c=g(u.slice(f+1,p).concat(Yi({children:[s],className:e.properties.className})),o);d.push(c)}else if(i===n.length-1){var l=u[p+1]&&u[p+1].children&&u[p+1].children[0],m={type:`text`,value:`${t}`};if(l){var h=Yi({children:[m],className:e.properties.className});u.splice(p+1,0,h)}else{var _=g([m],o,e.properties.className);d.push(_)}}else{var v=g([s],o,e.properties.className);d.push(v)}}),f=p}p++},`_loop`);p<u.length;)_();if(f!==u.length-1){var v=u.slice(f+1,u.length);if(v&&v.length){var y=g(v,r&&d.length+a);d.push(y)}}return t?d:(l=[]).concat.apply(l,d)}function Qi(e){var t=e.rows,n=e.stylesheet,r=e.useInlineStyles;return t.map(function(e,t){return Ii({node:e,stylesheet:n,useInlineStyles:r,key:`code-segement${t}`})})}function $i(e){return e&&typeof e.highlightAuto<`u`}function ea(e){var t=e.astGenerator,n=e.language,r=e.code,i=e.defaultCodeValue;if($i(t)){var a=zi(t,n);return n===`text`?{value:i,language:`text`}:a?t.highlight(n,r):t.highlightAuto(r)}try{return n&&n!==`text`?{value:t.highlight(r,n)}:{value:i}}catch{return{value:i}}}function ta(e,t){return G(function(n){var r=n.language,i=n.children,a=n.style,s=a===void 0?t:a,c=n.customStyle,l=c===void 0?{}:c,u=n.codeTagProps,d=u===void 0?{className:r?`language-${r}`:void 0,style:Hi(Hi({},s[`code[class*="language-"]`]),s[`code[class*="language-${r}"]`])}:u,f=n.useInlineStyles,p=f===void 0?!0:f,m=n.showLineNumbers,h=m===void 0?!1:m,g=n.showInlineLineNumbers,_=g===void 0?!0:g,v=n.startingLineNumber,y=v===void 0?1:v,b=n.lineNumberContainerStyle,x=n.lineNumberStyle,S=x===void 0?{}:x,C=n.wrapLines,w=n.wrapLongLines,T=w===void 0?!1:w,E=n.lineProps,D=E===void 0?{}:E,O=n.renderer,k=n.PreTag,ee=k===void 0?`pre`:k,A=n.CodeTag,j=A===void 0?`code`:A,te=n.code,ne=te===void 0?(Array.isArray(i)?i[0]:i)||``:te,re=n.astGenerator,ie=si(n,na);re||=e;var ae=h?o.createElement(Gi,{containerStyle:b,codeStyle:d.style||{},numberStyle:S,startingLineNumber:y,codeString:ne}):null,oe=s.hljs||s[`pre[class*="language-"]`]||{backgroundColor:`#fff`},se=$i(re)?`hljs`:`prismjs`,ce=p?Object.assign({},ie,{style:Object.assign({},oe,l)}):Object.assign({},ie,{className:ie.className?`${se} ${ie.className}`:se,style:Object.assign({},l)});if(T?d.style=Hi(Hi({},d.style),{},{whiteSpace:`pre-wrap`}):d.style=Hi(Hi({},d.style),{},{whiteSpace:`pre`}),!re)return o.createElement(ee,ce,ae,o.createElement(j,d,ne));(C===void 0&&O||T)&&(C=!0),O||=Qi;var le=[{type:`text`,value:ne}],M=ea({astGenerator:re,language:r,code:ne,defaultCodeValue:le});M.language===null&&(M.value=le);var ue=M.value.length+y,N=Zi(M,C,D,h,_,y,ue,S,T);return o.createElement(ee,ce,o.createElement(j,d,!_&&ae,O({rows:N,stylesheet:s,useInlineStyles:p})))},`SyntaxHighlighter`)}var na,ra,ia=K(()=>{ci(),bi(),Oi(),Ri(),Bi(),na=[`language`,`children`,`style`,`customStyle`,`codeTagProps`,`useInlineStyles`,`showLineNumbers`,`showInlineLineNumbers`,`startingLineNumber`,`lineNumberContainerStyle`,`lineNumberStyle`,`wrapLines`,`wrapLongLines`,`lineProps`,`renderer`,`PreTag`,`CodeTag`,`code`,`astGenerator`],G(Vi,`ownKeys`),G(Hi,`_objectSpread`),ra=/\n/g,G(Ui,`getNewLines`),G(Wi,`getAllLineNumbers`),G(Gi,`AllLineNumbers`),G(Ki,`getEmWidthOfNumber`),G(qi,`getInlineLineNumber`),G(Ji,`assembleLineNumberStyles`),G(Yi,`createLineElement`),G(Xi,`flattenCodeTree`),G(Zi,`processLines`),G(Qi,`defaultRenderer`),G($i,`isHighlightJs`),G(ea,`getCodeTree`),G(ta,`default`)}),aa=q((e,t)=>{t.exports=r;var n=Object.prototype.hasOwnProperty;function r(){for(var e={},t=0;t<arguments.length;t++){var r=arguments[t];for(var i in r)n.call(r,i)&&(e[i]=r[i])}return e}G(r,`extend`)}),oa=q((e,t)=>{t.exports=r;var n=r.prototype;n.space=null,n.normal={},n.property={};function r(e,t,n){this.property=e,this.normal=t,n&&(this.space=n)}G(r,`Schema`)}),sa=q((e,t)=>{var n=aa(),r=oa();t.exports=i;function i(e){for(var t=e.length,i=[],a=[],o=-1,s,c;++o<t;)s=e[o],i.push(s.property),a.push(s.normal),c=s.space;return new r(n.apply(null,i),n.apply(null,a),c)}G(i,`merge`)}),ca=q((e,t)=>{t.exports=n;function n(e){return e.toLowerCase()}G(n,`normalize`)}),la=q((e,t)=>{t.exports=r;var n=r.prototype;n.space=null,n.attribute=null,n.property=null,n.boolean=!1,n.booleanish=!1,n.overloadedBoolean=!1,n.number=!1,n.commaSeparated=!1,n.spaceSeparated=!1,n.commaOrSpaceSeparated=!1,n.mustUseProperty=!1,n.defined=!1;function r(e,t){this.property=e,this.attribute=t}G(r,`Info`)}),ua=q(e=>{var t=0;e.boolean=n(),e.booleanish=n(),e.overloadedBoolean=n(),e.number=n(),e.spaceSeparated=n(),e.commaSeparated=n(),e.commaOrSpaceSeparated=n();function n(){return 2**++t}G(n,`increment`)}),da=q((e,t)=>{var n=la(),r=ua();t.exports=o,o.prototype=new n,o.prototype.defined=!0;var i=[`boolean`,`booleanish`,`overloadedBoolean`,`number`,`commaSeparated`,`spaceSeparated`,`commaOrSpaceSeparated`],a=i.length;function o(e,t,o,c){var l=-1,u;for(s(this,`space`,c),n.call(this,e,t);++l<a;)u=i[l],s(this,u,(o&r[u])===r[u])}G(o,`DefinedInfo`);function s(e,t,n){n&&(e[t]=n)}G(s,`mark`)}),fa=q((e,t)=>{var n=ca(),r=oa(),i=da();t.exports=a;function a(e){var t=e.space,a=e.mustUseProperty||[],o=e.attributes||{},s=e.properties,c=e.transform,l={},u={},d,f;for(d in s)f=new i(d,c(o,d),s[d],t),a.indexOf(d)!==-1&&(f.mustUseProperty=!0),l[d]=f,u[n(d)]=d,u[n(f.attribute)]=d;return new r(l,u,t)}G(a,`create`)}),pa=q((e,t)=>{t.exports=fa()({space:`xlink`,transform:n,properties:{xLinkActuate:null,xLinkArcRole:null,xLinkHref:null,xLinkRole:null,xLinkShow:null,xLinkTitle:null,xLinkType:null}});function n(e,t){return`xlink:`+t.slice(5).toLowerCase()}G(n,`xlinkTransform`)}),ma=q((e,t)=>{t.exports=fa()({space:`xml`,transform:n,properties:{xmlLang:null,xmlBase:null,xmlSpace:null}});function n(e,t){return`xml:`+t.slice(3).toLowerCase()}G(n,`xmlTransform`)}),ha=q((e,t)=>{t.exports=n;function n(e,t){return t in e?e[t]:t}G(n,`caseSensitiveTransform`)}),ga=q((e,t)=>{var n=ha();t.exports=r;function r(e,t){return n(e,t.toLowerCase())}G(r,`caseInsensitiveTransform`)}),_a=q((e,t)=>{t.exports=fa()({space:`xmlns`,attributes:{xmlnsxlink:`xmlns:xlink`},transform:ga(),properties:{xmlns:null,xmlnsXLink:null}})}),va=q((e,t)=>{var n=ua(),r=fa(),i=n.booleanish,a=n.number,o=n.spaceSeparated;t.exports=r({transform:s,properties:{ariaActiveDescendant:null,ariaAtomic:i,ariaAutoComplete:null,ariaBusy:i,ariaChecked:i,ariaColCount:a,ariaColIndex:a,ariaColSpan:a,ariaControls:o,ariaCurrent:null,ariaDescribedBy:o,ariaDetails:null,ariaDisabled:i,ariaDropEffect:o,ariaErrorMessage:null,ariaExpanded:i,ariaFlowTo:o,ariaGrabbed:i,ariaHasPopup:null,ariaHidden:i,ariaInvalid:null,ariaKeyShortcuts:null,ariaLabel:null,ariaLabelledBy:o,ariaLevel:a,ariaLive:null,ariaModal:i,ariaMultiLine:i,ariaMultiSelectable:i,ariaOrientation:null,ariaOwns:o,ariaPlaceholder:null,ariaPosInSet:a,ariaPressed:i,ariaReadOnly:i,ariaRelevant:null,ariaRequired:i,ariaRoleDescription:o,ariaRowCount:a,ariaRowIndex:a,ariaRowSpan:a,ariaSelected:i,ariaSetSize:a,ariaSort:null,ariaValueMax:a,ariaValueMin:a,ariaValueNow:a,ariaValueText:null,role:null}});function s(e,t){return t===`role`?t:`aria-`+t.slice(4).toLowerCase()}G(s,`ariaTransform`)}),ya=q((e,t)=>{var n=ua(),r=fa(),i=ga(),a=n.boolean,o=n.overloadedBoolean,s=n.booleanish,c=n.number,l=n.spaceSeparated,u=n.commaSeparated;t.exports=r({space:`html`,attributes:{acceptcharset:`accept-charset`,classname:`class`,htmlfor:`for`,httpequiv:`http-equiv`},transform:i,mustUseProperty:[`checked`,`multiple`,`muted`,`selected`],properties:{abbr:null,accept:u,acceptCharset:l,accessKey:l,action:null,allow:null,allowFullScreen:a,allowPaymentRequest:a,allowUserMedia:a,alt:null,as:null,async:a,autoCapitalize:null,autoComplete:l,autoFocus:a,autoPlay:a,capture:a,charSet:null,checked:a,cite:null,className:l,cols:c,colSpan:null,content:null,contentEditable:s,controls:a,controlsList:l,coords:c|u,crossOrigin:null,data:null,dateTime:null,decoding:null,default:a,defer:a,dir:null,dirName:null,disabled:a,download:o,draggable:s,encType:null,enterKeyHint:null,form:null,formAction:null,formEncType:null,formMethod:null,formNoValidate:a,formTarget:null,headers:l,height:c,hidden:a,high:c,href:null,hrefLang:null,htmlFor:l,httpEquiv:l,id:null,imageSizes:null,imageSrcSet:u,inputMode:null,integrity:null,is:null,isMap:a,itemId:null,itemProp:l,itemRef:l,itemScope:a,itemType:l,kind:null,label:null,lang:null,language:null,list:null,loading:null,loop:a,low:c,manifest:null,max:null,maxLength:c,media:null,method:null,min:null,minLength:c,multiple:a,muted:a,name:null,nonce:null,noModule:a,noValidate:a,onAbort:null,onAfterPrint:null,onAuxClick:null,onBeforePrint:null,onBeforeUnload:null,onBlur:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onContextMenu: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,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:a,optimum:c,pattern:null,ping:l,placeholder:null,playsInline:a,poster:null,preload:null,readOnly:a,referrerPolicy:null,rel:l,required:a,reversed:a,rows:c,rowSpan:c,sandbox:l,scope:null,scoped:a,seamless:a,selected:a,shape:null,size:c,sizes:null,slot:null,span:c,spellCheck:s,src:null,srcDoc:null,srcLang:null,srcSet:u,start:c,step:null,style:null,tabIndex:c,target:null,title:null,translate:null,type:null,typeMustMatch:a,useMap:null,value:s,width:c,wrap:null,align:null,aLink:null,archive:l,axis:null,background:null,bgColor:null,border:c,borderColor:null,bottomMargin:c,cellPadding:null,cellSpacing:null,char:null,charOff:null,classId:null,clear:null,code:null,codeBase:null,codeType:null,color:null,compact:a,declare:a,event:null,face:null,frame:null,frameBorder:null,hSpace:c,leftMargin:c,link:null,longDesc:null,lowSrc:null,marginHeight:c,marginWidth:c,noResize:a,noHref:a,noShade:a,noWrap:a,object:null,profile:null,prompt:null,rev:null,rightMargin:c,rules:null,scheme:null,scrolling:s,standby:null,summary:null,text:null,topMargin:c,valueType:null,version:null,vAlign:null,vLink:null,vSpace:c,allowTransparency:null,autoCorrect:null,autoSave:null,disablePictureInPicture:a,disableRemotePlayback:a,prefix:null,property:null,results:c,security:null,unselectable:null}})}),ba=q((e,t)=>{var n=sa(),r=pa();t.exports=n([ma(),r,_a(),va(),ya()])}),xa=q((e,t)=>{var n=ca(),r=da(),i=la(),a=`data`;t.exports=l;var o=/^data[-\w.:]+$/i,s=/-[a-z]/g,c=/[A-Z]/g;function l(e,t){var s=n(t),c=t,l=i;return s in e.normal?e.property[e.normal[s]]:(s.length>4&&s.slice(0,4)===a&&o.test(t)&&(t.charAt(4)===`-`?c=u(t):t=d(t),l=r),new l(c,t))}G(l,`find`);function u(e){var t=e.slice(5).replace(s,p);return a+t.charAt(0).toUpperCase()+t.slice(1)}G(u,`datasetToProperty`);function d(e){var t=e.slice(4);return s.test(t)?e:(t=t.replace(c,f),t.charAt(0)!==`-`&&(t=`-`+t),a+t)}G(d,`datasetToAttribute`);function f(e){return`-`+e.toLowerCase()}G(f,`kebab`);function p(e){return e.charAt(1).toUpperCase()}G(p,`camelcase`)}),Sa=q((e,t)=>{t.exports=r;var n=/[#.]/g;function r(e,t){for(var r=e||``,i=t||`div`,a={},o=0,s,c,l;o<r.length;)n.lastIndex=o,l=n.exec(r),s=r.slice(o,l?l.index:r.length),s&&(c?c===`#`?a.id=s:a.className?a.className.push(s):a.className=[s]:i=s,o+=s.length),l&&(c=l[0],o++);return{type:`element`,tagName:i,properties:a,children:[]}}G(r,`parse`)}),Ca=q(e=>{e.parse=i,e.stringify=a;var t=``,n=` `,r=/[ \t\n\r\f]+/g;function i(e){var n=String(e||t).trim();return n===t?[]:n.split(r)}G(i,`parse`);function a(e){return e.join(n).trim()}G(a,`stringify`)}),wa=q(e=>{e.parse=i,e.stringify=a;var t=`,`,n=` `,r=``;function i(e){for(var n=[],i=String(e||r),a=i.indexOf(t),o=0,s=!1,c;!s;)a===-1&&(a=i.length,s=!0),c=i.slice(o,a).trim(),(c||!s)&&n.push(c),o=a+1,a=i.indexOf(t,o);return n}G(i,`parse`);function a(e,i){var a=i||{},o=a.padLeft===!1?r:n,s=a.padRight?n:r;return e[e.length-1]===r&&(e=e.concat(r)),e.join(s+t+o).trim()}G(a,`stringify`)}),Ta=q((e,t)=>{var n=xa(),r=ca(),i=Sa(),a=Ca().parse,o=wa().parse;t.exports=c;var s={}.hasOwnProperty;function c(e,t,r){var c=r?h(r):null;return u;function u(e,n){var r=i(e,t),a=Array.prototype.slice.call(arguments,2),o=r.tagName.toLowerCase(),u;if(r.tagName=c&&s.call(c,o)?c[o]:o,n&&l(n,r)&&(a.unshift(n),n=null),n)for(u in n)p(r.properties,u,n[u]);return d(r.children,a),r.tagName===`template`&&(r.content={type:`root`,children:r.children},r.children=[]),r}function p(t,r,i){var s,c,l;i==null||i!==i||(s=n(e,r),c=s.property,l=i,typeof l==`string`&&(s.spaceSeparated?l=a(l):s.commaSeparated?l=o(l):s.commaOrSpaceSeparated&&(l=a(o(l).join(` `)))),c===`style`&&typeof i!=`string`&&(l=m(l)),c===`className`&&t.className&&(l=t.className.concat(l)),t[c]=f(s,c,l))}}G(c,`factory`);function l(e,t){return typeof e==`string`||`length`in e||u(t.tagName,e)}G(l,`isChildren`);function u(e,t){var n=t.type;return e===`input`||!n||typeof n!=`string`?!1:typeof t.children==`object`&&`length`in t.children?!0:(n=n.toLowerCase(),e===`button`?n!==`menu`&&n!==`submit`&&n!==`reset`&&n!==`button`:`value`in t)}G(u,`isNode`);function d(e,t){var n,r;if(typeof t==`string`||typeof t==`number`){e.push({type:`text`,value:String(t)});return}if(typeof t==`object`&&`length`in t){for(n=-1,r=t.length;++n<r;)d(e,t[n]);return}if(typeof t!=`object`||!(`type`in t))throw Error("Expected node, nodes, or string, got `"+t+"`");e.push(t)}G(d,`addChild`);function f(e,t,n){var r,i,a;if(typeof n!=`object`||!(`length`in n))return p(e,t,n);for(i=n.length,r=-1,a=[];++r<i;)a[r]=p(e,t,n[r]);return a}G(f,`parsePrimitives`);function p(e,t,n){var i=n;return e.number||e.positiveNumber?!isNaN(i)&&i!==``&&(i=Number(i)):(e.boolean||e.overloadedBoolean)&&typeof i==`string`&&(i===``||r(n)===r(t))&&(i=!0),i}G(p,`parsePrimitive`);function m(e){var t=[],n;for(n in e)t.push([n,e[n]].join(`: `));return t.join(`; `)}G(m,`style`);function h(e){for(var t=e.length,n=-1,r={},i;++n<t;)i=e[n],r[i.toLowerCase()]=i;return r}G(h,`createAdjustMap`)}),Ea=q((e,t)=>{var n=ba(),r=Ta()(n,`div`);r.displayName=`html`,t.exports=r}),Da=q((e,t)=>{t.exports=Ea()}),Oa=q((e,t)=>{t.exports={AElig:`Æ`,AMP:`&`,Aacute:`Á`,Acirc:`Â`,Agrave:`À`,Aring:`Å`,Atilde:`Ã`,Auml:`Ä`,COPY:`©`,Ccedil:`Ç`,ETH:`Ð`,Eacute:`É`,Ecirc:`Ê`,Egrave:`È`,Euml:`Ë`,GT:`>`,Iacute:`Í`,Icirc:`Î`,Igrave:`Ì`,Iuml:`Ï`,LT:`<`,Ntilde:`Ñ`,Oacute:`Ó`,Ocirc:`Ô`,Ograve:`Ò`,Oslash:`Ø`,Otilde:`Õ`,Ouml:`Ö`,QUOT:`"`,REG:`®`,THORN:`Þ`,Uacute:`Ú`,Ucirc:`Û`,Ugrave:`Ù`,Uuml:`Ü`,Yacute:`Ý`,aacute:`á`,acirc:`â`,acute:`´`,aelig:`æ`,agrave:`à`,amp:`&`,aring:`å`,atilde:`ã`,auml:`ä`,brvbar:`¦`,ccedil:`ç`,cedil:`¸`,cent:`¢`,copy:`©`,curren:`¤`,deg:`°`,divide:`÷`,eacute:`é`,ecirc:`ê`,egrave:`è`,eth:`ð`,euml:`ë`,frac12:`½`,frac14:`¼`,frac34:`¾`,gt:`>`,iacute:`í`,icirc:`î`,iexcl:`¡`,igrave:`ì`,iquest:`¿`,iuml:`ï`,laquo:`«`,lt:`<`,macr:`¯`,micro:`µ`,middot:`·`,nbsp:`\xA0`,not:`¬`,ntilde:`ñ`,oacute:`ó`,ocirc:`ô`,ograve:`ò`,ordf:`ª`,ordm:`º`,oslash:`ø`,otilde:`õ`,ouml:`ö`,para:`¶`,plusmn:`±`,pound:`£`,quot:`"`,raquo:`»`,reg:`®`,sect:`§`,shy:`­`,sup1:`¹`,sup2:`²`,sup3:`³`,szlig:`ß`,thorn:`þ`,times:`×`,uacute:`ú`,ucirc:`û`,ugrave:`ù`,uml:`¨`,uuml:`ü`,yacute:`ý`,yen:`¥`,yuml:`ÿ`}}),ka=q((e,t)=>{t.exports={0:`�`,128:`€`,130:`‚`,131:`ƒ`,132:`„`,133:`…`,134:`†`,135:`‡`,136:`ˆ`,137:`‰`,138:`Š`,139:`‹`,140:`Œ`,142:`Ž`,145:`‘`,146:`’`,147:`“`,148:`”`,149:`•`,150:`–`,151:`—`,152:`˜`,153:`™`,154:`š`,155:`›`,156:`œ`,158:`ž`,159:`Ÿ`}}),Aa=q((e,t)=>{t.exports=n;function n(e){var t=typeof e==`string`?e.charCodeAt(0):e;return t>=48&&t<=57}G(n,`decimal`)}),ja=q((e,t)=>{t.exports=n;function n(e){var t=typeof e==`string`?e.charCodeAt(0):e;return t>=97&&t<=102||t>=65&&t<=70||t>=48&&t<=57}G(n,`hexadecimal`)}),Ma=q((e,t)=>{t.exports=n;function n(e){var t=typeof e==`string`?e.charCodeAt(0):e;return t>=97&&t<=122||t>=65&&t<=90}G(n,`alphabetical`)}),Na=q((e,t)=>{var n=Ma(),r=Aa();t.exports=i;function i(e){return n(e)||r(e)}G(i,`alphanumerical`)}),Pa=q((e,t)=>{var n,r=59;t.exports=i;function i(e){var t=`&`+e+`;`,i;return n||=document.createElement(`i`),n.innerHTML=t,i=n.textContent,i.charCodeAt(i.length-1)===r&&e!==`semi`||i===t?!1:i}G(i,`decodeEntity`)}),Fa=q((e,t)=>{var n=Oa(),r=ka(),i=Aa(),a=ja(),o=Na(),s=Pa();t.exports=ae;var c={}.hasOwnProperty,l=String.fromCharCode,u=Function.prototype,d={warning:null,reference:null,text:null,warningContext:null,referenceContext:null,textContext:null,position:{},additional:null,attribute:!1,nonTerminated:!0},f=9,p=10,m=12,h=32,g=38,_=59,v=60,y=61,b=35,x=88,S=120,C=65533,w=`named`,T=`hexadecimal`,E=`decimal`,D={};D[T]=16,D[E]=10;var O={};O[w]=o,O[E]=i,O[T]=a;var k=1,ee=2,A=3,j=4,te=5,ne=6,re=7,ie={};ie[k]=`Named character references must be terminated by a semicolon`,ie[ee]=`Numeric character references must be terminated by a semicolon`,ie[A]=`Named character references cannot be empty`,ie[j]=`Numeric character references cannot be empty`,ie[te]=`Named character references must be known`,ie[ne]=`Numeric character references cannot be disallowed`,ie[re]=`Numeric character references cannot be outside the permissible Unicode range`;function ae(e,t){var n={},r,i;for(i in t||={},d)r=t[i],n[i]=r??d[i];return(n.position.indent||n.position.start)&&(n.indent=n.position.indent||[],n.position=n.position.start),oe(e,n)}G(ae,`parseEntities`);function oe(e,t){var i=t.additional,a=t.nonTerminated,d=t.text,ae=t.reference,oe=t.warning,le=t.textContext,M=t.referenceContext,ue=t.warningContext,N=t.position,de=t.indent||[],P=e.length,fe=0,pe=-1,me=N.column||1,he=N.line||1,ge=``,_e=[],F,I,ve,L,ye,R,z,B,be,xe,Se,Ce,we,Te,Ee,De,Oe,ke,V;for(typeof i==`string`&&(i=i.charCodeAt(0)),De=Ae(),B=oe?je:u,fe--,P++;++fe<P;)if(ye===p&&(me=de[pe]||1),ye=e.charCodeAt(fe),ye===g){if(z=e.charCodeAt(fe+1),z===f||z===p||z===m||z===h||z===g||z===v||z!==z||i&&z===i){ge+=l(ye),me++;continue}for(we=fe+1,Ce=we,V=we,z===b?(V=++Ce,z=e.charCodeAt(V),z===x||z===S?(Te=T,V=++Ce):Te=E):Te=w,F=``,Se=``,L=``,Ee=O[Te],V--;++V<P&&(z=e.charCodeAt(V),Ee(z));)L+=l(z),Te===w&&c.call(n,L)&&(F=L,Se=n[L]);ve=e.charCodeAt(V)===_,ve&&(V++,I=Te===w?s(L):!1,I&&(F=L,Se=I)),ke=1+V-we,!ve&&!a||(L?Te===w?(ve&&!Se?B(te,1):(F!==L&&(V=Ce+F.length,ke=1+V-Ce,ve=!1),ve||(be=F?k:A,t.attribute?(z=e.charCodeAt(V),z===y?(B(be,ke),Se=null):o(z)?Se=null:B(be,ke)):B(be,ke))),R=Se):(ve||B(ee,ke),R=parseInt(L,D[Te]),se(R)?(B(re,ke),R=l(C)):R in r?(B(ne,ke),R=r[R]):(xe=``,ce(R)&&B(ne,ke),R>65535&&(R-=65536,xe+=l(R>>>10|55296),R=56320|R&1023),R=xe+l(R))):Te!==w&&B(j,ke)),R?(Me(),De=Ae(),fe=V-1,me+=V-we+1,_e.push(R),Oe=Ae(),Oe.offset++,ae&&ae.call(M,R,{start:De,end:Oe},e.slice(we-1,V)),De=Oe):(L=e.slice(we-1,V),ge+=L,me+=L.length,fe=V-1)}else ye===10&&(he++,pe++,me=0),ye===ye?(ge+=l(ye),me++):Me();return _e.join(``);function Ae(){return{line:he,column:me,offset:fe+(N.offset||0)}}function je(e,t){var n=Ae();n.column+=t,n.offset+=t,oe.call(ue,ie[e],n,e)}function Me(){ge&&=(_e.push(ge),d&&d.call(le,ge,{start:De,end:Ae()}),``)}}G(oe,`parse`);function se(e){return e>=55296&&e<=57343||e>1114111}G(se,`prohibited`);function ce(e){return e>=1&&e<=8||e===11||e>=13&&e<=31||e>=127&&e<=159||e>=64976&&e<=65007||(e&65535)==65535||(e&65535)==65534}G(ce,`disallowed`)}),Ia=q((e,t)=>{var n=function(e){var t=/(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i,n=0,r={},i={manual:e.Prism&&e.Prism.manual,disableWorkerMessageHandler:e.Prism&&e.Prism.disableWorkerMessageHandler,util:{encode:G(function e(t){return t instanceof a?new a(t.type,e(t.content),t.alias):Array.isArray(t)?t.map(e):t.replace(/&/g,`&amp;`).replace(/</g,`&lt;`).replace(/\u00a0/g,` `)},`encode`),type:G(function(e){return Object.prototype.toString.call(e).slice(8,-1)},`type`),objId:G(function(e){return e.__id||Object.defineProperty(e,`__id`,{value:++n}),e.__id},`objId`),clone:G(function e(t,n){n||={};var r,a;switch(i.util.type(t)){case`Object`:if(a=i.util.objId(t),n[a])return n[a];for(var o in r={},n[a]=r,t)t.hasOwnProperty(o)&&(r[o]=e(t[o],n));return r;case`Array`:return a=i.util.objId(t),n[a]?n[a]:(r=[],n[a]=r,t.forEach(function(t,i){r[i]=e(t,n)}),r);default:return t}},`deepClone`),getLanguage:G(function(e){for(;e;){var n=t.exec(e.className);if(n)return n[1].toLowerCase();e=e.parentElement}return`none`},`getLanguage`),setLanguage:G(function(e,n){e.className=e.className.replace(RegExp(t,`gi`),``),e.classList.add(`language-`+n)},`setLanguage`),currentScript:G(function(){if(typeof document>`u`)return null;if(`currentScript`in document)return document.currentScript;try{throw Error()}catch(r){var e=(/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(r.stack)||[])[1];if(e){var t=document.getElementsByTagName(`script`);for(var n in t)if(t[n].src==e)return t[n]}return null}},`currentScript`),isActive:G(function(e,t,n){for(var r=`no-`+t;e;){var i=e.classList;if(i.contains(t))return!0;if(i.contains(r))return!1;e=e.parentElement}return!!n},`isActive`)},languages:{plain:r,plaintext:r,text:r,txt:r,extend:G(function(e,t){var n=i.util.clone(i.languages[e]);for(var r in t)n[r]=t[r];return n},`extend`),insertBefore:G(function(e,t,n,r){r||=i.languages;var a=r[e],o={};for(var s in a)if(a.hasOwnProperty(s)){if(s==t)for(var c in n)n.hasOwnProperty(c)&&(o[c]=n[c]);n.hasOwnProperty(s)||(o[s]=a[s])}var l=r[e];return r[e]=o,i.languages.DFS(i.languages,function(t,n){n===l&&t!=e&&(this[t]=o)}),o},`insertBefore`),DFS:G(function e(t,n,r,a){a||={};var o=i.util.objId;for(var s in t)if(t.hasOwnProperty(s)){n.call(t,s,t[s],r||s);var c=t[s],l=i.util.type(c);l===`Object`&&!a[o(c)]?(a[o(c)]=!0,e(c,n,null,a)):l===`Array`&&!a[o(c)]&&(a[o(c)]=!0,e(c,n,s,a))}},`DFS`)},plugins:{},highlightAll:G(function(e,t){i.highlightAllUnder(document,e,t)},`highlightAll`),highlightAllUnder:G(function(e,t,n){var r={callback:n,container:e,selector:`code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code`};i.hooks.run(`before-highlightall`,r),r.elements=Array.prototype.slice.apply(r.container.querySelectorAll(r.selector)),i.hooks.run(`before-all-elements-highlight`,r);for(var a=0,o;o=r.elements[a++];)i.highlightElement(o,t===!0,r.callback)},`highlightAllUnder`),highlightElement:G(function(t,n,r){var a=i.util.getLanguage(t),o=i.languages[a];i.util.setLanguage(t,a);var s=t.parentElement;s&&s.nodeName.toLowerCase()===`pre`&&i.util.setLanguage(s,a);var c={element:t,language:a,grammar:o,code:t.textContent};function l(e){c.highlightedCode=e,i.hooks.run(`before-insert`,c),c.element.innerHTML=c.highlightedCode,i.hooks.run(`after-highlight`,c),i.hooks.run(`complete`,c),r&&r.call(c.element)}if(G(l,`insertHighlightedCode`),i.hooks.run(`before-sanity-check`,c),s=c.element.parentElement,s&&s.nodeName.toLowerCase()===`pre`&&!s.hasAttribute(`tabindex`)&&s.setAttribute(`tabindex`,`0`),!c.code){i.hooks.run(`complete`,c),r&&r.call(c.element);return}if(i.hooks.run(`before-highlight`,c),!c.grammar){l(i.util.encode(c.code));return}if(n&&e.Worker){var u=new Worker(i.filename);u.onmessage=function(e){l(e.data)},u.postMessage(JSON.stringify({language:c.language,code:c.code,immediateClose:!0}))}else l(i.highlight(c.code,c.grammar,c.language))},`highlightElement`),highlight:G(function(e,t,n){var r={code:e,grammar:t,language:n};if(i.hooks.run(`before-tokenize`,r),!r.grammar)throw Error(`The language "`+r.language+`" has no grammar.`);return r.tokens=i.tokenize(r.code,r.grammar),i.hooks.run(`after-tokenize`,r),a.stringify(i.util.encode(r.tokens),r.language)},`highlight`),tokenize:G(function(e,t){var n=t.rest;if(n){for(var r in n)t[r]=n[r];delete t.rest}var i=new c;return l(i,i.head,e),s(e,i,t,i.head,0),d(i)},`tokenize`),hooks:{all:{},add:G(function(e,t){var n=i.hooks.all;n[e]=n[e]||[],n[e].push(t)},`add`),run:G(function(e,t){var n=i.hooks.all[e];if(!(!n||!n.length))for(var r=0,a;a=n[r++];)a(t)},`run`)},Token:a};e.Prism=i;function a(e,t,n,r){this.type=e,this.content=t,this.alias=n,this.length=(r||``).length|0}G(a,`Token`),a.stringify=G(function e(t,n){if(typeof t==`string`)return t;if(Array.isArray(t)){var r=``;return t.forEach(function(t){r+=e(t,n)}),r}var a={type:t.type,content:e(t.content,n),tag:`span`,classes:[`token`,t.type],attributes:{},language:n},o=t.alias;o&&(Array.isArray(o)?Array.prototype.push.apply(a.classes,o):a.classes.push(o)),i.hooks.run(`wrap`,a);var s=``;for(var c in a.attributes)s+=` `+c+`="`+(a.attributes[c]||``).replace(/"/g,`&quot;`)+`"`;return`<`+a.tag+` class="`+a.classes.join(` `)+`"`+s+`>`+a.content+`</`+a.tag+`>`},`stringify`);function o(e,t,n,r){e.lastIndex=t;var i=e.exec(n);if(i&&r&&i[1]){var a=i[1].length;i.index+=a,i[0]=i[0].slice(a)}return i}G(o,`matchPattern`);function s(e,t,n,r,c,d){for(var f in n)if(!(!n.hasOwnProperty(f)||!n[f])){var p=n[f];p=Array.isArray(p)?p:[p];for(var m=0;m<p.length;++m){if(d&&d.cause==f+`,`+m)return;var h=p[m],g=h.inside,_=!!h.lookbehind,v=!!h.greedy,y=h.alias;if(v&&!h.pattern.global){var b=h.pattern.toString().match(/[imsuy]*$/)[0];h.pattern=RegExp(h.pattern.source,b+`g`)}for(var x=h.pattern||h,S=r.next,C=c;S!==t.tail&&!(d&&C>=d.reach);C+=S.value.length,S=S.next){var w=S.value;if(t.length>e.length)return;if(!(w instanceof a)){var T=1,E;if(v){if(E=o(x,C,e,_),!E||E.index>=e.length)break;var D=E.index,O=E.index+E[0].length,k=C;for(k+=S.value.length;D>=k;)S=S.next,k+=S.value.length;if(k-=S.value.length,C=k,S.value instanceof a)continue;for(var ee=S;ee!==t.tail&&(k<O||typeof ee.value==`string`);ee=ee.next)T++,k+=ee.value.length;T--,w=e.slice(C,k),E.index-=C}else if(E=o(x,0,w,_),!E)continue;var D=E.index,A=E[0],j=w.slice(0,D),te=w.slice(D+A.length),ne=C+w.length;d&&ne>d.reach&&(d.reach=ne);var re=S.prev;j&&(re=l(t,re,j),C+=j.length),u(t,re,T);var ie=new a(f,g?i.tokenize(A,g):A,y,A);if(S=l(t,re,ie),te&&l(t,S,te),T>1){var ae={cause:f+`,`+m,reach:ne};s(e,t,n,S.prev,C,ae),d&&ae.reach>d.reach&&(d.reach=ae.reach)}}}}}}G(s,`matchGrammar`);function c(){var e={value:null,prev:null,next:null},t={value:null,prev:e,next:null};e.next=t,this.head=e,this.tail=t,this.length=0}G(c,`LinkedList`);function l(e,t,n){var r=t.next,i={value:n,prev:t,next:r};return t.next=i,r.prev=i,e.length++,i}G(l,`addAfter`);function u(e,t,n){for(var r=t.next,i=0;i<n&&r!==e.tail;i++)r=r.next;t.next=r,r.prev=t,e.length-=i}G(u,`removeRange`);function d(e){for(var t=[],n=e.head.next;n!==e.tail;)t.push(n.value),n=n.next;return t}if(G(d,`toArray`),!e.document)return e.addEventListener&&(i.disableWorkerMessageHandler||e.addEventListener(`message`,function(t){var n=JSON.parse(t.data),r=n.language,a=n.code,o=n.immediateClose;e.postMessage(i.highlight(a,i.languages[r],r)),o&&e.close()},!1)),i;var f=i.util.currentScript();f&&(i.filename=f.src,f.hasAttribute(`data-manual`)&&(i.manual=!0));function p(){i.manual||i.highlightAll()}if(G(p,`highlightAutomaticallyCallback`),!i.manual){var m=document.readyState;m===`loading`||m===`interactive`&&f&&f.defer?document.addEventListener(`DOMContentLoaded`,p):window.requestAnimationFrame?window.requestAnimationFrame(p):window.setTimeout(p,16)}return i}(typeof window<`u`?window:typeof WorkerGlobalScope<`u`&&self instanceof WorkerGlobalScope?self:{});typeof t<`u`&&t.exports&&(t.exports=n),typeof global<`u`&&(global.Prism=n)}),La=q((e,t)=>{t.exports=n,n.displayName=`markup`,n.aliases=[`html`,`mathml`,`svg`,`xml`,`ssml`,`atom`,`rss`];function n(e){e.languages.markup={comment:{pattern:/<!--(?:(?!<!--)[\s\S])*?-->/,greedy:!0},prolog:{pattern:/<\?[\s\S]+?\?>/,greedy:!0},doctype:{pattern:/<!DOCTYPE(?:[^>"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:[^<"'\]]|"[^"]*"|'[^']*'|<(?!!--)|<!--(?:[^-]|-(?!->))*-->)*\]\s*)?>/i,greedy:!0,inside:{"internal-subset":{pattern:/(^[^\[]*\[)[\s\S]+(?=\]>$)/,lookbehind:!0,greedy:!0,inside:null},string:{pattern:/"[^"]*"|'[^']*'/,greedy:!0},punctuation:/^<!|>$|[[\]]/,"doctype-tag":/^DOCTYPE/i,name:/[^\s<>'"]+/}},cdata:{pattern:/<!\[CDATA\[[\s\S]*?\]\]>/i,greedy:!0},tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"special-attr":[],"attr-value":{pattern:/=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/,inside:{punctuation:[{pattern:/^=/,alias:`attr-equals`},/"|'/]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:[{pattern:/&[\da-z]{1,8};/i,alias:`named-entity`},/&#x?[\da-f]{1,8};/i]},e.languages.markup.tag.inside[`attr-value`].inside.entity=e.languages.markup.entity,e.languages.markup.doctype.inside[`internal-subset`].inside=e.languages.markup,e.hooks.add(`wrap`,function(e){e.type===`entity`&&(e.attributes.title=e.content.value.replace(/&amp;/,`&`))}),Object.defineProperty(e.languages.markup.tag,`addInlined`,{value:G(function(t,n){var r={};r[`language-`+n]={pattern:/(^<!\[CDATA\[)[\s\S]+?(?=\]\]>$)/i,lookbehind:!0,inside:e.languages[n]},r.cdata=/^<!\[CDATA\[|\]\]>$/i;var i={"included-cdata":{pattern:/<!\[CDATA\[[\s\S]*?\]\]>/i,inside:r}};i[`language-`+n]={pattern:/[\s\S]+/,inside:e.languages[n]};var a={};a[t]={pattern:RegExp(`(<__[^>]*>)(?:<!\\[CDATA\\[(?:[^\\]]|\\](?!\\]>))*\\]\\]>|(?!<!\\[CDATA\\[)[\\s\\S])*?(?=<\\/__>)`.replace(/__/g,function(){return t}),`i`),lookbehind:!0,greedy:!0,inside:i},e.languages.insertBefore(`markup`,`cdata`,a)},`addInlined`)}),Object.defineProperty(e.languages.markup.tag,`addAttribute`,{value:G(function(t,n){e.languages.markup.tag.inside[`special-attr`].push({pattern:RegExp(`(^|["'\\s])(?:`+t+`)\\s*=\\s*(?:"[^"]*"|'[^']*'|[^\\s'">=]+(?=[\\s>]))`,`i`),lookbehind:!0,inside:{"attr-name":/^[^\s=]+/,"attr-value":{pattern:/=[\s\S]+/,inside:{value:{pattern:/(^=\s*(["']|(?!["'])))\S[\s\S]*(?=\2$)/,lookbehind:!0,alias:[n,`language-`+n],inside:e.languages[n]},punctuation:[{pattern:/^=/,alias:`attr-equals`},/"|'/]}}}})},`value`)}),e.languages.html=e.languages.markup,e.languages.mathml=e.languages.markup,e.languages.svg=e.languages.markup,e.languages.xml=e.languages.extend(`markup`,{}),e.languages.ssml=e.languages.xml,e.languages.atom=e.languages.xml,e.languages.rss=e.languages.xml}G(n,`markup`)}),Ra=q((e,t)=>{t.exports=n,n.displayName=`css`,n.aliases=[];function n(e){(function(e){var t=/(?:"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n])*')/;e.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:/@[\w-](?:[^;{\s]|\s+(?![\s{]))*(?:;|(?=\s*\{))/,inside:{rule:/^@[\w-]+/,"selector-function-argument":{pattern:/(\bselector\s*\(\s*(?![\s)]))(?:[^()\s]|\s+(?![\s)])|\((?:[^()]|\([^()]*\))*\))+(?=\s*\))/,lookbehind:!0,alias:`selector`},keyword:{pattern:/(^|[^\w-])(?:and|not|only|or)(?![\w-])/,lookbehind:!0}}},url:{pattern:RegExp(`\\burl\\((?:`+t.source+`|(?:[^\\\\\\r\\n()"']|\\\\[\\s\\S])*)\\)`,`i`),greedy:!0,inside:{function:/^url/i,punctuation:/^\(|\)$/,string:{pattern:RegExp(`^`+t.source+`$`),alias:`url`}}},selector:{pattern:RegExp(`(^|[{}\\s])[^{}\\s](?:[^{};"'\\s]|\\s+(?![\\s{])|`+t.source+`)*(?=\\s*\\{)`),lookbehind:!0},string:{pattern:t,greedy:!0},property:{pattern:/(^|[^-\w\xA0-\uFFFF])(?!\s)[-_a-z\xA0-\uFFFF](?:(?!\s)[-\w\xA0-\uFFFF])*(?=\s*:)/i,lookbehind:!0},important:/!important\b/i,function:{pattern:/(^|[^-a-z0-9])[-a-z0-9]+(?=\()/i,lookbehind:!0},punctuation:/[(){};:,]/},e.languages.css.atrule.inside.rest=e.languages.css;var n=e.languages.markup;n&&(n.tag.addInlined(`style`,`css`),n.tag.addAttribute(`style`,`css`))})(e)}G(n,`css`)}),za=q((e,t)=>{t.exports=n,n.displayName=`clike`,n.aliases=[];function n(e){e.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0,greedy:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/(\b(?:class|extends|implements|instanceof|interface|new|trait)\s+|\bcatch\s+\()[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:break|catch|continue|do|else|finally|for|function|if|in|instanceof|new|null|return|throw|try|while)\b/,boolean:/\b(?:false|true)\b/,function:/\b\w+(?=\()/,number:/\b0x[\da-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,punctuation:/[{}[\];(),.:]/}}G(n,`clike`)}),Ba=q((e,t)=>{t.exports=n,n.displayName=`javascript`,n.aliases=[`js`];function n(e){e.languages.javascript=e.languages.extend(`clike`,{"class-name":[e.languages.clike[`class-name`],{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$A-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\.(?:constructor|prototype))/,lookbehind:!0}],keyword:[{pattern:/((?:^|\})\s*)catch\b/,lookbehind:!0},{pattern:/(^|[^.]|\.\.\.\s*)\b(?:as|assert(?=\s*\{)|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally(?=\s*(?:\{|$))|for|from(?=\s*(?:['"]|$))|function|(?:get|set)(?=\s*(?:[#\[$\w\xA0-\uFFFF]|$))|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,lookbehind:!0}],function:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,number:{pattern:RegExp(`(^|[^\\w$])(?:NaN|Infinity|0[bB][01]+(?:_[01]+)*n?|0[oO][0-7]+(?:_[0-7]+)*n?|0[xX][\\dA-Fa-f]+(?:_[\\dA-Fa-f]+)*n?|\\d+(?:_\\d+)*n|(?:\\d+(?:_\\d+)*(?:\\.(?:\\d+(?:_\\d+)*)?)?|\\.\\d+(?:_\\d+)*)(?:[Ee][+-]?\\d+(?:_\\d+)*)?)(?![\\w$])`),lookbehind:!0},operator:/--|\+\+|\*\*=?|=>|&&=?|\|\|=?|[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?\?=?|\?\.?|[~:]/}),e.languages.javascript[`class-name`][0].pattern=/(\b(?:class|extends|implements|instanceof|interface|new)\s+)[\w.\\]+/,e.languages.insertBefore(`javascript`,`keyword`,{regex:{pattern:/((?:^|[^$\w\xA0-\uFFFF."'\])\s]|\b(?:return|yield))\s*)\/(?:\[(?:[^\]\\\r\n]|\\.)*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/,lookbehind:!0,greedy:!0,inside:{"regex-source":{pattern:/^(\/)[\s\S]+(?=\/[a-z]*$)/,lookbehind:!0,alias:`language-regex`,inside:e.languages.regex},"regex-delimiter":/^\/|\/$/,"regex-flags":/^[a-z]+$/}},"function-variable":{pattern:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)\s*=>))/,alias:`function`},parameter:[{pattern:/(function(?:\s+(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)?\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\))/,lookbehind:!0,inside:e.languages.javascript},{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$a-z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*=>)/i,lookbehind:!0,inside:e.languages.javascript},{pattern:/(\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*=>)/,lookbehind:!0,inside:e.languages.javascript},{pattern:/((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*)\(\s*|\]\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*\{)/,lookbehind:!0,inside:e.languages.javascript}],constant:/\b[A-Z](?:[A-Z_]|\dx?)*\b/}),e.languages.insertBefore(`javascript`,`string`,{hashbang:{pattern:/^#!.*/,greedy:!0,alias:`comment`},"template-string":{pattern:/`(?:\\[\s\S]|\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}|(?!\$\{)[^\\`])*`/,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:`string`},interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}/,lookbehind:!0,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:`punctuation`},rest:e.languages.javascript}},string:/[\s\S]+/}},"string-property":{pattern:/((?:^|[,{])[ \t]*)(["'])(?:\\(?:\r\n|[\s\S])|(?!\2)[^\\\r\n])*\2(?=\s*:)/m,lookbehind:!0,greedy:!0,alias:`property`}}),e.languages.insertBefore(`javascript`,`operator`,{"literal-property":{pattern:/((?:^|[,{])[ \t]*)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*:)/m,lookbehind:!0,alias:`property`}}),e.languages.markup&&(e.languages.markup.tag.addInlined(`script`,`javascript`),e.languages.markup.tag.addAttribute(`on(?:abort|blur|change|click|composition(?:end|start|update)|dblclick|error|focus(?:in|out)?|key(?:down|up)|load|mouse(?:down|enter|leave|move|out|over|up)|reset|resize|scroll|select|slotchange|submit|unload|wheel)`,`javascript`)),e.languages.js=e.languages.javascript}G(n,`javascript`)}),Va=q((e,t)=>{var n=typeof globalThis==`object`?globalThis:typeof self==`object`?self:typeof window==`object`?window:typeof global==`object`?global:{},r=C();n.Prism={manual:!0,disableWorkerMessageHandler:!0};var i=Da(),a=Fa(),o=Ia(),s=La(),c=Ra(),l=za(),u=Ba();r();var d={}.hasOwnProperty;function f(){}G(f,`Refractor`),f.prototype=o;var p=new f;t.exports=p,p.highlight=g,p.register=m,p.alias=h,p.registered=_,p.listLanguages=v,m(s),m(c),m(l),m(u),p.util.encode=x,p.Token.stringify=y;function m(e){if(typeof e!=`function`||!e.displayName)throw Error("Expected `function` for `grammar`, got `"+e+"`");p.languages[e.displayName]===void 0&&e(p)}G(m,`register`);function h(e,t){var n=p.languages,r=e,i,a,o,s;for(i in t&&(r={},r[e]=t),r)for(a=r[i],a=typeof a==`string`?[a]:a,o=a.length,s=-1;++s<o;)n[a[s]]=n[i]}G(h,`alias`);function g(e,t){var n=o.highlight,r;if(typeof e!=`string`)throw Error("Expected `string` for `value`, got `"+e+"`");if(p.util.type(t)===`Object`)r=t,t=null;else{if(typeof t!=`string`)throw Error("Expected `string` for `name`, got `"+t+"`");if(d.call(p.languages,t))r=p.languages[t];else throw Error("Unknown language: `"+t+"` is not registered")}return n.call(this,e,r,t)}G(g,`highlight`);function _(e){if(typeof e!=`string`)throw Error("Expected `string` for `language`, got `"+e+"`");return d.call(p.languages,e)}G(_,`registered`);function v(){var e=p.languages,t=[],n;for(n in e)d.call(e,n)&&typeof e[n]==`object`&&t.push(n);return t}G(v,`listLanguages`);function y(e,t,n){var r;return typeof e==`string`?{type:`text`,value:e}:p.util.type(e)===`Array`?b(e,t):(r={type:e.type,content:p.Token.stringify(e.content,t,n),tag:`span`,classes:[`token`,e.type],attributes:{},language:t,parent:n},e.alias&&(r.classes=r.classes.concat(e.alias)),p.hooks.run(`wrap`,r),i(r.tag+`.`+r.classes.join(`.`),S(r.attributes),r.content))}G(y,`stringify`);function b(e,t){for(var n=[],r=e.length,i=-1,a;++i<r;)a=e[i],a!==``&&a!=null&&n.push(a);for(i=-1,r=n.length;++i<r;)a=n[i],n[i]=p.Token.stringify(a,t,n);return n}G(b,`stringifyAll`);function x(e){return e}G(x,`encode`);function S(e){for(var t in e)e[t]=a(e[t]);return e}G(S,`attributes`);function C(){var e=`Prism`in n,t=e?n.Prism:void 0;return r;function r(){e?n.Prism=t:delete n.Prism,e=void 0,t=void 0}}G(C,`capture`)}),Ha,Ua,Wa,Ga=K(()=>{ia(),Ha=qr(Va()),Ua=ta(Ha.default,{}),Ua.registerLanguage=function(e,t){return Ha.default.register(t)},Ua.alias=function(e,t){return Ha.default.alias(e,t)},Wa=Ua}),Ka=K(()=>{Ri()}),qa=q((e,t)=>{t.exports=n,n.displayName=`bash`,n.aliases=[`shell`];function n(e){(function(e){var t=`\\b(?:BASH|BASHOPTS|BASH_ALIASES|BASH_ARGC|BASH_ARGV|BASH_CMDS|BASH_COMPLETION_COMPAT_DIR|BASH_LINENO|BASH_REMATCH|BASH_SOURCE|BASH_VERSINFO|BASH_VERSION|COLORTERM|COLUMNS|COMP_WORDBREAKS|DBUS_SESSION_BUS_ADDRESS|DEFAULTS_PATH|DESKTOP_SESSION|DIRSTACK|DISPLAY|EUID|GDMSESSION|GDM_LANG|GNOME_KEYRING_CONTROL|GNOME_KEYRING_PID|GPG_AGENT_INFO|GROUPS|HISTCONTROL|HISTFILE|HISTFILESIZE|HISTSIZE|HOME|HOSTNAME|HOSTTYPE|IFS|INSTANCE|JOB|LANG|LANGUAGE|LC_ADDRESS|LC_ALL|LC_IDENTIFICATION|LC_MEASUREMENT|LC_MONETARY|LC_NAME|LC_NUMERIC|LC_PAPER|LC_TELEPHONE|LC_TIME|LESSCLOSE|LESSOPEN|LINES|LOGNAME|LS_COLORS|MACHTYPE|MAILCHECK|MANDATORY_PATH|NO_AT_BRIDGE|OLDPWD|OPTERR|OPTIND|ORBIT_SOCKETDIR|OSTYPE|PAPERSIZE|PATH|PIPESTATUS|PPID|PS1|PS2|PS3|PS4|PWD|RANDOM|REPLY|SECONDS|SELINUX_INIT|SESSION|SESSIONTYPE|SESSION_MANAGER|SHELL|SHELLOPTS|SHLVL|SSH_AUTH_SOCK|TERM|UID|UPSTART_EVENTS|UPSTART_INSTANCE|UPSTART_JOB|UPSTART_SESSION|USER|WINDOWID|XAUTHORITY|XDG_CONFIG_DIRS|XDG_CURRENT_DESKTOP|XDG_DATA_DIRS|XDG_GREETER_DATA_DIR|XDG_MENU_PREFIX|XDG_RUNTIME_DIR|XDG_SEAT|XDG_SEAT_PATH|XDG_SESSION_DESKTOP|XDG_SESSION_ID|XDG_SESSION_PATH|XDG_SESSION_TYPE|XDG_VTNR|XMODIFIERS)\\b`,n={pattern:/(^(["']?)\w+\2)[ \t]+\S.*/,lookbehind:!0,alias:`punctuation`,inside:null},r={bash:n,environment:{pattern:RegExp(`\\$`+t),alias:`constant`},variable:[{pattern:/\$?\(\([\s\S]+?\)\)/,greedy:!0,inside:{variable:[{pattern:/(^\$\(\([\s\S]+)\)\)/,lookbehind:!0},/^\$\(\(/],number:/\b0x[\dA-Fa-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee]-?\d+)?/,operator:/--|\+\+|\*\*=?|<<=?|>>=?|&&|\|\||[=!+\-*/%<>^&|]=?|[?~:]/,punctuation:/\(\(?|\)\)?|,|;/}},{pattern:/\$\((?:\([^)]+\)|[^()])+\)|`[^`]+`/,greedy:!0,inside:{variable:/^\$\(|^`|\)$|`$/}},{pattern:/\$\{[^}]+\}/,greedy:!0,inside:{operator:/:[-=?+]?|[!\/]|##?|%%?|\^\^?|,,?/,punctuation:/[\[\]]/,environment:{pattern:RegExp(`(\\{)`+t),lookbehind:!0,alias:`constant`}}},/\$(?:\w+|[#?*!@$])/],entity:/\\(?:[abceEfnrtv\\"]|O?[0-7]{1,3}|U[0-9a-fA-F]{8}|u[0-9a-fA-F]{4}|x[0-9a-fA-F]{1,2})/};e.languages.bash={shebang:{pattern:/^#!\s*\/.*/,alias:`important`},comment:{pattern:/(^|[^"{\\$])#.*/,lookbehind:!0},"function-name":[{pattern:/(\bfunction\s+)[\w-]+(?=(?:\s*\(?:\s*\))?\s*\{)/,lookbehind:!0,alias:`function`},{pattern:/\b[\w-]+(?=\s*\(\s*\)\s*\{)/,alias:`function`}],"for-or-select":{pattern:/(\b(?:for|select)\s+)\w+(?=\s+in\s)/,alias:`variable`,lookbehind:!0},"assign-left":{pattern:/(^|[\s;|&]|[<>]\()\w+(?=\+?=)/,inside:{environment:{pattern:RegExp(`(^|[\\s;|&]|[<>]\\()`+t),lookbehind:!0,alias:`constant`}},alias:`variable`,lookbehind:!0},string:[{pattern:/((?:^|[^<])<<-?\s*)(\w+)\s[\s\S]*?(?:\r?\n|\r)\2/,lookbehind:!0,greedy:!0,inside:r},{pattern:/((?:^|[^<])<<-?\s*)(["'])(\w+)\2\s[\s\S]*?(?:\r?\n|\r)\3/,lookbehind:!0,greedy:!0,inside:{bash:n}},{pattern:/(^|[^\\](?:\\\\)*)"(?:\\[\s\S]|\$\([^)]+\)|\$(?!\()|`[^`]+`|[^"\\`$])*"/,lookbehind:!0,greedy:!0,inside:r},{pattern:/(^|[^$\\])'[^']*'/,lookbehind:!0,greedy:!0},{pattern:/\$'(?:[^'\\]|\\[\s\S])*'/,greedy:!0,inside:{entity:r.entity}}],environment:{pattern:RegExp(`\\$?`+t),alias:`constant`},variable:r.variable,function:{pattern:/(^|[\s;|&]|[<>]\()(?:add|apropos|apt|apt-cache|apt-get|aptitude|aspell|automysqlbackup|awk|basename|bash|bc|bconsole|bg|bzip2|cal|cat|cfdisk|chgrp|chkconfig|chmod|chown|chroot|cksum|clear|cmp|column|comm|composer|cp|cron|crontab|csplit|curl|cut|date|dc|dd|ddrescue|debootstrap|df|diff|diff3|dig|dir|dircolors|dirname|dirs|dmesg|docker|docker-compose|du|egrep|eject|env|ethtool|expand|expect|expr|fdformat|fdisk|fg|fgrep|file|find|fmt|fold|format|free|fsck|ftp|fuser|gawk|git|gparted|grep|groupadd|groupdel|groupmod|groups|grub-mkconfig|gzip|halt|head|hg|history|host|hostname|htop|iconv|id|ifconfig|ifdown|ifup|import|install|ip|jobs|join|kill|killall|less|link|ln|locate|logname|logrotate|look|lpc|lpr|lprint|lprintd|lprintq|lprm|ls|lsof|lynx|make|man|mc|mdadm|mkconfig|mkdir|mke2fs|mkfifo|mkfs|mkisofs|mknod|mkswap|mmv|more|most|mount|mtools|mtr|mutt|mv|nano|nc|netstat|nice|nl|node|nohup|notify-send|npm|nslookup|op|open|parted|passwd|paste|pathchk|ping|pkill|pnpm|podman|podman-compose|popd|pr|printcap|printenv|ps|pushd|pv|quota|quotacheck|quotactl|ram|rar|rcp|reboot|remsync|rename|renice|rev|rm|rmdir|rpm|rsync|scp|screen|sdiff|sed|sendmail|seq|service|sftp|sh|shellcheck|shuf|shutdown|sleep|slocate|sort|split|ssh|stat|strace|su|sudo|sum|suspend|swapon|sync|tac|tail|tar|tee|time|timeout|top|touch|tr|traceroute|tsort|tty|umount|uname|unexpand|uniq|units|unrar|unshar|unzip|update-grub|uptime|useradd|userdel|usermod|users|uudecode|uuencode|v|vcpkg|vdir|vi|vim|virsh|vmstat|wait|watch|wc|wget|whereis|which|who|whoami|write|xargs|xdg-open|yarn|yes|zenity|zip|zsh|zypper)(?=$|[)\s;|&])/,lookbehind:!0},keyword:{pattern:/(^|[\s;|&]|[<>]\()(?:case|do|done|elif|else|esac|fi|for|function|if|in|select|then|until|while)(?=$|[)\s;|&])/,lookbehind:!0},builtin:{pattern:/(^|[\s;|&]|[<>]\()(?:\.|:|alias|bind|break|builtin|caller|cd|command|continue|declare|echo|enable|eval|exec|exit|export|getopts|hash|help|let|local|logout|mapfile|printf|pwd|read|readarray|readonly|return|set|shift|shopt|source|test|times|trap|type|typeset|ulimit|umask|unalias|unset)(?=$|[)\s;|&])/,lookbehind:!0,alias:`class-name`},boolean:{pattern:/(^|[\s;|&]|[<>]\()(?:false|true)(?=$|[)\s;|&])/,lookbehind:!0},"file-descriptor":{pattern:/\B&\d\b/,alias:`important`},operator:{pattern:/\d?<>|>\||\+=|=[=~]?|!=?|<<[<-]?|[&\d]?>>|\d[<>]&?|[<>][&=]?|&[>&]?|\|[&|]?/,inside:{"file-descriptor":{pattern:/^\d/,alias:`important`}}},punctuation:/\$?\(\(?|\)\)?|\.\.|[{}[\];\\]/,number:{pattern:/(^|\s)(?:[1-9]\d*|0)(?:[.,]\d+)?\b/,lookbehind:!0}},n.inside=e.languages.bash;for(var i=[`comment`,`function-name`,`for-or-select`,`assign-left`,`string`,`environment`,`function`,`keyword`,`builtin`,`boolean`,`file-descriptor`,`operator`,`punctuation`,`number`],a=r.variable[1].inside,o=0;o<i.length;o++)a[i[o]]=e.languages.bash[i[o]];e.languages.shell=e.languages.bash})(e)}G(n,`bash`)}),Ja,Ya,Xa=K(()=>{Ja=qr(qa()),Ya=Ja.default}),Za,Qa,$a=K(()=>{Za=qr(Ra()),Qa=Za.default}),eo=q((e,t)=>{t.exports=n,n.displayName=`graphql`,n.aliases=[];function n(e){e.languages.graphql={comment:/#.*/,description:{pattern:/(?:"""(?:[^"]|(?!""")")*"""|"(?:\\.|[^\\"\r\n])*")(?=\s*[a-z_])/i,greedy:!0,alias:`string`,inside:{"language-markdown":{pattern:/(^"(?:"")?)(?!\1)[\s\S]+(?=\1$)/,lookbehind:!0,inside:e.languages.markdown}}},string:{pattern:/"""(?:[^"]|(?!""")")*"""|"(?:\\.|[^\\"\r\n])*"/,greedy:!0},number:/(?:\B-|\b)\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/i,boolean:/\b(?:false|true)\b/,variable:/\$[a-z_]\w*/i,directive:{pattern:/@[a-z_]\w*/i,alias:`function`},"attr-name":{pattern:/\b[a-z_]\w*(?=\s*(?:\((?:[^()"]|"(?:\\.|[^\\"\r\n])*")*\))?:)/i,greedy:!0},"atom-input":{pattern:/\b[A-Z]\w*Input\b/,alias:`class-name`},scalar:/\b(?:Boolean|Float|ID|Int|String)\b/,constant:/\b[A-Z][A-Z_\d]*\b/,"class-name":{pattern:/(\b(?:enum|implements|interface|on|scalar|type|union)\s+|&\s*|:\s*|\[)[A-Z_]\w*/,lookbehind:!0},fragment:{pattern:/(\bfragment\s+|\.{3}\s*(?!on\b))[a-zA-Z_]\w*/,lookbehind:!0,alias:`function`},"definition-mutation":{pattern:/(\bmutation\s+)[a-zA-Z_]\w*/,lookbehind:!0,alias:`function`},"definition-query":{pattern:/(\bquery\s+)[a-zA-Z_]\w*/,lookbehind:!0,alias:`function`},keyword:/\b(?:directive|enum|extend|fragment|implements|input|interface|mutation|on|query|repeatable|scalar|schema|subscription|type|union)\b/,operator:/[!=|&]|\.{3}/,"property-query":/\w+(?=\s*\()/,object:/\w+(?=\s*\{)/,punctuation:/[!(){}\[\]:=,]/,property:/\w+/},e.hooks.add(`after-tokenize`,G(function(e){if(e.language!==`graphql`)return;var t=e.tokens.filter(function(e){return typeof e!=`string`&&e.type!==`comment`&&e.type!==`scalar`}),n=0;function r(e){return t[n+e]}G(r,`getToken`);function i(e,t){t||=0;for(var n=0;n<e.length;n++){var i=r(n+t);if(!i||i.type!==e[n])return!1}return!0}G(i,`isTokenType`);function a(e,r){for(var i=1,a=n;a<t.length;a++){var o=t[a],s=o.content;if(o.type===`punctuation`&&typeof s==`string`){if(e.test(s))i++;else if(r.test(s)&&(i--,i===0))return a}}return-1}G(a,`findClosingBracket`);function o(e,t){var n=e.alias;n?Array.isArray(n)||(e.alias=n=[n]):e.alias=n=[],n.push(t)}for(G(o,`addAlias`);n<t.length;){var s=t[n++];if(s.type===`keyword`&&s.content===`mutation`){var c=[];if(i([`definition-mutation`,`punctuation`])&&r(1).content===`(`){n+=2;var l=a(/^\($/,/^\)$/);if(l===-1)continue;for(;n<l;n++){var u=r(0);u.type===`variable`&&(o(u,`variable-input`),c.push(u.content))}n=l+1}if(i([`punctuation`,`property-query`])&&r(0).content===`{`&&(n++,o(r(0),`property-mutation`),c.length>0)){var d=a(/^\{$/,/^\}$/);if(d===-1)continue;for(var f=n;f<d;f++){var p=t[f];p.type===`variable`&&c.indexOf(p.content)>=0&&o(p,`variable-input`)}}}}},`afterTokenizeGraphql`))}G(n,`graphql`)}),to,no,ro=K(()=>{to=qr(eo()),no=to.default}),io=q((e,t)=>{t.exports=n,n.displayName=`jsExtras`,n.aliases=[];function n(e){(function(e){e.languages.insertBefore(`javascript`,`function-variable`,{"method-variable":{pattern:RegExp(`(\\.\\s*)`+e.languages.javascript[`function-variable`].pattern.source),lookbehind:!0,alias:[`function-variable`,`method`,`function`,`property-access`]}}),e.languages.insertBefore(`javascript`,`function`,{method:{pattern:RegExp(`(\\.\\s*)`+e.languages.javascript.function.source),lookbehind:!0,alias:[`function`,`property-access`]}}),e.languages.insertBefore(`javascript`,`constant`,{"known-class-name":[{pattern:/\b(?:(?:Float(?:32|64)|(?:Int|Uint)(?:8|16|32)|Uint8Clamped)?Array|ArrayBuffer|BigInt|Boolean|DataView|Date|Error|Function|Intl|JSON|(?:Weak)?(?:Map|Set)|Math|Number|Object|Promise|Proxy|Reflect|RegExp|String|Symbol|WebAssembly)\b/,alias:`class-name`},{pattern:/\b(?:[A-Z]\w*)Error\b/,alias:`class-name`}]});function t(e,t){return RegExp(e.replace(/<ID>/g,function(){return`(?!\\s)[_$a-zA-Z\\xA0-\\uFFFF](?:(?!\\s)[$\\w\\xA0-\\uFFFF])*`}),t)}G(t,`withId`),e.languages.insertBefore(`javascript`,`keyword`,{imports:{pattern:t(`(\\bimport\\b\\s*)(?:<ID>(?:\\s*,\\s*(?:\\*\\s*as\\s+<ID>|\\{[^{}]*\\}))?|\\*\\s*as\\s+<ID>|\\{[^{}]*\\})(?=\\s*\\bfrom\\b)`),lookbehind:!0,inside:e.languages.javascript},exports:{pattern:t(`(\\bexport\\b\\s*)(?:\\*(?:\\s*as\\s+<ID>)?(?=\\s*\\bfrom\\b)|\\{[^{}]*\\})`),lookbehind:!0,inside:e.languages.javascript}}),e.languages.javascript.keyword.unshift({pattern:/\b(?:as|default|export|from|import)\b/,alias:`module`},{pattern:/\b(?:await|break|catch|continue|do|else|finally|for|if|return|switch|throw|try|while|yield)\b/,alias:`control-flow`},{pattern:/\bnull\b/,alias:[`null`,`nil`]},{pattern:/\bundefined\b/,alias:`nil`}),e.languages.insertBefore(`javascript`,`operator`,{spread:{pattern:/\.{3}/,alias:`operator`},arrow:{pattern:/=>/,alias:`operator`}}),e.languages.insertBefore(`javascript`,`punctuation`,{"property-access":{pattern:t(`(\\.\\s*)#?<ID>`),lookbehind:!0},"maybe-class-name":{pattern:/(^|[^$\w\xA0-\uFFFF])[A-Z][$\w\xA0-\uFFFF]+/,lookbehind:!0},dom:{pattern:/\b(?:document|(?:local|session)Storage|location|navigator|performance|window)\b/,alias:`variable`},console:{pattern:/\bconsole(?=\s*\.)/,alias:`class-name`}});for(var n=[`function`,`function-variable`,`method`,`method-variable`,`property-access`],r=0;r<n.length;r++){var i=n[r],a=e.languages.javascript[i];e.util.type(a)===`RegExp`&&(a=e.languages.javascript[i]={pattern:a});var o=a.inside||{};a.inside=o,o[`maybe-class-name`]=/^[A-Z][\s\S]*/}})(e)}G(n,`jsExtras`)}),ao,oo,so=K(()=>{ao=qr(io()),oo=ao.default}),co=q((e,t)=>{t.exports=n,n.displayName=`json`,n.aliases=[`webmanifest`];function n(e){e.languages.json={property:{pattern:/(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?=\s*:)/,lookbehind:!0,greedy:!0},string:{pattern:/(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?!\s*:)/,lookbehind:!0,greedy:!0},comment:{pattern:/\/\/.*|\/\*[\s\S]*?(?:\*\/|$)/,greedy:!0},number:/-?\b\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/i,punctuation:/[{}[\],]/,operator:/:/,boolean:/\b(?:false|true)\b/,null:{pattern:/\bnull\b/,alias:`keyword`}},e.languages.webmanifest=e.languages.json}G(n,`json`)}),lo,uo,fo=K(()=>{lo=qr(co()),uo=lo.default}),po=q((e,t)=>{t.exports=n,n.displayName=`jsx`,n.aliases=[];function n(e){(function(e){var t=e.util.clone(e.languages.javascript),n=`(?:\\s|\\/\\/.*(?!.)|\\/\\*(?:[^*]|\\*(?!\\/))\\*\\/)`,r=`(?:\\{(?:\\{(?:\\{[^{}]*\\}|[^{}])*\\}|[^{}])*\\})`,i=`(?:\\{<S>*\\.{3}(?:[^{}]|<BRACES>)*\\})`;function a(e,t){return e=e.replace(/<S>/g,function(){return n}).replace(/<BRACES>/g,function(){return r}).replace(/<SPREAD>/g,function(){return i}),RegExp(e,t)}G(a,`re`),i=a(i).source,e.languages.jsx=e.languages.extend(`markup`,t),e.languages.jsx.tag.pattern=a(`<\\/?(?:[\\w.:-]+(?:<S>+(?:[\\w.:$-]+(?:=(?:"(?:\\\\[\\s\\S]|[^\\\\"])*"|'(?:\\\\[\\s\\S]|[^\\\\'])*'|[^\\s{'"/>=]+|<BRACES>))?|<SPREAD>))*<S>*\\/?)?>`),e.languages.jsx.tag.inside.tag.pattern=/^<\/?[^\s>\/]*/,e.languages.jsx.tag.inside[`attr-value`].pattern=/=(?!\{)(?:"(?:\\[\s\S]|[^\\"])*"|'(?:\\[\s\S]|[^\\'])*'|[^\s'">]+)/,e.languages.jsx.tag.inside.tag.inside[`class-name`]=/^[A-Z]\w*(?:\.[A-Z]\w*)*$/,e.languages.jsx.tag.inside.comment=t.comment,e.languages.insertBefore(`inside`,`attr-name`,{spread:{pattern:a(`<SPREAD>`),inside:e.languages.jsx}},e.languages.jsx.tag),e.languages.insertBefore(`inside`,`special-attr`,{script:{pattern:a(`=<BRACES>`),alias:`language-javascript`,inside:{"script-punctuation":{pattern:/^=(?=\{)/,alias:`punctuation`},rest:e.languages.jsx}}},e.languages.jsx.tag);var o=G(function(e){return e?typeof e==`string`?e:typeof e.content==`string`?e.content:e.content.map(o).join(``):``},`stringifyToken`),s=G(function(t){for(var n=[],r=0;r<t.length;r++){var i=t[r],a=!1;if(typeof i!=`string`&&(i.type===`tag`&&i.content[0]&&i.content[0].type===`tag`?i.content[0].content[0].content===`</`?n.length>0&&n[n.length-1].tagName===o(i.content[0].content[1])&&n.pop():i.content[i.content.length-1].content===`/>`||n.push({tagName:o(i.content[0].content[1]),openedBraces:0}):n.length>0&&i.type===`punctuation`&&i.content===`{`?n[n.length-1].openedBraces++:n.length>0&&n[n.length-1].openedBraces>0&&i.type===`punctuation`&&i.content===`}`?n[n.length-1].openedBraces--:a=!0),(a||typeof i==`string`)&&n.length>0&&n[n.length-1].openedBraces===0){var c=o(i);r<t.length-1&&(typeof t[r+1]==`string`||t[r+1].type===`plain-text`)&&(c+=o(t[r+1]),t.splice(r+1,1)),r>0&&(typeof t[r-1]==`string`||t[r-1].type===`plain-text`)&&(c=o(t[r-1])+c,t.splice(r-1,1),r--),t[r]=new e.Token(`plain-text`,c,null,c)}i.content&&typeof i.content!=`string`&&s(i.content)}},`walkTokens`);e.hooks.add(`after-tokenize`,function(e){e.language!==`jsx`&&e.language!==`tsx`||s(e.tokens)})})(e)}G(n,`jsx`)}),mo,ho,go=K(()=>{mo=qr(po()),ho=mo.default}),_o=q((e,t)=>{t.exports=n,n.displayName=`markdown`,n.aliases=[`md`];function n(e){(function(e){var t=`(?:\\\\.|[^\\\\\\n\\r]|(?:\\n|\\r\\n?)(?![\\r\\n]))`;function n(e){return e=e.replace(/<inner>/g,function(){return t}),RegExp(`((?:^|[^\\\\])(?:\\\\{2})*)(?:`+e+`)`)}G(n,`createInline`);var r="(?:\\\\.|``(?:[^`\\r\\n]|`(?!`))+``|`[^`\\r\\n]+`|[^\\\\|\\r\\n`])+",i=`\\|?__(?:\\|__)+\\|?(?:(?:\\n|\\r\\n?)|(?![\\s\\S]))`.replace(/__/g,function(){return r}),a=`\\|?[ \\t]*:?-{3,}:?[ \\t]*(?:\\|[ \\t]*:?-{3,}:?[ \\t]*)+\\|?(?:\\n|\\r\\n?)`;e.languages.markdown=e.languages.extend(`markup`,{}),e.languages.insertBefore(`markdown`,`prolog`,{"front-matter-block":{pattern:/(^(?:\s*[\r\n])?)---(?!.)[\s\S]*?[\r\n]---(?!.)/,lookbehind:!0,greedy:!0,inside:{punctuation:/^---|---$/,"front-matter":{pattern:/\S+(?:\s+\S+)*/,alias:[`yaml`,`language-yaml`],inside:e.languages.yaml}}},blockquote:{pattern:/^>(?:[\t ]*>)*/m,alias:`punctuation`},table:{pattern:RegExp(`^`+i+a+`(?:`+i+`)*`,`m`),inside:{"table-data-rows":{pattern:RegExp(`^(`+i+a+`)(?:`+i+`)*$`),lookbehind:!0,inside:{"table-data":{pattern:RegExp(r),inside:e.languages.markdown},punctuation:/\|/}},"table-line":{pattern:RegExp(`^(`+i+`)`+a+`$`),lookbehind:!0,inside:{punctuation:/\||:?-{3,}:?/}},"table-header-row":{pattern:RegExp(`^`+i+`$`),inside:{"table-header":{pattern:RegExp(r),alias:`important`,inside:e.languages.markdown},punctuation:/\|/}}}},code:[{pattern:/((?:^|\n)[ \t]*\n|(?:^|\r\n?)[ \t]*\r\n?)(?: {4}|\t).+(?:(?:\n|\r\n?)(?: {4}|\t).+)*/,lookbehind:!0,alias:`keyword`},{pattern:/^```[\s\S]*?^```$/m,greedy:!0,inside:{"code-block":{pattern:/^(```.*(?:\n|\r\n?))[\s\S]+?(?=(?:\n|\r\n?)^```$)/m,lookbehind:!0},"code-language":{pattern:/^(```).+/,lookbehind:!0},punctuation:/```/}}],title:[{pattern:/\S.*(?:\n|\r\n?)(?:==+|--+)(?=[ \t]*$)/m,alias:`important`,inside:{punctuation:/==+$|--+$/}},{pattern:/(^\s*)#.+/m,lookbehind:!0,alias:`important`,inside:{punctuation:/^#+|#+$/}}],hr:{pattern:/(^\s*)([*-])(?:[\t ]*\2){2,}(?=\s*$)/m,lookbehind:!0,alias:`punctuation`},list:{pattern:/(^\s*)(?:[*+-]|\d+\.)(?=[\t ].)/m,lookbehind:!0,alias:`punctuation`},"url-reference":{pattern:/!?\[[^\]]+\]:[\t ]+(?:\S+|<(?:\\.|[^>\\])+>)(?:[\t ]+(?:"(?:\\.|[^"\\])*"|'(?:\\.|[^'\\])*'|\((?:\\.|[^)\\])*\)))?/,inside:{variable:{pattern:/^(!?\[)[^\]]+/,lookbehind:!0},string:/(?:"(?:\\.|[^"\\])*"|'(?:\\.|[^'\\])*'|\((?:\\.|[^)\\])*\))$/,punctuation:/^[\[\]!:]|[<>]/},alias:`url`},bold:{pattern:n(`\\b__(?:(?!_)<inner>|_(?:(?!_)<inner>)+_)+__\\b|\\*\\*(?:(?!\\*)<inner>|\\*(?:(?!\\*)<inner>)+\\*)+\\*\\*`),lookbehind:!0,greedy:!0,inside:{content:{pattern:/(^..)[\s\S]+(?=..$)/,lookbehind:!0,inside:{}},punctuation:/\*\*|__/}},italic:{pattern:n(`\\b_(?:(?!_)<inner>|__(?:(?!_)<inner>)+__)+_\\b|\\*(?:(?!\\*)<inner>|\\*\\*(?:(?!\\*)<inner>)+\\*\\*)+\\*`),lookbehind:!0,greedy:!0,inside:{content:{pattern:/(^.)[\s\S]+(?=.$)/,lookbehind:!0,inside:{}},punctuation:/[*_]/}},strike:{pattern:n(`(~~?)(?:(?!~)<inner>)+\\2`),lookbehind:!0,greedy:!0,inside:{content:{pattern:/(^~~?)[\s\S]+(?=\1$)/,lookbehind:!0,inside:{}},punctuation:/~~?/}},"code-snippet":{pattern:/(^|[^\\`])(?:``[^`\r\n]+(?:`[^`\r\n]+)*``(?!`)|`[^`\r\n]+`(?!`))/,lookbehind:!0,greedy:!0,alias:[`code`,`keyword`]},url:{pattern:n(`!?\\[(?:(?!\\])<inner>)+\\](?:\\([^\\s)]+(?:[\\t ]+"(?:\\\\.|[^"\\\\])*")?\\)|[ \\t]?\\[(?:(?!\\])<inner>)+\\])`),lookbehind:!0,greedy:!0,inside:{operator:/^!/,content:{pattern:/(^\[)[^\]]+(?=\])/,lookbehind:!0,inside:{}},variable:{pattern:/(^\][ \t]?\[)[^\]]+(?=\]$)/,lookbehind:!0},url:{pattern:/(^\]\()[^\s)]+/,lookbehind:!0},string:{pattern:/(^[ \t]+)"(?:\\.|[^"\\])*"(?=\)$)/,lookbehind:!0}}}}),[`url`,`bold`,`italic`,`strike`].forEach(function(t){[`url`,`bold`,`italic`,`strike`,`code-snippet`].forEach(function(n){t!==n&&(e.languages.markdown[t].inside.content.inside[n]=e.languages.markdown[n])})}),e.hooks.add(`after-tokenize`,function(e){if(e.language!==`markdown`&&e.language!==`md`)return;function t(e){if(!(!e||typeof e==`string`))for(var n=0,r=e.length;n<r;n++){var i=e[n];if(i.type!==`code`){t(i.content);continue}var a=i.content[1],o=i.content[3];if(a&&o&&a.type===`code-language`&&o.type===`code-block`&&typeof a.content==`string`){var s=a.content.replace(/\b#/g,`sharp`).replace(/\b\+\+/g,`pp`);s=(/[a-z][\w-]*/i.exec(s)||[``])[0].toLowerCase();var c=`language-`+s;o.alias?typeof o.alias==`string`?o.alias=[o.alias,c]:o.alias.push(c):o.alias=[c]}}}G(t,`walkTokens`),t(e.tokens)}),e.hooks.add(`wrap`,function(t){if(t.type===`code-block`){for(var n=``,r=0,i=t.classes.length;r<i;r++){var a=t.classes[r],o=/language-(.+)/.exec(a);if(o){n=o[1];break}}var s=e.languages[n];if(s)t.content=e.highlight(l(t.content.value),s,n);else if(n&&n!==`none`&&e.plugins.autoloader){var c=`md-`+new Date().valueOf()+`-`+Math.floor(Math.random()*0x2386f26fc10000);t.attributes.id=c,e.plugins.autoloader.loadLanguages(n,function(){var t=document.getElementById(c);t&&(t.innerHTML=e.highlight(t.textContent,e.languages[n],n))})}}});var o=RegExp(e.languages.markup.tag.pattern.source,`gi`),s={amp:`&`,lt:`<`,gt:`>`,quot:`"`},c=String.fromCodePoint||String.fromCharCode;function l(e){var t=e.replace(o,``);return t=t.replace(/&(\w{1,8}|#x?[\da-f]{1,8});/gi,function(e,t){if(t=t.toLowerCase(),t[0]===`#`){var n;return n=t[1]===`x`?parseInt(t.slice(2),16):Number(t.slice(1)),c(n)}else return s[t]||e}),t}G(l,`textContent`),e.languages.md=e.languages.markdown})(e)}G(n,`markdown`)}),vo,yo,bo=K(()=>{vo=qr(_o()),yo=vo.default}),xo,So,Co=K(()=>{xo=qr(La()),So=xo.default}),wo=q((e,t)=>{t.exports=n,n.displayName=`typescript`,n.aliases=[`ts`];function n(e){(function(e){e.languages.typescript=e.languages.extend(`javascript`,{"class-name":{pattern:/(\b(?:class|extends|implements|instanceof|interface|new|type)\s+)(?!keyof\b)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?:\s*<(?:[^<>]|<(?:[^<>]|<[^<>]*>)*>)*>)?/,lookbehind:!0,greedy:!0,inside:null},builtin:/\b(?:Array|Function|Promise|any|boolean|console|never|number|string|symbol|unknown)\b/}),e.languages.typescript.keyword.push(/\b(?:abstract|declare|is|keyof|readonly|require)\b/,/\b(?:asserts|infer|interface|module|namespace|type)\b(?=\s*(?:[{_$a-zA-Z\xA0-\uFFFF]|$))/,/\btype\b(?=\s*(?:[\{*]|$))/),delete e.languages.typescript.parameter,delete e.languages.typescript[`literal-property`];var t=e.languages.extend(`typescript`,{});delete t[`class-name`],e.languages.typescript[`class-name`].inside=t,e.languages.insertBefore(`typescript`,`function`,{decorator:{pattern:/@[$\w\xA0-\uFFFF]+/,inside:{at:{pattern:/^@/,alias:`operator`},function:/^[\s\S]+/}},"generic-function":{pattern:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*<(?:[^<>]|<(?:[^<>]|<[^<>]*>)*>)*>(?=\s*\()/,greedy:!0,inside:{function:/^#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*/,generic:{pattern:/<[\s\S]+/,alias:`class-name`,inside:t}}}}),e.languages.ts=e.languages.typescript})(e)}G(n,`typescript`)}),To=q((e,t)=>{var n=po(),r=wo();t.exports=i,i.displayName=`tsx`,i.aliases=[];function i(e){e.register(n),e.register(r),function(e){var t=e.util.clone(e.languages.typescript);e.languages.tsx=e.languages.extend(`jsx`,t),delete e.languages.tsx.parameter,delete e.languages.tsx[`literal-property`];var n=e.languages.tsx.tag;n.pattern=RegExp(`(^|[^\\w$]|(?=<\\/))(?:`+n.pattern.source+`)`,n.pattern.flags),n.lookbehind=!0}(e)}G(i,`tsx`)}),Eo,Do,Oo=K(()=>{Eo=qr(To()),Do=Eo.default}),ko,Ao,jo=K(()=>{ko=qr(wo()),Ao=ko.default}),Mo=q((e,t)=>{t.exports=n,n.displayName=`yaml`,n.aliases=[`yml`];function n(e){(function(e){var t=/[*&][^\s[\]{},]+/,n=/!(?:<[\w\-%#;/?:@&=+$,.!~*'()[\]]+>|(?:[a-zA-Z\d-]*!)?[\w\-%#;/?:@&=+$.~*'()]+)?/,r=`(?:`+n.source+`(?:[ ]+`+t.source+`)?|`+t.source+`(?:[ ]+`+n.source+`)?)`,i=`(?:[^\\s\\x00-\\x08\\x0e-\\x1f!"#%&'*,\\-:>?@[\\]\`{|}\\x7f-\\x84\\x86-\\x9f\\ud800-\\udfff\\ufffe\\uffff]|[?:-]<PLAIN>)(?:[ \\t]*(?:(?![#:])<PLAIN>|:<PLAIN>))*`.replace(/<PLAIN>/g,function(){return`[^\\s\\x00-\\x08\\x0e-\\x1f,[\\]{}\\x7f-\\x84\\x86-\\x9f\\ud800-\\udfff\\ufffe\\uffff]`}),a=`"(?:[^"\\\\\\r\\n]|\\\\.)*"|'(?:[^'\\\\\\r\\n]|\\\\.)*'`;function o(e,t){t=(t||``).replace(/m/g,``)+`m`;var n=`([:\\-,[{]\\s*(?:\\s<<prop>>[ \\t]+)?)(?:<<value>>)(?=[ \\t]*(?:$|,|\\]|\\}|(?:[\\r\\n]\\s*)?#))`.replace(/<<prop>>/g,function(){return r}).replace(/<<value>>/g,function(){return e});return RegExp(n,t)}G(o,`createValuePattern`),e.languages.yaml={scalar:{pattern:RegExp(`([\\-:]\\s*(?:\\s<<prop>>[ \\t]+)?[|>])[ \\t]*(?:((?:\\r?\\n|\\r)[ \\t]+)\\S[^\\r\\n]*(?:\\2[^\\r\\n]+)*)`.replace(/<<prop>>/g,function(){return r})),lookbehind:!0,alias:`string`},comment:/#.*/,key:{pattern:RegExp(`((?:^|[:\\-,[{\\r\\n?])[ \\t]*(?:<<prop>>[ \\t]+)?)<<key>>(?=\\s*:\\s)`.replace(/<<prop>>/g,function(){return r}).replace(/<<key>>/g,function(){return`(?:`+i+`|`+a+`)`})),lookbehind:!0,greedy:!0,alias:`atrule`},directive:{pattern:/(^[ \t]*)%.+/m,lookbehind:!0,alias:`important`},datetime:{pattern:o(`\\d{4}-\\d\\d?-\\d\\d?(?:[tT]|[ \\t]+)\\d\\d?:\\d{2}:\\d{2}(?:\\.\\d*)?(?:[ \\t]*(?:Z|[-+]\\d\\d?(?::\\d{2})?))?|\\d{4}-\\d{2}-\\d{2}|\\d\\d?:\\d{2}(?::\\d{2}(?:\\.\\d*)?)?`),lookbehind:!0,alias:`number`},boolean:{pattern:o(`false|true`,`i`),lookbehind:!0,alias:`important`},null:{pattern:o(`null|~`,`i`),lookbehind:!0,alias:`important`},string:{pattern:o(a),lookbehind:!0,greedy:!0},number:{pattern:o(`[+-]?(?:0x[\\da-f]+|0o[0-7]+|(?:\\d+(?:\\.\\d*)?|\\.\\d+)(?:e[+-]?\\d+)?|\\.inf|\\.nan)`,`i`),lookbehind:!0},tag:n,important:t,punctuation:/---|[:[\]{}\-,|>?]|\.\.\./},e.languages.yml=e.languages.yaml})(e)}G(n,`yaml`)}),No,Po,Fo=K(()=>{No=qr(Mo()),Po=No.default}),Io,Lo,Ro,zo=K(()=>{Io=H.div(({theme:e})=>({position:`absolute`,bottom:0,right:0,maxWidth:`100%`,display:`flex`,background:e.background.content,zIndex:1})),Lo=H.button(({theme:e})=>({margin:0,border:`0 none`,padding:`4px 10px`,cursor:`pointer`,display:`flex`,alignItems:`center`,color:e.color.defaultText,background:e.background.content,fontSize:12,lineHeight:`16px`,fontFamily:e.typography.fonts.base,fontWeight:e.typography.weight.bold,borderTop:`1px solid ${e.appBorderColor}`,borderLeft:`1px solid ${e.appBorderColor}`,marginLeft:-1,borderRadius:`4px 0 0 0`,"&:not(:last-child)":{borderRight:`1px solid ${e.appBorderColor}`},"& + *":{borderLeft:`1px solid ${e.appBorderColor}`,borderRadius:0},"&:focus":{boxShadow:`${e.color.secondary} 0 -3px 0 0 inset`,outline:`0 none`}}),({disabled:e})=>e&&{cursor:`not-allowed`,opacity:.5}),Lo.displayName=`ActionButton`,Ro=G(({actionItems:e,...t})=>o.createElement(Io,{...t},e.map(({title:e,className:t,onClick:n,disabled:r},i)=>o.createElement(Lo,{key:i,className:t,onClick:n,disabled:!!r},e))),`ActionBar`)});function Bo(e,t){typeof e==`function`?e(t):e!=null&&(e.current=t)}function Vo(...e){return t=>e.forEach(e=>Bo(e,t))}function Ho(...e){return o.useCallback(Vo(...e),e)}var Uo=K(()=>{G(Bo,`setRef`),G(Vo,`composeRefs`),G(Ho,`useComposedRefs`)});function Wo(e){return o.isValidElement(e)&&e.type===Yo}function Go(e,t){let n={...t};for(let r in t){let i=e[r],a=t[r];/^on[A-Z]/.test(r)?i&&a?n[r]=(...e)=>{a(...e),i(...e)}:i&&(n[r]=i):r===`style`?n[r]={...i,...a}:r===`className`&&(n[r]=[i,a].filter(Boolean).join(` `))}return{...e,...n}}function Ko(e){let t=Object.getOwnPropertyDescriptor(e.props,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}var qo,Jo,Yo,Xo=K(()=>{Uo(),qo=o.forwardRef((e,t)=>{let{children:n,...r}=e,i=o.Children.toArray(n),a=i.find(Wo);if(a){let e=a.props.children,n=i.map(t=>t===a?o.Children.count(e)>1?o.Children.only(null):o.isValidElement(e)?e.props.children:null:t);return(0,W.jsx)(Jo,{...r,ref:t,children:o.isValidElement(e)?o.cloneElement(e,void 0,n):null})}return(0,W.jsx)(Jo,{...r,ref:t,children:n})}),qo.displayName=`Slot`,Jo=o.forwardRef((e,t)=>{let{children:n,...r}=e;if(o.isValidElement(n)){let e=Ko(n);return o.cloneElement(n,{...Go(r,n.props),ref:t?Vo(t,e):e})}return o.Children.count(n)>1?o.Children.only(null):null}),Jo.displayName=`SlotClone`,Yo=G(({children:e})=>(0,W.jsx)(W.Fragment,{children:e}),`Slottable`),G(Wo,`isSlottable`),G(Go,`mergeProps`),G(Ko,`getElementRef`)});function Zo(e,t){e&&Nr.flushSync(()=>e.dispatchEvent(t))}var Qo,$o,es=K(()=>{Xo(),Qo=[`a`,`button`,`div`,`form`,`h2`,`h3`,`img`,`input`,`label`,`li`,`nav`,`ol`,`p`,`span`,`svg`,`ul`],$o=Qo.reduce((e,t)=>{let n=o.forwardRef((e,n)=>{let{asChild:r,...i}=e,a=r?qo:t;return typeof window<`u`&&(window[Symbol.for(`radix-ui`)]=!0),(0,W.jsx)(a,{...i,ref:n})});return n.displayName=`Primitive.${t}`,{...e,[t]:n}},{}),G(Zo,`dispatchDiscreteCustomEvent`)}),ts,ns=K(()=>{ts=globalThis?.document?o.useLayoutEffect:()=>{}});function rs(e,t){return o.useReducer((e,n)=>t[e][n]??e,e)}function is(e){let[t,n]=o.useState(),r=o.useRef({}),i=o.useRef(e),a=o.useRef(`none`),[s,c]=rs(e?`mounted`:`unmounted`,{mounted:{UNMOUNT:`unmounted`,ANIMATION_OUT:`unmountSuspended`},unmountSuspended:{MOUNT:`mounted`,ANIMATION_END:`unmounted`},unmounted:{MOUNT:`mounted`}});return o.useEffect(()=>{let e=as(r.current);a.current=s===`mounted`?e:`none`},[s]),ts(()=>{let t=r.current,n=i.current;if(n!==e){let r=a.current,o=as(t);e?c(`MOUNT`):o===`none`||t?.display===`none`?c(`UNMOUNT`):c(n&&r!==o?`ANIMATION_OUT`:`UNMOUNT`),i.current=e}},[e,c]),ts(()=>{if(t){let e=G(e=>{let n=as(r.current).includes(e.animationName);e.target===t&&n&&Pr.flushSync(()=>c(`ANIMATION_END`))},`handleAnimationEnd`),n=G(e=>{e.target===t&&(a.current=as(r.current))},`handleAnimationStart`);return t.addEventListener(`animationstart`,n),t.addEventListener(`animationcancel`,e),t.addEventListener(`animationend`,e),()=>{t.removeEventListener(`animationstart`,n),t.removeEventListener(`animationcancel`,e),t.removeEventListener(`animationend`,e)}}else c(`ANIMATION_END`)},[t,c]),{isPresent:[`mounted`,`unmountSuspended`].includes(s),ref:o.useCallback(e=>{e&&(r.current=getComputedStyle(e)),n(e)},[])}}function as(e){return e?.animationName||`none`}function os(e){let t=Object.getOwnPropertyDescriptor(e.props,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}var ss,cs=K(()=>{"use client";Uo(),ns(),G(rs,`useStateMachine`),ss=G(e=>{let{present:t,children:n}=e,r=is(t),i=typeof n==`function`?n({present:r.isPresent}):o.Children.only(n),a=Ho(r.ref,os(i));return typeof n==`function`||r.isPresent?o.cloneElement(i,{ref:a}):null},`Presence`),ss.displayName=`Presence`,G(is,`usePresence`),G(as,`getAnimationName`),G(os,`getElementRef`)});function ls(e,t=[]){let n=[];function r(t,r){let i=o.createContext(r),a=n.length;n=[...n,r];function s(t){let{scope:n,children:r,...s}=t,c=n?.[e][a]||i,l=o.useMemo(()=>s,Object.values(s));return(0,W.jsx)(c.Provider,{value:l,children:r})}G(s,`Provider`);function c(n,s){let c=s?.[e][a]||i,l=o.useContext(c);if(l)return l;if(r!==void 0)return r;throw Error(`\`${n}\` must be used within \`${t}\``)}return G(c,`useContext2`),s.displayName=t+`Provider`,[s,c]}G(r,`createContext3`);let i=G(()=>{let t=n.map(e=>o.createContext(e));return G(function(n){let r=n?.[e]||t;return o.useMemo(()=>({[`__scope${e}`]:{...n,[e]:r}}),[n,r])},`useScope`)},`createScope`);return i.scopeName=e,[r,us(i,...t)]}function us(...e){let t=e[0];if(e.length===1)return t;let n=G(()=>{let n=e.map(e=>({useScope:e(),scopeName:e.scopeName}));return G(function(e){let r=n.reduce((t,{useScope:n,scopeName:r})=>{let i=n(e)[`__scope${r}`];return{...t,...i}},{});return o.useMemo(()=>({[`__scope${t.scopeName}`]:r}),[r])},`useComposedScopes`)},`createScope`);return n.scopeName=t.scopeName,n}var ds=K(()=>{G(ls,`createContextScope`),G(us,`composeContextScopes`)});function fs(e){let t=o.useRef(e);return o.useEffect(()=>{t.current=e}),o.useMemo(()=>(...e)=>t.current?.(...e),[])}var ps=K(()=>{G(fs,`useCallbackRef`)});function ms(e){let t=o.useContext(hs);return e||t||`ltr`}var hs,gs=K(()=>{hs=o.createContext(void 0),G(ms,`useDirection`)});function _s(e,[t,n]){return Math.min(n,Math.max(t,e))}var vs=K(()=>{G(_s,`clamp`)});function ys(e,t,{checkForDefaultPrevented:n=!0}={}){return G(function(r){if(e?.(r),n===!1||!r.defaultPrevented)return t?.(r)},`handleEvent`)}var bs=K(()=>{G(ys,`composeEventHandlers`)});function xs(e,t){return o.useReducer((e,n)=>t[e][n]??e,e)}function Ss(e){return e?parseInt(e,10):0}function Cs(e,t){let n=e/t;return isNaN(n)?0:n}function ws(e){let t=Cs(e.viewport,e.content),n=e.scrollbar.paddingStart+e.scrollbar.paddingEnd,r=(e.scrollbar.size-n)*t;return Math.max(r,18)}function Ts(e,t,n,r=`ltr`){let i=ws(n),a=i/2,o=t||a,s=i-o,c=n.scrollbar.paddingStart+o,l=n.scrollbar.size-n.scrollbar.paddingEnd-s,u=n.content-n.viewport,d=r===`ltr`?[0,u]:[u*-1,0];return Ds([c,l],d)(e)}function Es(e,t,n=`ltr`){let r=ws(t),i=t.scrollbar.paddingStart+t.scrollbar.paddingEnd,a=t.scrollbar.size-i,o=t.content-t.viewport,s=a-r,c=_s(e,n===`ltr`?[0,o]:[o*-1,0]);return Ds([0,o],[0,s])(c)}function Ds(e,t){return n=>{if(e[0]===e[1]||t[0]===t[1])return t[0];let r=(t[1]-t[0])/(e[1]-e[0]);return t[0]+r*(n-e[0])}}function Os(e,t){return e>0&&e<t}function ks(e,t){let n=fs(e),r=o.useRef(0);return o.useEffect(()=>()=>window.clearTimeout(r.current),[]),o.useCallback(()=>{window.clearTimeout(r.current),r.current=window.setTimeout(n,t)},[n,t])}function As(e,t){let n=fs(t);ts(()=>{let t=0;if(e){let r=new ResizeObserver(()=>{cancelAnimationFrame(t),t=window.requestAnimationFrame(n)});return r.observe(e),()=>{window.cancelAnimationFrame(t),r.unobserve(e)}}},[e,n])}function js(e,t){let{asChild:n,children:r}=e;if(!n)return typeof t==`function`?t(r):t;let i=o.Children.only(r);return o.cloneElement(i,{children:typeof t==`function`?t(i.props.children):t})}var Ms,Ns,Ps,Fs,Is,Ls,Rs,zs,Bs,Vs,Hs,Us,Ws,Gs,Ks,qs,Js,Ys,Xs,Zs,Qs,$s,ec,tc,nc,rc,ic,ac,oc,sc,cc,lc=K(()=>{"use client";es(),cs(),ds(),Uo(),ps(),gs(),ns(),vs(),bs(),G(xs,`useStateMachine`),Ms=`ScrollArea`,[Ns,Ps]=ls(Ms),[Fs,Is]=Ns(Ms),Ls=o.forwardRef((e,t)=>{let{__scopeScrollArea:n,type:r=`hover`,dir:i,scrollHideDelay:a=600,...s}=e,[c,l]=o.useState(null),[u,d]=o.useState(null),[f,p]=o.useState(null),[m,h]=o.useState(null),[g,_]=o.useState(null),[v,y]=o.useState(0),[b,x]=o.useState(0),[S,C]=o.useState(!1),[w,T]=o.useState(!1),E=Ho(t,e=>l(e)),D=ms(i);return(0,W.jsx)(Fs,{scope:n,type:r,dir:D,scrollHideDelay:a,scrollArea:c,viewport:u,onViewportChange:d,content:f,onContentChange:p,scrollbarX:m,onScrollbarXChange:h,scrollbarXEnabled:S,onScrollbarXEnabledChange:C,scrollbarY:g,onScrollbarYChange:_,scrollbarYEnabled:w,onScrollbarYEnabledChange:T,onCornerWidthChange:y,onCornerHeightChange:x,children:(0,W.jsx)($o.div,{dir:D,...s,ref:E,style:{position:`relative`,"--radix-scroll-area-corner-width":v+`px`,"--radix-scroll-area-corner-height":b+`px`,...e.style}})})}),Ls.displayName=Ms,Rs=`ScrollAreaViewport`,zs=o.forwardRef((e,t)=>{let{__scopeScrollArea:n,children:r,asChild:i,nonce:a,...s}=e,c=Is(Rs,n),l=Ho(t,o.useRef(null),c.onViewportChange);return(0,W.jsxs)(W.Fragment,{children:[(0,W.jsx)(`style`,{dangerouslySetInnerHTML:{__html:`
198
+ [data-radix-scroll-area-viewport] {
199
+ scrollbar-width: none;
200
+ -ms-overflow-style: none;
201
+ -webkit-overflow-scrolling: touch;
202
+ }
203
+ [data-radix-scroll-area-viewport]::-webkit-scrollbar {
204
+ display: none;
205
+ }
206
+ :where([data-radix-scroll-area-viewport]) {
207
+ display: flex;
208
+ flex-direction: column;
209
+ align-items: stretch;
210
+ }
211
+ :where([data-radix-scroll-area-content]) {
212
+ flex-grow: 1;
213
+ }
214
+ `},nonce:a}),(0,W.jsx)($o.div,{"data-radix-scroll-area-viewport":``,...s,asChild:i,ref:l,style:{overflowX:c.scrollbarXEnabled?`scroll`:`hidden`,overflowY:c.scrollbarYEnabled?`scroll`:`hidden`,...e.style},children:js({asChild:i,children:r},e=>(0,W.jsx)(`div`,{"data-radix-scroll-area-content":``,ref:c.onContentChange,style:{minWidth:c.scrollbarXEnabled?`fit-content`:void 0},children:e}))})]})}),zs.displayName=Rs,Bs=`ScrollAreaScrollbar`,Vs=o.forwardRef((e,t)=>{let{forceMount:n,...r}=e,i=Is(Bs,e.__scopeScrollArea),{onScrollbarXEnabledChange:a,onScrollbarYEnabledChange:s}=i,c=e.orientation===`horizontal`;return o.useEffect(()=>(c?a(!0):s(!0),()=>{c?a(!1):s(!1)}),[c,a,s]),i.type===`hover`?(0,W.jsx)(Hs,{...r,ref:t,forceMount:n}):i.type===`scroll`?(0,W.jsx)(Us,{...r,ref:t,forceMount:n}):i.type===`auto`?(0,W.jsx)(Ws,{...r,ref:t,forceMount:n}):i.type===`always`?(0,W.jsx)(Gs,{...r,ref:t}):null}),Vs.displayName=Bs,Hs=o.forwardRef((e,t)=>{let{forceMount:n,...r}=e,i=Is(Bs,e.__scopeScrollArea),[a,s]=o.useState(!1);return o.useEffect(()=>{let e=i.scrollArea,t=0;if(e){let n=G(()=>{window.clearTimeout(t),s(!0)},`handlePointerEnter`),r=G(()=>{t=window.setTimeout(()=>s(!1),i.scrollHideDelay)},`handlePointerLeave`);return e.addEventListener(`pointerenter`,n),e.addEventListener(`pointerleave`,r),()=>{window.clearTimeout(t),e.removeEventListener(`pointerenter`,n),e.removeEventListener(`pointerleave`,r)}}},[i.scrollArea,i.scrollHideDelay]),(0,W.jsx)(ss,{present:n||a,children:(0,W.jsx)(Ws,{"data-state":a?`visible`:`hidden`,...r,ref:t})})}),Us=o.forwardRef((e,t)=>{let{forceMount:n,...r}=e,i=Is(Bs,e.__scopeScrollArea),a=e.orientation===`horizontal`,s=ks(()=>l(`SCROLL_END`),100),[c,l]=xs(`hidden`,{hidden:{SCROLL:`scrolling`},scrolling:{SCROLL_END:`idle`,POINTER_ENTER:`interacting`},interacting:{SCROLL:`interacting`,POINTER_LEAVE:`idle`},idle:{HIDE:`hidden`,SCROLL:`scrolling`,POINTER_ENTER:`interacting`}});return o.useEffect(()=>{if(c===`idle`){let e=window.setTimeout(()=>l(`HIDE`),i.scrollHideDelay);return()=>window.clearTimeout(e)}},[c,i.scrollHideDelay,l]),o.useEffect(()=>{let e=i.viewport,t=a?`scrollLeft`:`scrollTop`;if(e){let n=e[t],r=G(()=>{let r=e[t];n!==r&&(l(`SCROLL`),s()),n=r},`handleScroll`);return e.addEventListener(`scroll`,r),()=>e.removeEventListener(`scroll`,r)}},[i.viewport,a,l,s]),(0,W.jsx)(ss,{present:n||c!==`hidden`,children:(0,W.jsx)(Gs,{"data-state":c===`hidden`?`hidden`:`visible`,...r,ref:t,onPointerEnter:ys(e.onPointerEnter,()=>l(`POINTER_ENTER`)),onPointerLeave:ys(e.onPointerLeave,()=>l(`POINTER_LEAVE`))})})}),Ws=o.forwardRef((e,t)=>{let n=Is(Bs,e.__scopeScrollArea),{forceMount:r,...i}=e,[a,s]=o.useState(!1),c=e.orientation===`horizontal`,l=ks(()=>{if(n.viewport){let e=n.viewport.offsetWidth<n.viewport.scrollWidth,t=n.viewport.offsetHeight<n.viewport.scrollHeight;s(c?e:t)}},10);return As(n.viewport,l),As(n.content,l),(0,W.jsx)(ss,{present:r||a,children:(0,W.jsx)(Gs,{"data-state":a?`visible`:`hidden`,...i,ref:t})})}),Gs=o.forwardRef((e,t)=>{let{orientation:n=`vertical`,...r}=e,i=Is(Bs,e.__scopeScrollArea),a=o.useRef(null),s=o.useRef(0),[c,l]=o.useState({content:0,viewport:0,scrollbar:{size:0,paddingStart:0,paddingEnd:0}}),u=Cs(c.viewport,c.content),d={...r,sizes:c,onSizesChange:l,hasThumb:u>0&&u<1,onThumbChange:G(e=>a.current=e,`onThumbChange`),onThumbPointerUp:G(()=>s.current=0,`onThumbPointerUp`),onThumbPointerDown:G(e=>s.current=e,`onThumbPointerDown`)};function f(e,t){return Ts(e,s.current,c,t)}return G(f,`getScrollPosition`),n===`horizontal`?(0,W.jsx)(Ks,{...d,ref:t,onThumbPositionChange:G(()=>{if(i.viewport&&a.current){let e=i.viewport.scrollLeft,t=Es(e,c,i.dir);a.current.style.transform=`translate3d(${t}px, 0, 0)`}},`onThumbPositionChange`),onWheelScroll:G(e=>{i.viewport&&(i.viewport.scrollLeft=e)},`onWheelScroll`),onDragScroll:G(e=>{i.viewport&&(i.viewport.scrollLeft=f(e,i.dir))},`onDragScroll`)}):n===`vertical`?(0,W.jsx)(qs,{...d,ref:t,onThumbPositionChange:G(()=>{if(i.viewport&&a.current){let e=i.viewport.scrollTop,t=Es(e,c);a.current.style.transform=`translate3d(0, ${t}px, 0)`}},`onThumbPositionChange`),onWheelScroll:G(e=>{i.viewport&&(i.viewport.scrollTop=e)},`onWheelScroll`),onDragScroll:G(e=>{i.viewport&&(i.viewport.scrollTop=f(e))},`onDragScroll`)}):null}),Ks=o.forwardRef((e,t)=>{let{sizes:n,onSizesChange:r,...i}=e,a=Is(Bs,e.__scopeScrollArea),[s,c]=o.useState(),l=o.useRef(null),u=Ho(t,l,a.onScrollbarXChange);return o.useEffect(()=>{l.current&&c(getComputedStyle(l.current))},[l]),(0,W.jsx)(Xs,{"data-orientation":`horizontal`,...i,ref:u,sizes:n,style:{bottom:0,left:a.dir===`rtl`?`var(--radix-scroll-area-corner-width)`:0,right:a.dir===`ltr`?`var(--radix-scroll-area-corner-width)`:0,"--radix-scroll-area-thumb-width":ws(n)+`px`,...e.style},onThumbPointerDown:G(t=>e.onThumbPointerDown(t.x),`onThumbPointerDown`),onDragScroll:G(t=>e.onDragScroll(t.x),`onDragScroll`),onWheelScroll:G((t,n)=>{if(a.viewport){let r=a.viewport.scrollLeft+t.deltaX;e.onWheelScroll(r),Os(r,n)&&t.preventDefault()}},`onWheelScroll`),onResize:G(()=>{l.current&&a.viewport&&s&&r({content:a.viewport.scrollWidth,viewport:a.viewport.offsetWidth,scrollbar:{size:l.current.clientWidth,paddingStart:Ss(s.paddingLeft),paddingEnd:Ss(s.paddingRight)}})},`onResize`)})}),qs=o.forwardRef((e,t)=>{let{sizes:n,onSizesChange:r,...i}=e,a=Is(Bs,e.__scopeScrollArea),[s,c]=o.useState(),l=o.useRef(null),u=Ho(t,l,a.onScrollbarYChange);return o.useEffect(()=>{l.current&&c(getComputedStyle(l.current))},[l]),(0,W.jsx)(Xs,{"data-orientation":`vertical`,...i,ref:u,sizes:n,style:{top:0,right:a.dir===`ltr`?0:void 0,left:a.dir===`rtl`?0:void 0,bottom:`var(--radix-scroll-area-corner-height)`,"--radix-scroll-area-thumb-height":ws(n)+`px`,...e.style},onThumbPointerDown:G(t=>e.onThumbPointerDown(t.y),`onThumbPointerDown`),onDragScroll:G(t=>e.onDragScroll(t.y),`onDragScroll`),onWheelScroll:G((t,n)=>{if(a.viewport){let r=a.viewport.scrollTop+t.deltaY;e.onWheelScroll(r),Os(r,n)&&t.preventDefault()}},`onWheelScroll`),onResize:G(()=>{l.current&&a.viewport&&s&&r({content:a.viewport.scrollHeight,viewport:a.viewport.offsetHeight,scrollbar:{size:l.current.clientHeight,paddingStart:Ss(s.paddingTop),paddingEnd:Ss(s.paddingBottom)}})},`onResize`)})}),[Js,Ys]=Ns(Bs),Xs=o.forwardRef((e,t)=>{let{__scopeScrollArea:n,sizes:r,hasThumb:i,onThumbChange:a,onThumbPointerUp:s,onThumbPointerDown:c,onThumbPositionChange:l,onDragScroll:u,onWheelScroll:d,onResize:f,...p}=e,m=Is(Bs,n),[h,g]=o.useState(null),_=Ho(t,e=>g(e)),v=o.useRef(null),y=o.useRef(``),b=m.viewport,x=r.content-r.viewport,S=fs(d),C=fs(l),w=ks(f,10);function T(e){v.current&&u({x:e.clientX-v.current.left,y:e.clientY-v.current.top})}return G(T,`handleDragScroll`),o.useEffect(()=>{let e=G(e=>{let t=e.target;h?.contains(t)&&S(e,x)},`handleWheel`);return document.addEventListener(`wheel`,e,{passive:!1}),()=>document.removeEventListener(`wheel`,e,{passive:!1})},[b,h,x,S]),o.useEffect(C,[r,C]),As(h,w),As(m.content,w),(0,W.jsx)(Js,{scope:n,scrollbar:h,hasThumb:i,onThumbChange:fs(a),onThumbPointerUp:fs(s),onThumbPositionChange:C,onThumbPointerDown:fs(c),children:(0,W.jsx)($o.div,{...p,ref:_,style:{position:`absolute`,...p.style},onPointerDown:ys(e.onPointerDown,e=>{e.button===0&&(e.target.setPointerCapture(e.pointerId),v.current=h.getBoundingClientRect(),y.current=document.body.style.webkitUserSelect,document.body.style.webkitUserSelect=`none`,m.viewport&&(m.viewport.style.scrollBehavior=`auto`),T(e))}),onPointerMove:ys(e.onPointerMove,T),onPointerUp:ys(e.onPointerUp,e=>{let t=e.target;t.hasPointerCapture(e.pointerId)&&t.releasePointerCapture(e.pointerId),document.body.style.webkitUserSelect=y.current,m.viewport&&(m.viewport.style.scrollBehavior=``),v.current=null})})})}),Zs=`ScrollAreaThumb`,Qs=o.forwardRef((e,t)=>{let{forceMount:n,...r}=e,i=Ys(Zs,e.__scopeScrollArea);return(0,W.jsx)(ss,{present:n||i.hasThumb,children:(0,W.jsx)($s,{ref:t,...r})})}),$s=o.forwardRef((e,t)=>{let{__scopeScrollArea:n,style:r,...i}=e,a=Is(Zs,n),s=Ys(Zs,n),{onThumbPositionChange:c}=s,l=Ho(t,e=>s.onThumbChange(e)),u=o.useRef(),d=ks(()=>{u.current&&=(u.current(),void 0)},100);return o.useEffect(()=>{let e=a.viewport;if(e){let t=G(()=>{d(),!u.current&&(u.current=rc(e,c),c())},`handleScroll`);return c(),e.addEventListener(`scroll`,t),()=>e.removeEventListener(`scroll`,t)}},[a.viewport,d,c]),(0,W.jsx)($o.div,{"data-state":s.hasThumb?`visible`:`hidden`,...i,ref:l,style:{width:`var(--radix-scroll-area-thumb-width)`,height:`var(--radix-scroll-area-thumb-height)`,...r},onPointerDownCapture:ys(e.onPointerDownCapture,e=>{let t=e.target.getBoundingClientRect(),n=e.clientX-t.left,r=e.clientY-t.top;s.onThumbPointerDown({x:n,y:r})}),onPointerUp:ys(e.onPointerUp,s.onThumbPointerUp)})}),Qs.displayName=Zs,ec=`ScrollAreaCorner`,tc=o.forwardRef((e,t)=>{let n=Is(ec,e.__scopeScrollArea),r=!!(n.scrollbarX&&n.scrollbarY);return n.type!==`scroll`&&r?(0,W.jsx)(nc,{...e,ref:t}):null}),tc.displayName=ec,nc=o.forwardRef((e,t)=>{let{__scopeScrollArea:n,...r}=e,i=Is(ec,n),[a,s]=o.useState(0),[c,l]=o.useState(0),u=!!(a&&c);return As(i.scrollbarX,()=>{let e=i.scrollbarX?.offsetHeight||0;i.onCornerHeightChange(e),l(e)}),As(i.scrollbarY,()=>{let e=i.scrollbarY?.offsetWidth||0;i.onCornerWidthChange(e),s(e)}),u?(0,W.jsx)($o.div,{...r,ref:t,style:{width:a,height:c,position:`absolute`,right:i.dir===`ltr`?0:void 0,left:i.dir===`rtl`?0:void 0,bottom:0,...e.style}}):null}),G(Ss,`toInt`),G(Cs,`getThumbRatio`),G(ws,`getThumbSize`),G(Ts,`getScrollPositionFromPointer`),G(Es,`getThumbOffsetFromScroll`),G(Ds,`linearScale`),G(Os,`isScrollingWithinScrollbarBounds`),rc=G((e,t=()=>{})=>{let n={left:e.scrollLeft,top:e.scrollTop},r=0;return G(function i(){let a={left:e.scrollLeft,top:e.scrollTop},o=n.left!==a.left,s=n.top!==a.top;(o||s)&&t(),n=a,r=window.requestAnimationFrame(i)},`loop`)(),()=>window.cancelAnimationFrame(r)},`addUnlinkedScrollListener`),G(ks,`useDebounceCallback`),G(As,`useResizeObserver`),G(js,`getSubtree`),ic=Ls,ac=zs,oc=Vs,sc=Qs,cc=tc}),uc,dc,fc,pc,mc,hc=K(()=>{lc(),uc=H(ic)(({scrollbarsize:e,offset:t})=>({width:`100%`,height:`100%`,overflow:`hidden`,"--scrollbar-size":`${e+t}px`,"--radix-scroll-area-thumb-width":`${e}px`})),dc=H(ac)({width:`100%`,height:`100%`}),fc=H(oc)(({offset:e,horizontal:t,vertical:n})=>({display:`flex`,userSelect:`none`,touchAction:`none`,background:`transparent`,transition:`all 0.2s ease-out`,borderRadius:`var(--scrollbar-size)`,zIndex:1,'&[data-orientation="vertical"]':{width:`var(--scrollbar-size)`,paddingRight:e,marginTop:e,marginBottom:t===`true`&&n===`true`?0:e},'&[data-orientation="horizontal"]':{flexDirection:`column`,height:`var(--scrollbar-size)`,paddingBottom:e,marginLeft:e,marginRight:t===`true`&&n===`true`?0:e}})),pc=H(sc)(({theme:e})=>({flex:1,background:e.textMutedColor,opacity:.5,borderRadius:`var(--scrollbar-size)`,position:`relative`,transition:`opacity 0.2s ease-out`,"&:hover":{opacity:.8},"::before":{content:`""`,position:`absolute`,top:`50%`,left:`50%`,transform:`translate(-50%,-50%)`,width:`100%`,height:`100%`}})),mc=(0,o.forwardRef)(({children:e,horizontal:t=!1,vertical:n=!1,offset:r=2,scrollbarSize:i=6,className:a},s)=>o.createElement(uc,{scrollbarsize:i,offset:r,className:a},o.createElement(dc,{ref:s},e),t&&o.createElement(fc,{orientation:`horizontal`,offset:r,horizontal:t.toString(),vertical:n.toString()},o.createElement(pc,null)),n&&o.createElement(fc,{orientation:`vertical`,offset:r,horizontal:t.toString(),vertical:n.toString()},o.createElement(pc,null)),t&&n&&o.createElement(cc,null))),mc.displayName=`ScrollArea`}),gc={};Gr(gc,{SyntaxHighlighter:()=>Pc,createCopyToClipboardFunction:()=>vc,default:()=>Fc,supportedLanguages:()=>Cc});var{logger:_c}=__STORYBOOK_MODULE_CLIENT_LOGGER__;function vc(){return bc?.clipboard?e=>bc.clipboard.writeText(e):async e=>{let t=xc.createElement(`TEXTAREA`),n=xc.activeElement;t.value=e,xc.body.appendChild(t),t.select(),xc.execCommand(`copy`),xc.body.removeChild(t),n.focus()}}var yc,bc,xc,Sc,Cc,wc,Tc,Ec,Dc,Oc,kc,Ac,jc,Mc,Nc,Pc,Fc,Ic=K(()=>{ri(),yc=qr(ii(),1),Ka(),Xa(),$a(),ro(),so(),fo(),go(),bo(),Co(),Oo(),jo(),Fo(),Ga(),zo(),hc(),{navigator:bc,document:xc,window:Sc}=ni,Cc={jsextra:oo,jsx:ho,json:uo,yml:Po,md:yo,bash:Ya,css:Qa,html:So,tsx:Do,typescript:Ao,graphql:no},Object.entries(Cc).forEach(([e,t])=>{Wa.registerLanguage(e,t)}),wc=(0,yc.default)(2)(e=>Object.entries(e.code||{}).reduce((e,[t,n])=>({...e,[`* .${t}`]:n}),{})),Tc=vc(),G(vc,`createCopyToClipboardFunction`),Ec=H.div(({theme:e})=>({position:`relative`,overflow:`hidden`,color:e.color.defaultText}),({theme:e,bordered:t})=>t?{border:`1px solid ${e.appBorderColor}`,borderRadius:e.borderRadius,background:e.background.content}:{},({showLineNumbers:e})=>e?{".react-syntax-highlighter-line-number::before":{content:`attr(data-line-number)`}}:{}),Dc=G(({children:e,className:t})=>o.createElement(mc,{horizontal:!0,vertical:!0,className:t},e),`UnstyledScroller`),Oc=H(Dc)({position:`relative`},({theme:e})=>wc(e)),kc=H.pre(({theme:e,padded:t})=>({display:`flex`,justifyContent:`flex-start`,margin:0,padding:t?e.layoutMargin:0})),Ac=H.div(({theme:e})=>({flex:1,paddingLeft:2,paddingRight:e.layoutMargin,opacity:1,fontFamily:e.typography.fonts.mono})),jc=G(e=>{let t=[...e.children],n=t[0],r=n.children[0].value;return t[0]={...n,children:[],properties:{...n.properties,"data-line-number":r,style:{...n.properties.style,userSelect:`auto`}}},{...e,children:t}},`processLineNumber`),Mc=G(({rows:e,stylesheet:t,useInlineStyles:n})=>e.map((e,r)=>Ii({node:jc(e),stylesheet:t,useInlineStyles:n,key:`code-segement${r}`})),`defaultRenderer`),Nc=G((e,t)=>t?e?({rows:t,...n})=>e({rows:t.map(e=>jc(e)),...n}):Mc:e,`wrapRenderer`),Pc=G(({children:e,language:t=`jsx`,copyable:n=!1,bordered:r=!1,padded:i=!1,format:a=!0,formatter:s=void 0,className:c=void 0,showLineNumbers:l=!1,...u})=>{if(typeof e!=`string`||!e.trim())return null;let[d,f]=(0,o.useState)(``);(0,o.useEffect)(()=>{s?s(a,e).then(f):f(e.trim())},[e,a,s]);let[p,m]=(0,o.useState)(!1),h=(0,o.useCallback)(e=>{e.preventDefault(),Tc(d).then(()=>{m(!0),Sc.setTimeout(()=>m(!1),1500)}).catch(_c.error)},[d]),g=Nc(u.renderer,l);return o.createElement(Ec,{bordered:r,padded:i,showLineNumbers:l,className:c},o.createElement(Oc,null,o.createElement(Wa,{padded:i||r,language:t,showLineNumbers:l,showInlineLineNumbers:l,useInlineStyles:!1,PreTag:kc,CodeTag:Ac,lineNumberContainerStyle:{},...u,renderer:g},d)),n?o.createElement(Ro,{actionItems:[{title:p?`Copied`:`Copy`,onClick:h}]}):null)},`SyntaxHighlighter`),Pc.registerLanguage=(...e)=>Wa.registerLanguage(...e),Fc=Pc});function Lc(e){if(typeof e==`string`)return Mf;if(Array.isArray(e))return Nf;if(!e)return;let{type:t}=e;if(qf.has(t))return t}function Rc(e){let t=e===null?`null`:typeof e;if(t!==`string`&&t!==`object`)return`Unexpected doc '${t}',
215
+ Expected it to be 'string' or 'object'.`;if(Jf(e))throw Error(`doc is valid.`);let n=Object.prototype.toString.call(e);if(n!==`[object Object]`)return`Unexpected doc '${n}'.`;let r=Yf([...qf].map(e=>`'${e}'`));return`Unexpected doc.type '${e.type}'.
216
+ Expected it to be ${r}.`}function zc(e){return ep(e),{type:Ff,contents:e}}function Bc(e,t){return ep(t),{type:If,contents:t,n:e}}function J(e,t={}){return ep(e),tp(t.expandedStates,!0),{type:Rf,id:t.id,contents:e,break:!!t.shouldBreak,expandedStates:t.expandedStates}}function Vc(e){return Bc(-1/0,e)}function Hc(e){return Bc({type:`root`},e)}function Uc(e){return tp(e),{type:zf,parts:e}}function Wc(e,t=``,n={}){return ep(e),t!==``&&ep(t),{type:Bf,breakContents:e,flatContents:t,groupId:n.groupId}}function Gc(e,t){return ep(e),{type:Vf,contents:e,groupId:t.groupId,negate:t.negate}}function Kc(e,t){ep(e),tp(t);let n=[];for(let r=0;r<t.length;r++)r!==0&&n.push(e),n.push(t[r]);return n}function qc(e,t){if(typeof e==`string`)return t(e);let n=new Map;return r(e);function r(e){if(n.has(e))return n.get(e);let t=i(e);return n.set(e,t),t}function i(e){switch(Jf(e)){case Nf:return t(e.map(r));case zf:return t({...e,parts:e.parts.map(r)});case Bf:return t({...e,breakContents:r(e.breakContents),flatContents:r(e.flatContents)});case Rf:{let{expandedStates:n,contents:i}=e;return n?(n=n.map(r),i=n[0]):i=r(i),t({...e,contents:i,expandedStates:n})}case If:case Ff:case Vf:case Gf:case Hf:return t({...e,contents:r(e.contents)});case Mf:case Pf:case Lf:case Uf:case Wf:case Kf:return t(e);default:throw new Qf(e)}}}function Jc(e,t=sp){return qc(e,e=>typeof e==`string`?Kc(t,e.split(`
217
+ `)):e)}function Yc(e,t){let n=t===!0||t===up?up:dp,r=n===up?dp:up,i=0,a=0;for(let t of e)t===n?i++:t===r&&a++;return i>a?r:n}function Xc(e){if(typeof e!=`string`)throw TypeError(`Expected a string`);return e.replace(/[|\\{}()[\]^$+*?.]/g,`\\$&`).replace(/-/g,`\\x2d`)}function Zc(e){return e?.type===`front-matter`}function Qc(e,t){var n;if(e.type===`text`||e.type===`comment`||Cp(e)||e.type===`yaml`||e.type===`toml`)return null;if(e.type===`attribute`&&delete t.value,e.type===`docType`&&delete t.value,e.type===`angularControlFlowBlock`&&(n=e.parameters)!=null&&n.children)for(let n of t.parameters.children)Tp.has(e.name)?delete n.expression:n.expression=n.expression.trim();e.type===`angularIcuExpression`&&(t.switchValue=e.switchValue.trim()),e.type===`angularLetDeclarationInitializer`&&delete t.value}async function $c(e,t){if(e.language===`yaml`){let n=e.value.trim(),r=n?await t(n,{parser:`yaml`}):``;return Hc([e.startDelimiter,e.explicitLanguage,X,r,r?X:``,e.endDelimiter])}}function el(e,t=!0){return[zc([op,e]),t?op:``]}function tl(e,t){let n=e.type===`NGRoot`?e.node.type===`NGMicrosyntax`&&e.node.body.length===1&&e.node.body[0].type===`NGMicrosyntaxExpression`?e.node.body[0].expression:e.node:e.type===`JsExpressionRoot`?e.node:e;return n&&(n.type===`ObjectExpression`||n.type===`ArrayExpression`||(t.parser===`__vue_expression`||t.parser===`__vue_ts_expression`)&&(n.type===`TemplateLiteral`||n.type===`StringLiteral`))}async function nl(e,t,n,r){n={__isInHtmlAttribute:!0,__embeddedInHtml:!0,...n};let i=!0;r&&(n.__onHtmlBindingRoot=(e,t)=>{i=r(e,t)});let a=await t(e,n,t);return i?J(a):el(a)}function rl(e,t,n,r){let{node:i}=n,a=r.originalText.slice(i.sourceSpan.start.offset,i.sourceSpan.end.offset);return/^\s*$/u.test(a)?``:nl(a,e,{parser:`__ng_directive`,__isInHtmlAttribute:!1},tl)}function il(e,t){if(!t)return;let n=kp(t).toLowerCase();return e.find(({filenames:e})=>e?.some(e=>e.toLowerCase()===n))??e.find(({extensions:e})=>e?.some(e=>n.endsWith(e)))}function al(e,t){if(t)return e.find(({name:e})=>e.toLowerCase()===t)??e.find(({aliases:e})=>e?.includes(t))??e.find(({extensions:e})=>e?.includes(`.${t}`))}function ol(e,t){let n=e.plugins.flatMap(e=>e.languages??[]);return(al(n,t.language)??il(n,t.physicalFile)??il(n,t.file)??(t.physicalFile,void 0))?.parsers[0]}function sl(e){return e.type===`element`&&!e.hasExplicitNamespace&&![`html`,`svg`].includes(e.namespace)}function cl(e,t){return!!(e.type===`ieConditionalComment`&&e.lastChild&&!e.lastChild.isSelfClosing&&!e.lastChild.endSourceSpan||e.type===`ieConditionalComment`&&!e.complete||Vl(e)&&e.children.some(e=>e.type!==`text`&&e.type!==`interpolation`)||Zl(e,t)&&!fl(e)&&e.type!==`interpolation`)}function ll(e){return e.type===`attribute`||!e.parent||!e.prev?!1:ul(e.prev)}function ul(e){return e.type===`comment`&&e.value.trim()===`prettier-ignore`}function dl(e){return e.type===`text`||e.type===`comment`}function fl(e){return e.type===`element`&&(e.fullName===`script`||e.fullName===`style`||e.fullName===`svg:style`||e.fullName===`svg:script`||Fp(e)&&(e.name===`script`||e.name===`style`))}function pl(e){return e.children&&!fl(e)}function ml(e){return fl(e)||e.type===`interpolation`||hl(e)}function hl(e){return Wl(e).startsWith(`pre`)}function gl(e,t){var n;let r=i();if(r&&!e.prev&&(n=e.parent?.tagDefinition)!=null&&n.ignoreFirstLf)return e.type===`interpolation`;return r;function i(){return Cp(e)||e.type===`angularControlFlowBlock`?!1:(e.type===`text`||e.type===`interpolation`)&&e.prev&&(e.prev.type===`text`||e.prev.type===`interpolation`)?!0:!e.parent||e.parent.cssDisplay===`none`?!1:Vl(e.parent)?!0:!(!e.prev&&(e.parent.type===`root`||Vl(e)&&e.parent||fl(e.parent)||Yl(e.parent,t)||!Il(e.parent.cssDisplay))||e.prev&&!zl(e.prev.cssDisplay))}}function _l(e,t){return Cp(e)||e.type===`angularControlFlowBlock`?!1:(e.type===`text`||e.type===`interpolation`)&&e.next&&(e.next.type===`text`||e.next.type===`interpolation`)?!0:!e.parent||e.parent.cssDisplay===`none`?!1:Vl(e.parent)?!0:!(!e.next&&(e.parent.type===`root`||Vl(e)&&e.parent||fl(e.parent)||Yl(e.parent,t)||!Ll(e.parent.cssDisplay))||e.next&&!Rl(e.next.cssDisplay))}function vl(e){return Bl(e.cssDisplay)&&!fl(e)}function yl(e){return Cp(e)||e.next&&e.sourceSpan.end&&e.sourceSpan.end.line+1<e.next.sourceSpan.start.line}function bl(e){return xl(e)||e.type===`element`&&e.children.length>0&&([`body`,`script`,`style`].includes(e.name)||e.children.some(e=>kl(e)))||e.firstChild&&e.firstChild===e.lastChild&&e.firstChild.type!==`text`&&Tl(e.firstChild)&&(!e.lastChild.isTrailingSpaceSensitive||El(e.lastChild))}function xl(e){return e.type===`element`&&e.children.length>0&&([`html`,`head`,`ul`,`ol`,`select`].includes(e.name)||e.cssDisplay.startsWith(`table`)&&e.cssDisplay!==`table-cell`)}function Sl(e){return Dl(e)||e.prev&&Cl(e.prev)||wl(e)}function Cl(e){return Dl(e)||e.type===`element`&&e.fullName===`br`||wl(e)}function wl(e){return Tl(e)&&El(e)}function Tl(e){return e.hasLeadingSpaces&&(e.prev?e.prev.sourceSpan.end.line<e.sourceSpan.start.line:e.parent.type===`root`||e.parent.startSourceSpan.end.line<e.sourceSpan.start.line)}function El(e){return e.hasTrailingSpaces&&(e.next?e.next.sourceSpan.start.line>e.sourceSpan.end.line:e.parent.type===`root`||e.parent.endSourceSpan&&e.parent.endSourceSpan.start.line>e.sourceSpan.end.line)}function Dl(e){switch(e.type){case`ieConditionalComment`:case`comment`:case`directive`:return!0;case`element`:return[`script`,`select`].includes(e.name)}return!1}function Ol(e){return e.lastChild?Ol(e.lastChild):e}function kl(e){return e.children?.some(e=>e.type!==`text`)}function Al(e){if(e)switch(e){case`module`:case`text/javascript`:case`text/babel`:case`application/javascript`:return`babel`;case`application/x-typescript`:return`typescript`;case`text/markdown`:return`markdown`;case`text/html`:return`html`;case`text/x-handlebars-template`:return`glimmer`;default:if(e.endsWith(`json`)||e.endsWith(`importmap`)||e===`speculationrules`)return`json`}}function jl(e,t){let{name:n,attrMap:r}=e;if(n!==`script`||Object.prototype.hasOwnProperty.call(r,`src`))return;let{type:i,lang:a}=e.attrMap;return!a&&!i?`babel`:Ap(t,{language:a})??Al(i)}function Ml(e,t){if(!Zl(e,t))return;let{attrMap:n}=e;if(Object.prototype.hasOwnProperty.call(n,`src`))return;let{type:r,lang:i}=n;return Ap(t,{language:i})??Al(r)}function Nl(e,t){if(e.name!==`style`)return;let{lang:n}=e.attrMap;return n?Ap(t,{language:n}):`css`}function Pl(e,t){return jl(e,t)??Nl(e,t)??Ml(e,t)}function Fl(e){return e===`block`||e===`list-item`||e.startsWith(`table`)}function Il(e){return!Fl(e)&&e!==`inline-block`}function Ll(e){return!Fl(e)&&e!==`inline-block`}function Rl(e){return!Fl(e)}function zl(e){return!Fl(e)}function Bl(e){return!Fl(e)&&e!==`inline-block`}function Vl(e){return Wl(e).startsWith(`pre`)}function Hl(e,t){let n=e;for(;n;){if(t(n))return!0;n=n.parent}return!1}function Ul(e,t){if(Xl(e,t))return`block`;if(e.prev?.type===`comment`){let t=e.prev.value.match(/^\s*display:\s*([a-z]+)\s*$/u);if(t)return t[1]}let n=!1;if(e.type===`element`&&e.namespace===`svg`)if(Hl(e,e=>e.fullName===`svg:foreignObject`))n=!0;else return e.name===`svg`?`inline-block`:`block`;switch(t.htmlWhitespaceSensitivity){case`strict`:return`inline`;case`ignore`:return`block`;default:return e.type===`element`&&(!e.namespace||n||Fp(e))&&Mp[e.name]||jp}}function Wl(e){return e.type===`element`&&(!e.namespace||Fp(e))&&Pp[e.name]||Np}function Gl(e){let t=1/0;for(let n of e.split(`
218
+ `)){if(n.length===0)continue;let e=yp.getLeadingWhitespaceCount(n);if(e===0)return 0;n.length!==e&&e<t&&(t=e)}return t===1/0?0:t}function Kl(e,t=Gl(e)){return t===0?e:e.split(`
219
+ `).map(e=>e.slice(t)).join(`
220
+ `)}function ql(e){return jf(!1,jf(!1,e,`&apos;`,`'`),`&quot;`,`"`)}function Jl(e){return ql(e.value)}function Yl(e,t){return Xl(e,t)&&!zp.has(e.fullName)}function Xl(e,t){return t.parser===`vue`&&e.type===`element`&&e.parent.type===`root`&&e.fullName.toLowerCase()!==`html`}function Zl(e,t){return Xl(e,t)&&(Yl(e,t)||e.attrMap.lang&&e.attrMap.lang!==`html`)}function Ql(e){let t=e.fullName;return t.charAt(0)===`#`||t===`slot-scope`||t===`v-slot`||t.startsWith(`v-slot:`)}function $l(e,t){let n=e.parent;if(!Xl(n,t))return!1;let r=n.fullName,i=e.fullName;return r===`script`&&i===`setup`||r===`style`&&i===`vars`}function eu(e,t=e.value){return e.parent.isWhitespaceSensitive?e.parent.isIndentationSensitive?Jc(t):Jc(Kl(Lp(t)),X):Kc(ap,yp.split(t))}function tu(e,t){return Xl(e,t)&&e.name===`script`}async function nu(e,t){let n=[];for(let[r,i]of e.split(Bp).entries())if(r%2==0)n.push(Jc(i));else try{n.push(J([`{{`,zc([ap,await nl(i,t,{parser:`__ng_interpolation`,__isInHtmlInterpolation:!0})]),ap,`}}`]))}catch{n.push(`{{`,Jc(i),`}}`)}return n}function ru({parser:e}){return(t,n,r)=>nl(Jl(r.node),t,{parser:e},tl)}function iu(e,t){if(t.parser!==`angular`)return;let{node:n}=e,r=n.fullName;if(r.startsWith(`(`)&&r.endsWith(`)`)||r.startsWith(`on-`))return Vp;if(r.startsWith(`[`)&&r.endsWith(`]`)||/^bind(?:on)?-/u.test(r)||/^ng-(?:if|show|hide|class|style)$/u.test(r))return Hp;if(r.startsWith(`*`))return Up;let i=Jl(n);if(/^i18n(?:-.+)?$/u.test(r))return()=>el(Uc(eu(n,i.trim())),!i.includes(`@@`));if(Bp.test(i))return e=>nu(i,e)}function au(e,t){let{node:n}=e,r=Jl(n);if(n.fullName===`class`&&!t.parentParser&&!r.includes(`{{`))return()=>r.trim().split(/\s+/u).join(` `)}function ou(e){return e===` `||e===`
221
+ `||e===`\f`||e===`\r`||e===` `}function su(e){let t=e.length,n,r,i,a,o,s=0,c;function l(t){let n,r=t.exec(e.substring(s));if(r)return[n]=r,s+=n.length,n}G(l,`p`);let u=[];for(;;){if(l(qp),s>=t){if(u.length===0)throw Error(`Must contain one or more image candidate strings.`);return u}c=s,n=l(Jp),r=[],n.slice(-1)===`,`?(n=n.replace(Yp,``),f()):d()}function d(){for(l(Kp),i=``,a=`in descriptor`;;){if(o=e.charAt(s),a===`in descriptor`)if(ou(o))i&&(r.push(i),i=``,a=`after descriptor`);else if(o===`,`){s+=1,i&&r.push(i),f();return}else if(o===`(`)i+=o,a=`in parens`;else if(o===``){i&&r.push(i),f();return}else i+=o;else if(a===`in parens`)if(o===`)`)i+=o,a=`in descriptor`;else if(o===``){r.push(i),f();return}else i+=o;else if(a===`after descriptor`&&!ou(o))if(o===``){f();return}else a=`in descriptor`,--s;s+=1}}G(d,`f`);function f(){let t=!1,i,a,o,s,l={},d,f,p,m,h;for(s=0;s<r.length;s++)d=r[s],f=d[d.length-1],p=d.substring(0,d.length-1),m=parseInt(p,10),h=parseFloat(p),Xp.test(p)&&f===`w`?((i||a)&&(t=!0),m===0?t=!0:i=m):Zp.test(p)&&f===`x`?((i||a||o)&&(t=!0),h<0?t=!0:a=h):Xp.test(p)&&f===`h`?((o||a)&&(t=!0),m===0?t=!0:o=m):t=!0;if(!t)l.source={value:n,startOffset:c},i&&(l.width={value:i}),a&&(l.density={value:a}),o&&(l.height={value:o}),u.push(l);else throw Error(`Invalid srcset descriptor found in "${e}" at "${d}".`)}G(f,`d`)}function cu(e){if(e.node.fullName===`srcset`&&(e.parent.fullName===`img`||e.parent.fullName===`source`))return()=>lu(Jl(e.node))}function lu(e){let t=Qp(e),n=em.filter(e=>t.some(t=>Object.prototype.hasOwnProperty.call(t,e)));if(n.length>1)throw Error(`Mixed descriptor in srcset is not supported`);let[r]=n,i=$p[r],a=t.map(e=>e.source.value),o=Math.max(...a.map(e=>e.length)),s=t.map(e=>e[r]?String(e[r].value):``),c=s.map(e=>{let t=e.indexOf(`.`);return t===-1?e.length:t}),l=Math.max(...c);return el(Kc([`,`,ap],a.map((e,t)=>{let n=[e],r=s[t];if(r){let a=o-e.length+1,s=l-c[t],u=` `.repeat(a+s);n.push(Wc(u,` `),r+i)}return n})))}function uu(e,t){let{node:n}=e,r=Jl(e.node).trim();if(n.fullName===`style`&&!t.parentParser&&!r.includes(`{{`))return async e=>el(await e(r,{parser:`css`,__isHTMLStyleAttribute:!0}))}function du(e,t){let{root:n}=e;return nm.has(n)||nm.set(n,n.children.some(e=>tu(e,t)&&[`ts`,`typescript`].includes(e.attrMap.lang))),nm.get(n)}function fu(e,t,n){let{node:r}=n;return nl(`type T<${Jl(r)}> = any`,e,{parser:`babel-ts`,__isEmbeddedTypescriptGenericParameters:!0},tl)}function pu(e,t,{parseWithTs:n}){return nl(`function _(${e}) {}`,t,{parser:n?`babel-ts`:`babel`,__isVueBindings:!0})}async function mu(e,t,n,r){let{left:i,operator:a,right:o}=hu(Jl(n.node)),s=rm(n,r);return[J(await nl(`function _(${i}) {}`,e,{parser:s?`babel-ts`:`babel`,__isVueForBindingLeft:!0})),` `,a,` `,await nl(o,e,{parser:s?`__ts_expression`:`__js_expression`})]}function hu(e){let t=/(.*?)\s+(in|of)\s+(.*)/su,n=/,([^,\]}]*)(?:,([^,\]}]*))?$/u,r=/^\(|\)$/gu,i=e.match(t);if(!i)return;let a={};if(a.for=i[3].trim(),!a.for)return;let o=jf(!1,i[1].trim(),r,``),s=o.match(n);s?(a.alias=o.replace(n,``),a.iterator1=s[1].trim(),s[2]&&(a.iterator2=s[2].trim())):a.alias=o;let c=[a.alias,a.iterator1,a.iterator2];if(!c.some((e,t)=>!e&&(t===0||c.slice(t+1).some(Boolean))))return{left:c.filter(Boolean).join(`,`),operator:i[2],right:a.for}}function gu(e,t){if(t.parser!==`vue`)return;let{node:n}=e,r=n.fullName;if(r===`v-for`)return mu;if(r===`generic`&&tu(n.parent,t))return fu;let i=Jl(n),a=rm(e,t);if(Ql(n)||$l(n,t))return e=>pu(i,e,{parseWithTs:a});if(r.startsWith(`@`)||r.startsWith(`v-on:`))return e=>_u(i,e,{parseWithTs:a});if(r.startsWith(`:`)||r.startsWith(`v-bind:`))return e=>vu(i,e,{parseWithTs:a});if(r.startsWith(`v-`))return e=>yu(i,e,{parseWithTs:a})}async function _u(e,t,{parseWithTs:n}){try{return await yu(e,t,{parseWithTs:n})}catch(e){if(e.cause?.code!==`BABEL_PARSER_SYNTAX_ERROR`)throw e}return nl(e,t,{parser:n?`__vue_ts_event_binding`:`__vue_event_binding`},tl)}function vu(e,t,{parseWithTs:n}){return nl(e,t,{parser:n?`__vue_ts_expression`:`__vue_expression`},tl)}function yu(e,t,{parseWithTs:n}){return nl(e,t,{parser:n?`__ts_expression`:`__js_expression`},tl)}function bu(e,t){let{node:n}=e;if(n.value){if(/^PRETTIER_HTML_PLACEHOLDER_\d+_\d+_IN_JS$/u.test(t.originalText.slice(n.valueSpan.start.offset,n.valueSpan.end.offset))||t.parser===`lwc`&&n.value.startsWith(`{`)&&n.value.endsWith(`}`))return[n.rawName,`=`,n.value];for(let n of[tm,uu,Gp,im,Wp]){let r=n(e,t);if(r)return xu(r)}}}function xu(e){return async(t,n,r,i)=>{let a=await e(t,n,r,i);if(a)return a=qc(a,e=>typeof e==`string`?jf(!1,e,`"`,`&quot;`):e),[r.node.rawName,`="`,J(a),`"`]}}function Su(e){return Array.isArray(e)&&e.length>0}function Cu(e){return e.sourceSpan.start.offset}function wu(e){return e.sourceSpan.end.offset}function Tu(e,t){return[e.isSelfClosing?``:Eu(e,t),Du(e,t)]}function Eu(e,t){return e.lastChild&&Fu(e.lastChild)?``:[Ou(e,t),Au(e,t)]}function Du(e,t){return(e.next?Nu(e.next):Pu(e.parent))?``:[ju(e,t),ku(e,t)]}function Ou(e,t){return Pu(e)?ju(e.lastChild,t):``}function ku(e,t){return Fu(e)?Au(e.parent,t):Iu(e)?Wu(e.next,t):``}function Au(e,t){if(sm(!e.isSelfClosing),Mu(e,t))return``;switch(e.type){case`ieConditionalComment`:return`<!`;case`element`:if(e.hasHtmComponentClosingTag)return`<//`;default:return`</${e.rawName}`}}function ju(e,t){if(Mu(e,t))return``;switch(e.type){case`ieConditionalComment`:case`ieConditionalEndComment`:return`[endif]-->`;case`ieConditionalStartComment`:return`]><!-->`;case`interpolation`:return`}}`;case`angularIcuExpression`:return`}`;case`element`:if(e.isSelfClosing)return`/>`;default:return`>`}}function Mu(e,t){return!e.isSelfClosing&&!e.endSourceSpan&&(ll(e)||cl(e.parent,t))}function Nu(e){return e.prev&&e.prev.type!==`docType`&&e.type!==`angularControlFlowBlock`&&!dl(e.prev)&&e.isLeadingSpaceSensitive&&!e.hasLeadingSpaces}function Pu(e){return e.lastChild?.isTrailingSpaceSensitive&&!e.lastChild.hasTrailingSpaces&&!dl(Ol(e.lastChild))&&!Vl(e)}function Fu(e){return!e.next&&!e.hasTrailingSpaces&&e.isTrailingSpaceSensitive&&dl(Ol(e))}function Iu(e){return e.next&&!dl(e.next)&&dl(e)&&e.isTrailingSpaceSensitive&&!e.hasTrailingSpaces}function Lu(e){let t=e.trim().match(/^prettier-ignore-attribute(?:\s+(.+))?$/su);return t?t[1]?t[1].split(/\s+/u):!0:!1}function Ru(e){return!e.prev&&e.isLeadingSpaceSensitive&&!e.hasLeadingSpaces}function zu(e,t,n){let{node:r}=e;if(!cm(r.attrs))return r.isSelfClosing?` `:``;let i=r.prev?.type===`comment`&&Lu(r.prev.value),a=typeof i==`boolean`?()=>i:Array.isArray(i)?e=>i.includes(e.rawName):()=>!1,o=e.map(({node:e})=>a(e)?Jc(t.originalText.slice(Cu(e),wu(e))):n(),`attrs`),s=r.type===`element`&&r.fullName===`script`&&r.attrs.length===1&&r.attrs[0].fullName===`src`&&r.children.length===0,c=t.singleAttributePerLine&&r.attrs.length>1&&!Xl(r,t)?X:ap,l=[zc([s?` `:ap,Kc(c,o)])];return r.firstChild&&Ru(r.firstChild)||r.isSelfClosing&&Pu(r.parent)||s?l.push(r.isSelfClosing?` `:``):l.push(t.bracketSameLine?r.isSelfClosing?` `:``:r.isSelfClosing?ap:op),l}function Bu(e){return e.firstChild&&Ru(e.firstChild)?``:Gu(e)}function Vu(e,t,n){let{node:r}=e;return[Hu(r,t),zu(e,t,n),r.isSelfClosing?``:Bu(r)]}function Hu(e,t){return e.prev&&Iu(e.prev)?``:[Uu(e,t),Wu(e,t)]}function Uu(e,t){return Ru(e)?Gu(e.parent):Nu(e)?ju(e.prev,t):``}function Wu(e,t){switch(e.type){case`ieConditionalComment`:case`ieConditionalStartComment`:return`<!--[if ${e.condition}`;case`ieConditionalEndComment`:return`<!--<!`;case`interpolation`:return`{{`;case`docType`:if(e.value===`html`){let e=t.filepath??``;if(/\.html?$/u.test(e))return lm}return t.originalText.slice(Cu(e),wu(e)).slice(0,lm.length);case`angularIcuExpression`:return`{`;case`element`:if(e.condition)return`<!--[if ${e.condition}]><!--><${e.rawName}`;default:return`<${e.rawName}`}}function Gu(e){switch(sm(!e.isSelfClosing),e.type){case`ieConditionalComment`:return`]>`;case`element`:if(e.condition)return`><!--<![endif]-->`;default:return`>`}}function Ku(e,t){if(!e.endSourceSpan)return``;let n=e.startSourceSpan.end.offset;e.firstChild&&Ru(e.firstChild)&&(n-=Gu(e).length);let r=e.endSourceSpan.start.offset;return e.lastChild&&Fu(e.lastChild)?r+=Au(e,t).length:Pu(e)&&(r-=ju(e.lastChild,t).length),t.originalText.slice(n,r)}function qu(e,t){let{node:n}=e;switch(n.type){case`element`:if(fl(n)||n.type===`interpolation`)return;if(!n.isSelfClosing&&Zl(n,t)){let r=Pl(n,t);return r?async(i,a)=>{let o=um(n,t),s=/^\s*$/u.test(o),c=``;return s||=(c=await i(Lp(o),{parser:r,__embeddedInHtml:!0}),c===``),[Uu(n,t),J(Vu(e,t,a)),s?``:X,c,s?``:X,Tu(n,t),ku(n,t)]}:void 0}break;case`text`:if(fl(n.parent)){let e=Pl(n.parent,t);if(e)return async r=>{let i=e===`markdown`?Kl(n.value.replace(/^[^\S\n]*\n/u,``)):n.value,a={parser:e,__embeddedInHtml:!0};if(t.parser===`html`&&e===`babel`){let e=`script`,{attrMap:t}=n.parent;t&&(t.type===`module`||t.type===`text/babel`&&t[`data-type`]===`module`)&&(e=`module`),a.__babelSourceType=e}return[np,Uu(n,t),await r(i,a),ku(n,t)]}}else if(n.parent.type===`interpolation`)return async r=>{let i={__isInHtmlInterpolation:!0,__embeddedInHtml:!0};return t.parser===`angular`?i.parser=`__ng_interpolation`:t.parser===`vue`?i.parser=rm(e,t)?`__vue_ts_expression`:`__vue_expression`:i.parser=`__js_expression`,[zc([ap,await r(n.value,i)]),n.parent.next&&Nu(n.parent.next)?` `:ap]};break;case`attribute`:return am(e,t);case`front-matter`:return e=>Dp(n,e);case`angularControlFlowBlockParameters`:return dm.has(e.parent.name)?Op:void 0;case`angularLetDeclarationInitializer`:return e=>nl(n.value,e,{parser:`__ng_binding`,__isInHtmlAttribute:!1})}}function Ju(e){if(pm!==null&&typeof pm.property){let e=pm;return pm=Ju.prototype=null,e}return pm=Ju.prototype=e??Object.create(null),new Ju}function Yu(e){return Ju(e)}function Xu(e,t=`type`){Yu(e);function n(n){let r=n[t],i=e[r];if(!Array.isArray(i))throw Object.assign(Error(`Missing visitor keys for '${r}'.`),{node:n});return i}return G(n,`r`),n}function Zu(e){return/^\s*<!--\s*@(?:format|prettier)\s*-->/u.test(e)}function Qu(e){return`<!-- @format -->
222
+
223
+ `+e}function $u(e){let t=wu(e);return e.type===`element`&&!e.endSourceSpan&&cm(e.children)?Math.max(t,$u(lp(!1,e.children,-1))):t}function ed(e,t,n){let r=e.node;if(ll(r)){let e=$u(r);return[Uu(r,t),Jc(yp.trimEnd(t.originalText.slice(Cu(r)+(r.prev&&Iu(r.prev)?Wu(r).length:0),e-(r.next&&Nu(r.next)?ju(r,t).length:0)))),ku(r,t)]}return n()}function td(e,t){return dl(e)&&dl(t)?e.isTrailingSpaceSensitive?e.hasTrailingSpaces?Sl(t)?X:ap:``:Sl(t)?X:op:Iu(e)&&(ll(t)||t.firstChild||t.isSelfClosing||t.type===`element`&&t.attrs.length>0)||e.type===`element`&&e.isSelfClosing&&Nu(t)?``:!t.isLeadingSpaceSensitive||Sl(t)||Nu(t)&&e.lastChild&&Fu(e.lastChild)&&e.lastChild.lastChild&&Fu(e.lastChild.lastChild)?X:t.hasLeadingSpaces?ap:op}function nd(e,t,n){let{node:r}=e;if(xl(r))return[np,...e.map(e=>{let r=e.node,i=r.prev?td(r.prev,r):``;return[i?[i,yl(r.prev)?X:``]:``,ed(e,t,n)]},`children`)];let i=r.children.map(()=>Symbol(``));return e.map((e,r)=>{let a=e.node;if(dl(a)){if(a.prev&&dl(a.prev)){let r=td(a.prev,a);if(r)return yl(a.prev)?[X,X,ed(e,t,n)]:[r,ed(e,t,n)]}return ed(e,t,n)}let o=[],s=[],c=[],l=[],u=a.prev?td(a.prev,a):``,d=a.next?td(a,a.next):``;return u&&(yl(a.prev)?o.push(X,X):u===X?o.push(X):dl(a.prev)?s.push(u):s.push(Wc(``,op,{groupId:i[r-1]}))),d&&(yl(a)?dl(a.next)&&l.push(X,X):d===X?dl(a.next)&&l.push(X):c.push(d)),[...o,J([...s,J([ed(e,t,n),...c],{id:i[r]})]),...l]},`children`)}function rd(e,t,n){let{node:r}=e,i=[];ad(e)&&i.push(`} `),i.push(`@`,r.name),r.parameters&&i.push(` (`,J(n(`parameters`)),`)`),i.push(` {`);let a=id(r);return r.children.length>0?(r.firstChild.hasLeadingSpaces=!0,r.lastChild.hasTrailingSpaces=!0,i.push(zc([X,nd(e,t,n)])),a&&i.push(X,`}`)):a&&i.push(`}`),J(i,{shouldBreak:!0})}function id(e){var t;return!(e.next?.type===`angularControlFlowBlock`&&(t=bm.get(e.name))!=null&&t.has(e.next.name))}function ad(e){let{previous:t}=e;return t?.type===`angularControlFlowBlock`&&!ll(t)&&!id(t)}function od(e,t,n){return[zc([op,Kc([`;`,ap],e.map(n,`children`))]),op]}function sd(e,t,n){let{node:r}=e;return[Hu(r,t),J([r.switchValue.trim(),`, `,r.clause,r.cases.length>0?[`,`,zc([ap,Kc(ap,e.map(n,`cases`))])]:``,op]),Du(r,t)]}function cd(e,t,n){let{node:r}=e;return[r.value,` {`,J([zc([op,e.map(({node:e})=>e.type===`text`&&!yp.trim(e.value)?``:n(),`expression`)]),op]),`}`]}function ld(e,t,n){let{node:r}=e;if(cl(r,t))return[Uu(r,t),J(Vu(e,t,n)),Jc(um(r,t)),...Tu(r,t),ku(r,t)];let i=r.children.length===1&&(r.firstChild.type===`interpolation`||r.firstChild.type===`angularIcuExpression`)&&r.firstChild.isLeadingSpaceSensitive&&!r.firstChild.hasLeadingSpaces&&r.lastChild.isTrailingSpaceSensitive&&!r.lastChild.hasTrailingSpaces,a=Symbol(`element-attr-group-id`),o=G(i=>J([J(Vu(e,t,n),{id:a}),i,Tu(r,t)]),`a`),s=G(e=>i?Gc(e,{groupId:a}):(fl(r)||Yl(r,t))&&r.parent.type===`root`&&t.parser===`vue`&&!t.vueIndentScriptAndStyle?e:zc(e),`o`),c=G(()=>i?Wc(op,``,{groupId:a}):r.firstChild.hasLeadingSpaces&&r.firstChild.isLeadingSpaceSensitive?ap:r.firstChild.type===`text`&&r.isWhitespaceSensitive&&r.isIndentationSensitive?Vc(op):op,`u`),l=G(()=>(r.next?Nu(r.next):Pu(r.parent))?r.lastChild.hasTrailingSpaces&&r.lastChild.isTrailingSpaceSensitive?` `:``:i?Wc(op,``,{groupId:a}):r.lastChild.hasTrailingSpaces&&r.lastChild.isTrailingSpaceSensitive?ap:(r.lastChild.type===`comment`||r.lastChild.type===`text`&&r.isWhitespaceSensitive&&r.isIndentationSensitive)&&RegExp(`\\n[\\t ]{${t.tabWidth*(e.ancestors.length-1)}}$`,`u`).test(r.lastChild.value)?``:op,`p`);return r.children.length===0?o(r.hasDanglingSpaces&&r.isDanglingSpaceSensitive?ap:``):o([bl(r)?np:``,s([c(),nd(e,t,n)]),l()])}function ud(e){return e>=9&&e<=32||e==160}function dd(e){return 48<=e&&e<=57}function fd(e){return e>=97&&e<=122||e>=65&&e<=90}function pd(e){return e>=97&&e<=102||e>=65&&e<=70||dd(e)}function md(e){return e===10||e===13}function hd(e){return 48<=e&&e<=55}function gd(e){return e===39||e===34||e===96}function _d(e){return e.replace(xm,(...e)=>e[1].toUpperCase())}function vd(e,t){for(let n of Am)n(e,t);return e}function yd(e){e.walk(e=>{if(e.type===`element`&&e.tagDefinition.ignoreFirstLf&&e.children.length>0&&e.children[0].type===`text`&&e.children[0].value[0]===`
224
+ `){let t=e.children[0];t.value.length===1?e.removeChild(t):t.value=t.value.slice(1)}})}function bd(e){let t=G(e=>e.type===`element`&&e.prev?.type===`ieConditionalStartComment`&&e.prev.sourceSpan.end.offset===e.startSourceSpan.start.offset&&e.firstChild?.type===`ieConditionalEndComment`&&e.firstChild.sourceSpan.start.offset===e.startSourceSpan.end.offset,`e`);e.walk(e=>{if(e.children)for(let n=0;n<e.children.length;n++){let r=e.children[n];if(!t(r))continue;let i=r.prev,a=r.firstChild;e.removeChild(i),n--;let o=new Z(i.sourceSpan.start,a.sourceSpan.end),s=new Z(o.start,r.sourceSpan.end);r.condition=i.condition,r.sourceSpan=s,r.startSourceSpan=o,r.removeChild(a)}})}function xd(e,t,n){e.walk(e=>{if(e.children)for(let r=0;r<e.children.length;r++){let i=e.children[r];if(i.type!==`text`&&!t(i))continue;i.type!==`text`&&(i.type=`text`,i.value=n(i));let a=i.prev;!a||a.type!==`text`||(a.value+=i.value,a.sourceSpan=new Z(a.sourceSpan.start,i.sourceSpan.end),e.removeChild(i),r--)}})}function Sd(e){return xd(e,e=>e.type===`cdata`,e=>`<![CDATA[${e.value}]]>`)}function Cd(e){let t=G(e=>e.type===`element`&&e.attrs.length===0&&e.children.length===1&&e.firstChild.type===`text`&&!yp.hasWhitespaceCharacter(e.children[0].value)&&!e.firstChild.hasLeadingSpaces&&!e.firstChild.hasTrailingSpaces&&e.isLeadingSpaceSensitive&&!e.hasLeadingSpaces&&e.isTrailingSpaceSensitive&&!e.hasTrailingSpaces&&e.prev?.type===`text`&&e.next?.type===`text`,`e`);e.walk(e=>{if(e.children)for(let n=0;n<e.children.length;n++){let r=e.children[n];if(!t(r))continue;let i=r.prev,a=r.next;i.value+=`<${r.rawName}>`+r.firstChild.value+`</${r.rawName}>`+a.value,i.sourceSpan=new Z(i.sourceSpan.start,a.sourceSpan.end),i.isTrailingSpaceSensitive=a.isTrailingSpaceSensitive,i.hasTrailingSpaces=a.hasTrailingSpaces,e.removeChild(r),n--,e.removeChild(a)}})}function wd(e,t){if(t.parser===`html`)return;let n=/\{\{(.+?)\}\}/su;e.walk(e=>{if(pl(e))for(let t of e.children){if(t.type!==`text`)continue;let r=t.sourceSpan.start,i=null,a=t.value.split(n);for(let n=0;n<a.length;n++,r=i){let o=a[n];if(n%2==0){i=r.moveBy(o.length),o.length>0&&e.insertChildBefore(t,{type:`text`,value:o,sourceSpan:new Z(r,i)});continue}i=r.moveBy(o.length+4),e.insertChildBefore(t,{type:`interpolation`,sourceSpan:new Z(r,i),children:o.length===0?[]:[{type:`text`,value:o,sourceSpan:new Z(r.moveBy(2),i.moveBy(-2))}]})}e.removeChild(t)}})}function Td(e){e.walk(e=>{if(!e.children)return;if(e.children.length===0||e.children.length===1&&e.children[0].type===`text`&&yp.trim(e.children[0].value).length===0){e.hasDanglingSpaces=e.children.length>0,e.children=[];return}let t=ml(e),n=hl(e);if(!t)for(let t=0;t<e.children.length;t++){let n=e.children[t];if(n.type!==`text`)continue;let{leadingWhitespace:r,text:i,trailingWhitespace:a}=Rp(n.value),o=n.prev,s=n.next;i?(n.value=i,n.sourceSpan=new Z(n.sourceSpan.start.moveBy(r.length),n.sourceSpan.end.moveBy(-a.length)),r&&(o&&(o.hasTrailingSpaces=!0),n.hasLeadingSpaces=!0),a&&(n.hasTrailingSpaces=!0,s&&(s.hasLeadingSpaces=!0))):(e.removeChild(n),t--,(r||a)&&(o&&(o.hasTrailingSpaces=!0),s&&(s.hasLeadingSpaces=!0)))}e.isWhitespaceSensitive=t,e.isIndentationSensitive=n})}function Ed(e){e.walk(e=>{e.isSelfClosing=!e.children||e.type===`element`&&(e.tagDefinition.isVoid||e.endSourceSpan&&e.startSourceSpan.start===e.endSourceSpan.start&&e.startSourceSpan.end===e.endSourceSpan.end)})}function Dd(e,t){e.walk(e=>{e.type===`element`&&(e.hasHtmComponentClosingTag=e.endSourceSpan&&/^<\s*\/\s*\/\s*>$/u.test(t.originalText.slice(e.endSourceSpan.start.offset,e.endSourceSpan.end.offset)))})}function Od(e,t){e.walk(e=>{e.cssDisplay=Ul(e,t)})}function kd(e,t){e.walk(e=>{let{children:n}=e;if(n){if(n.length===0){e.isDanglingSpaceSensitive=vl(e);return}for(let e of n)e.isLeadingSpaceSensitive=gl(e,t),e.isTrailingSpaceSensitive=_l(e,t);for(let e=0;e<n.length;e++){let t=n[e];t.isLeadingSpaceSensitive=(e===0||t.prev.isTrailingSpaceSensitive)&&t.isLeadingSpaceSensitive,t.isTrailingSpaceSensitive=(e===n.length-1||t.next.isLeadingSpaceSensitive)&&t.isTrailingSpaceSensitive}}})}function Ad(e,t,n){let{node:r}=e;switch(r.type){case`front-matter`:return Jc(r.raw);case`root`:return t.__onHtmlRoot&&t.__onHtmlRoot(r),[J(nd(e,t,n)),X];case`element`:case`ieConditionalComment`:return ld(e,t,n);case`angularControlFlowBlock`:return rd(e,t,n);case`angularControlFlowBlockParameters`:return od(e,t,n);case`angularControlFlowBlockParameter`:return yp.trim(r.expression);case`angularLetDeclaration`:return J([`@let `,J([r.id,` =`,J(zc([ap,n(`init`)]))]),`;`]);case`angularLetDeclarationInitializer`:return r.value;case`angularIcuExpression`:return sd(e,t,n);case`angularIcuCase`:return cd(e,t,n);case`ieConditionalStartComment`:case`ieConditionalEndComment`:return[Hu(r),Du(r)];case`interpolation`:return[Hu(r,t),...e.map(n,`children`),Du(r,t)];case`text`:{if(r.parent.type===`interpolation`){let e=/\n[^\S\n]*$/u,t=e.test(r.value);return[Jc(t?r.value.replace(e,``):r.value),t?X:``]}let e=Uu(r,t),n=eu(r),i=ku(r,t);return n[0]=[e,n[0]],n.push([n.pop(),i]),Uc(n)}case`docType`:return[J([Hu(r,t),` `,jf(!1,r.value.replace(/^html\b/iu,`html`),/\s+/gu,` `)]),Du(r,t)];case`comment`:return[Uu(r,t),Jc(t.originalText.slice(Cu(r),wu(r))),ku(r,t)];case`attribute`:{if(r.value===null)return r.rawName;let e=ql(r.value),t=fp(e,`"`);return[r.rawName,`=`,t,Jc(t===`"`?jf(!1,e,`"`,`&quot;`):jf(!1,e,`'`,`&apos;`)),t]}case`cdata`:default:throw new Sp(r,`HTML`)}}function jd(e,t=!0){if(e[0]!=`:`)return[null,e];let n=e.indexOf(`:`,1);if(n===-1){if(t)throw Error(`Unsupported format "${e}" expecting ":namespace:name"`);return[null,e]}return[e.slice(1,n),e.slice(n+1)]}function Md(e){return jd(e)[1]===`ng-container`}function Nd(e){return jd(e)[1]===`ng-content`}function Pd(e){return e===null?null:jd(e)[0]}function Fd(e,t){return e?`:${e}:${t}`:t}function Id(){return Jm||(Jm={},Ld(Gm.HTML,[`iframe|srcdoc`,`*|innerHTML`,`*|outerHTML`]),Ld(Gm.STYLE,[`*|style`]),Ld(Gm.URL,[`*|formAction`,`area|href`,`area|ping`,`audio|src`,`a|href`,`a|ping`,`blockquote|cite`,`body|background`,`del|cite`,`form|action`,`img|src`,`input|src`,`ins|cite`,`q|cite`,`source|src`,`track|src`,`video|poster`,`video|src`]),Ld(Gm.RESOURCE_URL,[`applet|code`,`applet|codebase`,`base|href`,`embed|src`,`frame|src`,`head|profile`,`html|manifest`,`iframe|src`,`link|href`,`media|src`,`object|codebase`,`object|data`,`script|src`])),Jm}function Ld(e,t){for(let n of t)Jm[n.toLowerCase()]=e}function Rd(e){switch(e){case`width`:case`height`:case`minWidth`:case`minHeight`:case`maxWidth`:case`maxHeight`:case`left`:case`top`:case`bottom`:case`right`:case`fontSize`:case`outlineWidth`:case`outlineOffset`:case`paddingTop`:case`paddingLeft`:case`paddingBottom`:case`paddingRight`:case`marginTop`:case`marginLeft`:case`marginBottom`:case`marginRight`:case`borderRadius`:case`borderWidth`:case`borderTopWidth`:case`borderLeftWidth`:case`borderRightWidth`:case`borderBottomWidth`:case`textIndent`:return!0;default:return!1}}function zd(e){return ch||(sh=new Q({canSelfClose:!0}),ch=Object.assign(Object.create(null),{base:new Q({isVoid:!0}),meta:new Q({isVoid:!0}),area:new Q({isVoid:!0}),embed:new Q({isVoid:!0}),link:new Q({isVoid:!0}),img:new Q({isVoid:!0}),input:new Q({isVoid:!0}),param:new Q({isVoid:!0}),hr:new Q({isVoid:!0}),br:new Q({isVoid:!0}),source:new Q({isVoid:!0}),track:new Q({isVoid:!0}),wbr:new Q({isVoid:!0}),p:new Q({closedByChildren:`address.article.aside.blockquote.div.dl.fieldset.footer.form.h1.h2.h3.h4.h5.h6.header.hgroup.hr.main.nav.ol.p.pre.section.table.ul`.split(`.`),closedByParent:!0}),thead:new Q({closedByChildren:[`tbody`,`tfoot`]}),tbody:new Q({closedByChildren:[`tbody`,`tfoot`],closedByParent:!0}),tfoot:new Q({closedByChildren:[`tbody`],closedByParent:!0}),tr:new Q({closedByChildren:[`tr`],closedByParent:!0}),td:new Q({closedByChildren:[`td`,`th`],closedByParent:!0}),th:new Q({closedByChildren:[`td`,`th`],closedByParent:!0}),col:new Q({isVoid:!0}),svg:new Q({implicitNamespacePrefix:`svg`}),foreignObject:new Q({implicitNamespacePrefix:`svg`,preventNamespaceInheritance:!0}),math:new Q({implicitNamespacePrefix:`math`}),li:new Q({closedByChildren:[`li`],closedByParent:!0}),dt:new Q({closedByChildren:[`dt`,`dd`]}),dd:new Q({closedByChildren:[`dt`,`dd`],closedByParent:!0}),rb:new Q({closedByChildren:[`rb`,`rt`,`rtc`,`rp`],closedByParent:!0}),rt:new Q({closedByChildren:[`rb`,`rt`,`rtc`,`rp`],closedByParent:!0}),rtc:new Q({closedByChildren:[`rb`,`rtc`,`rp`],closedByParent:!0}),rp:new Q({closedByChildren:[`rb`,`rt`,`rtc`,`rp`],closedByParent:!0}),optgroup:new Q({closedByChildren:[`optgroup`],closedByParent:!0}),option:new Q({closedByChildren:[`option`,`optgroup`],closedByParent:!0}),pre:new Q({ignoreFirstLf:!0}),listing:new Q({ignoreFirstLf:!0}),style:new Q({contentType:qm.RAW_TEXT}),script:new Q({contentType:qm.RAW_TEXT}),title:new Q({contentType:{default:qm.ESCAPABLE_RAW_TEXT,svg:qm.PARSABLE_DATA}}),textarea:new Q({contentType:qm.ESCAPABLE_RAW_TEXT,ignoreFirstLf:!0})}),new ah().allKnownElementNames().forEach(e=>{!ch[e]&&Pd(e)===null&&(ch[e]=new Q({canSelfClose:!1}))})),ch[e]??sh}function Bd(e,t,n=null){let r=[],i=e.visit?t=>e.visit(t,n)||t.visit(e,n):t=>t.visit(e,n);return t.forEach(e=>{let t=i(e);t&&r.push(t)}),r}function Vd(e,t){if(t!=null&&!(Array.isArray(t)&&t.length==2))throw Error(`Expected '${e}' to be an array, [start, end].`);if(t!=null){let e=t[0],n=t[1];Lh.forEach(t=>{if(t.test(e)||t.test(n))throw Error(`['${e}', '${n}'] contains unusable interpolation symbol.`)})}}function Hd(e,t,n,r={}){let i=new Xh(new Tm(e,t),n,r);return i.tokenize(),new Wh(tf(i.tokens),i.errors,i.nonNormalizedIcuExpressions)}function Ud(e){return`Unexpected character "${e===0?`EOF`:String.fromCharCode(e)}"`}function Wd(e){return`Unknown entity "${e}" - use the "&#<decimal>;" or "&#x<hex>;" syntax`}function Gd(e,t){return`Unable to parse entity "${t}" - ${e} character reference entities must end with ";"`}function Y(e){return!ud(e)||e===0}function Kd(e){return ud(e)||e===62||e===60||e===47||e===39||e===34||e===61||e===0}function qd(e){return(e<97||122<e)&&(e<65||90<e)&&(e<48||e>57)}function Jd(e){return e===59||e===0||!pd(e)}function Yd(e){return e===59||e===0||!fd(e)}function Xd(e){return e!==125}function Zd(e,t){return Qd(e)===Qd(t)}function Qd(e){return e>=97&&e<=122?e-97+65:e}function $d(e){return fd(e)||dd(e)||e===95}function ef(e){return e!==59&&Y(e)}function tf(e){let t=[],n;for(let r=0;r<e.length;r++){let i=e[r];n&&n.type===5&&i.type===5||n&&n.type===16&&i.type===16?(n.parts[0]+=i.parts[0],n.sourceSpan.end=i.sourceSpan.end):(n=i,t.push(n))}return t}function nf(e,t){return e.length>0&&e[e.length-1]===t}function rf(e,t){return Fh[t]===void 0?/^#x[a-f0-9]+$/i.test(t)?String.fromCodePoint(parseInt(t.slice(2),16)):/^#\d+$/.test(t)?String.fromCodePoint(parseInt(t.slice(1),10)):e:Fh[t]||e}function af(e,t={}){let{canSelfClose:n=!1,allowHtmComponentClosingTags:r=!1,isTagNameCaseSensitive:i=!1,getTagContentType:a,tokenizeAngularBlocks:o=!1,tokenizeAngularLetDeclaration:s=!1}=t;return mg().parse(e,`angular-html-parser`,{tokenizeExpansionForms:o,interpolationConfig:void 0,canSelfClose:n,allowHtmComponentClosingTags:r,tokenizeBlocks:o,tokenizeLet:s},i,a)}function of(e,t){let n=SyntaxError(e+` (`+t.loc.start.line+`:`+t.loc.start.column+`)`);return Object.assign(n,t)}function sf(e){let t=e.slice(0,gg);if(t!==`---`&&t!==`+++`)return;let n=e.indexOf(`
225
+ `,gg);if(n===-1)return;let r=e.slice(gg,n).trim(),i=e.indexOf(`
226
+ ${t}`,n),a=r;if(a||=t===`+++`?`toml`:`yaml`,i===-1&&t===`---`&&a===`yaml`&&(i=e.indexOf(`
227
+ ...`,n)),i===-1)return;let o=i+1+gg,s=e.charAt(o+1);if(!/\s?/u.test(s))return;let c=e.slice(0,o);return{type:`front-matter`,language:a,explicitLanguage:r,value:e.slice(n+1,i),startDelimiter:t,endDelimiter:c.slice(-gg),raw:c}}function cf(e){let t=sf(e);if(!t)return{content:e};let{raw:n}=t;return{frontMatter:t,content:jf(!1,n,/[^\n]/gu,` `)+e.slice(n.length)}}function lf(e,t){let n=e.map(t);return n.some((t,n)=>t!==e[n])?n:e}function uf(e,t){if(e.value)for(let{regex:n,parse:r}of Sg){let i=e.value.match(n);if(i)return r(e,t,i)}return null}function df(e,t,n){let[,r,i,a]=n,o=4+r.length,s=e.sourceSpan.start.moveBy(o),c=s.moveBy(a.length),[l,u]=(()=>{try{return[!0,t(a,s).children]}catch{return[!1,[{type:`text`,value:a,sourceSpan:new Z(s,c)}]]}})();return{type:`ieConditionalComment`,complete:l,children:u,condition:jf(!1,i.trim(),/\s+/gu,` `),sourceSpan:e.sourceSpan,startSourceSpan:new Z(e.sourceSpan.start,s),endSourceSpan:new Z(c,e.sourceSpan.end)}}function ff(e,t,n){let[,r]=n;return{type:`ieConditionalStartComment`,condition:jf(!1,r.trim(),/\s+/gu,` `),sourceSpan:e.sourceSpan}}function pf(e){return{type:`ieConditionalEndComment`,sourceSpan:e.sourceSpan}}function mf(e){if(e.type===`block`){if(e.name=jf(!1,e.name.toLowerCase(),/\s+/gu,` `).trim(),e.type=`angularControlFlowBlock`,!cm(e.parameters)){delete e.parameters;return}for(let t of e.parameters)t.type=`angularControlFlowBlockParameter`;e.parameters={type:`angularControlFlowBlockParameters`,children:e.parameters,sourceSpan:new Z(e.parameters[0].sourceSpan.start,lp(!1,e.parameters,-1).sourceSpan.end)}}}function hf(e){e.type===`letDeclaration`&&(e.type=`angularLetDeclaration`,e.id=e.name,e.init={type:`angularLetDeclarationInitializer`,sourceSpan:new Z(e.valueSpan.start,e.valueSpan.end),value:e.value},delete e.name,delete e.value)}function gf(e){(e.type===`plural`||e.type===`select`)&&(e.clause=e.type,e.type=`angularIcuExpression`),e.type===`expansionCase`&&(e.type=`angularIcuCase`)}function _f(e,t,n){let{name:r,canSelfClose:i=!0,normalizeTagName:a=!1,normalizeAttributeName:o=!1,allowHtmComponentClosingTags:s=!1,isTagNameCaseSensitive:c=!1,shouldParseAsRawText:l}=t,{rootNodes:u,errors:d}=af(e,{canSelfClose:i,allowHtmComponentClosingTags:s,isTagNameCaseSensitive:c,getTagContentType:l?(...e)=>l(...e)?qm.RAW_TEXT:void 0:void 0,tokenizeAngularBlocks:r===`angular`?!0:void 0,tokenizeAngularLetDeclaration:r===`angular`?!0:void 0});if(r===`vue`){if(u.some(e=>e.type===`docType`&&e.value===`html`||e.type===`element`&&e.name.toLowerCase()===`html`))return _f(e,Tg,n);let t,r=G(()=>t??=af(e,{canSelfClose:i,allowHtmComponentClosingTags:s,isTagNameCaseSensitive:c}),`y`),a=G(e=>r().rootNodes.find(({startSourceSpan:t})=>t&&t.start.offset===e.startSourceSpan.start.offset)??e,`M`);for(let[e,t]of u.entries()){let{endSourceSpan:i,startSourceSpan:o}=t;if(i===null)d=r().errors,u[e]=a(t);else if(vf(t,n)){let n=r().errors.find(e=>e.span.start.offset>o.start.offset&&e.span.start.offset<i.end.offset);n&&yf(n),u[e]=a(t)}}}d.length>0&&yf(d[0]);let f=G(e=>{let t=e.name.startsWith(`:`)?e.name.slice(1).split(`:`)[0]:null,n=e.nameSpan.toString(),r=t!==null&&n.startsWith(`${t}:`);e.name=r?n.slice(t.length+1):n,e.namespace=t,e.hasExplicitNamespace=r},`d`),p=G(e=>{switch(e.type){case`element`:f(e);for(let t of e.attrs)f(t),t.valueSpan?(t.value=t.valueSpan.toString(),/["']/u.test(t.value[0])&&(t.value=t.value.slice(1,-1))):t.value=null;break;case`comment`:e.value=e.sourceSpan.toString().slice(4,-3);break;case`text`:e.value=e.sourceSpan.toString();break}},`C`),m=G((e,t)=>{let n=e.toLowerCase();return t(n)?n:e},`A`),h=G(e=>{if(e.type===`element`&&(a&&(!e.namespace||e.namespace===e.tagDefinition.implicitNamespacePrefix||Fp(e))&&(e.name=m(e.name,e=>wg.has(e))),o))for(let t of e.attrs)t.namespace||(t.name=m(t.name,t=>Cg.has(e.name)&&(Cg.get(`*`).has(t)||Cg.get(e.name).has(t))))},`D`),g=G(e=>{e.sourceSpan&&e.endSourceSpan&&(e.sourceSpan=new Z(e.sourceSpan.start,e.endSourceSpan.end))},`R`),_=G(e=>{if(e.type===`element`){let t=zd(c?e.name:e.name.toLowerCase());!e.namespace||e.namespace===t.implicitNamespacePrefix||Fp(e)?e.tagDefinition=t:e.tagDefinition=zd(``)}},`F`);return Bd(new class extends Ph{visitExpansionCase(e,t){r===`angular`&&this.visitChildren(t,t=>{t(e.expression)})}visit(e){p(e),_(e),h(e),g(e)}},u),u}function vf(e,t){if(e.type!==`element`||e.name!==`template`)return!1;let n=e.attrs.find(e=>e.name===`lang`)?.value;return!n||Ap(t,{language:n})===`html`}function yf(e){let{msg:t,span:{start:n,end:r}}=e;throw hg(t,{loc:{start:{line:n.line+1,column:n.col+1},end:{line:r.line+1,column:r.col+1}},cause:e})}function bf(e,t,n={},r=!0){let{frontMatter:i,content:a}=r?_g(e):{frontMatter:null,content:e},o=new Tm(e,n.filepath),s=new Cm(o,0,0,0),c=s.moveBy(e.length),l={type:`root`,sourceSpan:new Z(s,c),children:_f(a,t,n)};if(i){let e=new Cm(o,0,0,0),t=e.moveBy(i.raw.length);i.sourceSpan=new Z(e,t),l.children.unshift(i)}let u=new xg(l),d=G((r,i)=>{let{offset:a}=i,o=bf(jf(!1,e.slice(0,a),/[^\n\r]/gu,` `)+r,t,n,!1);o.sourceSpan=new Z(i,lp(!1,o.children,-1).sourceSpan.end);let s=o.children[0];return s.length===a?o.children.shift():(s.sourceSpan=new Z(s.sourceSpan.start.moveBy(a),s.sourceSpan.end),s.value=s.value.slice(a)),o},`f`);return u.walk(e=>{if(e.type===`comment`){let t=uf(e,d);t&&e.parent.replaceChild(e,t)}mf(e),hf(e),gf(e)}),u}function xf(e){return{parse:G((t,n)=>bf(t,e,n),`parse`),hasPragma:Zu,astFormat:`html`,locStart:Cu,locEnd:wu}}var Sf,Cf,wf,Tf,Ef,Df,Of,kf,Af,jf,Mf,Nf,Pf,Ff,If,Lf,Rf,zf,Bf,Vf,Hf,Uf,Wf,Gf,Kf,qf,Jf,Yf,Xf,Zf,Qf,$f,ep,tp,np,rp,ip,ap,op,X,sp,cp,lp,up,dp,fp,pp,mp,hp,gp,_p,vp,yp,bp,xp,Sp,Cp,wp,Tp,Ep,Dp,Op,kp,Ap,jp,Mp,Np,Pp,Fp,Ip,Lp,Rp,zp,Bp,Vp,Hp,Up,Wp,Gp,Kp,qp,Jp,Yp,Xp,Zp,Qp,$p,em,tm,nm,rm,im,am,om,sm,cm,lm,um,dm,fm,pm,mm,hm,gm,_m,vm,ym,bm,xm,Sm,Cm,wm,Tm,Em,Z,Dm,Om,km,Am,jm,Mm,Nm,Pm,Fm,Im,Lm,Rm,zm,Bm,Vm,Hm,Um,Wm,Gm,Km,qm,Jm,Ym,Xm,Zm,Qm,$m,eh,th,nh,rh,ih,ah,oh,Q,sh,ch,lh,uh,dh,fh,ph,mh,hh,gh,_h,vh,yh,bh,xh,Sh,Ch,wh,Th,Eh,Dh,Oh,kh,Ah,jh,Mh,Nh,Ph,Fh,Ih,Lh,Rh,zh,Bh,Vh,Hh,Uh,Wh,Gh,Kh,qh,Jh,Yh,Xh,Zh,Qh,$h,eg,tg,ng,rg,ig,ag,og,sg,cg,lg,ug,dg,fg,pg,mg,hg,gg,_g,vg,yg,bg,xg,Sg,Cg,wg,Tg,Eg,Dg,Og,kg,Ag,jg,Mg=K(()=>{Sf=Object.defineProperty,Cf=G(e=>{throw TypeError(e)},`Xr`),wf=G((e,t)=>{for(var n in t)Sf(e,n,{get:t[n],enumerable:!0})},`Jr`),Tf=G((e,t,n)=>t.has(e)||Cf(`Cannot `+n),`Zr`),Ef=G((e,t,n)=>(Tf(e,t,`read from private field`),n?n.call(e):t.get(e)),`K`),Df=G((e,t,n)=>t.has(e)?Cf(`Cannot add the same private member more than once`):t instanceof WeakSet?t.add(e):t.set(e,n),`en`),Of=G((e,t,n,r)=>(Tf(e,t,`write to private field`),r?r.call(e,n):t.set(e,n),n),`tn`),kf={},wf(kf,{languages:G(()=>Pm,`languages`),options:G(()=>Rm,`options`),parsers:G(()=>zm,`parsers`),printers:G(()=>Ag,`printers`)}),Af=G((e,t,n,r)=>{if(!(e&&t==null))return t.replaceAll?t.replaceAll(n,r):n.global?t.replace(n,r):t.split(n).join(r)},`ni`),jf=Af,Mf=`string`,Nf=`array`,Pf=`cursor`,Ff=`indent`,If=`align`,Lf=`trim`,Rf=`group`,zf=`fill`,Bf=`if-break`,Vf=`indent-if-break`,Hf=`line-suffix`,Uf=`line-suffix-boundary`,Wf=`line`,Gf=`label`,Kf=`break-parent`,qf=new Set([Pf,Ff,If,Lf,Rf,zf,Bf,Vf,Hf,Uf,Wf,Gf,Kf]),G(Lc,`si`),Jf=Lc,Yf=G(e=>new Intl.ListFormat(`en-US`,{type:`disjunction`}).format(e),`ii`),G(Rc,`ai`),Zf=(Xf=class extends Error{name=`InvalidDocError`;constructor(e){super(Rc(e)),this.doc=e}},G(Xf,`or`),Xf),Qf=Zf,$f=G(()=>{},`rn`),ep=$f,tp=$f,G(zc,`k`),G(Bc,`nn`),G(J,`_`),G(Vc,`sn`),G(Hc,`an`),G(Uc,`Et`),G(Wc,`le`),G(Gc,`on`),np={type:Kf},rp={type:Wf,hard:!0},ip={type:Wf,hard:!0,literal:!0},ap={type:Wf},op={type:Wf,soft:!0},X=[rp,np],sp=[ip,np],G(Kc,`q`),cp=G((e,t,n)=>{if(!(e&&t==null))return Array.isArray(t)||typeof t==`string`?t[n<0?t.length+n:n]:t.at(n)},`li`),lp=cp,G(qc,`lr`),G(Jc,`B`),up=`'`,dp=`"`,G(Yc,`ci`),fp=Yc,G(Xc,`cr`),hp=(mp=class{constructor(e){Df(this,pp),Of(this,pp,new Set(e))}getLeadingWhitespaceCount(e){let t=Ef(this,pp),n=0;for(let r=0;r<e.length&&t.has(e.charAt(r));r++)n++;return n}getTrailingWhitespaceCount(e){let t=Ef(this,pp),n=0;for(let r=e.length-1;r>=0&&t.has(e.charAt(r));r--)n++;return n}getLeadingWhitespace(e){let t=this.getLeadingWhitespaceCount(e);return e.slice(0,t)}getTrailingWhitespace(e){let t=this.getTrailingWhitespaceCount(e);return e.slice(e.length-t)}hasLeadingWhitespace(e){return Ef(this,pp).has(e.charAt(0))}hasTrailingWhitespace(e){return Ef(this,pp).has(lp(!1,e,-1))}trimStart(e){let t=this.getLeadingWhitespaceCount(e);return e.slice(t)}trimEnd(e){let t=this.getTrailingWhitespaceCount(e);return e.slice(0,e.length-t)}trim(e){return this.trimEnd(this.trimStart(e))}split(e,t=!1){let n=`[${Xc([...Ef(this,pp)].join(``))}]+`,r=new RegExp(t?`(${n})`:n,`u`);return e.split(r)}hasWhitespaceCharacter(e){let t=Ef(this,pp);return Array.prototype.some.call(e,e=>t.has(e))}hasNonWhitespaceCharacter(e){let t=Ef(this,pp);return Array.prototype.some.call(e,e=>!t.has(e))}isWhitespaceOnly(e){let t=Ef(this,pp);return Array.prototype.every.call(e,e=>t.has(e))}},G(mp,`pr`),mp),pp=new WeakMap,gp=hp,_p=[` `,`
228
+ `,`\f`,`\r`,` `],vp=new gp(_p),yp=vp,xp=(bp=class extends Error{name=`UnexpectedNodeError`;constructor(e,t,n=`type`){super(`Unexpected ${t} node ${n}: ${JSON.stringify(e[n])}.`),this.node=e}},G(bp,`hr`),bp),Sp=xp,G(Zc,`mi`),Cp=Zc,wp=new Set([`sourceSpan`,`startSourceSpan`,`endSourceSpan`,`nameSpan`,`valueSpan`,`keySpan`,`tagDefinition`,`tokens`,`valueTokens`,`switchValueSourceSpan`,`expSourceSpan`,`valueSourceSpan`]),Tp=new Set([`if`,`else if`,`for`,`switch`,`case`]),G(Qc,`mn`),Qc.ignoredProperties=wp,Ep=Qc,G($c,`gi`),Dp=$c,G(el,`ce`),G(tl,`Y`),G(nl,`T`),G(rl,`Ci`),Op=rl,kp=G(e=>String(e).split(/[/\\]/u).pop(),`Si`),G(il,`Cn`),G(al,`_i`),G(ol,`Ei`),Ap=ol,jp=`inline`,Mp={area:`none`,base:`none`,basefont:`none`,datalist:`none`,head:`none`,link:`none`,meta:`none`,noembed:`none`,noframes:`none`,param:`block`,rp:`none`,script:`block`,style:`none`,template:`inline`,title:`none`,html:`block`,body:`block`,address:`block`,blockquote:`block`,center:`block`,dialog:`block`,div:`block`,figure:`block`,figcaption:`block`,footer:`block`,form:`block`,header:`block`,hr:`block`,legend:`block`,listing:`block`,main:`block`,p:`block`,plaintext:`block`,pre:`block`,search:`block`,xmp:`block`,slot:`contents`,ruby:`ruby`,rt:`ruby-text`,article:`block`,aside:`block`,h1:`block`,h2:`block`,h3:`block`,h4:`block`,h5:`block`,h6:`block`,hgroup:`block`,nav:`block`,section:`block`,dir:`block`,dd:`block`,dl:`block`,dt:`block`,menu:`block`,ol:`block`,ul:`block`,li:`list-item`,table:`table`,caption:`table-caption`,colgroup:`table-column-group`,col:`table-column`,thead:`table-header-group`,tbody:`table-row-group`,tfoot:`table-footer-group`,tr:`table-row`,td:`table-cell`,th:`table-cell`,input:`inline-block`,button:`inline-block`,fieldset:`block`,details:`block`,summary:`block`,marquee:`inline-block`,source:`block`,track:`block`,meter:`inline-block`,progress:`inline-block`,object:`inline-block`,video:`inline-block`,audio:`inline-block`,select:`inline-block`,option:`block`,optgroup:`block`},Np=`normal`,Pp={listing:`pre`,plaintext:`pre`,pre:`pre`,xmp:`pre`,nobr:`nowrap`,table:`initial`,textarea:`pre-wrap`},G(sl,`Ai`),Fp=sl,Ip=G(e=>jf(!1,e,/^[\t\f\r ]*\n/gu,``),`Di`),Lp=G(e=>Ip(yp.trimEnd(e)),`mr`),Rp=G(e=>{let t=e,n=yp.getLeadingWhitespace(t);n&&(t=t.slice(n.length));let r=yp.getTrailingWhitespace(t);return r&&(t=t.slice(0,-r.length)),{leadingWhitespace:n,trailingWhitespace:r,text:t}},`Dn`),G(cl,`Dt`),G(ll,`me`),G(ul,`vi`),G(dl,`O`),G(fl,`U`),G(pl,`vn`),G(ml,`yn`),G(hl,`fr`),G(gl,`wn`),G(_l,`bn`),G(vl,`Tn`),G(yl,`Qe`),G(bl,`xn`),G(xl,`dr`),G(Sl,`vt`),G(Cl,`yi`),G(wl,`kn`),G(Tl,`Bn`),G(El,`Ln`),G(Dl,`Fn`),G(Ol,`yt`),G(kl,`wi`),G(Al,`Nn`),G(jl,`bi`),G(Ml,`Ti`),G(Nl,`xi`),G(Pl,`gr`),G(Fl,`Xe`),G(Il,`ki`),G(Ll,`Bi`),G(Rl,`Li`),G(zl,`Fi`),G(Bl,`Ni`),G(Vl,`he`),G(Hl,`Pi`),G(Ul,`Pn`),G(Wl,`In`),G(Gl,`Ii`),G(Kl,`Cr`),G(ql,`Sr`),G(Jl,`P`),zp=new Set([`template`,`style`,`script`]),G(Yl,`Je`),G(Xl,`fe`),G(Zl,`wt`),G(Ql,`Rn`),G($l,`On`),G(eu,`bt`),G(tu,`Tt`),Bp=/\{\{(.+?)\}\}/su,G(nu,`$n`),G(ru,`Er`),Vp=ru({parser:`__ng_action`}),Hp=ru({parser:`__ng_binding`}),Up=ru({parser:`__ng_directive`}),G(iu,`qi`),Wp=iu,G(au,`Hi`),Gp=au,G(ou,`Hn`),Kp=/^[ \t\n\r\u000c]+/,qp=/^[, \t\n\r\u000c]+/,Jp=/^[^ \t\n\r\u000c]+/,Yp=/[,]+$/,Xp=/^\d+$/,Zp=/^-?(?:[0-9]+|[0-9]*\.[0-9]+)(?:[eE][+-]?[0-9]+)?$/,G(su,`Yi`),Qp=su,G(cu,`ji`),$p={width:`w`,height:`h`,density:`x`},em=Object.keys($p),G(lu,`Qi`),tm=cu,G(uu,`Gn`),nm=new WeakMap,G(du,`Xi`),rm=du,G(fu,`Yn`),G(pu,`jn`),G(mu,`Kn`),G(hu,`Ji`),G(gu,`Zi`),G(_u,`ea`),G(vu,`ta`),G(yu,`Qn`),im=gu,G(bu,`ra`),G(xu,`na`),am=bu,om=new Proxy(()=>{},{get:G(()=>om,`get`)}),sm=om,G(Su,`sa`),cm=Su,G(Cu,`X`),G(wu,`J`),G(Tu,`Ze`),G(Eu,`ia`),G(Du,`de`),G(Ou,`aa`),G(ku,`W`),G(Au,`xt`),G(ju,`ge`),G(Mu,`ts`),G(Nu,`j`),G(Pu,`Ce`),G(Fu,`Se`),G(Iu,`et`),G(Lu,`oa`),G(Ru,`tt`),G(zu,`ua`),G(Bu,`la`),G(Vu,`rt`),G(Hu,`_e`),G(Uu,`z`),lm=`<!doctype`,G(Wu,`kt`),G(Gu,`Bt`),G(Ku,`ca`),um=Ku,dm=new Set([`if`,`else if`,`for`,`switch`,`case`]),G(qu,`ha`),fm=qu,pm=null,G(Ju,`st`),mm=10;for(let e=0;e<=mm;e++)Ju();G(Yu,`vr`),G(Xu,`fa`),hm=Xu,gm={"front-matter":[],root:[`children`],element:[`attrs`,`children`],ieConditionalComment:[`children`],ieConditionalStartComment:[],ieConditionalEndComment:[],interpolation:[`children`],text:[`children`],docType:[],comment:[],attribute:[],cdata:[],angularControlFlowBlock:[`children`,`parameters`],angularControlFlowBlockParameters:[`children`],angularControlFlowBlockParameter:[],angularLetDeclaration:[`init`],angularLetDeclarationInitializer:[],angularIcuExpression:[`cases`],angularIcuCase:[`expression`]},_m=gm,vm=hm(_m),ym=vm,G(Zu,`as`),G(Qu,`os`),bm=new Map([[`if`,new Set([`else if`,`else`])],[`else if`,new Set([`else if`,`else`])],[`for`,new Set([`empty`])],[`defer`,new Set([`placeholder`,`error`,`loading`])],[`placeholder`,new Set([`placeholder`,`error`,`loading`])],[`error`,new Set([`placeholder`,`error`,`loading`])],[`loading`,new Set([`placeholder`,`error`,`loading`])]]),G($u,`ls`),G(ed,`it`),G(td,`Ft`),G(nd,`Ne`),G(rd,`cs`),G(id,`ps`),G(ad,`Ca`),G(od,`hs`),G(sd,`ms`),G(cd,`fs`),G(ld,`ds`),G(ud,`at`),G(dd,`Nt`),G(fd,`ot`),G(pd,`gs`),G(md,`Pt`),G(hd,`yr`),G(gd,`It`),xm=/-+([a-z0-9])/g,G(_d,`Ss`),Cm=(Sm=class{constructor(e,t,n,r){this.file=e,this.offset=t,this.line=n,this.col=r}toString(){return this.offset==null?this.file.url:`${this.file.url}@${this.line}:${this.col}`}moveBy(e){let t=this.file.content,n=t.length,r=this.offset,i=this.line,a=this.col;for(;r>0&&e<0;)if(r--,e++,t.charCodeAt(r)==10){i--;let e=t.substring(0,r-1).lastIndexOf(`
229
+ `);a=e>0?r-e:r}else a--;for(;r<n&&e>0;){let n=t.charCodeAt(r);r++,e--,n==10?(i++,a=0):a++}return new Sm(this.file,r,i,a)}getContext(e,t){let n=this.file.content,r=this.offset;if(r!=null){r>n.length-1&&(r=n.length-1);let i=r,a=0,o=0;for(;a<e&&r>0&&(r--,a++,!(n[r]==`
230
+ `&&++o==t)););for(a=0,o=0;a<e&&i<n.length-1&&(i++,a++,!(n[i]==`
231
+ `&&++o==t)););return{before:n.substring(r,this.offset),after:n.substring(this.offset,i+1)}}return null}},G(Sm,`t`),Sm),Tm=(wm=class{constructor(e,t){this.content=e,this.url=t}},G(wm,`Ee`),wm),Z=(Em=class{constructor(e,t,n=e,r=null){this.start=e,this.end=t,this.fullStart=n,this.details=r}toString(){return this.start.file.content.substring(this.start.offset,this.end.offset)}},G(Em,`h`),Em),(function(e){e[e.WARNING=0]=`WARNING`,e[e.ERROR=1]=`ERROR`})(Dm||={}),km=(Om=class{constructor(e,t,n=Dm.ERROR){this.span=e,this.msg=t,this.level=n}contextualMessage(){let e=this.span.start.getContext(100,3);return e?`${this.msg} ("${e.before}[${Dm[this.level]} ->]${e.after}")`:this.msg}toString(){let e=this.span.details?`, ${this.span.details}`:``;return`${this.contextualMessage()}: ${this.span.start}${e}`}},G(Om,`Ie`),Om),Am=[yd,bd,Sd,wd,Td,Od,Ed,Dd,kd,Cd],G(vd,`Ea`),G(yd,`Aa`),G(bd,`Da`),G(xd,`va`),G(Sd,`ya`),G(Cd,`wa`),G(wd,`ba`),G(Td,`Ta`),G(Ed,`xa`),G(Dd,`ka`),G(Od,`Ba`),G(kd,`La`),jm=vd,G(Ad,`Fa`),Mm={preprocess:jm,print:Ad,insertPragma:Qu,massageAstNode:Ep,embed:fm,getVisitorKeys:ym},Nm=Mm,Pm=[{linguistLanguageId:146,name:`Angular`,type:`markup`,tmScope:`text.html.basic`,aceMode:`html`,codemirrorMode:`htmlmixed`,codemirrorMimeType:`text/html`,color:`#e34c26`,aliases:[`xhtml`],extensions:[`.component.html`],parsers:[`angular`],vscodeLanguageIds:[`html`],filenames:[]},{linguistLanguageId:146,name:`HTML`,type:`markup`,tmScope:`text.html.basic`,aceMode:`html`,codemirrorMode:`htmlmixed`,codemirrorMimeType:`text/html`,color:`#e34c26`,aliases:[`xhtml`],extensions:[`.html`,`.hta`,`.htm`,`.html.hl`,`.inc`,`.xht`,`.xhtml`,`.mjml`],parsers:[`html`],vscodeLanguageIds:[`html`]},{linguistLanguageId:146,name:`Lightning Web Components`,type:`markup`,tmScope:`text.html.basic`,aceMode:`html`,codemirrorMode:`htmlmixed`,codemirrorMimeType:`text/html`,color:`#e34c26`,aliases:[`xhtml`],extensions:[],parsers:[`lwc`],vscodeLanguageIds:[`html`],filenames:[]},{linguistLanguageId:391,name:`Vue`,type:`markup`,color:`#41b883`,extensions:[`.vue`],tmScope:`text.html.vue`,aceMode:`html`,parsers:[`vue`],vscodeLanguageIds:[`vue`]}],Fm={bracketSpacing:{category:`Common`,type:`boolean`,default:!0,description:`Print spaces between brackets.`,oppositeDescription:`Do not print spaces between brackets.`},singleQuote:{category:`Common`,type:`boolean`,default:!1,description:`Use single quotes instead of double quotes.`},proseWrap:{category:`Common`,type:`choice`,default:`preserve`,description:`How to wrap prose.`,choices:[{value:`always`,description:`Wrap prose if it exceeds the print width.`},{value:`never`,description:`Do not wrap prose.`},{value:`preserve`,description:`Wrap prose as-is.`}]},bracketSameLine:{category:`Common`,type:`boolean`,default:!1,description:`Put > of opening tags on the last line instead of on a new line.`},singleAttributePerLine:{category:`Common`,type:`boolean`,default:!1,description:`Enforce single attribute per line in HTML, Vue and JSX.`}},Im=`HTML`,Lm={bracketSameLine:Fm.bracketSameLine,htmlWhitespaceSensitivity:{category:Im,type:`choice`,default:`css`,description:`How to handle whitespaces in HTML.`,choices:[{value:`css`,description:`Respect the default value of CSS display property.`},{value:`strict`,description:`Whitespaces are considered sensitive.`},{value:`ignore`,description:`Whitespaces are considered insensitive.`}]},singleAttributePerLine:Fm.singleAttributePerLine,vueIndentScriptAndStyle:{category:Im,type:`boolean`,default:!1,description:`Indent script and style tags in Vue files.`}},Rm=Lm,zm={},wf(zm,{angular:G(()=>Dg,`angular`),html:G(()=>Eg,`html`),lwc:G(()=>kg,`lwc`),vue:G(()=>Og,`vue`)}),(function(e){e[e.Emulated=0]=`Emulated`,e[e.None=2]=`None`,e[e.ShadowDom=3]=`ShadowDom`})(Bm||={}),(function(e){e[e.OnPush=0]=`OnPush`,e[e.Default=1]=`Default`})(Vm||={}),(function(e){e[e.None=0]=`None`,e[e.SignalBased=1]=`SignalBased`,e[e.HasDecoratorInputTransform=2]=`HasDecoratorInputTransform`})(Hm||={}),Um={name:`custom-elements`},Wm={name:`no-errors-schema`},(function(e){e[e.NONE=0]=`NONE`,e[e.HTML=1]=`HTML`,e[e.STYLE=2]=`STYLE`,e[e.SCRIPT=3]=`SCRIPT`,e[e.URL=4]=`URL`,e[e.RESOURCE_URL=5]=`RESOURCE_URL`})(Gm||={}),(function(e){e[e.Error=0]=`Error`,e[e.Warning=1]=`Warning`,e[e.Ignore=2]=`Ignore`})(Km||={}),(function(e){e[e.RAW_TEXT=0]=`RAW_TEXT`,e[e.ESCAPABLE_RAW_TEXT=1]=`ESCAPABLE_RAW_TEXT`,e[e.PARSABLE_DATA=2]=`PARSABLE_DATA`})(qm||={}),G(jd,`ut`),G(Md,`xr`),G(Nd,`kr`),G(Pd,`Re`),G(Fd,`Oe`),G(Id,`Br`),G(Ld,`Ot`),Xm=(Ym=class{},G(Ym,`Mt`),Ym),Zm=`boolean`,Qm=`number`,$m=`string`,eh=`object`,th=`[Element]|textContent,%ariaAtomic,%ariaAutoComplete,%ariaBusy,%ariaChecked,%ariaColCount,%ariaColIndex,%ariaColSpan,%ariaCurrent,%ariaDescription,%ariaDisabled,%ariaExpanded,%ariaHasPopup,%ariaHidden,%ariaKeyShortcuts,%ariaLabel,%ariaLevel,%ariaLive,%ariaModal,%ariaMultiLine,%ariaMultiSelectable,%ariaOrientation,%ariaPlaceholder,%ariaPosInSet,%ariaPressed,%ariaReadOnly,%ariaRelevant,%ariaRequired,%ariaRoleDescription,%ariaRowCount,%ariaRowIndex,%ariaRowSpan,%ariaSelected,%ariaSetSize,%ariaSort,%ariaValueMax,%ariaValueMin,%ariaValueNow,%ariaValueText,%classList,className,elementTiming,id,innerHTML,*beforecopy,*beforecut,*beforepaste,*fullscreenchange,*fullscreenerror,*search,*webkitfullscreenchange,*webkitfullscreenerror,outerHTML,%part,#scrollLeft,#scrollTop,slot,*message,*mozfullscreenchange,*mozfullscreenerror,*mozpointerlockchange,*mozpointerlockerror,*webglcontextcreationerror,*webglcontextlost,*webglcontextrestored.[HTMLElement]^[Element]|accessKey,autocapitalize,!autofocus,contentEditable,dir,!draggable,enterKeyHint,!hidden,!inert,innerText,inputMode,lang,nonce,*abort,*animationend,*animationiteration,*animationstart,*auxclick,*beforexrselect,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contextmenu,*copy,*cuechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*formdata,*gotpointercapture,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*lostpointercapture,*mousedown,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*paste,*pause,*play,*playing,*pointercancel,*pointerdown,*pointerenter,*pointerleave,*pointermove,*pointerout,*pointerover,*pointerrawupdate,*pointerup,*progress,*ratechange,*reset,*resize,*scroll,*securitypolicyviolation,*seeked,*seeking,*select,*selectionchange,*selectstart,*slotchange,*stalled,*submit,*suspend,*timeupdate,*toggle,*transitioncancel,*transitionend,*transitionrun,*transitionstart,*volumechange,*waiting,*webkitanimationend,*webkitanimationiteration,*webkitanimationstart,*webkittransitionend,*wheel,outerText,!spellcheck,%style,#tabIndex,title,!translate,virtualKeyboardPolicy.abbr,address,article,aside,b,bdi,bdo,cite,content,code,dd,dfn,dt,em,figcaption,figure,footer,header,hgroup,i,kbd,main,mark,nav,noscript,rb,rp,rt,rtc,ruby,s,samp,section,small,strong,sub,sup,u,var,wbr^[HTMLElement]|accessKey,autocapitalize,!autofocus,contentEditable,dir,!draggable,enterKeyHint,!hidden,innerText,inputMode,lang,nonce,*abort,*animationend,*animationiteration,*animationstart,*auxclick,*beforexrselect,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contextmenu,*copy,*cuechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*formdata,*gotpointercapture,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*lostpointercapture,*mousedown,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*paste,*pause,*play,*playing,*pointercancel,*pointerdown,*pointerenter,*pointerleave,*pointermove,*pointerout,*pointerover,*pointerrawupdate,*pointerup,*progress,*ratechange,*reset,*resize,*scroll,*securitypolicyviolation,*seeked,*seeking,*select,*selectionchange,*selectstart,*slotchange,*stalled,*submit,*suspend,*timeupdate,*toggle,*transitioncancel,*transitionend,*transitionrun,*transitionstart,*volumechange,*waiting,*webkitanimationend,*webkitanimationiteration,*webkitanimationstart,*webkittransitionend,*wheel,outerText,!spellcheck,%style,#tabIndex,title,!translate,virtualKeyboardPolicy.media^[HTMLElement]|!autoplay,!controls,%controlsList,%crossOrigin,#currentTime,!defaultMuted,#defaultPlaybackRate,!disableRemotePlayback,!loop,!muted,*encrypted,*waitingforkey,#playbackRate,preload,!preservesPitch,src,%srcObject,#volume.:svg:^[HTMLElement]|!autofocus,nonce,*abort,*animationend,*animationiteration,*animationstart,*auxclick,*beforexrselect,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contextmenu,*copy,*cuechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*formdata,*gotpointercapture,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*lostpointercapture,*mousedown,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*paste,*pause,*play,*playing,*pointercancel,*pointerdown,*pointerenter,*pointerleave,*pointermove,*pointerout,*pointerover,*pointerrawupdate,*pointerup,*progress,*ratechange,*reset,*resize,*scroll,*securitypolicyviolation,*seeked,*seeking,*select,*selectionchange,*selectstart,*slotchange,*stalled,*submit,*suspend,*timeupdate,*toggle,*transitioncancel,*transitionend,*transitionrun,*transitionstart,*volumechange,*waiting,*webkitanimationend,*webkitanimationiteration,*webkitanimationstart,*webkittransitionend,*wheel,%style,#tabIndex.:svg:graphics^:svg:|.:svg:animation^:svg:|*begin,*end,*repeat.:svg:geometry^:svg:|.:svg:componentTransferFunction^:svg:|.:svg:gradient^:svg:|.:svg:textContent^:svg:graphics|.:svg:textPositioning^:svg:textContent|.a^[HTMLElement]|charset,coords,download,hash,host,hostname,href,hreflang,name,password,pathname,ping,port,protocol,referrerPolicy,rel,%relList,rev,search,shape,target,text,type,username.area^[HTMLElement]|alt,coords,download,hash,host,hostname,href,!noHref,password,pathname,ping,port,protocol,referrerPolicy,rel,%relList,search,shape,target,username.audio^media|.br^[HTMLElement]|clear.base^[HTMLElement]|href,target.body^[HTMLElement]|aLink,background,bgColor,link,*afterprint,*beforeprint,*beforeunload,*blur,*error,*focus,*hashchange,*languagechange,*load,*message,*messageerror,*offline,*online,*pagehide,*pageshow,*popstate,*rejectionhandled,*resize,*scroll,*storage,*unhandledrejection,*unload,text,vLink.button^[HTMLElement]|!disabled,formAction,formEnctype,formMethod,!formNoValidate,formTarget,name,type,value.canvas^[HTMLElement]|#height,#width.content^[HTMLElement]|select.dl^[HTMLElement]|!compact.data^[HTMLElement]|value.datalist^[HTMLElement]|.details^[HTMLElement]|!open.dialog^[HTMLElement]|!open,returnValue.dir^[HTMLElement]|!compact.div^[HTMLElement]|align.embed^[HTMLElement]|align,height,name,src,type,width.fieldset^[HTMLElement]|!disabled,name.font^[HTMLElement]|color,face,size.form^[HTMLElement]|acceptCharset,action,autocomplete,encoding,enctype,method,name,!noValidate,target.frame^[HTMLElement]|frameBorder,longDesc,marginHeight,marginWidth,name,!noResize,scrolling,src.frameset^[HTMLElement]|cols,*afterprint,*beforeprint,*beforeunload,*blur,*error,*focus,*hashchange,*languagechange,*load,*message,*messageerror,*offline,*online,*pagehide,*pageshow,*popstate,*rejectionhandled,*resize,*scroll,*storage,*unhandledrejection,*unload,rows.hr^[HTMLElement]|align,color,!noShade,size,width.head^[HTMLElement]|.h1,h2,h3,h4,h5,h6^[HTMLElement]|align.html^[HTMLElement]|version.iframe^[HTMLElement]|align,allow,!allowFullscreen,!allowPaymentRequest,csp,frameBorder,height,loading,longDesc,marginHeight,marginWidth,name,referrerPolicy,%sandbox,scrolling,src,srcdoc,width.img^[HTMLElement]|align,alt,border,%crossOrigin,decoding,#height,#hspace,!isMap,loading,longDesc,lowsrc,name,referrerPolicy,sizes,src,srcset,useMap,#vspace,#width.input^[HTMLElement]|accept,align,alt,autocomplete,!checked,!defaultChecked,defaultValue,dirName,!disabled,%files,formAction,formEnctype,formMethod,!formNoValidate,formTarget,#height,!incremental,!indeterminate,max,#maxLength,min,#minLength,!multiple,name,pattern,placeholder,!readOnly,!required,selectionDirection,#selectionEnd,#selectionStart,#size,src,step,type,useMap,value,%valueAsDate,#valueAsNumber,#width.li^[HTMLElement]|type,#value.label^[HTMLElement]|htmlFor.legend^[HTMLElement]|align.link^[HTMLElement]|as,charset,%crossOrigin,!disabled,href,hreflang,imageSizes,imageSrcset,integrity,media,referrerPolicy,rel,%relList,rev,%sizes,target,type.map^[HTMLElement]|name.marquee^[HTMLElement]|behavior,bgColor,direction,height,#hspace,#loop,#scrollAmount,#scrollDelay,!trueSpeed,#vspace,width.menu^[HTMLElement]|!compact.meta^[HTMLElement]|content,httpEquiv,media,name,scheme.meter^[HTMLElement]|#high,#low,#max,#min,#optimum,#value.ins,del^[HTMLElement]|cite,dateTime.ol^[HTMLElement]|!compact,!reversed,#start,type.object^[HTMLElement]|align,archive,border,code,codeBase,codeType,data,!declare,height,#hspace,name,standby,type,useMap,#vspace,width.optgroup^[HTMLElement]|!disabled,label.option^[HTMLElement]|!defaultSelected,!disabled,label,!selected,text,value.output^[HTMLElement]|defaultValue,%htmlFor,name,value.p^[HTMLElement]|align.param^[HTMLElement]|name,type,value,valueType.picture^[HTMLElement]|.pre^[HTMLElement]|#width.progress^[HTMLElement]|#max,#value.q,blockquote,cite^[HTMLElement]|.script^[HTMLElement]|!async,charset,%crossOrigin,!defer,event,htmlFor,integrity,!noModule,%referrerPolicy,src,text,type.select^[HTMLElement]|autocomplete,!disabled,#length,!multiple,name,!required,#selectedIndex,#size,value.slot^[HTMLElement]|name.source^[HTMLElement]|#height,media,sizes,src,srcset,type,#width.span^[HTMLElement]|.style^[HTMLElement]|!disabled,media,type.caption^[HTMLElement]|align.th,td^[HTMLElement]|abbr,align,axis,bgColor,ch,chOff,#colSpan,headers,height,!noWrap,#rowSpan,scope,vAlign,width.col,colgroup^[HTMLElement]|align,ch,chOff,#span,vAlign,width.table^[HTMLElement]|align,bgColor,border,%caption,cellPadding,cellSpacing,frame,rules,summary,%tFoot,%tHead,width.tr^[HTMLElement]|align,bgColor,ch,chOff,vAlign.tfoot,thead,tbody^[HTMLElement]|align,ch,chOff,vAlign.template^[HTMLElement]|.textarea^[HTMLElement]|autocomplete,#cols,defaultValue,dirName,!disabled,#maxLength,#minLength,name,placeholder,!readOnly,!required,#rows,selectionDirection,#selectionEnd,#selectionStart,value,wrap.time^[HTMLElement]|dateTime.title^[HTMLElement]|text.track^[HTMLElement]|!default,kind,label,src,srclang.ul^[HTMLElement]|!compact,type.unknown^[HTMLElement]|.video^media|!disablePictureInPicture,#height,*enterpictureinpicture,*leavepictureinpicture,!playsInline,poster,#width.:svg:a^:svg:graphics|.:svg:animate^:svg:animation|.:svg:animateMotion^:svg:animation|.:svg:animateTransform^:svg:animation|.:svg:circle^:svg:geometry|.:svg:clipPath^:svg:graphics|.:svg:defs^:svg:graphics|.:svg:desc^:svg:|.:svg:discard^:svg:|.:svg:ellipse^:svg:geometry|.:svg:feBlend^:svg:|.:svg:feColorMatrix^:svg:|.:svg:feComponentTransfer^:svg:|.:svg:feComposite^:svg:|.:svg:feConvolveMatrix^:svg:|.:svg:feDiffuseLighting^:svg:|.:svg:feDisplacementMap^:svg:|.:svg:feDistantLight^:svg:|.:svg:feDropShadow^:svg:|.:svg:feFlood^:svg:|.:svg:feFuncA^:svg:componentTransferFunction|.:svg:feFuncB^:svg:componentTransferFunction|.:svg:feFuncG^:svg:componentTransferFunction|.:svg:feFuncR^:svg:componentTransferFunction|.:svg:feGaussianBlur^:svg:|.:svg:feImage^:svg:|.:svg:feMerge^:svg:|.:svg:feMergeNode^:svg:|.:svg:feMorphology^:svg:|.:svg:feOffset^:svg:|.:svg:fePointLight^:svg:|.:svg:feSpecularLighting^:svg:|.:svg:feSpotLight^:svg:|.:svg:feTile^:svg:|.:svg:feTurbulence^:svg:|.:svg:filter^:svg:|.:svg:foreignObject^:svg:graphics|.:svg:g^:svg:graphics|.:svg:image^:svg:graphics|decoding.:svg:line^:svg:geometry|.:svg:linearGradient^:svg:gradient|.:svg:mpath^:svg:|.:svg:marker^:svg:|.:svg:mask^:svg:|.:svg:metadata^:svg:|.:svg:path^:svg:geometry|.:svg:pattern^:svg:|.:svg:polygon^:svg:geometry|.:svg:polyline^:svg:geometry|.:svg:radialGradient^:svg:gradient|.:svg:rect^:svg:geometry|.:svg:svg^:svg:graphics|#currentScale,#zoomAndPan.:svg:script^:svg:|type.:svg:set^:svg:animation|.:svg:stop^:svg:|.:svg:style^:svg:|!disabled,media,title,type.:svg:switch^:svg:graphics|.:svg:symbol^:svg:|.:svg:tspan^:svg:textPositioning|.:svg:text^:svg:textPositioning|.:svg:textPath^:svg:textContent|.:svg:title^:svg:|.:svg:use^:svg:graphics|.:svg:view^:svg:|#zoomAndPan.data^[HTMLElement]|value.keygen^[HTMLElement]|!autofocus,challenge,!disabled,form,keytype,name.menuitem^[HTMLElement]|type,label,icon,!disabled,!checked,radiogroup,!default.summary^[HTMLElement]|.time^[HTMLElement]|dateTime.:svg:cursor^:svg:|.:math:^[HTMLElement]|!autofocus,nonce,*abort,*animationend,*animationiteration,*animationstart,*auxclick,*beforeinput,*beforematch,*beforetoggle,*beforexrselect,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contentvisibilityautostatechange,*contextlost,*contextmenu,*contextrestored,*copy,*cuechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*formdata,*gotpointercapture,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*lostpointercapture,*mousedown,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*paste,*pause,*play,*playing,*pointercancel,*pointerdown,*pointerenter,*pointerleave,*pointermove,*pointerout,*pointerover,*pointerrawupdate,*pointerup,*progress,*ratechange,*reset,*resize,*scroll,*scrollend,*securitypolicyviolation,*seeked,*seeking,*select,*selectionchange,*selectstart,*slotchange,*stalled,*submit,*suspend,*timeupdate,*toggle,*transitioncancel,*transitionend,*transitionrun,*transitionstart,*volumechange,*waiting,*webkitanimationend,*webkitanimationiteration,*webkitanimationstart,*webkittransitionend,*wheel,%style,#tabIndex.:math:math^:math:|.:math:maction^:math:|.:math:menclose^:math:|.:math:merror^:math:|.:math:mfenced^:math:|.:math:mfrac^:math:|.:math:mi^:math:|.:math:mmultiscripts^:math:|.:math:mn^:math:|.:math:mo^:math:|.:math:mover^:math:|.:math:mpadded^:math:|.:math:mphantom^:math:|.:math:mroot^:math:|.:math:mrow^:math:|.:math:ms^:math:|.:math:mspace^:math:|.:math:msqrt^:math:|.:math:mstyle^:math:|.:math:msub^:math:|.:math:msubsup^:math:|.:math:msup^:math:|.:math:mtable^:math:|.:math:mtd^:math:|.:math:mtext^:math:|.:math:mtr^:math:|.:math:munder^:math:|.:math:munderover^:math:|.:math:semantics^:math:|`.split(`.`),nh=new Map(Object.entries({class:`className`,for:`htmlFor`,formaction:`formAction`,innerHtml:`innerHTML`,readonly:`readOnly`,tabindex:`tabIndex`})),rh=Array.from(nh).reduce((e,[t,n])=>(e.set(t,n),e),new Map),ah=(ih=class extends Xm{constructor(){super(),this._schema=new Map,this._eventSchema=new Map,th.forEach(e=>{let t=new Map,n=new Set,[r,i]=e.split(`|`),a=i.split(`,`),[o,s]=r.split(`^`);o.split(`,`).forEach(e=>{this._schema.set(e.toLowerCase(),t),this._eventSchema.set(e.toLowerCase(),n)});let c=s&&this._schema.get(s.toLowerCase());if(c){for(let[e,n]of c)t.set(e,n);for(let e of this._eventSchema.get(s.toLowerCase()))n.add(e)}a.forEach(e=>{if(e.length>0)switch(e[0]){case`*`:n.add(e.substring(1));break;case`!`:t.set(e.substring(1),Zm);break;case`#`:t.set(e.substring(1),Qm);break;case`%`:t.set(e.substring(1),eh);break;default:t.set(e,$m)}})})}hasProperty(e,t,n){if(n.some(e=>e.name===Wm.name))return!0;if(e.indexOf(`-`)>-1){if(Md(e)||Nd(e))return!1;if(n.some(e=>e.name===Um.name))return!0}return(this._schema.get(e.toLowerCase())||this._schema.get(`unknown`)).has(t)}hasElement(e,t){return t.some(e=>e.name===Wm.name)||e.indexOf(`-`)>-1&&(Md(e)||Nd(e)||t.some(e=>e.name===Um.name))?!0:this._schema.has(e.toLowerCase())}securityContext(e,t,n){n&&(t=this.getMappedPropName(t)),e=e.toLowerCase(),t=t.toLowerCase();let r=Id()[e+`|`+t];return r||(r=Id()[`*|`+t],r||Gm.NONE)}getMappedPropName(e){return nh.get(e)??e}getDefaultComponentElementName(){return`ng-component`}validateProperty(e){return e.toLowerCase().startsWith(`on`)?{error:!0,msg:`Binding to event property '${e}' is disallowed for security reasons, plea\
232
+ se use (${e.slice(2)})=...
233
+ If '${e}' is a directive input, make sure the directive is imported by the current module.`}:{error:!1}}validateAttribute(e){return e.toLowerCase().startsWith(`on`)?{error:!0,msg:`Binding to event attribute '${e}' is disallowed for security reasons, ple\
234
+ ase use (${e.slice(2)})=...`}:{error:!1}}allKnownElementNames(){return Array.from(this._schema.keys())}allKnownAttributesOfElement(e){let t=this._schema.get(e.toLowerCase())||this._schema.get(`unknown`);return Array.from(t.keys()).map(e=>rh.get(e)??e)}allKnownEventsOfElement(e){return Array.from(this._eventSchema.get(e.toLowerCase())??[])}normalizeAnimationStyleProperty(e){return _d(e)}normalizeAnimationStyleValue(e,t,n){let r=``,i=n.toString().trim(),a=null;if(Rd(e)&&n!==0&&n!==`0`)if(typeof n==`number`)r=`px`;else{let e=n.match(/^[+-]?[\d\.]+([a-z]*)$/);e&&e[1].length==0&&(a=`Please provide a CSS unit value for ${t}:${n}`)}return{error:a,value:i+r}}},G(ih,`qt`),ih),G(Rd,`Ha`),Q=(oh=class{constructor({closedByChildren:e,implicitNamespacePrefix:t,contentType:n=qm.PARSABLE_DATA,closedByParent:r=!1,isVoid:i=!1,ignoreFirstLf:a=!1,preventNamespaceInheritance:o=!1,canSelfClose:s=!1}={}){this.closedByChildren={},this.closedByParent=!1,e&&e.length>0&&e.forEach(e=>this.closedByChildren[e]=!0),this.isVoid=i,this.closedByParent=r||i,this.implicitNamespacePrefix=t||null,this.contentType=n,this.ignoreFirstLf=a,this.preventNamespaceInheritance=o,this.canSelfClose=s??i}isClosedByChild(e){return this.isVoid||e.toLowerCase()in this.closedByChildren}getContentType(e){return typeof this.contentType==`object`?(e===void 0?void 0:this.contentType[e])??this.contentType.default:this.contentType}},G(oh,`m`),oh),G(zd,`$e`),uh=(lh=class{constructor(e,t){this.sourceSpan=e,this.i18n=t}},G(lh,`ae`),lh),fh=(dh=class extends uh{constructor(e,t,n,r){super(t,r),this.value=e,this.tokens=n,this.type=`text`}visit(e,t){return e.visitText(this,t)}},G(dh,`Ht`),dh),mh=(ph=class extends uh{constructor(e,t,n,r){super(t,r),this.value=e,this.tokens=n,this.type=`cdata`}visit(e,t){return e.visitCdata(this,t)}},G(ph,`Vt`),ph),gh=(hh=class extends uh{constructor(e,t,n,r,i,a){super(r,a),this.switchValue=e,this.type=t,this.cases=n,this.switchValueSourceSpan=i}visit(e,t){return e.visitExpansion(this,t)}},G(hh,`Ut`),hh),vh=(_h=class{constructor(e,t,n,r,i){this.value=e,this.expression=t,this.sourceSpan=n,this.valueSourceSpan=r,this.expSourceSpan=i,this.type=`expansionCase`}visit(e,t){return e.visitExpansionCase(this,t)}},G(_h,`Wt`),_h),bh=(yh=class extends uh{constructor(e,t,n,r,i,a,o){super(n,o),this.name=e,this.value=t,this.keySpan=r,this.valueSpan=i,this.valueTokens=a,this.type=`attribute`}visit(e,t){return e.visitAttribute(this,t)}get nameSpan(){return this.keySpan}},G(yh,`zt`),yh),Sh=(xh=class extends uh{constructor(e,t,n,r,i,a=null,o=null,s){super(r,s),this.name=e,this.attrs=t,this.children=n,this.startSourceSpan=i,this.endSourceSpan=a,this.nameSpan=o,this.type=`element`}visit(e,t){return e.visitElement(this,t)}},G(xh,`G`),xh),wh=(Ch=class{constructor(e,t){this.value=e,this.sourceSpan=t,this.type=`comment`}visit(e,t){return e.visitComment(this,t)}},G(Ch,`Gt`),Ch),Eh=(Th=class{constructor(e,t){this.value=e,this.sourceSpan=t,this.type=`docType`}visit(e,t){return e.visitDocType(this,t)}},G(Th,`Yt`),Th),Oh=(Dh=class extends uh{constructor(e,t,n,r,i,a,o=null,s){super(r,s),this.name=e,this.parameters=t,this.children=n,this.nameSpan=i,this.startSourceSpan=a,this.endSourceSpan=o,this.type=`block`}visit(e,t){return e.visitBlock(this,t)}},G(Dh,`ee`),Dh),Ah=(kh=class{constructor(e,t){this.expression=e,this.sourceSpan=t,this.type=`blockParameter`,this.startSourceSpan=null,this.endSourceSpan=null}visit(e,t){return e.visitBlockParameter(this,t)}},G(kh,`ct`),kh),Mh=(jh=class{constructor(e,t,n,r,i){this.name=e,this.value=t,this.sourceSpan=n,this.nameSpan=r,this.valueSpan=i,this.type=`letDeclaration`,this.startSourceSpan=null,this.endSourceSpan=null}visit(e,t){return e.visitLetDeclaration(this,t)}},G(jh,`pt`),jh),G(Bd,`jt`),Ph=(Nh=class{constructor(){}visitElement(e,t){this.visitChildren(t,t=>{t(e.attrs),t(e.children)})}visitAttribute(e,t){}visitText(e,t){}visitCdata(e,t){}visitComment(e,t){}visitDocType(e,t){}visitExpansion(e,t){return this.visitChildren(t,t=>{t(e.cases)})}visitExpansionCase(e,t){}visitBlock(e,t){this.visitChildren(t,t=>{t(e.parameters),t(e.children)})}visitBlockParameter(e,t){}visitLetDeclaration(e,t){}visitChildren(e,t){let n=[],r=this;function i(t){t&&n.push(Bd(r,t,e))}return G(i,`i`),t(i),Array.prototype.concat.apply([],n)}},G(Nh,`ht`),Nh),Fh={AElig:`Æ`,AMP:`&`,amp:`&`,Aacute:`Á`,Abreve:`Ă`,Acirc:`Â`,Acy:`А`,Afr:`𝔄`,Agrave:`À`,Alpha:`Α`,Amacr:`Ā`,And:`⩓`,Aogon:`Ą`,Aopf:`𝔸`,ApplyFunction:`⁡`,af:`⁡`,Aring:`Å`,angst:`Å`,Ascr:`𝒜`,Assign:`≔`,colone:`≔`,coloneq:`≔`,Atilde:`Ã`,Auml:`Ä`,Backslash:`∖`,setminus:`∖`,setmn:`∖`,smallsetminus:`∖`,ssetmn:`∖`,Barv:`⫧`,Barwed:`⌆`,doublebarwedge:`⌆`,Bcy:`Б`,Because:`∵`,becaus:`∵`,because:`∵`,Bernoullis:`ℬ`,Bscr:`ℬ`,bernou:`ℬ`,Beta:`Β`,Bfr:`𝔅`,Bopf:`𝔹`,Breve:`˘`,breve:`˘`,Bumpeq:`≎`,HumpDownHump:`≎`,bump:`≎`,CHcy:`Ч`,COPY:`©`,copy:`©`,Cacute:`Ć`,Cap:`⋒`,CapitalDifferentialD:`ⅅ`,DD:`ⅅ`,Cayleys:`ℭ`,Cfr:`ℭ`,Ccaron:`Č`,Ccedil:`Ç`,Ccirc:`Ĉ`,Cconint:`∰`,Cdot:`Ċ`,Cedilla:`¸`,cedil:`¸`,CenterDot:`·`,centerdot:`·`,middot:`·`,Chi:`Χ`,CircleDot:`⊙`,odot:`⊙`,CircleMinus:`⊖`,ominus:`⊖`,CirclePlus:`⊕`,oplus:`⊕`,CircleTimes:`⊗`,otimes:`⊗`,ClockwiseContourIntegral:`∲`,cwconint:`∲`,CloseCurlyDoubleQuote:`”`,rdquo:`”`,rdquor:`”`,CloseCurlyQuote:`’`,rsquo:`’`,rsquor:`’`,Colon:`∷`,Proportion:`∷`,Colone:`⩴`,Congruent:`≡`,equiv:`≡`,Conint:`∯`,DoubleContourIntegral:`∯`,ContourIntegral:`∮`,conint:`∮`,oint:`∮`,Copf:`ℂ`,complexes:`ℂ`,Coproduct:`∐`,coprod:`∐`,CounterClockwiseContourIntegral:`∳`,awconint:`∳`,Cross:`⨯`,Cscr:`𝒞`,Cup:`⋓`,CupCap:`≍`,asympeq:`≍`,DDotrahd:`⤑`,DJcy:`Ђ`,DScy:`Ѕ`,DZcy:`Џ`,Dagger:`‡`,ddagger:`‡`,Darr:`↡`,Dashv:`⫤`,DoubleLeftTee:`⫤`,Dcaron:`Ď`,Dcy:`Д`,Del:`∇`,nabla:`∇`,Delta:`Δ`,Dfr:`𝔇`,DiacriticalAcute:`´`,acute:`´`,DiacriticalDot:`˙`,dot:`˙`,DiacriticalDoubleAcute:`˝`,dblac:`˝`,DiacriticalGrave:"`",grave:"`",DiacriticalTilde:`˜`,tilde:`˜`,Diamond:`⋄`,diam:`⋄`,diamond:`⋄`,DifferentialD:`ⅆ`,dd:`ⅆ`,Dopf:`𝔻`,Dot:`¨`,DoubleDot:`¨`,die:`¨`,uml:`¨`,DotDot:`⃜`,DotEqual:`≐`,doteq:`≐`,esdot:`≐`,DoubleDownArrow:`⇓`,Downarrow:`⇓`,dArr:`⇓`,DoubleLeftArrow:`⇐`,Leftarrow:`⇐`,lArr:`⇐`,DoubleLeftRightArrow:`⇔`,Leftrightarrow:`⇔`,hArr:`⇔`,iff:`⇔`,DoubleLongLeftArrow:`⟸`,Longleftarrow:`⟸`,xlArr:`⟸`,DoubleLongLeftRightArrow:`⟺`,Longleftrightarrow:`⟺`,xhArr:`⟺`,DoubleLongRightArrow:`⟹`,Longrightarrow:`⟹`,xrArr:`⟹`,DoubleRightArrow:`⇒`,Implies:`⇒`,Rightarrow:`⇒`,rArr:`⇒`,DoubleRightTee:`⊨`,vDash:`⊨`,DoubleUpArrow:`⇑`,Uparrow:`⇑`,uArr:`⇑`,DoubleUpDownArrow:`⇕`,Updownarrow:`⇕`,vArr:`⇕`,DoubleVerticalBar:`∥`,par:`∥`,parallel:`∥`,shortparallel:`∥`,spar:`∥`,DownArrow:`↓`,ShortDownArrow:`↓`,darr:`↓`,downarrow:`↓`,DownArrowBar:`⤓`,DownArrowUpArrow:`⇵`,duarr:`⇵`,DownBreve:`̑`,DownLeftRightVector:`⥐`,DownLeftTeeVector:`⥞`,DownLeftVector:`↽`,leftharpoondown:`↽`,lhard:`↽`,DownLeftVectorBar:`⥖`,DownRightTeeVector:`⥟`,DownRightVector:`⇁`,rhard:`⇁`,rightharpoondown:`⇁`,DownRightVectorBar:`⥗`,DownTee:`⊤`,top:`⊤`,DownTeeArrow:`↧`,mapstodown:`↧`,Dscr:`𝒟`,Dstrok:`Đ`,ENG:`Ŋ`,ETH:`Ð`,Eacute:`É`,Ecaron:`Ě`,Ecirc:`Ê`,Ecy:`Э`,Edot:`Ė`,Efr:`𝔈`,Egrave:`È`,Element:`∈`,in:`∈`,isin:`∈`,isinv:`∈`,Emacr:`Ē`,EmptySmallSquare:`◻`,EmptyVerySmallSquare:`▫`,Eogon:`Ę`,Eopf:`𝔼`,Epsilon:`Ε`,Equal:`⩵`,EqualTilde:`≂`,eqsim:`≂`,esim:`≂`,Equilibrium:`⇌`,rightleftharpoons:`⇌`,rlhar:`⇌`,Escr:`ℰ`,expectation:`ℰ`,Esim:`⩳`,Eta:`Η`,Euml:`Ë`,Exists:`∃`,exist:`∃`,ExponentialE:`ⅇ`,ee:`ⅇ`,exponentiale:`ⅇ`,Fcy:`Ф`,Ffr:`𝔉`,FilledSmallSquare:`◼`,FilledVerySmallSquare:`▪`,blacksquare:`▪`,squarf:`▪`,squf:`▪`,Fopf:`𝔽`,ForAll:`∀`,forall:`∀`,Fouriertrf:`ℱ`,Fscr:`ℱ`,GJcy:`Ѓ`,GT:`>`,gt:`>`,Gamma:`Γ`,Gammad:`Ϝ`,Gbreve:`Ğ`,Gcedil:`Ģ`,Gcirc:`Ĝ`,Gcy:`Г`,Gdot:`Ġ`,Gfr:`𝔊`,Gg:`⋙`,ggg:`⋙`,Gopf:`𝔾`,GreaterEqual:`≥`,ge:`≥`,geq:`≥`,GreaterEqualLess:`⋛`,gel:`⋛`,gtreqless:`⋛`,GreaterFullEqual:`≧`,gE:`≧`,geqq:`≧`,GreaterGreater:`⪢`,GreaterLess:`≷`,gl:`≷`,gtrless:`≷`,GreaterSlantEqual:`⩾`,geqslant:`⩾`,ges:`⩾`,GreaterTilde:`≳`,gsim:`≳`,gtrsim:`≳`,Gscr:`𝒢`,Gt:`≫`,NestedGreaterGreater:`≫`,gg:`≫`,HARDcy:`Ъ`,Hacek:`ˇ`,caron:`ˇ`,Hat:`^`,Hcirc:`Ĥ`,Hfr:`ℌ`,Poincareplane:`ℌ`,HilbertSpace:`ℋ`,Hscr:`ℋ`,hamilt:`ℋ`,Hopf:`ℍ`,quaternions:`ℍ`,HorizontalLine:`─`,boxh:`─`,Hstrok:`Ħ`,HumpEqual:`≏`,bumpe:`≏`,bumpeq:`≏`,IEcy:`Е`,IJlig:`IJ`,IOcy:`Ё`,Iacute:`Í`,Icirc:`Î`,Icy:`И`,Idot:`İ`,Ifr:`ℑ`,Im:`ℑ`,image:`ℑ`,imagpart:`ℑ`,Igrave:`Ì`,Imacr:`Ī`,ImaginaryI:`ⅈ`,ii:`ⅈ`,Int:`∬`,Integral:`∫`,int:`∫`,Intersection:`⋂`,bigcap:`⋂`,xcap:`⋂`,InvisibleComma:`⁣`,ic:`⁣`,InvisibleTimes:`⁢`,it:`⁢`,Iogon:`Į`,Iopf:`𝕀`,Iota:`Ι`,Iscr:`ℐ`,imagline:`ℐ`,Itilde:`Ĩ`,Iukcy:`І`,Iuml:`Ï`,Jcirc:`Ĵ`,Jcy:`Й`,Jfr:`𝔍`,Jopf:`𝕁`,Jscr:`𝒥`,Jsercy:`Ј`,Jukcy:`Є`,KHcy:`Х`,KJcy:`Ќ`,Kappa:`Κ`,Kcedil:`Ķ`,Kcy:`К`,Kfr:`𝔎`,Kopf:`𝕂`,Kscr:`𝒦`,LJcy:`Љ`,LT:`<`,lt:`<`,Lacute:`Ĺ`,Lambda:`Λ`,Lang:`⟪`,Laplacetrf:`ℒ`,Lscr:`ℒ`,lagran:`ℒ`,Larr:`↞`,twoheadleftarrow:`↞`,Lcaron:`Ľ`,Lcedil:`Ļ`,Lcy:`Л`,LeftAngleBracket:`⟨`,lang:`⟨`,langle:`⟨`,LeftArrow:`←`,ShortLeftArrow:`←`,larr:`←`,leftarrow:`←`,slarr:`←`,LeftArrowBar:`⇤`,larrb:`⇤`,LeftArrowRightArrow:`⇆`,leftrightarrows:`⇆`,lrarr:`⇆`,LeftCeiling:`⌈`,lceil:`⌈`,LeftDoubleBracket:`⟦`,lobrk:`⟦`,LeftDownTeeVector:`⥡`,LeftDownVector:`⇃`,dharl:`⇃`,downharpoonleft:`⇃`,LeftDownVectorBar:`⥙`,LeftFloor:`⌊`,lfloor:`⌊`,LeftRightArrow:`↔`,harr:`↔`,leftrightarrow:`↔`,LeftRightVector:`⥎`,LeftTee:`⊣`,dashv:`⊣`,LeftTeeArrow:`↤`,mapstoleft:`↤`,LeftTeeVector:`⥚`,LeftTriangle:`⊲`,vartriangleleft:`⊲`,vltri:`⊲`,LeftTriangleBar:`⧏`,LeftTriangleEqual:`⊴`,ltrie:`⊴`,trianglelefteq:`⊴`,LeftUpDownVector:`⥑`,LeftUpTeeVector:`⥠`,LeftUpVector:`↿`,uharl:`↿`,upharpoonleft:`↿`,LeftUpVectorBar:`⥘`,LeftVector:`↼`,leftharpoonup:`↼`,lharu:`↼`,LeftVectorBar:`⥒`,LessEqualGreater:`⋚`,leg:`⋚`,lesseqgtr:`⋚`,LessFullEqual:`≦`,lE:`≦`,leqq:`≦`,LessGreater:`≶`,lessgtr:`≶`,lg:`≶`,LessLess:`⪡`,LessSlantEqual:`⩽`,leqslant:`⩽`,les:`⩽`,LessTilde:`≲`,lesssim:`≲`,lsim:`≲`,Lfr:`𝔏`,Ll:`⋘`,Lleftarrow:`⇚`,lAarr:`⇚`,Lmidot:`Ŀ`,LongLeftArrow:`⟵`,longleftarrow:`⟵`,xlarr:`⟵`,LongLeftRightArrow:`⟷`,longleftrightarrow:`⟷`,xharr:`⟷`,LongRightArrow:`⟶`,longrightarrow:`⟶`,xrarr:`⟶`,Lopf:`𝕃`,LowerLeftArrow:`↙`,swarr:`↙`,swarrow:`↙`,LowerRightArrow:`↘`,searr:`↘`,searrow:`↘`,Lsh:`↰`,lsh:`↰`,Lstrok:`Ł`,Lt:`≪`,NestedLessLess:`≪`,ll:`≪`,Map:`⤅`,Mcy:`М`,MediumSpace:` `,Mellintrf:`ℳ`,Mscr:`ℳ`,phmmat:`ℳ`,Mfr:`𝔐`,MinusPlus:`∓`,mnplus:`∓`,mp:`∓`,Mopf:`𝕄`,Mu:`Μ`,NJcy:`Њ`,Nacute:`Ń`,Ncaron:`Ň`,Ncedil:`Ņ`,Ncy:`Н`,NegativeMediumSpace:`​`,NegativeThickSpace:`​`,NegativeThinSpace:`​`,NegativeVeryThinSpace:`​`,ZeroWidthSpace:`​`,NewLine:`
235
+ `,Nfr:`𝔑`,NoBreak:`⁠`,NonBreakingSpace:`\xA0`,nbsp:`\xA0`,Nopf:`ℕ`,naturals:`ℕ`,Not:`⫬`,NotCongruent:`≢`,nequiv:`≢`,NotCupCap:`≭`,NotDoubleVerticalBar:`∦`,npar:`∦`,nparallel:`∦`,nshortparallel:`∦`,nspar:`∦`,NotElement:`∉`,notin:`∉`,notinva:`∉`,NotEqual:`≠`,ne:`≠`,NotEqualTilde:`≂̸`,nesim:`≂̸`,NotExists:`∄`,nexist:`∄`,nexists:`∄`,NotGreater:`≯`,ngt:`≯`,ngtr:`≯`,NotGreaterEqual:`≱`,nge:`≱`,ngeq:`≱`,NotGreaterFullEqual:`≧̸`,ngE:`≧̸`,ngeqq:`≧̸`,NotGreaterGreater:`≫̸`,nGtv:`≫̸`,NotGreaterLess:`≹`,ntgl:`≹`,NotGreaterSlantEqual:`⩾̸`,ngeqslant:`⩾̸`,nges:`⩾̸`,NotGreaterTilde:`≵`,ngsim:`≵`,NotHumpDownHump:`≎̸`,nbump:`≎̸`,NotHumpEqual:`≏̸`,nbumpe:`≏̸`,NotLeftTriangle:`⋪`,nltri:`⋪`,ntriangleleft:`⋪`,NotLeftTriangleBar:`⧏̸`,NotLeftTriangleEqual:`⋬`,nltrie:`⋬`,ntrianglelefteq:`⋬`,NotLess:`≮`,nless:`≮`,nlt:`≮`,NotLessEqual:`≰`,nle:`≰`,nleq:`≰`,NotLessGreater:`≸`,ntlg:`≸`,NotLessLess:`≪̸`,nLtv:`≪̸`,NotLessSlantEqual:`⩽̸`,nleqslant:`⩽̸`,nles:`⩽̸`,NotLessTilde:`≴`,nlsim:`≴`,NotNestedGreaterGreater:`⪢̸`,NotNestedLessLess:`⪡̸`,NotPrecedes:`⊀`,npr:`⊀`,nprec:`⊀`,NotPrecedesEqual:`⪯̸`,npre:`⪯̸`,npreceq:`⪯̸`,NotPrecedesSlantEqual:`⋠`,nprcue:`⋠`,NotReverseElement:`∌`,notni:`∌`,notniva:`∌`,NotRightTriangle:`⋫`,nrtri:`⋫`,ntriangleright:`⋫`,NotRightTriangleBar:`⧐̸`,NotRightTriangleEqual:`⋭`,nrtrie:`⋭`,ntrianglerighteq:`⋭`,NotSquareSubset:`⊏̸`,NotSquareSubsetEqual:`⋢`,nsqsube:`⋢`,NotSquareSuperset:`⊐̸`,NotSquareSupersetEqual:`⋣`,nsqsupe:`⋣`,NotSubset:`⊂⃒`,nsubset:`⊂⃒`,vnsub:`⊂⃒`,NotSubsetEqual:`⊈`,nsube:`⊈`,nsubseteq:`⊈`,NotSucceeds:`⊁`,nsc:`⊁`,nsucc:`⊁`,NotSucceedsEqual:`⪰̸`,nsce:`⪰̸`,nsucceq:`⪰̸`,NotSucceedsSlantEqual:`⋡`,nsccue:`⋡`,NotSucceedsTilde:`≿̸`,NotSuperset:`⊃⃒`,nsupset:`⊃⃒`,vnsup:`⊃⃒`,NotSupersetEqual:`⊉`,nsupe:`⊉`,nsupseteq:`⊉`,NotTilde:`≁`,nsim:`≁`,NotTildeEqual:`≄`,nsime:`≄`,nsimeq:`≄`,NotTildeFullEqual:`≇`,ncong:`≇`,NotTildeTilde:`≉`,nap:`≉`,napprox:`≉`,NotVerticalBar:`∤`,nmid:`∤`,nshortmid:`∤`,nsmid:`∤`,Nscr:`𝒩`,Ntilde:`Ñ`,Nu:`Ν`,OElig:`Œ`,Oacute:`Ó`,Ocirc:`Ô`,Ocy:`О`,Odblac:`Ő`,Ofr:`𝔒`,Ograve:`Ò`,Omacr:`Ō`,Omega:`Ω`,ohm:`Ω`,Omicron:`Ο`,Oopf:`𝕆`,OpenCurlyDoubleQuote:`“`,ldquo:`“`,OpenCurlyQuote:`‘`,lsquo:`‘`,Or:`⩔`,Oscr:`𝒪`,Oslash:`Ø`,Otilde:`Õ`,Otimes:`⨷`,Ouml:`Ö`,OverBar:`‾`,oline:`‾`,OverBrace:`⏞`,OverBracket:`⎴`,tbrk:`⎴`,OverParenthesis:`⏜`,PartialD:`∂`,part:`∂`,Pcy:`П`,Pfr:`𝔓`,Phi:`Φ`,Pi:`Π`,PlusMinus:`±`,plusmn:`±`,pm:`±`,Popf:`ℙ`,primes:`ℙ`,Pr:`⪻`,Precedes:`≺`,pr:`≺`,prec:`≺`,PrecedesEqual:`⪯`,pre:`⪯`,preceq:`⪯`,PrecedesSlantEqual:`≼`,prcue:`≼`,preccurlyeq:`≼`,PrecedesTilde:`≾`,precsim:`≾`,prsim:`≾`,Prime:`″`,Product:`∏`,prod:`∏`,Proportional:`∝`,prop:`∝`,propto:`∝`,varpropto:`∝`,vprop:`∝`,Pscr:`𝒫`,Psi:`Ψ`,QUOT:`"`,quot:`"`,Qfr:`𝔔`,Qopf:`ℚ`,rationals:`ℚ`,Qscr:`𝒬`,RBarr:`⤐`,drbkarow:`⤐`,REG:`®`,circledR:`®`,reg:`®`,Racute:`Ŕ`,Rang:`⟫`,Rarr:`↠`,twoheadrightarrow:`↠`,Rarrtl:`⤖`,Rcaron:`Ř`,Rcedil:`Ŗ`,Rcy:`Р`,Re:`ℜ`,Rfr:`ℜ`,real:`ℜ`,realpart:`ℜ`,ReverseElement:`∋`,SuchThat:`∋`,ni:`∋`,niv:`∋`,ReverseEquilibrium:`⇋`,leftrightharpoons:`⇋`,lrhar:`⇋`,ReverseUpEquilibrium:`⥯`,duhar:`⥯`,Rho:`Ρ`,RightAngleBracket:`⟩`,rang:`⟩`,rangle:`⟩`,RightArrow:`→`,ShortRightArrow:`→`,rarr:`→`,rightarrow:`→`,srarr:`→`,RightArrowBar:`⇥`,rarrb:`⇥`,RightArrowLeftArrow:`⇄`,rightleftarrows:`⇄`,rlarr:`⇄`,RightCeiling:`⌉`,rceil:`⌉`,RightDoubleBracket:`⟧`,robrk:`⟧`,RightDownTeeVector:`⥝`,RightDownVector:`⇂`,dharr:`⇂`,downharpoonright:`⇂`,RightDownVectorBar:`⥕`,RightFloor:`⌋`,rfloor:`⌋`,RightTee:`⊢`,vdash:`⊢`,RightTeeArrow:`↦`,map:`↦`,mapsto:`↦`,RightTeeVector:`⥛`,RightTriangle:`⊳`,vartriangleright:`⊳`,vrtri:`⊳`,RightTriangleBar:`⧐`,RightTriangleEqual:`⊵`,rtrie:`⊵`,trianglerighteq:`⊵`,RightUpDownVector:`⥏`,RightUpTeeVector:`⥜`,RightUpVector:`↾`,uharr:`↾`,upharpoonright:`↾`,RightUpVectorBar:`⥔`,RightVector:`⇀`,rharu:`⇀`,rightharpoonup:`⇀`,RightVectorBar:`⥓`,Ropf:`ℝ`,reals:`ℝ`,RoundImplies:`⥰`,Rrightarrow:`⇛`,rAarr:`⇛`,Rscr:`ℛ`,realine:`ℛ`,Rsh:`↱`,rsh:`↱`,RuleDelayed:`⧴`,SHCHcy:`Щ`,SHcy:`Ш`,SOFTcy:`Ь`,Sacute:`Ś`,Sc:`⪼`,Scaron:`Š`,Scedil:`Ş`,Scirc:`Ŝ`,Scy:`С`,Sfr:`𝔖`,ShortUpArrow:`↑`,UpArrow:`↑`,uarr:`↑`,uparrow:`↑`,Sigma:`Σ`,SmallCircle:`∘`,compfn:`∘`,Sopf:`𝕊`,Sqrt:`√`,radic:`√`,Square:`□`,squ:`□`,square:`□`,SquareIntersection:`⊓`,sqcap:`⊓`,SquareSubset:`⊏`,sqsub:`⊏`,sqsubset:`⊏`,SquareSubsetEqual:`⊑`,sqsube:`⊑`,sqsubseteq:`⊑`,SquareSuperset:`⊐`,sqsup:`⊐`,sqsupset:`⊐`,SquareSupersetEqual:`⊒`,sqsupe:`⊒`,sqsupseteq:`⊒`,SquareUnion:`⊔`,sqcup:`⊔`,Sscr:`𝒮`,Star:`⋆`,sstarf:`⋆`,Sub:`⋐`,Subset:`⋐`,SubsetEqual:`⊆`,sube:`⊆`,subseteq:`⊆`,Succeeds:`≻`,sc:`≻`,succ:`≻`,SucceedsEqual:`⪰`,sce:`⪰`,succeq:`⪰`,SucceedsSlantEqual:`≽`,sccue:`≽`,succcurlyeq:`≽`,SucceedsTilde:`≿`,scsim:`≿`,succsim:`≿`,Sum:`∑`,sum:`∑`,Sup:`⋑`,Supset:`⋑`,Superset:`⊃`,sup:`⊃`,supset:`⊃`,SupersetEqual:`⊇`,supe:`⊇`,supseteq:`⊇`,THORN:`Þ`,TRADE:`™`,trade:`™`,TSHcy:`Ћ`,TScy:`Ц`,Tab:` `,Tau:`Τ`,Tcaron:`Ť`,Tcedil:`Ţ`,Tcy:`Т`,Tfr:`𝔗`,Therefore:`∴`,there4:`∴`,therefore:`∴`,Theta:`Θ`,ThickSpace:`  `,ThinSpace:` `,thinsp:` `,Tilde:`∼`,sim:`∼`,thicksim:`∼`,thksim:`∼`,TildeEqual:`≃`,sime:`≃`,simeq:`≃`,TildeFullEqual:`≅`,cong:`≅`,TildeTilde:`≈`,ap:`≈`,approx:`≈`,asymp:`≈`,thickapprox:`≈`,thkap:`≈`,Topf:`𝕋`,TripleDot:`⃛`,tdot:`⃛`,Tscr:`𝒯`,Tstrok:`Ŧ`,Uacute:`Ú`,Uarr:`↟`,Uarrocir:`⥉`,Ubrcy:`Ў`,Ubreve:`Ŭ`,Ucirc:`Û`,Ucy:`У`,Udblac:`Ű`,Ufr:`𝔘`,Ugrave:`Ù`,Umacr:`Ū`,UnderBar:`_`,lowbar:`_`,UnderBrace:`⏟`,UnderBracket:`⎵`,bbrk:`⎵`,UnderParenthesis:`⏝`,Union:`⋃`,bigcup:`⋃`,xcup:`⋃`,UnionPlus:`⊎`,uplus:`⊎`,Uogon:`Ų`,Uopf:`𝕌`,UpArrowBar:`⤒`,UpArrowDownArrow:`⇅`,udarr:`⇅`,UpDownArrow:`↕`,updownarrow:`↕`,varr:`↕`,UpEquilibrium:`⥮`,udhar:`⥮`,UpTee:`⊥`,bot:`⊥`,bottom:`⊥`,perp:`⊥`,UpTeeArrow:`↥`,mapstoup:`↥`,UpperLeftArrow:`↖`,nwarr:`↖`,nwarrow:`↖`,UpperRightArrow:`↗`,nearr:`↗`,nearrow:`↗`,Upsi:`ϒ`,upsih:`ϒ`,Upsilon:`Υ`,Uring:`Ů`,Uscr:`𝒰`,Utilde:`Ũ`,Uuml:`Ü`,VDash:`⊫`,Vbar:`⫫`,Vcy:`В`,Vdash:`⊩`,Vdashl:`⫦`,Vee:`⋁`,bigvee:`⋁`,xvee:`⋁`,Verbar:`‖`,Vert:`‖`,VerticalBar:`∣`,mid:`∣`,shortmid:`∣`,smid:`∣`,VerticalLine:`|`,verbar:`|`,vert:`|`,VerticalSeparator:`❘`,VerticalTilde:`≀`,wr:`≀`,wreath:`≀`,VeryThinSpace:` `,hairsp:` `,Vfr:`𝔙`,Vopf:`𝕍`,Vscr:`𝒱`,Vvdash:`⊪`,Wcirc:`Ŵ`,Wedge:`⋀`,bigwedge:`⋀`,xwedge:`⋀`,Wfr:`𝔚`,Wopf:`𝕎`,Wscr:`𝒲`,Xfr:`𝔛`,Xi:`Ξ`,Xopf:`𝕏`,Xscr:`𝒳`,YAcy:`Я`,YIcy:`Ї`,YUcy:`Ю`,Yacute:`Ý`,Ycirc:`Ŷ`,Ycy:`Ы`,Yfr:`𝔜`,Yopf:`𝕐`,Yscr:`𝒴`,Yuml:`Ÿ`,ZHcy:`Ж`,Zacute:`Ź`,Zcaron:`Ž`,Zcy:`З`,Zdot:`Ż`,Zeta:`Ζ`,Zfr:`ℨ`,zeetrf:`ℨ`,Zopf:`ℤ`,integers:`ℤ`,Zscr:`𝒵`,aacute:`á`,abreve:`ă`,ac:`∾`,mstpos:`∾`,acE:`∾̳`,acd:`∿`,acirc:`â`,acy:`а`,aelig:`æ`,afr:`𝔞`,agrave:`à`,alefsym:`ℵ`,aleph:`ℵ`,alpha:`α`,amacr:`ā`,amalg:`⨿`,and:`∧`,wedge:`∧`,andand:`⩕`,andd:`⩜`,andslope:`⩘`,andv:`⩚`,ang:`∠`,angle:`∠`,ange:`⦤`,angmsd:`∡`,measuredangle:`∡`,angmsdaa:`⦨`,angmsdab:`⦩`,angmsdac:`⦪`,angmsdad:`⦫`,angmsdae:`⦬`,angmsdaf:`⦭`,angmsdag:`⦮`,angmsdah:`⦯`,angrt:`∟`,angrtvb:`⊾`,angrtvbd:`⦝`,angsph:`∢`,angzarr:`⍼`,aogon:`ą`,aopf:`𝕒`,apE:`⩰`,apacir:`⩯`,ape:`≊`,approxeq:`≊`,apid:`≋`,apos:`'`,aring:`å`,ascr:`𝒶`,ast:`*`,midast:`*`,atilde:`ã`,auml:`ä`,awint:`⨑`,bNot:`⫭`,backcong:`≌`,bcong:`≌`,backepsilon:`϶`,bepsi:`϶`,backprime:`‵`,bprime:`‵`,backsim:`∽`,bsim:`∽`,backsimeq:`⋍`,bsime:`⋍`,barvee:`⊽`,barwed:`⌅`,barwedge:`⌅`,bbrktbrk:`⎶`,bcy:`б`,bdquo:`„`,ldquor:`„`,bemptyv:`⦰`,beta:`β`,beth:`ℶ`,between:`≬`,twixt:`≬`,bfr:`𝔟`,bigcirc:`◯`,xcirc:`◯`,bigodot:`⨀`,xodot:`⨀`,bigoplus:`⨁`,xoplus:`⨁`,bigotimes:`⨂`,xotime:`⨂`,bigsqcup:`⨆`,xsqcup:`⨆`,bigstar:`★`,starf:`★`,bigtriangledown:`▽`,xdtri:`▽`,bigtriangleup:`△`,xutri:`△`,biguplus:`⨄`,xuplus:`⨄`,bkarow:`⤍`,rbarr:`⤍`,blacklozenge:`⧫`,lozf:`⧫`,blacktriangle:`▴`,utrif:`▴`,blacktriangledown:`▾`,dtrif:`▾`,blacktriangleleft:`◂`,ltrif:`◂`,blacktriangleright:`▸`,rtrif:`▸`,blank:`␣`,blk12:`▒`,blk14:`░`,blk34:`▓`,block:`█`,bne:`=⃥`,bnequiv:`≡⃥`,bnot:`⌐`,bopf:`𝕓`,bowtie:`⋈`,boxDL:`╗`,boxDR:`╔`,boxDl:`╖`,boxDr:`╓`,boxH:`═`,boxHD:`╦`,boxHU:`╩`,boxHd:`╤`,boxHu:`╧`,boxUL:`╝`,boxUR:`╚`,boxUl:`╜`,boxUr:`╙`,boxV:`║`,boxVH:`╬`,boxVL:`╣`,boxVR:`╠`,boxVh:`╫`,boxVl:`╢`,boxVr:`╟`,boxbox:`⧉`,boxdL:`╕`,boxdR:`╒`,boxdl:`┐`,boxdr:`┌`,boxhD:`╥`,boxhU:`╨`,boxhd:`┬`,boxhu:`┴`,boxminus:`⊟`,minusb:`⊟`,boxplus:`⊞`,plusb:`⊞`,boxtimes:`⊠`,timesb:`⊠`,boxuL:`╛`,boxuR:`╘`,boxul:`┘`,boxur:`└`,boxv:`│`,boxvH:`╪`,boxvL:`╡`,boxvR:`╞`,boxvh:`┼`,boxvl:`┤`,boxvr:`├`,brvbar:`¦`,bscr:`𝒷`,bsemi:`⁏`,bsol:`\\`,bsolb:`⧅`,bsolhsub:`⟈`,bull:`•`,bullet:`•`,bumpE:`⪮`,cacute:`ć`,cap:`∩`,capand:`⩄`,capbrcup:`⩉`,capcap:`⩋`,capcup:`⩇`,capdot:`⩀`,caps:`∩︀`,caret:`⁁`,ccaps:`⩍`,ccaron:`č`,ccedil:`ç`,ccirc:`ĉ`,ccups:`⩌`,ccupssm:`⩐`,cdot:`ċ`,cemptyv:`⦲`,cent:`¢`,cfr:`𝔠`,chcy:`ч`,check:`✓`,checkmark:`✓`,chi:`χ`,cir:`○`,cirE:`⧃`,circ:`ˆ`,circeq:`≗`,cire:`≗`,circlearrowleft:`↺`,olarr:`↺`,circlearrowright:`↻`,orarr:`↻`,circledS:`Ⓢ`,oS:`Ⓢ`,circledast:`⊛`,oast:`⊛`,circledcirc:`⊚`,ocir:`⊚`,circleddash:`⊝`,odash:`⊝`,cirfnint:`⨐`,cirmid:`⫯`,cirscir:`⧂`,clubs:`♣`,clubsuit:`♣`,colon:`:`,comma:`,`,commat:`@`,comp:`∁`,complement:`∁`,congdot:`⩭`,copf:`𝕔`,copysr:`℗`,crarr:`↵`,cross:`✗`,cscr:`𝒸`,csub:`⫏`,csube:`⫑`,csup:`⫐`,csupe:`⫒`,ctdot:`⋯`,cudarrl:`⤸`,cudarrr:`⤵`,cuepr:`⋞`,curlyeqprec:`⋞`,cuesc:`⋟`,curlyeqsucc:`⋟`,cularr:`↶`,curvearrowleft:`↶`,cularrp:`⤽`,cup:`∪`,cupbrcap:`⩈`,cupcap:`⩆`,cupcup:`⩊`,cupdot:`⊍`,cupor:`⩅`,cups:`∪︀`,curarr:`↷`,curvearrowright:`↷`,curarrm:`⤼`,curlyvee:`⋎`,cuvee:`⋎`,curlywedge:`⋏`,cuwed:`⋏`,curren:`¤`,cwint:`∱`,cylcty:`⌭`,dHar:`⥥`,dagger:`†`,daleth:`ℸ`,dash:`‐`,hyphen:`‐`,dbkarow:`⤏`,rBarr:`⤏`,dcaron:`ď`,dcy:`д`,ddarr:`⇊`,downdownarrows:`⇊`,ddotseq:`⩷`,eDDot:`⩷`,deg:`°`,delta:`δ`,demptyv:`⦱`,dfisht:`⥿`,dfr:`𝔡`,diamondsuit:`♦`,diams:`♦`,digamma:`ϝ`,gammad:`ϝ`,disin:`⋲`,div:`÷`,divide:`÷`,divideontimes:`⋇`,divonx:`⋇`,djcy:`ђ`,dlcorn:`⌞`,llcorner:`⌞`,dlcrop:`⌍`,dollar:`$`,dopf:`𝕕`,doteqdot:`≑`,eDot:`≑`,dotminus:`∸`,minusd:`∸`,dotplus:`∔`,plusdo:`∔`,dotsquare:`⊡`,sdotb:`⊡`,drcorn:`⌟`,lrcorner:`⌟`,drcrop:`⌌`,dscr:`𝒹`,dscy:`ѕ`,dsol:`⧶`,dstrok:`đ`,dtdot:`⋱`,dtri:`▿`,triangledown:`▿`,dwangle:`⦦`,dzcy:`џ`,dzigrarr:`⟿`,eacute:`é`,easter:`⩮`,ecaron:`ě`,ecir:`≖`,eqcirc:`≖`,ecirc:`ê`,ecolon:`≕`,eqcolon:`≕`,ecy:`э`,edot:`ė`,efDot:`≒`,fallingdotseq:`≒`,efr:`𝔢`,eg:`⪚`,egrave:`è`,egs:`⪖`,eqslantgtr:`⪖`,egsdot:`⪘`,el:`⪙`,elinters:`⏧`,ell:`ℓ`,els:`⪕`,eqslantless:`⪕`,elsdot:`⪗`,emacr:`ē`,empty:`∅`,emptyset:`∅`,emptyv:`∅`,varnothing:`∅`,emsp13:` `,emsp14:` `,emsp:` `,eng:`ŋ`,ensp:` `,eogon:`ę`,eopf:`𝕖`,epar:`⋕`,eparsl:`⧣`,eplus:`⩱`,epsi:`ε`,epsilon:`ε`,epsiv:`ϵ`,straightepsilon:`ϵ`,varepsilon:`ϵ`,equals:`=`,equest:`≟`,questeq:`≟`,equivDD:`⩸`,eqvparsl:`⧥`,erDot:`≓`,risingdotseq:`≓`,erarr:`⥱`,escr:`ℯ`,eta:`η`,eth:`ð`,euml:`ë`,euro:`€`,excl:`!`,fcy:`ф`,female:`♀`,ffilig:`ffi`,fflig:`ff`,ffllig:`ffl`,ffr:`𝔣`,filig:`fi`,fjlig:`fj`,flat:`♭`,fllig:`fl`,fltns:`▱`,fnof:`ƒ`,fopf:`𝕗`,fork:`⋔`,pitchfork:`⋔`,forkv:`⫙`,fpartint:`⨍`,frac12:`½`,half:`½`,frac13:`⅓`,frac14:`¼`,frac15:`⅕`,frac16:`⅙`,frac18:`⅛`,frac23:`⅔`,frac25:`⅖`,frac34:`¾`,frac35:`⅗`,frac38:`⅜`,frac45:`⅘`,frac56:`⅚`,frac58:`⅝`,frac78:`⅞`,frasl:`⁄`,frown:`⌢`,sfrown:`⌢`,fscr:`𝒻`,gEl:`⪌`,gtreqqless:`⪌`,gacute:`ǵ`,gamma:`γ`,gap:`⪆`,gtrapprox:`⪆`,gbreve:`ğ`,gcirc:`ĝ`,gcy:`г`,gdot:`ġ`,gescc:`⪩`,gesdot:`⪀`,gesdoto:`⪂`,gesdotol:`⪄`,gesl:`⋛︀`,gesles:`⪔`,gfr:`𝔤`,gimel:`ℷ`,gjcy:`ѓ`,glE:`⪒`,gla:`⪥`,glj:`⪤`,gnE:`≩`,gneqq:`≩`,gnap:`⪊`,gnapprox:`⪊`,gne:`⪈`,gneq:`⪈`,gnsim:`⋧`,gopf:`𝕘`,gscr:`ℊ`,gsime:`⪎`,gsiml:`⪐`,gtcc:`⪧`,gtcir:`⩺`,gtdot:`⋗`,gtrdot:`⋗`,gtlPar:`⦕`,gtquest:`⩼`,gtrarr:`⥸`,gvertneqq:`≩︀`,gvnE:`≩︀`,hardcy:`ъ`,harrcir:`⥈`,harrw:`↭`,leftrightsquigarrow:`↭`,hbar:`ℏ`,hslash:`ℏ`,planck:`ℏ`,plankv:`ℏ`,hcirc:`ĥ`,hearts:`♥`,heartsuit:`♥`,hellip:`…`,mldr:`…`,hercon:`⊹`,hfr:`𝔥`,hksearow:`⤥`,searhk:`⤥`,hkswarow:`⤦`,swarhk:`⤦`,hoarr:`⇿`,homtht:`∻`,hookleftarrow:`↩`,larrhk:`↩`,hookrightarrow:`↪`,rarrhk:`↪`,hopf:`𝕙`,horbar:`―`,hscr:`𝒽`,hstrok:`ħ`,hybull:`⁃`,iacute:`í`,icirc:`î`,icy:`и`,iecy:`е`,iexcl:`¡`,ifr:`𝔦`,igrave:`ì`,iiiint:`⨌`,qint:`⨌`,iiint:`∭`,tint:`∭`,iinfin:`⧜`,iiota:`℩`,ijlig:`ij`,imacr:`ī`,imath:`ı`,inodot:`ı`,imof:`⊷`,imped:`Ƶ`,incare:`℅`,infin:`∞`,infintie:`⧝`,intcal:`⊺`,intercal:`⊺`,intlarhk:`⨗`,intprod:`⨼`,iprod:`⨼`,iocy:`ё`,iogon:`į`,iopf:`𝕚`,iota:`ι`,iquest:`¿`,iscr:`𝒾`,isinE:`⋹`,isindot:`⋵`,isins:`⋴`,isinsv:`⋳`,itilde:`ĩ`,iukcy:`і`,iuml:`ï`,jcirc:`ĵ`,jcy:`й`,jfr:`𝔧`,jmath:`ȷ`,jopf:`𝕛`,jscr:`𝒿`,jsercy:`ј`,jukcy:`є`,kappa:`κ`,kappav:`ϰ`,varkappa:`ϰ`,kcedil:`ķ`,kcy:`к`,kfr:`𝔨`,kgreen:`ĸ`,khcy:`х`,kjcy:`ќ`,kopf:`𝕜`,kscr:`𝓀`,lAtail:`⤛`,lBarr:`⤎`,lEg:`⪋`,lesseqqgtr:`⪋`,lHar:`⥢`,lacute:`ĺ`,laemptyv:`⦴`,lambda:`λ`,langd:`⦑`,lap:`⪅`,lessapprox:`⪅`,laquo:`«`,larrbfs:`⤟`,larrfs:`⤝`,larrlp:`↫`,looparrowleft:`↫`,larrpl:`⤹`,larrsim:`⥳`,larrtl:`↢`,leftarrowtail:`↢`,lat:`⪫`,latail:`⤙`,late:`⪭`,lates:`⪭︀`,lbarr:`⤌`,lbbrk:`❲`,lbrace:`{`,lcub:`{`,lbrack:`[`,lsqb:`[`,lbrke:`⦋`,lbrksld:`⦏`,lbrkslu:`⦍`,lcaron:`ľ`,lcedil:`ļ`,lcy:`л`,ldca:`⤶`,ldrdhar:`⥧`,ldrushar:`⥋`,ldsh:`↲`,le:`≤`,leq:`≤`,leftleftarrows:`⇇`,llarr:`⇇`,leftthreetimes:`⋋`,lthree:`⋋`,lescc:`⪨`,lesdot:`⩿`,lesdoto:`⪁`,lesdotor:`⪃`,lesg:`⋚︀`,lesges:`⪓`,lessdot:`⋖`,ltdot:`⋖`,lfisht:`⥼`,lfr:`𝔩`,lgE:`⪑`,lharul:`⥪`,lhblk:`▄`,ljcy:`љ`,llhard:`⥫`,lltri:`◺`,lmidot:`ŀ`,lmoust:`⎰`,lmoustache:`⎰`,lnE:`≨`,lneqq:`≨`,lnap:`⪉`,lnapprox:`⪉`,lne:`⪇`,lneq:`⪇`,lnsim:`⋦`,loang:`⟬`,loarr:`⇽`,longmapsto:`⟼`,xmap:`⟼`,looparrowright:`↬`,rarrlp:`↬`,lopar:`⦅`,lopf:`𝕝`,loplus:`⨭`,lotimes:`⨴`,lowast:`∗`,loz:`◊`,lozenge:`◊`,lpar:`(`,lparlt:`⦓`,lrhard:`⥭`,lrm:`‎`,lrtri:`⊿`,lsaquo:`‹`,lscr:`𝓁`,lsime:`⪍`,lsimg:`⪏`,lsquor:`‚`,sbquo:`‚`,lstrok:`ł`,ltcc:`⪦`,ltcir:`⩹`,ltimes:`⋉`,ltlarr:`⥶`,ltquest:`⩻`,ltrPar:`⦖`,ltri:`◃`,triangleleft:`◃`,lurdshar:`⥊`,luruhar:`⥦`,lvertneqq:`≨︀`,lvnE:`≨︀`,mDDot:`∺`,macr:`¯`,strns:`¯`,male:`♂`,malt:`✠`,maltese:`✠`,marker:`▮`,mcomma:`⨩`,mcy:`м`,mdash:`—`,mfr:`𝔪`,mho:`℧`,micro:`µ`,midcir:`⫰`,minus:`−`,minusdu:`⨪`,mlcp:`⫛`,models:`⊧`,mopf:`𝕞`,mscr:`𝓂`,mu:`μ`,multimap:`⊸`,mumap:`⊸`,nGg:`⋙̸`,nGt:`≫⃒`,nLeftarrow:`⇍`,nlArr:`⇍`,nLeftrightarrow:`⇎`,nhArr:`⇎`,nLl:`⋘̸`,nLt:`≪⃒`,nRightarrow:`⇏`,nrArr:`⇏`,nVDash:`⊯`,nVdash:`⊮`,nacute:`ń`,nang:`∠⃒`,napE:`⩰̸`,napid:`≋̸`,napos:`ʼn`,natur:`♮`,natural:`♮`,ncap:`⩃`,ncaron:`ň`,ncedil:`ņ`,ncongdot:`⩭̸`,ncup:`⩂`,ncy:`н`,ndash:`–`,neArr:`⇗`,nearhk:`⤤`,nedot:`≐̸`,nesear:`⤨`,toea:`⤨`,nfr:`𝔫`,nharr:`↮`,nleftrightarrow:`↮`,nhpar:`⫲`,nis:`⋼`,nisd:`⋺`,njcy:`њ`,nlE:`≦̸`,nleqq:`≦̸`,nlarr:`↚`,nleftarrow:`↚`,nldr:`‥`,nopf:`𝕟`,not:`¬`,notinE:`⋹̸`,notindot:`⋵̸`,notinvb:`⋷`,notinvc:`⋶`,notnivb:`⋾`,notnivc:`⋽`,nparsl:`⫽⃥`,npart:`∂̸`,npolint:`⨔`,nrarr:`↛`,nrightarrow:`↛`,nrarrc:`⤳̸`,nrarrw:`↝̸`,nscr:`𝓃`,nsub:`⊄`,nsubE:`⫅̸`,nsubseteqq:`⫅̸`,nsup:`⊅`,nsupE:`⫆̸`,nsupseteqq:`⫆̸`,ntilde:`ñ`,nu:`ν`,num:`#`,numero:`№`,numsp:` `,nvDash:`⊭`,nvHarr:`⤄`,nvap:`≍⃒`,nvdash:`⊬`,nvge:`≥⃒`,nvgt:`>⃒`,nvinfin:`⧞`,nvlArr:`⤂`,nvle:`≤⃒`,nvlt:`<⃒`,nvltrie:`⊴⃒`,nvrArr:`⤃`,nvrtrie:`⊵⃒`,nvsim:`∼⃒`,nwArr:`⇖`,nwarhk:`⤣`,nwnear:`⤧`,oacute:`ó`,ocirc:`ô`,ocy:`о`,odblac:`ő`,odiv:`⨸`,odsold:`⦼`,oelig:`œ`,ofcir:`⦿`,ofr:`𝔬`,ogon:`˛`,ograve:`ò`,ogt:`⧁`,ohbar:`⦵`,olcir:`⦾`,olcross:`⦻`,olt:`⧀`,omacr:`ō`,omega:`ω`,omicron:`ο`,omid:`⦶`,oopf:`𝕠`,opar:`⦷`,operp:`⦹`,or:`∨`,vee:`∨`,ord:`⩝`,order:`ℴ`,orderof:`ℴ`,oscr:`ℴ`,ordf:`ª`,ordm:`º`,origof:`⊶`,oror:`⩖`,orslope:`⩗`,orv:`⩛`,oslash:`ø`,osol:`⊘`,otilde:`õ`,otimesas:`⨶`,ouml:`ö`,ovbar:`⌽`,para:`¶`,parsim:`⫳`,parsl:`⫽`,pcy:`п`,percnt:`%`,period:`.`,permil:`‰`,pertenk:`‱`,pfr:`𝔭`,phi:`φ`,phiv:`ϕ`,straightphi:`ϕ`,varphi:`ϕ`,phone:`☎`,pi:`π`,piv:`ϖ`,varpi:`ϖ`,planckh:`ℎ`,plus:`+`,plusacir:`⨣`,pluscir:`⨢`,plusdu:`⨥`,pluse:`⩲`,plussim:`⨦`,plustwo:`⨧`,pointint:`⨕`,popf:`𝕡`,pound:`£`,prE:`⪳`,prap:`⪷`,precapprox:`⪷`,precnapprox:`⪹`,prnap:`⪹`,precneqq:`⪵`,prnE:`⪵`,precnsim:`⋨`,prnsim:`⋨`,prime:`′`,profalar:`⌮`,profline:`⌒`,profsurf:`⌓`,prurel:`⊰`,pscr:`𝓅`,psi:`ψ`,puncsp:` `,qfr:`𝔮`,qopf:`𝕢`,qprime:`⁗`,qscr:`𝓆`,quatint:`⨖`,quest:`?`,rAtail:`⤜`,rHar:`⥤`,race:`∽̱`,racute:`ŕ`,raemptyv:`⦳`,rangd:`⦒`,range:`⦥`,raquo:`»`,rarrap:`⥵`,rarrbfs:`⤠`,rarrc:`⤳`,rarrfs:`⤞`,rarrpl:`⥅`,rarrsim:`⥴`,rarrtl:`↣`,rightarrowtail:`↣`,rarrw:`↝`,rightsquigarrow:`↝`,ratail:`⤚`,ratio:`∶`,rbbrk:`❳`,rbrace:`}`,rcub:`}`,rbrack:`]`,rsqb:`]`,rbrke:`⦌`,rbrksld:`⦎`,rbrkslu:`⦐`,rcaron:`ř`,rcedil:`ŗ`,rcy:`р`,rdca:`⤷`,rdldhar:`⥩`,rdsh:`↳`,rect:`▭`,rfisht:`⥽`,rfr:`𝔯`,rharul:`⥬`,rho:`ρ`,rhov:`ϱ`,varrho:`ϱ`,rightrightarrows:`⇉`,rrarr:`⇉`,rightthreetimes:`⋌`,rthree:`⋌`,ring:`˚`,rlm:`‏`,rmoust:`⎱`,rmoustache:`⎱`,rnmid:`⫮`,roang:`⟭`,roarr:`⇾`,ropar:`⦆`,ropf:`𝕣`,roplus:`⨮`,rotimes:`⨵`,rpar:`)`,rpargt:`⦔`,rppolint:`⨒`,rsaquo:`›`,rscr:`𝓇`,rtimes:`⋊`,rtri:`▹`,triangleright:`▹`,rtriltri:`⧎`,ruluhar:`⥨`,rx:`℞`,sacute:`ś`,scE:`⪴`,scap:`⪸`,succapprox:`⪸`,scaron:`š`,scedil:`ş`,scirc:`ŝ`,scnE:`⪶`,succneqq:`⪶`,scnap:`⪺`,succnapprox:`⪺`,scnsim:`⋩`,succnsim:`⋩`,scpolint:`⨓`,scy:`с`,sdot:`⋅`,sdote:`⩦`,seArr:`⇘`,sect:`§`,semi:`;`,seswar:`⤩`,tosa:`⤩`,sext:`✶`,sfr:`𝔰`,sharp:`♯`,shchcy:`щ`,shcy:`ш`,shy:`­`,sigma:`σ`,sigmaf:`ς`,sigmav:`ς`,varsigma:`ς`,simdot:`⩪`,simg:`⪞`,simgE:`⪠`,siml:`⪝`,simlE:`⪟`,simne:`≆`,simplus:`⨤`,simrarr:`⥲`,smashp:`⨳`,smeparsl:`⧤`,smile:`⌣`,ssmile:`⌣`,smt:`⪪`,smte:`⪬`,smtes:`⪬︀`,softcy:`ь`,sol:`/`,solb:`⧄`,solbar:`⌿`,sopf:`𝕤`,spades:`♠`,spadesuit:`♠`,sqcaps:`⊓︀`,sqcups:`⊔︀`,sscr:`𝓈`,star:`☆`,sub:`⊂`,subset:`⊂`,subE:`⫅`,subseteqq:`⫅`,subdot:`⪽`,subedot:`⫃`,submult:`⫁`,subnE:`⫋`,subsetneqq:`⫋`,subne:`⊊`,subsetneq:`⊊`,subplus:`⪿`,subrarr:`⥹`,subsim:`⫇`,subsub:`⫕`,subsup:`⫓`,sung:`♪`,sup1:`¹`,sup2:`²`,sup3:`³`,supE:`⫆`,supseteqq:`⫆`,supdot:`⪾`,supdsub:`⫘`,supedot:`⫄`,suphsol:`⟉`,suphsub:`⫗`,suplarr:`⥻`,supmult:`⫂`,supnE:`⫌`,supsetneqq:`⫌`,supne:`⊋`,supsetneq:`⊋`,supplus:`⫀`,supsim:`⫈`,supsub:`⫔`,supsup:`⫖`,swArr:`⇙`,swnwar:`⤪`,szlig:`ß`,target:`⌖`,tau:`τ`,tcaron:`ť`,tcedil:`ţ`,tcy:`т`,telrec:`⌕`,tfr:`𝔱`,theta:`θ`,thetasym:`ϑ`,thetav:`ϑ`,vartheta:`ϑ`,thorn:`þ`,times:`×`,timesbar:`⨱`,timesd:`⨰`,topbot:`⌶`,topcir:`⫱`,topf:`𝕥`,topfork:`⫚`,tprime:`‴`,triangle:`▵`,utri:`▵`,triangleq:`≜`,trie:`≜`,tridot:`◬`,triminus:`⨺`,triplus:`⨹`,trisb:`⧍`,tritime:`⨻`,trpezium:`⏢`,tscr:`𝓉`,tscy:`ц`,tshcy:`ћ`,tstrok:`ŧ`,uHar:`⥣`,uacute:`ú`,ubrcy:`ў`,ubreve:`ŭ`,ucirc:`û`,ucy:`у`,udblac:`ű`,ufisht:`⥾`,ufr:`𝔲`,ugrave:`ù`,uhblk:`▀`,ulcorn:`⌜`,ulcorner:`⌜`,ulcrop:`⌏`,ultri:`◸`,umacr:`ū`,uogon:`ų`,uopf:`𝕦`,upsi:`υ`,upsilon:`υ`,upuparrows:`⇈`,uuarr:`⇈`,urcorn:`⌝`,urcorner:`⌝`,urcrop:`⌎`,uring:`ů`,urtri:`◹`,uscr:`𝓊`,utdot:`⋰`,utilde:`ũ`,uuml:`ü`,uwangle:`⦧`,vBar:`⫨`,vBarv:`⫩`,vangrt:`⦜`,varsubsetneq:`⊊︀`,vsubne:`⊊︀`,varsubsetneqq:`⫋︀`,vsubnE:`⫋︀`,varsupsetneq:`⊋︀`,vsupne:`⊋︀`,varsupsetneqq:`⫌︀`,vsupnE:`⫌︀`,vcy:`в`,veebar:`⊻`,veeeq:`≚`,vellip:`⋮`,vfr:`𝔳`,vopf:`𝕧`,vscr:`𝓋`,vzigzag:`⦚`,wcirc:`ŵ`,wedbar:`⩟`,wedgeq:`≙`,weierp:`℘`,wp:`℘`,wfr:`𝔴`,wopf:`𝕨`,wscr:`𝓌`,xfr:`𝔵`,xi:`ξ`,xnis:`⋻`,xopf:`𝕩`,xscr:`𝓍`,yacute:`ý`,yacy:`я`,ycirc:`ŷ`,ycy:`ы`,yen:`¥`,yfr:`𝔶`,yicy:`ї`,yopf:`𝕪`,yscr:`𝓎`,yucy:`ю`,yuml:`ÿ`,zacute:`ź`,zcaron:`ž`,zcy:`з`,zdot:`ż`,zeta:`ζ`,zfr:`𝔷`,zhcy:`ж`,zigrarr:`⇝`,zopf:`𝕫`,zscr:`𝓏`,zwj:`‍`,zwnj:`‌`},Ih=``,Fh.ngsp=Ih,Lh=[/@/,/^\s*$/,/[<>]/,/^[{}]$/,/&(#|[a-z])/i,/^\/\//],G(Vd,`Bs`),zh=(Rh=class{static fromArray(e){return e?(Vd(`interpolation`,e),new Rh(e[0],e[1])):Bh}constructor(e,t){this.start=e,this.end=t}},G(Rh,`t`),Rh),Bh=new zh(`{{`,`}}`),Hh=(Vh=class extends km{constructor(e,t,n){super(n,e),this.tokenType=t}},G(Vh,`ft`),Vh),Wh=(Uh=class{constructor(e,t,n){this.tokens=e,this.errors=t,this.nonNormalizedIcuExpressions=n}},G(Uh,`Or`),Uh),G(Hd,`Us`),Gh=/\r\n?/g,G(Ud,`qe`),G(Wd,`Is`),G(Gd,`co`),(function(e){e.HEX=`hexadecimal`,e.DEC=`decimal`})(Kh||={}),Jh=(qh=class{constructor(e){this.error=e}},G(qh,`dt`),qh),Xh=(Yh=class{constructor(e,t,n){this._getTagContentType=t,this._currentTokenStart=null,this._currentTokenType=null,this._expansionCaseStack=[],this._inInterpolation=!1,this._fullNameStack=[],this.tokens=[],this.errors=[],this.nonNormalizedIcuExpressions=[],this._tokenizeIcu=n.tokenizeExpansionForms||!1,this._interpolationConfig=n.interpolationConfig||Bh,this._leadingTriviaCodePoints=n.leadingTriviaChars&&n.leadingTriviaChars.map(e=>e.codePointAt(0)||0),this._canSelfClose=n.canSelfClose||!1,this._allowHtmComponentClosingTags=n.allowHtmComponentClosingTags||!1;let r=n.range||{endPos:e.content.length,startPos:0,startLine:0,startCol:0};this._cursor=n.escapedString?new eg(e,r):new Qh(e,r),this._preserveLineEndings=n.preserveLineEndings||!1,this._i18nNormalizeLineEndingsInICUs=n.i18nNormalizeLineEndingsInICUs||!1,this._tokenizeBlocks=n.tokenizeBlocks??!0,this._tokenizeLet=n.tokenizeLet??!0;try{this._cursor.init()}catch(e){this.handleError(e)}}_processCarriageReturns(e){return this._preserveLineEndings?e:e.replace(Gh,`
236
+ `)}tokenize(){for(;this._cursor.peek()!==0;){let e=this._cursor.clone();try{if(this._attemptCharCode(60))if(this._attemptCharCode(33))this._attemptStr(`[CDATA[`)?this._consumeCdata(e):this._attemptStr(`--`)?this._consumeComment(e):this._attemptStrCaseInsensitive(`doctype`)?this._consumeDocType(e):this._consumeBogusComment(e);else if(this._attemptCharCode(47))this._consumeTagClose(e);else{let t=this._cursor.clone();this._attemptCharCode(63)?(this._cursor=t,this._consumeBogusComment(e)):this._consumeTagOpen(e)}else this._tokenizeLet&&this._cursor.peek()===64&&!this._inInterpolation&&this._attemptStr(`@let`)?this._consumeLetDeclaration(e):this._tokenizeBlocks&&this._attemptCharCode(64)?this._consumeBlockStart(e):this._tokenizeBlocks&&!this._inInterpolation&&!this._isInExpansionCase()&&!this._isInExpansionForm()&&this._attemptCharCode(125)?this._consumeBlockEnd(e):this._tokenizeIcu&&this._tokenizeExpansionForm()||this._consumeWithInterpolation(5,8,()=>this._isTextEnd(),()=>this._isTagStart())}catch(e){this.handleError(e)}}this._beginToken(34),this._endToken([])}_getBlockName(){let e=!1,t=this._cursor.clone();return this._attemptCharCodeUntilFn(t=>ud(t)?!e:$d(t)?(e=!0,!1):!0),this._cursor.getChars(t).trim()}_consumeBlockStart(e){this._beginToken(25,e);let t=this._endToken([this._getBlockName()]);if(this._cursor.peek()===40)if(this._cursor.advance(),this._consumeBlockParameters(),this._attemptCharCodeUntilFn(Y),this._attemptCharCode(41))this._attemptCharCodeUntilFn(Y);else{t.type=29;return}this._attemptCharCode(123)?(this._beginToken(26),this._endToken([])):t.type=29}_consumeBlockEnd(e){this._beginToken(27,e),this._endToken([])}_consumeBlockParameters(){for(this._attemptCharCodeUntilFn(ef);this._cursor.peek()!==41&&this._cursor.peek()!==0;){this._beginToken(28);let e=this._cursor.clone(),t=null,n=0;for(;this._cursor.peek()!==59&&this._cursor.peek()!==0||t!==null;){let e=this._cursor.peek();if(e===92)this._cursor.advance();else if(e===t)t=null;else if(t===null&&gd(e))t=e;else if(e===40&&t===null)n++;else if(e===41&&t===null){if(n===0)break;n>0&&n--}this._cursor.advance()}this._endToken([this._cursor.getChars(e)]),this._attemptCharCodeUntilFn(ef)}}_consumeLetDeclaration(e){if(this._beginToken(30,e),ud(this._cursor.peek()))this._attemptCharCodeUntilFn(Y);else{let t=this._endToken([this._cursor.getChars(e)]);t.type=33;return}let t=this._endToken([this._getLetDeclarationName()]);if(this._attemptCharCodeUntilFn(Y),!this._attemptCharCode(61)){t.type=33;return}this._attemptCharCodeUntilFn(e=>Y(e)&&!md(e)),this._consumeLetDeclarationValue(),this._cursor.peek()===59?(this._beginToken(32),this._endToken([]),this._cursor.advance()):(t.type=33,t.sourceSpan=this._cursor.getSpan(e))}_getLetDeclarationName(){let e=this._cursor.clone(),t=!1;return this._attemptCharCodeUntilFn(e=>fd(e)||e===36||e===95||t&&dd(e)?(t=!0,!1):!0),this._cursor.getChars(e).trim()}_consumeLetDeclarationValue(){let e=this._cursor.clone();for(this._beginToken(31,e);this._cursor.peek()!==0;){let e=this._cursor.peek();if(e===59)break;gd(e)&&(this._cursor.advance(),this._attemptCharCodeUntilFn(t=>t===92?(this._cursor.advance(),!1):t===e)),this._cursor.advance()}this._endToken([this._cursor.getChars(e)])}_tokenizeExpansionForm(){if(this.isExpansionFormStart())return this._consumeExpansionFormStart(),!0;if(Xd(this._cursor.peek())&&this._isInExpansionForm())return this._consumeExpansionCaseStart(),!0;if(this._cursor.peek()===125){if(this._isInExpansionCase())return this._consumeExpansionCaseEnd(),!0;if(this._isInExpansionForm())return this._consumeExpansionFormEnd(),!0}return!1}_beginToken(e,t=this._cursor.clone()){this._currentTokenStart=t,this._currentTokenType=e}_endToken(e,t){if(this._currentTokenStart===null)throw new Hh(`Programming error - attempted to end a token when there was no start to the token`,this._currentTokenType,this._cursor.getSpan(t));if(this._currentTokenType===null)throw new Hh(`Programming error - attempted to end a token which has no token type`,null,this._cursor.getSpan(this._currentTokenStart));let n={type:this._currentTokenType,parts:e,sourceSpan:(t??this._cursor).getSpan(this._currentTokenStart,this._leadingTriviaCodePoints)};return this.tokens.push(n),this._currentTokenStart=null,this._currentTokenType=null,n}_createError(e,t){this._isInExpansionForm()&&(e+=` (Do you have an unescaped "{" in your template? Use "{{ '{' }}") to escape it.)`);let n=new Hh(e,this._currentTokenType,t);return this._currentTokenStart=null,this._currentTokenType=null,new Jh(n)}handleError(e){if(e instanceof ng&&(e=this._createError(e.msg,this._cursor.getSpan(e.cursor))),e instanceof Jh)this.errors.push(e.error);else throw e}_attemptCharCode(e){return this._cursor.peek()===e?(this._cursor.advance(),!0):!1}_attemptCharCodeCaseInsensitive(e){return Zd(this._cursor.peek(),e)?(this._cursor.advance(),!0):!1}_requireCharCode(e){let t=this._cursor.clone();if(!this._attemptCharCode(e))throw this._createError(Ud(this._cursor.peek()),this._cursor.getSpan(t))}_attemptStr(e){let t=e.length;if(this._cursor.charsLeft()<t)return!1;let n=this._cursor.clone();for(let r=0;r<t;r++)if(!this._attemptCharCode(e.charCodeAt(r)))return this._cursor=n,!1;return!0}_attemptStrCaseInsensitive(e){for(let t=0;t<e.length;t++)if(!this._attemptCharCodeCaseInsensitive(e.charCodeAt(t)))return!1;return!0}_requireStr(e){let t=this._cursor.clone();if(!this._attemptStr(e))throw this._createError(Ud(this._cursor.peek()),this._cursor.getSpan(t))}_requireStrCaseInsensitive(e){let t=this._cursor.clone();if(!this._attemptStrCaseInsensitive(e))throw this._createError(Ud(this._cursor.peek()),this._cursor.getSpan(t))}_attemptCharCodeUntilFn(e){for(;!e(this._cursor.peek());)this._cursor.advance()}_requireCharCodeUntilFn(e,t){let n=this._cursor.clone();if(this._attemptCharCodeUntilFn(e),this._cursor.diff(n)<t)throw this._createError(Ud(this._cursor.peek()),this._cursor.getSpan(n))}_attemptUntilChar(e){for(;this._cursor.peek()!==e;)this._cursor.advance()}_readChar(){let e=String.fromCodePoint(this._cursor.peek());return this._cursor.advance(),e}_consumeEntity(e){this._beginToken(9);let t=this._cursor.clone();if(this._cursor.advance(),this._attemptCharCode(35)){let e=this._attemptCharCode(120)||this._attemptCharCode(88),n=this._cursor.clone();if(this._attemptCharCodeUntilFn(Jd),this._cursor.peek()!=59){this._cursor.advance();let n=e?Kh.HEX:Kh.DEC;throw this._createError(Gd(n,this._cursor.getChars(t)),this._cursor.getSpan())}let r=this._cursor.getChars(n);this._cursor.advance();try{let n=parseInt(r,e?16:10);this._endToken([String.fromCharCode(n),this._cursor.getChars(t)])}catch{throw this._createError(Wd(this._cursor.getChars(t)),this._cursor.getSpan())}}else{let n=this._cursor.clone();if(this._attemptCharCodeUntilFn(Yd),this._cursor.peek()!=59)this._beginToken(e,t),this._cursor=n,this._endToken([`&`]);else{let e=this._cursor.getChars(n);this._cursor.advance();let r=Fh[e];if(!r)throw this._createError(Wd(e),this._cursor.getSpan(t));this._endToken([r,`&${e};`])}}}_consumeRawText(e,t){this._beginToken(e?6:7);let n=[];for(;;){let r=this._cursor.clone(),i=t();if(this._cursor=r,i)break;e&&this._cursor.peek()===38?(this._endToken([this._processCarriageReturns(n.join(``))]),n.length=0,this._consumeEntity(6),this._beginToken(6)):n.push(this._readChar())}this._endToken([this._processCarriageReturns(n.join(``))])}_consumeComment(e){this._beginToken(10,e),this._endToken([]),this._consumeRawText(!1,()=>this._attemptStr(`-->`)),this._beginToken(11),this._requireStr(`-->`),this._endToken([])}_consumeBogusComment(e){this._beginToken(10,e),this._endToken([]),this._consumeRawText(!1,()=>this._cursor.peek()===62),this._beginToken(11),this._cursor.advance(),this._endToken([])}_consumeCdata(e){this._beginToken(12,e),this._endToken([]),this._consumeRawText(!1,()=>this._attemptStr(`]]>`)),this._beginToken(13),this._requireStr(`]]>`),this._endToken([])}_consumeDocType(e){this._beginToken(18,e),this._endToken([]),this._consumeRawText(!1,()=>this._cursor.peek()===62),this._beginToken(19),this._cursor.advance(),this._endToken([])}_consumePrefixAndName(){let e=this._cursor.clone(),t=``;for(;this._cursor.peek()!==58&&!qd(this._cursor.peek());)this._cursor.advance();let n;this._cursor.peek()===58?(t=this._cursor.getChars(e),this._cursor.advance(),n=this._cursor.clone()):n=e,this._requireCharCodeUntilFn(Kd,t===``?0:1);let r=this._cursor.getChars(n);return[t,r]}_consumeTagOpen(e){let t,n,r,i=[];try{if(!fd(this._cursor.peek()))throw this._createError(Ud(this._cursor.peek()),this._cursor.getSpan(e));for(r=this._consumeTagOpenStart(e),n=r.parts[0],t=r.parts[1],this._attemptCharCodeUntilFn(Y);this._cursor.peek()!==47&&this._cursor.peek()!==62&&this._cursor.peek()!==60&&this._cursor.peek()!==0;){let[e,t]=this._consumeAttributeName();if(this._attemptCharCodeUntilFn(Y),this._attemptCharCode(61)){this._attemptCharCodeUntilFn(Y);let n=this._consumeAttributeValue();i.push({prefix:e,name:t,value:n})}else i.push({prefix:e,name:t});this._attemptCharCodeUntilFn(Y)}this._consumeTagOpenEnd()}catch(t){if(t instanceof Jh){r?r.type=4:(this._beginToken(5,e),this._endToken([`<`]));return}throw t}if(this._canSelfClose&&this.tokens[this.tokens.length-1].type===2)return;let a=this._getTagContentType(t,n,this._fullNameStack.length>0,i);this._handleFullNameStackForTagOpen(n,t),a===qm.RAW_TEXT?this._consumeRawTextWithTagClose(n,t,!1):a===qm.ESCAPABLE_RAW_TEXT&&this._consumeRawTextWithTagClose(n,t,!0)}_consumeRawTextWithTagClose(e,t,n){this._consumeRawText(n,()=>!this._attemptCharCode(60)||!this._attemptCharCode(47)||(this._attemptCharCodeUntilFn(Y),!this._attemptStrCaseInsensitive(e?`${e}:${t}`:t))?!1:(this._attemptCharCodeUntilFn(Y),this._attemptCharCode(62))),this._beginToken(3),this._requireCharCodeUntilFn(e=>e===62,3),this._cursor.advance(),this._endToken([e,t]),this._handleFullNameStackForTagClose(e,t)}_consumeTagOpenStart(e){this._beginToken(0,e);let t=this._consumePrefixAndName();return this._endToken(t)}_consumeAttributeName(){let e=this._cursor.peek();if(e===39||e===34)throw this._createError(Ud(e),this._cursor.getSpan());this._beginToken(14);let t=this._consumePrefixAndName();return this._endToken(t),t}_consumeAttributeValue(){let e;if(this._cursor.peek()===39||this._cursor.peek()===34){let t=this._cursor.peek();this._consumeQuote(t);let n=G(()=>this._cursor.peek()===t,`n`);e=this._consumeWithInterpolation(16,17,n,n),this._consumeQuote(t)}else{let t=G(()=>Kd(this._cursor.peek()),`r`);e=this._consumeWithInterpolation(16,17,t,t)}return e}_consumeQuote(e){this._beginToken(15),this._requireCharCode(e),this._endToken([String.fromCodePoint(e)])}_consumeTagOpenEnd(){let e=this._attemptCharCode(47)?2:1;this._beginToken(e),this._requireCharCode(62),this._endToken([])}_consumeTagClose(e){if(this._beginToken(3,e),this._attemptCharCodeUntilFn(Y),this._allowHtmComponentClosingTags&&this._attemptCharCode(47))this._attemptCharCodeUntilFn(Y),this._requireCharCode(62),this._endToken([]);else{let[e,t]=this._consumePrefixAndName();this._attemptCharCodeUntilFn(Y),this._requireCharCode(62),this._endToken([e,t]),this._handleFullNameStackForTagClose(e,t)}}_consumeExpansionFormStart(){this._beginToken(20),this._requireCharCode(123),this._endToken([]),this._expansionCaseStack.push(20),this._beginToken(7);let e=this._readUntil(44),t=this._processCarriageReturns(e);if(this._i18nNormalizeLineEndingsInICUs)this._endToken([t]);else{let n=this._endToken([e]);t!==e&&this.nonNormalizedIcuExpressions.push(n)}this._requireCharCode(44),this._attemptCharCodeUntilFn(Y),this._beginToken(7);let n=this._readUntil(44);this._endToken([n]),this._requireCharCode(44),this._attemptCharCodeUntilFn(Y)}_consumeExpansionCaseStart(){this._beginToken(21);let e=this._readUntil(123).trim();this._endToken([e]),this._attemptCharCodeUntilFn(Y),this._beginToken(22),this._requireCharCode(123),this._endToken([]),this._attemptCharCodeUntilFn(Y),this._expansionCaseStack.push(22)}_consumeExpansionCaseEnd(){this._beginToken(23),this._requireCharCode(125),this._endToken([]),this._attemptCharCodeUntilFn(Y),this._expansionCaseStack.pop()}_consumeExpansionFormEnd(){this._beginToken(24),this._requireCharCode(125),this._endToken([]),this._expansionCaseStack.pop()}_consumeWithInterpolation(e,t,n,r){this._beginToken(e);let i=[];for(;!n();){let n=this._cursor.clone();this._interpolationConfig&&this._attemptStr(this._interpolationConfig.start)?(this._endToken([this._processCarriageReturns(i.join(``))],n),i.length=0,this._consumeInterpolation(t,n,r),this._beginToken(e)):this._cursor.peek()===38?(this._endToken([this._processCarriageReturns(i.join(``))]),i.length=0,this._consumeEntity(e),this._beginToken(e)):i.push(this._readChar())}this._inInterpolation=!1;let a=this._processCarriageReturns(i.join(``));return this._endToken([a]),a}_consumeInterpolation(e,t,n){let r=[];this._beginToken(e,t),r.push(this._interpolationConfig.start);let i=this._cursor.clone(),a=null,o=!1;for(;this._cursor.peek()!==0&&(n===null||!n());){let e=this._cursor.clone();if(this._isTagStart()){this._cursor=e,r.push(this._getProcessedChars(i,e)),this._endToken(r);return}if(a===null)if(this._attemptStr(this._interpolationConfig.end)){r.push(this._getProcessedChars(i,e)),r.push(this._interpolationConfig.end),this._endToken(r);return}else this._attemptStr(`//`)&&(o=!0);let t=this._cursor.peek();this._cursor.advance(),t===92?this._cursor.advance():t===a?a=null:!o&&a===null&&gd(t)&&(a=t)}r.push(this._getProcessedChars(i,this._cursor)),this._endToken(r)}_getProcessedChars(e,t){return this._processCarriageReturns(t.getChars(e))}_isTextEnd(){return!!(this._isTagStart()||this._cursor.peek()===0||this._tokenizeIcu&&!this._inInterpolation&&(this.isExpansionFormStart()||this._cursor.peek()===125&&this._isInExpansionCase())||this._tokenizeBlocks&&!this._inInterpolation&&!this._isInExpansion()&&(this._isBlockStart()||this._cursor.peek()===64||this._cursor.peek()===125))}_isTagStart(){if(this._cursor.peek()===60){let e=this._cursor.clone();e.advance();let t=e.peek();if(97<=t&&t<=122||65<=t&&t<=90||t===47||t===33)return!0}return!1}_isBlockStart(){if(this._tokenizeBlocks&&this._cursor.peek()===64){let e=this._cursor.clone();if(e.advance(),$d(e.peek()))return!0}return!1}_readUntil(e){let t=this._cursor.clone();return this._attemptUntilChar(e),this._cursor.getChars(t)}_isInExpansion(){return this._isInExpansionCase()||this._isInExpansionForm()}_isInExpansionCase(){return this._expansionCaseStack.length>0&&this._expansionCaseStack[this._expansionCaseStack.length-1]===22}_isInExpansionForm(){return this._expansionCaseStack.length>0&&this._expansionCaseStack[this._expansionCaseStack.length-1]===20}isExpansionFormStart(){if(this._cursor.peek()!==123)return!1;if(this._interpolationConfig){let e=this._cursor.clone(),t=this._attemptStr(this._interpolationConfig.start);return this._cursor=e,!t}return!0}_handleFullNameStackForTagOpen(e,t){let n=Fd(e,t);(this._fullNameStack.length===0||this._fullNameStack[this._fullNameStack.length-1]===n)&&this._fullNameStack.push(n)}_handleFullNameStackForTagClose(e,t){let n=Fd(e,t);this._fullNameStack.length!==0&&this._fullNameStack[this._fullNameStack.length-1]===n&&this._fullNameStack.pop()}},G(Yh,`$r`),Yh),G(Y,`b`),G(Kd,`Rs`),G(qd,`po`),G(Jd,`ho`),G(Yd,`mo`),G(Xd,`fo`),G(Zd,`go`),G(Qd,`Os`),G($d,`$s`),G(ef,`Ms`),G(tf,`Co`),Qh=(Zh=class{constructor(e,t){if(e instanceof Zh){this.file=e.file,this.input=e.input,this.end=e.end;let t=e.state;this.state={peek:t.peek,offset:t.offset,line:t.line,column:t.column}}else{if(!t)throw Error(`Programming error: the range argument must be provided with a file argument.`);this.file=e,this.input=e.content,this.end=t.endPos,this.state={peek:-1,offset:t.startPos,line:t.startLine,column:t.startCol}}}clone(){return new Zh(this)}peek(){return this.state.peek}charsLeft(){return this.end-this.state.offset}diff(e){return this.state.offset-e.state.offset}advance(){this.advanceState(this.state)}init(){this.updatePeek(this.state)}getSpan(e,t){e||=this;let n=e;if(t)for(;this.diff(e)>0&&t.indexOf(e.peek())!==-1;)n===e&&(e=e.clone()),e.advance();let r=this.locationFromCursor(e),i=this.locationFromCursor(this),a=n===e?r:this.locationFromCursor(n);return new Z(r,i,a)}getChars(e){return this.input.substring(e.state.offset,this.state.offset)}charAt(e){return this.input.charCodeAt(e)}advanceState(e){if(e.offset>=this.end)throw this.state=e,new ng(`Unexpected character "EOF"`,this);let t=this.charAt(e.offset);t===10?(e.line++,e.column=0):md(t)||e.column++,e.offset++,this.updatePeek(e)}updatePeek(e){e.peek=e.offset>=this.end?0:this.charAt(e.offset)}locationFromCursor(e){return new Cm(e.file,e.state.offset,e.state.line,e.state.column)}},G(Zh,`t`),Zh),eg=($h=class extends Qh{constructor(e,t){e instanceof $h?(super(e),this.internalState={...e.internalState}):(super(e,t),this.internalState=this.state)}advance(){this.state=this.internalState,super.advance(),this.processEscapeSequence()}init(){super.init(),this.processEscapeSequence()}clone(){return new $h(this)}getChars(e){let t=e.clone(),n=``;for(;t.internalState.offset<this.internalState.offset;)n+=String.fromCodePoint(t.peek()),t.advance();return n}processEscapeSequence(){let e=G(()=>this.internalState.peek,`e`);if(e()===92)if(this.internalState={...this.state},this.advanceState(this.internalState),e()===110)this.state.peek=10;else if(e()===114)this.state.peek=13;else if(e()===118)this.state.peek=11;else if(e()===116)this.state.peek=9;else if(e()===98)this.state.peek=8;else if(e()===102)this.state.peek=12;else if(e()===117)if(this.advanceState(this.internalState),e()===123){this.advanceState(this.internalState);let t=this.clone(),n=0;for(;e()!==125;)this.advanceState(this.internalState),n++;this.state.peek=this.decodeHexDigits(t,n)}else{let e=this.clone();this.advanceState(this.internalState),this.advanceState(this.internalState),this.advanceState(this.internalState),this.state.peek=this.decodeHexDigits(e,4)}else if(e()===120){this.advanceState(this.internalState);let e=this.clone();this.advanceState(this.internalState),this.state.peek=this.decodeHexDigits(e,2)}else if(hd(e())){let t=``,n=0,r=this.clone();for(;hd(e())&&n<3;)r=this.clone(),t+=String.fromCodePoint(e()),this.advanceState(this.internalState),n++;this.state.peek=parseInt(t,8),this.internalState=r.internalState}else md(this.internalState.peek)?(this.advanceState(this.internalState),this.state=this.internalState):this.state.peek=this.internalState.peek}decodeHexDigits(e,t){let n=this.input.slice(e.internalState.offset,e.internalState.offset+t),r=parseInt(n,16);if(isNaN(r))throw e.state=e.internalState,new ng(`Invalid hexadecimal escape sequence`,e);return r}},G($h,`t`),$h),ng=(tg=class{constructor(e,t){this.msg=e,this.cursor=t}},G(tg,`gt`),tg),ig=(rg=class extends km{static create(e,t,n){return new rg(e,t,n)}constructor(e,t,n){super(t,n),this.elementName=e}},G(rg,`t`),rg),og=(ag=class{constructor(e,t){this.rootNodes=e,this.errors=t}},G(ag,`Vr`),ag),cg=(sg=class{constructor(e){this.getTagDefinition=e}parse(e,t,n,r=!1,i){let a=G(e=>(t,...n)=>e(t.toLowerCase(),...n),`a`),o=r?this.getTagDefinition:a(this.getTagDefinition),s=G(e=>o(e).getContentType(),`u`),c=r?i:a(i),l=Hd(e,t,i?(e,t,n,r)=>{let i=c(e,t,n,r);return i===void 0?s(e):i}:s,n),u=n&&n.canSelfClose||!1,d=n&&n.allowHtmComponentClosingTags||!1,f=new ug(l.tokens,o,u,d,r);return f.build(),new og(f.rootNodes,l.errors.concat(f.errors))}},G(sg,`tr`),sg),ug=(lg=class{constructor(e,t,n,r,i){this.tokens=e,this.getTagDefinition=t,this.canSelfClose=n,this.allowHtmComponentClosingTags=r,this.isTagNameCaseSensitive=i,this._index=-1,this._containerStack=[],this.rootNodes=[],this.errors=[],this._advance()}build(){for(;this._peek.type!==34;)this._peek.type===0||this._peek.type===4?this._consumeStartTag(this._advance()):this._peek.type===3?(this._closeVoidElement(),this._consumeEndTag(this._advance())):this._peek.type===12?(this._closeVoidElement(),this._consumeCdata(this._advance())):this._peek.type===10?(this._closeVoidElement(),this._consumeComment(this._advance())):this._peek.type===5||this._peek.type===7||this._peek.type===6?(this._closeVoidElement(),this._consumeText(this._advance())):this._peek.type===20?this._consumeExpansion(this._advance()):this._peek.type===25?(this._closeVoidElement(),this._consumeBlockOpen(this._advance())):this._peek.type===27?(this._closeVoidElement(),this._consumeBlockClose(this._advance())):this._peek.type===29?(this._closeVoidElement(),this._consumeIncompleteBlock(this._advance())):this._peek.type===30?(this._closeVoidElement(),this._consumeLet(this._advance())):this._peek.type===18?this._consumeDocType(this._advance()):this._peek.type===33?(this._closeVoidElement(),this._consumeIncompleteLet(this._advance())):this._advance();for(let e of this._containerStack)e instanceof Oh&&this.errors.push(ig.create(e.name,e.sourceSpan,`Unclosed block "${e.name}"`))}_advance(){let e=this._peek;return this._index<this.tokens.length-1&&this._index++,this._peek=this.tokens[this._index],e}_advanceIf(e){return this._peek.type===e?this._advance():null}_consumeCdata(e){let t=this._advance(),n=this._getText(t),r=this._advanceIf(13);this._addToParent(new mh(n,new Z(e.sourceSpan.start,(r||t).sourceSpan.end),[t]))}_consumeComment(e){let t=this._advanceIf(7),n=this._advanceIf(11),r=t==null?null:t.parts[0].trim(),i=n==null?e.sourceSpan:new Z(e.sourceSpan.start,n.sourceSpan.end,e.sourceSpan.fullStart);this._addToParent(new wh(r,i))}_consumeDocType(e){let t=this._advanceIf(7),n=this._advanceIf(19),r=t==null?null:t.parts[0].trim(),i=new Z(e.sourceSpan.start,(n||t||e).sourceSpan.end);this._addToParent(new Eh(r,i))}_consumeExpansion(e){let t=this._advance(),n=this._advance(),r=[];for(;this._peek.type===21;){let e=this._parseExpansionCase();if(!e)return;r.push(e)}if(this._peek.type!==24){this.errors.push(ig.create(null,this._peek.sourceSpan,`Invalid ICU message. Missing '}'.`));return}let i=new Z(e.sourceSpan.start,this._peek.sourceSpan.end,e.sourceSpan.fullStart);this._addToParent(new gh(t.parts[0],n.parts[0],r,i,t.sourceSpan)),this._advance()}_parseExpansionCase(){let e=this._advance();if(this._peek.type!==22)return this.errors.push(ig.create(null,this._peek.sourceSpan,`Invalid ICU message. Missing '{'.`)),null;let t=this._advance(),n=this._collectExpansionExpTokens(t);if(!n)return null;let r=this._advance();n.push({type:34,parts:[],sourceSpan:r.sourceSpan});let i=new lg(n,this.getTagDefinition,this.canSelfClose,this.allowHtmComponentClosingTags,this.isTagNameCaseSensitive);if(i.build(),i.errors.length>0)return this.errors=this.errors.concat(i.errors),null;let a=new Z(e.sourceSpan.start,r.sourceSpan.end,e.sourceSpan.fullStart),o=new Z(t.sourceSpan.start,r.sourceSpan.end,t.sourceSpan.fullStart);return new vh(e.parts[0],i.rootNodes,a,e.sourceSpan,o)}_collectExpansionExpTokens(e){let t=[],n=[22];for(;;){if((this._peek.type===20||this._peek.type===22)&&n.push(this._peek.type),this._peek.type===23)if(nf(n,22)){if(n.pop(),n.length===0)return t}else return this.errors.push(ig.create(null,e.sourceSpan,`Invalid ICU message. Missing '}'.`)),null;if(this._peek.type===24)if(nf(n,20))n.pop();else return this.errors.push(ig.create(null,e.sourceSpan,`Invalid ICU message. Missing '}'.`)),null;if(this._peek.type===34)return this.errors.push(ig.create(null,e.sourceSpan,`Invalid ICU message. Missing '}'.`)),null;t.push(this._advance())}}_getText(e){let t=e.parts[0];if(t.length>0&&t[0]==`
237
+ `){let e=this._getClosestParentElement();e!=null&&e.children.length==0&&this.getTagDefinition(e.name).ignoreFirstLf&&(t=t.substring(1))}return t}_consumeText(e){let t=[e],n=e.sourceSpan,r=e.parts[0];if(r.length>0&&r[0]===`
238
+ `){let n=this._getContainer();n!=null&&n.children.length===0&&this.getTagDefinition(n.name).ignoreFirstLf&&(r=r.substring(1),t[0]={type:e.type,sourceSpan:e.sourceSpan,parts:[r]})}for(;this._peek.type===8||this._peek.type===5||this._peek.type===9;)e=this._advance(),t.push(e),e.type===8?r+=e.parts.join(``).replace(/&([^;]+);/g,rf):e.type===9?r+=e.parts[0]:r+=e.parts.join(``);if(r.length>0){let i=e.sourceSpan;this._addToParent(new fh(r,new Z(n.start,i.end,n.fullStart,n.details),t))}}_closeVoidElement(){let e=this._getContainer();e instanceof Sh&&this.getTagDefinition(e.name).isVoid&&this._containerStack.pop()}_consumeStartTag(e){let[t,n]=e.parts,r=[];for(;this._peek.type===14;)r.push(this._consumeAttr(this._advance()));let i=this._getElementFullName(t,n,this._getClosestParentElement()),a=!1;if(this._peek.type===2){this._advance(),a=!0;let t=this.getTagDefinition(i);this.canSelfClose||t.canSelfClose||Pd(i)!==null||t.isVoid||this.errors.push(ig.create(i,e.sourceSpan,`Only void, custom \
239
+ and foreign elements can be self closed "${e.parts[1]}"`))}else this._peek.type===1&&(this._advance(),a=!1);let o=this._peek.sourceSpan.fullStart,s=new Z(e.sourceSpan.start,o,e.sourceSpan.fullStart),c=new Z(e.sourceSpan.start,o,e.sourceSpan.fullStart),l=new Z(e.sourceSpan.start.moveBy(1),e.sourceSpan.end),u=new Sh(i,r,[],s,c,void 0,l),d=this._getContainer();this._pushContainer(u,d instanceof Sh&&this.getTagDefinition(d.name).isClosedByChild(u.name)),a?this._popContainer(i,Sh,s):e.type===4&&(this._popContainer(i,Sh,null),this.errors.push(ig.create(i,s,`Opening tag "${i}" not terminated.`)))}_pushContainer(e,t){t&&this._containerStack.pop(),this._addToParent(e),this._containerStack.push(e)}_consumeEndTag(e){let t=this.allowHtmComponentClosingTags&&e.parts.length===0?null:this._getElementFullName(e.parts[0],e.parts[1],this._getClosestParentElement());if(t&&this.getTagDefinition(t).isVoid)this.errors.push(ig.create(t,e.sourceSpan,`Void elements do not have end tags "${e.parts[1]}\
240
+ "`));else if(!this._popContainer(t,Sh,e.sourceSpan)){let n=`Unexpected closing tag "${t}". It may happen when the tag has already been closed by another tag. For more info see https:/\
241
+ /www.w3.org/TR/html5/syntax.html#closing-elements-that-have-implied-end-tags`;this.errors.push(ig.create(t,e.sourceSpan,n))}}_popContainer(e,t,n){let r=!1;for(let i=this._containerStack.length-1;i>=0;i--){let a=this._containerStack[i];if(Pd(a.name)?a.name===e:(e==null||a.name.toLowerCase()===e.toLowerCase())&&a instanceof t)return a.endSourceSpan=n,a.sourceSpan.end=n===null?a.sourceSpan.end:n.end,this._containerStack.splice(i,this._containerStack.length-i),!r;(a instanceof Oh||a instanceof Sh&&!this.getTagDefinition(a.name).closedByParent)&&(r=!0)}return!1}_consumeAttr(e){let t=Fd(e.parts[0],e.parts[1]),n=e.sourceSpan.end,r;this._peek.type===15&&(r=this._advance());let i=``,a=[],o,s;if(this._peek.type===16)for(o=this._peek.sourceSpan,s=this._peek.sourceSpan.end;this._peek.type===16||this._peek.type===17||this._peek.type===9;){let e=this._advance();a.push(e),e.type===17?i+=e.parts.join(``).replace(/&([^;]+);/g,rf):e.type===9?i+=e.parts[0]:i+=e.parts.join(``),s=n=e.sourceSpan.end}this._peek.type===15&&(s=n=this._advance().sourceSpan.end);let c=o&&s&&new Z(r?.sourceSpan.start??o.start,s,r?.sourceSpan.fullStart??o.fullStart);return new bh(t,i,new Z(e.sourceSpan.start,n,e.sourceSpan.fullStart),e.sourceSpan,c,a.length>0?a:void 0,void 0)}_consumeBlockOpen(e){let t=[];for(;this._peek.type===28;){let e=this._advance();t.push(new Ah(e.parts[0],e.sourceSpan))}this._peek.type===26&&this._advance();let n=this._peek.sourceSpan.fullStart,r=new Z(e.sourceSpan.start,n,e.sourceSpan.fullStart),i=new Z(e.sourceSpan.start,n,e.sourceSpan.fullStart),a=new Oh(e.parts[0],t,[],r,e.sourceSpan,i);this._pushContainer(a,!1)}_consumeBlockClose(e){this._popContainer(null,Oh,e.sourceSpan)||this.errors.push(ig.create(null,e.sourceSpan,`Unexpected closing block. The block may have been closed earlier. If you meant to write the } character, you should use the "&#125;" HTML entity instead.`))}_consumeIncompleteBlock(e){let t=[];for(;this._peek.type===28;){let e=this._advance();t.push(new Ah(e.parts[0],e.sourceSpan))}let n=this._peek.sourceSpan.fullStart,r=new Z(e.sourceSpan.start,n,e.sourceSpan.fullStart),i=new Z(e.sourceSpan.start,n,e.sourceSpan.fullStart),a=new Oh(e.parts[0],t,[],r,e.sourceSpan,i);this._pushContainer(a,!1),this._popContainer(null,Oh,null),this.errors.push(ig.create(e.parts[0],r,`Incomplete block "${e.parts[0]}\
242
+ ". If you meant to write the @ character, you should use the "&#64;" HTML entity instead.`))}_consumeLet(e){let t=e.parts[0],n,r;if(this._peek.type!==31){this.errors.push(ig.create(e.parts[0],e.sourceSpan,`Invalid @let declaration "${t}". Declaration must have a value.`));return}else n=this._advance();if(this._peek.type!==32){this.errors.push(ig.create(e.parts[0],e.sourceSpan,`Unterminated @let declaration "${t}". Declaration must be terminated with a se\
243
+ micolon.`));return}else r=this._advance();let i=r.sourceSpan.fullStart,a=new Z(e.sourceSpan.start,i,e.sourceSpan.fullStart),o=e.sourceSpan.toString().lastIndexOf(t),s=e.sourceSpan.start.moveBy(o),c=new Z(s,e.sourceSpan.end),l=new Mh(t,n.parts[0],a,c,n.sourceSpan);this._addToParent(l)}_consumeIncompleteLet(e){let t=e.parts[0]??``,n=t?` "${t}"`:``;if(t.length>0){let n=e.sourceSpan.toString().lastIndexOf(t),r=e.sourceSpan.start.moveBy(n),i=new Z(r,e.sourceSpan.end),a=new Z(e.sourceSpan.start,e.sourceSpan.start.moveBy(0)),o=new Mh(t,``,e.sourceSpan,i,a);this._addToParent(o)}this.errors.push(ig.create(e.parts[0],e.sourceSpan,`Incomplete @let declaration${n}. @let declarations must be written as \`@let <nam\
244
+ e> = <value>;\``))}_getContainer(){return this._containerStack.length>0?this._containerStack[this._containerStack.length-1]:null}_getClosestParentElement(){for(let e=this._containerStack.length-1;e>-1;e--)if(this._containerStack[e]instanceof Sh)return this._containerStack[e];return null}_addToParent(e){let t=this._getContainer();t===null?this.rootNodes.push(e):t.children.push(e)}_getElementFullName(e,t,n){if(e===``&&(e=this.getTagDefinition(t).implicitNamespacePrefix||``,e===``&&n!=null)){let t=jd(n.name)[1];this.getTagDefinition(t).preventNamespaceInheritance||(e=Pd(n.name))}return Fd(e,t)}},G(lg,`t`),lg),G(nf,`Ws`),G(rf,`zs`),fg=(dg=class extends cg{constructor(){super(zd)}parse(e,t,n,r=!1,i){return super.parse(e,t,n,r,i)}},G(dg,`rr`),dg),pg=null,mg=G(()=>(pg||=new fg,pg),`So`),G(af,`zr`),G(of,`_o`),hg=of,gg=3,G(sf,`Eo`),G(cf,`Ao`),_g=cf,vg={attrs:!0,children:!0,cases:!0,expression:!0},yg=new Set([`parent`]),xg=(bg=class{constructor(e={}){for(let t of new Set([...yg,...Object.keys(e)]))this.setProperty(t,e[t])}setProperty(e,t){if(this[e]!==t){if(e in vg&&(t=t.map(e=>this.createChild(e))),!yg.has(e)){this[e]=t;return}Object.defineProperty(this,e,{value:t,enumerable:!1,configurable:!0})}}map(e){let t;for(let n in vg){let r=this[n];if(r){let i=lf(r,t=>t.map(e));t!==r&&(t||=new bg({parent:this.parent}),t.setProperty(n,i))}}if(t)for(let e in this)e in vg||(t[e]=this[e]);return e(t||this)}walk(e){for(let t in vg){let n=this[t];if(n)for(let t=0;t<n.length;t++)n[t].walk(e)}e(this)}createChild(e){let t=e instanceof bg?e.clone():new bg(e);return t.setProperty(`parent`,this),t}insertChildBefore(e,t){this.children.splice(this.children.indexOf(e),0,this.createChild(t))}removeChild(e){this.children.splice(this.children.indexOf(e),1)}replaceChild(e,t){this.children[this.children.indexOf(e)]=this.createChild(t)}clone(){return new bg(this)}get firstChild(){return this.children?.[0]}get lastChild(){return this.children?.[this.children.length-1]}get prev(){return this.parent?.children?.[this.parent.children.indexOf(this)-1]}get next(){return this.parent?.children?.[this.parent.children.indexOf(this)+1]}get rawName(){return this.hasExplicitNamespace?this.fullName:this.name}get fullName(){return this.namespace?this.namespace+`:`+this.name:this.name}get attrMap(){return Object.fromEntries(this.attrs.map(e=>[e.fullName,e.value]))}},G(bg,`t`),bg),G(lf,`Do`),Sg=[{regex:/^(\[if([^\]]*)\]>)(.*?)<!\s*\[endif\]$/su,parse:df},{regex:/^\[if([^\]]*)\]><!$/u,parse:ff},{regex:/^<!\s*\[endif\]$/u,parse:pf}],G(uf,`Ks`),G(df,`yo`),G(ff,`wo`),G(pf,`bo`),Cg=new Map([[`*`,new Set(`accesskey.autocapitalize.autofocus.class.contenteditable.dir.draggable.enterkeyhint.hidden.id.inert.inputmode.is.itemid.itemprop.itemref.itemscope.itemtype.lang.nonce.popover.slot.spellcheck.style.tabindex.title.translate.writingsuggestions`.split(`.`))],[`a`,new Set([`charset`,`coords`,`download`,`href`,`hreflang`,`name`,`ping`,`referrerpolicy`,`rel`,`rev`,`shape`,`target`,`type`])],[`applet`,new Set([`align`,`alt`,`archive`,`code`,`codebase`,`height`,`hspace`,`name`,`object`,`vspace`,`width`])],[`area`,new Set([`alt`,`coords`,`download`,`href`,`hreflang`,`nohref`,`ping`,`referrerpolicy`,`rel`,`shape`,`target`,`type`])],[`audio`,new Set([`autoplay`,`controls`,`crossorigin`,`loop`,`muted`,`preload`,`src`])],[`base`,new Set([`href`,`target`])],[`basefont`,new Set([`color`,`face`,`size`])],[`blockquote`,new Set([`cite`])],[`body`,new Set([`alink`,`background`,`bgcolor`,`link`,`text`,`vlink`])],[`br`,new Set([`clear`])],[`button`,new Set([`disabled`,`form`,`formaction`,`formenctype`,`formmethod`,`formnovalidate`,`formtarget`,`name`,`popovertarget`,`popovertargetaction`,`type`,`value`])],[`canvas`,new Set([`height`,`width`])],[`caption`,new Set([`align`])],[`col`,new Set([`align`,`char`,`charoff`,`span`,`valign`,`width`])],[`colgroup`,new Set([`align`,`char`,`charoff`,`span`,`valign`,`width`])],[`data`,new Set([`value`])],[`del`,new Set([`cite`,`datetime`])],[`details`,new Set([`name`,`open`])],[`dialog`,new Set([`open`])],[`dir`,new Set([`compact`])],[`div`,new Set([`align`])],[`dl`,new Set([`compact`])],[`embed`,new Set([`height`,`src`,`type`,`width`])],[`fieldset`,new Set([`disabled`,`form`,`name`])],[`font`,new Set([`color`,`face`,`size`])],[`form`,new Set([`accept`,`accept-charset`,`action`,`autocomplete`,`enctype`,`method`,`name`,`novalidate`,`target`])],[`frame`,new Set([`frameborder`,`longdesc`,`marginheight`,`marginwidth`,`name`,`noresize`,`scrolling`,`src`])],[`frameset`,new Set([`cols`,`rows`])],[`h1`,new Set([`align`])],[`h2`,new Set([`align`])],[`h3`,new Set([`align`])],[`h4`,new Set([`align`])],[`h5`,new Set([`align`])],[`h6`,new Set([`align`])],[`head`,new Set([`profile`])],[`hr`,new Set([`align`,`noshade`,`size`,`width`])],[`html`,new Set([`manifest`,`version`])],[`iframe`,new Set([`align`,`allow`,`allowfullscreen`,`allowpaymentrequest`,`allowusermedia`,`frameborder`,`height`,`loading`,`longdesc`,`marginheight`,`marginwidth`,`name`,`referrerpolicy`,`sandbox`,`scrolling`,`src`,`srcdoc`,`width`])],[`img`,new Set([`align`,`alt`,`border`,`crossorigin`,`decoding`,`fetchpriority`,`height`,`hspace`,`ismap`,`loading`,`longdesc`,`name`,`referrerpolicy`,`sizes`,`src`,`srcset`,`usemap`,`vspace`,`width`])],[`input`,new Set(`accept.align.alt.autocomplete.checked.dirname.disabled.form.formaction.formenctype.formmethod.formnovalidate.formtarget.height.ismap.list.max.maxlength.min.minlength.multiple.name.pattern.placeholder.popovertarget.popovertargetaction.readonly.required.size.src.step.type.usemap.value.width`.split(`.`))],[`ins`,new Set([`cite`,`datetime`])],[`isindex`,new Set([`prompt`])],[`label`,new Set([`for`,`form`])],[`legend`,new Set([`align`])],[`li`,new Set([`type`,`value`])],[`link`,new Set([`as`,`blocking`,`charset`,`color`,`crossorigin`,`disabled`,`fetchpriority`,`href`,`hreflang`,`imagesizes`,`imagesrcset`,`integrity`,`media`,`referrerpolicy`,`rel`,`rev`,`sizes`,`target`,`type`])],[`map`,new Set([`name`])],[`menu`,new Set([`compact`])],[`meta`,new Set([`charset`,`content`,`http-equiv`,`media`,`name`,`scheme`])],[`meter`,new Set([`high`,`low`,`max`,`min`,`optimum`,`value`])],[`object`,new Set([`align`,`archive`,`border`,`classid`,`codebase`,`codetype`,`data`,`declare`,`form`,`height`,`hspace`,`name`,`standby`,`type`,`typemustmatch`,`usemap`,`vspace`,`width`])],[`ol`,new Set([`compact`,`reversed`,`start`,`type`])],[`optgroup`,new Set([`disabled`,`label`])],[`option`,new Set([`disabled`,`label`,`selected`,`value`])],[`output`,new Set([`for`,`form`,`name`])],[`p`,new Set([`align`])],[`param`,new Set([`name`,`type`,`value`,`valuetype`])],[`pre`,new Set([`width`])],[`progress`,new Set([`max`,`value`])],[`q`,new Set([`cite`])],[`script`,new Set([`async`,`blocking`,`charset`,`crossorigin`,`defer`,`fetchpriority`,`integrity`,`language`,`nomodule`,`referrerpolicy`,`src`,`type`])],[`select`,new Set([`autocomplete`,`disabled`,`form`,`multiple`,`name`,`required`,`size`])],[`slot`,new Set([`name`])],[`source`,new Set([`height`,`media`,`sizes`,`src`,`srcset`,`type`,`width`])],[`style`,new Set([`blocking`,`media`,`type`])],[`table`,new Set([`align`,`bgcolor`,`border`,`cellpadding`,`cellspacing`,`frame`,`rules`,`summary`,`width`])],[`tbody`,new Set([`align`,`char`,`charoff`,`valign`])],[`td`,new Set([`abbr`,`align`,`axis`,`bgcolor`,`char`,`charoff`,`colspan`,`headers`,`height`,`nowrap`,`rowspan`,`scope`,`valign`,`width`])],[`template`,new Set([`shadowrootclonable`,`shadowrootdelegatesfocus`,`shadowrootmode`])],[`textarea`,new Set([`autocomplete`,`cols`,`dirname`,`disabled`,`form`,`maxlength`,`minlength`,`name`,`placeholder`,`readonly`,`required`,`rows`,`wrap`])],[`tfoot`,new Set([`align`,`char`,`charoff`,`valign`])],[`th`,new Set([`abbr`,`align`,`axis`,`bgcolor`,`char`,`charoff`,`colspan`,`headers`,`height`,`nowrap`,`rowspan`,`scope`,`valign`,`width`])],[`thead`,new Set([`align`,`char`,`charoff`,`valign`])],[`time`,new Set([`datetime`])],[`tr`,new Set([`align`,`bgcolor`,`char`,`charoff`,`valign`])],[`track`,new Set([`default`,`kind`,`label`,`src`,`srclang`])],[`ul`,new Set([`compact`,`type`])],[`video`,new Set([`autoplay`,`controls`,`crossorigin`,`height`,`loop`,`muted`,`playsinline`,`poster`,`preload`,`src`,`width`])]]),wg=new Set(`a.abbr.acronym.address.applet.area.article.aside.audio.b.base.basefont.bdi.bdo.bgsound.big.blink.blockquote.body.br.button.canvas.caption.center.cite.code.col.colgroup.command.content.data.datalist.dd.del.details.dfn.dialog.dir.div.dl.dt.element.em.embed.fieldset.figcaption.figure.font.footer.form.frame.frameset.h1.h2.h3.h4.h5.h6.head.header.hgroup.hr.html.i.iframe.image.img.input.ins.isindex.kbd.keygen.label.legend.li.link.listing.main.map.mark.marquee.math.menu.menuitem.meta.meter.multicol.nav.nextid.nobr.noembed.noframes.noscript.object.ol.optgroup.option.output.p.param.picture.plaintext.pre.progress.q.rb.rbc.rp.rt.rtc.ruby.s.samp.script.search.section.select.shadow.slot.small.source.spacer.span.strike.strong.style.sub.summary.sup.svg.table.tbody.td.template.textarea.tfoot.th.thead.time.title.tr.track.tt.u.ul.var.video.wbr.xmp`.split(`.`)),G(mf,`To`),G(hf,`xo`),G(gf,`ko`),G(_f,`Js`),G(vf,`Bo`),G(yf,`Xs`),G(bf,`Zs`),G(xf,`ar`),Tg={name:`html`,normalizeTagName:!0,normalizeAttributeName:!0,allowHtmComponentClosingTags:!0},Eg=xf(Tg),Dg=xf({name:`angular`}),Og=xf({name:`vue`,isTagNameCaseSensitive:!0,shouldParseAsRawText(e,t,n,r){return e.toLowerCase()!==`html`&&!n&&(e!==`template`||r.some(({name:e,value:t})=>e===`lang`&&t!==`html`&&t!==``&&t!==void 0))}}),kg=xf({name:`lwc`,canSelfClose:!1}),Ag={html:Nm},jg=kf});function Ng(){}function Pg(e,t,n,r,i){for(var a=[],o;t;)a.push(t),o=t.previousComponent,delete t.previousComponent,t=o;a.reverse();for(var s=0,c=a.length,l=0,u=0;s<c;s++){var d=a[s];if(d.removed)d.value=e.join(r.slice(u,u+d.count)),u+=d.count;else{if(!d.added&&i){var f=n.slice(l,l+d.count);f=f.map(function(e,t){var n=r[u+t];return n.length>e.length?n:e}),d.value=e.join(f)}else d.value=e.join(n.slice(l,l+d.count));l+=d.count,d.added||(u+=d.count)}}return a}function Fg(e,t){var n;for(n=0;n<e.length&&n<t.length;n++)if(e[n]!=t[n])return e.slice(0,n);return e.slice(0,n)}function Ig(e,t){var n;if(!e||!t||e[e.length-1]!=t[t.length-1])return``;for(n=0;n<e.length&&n<t.length;n++)if(e[e.length-(n+1)]!=t[t.length-(n+1)])return e.slice(-n);return e.slice(-n)}function Lg(e,t,n){if(e.slice(0,t.length)!=t)throw Error(`string ${JSON.stringify(e)} doesn't start with prefix ${JSON.stringify(t)}; this is a bug`);return n+e.slice(t.length)}function Rg(e,t,n){if(!t)return e+n;if(e.slice(-t.length)!=t)throw Error(`string ${JSON.stringify(e)} doesn't end with suffix ${JSON.stringify(t)}; this is a bug`);return e.slice(0,-t.length)+n}function zg(e,t){return Lg(e,t,``)}function Bg(e,t){return Rg(e,t,``)}function Vg(e,t){return t.slice(0,Hg(e,t))}function Hg(e,t){var n=0;e.length>t.length&&(n=e.length-t.length);var r=t.length;e.length<t.length&&(r=e.length);var i=Array(r),a=0;i[0]=0;for(var o=1;o<r;o++){for(t[o]==t[a]?i[o]=i[a]:i[o]=a;a>0&&t[o]!=t[a];)a=i[a];t[o]==t[a]&&a++}a=0;for(var s=n;s<e.length;s++){for(;a>0&&e[s]!=t[a];)a=i[a];e[s]==t[a]&&a++}return a}function Ug(e,t,n,r){if(t&&n){var i=t.value.match(/^\s*/)[0],a=t.value.match(/\s*$/)[0],o=n.value.match(/^\s*/)[0],s=n.value.match(/\s*$/)[0];if(e){var c=Fg(i,o);e.value=Rg(e.value,o,c),t.value=zg(t.value,c),n.value=zg(n.value,c)}if(r){var l=Ig(a,s);r.value=Lg(r.value,s,l),t.value=Bg(t.value,l),n.value=Bg(n.value,l)}}else if(n)e&&(n.value=n.value.replace(/^\s*/,``)),r&&(r.value=r.value.replace(/^\s*/,``));else if(e&&r){var u=r.value.match(/^\s*/)[0],d=t.value.match(/^\s*/)[0],f=t.value.match(/\s*$/)[0],p=Fg(u,d);t.value=zg(t.value,p);var m=Ig(zg(u,p),f);t.value=Bg(t.value,m),r.value=Lg(r.value,u,m),e.value=Rg(e.value,u,u.slice(0,u.length-m.length))}else if(r){var h=r.value.match(/^\s*/)[0],g=t.value.match(/\s*$/)[0],_=Vg(g,h);t.value=Bg(t.value,_)}else if(e){var v=e.value.match(/\s*$/)[0],y=t.value.match(/^\s*/)[0],b=Vg(v,y);t.value=zg(t.value,b)}}function Wg(e){"@babel/helpers - typeof";return Wg=typeof Symbol==`function`&&typeof Symbol.iterator==`symbol`?function(e){return typeof e}:function(e){return e&&typeof Symbol==`function`&&e.constructor===Symbol&&e!==Symbol.prototype?`symbol`:typeof e},Wg(e)}function Gg(e,t,n,r,i){t||=[],n||=[],r&&(e=r(i,e));var a;for(a=0;a<t.length;a+=1)if(t[a]===e)return n[a];var o;if(Object.prototype.toString.call(e)===`[object Array]`){for(t.push(e),o=Array(e.length),n.push(o),a=0;a<e.length;a+=1)o[a]=Gg(e[a],t,n,r,i);return t.pop(),n.pop(),o}if(e&&e.toJSON&&(e=e.toJSON()),Wg(e)===`object`&&e!==null){t.push(e),o={},n.push(o);var s=[],c;for(c in e)Object.prototype.hasOwnProperty.call(e,c)&&s.push(c);for(s.sort(),a=0;a<s.length;a+=1)c=s[a],o[c]=Gg(e[c],t,n,r,c);t.pop(),n.pop()}else o=e;return o}function Kg(e,t,n){return Tb.diff(e,t,n)}function qg(e){let t=e.indexOf(`\r`);return t===-1?`lf`:e.charAt(t+1)===`
245
+ `?`crlf`:`cr`}function Jg(e){switch(e){case`cr`:return`\r`;case`crlf`:return`\r
246
+ `;default:return`
247
+ `}}function Yg(e,t){let n;switch(t){case`
248
+ `:n=/\n/gu;break;case`\r`:n=/\r/gu;break;case`\r
249
+ `:n=/\r\n/gu;break;default:throw Error(`Unexpected "eol" ${JSON.stringify(t)}.`)}let r=e.match(n);return r?r.length:0}function Xg(e){return gb(!1,e,/\r\n?/gu,`
250
+ `)}function Zg(e){if(typeof e==`string`)return Eb;if(Array.isArray(e))return Db;if(!e)return;let{type:t}=e;if(Vb.has(t))return t}function Qg(e){let t=e===null?`null`:typeof e;if(t!==`string`&&t!==`object`)return`Unexpected doc '${t}',
251
+ Expected it to be 'string' or 'object'.`;if(Hb(e))throw Error(`doc is valid.`);let n=Object.prototype.toString.call(e);if(n!==`[object Object]`)return`Unexpected doc '${n}'.`;let r=Ub([...Vb].map(e=>`'${e}'`));return`Unexpected doc.type '${e.type}'.
252
+ Expected it to be ${r}.`}function $g(e,t,n,r){let i=[e];for(;i.length>0;){let e=i.pop();if(e===qb){n(i.pop());continue}n&&i.push(e,qb);let a=Hb(e);if(!a)throw new Kb(e);if(t?.(e)!==!1)switch(a){case Db:case Nb:{let t=a===Db?e:e.parts;for(let e=t.length-1;e>=0;--e)i.push(t[e]);break}case Pb:i.push(e.flatContents,e.breakContents);break;case Mb:if(r&&e.expandedStates)for(let t=e.expandedStates.length,n=t-1;n>=0;--n)i.push(e.expandedStates[n]);else i.push(e.contents);break;case Ab:case kb:case Fb:case zb:case Ib:i.push(e.contents);break;case Eb:case Ob:case jb:case Lb:case Rb:case Bb:break;default:throw new Kb(e)}}}function e_(e){return Xb(e),{type:kb,contents:e}}function t_(e,t){return Xb(t),{type:Ab,contents:t,n:e}}function n_(e,t={}){return Xb(e),Zb(t.expandedStates,!0),{type:Mb,id:t.id,contents:e,break:!!t.shouldBreak,expandedStates:t.expandedStates}}function r_(e){return t_(-1/0,e)}function i_(e){return t_({type:`root`},e)}function a_(e){return t_(-1,e)}function o_(e,t){return n_(e[0],{...t,expandedStates:e})}function s_(e){return Zb(e),{type:Nb,parts:e}}function c_(e,t=``,n={}){return Xb(e),t!==``&&Xb(t),{type:Pb,breakContents:e,flatContents:t,groupId:n.groupId}}function l_(e,t){return Xb(e),{type:Fb,contents:e,groupId:t.groupId,negate:t.negate}}function u_(e){return Xb(e),{type:Ib,contents:e}}function d_(e,t){Xb(e),Zb(t);let n=[];for(let r=0;r<t.length;r++)r!==0&&n.push(e),n.push(t[r]);return n}function f_(e,t,n){Xb(e);let r=e;if(t>0){for(let e=0;e<Math.floor(t/n);++e)r=e_(r);r=t_(t%n,r),r=t_(-1/0,r)}return r}function p_(e,t){return Xb(t),e?{type:zb,label:e,contents:t}:t}function m_(e){if(!e)return``;if(Array.isArray(e)){let t=[];for(let n of e)if(Array.isArray(n))t.push(...m_(n));else{let e=m_(n);e!==``&&t.push(e)}return t}return e.type===Pb?{...e,breakContents:m_(e.breakContents),flatContents:m_(e.flatContents)}:e.type===Mb?{...e,contents:m_(e.contents),expandedStates:e.expandedStates?.map(m_)}:e.type===Nb?{type:`fill`,parts:e.parts.map(m_)}:e.contents?{...e,contents:m_(e.contents)}:e}function h_(e){let t=Object.create(null),n=new Set;return r(m_(e));function r(e,t,n){if(typeof e==`string`)return JSON.stringify(e);if(Array.isArray(e)){let t=e.map(r).filter(Boolean);return t.length===1?t[0]:`[${t.join(`, `)}]`}if(e.type===Rb){let r=n?.[t+1]?.type===Bb;return e.literal?r?`literalline`:`literallineWithoutBreakParent`:e.hard?r?`hardline`:`hardlineWithoutBreakParent`:e.soft?`softline`:`line`}if(e.type===Bb)return n?.[t-1]?.type===Rb&&n[t-1].hard?void 0:`breakParent`;if(e.type===jb)return`trim`;if(e.type===kb)return`indent(`+r(e.contents)+`)`;if(e.type===Ab)return e.n===-1/0?`dedentToRoot(`+r(e.contents)+`)`:e.n<0?`dedent(`+r(e.contents)+`)`:e.n.type===`root`?`markAsRoot(`+r(e.contents)+`)`:`align(`+JSON.stringify(e.n)+`, `+r(e.contents)+`)`;if(e.type===Pb)return`ifBreak(`+r(e.breakContents)+(e.flatContents?`, `+r(e.flatContents):``)+(e.groupId?(e.flatContents?``:`, ""`)+`, { groupId: ${i(e.groupId)} }`:``)+`)`;if(e.type===Fb){let t=[];e.negate&&t.push(`negate: true`),e.groupId&&t.push(`groupId: ${i(e.groupId)}`);let n=t.length>0?`, { ${t.join(`, `)} }`:``;return`indentIfBreak(${r(e.contents)}${n})`}if(e.type===Mb){let t=[];e.break&&e.break!==`propagated`&&t.push(`shouldBreak: true`),e.id&&t.push(`id: ${i(e.id)}`);let n=t.length>0?`, { ${t.join(`, `)} }`:``;return e.expandedStates?`conditionalGroup([${e.expandedStates.map(e=>r(e)).join(`,`)}]${n})`:`group(${r(e.contents)}${n})`}if(e.type===Nb)return`fill([${e.parts.map(e=>r(e)).join(`, `)}])`;if(e.type===Ib)return`lineSuffix(`+r(e.contents)+`)`;if(e.type===Lb)return`lineSuffixBoundary`;if(e.type===zb)return`label(${JSON.stringify(e.label)}, ${r(e.contents)})`;throw Error(`Unknown doc type `+e.type)}function i(e){if(typeof e!=`symbol`)return JSON.stringify(String(e));if(e in t)return t[e];let r=e.description||`symbol`;for(let i=0;;i++){let a=r+(i>0?` #${i}`:``);if(!n.has(a))return n.add(a),t[e]=`Symbol.for(${JSON.stringify(a)})`}}}function g_(e){return e===12288||e>=65281&&e<=65376||e>=65504&&e<=65510}function __(e){return e>=4352&&e<=4447||e===8986||e===8987||e===9001||e===9002||e>=9193&&e<=9196||e===9200||e===9203||e===9725||e===9726||e===9748||e===9749||e>=9776&&e<=9783||e>=9800&&e<=9811||e===9855||e>=9866&&e<=9871||e===9875||e===9889||e===9898||e===9899||e===9917||e===9918||e===9924||e===9925||e===9934||e===9940||e===9962||e===9970||e===9971||e===9973||e===9978||e===9981||e===9989||e===9994||e===9995||e===10024||e===10060||e===10062||e>=10067&&e<=10069||e===10071||e>=10133&&e<=10135||e===10160||e===10175||e===11035||e===11036||e===11088||e===11093||e>=11904&&e<=11929||e>=11931&&e<=12019||e>=12032&&e<=12245||e>=12272&&e<=12287||e>=12289&&e<=12350||e>=12353&&e<=12438||e>=12441&&e<=12543||e>=12549&&e<=12591||e>=12593&&e<=12686||e>=12688&&e<=12773||e>=12783&&e<=12830||e>=12832&&e<=12871||e>=12880&&e<=42124||e>=42128&&e<=42182||e>=43360&&e<=43388||e>=44032&&e<=55203||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65106||e>=65108&&e<=65126||e>=65128&&e<=65131||e>=94176&&e<=94180||e===94192||e===94193||e>=94208&&e<=100343||e>=100352&&e<=101589||e>=101631&&e<=101640||e>=110576&&e<=110579||e>=110581&&e<=110587||e===110589||e===110590||e>=110592&&e<=110882||e===110898||e>=110928&&e<=110930||e===110933||e>=110948&&e<=110951||e>=110960&&e<=111355||e>=119552&&e<=119638||e>=119648&&e<=119670||e===126980||e===127183||e===127374||e>=127377&&e<=127386||e>=127488&&e<=127490||e>=127504&&e<=127547||e>=127552&&e<=127560||e===127568||e===127569||e>=127584&&e<=127589||e>=127744&&e<=127776||e>=127789&&e<=127797||e>=127799&&e<=127868||e>=127870&&e<=127891||e>=127904&&e<=127946||e>=127951&&e<=127955||e>=127968&&e<=127984||e===127988||e>=127992&&e<=128062||e===128064||e>=128066&&e<=128252||e>=128255&&e<=128317||e>=128331&&e<=128334||e>=128336&&e<=128359||e===128378||e===128405||e===128406||e===128420||e>=128507&&e<=128591||e>=128640&&e<=128709||e===128716||e>=128720&&e<=128722||e>=128725&&e<=128727||e>=128732&&e<=128735||e===128747||e===128748||e>=128756&&e<=128764||e>=128992&&e<=129003||e===129008||e>=129292&&e<=129338||e>=129340&&e<=129349||e>=129351&&e<=129535||e>=129648&&e<=129660||e>=129664&&e<=129673||e>=129679&&e<=129734||e>=129742&&e<=129756||e>=129759&&e<=129769||e>=129776&&e<=129784||e>=131072&&e<=196605||e>=196608&&e<=262141}function v_(e){if(!e)return 0;if(!fx.test(e))return e.length;e=e.replace(ux(),` `);let t=0;for(let n of e){let e=n.codePointAt(0);e<=31||e>=127&&e<=159||e>=768&&e<=879||(t+=dx(e)?1:2)}return t}function y_(e,t){if(typeof e==`string`)return t(e);let n=new Map;return r(e);function r(e){if(n.has(e))return n.get(e);let t=i(e);return n.set(e,t),t}function i(e){switch(Hb(e)){case Db:return t(e.map(r));case Nb:return t({...e,parts:e.parts.map(r)});case Pb:return t({...e,breakContents:r(e.breakContents),flatContents:r(e.flatContents)});case Mb:{let{expandedStates:n,contents:i}=e;return n?(n=n.map(r),i=n[0]):i=r(i),t({...e,contents:i,expandedStates:n})}case Ab:case kb:case Fb:case zb:case Ib:return t({...e,contents:r(e.contents)});case Eb:case Ob:case jb:case Lb:case Rb:case Bb:return t(e);default:throw new Kb(e)}}}function b_(e,t,n){let r=n,i=!1;function a(e){if(i)return!1;let n=t(e);n!==void 0&&(i=!0,r=n)}return G(a,`i`),Jb(e,a),r}function x_(e){if(e.type===Mb&&e.break||e.type===Rb&&e.hard||e.type===Bb)return!0}function S_(e){return b_(e,x_,!1)}function C_(e){if(e.length>0){let t=lx(!1,e,-1);!t.expandedStates&&!t.break&&(t.break=`propagated`)}return null}function w_(e){let t=new Set,n=[];function r(e){if(e.type===Bb&&C_(n),e.type===Mb){if(n.push(e),t.has(e))return!1;t.add(e)}}G(r,`n`);function i(e){e.type===Mb&&n.pop().break&&C_(n)}G(i,`u`),Jb(e,r,i,!0)}function T_(e){return e.type===Rb&&!e.hard?e.soft?``:` `:e.type===Pb?e.flatContents:e}function E_(e){return y_(e,T_)}function D_(e){for(e=[...e];e.length>=2&&lx(!1,e,-2).type===Rb&&lx(!1,e,-1).type===Bb;)e.length-=2;if(e.length>0){let t=O_(lx(!1,e,-1));e[e.length-1]=t}return e}function O_(e){switch(Hb(e)){case kb:case Fb:case Mb:case Ib:case zb:{let t=O_(e.contents);return{...e,contents:t}}case Pb:return{...e,breakContents:O_(e.breakContents),flatContents:O_(e.flatContents)};case Nb:return{...e,parts:D_(e.parts)};case Db:return D_(e);case Eb:return e.replace(/[\n\r]*$/u,``);case Ab:case Ob:case jb:case Lb:case Rb:case Bb:break;default:throw new Kb(e)}return e}function k_(e){return O_(j_(e))}function A_(e){switch(Hb(e)){case Nb:if(e.parts.every(e=>e===``))return``;break;case Mb:if(!e.contents&&!e.id&&!e.break&&!e.expandedStates)return``;if(e.contents.type===Mb&&e.contents.id===e.id&&e.contents.break===e.break&&e.contents.expandedStates===e.expandedStates)return e.contents;break;case Ab:case kb:case Fb:case Ib:if(!e.contents)return``;break;case Pb:if(!e.flatContents&&!e.breakContents)return``;break;case Db:{let t=[];for(let n of e){if(!n)continue;let[e,...r]=Array.isArray(n)?n:[n];typeof e==`string`&&typeof lx(!1,t,-1)==`string`?t[t.length-1]+=e:t.push(e),t.push(...r)}return t.length===0?``:t.length===1?t[0]:t}case Eb:case Ob:case jb:case Lb:case Rb:case zb:case Bb:break;default:throw new Kb(e)}return e}function j_(e){return y_(e,e=>A_(e))}function M_(e,t=ox){return y_(e,e=>typeof e==`string`?d_(t,e.split(`
253
+ `)):e)}function N_(e){if(e.type===Rb)return!0}function P_(e){return b_(e,N_,!1)}function F_(e,t){return e.type===zb?{...e,contents:t(e.contents)}:t(e)}function I_(){return{value:``,length:0,queue:[]}}function L_(e,t){return z_(e,{type:`indent`},t)}function R_(e,t,n){return t===-1/0?e.root||I_():t<0?z_(e,{type:`dedent`},n):t?t.type===`root`?{...e,root:e}:z_(e,{type:typeof t==`string`?`stringAlign`:`numberAlign`,n:t},n):e}function z_(e,t,n){let r=t.type===`dedent`?e.queue.slice(0,-1):[...e.queue,t],i=``,a=0,o=0,s=0;for(let e of r)switch(e.type){case`indent`:u(),n.useTabs?c(1):l(n.tabWidth);break;case`stringAlign`:u(),i+=e.n,a+=e.n.length;break;case`numberAlign`:o+=1,s+=e.n;break;default:throw Error(`Unexpected type '${e.type}'`)}return f(),{...e,value:i,length:a,queue:r};function c(e){i+=` `.repeat(e),a+=n.tabWidth*e}function l(e){i+=` `.repeat(e),a+=e}function u(){n.useTabs?d():f()}function d(){o>0&&c(o),p()}function f(){s>0&&l(s),p()}function p(){o=0,s=0}}function B_(e){let t=0,n=0,r=e.length;e:for(;r--;){let i=e[r];if(i===gx){n++;continue}for(let n=i.length-1;n>=0;n--){let a=i[n];if(a===` `||a===` `)t++;else{e[r]=i.slice(0,n+1);break e}}}if(t>0||n>0)for(e.length=r+1;n-- >0;)e.push(gx);return t}function V_(e,t,n,r,i,a){if(n===1/0)return!0;let o=t.length,s=[e],c=[];for(;n>=0;){if(s.length===0){if(o===0)return!0;s.push(t[--o]);continue}let{mode:e,doc:l}=s.pop(),u=Hb(l);switch(u){case Eb:c.push(l),n-=px(l);break;case Db:case Nb:{let t=u===Db?l:l.parts,n=l[_x]??0;for(let r=t.length-1;r>=n;r--)s.push({mode:e,doc:t[r]});break}case kb:case Ab:case Fb:case zb:s.push({mode:e,doc:l.contents});break;case jb:n+=B_(c);break;case Mb:{if(a&&l.break)return!1;let t=l.break?mx:e,n=l.expandedStates&&t===mx?lx(!1,l.expandedStates,-1):l.contents;s.push({mode:t,doc:n});break}case Pb:{let t=(l.groupId?i[l.groupId]||hx:e)===mx?l.breakContents:l.flatContents;t&&s.push({mode:e,doc:t});break}case Rb:if(e===mx||l.hard)return!0;l.soft||(c.push(` `),n--);break;case Ib:r=!0;break;case Lb:if(r)return!1;break}}return!1}function H_(e,t){let n={},r=t.printWidth,i=Jg(t.endOfLine),a=0,o=[{ind:I_(),mode:mx,doc:e}],s=[],c=!1,l=[],u=0;for(w_(e);o.length>0;){let{ind:e,mode:d,doc:f}=o.pop();switch(Hb(f)){case Eb:{let e=i===`
254
+ `?f:gb(!1,f,`
255
+ `,i);s.push(e),o.length>0&&(a+=px(e));break}case Db:for(let t=f.length-1;t>=0;t--)o.push({ind:e,mode:d,doc:f[t]});break;case Ob:if(u>=2)throw Error(`There are too many 'cursor' in doc.`);s.push(gx),u++;break;case kb:o.push({ind:L_(e,t),mode:d,doc:f.contents});break;case Ab:o.push({ind:R_(e,f.n,t),mode:d,doc:f.contents});break;case jb:a-=B_(s);break;case Mb:switch(d){case hx:if(!c){o.push({ind:e,mode:f.break?mx:hx,doc:f.contents});break}case mx:{c=!1;let t={ind:e,mode:hx,doc:f.contents},i=r-a,s=l.length>0;if(!f.break&&V_(t,o,i,s,n))o.push(t);else if(f.expandedStates){let t=lx(!1,f.expandedStates,-1);if(f.break){o.push({ind:e,mode:mx,doc:t});break}else for(let r=1;r<f.expandedStates.length+1;r++)if(r>=f.expandedStates.length){o.push({ind:e,mode:mx,doc:t});break}else{let t=f.expandedStates[r],a={ind:e,mode:hx,doc:t};if(V_(a,o,i,s,n)){o.push(a);break}}}else o.push({ind:e,mode:mx,doc:f.contents});break}}f.id&&(n[f.id]=lx(!1,o,-1).mode);break;case Nb:{let t=r-a,i=f[_x]??0,{parts:s}=f,c=s.length-i;if(c===0)break;let u=s[i+0],p=s[i+1],m={ind:e,mode:hx,doc:u},h={ind:e,mode:mx,doc:u},g=V_(m,[],t,l.length>0,n,!0);if(c===1){g?o.push(m):o.push(h);break}let _={ind:e,mode:hx,doc:p},v={ind:e,mode:mx,doc:p};if(c===2){g?o.push(_,m):o.push(v,h);break}let y=s[i+2],b={ind:e,mode:d,doc:{...f,[_x]:i+2}};V_({ind:e,mode:hx,doc:[u,p,y]},[],t,l.length>0,n,!0)?o.push(b,_,m):g?o.push(b,v,m):o.push(b,v,h);break}case Pb:case Fb:{let t=f.groupId?n[f.groupId]:d;if(t===mx){let t=f.type===Pb?f.breakContents:f.negate?f.contents:e_(f.contents);t&&o.push({ind:e,mode:d,doc:t})}if(t===hx){let t=f.type===Pb?f.flatContents:f.negate?e_(f.contents):f.contents;t&&o.push({ind:e,mode:d,doc:t})}break}case Ib:l.push({ind:e,mode:d,doc:f.contents});break;case Lb:l.length>0&&o.push({ind:e,mode:d,doc:tx});break;case Rb:switch(d){case hx:if(f.hard)c=!0;else{f.soft||(s.push(` `),a+=1);break}case mx:if(l.length>0){o.push({ind:e,mode:d,doc:f},...l.reverse()),l.length=0;break}f.literal?e.root?(s.push(i,e.root.value),a=e.root.length):(s.push(i),a=0):(a-=B_(s),s.push(i+e.value),a=e.length);break}break;case zb:o.push({ind:e,mode:d,doc:f.contents});break;case Bb:break;default:throw new Kb(f)}o.length===0&&l.length>0&&(o.push(...l.reverse()),l.length=0)}let d=s.indexOf(gx);if(d!==-1){let e=s.indexOf(gx,d+1);if(e===-1)return{formatted:s.filter(e=>e!==gx).join(``)};let t=s.slice(0,d).join(``),n=s.slice(d+1,e).join(``),r=s.slice(e+1).join(``);return{formatted:t+n+r,cursorNodeStart:t.length,cursorNodeText:n}}return{formatted:s.join(``)}}function U_(e,t,n=0){let r=0;for(let i=n;i<e.length;++i)e[i]===` `?r=r+t-r%t:r++;return r}function W_(e){return typeof e==`object`&&!!e}function*G_(e,t){let{getVisitorKeys:n,filter:r=G(()=>!0,`n`)}=t,i=G(e=>Dx(e)&&r(e),`u`);for(let t of n(e)){let n=e[t];if(Array.isArray(n))for(let e of n)i(e)&&(yield e);else i(n)&&(yield n)}}function*K_(e,t){let n=[e];for(let e=0;e<n.length;e++){let r=n[e];for(let e of G_(r,t))yield e,n.push(e)}}function q_(e,t){return G_(e,t).next().done}function J_(e){return(t,n,r)=>{let i=!!(r!=null&&r.backwards);if(n===!1)return!1;let{length:a}=t,o=n;for(;o>=0&&o<a;){let n=t.charAt(o);if(e instanceof RegExp){if(!e.test(n))return o}else if(!e.includes(n))return o;i?o--:o++}return o===-1||o===a?o:!1}}function Y_(e,t,n){let r=!!(n!=null&&n.backwards);if(t===!1)return!1;let i=e.charAt(t);if(r){if(e.charAt(t-1)===`\r`&&i===`
256
+ `)return t-2;if(i===`
257
+ `||i===`\r`||i===`\u2028`||i===`\u2029`)return t-1}else{if(i===`\r`&&e.charAt(t+1)===`
258
+ `)return t+2;if(i===`
259
+ `||i===`\r`||i===`\u2028`||i===`\u2029`)return t+1}return t}function X_(e,t,n={}){let r=kx(e,n.backwards?t-1:t,n);return r!==Mx(e,r,n)}function Z_(e){return Array.isArray(e)&&e.length>0}function Q_(e){return e?t=>e(t,Fx):Ix}function $_(e){let t=e.type||e.kind||`(unknown type)`,n=String(e.name||e.id&&(typeof e.id==`object`?e.id.name:e.id)||e.key&&(typeof e.key==`object`?e.key.name:e.key)||e.value&&(typeof e.value==`object`?``:String(e.value))||e.operator||``);return n.length>20&&(n=n.slice(0,19)+`…`),t+(n?` `+n:``)}function ev(e,t){(e.comments??=[]).push(t),t.printed=!1,t.nodeDescription=$_(e)}function tv(e,t){t.leading=!0,t.trailing=!1,ev(e,t)}function nv(e,t,n){t.leading=!1,t.trailing=!1,n&&(t.marker=n),ev(e,t)}function rv(e,t){t.leading=!1,t.trailing=!0,ev(e,t)}function iv(e,t){if(Rx.has(e))return Rx.get(e);let{printer:{getCommentChildNodes:n,canAttachComment:r,getVisitorKeys:i},locStart:a,locEnd:o}=t;if(!r)return[];let s=(n?.(e,t)??[...G_(e,{getVisitorKeys:Lx(i)})]).flatMap(e=>r(e)?[e]:iv(e,t));return s.sort((e,t)=>a(e)-a(t)||o(e)-o(t)),Rx.set(e,s),s}function av(e,t,n,r){let{locStart:i,locEnd:a}=n,o=i(t),s=a(t),c=iv(e,n),l,u,d=0,f=c.length;for(;d<f;){let e=d+f>>1,r=c[e],p=i(r),m=a(r);if(p<=o&&s<=m)return av(r,t,n,r);if(m<=o){l=r,d=e+1;continue}if(s<=p){u=r,f=e;continue}throw Error(`Comment location overlaps with node location`)}if(r?.type===`TemplateLiteral`){let{quasis:e}=r,i=uv(e,t,n);l&&uv(e,l,n)!==i&&(l=null),u&&uv(e,u,n)!==i&&(u=null)}return{enclosingNode:r,precedingNode:l,followingNode:u}}function ov(e,t){let{comments:n}=e;if(delete e.comments,!Px(n)||!t.printer.canAttachComment)return;let r=[],{locStart:i,locEnd:a,printer:{experimentalFeatures:{avoidAstMutation:o=!1}={},handleComments:s={}},originalText:c}=t,{ownLine:l=zx,endOfLine:u=zx,remaining:d=zx}=s,f=n.map((r,i)=>({...av(e,r,t),comment:r,text:c,options:t,ast:e,isLastComment:n.length-1===i}));for(let[e,t]of f.entries()){let{comment:n,precedingNode:s,enclosingNode:c,followingNode:p,text:m,options:h,ast:g,isLastComment:_}=t;if(h.parser===`json`||h.parser===`json5`||h.parser===`jsonc`||h.parser===`__js_expression`||h.parser===`__ts_expression`||h.parser===`__vue_expression`||h.parser===`__vue_ts_expression`){if(i(n)-i(g)<=0){tv(g,n);continue}if(a(n)-a(g)>=0){rv(g,n);continue}}let v;if(o?v=[t]:(n.enclosingNode=c,n.precedingNode=s,n.followingNode=p,v=[n,m,h,g,_]),sv(m,h,f,e))n.placement=`ownLine`,l(...v)||(p?tv(p,n):s?rv(s,n):nv(c||g,n));else if(cv(m,h,f,e))n.placement=`endOfLine`,u(...v)||(s?rv(s,n):p?tv(p,n):nv(c||g,n));else if(n.placement=`remaining`,!d(...v))if(s&&p){let e=r.length;e>0&&r[e-1].followingNode!==p&&lv(r,h),r.push(t)}else s?rv(s,n):p?tv(p,n):nv(c||g,n)}if(lv(r,t),!o)for(let e of n)delete e.precedingNode,delete e.enclosingNode,delete e.followingNode}function sv(e,t,n,r){let{comment:i,precedingNode:a}=n[r],{locStart:o,locEnd:s}=t,c=o(i);if(a)for(let t=r-1;t>=0;t--){let{comment:r,precedingNode:i}=n[t];if(i!==a||!Bx(e.slice(s(r),c)))break;c=o(r)}return Nx(e,c,{backwards:!0})}function cv(e,t,n,r){let{comment:i,followingNode:a}=n[r],{locStart:o,locEnd:s}=t,c=s(i);if(a)for(let t=r+1;t<n.length;t++){let{comment:r,followingNode:i}=n[t];if(i!==a||!Bx(e.slice(c,o(r))))break;c=s(r)}return Nx(e,c)}function lv(e,t){var n;let r=e.length;if(r===0)return;let{precedingNode:i,followingNode:a}=e[0],o=t.locStart(a),s;for(s=r;s>0;--s){let{comment:r,precedingNode:c,followingNode:l}=e[s-1];Ex.strictEqual(c,i),Ex.strictEqual(l,a);let u=t.originalText.slice(t.locEnd(r),o);if((n=t.printer).isGap?.call(n,u,t)??/^[\s(]*$/u.test(u))o=t.locStart(r);else break}for(let[t,{comment:n}]of e.entries())t<s?rv(i,n):tv(a,n);for(let e of[i,a])e.comments&&e.comments.length>1&&e.comments.sort((e,n)=>t.locStart(e)-t.locStart(n));e.length=0}function uv(e,t,n){let r=n.locStart(t)-1;for(let t=1;t<e.length;++t)if(r<n.locStart(e[t]))return t-1;return 0}function dv(e,t){let n=t-1;n=kx(e,n,{backwards:!0}),n=Mx(e,n,{backwards:!0}),n=kx(e,n,{backwards:!0});let r=Mx(e,n,{backwards:!0});return n!==r}function fv(e,t){let n=e.node;return n.printed=!0,t.printer.printComment(e,t)}function pv(e,t){var n;let r=e.node,i=[fv(e,t)],{printer:a,originalText:o,locStart:s,locEnd:c}=t;if((n=a.isBlockComment)!=null&&n.call(a,r)){let e=Nx(o,c(r))?Nx(o,s(r),{backwards:!0})?ax:rx:` `;i.push(e)}else i.push(ax);let l=Mx(o,kx(o,c(r)));return l!==!1&&Nx(o,l)&&i.push(ax),i}function mv(e,t,n){let r=e.node,i=fv(e,t),{printer:a,originalText:o,locStart:s}=t,c=a.isBlockComment?.call(a,r);if(n!=null&&n.hasLineSuffix&&!(n!=null&&n.isBlock)||Nx(o,s(r),{backwards:!0})){let e=Vx(o,s(r));return{doc:u_([ax,e?ax:``,i]),isBlock:c,hasLineSuffix:!0}}return!c||n!=null&&n.hasLineSuffix?{doc:[u_([` `,i]),$b],isBlock:c,hasLineSuffix:!0}:{doc:[` `,i],isBlock:c,hasLineSuffix:!1}}function hv(e,t){let n=e.node;if(!n)return{};let r=t[Symbol.for(`printedComments`)];if((n.comments||[]).filter(e=>!r.has(e)).length===0)return{leading:``,trailing:``};let i=[],a=[],o;return e.each(()=>{let n=e.node;if(r!=null&&r.has(n))return;let{leading:s,trailing:c}=n;s?i.push(pv(e,t)):c&&(o=mv(e,t,o),a.push(o.doc))},`comments`),{leading:i,trailing:a}}function gv(e,t,n){let{leading:r,trailing:i}=hv(e,n);return!r&&!i?t:F_(t,e=>[r,e,i])}function _v(e){let{[Symbol.for(`comments`)]:t,[Symbol.for(`printedComments`)]:n}=e;for(let e of t){if(!e.printed&&!n.has(e))throw Error(`Comment "`+e.value.trim()+`" was not printed. Please report this error!`);delete e.printed}}function vv(e){return()=>{}}function yv({plugins:e=[],showDeprecated:t=!1}={}){let n=e.flatMap(e=>e.languages??[]),r=[];for(let i of xv(Object.assign({},...e.map(({options:e})=>e),qx)))!t&&i.deprecated||(Array.isArray(i.choices)&&(t||(i.choices=i.choices.filter(e=>!e.deprecated)),i.name===`parser`&&(i.choices=[...i.choices,...bv(i.choices,n,e)])),i.pluginDefaults=Object.fromEntries(e.filter(e=>e.defaultOptions?.[i.name]!==void 0).map(e=>[e.name,e.defaultOptions[i.name]])),r.push(i));return{languages:n,options:r}}function*bv(e,t,n){let r=new Set(e.map(e=>e.value));for(let e of t)if(e.parsers){for(let t of e.parsers)if(!r.has(t)){r.add(t);let i=n.find(e=>e.parsers&&Object.prototype.hasOwnProperty.call(e.parsers,t)),a=e.name;i!=null&&i.name&&(a+=` (plugin: ${i.name})`),yield{value:t,description:a}}}}function xv(e){let t=[];for(let[n,r]of Object.entries(e)){let e={name:n,...r};Array.isArray(e.default)&&(e.default=lx(!1,e.default,-1).value),t.push(e)}return t}function Sv(e,t){if(!t)return;let n=Jx(t).toLowerCase();return e.find(({filenames:e})=>e?.some(e=>e.toLowerCase()===n))??e.find(({extensions:e})=>e?.some(e=>n.endsWith(e)))}function Cv(e,t){if(t)return e.find(({name:e})=>e.toLowerCase()===t)??e.find(({aliases:e})=>e?.includes(t))??e.find(({extensions:e})=>e?.includes(`.${t}`))}function wv(e,t){let n=e.plugins.flatMap(e=>e.languages??[]);return(Cv(n,t.language)??Sv(n,t.physicalFile)??Sv(n,t.file)??(t.physicalFile,void 0))?.parsers[0]}function Tv(e,t,n,r){return[`Invalid ${$x.default.red(r.key(e))} value.`,`Expected ${$x.default.blue(n)},`,`but received ${t===eS?$x.default.gray(`nothing`):$x.default.red(r.value(t))}.`].join(` `)}function Ev({text:e,list:t},n){let r=[];return e&&r.push(`- ${$x.default.blue(e)}`),t&&r.push([`- ${$x.default.blue(t.title)}:`].concat(t.values.map(e=>Ev(e,n-nS.length).replace(/^|\n/g,`$&${nS}`))).join(`
260
+ `)),Dv(r,n)}function Dv(e,t){if(e.length===1)return e[0];let[n,r]=e,[i,a]=e.map(e=>e.split(`
261
+ `,1)[0].length);return i>t&&i>a?r:n}function Ov(e,t){if(e===t)return 0;let n=e;e.length>t.length&&(e=t,t=n);let r=e.length,i=t.length;for(;r>0&&e.charCodeAt(~-r)===t.charCodeAt(~-i);)r--,i--;let a=0;for(;a<r&&e.charCodeAt(a)===t.charCodeAt(a);)a++;if(r-=a,i-=a,r===0)return i;let o,s,c,l,u=0,d=0;for(;u<r;)oS[u]=e.charCodeAt(a+u),aS[u]=++u;for(;d<i;)for(o=t.charCodeAt(a+d),c=d++,s=d,u=0;u<r;u++)l=o===oS[u]?c:c+1,c=aS[u],s=aS[u]=c>s?l>s?s+1:l:l>c?c+1:l;return s}function kv(e,t){let n=new e(t),r=Object.create(n);for(let e of cS)e in t&&(r[e]=Av(t[e],n,uS.prototype[e].length));return r}function Av(e,t,n){return typeof e==`function`?(...r)=>e(...r.slice(0,n-1),t,...r.slice(n-1)):()=>e}function jv({from:e,to:t}){return{from:[e],to:t}}function Mv(e,t){let n=Object.create(null);for(let r of e){let e=r[t];if(n[e])throw Error(`Duplicate ${t} ${JSON.stringify(e)}`);n[e]=r}return n}function Nv(e,t){let n=new Map;for(let r of e){let e=r[t];if(n.has(e))throw Error(`Duplicate ${t} ${JSON.stringify(e)}`);n.set(e,r)}return n}function Pv(){let e=Object.create(null);return t=>{let n=JSON.stringify(t);return e[n]?!0:(e[n]=!0,!1)}}function Fv(e,t){let n=[],r=[];for(let i of e)t(i)?n.push(i):r.push(i);return[n,r]}function Iv(e){return e===Math.floor(e)}function Lv(e,t){if(e===t)return 0;let n=typeof e,r=typeof t,i=[`undefined`,`object`,`boolean`,`number`,`string`];return n===r?n===`string`?e.localeCompare(t):Number(e)-Number(t):i.indexOf(n)-i.indexOf(r)}function Rv(e){return(...t)=>{let n=e(...t);return typeof n==`string`?Error(n):n}}function zv(e){return e===void 0?{}:e}function Bv(e){if(typeof e==`string`)return{text:e};let{text:t,list:n}=e;return Kv((t||n)!==void 0,"Unexpected `expected` result, there should be at least one field."),n?{text:t,list:{title:n.title,values:n.values.map(Bv)}}:{text:t}}function Vv(e,t){return e===!0?!0:e===!1?{value:t}:e}function Hv(e,t,n=!1){return e===!1?!1:e===!0?n?!0:[{value:t}]:`value`in e?[e]:e.length===0?!1:e}function Uv(e,t){return typeof e==`string`||`key`in e?{from:t,to:e}:`from`in e?{from:e.from,to:e.to}:{from:t,to:e.to}}function Wv(e,t){return e===void 0?[]:Array.isArray(e)?e.map(e=>Uv(e,t)):[Uv(e,t)]}function Gv(e,t){let n=Wv(typeof e==`object`&&`redirect`in e?e.redirect:e,t);return n.length===0?{remain:t,redirect:n}:typeof e==`object`&&`remain`in e?{remain:e.remain,redirect:n}:{redirect:n}}function Kv(e,t){if(!e)throw Error(t)}function qv(e,t,{logger:n=!1,isCLI:r=!1,passThrough:i=!1,FlagSchema:a,descriptor:o}={}){if(r){if(!a)throw Error(`'FlagSchema' option is required.`);if(!o)throw Error(`'descriptor' option is required.`)}else o=Xx;let s=i?Array.isArray(i)?(e,t)=>i.includes(e)?{[e]:t}:void 0:(e,t)=>({[e]:t}):(e,t,n)=>{let{_:r,...i}=n.schemas;return sS(e,t,{...n,schemas:i})},c=Jv(t,{isCLI:r,FlagSchema:a}),l=new MS(c,{logger:n,unknown:s,descriptor:o}),u=n!==!1;u&&NS&&(l._hasDeprecationWarned=NS);let d=l.normalize(e);return u&&(NS=l._hasDeprecationWarned),d}function Jv(e,{isCLI:t,FlagSchema:n}){let r=[];t&&r.push(mS.create({name:`_`}));for(let i of e)r.push(Yv(i,{isCLI:t,optionInfos:e,FlagSchema:n})),i.alias&&t&&r.push(fS.create({name:i.alias,sourceName:i.name}));return r}function Yv(e,{isCLI:t,optionInfos:n,FlagSchema:r}){let{name:i}=e,a={name:i},o,s={};switch(e.type){case`int`:o=wS,t&&(a.preprocess=Number);break;case`string`:o=ES;break;case`choice`:o=bS,a.choices=e.choices.map(t=>t!=null&&t.redirect?{...t,redirect:{to:{key:e.name,value:t.redirect}}}:t);break;case`boolean`:o=vS;break;case`flag`:o=r,a.flags=n.flatMap(e=>[e.alias,e.description&&e.name,e.oppositeDescription&&`no-${e.name}`].filter(Boolean));break;case`path`:o=ES;break;default:throw Error(`Unexpected type ${e.type}`)}if(e.exception?a.validate=(t,n,r)=>e.exception(t)||n.validate(t,r):a.validate=(e,t,n)=>e===void 0||t.validate(e,n),e.redirect&&(s.redirect=t=>t?{to:typeof e.redirect==`string`?e.redirect:{key:e.redirect.option,value:e.redirect.value}}:void 0),e.deprecated&&(s.deprecated=!0),t&&!e.array){let e=a.preprocess||(e=>e);a.preprocess=(t,n,r)=>n.preprocess(e(Array.isArray(t)?lx(!1,t,-1):t),r)}return e.array?gS.create({...t?{preprocess:G(e=>Array.isArray(e)?e:[e],`preprocess`)}:{},...s,valueSchema:o.create(a)}):o.create({...a,...s})}function Xv(e,t){if(!t)throw Error(`parserName is required.`);let n=IS(!1,e,e=>e.parsers&&Object.prototype.hasOwnProperty.call(e.parsers,t));if(n)return n;let r=`Couldn't resolve parser "${t}".`;throw r+=` Plugins must be explicitly added to the standalone bundle.`,new Wx(r)}function Zv(e,t){if(!t)throw Error(`astFormat is required.`);let n=IS(!1,e,e=>e.printers&&Object.prototype.hasOwnProperty.call(e.printers,t));if(n)return n;let r=`Couldn't find plugin for AST format "${t}".`;throw r+=` Plugins must be explicitly added to the standalone bundle.`,new Wx(r)}function Qv({plugins:e,parser:t}){return $v(Xv(e,t),t)}function $v(e,t){let n=e.parsers[t];return typeof n==`function`?n():n}function ey(e,t){let n=e.printers[t];return typeof n==`function`?n():n}async function ty(e,t={}){var n;let r={...e};if(!r.parser)if(r.filepath){if(r.parser=Yx(r,{physicalFile:r.filepath}),!r.parser)throw new Kx(`No parser could be inferred for file "${r.filepath}".`)}else throw new Kx(`No parser and no file path given, couldn't infer a parser.`);let i=yv({plugins:e.plugins,showDeprecated:!0}).options,a={...LS,...Object.fromEntries(i.filter(e=>e.default!==void 0).map(e=>[e.name,e.default]))},o=Xv(r.plugins,r.parser),s=await $v(o,r.parser);r.astFormat=s.astFormat,r.locEnd=s.locEnd,r.locStart=s.locStart;let c=(n=o.printers)!=null&&n[s.astFormat]?o:Zv(r.plugins,s.astFormat);r.printer=await ey(c,s.astFormat);let l=c.defaultOptions?Object.fromEntries(Object.entries(c.defaultOptions).filter(([,e])=>e!==void 0)):{},u={...a,...l};for(let[e,t]of Object.entries(u))(r[e]===null||r[e]===void 0)&&(r[e]=t);return r.parser===`json`&&(r.trailingComma=`none`),PS(r,i,{passThrough:Object.keys(LS),...t})}async function ny(e,t){let n=await Qv(t),r=n.preprocess?n.preprocess(e,t):e;t.originalText=r;let i;try{i=await n.parse(r,t,t)}catch(t){ry(t,e)}return{text:r,ast:i}}function ry(e,t){let{loc:n}=e;if(n){let r=(0,zS.codeFrameColumns)(t,n,{highlightCode:!0});throw e.message+=`
262
+ `+r,e.codeFrame=r,e}throw e}async function iy(e,t,n,r,i){let{embeddedLanguageFormatting:a,printer:{embed:o,hasPrettierIgnore:s=G(()=>!1,`s`),getVisitorKeys:c}}=n;if(!o||a!==`auto`)return;if(o.length>2)throw Error(`printer.embed has too many parameters. The API changed in Prettier v3. Please update your plugin. See https://prettier.io/docs/en/plugins.html#optional-embed`);let l=Lx(o.getVisitorKeys??c),u=[];p();let d=e.stack;for(let{print:r,node:a,pathStack:o}of u)try{e.stack=o;let s=await r(f,t,e,n);s&&i.set(a,s)}catch(e){if(globalThis.PRETTIER_DEBUG)throw e}e.stack=d;function f(e,t){return ay(e,t,n,r)}G(f,`f`);function p(){let{node:t}=e;if(typeof t!=`object`||!t||s(e))return;for(let n of l(t))Array.isArray(t[n])?e.each(p,n):e.call(p,n);let r=o(e,n);if(r){if(typeof r==`function`){u.push({print:r,node:t,pathStack:[...e.stack]});return}i.set(t,r)}}G(p,`d`)}async function ay(e,t,n,r){let i=await RS({...n,...t,parentParser:n.parser,originalText:e},{passThrough:!0}),{ast:a}=await BS(e,i);return k_(await r(a,i))}function oy(e,t){let{originalText:n,[Symbol.for(`comments`)]:r,locStart:i,locEnd:a,[Symbol.for(`printedComments`)]:o}=t,{node:s}=e,c=i(s),l=a(s);for(let e of r)i(e)>=c&&a(e)<=l&&o.add(e);return n.slice(c,l)}async function sy(e,t){({ast:e}=await ly(e,t));let n=new Map,r=new wx(e),i=Hx(t),a=new Map;await iy(r,s,t,sy,a);let o=await cy(r,t,s,void 0,a);if(_v(t),t.nodeAfterCursor&&!t.nodeBeforeCursor)return[sx,o];if(t.nodeBeforeCursor&&!t.nodeAfterCursor)return[o,sx];return o;function s(e,t){return e===void 0||e===r?c(t):Array.isArray(e)?r.call(()=>c(t),...e):r.call(()=>c(t),e)}function c(e){i(r);let o=r.node;if(o==null)return``;let c=o&&typeof o==`object`&&e===void 0;if(c&&n.has(o))return n.get(o);let l=cy(r,t,s,e,a);return c&&n.set(o,l),l}}function cy(e,t,n,r,i){var a;let{node:o}=e,{printer:s}=t,c;switch(c=(a=s.hasPrettierIgnore)!=null&&a.call(s,e)?VS(e,t):i.has(o)?i.get(o):s.print(e,t,n,r),o){case t.cursorNode:c=F_(c,e=>[sx,e,sx]);break;case t.nodeBeforeCursor:c=F_(c,e=>[e,sx]);break;case t.nodeAfterCursor:c=F_(c,e=>[sx,e]);break}return s.printComment&&(!s.willPrintOwnComments||!s.willPrintOwnComments(e,t))&&(c=gv(e,c,t)),c}async function ly(e,t){let n=e.comments??[];t[Symbol.for(`comments`)]=n,t[Symbol.for(`tokens`)]=e.tokens??[],t[Symbol.for(`printedComments`)]=new Set,ov(e,t);let{printer:{preprocess:r}}=t;return e=r?await r(e,t):e,{ast:e,comments:n}}function uy(e,t){let{cursorOffset:n,locStart:r,locEnd:i}=t,a=Lx(t.printer.getVisitorKeys),o=G(e=>r(e)<=n&&i(e)>=n,`o`),s=e,c=[e];for(let t of K_(e,{getVisitorKeys:a,filter:o}))c.push(t),s=t;if(q_(s,{getVisitorKeys:a}))return{cursorNode:s};let l,u,d=-1,f=1/0;for(;c.length>0&&(l===void 0||u===void 0);){s=c.pop();let e=l!==void 0,t=u!==void 0;for(let o of G_(s,{getVisitorKeys:a})){if(!e){let e=i(o);e<=n&&e>d&&(l=o,d=e)}if(!t){let e=r(o);e>=n&&e<f&&(u=o,f=e)}}}return{nodeBeforeCursor:l,nodeAfterCursor:u}}function dy(e,t){let{printer:{massageAstNode:n,getVisitorKeys:r}}=t;if(!n)return e;let i=Lx(r),a=n.ignoredProperties??new Set;return o(e);function o(e,t){if(!(typeof e==`object`&&e))return e;if(Array.isArray(e))return e.map(e=>o(e,t)).filter(Boolean);let r={},s=new Set(i(e));for(let t in e)!Object.prototype.hasOwnProperty.call(e,t)||a.has(t)||(s.has(t)?r[t]=o(e[t],e):r[t]=e[t]);let c=n(e,r,t);if(c!==null)return c??r}}function fy(e,t){let n=[e.node,...e.parentNodes],r=new Set([t.node,...t.parentNodes]);return n.find(e=>qS.has(e.type)&&r.has(e))}function py(e){let t=GS(!1,e,e=>e.type!==`Program`&&e.type!==`File`);return t===-1?e:e.slice(0,t+1)}function my(e,t,{locStart:n,locEnd:r}){let i=e.node,a=t.node;if(i===a)return{startNode:i,endNode:a};let o=n(e.node);for(let e of py(t.parentNodes))if(n(e)>=o)a=e;else break;let s=r(t.node);for(let t of py(e.parentNodes)){if(r(t)<=s)i=t;else break;if(i===a)break}return{startNode:i,endNode:a}}function hy(e,t,n,r,i=[],a){let{locStart:o,locEnd:s}=n,c=o(e),l=s(e);if(!(t>l||t<c||a===`rangeEnd`&&t===c||a===`rangeStart`&&t===l)){for(let o of iv(e,n)){let s=hy(o,t,n,r,[e,...i],a);if(s)return s}if(!r||r(e,i[0]))return{node:e,parentNodes:i}}}function gy(e,t){return t!==`DeclareExportDeclaration`&&e!==`TypeParameterDeclaration`&&(e===`Directive`||e===`TypeAlias`||e===`TSExportAssignment`||e.startsWith(`Declare`)||e.startsWith(`TSDeclare`)||e.endsWith(`Statement`)||e.endsWith(`Declaration`))}function _y(e,t,n){if(!t)return!1;switch(e.parser){case`flow`:case`babel`:case`babel-flow`:case`babel-ts`:case`typescript`:case`acorn`:case`espree`:case`meriyah`:case`__babel_estree`:return gy(t.type,n?.type);case`json`:case`json5`:case`jsonc`:case`json-stringify`:return qS.has(t.type);case`graphql`:return JS.has(t.kind);case`vue`:return t.tag!==`root`}return!1}function vy(e,t,n){let{rangeStart:r,rangeEnd:i,locStart:a,locEnd:o}=t;Ex.ok(i>r);let s=e.slice(r,i).search(/\S/u),c=s===-1;if(!c)for(r+=s;i>r&&!/\S/u.test(e[i-1]);--i);let l=hy(n,r,t,(e,n)=>_y(t,e,n),[],`rangeStart`),u=c?l:hy(n,i,t,e=>_y(t,e),[],`rangeEnd`);if(!l||!u)return{rangeStart:0,rangeEnd:0};let d,f;if(KS(t)){let e=fy(l,u);d=e,f=e}else ({startNode:d,endNode:f}=my(l,u,t));return{rangeStart:Math.min(a(d),a(f)),rangeEnd:Math.max(o(d),o(f))}}async function yy(e,t,n=0){if(!e||e.trim().length===0)return{formatted:``,cursorOffset:-1,comments:[]};let{ast:r,text:i}=await BS(e,t);t.cursorOffset>=0&&(t={...t,...HS(r,t)});let a=await sy(r,t,n);n>0&&(a=f_([ax,a],n,t.tabWidth));let o=H_(a,t);if(n>0){let e=o.formatted.trim();o.cursorNodeStart!==void 0&&(o.cursorNodeStart-=o.formatted.indexOf(e),o.cursorNodeStart<0&&(o.cursorNodeStart=0,o.cursorNodeText=o.cursorNodeText.trimStart()),o.cursorNodeStart+o.cursorNodeText.length>e.length&&(o.cursorNodeText=o.cursorNodeText.trimEnd())),o.formatted=e+Jg(t.endOfLine)}let s=t[Symbol.for(`comments`)];if(t.cursorOffset>=0){let e,n,r,a;if((t.cursorNode||t.nodeBeforeCursor||t.nodeAfterCursor)&&o.cursorNodeText)if(r=o.cursorNodeStart,a=o.cursorNodeText,t.cursorNode)e=t.locStart(t.cursorNode),n=i.slice(e,t.locEnd(t.cursorNode));else{if(!t.nodeBeforeCursor&&!t.nodeAfterCursor)throw Error(`Cursor location must contain at least one of cursorNode, nodeBeforeCursor, nodeAfterCursor`);e=t.nodeBeforeCursor?t.locEnd(t.nodeBeforeCursor):0;let r=t.nodeAfterCursor?t.locStart(t.nodeAfterCursor):i.length;n=i.slice(e,r)}else e=0,n=i,r=0,a=o.formatted;let c=t.cursorOffset-e;if(n===a)return{formatted:o.formatted,cursorOffset:r+c,comments:s};let l=n.split(``);l.splice(c,0,XS);let u=Kg(l,a.split(``)),d=r;for(let e of u)if(e.removed){if(e.value.includes(XS))break}else d+=e.count;return{formatted:o.formatted,cursorOffset:d,comments:s}}return{formatted:o.formatted,cursorOffset:-1,comments:s}}async function by(e,t){let{ast:n,text:r}=await BS(e,t),{rangeStart:i,rangeEnd:a}=vy(r,t,n),o=r.slice(i,a),s=Math.min(i,r.lastIndexOf(`
263
+ `,i)+1),c=r.slice(s,i).match(/^\s*/u)[0],l=vx(c,t.tabWidth),u=await yy(o,{...t,rangeStart:0,rangeEnd:1/0,cursorOffset:t.cursorOffset>i&&t.cursorOffset<=a?t.cursorOffset-i:-1,endOfLine:`lf`},l),d=u.formatted.trimEnd(),{cursorOffset:f}=t;f>a?f+=d.length-o.length:u.cursorOffset>=0&&(f=u.cursorOffset+i);let p=r.slice(0,i)+d+r.slice(a);if(t.endOfLine!==`lf`){let e=Jg(t.endOfLine);f>=0&&e===`\r
264
+ `&&(f+=Yg(p.slice(0,f),`
265
+ `)),p=gb(!1,p,`
266
+ `,e)}return{formatted:p,cursorOffset:f,comments:u.comments}}function xy(e,t,n){return typeof t!=`number`||Number.isNaN(t)||t<0||t>e.length?n:t}function Sy(e,t){let{cursorOffset:n,rangeStart:r,rangeEnd:i}=t;return n=xy(e,n,-1),r=xy(e,r,0),i=xy(e,i,e.length),{...t,cursorOffset:n,rangeStart:r,rangeEnd:i}}function Cy(e,t){let{cursorOffset:n,rangeStart:r,rangeEnd:i,endOfLine:a}=Sy(e,t),o=e.charAt(0)===YS;if(o&&(e=e.slice(1),n--,r--,i--),a===`auto`&&(a=qg(e)),e.includes(`\r`)){let t=G(t=>Yg(e.slice(0,Math.max(t,0)),`\r
267
+ `),`s`);n-=t(n),r-=t(r),i-=t(i),e=Xg(e)}return{hasBOM:o,text:e,options:Sy(e,{...t,cursorOffset:n,rangeStart:r,rangeEnd:i,endOfLine:a})}}async function wy(e,t){let n=await Qv(t);return!n.hasPragma||n.hasPragma(e)}async function Ty(e,t){let{hasBOM:n,text:r,options:i}=Cy(e,await RS(t));if(i.rangeStart>=i.rangeEnd&&r!==``||i.requirePragma&&!await wy(r,i))return{formatted:e,cursorOffset:t.cursorOffset,comments:[]};let a;return i.rangeStart>0||i.rangeEnd<r.length?a=await by(r,i):(!i.requirePragma&&i.insertPragma&&i.printer.insertPragma&&!await wy(r,i)&&(r=i.printer.insertPragma(r)),a=await yy(r,i)),n&&(a.formatted=YS+a.formatted,a.cursorOffset>=0&&a.cursorOffset++),a}async function Ey(e,t,n){let{text:r,options:i}=Cy(e,await RS(t)),a=await BS(r,i);return n&&(n.preprocessForPrint&&(a.ast=await ly(a.ast,i)),n.massage&&(a.ast=US(a.ast,i))),a}async function Dy(e,t){return t=await RS(t),H_(await sy(e,t),t)}async function Oy(e,t){let{formatted:n}=await Ty(h_(e),{...t,parser:`__js_expression`});return n}async function ky(e,t){t=await RS(t);let{ast:n}=await BS(e,t);return sy(n,t)}async function Ay(e,t){return H_(e,await RS(t))}function jy(e,t){if(t===!1)return!1;if(e.charAt(t)===`/`&&e.charAt(t+1)===`*`){for(let n=t+2;n<e.length;++n)if(e.charAt(n)===`*`&&e.charAt(n+1)===`/`)return n+2}return t}function My(e,t){return t===!1?!1:e.charAt(t)===`/`&&e.charAt(t+1)===`/`?jx(e,t):t}function Ny(e,t){let n=null,r=t;for(;r!==n;)n=r,r=kx(e,r),r=rC(e,r),r=iC(e,r),r=Mx(e,r);return r}function Py(e,t){let n=null,r=t;for(;r!==n;)n=r,r=Ax(e,r),r=rC(e,r),r=kx(e,r);return r=iC(e,r),r=Mx(e,r),r!==!1&&Nx(e,r)}function Fy(e,t){let n=e.lastIndexOf(`
268
+ `);return n===-1?0:vx(e.slice(n+1).match(/^[\t ]*/u)[0],t)}function Iy(e){if(typeof e!=`string`)throw TypeError(`Expected a string`);return e.replace(/[|\\{}()[\]^$+*?.]/g,`\\$&`).replace(/-/g,`\\x2d`)}function Ly(e,t){let n=e.match(RegExp(`(${Iy(t)})+`,`gu`));return n===null?0:n.reduce((e,n)=>Math.max(e,n.length/t.length),0)}function Ry(e,t){let n=aC(e,t);return n===!1?``:e.charAt(n)}function zy(e,t){let n=t===!0||t===uC?uC:dC,r=n===uC?dC:uC,i=0,a=0;for(let t of e)t===n?i++:t===r&&a++;return i>a?r:n}function By(e,t,n){for(let r=t;r<n;++r)if(e.charAt(r)===`
269
+ `)return!0;return!1}function Vy(e,t,n={}){return kx(e,n.backwards?t-1:t,n)!==t}function Hy(e,t,n){let r=t===`"`?`'`:`"`;return t+gb(!1,e,/\\(.)|(["'])/gsu,(e,i,a)=>i===r?i:a===t?`\\`+a:a||(n&&/^[^\n\r"'0-7\\bfnrt-vx\u2028\u2029]$/u.test(i)?i:`\\`+i))+t}function Uy(e,t,n){return aC(e,n(t))}function Wy(e,t){return arguments.length===2||typeof t==`number`?aC(e,t):Uy(...arguments)}function Gy(e,t,n){return Vx(e,n(t))}function Ky(e,t){return arguments.length===2||typeof t==`number`?Vx(e,t):Gy(...arguments)}function qy(e,t,n){return oC(e,n(t))}function Jy(e,t){return arguments.length===2||typeof t==`number`?oC(e,t):qy(...arguments)}function Yy(e,t=1){return async(...n)=>{let r=n[t]??{},i=r.plugins??[];return n[t]={...r,plugins:Array.isArray(i)?i:Object.values(i)},e(...n)}}async function Xy(e,t){let{formatted:n}=await gC(e,{...t,cursorOffset:-1});return n}async function Zy(e,t){return await Xy(e,t)===e}var Qy,$y,eb,tb,nb,rb,ib,ab,ob,sb,cb,lb,ub,db,fb,pb,mb,hb,gb,_b,vb,yb,bb,xb,Sb,Cb,wb,Tb,Eb,Db,Ob,kb,Ab,jb,Mb,Nb,Pb,Fb,Ib,Lb,Rb,zb,Bb,Vb,Hb,Ub,Wb,Gb,Kb,qb,Jb,Yb,Xb,Zb,Qb,$b,ex,tx,nx,rx,ix,ax,ox,sx,cx,lx,ux,dx,fx,px,mx,hx,gx,_x,vx,yx,bx,xx,Sx,Cx,wx,Tx,Ex,Dx,Ox,kx,Ax,jx,Mx,Nx,Px,Fx,Ix,Lx,Rx,zx,Bx,Vx,Hx,Ux,Wx,Gx,Kx,qx,Jx,Yx,Xx,Zx,Qx,$x,eS,tS,nS,rS,iS,aS,oS,sS,cS,lS,uS,dS,fS,pS,mS,hS,gS,_S,vS,yS,bS,xS,SS,CS,wS,TS,ES,DS,OS,kS,AS,jS,MS,NS,PS,FS,IS,LS,RS,zS,BS,VS,HS,US,WS,GS,KS,qS,JS,YS,XS,ZS,QS,$S,eC,tC,nC,rC,iC,aC,oC,sC,cC,lC,uC,dC,fC,pC,mC,hC,gC,_C,vC,yC,bC=K(()=>{Qy=Object.create,$y=Object.defineProperty,eb=Object.getOwnPropertyDescriptor,tb=Object.getOwnPropertyNames,nb=Object.getPrototypeOf,rb=Object.prototype.hasOwnProperty,ib=G(e=>{throw TypeError(e)},`fr`),ab=G((e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),`dr`),ob=G((e,t)=>{for(var n in t)$y(e,n,{get:t[n],enumerable:!0})},`Bt`),sb=G((e,t,n,r)=>{if(t&&typeof t==`object`||typeof t==`function`)for(let i of tb(t))!rb.call(e,i)&&i!==n&&$y(e,i,{get:G(()=>t[i],`get`),enumerable:!(r=eb(t,i))||r.enumerable});return e},`_u`),cb=G((e,t,n)=>(n=e==null?{}:Qy(nb(e)),sb(t||!e||!e.__esModule?$y(n,`default`,{value:e,enumerable:!0}):n,e)),`Me`),lb=G((e,t,n)=>t.has(e)||ib(`Cannot `+n),`xu`),ub=G((e,t,n)=>t.has(e)?ib(`Cannot add the same private member more than once`):t instanceof WeakSet?t.add(e):t.set(e,n),`pr`),db=G((e,t,n)=>(lb(e,t,`access private method`),n),`pe`),fb=ab((e,t)=>{var n=new Proxy(String,{get:G(()=>n,`get`)});t.exports=n}),pb=ab(e=>{Object.defineProperty(e,`__esModule`,{value:!0});function t(){return new Proxy({},{get:G(()=>e=>e,`get`)})}G(t,`Bi`);var n=/\r\n|[\n\r\u2028\u2029]/;function r(e,t,n){let r=Object.assign({column:0,line:-1},e.start),i=Object.assign({},r,e.end),{linesAbove:a=2,linesBelow:o=3}=n||{},s=r.line,c=r.column,l=i.line,u=i.column,d=Math.max(s-(a+1),0),f=Math.min(t.length,l+o);s===-1&&(d=0),l===-1&&(f=t.length);let p=l-s,m={};if(p)for(let e=0;e<=p;e++){let n=e+s;c?e===0?m[n]=[c,t[n-1].length-c+1]:e===p?m[n]=[0,u]:m[n]=[0,t[n-e].length]:m[n]=!0}else c===u?c?m[s]=[c,0]:m[s]=!0:m[s]=[c,u-c];return{start:d,end:f,markerLines:m}}G(r,`wi`);function i(e,i,a={}){let o=t(!1),{start:s,end:c,markerLines:l}=r(i,e.split(n),a),u=i.start&&typeof i.start.column==`number`,d=String(c).length,f=e.split(n,c).slice(s,c).map((e,t)=>{let n=s+1+t,r=` ${` ${n}`.slice(-d)} |`,i=l[n],c=!l[n+1];if(i){let t=``;if(Array.isArray(i)){let n=e.slice(0,Math.max(i[0]-1,0)).replace(/[^\t]/g,` `),s=i[1]||1;t=[`
270
+ `,o.gutter(r.replace(/\d/g,` `)),` `,n,o.marker(`^`).repeat(s)].join(``),c&&a.message&&(t+=` `+o.message(a.message))}return[o.marker(`>`),o.gutter(r),e.length>0?` ${e}`:``,t].join(``)}else return` ${o.gutter(r)}${e.length>0?` ${e}`:``}`}).join(`
271
+ `);return a.message&&!u&&(f=`${` `.repeat(d+1)}${a.message}
272
+ ${f}`),f}G(i,`_i`),e.codeFrameColumns=i}),mb={},ob(mb,{__debug:G(()=>vC,`__debug`),check:G(()=>Zy,`check`),doc:G(()=>ZS,`doc`),format:G(()=>Xy,`format`),formatWithCursor:G(()=>gC,`formatWithCursor`),getSupportInfo:G(()=>_C,`getSupportInfo`),util:G(()=>nC,`util`),version:G(()=>tC,`version`)}),hb=G((e,t,n,r)=>{if(!(e&&t==null))return t.replaceAll?t.replaceAll(n,r):n.global?t.replace(n,r):t.split(n).join(r)},`bu`),gb=hb,G(Ng,`M`),Ng.prototype={diff:G(function(e,t){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},r=n.callback;typeof n==`function`&&(r=n,n={});var i=this;function a(e){return e=i.postProcess(e,n),r?(setTimeout(function(){r(e)},0),!0):e}G(a,`s`),e=this.castInput(e,n),t=this.castInput(t,n),e=this.removeEmpty(this.tokenize(e,n)),t=this.removeEmpty(this.tokenize(t,n));var o=t.length,s=e.length,c=1,l=o+s;n.maxEditLength!=null&&(l=Math.min(l,n.maxEditLength));var u=n.timeout??1/0,d=Date.now()+u,f=[{oldPos:-1,lastComponent:void 0}],p=this.extractCommon(f[0],t,e,0,n);if(f[0].oldPos+1>=s&&p+1>=o)return a(Pg(i,f[0].lastComponent,t,e,i.useLongestToken));var m=-1/0,h=1/0;function g(){for(var r=Math.max(m,-c);r<=Math.min(h,c);r+=2){var l=void 0,u=f[r-1],d=f[r+1];u&&(f[r-1]=void 0);var g=!1;if(d){var _=d.oldPos-r;g=d&&0<=_&&_<o}var v=u&&u.oldPos+1<s;if(!g&&!v){f[r]=void 0;continue}if(l=!v||g&&u.oldPos<d.oldPos?i.addToPath(d,!0,!1,0,n):i.addToPath(u,!1,!0,1,n),p=i.extractCommon(l,t,e,r,n),l.oldPos+1>=s&&p+1>=o)return a(Pg(i,l.lastComponent,t,e,i.useLongestToken));f[r]=l,l.oldPos+1>=s&&(h=Math.min(h,r-1)),p+1>=o&&(m=Math.max(m,r+1))}c++}if(G(g,`C`),r)G(function e(){setTimeout(function(){if(c>l||Date.now()>d)return r();g()||e()},0)},`E`)();else for(;c<=l&&Date.now()<=d;){var _=g();if(_)return _}},`diff`),addToPath:G(function(e,t,n,r,i){var a=e.lastComponent;return a&&!i.oneChangePerToken&&a.added===t&&a.removed===n?{oldPos:e.oldPos+r,lastComponent:{count:a.count+1,added:t,removed:n,previousComponent:a.previousComponent}}:{oldPos:e.oldPos+r,lastComponent:{count:1,added:t,removed:n,previousComponent:a}}},`addToPath`),extractCommon:G(function(e,t,n,r,i){for(var a=t.length,o=n.length,s=e.oldPos,c=s-r,l=0;c+1<a&&s+1<o&&this.equals(n[s+1],t[c+1],i);)c++,s++,l++,i.oneChangePerToken&&(e.lastComponent={count:1,previousComponent:e.lastComponent,added:!1,removed:!1});return l&&!i.oneChangePerToken&&(e.lastComponent={count:l,previousComponent:e.lastComponent,added:!1,removed:!1}),e.oldPos=s,c},`extractCommon`),equals:G(function(e,t,n){return n.comparator?n.comparator(e,t):e===t||n.ignoreCase&&e.toLowerCase()===t.toLowerCase()},`equals`),removeEmpty:G(function(e){for(var t=[],n=0;n<e.length;n++)e[n]&&t.push(e[n]);return t},`removeEmpty`),castInput:G(function(e){return e},`castInput`),tokenize:G(function(e){return Array.from(e)},`tokenize`),join:G(function(e){return e.join(``)},`join`),postProcess:G(function(e){return e},`postProcess`)},G(Pg,`Fr`),new Ng,G(Fg,`mr`),G(Ig,`hr`),G(Lg,`wt`),G(Rg,`_t`),G(zg,`we`),G(Bg,`Ue`),G(Vg,`Er`),G(Hg,`Nu`),_b=`a-zA-Z0-9_\\u{C0}-\\u{FF}\\u{D8}-\\u{F6}\\u{F8}-\\u{2C6}\\u{2C8}-\\u{2D7}\\u{2DE}-\\u{2FF}\\u{1E00}-\\u{1EFF}`,vb=RegExp(`[${_b}]+|\\s+|[^${_b}]`,`ug`),yb=new Ng,yb.equals=function(e,t,n){return n.ignoreCase&&(e=e.toLowerCase(),t=t.toLowerCase()),e.trim()===t.trim()},yb.tokenize=function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n;if(t.intlSegmenter){if(t.intlSegmenter.resolvedOptions().granularity!=`word`)throw Error(`The segmenter passed must have a granularity of "word"`);n=Array.from(t.intlSegmenter.segment(e),function(e){return e.segment})}else n=e.match(vb)||[];var r=[],i=null;return n.forEach(function(e){/\s/.test(e)?i==null?r.push(e):r.push(r.pop()+e):/\s/.test(i)?r[r.length-1]==i?r.push(r.pop()+e):r.push(i+e):r.push(e),i=e}),r},yb.join=function(e){return e.map(function(e,t){return t==0?e:e.replace(/^\s+/,``)}).join(``)},yb.postProcess=function(e,t){if(!e||t.oneChangePerToken)return e;var n=null,r=null,i=null;return e.forEach(function(e){e.added?r=e:e.removed?i=e:((r||i)&&Ug(n,i,r,e),n=e,r=null,i=null)}),(r||i)&&Ug(n,i,r,null),e},G(Ug,`Cr`),bb=new Ng,bb.tokenize=function(e){var t=RegExp(`(\\r?\\n)|[${_b}]+|[^\\S\\n\\r]+|[^${_b}]`,`ug`);return e.match(t)||[]},xb=new Ng,xb.tokenize=function(e,t){t.stripTrailingCr&&(e=e.replace(/\r\n/g,`
273
+ `));var n=[],r=e.split(/(\n|\r\n)/);r[r.length-1]||r.pop();for(var i=0;i<r.length;i++){var a=r[i];i%2&&!t.newlineIsToken?n[n.length-1]+=a:n.push(a)}return n},xb.equals=function(e,t,n){return n.ignoreWhitespace?((!n.newlineIsToken||!e.includes(`
274
+ `))&&(e=e.trim()),(!n.newlineIsToken||!t.includes(`
275
+ `))&&(t=t.trim())):n.ignoreNewlineAtEof&&!n.newlineIsToken&&(e.endsWith(`
276
+ `)&&(e=e.slice(0,-1)),t.endsWith(`
277
+ `)&&(t=t.slice(0,-1))),Ng.prototype.equals.call(this,e,t,n)},Sb=new Ng,Sb.tokenize=function(e){return e.split(/(\S.+?[.!?])(?=\s+|$)/)},Cb=new Ng,Cb.tokenize=function(e){return e.split(/([{}:;,]|\s+)/)},G(Wg,`xt`),wb=new Ng,wb.useLongestToken=!0,wb.tokenize=xb.tokenize,wb.castInput=function(e,t){var n=t.undefinedReplacement,r=t.stringifyReplacer,i=r===void 0?function(e,t){return typeof t>`u`?n:t}:r;return typeof e==`string`?e:JSON.stringify(Gg(e,null,null,i),i,` `)},wb.equals=function(e,t,n){return Ng.prototype.equals.call(wb,e.replace(/,([\r\n])/g,`$1`),t.replace(/,([\r\n])/g,`$1`),n)},G(Gg,`bt`),Tb=new Ng,Tb.tokenize=function(e){return e.slice()},Tb.join=Tb.removeEmpty=function(e){return e},G(Kg,`gr`),G(qg,`yr`),G(Jg,`xe`),G(Yg,`Ot`),G(Xg,`Ar`),Eb=`string`,Db=`array`,Ob=`cursor`,kb=`indent`,Ab=`align`,jb=`trim`,Mb=`group`,Nb=`fill`,Pb=`if-break`,Fb=`indent-if-break`,Ib=`line-suffix`,Lb=`line-suffix-boundary`,Rb=`line`,zb=`label`,Bb=`break-parent`,Vb=new Set([Ob,kb,Ab,jb,Mb,Nb,Pb,Fb,Ib,Lb,Rb,zb,Bb]),G(Zg,`Lu`),Hb=Zg,Ub=G(e=>new Intl.ListFormat(`en-US`,{type:`disjunction`}).format(e),`Pu`),G(Qg,`Iu`),Gb=(Wb=class extends Error{name=`InvalidDocError`;constructor(e){super(Qg(e)),this.doc=e}},G(Wb,`St`),Wb),Kb=Gb,qb={},G($g,`Ru`),Jb=$g,Yb=G(()=>{},`Br`),Xb=Yb,Zb=Yb,G(e_,`le`),G(t_,`De`),G(n_,`Tt`),G(r_,`wr`),G(i_,`_r`),G(a_,`xr`),G(o_,`br`),G(s_,`Nr`),G(c_,`Or`),G(l_,`Sr`),G(u_,`Ne`),Qb={type:Lb},$b={type:Bb},ex={type:jb},tx={type:Rb,hard:!0},nx={type:Rb,hard:!0,literal:!0},rx={type:Rb},ix={type:Rb,soft:!0},ax=[tx,$b],ox=[nx,$b],sx={type:Ob},G(d_,`Se`),G(f_,`Qe`),G(p_,`Pr`),G(m_,`ee`),G(h_,`Ir`),cx=G((e,t,n)=>{if(!(e&&t==null))return Array.isArray(t)||typeof t==`string`?t[n<0?t.length+n:n]:t.at(n)},`Yu`),lx=cx,ux=G(()=>/[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE])))?))?|\uDC6F(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDD75(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE89\uDE8F-\uDEC2\uDEC6\uDECE-\uDEDC\uDEDF-\uDEE9]|\uDD3C(?:\u200D[\u2640\u2642]\uFE0F?|\uD83C[\uDFFB-\uDFFF])?|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g,`Rr`),G(g_,`Yr`),G(__,`jr`),dx=G(e=>!(g_(e)||__(e)),`Hr`),fx=/[^\x20-\x7F]/u,G(v_,`Hu`),px=v_,G(y_,`Le`),G(b_,`Ze`),G(x_,`Wu`),G(S_,`Mr`),G(C_,`Wr`),G(w_,`Ur`),G(T_,`$u`),G(E_,`Vr`),G(D_,`$r`),G(O_,`ke`),G(k_,`et`),G(A_,`Mu`),G(j_,`Uu`),G(M_,`zr`),G(N_,`Vu`),G(P_,`Gr`),G(F_,`me`),mx=Symbol(`MODE_BREAK`),hx=Symbol(`MODE_FLAT`),gx=Symbol(`cursor`),_x=Symbol(`DOC_FILL_PRINTED_LENGTH`),G(I_,`Kr`),G(L_,`zu`),G(R_,`Gu`),G(z_,`Pt`),G(B_,`It`),G(V_,`tt`),G(H_,`Ee`),G(U_,`Ku`),vx=U_,Cx=(Sx=class{constructor(e){ub(this,yx),this.stack=[e]}get key(){let{stack:e,siblings:t}=this;return lx(!1,e,t===null?-2:-4)??null}get index(){return this.siblings===null?null:lx(!1,this.stack,-2)}get node(){return lx(!1,this.stack,-1)}get parent(){return this.getNode(1)}get grandparent(){return this.getNode(2)}get isInArray(){return this.siblings!==null}get siblings(){let{stack:e}=this,t=lx(!1,e,-3);return Array.isArray(t)?t:null}get next(){let{siblings:e}=this;return e===null?null:e[this.index+1]}get previous(){let{siblings:e}=this;return e===null?null:e[this.index-1]}get isFirst(){return this.index===0}get isLast(){let{siblings:e,index:t}=this;return e!==null&&t===e.length-1}get isRoot(){return this.stack.length===1}get root(){return this.stack[0]}get ancestors(){return[...db(this,yx,xx).call(this)]}getName(){let{stack:e}=this,{length:t}=e;return t>1?lx(!1,e,-2):null}getValue(){return lx(!1,this.stack,-1)}getNode(e=0){let t=db(this,yx,bx).call(this,e);return t===-1?null:this.stack[t]}getParentNode(e=0){return this.getNode(e+1)}call(e,...t){let{stack:n}=this,{length:r}=n,i=lx(!1,n,-1);for(let e of t)i=i[e],n.push(e,i);try{return e(this)}finally{n.length=r}}callParent(e,t=0){let n=db(this,yx,bx).call(this,t+1),r=this.stack.splice(n+1);try{return e(this)}finally{this.stack.push(...r)}}each(e,...t){let{stack:n}=this,{length:r}=n,i=lx(!1,n,-1);for(let e of t)i=i[e],n.push(e,i);try{for(let t=0;t<i.length;++t)n.push(t,i[t]),e(this,t,i),n.length-=2}finally{n.length=r}}map(e,...t){let n=[];return this.each((t,r,i)=>{n[r]=e(t,r,i)},...t),n}match(...e){let t=this.stack.length-1,n=null,r=this.stack[t--];for(let i of e){if(r===void 0)return!1;let e=null;if(typeof n==`number`&&(e=n,n=this.stack[t--],r=this.stack[t--]),i&&!i(r,n,e))return!1;n=this.stack[t--],r=this.stack[t--]}return!0}findAncestor(e){for(let t of db(this,yx,xx).call(this))if(e(t))return t}hasAncestor(e){for(let t of db(this,yx,xx).call(this))if(e(t))return!0;return!1}},G(Sx,`Rt`),Sx),yx=new WeakSet,bx=G(function(e){let{stack:t}=this;for(let n=t.length-1;n>=0;n-=2)if(!Array.isArray(t[n])&&--e<0)return n;return-1},`Yt`),xx=G(function*(){let{stack:e}=this;for(let t=e.length-3;t>=0;t-=2){let n=e[t];Array.isArray(n)||(yield n)}},`rt`),wx=Cx,Tx=new Proxy(()=>{},{get:G(()=>Tx,`get`)}),Ex=Tx,G(W_,`Ju`),Dx=W_,G(G_,`ge`),G(K_,`Qr`),G(q_,`Zr`),G(J_,`ye`),Ox=J_(/\s/u),kx=J_(` `),Ax=J_(`,; `),jx=J_(/[^\n\r]/u),G(Y_,`qu`),Mx=Y_,G(X_,`Xu`),Nx=X_,G(Z_,`Qu`),Px=Z_,Fx=new Set([`tokens`,`comments`,`parent`,`enclosingNode`,`precedingNode`,`followingNode`]),Ix=G(e=>Object.keys(e).filter(e=>!Fx.has(e)),`Zu`),G(Q_,`ei`),Lx=Q_,G($_,`ti`),G(ev,`Ht`),G(tv,`ue`),G(nv,`re`),G(rv,`ie`),Rx=new WeakMap,G(iv,`it`),G(av,`nn`),zx=G(()=>!1,`$t`),G(ov,`un`),Bx=G(e=>!/[\S\n\u2028\u2029]/u.test(e),`on`),G(sv,`ri`),G(cv,`ni`),G(lv,`rn`),G(uv,`Mt`),G(dv,`ui`),Vx=dv,G(fv,`sn`),G(pv,`ii`),G(mv,`oi`),G(hv,`si`),G(gv,`an`),G(_v,`Dn`),G(vv,`ai`),Hx=vv,Wx=(Ux=class extends Error{name=`ConfigError`},G(Ux,`Re`),Ux),Kx=(Gx=class extends Error{name=`UndefinedParserError`},G(Gx,`Ye`),Gx),qx={cursorOffset:{category:`Special`,type:`int`,default:-1,range:{start:-1,end:1/0,step:1},description:`Print (to stderr) where a cursor at the given position would move to after formatting.`,cliCategory:`Editor`},endOfLine:{category:`Global`,type:`choice`,default:`lf`,description:`Which end of line characters to apply.`,choices:[{value:`lf`,description:`Line Feed only (\\n), common on Linux and macOS as well as inside git repos`},{value:`crlf`,description:`Carriage Return + Line Feed characters (\\r\\n), common on Windows`},{value:`cr`,description:`Carriage Return character only (\\r), used very rarely`},{value:`auto`,description:`Maintain existing
278
+ (mixed values within one file are normalised by looking at what's used after the first line)`}]},filepath:{category:`Special`,type:`path`,description:`Specify the input filepath. This will be used to do parser inference.`,cliName:`stdin-filepath`,cliCategory:`Other`,cliDescription:`Path to the file to pretend that stdin comes from.`},insertPragma:{category:`Special`,type:`boolean`,default:!1,description:`Insert @format pragma into file's first docblock comment.`,cliCategory:`Other`},parser:{category:`Global`,type:`choice`,default:void 0,description:`Which parser to use.`,exception:G(e=>typeof e==`string`||typeof e==`function`,`exception`),choices:[{value:`flow`,description:`Flow`},{value:`babel`,description:`JavaScript`},{value:`babel-flow`,description:`Flow`},{value:`babel-ts`,description:`TypeScript`},{value:`typescript`,description:`TypeScript`},{value:`acorn`,description:`JavaScript`},{value:`espree`,description:`JavaScript`},{value:`meriyah`,description:`JavaScript`},{value:`css`,description:`CSS`},{value:`less`,description:`Less`},{value:`scss`,description:`SCSS`},{value:`json`,description:`JSON`},{value:`json5`,description:`JSON5`},{value:`jsonc`,description:`JSON with Comments`},{value:`json-stringify`,description:`JSON.stringify`},{value:`graphql`,description:`GraphQL`},{value:`markdown`,description:`Markdown`},{value:`mdx`,description:`MDX`},{value:`vue`,description:`Vue`},{value:`yaml`,description:`YAML`},{value:`glimmer`,description:`Ember / Handlebars`},{value:`html`,description:`HTML`},{value:`angular`,description:`Angular`},{value:`lwc`,description:`Lightning Web Components`}]},plugins:{type:`path`,array:!0,default:[{value:[]}],category:`Global`,description:"Add a plugin. Multiple plugins can be passed as separate `--plugin`s.",exception:G(e=>typeof e==`string`||typeof e==`object`,`exception`),cliName:`plugin`,cliCategory:`Config`},printWidth:{category:`Global`,type:`int`,default:80,description:`The line length where Prettier will try wrap.`,range:{start:0,end:1/0,step:1}},rangeEnd:{category:`Special`,type:`int`,default:1/0,range:{start:0,end:1/0,step:1},description:`Format code ending at a given character offset (exclusive).
279
+ The range will extend forwards to the end of the selected statement.`,cliCategory:`Editor`},rangeStart:{category:`Special`,type:`int`,default:0,range:{start:0,end:1/0,step:1},description:`Format code starting at a given character offset.
280
+ The range will extend backwards to the start of the first line containing the selected statement.`,cliCategory:`Editor`},requirePragma:{category:`Special`,type:`boolean`,default:!1,description:`Require either '@prettier' or '@format' to be present in the file's first docblock comment
281
+ in order for it to be formatted.`,cliCategory:`Other`},tabWidth:{type:`int`,category:`Global`,default:2,description:`Number of spaces per indentation level.`,range:{start:0,end:1/0,step:1}},useTabs:{category:`Global`,type:`boolean`,default:!1,description:`Indent with tabs instead of spaces.`},embeddedLanguageFormatting:{category:`Global`,type:`choice`,default:`auto`,description:`Control how Prettier formats quoted code embedded in the file.`,choices:[{value:`auto`,description:`Format embedded code if Prettier can automatically identify it.`},{value:`off`,description:`Never automatically format embedded code.`}]}},G(yv,`ot`),G(bv,`Di`),G(xv,`li`),Jx=G(e=>String(e).split(/[/\\]/u).pop(),`ci`),G(Sv,`fn`),G(Cv,`fi`),G(wv,`di`),Yx=wv,Xx={key:G(e=>/^[$_a-zA-Z][$_a-zA-Z0-9]*$/.test(e)?e:JSON.stringify(e),`key`),value(e){if(typeof e!=`object`||!e)return JSON.stringify(e);if(Array.isArray(e))return`[${e.map(e=>Xx.value(e)).join(`, `)}]`;let t=Object.keys(e);return t.length===0?`{}`:`{ ${t.map(t=>`${Xx.key(t)}: ${Xx.value(e[t])}`).join(`, `)} }`},pair:G(({key:e,value:t})=>Xx.value({[e]:t}),`pair`)},Zx=cb(fb(),1),Qx=G((e,t,{descriptor:n})=>{let r=[`${Zx.default.yellow(typeof e==`string`?n.key(e):n.pair(e))} is deprecated`];return t&&r.push(`we now treat it as ${Zx.default.blue(typeof t==`string`?n.key(t):n.pair(t))}`),r.join(`; `)+`.`},`mn`),$x=cb(fb(),1),eS=Symbol.for(`vnopts.VALUE_NOT_EXIST`),tS=Symbol.for(`vnopts.VALUE_UNCHANGED`),nS=` `.repeat(2),rS=G((e,t,n)=>{let{text:r,list:i}=n.normalizeExpectedResult(n.schemas[e].expected(n)),a=[];return r&&a.push(Tv(e,t,r,n.descriptor)),i&&a.push([Tv(e,t,i.title,n.descriptor)].concat(i.values.map(e=>Ev(e,n.loggerPrintWidth))).join(`
282
+ `)),Dv(a,n.loggerPrintWidth)},`Cn`),G(Tv,`En`),G(Ev,`gn`),G(Dv,`yn`),iS=cb(fb(),1),aS=[],oS=[],G(Ov,`zt`),sS=G((e,t,{descriptor:n,logger:r,schemas:i})=>{let a=[`Ignored unknown option ${iS.default.yellow(n.pair({key:e,value:t}))}.`],o=Object.keys(i).sort().find(t=>Ov(e,t)<3);o&&a.push(`Did you mean ${iS.default.blue(n.key(o))}?`),r.warn(a.join(` `))},`Dt`),cS=[`default`,`expected`,`validate`,`deprecated`,`forward`,`redirect`,`overlap`,`preprocess`,`postprocess`],G(kv,`Fi`),uS=(lS=class{static create(e){return kv(this,e)}constructor(e){this.name=e.name}default(e){}expected(e){return`nothing`}validate(e,t){return!1}deprecated(e,t){return!1}forward(e,t){}redirect(e,t){}overlap(e,t,n){return e}preprocess(e,t){return e}postprocess(e,t){return tS}},G(lS,`x`),lS),G(Av,`mi`),fS=(dS=class extends uS{constructor(e){super(e),this._sourceName=e.sourceName}expected(e){return e.schemas[this._sourceName].expected(e)}validate(e,t){return t.schemas[this._sourceName].validate(e,t)}redirect(e,t){return this._sourceName}},G(dS,`lt`),dS),mS=(pS=class extends uS{expected(){return`anything`}validate(){return!0}},G(pS,`ct`),pS),gS=(hS=class extends uS{constructor({valueSchema:e,name:t=e.name,...n}){super({...n,name:t}),this._valueSchema=e}expected(e){let{text:t,list:n}=e.normalizeExpectedResult(this._valueSchema.expected(e));return{text:t&&`an array of ${t}`,list:n&&{title:`an array of the following values`,values:[{list:n}]}}}validate(e,t){if(!Array.isArray(e))return!1;let n=[];for(let r of e){let e=t.normalizeValidateResult(this._valueSchema.validate(r,t),r);e!==!0&&n.push(e.value)}return n.length===0?!0:{value:n}}deprecated(e,t){let n=[];for(let r of e){let e=t.normalizeDeprecatedResult(this._valueSchema.deprecated(r,t),r);e!==!1&&n.push(...e.map(({value:e})=>({value:[e]})))}return n}forward(e,t){let n=[];for(let r of e){let e=t.normalizeForwardResult(this._valueSchema.forward(r,t),r);n.push(...e.map(jv))}return n}redirect(e,t){let n=[],r=[];for(let i of e){let e=t.normalizeRedirectResult(this._valueSchema.redirect(i,t),i);`remain`in e&&n.push(e.remain),r.push(...e.redirect.map(jv))}return n.length===0?{redirect:r}:{redirect:r,remain:n}}overlap(e,t){return e.concat(t)}},G(hS,`ft`),hS),G(jv,`vn`),vS=(_S=class extends uS{expected(){return`true or false`}validate(e){return typeof e==`boolean`}},G(_S,`dt`),_S),G(Mv,`wn`),G(Nv,`_n`),G(Pv,`xn`),G(Fv,`bn`),G(Iv,`Nn`),G(Lv,`On`),G(Rv,`Sn`),G(zv,`Kt`),G(Bv,`Jt`),G(Vv,`qt`),G(Hv,`Xt`),G(Uv,`Bn`),G(Wv,`pt`),G(Gv,`Qt`),G(Kv,`hi`),bS=(yS=class extends uS{constructor(e){super(e),this._choices=Nv(e.choices.map(e=>e&&typeof e==`object`?e:{value:e}),`value`)}expected({descriptor:e}){let t=Array.from(this._choices.keys()).map(e=>this._choices.get(e)).filter(({hidden:e})=>!e).map(e=>e.value).sort(Lv).map(e.value),n=t.slice(0,-2),r=t.slice(-2);return{text:n.concat(r.join(` or `)).join(`, `),list:{title:`one of the following values`,values:t}}}validate(e){return this._choices.has(e)}deprecated(e){let t=this._choices.get(e);return t&&t.deprecated?{value:e}:!1}forward(e){let t=this._choices.get(e);return t?t.forward:void 0}redirect(e){let t=this._choices.get(e);return t?t.redirect:void 0}},G(yS,`Ft`),yS),SS=(xS=class extends uS{expected(){return`a number`}validate(e,t){return typeof e==`number`}},G(xS,`mt`),xS),wS=(CS=class extends SS{expected(){return`an integer`}validate(e,t){return t.normalizeValidateResult(super.validate(e,t),e)===!0&&Iv(e)}},G(CS,`ht`),CS),ES=(TS=class extends uS{expected(){return`a string`}validate(e){return typeof e==`string`}},G(TS,`je`),TS),DS=Xx,OS=sS,kS=rS,AS=Qx,MS=(jS=class{constructor(e,t){let{logger:n=console,loggerPrintWidth:r=80,descriptor:i=DS,unknown:a=OS,invalid:o=kS,deprecated:s=AS,missing:c=G(()=>!1,`D`),required:l=G(()=>!1,`l`),preprocess:u=G(e=>e,`p`),postprocess:d=G(()=>tS,`f`)}=t||{};this._utils={descriptor:i,logger:n||{warn:G(()=>{},`warn`)},loggerPrintWidth:r,schemas:Mv(e,`name`),normalizeDefaultResult:zv,normalizeExpectedResult:Bv,normalizeDeprecatedResult:Hv,normalizeForwardResult:Wv,normalizeRedirectResult:Gv,normalizeValidateResult:Vv},this._unknownHandler=a,this._invalidHandler=Rv(o),this._deprecatedHandler=s,this._identifyMissing=(e,t)=>!(e in t)||c(e,t),this._identifyRequired=l,this._preprocess=u,this._postprocess=d,this.cleanHistory()}cleanHistory(){this._hasDeprecationWarned=Pv()}normalize(e){let t={},n=[this._preprocess(e,this._utils)],r=G(()=>{for(;n.length!==0;){let e=n.shift(),r=this._applyNormalization(e,t);n.push(...r)}},`i`);r();for(let e of Object.keys(this._utils.schemas)){let r=this._utils.schemas[e];if(!(e in t)){let t=zv(r.default(this._utils));`value`in t&&n.push({[e]:t.value})}}r();for(let e of Object.keys(this._utils.schemas)){if(!(e in t))continue;let n=this._utils.schemas[e],r=t[e],i=n.postprocess(r,this._utils);i!==tS&&(this._applyValidation(i,e,n),t[e]=i)}return this._applyPostprocess(t),this._applyRequiredCheck(t),t}_applyNormalization(e,t){let n=[],{knownKeys:r,unknownKeys:i}=this._partitionOptionKeys(e);for(let i of r){let r=this._utils.schemas[i],a=r.preprocess(e[i],this._utils);this._applyValidation(a,i,r);let o=G(({from:e,to:t})=>{n.push(typeof t==`string`?{[t]:e}:{[t.key]:t.value})},`D`),s=G(({value:e,redirectTo:t})=>{let n=Hv(r.deprecated(e,this._utils),a,!0);if(n!==!1)if(n===!0)this._hasDeprecationWarned(i)||this._utils.logger.warn(this._deprecatedHandler(i,t,this._utils));else for(let{value:e}of n){let n={key:i,value:e};if(!this._hasDeprecationWarned(n)){let r=typeof t==`string`?{key:t,value:e}:t;this._utils.logger.warn(this._deprecatedHandler(n,r,this._utils))}}},`l`);Wv(r.forward(a,this._utils),a).forEach(o);let c=Gv(r.redirect(a,this._utils),a);if(c.redirect.forEach(o),`remain`in c){let e=c.remain;t[i]=i in t?r.overlap(t[i],e,this._utils):e,s({value:e})}for(let{from:e,to:t}of c.redirect)s({value:e,redirectTo:t})}for(let r of i){let i=e[r];this._applyUnknownHandler(r,i,t,(e,t)=>{n.push({[e]:t})})}return n}_applyRequiredCheck(e){for(let t of Object.keys(this._utils.schemas))if(this._identifyMissing(t,e)&&this._identifyRequired(t))throw this._invalidHandler(t,eS,this._utils)}_partitionOptionKeys(e){let[t,n]=Fv(Object.keys(e).filter(t=>!this._identifyMissing(t,e)),e=>e in this._utils.schemas);return{knownKeys:t,unknownKeys:n}}_applyValidation(e,t,n){let r=Vv(n.validate(e,this._utils),e);if(r!==!0)throw this._invalidHandler(t,r.value,this._utils)}_applyUnknownHandler(e,t,n,r){let i=this._unknownHandler(e,t,this._utils);if(i)for(let e of Object.keys(i)){if(this._identifyMissing(e,i))continue;let t=i[e];e in this._utils.schemas?r(e,t):n[e]=t}}_applyPostprocess(e){let t=this._postprocess(e,this._utils);if(t!==tS){if(t.delete)for(let n of t.delete)delete e[n];if(t.override){let{knownKeys:n,unknownKeys:r}=this._partitionOptionKeys(t.override);for(let r of n){let n=t.override[r];this._applyValidation(n,r,this._utils.schemas[r]),e[r]=n}for(let n of r){let r=t.override[n];this._applyUnknownHandler(n,r,e,(t,n)=>{let r=this._utils.schemas[t];this._applyValidation(n,t,r),e[t]=n})}}}}},G(jS,`Et`),jS),G(qv,`Ci`),G(Jv,`gi`),G(Yv,`yi`),PS=qv,FS=G((e,t,n)=>{if(!(e&&t==null)){if(t.findLast)return t.findLast(n);for(let e=t.length-1;e>=0;e--){let r=t[e];if(n(r,e,t))return r}}},`Ai`),IS=FS,G(Xv,`tr`),G(Zv,`Rn`),G(Qv,`Ct`),G($v,`rr`),G(ey,`Yn`),LS={astFormat:`estree`,printer:{},originalText:void 0,locStart:null,locEnd:null},G(ty,`vi`),RS=ty,zS=cb(pb(),1),G(ny,`xi`),G(ry,`bi`),BS=ny,G(iy,`Mn`),G(ay,`Ni`),G(oy,`Oi`),VS=oy,G(sy,`He`),G(cy,`Vn`),G(ly,`ur`),G(uy,`Si`),HS=uy,G(dy,`Ti`),US=dy,WS=G((e,t,n)=>{if(!(e&&t==null)){if(t.findLastIndex)return t.findLastIndex(n);for(let e=t.length-1;e>=0;e--){let r=t[e];if(n(r,e,t))return e}return-1}},`ki`),GS=WS,KS=G(({parser:e})=>e===`json`||e===`json5`||e===`jsonc`||e===`json-stringify`,`Li`),G(fy,`Pi`),G(py,`Jn`),G(my,`Ii`),G(hy,`ir`),G(gy,`Ri`),qS=new Set([`JsonRoot`,`ObjectExpression`,`ArrayExpression`,`StringLiteral`,`NumericLiteral`,`BooleanLiteral`,`NullLiteral`,`UnaryExpression`,`TemplateLiteral`]),JS=new Set([`OperationDefinition`,`FragmentDefinition`,`VariableDefinition`,`TypeExtensionDefinition`,`ObjectTypeDefinition`,`FieldDefinition`,`DirectiveDefinition`,`EnumTypeDefinition`,`EnumValueDefinition`,`InputValueDefinition`,`InputObjectTypeDefinition`,`SchemaDefinition`,`OperationTypeDefinition`,`InterfaceTypeDefinition`,`UnionTypeDefinition`,`ScalarTypeDefinition`]),G(_y,`qn`),G(vy,`Qn`),YS=``,XS=Symbol(`cursor`),G(yy,`nu`),G(by,`ji`),G(xy,`or`),G(Sy,`eu`),G(Cy,`uu`),G(wy,`tu`),G(Ty,`sr`),G(Ey,`iu`),G(Dy,`ou`),G(Oy,`su`),G(ky,`au`),G(Ay,`Du`),ZS={},ob(ZS,{builders:G(()=>QS,`builders`),printer:G(()=>$S,`printer`),utils:G(()=>eC,`utils`)}),QS={join:d_,line:rx,softline:ix,hardline:ax,literalline:ox,group:n_,conditionalGroup:o_,fill:s_,lineSuffix:u_,lineSuffixBoundary:Qb,cursor:sx,breakParent:$b,ifBreak:c_,trim:ex,indent:e_,indentIfBreak:l_,align:t_,addAlignmentToDoc:f_,markAsRoot:i_,dedentToRoot:r_,dedent:a_,hardlineWithoutBreakParent:tx,literallineWithoutBreakParent:nx,label:p_,concat:G(e=>e,`concat`)},$S={printDocToString:H_},eC={willBreak:S_,traverseDoc:Jb,findInDoc:b_,mapDoc:y_,removeLines:E_,stripTrailingHardline:k_,replaceEndOfLine:M_,canBreak:P_},tC=`3.4.2`,nC={},ob(nC,{addDanglingComment:G(()=>nv,`addDanglingComment`),addLeadingComment:G(()=>tv,`addLeadingComment`),addTrailingComment:G(()=>rv,`addTrailingComment`),getAlignmentSize:G(()=>vx,`getAlignmentSize`),getIndentSize:G(()=>sC,`getIndentSize`),getMaxContinuousCount:G(()=>cC,`getMaxContinuousCount`),getNextNonSpaceNonCommentCharacter:G(()=>lC,`getNextNonSpaceNonCommentCharacter`),getNextNonSpaceNonCommentCharacterIndex:G(()=>Wy,`getNextNonSpaceNonCommentCharacterIndex`),getPreferredQuote:G(()=>fC,`getPreferredQuote`),getStringWidth:G(()=>px,`getStringWidth`),hasNewline:G(()=>Nx,`hasNewline`),hasNewlineInRange:G(()=>pC,`hasNewlineInRange`),hasSpaces:G(()=>mC,`hasSpaces`),isNextLineEmpty:G(()=>Jy,`isNextLineEmpty`),isNextLineEmptyAfterIndex:G(()=>oC,`isNextLineEmptyAfterIndex`),isPreviousLineEmpty:G(()=>Ky,`isPreviousLineEmpty`),makeString:G(()=>hC,`makeString`),skip:G(()=>J_,`skip`),skipEverythingButNewLine:G(()=>jx,`skipEverythingButNewLine`),skipInlineComment:G(()=>rC,`skipInlineComment`),skipNewline:G(()=>Mx,`skipNewline`),skipSpaces:G(()=>kx,`skipSpaces`),skipToLineEnd:G(()=>Ax,`skipToLineEnd`),skipTrailingComment:G(()=>iC,`skipTrailingComment`),skipWhitespace:G(()=>Ox,`skipWhitespace`)}),G(jy,`Ui`),rC=jy,G(My,`Vi`),iC=My,G(Ny,`zi`),aC=Ny,G(Py,`Gi`),oC=Py,G(Fy,`Ki`),sC=Fy,G(Iy,`Dr`),G(Ly,`Ji`),cC=Ly,G(Ry,`qi`),lC=Ry,uC=`'`,dC=`"`,G(zy,`Xi`),fC=zy,G(By,`Qi`),pC=By,G(Vy,`Zi`),mC=Vy,G(Hy,`eo`),hC=Hy,G(Uy,`to`),G(Wy,`ro`),G(Gy,`no`),G(Ky,`uo`),G(qy,`io`),G(Jy,`oo`),G(Yy,`de`),gC=Yy(Ty),G(Xy,`gu`),G(Zy,`so`),_C=Yy(yv,0),vC={parse:Yy(Ey),formatAST:Yy(Dy),formatDoc:Yy(Oy),printToDoc:Yy(ky),printDocToString:Yy(Ay)},yC=mb});function xC(e){var t=[...arguments].slice(1),n=Array.from(typeof e==`string`?[e]:e);n[n.length-1]=n[n.length-1].replace(/\r?\n([\t ]*)$/,``);var r=n.reduce(function(e,t){var n=t.match(/\n([\t ]+|(?!\s).)/g);return n?e.concat(n.map(function(e){return e.match(/[\t ]/g)?.length??0})):e},[]);if(r.length){var i=RegExp(`
283
+ [ ]{`+Math.min.apply(Math,r)+`}`,`g`);n=n.map(function(e){return e.replace(i,`
284
+ `)})}n[0]=n[0].replace(/^\r?\n/,``);var a=n[0];return t.forEach(function(e,t){var r=a.match(/(?:^|\n)( *)$/),i=r?r[1]:``,o=e;typeof e==`string`&&e.includes(`
285
+ `)&&(o=String(e).split(`
286
+ `).map(function(e,t){return t===0?e:``+i+e}).join(`
287
+ `)),a+=o+n[t+1]}),a}var SC=K(()=>{G(xC,`dedent`)}),CC={};Gr(CC,{formatter:()=>TC});var wC,TC,EC=K(()=>{wC=qr(ii(),1),Mg(),bC(),SC(),TC=(0,wC.default)(2)(async(e,t)=>e===!1?t:e===`dedent`||e===!0?xC(t):(await yC.format(t,{parser:e,plugins:[jg],htmlWhitespaceSensitivity:`ignore`})).trim())}),DC,OC,kC=K(()=>{DC=G(function(e){return e.reduce(function(e,t){var n=t[0];return e[n]=t[1],e},{})},`fromEntries`),OC=typeof window<`u`&&window.document&&window.document.createElement?o.useLayoutEffect:o.useEffect}),AC,jC,MC,NC,PC,FC,IC,LC,RC,zC,BC,VC,HC,UC,WC,GC,KC,qC,JC,YC,XC,ZC,QC,$C,ew=K(()=>{AC=`top`,jC=`bottom`,MC=`right`,NC=`left`,PC=`auto`,FC=[AC,jC,MC,NC],IC=`start`,LC=`end`,RC=`clippingParents`,zC=`viewport`,BC=`popper`,VC=`reference`,HC=FC.reduce(function(e,t){return e.concat([t+`-`+IC,t+`-`+LC])},[]),UC=[].concat(FC,[PC]).reduce(function(e,t){return e.concat([t,t+`-`+IC,t+`-`+LC])},[]),WC=`beforeRead`,GC=`read`,KC=`afterRead`,qC=`beforeMain`,JC=`main`,YC=`afterMain`,XC=`beforeWrite`,ZC=`write`,QC=`afterWrite`,$C=[WC,GC,KC,qC,JC,YC,XC,ZC,QC]});function tw(e){return e?(e.nodeName||``).toLowerCase():null}var nw=K(()=>{G(tw,`getNodeName`)});function rw(e){if(e==null)return window;if(e.toString()!==`[object Window]`){var t=e.ownerDocument;return t&&t.defaultView||window}return e}var iw=K(()=>{G(rw,`getWindow`)});function aw(e){return e instanceof rw(e).Element||e instanceof Element}function ow(e){return e instanceof rw(e).HTMLElement||e instanceof HTMLElement}function sw(e){return typeof ShadowRoot>`u`?!1:e instanceof rw(e).ShadowRoot||e instanceof ShadowRoot}var cw=K(()=>{iw(),G(aw,`isElement`),G(ow,`isHTMLElement`),G(sw,`isShadowRoot`)});function lw(e){var t=e.state;Object.keys(t.elements).forEach(function(e){var n=t.styles[e]||{},r=t.attributes[e]||{},i=t.elements[e];!ow(i)||!tw(i)||(Object.assign(i.style,n),Object.keys(r).forEach(function(e){var t=r[e];t===!1?i.removeAttribute(e):i.setAttribute(e,t===!0?``:t)}))})}function uw(e){var t=e.state,n={popper:{position:t.options.strategy,left:`0`,top:`0`,margin:`0`},arrow:{position:`absolute`},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach(function(e){var r=t.elements[e],i=t.attributes[e]||{},a=Object.keys(t.styles.hasOwnProperty(e)?t.styles[e]:n[e]).reduce(function(e,t){return e[t]=``,e},{});!ow(r)||!tw(r)||(Object.assign(r.style,a),Object.keys(i).forEach(function(e){r.removeAttribute(e)}))})}}var dw,fw=K(()=>{nw(),cw(),G(lw,`applyStyles`),G(uw,`effect`),dw={name:`applyStyles`,enabled:!0,phase:`write`,fn:lw,effect:uw,requires:[`computeStyles`]}});function pw(e){return e.split(`-`)[0]}var mw=K(()=>{G(pw,`getBasePlacement`)}),hw,gw,_w,vw=K(()=>{hw=Math.max,gw=Math.min,_w=Math.round});function yw(){var e=navigator.userAgentData;return e!=null&&e.brands&&Array.isArray(e.brands)?e.brands.map(function(e){return e.brand+`/`+e.version}).join(` `):navigator.userAgent}var bw=K(()=>{G(yw,`getUAString`)});function xw(){return!/^((?!chrome|android).)*safari/i.test(yw())}var Sw=K(()=>{bw(),G(xw,`isLayoutViewport`)});function Cw(e,t,n){t===void 0&&(t=!1),n===void 0&&(n=!1);var r=e.getBoundingClientRect(),i=1,a=1;t&&ow(e)&&(i=e.offsetWidth>0&&_w(r.width)/e.offsetWidth||1,a=e.offsetHeight>0&&_w(r.height)/e.offsetHeight||1);var o=(aw(e)?rw(e):window).visualViewport,s=!xw()&&n,c=(r.left+(s&&o?o.offsetLeft:0))/i,l=(r.top+(s&&o?o.offsetTop:0))/a,u=r.width/i,d=r.height/a;return{width:u,height:d,top:l,right:c+u,bottom:l+d,left:c,x:c,y:l}}var ww=K(()=>{cw(),vw(),iw(),Sw(),G(Cw,`getBoundingClientRect`)});function Tw(e){var t=Cw(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}var Ew=K(()=>{ww(),G(Tw,`getLayoutRect`)});function Dw(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&sw(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}var Ow=K(()=>{cw(),G(Dw,`contains`)});function kw(e){return rw(e).getComputedStyle(e)}var Aw=K(()=>{iw(),G(kw,`getComputedStyle`)});function jw(e){return[`table`,`td`,`th`].indexOf(tw(e))>=0}var Mw=K(()=>{nw(),G(jw,`isTableElement`)});function Nw(e){return((aw(e)?e.ownerDocument:e.document)||window.document).documentElement}var Pw=K(()=>{cw(),G(Nw,`getDocumentElement`)});function Fw(e){return tw(e)===`html`?e:e.assignedSlot||e.parentNode||(sw(e)?e.host:null)||Nw(e)}var Iw=K(()=>{nw(),Pw(),cw(),G(Fw,`getParentNode`)});function Lw(e){return!ow(e)||kw(e).position===`fixed`?null:e.offsetParent}function Rw(e){var t=/firefox/i.test(yw());if(/Trident/i.test(yw())&&ow(e)&&kw(e).position===`fixed`)return null;var n=Fw(e);for(sw(n)&&(n=n.host);ow(n)&&[`html`,`body`].indexOf(tw(n))<0;){var r=kw(n);if(r.transform!==`none`||r.perspective!==`none`||r.contain===`paint`||[`transform`,`perspective`].indexOf(r.willChange)!==-1||t&&r.willChange===`filter`||t&&r.filter&&r.filter!==`none`)return n;n=n.parentNode}return null}function zw(e){for(var t=rw(e),n=Lw(e);n&&jw(n)&&kw(n).position===`static`;)n=Lw(n);return n&&(tw(n)===`html`||tw(n)===`body`&&kw(n).position===`static`)?t:n||Rw(e)||t}var Bw=K(()=>{iw(),nw(),Aw(),cw(),Mw(),Iw(),bw(),G(Lw,`getTrueOffsetParent`),G(Rw,`getContainingBlock`),G(zw,`getOffsetParent`)});function Vw(e){return[`top`,`bottom`].indexOf(e)>=0?`x`:`y`}var Hw=K(()=>{G(Vw,`getMainAxisFromPlacement`)});function Uw(e,t,n){return hw(e,gw(t,n))}function Ww(e,t,n){var r=Uw(e,t,n);return r>n?n:r}var Gw=K(()=>{vw(),G(Uw,`within`),G(Ww,`withinMaxClamp`)});function Kw(){return{top:0,right:0,bottom:0,left:0}}var qw=K(()=>{G(Kw,`getFreshSideObject`)});function Jw(e){return Object.assign({},Kw(),e)}var Yw=K(()=>{qw(),G(Jw,`mergePaddingObject`)});function Xw(e,t){return t.reduce(function(t,n){return t[n]=e,t},{})}var Zw=K(()=>{G(Xw,`expandToHashMap`)});function Qw(e){var t,n=e.state,r=e.name,i=e.options,a=n.elements.arrow,o=n.modifiersData.popperOffsets,s=pw(n.placement),c=Vw(s),l=[NC,MC].indexOf(s)>=0?`height`:`width`;if(!(!a||!o)){var u=eT(i.padding,n),d=Tw(a),f=c===`y`?AC:NC,p=c===`y`?jC:MC,m=n.rects.reference[l]+n.rects.reference[c]-o[c]-n.rects.popper[l],h=o[c]-n.rects.reference[c],g=zw(a),_=g?c===`y`?g.clientHeight||0:g.clientWidth||0:0,v=m/2-h/2,y=u[f],b=_-d[l]-u[p],x=_/2-d[l]/2+v,S=Uw(y,x,b),C=c;n.modifiersData[r]=(t={},t[C]=S,t.centerOffset=S-x,t)}}function $w(e){var t=e.state,n=e.options.element,r=n===void 0?`[data-popper-arrow]`:n;r!=null&&(typeof r==`string`&&(r=t.elements.popper.querySelector(r),!r)||Dw(t.elements.popper,r)&&(t.elements.arrow=r))}var eT,tT,nT=K(()=>{mw(),Ew(),Ow(),Bw(),Hw(),Gw(),Yw(),Zw(),ew(),eT=G(function(e,t){return e=typeof e==`function`?e(Object.assign({},t.rects,{placement:t.placement})):e,Jw(typeof e==`number`?Xw(e,FC):e)},`toPaddingObject`),G(Qw,`arrow`),G($w,`effect`),tT={name:`arrow`,enabled:!0,phase:`main`,fn:Qw,effect:$w,requires:[`popperOffsets`],requiresIfExists:[`preventOverflow`]}});function rT(e){return e.split(`-`)[1]}var iT=K(()=>{G(rT,`getVariation`)});function aT(e,t){var n=e.x,r=e.y,i=t.devicePixelRatio||1;return{x:_w(n*i)/i||0,y:_w(r*i)/i||0}}function oT(e){var t,n=e.popper,r=e.popperRect,i=e.placement,a=e.variation,o=e.offsets,s=e.position,c=e.gpuAcceleration,l=e.adaptive,u=e.roundOffsets,d=e.isFixed,f=o.x,p=f===void 0?0:f,m=o.y,h=m===void 0?0:m,g=typeof u==`function`?u({x:p,y:h}):{x:p,y:h};p=g.x,h=g.y;var _=o.hasOwnProperty(`x`),v=o.hasOwnProperty(`y`),y=NC,b=AC,x=window;if(l){var S=zw(n),C=`clientHeight`,w=`clientWidth`;if(S===rw(n)&&(S=Nw(n),kw(S).position!==`static`&&s===`absolute`&&(C=`scrollHeight`,w=`scrollWidth`)),S=S,i===AC||(i===NC||i===MC)&&a===LC){b=jC;var T=d&&S===x&&x.visualViewport?x.visualViewport.height:S[C];h-=T-r.height,h*=c?1:-1}if(i===NC||(i===AC||i===jC)&&a===LC){y=MC;var E=d&&S===x&&x.visualViewport?x.visualViewport.width:S[w];p-=E-r.width,p*=c?1:-1}}var D=Object.assign({position:s},l&&cT),O=u===!0?aT({x:p,y:h},rw(n)):{x:p,y:h};if(p=O.x,h=O.y,c){var k;return Object.assign({},D,(k={},k[b]=v?`0`:``,k[y]=_?`0`:``,k.transform=(x.devicePixelRatio||1)<=1?`translate(`+p+`px, `+h+`px)`:`translate3d(`+p+`px, `+h+`px, 0)`,k))}return Object.assign({},D,(t={},t[b]=v?h+`px`:``,t[y]=_?p+`px`:``,t.transform=``,t))}function sT(e){var t=e.state,n=e.options,r=n.gpuAcceleration,i=r===void 0?!0:r,a=n.adaptive,o=a===void 0?!0:a,s=n.roundOffsets,c=s===void 0?!0:s,l={placement:pw(t.placement),variation:rT(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:i,isFixed:t.options.strategy===`fixed`};t.modifiersData.popperOffsets!=null&&(t.styles.popper=Object.assign({},t.styles.popper,oT(Object.assign({},l,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:o,roundOffsets:c})))),t.modifiersData.arrow!=null&&(t.styles.arrow=Object.assign({},t.styles.arrow,oT(Object.assign({},l,{offsets:t.modifiersData.arrow,position:`absolute`,adaptive:!1,roundOffsets:c})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})}var cT,lT,uT=K(()=>{ew(),Bw(),iw(),Pw(),Aw(),mw(),iT(),vw(),cT={top:`auto`,right:`auto`,bottom:`auto`,left:`auto`},G(aT,`roundOffsetsByDPR`),G(oT,`mapToStyles`),G(sT,`computeStyles`),lT={name:`computeStyles`,enabled:!0,phase:`beforeWrite`,fn:sT,data:{}}});function dT(e){var t=e.state,n=e.instance,r=e.options,i=r.scroll,a=i===void 0?!0:i,o=r.resize,s=o===void 0?!0:o,c=rw(t.elements.popper),l=[].concat(t.scrollParents.reference,t.scrollParents.popper);return a&&l.forEach(function(e){e.addEventListener(`scroll`,n.update,fT)}),s&&c.addEventListener(`resize`,n.update,fT),function(){a&&l.forEach(function(e){e.removeEventListener(`scroll`,n.update,fT)}),s&&c.removeEventListener(`resize`,n.update,fT)}}var fT,pT,mT=K(()=>{iw(),fT={passive:!0},G(dT,`effect`),pT={name:`eventListeners`,enabled:!0,phase:`write`,fn:G(function(){},`fn`),effect:dT,data:{}}});function hT(e){return e.replace(/left|right|bottom|top/g,function(e){return gT[e]})}var gT,_T=K(()=>{gT={left:`right`,right:`left`,bottom:`top`,top:`bottom`},G(hT,`getOppositePlacement`)});function vT(e){return e.replace(/start|end/g,function(e){return yT[e]})}var yT,bT=K(()=>{yT={start:`end`,end:`start`},G(vT,`getOppositeVariationPlacement`)});function xT(e){var t=rw(e);return{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}var ST=K(()=>{iw(),G(xT,`getWindowScroll`)});function CT(e){return Cw(Nw(e)).left+xT(e).scrollLeft}var wT=K(()=>{ww(),Pw(),ST(),G(CT,`getWindowScrollBarX`)});function TT(e,t){var n=rw(e),r=Nw(e),i=n.visualViewport,a=r.clientWidth,o=r.clientHeight,s=0,c=0;if(i){a=i.width,o=i.height;var l=xw();(l||!l&&t===`fixed`)&&(s=i.offsetLeft,c=i.offsetTop)}return{width:a,height:o,x:s+CT(e),y:c}}var ET=K(()=>{iw(),Pw(),wT(),Sw(),G(TT,`getViewportRect`)});function DT(e){var t=Nw(e),n=xT(e),r=e.ownerDocument?.body,i=hw(t.scrollWidth,t.clientWidth,r?r.scrollWidth:0,r?r.clientWidth:0),a=hw(t.scrollHeight,t.clientHeight,r?r.scrollHeight:0,r?r.clientHeight:0),o=-n.scrollLeft+CT(e),s=-n.scrollTop;return kw(r||t).direction===`rtl`&&(o+=hw(t.clientWidth,r?r.clientWidth:0)-i),{width:i,height:a,x:o,y:s}}var OT=K(()=>{Pw(),Aw(),wT(),ST(),vw(),G(DT,`getDocumentRect`)});function kT(e){var t=kw(e),n=t.overflow,r=t.overflowX,i=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+i+r)}var AT=K(()=>{Aw(),G(kT,`isScrollParent`)});function jT(e){return[`html`,`body`,`#document`].indexOf(tw(e))>=0?e.ownerDocument.body:ow(e)&&kT(e)?e:jT(Fw(e))}var MT=K(()=>{Iw(),AT(),nw(),cw(),G(jT,`getScrollParent`)});function NT(e,t){t===void 0&&(t=[]);var n=jT(e),r=n===e.ownerDocument?.body,i=rw(n),a=r?[i].concat(i.visualViewport||[],kT(n)?n:[]):n,o=t.concat(a);return r?o:o.concat(NT(Fw(a)))}var PT=K(()=>{MT(),Iw(),iw(),AT(),G(NT,`listScrollParents`)});function FT(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}var IT=K(()=>{G(FT,`rectToClientRect`)});function LT(e,t){var n=Cw(e,!1,t===`fixed`);return n.top+=e.clientTop,n.left+=e.clientLeft,n.bottom=n.top+e.clientHeight,n.right=n.left+e.clientWidth,n.width=e.clientWidth,n.height=e.clientHeight,n.x=n.left,n.y=n.top,n}function RT(e,t,n){return t===zC?FT(TT(e,n)):aw(t)?LT(t,n):FT(DT(Nw(e)))}function zT(e){var t=NT(Fw(e)),n=[`absolute`,`fixed`].indexOf(kw(e).position)>=0&&ow(e)?zw(e):e;return aw(n)?t.filter(function(e){return aw(e)&&Dw(e,n)&&tw(e)!==`body`}):[]}function BT(e,t,n,r){var i=t===`clippingParents`?zT(e):[].concat(t),a=[].concat(i,[n]),o=a[0],s=a.reduce(function(t,n){var i=RT(e,n,r);return t.top=hw(i.top,t.top),t.right=gw(i.right,t.right),t.bottom=gw(i.bottom,t.bottom),t.left=hw(i.left,t.left),t},RT(e,o,r));return s.width=s.right-s.left,s.height=s.bottom-s.top,s.x=s.left,s.y=s.top,s}var VT=K(()=>{ew(),ET(),OT(),PT(),Bw(),Pw(),Aw(),cw(),ww(),Iw(),Ow(),nw(),IT(),vw(),G(LT,`getInnerBoundingClientRect`),G(RT,`getClientRectFromMixedType`),G(zT,`getClippingParents`),G(BT,`getClippingRect`)});function HT(e){var t=e.reference,n=e.element,r=e.placement,i=r?pw(r):null,a=r?rT(r):null,o=t.x+t.width/2-n.width/2,s=t.y+t.height/2-n.height/2,c;switch(i){case AC:c={x:o,y:t.y-n.height};break;case jC:c={x:o,y:t.y+t.height};break;case MC:c={x:t.x+t.width,y:s};break;case NC:c={x:t.x-n.width,y:s};break;default:c={x:t.x,y:t.y}}var l=i?Vw(i):null;if(l!=null){var u=l===`y`?`height`:`width`;switch(a){case IC:c[l]=c[l]-(t[u]/2-n[u]/2);break;case LC:c[l]=c[l]+(t[u]/2-n[u]/2);break;default:}}return c}var UT=K(()=>{mw(),iT(),Hw(),ew(),G(HT,`computeOffsets`)});function WT(e,t){t===void 0&&(t={});var n=t,r=n.placement,i=r===void 0?e.placement:r,a=n.strategy,o=a===void 0?e.strategy:a,s=n.boundary,c=s===void 0?RC:s,l=n.rootBoundary,u=l===void 0?zC:l,d=n.elementContext,f=d===void 0?BC:d,p=n.altBoundary,m=p===void 0?!1:p,h=n.padding,g=h===void 0?0:h,_=Jw(typeof g==`number`?Xw(g,FC):g),v=f===BC?VC:BC,y=e.rects.popper,b=e.elements[m?v:f],x=BT(aw(b)?b:b.contextElement||Nw(e.elements.popper),c,u,o),S=Cw(e.elements.reference),C=HT({reference:S,element:y,strategy:`absolute`,placement:i}),w=FT(Object.assign({},y,C)),T=f===BC?w:S,E={top:x.top-T.top+_.top,bottom:T.bottom-x.bottom+_.bottom,left:x.left-T.left+_.left,right:T.right-x.right+_.right},D=e.modifiersData.offset;if(f===BC&&D){var O=D[i];Object.keys(E).forEach(function(e){var t=[MC,jC].indexOf(e)>=0?1:-1,n=[AC,jC].indexOf(e)>=0?`y`:`x`;E[e]+=O[n]*t})}return E}var GT=K(()=>{VT(),Pw(),ww(),UT(),IT(),ew(),cw(),Yw(),Zw(),G(WT,`detectOverflow`)});function KT(e,t){t===void 0&&(t={});var n=t,r=n.placement,i=n.boundary,a=n.rootBoundary,o=n.padding,s=n.flipVariations,c=n.allowedAutoPlacements,l=c===void 0?UC:c,u=rT(r),d=u?s?HC:HC.filter(function(e){return rT(e)===u}):FC,f=d.filter(function(e){return l.indexOf(e)>=0});f.length===0&&(f=d);var p=f.reduce(function(t,n){return t[n]=WT(e,{placement:n,boundary:i,rootBoundary:a,padding:o})[pw(n)],t},{});return Object.keys(p).sort(function(e,t){return p[e]-p[t]})}var qT=K(()=>{iT(),ew(),GT(),mw(),G(KT,`computeAutoPlacement`)});function JT(e){if(pw(e)===PC)return[];var t=hT(e);return[vT(e),t,vT(t)]}function YT(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var i=n.mainAxis,a=i===void 0?!0:i,o=n.altAxis,s=o===void 0?!0:o,c=n.fallbackPlacements,l=n.padding,u=n.boundary,d=n.rootBoundary,f=n.altBoundary,p=n.flipVariations,m=p===void 0?!0:p,h=n.allowedAutoPlacements,g=t.options.placement,_=pw(g)===g,v=c||(_||!m?[hT(g)]:JT(g)),y=[g].concat(v).reduce(function(e,n){return e.concat(pw(n)===PC?KT(t,{placement:n,boundary:u,rootBoundary:d,padding:l,flipVariations:m,allowedAutoPlacements:h}):n)},[]),b=t.rects.reference,x=t.rects.popper,S=new Map,C=!0,w=y[0],T=0;T<y.length;T++){var E=y[T],D=pw(E),O=rT(E)===IC,k=[AC,jC].indexOf(D)>=0,ee=k?`width`:`height`,A=WT(t,{placement:E,boundary:u,rootBoundary:d,altBoundary:f,padding:l}),j=k?O?MC:NC:O?jC:AC;b[ee]>x[ee]&&(j=hT(j));var te=hT(j),ne=[];if(a&&ne.push(A[D]<=0),s&&ne.push(A[j]<=0,A[te]<=0),ne.every(function(e){return e})){w=E,C=!1;break}S.set(E,ne)}if(C)for(var re=m?3:1,ie=G(function(e){var t=y.find(function(t){var n=S.get(t);if(n)return n.slice(0,e).every(function(e){return e})});if(t)return w=t,`break`},`_loop`),ae=re;ae>0&&ie(ae)!==`break`;ae--);t.placement!==w&&(t.modifiersData[r]._skip=!0,t.placement=w,t.reset=!0)}}var XT,ZT=K(()=>{_T(),mw(),bT(),GT(),qT(),ew(),iT(),G(JT,`getExpandedFallbackPlacements`),G(YT,`flip`),XT={name:`flip`,enabled:!0,phase:`main`,fn:YT,requiresIfExists:[`offset`],data:{_skip:!1}}});function QT(e,t,n){return n===void 0&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function $T(e){return[AC,MC,jC,NC].some(function(t){return e[t]>=0})}function eE(e){var t=e.state,n=e.name,r=t.rects.reference,i=t.rects.popper,a=t.modifiersData.preventOverflow,o=WT(t,{elementContext:`reference`}),s=WT(t,{altBoundary:!0}),c=QT(o,r),l=QT(s,i,a),u=$T(c),d=$T(l);t.modifiersData[n]={referenceClippingOffsets:c,popperEscapeOffsets:l,isReferenceHidden:u,hasPopperEscaped:d},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":u,"data-popper-escaped":d})}var tE,nE=K(()=>{ew(),GT(),G(QT,`getSideOffsets`),G($T,`isAnySideFullyClipped`),G(eE,`hide`),tE={name:`hide`,enabled:!0,phase:`main`,requiresIfExists:[`preventOverflow`],fn:eE}});function rE(e,t,n){var r=pw(e),i=[NC,AC].indexOf(r)>=0?-1:1,a=typeof n==`function`?n(Object.assign({},t,{placement:e})):n,o=a[0],s=a[1];return o||=0,s=(s||0)*i,[NC,MC].indexOf(r)>=0?{x:s,y:o}:{x:o,y:s}}function iE(e){var t=e.state,n=e.options,r=e.name,i=n.offset,a=i===void 0?[0,0]:i,o=UC.reduce(function(e,n){return e[n]=rE(n,t.rects,a),e},{}),s=o[t.placement],c=s.x,l=s.y;t.modifiersData.popperOffsets!=null&&(t.modifiersData.popperOffsets.x+=c,t.modifiersData.popperOffsets.y+=l),t.modifiersData[r]=o}var aE,oE=K(()=>{mw(),ew(),G(rE,`distanceAndSkiddingToXY`),G(iE,`offset`),aE={name:`offset`,enabled:!0,phase:`main`,requires:[`popperOffsets`],fn:iE}});function sE(e){var t=e.state,n=e.name;t.modifiersData[n]=HT({reference:t.rects.reference,element:t.rects.popper,strategy:`absolute`,placement:t.placement})}var cE,lE=K(()=>{UT(),G(sE,`popperOffsets`),cE={name:`popperOffsets`,enabled:!0,phase:`read`,fn:sE,data:{}}});function uE(e){return e===`x`?`y`:`x`}var dE=K(()=>{G(uE,`getAltAxis`)});function fE(e){var t=e.state,n=e.options,r=e.name,i=n.mainAxis,a=i===void 0?!0:i,o=n.altAxis,s=o===void 0?!1:o,c=n.boundary,l=n.rootBoundary,u=n.altBoundary,d=n.padding,f=n.tether,p=f===void 0?!0:f,m=n.tetherOffset,h=m===void 0?0:m,g=WT(t,{boundary:c,rootBoundary:l,padding:d,altBoundary:u}),_=pw(t.placement),v=rT(t.placement),y=!v,b=Vw(_),x=uE(b),S=t.modifiersData.popperOffsets,C=t.rects.reference,w=t.rects.popper,T=typeof h==`function`?h(Object.assign({},t.rects,{placement:t.placement})):h,E=typeof T==`number`?{mainAxis:T,altAxis:T}:Object.assign({mainAxis:0,altAxis:0},T),D=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,O={x:0,y:0};if(S){if(a){var k=b===`y`?AC:NC,ee=b===`y`?jC:MC,A=b===`y`?`height`:`width`,j=S[b],te=j+g[k],ne=j-g[ee],re=p?-w[A]/2:0,ie=v===IC?C[A]:w[A],ae=v===IC?-w[A]:-C[A],oe=t.elements.arrow,se=p&&oe?Tw(oe):{width:0,height:0},ce=t.modifiersData[`arrow#persistent`]?t.modifiersData[`arrow#persistent`].padding:Kw(),le=ce[k],M=ce[ee],ue=Uw(0,C[A],se[A]),N=y?C[A]/2-re-ue-le-E.mainAxis:ie-ue-le-E.mainAxis,de=y?-C[A]/2+re+ue+M+E.mainAxis:ae+ue+M+E.mainAxis,P=t.elements.arrow&&zw(t.elements.arrow),fe=P?b===`y`?P.clientTop||0:P.clientLeft||0:0,pe=D?.[b]??0,me=j+N-pe-fe,he=j+de-pe,ge=Uw(p?gw(te,me):te,j,p?hw(ne,he):ne);S[b]=ge,O[b]=ge-j}if(s){var _e=b===`x`?AC:NC,F=b===`x`?jC:MC,I=S[x],ve=x===`y`?`height`:`width`,L=I+g[_e],ye=I-g[F],R=[AC,NC].indexOf(_)!==-1,z=D?.[x]??0,B=R?L:I-C[ve]-w[ve]-z+E.altAxis,be=R?I+C[ve]+w[ve]-z-E.altAxis:ye,xe=p&&R?Ww(B,I,be):Uw(p?B:L,I,p?be:ye);S[x]=xe,O[x]=xe-I}t.modifiersData[r]=O}}var pE,mE=K(()=>{ew(),mw(),Hw(),dE(),Gw(),Ew(),Bw(),GT(),iT(),qw(),vw(),G(fE,`preventOverflow`),pE={name:`preventOverflow`,enabled:!0,phase:`main`,fn:fE,requiresIfExists:[`offset`]}}),hE=K(()=>{});function gE(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}var _E=K(()=>{G(gE,`getHTMLElementScroll`)});function vE(e){return e===rw(e)||!ow(e)?xT(e):gE(e)}var yE=K(()=>{ST(),iw(),cw(),_E(),G(vE,`getNodeScroll`)});function bE(e){var t=e.getBoundingClientRect(),n=_w(t.width)/e.offsetWidth||1,r=_w(t.height)/e.offsetHeight||1;return n!==1||r!==1}function xE(e,t,n){n===void 0&&(n=!1);var r=ow(t),i=ow(t)&&bE(t),a=Nw(t),o=Cw(e,i,n),s={scrollLeft:0,scrollTop:0},c={x:0,y:0};return(r||!r&&!n)&&((tw(t)!==`body`||kT(a))&&(s=vE(t)),ow(t)?(c=Cw(t,!0),c.x+=t.clientLeft,c.y+=t.clientTop):a&&(c.x=CT(a))),{x:o.left+s.scrollLeft-c.x,y:o.top+s.scrollTop-c.y,width:o.width,height:o.height}}var SE=K(()=>{ww(),yE(),nw(),cw(),wT(),Pw(),AT(),vw(),G(bE,`isElementScaled`),G(xE,`getCompositeRect`)});function CE(e){var t=new Map,n=new Set,r=[];e.forEach(function(e){t.set(e.name,e)});function i(e){n.add(e.name),[].concat(e.requires||[],e.requiresIfExists||[]).forEach(function(e){if(!n.has(e)){var r=t.get(e);r&&i(r)}}),r.push(e)}return G(i,`sort`),e.forEach(function(e){n.has(e.name)||i(e)}),r}function wE(e){var t=CE(e);return $C.reduce(function(e,n){return e.concat(t.filter(function(e){return e.phase===n}))},[])}var TE=K(()=>{ew(),G(CE,`order`),G(wE,`orderModifiers`)});function EE(e){var t;return function(){return t||=new Promise(function(n){Promise.resolve().then(function(){t=void 0,n(e())})}),t}}var DE=K(()=>{G(EE,`debounce`)});function OE(e){var t=e.reduce(function(e,t){var n=e[t.name];return e[t.name]=n?Object.assign({},n,t,{options:Object.assign({},n.options,t.options),data:Object.assign({},n.data,t.data)}):t,e},{});return Object.keys(t).map(function(e){return t[e]})}var kE=K(()=>{G(OE,`mergeByName`)});function AE(){return![...arguments].some(function(e){return!(e&&typeof e.getBoundingClientRect==`function`)})}function jE(e){e===void 0&&(e={});var t=e,n=t.defaultModifiers,r=n===void 0?[]:n,i=t.defaultOptions,a=i===void 0?ME:i;return G(function(e,t,n){n===void 0&&(n=a);var i={placement:`bottom`,orderedModifiers:[],options:Object.assign({},ME,a),modifiersData:{},elements:{reference:e,popper:t},attributes:{},styles:{}},o=[],s=!1,c={state:i,setOptions:G(function(n){var o=typeof n==`function`?n(i.options):n;return u(),i.options=Object.assign({},a,i.options,o),i.scrollParents={reference:aw(e)?NT(e):e.contextElement?NT(e.contextElement):[],popper:NT(t)},i.orderedModifiers=wE(OE([].concat(r,i.options.modifiers))).filter(function(e){return e.enabled}),l(),c.update()},`setOptions`),forceUpdate:G(function(){if(!s){var e=i.elements,t=e.reference,n=e.popper;if(AE(t,n)){i.rects={reference:xE(t,zw(n),i.options.strategy===`fixed`),popper:Tw(n)},i.reset=!1,i.placement=i.options.placement,i.orderedModifiers.forEach(function(e){return i.modifiersData[e.name]=Object.assign({},e.data)});for(var r=0;r<i.orderedModifiers.length;r++){if(i.reset===!0){i.reset=!1,r=-1;continue}var a=i.orderedModifiers[r],o=a.fn,l=a.options,u=l===void 0?{}:l,d=a.name;typeof o==`function`&&(i=o({state:i,options:u,name:d,instance:c})||i)}}}},`forceUpdate`),update:EE(function(){return new Promise(function(e){c.forceUpdate(),e(i)})}),destroy:G(function(){u(),s=!0},`destroy`)};if(!AE(e,t))return c;c.setOptions(n).then(function(e){!s&&n.onFirstUpdate&&n.onFirstUpdate(e)});function l(){i.orderedModifiers.forEach(function(e){var t=e.name,n=e.options,r=n===void 0?{}:n,a=e.effect;if(typeof a==`function`){var s=a({state:i,name:t,instance:c,options:r}),l=G(function(){},`noopFn`);o.push(s||l)}})}G(l,`runModifierEffects`);function u(){o.forEach(function(e){return e()}),o=[]}return G(u,`cleanupModifierEffects`),c},`createPopper`)}var ME,NE=K(()=>{SE(),Ew(),PT(),Bw(),TE(),DE(),kE(),cw(),ME={placement:`bottom`,modifiers:[],strategy:`absolute`},G(AE,`areValidElements`),G(jE,`popperGenerator`)}),PE,FE,IE=K(()=>{NE(),mT(),lE(),uT(),fw(),oE(),ZT(),mE(),nT(),nE(),hE(),PE=[pT,cE,lT,dw,aE,XT,pE,tT,tE],FE=jE({defaultModifiers:PE})}),LE=K(()=>{ew(),hE(),IE()}),RE=q((e,t)=>{var n=typeof Element<`u`,r=typeof Map==`function`,i=typeof Set==`function`,a=typeof ArrayBuffer==`function`&&!!ArrayBuffer.isView;function o(e,t){if(e===t)return!0;if(e&&t&&typeof e==`object`&&typeof t==`object`){if(e.constructor!==t.constructor)return!1;var s,c,l;if(Array.isArray(e)){if(s=e.length,s!=t.length)return!1;for(c=s;c--!==0;)if(!o(e[c],t[c]))return!1;return!0}var u;if(r&&e instanceof Map&&t instanceof Map){if(e.size!==t.size)return!1;for(u=e.entries();!(c=u.next()).done;)if(!t.has(c.value[0]))return!1;for(u=e.entries();!(c=u.next()).done;)if(!o(c.value[1],t.get(c.value[0])))return!1;return!0}if(i&&e instanceof Set&&t instanceof Set){if(e.size!==t.size)return!1;for(u=e.entries();!(c=u.next()).done;)if(!t.has(c.value[0]))return!1;return!0}if(a&&ArrayBuffer.isView(e)&&ArrayBuffer.isView(t)){if(s=e.length,s!=t.length)return!1;for(c=s;c--!==0;)if(e[c]!==t[c])return!1;return!0}if(e.constructor===RegExp)return e.source===t.source&&e.flags===t.flags;if(e.valueOf!==Object.prototype.valueOf&&typeof e.valueOf==`function`&&typeof t.valueOf==`function`)return e.valueOf()===t.valueOf();if(e.toString!==Object.prototype.toString&&typeof e.toString==`function`&&typeof t.toString==`function`)return e.toString()===t.toString();if(l=Object.keys(e),s=l.length,s!==Object.keys(t).length)return!1;for(c=s;c--!==0;)if(!Object.prototype.hasOwnProperty.call(t,l[c]))return!1;if(n&&e instanceof Element)return!1;for(c=s;c--!==0;)if(!((l[c]===`_owner`||l[c]===`__v`||l[c]===`__o`)&&e.$$typeof)&&!o(e[l[c]],t[l[c]]))return!1;return!0}return e!==e&&t!==t}G(o,`equal`),t.exports=G(function(e,t){try{return o(e,t)}catch(e){if((e.message||``).match(/stack|recursion/i))return console.warn(`react-fast-compare cannot handle circular refs`),!1;throw e}},`isEqual`)}),zE,BE,VE,HE=K(()=>{LE(),zE=qr(RE()),kC(),BE=[],VE=G(function(e,t,n){n===void 0&&(n={});var r=o.useRef(null),i={onFirstUpdate:n.onFirstUpdate,placement:n.placement||`bottom`,strategy:n.strategy||`absolute`,modifiers:n.modifiers||BE},a=o.useState({styles:{popper:{position:i.strategy,left:`0`,top:`0`},arrow:{position:`absolute`}},attributes:{}}),s=a[0],c=a[1],l=o.useMemo(function(){return{name:`updateState`,enabled:!0,phase:`write`,fn:G(function(e){var t=e.state,n=Object.keys(t.elements);Fr.flushSync(function(){c({styles:DC(n.map(function(e){return[e,t.styles[e]||{}]})),attributes:DC(n.map(function(e){return[e,t.attributes[e]]}))})})},`fn`),requires:[`computeStyles`]}},[]),u=o.useMemo(function(){var e={onFirstUpdate:i.onFirstUpdate,placement:i.placement,strategy:i.strategy,modifiers:[].concat(i.modifiers,[l,{name:`applyStyles`,enabled:!1}])};return(0,zE.default)(r.current,e)?r.current||e:(r.current=e,e)},[i.onFirstUpdate,i.placement,i.strategy,i.modifiers,l]),d=o.useRef();return OC(function(){d.current&&d.current.setOptions(u)},[u]),OC(function(){if(!(e==null||t==null)){var r=(n.createPopper||FE)(e,t,u);return d.current=r,function(){r.destroy(),d.current=null}}},[e,t,n.createPopper]),{state:d.current?d.current.state:null,styles:s.styles,attributes:s.attributes,update:d.current?d.current.update:null,forceUpdate:d.current?d.current.forceUpdate:null}},`usePopper`)}),UE=K(()=>{HE()});function WE(e){var t=o.useRef(e);return t.current=e,o.useCallback(function(){return t.current},[])}function GE(e){var t=e.initial,n=e.value,r=e.onChange,i=r===void 0?JE:r;if(t===void 0&&n===void 0)throw TypeError(`Either "value" or "initial" variable must be set. Now both are undefined`);var a=o.useState(t),s=a[0],c=a[1],l=WE(s),u=o.useCallback(function(e){var t=l(),n=typeof e==`function`?e(t):e;typeof n.persist==`function`&&n.persist(),c(n),typeof i==`function`&&i(n)},[l,i]),d=n!==void 0;return[d?n:s,d?i:u]}function KE(e,t){return e===void 0&&(e=0),t===void 0&&(t=0),function(){return{width:0,height:0,top:t,right:e,bottom:t,left:e,x:0,y:0,toJSON:G(function(){return null},`toJSON`)}}}function qE(e,t){var n,r,i;e===void 0&&(e={}),t===void 0&&(t={});var a=Object.keys(ZE).reduce(function(e,t){var n;return Jr({},e,(n={},n[t]=e[t]===void 0?ZE[t]:e[t],n))},e),s=o.useMemo(function(){return[{name:`offset`,options:{offset:a.offset}}]},Array.isArray(a.offset)?a.offset:[]),c=Jr({},t,{placement:t.placement||a.placement,modifiers:t.modifiers||s}),l=o.useState(null),u=l[0],d=l[1],f=o.useState(null),p=f[0],m=f[1],h=GE({initial:a.defaultVisible,value:a.visible,onChange:a.onVisibleChange}),g=h[0],_=h[1],v=o.useRef();o.useEffect(function(){return function(){return clearTimeout(v.current)}},[]);var y=VE(a.followCursor?XE:u,p,c),b=y.styles,x=y.attributes,S=ai(y,YE),C=S.update,w=WE({visible:g,triggerRef:u,tooltipRef:p,finalConfig:a}),T=o.useCallback(function(e){return Array.isArray(a.trigger)?a.trigger.includes(e):a.trigger===e},Array.isArray(a.trigger)?a.trigger:[a.trigger]),E=o.useCallback(function(){clearTimeout(v.current),v.current=window.setTimeout(function(){return _(!1)},a.delayHide)},[a.delayHide,_]),D=o.useCallback(function(){clearTimeout(v.current),v.current=window.setTimeout(function(){return _(!0)},a.delayShow)},[a.delayShow,_]),O=o.useCallback(function(){w().visible?E():D()},[w,E,D]);o.useEffect(function(){if(w().finalConfig.closeOnOutsideClick){var e=G(function(e){var t,n=w(),r=n.tooltipRef,i=n.triggerRef,a=(e.composedPath==null||(t=e.composedPath())==null?void 0:t[0])||e.target;a instanceof Node&&r!=null&&i!=null&&!r.contains(a)&&!i.contains(a)&&E()},`handleClickOutside`);return document.addEventListener(`mousedown`,e),function(){return document.removeEventListener(`mousedown`,e)}}},[w,E]),o.useEffect(function(){if(!(u==null||!T(`click`)))return u.addEventListener(`click`,O),function(){return u.removeEventListener(`click`,O)}},[u,T,O]),o.useEffect(function(){if(!(u==null||!T(`double-click`)))return u.addEventListener(`dblclick`,O),function(){return u.removeEventListener(`dblclick`,O)}},[u,T,O]),o.useEffect(function(){if(!(u==null||!T(`right-click`))){var e=G(function(e){e.preventDefault(),O()},`preventDefaultAndToggle`);return u.addEventListener(`contextmenu`,e),function(){return u.removeEventListener(`contextmenu`,e)}}},[u,T,O]),o.useEffect(function(){if(!(u==null||!T(`focus`)))return u.addEventListener(`focus`,D),u.addEventListener(`blur`,E),function(){u.removeEventListener(`focus`,D),u.removeEventListener(`blur`,E)}},[u,T,D,E]),o.useEffect(function(){if(!(u==null||!T(`hover`)))return u.addEventListener(`mouseenter`,D),u.addEventListener(`mouseleave`,E),function(){u.removeEventListener(`mouseenter`,D),u.removeEventListener(`mouseleave`,E)}},[u,T,D,E]),o.useEffect(function(){if(!(p==null||!T(`hover`)||!w().finalConfig.interactive))return p.addEventListener(`mouseenter`,D),p.addEventListener(`mouseleave`,E),function(){p.removeEventListener(`mouseenter`,D),p.removeEventListener(`mouseleave`,E)}},[p,T,D,E,w]);var k=S==null||(n=S.state)==null||(r=n.modifiersData)==null||(i=r.hide)==null?void 0:i.isReferenceHidden;return o.useEffect(function(){a.closeOnTriggerHidden&&k&&E()},[a.closeOnTriggerHidden,E,k]),o.useEffect(function(){if(!a.followCursor||u==null)return;function e(e){var t=e.clientX,n=e.clientY;XE.getBoundingClientRect=KE(t,n),C?.()}return G(e,`setMousePosition`),u.addEventListener(`mousemove`,e),function(){return u.removeEventListener(`mousemove`,e)}},[a.followCursor,u,C]),o.useEffect(function(){if(!(p==null||C==null||a.mutationObserverOptions==null)){var e=new MutationObserver(C);return e.observe(p,a.mutationObserverOptions),function(){return e.disconnect()}}},[a.mutationObserverOptions,p,C]),Jr({getArrowProps:G(function(e){return e===void 0&&(e={}),Jr({},e,x.arrow,{style:Jr({},e.style,b.arrow),"data-popper-arrow":!0})},`getArrowProps`),getTooltipProps:G(function(e){return e===void 0&&(e={}),Jr({},e,{style:Jr({},e.style,b.popper)},x.popper,{"data-popper-interactive":a.interactive})},`getTooltipProps`),setTooltipRef:m,setTriggerRef:d,tooltipRef:p,triggerRef:u,visible:g},S)}var JE,YE,XE,ZE,QE=K(()=>{oi(),Yr(),UE(),G(WE,`useGetLatest`),JE=G(function(){},`noop`),G(GE,`useControlledState`),G(KE,`generateBoundingClientRect`),YE=[`styles`,`attributes`],XE={getBoundingClientRect:KE()},ZE={closeOnOutsideClick:!0,closeOnTriggerHidden:!1,defaultVisible:!1,delayHide:0,delayShow:0,followCursor:!1,interactive:!1,mutationObserverOptions:{attributes:!0,childList:!0,subtree:!0},offset:[0,6],trigger:`hover`},G(qE,`usePopperTooltip`)}),$E,eD,tD,nD,rD,iD,aD=K(()=>{$E=qr(ii(),1),eD=(0,$E.default)(1e3)((e,t,n,r=0)=>t.split(`-`)[0]===e?n:r),tD=8,nD=H.div({position:`absolute`,borderStyle:`solid`},({placement:e})=>{let t=0,n=0;switch(!0){case e.startsWith(`left`)||e.startsWith(`right`):n=8;break;case e.startsWith(`top`)||e.startsWith(`bottom`):t=8;break;default:}return{transform:`translate3d(${t}px, ${n}px, 0px)`}},({theme:e,color:t,placement:n})=>({bottom:`${eD(`top`,n,`${tD*-1}px`,`auto`)}`,top:`${eD(`bottom`,n,`${tD*-1}px`,`auto`)}`,right:`${eD(`left`,n,`${tD*-1}px`,`auto`)}`,left:`${eD(`right`,n,`${tD*-1}px`,`auto`)}`,borderBottomWidth:`${eD(`top`,n,`0`,tD)}px`,borderTopWidth:`${eD(`bottom`,n,`0`,tD)}px`,borderRightWidth:`${eD(`left`,n,`0`,tD)}px`,borderLeftWidth:`${eD(`right`,n,`0`,tD)}px`,borderTopColor:eD(`top`,n,e.color[t]||t||e.base===`light`?cr(e.background.app):e.background.app,`transparent`),borderBottomColor:eD(`bottom`,n,e.color[t]||t||e.base===`light`?cr(e.background.app):e.background.app,`transparent`),borderLeftColor:eD(`left`,n,e.color[t]||t||e.base===`light`?cr(e.background.app):e.background.app,`transparent`),borderRightColor:eD(`right`,n,e.color[t]||t||e.base===`light`?cr(e.background.app):e.background.app,`transparent`)})),rD=H.div(({hidden:e})=>({display:e?`none`:`inline-block`,zIndex:2147483647}),({theme:e,color:t,hasChrome:n})=>n?{background:t&&e.color[t]||t||e.base===`light`?cr(e.background.app):e.background.app,filter:`
288
+ drop-shadow(0px 5px 5px rgba(0,0,0,0.05))
289
+ drop-shadow(0 1px 3px rgba(0,0,0,0.1))
290
+ `,borderRadius:e.appBorderRadius+2,fontSize:e.typography.size.s1}:{}),iD=o.forwardRef(({placement:e=`top`,hasChrome:t=!0,children:n,arrowProps:r={},tooltipRef:i,color:a,withArrows:s,...c},l)=>o.createElement(rD,{"data-testid":`tooltip`,hasChrome:t,ref:l,...c,color:a},t&&s&&o.createElement(nD,{placement:e,...r,color:a}),n)),iD.displayName=`Tooltip`}),oD={};Gr(oD,{WithToolTipState:()=>dD,WithTooltip:()=>dD,WithTooltipPure:()=>uD});var sD,cD,lD,uD,dD,fD=K(()=>{ri(),QE(),aD(),{document:sD}=ni,cD=H.div`
291
+ display: inline-block;
292
+ cursor: ${e=>e.trigger===`hover`||e.trigger.includes(`hover`)?`default`:`pointer`};
293
+ `,lD=H.g`
294
+ cursor: ${e=>e.trigger===`hover`||e.trigger.includes(`hover`)?`default`:`pointer`};
295
+ `,uD=G(({svg:e=!1,trigger:t=`click`,closeOnOutsideClick:n=!1,placement:r=`top`,modifiers:i=[{name:`preventOverflow`,options:{padding:8}},{name:`offset`,options:{offset:[8,8]}},{name:`arrow`,options:{padding:8}}],hasChrome:a=!0,defaultVisible:s=!1,withArrows:c,offset:l,tooltip:u,children:d,closeOnTriggerHidden:f,mutationObserverOptions:p,delayHide:m,visible:h,interactive:g,delayShow:_,strategy:v,followCursor:y,onVisibleChange:b,...x})=>{let S=e?lD:cD,{getArrowProps:C,getTooltipProps:w,setTooltipRef:T,setTriggerRef:E,visible:D,state:O}=qE({trigger:t,placement:r,defaultVisible:s,delayHide:m,interactive:g,closeOnOutsideClick:n,closeOnTriggerHidden:f,onVisibleChange:b,delayShow:_,followCursor:y,mutationObserverOptions:p,visible:h,offset:l},{modifiers:i,strategy:v}),k=D?o.createElement(iD,{placement:O?.placement,ref:T,hasChrome:a,arrowProps:C(),withArrows:c,...w()},typeof u==`function`?u({onHide:G(()=>b(!1),`onHide`)}):u):null;return o.createElement(o.Fragment,null,o.createElement(S,{trigger:t,ref:E,...x},d),D&&Ir.createPortal(k,sD.body))},`WithTooltipPure`),dD=G(({startOpen:e=!1,onVisibleChange:t,...n})=>{let[r,i]=(0,o.useState)(e),a=(0,o.useCallback)(e=>{t&&t(e)===!1||i(e)},[t]);return(0,o.useEffect)(()=>{let e=G(()=>a(!1),`hide`);sD.addEventListener(`keydown`,e,!1);let t=Array.from(sD.getElementsByTagName(`iframe`)),n=[];return t.forEach(t=>{let r=G(()=>{try{t.contentWindow.document&&(t.contentWindow.document.addEventListener(`click`,e),n.push(()=>{try{t.contentWindow.document.removeEventListener(`click`,e)}catch{}}))}catch{}},`bind`);r(),t.addEventListener(`load`,r),n.push(()=>{t.removeEventListener(`load`,r)})}),()=>{sD.removeEventListener(`keydown`,e),n.forEach(e=>{e()})}}),o.createElement(uD,{...n,visible:r,onVisibleChange:a})},`WithToolTipState`)}),$=G(({...e},t)=>{let n=[e.class,e.className];return delete e.class,e.className=[`sbdocs`,`sbdocs-${t}`,...n].filter(Boolean).join(` `),e},`nameSpaceClassNames`);Yr(),Zr(),$r();function pD(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,Qr(e,t)}G(pD,`_inheritsLoose`),ti(),$r();function mD(e){try{return Function.toString.call(e).indexOf(`[native code]`)!==-1}catch{return typeof e==`function`}}G(mD,`_isNativeFunction`);function hD(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch{}return(hD=G(function(){return!!e},`_isNativeReflectConstruct`))()}G(hD,`_isNativeReflectConstruct`),$r();function gD(e,t,n){if(hD())return Reflect.construct.apply(null,arguments);var r=[null];r.push.apply(r,t);var i=new(e.bind.apply(e,r));return n&&Qr(i,n.prototype),i}G(gD,`_construct`);function _D(e){var t=typeof Map==`function`?new Map:void 0;return _D=G(function(e){if(e===null||!mD(e))return e;if(typeof e!=`function`)throw TypeError(`Super expression must either be null or a function`);if(t!==void 0){if(t.has(e))return t.get(e);t.set(e,n)}function n(){return gD(e,arguments,ei(this).constructor)}return G(n,`Wrapper`),n.prototype=Object.create(e.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),Qr(n,e)},`_wrapNativeSuper`),_D(e)}G(_D,`_wrapNativeSuper`);var vD={1:`Passed invalid arguments to hsl, please pass multiple numbers e.g. hsl(360, 0.75, 0.4) or an object e.g. rgb({ hue: 255, saturation: 0.4, lightness: 0.75 }).
296
+
297
+ `,2:`Passed invalid arguments to hsla, please pass multiple numbers e.g. hsla(360, 0.75, 0.4, 0.7) or an object e.g. rgb({ hue: 255, saturation: 0.4, lightness: 0.75, alpha: 0.7 }).
298
+
299
+ `,3:`Passed an incorrect argument to a color function, please pass a string representation of a color.
300
+
301
+ `,4:`Couldn't generate valid rgb string from %s, it returned %s.
302
+
303
+ `,5:`Couldn't parse the color string. Please provide the color as a string in hex, rgb, rgba, hsl or hsla notation.
304
+
305
+ `,6:`Passed invalid arguments to rgb, please pass multiple numbers e.g. rgb(255, 205, 100) or an object e.g. rgb({ red: 255, green: 205, blue: 100 }).
306
+
307
+ `,7:`Passed invalid arguments to rgba, please pass multiple numbers e.g. rgb(255, 205, 100, 0.75) or an object e.g. rgb({ red: 255, green: 205, blue: 100, alpha: 0.75 }).
308
+
309
+ `,8:`Passed invalid argument to toColorString, please pass a RgbColor, RgbaColor, HslColor or HslaColor object.
310
+
311
+ `,9:`Please provide a number of steps to the modularScale helper.
312
+
313
+ `,10:`Please pass a number or one of the predefined scales to the modularScale helper as the ratio.
314
+
315
+ `,11:`Invalid value passed as base to modularScale, expected number or em string but got "%s"
316
+
317
+ `,12:`Expected a string ending in "px" or a number passed as the first argument to %s(), got "%s" instead.
318
+
319
+ `,13:`Expected a string ending in "px" or a number passed as the second argument to %s(), got "%s" instead.
320
+
321
+ `,14:`Passed invalid pixel value ("%s") to %s(), please pass a value like "12px" or 12.
322
+
323
+ `,15:`Passed invalid base value ("%s") to %s(), please pass a value like "12px" or 12.
324
+
325
+ `,16:`You must provide a template to this method.
326
+
327
+ `,17:`You passed an unsupported selector state to this method.
328
+
329
+ `,18:`minScreen and maxScreen must be provided as stringified numbers with the same units.
330
+
331
+ `,19:`fromSize and toSize must be provided as stringified numbers with the same units.
332
+
333
+ `,20:`expects either an array of objects or a single object with the properties prop, fromSize, and toSize.
334
+
335
+ `,21:"expects the objects in the first argument array to have the properties `prop`, `fromSize`, and `toSize`.\n\n",22:"expects the first argument object to have the properties `prop`, `fromSize`, and `toSize`.\n\n",23:`fontFace expects a name of a font-family.
336
+
337
+ `,24:`fontFace expects either the path to the font file(s) or a name of a local copy.
338
+
339
+ `,25:`fontFace expects localFonts to be an array.
340
+
341
+ `,26:`fontFace expects fileFormats to be an array.
342
+
343
+ `,27:`radialGradient requries at least 2 color-stops to properly render.
344
+
345
+ `,28:`Please supply a filename to retinaImage() as the first argument.
346
+
347
+ `,29:`Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'.
348
+
349
+ `,30:"Passed an invalid value to `height` or `width`. Please provide a pixel based unit.\n\n",31:`The animation shorthand only takes 8 arguments. See the specification for more information: http://mdn.io/animation
350
+
351
+ `,32:`To pass multiple animations please supply them in arrays, e.g. animation(['rotate', '2s'], ['move', '1s'])
352
+ To pass a single animation please supply them in simple values, e.g. animation('rotate', '2s')
353
+
354
+ `,33:`The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation
355
+
356
+ `,34:`borderRadius expects a radius value as a string or number as the second argument.
357
+
358
+ `,35:`borderRadius expects one of "top", "bottom", "left" or "right" as the first argument.
359
+
360
+ `,36:`Property must be a string value.
361
+
362
+ `,37:`Syntax Error at %s.
363
+
364
+ `,38:`Formula contains a function that needs parentheses at %s.
365
+
366
+ `,39:`Formula is missing closing parenthesis at %s.
367
+
368
+ `,40:`Formula has too many closing parentheses at %s.
369
+
370
+ `,41:`All values in a formula must have the same unit or be unitless.
371
+
372
+ `,42:`Please provide a number of steps to the modularScale helper.
373
+
374
+ `,43:`Please pass a number or one of the predefined scales to the modularScale helper as the ratio.
375
+
376
+ `,44:`Invalid value passed as base to modularScale, expected number or em/rem string but got %s.
377
+
378
+ `,45:`Passed invalid argument to hslToColorString, please pass a HslColor or HslaColor object.
379
+
380
+ `,46:`Passed invalid argument to rgbToColorString, please pass a RgbColor or RgbaColor object.
381
+
382
+ `,47:`minScreen and maxScreen must be provided as stringified numbers with the same units.
383
+
384
+ `,48:`fromSize and toSize must be provided as stringified numbers with the same units.
385
+
386
+ `,49:`Expects either an array of objects or a single object with the properties prop, fromSize, and toSize.
387
+
388
+ `,50:`Expects the objects in the first argument array to have the properties prop, fromSize, and toSize.
389
+
390
+ `,51:`Expects the first argument object to have the properties prop, fromSize, and toSize.
391
+
392
+ `,52:`fontFace expects either the path to the font file(s) or a name of a local copy.
393
+
394
+ `,53:`fontFace expects localFonts to be an array.
395
+
396
+ `,54:`fontFace expects fileFormats to be an array.
397
+
398
+ `,55:`fontFace expects a name of a font-family.
399
+
400
+ `,56:`linearGradient requries at least 2 color-stops to properly render.
401
+
402
+ `,57:`radialGradient requries at least 2 color-stops to properly render.
403
+
404
+ `,58:`Please supply a filename to retinaImage() as the first argument.
405
+
406
+ `,59:`Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'.
407
+
408
+ `,60:"Passed an invalid value to `height` or `width`. Please provide a pixel based unit.\n\n",61:`Property must be a string value.
409
+
410
+ `,62:`borderRadius expects a radius value as a string or number as the second argument.
411
+
412
+ `,63:`borderRadius expects one of "top", "bottom", "left" or "right" as the first argument.
413
+
414
+ `,64:`The animation shorthand only takes 8 arguments. See the specification for more information: http://mdn.io/animation.
415
+
416
+ `,65:`To pass multiple animations please supply them in arrays, e.g. animation(['rotate', '2s'], ['move', '1s'])\\nTo pass a single animation please supply them in simple values, e.g. animation('rotate', '2s').
417
+
418
+ `,66:`The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation.
419
+
420
+ `,67:`You must provide a template to this method.
421
+
422
+ `,68:`You passed an unsupported selector state to this method.
423
+
424
+ `,69:`Expected a string ending in "px" or a number passed as the first argument to %s(), got %s instead.
425
+
426
+ `,70:`Expected a string ending in "px" or a number passed as the second argument to %s(), got %s instead.
427
+
428
+ `,71:`Passed invalid pixel value %s to %s(), please pass a value like "12px" or 12.
429
+
430
+ `,72:`Passed invalid base value %s to %s(), please pass a value like "12px" or 12.
431
+
432
+ `,73:`Please provide a valid CSS variable.
433
+
434
+ `,74:`CSS variable not found and no default was provided.
435
+
436
+ `,75:`important requires a valid style object, got a %s instead.
437
+
438
+ `,76:`fromSize and toSize must be provided as stringified numbers with the same units as minScreen and maxScreen.
439
+
440
+ `,77:`remToPx expects a value in "rem" but you provided it in "%s".
441
+
442
+ `,78:`base must be set in "px" or "%" but you set it in "%s".
443
+ `};function yD(){var e=[...arguments],t=e[0],n=[],r;for(r=1;r<e.length;r+=1)n.push(e[r]);return n.forEach(function(e){t=t.replace(/%[a-z]/,e)}),t}G(yD,`format`);var bD=function(e){pD(t,e);function t(t){for(var n,r=arguments.length,i=Array(r>1?r-1:0),a=1;a<r;a++)i[a-1]=arguments[a];return n=e.call(this,yD.apply(void 0,[vD[t]].concat(i)))||this,Xr(n)}return G(t,`PolishedError`),t}(_D(Error));function xD(e){return Math.round(e*255)}G(xD,`colorToInt`);function SD(e,t,n){return xD(e)+`,`+xD(t)+`,`+xD(n)}G(SD,`convertToInt`);function CD(e,t,n,r){if(r===void 0&&(r=SD),t===0)return r(n,n,n);var i=(e%360+360)%360/60,a=(1-Math.abs(2*n-1))*t,o=a*(1-Math.abs(i%2-1)),s=0,c=0,l=0;i>=0&&i<1?(s=a,c=o):i>=1&&i<2?(s=o,c=a):i>=2&&i<3?(c=a,l=o):i>=3&&i<4?(c=o,l=a):i>=4&&i<5?(s=o,l=a):i>=5&&i<6&&(s=a,l=o);var u=n-a/2,d=s+u,f=c+u,p=l+u;return r(d,f,p)}G(CD,`hslToRgb`);var wD={aliceblue:`f0f8ff`,antiquewhite:`faebd7`,aqua:`00ffff`,aquamarine:`7fffd4`,azure:`f0ffff`,beige:`f5f5dc`,bisque:`ffe4c4`,black:`000`,blanchedalmond:`ffebcd`,blue:`0000ff`,blueviolet:`8a2be2`,brown:`a52a2a`,burlywood:`deb887`,cadetblue:`5f9ea0`,chartreuse:`7fff00`,chocolate:`d2691e`,coral:`ff7f50`,cornflowerblue:`6495ed`,cornsilk:`fff8dc`,crimson:`dc143c`,cyan:`00ffff`,darkblue:`00008b`,darkcyan:`008b8b`,darkgoldenrod:`b8860b`,darkgray:`a9a9a9`,darkgreen:`006400`,darkgrey:`a9a9a9`,darkkhaki:`bdb76b`,darkmagenta:`8b008b`,darkolivegreen:`556b2f`,darkorange:`ff8c00`,darkorchid:`9932cc`,darkred:`8b0000`,darksalmon:`e9967a`,darkseagreen:`8fbc8f`,darkslateblue:`483d8b`,darkslategray:`2f4f4f`,darkslategrey:`2f4f4f`,darkturquoise:`00ced1`,darkviolet:`9400d3`,deeppink:`ff1493`,deepskyblue:`00bfff`,dimgray:`696969`,dimgrey:`696969`,dodgerblue:`1e90ff`,firebrick:`b22222`,floralwhite:`fffaf0`,forestgreen:`228b22`,fuchsia:`ff00ff`,gainsboro:`dcdcdc`,ghostwhite:`f8f8ff`,gold:`ffd700`,goldenrod:`daa520`,gray:`808080`,green:`008000`,greenyellow:`adff2f`,grey:`808080`,honeydew:`f0fff0`,hotpink:`ff69b4`,indianred:`cd5c5c`,indigo:`4b0082`,ivory:`fffff0`,khaki:`f0e68c`,lavender:`e6e6fa`,lavenderblush:`fff0f5`,lawngreen:`7cfc00`,lemonchiffon:`fffacd`,lightblue:`add8e6`,lightcoral:`f08080`,lightcyan:`e0ffff`,lightgoldenrodyellow:`fafad2`,lightgray:`d3d3d3`,lightgreen:`90ee90`,lightgrey:`d3d3d3`,lightpink:`ffb6c1`,lightsalmon:`ffa07a`,lightseagreen:`20b2aa`,lightskyblue:`87cefa`,lightslategray:`789`,lightslategrey:`789`,lightsteelblue:`b0c4de`,lightyellow:`ffffe0`,lime:`0f0`,limegreen:`32cd32`,linen:`faf0e6`,magenta:`f0f`,maroon:`800000`,mediumaquamarine:`66cdaa`,mediumblue:`0000cd`,mediumorchid:`ba55d3`,mediumpurple:`9370db`,mediumseagreen:`3cb371`,mediumslateblue:`7b68ee`,mediumspringgreen:`00fa9a`,mediumturquoise:`48d1cc`,mediumvioletred:`c71585`,midnightblue:`191970`,mintcream:`f5fffa`,mistyrose:`ffe4e1`,moccasin:`ffe4b5`,navajowhite:`ffdead`,navy:`000080`,oldlace:`fdf5e6`,olive:`808000`,olivedrab:`6b8e23`,orange:`ffa500`,orangered:`ff4500`,orchid:`da70d6`,palegoldenrod:`eee8aa`,palegreen:`98fb98`,paleturquoise:`afeeee`,palevioletred:`db7093`,papayawhip:`ffefd5`,peachpuff:`ffdab9`,peru:`cd853f`,pink:`ffc0cb`,plum:`dda0dd`,powderblue:`b0e0e6`,purple:`800080`,rebeccapurple:`639`,red:`f00`,rosybrown:`bc8f8f`,royalblue:`4169e1`,saddlebrown:`8b4513`,salmon:`fa8072`,sandybrown:`f4a460`,seagreen:`2e8b57`,seashell:`fff5ee`,sienna:`a0522d`,silver:`c0c0c0`,skyblue:`87ceeb`,slateblue:`6a5acd`,slategray:`708090`,slategrey:`708090`,snow:`fffafa`,springgreen:`00ff7f`,steelblue:`4682b4`,tan:`d2b48c`,teal:`008080`,thistle:`d8bfd8`,tomato:`ff6347`,turquoise:`40e0d0`,violet:`ee82ee`,wheat:`f5deb3`,white:`fff`,whitesmoke:`f5f5f5`,yellow:`ff0`,yellowgreen:`9acd32`};function TD(e){if(typeof e!=`string`)return e;var t=e.toLowerCase();return wD[t]?`#`+wD[t]:e}G(TD,`nameToHex`);var ED=/^#[a-fA-F0-9]{6}$/,DD=/^#[a-fA-F0-9]{8}$/,OD=/^#[a-fA-F0-9]{3}$/,kD=/^#[a-fA-F0-9]{4}$/,AD=/^rgb\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*\)$/i,jD=/^rgb(?:a)?\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i,MD=/^hsl\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*\)$/i,ND=/^hsl(?:a)?\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i;function PD(e){if(typeof e!=`string`)throw new bD(3);var t=TD(e);if(t.match(ED))return{red:parseInt(``+t[1]+t[2],16),green:parseInt(``+t[3]+t[4],16),blue:parseInt(``+t[5]+t[6],16)};if(t.match(DD)){var n=parseFloat((parseInt(``+t[7]+t[8],16)/255).toFixed(2));return{red:parseInt(``+t[1]+t[2],16),green:parseInt(``+t[3]+t[4],16),blue:parseInt(``+t[5]+t[6],16),alpha:n}}if(t.match(OD))return{red:parseInt(``+t[1]+t[1],16),green:parseInt(``+t[2]+t[2],16),blue:parseInt(``+t[3]+t[3],16)};if(t.match(kD)){var r=parseFloat((parseInt(``+t[4]+t[4],16)/255).toFixed(2));return{red:parseInt(``+t[1]+t[1],16),green:parseInt(``+t[2]+t[2],16),blue:parseInt(``+t[3]+t[3],16),alpha:r}}var i=AD.exec(t);if(i)return{red:parseInt(``+i[1],10),green:parseInt(``+i[2],10),blue:parseInt(``+i[3],10)};var a=jD.exec(t.substring(0,50));if(a)return{red:parseInt(``+a[1],10),green:parseInt(``+a[2],10),blue:parseInt(``+a[3],10),alpha:parseFloat(``+a[4])>1?parseFloat(``+a[4])/100:parseFloat(``+a[4])};var o=MD.exec(t);if(o){var s=`rgb(`+CD(parseInt(``+o[1],10),parseInt(``+o[2],10)/100,parseInt(``+o[3],10)/100)+`)`,c=AD.exec(s);if(!c)throw new bD(4,t,s);return{red:parseInt(``+c[1],10),green:parseInt(``+c[2],10),blue:parseInt(``+c[3],10)}}var l=ND.exec(t.substring(0,50));if(l){var u=`rgb(`+CD(parseInt(``+l[1],10),parseInt(``+l[2],10)/100,parseInt(``+l[3],10)/100)+`)`,d=AD.exec(u);if(!d)throw new bD(4,t,u);return{red:parseInt(``+d[1],10),green:parseInt(``+d[2],10),blue:parseInt(``+d[3],10),alpha:parseFloat(``+l[4])>1?parseFloat(``+l[4])/100:parseFloat(``+l[4])}}throw new bD(5)}G(PD,`parseToRgb`);function FD(e){var t=e.red/255,n=e.green/255,r=e.blue/255,i=Math.max(t,n,r),a=Math.min(t,n,r),o=(i+a)/2;if(i===a)return e.alpha===void 0?{hue:0,saturation:0,lightness:o}:{hue:0,saturation:0,lightness:o,alpha:e.alpha};var s,c=i-a,l=o>.5?c/(2-i-a):c/(i+a);switch(i){case t:s=(n-r)/c+(n<r?6:0);break;case n:s=(r-t)/c+2;break;default:s=(t-n)/c+4;break}return s*=60,e.alpha===void 0?{hue:s,saturation:l,lightness:o}:{hue:s,saturation:l,lightness:o,alpha:e.alpha}}G(FD,`rgbToHsl`);function ID(e){return FD(PD(e))}G(ID,`parseToHsl`);var LD=G(function(e){return e.length===7&&e[1]===e[2]&&e[3]===e[4]&&e[5]===e[6]?`#`+e[1]+e[3]+e[5]:e},`reduceHexValue`);function RD(e){var t=e.toString(16);return t.length===1?`0`+t:t}G(RD,`numberToHex`);function zD(e){return RD(Math.round(e*255))}G(zD,`colorToHex`);function BD(e,t,n){return LD(`#`+zD(e)+zD(t)+zD(n))}G(BD,`convertToHex`);function VD(e,t,n){return CD(e,t,n,BD)}G(VD,`hslToHex`);function HD(e,t,n){if(typeof e==`number`&&typeof t==`number`&&typeof n==`number`)return VD(e,t,n);if(typeof e==`object`&&t===void 0&&n===void 0)return VD(e.hue,e.saturation,e.lightness);throw new bD(1)}G(HD,`hsl`);function UD(e,t,n,r){if(typeof e==`number`&&typeof t==`number`&&typeof n==`number`&&typeof r==`number`)return r>=1?VD(e,t,n):`rgba(`+CD(e,t,n)+`,`+r+`)`;if(typeof e==`object`&&t===void 0&&n===void 0&&r===void 0)return e.alpha>=1?VD(e.hue,e.saturation,e.lightness):`rgba(`+CD(e.hue,e.saturation,e.lightness)+`,`+e.alpha+`)`;throw new bD(2)}G(UD,`hsla`);function WD(e,t,n){if(typeof e==`number`&&typeof t==`number`&&typeof n==`number`)return LD(`#`+RD(e)+RD(t)+RD(n));if(typeof e==`object`&&t===void 0&&n===void 0)return LD(`#`+RD(e.red)+RD(e.green)+RD(e.blue));throw new bD(6)}G(WD,`rgb`);function GD(e,t,n,r){if(typeof e==`string`&&typeof t==`number`){var i=PD(e);return`rgba(`+i.red+`,`+i.green+`,`+i.blue+`,`+t+`)`}else{if(typeof e==`number`&&typeof t==`number`&&typeof n==`number`&&typeof r==`number`)return r>=1?WD(e,t,n):`rgba(`+e+`,`+t+`,`+n+`,`+r+`)`;if(typeof e==`object`&&t===void 0&&n===void 0&&r===void 0)return e.alpha>=1?WD(e.red,e.green,e.blue):`rgba(`+e.red+`,`+e.green+`,`+e.blue+`,`+e.alpha+`)`}throw new bD(7)}G(GD,`rgba`);var KD=G(function(e){return typeof e.red==`number`&&typeof e.green==`number`&&typeof e.blue==`number`&&(typeof e.alpha!=`number`||typeof e.alpha>`u`)},`isRgb`),qD=G(function(e){return typeof e.red==`number`&&typeof e.green==`number`&&typeof e.blue==`number`&&typeof e.alpha==`number`},`isRgba`),JD=G(function(e){return typeof e.hue==`number`&&typeof e.saturation==`number`&&typeof e.lightness==`number`&&(typeof e.alpha!=`number`||typeof e.alpha>`u`)},`isHsl`),YD=G(function(e){return typeof e.hue==`number`&&typeof e.saturation==`number`&&typeof e.lightness==`number`&&typeof e.alpha==`number`},`isHsla`);function XD(e){if(typeof e!=`object`)throw new bD(8);if(qD(e))return GD(e);if(KD(e))return WD(e);if(YD(e))return UD(e);if(JD(e))return HD(e);throw new bD(8)}G(XD,`toColorString`);function ZD(e,t,n){return G(function(){var r=n.concat(Array.prototype.slice.call(arguments));return r.length>=t?e.apply(this,r):ZD(e,t,r)},`fn`)}G(ZD,`curried`);function QD(e){return ZD(e,e.length,[])}G(QD,`curry`);function $D(e,t,n){return Math.max(e,Math.min(t,n))}G($D,`guard`);function eO(e,t){if(t===`transparent`)return t;var n=ID(t);return XD(Jr({},n,{lightness:$D(0,1,n.lightness-parseFloat(e))}))}G(eO,`darken`);var tO=QD(eO);function nO(e,t){if(t===`transparent`)return t;var n=ID(t);return XD(Jr({},n,{lightness:$D(0,1,n.lightness+parseFloat(e))}))}G(nO,`lighten`);var rO=QD(nO);function iO(e,t){if(t===`transparent`)return t;var n=PD(t),r=typeof n.alpha==`number`?n.alpha:1;return GD(Jr({},n,{alpha:$D(0,1,(r*100-parseFloat(e)*100).toFixed(2)/100)}))}G(iO,`transparentize`);var aO=QD(iO),oO=G(({theme:e})=>({margin:`20px 0 8px`,padding:0,cursor:`text`,position:`relative`,color:e.color.defaultText,"&:first-of-type":{marginTop:0,paddingTop:0},"&:hover a.anchor":{textDecoration:`none`},"& tt, & code":{fontSize:`inherit`}}),`headerCommon`),sO=G(({theme:e})=>({lineHeight:1,margin:`0 2px`,padding:`3px 5px`,whiteSpace:`nowrap`,borderRadius:3,fontSize:e.typography.size.s2-1,border:e.base===`light`?`1px solid ${e.color.mediumlight}`:`1px solid ${e.color.darker}`,color:e.base===`light`?aO(.1,e.color.defaultText):aO(.3,e.color.defaultText),backgroundColor:e.base===`light`?e.color.lighter:e.color.border}),`codeCommon`),cO=G(({theme:e})=>({fontFamily:e.typography.fonts.base,fontSize:e.typography.size.s3,margin:0,WebkitFontSmoothing:`antialiased`,MozOsxFontSmoothing:`grayscale`,WebkitTapHighlightColor:`rgba(0, 0, 0, 0)`,WebkitOverflowScrolling:`touch`}),`withReset`),lO={margin:`16px 0`},uO=H.div(cO),dO=H(G(({href:e=``,...t})=>{let n=/^\//.test(e)?`./?path=${e}`:e,r=/^#.*/.test(e)?`_self`:`_top`;return o.createElement(`a`,{href:n,target:r,...t})},`Link`))(cO,({theme:e})=>({fontSize:`inherit`,lineHeight:`24px`,color:e.color.secondary,textDecoration:`none`,"&.absent":{color:`#cc0000`},"&.anchor":{display:`block`,paddingLeft:30,marginLeft:-30,cursor:`pointer`,position:`absolute`,top:0,left:0,bottom:0}})),fO=H.blockquote(cO,lO,({theme:e})=>({borderLeft:`4px solid ${e.color.medium}`,padding:`0 15px`,color:e.color.dark,"& > :first-of-type":{marginTop:0},"& > :last-child":{marginBottom:0}}));Ic();var pO=G(e=>typeof e==`string`,`isReactChildString`),mO=/[\n\r]/g,hO=H.code(({theme:e})=>({fontFamily:e.typography.fonts.mono,WebkitFontSmoothing:`antialiased`,MozOsxFontSmoothing:`grayscale`,display:`inline-block`,paddingLeft:2,paddingRight:2,verticalAlign:`baseline`,color:`inherit`}),sO),gO=H(Pc)(({theme:e})=>({fontFamily:e.typography.fonts.mono,fontSize:`${e.typography.size.s2-1}px`,lineHeight:`19px`,margin:`25px 0 40px`,borderRadius:e.appBorderRadius,boxShadow:e.base===`light`?`rgba(0, 0, 0, 0.10) 0 1px 3px 0`:`rgba(0, 0, 0, 0.20) 0 2px 5px 0`,"pre.prismjs":{padding:20,background:`inherit`}})),_O=G(({className:e,children:t,...n})=>{let r=(e||``).match(/lang-(\S+)/),i=o.Children.toArray(t);return i.filter(pO).some(e=>e.match(mO))?o.createElement(gO,{bordered:!0,copyable:!0,language:r?.[1]??`text`,format:!1,...n},t):o.createElement(hO,{...n,className:e},i)},`Code`),vO=H.dl(cO,lO,{padding:0,"& dt":{fontSize:`14px`,fontWeight:`bold`,fontStyle:`italic`,padding:0,margin:`16px 0 4px`},"& dt:first-of-type":{padding:0},"& dt > :first-of-type":{marginTop:0},"& dt > :last-child":{marginBottom:0},"& dd":{margin:`0 0 16px`,padding:`0 15px`},"& dd > :first-of-type":{marginTop:0},"& dd > :last-child":{marginBottom:0}}),yO=H.div(cO),bO=H.h1(cO,oO,({theme:e})=>({fontSize:`${e.typography.size.l1}px`,fontWeight:e.typography.weight.bold})),xO=H.h2(cO,oO,({theme:e})=>({fontSize:`${e.typography.size.m2}px`,paddingBottom:4,borderBottom:`1px solid ${e.appBorderColor}`})),SO=H.h3(cO,oO,({theme:e})=>({fontSize:`${e.typography.size.m1}px`})),CO=H.h4(cO,oO,({theme:e})=>({fontSize:`${e.typography.size.s3}px`})),wO=H.h5(cO,oO,({theme:e})=>({fontSize:`${e.typography.size.s2}px`})),TO=H.h6(cO,oO,({theme:e})=>({fontSize:`${e.typography.size.s2}px`,color:e.color.dark})),EO=H.hr(({theme:e})=>({border:`0 none`,borderTop:`1px solid ${e.appBorderColor}`,height:4,padding:0})),DO=H.img({maxWidth:`100%`}),OO=H.li(cO,({theme:e})=>({fontSize:e.typography.size.s2,color:e.color.defaultText,lineHeight:`24px`,"& + li":{marginTop:`.25em`},"& ul, & ol":{marginTop:`.25em`,marginBottom:0},"& code":sO({theme:e})})),kO=H.ol(cO,lO,{paddingLeft:30,"& :first-of-type":{marginTop:0},"& :last-child":{marginBottom:0}},{listStyle:`decimal`}),AO=H.p(cO,lO,({theme:e})=>({fontSize:e.typography.size.s2,lineHeight:`24px`,color:e.color.defaultText,"& code":sO({theme:e})})),jO=H.pre(cO,lO,({theme:e})=>({fontFamily:e.typography.fonts.mono,WebkitFontSmoothing:`antialiased`,MozOsxFontSmoothing:`grayscale`,lineHeight:`18px`,padding:`11px 1rem`,whiteSpace:`pre-wrap`,color:`inherit`,borderRadius:3,margin:`1rem 0`,"&:not(.prismjs)":{background:`transparent`,border:`none`,borderRadius:0,padding:0,margin:0},"& pre, &.prismjs":{padding:15,margin:0,whiteSpace:`pre-wrap`,color:`inherit`,fontSize:`13px`,lineHeight:`19px`,code:{color:`inherit`,fontSize:`inherit`}},"& code":{whiteSpace:`pre`},"& code, & tt":{border:`none`}})),MO=H.span(cO,({theme:e})=>({"&.frame":{display:`block`,overflow:`hidden`,"& > span":{border:`1px solid ${e.color.medium}`,display:`block`,float:`left`,overflow:`hidden`,margin:`13px 0 0`,padding:7,width:`auto`},"& span img":{display:`block`,float:`left`},"& span span":{clear:`both`,color:e.color.darkest,display:`block`,padding:`5px 0 0`}},"&.align-center":{display:`block`,overflow:`hidden`,clear:`both`,"& > span":{display:`block`,overflow:`hidden`,margin:`13px auto 0`,textAlign:`center`},"& span img":{margin:`0 auto`,textAlign:`center`}},"&.align-right":{display:`block`,overflow:`hidden`,clear:`both`,"& > span":{display:`block`,overflow:`hidden`,margin:`13px 0 0`,textAlign:`right`},"& span img":{margin:0,textAlign:`right`}},"&.float-left":{display:`block`,marginRight:13,overflow:`hidden`,float:`left`,"& span":{margin:`13px 0 0`}},"&.float-right":{display:`block`,marginLeft:13,overflow:`hidden`,float:`right`,"& > span":{display:`block`,overflow:`hidden`,margin:`13px auto 0`,textAlign:`right`}}})),NO=H.title(sO),PO=H.table(cO,lO,({theme:e})=>({fontSize:e.typography.size.s2,lineHeight:`24px`,padding:0,borderCollapse:`collapse`,"& tr":{borderTop:`1px solid ${e.appBorderColor}`,backgroundColor:e.appContentBg,margin:0,padding:0},"& tr:nth-of-type(2n)":{backgroundColor:e.base===`dark`?e.color.darker:e.color.lighter},"& tr th":{fontWeight:`bold`,color:e.color.defaultText,border:`1px solid ${e.appBorderColor}`,margin:0,padding:`6px 13px`},"& tr td":{border:`1px solid ${e.appBorderColor}`,color:e.color.defaultText,margin:0,padding:`6px 13px`},"& tr th :first-of-type, & tr td :first-of-type":{marginTop:0},"& tr th :last-child, & tr td :last-child":{marginBottom:0}})),FO=H.ul(cO,lO,{paddingLeft:30,"& :first-of-type":{marginTop:0},"& :last-child":{marginBottom:0}},{listStyle:`disc`}),IO={h1:G(e=>o.createElement(bO,{...$(e,`h1`)}),`h1`),h2:G(e=>o.createElement(xO,{...$(e,`h2`)}),`h2`),h3:G(e=>o.createElement(SO,{...$(e,`h3`)}),`h3`),h4:G(e=>o.createElement(CO,{...$(e,`h4`)}),`h4`),h5:G(e=>o.createElement(wO,{...$(e,`h5`)}),`h5`),h6:G(e=>o.createElement(TO,{...$(e,`h6`)}),`h6`),pre:G(e=>o.createElement(jO,{...$(e,`pre`)}),`pre`),a:G(e=>o.createElement(dO,{...$(e,`a`)}),`a`),hr:G(e=>o.createElement(EO,{...$(e,`hr`)}),`hr`),dl:G(e=>o.createElement(vO,{...$(e,`dl`)}),`dl`),blockquote:G(e=>o.createElement(fO,{...$(e,`blockquote`)}),`blockquote`),table:G(e=>o.createElement(PO,{...$(e,`table`)}),`table`),img:G(e=>o.createElement(DO,{...$(e,`img`)}),`img`),div:G(e=>o.createElement(yO,{...$(e,`div`)}),`div`),span:G(e=>o.createElement(MO,{...$(e,`span`)}),`span`),li:G(e=>o.createElement(OO,{...$(e,`li`)}),`li`),ul:G(e=>o.createElement(FO,{...$(e,`ul`)}),`ul`),ol:G(e=>o.createElement(kO,{...$(e,`ol`)}),`ol`),p:G(e=>o.createElement(AO,{...$(e,`p`)}),`p`),code:G(e=>o.createElement(_O,{...$(e,`code`)}),`code`),tt:G(e=>o.createElement(NO,{...$(e,`tt`)}),`tt`),resetwrapper:G(e=>o.createElement(uO,{...$(e,`resetwrapper`)}),`resetwrapper`)};H.div(({theme:e})=>({display:`inline-block`,fontSize:11,lineHeight:`12px`,alignSelf:`center`,padding:`4px 12px`,borderRadius:`3em`,fontWeight:e.typography.weight.bold}),{svg:{height:12,width:12,marginRight:4,marginTop:-2,path:{fill:`currentColor`}}},({theme:e,status:t})=>{switch(t){case`critical`:return{color:e.color.critical,background:e.background.critical};case`negative`:return{color:e.color.negativeText,background:e.background.negative,boxShadow:e.base===`light`?`inset 0 0 0 1px ${aO(.9,e.color.negativeText)}`:`none`};case`warning`:return{color:e.color.warningText,background:e.background.warning,boxShadow:e.base===`light`?`inset 0 0 0 1px ${aO(.9,e.color.warningText)}`:`none`};case`neutral`:return{color:e.color.dark,background:e.color.mediumlight,boxShadow:e.base===`light`?`inset 0 0 0 1px ${aO(.9,e.color.dark)}`:`none`};case`positive`:return{color:e.color.positiveText,background:e.background.positive,boxShadow:e.base===`light`?`inset 0 0 0 1px ${aO(.9,e.color.positiveText)}`:`none`};default:return{}}}),Gr({},{AccessibilityAltIcon:()=>uN,AccessibilityIcon:()=>lN,AccessibilityIgnoredIcon:()=>dN,AddIcon:()=>rj,AdminIcon:()=>$M,AlertAltIcon:()=>jj,AlertIcon:()=>Aj,AlignLeftIcon:()=>Nk,AlignRightIcon:()=>Pk,AppleIcon:()=>$k,ArrowBottomLeftIcon:()=>TM,ArrowBottomRightIcon:()=>EM,ArrowDownIcon:()=>bM,ArrowLeftIcon:()=>xM,ArrowRightIcon:()=>SM,ArrowSolidDownIcon:()=>OM,ArrowSolidLeftIcon:()=>kM,ArrowSolidRightIcon:()=>AM,ArrowSolidUpIcon:()=>DM,ArrowTopLeftIcon:()=>CM,ArrowTopRightIcon:()=>wM,ArrowUpIcon:()=>yM,AzureDevOpsIcon:()=>aA,BackIcon:()=>HM,BasketIcon:()=>eM,BatchAcceptIcon:()=>YA,BatchDenyIcon:()=>JA,BeakerIcon:()=>tM,BellIcon:()=>Ij,BitbucketIcon:()=>oA,BoldIcon:()=>Vk,BookIcon:()=>wk,BookmarkHollowIcon:()=>Uj,BookmarkIcon:()=>Wj,BottomBarIcon:()=>MA,BottomBarToggleIcon:()=>NA,BoxIcon:()=>RA,BranchIcon:()=>Xk,BrowserIcon:()=>wA,ButtonIcon:()=>xj,CPUIcon:()=>PA,CalendarIcon:()=>jk,CameraIcon:()=>sk,CameraStabilizeIcon:()=>WO,CategoryIcon:()=>Dk,CertificateIcon:()=>Xj,ChangedIcon:()=>cj,ChatIcon:()=>hj,CheckIcon:()=>KA,ChevronDownIcon:()=>fM,ChevronLeftIcon:()=>pM,ChevronRightIcon:()=>mM,ChevronSmallDownIcon:()=>gM,ChevronSmallLeftIcon:()=>_M,ChevronSmallRightIcon:()=>vM,ChevronSmallUpIcon:()=>hM,ChevronUpIcon:()=>dM,ChromaticIcon:()=>sA,ChromeIcon:()=>rA,CircleHollowIcon:()=>Vj,CircleIcon:()=>Hj,ClearIcon:()=>uj,CloseAltIcon:()=>QA,CloseIcon:()=>aj,CloudHollowIcon:()=>iM,CloudIcon:()=>aM,CogIcon:()=>VA,CollapseIcon:()=>MM,CommandIcon:()=>Tj,CommentAddIcon:()=>fj,CommentIcon:()=>dj,CommentsIcon:()=>mj,CommitIcon:()=>Yk,CompassIcon:()=>KM,ComponentDrivenIcon:()=>cA,ComponentIcon:()=>zO,ContrastIcon:()=>nk,ContrastIgnoredIcon:()=>ik,ControlsIcon:()=>XA,CopyIcon:()=>Ek,CreditIcon:()=>bj,CrossIcon:()=>$A,DashboardIcon:()=>XM,DatabaseIcon:()=>FA,DeleteIcon:()=>oj,DiamondIcon:()=>Gj,DirectionIcon:()=>eN,DiscordIcon:()=>lA,DocChartIcon:()=>Ik,DocListIcon:()=>Lk,DocumentIcon:()=>Tk,DownloadIcon:()=>VM,DragIcon:()=>Rk,EditIcon:()=>BA,EllipsisIcon:()=>WA,EmailIcon:()=>Mj,ExpandAltIcon:()=>jM,ExpandIcon:()=>NM,EyeCloseIcon:()=>ZO,EyeIcon:()=>XO,FaceHappyIcon:()=>oN,FaceNeutralIcon:()=>sN,FaceSadIcon:()=>cN,FacebookIcon:()=>uA,FailedIcon:()=>lj,FastForwardIcon:()=>mk,FigmaIcon:()=>dA,FilterIcon:()=>Fk,FlagIcon:()=>rM,FolderIcon:()=>Ok,FormIcon:()=>qA,GDriveIcon:()=>fA,GithubIcon:()=>pA,GitlabIcon:()=>mA,GlobeIcon:()=>GM,GoogleIcon:()=>hA,GraphBarIcon:()=>Mk,GraphLineIcon:()=>Ak,GraphqlIcon:()=>gA,GridAltIcon:()=>GO,GridIcon:()=>BO,GrowIcon:()=>tk,HeartHollowIcon:()=>Kj,HeartIcon:()=>qj,HomeIcon:()=>QM,HourglassIcon:()=>nM,InfoIcon:()=>Dj,ItalicIcon:()=>Hk,JumpToIcon:()=>Bj,KeyIcon:()=>vj,LightningIcon:()=>QO,LightningOffIcon:()=>$O,LinkBrokenIcon:()=>Fj,LinkIcon:()=>Pj,LinkedinIcon:()=>SA,LinuxIcon:()=>eA,ListOrderedIcon:()=>Wk,ListUnorderedIcon:()=>Gk,LocationIcon:()=>qM,LockIcon:()=>gj,MarkdownIcon:()=>qk,MarkupIcon:()=>Bk,MediumIcon:()=>_A,MemoryIcon:()=>IA,MenuIcon:()=>zk,MergeIcon:()=>Qk,MirrorIcon:()=>ek,MobileIcon:()=>EA,MoonIcon:()=>_k,NutIcon:()=>HA,OutboxIcon:()=>yj,OutlineIcon:()=>VO,PaintBrushIcon:()=>ak,PaperClipIcon:()=>Uk,ParagraphIcon:()=>Kk,PassedIcon:()=>sj,PhoneIcon:()=>Nj,PhotoDragIcon:()=>HO,PhotoIcon:()=>RO,PhotoStabilizeIcon:()=>UO,PinAltIcon:()=>tj,PinIcon:()=>JM,PlayAllHollowIcon:()=>bk,PlayBackIcon:()=>dk,PlayHollowIcon:()=>yk,PlayIcon:()=>uk,PlayNextIcon:()=>fk,PlusIcon:()=>ZA,PointerDefaultIcon:()=>Cj,PointerHandIcon:()=>wj,PowerIcon:()=>zA,PrintIcon:()=>kk,ProceedIcon:()=>UM,ProfileIcon:()=>aN,PullRequestIcon:()=>Zk,QuestionIcon:()=>Oj,RSSIcon:()=>Lj,RedirectIcon:()=>IM,ReduxIcon:()=>vA,RefreshIcon:()=>WM,ReplyIcon:()=>RM,RepoIcon:()=>Jk,RequestChangeIcon:()=>pj,RewindIcon:()=>pk,RulerIcon:()=>ok,SaveIcon:()=>Ej,SearchIcon:()=>KO,ShareAltIcon:()=>Rj,ShareIcon:()=>zj,ShieldIcon:()=>$j,SideBySideIcon:()=>Sk,SidebarAltIcon:()=>kA,SidebarAltToggleIcon:()=>AA,SidebarIcon:()=>OA,SidebarToggleIcon:()=>jA,SpeakerIcon:()=>lk,StackedIcon:()=>Ck,StarHollowIcon:()=>Jj,StarIcon:()=>Yj,StatusFailIcon:()=>sM,StatusIcon:()=>cM,StatusPassIcon:()=>uM,StatusWarnIcon:()=>lM,StickerIcon:()=>oM,StopAltHollowIcon:()=>vk,StopAltIcon:()=>hk,StopIcon:()=>xk,StorybookIcon:()=>iA,StructureIcon:()=>LA,SubtractIcon:()=>ij,SunIcon:()=>gk,SupportIcon:()=>kj,SwitchAltIcon:()=>rk,SyncIcon:()=>zM,TabletIcon:()=>TA,ThumbsUpIcon:()=>Qj,TimeIcon:()=>YM,TimerIcon:()=>ZM,TransferIcon:()=>FM,TrashIcon:()=>ej,TwitterIcon:()=>yA,TypeIcon:()=>Sj,UbuntuIcon:()=>tA,UndoIcon:()=>LM,UnfoldIcon:()=>PM,UnlockIcon:()=>_j,UnpinIcon:()=>nj,UploadIcon:()=>BM,UserAddIcon:()=>rN,UserAltIcon:()=>nN,UserIcon:()=>tN,UsersIcon:()=>iN,VSCodeIcon:()=>xA,VerifiedIcon:()=>Zj,VideoIcon:()=>ck,WandIcon:()=>GA,WatchIcon:()=>DA,WindowsIcon:()=>nA,WrenchIcon:()=>UA,XIcon:()=>CA,YoutubeIcon:()=>bA,ZoomIcon:()=>qO,ZoomOutIcon:()=>JO,ZoomResetIcon:()=>YO,iconList:()=>LO});var LO=[{name:`Images`,icons:`PhotoIcon.ComponentIcon.GridIcon.OutlineIcon.PhotoDragIcon.PhotoStabilizeIcon.CameraStabilizeIcon.GridAltIcon.SearchIcon.ZoomIcon.ZoomOutIcon.ZoomResetIcon.EyeIcon.EyeCloseIcon.LightningIcon.LightningOffIcon.MirrorIcon.GrowIcon.ContrastIcon.SwitchAltIcon.ContrastIgnoredIcon.PaintBrushIcon.RulerIcon.CameraIcon.VideoIcon.SpeakerIcon.PlayIcon.PlayBackIcon.PlayNextIcon.RewindIcon.FastForwardIcon.StopAltIcon.SunIcon.MoonIcon.StopAltHollowIcon.PlayHollowIcon.PlayAllHollowIcon.StopIcon.SideBySideIcon.StackedIcon`.split(`.`)},{name:`Documents`,icons:[`BookIcon`,`DocumentIcon`,`CopyIcon`,`CategoryIcon`,`FolderIcon`,`PrintIcon`,`GraphLineIcon`,`CalendarIcon`,`GraphBarIcon`,`AlignLeftIcon`,`AlignRightIcon`,`FilterIcon`,`DocChartIcon`,`DocListIcon`,`DragIcon`,`MenuIcon`]},{name:`Editing`,icons:[`MarkupIcon`,`BoldIcon`,`ItalicIcon`,`PaperClipIcon`,`ListOrderedIcon`,`ListUnorderedIcon`,`ParagraphIcon`,`MarkdownIcon`]},{name:`Git`,icons:[`RepoIcon`,`CommitIcon`,`BranchIcon`,`PullRequestIcon`,`MergeIcon`]},{name:`OS`,icons:[`AppleIcon`,`LinuxIcon`,`UbuntuIcon`,`WindowsIcon`,`ChromeIcon`]},{name:`Logos`,icons:[`StorybookIcon`,`AzureDevOpsIcon`,`BitbucketIcon`,`ChromaticIcon`,`ComponentDrivenIcon`,`DiscordIcon`,`FacebookIcon`,`FigmaIcon`,`GDriveIcon`,`GithubIcon`,`GitlabIcon`,`GoogleIcon`,`GraphqlIcon`,`MediumIcon`,`ReduxIcon`,`TwitterIcon`,`YoutubeIcon`,`VSCodeIcon`,`LinkedinIcon`,`XIcon`]},{name:`Devices`,icons:[`BrowserIcon`,`TabletIcon`,`MobileIcon`,`WatchIcon`,`SidebarIcon`,`SidebarAltIcon`,`SidebarAltToggleIcon`,`SidebarToggleIcon`,`BottomBarIcon`,`BottomBarToggleIcon`,`CPUIcon`,`DatabaseIcon`,`MemoryIcon`,`StructureIcon`,`BoxIcon`,`PowerIcon`]},{name:`CRUD`,icons:`EditIcon.CogIcon.NutIcon.WrenchIcon.EllipsisIcon.WandIcon.CheckIcon.FormIcon.BatchDenyIcon.BatchAcceptIcon.ControlsIcon.PlusIcon.CloseAltIcon.CrossIcon.TrashIcon.PinAltIcon.UnpinIcon.AddIcon.SubtractIcon.CloseIcon.DeleteIcon.PassedIcon.ChangedIcon.FailedIcon.ClearIcon.CommentIcon.CommentAddIcon.RequestChangeIcon.CommentsIcon.ChatIcon.LockIcon.UnlockIcon.KeyIcon.OutboxIcon.CreditIcon.ButtonIcon.TypeIcon.PointerDefaultIcon.PointerHandIcon.CommandIcon.SaveIcon`.split(`.`)},{name:`Communicate`,icons:`InfoIcon.QuestionIcon.SupportIcon.AlertIcon.AlertAltIcon.EmailIcon.PhoneIcon.LinkIcon.LinkBrokenIcon.BellIcon.RSSIcon.ShareAltIcon.ShareIcon.JumpToIcon.CircleHollowIcon.CircleIcon.BookmarkHollowIcon.BookmarkIcon.DiamondIcon.HeartHollowIcon.HeartIcon.StarHollowIcon.StarIcon.CertificateIcon.VerifiedIcon.ThumbsUpIcon.ShieldIcon.BasketIcon.BeakerIcon.HourglassIcon.FlagIcon.CloudHollowIcon.CloudIcon.StickerIcon.StatusFailIcon.StatusIcon.StatusWarnIcon.StatusPassIcon`.split(`.`)},{name:`Wayfinding`,icons:`ChevronUpIcon.ChevronDownIcon.ChevronLeftIcon.ChevronRightIcon.ChevronSmallUpIcon.ChevronSmallDownIcon.ChevronSmallLeftIcon.ChevronSmallRightIcon.ArrowUpIcon.ArrowDownIcon.ArrowLeftIcon.ArrowRightIcon.ArrowTopLeftIcon.ArrowTopRightIcon.ArrowBottomLeftIcon.ArrowBottomRightIcon.ArrowSolidUpIcon.ArrowSolidDownIcon.ArrowSolidLeftIcon.ArrowSolidRightIcon.ExpandAltIcon.CollapseIcon.ExpandIcon.UnfoldIcon.TransferIcon.RedirectIcon.UndoIcon.ReplyIcon.SyncIcon.UploadIcon.DownloadIcon.BackIcon.ProceedIcon.RefreshIcon.GlobeIcon.CompassIcon.LocationIcon.PinIcon.TimeIcon.DashboardIcon.TimerIcon.HomeIcon.AdminIcon.DirectionIcon`.split(`.`)},{name:`People`,icons:[`UserIcon`,`UserAltIcon`,`UserAddIcon`,`UsersIcon`,`ProfileIcon`,`FaceHappyIcon`,`FaceNeutralIcon`,`FaceSadIcon`,`AccessibilityIcon`,`AccessibilityAltIcon`,`AccessibilityIgnoredIcon`]}],RO=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M6.25 4.254a1.25 1.25 0 11-2.5 0 1.25 1.25 0 012.5 0zm-.5 0a.75.75 0 11-1.5 0 .75.75 0 011.5 0z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M13 1.504v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h11a.5.5 0 01.5.5zM2 9.297V2.004h10v5.293L9.854 5.15a.5.5 0 00-.708 0L6.5 7.797 5.354 6.65a.5.5 0 00-.708 0L2 9.297zM9.5 6.21l2.5 2.5v3.293H2V10.71l3-3 3.146 3.146a.5.5 0 00.708-.707L7.207 8.504 9.5 6.21z`,fill:e}))),zO=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M3.5 1.004a2.5 2.5 0 00-2.5 2.5v7a2.5 2.5 0 002.5 2.5h7a2.5 2.5 0 002.5-2.5v-7a2.5 2.5 0 00-2.5-2.5h-7zm8.5 5.5H7.5v-4.5h3a1.5 1.5 0 011.5 1.5v3zm0 1v3a1.5 1.5 0 01-1.5 1.5h-3v-4.5H12zm-5.5 4.5v-4.5H2v3a1.5 1.5 0 001.5 1.5h3zM2 6.504h4.5v-4.5h-3a1.5 1.5 0 00-1.5 1.5v3z`,fill:e}))),BO=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1 1.504a.5.5 0 01.5-.5H6a.5.5 0 01.5.5v4.5a.5.5 0 01-.5.5H1.5a.5.5 0 01-.5-.5v-4.5zm1 4v-3.5h3.5v3.5H2zM7.5 1.504a.5.5 0 01.5-.5h4.5a.5.5 0 01.5.5v4.5a.5.5 0 01-.5.5H8a.5.5 0 01-.5-.5v-4.5zm1 4v-3.5H12v3.5H8.5zM1.5 7.504a.5.5 0 00-.5.5v4.5a.5.5 0 00.5.5H6a.5.5 0 00.5-.5v-4.5a.5.5 0 00-.5-.5H1.5zm.5 1v3.5h3.5v-3.5H2zM7.5 8.004a.5.5 0 01.5-.5h4.5a.5.5 0 01.5.5v4.5a.5.5 0 01-.5.5H8a.5.5 0 01-.5-.5v-4.5zm1 4v-3.5H12v3.5H8.5z`,fill:e}))),VO=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M2 2.004v2H1v-2.5a.5.5 0 01.5-.5H4v1H2zM1 9.004v-4h1v4H1zM1 10.004v2.5a.5.5 0 00.5.5H4v-1H2v-2H1zM10 13.004h2.5a.5.5 0 00.5-.5v-2.5h-1v2h-2v1zM12 4.004h1v-2.5a.5.5 0 00-.5-.5H10v1h2v2zM9 12.004v1H5v-1h4zM9 1.004v1H5v-1h4zM13 9.004h-1v-4h1v4zM7 8.004a1 1 0 100-2 1 1 0 000 2z`,fill:e}))),HO=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M8.25 3.254a1.25 1.25 0 11-2.5 0 1.25 1.25 0 012.5 0zm-.5 0a.75.75 0 11-1.5 0 .75.75 0 011.5 0z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M14 7.003v-6.5a.5.5 0 00-.5-.5h-10a.5.5 0 00-.5.5v2.5H.5a.5.5 0 00-.5.5v2.5h1v-2h2v6.5a.5.5 0 00.5.5H10v2H8v1h2.5a.5.5 0 00.5-.5v-2.5h2.5a.5.5 0 00.5-.5v-3.5zm-10-6v5.794L5.646 5.15a.5.5 0 01.708 0L7.5 6.297l2.646-2.647a.5.5 0 01.708 0L13 5.797V1.004H4zm9 6.208l-2.5-2.5-2.293 2.293L9.354 8.15a.5.5 0 11-.708.707L6 6.211l-2 2v1.793h9V7.21z`,fill:e}),o.createElement(`path`,{d:`M0 10.004v-3h1v3H0zM0 13.504v-2.5h1v2h2v1H.5a.5.5 0 01-.5-.5zM7 14.004H4v-1h3v1z`,fill:e}))),UO=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M2.5 1H4V0H2.5A2.5 2.5 0 000 2.5V4h1V2.5A1.5 1.5 0 012.5 1z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7.25 5.25a1.25 1.25 0 11-2.5 0 1.25 1.25 0 012.5 0zm-.5 0a.75.75 0 11-1.5 0 .75.75 0 011.5 0z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M12 2.5v9a.5.5 0 01-.5.5h-9a.5.5 0 01-.5-.5v-9a.5.5 0 01.5-.5h9a.5.5 0 01.5.5zM3 8.793V3h8v3.793L9.854 5.646a.5.5 0 00-.708 0L6.5 8.293 5.354 7.146a.5.5 0 00-.708 0L3 8.793zm6.5-2.086l1.5 1.5V11H3v-.793l2-2 2.146 2.147a.5.5 0 00.708-.708L7.207 9 9.5 6.707z`,fill:e}),o.createElement(`path`,{d:`M10 1h1.5A1.5 1.5 0 0113 2.5V4h1V2.5A2.5 2.5 0 0011.5 0H10v1zM2.5 13H4v1H2.5A2.5 2.5 0 010 11.5V10h1v1.5A1.5 1.5 0 002.5 13zM10 13h1.5a1.5 1.5 0 001.5-1.5V10h1v1.5a2.5 2.5 0 01-2.5 2.5H10v-1z`,fill:e}))),WO=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`g`,{clipPath:`url(#prefix__clip0_2484_400)`},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M2.5 1A1.5 1.5 0 001 2.5v1a.5.5 0 01-1 0v-1A2.5 2.5 0 012.5 0h1a.5.5 0 010 1h-1zm3.352 1.223A.5.5 0 016.268 2h1.464a.5.5 0 01.416.223L9.333 4H11.5a.5.5 0 01.5.5v5a.5.5 0 01-.5.5h-9a.5.5 0 01-.5-.5v-5a.5.5 0 01.5-.5h2.167l1.185-1.777zM11.5 1A1.5 1.5 0 0113 2.5v1a.5.5 0 001 0v-1A2.5 2.5 0 0011.5 0h-1a.5.5 0 000 1h1zm-9 12A1.5 1.5 0 011 11.5v-1a.5.5 0 00-1 0v1A2.5 2.5 0 002.5 14h1a.5.5 0 000-1h-1zm9 0a1.5 1.5 0 001.5-1.5v-1a.5.5 0 011 0v1a2.5 2.5 0 01-2.5 2.5h-1a.5.5 0 010-1h1zM8 7a1 1 0 11-2 0 1 1 0 012 0zm1 0a2 2 0 11-4 0 2 2 0 014 0z`,fill:e})),o.createElement(`defs`,null,o.createElement(`clipPath`,{id:`prefix__clip0_2484_400`},o.createElement(`path`,{fill:`#fff`,d:`M0 0h14v14H0z`}))))),GO=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M4 3V1h1v2H4zM4 6v2h1V6H4zM4 11v2h1v-2H4zM9 11v2h1v-2H9zM9 8V6h1v2H9zM9 1v2h1V1H9zM13 5h-2V4h2v1zM11 10h2V9h-2v1zM3 10H1V9h2v1zM1 5h2V4H1v1zM8 5H6V4h2v1zM6 10h2V9H6v1zM4 4h1v1H4V4zM10 4H9v1h1V4zM9 9h1v1H9V9zM5 9H4v1h1V9z`,fill:e}))),KO=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M9.544 10.206a5.5 5.5 0 11.662-.662.5.5 0 01.148.102l3 3a.5.5 0 01-.708.708l-3-3a.5.5 0 01-.102-.148zM10.5 6a4.5 4.5 0 11-9 0 4.5 4.5 0 019 0z`,fill:e}))),qO=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M6 3.5a.5.5 0 01.5.5v1.5H8a.5.5 0 010 1H6.5V8a.5.5 0 01-1 0V6.5H4a.5.5 0 010-1h1.5V4a.5.5 0 01.5-.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M9.544 10.206a5.5 5.5 0 11.662-.662.5.5 0 01.148.102l3 3a.5.5 0 01-.708.708l-3-3a.5.5 0 01-.102-.148zM10.5 6a4.5 4.5 0 11-9 0 4.5 4.5 0 019 0z`,fill:e}))),JO=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M4 5.5a.5.5 0 000 1h4a.5.5 0 000-1H4z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M6 11.5c1.35 0 2.587-.487 3.544-1.294a.5.5 0 00.102.148l3 3a.5.5 0 00.708-.708l-3-3a.5.5 0 00-.148-.102A5.5 5.5 0 106 11.5zm0-1a4.5 4.5 0 100-9 4.5 4.5 0 000 9z`,fill:e}))),YO=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1.5 2.837V1.5a.5.5 0 00-1 0V4a.5.5 0 00.5.5h2.5a.5.5 0 000-1H2.258a4.5 4.5 0 11-.496 4.016.5.5 0 10-.942.337 5.502 5.502 0 008.724 2.353.5.5 0 00.102.148l3 3a.5.5 0 00.708-.708l-3-3a.5.5 0 00-.148-.102A5.5 5.5 0 101.5 2.837z`,fill:e}))),XO=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7 9.5a2.5 2.5 0 100-5 2.5 2.5 0 000 5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M14 7l-.21.293C13.669 7.465 10.739 11.5 7 11.5S.332 7.465.21 7.293L0 7l.21-.293C.331 6.536 3.261 2.5 7 2.5s6.668 4.036 6.79 4.207L14 7zM2.896 5.302A12.725 12.725 0 001.245 7c.296.37.874 1.04 1.65 1.698C4.043 9.67 5.482 10.5 7 10.5c1.518 0 2.958-.83 4.104-1.802A12.72 12.72 0 0012.755 7c-.297-.37-.875-1.04-1.65-1.698C9.957 4.33 8.517 3.5 7 3.5c-1.519 0-2.958.83-4.104 1.802z`,fill:e}))),ZO=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1.854 1.146a.5.5 0 10-.708.708l11 11a.5.5 0 00.708-.708l-11-11zM11.104 8.698c-.177.15-.362.298-.553.439l.714.714a13.25 13.25 0 002.526-2.558L14 7l-.21-.293C13.669 6.536 10.739 2.5 7 2.5c-.89 0-1.735.229-2.506.58l.764.763A4.859 4.859 0 017 3.5c1.518 0 2.958.83 4.104 1.802A12.724 12.724 0 0112.755 7a12.72 12.72 0 01-1.65 1.698zM.21 6.707c.069-.096 1.03-1.42 2.525-2.558l.714.714c-.191.141-.376.288-.553.439A12.725 12.725 0 001.245 7c.296.37.874 1.04 1.65 1.698C4.043 9.67 5.482 10.5 7 10.5a4.86 4.86 0 001.742-.344l.764.764c-.772.351-1.616.58-2.506.58C3.262 11.5.332 7.465.21 7.293L0 7l.21-.293z`,fill:e}),o.createElement(`path`,{d:`M4.5 7c0-.322.061-.63.172-.914l3.242 3.242A2.5 2.5 0 014.5 7zM9.328 7.914L6.086 4.672a2.5 2.5 0 013.241 3.241z`,fill:e}))),QO=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M2.522 6.6a.566.566 0 00-.176.544.534.534 0 00.382.41l2.781.721-1.493 5.013a.563.563 0 00.216.627.496.496 0 00.63-.06l6.637-6.453a.568.568 0 00.151-.54.534.534 0 00-.377-.396l-2.705-.708 2.22-4.976a.568.568 0 00-.15-.666.497.497 0 00-.648.008L2.522 6.6zm7.72.63l-3.067-.804L9.02 2.29 3.814 6.803l2.95.764-1.277 4.285 4.754-4.622zM4.51 13.435l.037.011-.037-.011z`,fill:e}))),$O=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M10.139 8.725l1.36-1.323a.568.568 0 00.151-.54.534.534 0 00-.377-.396l-2.705-.708 2.22-4.976a.568.568 0 00-.15-.666.497.497 0 00-.648.008L5.464 4.05l.708.71 2.848-2.47-1.64 3.677.697.697 2.164.567-.81.787.708.708zM2.523 6.6a.566.566 0 00-.177.544.534.534 0 00.382.41l2.782.721-1.494 5.013a.563.563 0 00.217.627.496.496 0 00.629-.06l3.843-3.736-.708-.707-2.51 2.44 1.137-3.814-.685-.685-2.125-.55.844-.731-.71-.71L2.524 6.6zM1.854 1.146a.5.5 0 10-.708.708l11 11a.5.5 0 00.708-.708l-11-11z`,fill:e}))),ek=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1 1.504a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11zm1 10.5h10v-10l-10 10z`,fill:e}))),tk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1.5 1.004a.5.5 0 100 1H12v10.5a.5.5 0 001 0v-10.5a1 1 0 00-1-1H1.5z`,fill:e}),o.createElement(`path`,{d:`M1 3.504a.5.5 0 01.5-.5H10a1 1 0 011 1v8.5a.5.5 0 01-1 0v-8.5H1.5a.5.5 0 01-.5-.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1.5 5.004a.5.5 0 00-.5.5v7a.5.5 0 00.5.5h7a.5.5 0 00.5-.5v-7a.5.5 0 00-.5-.5h-7zm.5 1v6h6v-6H2z`,fill:e}))),nk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M3 3.004H.5a.5.5 0 00-.5.5v10a.5.5 0 00.5.5h10a.5.5 0 00.5-.5v-2.5h2.5a.5.5 0 00.5-.5v-10a.5.5 0 00-.5-.5h-10a.5.5 0 00-.5.5v2.5zm1 1v2.293l2.293-2.293H4zm-1 0v6.5a.499.499 0 00.497.5H10v2H1v-9h2zm1-1h6.5a.499.499 0 01.5.5v6.5h2v-9H4v2zm6 7V7.71l-2.293 2.293H10zm0-3.707V4.71l-5.293 5.293h1.586L10 6.297zm-.707-2.293H7.707L4 7.71v1.586l5.293-5.293z`,fill:e}))),rk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M3 3.004v-2.5a.5.5 0 01.5-.5h10a.5.5 0 01.5.5v10a.5.5 0 01-.5.5H11v2.5a.5.5 0 01-.5.5H.5a.5.5 0 01-.5-.5v-10a.5.5 0 01.5-.5H3zm1 0v-2h9v9h-2v-6.5a.5.5 0 00-.5-.5H4zm6 8v2H1v-9h2v6.5a.5.5 0 00.5.5H10zm0-1H4v-6h6v6z`,fill:e}))),ik=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`g`,{clipPath:`url(#prefix__clip0_2359_559)`,fillRule:`evenodd`,clipRule:`evenodd`,fill:e},o.createElement(`path`,{d:`M3 3.004H.5a.5.5 0 00-.5.5v10a.5.5 0 00.5.5h7.176a4.526 4.526 0 01-.916-1H1v-9h2v6.5a.499.499 0 00.497.5h2.531a4.548 4.548 0 01-.001-1h-1.32l2.16-2.16c.274-.374.603-.703.977-.977L10 4.711v1.316a4.552 4.552 0 011 0V3.504a.48.48 0 00-.038-.191.5.5 0 00-.462-.31H4v-2h9v5.755c.378.253.715.561 1 .913V.504a.5.5 0 00-.5-.5h-10a.5.5 0 00-.5.5v2.5zm1 1v2.293l2.293-2.293H4zm5.293 0H7.707L4 7.71v1.586l5.293-5.293z`}),o.createElement(`path`,{d:`M14 10.5a3.5 3.5 0 11-7 0 3.5 3.5 0 017 0zm-5.5 0A.5.5 0 019 10h3a.5.5 0 010 1H9a.5.5 0 01-.5-.5z`})),o.createElement(`defs`,null,o.createElement(`clipPath`,{id:`prefix__clip0_2359_559`},o.createElement(`path`,{fill:`#fff`,d:`M0 0h14v14H0z`}))))),ak=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M11.854.146a.5.5 0 00-.708 0L2.983 8.31a2.24 2.24 0 00-1.074.6C.677 10.14.24 11.902.085 12.997 0 13.6 0 14 0 14s.4 0 1.002-.085c1.095-.155 2.857-.592 4.089-1.824a2.24 2.24 0 00.6-1.074l8.163-8.163a.5.5 0 000-.708l-2-2zM5.6 9.692l.942-.942L5.25 7.457l-.942.943A2.242 2.242 0 015.6 9.692zm1.649-1.65L12.793 2.5 11.5 1.207 5.957 6.75 7.25 8.043zM4.384 9.617a1.25 1.25 0 010 1.768c-.767.766-1.832 1.185-2.78 1.403-.17.04-.335.072-.49.098.027-.154.06-.318.099-.49.219-.947.637-2.012 1.403-2.779a1.25 1.25 0 011.768 0z`,fill:e}))),ok=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1.5 1.004a.5.5 0 01.5.5v.5h10v-.5a.5.5 0 011 0v2a.5.5 0 01-1 0v-.5H2v.5a.5.5 0 01-1 0v-2a.5.5 0 01.5-.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1.5 6a.5.5 0 00-.5.5v6a.5.5 0 00.5.5h11a.5.5 0 00.5-.5v-6a.5.5 0 00-.5-.5h-11zM2 7v5h10V7h-1v2.5a.5.5 0 01-1 0V7h-.75v1a.5.5 0 01-1 0V7H7.5v2.5a.5.5 0 01-1 0V7h-.75v1a.5.5 0 01-1 0V7H4v2.5a.5.5 0 01-1 0V7H2z`,fill:e}))),sk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M10 7a3 3 0 11-6 0 3 3 0 016 0zM9 7a2 2 0 11-4 0 2 2 0 014 0z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M2.5 1a.5.5 0 00-.5.5v.504H.5a.5.5 0 00-.5.5v9a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-9a.5.5 0 00-.5-.5H6V1.5a.5.5 0 00-.5-.5h-3zM1 3.004v8h12v-8H1z`,fill:e}))),ck=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M2.5 10a.5.5 0 100-1 .5.5 0 000 1z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M0 4a2 2 0 012-2h6a2 2 0 012 2v.5l3.189-2.391A.5.5 0 0114 2.5v9a.5.5 0 01-.804.397L10 9.5v.5a2 2 0 01-2 2H2a2 2 0 01-2-2V4zm9 0v1.5a.5.5 0 00.8.4L13 3.5v7L9.8 8.1a.5.5 0 00-.8.4V10a1 1 0 01-1 1H2a1 1 0 01-1-1V4a1 1 0 011-1h6a1 1 0 011 1z`,fill:e}))),lk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1 4.5v5a.5.5 0 00.5.5H4l3.17 2.775a.5.5 0 00.83-.377V1.602a.5.5 0 00-.83-.376L4 4H1.5a.5.5 0 00-.5.5zM4 9V5H2v4h2zm.998.545A.504.504 0 005 9.5v-5c0-.015 0-.03-.002-.044L7 2.704v8.592L4.998 9.545z`,fill:e}),o.createElement(`path`,{d:`M10.15 1.752a.5.5 0 00-.3.954 4.502 4.502 0 010 8.588.5.5 0 00.3.954 5.502 5.502 0 000-10.496z`,fill:e}),o.createElement(`path`,{d:`M10.25 3.969a.5.5 0 00-.5.865 2.499 2.499 0 010 4.332.5.5 0 10.5.866 3.499 3.499 0 000-6.063z`,fill:e}))),uk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M12.813 7.425l-9.05 5.603A.5.5 0 013 12.603V1.398a.5.5 0 01.763-.425l9.05 5.602a.5.5 0 010 .85z`,fill:e}))),dk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M11.24 12.035L3.697 7.427A.494.494 0 013.5 7.2v4.05a.75.75 0 01-1.5 0v-8.5a.75.75 0 011.5 0V6.8a.494.494 0 01.198-.227l7.541-4.608A.5.5 0 0112 2.39v9.217a.5.5 0 01-.76.427z`,fill:e}))),fk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M2.76 12.035l7.542-4.608A.495.495 0 0010.5 7.2v4.05a.75.75 0 001.5 0v-8.5a.75.75 0 00-1.5 0V6.8a.495.495 0 00-.198-.227L2.76 1.965A.5.5 0 002 2.39v9.217a.5.5 0 00.76.427z`,fill:e}))),pk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M9 2.42v2.315l4.228-2.736a.5.5 0 01.772.42v9.162a.5.5 0 01-.772.42L9 9.263v2.317a.5.5 0 01-.772.42L1.5 7.647v3.603a.75.75 0 01-1.5 0v-8.5a.75.75 0 011.5 0v3.603L8.228 2A.5.5 0 019 2.42z`,fill:e}))),mk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M5 2.42v2.315L.772 1.999a.5.5 0 00-.772.42v9.162a.5.5 0 00.772.42L5 9.263v2.317a.5.5 0 00.772.42L12.5 7.647v3.603a.75.75 0 001.5 0v-8.5a.75.75 0 00-1.5 0v3.603L5.772 2A.5.5 0 005 2.42z`,fill:e}))),hk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1 1.504a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11z`,fill:e}))),gk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`g`,{clipPath:`url(#prefix__clip0_1107_3492)`,fill:e},o.createElement(`path`,{d:`M7.5.5a.5.5 0 00-1 0V2a.5.5 0 001 0V.5z`}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7 10a3 3 0 100-6 3 3 0 000 6zm0-1a2 2 0 100-4 2 2 0 000 4z`}),o.createElement(`path`,{d:`M7 11.5a.5.5 0 01.5.5v1.5a.5.5 0 01-1 0V12a.5.5 0 01.5-.5zM11.5 7a.5.5 0 01.5-.5h1.5a.5.5 0 010 1H12a.5.5 0 01-.5-.5zM.5 6.5a.5.5 0 000 1H2a.5.5 0 000-1H.5zM3.818 10.182a.5.5 0 010 .707l-1.06 1.06a.5.5 0 11-.708-.706l1.06-1.06a.5.5 0 01.708 0zM11.95 2.757a.5.5 0 10-.707-.707l-1.061 1.061a.5.5 0 10.707.707l1.06-1.06zM10.182 10.182a.5.5 0 01.707 0l1.06 1.06a.5.5 0 11-.706.708l-1.061-1.06a.5.5 0 010-.708zM2.757 2.05a.5.5 0 10-.707.707l1.06 1.061a.5.5 0 00.708-.707l-1.06-1.06z`})),o.createElement(`defs`,null,o.createElement(`clipPath`,{id:`prefix__clip0_1107_3492`},o.createElement(`path`,{fill:`#fff`,d:`M0 0h14v14H0z`}))))),_k=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 15 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`g`,{clipPath:`url(#prefix__clip0_1107_3493)`},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M8.335.047l-.15-.015a7.499 7.499 0 106.14 10.577c.103-.229-.156-.447-.386-.346a5.393 5.393 0 01-.771.27A5.356 5.356 0 019.153.691C9.37.568 9.352.23 9.106.175a7.545 7.545 0 00-.77-.128zM6.977 1.092a6.427 6.427 0 005.336 10.671A6.427 6.427 0 116.977 1.092z`,fill:e})),o.createElement(`defs`,null,o.createElement(`clipPath`,{id:`prefix__clip0_1107_3493`},o.createElement(`path`,{fill:`#fff`,transform:`scale(1.07124)`,d:`M0 0h14.001v14.002H0z`}))))),vk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M2.2 2.204v9.6h9.6v-9.6H2.2zm-.7-1.2a.5.5 0 00-.5.5v11a.5.5 0 00.5.5h11a.5.5 0 00.5-.5v-11a.5.5 0 00-.5-.5h-11z`,fill:e}))),yk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M4.2 10.88L10.668 7 4.2 3.12v7.76zM3 2.414v9.174a.8.8 0 001.212.686l7.645-4.587a.8.8 0 000-1.372L4.212 1.727A.8.8 0 003 2.413z`,fill:e}))),bk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M5.2 10.88L11.668 7 5.2 3.12v7.76zM4 2.414v9.174a.8.8 0 001.212.686l7.645-4.587a.8.8 0 000-1.372L5.212 1.727A.8.8 0 004 2.413zM1.5 1.6a.6.6 0 01.6.6v9.6a.6.6 0 11-1.2 0V2.2a.6.6 0 01.6-.6z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M.963 1.932a.6.6 0 01.805-.268l1 .5a.6.6 0 01-.536 1.073l-1-.5a.6.6 0 01-.269-.805zM3.037 11.132a.6.6 0 01-.269.805l-1 .5a.6.6 0 01-.536-1.073l1-.5a.6.6 0 01.805.268z`,fill:e}))),xk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M4.5 4a.5.5 0 00-.5.5v5a.5.5 0 00.5.5h5a.5.5 0 00.5-.5v-5a.5.5 0 00-.5-.5h-5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z`,fill:e}))),Sk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1 1.504a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11zm1 10.5v-10h5v10H2z`,fill:e}))),Ck=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M12.5 1.004a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h11zm-10.5 1h10v5H2v-5z`,fill:e}))),wk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M13 2a2 2 0 00-2-2H1.5a.5.5 0 00-.5.5v13a.5.5 0 00.5.5H11a2 2 0 002-2V2zM3 13h8a1 1 0 001-1V2a1 1 0 00-1-1H7v6.004a.5.5 0 01-.856.352l-.002-.002L5.5 6.71l-.645.647A.5.5 0 014 7.009V1H3v12zM5 1v4.793l.146-.146a.5.5 0 01.743.039l.111.11V1H5z`,fill:e}))),Tk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M4 5.5a.5.5 0 01.5-.5h5a.5.5 0 010 1h-5a.5.5 0 01-.5-.5zM4.5 7.5a.5.5 0 000 1h5a.5.5 0 000-1h-5zM4 10.5a.5.5 0 01.5-.5h5a.5.5 0 010 1h-5a.5.5 0 01-.5-.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1.5 0a.5.5 0 00-.5.5v13a.5.5 0 00.5.5h11a.5.5 0 00.5-.5V3.207a.5.5 0 00-.146-.353L10.146.146A.5.5 0 009.793 0H1.5zM2 1h7.5v2a.5.5 0 00.5.5h2V13H2V1z`,fill:e}))),Ek=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M11.746.07A.5.5 0 0011.5.003h-6a.5.5 0 00-.5.5v2.5H.5a.5.5 0 00-.5.5v10a.5.5 0 00.5.5h8a.5.5 0 00.5-.5v-2.5h4.5a.5.5 0 00.5-.5v-8a.498.498 0 00-.15-.357L11.857.154a.506.506 0 00-.11-.085zM9 10.003h4v-7h-1.5a.5.5 0 01-.5-.5v-1.5H6v2h.5a.5.5 0 01.357.15L8.85 5.147c.093.09.15.217.15.357v4.5zm-8-6v9h7v-7H6.5a.5.5 0 01-.5-.5v-1.5H1z`,fill:e}))),Dk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M3 1.5a.5.5 0 01.5-.5h7a.5.5 0 010 1h-7a.5.5 0 01-.5-.5zM2 3.504a.5.5 0 01.5-.5h9a.5.5 0 010 1h-9a.5.5 0 01-.5-.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1 5.5a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v7a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-7zM2 12V6h10v6H2z`,fill:e}))),Ok=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M6.586 3.504l-1.5-1.5H1v9h12v-7.5H6.586zm.414-1L5.793 1.297a1 1 0 00-.707-.293H.5a.5.5 0 00-.5.5v10a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-8.5a.5.5 0 00-.5-.5H7z`,fill:e}))),kk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M4.5 8.004a.5.5 0 100 1h5a.5.5 0 000-1h-5zM4.5 10.004a.5.5 0 000 1h5a.5.5 0 000-1h-5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M2 1.504a.5.5 0 01.5-.5h8a.498.498 0 01.357.15l.993.993c.093.09.15.217.15.357v1.5h1.5a.5.5 0 01.5.5v5a.5.5 0 01-.5.5H12v2.5a.5.5 0 01-.5.5h-9a.5.5 0 01-.5-.5v-2.5H.5a.5.5 0 01-.5-.5v-5a.5.5 0 01.5-.5H2v-2.5zm11 7.5h-1v-2.5a.5.5 0 00-.5-.5h-9a.5.5 0 00-.5.5v2.5H1v-4h12v4zm-2-6v1H3v-2h7v.5a.5.5 0 00.5.5h.5zm-8 9h8v-5H3v5z`,fill:e}))),Ak=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M5.146 6.15a.5.5 0 01.708 0L7 7.297 9.146 5.15a.5.5 0 01.708 0l1 1a.5.5 0 01-.708.707L9.5 6.211 7.354 8.357a.5.5 0 01-.708 0L5.5 7.211 3.854 8.857a.5.5 0 11-.708-.707l2-2z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1.5 1.004a.5.5 0 00-.5.5v11a.5.5 0 00.5.5h11a.5.5 0 00.5-.5v-11a.5.5 0 00-.5-.5h-11zm.5 1v10h10v-10H2z`,fill:e}))),jk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M3.5 0a.5.5 0 01.5.5V1h6V.5a.5.5 0 011 0V1h1.5a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5H3V.5a.5.5 0 01.5-.5zM2 4v2.3h3V4H2zm0 5.2V6.8h3v2.4H2zm0 .5V12h3V9.7H2zm3.5 0V12h3V9.7h-3zm3.5 0V12h3V9.7H9zm3-.5H9V6.8h3v2.4zm-3.5 0h-3V6.8h3v2.4zM9 4v2.3h3V4H9zM5.5 6.3h3V4h-3v2.3z`,fill:e}))),Mk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M12 2.5a.5.5 0 00-1 0v10a.5.5 0 001 0v-10zM9 4.5a.5.5 0 00-1 0v8a.5.5 0 001 0v-8zM5.5 7a.5.5 0 01.5.5v5a.5.5 0 01-1 0v-5a.5.5 0 01.5-.5zM3 10.5a.5.5 0 00-1 0v2a.5.5 0 001 0v-2z`,fill:e}))),Nk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M13 2a.5.5 0 010 1H1a.5.5 0 010-1h12zM10 5a.5.5 0 010 1H1a.5.5 0 010-1h9zM11.5 8.5A.5.5 0 0011 8H1a.5.5 0 000 1h10a.5.5 0 00.5-.5zM7.5 11a.5.5 0 010 1H1a.5.5 0 010-1h6.5z`,fill:e}))),Pk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1 2a.5.5 0 000 1h12a.5.5 0 000-1H1zM4 5a.5.5 0 000 1h9a.5.5 0 000-1H4zM2.5 8.5A.5.5 0 013 8h10a.5.5 0 010 1H3a.5.5 0 01-.5-.5zM6.5 11a.5.5 0 000 1H13a.5.5 0 000-1H6.5z`,fill:e}))),Fk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1 2a.5.5 0 000 1h12a.5.5 0 000-1H1zM3 5a.5.5 0 000 1h8a.5.5 0 000-1H3zM4.5 8.5A.5.5 0 015 8h4a.5.5 0 010 1H5a.5.5 0 01-.5-.5zM6.5 11a.5.5 0 000 1h1a.5.5 0 000-1h-1z`,fill:e}))),Ik=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1 1.5a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11zM2 4v2.3h3V4H2zm0 5.2V6.8h3v2.4H2zm0 .5V12h3V9.7H2zm3.5 0V12h3V9.7h-3zm3.5 0V12h3V9.7H9zm3-.5H9V6.8h3v2.4zm-3.5 0h-3V6.8h3v2.4zM9 6.3h3V4H9v2.3zm-3.5 0h3V4h-3v2.3z`,fill:e}))),Lk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M3.5 6.5A.5.5 0 014 6h6a.5.5 0 010 1H4a.5.5 0 01-.5-.5zM4 9a.5.5 0 000 1h6a.5.5 0 000-1H4z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1 1.5a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11zM2 4v8h10V4H2z`,fill:e}))),Rk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M13 4a.5.5 0 010 1H1a.5.5 0 010-1h12zM13.5 9.5A.5.5 0 0013 9H1a.5.5 0 000 1h12a.5.5 0 00.5-.5z`,fill:e}))),zk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M13 3.5a.5.5 0 010 1H1a.5.5 0 010-1h12zM13.5 10a.5.5 0 00-.5-.5H1a.5.5 0 000 1h12a.5.5 0 00.5-.5zM13 6.5a.5.5 0 010 1H1a.5.5 0 010-1h12z`,fill:e}))),Bk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M8.982 1.632a.5.5 0 00-.964-.263l-3 11a.5.5 0 10.964.263l3-11zM3.32 3.616a.5.5 0 01.064.704L1.151 7l2.233 2.68a.5.5 0 11-.768.64l-2.5-3a.5.5 0 010-.64l2.5-3a.5.5 0 01.704-.064zM10.68 3.616a.5.5 0 00-.064.704L12.849 7l-2.233 2.68a.5.5 0 00.768.64l2.5-3a.5.5 0 000-.64l-2.5-3a.5.5 0 00-.704-.064z`,fill:e}))),Vk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M3 2v1.5h1v7H3V12h5a3 3 0 001.791-5.407A2.75 2.75 0 008 2.011V2H3zm5 5.5H5.5v3H8a1.5 1.5 0 100-3zm-.25-4H5.5V6h2.25a1.25 1.25 0 100-2.5z`,fill:e}))),Hk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M5 2h6v1H8.5l-2 8H9v1H3v-1h2.5l2-8H5V2z`,fill:e}))),Uk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M10.553 2.268a1.5 1.5 0 00-2.12 0L2.774 7.925a2.5 2.5 0 003.536 3.535l3.535-3.535a.5.5 0 11.707.707l-3.535 3.536-.002.002a3.5 3.5 0 01-4.959-4.941l.011-.011L7.725 1.56l.007-.008a2.5 2.5 0 013.53 3.541l-.002.002-5.656 5.657-.003.003a1.5 1.5 0 01-2.119-2.124l3.536-3.536a.5.5 0 11.707.707L4.189 9.34a.5.5 0 00.707.707l5.657-5.657a1.5 1.5 0 000-2.121z`,fill:e}))),Wk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M5 2.5a.5.5 0 01.5-.5h7a.5.5 0 010 1h-7a.5.5 0 01-.5-.5zM5 7a.5.5 0 01.5-.5h7a.5.5 0 010 1h-7A.5.5 0 015 7zM5.5 11a.5.5 0 000 1h7a.5.5 0 000-1h-7zM2.5 2H1v1h1v3h1V2.5a.5.5 0 00-.5-.5zM3 8.5v1a.5.5 0 01-1 0V9h-.5a.5.5 0 010-1h1a.5.5 0 01.5.5zM2 10.5a.5.5 0 00-1 0V12h2v-1H2v-.5z`,fill:e}))),Gk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M2.75 2.5a.75.75 0 11-1.5 0 .75.75 0 011.5 0zM5.5 2a.5.5 0 000 1h7a.5.5 0 000-1h-7zM5.5 11a.5.5 0 000 1h7a.5.5 0 000-1h-7zM2 12.25a.75.75 0 100-1.5.75.75 0 000 1.5zM5 7a.5.5 0 01.5-.5h7a.5.5 0 010 1h-7A.5.5 0 015 7zM2 7.75a.75.75 0 100-1.5.75.75 0 000 1.5z`,fill:e}))),Kk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M6 7a3 3 0 110-6h5.5a.5.5 0 010 1H10v10.5a.5.5 0 01-1 0V2H7v10.5a.5.5 0 01-1 0V7z`,fill:e}))),qk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M2 4.5h1.5L5 6.375 6.5 4.5H8v5H6.5V7L5 8.875 3.5 7v2.5H2v-5zM9.75 4.5h1.5V7h1.25l-2 2.5-2-2.5h1.25V4.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M.5 2a.5.5 0 00-.5.5v9a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-9a.5.5 0 00-.5-.5H.5zM1 3v8h12V3H1z`,fill:e}))),Jk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M5 2.5a.5.5 0 11-1 0 .5.5 0 011 0zM4.5 5a.5.5 0 100-1 .5.5 0 000 1zM5 6.5a.5.5 0 11-1 0 .5.5 0 011 0z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M11 0a2 2 0 012 2v10a2 2 0 01-2 2H1.5a.5.5 0 01-.5-.5V.5a.5.5 0 01.5-.5H11zm0 1H3v12h8a1 1 0 001-1V2a1 1 0 00-1-1z`,fill:e}))),Yk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M3.031 7.5a4 4 0 007.938 0H13.5a.5.5 0 000-1h-2.53a4 4 0 00-7.94 0H.501a.5.5 0 000 1h2.531zM7 10a3 3 0 100-6 3 3 0 000 6z`,fill:e}))),Xk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M6 2.5a1.5 1.5 0 01-1 1.415v4.053C5.554 7.4 6.367 7 7.5 7c.89 0 1.453-.252 1.812-.557.218-.184.374-.4.482-.62a1.5 1.5 0 111.026.143c-.155.423-.425.87-.86 1.24C9.394 7.685 8.59 8 7.5 8c-1.037 0-1.637.42-1.994.917a2.81 2.81 0 00-.472 1.18A1.5 1.5 0 114 10.086v-6.17A1.5 1.5 0 116 2.5zm-2 9a.5.5 0 111 0 .5.5 0 01-1 0zm1-9a.5.5 0 11-1 0 .5.5 0 011 0zm6 2a.5.5 0 11-1 0 .5.5 0 011 0z`,fill:e}))),Zk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M8.354 1.354L7.707 2H8.5A2.5 2.5 0 0111 4.5v5.585a1.5 1.5 0 11-1 0V4.5A1.5 1.5 0 008.5 3h-.793l.647.646a.5.5 0 11-.708.708l-1.5-1.5a.5.5 0 010-.708l1.5-1.5a.5.5 0 11.708.708zM11 11.5a.5.5 0 11-1 0 .5.5 0 011 0zM4 3.915a1.5 1.5 0 10-1 0v6.17a1.5 1.5 0 101 0v-6.17zM3.5 11a.5.5 0 100 1 .5.5 0 000-1zm0-8a.5.5 0 100-1 .5.5 0 000 1z`,fill:e}))),Qk=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M4.108 3.872A1.5 1.5 0 103 3.915v6.17a1.5 1.5 0 101 0V6.41c.263.41.573.77.926 1.083 1.108.98 2.579 1.433 4.156 1.5A1.5 1.5 0 109.09 7.99c-1.405-.065-2.62-.468-3.5-1.248-.723-.64-1.262-1.569-1.481-2.871zM3.5 11a.5.5 0 100 1 .5.5 0 000-1zM4 2.5a.5.5 0 11-1 0 .5.5 0 011 0zm7 6a.5.5 0 11-1 0 .5.5 0 011 0z`,fill:e}))),$k=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M11.03 8.103a3.044 3.044 0 01-.202-1.744 2.697 2.697 0 011.4-1.935c-.749-1.18-1.967-1.363-2.35-1.403-.835-.086-2.01.56-2.648.57h-.016c-.639-.01-1.814-.656-2.649-.57-.415.044-1.741.319-2.541 1.593-.281.447-.498 1.018-.586 1.744a6.361 6.361 0 00-.044.85c.005.305.028.604.07.895.09.62.259 1.207.477 1.744.242.595.543 1.13.865 1.585.712 1.008 1.517 1.59 1.971 1.6.934.021 1.746-.61 2.416-.594.006.002.014.003.02.002h.017c.007 0 .014 0 .021-.002.67-.017 1.481.615 2.416.595.453-.011 1.26-.593 1.971-1.6a7.95 7.95 0 00.97-1.856c-.697-.217-1.27-.762-1.578-1.474zm-2.168-5.97c.717-.848.69-2.07.624-2.125-.065-.055-1.25.163-1.985.984-.735.82-.69 2.071-.624 2.125.064.055 1.268-.135 1.985-.984z`,fill:e}))),eA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7 0a3 3 0 013 3v1.24c.129.132.25.27.362.415.113.111.283.247.515.433l.194.155c.325.261.711.582 1.095.966.765.765 1.545 1.806 1.823 3.186a.501.501 0 01-.338.581 3.395 3.395 0 01-1.338.134 2.886 2.886 0 01-1.049-.304 5.535 5.535 0 01-.17.519 2 2 0 11-2.892 2.55A5.507 5.507 0 017 13c-.439 0-.838-.044-1.201-.125a2 2 0 11-2.892-2.55 5.553 5.553 0 01-.171-.519c-.349.182-.714.27-1.05.304A3.395 3.395 0 01.35 9.977a.497.497 0 01-.338-.582c.278-1.38 1.058-2.42 1.823-3.186.384-.384.77-.705 1.095-.966l.194-.155c.232-.186.402-.322.515-.433.112-.145.233-.283.362-.414V3a3 3 0 013-3zm1.003 11.895a2 2 0 012.141-1.89c.246-.618.356-1.322.356-2.005 0-.514-.101-1.07-.301-1.599l-.027-.017a6.387 6.387 0 00-.857-.42 6.715 6.715 0 00-1.013-.315l-.852.638a.75.75 0 01-.9 0l-.852-.638a6.716 6.716 0 00-1.693.634 4.342 4.342 0 00-.177.101l-.027.017A4.6 4.6 0 003.501 8c0 .683.109 1.387.355 2.005a2 2 0 012.142 1.89c.295.067.627.105 1.002.105s.707-.038 1.003-.105zM5 12a1 1 0 11-2 0 1 1 0 012 0zm6 0a1 1 0 11-2 0 1 1 0 012 0zM6.1 4.3a1.5 1.5 0 011.8 0l.267.2L7 5.375 5.833 4.5l.267-.2zM8.5 2a.5.5 0 01.5.5V3a.5.5 0 01-1 0v-.5a.5.5 0 01.5-.5zM6 2.5a.5.5 0 00-1 0V3a.5.5 0 001 0v-.5z`,fill:e}))),tA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`g`,{clipPath:`url(#prefix__clip0_1107_3497)`,fill:e},o.createElement(`path`,{d:`M12.261 2.067c0 1.142-.89 2.068-1.988 2.068-1.099 0-1.99-.926-1.99-2.068C8.283.926 9.174 0 10.273 0c1.098 0 1.989.926 1.989 2.067zM3.978 6.6c0 1.142-.89 2.068-1.989 2.068C.891 8.668 0 7.742 0 6.601c0-1.142.89-2.068 1.989-2.068 1.099 0 1.989.926 1.989 2.068zM6.475 11.921A4.761 4.761 0 014.539 11a4.993 4.993 0 01-1.367-1.696 2.765 2.765 0 01-1.701.217 6.725 6.725 0 001.844 2.635 6.379 6.379 0 004.23 1.577 3.033 3.033 0 01-.582-1.728 4.767 4.767 0 01-.488-.083zM11.813 11.933c0 1.141-.89 2.067-1.989 2.067-1.098 0-1.989-.926-1.989-2.067 0-1.142.891-2.068 1.99-2.068 1.098 0 1.989.926 1.989 2.068zM12.592 11.173a6.926 6.926 0 001.402-3.913 6.964 6.964 0 00-1.076-4.023A2.952 2.952 0 0111.8 4.6c.398.78.592 1.656.564 2.539a5.213 5.213 0 01-.724 2.495c.466.396.8.935.952 1.54zM1.987 3.631c-.05 0-.101.002-.151.004C3.073 1.365 5.504.024 8.005.23a3.07 3.07 0 00-.603 1.676 4.707 4.707 0 00-2.206.596 4.919 4.919 0 00-1.7 1.576 2.79 2.79 0 00-1.509-.447z`})),o.createElement(`defs`,null,o.createElement(`clipPath`,{id:`prefix__clip0_1107_3497`},o.createElement(`path`,{fill:`#fff`,d:`M0 0h14v14H0z`}))))),nA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M6.5 1H1v5.5h5.5V1zM13 1H7.5v5.5H13V1zM7.5 7.5H13V13H7.5V7.5zM6.5 7.5H1V13h5.5V7.5z`,fill:e}))),rA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`g`,{clipPath:`url(#prefix__clip0_1107_3496)`},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M13.023 3.431a.115.115 0 01-.099.174H7.296A3.408 3.408 0 003.7 6.148a.115.115 0 01-.21.028l-1.97-3.413a.115.115 0 01.01-.129A6.97 6.97 0 017 0a6.995 6.995 0 016.023 3.431zM7 9.615A2.619 2.619 0 014.384 7 2.62 2.62 0 017 4.383 2.619 2.619 0 019.616 7 2.619 2.619 0 017 9.615zm1.034.71a.115.115 0 00-.121-.041 3.4 3.4 0 01-.913.124 3.426 3.426 0 01-3.091-1.973L1.098 3.567a.115.115 0 00-.2.001 7.004 7.004 0 005.058 10.354l.017.001c.04 0 .078-.021.099-.057l1.971-3.414a.115.115 0 00-.009-.128zm1.43-5.954h3.947c.047 0 .09.028.107.072.32.815.481 1.675.481 2.557a6.957 6.957 0 01-2.024 4.923A6.957 6.957 0 017.08 14h-.001a.115.115 0 01-.1-.172L9.794 8.95A3.384 3.384 0 0010.408 7c0-.921-.364-1.785-1.024-2.433a.115.115 0 01.08-.196z`,fill:e})),o.createElement(`defs`,null,o.createElement(`clipPath`,{id:`prefix__clip0_1107_3496`},o.createElement(`path`,{fill:`#fff`,d:`M0 0h14v14H0z`}))))),iA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M2.042.616a.704.704 0 00-.66.729L1.816 12.9c.014.367.306.66.672.677l9.395.422h.032a.704.704 0 00.704-.703V.704c0-.015 0-.03-.002-.044a.704.704 0 00-.746-.659l-.773.049.057 1.615a.105.105 0 01-.17.086l-.52-.41-.617.468a.105.105 0 01-.168-.088L9.746.134 2.042.616zm8.003 4.747c-.247.192-2.092.324-2.092.05.04-1.045-.429-1.091-.689-1.091-.247 0-.662.075-.662.634 0 .57.607.893 1.32 1.27 1.014.538 2.24 1.188 2.24 2.823 0 1.568-1.273 2.433-2.898 2.433-1.676 0-3.141-.678-2.976-3.03.065-.275 2.197-.21 2.197 0-.026.971.195 1.256.753 1.256.43 0 .624-.236.624-.634 0-.602-.633-.958-1.361-1.367-.987-.554-2.148-1.205-2.148-2.7 0-1.494 1.027-2.489 2.86-2.489 1.832 0 2.832.98 2.832 2.845z`,fill:e}))),aA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`g`,{clipPath:`url(#prefix__clip0_1107_3503)`},o.createElement(`path`,{d:`M0 5.176l1.31-1.73 4.902-1.994V.014l4.299 3.144-8.78 1.706v4.8L0 9.162V5.176zm14-2.595v8.548l-3.355 2.857-5.425-1.783v1.783L1.73 9.661l8.784 1.047v-7.55L14 2.581z`,fill:e})),o.createElement(`defs`,null,o.createElement(`clipPath`,{id:`prefix__clip0_1107_3503`},o.createElement(`path`,{fill:`#fff`,d:`M0 0h14v14H0z`}))))),oA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1 1.522a.411.411 0 00-.412.476l1.746 10.597a.56.56 0 00.547.466h8.373a.411.411 0 00.412-.345l1.017-6.248h-3.87L8.35 9.18H5.677l-.724-3.781h7.904L13.412 2A.411.411 0 0013 1.524L1 1.522z`,fill:e}))),sA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M0 7a7 7 0 1014 0A7 7 0 000 7zm5.215-3.869a1.967 1.967 0 013.747.834v1.283l-3.346-1.93a2.486 2.486 0 00-.401-.187zm3.484 2.58l-3.346-1.93a1.968 1.968 0 00-2.685.72 1.954 1.954 0 00.09 2.106 2.45 2.45 0 01.362-.254l1.514-.873a.27.27 0 01.268 0l2.1 1.21 1.697-.978zm-.323 4.972L6.86 9.81a.268.268 0 01-.134-.231V7.155l-1.698-.98v3.86a1.968 1.968 0 003.747.835 2.488 2.488 0 01-.4-.187zm.268-.464a1.967 1.967 0 002.685-.719 1.952 1.952 0 00-.09-2.106c-.112.094-.233.18-.361.253L7.53 9.577l1.113.642zm-4.106.257a1.974 1.974 0 01-1.87-.975A1.95 1.95 0 012.47 8.01c.136-.507.461-.93.916-1.193L4.5 6.175v3.86c0 .148.013.295.039.44zM11.329 4.5a1.973 1.973 0 00-1.87-.976c.025.145.039.292.039.44v1.747a.268.268 0 01-.135.232l-2.1 1.211v1.96l3.346-1.931a1.966 1.966 0 00.72-2.683z`,fill:e}))),cA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M10.847 2.181L8.867.201a.685.685 0 00-.97 0l-4.81 4.81a.685.685 0 000 .969l2.466 2.465-2.405 2.404a.685.685 0 000 .97l1.98 1.98a.685.685 0 00.97 0l4.81-4.81a.685.685 0 000-.969L8.441 5.555l2.405-2.404a.685.685 0 000-.97z`,fill:e}))),lA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M11.852 2.885c-.893-.41-1.85-.712-2.85-.884a.043.043 0 00-.046.021c-.123.22-.26.505-.355.73a10.658 10.658 0 00-3.2 0 7.377 7.377 0 00-.36-.73.045.045 0 00-.046-.021c-1 .172-1.957.474-2.85.884a.04.04 0 00-.019.016C.311 5.612-.186 8.257.058 10.869a.048.048 0 00.018.033 11.608 11.608 0 003.496 1.767.045.045 0 00.049-.016c.27-.368.51-.755.715-1.163a.044.044 0 00-.024-.062 7.661 7.661 0 01-1.092-.52.045.045 0 01-.005-.075c.074-.055.147-.112.217-.17a.043.043 0 01.046-.006c2.29 1.046 4.771 1.046 7.035 0a.043.043 0 01.046.006c.07.057.144.115.218.17a.045.045 0 01-.004.075 7.186 7.186 0 01-1.093.52.045.045 0 00-.024.062c.21.407.45.795.715 1.162.011.016.03.023.05.017a11.57 11.57 0 003.5-1.767.045.045 0 00.019-.032c.292-3.02-.49-5.643-2.07-7.969a.036.036 0 00-.018-.016zM4.678 9.279c-.69 0-1.258-.634-1.258-1.411 0-.778.558-1.411 1.258-1.411.707 0 1.27.639 1.259 1.41 0 .778-.558 1.412-1.259 1.412zm4.652 0c-.69 0-1.258-.634-1.258-1.411 0-.778.557-1.411 1.258-1.411.707 0 1.27.639 1.258 1.41 0 .778-.551 1.412-1.258 1.412z`,fill:e}))),uA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7.399 14H5.06V7H3.5V4.588l1.56-.001-.002-1.421C5.058 1.197 5.533 0 7.6 0h1.721v2.413H8.246c-.805 0-.844.337-.844.966l-.003 1.208h1.934l-.228 2.412L7.401 7l-.002 7z`,fill:e}))),dA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M9.2 0H4.803A2.603 2.603 0 003.41 4.802a2.603 2.603 0 000 4.396 2.602 2.602 0 103.998 2.199v-2.51a2.603 2.603 0 103.187-4.085A2.604 2.604 0 009.2 0zM7.407 7a1.793 1.793 0 103.586 0 1.793 1.793 0 00-3.586 0zm-.81 2.603H4.803a1.793 1.793 0 101.794 1.794V9.603zM4.803 4.397h1.794V.81H4.803a1.793 1.793 0 000 3.587zm0 .81a1.793 1.793 0 000 3.586h1.794V5.207H4.803zm4.397-.81H7.407V.81H9.2a1.794 1.794 0 010 3.587z`,fill:e}))),fA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M6.37 8.768l-2.042 3.537h6.755l2.042-3.537H6.37zm6.177-1.003l-3.505-6.07H4.96l3.504 6.07h4.084zM4.378 2.7L.875 8.77l2.042 3.536L6.42 6.236 4.378 2.7z`,fill:e}))),pA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7 0C3.132 0 0 3.132 0 7a6.996 6.996 0 004.786 6.641c.35.062.482-.149.482-.332 0-.166-.01-.718-.01-1.304-1.758.324-2.213-.429-2.353-.823-.079-.2-.42-.822-.717-.988-.246-.132-.596-.455-.01-.464.552-.009.946.508 1.077.717.63 1.06 1.636.762 2.039.578.061-.455.245-.761.446-.936-1.558-.175-3.185-.779-3.185-3.457 0-.76.271-1.39.717-1.88-.07-.176-.314-.893.07-1.856 0 0 .587-.183 1.925.718a6.495 6.495 0 011.75-.236c.595 0 1.19.078 1.75.236 1.34-.91 1.926-.718 1.926-.718.385.963.14 1.68.07 1.855.446.49.717 1.111.717 1.881 0 2.687-1.636 3.282-3.194 3.457.254.218.473.638.473 1.295 0 .936-.009 1.688-.009 1.925 0 .184.131.402.481.332A7.012 7.012 0 0014 7c0-3.868-3.133-7-7-7z`,fill:e}))),mA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1.068 5.583l1.487-4.557a.256.256 0 01.487 0L4.53 5.583H1.068L7 13.15 4.53 5.583h4.941l-2.47 7.565 5.931-7.565H9.471l1.488-4.557a.256.256 0 01.486 0l1.488 4.557.75 2.3a.508.508 0 01-.185.568L7 13.148v.001H7L.503 8.452a.508.508 0 01-.186-.57l.75-2.299z`,fill:e}))),hA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M10.925 1.094H7.262c-1.643 0-3.189 1.244-3.189 2.685 0 1.473 1.12 2.661 2.791 2.661.116 0 .23-.002.34-.01a1.49 1.49 0 00-.186.684c0 .41.22.741.498 1.012-.21 0-.413.006-.635.006-2.034 0-3.6 1.296-3.6 2.64 0 1.323 1.717 2.15 3.75 2.15 2.32 0 3.6-1.315 3.6-2.639 0-1.06-.313-1.696-1.28-2.38-.331-.235-.965-.805-.965-1.14 0-.392.112-.586.703-1.047.606-.474 1.035-1.14 1.035-1.914 0-.92-.41-1.819-1.18-2.115h1.161l.82-.593zm-1.335 8.96c.03.124.045.25.045.378 0 1.07-.688 1.905-2.665 1.905-1.406 0-2.421-.89-2.421-1.96 0-1.047 1.259-1.92 2.665-1.904.328.004.634.057.911.146.764.531 1.311.832 1.465 1.436zM7.34 6.068c-.944-.028-1.841-1.055-2.005-2.295-.162-1.24.47-2.188 1.415-2.16.943.029 1.84 1.023 2.003 2.262.163 1.24-.47 2.222-1.414 2.193z`,fill:e}))),gA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7.873 11.608a1.167 1.167 0 00-1.707-.027L3.46 10.018l.01-.04h7.072l.022.076-2.69 1.554zM6.166 2.42l.031.03-3.535 6.124a1.265 1.265 0 00-.043-.012V5.438a1.166 1.166 0 00.84-1.456L6.167 2.42zm4.387 1.562a1.165 1.165 0 00.84 1.456v3.124l-.043.012-3.536-6.123a1.2 1.2 0 00.033-.032l2.706 1.563zM3.473 9.42a1.168 1.168 0 00-.327-.568L6.68 2.73a1.17 1.17 0 00.652 0l3.536 6.123a1.169 1.169 0 00-.327.567H3.473zm8.79-.736a1.169 1.169 0 00-.311-.124V5.44a1.17 1.17 0 10-1.122-1.942L8.13 1.938a1.168 1.168 0 00-1.122-1.5 1.17 1.17 0 00-1.121 1.5l-2.702 1.56a1.168 1.168 0 00-1.86.22 1.17 1.17 0 00.739 1.722v3.12a1.168 1.168 0 00-.74 1.721 1.17 1.17 0 001.861.221l2.701 1.56a1.169 1.169 0 102.233-.035l2.687-1.552a1.168 1.168 0 101.457-1.791z`,fill:e}))),_A=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M0 0v14h14V0H0zm11.63 3.317l-.75.72a.22.22 0 00-.083.212v-.001 5.289a.22.22 0 00.083.21l.733.72v.159H7.925v-.158l.76-.738c.074-.074.074-.096.074-.21V5.244l-2.112 5.364h-.285l-2.46-5.364V8.84a.494.494 0 00.136.413h.001l.988 1.198v.158H2.226v-.158l.988-1.198a.477.477 0 00.126-.416v.003-4.157a.363.363 0 00-.118-.307l-.878-1.058v-.158h2.727l2.107 4.622L9.031 3.16h2.6v.158z`,fill:e}))),vA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M4.06 9.689c.016.49.423.88.912.88h.032a.911.911 0 00.88-.945.916.916 0 00-.912-.88h-.033c-.033 0-.08 0-.113.016-.669-1.108-.946-2.314-.848-3.618.065-.978.391-1.825.961-2.526.473-.603 1.386-.896 2.005-.913 1.728-.032 2.461 2.119 2.51 2.983.212.049.57.163.815.244C10.073 2.29 8.444.92 6.88.92c-1.467 0-2.82 1.06-3.357 2.625-.75 2.086-.261 4.09.651 5.671a.74.74 0 00-.114.473zm8.279-2.298c-1.239-1.45-3.064-2.249-5.15-2.249h-.261a.896.896 0 00-.798-.489h-.033A.912.912 0 006.13 6.48h.031a.919.919 0 00.8-.554h.293c1.239 0 2.412.358 3.472 1.059.814.538 1.401 1.238 1.727 2.086.277.684.261 1.353-.033 1.923-.456.864-1.222 1.337-2.232 1.337a4.16 4.16 0 01-1.597-.343 9.58 9.58 0 01-.734.587c.7.326 1.418.505 2.102.505 1.565 0 2.722-.863 3.162-1.727.473-.946.44-2.575-.782-3.961zm-7.433 5.51a4.005 4.005 0 01-.977.113c-1.206 0-2.298-.505-2.836-1.32C.376 10.603.13 8.289 2.494 6.577c.05.261.147.62.212.832-.31.228-.798.685-1.108 1.303-.44.864-.391 1.729.13 2.527.359.537.93.864 1.663.962.896.114 1.793-.05 2.657-.505 1.271-.669 2.119-1.467 2.672-2.56a.944.944 0 01-.26-.603.913.913 0 01.88-.945h.033a.915.915 0 01.098 1.825c-.897 1.842-2.478 3.08-4.565 3.488z`,fill:e}))),yA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M14 2.547a5.632 5.632 0 01-1.65.464 2.946 2.946 0 001.263-1.63 5.67 5.67 0 01-1.823.715 2.837 2.837 0 00-2.097-.93c-1.586 0-2.872 1.319-2.872 2.946 0 .23.025.456.074.67C4.508 4.66 2.392 3.488.975 1.706c-.247.435-.389.941-.389 1.481 0 1.022.507 1.923 1.278 2.452a2.806 2.806 0 01-1.3-.368l-.001.037c0 1.427.99 2.617 2.303 2.888a2.82 2.82 0 01-1.297.05c.366 1.17 1.427 2.022 2.683 2.045A5.671 5.671 0 010 11.51a7.985 7.985 0 004.403 1.323c5.283 0 8.172-4.488 8.172-8.38 0-.128-.003-.255-.009-.38A5.926 5.926 0 0014 2.546z`,fill:e}))),bA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M13.99 8.172c.005-.281.007-.672.007-1.172 0-.5-.002-.89-.007-1.172a14.952 14.952 0 00-.066-1.066 9.638 9.638 0 00-.169-1.153c-.083-.38-.264-.7-.542-.96a1.667 1.667 0 00-.972-.454C11.084 2.065 9.337 2 6.999 2s-4.085.065-5.241.195a1.65 1.65 0 00-.969.453c-.276.26-.455.58-.539.961a8.648 8.648 0 00-.176 1.153c-.039.43-.061.785-.066 1.066C.002 6.11 0 6.5 0 7c0 .5.002.89.008 1.172.005.281.027.637.066 1.067.04.43.095.813.168 1.152.084.38.265.7.543.96.279.261.603.412.973.453 1.156.13 2.902.196 5.24.196 2.34 0 4.087-.065 5.243-.196a1.65 1.65 0 00.967-.453c.276-.26.456-.58.54-.96.077-.339.136-.722.175-1.152.04-.43.062-.786.067-1.067zM9.762 6.578A.45.45 0 019.997 7a.45.45 0 01-.235.422l-3.998 2.5a.442.442 0 01-.266.078.538.538 0 01-.242-.063.465.465 0 01-.258-.437v-5c0-.197.086-.343.258-.437a.471.471 0 01.508.016l3.998 2.5z`,fill:e}))),xA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M10.243.04a.87.87 0 01.38.087l2.881 1.386a.874.874 0 01.496.79V11.713a.875.875 0 01-.496.775l-2.882 1.386a.872.872 0 01-.994-.17L4.11 8.674l-2.404 1.823a.583.583 0 01-.744-.034l-.771-.7a.583.583 0 010-.862L2.274 7 .19 5.1a.583.583 0 010-.862l.772-.701a.583.583 0 01.744-.033L4.11 5.327 9.628.296a.871.871 0 01.615-.255zm.259 3.784L6.315 7l4.187 3.176V3.824z`,fill:e}))),SA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M11.667 13H2.333A1.333 1.333 0 011 11.667V2.333C1 1.597 1.597 1 2.333 1h9.334C12.403 1 13 1.597 13 2.333v9.334c0 .736-.597 1.333-1.333 1.333zm-2.114-1.667h1.78V7.675c0-1.548-.877-2.296-2.102-2.296-1.226 0-1.742.955-1.742.955v-.778H5.773v5.777h1.716V8.3c0-.812.374-1.296 1.09-1.296.658 0 .974.465.974 1.296v3.033zm-6.886-7.6c0 .589.474 1.066 1.058 1.066.585 0 1.058-.477 1.058-1.066 0-.589-.473-1.066-1.058-1.066-.584 0-1.058.477-1.058 1.066zm1.962 7.6h-1.79V5.556h1.79v5.777z`,fill:e}))),CA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M11.02.446h2.137L8.49 5.816l5.51 7.28H9.67L6.298 8.683l-3.88 4.413H.282l5.004-5.735L0 .446h4.442l3.064 4.048L11.02.446zm-.759 11.357h1.18L3.796 1.655H2.502l7.759 10.148z`,fill:e}))),wA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M.5 13.004a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h13a.5.5 0 01.5.5v11a.5.5 0 01-.5.5H.5zm.5-1v-8h12v8H1zm1-9.5a.5.5 0 11-1 0 .5.5 0 011 0zm2 0a.5.5 0 11-1 0 .5.5 0 011 0zm2 0a.5.5 0 11-1 0 .5.5 0 011 0z`,fill:e}))),TA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M3.5.004a1.5 1.5 0 00-1.5 1.5v11a1.5 1.5 0 001.5 1.5h7a1.5 1.5 0 001.5-1.5v-11a1.5 1.5 0 00-1.5-1.5h-7zm0 1h7a.5.5 0 01.5.5v9.5H3v-9.5a.5.5 0 01.5-.5zm2.5 11a.5.5 0 000 1h2a.5.5 0 000-1H6z`,fill:e}))),EA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M3 1.504a1.5 1.5 0 011.5-1.5h5a1.5 1.5 0 011.5 1.5v11a1.5 1.5 0 01-1.5 1.5h-5a1.5 1.5 0 01-1.5-1.5v-11zm1 10.5v-10h6v10H4z`,fill:e}))),DA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M4 .504a.5.5 0 01.5-.5h5a.5.5 0 010 1h-5a.5.5 0 01-.5-.5zm5.5 2.5h-5a.5.5 0 00-.5.5v7a.5.5 0 00.5.5h5a.5.5 0 00.5-.5v-7a.5.5 0 00-.5-.5zm-5-1a1.5 1.5 0 00-1.5 1.5v7a1.5 1.5 0 001.5 1.5h5a1.5 1.5 0 001.5-1.5v-7a1.5 1.5 0 00-1.5-1.5h-5zm2.5 2a.5.5 0 01.5.5v2h1a.5.5 0 110 1H7a.5.5 0 01-.5-.5v-2.5a.5.5 0 01.5-.5zm-2.5 9a.5.5 0 000 1h5a.5.5 0 000-1h-5z`,fill:e}))),OA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M2.5 4.504a.5.5 0 01.5-.5h1a.5.5 0 110 1H3a.5.5 0 01-.5-.5zM3 6.004a.5.5 0 100 1h1a.5.5 0 000-1H3zM2.5 8.504a.5.5 0 01.5-.5h1a.5.5 0 110 1H3a.5.5 0 01-.5-.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1.5 13.004a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11zm.5-1v-10h3v10H2zm4-10h6v10H6v-10z`,fill:e}))),kA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M9.5 4.504a.5.5 0 01.5-.5h1a.5.5 0 010 1h-1a.5.5 0 01-.5-.5zM10 6.004a.5.5 0 100 1h1a.5.5 0 000-1h-1zM9.5 8.504a.5.5 0 01.5-.5h1a.5.5 0 010 1h-1a.5.5 0 01-.5-.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1.5 13.004a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11zm.5-1v-10h6v10H2zm7-10h3v10H9v-10z`,fill:e}))),AA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M11.5 4.504a.5.5 0 00-.5-.5h-1a.5.5 0 100 1h1a.5.5 0 00.5-.5zM11 6.004a.5.5 0 010 1h-1a.5.5 0 010-1h1zM11.5 8.504a.5.5 0 00-.5-.5h-1a.5.5 0 100 1h1a.5.5 0 00.5-.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1.5 13.004a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11zm7.5-1h3v-10H9v10zm-1 0H2v-10h6v4.5H5.207l.65-.65a.5.5 0 10-.707-.708L3.646 6.65a.5.5 0 000 .707l1.497 1.497a.5.5 0 10.707-.708l-.643-.642H8v4.5z`,fill:e}))),jA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1.5 4.504a.5.5 0 01.5-.5h1a.5.5 0 110 1H2a.5.5 0 01-.5-.5zM2 6.004a.5.5 0 100 1h1a.5.5 0 000-1H2zM1.5 8.504a.5.5 0 01.5-.5h1a.5.5 0 110 1H2a.5.5 0 01-.5-.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M.5 13.004a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5H.5zm.5-1v-10h3v10H1zm4 0v-4.5h2.793l-.643.642a.5.5 0 10.707.708l1.497-1.497a.5.5 0 000-.707L7.85 5.146a.5.5 0 10-.707.708l.65.65H5v-4.5h6v10H5z`,fill:e}))),MA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M3 10.504a.5.5 0 01.5-.5h1a.5.5 0 010 1h-1a.5.5 0 01-.5-.5zM6.5 10.004a.5.5 0 000 1h1a.5.5 0 000-1h-1zM9 10.504a.5.5 0 01.5-.5h1a.5.5 0 010 1h-1a.5.5 0 01-.5-.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1 1.504a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11zm1 6.5v-6h10v6H2zm10 1v3H2v-3h10z`,fill:e}))),NA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M3.5 10.004a.5.5 0 000 1h1a.5.5 0 000-1h-1zM6 10.504a.5.5 0 01.5-.5h1a.5.5 0 010 1h-1a.5.5 0 01-.5-.5zM9.5 10.004a.5.5 0 000 1h1a.5.5 0 000-1h-1z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1 12.504v-11a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5zm1-.5v-3h10v3H2zm4.5-4H2v-6h10v6H7.5V5.21l.646.646a.5.5 0 10.708-.707l-1.5-1.5a.5.5 0 00-.708 0l-1.5 1.5a.5.5 0 10.708.707l.646-.646v2.793z`,fill:e}))),PA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M5 5.504a.5.5 0 01.5-.5h3a.5.5 0 01.5.5v3a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5v-3zm1 2.5v-2h2v2H6z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M5.5.004a.5.5 0 01.5.5v1.5h2v-1.5a.5.5 0 011 0v1.5h2.5a.5.5 0 01.5.5v2.5h1.5a.5.5 0 010 1H12v2h1.5a.5.5 0 010 1H12v2.5a.5.5 0 01-.5.5H9v1.5a.5.5 0 01-1 0v-1.5H6v1.5a.5.5 0 01-1 0v-1.5H2.5a.5.5 0 01-.5-.5v-2.5H.5a.5.5 0 010-1H2v-2H.5a.5.5 0 010-1H2v-2.5a.5.5 0 01.5-.5H5v-1.5a.5.5 0 01.5-.5zm5.5 3H3v8h8v-8z`,fill:e}))),FA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M12 3c0-1.105-2.239-2-5-2s-5 .895-5 2v8c0 .426.26.752.544.977.29.228.68.413 1.116.558.878.293 2.059.465 3.34.465 1.281 0 2.462-.172 3.34-.465.436-.145.825-.33 1.116-.558.285-.225.544-.551.544-.977V3zm-1.03 0a.787.787 0 00-.05-.052c-.13-.123-.373-.28-.756-.434C9.404 2.21 8.286 2 7 2c-1.286 0-2.404.21-3.164.514-.383.153-.625.31-.756.434A.756.756 0 003.03 3a.756.756 0 00.05.052c.13.123.373.28.756.434C4.596 3.79 5.714 4 7 4c1.286 0 2.404-.21 3.164-.514.383-.153.625-.31.756-.434A.787.787 0 0010.97 3zM11 5.75V4.2c-.912.486-2.364.8-4 .8-1.636 0-3.088-.314-4-.8v1.55l.002.008a.147.147 0 00.016.033.618.618 0 00.145.15c.165.13.435.27.813.395.751.25 1.82.414 3.024.414s2.273-.163 3.024-.414c.378-.126.648-.265.813-.395a.62.62 0 00.146-.15.149.149 0 00.015-.033A.03.03 0 0011 5.75zM3 7.013c.2.103.423.193.66.272.878.293 2.059.465 3.34.465 1.281 0 2.462-.172 3.34-.465.237-.079.46-.17.66-.272V8.5l-.002.008a.149.149 0 01-.015.033.62.62 0 01-.146.15c-.165.13-.435.27-.813.395-.751.25-1.82.414-3.024.414s-2.273-.163-3.024-.414c-.378-.126-.648-.265-.813-.395a.618.618 0 01-.145-.15.147.147 0 01-.016-.033A.027.027 0 013 8.5V7.013zm0 2.75V11l.002.008a.147.147 0 00.016.033.617.617 0 00.145.15c.165.13.435.27.813.395.751.25 1.82.414 3.024.414s2.273-.163 3.024-.414c.378-.126.648-.265.813-.395a.619.619 0 00.146-.15.148.148 0 00.015-.033L11 11V9.763c-.2.103-.423.193-.66.272-.878.293-2.059.465-3.34.465-1.281 0-2.462-.172-3.34-.465A4.767 4.767 0 013 9.763z`,fill:e}))),IA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M5 3a.5.5 0 00-1 0v3a.5.5 0 001 0V3zM7 2.5a.5.5 0 01.5.5v3a.5.5 0 01-1 0V3a.5.5 0 01.5-.5zM10 4.504a.5.5 0 10-1 0V6a.5.5 0 001 0V4.504z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M12 3.54l-.001-.002a.499.499 0 00-.145-.388l-3-3a.499.499 0 00-.388-.145L8.464.004H2.5a.5.5 0 00-.5.5v13a.5.5 0 00.5.5h9a.5.5 0 00.5-.5V3.54zM3 1.004h5.293L11 3.71v5.293H3v-8zm0 9v3h8v-3H3z`,fill:e}))),LA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M8.164 3.446a1.5 1.5 0 10-2.328 0L1.81 10.032A1.503 1.503 0 000 11.5a1.5 1.5 0 002.915.5h8.17a1.5 1.5 0 101.104-1.968L8.164 3.446zm-1.475.522a1.506 1.506 0 00.622 0l4.025 6.586a1.495 1.495 0 00-.25.446H2.914a1.497 1.497 0 00-.25-.446l4.024-6.586z`,fill:e}))),RA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7.21.046l6.485 2.994A.5.5 0 0114 3.51v6.977a.495.495 0 01-.23.432.481.481 0 01-.071.038L7.23 13.944a.499.499 0 01-.46 0L.3 10.958a.498.498 0 01-.3-.47V3.511a.497.497 0 01.308-.473L6.78.051a.499.499 0 01.43-.005zM1 4.282v5.898l5.5 2.538V6.82L1 4.282zm6.5 8.436L13 10.18V4.282L7.5 6.82v5.898zM12.307 3.5L7 5.95 1.693 3.5 7 1.05l5.307 2.45z`,fill:e}))),zA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7.5.5a.5.5 0 00-1 0v6a.5.5 0 001 0v-6z`,fill:e}),o.createElement(`path`,{d:`M4.273 2.808a.5.5 0 00-.546-.837 6 6 0 106.546 0 .5.5 0 00-.546.837 5 5 0 11-5.454 0z`,fill:e}))),BA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M13.854 2.146l-2-2a.5.5 0 00-.708 0l-1.5 1.5-8.995 8.995a.499.499 0 00-.143.268L.012 13.39a.495.495 0 00.135.463.5.5 0 00.462.134l2.482-.496a.495.495 0 00.267-.143l8.995-8.995 1.5-1.5a.5.5 0 000-.708zM12 3.293l.793-.793L11.5 1.207 10.707 2 12 3.293zm-2-.586L1.707 11 3 12.293 11.293 4 10 2.707zM1.137 12.863l.17-.849.679.679-.849.17z`,fill:e}))),VA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M5.586 5.586A2 2 0 018.862 7.73a.5.5 0 10.931.365 3 3 0 10-1.697 1.697.5.5 0 10-.365-.93 2 2 0 01-2.145-3.277z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M.939 6.527c.127.128.19.297.185.464a.635.635 0 01-.185.465L0 8.395a7.099 7.099 0 001.067 2.572h1.32c.182 0 .345.076.46.197a.635.635 0 01.198.46v1.317A7.097 7.097 0 005.602 14l.94-.94a.634.634 0 01.45-.186H7.021c.163 0 .326.061.45.186l.939.938a7.098 7.098 0 002.547-1.057V11.61c0-.181.075-.344.197-.46a.634.634 0 01.46-.197h1.33c.507-.76.871-1.622 1.056-2.55l-.946-.946a.635.635 0 01-.186-.465.635.635 0 01.186-.464l.943-.944a7.099 7.099 0 00-1.044-2.522h-1.34a.635.635 0 01-.46-.197.635.635 0 01-.196-.46V1.057A7.096 7.096 0 008.413.002l-.942.942a.634.634 0 01-.45.186H6.992a.634.634 0 01-.45-.186L5.598 0a7.097 7.097 0 00-2.553 1.058v1.33c0 .182-.076.345-.197.46a.635.635 0 01-.46.198h-1.33A7.098 7.098 0 00.003 5.591l.936.936zm.707 1.636c.324-.324.482-.752.479-1.172a1.634 1.634 0 00-.48-1.171l-.538-.539c.126-.433.299-.847.513-1.235h.768c.459 0 .873-.19 1.167-.49.3-.295.49-.708.49-1.167v-.77c.39-.215.807-.388 1.243-.515l.547.547c.32.32.742.48 1.157.48l.015-.001h.014c.415 0 .836-.158 1.157-.479l.545-.544c.433.126.846.299 1.234.512v.784c0 .46.19.874.49 1.168.294.3.708.49 1.167.49h.776c.209.382.378.788.502 1.213l-.545.546a1.635 1.635 0 00-.48 1.17c-.003.421.155.849.48 1.173l.549.55c-.126.434-.3.85-.513 1.239h-.77c-.458 0-.872.19-1.166.49-.3.294-.49.708-.49 1.167v.77a6.09 6.09 0 01-1.238.514l-.54-.54a1.636 1.636 0 00-1.158-.48H6.992c-.415 0-.837.159-1.157.48l-.543.543a6.091 6.091 0 01-1.247-.516v-.756c0-.459-.19-.873-.49-1.167-.294-.3-.708-.49-1.167-.49h-.761a6.094 6.094 0 01-.523-1.262l.542-.542z`,fill:e}))),HA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M5.585 8.414a2 2 0 113.277-.683.5.5 0 10.931.365 3 3 0 10-1.697 1.697.5.5 0 00-.365-.93 2 2 0 01-2.146-.449z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M6.5.289a1 1 0 011 0l5.062 2.922a1 1 0 01.5.866v5.846a1 1 0 01-.5.866L7.5 13.71a1 1 0 01-1 0L1.437 10.79a1 1 0 01-.5-.866V4.077a1 1 0 01.5-.866L6.5.29zm.5.866l5.062 2.922v5.846L7 12.845 1.937 9.923V4.077L7 1.155z`,fill:e}))),UA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M10.5 1c.441 0 .564.521.252.833l-.806.807a.51.51 0 000 .72l.694.694a.51.51 0 00.72 0l.807-.806c.312-.312.833-.19.833.252a2.5 2.5 0 01-3.414 2.328l-6.879 6.88a1 1 0 01-1.414-1.415l6.88-6.88A2.5 2.5 0 0110.5 1zM2 12.5a.5.5 0 100-1 .5.5 0 000 1z`,fill:e}))),WA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M4 7a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM13 7a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM7 8.5a1.5 1.5 0 100-3 1.5 1.5 0 000 3z`,fill:e}))),GA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M5.903.112a.107.107 0 01.194 0l.233.505.552.066c.091.01.128.123.06.185l-.408.377.109.546a.107.107 0 01-.158.114L6 1.633l-.486.272a.107.107 0 01-.157-.114l.108-.546-.408-.377a.107.107 0 01.06-.185L5.67.617l.233-.505zM2.194.224a.214.214 0 00-.389 0l-.466 1.01-1.104.13a.214.214 0 00-.12.371l.816.755-.217 1.091a.214.214 0 00.315.23L2 3.266l.971.543c.16.09.35-.05.315-.229l-.217-1.09.817-.756a.214.214 0 00-.12-.37L2.66 1.234 2.194.224zM12.194 8.224a.214.214 0 00-.389 0l-.466 1.01-1.104.13a.214.214 0 00-.12.371l.816.755-.217 1.091a.214.214 0 00.315.23l.97-.544.971.543c.16.09.35-.05.315-.229l-.217-1.09.817-.756a.214.214 0 00-.12-.37l-1.105-.131-.466-1.01z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M.147 11.857a.5.5 0 010-.707l11-11a.5.5 0 01.706 0l2 2a.5.5 0 010 .708l-11 11a.5.5 0 01-.706 0l-2-2zm2.353.94l-1.293-1.293 6.758-6.758L9.258 6.04 2.5 12.797zm7.465-7.465l2.828-2.828L11.5 1.211 8.672 4.039l1.293 1.293z`,fill:e}))),KA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M13.854 3.354a.5.5 0 00-.708-.708L5 10.793.854 6.646a.5.5 0 10-.708.708l4.5 4.5a.5.5 0 00.708 0l8.5-8.5z`,fill:e}))),qA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M2 1.004a1 1 0 00-1 1v10a1 1 0 001 1h10a1 1 0 001-1V6.393a.5.5 0 00-1 0v5.61H2v-10h7.5a.5.5 0 000-1H2z`,fill:e}),o.createElement(`path`,{d:`M6.354 9.857l7.5-7.5a.5.5 0 00-.708-.707L6 8.797 3.854 6.65a.5.5 0 10-.708.707l2.5 2.5a.5.5 0 00.708 0z`,fill:e}))),JA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M11.5 2a.5.5 0 000 1h2a.5.5 0 000-1h-2zM8.854 2.646a.5.5 0 010 .708L5.207 7l3.647 3.646a.5.5 0 01-.708.708L4.5 7.707.854 11.354a.5.5 0 01-.708-.708L3.793 7 .146 3.354a.5.5 0 11.708-.708L4.5 6.293l3.646-3.647a.5.5 0 01.708 0zM11 7a.5.5 0 01.5-.5h2a.5.5 0 010 1h-2A.5.5 0 0111 7zM11.5 11a.5.5 0 000 1h2a.5.5 0 000-1h-2z`,fill:e}))),YA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M11.5 2a.5.5 0 000 1h2a.5.5 0 000-1h-2zM9.3 2.6a.5.5 0 01.1.7l-5.995 7.993a.505.505 0 01-.37.206.5.5 0 01-.395-.152L.146 8.854a.5.5 0 11.708-.708l2.092 2.093L8.6 2.7a.5.5 0 01.7-.1zM11 7a.5.5 0 01.5-.5h2a.5.5 0 010 1h-2A.5.5 0 0111 7zM11.5 11a.5.5 0 000 1h2a.5.5 0 000-1h-2z`,fill:e}))),XA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M10.5 1a.5.5 0 01.5.5V2h1.5a.5.5 0 010 1H11v.5a.5.5 0 01-1 0V3H1.5a.5.5 0 010-1H10v-.5a.5.5 0 01.5-.5zM1.5 11a.5.5 0 000 1H10v.5a.5.5 0 001 0V12h1.5a.5.5 0 000-1H11v-.5a.5.5 0 00-1 0v.5H1.5zM1 7a.5.5 0 01.5-.5H3V6a.5.5 0 011 0v.5h8.5a.5.5 0 010 1H4V8a.5.5 0 01-1 0v-.5H1.5A.5.5 0 011 7z`,fill:e}))),ZA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7.5.5a.5.5 0 00-1 0v6h-6a.5.5 0 000 1h6v6a.5.5 0 001 0v-6h6a.5.5 0 000-1h-6v-6z`,fill:e}))),QA=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M2.03.97A.75.75 0 00.97 2.03L5.94 7 .97 11.97a.75.75 0 101.06 1.06L7 8.06l4.97 4.97a.75.75 0 101.06-1.06L8.06 7l4.97-4.97A.75.75 0 0011.97.97L7 5.94 2.03.97z`,fill:e}))),$A=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1.854 1.146a.5.5 0 10-.708.708L6.293 7l-5.147 5.146a.5.5 0 00.708.708L7 7.707l5.146 5.147a.5.5 0 00.708-.708L7.707 7l5.147-5.146a.5.5 0 00-.708-.708L7 6.293 1.854 1.146z`,fill:e}))),ej=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M5.5 4.5A.5.5 0 016 5v5a.5.5 0 01-1 0V5a.5.5 0 01.5-.5zM9 5a.5.5 0 00-1 0v5a.5.5 0 001 0V5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M4.5.5A.5.5 0 015 0h4a.5.5 0 01.5.5V2h3a.5.5 0 010 1H12v8a2 2 0 01-2 2H4a2 2 0 01-2-2V3h-.5a.5.5 0 010-1h3V.5zM3 3v8a1 1 0 001 1h6a1 1 0 001-1V3H3zm2.5-2h3v1h-3V1z`,fill:e}))),tj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`g`,{clipPath:`url(#prefix__clip0_1107_3502)`},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M13.44 4.44L9.56.56a1.5 1.5 0 00-2.12 0L7 1a1.415 1.415 0 000 2L5 5H3.657A4 4 0 00.828 6.17l-.474.475a.5.5 0 000 .707l2.793 2.793-3 3a.5.5 0 00.707.708l3-3 2.792 2.792a.5.5 0 00.708 0l.474-.475A4 4 0 009 10.343V9l2-2a1.414 1.414 0 002 0l.44-.44a1.5 1.5 0 000-2.12zM11 5.585l-3 3v1.757a3 3 0 01-.879 2.121L7 12.586 1.414 7l.122-.122A3 3 0 013.656 6h1.758l3-3-.707-.707a.414.414 0 010-.586l.44-.44a.5.5 0 01.707 0l3.878 3.88a.5.5 0 010 .706l-.44.44a.414.414 0 01-.585 0L11 5.586z`,fill:e})),o.createElement(`defs`,null,o.createElement(`clipPath`,{id:`prefix__clip0_1107_3502`},o.createElement(`path`,{fill:`#fff`,d:`M0 0h14v14H0z`}))))),nj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`g`,{clipPath:`url(#prefix__clip0_1107_3501)`,fill:e},o.createElement(`path`,{d:`M13.44 4.44L9.56.56a1.5 1.5 0 00-2.12 0L7 1a1.415 1.415 0 000 2L5.707 4.293 6.414 5l2-2-.707-.707a.414.414 0 010-.586l.44-.44a.5.5 0 01.707 0l3.878 3.88a.5.5 0 010 .706l-.44.44a.414.414 0 01-.585 0L11 5.586l-2 2 .707.707L11 7a1.414 1.414 0 002 0l.44-.44a1.5 1.5 0 000-2.12zM.828 6.171a4 4 0 012.758-1.17l1 .999h-.93a3 3 0 00-2.12.878L1.414 7 7 12.586l.121-.122A3 3 0 008 10.343v-.929l1 1a4 4 0 01-1.172 2.757l-.474.475a.5.5 0 01-.708 0l-2.792-2.792-3 3a.5.5 0 01-.708-.708l3-3L.355 7.353a.5.5 0 010-.707l.474-.475zM1.854 1.146a.5.5 0 10-.708.708l11 11a.5.5 0 00.708-.708l-11-11z`})),o.createElement(`defs`,null,o.createElement(`clipPath`,{id:`prefix__clip0_1107_3501`},o.createElement(`path`,{fill:`#fff`,d:`M0 0h14v14H0z`}))))),rj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7 3a.5.5 0 01.5.5v3h3a.5.5 0 010 1h-3v3a.5.5 0 01-1 0v-3h-3a.5.5 0 010-1h3v-3A.5.5 0 017 3z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7 14A7 7 0 107 0a7 7 0 000 14zm0-1A6 6 0 107 1a6 6 0 000 12z`,fill:e}))),ij=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M3.5 6.5a.5.5 0 000 1h7a.5.5 0 000-1h-7z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z`,fill:e}))),aj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M9.854 4.146a.5.5 0 010 .708L7.707 7l2.147 2.146a.5.5 0 01-.708.708L7 7.707 4.854 9.854a.5.5 0 01-.708-.708L6.293 7 4.146 4.854a.5.5 0 11.708-.708L7 6.293l2.146-2.147a.5.5 0 01.708 0z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7 14A7 7 0 107 0a7 7 0 000 14zm0-1A6 6 0 107 1a6 6 0 000 12z`,fill:e}))),oj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0a6 6 0 01-9.874 4.582l8.456-8.456A5.976 5.976 0 0113 7zM2.418 10.874l8.456-8.456a6 6 0 00-8.456 8.456z`,fill:e}))),sj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7 14A7 7 0 107 0a7 7 0 000 14zm3.854-9.354a.5.5 0 010 .708l-4.5 4.5a.5.5 0 01-.708 0l-2.5-2.5a.5.5 0 11.708-.708L6 8.793l4.146-4.147a.5.5 0 01.708 0z`,fill:e}))),cj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7 14A7 7 0 107 0a7 7 0 000 14zM3.5 6.5a.5.5 0 000 1h7a.5.5 0 000-1h-7z`,fill:e}))),lj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7 14A7 7 0 107 0a7 7 0 000 14zm2.854-9.854a.5.5 0 010 .708L7.707 7l2.147 2.146a.5.5 0 01-.708.708L7 7.707 4.854 9.854a.5.5 0 01-.708-.708L6.293 7 4.146 4.854a.5.5 0 11.708-.708L7 6.293l2.146-2.147a.5.5 0 01.708 0z`,fill:e}))),uj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M5 2h7a2 2 0 012 2v6a2 2 0 01-2 2H5a1.994 1.994 0 01-1.414-.586l-3-3a2 2 0 010-2.828l3-3A1.994 1.994 0 015 2zm1.146 3.146a.5.5 0 01.708 0L8 6.293l1.146-1.147a.5.5 0 11.708.708L8.707 7l1.147 1.146a.5.5 0 01-.708.708L8 7.707 6.854 8.854a.5.5 0 11-.708-.708L7.293 7 6.146 5.854a.5.5 0 010-.708z`,fill:e}))),dj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M3.5 5.004a.5.5 0 100 1h7a.5.5 0 000-1h-7zM3 8.504a.5.5 0 01.5-.5h7a.5.5 0 010 1h-7a.5.5 0 01-.5-.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M12.5 12.004H5.707l-1.853 1.854a.5.5 0 01-.351.146h-.006a.499.499 0 01-.497-.5v-1.5H1.5a.5.5 0 01-.5-.5v-9a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v9a.5.5 0 01-.5.5zm-10.5-1v-8h10v8H2z`,fill:e}))),fj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7.5 5.004a.5.5 0 10-1 0v1.5H5a.5.5 0 100 1h1.5v1.5a.5.5 0 001 0v-1.5H9a.5.5 0 000-1H7.5v-1.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M3.691 13.966a.498.498 0 01-.188.038h-.006a.499.499 0 01-.497-.5v-1.5H1.5a.5.5 0 01-.5-.5v-9a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v9a.5.5 0 01-.5.5H5.707l-1.853 1.854a.5.5 0 01-.163.108zM2 3.004v8h10v-8H2z`,fill:e}))),pj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M9.854 6.65a.5.5 0 010 .707l-2 2a.5.5 0 11-.708-.707l1.15-1.15-3.796.004a.5.5 0 010-1L8.29 6.5 7.145 5.357a.5.5 0 11.708-.707l2 2z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M3.691 13.966a.498.498 0 01-.188.038h-.006a.499.499 0 01-.497-.5v-1.5H1.5a.5.5 0 01-.5-.5v-9a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v9a.5.5 0 01-.5.5H5.707l-1.853 1.854a.5.5 0 01-.163.108zM2 3.004v8h10v-8H2z`,fill:e}))),mj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M8.5 7.004a.5.5 0 000-1h-5a.5.5 0 100 1h5zM9 8.504a.5.5 0 01-.5.5h-5a.5.5 0 010-1h5a.5.5 0 01.5.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M12 11.504v-1.5h1.5a.5.5 0 00.5-.5v-8a.5.5 0 00-.5-.5h-11a.5.5 0 00-.5.5v1.5H.5a.5.5 0 00-.5.5v8a.5.5 0 00.5.5H2v1.5a.499.499 0 00.497.5h.006a.498.498 0 00.35-.146l1.854-1.854H11.5a.5.5 0 00.5-.5zm-9-8.5v-1h10v7h-1v-5.5a.5.5 0 00-.5-.5H3zm-2 8v-7h10v7H1z`,fill:e}))),hj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1 2a2 2 0 012-2h8a2 2 0 012 2v8a2 2 0 01-2 2H6.986a.444.444 0 01-.124.103l-3.219 1.84A.43.43 0 013 13.569V12a2 2 0 01-2-2V2zm3.42 4.78a.921.921 0 110-1.843.921.921 0 010 1.842zm1.658-.922a.921.921 0 101.843 0 .921.921 0 00-1.843 0zm2.58 0a.921.921 0 101.842 0 .921.921 0 00-1.843 0z`,fill:e}))),gj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M8 8.004a1 1 0 01-.5.866v1.634a.5.5 0 01-1 0V8.87A1 1 0 118 8.004z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M3 4.004a4 4 0 118 0v1h1.5a.5.5 0 01.5.5v8a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-8a.5.5 0 01.5-.5H3v-1zm7 1v-1a3 3 0 10-6 0v1h6zm2 1H2v7h10v-7z`,fill:e}))),_j=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`g`,{clipPath:`url(#prefix__clip0_1107_3614)`,fill:e},o.createElement(`path`,{d:`M6.5 8.87a1 1 0 111 0v1.634a.5.5 0 01-1 0V8.87z`}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7 1a3 3 0 00-3 3v1.004h8.5a.5.5 0 01.5.5v8a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-8a.5.5 0 01.5-.5H3V4a4 4 0 017.755-1.381.5.5 0 01-.939.345A3.001 3.001 0 007 1zM2 6.004h10v7H2v-7z`})),o.createElement(`defs`,null,o.createElement(`clipPath`,{id:`prefix__clip0_1107_3614`},o.createElement(`path`,{fill:`#fff`,d:`M0 0h14v14H0z`}))))),vj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M11 4a1 1 0 11-2 0 1 1 0 012 0z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7.5 8.532V9.5a.5.5 0 01-.5.5H5.5v1.5a.5.5 0 01-.5.5H3.5v1.5a.5.5 0 01-.5.5H.5a.5.5 0 01-.5-.5v-2a.5.5 0 01.155-.362l5.11-5.11A4.5 4.5 0 117.5 8.532zM6 4.5a3.5 3.5 0 111.5 2.873c-.29-.203-1-.373-1 .481V9H5a.5.5 0 00-.5.5V11H3a.5.5 0 00-.5.5V13H1v-1.293l5.193-5.193a.552.552 0 00.099-.613A3.473 3.473 0 016 4.5z`,fill:e}))),yj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7.354.15a.5.5 0 00-.708 0l-2 2a.5.5 0 10.708.707L6.5 1.711v6.793a.5.5 0 001 0V1.71l1.146 1.146a.5.5 0 10.708-.707l-2-2z`,fill:e}),o.createElement(`path`,{d:`M2 7.504a.5.5 0 10-1 0v5a.5.5 0 00.5.5h11a.5.5 0 00.5-.5v-5a.5.5 0 00-1 0v4.5H2v-4.5z`,fill:e}))),bj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M2.5 8.004a.5.5 0 100 1h3a.5.5 0 000-1h-3z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M0 11.504a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-9a.5.5 0 00-.5-.5H.5a.5.5 0 00-.5.5v9zm1-8.5v1h12v-1H1zm0 8h12v-5H1v5z`,fill:e}))),xj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1 3.004a1 1 0 00-1 1v5a1 1 0 001 1h3.5a.5.5 0 100-1H1v-5h12v5h-1a.5.5 0 000 1h1a1 1 0 001-1v-5a1 1 0 00-1-1H1z`,fill:e}),o.createElement(`path`,{d:`M6.45 7.006a.498.498 0 01.31.07L10.225 9.1a.5.5 0 01-.002.873l-1.074.621.75 1.3a.75.75 0 01-1.3.75l-.75-1.3-1.074.62a.497.497 0 01-.663-.135.498.498 0 01-.095-.3L6 7.515a.497.497 0 01.45-.509z`,fill:e}))),Sj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M4 1.504a.5.5 0 01.5-.5h5a.5.5 0 110 1h-2v10h2a.5.5 0 010 1h-5a.5.5 0 010-1h2v-10h-2a.5.5 0 01-.5-.5z`,fill:e}),o.createElement(`path`,{d:`M0 4.504a.5.5 0 01.5-.5h4a.5.5 0 110 1H1v4h3.5a.5.5 0 110 1h-4a.5.5 0 01-.5-.5v-5zM9.5 4.004a.5.5 0 100 1H13v4H9.5a.5.5 0 100 1h4a.5.5 0 00.5-.5v-5a.5.5 0 00-.5-.5h-4z`,fill:e}))),Cj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M5.943 12.457a.27.27 0 00.248-.149L7.77 9.151l2.54 2.54a.257.257 0 00.188.073c.082 0 .158-.03.21-.077l.788-.79a.27.27 0 000-.392L8.891 7.9l3.416-1.708a.29.29 0 00.117-.106.222.222 0 00.033-.134.332.332 0 00-.053-.161.174.174 0 00-.092-.072l-.02-.007-10.377-4.15a.274.274 0 00-.355.354l4.15 10.372a.275.275 0 00.233.169zm-.036 1l-.02-.002c-.462-.03-.912-.31-1.106-.796L.632 2.287A1.274 1.274 0 012.286.633l10.358 4.143c.516.182.782.657.81 1.114a1.25 1.25 0 01-.7 1.197L10.58 8.174l1.624 1.624a1.27 1.27 0 010 1.807l-.8.801-.008.007c-.491.46-1.298.48-1.792-.014l-1.56-1.56-.957 1.916a1.27 1.27 0 01-1.142.702h-.037z`,fill:e}))),wj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M11.87 6.008a.505.505 0 00-.003-.028v-.002c-.026-.27-.225-.48-.467-.498a.5.5 0 00-.53.5v1.41c0 .25-.22.47-.47.47a.48.48 0 01-.47-.47V5.17a.6.6 0 00-.002-.05c-.023-.268-.223-.49-.468-.5a.5.5 0 00-.52.5v1.65a.486.486 0 01-.47.47.48.48 0 01-.47-.47V4.62a.602.602 0 00-.002-.05v-.002c-.023-.266-.224-.48-.468-.498a.5.5 0 00-.53.5v2.2c0 .25-.22.47-.47.47a.49.49 0 01-.47-.47V1.8c0-.017 0-.034-.002-.05-.022-.268-.214-.49-.468-.5a.5.5 0 00-.52.5v6.78c0 .25-.22.47-.47.47a.48.48 0 01-.47-.47l.001-.1c.001-.053.002-.104 0-.155a.775.775 0 00-.06-.315.65.65 0 00-.16-.22 29.67 29.67 0 01-.21-.189c-.2-.182-.4-.365-.617-.532l-.003-.003A6.366 6.366 0 003.06 7l-.01-.007c-.433-.331-.621-.243-.69-.193-.26.14-.29.5-.13.74l1.73 2.6v.01h-.016l-.035.023.05-.023s1.21 2.6 3.57 2.6c3.54 0 4.2-1.9 4.31-4.42.039-.591.036-1.189.032-1.783l-.002-.507v-.032zm.969 2.376c-.057 1.285-.254 2.667-1.082 3.72-.88 1.118-2.283 1.646-4.227 1.646-1.574 0-2.714-.87-3.406-1.623a6.958 6.958 0 01-1.046-1.504l-.006-.012-1.674-2.516a1.593 1.593 0 01-.25-1.107 1.44 1.44 0 01.69-1.041c.195-.124.485-.232.856-.186.357.044.681.219.976.446.137.106.272.22.4.331V1.75A1.5 1.5 0 015.63.25c.93.036 1.431.856 1.431 1.55v1.335a1.5 1.5 0 01.53-.063h.017c.512.04.915.326 1.153.71a1.5 1.5 0 01.74-.161c.659.025 1.115.458 1.316.964a1.493 1.493 0 01.644-.103h.017c.856.067 1.393.814 1.393 1.558l.002.48c.004.596.007 1.237-.033 1.864z`,fill:e}))),Tj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M3.5 6A2.5 2.5 0 116 3.5V5h2V3.5A2.5 2.5 0 1110.5 6H9v2h1.5A2.5 2.5 0 118 10.5V9H6v1.5A2.5 2.5 0 113.5 8H5V6H3.5zM2 3.5a1.5 1.5 0 113 0V5H3.5A1.5 1.5 0 012 3.5zM6 6v2h2V6H6zm3-1h1.5A1.5 1.5 0 109 3.5V5zM3.5 9H5v1.5A1.5 1.5 0 113.5 9zM9 9v1.5A1.5 1.5 0 1010.5 9H9z`,fill:e}))),Ej=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M11.083 12.25H2.917a1.167 1.167 0 01-1.167-1.167V2.917A1.167 1.167 0 012.917 1.75h6.416l2.917 2.917v6.416a1.167 1.167 0 01-1.167 1.167z`,stroke:e,strokeLinecap:`round`,strokeLinejoin:`round`}),o.createElement(`path`,{d:`M9.917 12.25V7.583H4.083v4.667M4.083 1.75v2.917H8.75`,stroke:e,strokeLinecap:`round`,strokeLinejoin:`round`}))),Dj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7 5.5a.5.5 0 01.5.5v4a.5.5 0 01-1 0V6a.5.5 0 01.5-.5zM7 4.5A.75.75 0 107 3a.75.75 0 000 1.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7 14A7 7 0 107 0a7 7 0 000 14zm0-1A6 6 0 107 1a6 6 0 000 12z`,fill:e}))),Oj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M5.25 5.25A1.75 1.75 0 117 7a.5.5 0 00-.5.5V9a.5.5 0 001 0V7.955A2.75 2.75 0 104.25 5.25a.5.5 0 001 0zM7 11.5A.75.75 0 107 10a.75.75 0 000 1.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z`,fill:e}))),kj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M14 7A7 7 0 110 7a7 7 0 0114 0zm-3.524 4.89A5.972 5.972 0 017 13a5.972 5.972 0 01-3.477-1.11l1.445-1.444C5.564 10.798 6.258 11 7 11s1.436-.202 2.032-.554l1.444 1.445zm-.03-2.858l1.445 1.444A5.972 5.972 0 0013 7c0-1.296-.41-2.496-1.11-3.477l-1.444 1.445C10.798 5.564 11 6.258 11 7s-.202 1.436-.554 2.032zM9.032 3.554l1.444-1.445A5.972 5.972 0 007 1c-1.296 0-2.496.41-3.477 1.11l1.445 1.444A3.981 3.981 0 017 3c.742 0 1.436.202 2.032.554zM3.554 4.968L2.109 3.523A5.973 5.973 0 001 7c0 1.296.41 2.496 1.11 3.476l1.444-1.444A3.981 3.981 0 013 7c0-.742.202-1.436.554-2.032zM10 7a3 3 0 11-6 0 3 3 0 016 0z`,fill:e}))),Aj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7 4.5a.5.5 0 01.5.5v3.5a.5.5 0 11-1 0V5a.5.5 0 01.5-.5zM7.75 10.5a.75.75 0 11-1.5 0 .75.75 0 011.5 0z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7.206 1.045a.498.498 0 01.23.209l6.494 10.992a.5.5 0 01-.438.754H.508a.497.497 0 01-.506-.452.498.498 0 01.072-.31l6.49-10.984a.497.497 0 01.642-.21zM7 2.483L1.376 12h11.248L7 2.483z`,fill:e}))),jj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M14 7A7 7 0 110 7a7 7 0 0114 0zM6.5 8a.5.5 0 001 0V4a.5.5 0 00-1 0v4zm-.25 2.25a.75.75 0 111.5 0 .75.75 0 01-1.5 0z`,fill:e}))),Mj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M0 2.504a.5.5 0 01.5-.5h13a.5.5 0 01.5.5v9a.5.5 0 01-.5.5H.5a.5.5 0 01-.5-.5v-9zm1 1.012v7.488h12V3.519L7.313 7.894a.496.496 0 01-.526.062.497.497 0 01-.1-.062L1 3.516zm11.03-.512H1.974L7 6.874l5.03-3.87z`,fill:e}))),Nj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7.76 8.134l-.05.05a.2.2 0 01-.28.03 6.76 6.76 0 01-1.63-1.65.21.21 0 01.04-.27l.05-.05c.23-.2.54-.47.71-.96.17-.47-.02-1.04-.66-1.94-.26-.38-.72-.96-1.22-1.46-.68-.69-1.2-1-1.65-1a.98.98 0 00-.51.13A3.23 3.23 0 00.9 3.424c-.13 1.1.26 2.37 1.17 3.78a16.679 16.679 0 004.55 4.6 6.57 6.57 0 003.53 1.32 3.2 3.2 0 002.85-1.66c.14-.24.24-.64-.07-1.18a7.803 7.803 0 00-1.73-1.81c-.64-.5-1.52-1.11-2.13-1.11a.97.97 0 00-.34.06c-.472.164-.74.458-.947.685l-.023.025zm4.32 2.678a6.801 6.801 0 00-1.482-1.54l-.007-.005-.006-.005a8.418 8.418 0 00-.957-.662 2.7 2.7 0 00-.4-.193.683.683 0 00-.157-.043l-.004.002-.009.003c-.224.078-.343.202-.56.44l-.014.016-.046.045a1.2 1.2 0 01-1.602.149A7.76 7.76 0 014.98 7.134l-.013-.019-.013-.02a1.21 1.21 0 01.195-1.522l.06-.06.026-.024c.219-.19.345-.312.422-.533l.003-.01v-.008a.518.518 0 00-.032-.142c-.06-.178-.203-.453-.502-.872l-.005-.008-.005-.007A10.18 10.18 0 004.013 2.59l-.005-.005c-.31-.314-.543-.5-.716-.605-.147-.088-.214-.096-.222-.097h-.016l-.006.003-.01.006a2.23 2.23 0 00-1.145 1.656c-.09.776.175 1.806 1.014 3.108a15.68 15.68 0 004.274 4.32l.022.014.022.016a5.57 5.57 0 002.964 1.117 2.2 2.2 0 001.935-1.141l.006-.012.004-.007a.182.182 0 00-.007-.038.574.574 0 00-.047-.114z`,fill:e}))),Pj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M11.841 2.159a2.25 2.25 0 00-3.182 0l-2.5 2.5a2.25 2.25 0 000 3.182.5.5 0 01-.707.707 3.25 3.25 0 010-4.596l2.5-2.5a3.25 3.25 0 014.596 4.596l-2.063 2.063a4.27 4.27 0 00-.094-1.32l1.45-1.45a2.25 2.25 0 000-3.182z`,fill:e}),o.createElement(`path`,{d:`M3.61 7.21c-.1-.434-.132-.88-.095-1.321L1.452 7.952a3.25 3.25 0 104.596 4.596l2.5-2.5a3.25 3.25 0 000-4.596.5.5 0 00-.707.707 2.25 2.25 0 010 3.182l-2.5 2.5A2.25 2.25 0 112.159 8.66l1.45-1.45z`,fill:e}))),Fj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1.452 7.952l1.305-1.305.708.707-1.306 1.305a2.25 2.25 0 103.182 3.182l1.306-1.305.707.707-1.306 1.305a3.25 3.25 0 01-4.596-4.596zM12.548 6.048l-1.305 1.306-.707-.708 1.305-1.305a2.25 2.25 0 10-3.182-3.182L7.354 3.464l-.708-.707 1.306-1.305a3.25 3.25 0 014.596 4.596zM1.854 1.146a.5.5 0 10-.708.708l11 11a.5.5 0 00.707-.707l-11-11z`,fill:e}))),Ij=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7.994 1.11a1 1 0 10-1.988 0A4.502 4.502 0 002.5 5.5v3.882l-.943 1.885a.497.497 0 00-.053.295.5.5 0 00.506.438h3.575a1.5 1.5 0 102.83 0h3.575a.5.5 0 00.453-.733L11.5 9.382V5.5a4.502 4.502 0 00-3.506-4.39zM2.81 11h8.382l-.5-1H3.31l-.5 1zM10.5 9V5.5a3.5 3.5 0 10-7 0V9h7zm-4 3.5a.5.5 0 111 0 .5.5 0 01-1 0z`,fill:e}))),Lj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1.5.5A.5.5 0 012 0c6.627 0 12 5.373 12 12a.5.5 0 01-1 0C13 5.925 8.075 1 2 1a.5.5 0 01-.5-.5z`,fill:e}),o.createElement(`path`,{d:`M1.5 4.5A.5.5 0 012 4a8 8 0 018 8 .5.5 0 01-1 0 7 7 0 00-7-7 .5.5 0 01-.5-.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M5 11a2 2 0 11-4 0 2 2 0 014 0zm-1 0a1 1 0 11-2 0 1 1 0 012 0z`,fill:e}))),Rj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M2 1.004a1 1 0 00-1 1v10a1 1 0 001 1h10a1 1 0 001-1v-4.5a.5.5 0 00-1 0v4.5H2v-10h4.5a.5.5 0 000-1H2z`,fill:e}),o.createElement(`path`,{d:`M7.354 7.357L12 2.711v1.793a.5.5 0 001 0v-3a.5.5 0 00-.5-.5h-3a.5.5 0 100 1h1.793L6.646 6.65a.5.5 0 10.708.707z`,fill:e}))),zj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M6.646.15a.5.5 0 01.708 0l2 2a.5.5 0 11-.708.707L7.5 1.711v6.793a.5.5 0 01-1 0V1.71L5.354 2.857a.5.5 0 11-.708-.707l2-2z`,fill:e}),o.createElement(`path`,{d:`M2 4.004a1 1 0 00-1 1v7a1 1 0 001 1h10a1 1 0 001-1v-7a1 1 0 00-1-1H9.5a.5.5 0 100 1H12v7H2v-7h2.5a.5.5 0 000-1H2z`,fill:e}))),Bj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M13.854 6.646a.5.5 0 010 .708l-2 2a.5.5 0 01-.708-.708L12.293 7.5H5.5a.5.5 0 010-1h6.793l-1.147-1.146a.5.5 0 01.708-.708l2 2z`,fill:e}),o.createElement(`path`,{d:`M10 2a1 1 0 00-1-1H2a1 1 0 00-1 1v10a1 1 0 001 1h7a1 1 0 001-1V9.5a.5.5 0 00-1 0V12H2V2h7v2.5a.5.5 0 001 0V2z`,fill:e}))),Vj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7 13A6 6 0 107 1a6 6 0 000 12zm0 1A7 7 0 107 0a7 7 0 000 14z`,fill:e}))),Hj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M14 7A7 7 0 110 7a7 7 0 0114 0z`,fill:e}))),Uj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M3.5 0h7a.5.5 0 01.5.5v13a.5.5 0 01-.454.498.462.462 0 01-.371-.118L7 11.159l-3.175 2.72a.46.46 0 01-.379.118A.5.5 0 013 13.5V.5a.5.5 0 01.5-.5zM4 12.413l2.664-2.284a.454.454 0 01.377-.128.498.498 0 01.284.12L10 12.412V1H4v11.413z`,fill:e}))),Wj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 15`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M3.5 0h7a.5.5 0 01.5.5v13a.5.5 0 01-.454.498.462.462 0 01-.371-.118L7 11.159l-3.175 2.72a.46.46 0 01-.379.118A.5.5 0 013 13.5V.5a.5.5 0 01.5-.5z`,fill:e}))),Gj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`g`,{clipPath:`url(#prefix__clip0_1449_588)`},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M8.414 1.586a2 2 0 00-2.828 0l-4 4a2 2 0 000 2.828l4 4a2 2 0 002.828 0l4-4a2 2 0 000-2.828l-4-4zm.707-.707a3 3 0 00-4.242 0l-4 4a3 3 0 000 4.242l4 4a3 3 0 004.242 0l4-4a3 3 0 000-4.242l-4-4z`,fill:e})),o.createElement(`defs`,null,o.createElement(`clipPath`,{id:`prefix__clip0_1449_588`},o.createElement(`path`,{fill:`#fff`,d:`M0 0h14v14H0z`}))))),Kj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M12.814 1.846c.06.05.116.101.171.154l.001.002a3.254 3.254 0 01.755 1.168c.171.461.259.974.259 1.538 0 .332-.046.656-.143.976a4.546 4.546 0 01-.397.937c-.169.302-.36.589-.58.864a7.627 7.627 0 01-.674.746l-4.78 4.596a.585.585 0 01-.427.173.669.669 0 01-.44-.173L1.78 8.217a7.838 7.838 0 01-.677-.748 6.124 6.124 0 01-.572-.855 4.975 4.975 0 01-.388-.931A3.432 3.432 0 010 4.708C0 4.144.09 3.63.265 3.17c.176-.459.429-.85.757-1.168a3.432 3.432 0 011.193-.74c.467-.176.99-.262 1.57-.262.304 0 .608.044.907.137.301.092.586.215.855.367.27.148.526.321.771.512.244.193.471.386.682.584.202-.198.427-.391.678-.584.248-.19.507-.364.78-.512a4.65 4.65 0 01.845-.367c.294-.093.594-.137.9-.137.585 0 1.115.086 1.585.262.392.146.734.34 1.026.584zM1.2 3.526c.128-.333.304-.598.52-.806.218-.212.497-.389.849-.522m-1.37 1.328A3.324 3.324 0 001 4.708c0 .225.032.452.101.686.082.265.183.513.307.737.135.246.294.484.479.716.188.237.386.454.59.652l.001.002 4.514 4.355 4.519-4.344c.2-.193.398-.41.585-.648l.003-.003c.184-.23.345-.472.486-.726l.004-.007c.131-.23.232-.474.31-.732v-.002c.068-.224.101-.45.101-.686 0-.457-.07-.849-.195-1.185a2.177 2.177 0 00-.515-.802l.007-.012-.008.009a2.383 2.383 0 00-.85-.518l-.003-.001C11.1 2.072 10.692 2 10.203 2c-.21 0-.406.03-.597.09h-.001c-.22.07-.443.167-.663.289l-.007.003c-.22.12-.434.262-.647.426-.226.174-.42.341-.588.505l-.684.672-.7-.656a9.967 9.967 0 00-.615-.527 4.82 4.82 0 00-.635-.422l-.01-.005a3.289 3.289 0 00-.656-.281l-.008-.003A2.014 2.014 0 003.785 2c-.481 0-.881.071-1.217.198`,fill:e}))),qj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M12.814 1.846c.06.05.116.101.171.154l.001.002a3.254 3.254 0 01.755 1.168c.171.461.259.974.259 1.538 0 .332-.046.656-.143.976a4.546 4.546 0 01-.397.937c-.169.302-.36.589-.58.864a7.627 7.627 0 01-.674.746l-4.78 4.596a.585.585 0 01-.427.173.669.669 0 01-.44-.173L1.78 8.217a7.838 7.838 0 01-.677-.748 6.124 6.124 0 01-.572-.855 4.975 4.975 0 01-.388-.931A3.432 3.432 0 010 4.708C0 4.144.09 3.63.265 3.17c.176-.459.429-.85.757-1.168a3.432 3.432 0 011.193-.74c.467-.176.99-.262 1.57-.262.304 0 .608.044.907.137.301.092.586.215.855.367.27.148.526.321.771.512.244.193.471.386.682.584.202-.198.427-.391.678-.584.248-.19.507-.364.78-.512a4.65 4.65 0 01.845-.367c.294-.093.594-.137.9-.137.585 0 1.115.086 1.585.262.392.146.734.34 1.026.584z`,fill:e}))),Jj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M6.319.783a.75.75 0 011.362 0l1.63 3.535 3.867.458a.75.75 0 01.42 1.296L10.74 8.715l.76 3.819a.75.75 0 01-1.103.8L7 11.434l-3.398 1.902a.75.75 0 01-1.101-.801l.758-3.819L.401 6.072a.75.75 0 01.42-1.296l3.867-.458L6.318.783zm.68.91l-1.461 3.17a.75.75 0 01-.593.431l-3.467.412 2.563 2.37a.75.75 0 01.226.697l-.68 3.424 3.046-1.705a.75.75 0 01.733 0l3.047 1.705-.68-3.424a.75.75 0 01.226-.697l2.563-2.37-3.467-.412a.75.75 0 01-.593-.43L7 1.694z`,fill:e}))),Yj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7.68.783a.75.75 0 00-1.361 0l-1.63 3.535-3.867.458A.75.75 0 00.4 6.072l2.858 2.643-.758 3.819a.75.75 0 001.101.8L7 11.434l3.397 1.902a.75.75 0 001.102-.801l-.759-3.819L13.6 6.072a.75.75 0 00-.421-1.296l-3.866-.458L7.68.783z`,fill:e}))),Xj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M10 7.854a4.5 4.5 0 10-6 0V13a.5.5 0 00.497.5h.006c.127 0 .254-.05.35-.146L7 11.207l2.146 2.147A.5.5 0 0010 13V7.854zM7 8a3.5 3.5 0 100-7 3.5 3.5 0 000 7zm-.354 2.146a.5.5 0 01.708 0L9 11.793v-3.26C8.398 8.831 7.718 9 7 9a4.481 4.481 0 01-2-.468v3.26l1.646-1.646z`,fill:e}))),Zj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M6.565 13.123a.991.991 0 01.87 0l.987.482a.991.991 0 001.31-.426l.515-.97a.991.991 0 01.704-.511l1.082-.19a.99.99 0 00.81-1.115l-.154-1.087a.991.991 0 01.269-.828l.763-.789a.991.991 0 000-1.378l-.763-.79a.991.991 0 01-.27-.827l.155-1.087a.99.99 0 00-.81-1.115l-1.082-.19a.991.991 0 01-.704-.511L9.732.82a.99.99 0 00-1.31-.426l-.987.482a.991.991 0 01-.87 0L5.578.395a.99.99 0 00-1.31.426l-.515.97a.99.99 0 01-.704.511l-1.082.19a.99.99 0 00-.81 1.115l.154 1.087a.99.99 0 01-.269.828L.28 6.31a.99.99 0 000 1.378l.763.79a.99.99 0 01.27.827l-.155 1.087a.99.99 0 00.81 1.115l1.082.19a.99.99 0 01.704.511l.515.97c.25.473.83.661 1.31.426l.987-.482zm4.289-8.477a.5.5 0 010 .708l-4.5 4.5a.5.5 0 01-.708 0l-2.5-2.5a.5.5 0 11.708-.708L6 8.793l4.146-4.147a.5.5 0 01.708 0z`,fill:e}))),Qj=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M11 12.02c-.4.37-.91.56-1.56.56h-.88a5.493 5.493 0 01-1.3-.16c-.42-.1-.91-.25-1.47-.45a5.056 5.056 0 00-.95-.27H2.88a.84.84 0 01-.62-.26.84.84 0 01-.26-.61V6.45c0-.24.09-.45.26-.62a.84.84 0 01.62-.25h1.87c.16-.11.47-.47.93-1.06.27-.35.51-.64.74-.88.1-.11.19-.3.24-.58.05-.28.12-.57.2-.87.1-.3.24-.55.43-.74a.87.87 0 01.62-.25c.38 0 .72.07 1.03.22.3.15.54.38.7.7.15.31.23.73.23 1.27a3 3 0 01-.32 1.31h1.2c.47 0 .88.17 1.23.52s.52.8.52 1.22c0 .29-.04.66-.34 1.12.05.15.07.3.07.47 0 .35-.09.68-.26.98a2.05 2.05 0 01-.4 1.51 1.9 1.9 0 01-.57 1.5zm.473-5.33a.965.965 0 00.027-.25.742.742 0 00-.227-.513.683.683 0 00-.523-.227H7.927l.73-1.45a2 2 0 00.213-.867c0-.444-.068-.695-.127-.822a.53.53 0 00-.245-.244 1.296 1.296 0 00-.539-.116.989.989 0 00-.141.28 9.544 9.544 0 00-.174.755c-.069.387-.213.779-.484 1.077l-.009.01-.009.01c-.195.202-.41.46-.67.798l-.003.004c-.235.3-.44.555-.613.753-.151.173-.343.381-.54.516l-.255.176H5v4.133l.018.003c.384.07.76.176 1.122.318.532.189.98.325 1.352.413l.007.002a4.5 4.5 0 001.063.131h.878c.429 0 .683-.115.871-.285a.9.9 0 00.262-.702l-.028-.377.229-.3a1.05 1.05 0 00.205-.774l-.044-.333.165-.292a.969.969 0 00.13-.487.457.457 0 00-.019-.154l-.152-.458.263-.404a1.08 1.08 0 00.152-.325zM3.5 10.8a.5.5 0 100-1 .5.5 0 000 1z`,fill:e}))),$j=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M11.765 2.076A.5.5 0 0112 2.5v6.009a.497.497 0 01-.17.366L7.337 12.87a.497.497 0 01-.674 0L2.17 8.875l-.009-.007a.498.498 0 01-.16-.358L2 8.5v-6a.5.5 0 01.235-.424l.018-.011c.016-.01.037-.024.065-.04.056-.032.136-.077.24-.128a6.97 6.97 0 01.909-.371C4.265 1.26 5.443 1 7 1s2.735.26 3.533.526c.399.133.702.267.91.37a4.263 4.263 0 01.304.169l.018.01zM3 2.793v5.482l1.068.95 6.588-6.588a6.752 6.752 0 00-.44-.163C9.517 2.24 8.444 2 7 2c-1.443 0-2.515.24-3.217.474-.351.117-.61.233-.778.317L3 2.793zm4 9.038l-2.183-1.94L11 3.706v4.568l-4 3.556z`,fill:e}))),eM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M10.354 2.854a.5.5 0 10-.708-.708l-3 3a.5.5 0 10.708.708l3-3z`,fill:e}),o.createElement(`path`,{d:`M2.09 6H4.5a.5.5 0 000-1H1.795a.75.75 0 00-.74.873l.813 4.874A1.5 1.5 0 003.348 12h7.305a1.5 1.5 0 001.48-1.253l.812-4.874a.75.75 0 00-.74-.873H10a.5.5 0 000 1h1.91l-.764 4.582a.5.5 0 01-.493.418H3.347a.5.5 0 01-.493-.418L2.09 6z`,fill:e}),o.createElement(`path`,{d:`M4.5 7a.5.5 0 01.5.5v2a.5.5 0 01-1 0v-2a.5.5 0 01.5-.5zM10 7.5a.5.5 0 00-1 0v2a.5.5 0 001 0v-2zM6.5 9.5v-2a.5.5 0 011 0v2a.5.5 0 01-1 0z`,fill:e}))),tM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M4.5 2h.75v3.866l-3.034 5.26A1.25 1.25 0 003.299 13H10.7a1.25 1.25 0 001.083-1.875L8.75 5.866V2h.75a.5.5 0 100-1h-5a.5.5 0 000 1zm1.75 4V2h1.5v4.134l.067.116L8.827 8H5.173l1.01-1.75.067-.116V6zM4.597 9l-1.515 2.625A.25.25 0 003.3 12H10.7a.25.25 0 00.217-.375L9.404 9H4.597z`,fill:e}))),nM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7.5 10.5a.5.5 0 11-1 0 .5.5 0 011 0z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M3.5 1a.5.5 0 00-.5.5c0 1.063.137 1.892.678 2.974.346.692.858 1.489 1.598 2.526-.89 1.247-1.455 2.152-1.798 2.956-.377.886-.477 1.631-.478 2.537v.007a.5.5 0 00.5.5h7c.017 0 .034 0 .051-.003A.5.5 0 0011 12.5v-.007c0-.906-.1-1.65-.478-2.537-.343-.804-.909-1.709-1.798-2.956.74-1.037 1.252-1.834 1.598-2.526C10.863 3.392 11 2.563 11 1.5a.5.5 0 00-.5-.5h-7zm6.487 11a4.675 4.675 0 00-.385-1.652c-.277-.648-.735-1.407-1.499-2.494-.216.294-.448.606-.696.937a.497.497 0 01-.195.162.5.5 0 01-.619-.162c-.248-.331-.48-.643-.696-.937-.764 1.087-1.222 1.846-1.499 2.494A4.675 4.675 0 004.013 12h5.974zM6.304 6.716c.212.293.443.609.696.948a90.058 90.058 0 00.709-.965c.48-.664.86-1.218 1.163-1.699H5.128a32.672 32.672 0 001.176 1.716zM4.559 4h4.882c.364-.735.505-1.312.546-2H4.013c.04.688.182 1.265.546 2z`,fill:e}))),rM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M11.5 1h-9a.5.5 0 00-.5.5v11a.5.5 0 001 0V8h8.5a.5.5 0 00.354-.854L9.207 4.5l2.647-2.646A.499.499 0 0011.5 1zM8.146 4.146L10.293 2H3v5h7.293L8.146 4.854a.5.5 0 010-.708z`,fill:e}))),iM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M10 7V6a3 3 0 00-5.91-.736l-.17.676-.692.075A2.5 2.5 0 003.5 11h3c.063 0 .125-.002.187-.007l.076-.005.076.006c.053.004.106.006.161.006h4a2 2 0 100-4h-1zM3.12 5.02A3.5 3.5 0 003.5 12h3c.087 0 .174-.003.26-.01.079.007.16.01.24.01h4a3 3 0 100-6 4 4 0 00-7.88-.98z`,fill:e}))),aM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7 2a4 4 0 014 4 3 3 0 110 6H7c-.08 0-.161-.003-.24-.01-.086.007-.173.01-.26.01h-3a3.5 3.5 0 01-.38-6.98A4.002 4.002 0 017 2z`,fill:e}))),oM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M11 7a4 4 0 11-8 0 4 4 0 018 0zm-1 0a3 3 0 11-6 0 3 3 0 016 0z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M4.268 13.18c.25.472.83.66 1.31.425l.987-.482a.991.991 0 01.87 0l.987.482a.991.991 0 001.31-.426l.515-.97a.991.991 0 01.704-.511l1.082-.19a.99.99 0 00.81-1.115l-.154-1.087a.991.991 0 01.269-.828l.763-.789a.991.991 0 000-1.378l-.763-.79a.991.991 0 01-.27-.827l.155-1.087a.99.99 0 00-.81-1.115l-1.082-.19a.991.991 0 01-.704-.511L9.732.82a.99.99 0 00-1.31-.426l-.987.482a.991.991 0 01-.87 0L5.578.395a.99.99 0 00-1.31.426l-.515.97a.99.99 0 01-.704.511l-1.082.19a.99.99 0 00-.81 1.115l.154 1.087a.99.99 0 01-.269.828L.28 6.31a.99.99 0 000 1.378l.763.79a.99.99 0 01.27.827l-.155 1.087a.99.99 0 00.81 1.115l1.082.19a.99.99 0 01.704.511l.515.97zm5.096-1.44l-.511.963-.979-.478a1.99 1.99 0 00-1.748 0l-.979.478-.51-.962a1.991 1.991 0 00-1.415-1.028l-1.073-.188.152-1.079a1.991 1.991 0 00-.54-1.663L1.004 7l.757-.783a1.991 1.991 0 00.54-1.663L2.15 3.475l1.073-.188A1.991 1.991 0 004.636 2.26l.511-.962.979.478a1.99 1.99 0 001.748 0l.979-.478.51.962c.288.543.81.922 1.415 1.028l1.073.188-.152 1.079a1.99 1.99 0 00.54 1.663l.757.783-.757.783a1.99 1.99 0 00-.54 1.663l.152 1.079-1.073.188a1.991 1.991 0 00-1.414 1.028z`,fill:e}))),sM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7 4a3 3 0 100 6 3 3 0 000-6zM3 7a4 4 0 118 0 4 4 0 01-8 0z`,fill:e}))),cM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`circle`,{cx:7,cy:7,r:3,fill:e}))),lM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7.206 3.044a.498.498 0 01.23.212l3.492 5.985a.494.494 0 01.006.507.497.497 0 01-.443.252H3.51a.499.499 0 01-.437-.76l3.492-5.984a.497.497 0 01.642-.212zM7 4.492L4.37 9h5.26L7 4.492z`,fill:e}))),uM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M10.854 4.146a.5.5 0 010 .708l-5 5a.5.5 0 01-.708 0l-2-2a.5.5 0 11.708-.708L5.5 8.793l4.646-4.647a.5.5 0 01.708 0z`,fill:e}))),dM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7.354 3.896l5.5 5.5a.5.5 0 01-.708.708L7 4.957l-5.146 5.147a.5.5 0 01-.708-.708l5.5-5.5a.5.5 0 01.708 0z`,fill:e}))),fM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1.146 4.604l5.5 5.5a.5.5 0 00.708 0l5.5-5.5a.5.5 0 00-.708-.708L7 9.043 1.854 3.896a.5.5 0 10-.708.708z`,fill:e}))),pM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M2.76 7.096a.498.498 0 00.136.258l5.5 5.5a.5.5 0 00.707-.708L3.958 7l5.147-5.146a.5.5 0 10-.708-.708l-5.5 5.5a.5.5 0 00-.137.45z`,fill:e}))),mM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M11.104 7.354l-5.5 5.5a.5.5 0 01-.708-.708L10.043 7 4.896 1.854a.5.5 0 11.708-.708l5.5 5.5a.5.5 0 010 .708z`,fill:e}))),hM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M3.854 9.104a.5.5 0 11-.708-.708l3.5-3.5a.5.5 0 01.708 0l3.5 3.5a.5.5 0 01-.708.708L7 5.957 3.854 9.104z`,fill:e}))),gM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M3.854 4.896a.5.5 0 10-.708.708l3.5 3.5a.5.5 0 00.708 0l3.5-3.5a.5.5 0 00-.708-.708L7 8.043 3.854 4.896z`,fill:e}))),_M=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M9.104 10.146a.5.5 0 01-.708.708l-3.5-3.5a.5.5 0 010-.708l3.5-3.5a.5.5 0 11.708.708L5.957 7l3.147 3.146z`,fill:e}))),vM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M4.896 10.146a.5.5 0 00.708.708l3.5-3.5a.5.5 0 000-.708l-3.5-3.5a.5.5 0 10-.708.708L8.043 7l-3.147 3.146z`,fill:e}))),yM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M11.854 4.646l-4.5-4.5a.5.5 0 00-.708 0l-4.5 4.5a.5.5 0 10.708.708L6.5 1.707V13.5a.5.5 0 001 0V1.707l3.646 3.647a.5.5 0 00.708-.708z`,fill:e}))),bM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7.5.5a.5.5 0 00-1 0v11.793L2.854 8.646a.5.5 0 10-.708.708l4.5 4.5a.5.5 0 00.351.146h.006c.127 0 .254-.05.35-.146l4.5-4.5a.5.5 0 00-.707-.708L7.5 12.293V.5z`,fill:e}))),xM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M5.354 2.146a.5.5 0 010 .708L1.707 6.5H13.5a.5.5 0 010 1H1.707l3.647 3.646a.5.5 0 01-.708.708l-4.5-4.5a.5.5 0 010-.708l4.5-4.5a.5.5 0 01.708 0z`,fill:e}))),SM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M8.646 2.146a.5.5 0 01.708 0l4.5 4.5a.5.5 0 010 .708l-4.5 4.5a.5.5 0 01-.708-.708L12.293 7.5H.5a.5.5 0 010-1h11.793L8.646 2.854a.5.5 0 010-.708z`,fill:e}))),CM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1.904 8.768V2.404a.5.5 0 01.5-.5h6.364a.5.5 0 110 1H3.61l8.339 8.339a.5.5 0 01-.707.707l-8.34-8.34v5.158a.5.5 0 01-1 0z`,fill:e}))),wM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M12.096 8.768V2.404a.5.5 0 00-.5-.5H5.232a.5.5 0 100 1h5.157L2.05 11.243a.5.5 0 10.707.707l8.34-8.34v5.158a.5.5 0 101 0z`,fill:e}))),TM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1.904 5.232v6.364a.5.5 0 00.5.5h6.364a.5.5 0 000-1H3.61l8.339-8.339a.5.5 0 00-.707-.707l-8.34 8.34V5.231a.5.5 0 00-1 0z`,fill:e}))),EM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M12.096 5.232v6.364a.5.5 0 01-.5.5H5.232a.5.5 0 010-1h5.157L2.05 2.757a.5.5 0 01.707-.707l8.34 8.34V5.231a.5.5 0 111 0z`,fill:e}))),DM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M6.772 3.59c.126-.12.33-.12.456 0l5.677 5.387c.203.193.06.523-.228.523H1.323c-.287 0-.431-.33-.228-.523L6.772 3.59z`,fill:e}))),OM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7.228 10.41a.335.335 0 01-.456 0L1.095 5.023c-.203-.193-.06-.523.228-.523h11.354c.287 0 .431.33.228.523L7.228 10.41z`,fill:e}))),kM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M3.712 7.212a.3.3 0 010-.424l5.276-5.276a.3.3 0 01.512.212v10.552a.3.3 0 01-.512.212L3.712 7.212z`,fill:e}))),AM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M10.288 7.212a.3.3 0 000-.424L5.012 1.512a.3.3 0 00-.512.212v10.552a.3.3 0 00.512.212l5.276-5.276z`,fill:e}))),jM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7.354.146l4 4a.5.5 0 01-.708.708L7 1.207 3.354 4.854a.5.5 0 11-.708-.708l4-4a.5.5 0 01.708 0zM11.354 9.146a.5.5 0 010 .708l-4 4a.5.5 0 01-.708 0l-4-4a.5.5 0 11.708-.708L7 12.793l3.646-3.647a.5.5 0 01.708 0z`,fill:e}))),MM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M3.354.146a.5.5 0 10-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 00-.708-.708L7 3.793 3.354.146zM6.646 9.146a.5.5 0 01.708 0l4 4a.5.5 0 01-.708.708L7 10.207l-3.646 3.647a.5.5 0 01-.708-.708l4-4z`,fill:e}))),NM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1.5 1h2a.5.5 0 010 1h-.793l3.147 3.146a.5.5 0 11-.708.708L2 2.707V3.5a.5.5 0 01-1 0v-2a.5.5 0 01.5-.5zM10 1.5a.5.5 0 01.5-.5h2a.5.5 0 01.5.5v2a.5.5 0 01-1 0v-.793L8.854 5.854a.5.5 0 11-.708-.708L11.293 2H10.5a.5.5 0 01-.5-.5zM12.5 10a.5.5 0 01.5.5v2a.5.5 0 01-.5.5h-2a.5.5 0 010-1h.793L8.146 8.854a.5.5 0 11.708-.708L12 11.293V10.5a.5.5 0 01.5-.5zM2 11.293V10.5a.5.5 0 00-1 0v2a.5.5 0 00.5.5h2a.5.5 0 000-1h-.793l3.147-3.146a.5.5 0 10-.708-.708L2 11.293z`,fill:e}))),PM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M6.646.147l-1.5 1.5a.5.5 0 10.708.707l.646-.647V5a.5.5 0 001 0V1.707l.646.647a.5.5 0 10.708-.707l-1.5-1.5a.5.5 0 00-.708 0z`,fill:e}),o.createElement(`path`,{d:`M1.309 4.038a.498.498 0 00-.16.106l-.005.005a.498.498 0 00.002.705L3.293 7 1.146 9.146A.498.498 0 001.5 10h3a.5.5 0 000-1H2.707l1.5-1.5h5.586l2.353 2.354a.5.5 0 00.708-.708L10.707 7l2.146-2.146.11-.545-.107.542A.499.499 0 0013 4.503v-.006a.5.5 0 00-.144-.348l-.005-.005A.498.498 0 0012.5 4h-3a.5.5 0 000 1h1.793l-1.5 1.5H4.207L2.707 5H4.5a.5.5 0 000-1h-3a.498.498 0 00-.191.038z`,fill:e}),o.createElement(`path`,{d:`M7 8.5a.5.5 0 01.5.5v3.293l.646-.647a.5.5 0 01.708.708l-1.5 1.5a.5.5 0 01-.708 0l-1.5-1.5a.5.5 0 01.708-.708l.646.647V9a.5.5 0 01.5-.5zM9 9.5a.5.5 0 01.5-.5h3a.5.5 0 010 1h-3a.5.5 0 01-.5-.5z`,fill:e}))),FM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M10.646 2.646a.5.5 0 01.708 0l1.5 1.5a.5.5 0 010 .708l-1.5 1.5a.5.5 0 01-.708-.708L11.293 5H1.5a.5.5 0 010-1h9.793l-.647-.646a.5.5 0 010-.708zM3.354 8.354L2.707 9H12.5a.5.5 0 010 1H2.707l.647.646a.5.5 0 01-.708.708l-1.5-1.5a.5.5 0 010-.708l1.5-1.5a.5.5 0 11.708.708z`,fill:e}))),IM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1.5 1a.5.5 0 01.5.5V10a2 2 0 004 0V4a3 3 0 016 0v7.793l1.146-1.147a.5.5 0 01.708.708l-2 2a.5.5 0 01-.708 0l-2-2a.5.5 0 01.708-.708L11 11.793V4a2 2 0 10-4 0v6.002a3 3 0 01-6 0V1.5a.5.5 0 01.5-.5z`,fill:e}))),LM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1.146 3.854a.5.5 0 010-.708l2-2a.5.5 0 11.708.708L2.707 3h6.295A4 4 0 019 11H3a.5.5 0 010-1h6a3 3 0 100-6H2.707l1.147 1.146a.5.5 0 11-.708.708l-2-2z`,fill:e}))),RM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M4.354 2.146a.5.5 0 010 .708L1.707 5.5H9.5A4.5 4.5 0 0114 10v1.5a.5.5 0 01-1 0V10a3.5 3.5 0 00-3.5-3.5H1.707l2.647 2.646a.5.5 0 11-.708.708l-3.5-3.5a.5.5 0 010-.708l3.5-3.5a.5.5 0 01.708 0z`,fill:e}))),zM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M5.5 1A.5.5 0 005 .5H2a.5.5 0 000 1h1.535a6.502 6.502 0 002.383 11.91.5.5 0 10.165-.986A5.502 5.502 0 014.5 2.1V4a.5.5 0 001 0V1.353a.5.5 0 000-.023V1zM7.507 1a.5.5 0 01.576-.41 6.502 6.502 0 012.383 11.91H12a.5.5 0 010 1H9a.5.5 0 01-.5-.5v-3a.5.5 0 011 0v1.9A5.5 5.5 0 007.917 1.576.5.5 0 017.507 1z`,fill:e}))),BM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M8.646 5.854L7.5 4.707V10.5a.5.5 0 01-1 0V4.707L5.354 5.854a.5.5 0 11-.708-.708l2-2a.5.5 0 01.708 0l2 2a.5.5 0 11-.708.708z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z`,fill:e}))),VM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M5.354 8.146L6.5 9.293V3.5a.5.5 0 011 0v5.793l1.146-1.147a.5.5 0 11.708.708l-2 2a.5.5 0 01-.708 0l-2-2a.5.5 0 11.708-.708z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M0 7a7 7 0 1114 0A7 7 0 010 7zm1 0a6 6 0 1112 0A6 6 0 011 7z`,fill:e}))),HM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M5.854 5.354L4.707 6.5H10.5a.5.5 0 010 1H4.707l1.147 1.146a.5.5 0 11-.708.708l-2-2a.5.5 0 010-.708l2-2a.5.5 0 11.708.708z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7 0a7 7 0 110 14A7 7 0 017 0zm0 1a6 6 0 110 12A6 6 0 017 1z`,fill:e}))),UM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M3.5 6.5h5.793L8.146 5.354a.5.5 0 11.708-.708l2 2a.5.5 0 010 .708l-2 2a.5.5 0 11-.708-.708L9.293 7.5H3.5a.5.5 0 010-1z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7 14A7 7 0 117 0a7 7 0 010 14zm0-1A6 6 0 117 1a6 6 0 010 12z`,fill:e}))),WM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7.092.5H7a6.5 6.5 0 106.41 7.583.5.5 0 10-.986-.166A5.495 5.495 0 017 12.5a5.5 5.5 0 010-11h.006a5.5 5.5 0 014.894 3H10a.5.5 0 000 1h3a.5.5 0 00.5-.5V2a.5.5 0 00-1 0v1.535A6.495 6.495 0 007.092.5z`,fill:e}))),GM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M14 7A7 7 0 100 7a7 7 0 0014 0zm-6.535 5.738c-.233.23-.389.262-.465.262-.076 0-.232-.032-.465-.262-.238-.234-.497-.623-.737-1.182-.434-1.012-.738-2.433-.79-4.056h3.984c-.052 1.623-.356 3.043-.79 4.056-.24.56-.5.948-.737 1.182zM8.992 6.5H5.008c.052-1.623.356-3.044.79-4.056.24-.56.5-.948.737-1.182C6.768 1.032 6.924 1 7 1c.076 0 .232.032.465.262.238.234.497.623.737 1.182.434 1.012.738 2.433.79 4.056zm1 1c-.065 2.176-.558 4.078-1.282 5.253A6.005 6.005 0 0012.98 7.5H9.992zm2.987-1H9.992c-.065-2.176-.558-4.078-1.282-5.253A6.005 6.005 0 0112.98 6.5zm-8.971 0c.065-2.176.558-4.078 1.282-5.253A6.005 6.005 0 001.02 6.5h2.988zm-2.987 1a6.005 6.005 0 004.27 5.253C4.565 11.578 4.072 9.676 4.007 7.5H1.02z`,fill:e}))),KM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M10.087 3.397L5.95 5.793a.374.374 0 00-.109.095.377.377 0 00-.036.052l-2.407 4.147a.374.374 0 00-.004.384c.104.179.334.24.513.136l4.142-2.404a.373.373 0 00.148-.143l2.406-4.146a.373.373 0 00-.037-.443.373.373 0 00-.478-.074zM4.75 9.25l2.847-1.652-1.195-1.195L4.75 9.25z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z`,fill:e}))),qM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M0 7a7 7 0 1114 0A7 7 0 010 7zm6.5 3.5v2.48A6.001 6.001 0 011.02 7.5H3.5a.5.5 0 000-1H1.02A6.001 6.001 0 016.5 1.02V3.5a.5.5 0 001 0V1.02a6.001 6.001 0 015.48 5.48H10.5a.5.5 0 000 1h2.48a6.002 6.002 0 01-5.48 5.48V10.5a.5.5 0 00-1 0z`,fill:e}))),JM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M9 5a2 2 0 11-4 0 2 2 0 014 0zM8 5a1 1 0 11-2 0 1 1 0 012 0z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M12 5A5 5 0 002 5c0 2.633 2.273 6.154 4.65 8.643.192.2.508.2.7 0C9.726 11.153 12 7.633 12 5zM7 1a4 4 0 014 4c0 1.062-.471 2.42-1.303 3.88-.729 1.282-1.69 2.562-2.697 3.67-1.008-1.108-1.968-2.388-2.697-3.67C3.47 7.42 3 6.063 3 5a4 4 0 014-4z`,fill:e}))),YM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7 2a.5.5 0 01.5.5v4H10a.5.5 0 010 1H7a.5.5 0 01-.5-.5V2.5A.5.5 0 017 2z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7 14A7 7 0 107 0a7 7 0 000 14zm0-1A6 6 0 107 1a6 6 0 000 12z`,fill:e}))),XM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M9.79 4.093a.5.5 0 01.117.698L7.91 7.586a1 1 0 11-.814-.581l1.997-2.796a.5.5 0 01.698-.116z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M2.069 12.968a7 7 0 119.863 0A12.962 12.962 0 007 12c-1.746 0-3.41.344-4.931.968zm9.582-1.177a6 6 0 10-9.301 0A13.98 13.98 0 017 11c1.629 0 3.194.279 4.65.791z`,fill:e}))),ZM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7.5 4.5a.5.5 0 00-1 0v2.634a1 1 0 101 0V4.5z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M5.5.5A.5.5 0 016 0h2a.5.5 0 010 1h-.5v1.02a5.973 5.973 0 013.374 1.398l.772-.772a.5.5 0 01.708.708l-.772.772A6 6 0 116.5 2.02V1H6a.5.5 0 01-.5-.5zM7 3a5 5 0 100 10A5 5 0 007 3z`,fill:e}))),QM=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7.354 1.146l5.5 5.5a.5.5 0 01-.708.708L12 7.207V12.5a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5V9H6v3.5a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5V7.207l-.146.147a.5.5 0 11-.708-.708l1-1 4.5-4.5a.5.5 0 01.708 0zM3 6.207V12h2V8.5a.5.5 0 01.5-.5h3a.5.5 0 01.5.5V12h2V6.207l-4-4-4 4z`,fill:e}))),$M=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1.213 4.094a.5.5 0 01.056-.034l5.484-2.995a.498.498 0 01.494 0L12.73 4.06a.507.507 0 01.266.389.498.498 0 01-.507.555H1.51a.5.5 0 01-.297-.91zm2.246-.09h7.082L7 2.07 3.459 4.004z`,fill:e}),o.createElement(`path`,{d:`M4 6a.5.5 0 00-1 0v5a.5.5 0 001 0V6zM11 6a.5.5 0 00-1 0v5a.5.5 0 001 0V6zM5.75 5.5a.5.5 0 01.5.5v5a.5.5 0 01-1 0V6a.5.5 0 01.5-.5zM8.75 6a.5.5 0 00-1 0v5a.5.5 0 001 0V6zM1.5 12.504a.5.5 0 01.5-.5h10a.5.5 0 010 1H2a.5.5 0 01-.5-.5z`,fill:e}))),eN=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`g`,{clipPath:`url(#prefix__clip0_1107_3594)`},o.createElement(`path`,{d:`M11.451.537l.01 12.922h0L7.61 8.946a1.077 1.077 0 00-.73-.374L.964 8.087 11.45.537h0z`,stroke:e,strokeWidth:1.077})),o.createElement(`defs`,null,o.createElement(`clipPath`,{id:`prefix__clip0_1107_3594`},o.createElement(`path`,{fill:`#fff`,d:`M0 0h14v14H0z`}))))),tN=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M14 7A7 7 0 110 7a7 7 0 0114 0zM2.671 11.155c.696-1.006 2.602-1.816 3.194-1.91.226-.036.232-.658.232-.658s-.665-.658-.81-1.544c-.39 0-.63-.94-.241-1.272a2.578 2.578 0 00-.012-.13c-.066-.607-.28-2.606 1.965-2.606 2.246 0 2.031 2 1.966 2.606l-.012.13c.39.331.149 1.272-.24 1.272-.146.886-.81 1.544-.81 1.544s.004.622.23.658c.593.094 2.5.904 3.195 1.91a6 6 0 10-8.657 0z`,fill:e}))),nN=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M7.275 13.16a11.388 11.388 0 005.175-1.232v-.25c0-1.566-3.237-2.994-4.104-3.132-.27-.043-.276-.783-.276-.783s.791-.783.964-1.836c.463 0 .75-1.119.286-1.513C9.34 4 9.916 1.16 6.997 1.16c-2.92 0-2.343 2.84-2.324 3.254-.463.394-.177 1.513.287 1.513.172 1.053.963 1.836.963 1.836s-.006.74-.275.783c-.858.136-4.036 1.536-4.103 3.082a11.388 11.388 0 005.73 1.532z`,fill:e}))),rN=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M1.183 11.906a10.645 10.645 0 01-1.181-.589c.062-1.439 3.02-2.74 3.818-2.868.25-.04.256-.728.256-.728s-.736-.729-.896-1.709c-.432 0-.698-1.041-.267-1.408A2.853 2.853 0 002.9 4.46c-.072-.672-.31-2.884 2.175-2.884 2.486 0 2.248 2.212 2.176 2.884-.007.062-.012.112-.014.144.432.367.165 1.408-.266 1.408-.16.98-.896 1.709-.896 1.709s.005.688.256.728c.807.129 3.82 1.457 3.82 2.915v.233a10.598 10.598 0 01-4.816 1.146c-1.441 0-2.838-.282-4.152-.837zM11.5 2.16a.5.5 0 01.5.5v1.5h1.5a.5.5 0 010 1H12v1.5a.5.5 0 01-1 0v-1.5H9.5a.5.5 0 110-1H11v-1.5a.5.5 0 01.5-.5z`,fill:e}))),iN=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M9.21 11.623a10.586 10.586 0 01-4.031.787A10.585 10.585 0 010 11.07c.06-1.354 2.933-2.578 3.708-2.697.243-.038.249-.685.249-.685s-.715-.685-.87-1.607c-.42 0-.679-.979-.26-1.323a2.589 2.589 0 00-.013-.136c-.07-.632-.3-2.712 2.113-2.712 2.414 0 2.183 2.08 2.113 2.712-.007.059-.012.105-.013.136.419.344.16 1.323-.259 1.323-.156.922-.87 1.607-.87 1.607s.005.647.248.685c.784.12 3.71 1.37 3.71 2.74v.22c-.212.103-.427.2-.646.29z`,fill:e}),o.createElement(`path`,{d:`M8.81 8.417a9.643 9.643 0 00-.736-.398c.61-.42 1.396-.71 1.7-.757.167-.026.171-.471.171-.471s-.491-.471-.598-1.104c-.288 0-.466-.674-.178-.91-.001-.022-.005-.053-.01-.094-.048-.434-.206-1.864 1.453-1.864 1.66 0 1.5 1.43 1.453 1.864l-.01.094c.289.236.11.91-.178.91-.107.633-.598 1.104-.598 1.104s.004.445.171.47c.539.084 2.55.942 2.55 1.884v.628a10.604 10.604 0 01-3.302.553 2.974 2.974 0 00-.576-.879c-.375-.408-.853-.754-1.312-1.03z`,fill:e}))),aN=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M9.106 7.354c-.627.265-1.295.4-1.983.4a5.062 5.062 0 01-2.547-.681c.03-.688 1.443-1.31 1.824-1.37.12-.02.122-.348.122-.348s-.351-.348-.428-.816c-.206 0-.333-.498-.127-.673 0-.016-.003-.04-.007-.07C5.926 3.477 5.812 2.42 7 2.42c1.187 0 1.073 1.057 1.039 1.378l-.007.069c.207.175.08.673-.127.673-.076.468-.428.816-.428.816s.003.329.122.348c.386.06 1.825.696 1.825 1.392v.111c-.104.053-.21.102-.318.148zM3.75 11.25A.25.25 0 014 11h6a.25.25 0 110 .5H4a.25.25 0 01-.25-.25zM4 9a.25.25 0 000 .5h6a.25.25 0 100-.5H4z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M1 .5a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v13a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5V.5zM2 13V1h10v12H2z`,fill:e}))),oN=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M3.968 8.75a.5.5 0 00-.866.5A4.498 4.498 0 007 11.5c1.666 0 3.12-.906 3.898-2.25a.5.5 0 10-.866-.5A3.498 3.498 0 017 10.5a3.498 3.498 0 01-3.032-1.75zM5.5 5a1 1 0 11-2 0 1 1 0 012 0zM9.5 6a1 1 0 100-2 1 1 0 000 2z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z`,fill:e}))),sN=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M4.5 9a.5.5 0 000 1h5a.5.5 0 000-1h-5zM5.5 5a1 1 0 11-2 0 1 1 0 012 0zM9.5 6a1 1 0 100-2 1 1 0 000 2z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z`,fill:e}))),cN=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M3.968 10.25a.5.5 0 01-.866-.5A4.498 4.498 0 017 7.5c1.666 0 3.12.906 3.898 2.25a.5.5 0 11-.866.5A3.498 3.498 0 007 8.5a3.498 3.498 0 00-3.032 1.75zM5.5 5a1 1 0 11-2 0 1 1 0 012 0zM9.5 6a1 1 0 100-2 1 1 0 000 2z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z`,fill:e}))),lN=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{d:`M3.526 4.842a.5.5 0 01.632-.316l2.051.684a2.5 2.5 0 001.582 0l2.05-.684a.5.5 0 01.317.948l-2.453.818a.3.3 0 00-.205.285v.243a4.5 4.5 0 00.475 2.012l.972 1.944a.5.5 0 11-.894.448L7 9.118l-1.053 2.106a.5.5 0 11-.894-.447l.972-1.945A4.5 4.5 0 006.5 6.82v-.243a.3.3 0 00-.205-.285l-2.453-.818a.5.5 0 01-.316-.632z`,fill:e}),o.createElement(`path`,{d:`M7 4.5a1 1 0 100-2 1 1 0 000 2z`,fill:e}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7 14A7 7 0 107 0a7 7 0 000 14zm0-1A6 6 0 107 1a6 6 0 000 12z`,fill:e}))),uN=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7 14A7 7 0 107 0a7 7 0 000 14zM8 3.5a1 1 0 11-2 0 1 1 0 012 0zM3.526 4.842a.5.5 0 01.632-.316l2.051.684a2.5 2.5 0 001.582 0l2.05-.684a.5.5 0 01.317.948l-2.453.818a.3.3 0 00-.205.285v.243a4.5 4.5 0 00.475 2.012l.972 1.944a.5.5 0 11-.894.448L7 9.118l-1.053 2.106a.5.5 0 11-.894-.447l.972-1.945A4.5 4.5 0 006.5 6.82v-.243a.3.3 0 00-.205-.285l-2.453-.818a.5.5 0 01-.316-.632z`,fill:e}))),dN=o.forwardRef(({color:e=`currentColor`,size:t=14,...n},r)=>o.createElement(`svg`,{width:t,height:t,viewBox:`0 0 14 14`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,ref:r,...n},o.createElement(`g`,{clipPath:`url(#prefix__clip0_2359_558)`,fill:e},o.createElement(`path`,{d:`M7.636 13.972a7 7 0 116.335-6.335c-.28-.34-.609-.637-.976-.883a6 6 0 10-6.24 6.241c.245.367.542.696.881.977z`}),o.createElement(`path`,{d:`M7.511 7.136a4.489 4.489 0 00-1.478 3.915l-.086.173a.5.5 0 11-.894-.447l.972-1.945A4.5 4.5 0 006.5 6.82v-.243a.3.3 0 00-.205-.285l-2.453-.818a.5.5 0 01.316-.948l2.051.684a2.5 2.5 0 001.582 0l2.05-.684a.5.5 0 01.317.948l-2.453.818a.3.3 0 00-.205.285v.243c0 .105.004.21.011.316z`}),o.createElement(`path`,{d:`M8 3.5a1 1 0 11-2 0 1 1 0 012 0z`}),o.createElement(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M14 10.5a3.5 3.5 0 11-7 0 3.5 3.5 0 017 0zm-5.5 0A.5.5 0 019 10h3a.5.5 0 010 1H9a.5.5 0 01-.5-.5z`})),o.createElement(`defs`,null,o.createElement(`clipPath`,{id:`prefix__clip0_2359_558`},o.createElement(`path`,{fill:`#fff`,d:`M0 0h14v14H0z`}))))),fN=0,pN=G(e=>e.button===fN&&!e.altKey&&!e.ctrlKey&&!e.metaKey&&!e.shiftKey,`isPlainLeftClick`),mN=G((e,t)=>{pN(e)&&(e.preventDefault(),t(e))},`cancelled`),hN=H.span(({withArrow:e})=>e?{"> svg:last-of-type":{height:`0.7em`,width:`0.7em`,marginRight:0,marginLeft:`0.25em`,bottom:`auto`,verticalAlign:`inherit`}}:{},({containsIcon:e})=>e?{svg:{height:`1em`,width:`1em`,verticalAlign:`middle`,position:`relative`,bottom:0,marginRight:0}}:{}),gN=H.a(({theme:e})=>({display:`inline-block`,transition:`all 150ms ease-out`,textDecoration:`none`,color:e.color.secondary,"&:hover, &:focus":{cursor:`pointer`,color:tO(.07,e.color.secondary),"svg path:not([fill])":{fill:tO(.07,e.color.secondary)}},"&:active":{color:tO(.1,e.color.secondary),"svg path:not([fill])":{fill:tO(.1,e.color.secondary)}},svg:{display:`inline-block`,height:`1em`,width:`1em`,verticalAlign:`text-top`,position:`relative`,bottom:`-0.125em`,marginRight:`0.4em`,"& path":{fill:e.color.secondary}}}),({theme:e,secondary:t,tertiary:n})=>{let r;return t&&(r=[e.textMutedColor,e.color.dark,e.color.darker]),n&&(r=[e.color.dark,e.color.darkest,e.textMutedColor]),r?{color:r[0],"svg path:not([fill])":{fill:r[0]},"&:hover":{color:r[1],"svg path:not([fill])":{fill:r[1]}},"&:active":{color:r[2],"svg path:not([fill])":{fill:r[2]}}}:{}},({nochrome:e})=>e?{color:`inherit`,"&:hover, &:active":{color:`inherit`,textDecoration:`underline`}}:{},({theme:e,inverse:t})=>t?{color:e.color.lightest,":not([fill])":{fill:e.color.lightest},"&:hover":{color:e.color.lighter,"svg path:not([fill])":{fill:e.color.lighter}},"&:active":{color:e.color.light,"svg path:not([fill])":{fill:e.color.light}}}:{},({isButton:e})=>e?{border:0,borderRadius:0,background:`none`,padding:0,fontSize:`inherit`}:{}),_N=G(({cancel:e=!0,children:t,onClick:n=void 0,withArrow:r=!1,containsIcon:i=!1,className:a=void 0,style:s=void 0,...c})=>o.createElement(gN,{...c,onClick:n&&e?e=>mN(e,n):n,className:a},o.createElement(hN,{withArrow:r,containsIcon:i},t,r&&o.createElement(mM,null))),`Link`);H.div(({theme:e})=>({fontSize:`${e.typography.size.s2}px`,lineHeight:`1.6`,h1:{fontSize:`${e.typography.size.l1}px`,fontWeight:e.typography.weight.bold},h2:{fontSize:`${e.typography.size.m2}px`,borderBottom:`1px solid ${e.appBorderColor}`},h3:{fontSize:`${e.typography.size.m1}px`},h4:{fontSize:`${e.typography.size.s3}px`},h5:{fontSize:`${e.typography.size.s2}px`},h6:{fontSize:`${e.typography.size.s2}px`,color:e.color.dark},"pre:not(.prismjs)":{background:`transparent`,border:`none`,borderRadius:0,padding:0,margin:0},"pre pre, pre.prismjs":{padding:15,margin:0,whiteSpace:`pre-wrap`,color:`inherit`,fontSize:`13px`,lineHeight:`19px`},"pre pre code, pre.prismjs code":{color:`inherit`,fontSize:`inherit`},"pre code":{margin:0,padding:0,whiteSpace:`pre`,border:`none`,background:`transparent`},"pre code, pre tt":{backgroundColor:`transparent`,border:`none`},"body > *:first-of-type":{marginTop:`0 !important`},"body > *:last-child":{marginBottom:`0 !important`},a:{color:e.color.secondary,textDecoration:`none`},"a.absent":{color:`#cc0000`},"a.anchor":{display:`block`,paddingLeft:30,marginLeft:-30,cursor:`pointer`,position:`absolute`,top:0,left:0,bottom:0},"h1, h2, h3, h4, h5, h6":{margin:`20px 0 10px`,padding:0,cursor:`text`,position:`relative`,"&:first-of-type":{marginTop:0,paddingTop:0},"&:hover a.anchor":{textDecoration:`none`},"& tt, & code":{fontSize:`inherit`}},"h1:first-of-type + h2":{marginTop:0,paddingTop:0},"p, blockquote, ul, ol, dl, li, table, pre":{margin:`15px 0`},hr:{border:`0 none`,borderTop:`1px solid ${e.appBorderColor}`,height:4,padding:0},"body > h1:first-of-type, body > h2:first-of-type, body > h3:first-of-type, body > h4:first-of-type, body > h5:first-of-type, body > h6:first-of-type":{marginTop:0,paddingTop:0},"body > h1:first-of-type + h2":{marginTop:0,paddingTop:0},"a:first-of-type h1, a:first-of-type h2, a:first-of-type h3, a:first-of-type h4, a:first-of-type h5, a:first-of-type h6":{marginTop:0,paddingTop:0},"h1 p, h2 p, h3 p, h4 p, h5 p, h6 p":{marginTop:0},"li p.first":{display:`inline-block`},"ul, ol":{paddingLeft:30,"& :first-of-type":{marginTop:0},"& :last-child":{marginBottom:0}},dl:{padding:0},"dl dt":{fontSize:`14px`,fontWeight:`bold`,fontStyle:`italic`,margin:`0 0 15px`,padding:`0 15px`,"&:first-of-type":{padding:0},"& > :first-of-type":{marginTop:0},"& > :last-child":{marginBottom:0}},blockquote:{borderLeft:`4px solid ${e.color.medium}`,padding:`0 15px`,color:e.color.dark,"& > :first-of-type":{marginTop:0},"& > :last-child":{marginBottom:0}},table:{padding:0,borderCollapse:`collapse`,"& tr":{borderTop:`1px solid ${e.appBorderColor}`,backgroundColor:`white`,margin:0,padding:0,"& th":{fontWeight:`bold`,border:`1px solid ${e.appBorderColor}`,textAlign:`left`,margin:0,padding:`6px 13px`},"& td":{border:`1px solid ${e.appBorderColor}`,textAlign:`left`,margin:0,padding:`6px 13px`},"&:nth-of-type(2n)":{backgroundColor:e.color.lighter},"& th :first-of-type, & td :first-of-type":{marginTop:0},"& th :last-child, & td :last-child":{marginBottom:0}}},img:{maxWidth:`100%`},"span.frame":{display:`block`,overflow:`hidden`,"& > span":{border:`1px solid ${e.color.medium}`,display:`block`,float:`left`,overflow:`hidden`,margin:`13px 0 0`,padding:7,width:`auto`},"& span img":{display:`block`,float:`left`},"& span span":{clear:`both`,color:e.color.darkest,display:`block`,padding:`5px 0 0`}},"span.align-center":{display:`block`,overflow:`hidden`,clear:`both`,"& > span":{display:`block`,overflow:`hidden`,margin:`13px auto 0`,textAlign:`center`},"& span img":{margin:`0 auto`,textAlign:`center`}},"span.align-right":{display:`block`,overflow:`hidden`,clear:`both`,"& > span":{display:`block`,overflow:`hidden`,margin:`13px 0 0`,textAlign:`right`},"& span img":{margin:0,textAlign:`right`}},"span.float-left":{display:`block`,marginRight:13,overflow:`hidden`,float:`left`,"& span":{margin:`13px 0 0`}},"span.float-right":{display:`block`,marginLeft:13,overflow:`hidden`,float:`right`,"& > span":{display:`block`,overflow:`hidden`,margin:`13px auto 0`,textAlign:`right`}},"code, tt":{margin:`0 2px`,padding:`0 5px`,whiteSpace:`nowrap`,border:`1px solid ${e.color.mediumlight}`,backgroundColor:e.color.lighter,borderRadius:3,color:e.base===`dark`?e.color.darkest:e.color.dark}}));var vN=[],yN=null,bN=(0,o.lazy)(async()=>{let{SyntaxHighlighter:e}=await Promise.resolve().then(()=>(Ic(),gc));return vN.length>0&&(vN.forEach(t=>{e.registerLanguage(...t)}),vN=[]),yN===null&&(yN=e),{default:G(t=>o.createElement(e,{...t}),`default`)}}),xN=(0,o.lazy)(async()=>{let[{SyntaxHighlighter:e},{formatter:t}]=await Promise.all([Promise.resolve().then(()=>(Ic(),gc)),Promise.resolve().then(()=>(EC(),CC))]);return vN.length>0&&(vN.forEach(t=>{e.registerLanguage(...t)}),vN=[]),yN===null&&(yN=e),{default:G(n=>o.createElement(e,{...n,formatter:t}),`default`)}}),SN=G(e=>o.createElement(o.Suspense,{fallback:o.createElement(`div`,null)},e.format===!1?o.createElement(bN,{...e}):o.createElement(xN,{...e})),`SyntaxHighlighter`);SN.registerLanguage=(...e)=>{if(yN!==null){yN.registerLanguage(...e);return}vN.push(e)},Ic(),zo();var CN={};Gr(CN,{Close:()=>OI,Content:()=>TI,Description:()=>DI,Dialog:()=>qF,DialogClose:()=>pI,DialogContent:()=>iI,DialogDescription:()=>dI,DialogOverlay:()=>tI,DialogPortal:()=>$F,DialogTitle:()=>lI,DialogTrigger:()=>YF,Overlay:()=>wI,Portal:()=>CI,Root:()=>xI,Title:()=>EI,Trigger:()=>SI,WarningProvider:()=>gI,createDialogScope:()=>WF}),bs(),Uo();function wN(e,t){let n=o.createContext(t),r=G(e=>{let{children:t,...r}=e,i=o.useMemo(()=>r,Object.values(r));return(0,W.jsx)(n.Provider,{value:i,children:t})},`Provider`);r.displayName=e+`Provider`;function i(r){let i=o.useContext(n);if(i)return i;if(t!==void 0)return t;throw Error(`\`${r}\` must be used within \`${e}\``)}return G(i,`useContext2`),[r,i]}G(wN,`createContext2`);function TN(e,t=[]){let n=[];function r(t,r){let i=o.createContext(r),a=n.length;n=[...n,r];let s=G(t=>{let{scope:n,children:r,...s}=t,c=n?.[e]?.[a]||i,l=o.useMemo(()=>s,Object.values(s));return(0,W.jsx)(c.Provider,{value:l,children:r})},`Provider`);s.displayName=t+`Provider`;function c(n,s){let c=s?.[e]?.[a]||i,l=o.useContext(c);if(l)return l;if(r!==void 0)return r;throw Error(`\`${n}\` must be used within \`${t}\``)}return G(c,`useContext2`),[s,c]}G(r,`createContext3`);let i=G(()=>{let t=n.map(e=>o.createContext(e));return G(function(n){let r=n?.[e]||t;return o.useMemo(()=>({[`__scope${e}`]:{...n,[e]:r}}),[n,r])},`useScope`)},`createScope`);return i.scopeName=e,[r,EN(i,...t)]}G(TN,`createContextScope`);function EN(...e){let t=e[0];if(e.length===1)return t;let n=G(()=>{let n=e.map(e=>({useScope:e(),scopeName:e.scopeName}));return G(function(e){let r=n.reduce((t,{useScope:n,scopeName:r})=>{let i=n(e)[`__scope${r}`];return{...t,...i}},{});return o.useMemo(()=>({[`__scope${t.scopeName}`]:r}),[r])},`useComposedScopes`)},`createScope`);return n.scopeName=t.scopeName,n}G(EN,`composeContextScopes`),ns();var DN=o.useId||(()=>{}),ON=0;function kN(e){let[t,n]=o.useState(DN());return ts(()=>{e||n(e=>e??String(ON++))},[e]),e||(t?`radix-${t}`:``)}G(kN,`useId`),ps();function AN({prop:e,defaultProp:t,onChange:n=G(()=>{},`onChange`)}){let[r,i]=jN({defaultProp:t,onChange:n}),a=e!==void 0,s=a?e:r,c=fs(n);return[s,o.useCallback(t=>{if(a){let n=typeof t==`function`?t(e):t;n!==e&&c(n)}else i(t)},[a,e,i,c])]}G(AN,`useControllableState`);function jN({defaultProp:e,onChange:t}){let n=o.useState(e),[r]=n,i=o.useRef(r),a=fs(t);return o.useEffect(()=>{i.current!==r&&(a(r),i.current=r)},[r,i,a]),n}G(jN,`useUncontrolledState`),bs(),es(),Uo(),ps(),ps();function MN(e,t=globalThis?.document){let n=fs(e);o.useEffect(()=>{let e=G(e=>{e.key===`Escape`&&n(e)},`handleKeyDown`);return t.addEventListener(`keydown`,e,{capture:!0}),()=>t.removeEventListener(`keydown`,e,{capture:!0})},[n,t])}G(MN,`useEscapeKeydown`);var NN=`DismissableLayer`,PN=`dismissableLayer.update`,FN=`dismissableLayer.pointerDownOutside`,IN=`dismissableLayer.focusOutside`,LN,RN=o.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),zN=o.forwardRef((e,t)=>{let{disableOutsidePointerEvents:n=!1,onEscapeKeyDown:r,onPointerDownOutside:i,onFocusOutside:a,onInteractOutside:s,onDismiss:c,...l}=e,u=o.useContext(RN),[d,f]=o.useState(null),p=d?.ownerDocument??globalThis?.document,[,m]=o.useState({}),h=Ho(t,e=>f(e)),g=Array.from(u.layers),[_]=[...u.layersWithOutsidePointerEventsDisabled].slice(-1),v=g.indexOf(_),y=d?g.indexOf(d):-1,b=u.layersWithOutsidePointerEventsDisabled.size>0,x=y>=v,S=HN(e=>{let t=e.target,n=[...u.branches].some(e=>e.contains(t));!x||n||(i?.(e),s?.(e),e.defaultPrevented||c?.())},p),C=UN(e=>{let t=e.target;[...u.branches].some(e=>e.contains(t))||(a?.(e),s?.(e),e.defaultPrevented||c?.())},p);return MN(e=>{y===u.layers.size-1&&(r?.(e),!e.defaultPrevented&&c&&(e.preventDefault(),c()))},p),o.useEffect(()=>{if(d)return n&&(u.layersWithOutsidePointerEventsDisabled.size===0&&(LN=p.body.style.pointerEvents,p.body.style.pointerEvents=`none`),u.layersWithOutsidePointerEventsDisabled.add(d)),u.layers.add(d),WN(),()=>{n&&u.layersWithOutsidePointerEventsDisabled.size===1&&(p.body.style.pointerEvents=LN)}},[d,p,n,u]),o.useEffect(()=>()=>{d&&(u.layers.delete(d),u.layersWithOutsidePointerEventsDisabled.delete(d),WN())},[d,u]),o.useEffect(()=>{let e=G(()=>m({}),`handleUpdate`);return document.addEventListener(PN,e),()=>document.removeEventListener(PN,e)},[]),(0,W.jsx)($o.div,{...l,ref:h,style:{pointerEvents:b?x?`auto`:`none`:void 0,...e.style},onFocusCapture:ys(e.onFocusCapture,C.onFocusCapture),onBlurCapture:ys(e.onBlurCapture,C.onBlurCapture),onPointerDownCapture:ys(e.onPointerDownCapture,S.onPointerDownCapture)})});zN.displayName=NN;var BN=`DismissableLayerBranch`,VN=o.forwardRef((e,t)=>{let n=o.useContext(RN),r=o.useRef(null),i=Ho(t,r);return o.useEffect(()=>{let e=r.current;if(e)return n.branches.add(e),()=>{n.branches.delete(e)}},[n.branches]),(0,W.jsx)($o.div,{...e,ref:i})});VN.displayName=BN;function HN(e,t=globalThis?.document){let n=fs(e),r=o.useRef(!1),i=o.useRef(()=>{});return o.useEffect(()=>{let e=G(e=>{if(e.target&&!r.current){let r=G(function(){GN(FN,n,a,{discrete:!0})},`handleAndDispatchPointerDownOutsideEvent2`),a={originalEvent:e};e.pointerType===`touch`?(t.removeEventListener(`click`,i.current),i.current=r,t.addEventListener(`click`,i.current,{once:!0})):r()}else t.removeEventListener(`click`,i.current);r.current=!1},`handlePointerDown`),a=window.setTimeout(()=>{t.addEventListener(`pointerdown`,e)},0);return()=>{window.clearTimeout(a),t.removeEventListener(`pointerdown`,e),t.removeEventListener(`click`,i.current)}},[t,n]),{onPointerDownCapture:G(()=>r.current=!0,`onPointerDownCapture`)}}G(HN,`usePointerDownOutside`);function UN(e,t=globalThis?.document){let n=fs(e),r=o.useRef(!1);return o.useEffect(()=>{let e=G(e=>{e.target&&!r.current&&GN(IN,n,{originalEvent:e},{discrete:!1})},`handleFocus`);return t.addEventListener(`focusin`,e),()=>t.removeEventListener(`focusin`,e)},[t,n]),{onFocusCapture:G(()=>r.current=!0,`onFocusCapture`),onBlurCapture:G(()=>r.current=!1,`onBlurCapture`)}}G(UN,`useFocusOutside`);function WN(){let e=new CustomEvent(PN);document.dispatchEvent(e)}G(WN,`dispatchUpdate`);function GN(e,t,n,{discrete:r}){let i=n.originalEvent.target,a=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:n});t&&i.addEventListener(e,t,{once:!0}),r?Zo(i,a):i.dispatchEvent(a)}G(GN,`handleAndDispatchCustomEvent`),Uo(),es(),ps();var KN=`focusScope.autoFocusOnMount`,qN=`focusScope.autoFocusOnUnmount`,JN={bubbles:!1,cancelable:!0},YN=`FocusScope`,XN=o.forwardRef((e,t)=>{let{loop:n=!1,trapped:r=!1,onMountAutoFocus:i,onUnmountAutoFocus:a,...s}=e,[c,l]=o.useState(null),u=fs(i),d=fs(a),f=o.useRef(null),p=Ho(t,e=>l(e)),m=o.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;o.useEffect(()=>{if(r){let e=G(function(e){if(m.paused||!c)return;let t=e.target;c.contains(t)?f.current=t:rP(f.current,{select:!0})},`handleFocusIn2`),t=G(function(e){if(m.paused||!c)return;let t=e.relatedTarget;t!==null&&(c.contains(t)||rP(f.current,{select:!0}))},`handleFocusOut2`),n=G(function(e){if(document.activeElement===document.body)for(let t of e)t.removedNodes.length>0&&rP(c)},`handleMutations2`);document.addEventListener(`focusin`,e),document.addEventListener(`focusout`,t);let r=new MutationObserver(n);return c&&r.observe(c,{childList:!0,subtree:!0}),()=>{document.removeEventListener(`focusin`,e),document.removeEventListener(`focusout`,t),r.disconnect()}}},[r,c,m.paused]),o.useEffect(()=>{if(c){iP.add(m);let e=document.activeElement;if(!c.contains(e)){let t=new CustomEvent(KN,JN);c.addEventListener(KN,u),c.dispatchEvent(t),t.defaultPrevented||(ZN(sP($N(c)),{select:!0}),document.activeElement===e&&rP(c))}return()=>{c.removeEventListener(KN,u),setTimeout(()=>{let t=new CustomEvent(qN,JN);c.addEventListener(qN,d),c.dispatchEvent(t),t.defaultPrevented||rP(e??document.body,{select:!0}),c.removeEventListener(qN,d),iP.remove(m)},0)}}},[c,u,d,m]);let h=o.useCallback(e=>{if(!n&&!r||m.paused)return;let t=e.key===`Tab`&&!e.altKey&&!e.ctrlKey&&!e.metaKey,i=document.activeElement;if(t&&i){let t=e.currentTarget,[r,a]=QN(t);r&&a?!e.shiftKey&&i===a?(e.preventDefault(),n&&rP(r,{select:!0})):e.shiftKey&&i===r&&(e.preventDefault(),n&&rP(a,{select:!0})):i===t&&e.preventDefault()}},[n,r,m.paused]);return(0,W.jsx)($o.div,{tabIndex:-1,...s,ref:p,onKeyDown:h})});XN.displayName=YN;function ZN(e,{select:t=!1}={}){let n=document.activeElement;for(let r of e)if(rP(r,{select:t}),document.activeElement!==n)return}G(ZN,`focusFirst`);function QN(e){let t=$N(e);return[eP(t,e),eP(t.reverse(),e)]}G(QN,`getTabbableEdges`);function $N(e){let t=[],n=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:G(e=>{let t=e.tagName===`INPUT`&&e.type===`hidden`;return e.disabled||e.hidden||t?NodeFilter.FILTER_SKIP:e.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP},`acceptNode`)});for(;n.nextNode();)t.push(n.currentNode);return t}G($N,`getTabbableCandidates`);function eP(e,t){for(let n of e)if(!tP(n,{upTo:t}))return n}G(eP,`findVisible`);function tP(e,{upTo:t}){if(getComputedStyle(e).visibility===`hidden`)return!0;for(;e;){if(t!==void 0&&e===t)return!1;if(getComputedStyle(e).display===`none`)return!0;e=e.parentElement}return!1}G(tP,`isHidden`);function nP(e){return e instanceof HTMLInputElement&&`select`in e}G(nP,`isSelectableInput`);function rP(e,{select:t=!1}={}){if(e&&e.focus){let n=document.activeElement;e.focus({preventScroll:!0}),e!==n&&nP(e)&&t&&e.select()}}G(rP,`focus`);var iP=aP();function aP(){let e=[];return{add(t){let n=e[0];t!==n&&n?.pause(),e=oP(e,t),e.unshift(t)},remove(t){e=oP(e,t),e[0]?.resume()}}}G(aP,`createFocusScopesStack`);function oP(e,t){let n=[...e],r=n.indexOf(t);return r!==-1&&n.splice(r,1),n}G(oP,`arrayRemove`);function sP(e){return e.filter(e=>e.tagName!==`A`)}G(sP,`removeLinks`),es(),ns();var cP=`Portal`,lP=o.forwardRef((e,t)=>{let{container:n,...r}=e,[i,a]=o.useState(!1);ts(()=>a(!0),[]);let s=n||i&&globalThis?.document?.body;return s?Lr.createPortal((0,W.jsx)($o.div,{...r,ref:t}),s):null});lP.displayName=cP,Uo(),ns();function uP(e,t){return o.useReducer((e,n)=>t[e][n]??e,e)}G(uP,`useStateMachine`);var dP=G(e=>{let{present:t,children:n}=e,r=fP(t),i=typeof n==`function`?n({present:r.isPresent}):o.Children.only(n),a=Ho(r.ref,mP(i));return typeof n==`function`||r.isPresent?o.cloneElement(i,{ref:a}):null},`Presence`);dP.displayName=`Presence`;function fP(e){let[t,n]=o.useState(),r=o.useRef({}),i=o.useRef(e),a=o.useRef(`none`),[s,c]=uP(e?`mounted`:`unmounted`,{mounted:{UNMOUNT:`unmounted`,ANIMATION_OUT:`unmountSuspended`},unmountSuspended:{MOUNT:`mounted`,ANIMATION_END:`unmounted`},unmounted:{MOUNT:`mounted`}});return o.useEffect(()=>{let e=pP(r.current);a.current=s===`mounted`?e:`none`},[s]),ts(()=>{let t=r.current,n=i.current;if(n!==e){let r=a.current,o=pP(t);e?c(`MOUNT`):o===`none`||t?.display===`none`?c(`UNMOUNT`):c(n&&r!==o?`ANIMATION_OUT`:`UNMOUNT`),i.current=e}},[e,c]),ts(()=>{if(t){let e,n=t.ownerDocument.defaultView??window,o=G(a=>{let o=pP(r.current).includes(a.animationName);if(a.target===t&&o&&(c(`ANIMATION_END`),!i.current)){let r=t.style.animationFillMode;t.style.animationFillMode=`forwards`,e=n.setTimeout(()=>{t.style.animationFillMode===`forwards`&&(t.style.animationFillMode=r)})}},`handleAnimationEnd`),s=G(e=>{e.target===t&&(a.current=pP(r.current))},`handleAnimationStart`);return t.addEventListener(`animationstart`,s),t.addEventListener(`animationcancel`,o),t.addEventListener(`animationend`,o),()=>{n.clearTimeout(e),t.removeEventListener(`animationstart`,s),t.removeEventListener(`animationcancel`,o),t.removeEventListener(`animationend`,o)}}else c(`ANIMATION_END`)},[t,c]),{isPresent:[`mounted`,`unmountSuspended`].includes(s),ref:o.useCallback(e=>{e&&(r.current=getComputedStyle(e)),n(e)},[])}}G(fP,`usePresence`);function pP(e){return e?.animationName||`none`}G(pP,`getAnimationName`);function mP(e){let t=Object.getOwnPropertyDescriptor(e.props,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}G(mP,`getElementRef`),es();var hP=0;function gP(){o.useEffect(()=>{let e=document.querySelectorAll(`[data-radix-focus-guard]`);return document.body.insertAdjacentElement(`afterbegin`,e[0]??_P()),document.body.insertAdjacentElement(`beforeend`,e[1]??_P()),hP++,()=>{hP===1&&document.querySelectorAll(`[data-radix-focus-guard]`).forEach(e=>e.remove()),hP--}},[])}G(gP,`useFocusGuards`);function _P(){let e=document.createElement(`span`);return e.setAttribute(`data-radix-focus-guard`,``),e.tabIndex=0,e.style.outline=`none`,e.style.opacity=`0`,e.style.position=`fixed`,e.style.pointerEvents=`none`,e}G(_P,`createFocusGuard`);var vP=G(function(){return vP=Object.assign||G(function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n],t)Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},`__assign`),vP.apply(this,arguments)},`__assign`);function yP(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&typeof Object.getOwnPropertySymbols==`function`)for(var i=0,r=Object.getOwnPropertySymbols(e);i<r.length;i++)t.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(e,r[i])&&(n[r[i]]=e[r[i]]);return n}G(yP,`__rest`);function bP(e,t,n){if(n||arguments.length===2)for(var r=0,i=t.length,a;r<i;r++)(a||!(r in t))&&(a||=Array.prototype.slice.call(t,0,r),a[r]=t[r]);return e.concat(a||Array.prototype.slice.call(t))}G(bP,`__spreadArray`);var xP=`right-scroll-bar-position`,SP=`width-before-scroll-bar`,CP=`with-scroll-bars-hidden`,wP=`--removed-body-scroll-bar-size`;function TP(e,t){return typeof e==`function`?e(t):e&&(e.current=t),e}G(TP,`assignRef`);function EP(e,t){var n=(0,o.useState)(function(){return{value:e,callback:t,facade:{get current(){return n.value},set current(e){var t=n.value;t!==e&&(n.value=e,n.callback(e,t))}}}})[0];return n.callback=t,n.facade}G(EP,`useCallbackRef`);var DP=new WeakMap;function OP(e,t){var n=EP(t||null,function(t){return e.forEach(function(e){return TP(e,t)})});return o.useLayoutEffect(function(){var t=DP.get(n);if(t){var r=new Set(t),i=new Set(e),a=n.current;r.forEach(function(e){i.has(e)||TP(e,null)}),i.forEach(function(e){r.has(e)||TP(e,a)})}DP.set(n,e)},[e]),n}G(OP,`useMergeRefs`);function kP(e){return e}G(kP,`ItoI`);function AP(e,t){t===void 0&&(t=kP);var n=[],r=!1;return{read:G(function(){if(r)throw Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return n.length?n[n.length-1]:e},`read`),useMedium:G(function(e){var i=t(e,r);return n.push(i),function(){n=n.filter(function(e){return e!==i})}},`useMedium`),assignSyncMedium:G(function(e){for(r=!0;n.length;){var t=n;n=[],t.forEach(e)}n={push:G(function(t){return e(t)},`push`),filter:G(function(){return n},`filter`)}},`assignSyncMedium`),assignMedium:G(function(e){r=!0;var t=[];if(n.length){var i=n;n=[],i.forEach(e),t=n}var a=G(function(){var n=t;t=[],n.forEach(e)},`executeQueue`),o=G(function(){return Promise.resolve().then(a)},`cycle`);o(),n={push:G(function(e){t.push(e),o()},`push`),filter:G(function(e){return t=t.filter(e),n},`filter`)}},`assignMedium`)}}G(AP,`innerCreateMedium`);function jP(e){e===void 0&&(e={});var t=AP(null);return t.options=vP({async:!0,ssr:!1},e),t}G(jP,`createSidecarMedium`);var MP=G(function(e){var t=e.sideCar,n=yP(e,[`sideCar`]);if(!t)throw Error("Sidecar: please provide `sideCar` property to import the right car");var r=t.read();if(!r)throw Error(`Sidecar medium not found`);return o.createElement(r,vP({},n))},`SideCar`);MP.isSideCarExport=!0;function NP(e,t){return e.useMedium(t),MP}G(NP,`exportSidecar`);var PP=jP(),FP=G(function(){},`nothing`),IP=o.forwardRef(function(e,t){var n=o.useRef(null),r=o.useState({onScrollCapture:FP,onWheelCapture:FP,onTouchMoveCapture:FP}),i=r[0],a=r[1],s=e.forwardProps,c=e.children,l=e.className,u=e.removeScrollBar,d=e.enabled,f=e.shards,p=e.sideCar,m=e.noIsolation,h=e.inert,g=e.allowPinchZoom,_=e.as,v=_===void 0?`div`:_,y=e.gapMode,b=yP(e,[`forwardProps`,`children`,`className`,`removeScrollBar`,`enabled`,`shards`,`sideCar`,`noIsolation`,`inert`,`allowPinchZoom`,`as`,`gapMode`]),x=p,S=OP([n,t]),C=vP(vP({},b),i);return o.createElement(o.Fragment,null,d&&o.createElement(x,{sideCar:PP,removeScrollBar:u,shards:f,noIsolation:m,inert:h,setCallbacks:a,allowPinchZoom:!!g,lockRef:n,gapMode:y}),s?o.cloneElement(o.Children.only(c),vP(vP({},C),{ref:S})):o.createElement(v,vP({},C,{className:l,ref:S}),c))});IP.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1},IP.classNames={fullWidth:SP,zeroRight:xP};var LP,RP=G(function(){if(LP)return LP;if(typeof __webpack_nonce__<`u`)return __webpack_nonce__},`getNonce`);function zP(){if(!document)return null;var e=document.createElement(`style`);e.type=`text/css`;var t=RP();return t&&e.setAttribute(`nonce`,t),e}G(zP,`makeStyleTag`);function BP(e,t){e.styleSheet?e.styleSheet.cssText=t:e.appendChild(document.createTextNode(t))}G(BP,`injectStyles`);function VP(e){(document.head||document.getElementsByTagName(`head`)[0]).appendChild(e)}G(VP,`insertStyleTag`);var HP=G(function(){var e=0,t=null;return{add:G(function(n){e==0&&(t=zP())&&(BP(t,n),VP(t)),e++},`add`),remove:G(function(){e--,!e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)},`remove`)}},`stylesheetSingleton`),UP=G(function(){var e=HP();return function(t,n){o.useEffect(function(){return e.add(t),function(){e.remove()}},[t&&n])}},`styleHookSingleton`),WP=G(function(){var e=UP();return G(function(t){var n=t.styles,r=t.dynamic;return e(n,r),null},`Sheet`)},`styleSingleton`),GP={left:0,top:0,right:0,gap:0},KP=G(function(e){return parseInt(e||``,10)||0},`parse`),qP=G(function(e){var t=window.getComputedStyle(document.body),n=t[e===`padding`?`paddingLeft`:`marginLeft`],r=t[e===`padding`?`paddingTop`:`marginTop`],i=t[e===`padding`?`paddingRight`:`marginRight`];return[KP(n),KP(r),KP(i)]},`getOffset`),JP=G(function(e){if(e===void 0&&(e=`margin`),typeof window>`u`)return GP;var t=qP(e),n=document.documentElement.clientWidth,r=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,r-n+t[2]-t[0])}},`getGapWidth`),YP=WP(),XP=`data-scroll-locked`,ZP=G(function(e,t,n,r){var i=e.left,a=e.top,o=e.right,s=e.gap;return n===void 0&&(n=`margin`),`
444
+ .${CP} {
445
+ overflow: hidden ${r};
446
+ padding-right: ${s}px ${r};
447
+ }
448
+ body[${XP}] {
449
+ overflow: hidden ${r};
450
+ overscroll-behavior: contain;
451
+ ${[t&&`position: relative ${r};`,n===`margin`&&`
452
+ padding-left: ${i}px;
453
+ padding-top: ${a}px;
454
+ padding-right: ${o}px;
455
+ margin-left:0;
456
+ margin-top:0;
457
+ margin-right: ${s}px ${r};
458
+ `,n===`padding`&&`padding-right: ${s}px ${r};`].filter(Boolean).join(``)}
459
+ }
460
+
461
+ .${xP} {
462
+ right: ${s}px ${r};
463
+ }
464
+
465
+ .${SP} {
466
+ margin-right: ${s}px ${r};
467
+ }
468
+
469
+ .${xP} .${xP} {
470
+ right: 0 ${r};
471
+ }
472
+
473
+ .${SP} .${SP} {
474
+ margin-right: 0 ${r};
475
+ }
476
+
477
+ body[${XP}] {
478
+ ${wP}: ${s}px;
479
+ }
480
+ `},`getStyles`),QP=G(function(){var e=parseInt(document.body.getAttribute(XP)||`0`,10);return isFinite(e)?e:0},`getCurrentUseCounter`),$P=G(function(){o.useEffect(function(){return document.body.setAttribute(XP,(QP()+1).toString()),function(){var e=QP()-1;e<=0?document.body.removeAttribute(XP):document.body.setAttribute(XP,e.toString())}},[])},`useLockAttribute`),eF=G(function(e){var t=e.noRelative,n=e.noImportant,r=e.gapMode,i=r===void 0?`margin`:r;$P();var a=o.useMemo(function(){return JP(i)},[i]);return o.createElement(YP,{styles:ZP(a,!t,i,n?``:`!important`)})},`RemoveScrollBar`),tF=!1;if(typeof window<`u`)try{nF=Object.defineProperty({},`passive`,{get:G(function(){return tF=!0,!0},`get`)}),window.addEventListener(`test`,nF,nF),window.removeEventListener(`test`,nF,nF)}catch{tF=!1}var nF,rF=tF?{passive:!1}:!1,iF=G(function(e){return e.tagName===`TEXTAREA`},`alwaysContainsScroll`),aF=G(function(e,t){if(!(e instanceof Element))return!1;var n=window.getComputedStyle(e);return n[t]!==`hidden`&&!(n.overflowY===n.overflowX&&!iF(e)&&n[t]===`visible`)},`elementCanBeScrolled`),oF=G(function(e){return aF(e,`overflowY`)},`elementCouldBeVScrolled`),sF=G(function(e){return aF(e,`overflowX`)},`elementCouldBeHScrolled`),cF=G(function(e,t){var n=t.ownerDocument,r=t;do{if(typeof ShadowRoot<`u`&&r instanceof ShadowRoot&&(r=r.host),dF(e,r)){var i=fF(e,r);if(i[1]>i[2])return!0}r=r.parentNode}while(r&&r!==n.body);return!1},`locationCouldBeScrolled`),lF=G(function(e){return[e.scrollTop,e.scrollHeight,e.clientHeight]},`getVScrollVariables`),uF=G(function(e){return[e.scrollLeft,e.scrollWidth,e.clientWidth]},`getHScrollVariables`),dF=G(function(e,t){return e===`v`?oF(t):sF(t)},`elementCouldBeScrolled`),fF=G(function(e,t){return e===`v`?lF(t):uF(t)},`getScrollVariables`),pF=G(function(e,t){return e===`h`&&t===`rtl`?-1:1},`getDirectionFactor`),mF=G(function(e,t,n,r,i){var a=pF(e,window.getComputedStyle(t).direction),o=a*r,s=n.target,c=t.contains(s),l=!1,u=o>0,d=0,f=0;do{var p=fF(e,s),m=p[0],h=p[1]-p[2]-a*m;(m||h)&&dF(e,s)&&(d+=h,f+=m),s=s instanceof ShadowRoot?s.host:s.parentNode}while(!c&&s!==document.body||c&&(t.contains(s)||t===s));return(u&&(i&&Math.abs(d)<1||!i&&o>d)||!u&&(i&&Math.abs(f)<1||!i&&-o>f))&&(l=!0),l},`handleScroll`),hF=G(function(e){return`changedTouches`in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},`getTouchXY`),gF=G(function(e){return[e.deltaX,e.deltaY]},`getDeltaXY`),_F=G(function(e){return e&&`current`in e?e.current:e},`extractRef`),vF=G(function(e,t){return e[0]===t[0]&&e[1]===t[1]},`deltaCompare`),yF=G(function(e){return`
481
+ .block-interactivity-${e} {pointer-events: none;}
482
+ .allow-interactivity-${e} {pointer-events: all;}
483
+ `},`generateStyle`),bF=0,xF=[];function SF(e){var t=o.useRef([]),n=o.useRef([0,0]),r=o.useRef(),i=o.useState(bF++)[0],a=o.useState(WP)[0],s=o.useRef(e);o.useEffect(function(){s.current=e},[e]),o.useEffect(function(){if(e.inert){document.body.classList.add(`block-interactivity-${i}`);var t=bP([e.lockRef.current],(e.shards||[]).map(_F),!0).filter(Boolean);return t.forEach(function(e){return e.classList.add(`allow-interactivity-${i}`)}),function(){document.body.classList.remove(`block-interactivity-${i}`),t.forEach(function(e){return e.classList.remove(`allow-interactivity-${i}`)})}}},[e.inert,e.lockRef.current,e.shards]);var c=o.useCallback(function(e,t){if(`touches`in e&&e.touches.length===2||e.type===`wheel`&&e.ctrlKey)return!s.current.allowPinchZoom;var i=hF(e),a=n.current,o=`deltaX`in e?e.deltaX:a[0]-i[0],c=`deltaY`in e?e.deltaY:a[1]-i[1],l,u=e.target,d=Math.abs(o)>Math.abs(c)?`h`:`v`;if(`touches`in e&&d===`h`&&u.type===`range`)return!1;var f=cF(d,u);if(!f)return!0;if(f?l=d:(l=d===`v`?`h`:`v`,f=cF(d,u)),!f)return!1;if(!r.current&&`changedTouches`in e&&(o||c)&&(r.current=l),!l)return!0;var p=r.current||l;return mF(p,t,e,p===`h`?o:c,!0)},[]),l=o.useCallback(function(e){var n=e;if(!(!xF.length||xF[xF.length-1]!==a)){var r=`deltaY`in n?gF(n):hF(n),i=t.current.filter(function(e){return e.name===n.type&&(e.target===n.target||n.target===e.shadowParent)&&vF(e.delta,r)})[0];if(i&&i.should){n.cancelable&&n.preventDefault();return}if(!i){var o=(s.current.shards||[]).map(_F).filter(Boolean).filter(function(e){return e.contains(n.target)});(o.length>0?c(n,o[0]):!s.current.noIsolation)&&n.cancelable&&n.preventDefault()}}},[]),u=o.useCallback(function(e,n,r,i){var a={name:e,delta:n,target:r,should:i,shadowParent:CF(r)};t.current.push(a),setTimeout(function(){t.current=t.current.filter(function(e){return e!==a})},1)},[]),d=o.useCallback(function(e){n.current=hF(e),r.current=void 0},[]),f=o.useCallback(function(t){u(t.type,gF(t),t.target,c(t,e.lockRef.current))},[]),p=o.useCallback(function(t){u(t.type,hF(t),t.target,c(t,e.lockRef.current))},[]);o.useEffect(function(){return xF.push(a),e.setCallbacks({onScrollCapture:f,onWheelCapture:f,onTouchMoveCapture:p}),document.addEventListener(`wheel`,l,rF),document.addEventListener(`touchmove`,l,rF),document.addEventListener(`touchstart`,d,rF),function(){xF=xF.filter(function(e){return e!==a}),document.removeEventListener(`wheel`,l,rF),document.removeEventListener(`touchmove`,l,rF),document.removeEventListener(`touchstart`,d,rF)}},[]);var m=e.removeScrollBar,h=e.inert;return o.createElement(o.Fragment,null,h?o.createElement(a,{styles:yF(i)}):null,m?o.createElement(eF,{gapMode:e.gapMode}):null)}G(SF,`RemoveScrollSideCar`);function CF(e){for(var t=null;e!==null;)e instanceof ShadowRoot&&(t=e.host,e=e.host),e=e.parentNode;return t}G(CF,`getOutermostShadowParent`);var wF=NP(PP,SF),TF=o.forwardRef(function(e,t){return o.createElement(IP,vP({},e,{ref:t,sideCar:wF}))});TF.classNames=IP.classNames;var EF=TF,DF=G(function(e){return typeof document>`u`?null:(Array.isArray(e)?e[0]:e).ownerDocument.body},`getDefaultParent`),OF=new WeakMap,kF=new WeakMap,AF={},jF=0,MF=G(function(e){return e&&(e.host||MF(e.parentNode))},`unwrapHost`),NF=G(function(e,t){return t.map(function(t){if(e.contains(t))return t;var n=MF(t);return n&&e.contains(n)?n:(console.error(`aria-hidden`,t,`in not contained inside`,e,`. Doing nothing`),null)}).filter(function(e){return!!e})},`correctTargets`),PF=G(function(e,t,n,r){var i=NF(t,Array.isArray(e)?e:[e]);AF[n]||(AF[n]=new WeakMap);var a=AF[n],o=[],s=new Set,c=new Set(i),l=G(function(e){!e||s.has(e)||(s.add(e),l(e.parentNode))},`keep`);i.forEach(l);var u=G(function(e){!e||c.has(e)||Array.prototype.forEach.call(e.children,function(e){if(s.has(e))u(e);else{var t=e.getAttribute(r),i=t!==null&&t!==`false`,c=(OF.get(e)||0)+1,l=(a.get(e)||0)+1;OF.set(e,c),a.set(e,l),o.push(e),c===1&&i&&kF.set(e,!0),l===1&&e.setAttribute(n,`true`),i||e.setAttribute(r,`true`)}})},`deep`);return u(t),s.clear(),jF++,function(){o.forEach(function(e){var t=OF.get(e)-1,i=a.get(e)-1;OF.set(e,t),a.set(e,i),t||(kF.has(e)||e.removeAttribute(r),kF.delete(e)),i||e.removeAttribute(n)}),jF--,jF||(OF=new WeakMap,OF=new WeakMap,kF=new WeakMap,AF={})}},`applyAttributeToOthers`),FF=G(function(e,t,n){n===void 0&&(n=`data-aria-hidden`);var r=Array.from(Array.isArray(e)?e:[e]),i=t||DF(e);return i?(r.push.apply(r,Array.from(i.querySelectorAll(`[aria-live]`))),PF(r,i,n,`aria-hidden`)):function(){return null}},`hideOthers`);Uo();var IF=o.forwardRef((e,t)=>{let{children:n,...r}=e,i=o.Children.toArray(n),a=i.find(zF);if(a){let e=a.props.children,n=i.map(t=>t===a?o.Children.count(e)>1?o.Children.only(null):o.isValidElement(e)?e.props.children:null:t);return(0,W.jsx)(LF,{...r,ref:t,children:o.isValidElement(e)?o.cloneElement(e,void 0,n):null})}return(0,W.jsx)(LF,{...r,ref:t,children:n})});IF.displayName=`Slot`;var LF=o.forwardRef((e,t)=>{let{children:n,...r}=e;if(o.isValidElement(n)){let e=VF(n);return o.cloneElement(n,{...BF(r,n.props),ref:t?Vo(t,e):e})}return o.Children.count(n)>1?o.Children.only(null):null});LF.displayName=`SlotClone`;var RF=G(({children:e})=>(0,W.jsx)(W.Fragment,{children:e}),`Slottable`);function zF(e){return o.isValidElement(e)&&e.type===RF}G(zF,`isSlottable`);function BF(e,t){let n={...t};for(let r in t){let i=e[r],a=t[r];/^on[A-Z]/.test(r)?i&&a?n[r]=(...e)=>{a(...e),i(...e)}:i&&(n[r]=i):r===`style`?n[r]={...i,...a}:r===`className`&&(n[r]=[i,a].filter(Boolean).join(` `))}return{...e,...n}}G(BF,`mergeProps`);function VF(e){let t=Object.getOwnPropertyDescriptor(e.props,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}G(VF,`getElementRef`);var HF=`Dialog`,[UF,WF]=TN(HF),[GF,KF]=UF(HF),qF=G(e=>{let{__scopeDialog:t,children:n,open:r,defaultOpen:i,onOpenChange:a,modal:s=!0}=e,c=o.useRef(null),l=o.useRef(null),[u=!1,d]=AN({prop:r,defaultProp:i,onChange:a});return(0,W.jsx)(GF,{scope:t,triggerRef:c,contentRef:l,contentId:kN(),titleId:kN(),descriptionId:kN(),open:u,onOpenChange:d,onOpenToggle:o.useCallback(()=>d(e=>!e),[d]),modal:s,children:n})},`Dialog`);qF.displayName=HF;var JF=`DialogTrigger`,YF=o.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=KF(JF,n),a=Ho(t,i.triggerRef);return(0,W.jsx)($o.button,{type:`button`,"aria-haspopup":`dialog`,"aria-expanded":i.open,"aria-controls":i.contentId,"data-state":mI(i.open),...r,ref:a,onClick:ys(e.onClick,i.onOpenToggle)})});YF.displayName=JF;var XF=`DialogPortal`,[ZF,QF]=UF(XF,{forceMount:void 0}),$F=G(e=>{let{__scopeDialog:t,forceMount:n,children:r,container:i}=e,a=KF(XF,t);return(0,W.jsx)(ZF,{scope:t,forceMount:n,children:o.Children.map(r,e=>(0,W.jsx)(dP,{present:n||a.open,children:(0,W.jsx)(lP,{asChild:!0,container:i,children:e})}))})},`DialogPortal`);$F.displayName=XF;var eI=`DialogOverlay`,tI=o.forwardRef((e,t)=>{let n=QF(eI,e.__scopeDialog),{forceMount:r=n.forceMount,...i}=e,a=KF(eI,e.__scopeDialog);return a.modal?(0,W.jsx)(dP,{present:r||a.open,children:(0,W.jsx)(nI,{...i,ref:t})}):null});tI.displayName=eI;var nI=o.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=KF(eI,n);return(0,W.jsx)(EF,{as:IF,allowPinchZoom:!0,shards:[i.contentRef],children:(0,W.jsx)($o.div,{"data-state":mI(i.open),...r,ref:t,style:{pointerEvents:`auto`,...r.style}})})}),rI=`DialogContent`,iI=o.forwardRef((e,t)=>{let n=QF(rI,e.__scopeDialog),{forceMount:r=n.forceMount,...i}=e,a=KF(rI,e.__scopeDialog);return(0,W.jsx)(dP,{present:r||a.open,children:a.modal?(0,W.jsx)(aI,{...i,ref:t}):(0,W.jsx)(oI,{...i,ref:t})})});iI.displayName=rI;var aI=o.forwardRef((e,t)=>{let n=KF(rI,e.__scopeDialog),r=o.useRef(null),i=Ho(t,n.contentRef,r);return o.useEffect(()=>{let e=r.current;if(e)return FF(e)},[]),(0,W.jsx)(sI,{...e,ref:i,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:ys(e.onCloseAutoFocus,e=>{e.preventDefault(),n.triggerRef.current?.focus()}),onPointerDownOutside:ys(e.onPointerDownOutside,e=>{let t=e.detail.originalEvent,n=t.button===0&&t.ctrlKey===!0;(t.button===2||n)&&e.preventDefault()}),onFocusOutside:ys(e.onFocusOutside,e=>e.preventDefault())})}),oI=o.forwardRef((e,t)=>{let n=KF(rI,e.__scopeDialog),r=o.useRef(!1),i=o.useRef(!1);return(0,W.jsx)(sI,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:G(t=>{e.onCloseAutoFocus?.(t),t.defaultPrevented||(r.current||n.triggerRef.current?.focus(),t.preventDefault()),r.current=!1,i.current=!1},`onCloseAutoFocus`),onInteractOutside:G(t=>{e.onInteractOutside?.(t),t.defaultPrevented||(r.current=!0,t.detail.originalEvent.type===`pointerdown`&&(i.current=!0));let a=t.target;n.triggerRef.current?.contains(a)&&t.preventDefault(),t.detail.originalEvent.type===`focusin`&&i.current&&t.preventDefault()},`onInteractOutside`)})}),sI=o.forwardRef((e,t)=>{let{__scopeDialog:n,trapFocus:r,onOpenAutoFocus:i,onCloseAutoFocus:a,...s}=e,c=KF(rI,n),l=o.useRef(null),u=Ho(t,l);return gP(),(0,W.jsxs)(W.Fragment,{children:[(0,W.jsx)(XN,{asChild:!0,loop:!0,trapped:r,onMountAutoFocus:i,onUnmountAutoFocus:a,children:(0,W.jsx)(zN,{role:`dialog`,id:c.contentId,"aria-describedby":c.descriptionId,"aria-labelledby":c.titleId,"data-state":mI(c.open),...s,ref:u,onDismiss:G(()=>c.onOpenChange(!1),`onDismiss`)})}),(0,W.jsxs)(W.Fragment,{children:[(0,W.jsx)(vI,{titleId:c.titleId}),(0,W.jsx)(bI,{contentRef:l,descriptionId:c.descriptionId})]})]})}),cI=`DialogTitle`,lI=o.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=KF(cI,n);return(0,W.jsx)($o.h2,{id:i.titleId,...r,ref:t})});lI.displayName=cI;var uI=`DialogDescription`,dI=o.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=KF(uI,n);return(0,W.jsx)($o.p,{id:i.descriptionId,...r,ref:t})});dI.displayName=uI;var fI=`DialogClose`,pI=o.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=KF(fI,n);return(0,W.jsx)($o.button,{type:`button`,...r,ref:t,onClick:ys(e.onClick,()=>i.onOpenChange(!1))})});pI.displayName=fI;function mI(e){return e?`open`:`closed`}G(mI,`getState`);var hI=`DialogTitleWarning`,[gI,_I]=wN(hI,{contentName:rI,titleName:cI,docsSlug:`dialog`}),vI=G(({titleId:e})=>{let t=_I(hI),n=`\`${t.contentName}\` requires a \`${t.titleName}\` for the component to be accessible for screen reader users.
484
+
485
+ If you want to hide the \`${t.titleName}\`, you can wrap it with our VisuallyHidden component.
486
+
487
+ For more information, see https://radix-ui.com/primitives/docs/components/${t.docsSlug}`;return o.useEffect(()=>{e&&(document.getElementById(e)||console.error(n))},[n,e]),null},`TitleWarning`),yI=`DialogDescriptionWarning`,bI=G(({contentRef:e,descriptionId:t})=>{let n=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${_I(yI).contentName}}.`;return o.useEffect(()=>{let r=e.current?.getAttribute(`aria-describedby`);t&&r&&(document.getElementById(t)||console.warn(n))},[n,e,t]),null},`DescriptionWarning`),xI=qF,SI=YF,CI=$F,wI=tI,TI=iI,EI=lI,DI=dI,OI=pI,kI={};Gr(kI,{Actions:()=>eL,CloseButton:()=>qI,Col:()=>XI,Container:()=>KI,Content:()=>JI,Description:()=>$I,Error:()=>nL,ErrorWrapper:()=>tL,Header:()=>ZI,Overlay:()=>GI,Row:()=>YI,Title:()=>QI});var{deprecate:AI}=__STORYBOOK_MODULE_CLIENT_LOGGER__;function jI(e,t){if(typeof e==`function`)return e(t);e!=null&&(e.current=t)}G(jI,`setRef`);function MI(...e){return t=>{let n=!1,r=e.map(e=>{let r=jI(e,t);return!n&&typeof r==`function`&&(n=!0),r});if(n)return()=>{for(let t=0;t<r.length;t++){let n=r[t];typeof n==`function`?n():jI(e[t],null)}}}}G(MI,`composeRefs`);var NI=o.forwardRef((e,t)=>{let{children:n,...r}=e,i=o.Children.toArray(n),a=i.find(II);if(a){let e=a.props.children,n=i.map(t=>t===a?o.Children.count(e)>1?o.Children.only(null):o.isValidElement(e)?e.props.children:null:t);return(0,W.jsx)(PI,{...r,ref:t,children:o.isValidElement(e)?o.cloneElement(e,void 0,n):null})}return(0,W.jsx)(PI,{...r,ref:t,children:n})});NI.displayName=`Slot`;var PI=o.forwardRef((e,t)=>{let{children:n,...r}=e;if(o.isValidElement(n)){let e=RI(n),i=LI(r,n.props);return n.type!==o.Fragment&&(i.ref=t?MI(t,e):e),o.cloneElement(n,i)}return o.Children.count(n)>1?o.Children.only(null):null});PI.displayName=`SlotClone`;var FI=G(({children:e})=>(0,W.jsx)(W.Fragment,{children:e}),`Slottable`);function II(e){return o.isValidElement(e)&&e.type===FI}G(II,`isSlottable`);function LI(e,t){let n={...t};for(let r in t){let i=e[r],a=t[r];/^on[A-Z]/.test(r)?i&&a?n[r]=(...e)=>{a(...e),i(...e)}:i&&(n[r]=i):r===`style`?n[r]={...i,...a}:r===`className`&&(n[r]=[i,a].filter(Boolean).join(` `))}return{...e,...n}}G(LI,`mergeProps`);function RI(e){let t=Object.getOwnPropertyDescriptor(e.props,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}G(RI,`getElementRef`);var zI=(0,o.forwardRef)(({asChild:e=!1,animation:t=`none`,size:n=`small`,variant:r=`outline`,padding:i=`medium`,disabled:a=!1,active:s=!1,onClick:c,...l},u)=>{let d=`button`;l.isLink&&(d=`a`),e&&(d=NI);let f=r,p=n,[m,h]=(0,o.useState)(!1),g=G(e=>{c&&c(e),t!==`none`&&h(!0)},`handleClick`);if((0,o.useEffect)(()=>{let e=setTimeout(()=>{m&&h(!1)},1e3);return()=>clearTimeout(e)},[m]),l.primary&&(f=`solid`,p=`medium`),(l.secondary||l.tertiary||l.gray||l.outline||l.inForm)&&(f=`outline`,p=`medium`),l.small||l.isLink||l.primary||l.secondary||l.tertiary||l.gray||l.outline||l.inForm||l.containsIcon){let e=o.Children.toArray(l.children).filter(e=>typeof e==`string`&&e!==``);AI(`Use of deprecated props in the button ${e.length>0?`"${e.join(` `)}"`:`component`} detected, see the migration notes at https\
488
+ ://github.com/storybookjs/storybook/blob/next/MIGRATION.md#new-ui-and-props-for-button-and-iconbutton-components`)}return o.createElement(BI,{as:d,ref:u,variant:f,size:p,padding:i,disabled:a,active:s,animating:m,animation:t,onClick:g,...l})});zI.displayName=`Button`;var BI=H(`button`,{shouldForwardProp:G(e=>Bt(e),`shouldForwardProp`)})(({theme:e,variant:t,size:n,disabled:r,active:i,animating:a,animation:o=`none`,padding:s})=>({border:0,cursor:r?`not-allowed`:`pointer`,display:`inline-flex`,gap:`6px`,alignItems:`center`,justifyContent:`center`,overflow:`hidden`,padding:s===`none`?0:s===`small`&&n===`small`?`0 7px`:s===`small`&&n===`medium`?`0 9px`:n===`small`?`0 10px`:n===`medium`?`0 12px`:0,height:n===`small`?`28px`:`32px`,position:`relative`,textAlign:`center`,textDecoration:`none`,transitionProperty:`background, box-shadow`,transitionDuration:`150ms`,transitionTimingFunction:`ease-out`,verticalAlign:`top`,whiteSpace:`nowrap`,userSelect:`none`,opacity:r?.5:1,margin:0,fontSize:`${e.typography.size.s1}px`,fontWeight:e.typography.weight.bold,lineHeight:`1`,background:t===`solid`?e.color.secondary:t===`outline`?e.button.background:t===`ghost`&&i?e.background.hoverable:`transparent`,...t===`ghost`?{".sb-bar &":{background:i?aO(.9,e.barTextColor):`transparent`,color:i?e.barSelectedColor:e.barTextColor,"&:hover":{color:e.barHoverColor,background:aO(.86,e.barHoverColor)},"&:active":{color:e.barSelectedColor,background:aO(.9,e.barSelectedColor)},"&:focus":{boxShadow:`${GD(e.barHoverColor,1)} 0 0 0 1px inset`,outline:`none`}}}:{},color:t===`solid`?e.color.lightest:t===`outline`?e.input.color:t===`ghost`&&i?e.color.secondary:t===`ghost`?e.color.mediumdark:e.input.color,boxShadow:t===`outline`?`${e.button.border} 0 0 0 1px inset`:`none`,borderRadius:e.input.borderRadius,flexShrink:0,"&:hover":{color:t===`ghost`?e.color.secondary:void 0,background:(()=>{let n=e.color.secondary;return t===`solid`&&(n=e.color.secondary),t===`outline`&&(n=e.button.background),t===`ghost`?aO(.86,e.color.secondary):e.base===`light`?tO(.02,n):rO(.03,n)})()},"&:active":{color:t===`ghost`?e.color.secondary:void 0,background:(()=>{let n=e.color.secondary;return t===`solid`&&(n=e.color.secondary),t===`outline`&&(n=e.button.background),t===`ghost`?e.background.hoverable:e.base===`light`?tO(.02,n):rO(.03,n)})()},"&:focus":{boxShadow:`${GD(e.color.secondary,1)} 0 0 0 1px inset`,outline:`none`},"> svg":{animation:a&&o!==`none`?`${e.animation[o]} 1000ms ease-out`:``}})),VI=(0,o.forwardRef)(({padding:e=`small`,variant:t=`ghost`,...n},r)=>o.createElement(zI,{padding:e,variant:t,ref:r,...n}));VI.displayName=`IconButton`;var HI=Lt({from:{opacity:0},to:{opacity:1}}),UI=Lt({from:{maxHeight:0},to:{}}),WI=Lt({from:{opacity:0,transform:`translate(-50%, -50%) scale(0.9)`},to:{opacity:1,transform:`translate(-50%, -50%) scale(1)`}}),GI=H.div({backdropFilter:`blur(24px)`,position:`fixed`,inset:0,width:`100%`,height:`100%`,zIndex:10,animation:`${HI} 200ms`}),KI=H.div(({theme:e,width:t,height:n})=>({backgroundColor:e.background.bar,borderRadius:6,boxShadow:`0px 4px 67px 0px #00000040`,position:`fixed`,top:`50%`,left:`50%`,transform:`translate(-50%, -50%)`,width:t??740,height:n??`auto`,maxWidth:`calc(100% - 40px)`,maxHeight:`85vh`,overflow:`hidden`,zIndex:11,animation:`${WI} 200ms`,"&:focus-visible":{outline:`none`}})),qI=G(e=>o.createElement(OI,{asChild:!0},o.createElement(VI,{...e},o.createElement($A,null))),`CloseButton`),JI=H.div({display:`flex`,flexDirection:`column`,margin:16,gap:16}),YI=H.div({display:`flex`,justifyContent:`space-between`,gap:16}),XI=H.div({display:`flex`,flexDirection:`column`,gap:4}),ZI=G(e=>o.createElement(YI,null,o.createElement(XI,{...e}),o.createElement(qI,null)),`Header`),QI=H(EI)(({theme:e})=>({margin:0,fontSize:e.typography.size.s3,fontWeight:e.typography.weight.bold})),$I=H(DI)(({theme:e})=>({position:`relative`,zIndex:1,margin:0,fontSize:e.typography.size.s2})),eL=H.div({display:`flex`,flexDirection:`row-reverse`,gap:8}),tL=H.div(({theme:e})=>({maxHeight:100,overflow:`auto`,animation:`${UI} 300ms, ${HI} 300ms`,backgroundColor:e.background.critical,color:e.color.lightest,fontSize:e.typography.size.s2,"& > div":{position:`relative`,padding:`8px 16px`}})),nL=G(({children:e,...t})=>o.createElement(tL,{...t},o.createElement(`div`,null,e)),`Error`);function rL({children:e,width:t,height:n,onEscapeKeyDown:r,onInteractOutside:i=G(e=>e.preventDefault(),`onInteractOutside`),className:a,container:s,...c}){return o.createElement(xI,{...c},o.createElement(CI,{container:s},o.createElement(wI,{asChild:!0},o.createElement(GI,null)),o.createElement(TI,{asChild:!0,onInteractOutside:i,onEscapeKeyDown:r},o.createElement(KI,{className:a,width:t,height:n},e))))}G(rL,`BaseModal`),Object.assign(rL,kI,{Dialog:CN}),H.div(({theme:e,col:t,row:n=1})=>t?{display:`inline-block`,verticalAlign:`inherit`,"& > *":{marginLeft:t*e.layoutMargin,verticalAlign:`inherit`},[`& > *:first-child${Mr}`]:{marginLeft:0}}:{"& > *":{marginTop:n*e.layoutMargin},[`& > *:first-child${Mr}`]:{marginTop:0}},({theme:e,outer:t,col:n,row:r})=>{switch(!0){case!!(t&&n):return{marginLeft:t*e.layoutMargin,marginRight:t*e.layoutMargin};case!!(t&&r):return{marginTop:t*e.layoutMargin,marginBottom:t*e.layoutMargin};default:return{}}}),H.div(({theme:e})=>({fontWeight:e.typography.weight.bold})),H.div(),H.div(({theme:e})=>({padding:30,textAlign:`center`,color:e.color.defaultText,fontSize:e.typography.size.s2-1})),hc();function iL(e,t){var n=(0,o.useRef)(null),r=(0,o.useRef)(null);r.current=t;var i=(0,o.useRef)(null);(0,o.useEffect)(function(){a()});var a=(0,o.useCallback)(function(){var t=i.current,a=r.current,o=t||(a?a instanceof Element?a:a.current:null);n.current&&n.current.element===o&&n.current.subscriber===e||(n.current&&n.current.cleanup&&n.current.cleanup(),n.current={element:o,subscriber:e,cleanup:o?e(o):void 0})},[e]);return(0,o.useEffect)(function(){return function(){n.current&&n.current.cleanup&&(n.current.cleanup(),n.current=null)}},[]),(0,o.useCallback)(function(e){i.current=e,a()},[a])}G(iL,`useResolvedElement`);function aL(e,t,n){return e[t]?e[t][0]?e[t][0][n]:e[t][n]:t===`contentBoxSize`?e.contentRect[n===`inlineSize`?`width`:`height`]:void 0}G(aL,`extractSize`);function oL(e){e===void 0&&(e={});var t=e.onResize,n=(0,o.useRef)(void 0);n.current=t;var r=e.round||Math.round,i=(0,o.useRef)(),a=(0,o.useState)({width:void 0,height:void 0}),s=a[0],c=a[1],l=(0,o.useRef)(!1);(0,o.useEffect)(function(){return l.current=!1,function(){l.current=!0}},[]);var u=(0,o.useRef)({width:void 0,height:void 0}),d=iL((0,o.useCallback)(function(t){return(!i.current||i.current.box!==e.box||i.current.round!==r)&&(i.current={box:e.box,round:r,instance:new ResizeObserver(function(t){var i=t[0],a=e.box===`border-box`?`borderBoxSize`:e.box===`device-pixel-content-box`?`devicePixelContentBoxSize`:`contentBoxSize`,o=aL(i,a,`inlineSize`),s=aL(i,a,`blockSize`),d=o?r(o):void 0,f=s?r(s):void 0;if(u.current.width!==d||u.current.height!==f){var p={width:d,height:f};u.current.width=d,u.current.height=f,n.current?n.current(p):l.current||c(p)}})}),i.current.instance.observe(t,{box:e.box}),function(){i.current&&i.current.instance.unobserve(t)}},[e.box,r]),e.ref);return(0,o.useMemo)(function(){return{ref:d,width:s.width,height:s.height}},[d,s.width,s.height])}G(oL,`useResizeObserver`);var sL=H.div(({scale:e=1,elementHeight:t})=>({height:t||`auto`,transformOrigin:`top left`,transform:`scale(${1/e})`}));function cL({scale:e,children:t}){let n=(0,o.useRef)(null),[r,i]=(0,o.useState)(0),a=(0,o.useCallback)(({height:t})=>{t&&i(t/e)},[e]);return(0,o.useEffect)(()=>{n.current&&i(n.current.getBoundingClientRect().height)},[e]),oL({ref:n,onResize:a}),o.createElement(sL,{scale:e,elementHeight:r},o.createElement(`div`,{ref:n,className:`innerZoomElementWrapper`},t))}G(cL,`ZoomElement`);var lL=class extends o.Component{constructor(){super(...arguments),this.iframe=null}componentDidMount(){let{iFrameRef:e}=this.props;this.iframe=e.current}shouldComponentUpdate(e){let{scale:t,active:n}=this.props;return t!==e.scale&&this.setIframeInnerZoom(e.scale),n!==e.active&&this.iframe.setAttribute(`data-is-storybook`,e.active?`true`:`false`),e.children.props.src!==this.props.children.props.src}setIframeInnerZoom(e){try{Object.assign(this.iframe.contentDocument.body.style,{width:`${e*100}%`,height:`${e*100}%`,transform:`scale(${1/e})`,transformOrigin:`top left`})}catch{this.setIframeZoom(e)}}setIframeZoom(e){Object.assign(this.iframe.style,{width:`${e*100}%`,height:`${e*100}%`,transform:`scale(${1/e})`,transformOrigin:`top left`})}render(){let{children:e}=this.props;return o.createElement(o.Fragment,null,e)}};G(lL,`ZoomIFrame`);var uL={Element:cL,IFrame:lL};ri();var{document:dL}=ni,fL=H.strong(({theme:e})=>({color:e.color.orange})),pL=H.strong(({theme:e})=>({color:e.color.ancillary,textDecoration:`underline`})),mL=H.em(({theme:e})=>({color:e.textMutedColor})),hL=/(Error): (.*)\n/,gL=/at (?:(.*) )?\(?(.+)\)?/,_L=/([^@]+)?(?:\/<)?@(.+)?/,vL=/([^@]+)?@(.+)?/,yL=G(({error:e})=>{if(!e)return o.createElement(o.Fragment,null,`This error has no stack or message`);if(!e.stack)return o.createElement(o.Fragment,null,e.message||`This error has no stack or message`);let t=e.stack.toString();t&&e.message&&!t.includes(e.message)&&(t=`Error: ${e.message}
489
+
490
+ ${t}`);let n=t.match(hL);if(!n)return o.createElement(o.Fragment,null,t);let[,r,i]=n,[,...a]=t.split(/\n/).slice(1).map(e=>{let t=e.match(gL)||e.match(_L)||e.match(vL);return t?{name:(t[1]||``).replace(`/<`,``),location:t[2].replace(dL.location.origin,``)}:null}).filter(Boolean);return o.createElement(o.Fragment,null,o.createElement(`span`,null,r),`: `,o.createElement(fL,null,i),o.createElement(`br`,null),a.map((e,t)=>e?.name?o.createElement(o.Fragment,{key:t},` `,`at `,o.createElement(pL,null,e.name),` (`,o.createElement(mL,null,e.location),`)`,o.createElement(`br`,null)):o.createElement(o.Fragment,{key:t},` `,`at `,o.createElement(mL,null,e?.location),o.createElement(`br`,null))))},`ErrorFormatter`),bL=H.label(({theme:e})=>({display:`flex`,borderBottom:`1px solid ${e.appBorderColor}`,margin:`0 15px`,padding:`8px 0`,"&:last-child":{marginBottom:`3rem`}})),xL=H.span(({theme:e})=>({minWidth:100,fontWeight:e.typography.weight.bold,marginRight:15,display:`flex`,justifyContent:`flex-start`,alignItems:`center`,lineHeight:`16px`})),SL=G(({label:e,children:t,...n})=>o.createElement(bL,{...n},e?o.createElement(xL,null,o.createElement(`span`,null,e)):null,t),`Field`);Yr(),oi();var CL=o.useLayoutEffect,wL=G(function(e){var t=o.useRef(e);return CL(function(){t.current=e}),t},`useLatest`),TL=G(function(e,t){if(typeof e==`function`){e(t);return}e.current=t},`updateRef`),EL=G(function(e,t){var n=(0,o.useRef)();return(0,o.useCallback)(function(r){e.current=r,n.current&&TL(n.current,null),n.current=t,t&&TL(t,r)},[t])},`useComposedRef`),DL={"min-height":`0`,"max-height":`none`,height:`0`,visibility:`hidden`,overflow:`hidden`,position:`absolute`,"z-index":`-1000`,top:`0`,right:`0`},OL=G(function(e){Object.keys(DL).forEach(function(t){e.style.setProperty(t,DL[t],`important`)})},`forceHiddenStyles`),kL=null,AL=G(function(e,t){var n=e.scrollHeight;return t.sizingStyle.boxSizing===`border-box`?n+t.borderSize:n-t.paddingSize},`getHeight`);function jL(e,t,n,r){n===void 0&&(n=1),r===void 0&&(r=1/0),kL||(kL=document.createElement(`textarea`),kL.setAttribute(`tabindex`,`-1`),kL.setAttribute(`aria-hidden`,`true`),OL(kL)),kL.parentNode===null&&document.body.appendChild(kL);var i=e.paddingSize,a=e.borderSize,o=e.sizingStyle,s=o.boxSizing;Object.keys(o).forEach(function(e){var t=e;kL.style[t]=o[t]}),OL(kL),kL.value=t;var c=AL(kL,e);kL.value=t,c=AL(kL,e),kL.value=`x`;var l=kL.scrollHeight-i,u=l*n;s===`border-box`&&(u=u+i+a),c=Math.max(u,c);var d=l*r;return s===`border-box`&&(d=d+i+a),c=Math.min(d,c),[c,l]}G(jL,`calculateNodeHeight`);var ML=G(function(){},`noop`),NL=G(function(e,t){return e.reduce(function(e,n){return e[n]=t[n],e},{})},`pick`),PL=[`borderBottomWidth`,`borderLeftWidth`,`borderRightWidth`,`borderTopWidth`,`boxSizing`,`fontFamily`,`fontSize`,`fontStyle`,`fontWeight`,`letterSpacing`,`lineHeight`,`paddingBottom`,`paddingLeft`,`paddingRight`,`paddingTop`,`tabSize`,`textIndent`,`textRendering`,`textTransform`,`width`,`wordBreak`],FL=!!document.documentElement.currentStyle,IL=G(function(e){var t=window.getComputedStyle(e);if(t===null)return null;var n=NL(PL,t),r=n.boxSizing;return r===``?null:(FL&&r===`border-box`&&(n.width=parseFloat(n.width)+parseFloat(n.borderRightWidth)+parseFloat(n.borderLeftWidth)+parseFloat(n.paddingRight)+parseFloat(n.paddingLeft)+`px`),{sizingStyle:n,paddingSize:parseFloat(n.paddingBottom)+parseFloat(n.paddingTop),borderSize:parseFloat(n.borderBottomWidth)+parseFloat(n.borderTopWidth)})},`getSizingData`);function LL(e,t,n){var r=wL(n);o.useLayoutEffect(function(){var n=G(function(e){return r.current(e)},`handler`);if(e)return e.addEventListener(t,n),function(){return e.removeEventListener(t,n)}},[])}G(LL,`useListener`);var RL=G(function(e){LL(window,`resize`,e)},`useWindowResizeListener`),zL=G(function(e){LL(document.fonts,`loadingdone`,e)},`useFontsLoadedListener`),BL=[`cacheMeasurements`,`maxRows`,`minRows`,`onChange`,`onHeightChange`],VL=G(function(e,t){var n=e.cacheMeasurements,r=e.maxRows,i=e.minRows,a=e.onChange,s=a===void 0?ML:a,c=e.onHeightChange,l=c===void 0?ML:c,u=ai(e,BL),d=u.value!==void 0,f=o.useRef(null),p=EL(f,t),m=o.useRef(0),h=o.useRef(),g=G(function(){var e=f.current,t=n&&h.current?h.current:IL(e);if(t){h.current=t;var a=jL(t,e.value||e.placeholder||`x`,i,r),o=a[0],s=a[1];m.current!==o&&(m.current=o,e.style.setProperty(`height`,o+`px`,`important`),l(o,{rowHeight:s}))}},`resizeTextarea`),_=G(function(e){d||g(),s(e)},`handleChange`);return o.useLayoutEffect(g),RL(g),zL(g),o.createElement(`textarea`,Jr({},u,{onChange:_,ref:p}))},`TextareaAutosize`),HL=o.forwardRef(VL),UL={appearance:`none`,border:`0 none`,boxSizing:`inherit`,display:` block`,margin:` 0`,background:`transparent`,padding:0,fontSize:`inherit`,position:`relative`},WL=G(({theme:e})=>({...UL,transition:`box-shadow 200ms ease-out, opacity 200ms ease-out`,color:e.input.color||`inherit`,background:e.input.background,boxShadow:`${e.input.border} 0 0 0 1px inset`,borderRadius:e.input.borderRadius,fontSize:e.typography.size.s2-1,lineHeight:`20px`,padding:`6px 10px`,boxSizing:`border-box`,height:32,'&[type="file"]':{height:`auto`},"&:focus":{boxShadow:`${e.color.secondary} 0 0 0 1px inset`,outline:`none`},"&[disabled]":{cursor:`not-allowed`,opacity:.5},"&:-webkit-autofill":{WebkitBoxShadow:`0 0 0 3em ${e.color.lightest} inset`},"&::placeholder":{color:e.textMutedColor,opacity:1}}),`styles`),GL=G(({size:e})=>{switch(e){case`100%`:return{width:`100%`};case`flex`:return{flex:1};case`auto`:default:return{display:`inline`}}},`sizes`),KL=G(({align:e})=>{switch(e){case`end`:return{textAlign:`right`};case`center`:return{textAlign:`center`};case`start`:default:return{textAlign:`left`}}},`alignment`),qL=G(({valid:e,theme:t})=>{switch(e){case`valid`:return{boxShadow:`${t.color.positive} 0 0 0 1px inset !important`};case`error`:return{boxShadow:`${t.color.negative} 0 0 0 1px inset !important`};case`warn`:return{boxShadow:`${t.color.warning} 0 0 0 1px inset`};case void 0:case null:default:return{}}},`validation`),JL=Object.assign(H((0,o.forwardRef)(G(function({size:e,valid:t,align:n,...r},i){return o.createElement(`input`,{...r,ref:i})},`Input`)))(WL,GL,KL,qL,{minHeight:32}),{displayName:`Input`}),YL=Object.assign(H((0,o.forwardRef)(G(function({size:e,valid:t,align:n,...r},i){return o.createElement(`select`,{...r,ref:i})},`Select`)))(WL,GL,qL,{height:32,userSelect:`none`,paddingRight:20,appearance:`menulist`}),{displayName:`Select`}),XL=Object.assign(H((0,o.forwardRef)(G(function({size:e,valid:t,align:n,...r},i){return o.createElement(HL,{...r,ref:i})},`Textarea`)))(WL,GL,KL,qL,({height:e=400})=>({overflow:`visible`,maxHeight:e})),{displayName:`Textarea`}),ZL=Object.assign(H.form({boxSizing:`border-box`,width:`100%`}),{Field:SL,Input:JL,Select:YL,Textarea:XL,Button:zI}),QL=(0,o.lazy)(()=>Promise.resolve().then(()=>(fD(),oD)).then(e=>({default:e.WithTooltip}))),$L=G(e=>o.createElement(o.Suspense,{fallback:o.createElement(`div`,null)},o.createElement(QL,{...e})),`WithTooltip`),eR=(0,o.lazy)(()=>Promise.resolve().then(()=>(fD(),oD)).then(e=>({default:e.WithTooltipPure}))),tR=G(e=>o.createElement(o.Suspense,{fallback:o.createElement(`div`,null)},o.createElement(eR,{...e})),`WithTooltipPure`);H.div(({theme:e})=>({fontWeight:e.typography.weight.bold})),H.span(),H.div(({theme:e})=>({marginTop:8,textAlign:`center`,"> *":{margin:`0 8px`,fontWeight:e.typography.weight.bold}})),H.div(({theme:e})=>({color:e.color.defaultText,lineHeight:`18px`})),H.div({padding:15,width:280,boxSizing:`border-box`});var nR=H.div(({theme:e})=>({padding:`2px 6px`,lineHeight:`16px`,fontSize:10,fontWeight:e.typography.weight.bold,color:e.color.lightest,boxShadow:`0 0 5px 0 rgba(0, 0, 0, 0.3)`,borderRadius:4,whiteSpace:`nowrap`,pointerEvents:`none`,zIndex:-1,background:e.base===`light`?`rgba(60, 60, 60, 0.9)`:`rgba(0, 0, 0, 0.95)`,margin:6})),rR=G(({note:e,...t})=>o.createElement(nR,{...t},e),`TooltipNote`),iR=qr(ii(),1),aR=H(({active:e,loading:t,disabled:n,...r})=>o.createElement(`span`,{...r}))(({theme:e})=>({color:e.color.defaultText,fontWeight:e.typography.weight.regular}),({active:e,theme:t})=>e?{color:t.color.secondary,fontWeight:t.typography.weight.bold}:{},({loading:e,theme:t})=>e?{display:`inline-block`,flex:`none`,...t.animation.inlineGlow}:{},({disabled:e,theme:t})=>e?{color:t.textMutedColor}:{}),oR=H.span({display:`flex`,"& svg":{height:12,width:12,margin:`3px 0`,verticalAlign:`top`},"& path":{fill:`inherit`}}),sR=H.span({flex:1,textAlign:`left`,display:`flex`,flexDirection:`column`},({isIndented:e})=>e?{marginLeft:24}:{}),cR=H.span(({theme:e})=>({fontSize:`11px`,lineHeight:`14px`}),({active:e,theme:t})=>e?{color:t.color.secondary}:{},({theme:e,disabled:t})=>t?{color:e.textMutedColor}:{}),lR=H.span(({active:e,theme:t})=>e?{color:t.color.secondary}:{},()=>({display:`flex`,maxWidth:14})),uR=H.div(({theme:e})=>({width:`100%`,border:`none`,borderRadius:e.appBorderRadius,background:`none`,fontSize:e.typography.size.s1,transition:`all 150ms ease-out`,color:e.color.dark,textDecoration:`none`,justifyContent:`space-between`,lineHeight:`18px`,padding:`7px 10px`,display:`flex`,alignItems:`center`,"& > * + *":{paddingLeft:10}}),({theme:e,href:t,onClick:n})=>(t||n)&&{cursor:`pointer`,"&:hover":{background:e.background.hoverable},"&:hover svg":{opacity:1}},({theme:e,as:t})=>t===`label`&&{"&:has(input:not(:disabled))":{cursor:`pointer`,"&:hover":{background:e.background.hoverable}}},({disabled:e})=>e&&{cursor:`not-allowed`}),dR=(0,iR.default)(100)((e,t,n)=>({...e&&{as:`button`,onClick:e},...t&&{as:`a`,href:t,...n&&{as:n,to:t}}})),fR=G(({loading:e=!1,title:t=o.createElement(`span`,null,`Loading state`),center:n=null,right:r=null,active:i=!1,disabled:a=!1,isIndented:s,href:c=void 0,onClick:l=void 0,icon:u,LinkWrapper:d=void 0,...f})=>{let p={active:i,disabled:a},m=dR(l,c,d);return o.createElement(uR,{...f,...p,...m},o.createElement(o.Fragment,null,u&&o.createElement(lR,{...p},u),t||n?o.createElement(sR,{isIndented:!!(!u&&s)},t&&o.createElement(aR,{...p,loading:e},t),n&&o.createElement(cR,{...p},n)):null,r&&o.createElement(oR,{...p},r)))},`ListItem`),pR=H.div({minWidth:180,overflow:`hidden`,overflowY:`auto`,maxHeight:504},({theme:e})=>({borderRadius:e.appBorderRadius+2}),({theme:e})=>e.base===`dark`?{background:e.background.content}:{}),mR=H.div(({theme:e})=>({padding:4,"& + &":{borderTop:`1px solid ${e.appBorderColor}`}})),hR=G(({id:e,onClick:t,...n})=>{let{active:r,disabled:i,title:a,href:s}=n,c=(0,o.useCallback)(n=>t?.(n,{id:e,active:r,disabled:i,title:a,href:s}),[t,e,r,i,a,s]);return o.createElement(fR,{id:`list-item-${e}`,...n,...t&&{onClick:c}})},`Item`),gR=G(({links:e,LinkWrapper:t,...n})=>{let r=Array.isArray(e[0])?e:[e],i=r.some(e=>e.some(e=>`icon`in e&&e.icon));return o.createElement(pR,{...n},r.filter(e=>e.length).map((e,n)=>o.createElement(mR,{key:e.map(e=>e.id).join(`~${n}~`)},e.map(e=>`content`in e?o.createElement(o.Fragment,{key:e.id},e.content):o.createElement(hR,{key:e.id,isIndented:i,LinkWrapper:t,...e})))))},`TooltipLinkList`);hc();var _R=H.div({display:`flex`,whiteSpace:`nowrap`,flexBasis:`auto`,marginLeft:3,marginRight:3},({scrollable:e})=>e?{flexShrink:0}:{},({left:e})=>e?{"& > *":{marginLeft:4}}:{},({right:e})=>e?{marginLeft:30,"& > *":{marginRight:4}}:{});_R.displayName=`Side`;var vR=H(G(({children:e,className:t,scrollable:n})=>n?o.createElement(mc,{vertical:!1,className:t},e):o.createElement(`div`,{className:t},e),`UnstyledBar`))(({theme:e,scrollable:t=!0})=>({color:e.barTextColor,width:`100%`,height:40,flexShrink:0,overflow:t?`auto`:`hidden`,overflowY:`hidden`}),({theme:e,border:t=!1})=>t?{boxShadow:`${e.appBorderColor} 0 -1px 0 0 inset`,background:e.barBg}:{});vR.displayName=`Bar`;var yR=H.div(({bgColor:e})=>({display:`flex`,justifyContent:`space-between`,position:`relative`,flexWrap:`nowrap`,flexShrink:0,height:40,backgroundColor:e||``})),bR=G(({children:e,backgroundColor:t,className:n,...r})=>{let[i,a]=o.Children.toArray(e);return o.createElement(vR,{className:`sb-bar ${n}`,...r},o.createElement(yR,{bgColor:t},o.createElement(_R,{scrollable:r.scrollable,left:!0},i),a?o.createElement(_R,{right:!0},a):null))},`FlexBar`);bR.displayName=`FlexBar`;var xR=G(e=>typeof e.props.href==`string`,`isLink`),SR=G(e=>typeof e.props.href!=`string`,`isButton`);function CR({children:e,...t},n){let r={props:t,ref:n};if(xR(r))return o.createElement(`a`,{ref:r.ref,...r.props},e);if(SR(r))return o.createElement(`button`,{ref:r.ref,type:`button`,...r.props},e);throw Error(`invalid props`)}G(CR,`ForwardRefFunction`);var wR=(0,o.forwardRef)(CR);wR.displayName=`ButtonOrLink`;var TR=H(wR,{shouldForwardProp:Bt})({whiteSpace:`normal`,display:`inline-flex`,overflow:`hidden`,verticalAlign:`top`,justifyContent:`center`,alignItems:`center`,textAlign:`center`,textDecoration:`none`,"&:empty":{display:`none`},"&[hidden]":{display:`none`}},({theme:e})=>({padding:`0 15px`,transition:`color 0.2s linear, border-bottom-color 0.2s linear`,height:40,lineHeight:`12px`,cursor:`pointer`,background:`transparent`,border:`0 solid transparent`,borderTop:`3px solid transparent`,borderBottom:`3px solid transparent`,fontWeight:`bold`,fontSize:13,"&:focus":{outline:`0 none`,borderBottomColor:e.barSelectedColor}}),({active:e,textColor:t,theme:n})=>e?{color:t||n.barSelectedColor,borderBottomColor:n.barSelectedColor}:{color:t||n.barTextColor,borderBottomColor:`transparent`,"&:hover":{color:n.barHoverColor}});TR.displayName=`TabButton`,H.div(({theme:e})=>({width:14,height:14,backgroundColor:e.appBorderColor,animation:`${e.animation.glow} 1.5s ease-in-out infinite`})),H.div({marginTop:6,padding:7,height:28});var ER=H.div(({theme:e})=>({height:`100%`,display:`flex`,padding:30,alignItems:`center`,justifyContent:`center`,flexDirection:`column`,gap:15,background:e.background.content})),DR=H.div({display:`flex`,flexDirection:`column`,gap:4,maxWidth:415}),OR=H.div(({theme:e})=>({fontWeight:e.typography.weight.bold,fontSize:e.typography.size.s2-1,textAlign:`center`,color:e.textColor})),kR=H.div(({theme:e})=>({fontWeight:e.typography.weight.regular,fontSize:e.typography.size.s2-1,textAlign:`center`,color:e.textMutedColor})),AR=G(({title:e,description:t,footer:n})=>o.createElement(ER,null,o.createElement(DR,null,o.createElement(OR,null,e),t&&o.createElement(kR,null,t)),n),`EmptyTabContent`),jR=H.div(({active:e})=>e?{display:`block`}:{display:`none`}),MR=G(e=>o.Children.toArray(e).map(({props:{title:e,id:t,color:n,children:r}})=>{let i=Array.isArray(r)?r[0]:r;return{title:e,id:t,...n?{color:n}:{},render:typeof i==`function`?i:({active:e})=>o.createElement(jR,{active:e,role:`tabpanel`},i)}}),`childrenToList`);fD();var NR=H.span(({theme:e,isActive:t})=>({display:`inline-block`,width:0,height:0,marginLeft:8,color:t?e.color.secondary:e.color.mediumdark,borderRight:`3px solid transparent`,borderLeft:`3px solid transparent`,borderTop:`3px solid`,transition:`transform .1s ease-out`})),PR=H(TR)(({active:e,theme:t,preActive:n})=>`
491
+ color: ${n||e?t.barSelectedColor:t.barTextColor};
492
+ .addon-collapsible-icon {
493
+ color: ${n||e?t.barSelectedColor:t.barTextColor};
494
+ }
495
+ &:hover {
496
+ color: ${t.barHoverColor};
497
+ .addon-collapsible-icon {
498
+ color: ${t.barHoverColor};
499
+ }
500
+ }
501
+ `);function FR(t){let n=(0,o.useRef)(),r=(0,o.useRef)(),i=(0,o.useRef)(new Map),{width:a=1}=oL({ref:n}),[s,c]=(0,o.useState)(t),[l,u]=(0,o.useState)([]),d=(0,o.useRef)(t),f=(0,o.useCallback)(({menuName:t,actions:n})=>{let a=l.some(({active:e})=>e),[s,c]=(0,o.useState)(!1);return o.createElement(o.Fragment,null,o.createElement(dD,{interactive:!0,visible:s,onVisibleChange:c,placement:`bottom`,delayHide:100,tooltip:o.createElement(gR,{links:l.map(({title:e,id:t,color:r,active:i})=>({id:t,title:e,color:r,active:i,onClick:G(e=>{e.preventDefault(),n.onSelect(t)},`onClick`)}))})},o.createElement(PR,{ref:r,active:a,preActive:s,style:{visibility:l.length?`visible`:`hidden`},"aria-hidden":!l.length,className:`tabbutton`,type:`button`,role:`tab`},t,o.createElement(NR,{className:`addon-collapsible-icon`,isActive:a||s}))),l.map(({title:t,id:n,color:r},a)=>{let s=`index-${a}`;return o.createElement(TR,{id:`tabbutton-${e(n)??s}`,style:{visibility:`hidden`},"aria-hidden":!0,tabIndex:-1,ref:e=>{i.current.set(n,e)},className:`tabbutton`,type:`button`,key:n,textColor:r,role:`tab`},t)}))},[l]),p=(0,o.useCallback)(()=>{if(!n.current||!r.current)return;let{x:e,width:a}=n.current.getBoundingClientRect(),{width:o}=r.current.getBoundingClientRect(),f=l.length?e+a-o:e+a,p=[],m=0,h=t.filter(t=>{let{id:n}=t,r=i.current.get(n),{width:a=0}=r?.getBoundingClientRect()||{},o=e+m+a>f;return(!o||!r)&&p.push(t),m+=a,o});(p.length!==s.length||d.current!==t)&&(c(p),u(h),d.current=t)},[l.length,t,s]);return(0,o.useLayoutEffect)(p,[p,a]),{tabRefs:i,addonsRef:r,tabBarRef:n,visibleList:s,invisibleList:l,AddonTab:f}}G(FR,`useList`);var IR=`/* emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason */`,LR=H.div(({theme:e,bordered:t})=>t?{backgroundClip:`padding-box`,border:`1px solid ${e.appBorderColor}`,borderRadius:e.appBorderRadius,overflow:`hidden`,boxSizing:`border-box`}:{},({absolute:e})=>e?{width:`100%`,height:`100%`,boxSizing:`border-box`,display:`flex`,flexDirection:`column`}:{display:`block`}),RR=H.div({overflow:`hidden`,"&:first-of-type":{marginLeft:-3},whiteSpace:`nowrap`,flexGrow:1});RR.displayName=`TabBar`;var zR=H.div({display:`block`,position:`relative`},({theme:e})=>({fontSize:e.typography.size.s2-1,background:e.background.content}),({bordered:e,theme:t})=>e?{borderRadius:`0 0 ${t.appBorderRadius-1}px ${t.appBorderRadius-1}px`}:{},({absolute:e,bordered:t})=>e?{height:`calc(100% - ${t?42:40}px)`,position:`absolute`,left:0+(t?1:0),right:0+(t?1:0),bottom:0+(t?1:0),top:40+(t?1:0),overflow:`auto`,[`& > *:first-child${IR}`]:{position:`absolute`,left:0+(t?1:0),right:0+(t?1:0),bottom:0+(t?1:0),top:0+(t?1:0),height:`calc(100% - ${t?2:0}px)`,overflow:`auto`}}:{}),BR=(0,o.memo)(({children:t,selected:n=null,actions:r,absolute:i=!1,bordered:a=!1,tools:s=null,backgroundColor:c,id:l=null,menuName:u=`Tabs`,emptyState:d,showToolsWhenEmpty:f})=>{let p=(0,o.useMemo)(()=>MR(t).map((e,t)=>({...e,active:n?e.id===n:t===0})),[t,n]),{visibleList:m,tabBarRef:h,tabRefs:g,AddonTab:_}=FR(p),v=d??o.createElement(AR,{title:`Nothing found`});return!f&&p.length===0?v:o.createElement(LR,{absolute:i,bordered:a,id:l},o.createElement(bR,{scrollable:!1,border:!0,backgroundColor:c},o.createElement(RR,{style:{whiteSpace:`normal`},ref:h,role:`tablist`},m.map(({title:t,id:n,active:i,color:a},s)=>{let c=`index-${s}`;return o.createElement(TR,{id:`tabbutton-${e(n)??c}`,ref:e=>{g.current.set(n,e)},className:`tabbutton ${i?`tabbutton-active`:``}`,type:`button`,key:n,active:i,textColor:a,onClick:e=>{e.preventDefault(),r.onSelect(n)},role:`tab`},typeof t==`function`?o.createElement(`title`,null):t)}),o.createElement(_,{menuName:u,actions:r})),s),o.createElement(zR,{id:`panel-tab-content`,bordered:a,absolute:i},p.length?p.map(({id:e,active:t,render:n})=>o.createElement(n,{key:e,active:t},null)):v))});BR.displayName=`Tabs`;var VR=class extends o.Component{constructor(e){super(e),this.handlers={onSelect:G(e=>this.setState({selected:e}),`onSelect`)},this.state={selected:e.initial}}render(){let{bordered:e=!1,absolute:t=!1,children:n,backgroundColor:r,menuName:i}=this.props,{selected:a}=this.state;return o.createElement(BR,{bordered:e,absolute:t,selected:a,backgroundColor:r,menuName:i,actions:this.handlers},n)}};G(VR,`TabsState`),VR.defaultProps={children:[],initial:null,absolute:!1,bordered:!1,backgroundColor:``,menuName:void 0};var HR=VR,UR=H.span(({theme:e})=>({width:1,height:20,background:e.appBorderColor,marginLeft:2,marginRight:2}),({force:e})=>e?{}:{"& + &":{display:`none`}});UR.displayName=`Separator`;var{deprecate:WR,logger:GR}=__STORYBOOK_MODULE_CLIENT_LOGGER__,KR=H.svg`
502
+ display: inline-block;
503
+ shape-rendering: inherit;
504
+ vertical-align: middle;
505
+ fill: currentColor;
506
+ path {
507
+ fill: currentColor;
508
+ }
509
+ `;(0,o.memo)(G(function({icons:e=Object.keys(qR)}){return o.createElement(KR,{viewBox:`0 0 14 14`,style:{position:`absolute`,width:0,height:0},"data-chromatic":`ignore`},e.map(e=>o.createElement(`symbol`,{id:`icon--${e}`,key:e},qR[e])))},`Symbols`));var qR={user:`UserIcon`,useralt:`UserAltIcon`,useradd:`UserAddIcon`,users:`UsersIcon`,profile:`ProfileIcon`,facehappy:`FaceHappyIcon`,faceneutral:`FaceNeutralIcon`,facesad:`FaceSadIcon`,accessibility:`AccessibilityIcon`,accessibilityalt:`AccessibilityAltIcon`,arrowup:`ChevronUpIcon`,arrowdown:`ChevronDownIcon`,arrowleft:`ChevronLeftIcon`,arrowright:`ChevronRightIcon`,arrowupalt:`ArrowUpIcon`,arrowdownalt:`ArrowDownIcon`,arrowleftalt:`ArrowLeftIcon`,arrowrightalt:`ArrowRightIcon`,expandalt:`ExpandAltIcon`,collapse:`CollapseIcon`,expand:`ExpandIcon`,unfold:`UnfoldIcon`,transfer:`TransferIcon`,redirect:`RedirectIcon`,undo:`UndoIcon`,reply:`ReplyIcon`,sync:`SyncIcon`,upload:`UploadIcon`,download:`DownloadIcon`,back:`BackIcon`,proceed:`ProceedIcon`,refresh:`RefreshIcon`,globe:`GlobeIcon`,compass:`CompassIcon`,location:`LocationIcon`,pin:`PinIcon`,time:`TimeIcon`,dashboard:`DashboardIcon`,timer:`TimerIcon`,home:`HomeIcon`,admin:`AdminIcon`,info:`InfoIcon`,question:`QuestionIcon`,support:`SupportIcon`,alert:`AlertIcon`,email:`EmailIcon`,phone:`PhoneIcon`,link:`LinkIcon`,unlink:`LinkBrokenIcon`,bell:`BellIcon`,rss:`RSSIcon`,sharealt:`ShareAltIcon`,share:`ShareIcon`,circle:`CircleIcon`,circlehollow:`CircleHollowIcon`,bookmarkhollow:`BookmarkHollowIcon`,bookmark:`BookmarkIcon`,hearthollow:`HeartHollowIcon`,heart:`HeartIcon`,starhollow:`StarHollowIcon`,star:`StarIcon`,certificate:`CertificateIcon`,verified:`VerifiedIcon`,thumbsup:`ThumbsUpIcon`,shield:`ShieldIcon`,basket:`BasketIcon`,beaker:`BeakerIcon`,hourglass:`HourglassIcon`,flag:`FlagIcon`,cloudhollow:`CloudHollowIcon`,edit:`EditIcon`,cog:`CogIcon`,nut:`NutIcon`,wrench:`WrenchIcon`,ellipsis:`EllipsisIcon`,check:`CheckIcon`,form:`FormIcon`,batchdeny:`BatchDenyIcon`,batchaccept:`BatchAcceptIcon`,controls:`ControlsIcon`,plus:`PlusIcon`,closeAlt:`CloseAltIcon`,cross:`CrossIcon`,trash:`TrashIcon`,pinalt:`PinAltIcon`,unpin:`UnpinIcon`,add:`AddIcon`,subtract:`SubtractIcon`,close:`CloseIcon`,delete:`DeleteIcon`,passed:`PassedIcon`,changed:`ChangedIcon`,failed:`FailedIcon`,clear:`ClearIcon`,comment:`CommentIcon`,commentadd:`CommentAddIcon`,requestchange:`RequestChangeIcon`,comments:`CommentsIcon`,lock:`LockIcon`,unlock:`UnlockIcon`,key:`KeyIcon`,outbox:`OutboxIcon`,credit:`CreditIcon`,button:`ButtonIcon`,type:`TypeIcon`,pointerdefault:`PointerDefaultIcon`,pointerhand:`PointerHandIcon`,browser:`BrowserIcon`,tablet:`TabletIcon`,mobile:`MobileIcon`,watch:`WatchIcon`,sidebar:`SidebarIcon`,sidebaralt:`SidebarAltIcon`,sidebaralttoggle:`SidebarAltToggleIcon`,sidebartoggle:`SidebarToggleIcon`,bottombar:`BottomBarIcon`,bottombartoggle:`BottomBarToggleIcon`,cpu:`CPUIcon`,database:`DatabaseIcon`,memory:`MemoryIcon`,structure:`StructureIcon`,box:`BoxIcon`,power:`PowerIcon`,photo:`PhotoIcon`,component:`ComponentIcon`,grid:`GridIcon`,outline:`OutlineIcon`,photodrag:`PhotoDragIcon`,search:`SearchIcon`,zoom:`ZoomIcon`,zoomout:`ZoomOutIcon`,zoomreset:`ZoomResetIcon`,eye:`EyeIcon`,eyeclose:`EyeCloseIcon`,lightning:`LightningIcon`,lightningoff:`LightningOffIcon`,contrast:`ContrastIcon`,switchalt:`SwitchAltIcon`,mirror:`MirrorIcon`,grow:`GrowIcon`,paintbrush:`PaintBrushIcon`,ruler:`RulerIcon`,stop:`StopIcon`,camera:`CameraIcon`,video:`VideoIcon`,speaker:`SpeakerIcon`,play:`PlayIcon`,playback:`PlayBackIcon`,playnext:`PlayNextIcon`,rewind:`RewindIcon`,fastforward:`FastForwardIcon`,stopalt:`StopAltIcon`,sidebyside:`SideBySideIcon`,stacked:`StackedIcon`,sun:`SunIcon`,moon:`MoonIcon`,book:`BookIcon`,document:`DocumentIcon`,copy:`CopyIcon`,category:`CategoryIcon`,folder:`FolderIcon`,print:`PrintIcon`,graphline:`GraphLineIcon`,calendar:`CalendarIcon`,graphbar:`GraphBarIcon`,menu:`MenuIcon`,menualt:`MenuIcon`,filter:`FilterIcon`,docchart:`DocChartIcon`,doclist:`DocListIcon`,markup:`MarkupIcon`,bold:`BoldIcon`,paperclip:`PaperClipIcon`,listordered:`ListOrderedIcon`,listunordered:`ListUnorderedIcon`,paragraph:`ParagraphIcon`,markdown:`MarkdownIcon`,repository:`RepoIcon`,commit:`CommitIcon`,branch:`BranchIcon`,pullrequest:`PullRequestIcon`,merge:`MergeIcon`,apple:`AppleIcon`,linux:`LinuxIcon`,ubuntu:`UbuntuIcon`,windows:`WindowsIcon`,storybook:`StorybookIcon`,azuredevops:`AzureDevOpsIcon`,bitbucket:`BitbucketIcon`,chrome:`ChromeIcon`,chromatic:`ChromaticIcon`,componentdriven:`ComponentDrivenIcon`,discord:`DiscordIcon`,facebook:`FacebookIcon`,figma:`FigmaIcon`,gdrive:`GDriveIcon`,github:`GithubIcon`,gitlab:`GitlabIcon`,google:`GoogleIcon`,graphql:`GraphqlIcon`,medium:`MediumIcon`,redux:`ReduxIcon`,twitter:`TwitterIcon`,youtube:`YoutubeIcon`,vscode:`VSCodeIcon`},JR=Lt`
510
+ from {
511
+ transform: rotate(0deg);
512
+ }
513
+ to {
514
+ transform: rotate(360deg);
515
+ }
516
+ `,YR=H.div(({size:e=32})=>({borderRadius:`50%`,cursor:`progress`,display:`inline-block`,overflow:`hidden`,position:`absolute`,transition:`all 200ms ease-out`,verticalAlign:`top`,top:`50%`,left:`50%`,marginTop:-(e/2),marginLeft:-(e/2),height:e,width:e,zIndex:4,borderWidth:2,borderStyle:`solid`,borderColor:`rgba(97, 97, 97, 0.29)`,borderTopColor:`rgb(100,100,100)`,animation:`${JR} 0.7s linear infinite`,mixBlendMode:`difference`})),XR=H.div({position:`absolute`,display:`flex`,flexDirection:`column`,justifyContent:`center`,alignItems:`center`,width:`100%`,height:`100%`}),ZR=H.div(({theme:e})=>({position:`relative`,width:`80%`,marginBottom:`0.75rem`,maxWidth:300,height:5,borderRadius:5,background:aO(.8,e.color.secondary),overflow:`hidden`,cursor:`progress`})),QR=H.div(({theme:e})=>({position:`absolute`,top:0,left:0,height:`100%`,background:e.color.secondary})),$R=H.div(({theme:e})=>({minHeight:`2em`,fontSize:`${e.typography.size.s1}px`,color:e.textMutedColor})),ez=H($O)(({theme:e})=>({width:20,height:20,marginBottom:`0.5rem`,color:e.textMutedColor})),tz=Lt`
517
+ from { content: "..." }
518
+ 33% { content: "." }
519
+ 66% { content: ".." }
520
+ to { content: "..." }
521
+ `,nz=H.span({"&::after":{content:`'...'`,animation:`${tz} 1s linear infinite`,animationDelay:`1s`,display:`inline-block`,width:`1em`,height:`auto`}}),rz=G(({progress:e,error:t,size:n,...r})=>{if(t)return o.createElement(XR,{"aria-label":t.toString(),"aria-live":`polite`,role:`status`,...r},o.createElement(ez,null),o.createElement($R,null,t.message));if(e){let{value:t,modules:n}=e,{message:i}=e;return n&&(i+=` ${n.complete} / ${n.total} modules`),o.createElement(XR,{"aria-label":`Content is loading...`,"aria-live":`polite`,"aria-valuemin":0,"aria-valuemax":100,"aria-valuenow":t*100,"aria-valuetext":i,role:`progressbar`,...r},o.createElement(ZR,null,o.createElement(QR,{style:{width:`${t*100}%`}})),o.createElement($R,null,i,t<1&&o.createElement(nz,{key:i})))}return o.createElement(YR,{"aria-label":`Content is loading...`,"aria-live":`polite`,role:`status`,size:n,...r})},`Loader`),iz=Lt({"0%":{transform:`rotate(0deg)`},"100%":{transform:`rotate(360deg)`}});H.div(({size:e})=>({display:`inline-flex`,alignItems:`center`,justifyContent:`center`,position:`relative`,minWidth:e,minHeight:e})),H.svg(({size:e,width:t})=>({position:`absolute`,width:`${e}px!important`,height:`${e}px!important`,transform:`rotate(-90deg)`,circle:{r:(e-Math.ceil(t))/2,cx:e/2,cy:e/2,opacity:.15,fill:`transparent`,stroke:`currentColor`,strokeWidth:t,strokeLinecap:`round`,strokeDasharray:Math.PI*(e-Math.ceil(t))}}),({progress:e})=>e&&{circle:{opacity:.75}},({spinner:e})=>e&&{animation:`${iz} 1s linear infinite`,circle:{opacity:.25}});function az(e){let t={},n=e.split(`&`);for(let e=0;e<n.length;e++){let r=n[e].split(`=`);t[decodeURIComponent(r[0])]=decodeURIComponent(r[1]||``)}return t}G(az,`parseQuery`);var oz=G((e,t,n={})=>{let[r,i]=e.split(`?`),a=i?{...az(i),...n,id:t}:{...n,id:t};return`${r}?${Object.entries(a).map(e=>`${e[0]}=${e[1]}`).join(`&`)}`},`getStoryHref`);H.pre`
522
+ line-height: 18px;
523
+ padding: 11px 1rem;
524
+ white-space: pre-wrap;
525
+ background: rgba(0, 0, 0, 0.05);
526
+ color: ${U.darkest};
527
+ border-radius: 3px;
528
+ margin: 1rem 0;
529
+ width: 100%;
530
+ display: block;
531
+ overflow: hidden;
532
+ font-family: ${Yn.fonts.mono};
533
+ font-size: ${Yn.size.s2-1}px;
534
+ `;var sz=IO,cz={};Object.keys(IO).forEach(e=>{cz[e]=(0,o.forwardRef)((t,n)=>(0,o.createElement)(e,{...t,ref:n}))});export{xO as $,uL as A,fR as B,uO as C,MO as D,DO as E,RR as F,cz as G,oz as H,dO as I,BR as J,UR as K,_O as L,rR as M,bO as N,gR as O,TR as P,CO as Q,vc as R,sz as S,ZL as T,qR as U,AO as V,yL as W,vO as X,fO as Y,yO as Z,FO as _,PO as a,H as at,sO as b,SO as c,vR as d,jr as et,NO as f,SN as g,jO as h,VI as i,ur as it,bR as j,AR as k,TO as l,rz as m,mc as n,Sr as nt,$L as o,Tt as ot,HR as p,$ as q,OO as r,Mr as rt,wO as s,_N as t,Ot as tt,kO as u,cO as v,EO as w,tR as x,zI as y,Ro as z};