@feminab/box-ui 0.1.0 → 0.1.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.
- package/.storybook/main.ts +40 -2
- package/dist/@interfaces/Badge.d.d.ts.map +1 -1
- package/dist/@interfaces/Button.d.d.ts.map +1 -1
- package/dist/@interfaces/Color.d.d.ts.map +1 -1
- package/dist/@interfaces/IButtonItem.d.d.ts.map +1 -1
- package/dist/@interfaces/ISubNavItem.d.d.ts.map +1 -1
- package/dist/@interfaces/MobileNavProps.d.d.ts.map +1 -1
- package/dist/@interfaces/NavItem.d.d.ts.map +1 -1
- package/dist/@interfaces/Pagination.d.d.ts.map +1 -1
- package/dist/@interfaces/Select.d.d.ts.map +1 -1
- package/dist/@interfaces/SideNavProps.d.d.ts.map +1 -1
- package/dist/@interfaces/TextInput.d.d.ts.map +1 -1
- package/dist/@interfaces/index.d.ts.map +1 -1
- package/dist/Badge.d.ts.map +1 -1
- package/dist/Button.d.ts.map +1 -1
- package/dist/ButtonGroup.d.ts.map +1 -1
- package/dist/ColorBox.d.ts.map +1 -1
- package/dist/Header.d.ts.map +1 -1
- package/dist/Nav/MobileNav.d.ts.map +1 -1
- package/dist/Nav/NavItem.d.ts.map +1 -1
- package/dist/Nav/SideNav.d.ts.map +1 -1
- package/dist/Nav/SubNavItem.d.ts.map +1 -1
- package/dist/Paginate.d.ts.map +1 -1
- package/dist/Select.d.ts.map +1 -1
- package/dist/StoryLayout.d.ts.map +1 -1
- package/dist/TextInput.d.ts.map +1 -1
- package/dist/Typography.d.ts.map +1 -1
- package/dist/box-ui.cjs.development.js +17 -11
- package/dist/box-ui.cjs.development.js.map +1 -1
- package/dist/box-ui.cjs.production.min.js +1 -1
- package/dist/box-ui.cjs.production.min.js.map +1 -1
- package/dist/box-ui.esm.js +17 -11
- package/dist/box-ui.esm.js.map +1 -1
- package/dist/data/colors.d.ts.map +1 -1
- package/dist/data/countries.d.ts.map +1 -1
- package/dist/data/images/index.d.ts.map +1 -1
- package/dist/data/index.d.ts.map +1 -1
- package/dist/data/navItems.d.ts.map +1 -1
- package/dist/data/options.d.ts.map +1 -1
- package/dist/data/prices.d.ts.map +1 -1
- package/dist/hooks/useIconClassName.d.ts.map +1 -1
- package/dist/hooks/useIconProps.d.ts.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/jest.config.d.ts +9 -0
- package/dist/jest.config.d.ts.map +1 -0
- package/dist/reportWebVitals.d.ts.map +1 -1
- package/dist/setupTests.d.ts.map +1 -1
- package/dist/stories/Badge.stories.d.ts +3 -4
- package/dist/stories/Badge.stories.d.ts.map +1 -1
- package/dist/stories/Button.stories.d.ts +3 -4
- package/dist/stories/Button.stories.d.ts.map +1 -1
- package/dist/stories/ButtonGroup.stories.d.ts +4 -4
- package/dist/stories/ButtonGroup.stories.d.ts.map +1 -1
- package/dist/stories/Colors.stories.d.ts +3 -3
- package/dist/stories/Colors.stories.d.ts.map +1 -1
- package/dist/stories/MobileNav.stories.d.ts +3 -4
- package/dist/stories/MobileNav.stories.d.ts.map +1 -1
- package/dist/stories/Paginate.stories.d.ts +3 -4
- package/dist/stories/Paginate.stories.d.ts.map +1 -1
- package/dist/stories/Select.stories.d.ts +3 -4
- package/dist/stories/Select.stories.d.ts.map +1 -1
- package/dist/stories/SideNav.stories.d.ts +3 -4
- package/dist/stories/SideNav.stories.d.ts.map +1 -1
- package/dist/stories/TextInput.stories.d.ts +3 -4
- package/dist/stories/TextInput.stories.d.ts.map +1 -1
- package/dist/stories/Typography.stories.d.ts +4 -4
- package/dist/stories/Typography.stories.d.ts.map +1 -1
- package/dist/utils/IconWrapper.d.ts +8 -0
- package/dist/utils/IconWrapper.d.ts.map +1 -0
- package/jest.config.js +13 -0
- package/jest.setup.ts +3 -0
- package/netlify.toml +3 -0
- package/package.json +24 -26
- package/src/Nav/MobileNav.tsx +2 -0
- package/src/Nav/SideNav.tsx +1 -0
- package/src/Paginate.tsx +2 -0
- package/src/Select.tsx +1 -1
- package/src/TextInput.tsx +23 -27
- package/src/index.js +1 -1
- package/src/stories/Badge.stories.tsx +6 -8
- package/src/stories/Button.stories.tsx +21 -8
- package/src/stories/ButtonGroup.stories.tsx +48 -48
- package/src/stories/Colors.stories.tsx +2 -4
- package/src/stories/MobileNav.stories.tsx +29 -19
- package/src/stories/Paginate.stories.tsx +36 -35
- package/src/stories/Select.stories.tsx +46 -43
- package/src/stories/SideNav.stories.tsx +18 -19
- package/src/stories/TextInput.stories.tsx +81 -71
- package/src/stories/Typography.stories.tsx +2 -4
- package/src/styles/global.css +1 -181
- package/src/tests/Badge.test.tsx +48 -0
- package/src/tests/Button.test.tsx +69 -0
- package/src/tests/ButtonGroup.test.tsx +51 -0
- package/src/tests/MobileNav.test.tsx +66 -0
- package/src/tests/Paginate.test.tsx +86 -0
- package/src/tests/Select.test.tsx +63 -0
- package/src/tests/SideNav.test.tsx +43 -0
- package/src/tests/TextInput.test.tsx +42 -0
- package/src/tests/Typography.test.tsx +41 -0
- package/src/tests/__snapshots__/Badge.test.tsx.snap +13 -0
- package/src/tests/__snapshots__/Button.test.tsx.snap +106 -0
- package/src/tests/__snapshots__/ButtonGroup.test.tsx.snap +228 -0
- package/src/tests/__snapshots__/Paginate.test.tsx.snap +580 -0
- package/src/tests/__snapshots__/Select.test.tsx.snap +119 -0
- package/src/tests/__snapshots__/TextInput.test.tsx.snap +323 -0
- package/src/utils/IconWrapper.tsx +11 -0
- package/storybook-static/{125.65b26339.iframe.bundle.js → 125.df7cc93e.iframe.bundle.js} +3 -3
- package/storybook-static/125.df7cc93e.iframe.bundle.js.map +1 -0
- package/storybook-static/13.d4c3993e.iframe.bundle.js +2 -0
- package/storybook-static/161.f5193502.iframe.bundle.js +2 -0
- package/storybook-static/167.89fa6ac2.iframe.bundle.js +1 -0
- package/storybook-static/294.eccdc80d.iframe.bundle.js +1 -0
- package/storybook-static/314.c9f9245e.iframe.bundle.js +2 -0
- package/storybook-static/364.1cfcaebe.iframe.bundle.js +1 -0
- package/storybook-static/735.c396ee77.iframe.bundle.js +2 -0
- package/storybook-static/742.52c662a4.iframe.bundle.js +1 -0
- package/storybook-static/{844.aec20bdb.iframe.bundle.js → 844.3bb89aad.iframe.bundle.js} +3 -3
- package/storybook-static/844.3bb89aad.iframe.bundle.js.map +1 -0
- package/storybook-static/936.c827da74.iframe.bundle.js +1 -0
- package/storybook-static/961.c3df469f.iframe.bundle.js +2 -0
- package/storybook-static/iframe.html +3 -3
- package/storybook-static/main.179173d1.iframe.bundle.js +1 -0
- package/storybook-static/project.json +1 -1
- package/storybook-static/{runtime~main.295ddda4.iframe.bundle.js → runtime~main.70344601.iframe.bundle.js} +1 -1
- package/storybook-static/static/css/main.08036cd2.css.map +1 -1
- package/storybook-static/stories-Badge-stories.a924d6d5.iframe.bundle.js +1 -0
- package/storybook-static/stories-Button-stories.a3c88a14.iframe.bundle.js +1 -0
- package/storybook-static/stories-ButtonGroup-stories.2c74e4c4.iframe.bundle.js +1 -0
- package/storybook-static/stories-Colors-stories.424256b4.iframe.bundle.js +2 -0
- package/storybook-static/stories-Configure-mdx.46ebbf59.iframe.bundle.js +1 -0
- package/storybook-static/stories-Header-stories.df09e844.iframe.bundle.js +2 -0
- package/storybook-static/stories-MobileNav-stories.eb9a0ca6.iframe.bundle.js +1 -0
- package/storybook-static/stories-Page-stories.ab66c885.iframe.bundle.js +2 -0
- package/storybook-static/stories-Paginate-stories.086f736a.iframe.bundle.js +1 -0
- package/storybook-static/stories-Select-stories.4c04edb3.iframe.bundle.js +1 -0
- package/storybook-static/stories-SideNav-stories.272a4362.iframe.bundle.js +1 -0
- package/storybook-static/stories-TextInput-stories.cfa81131.iframe.bundle.js +1 -0
- package/storybook-static/stories-Typography-stories.a31da7ce.iframe.bundle.js +2 -0
- package/tailwind.config.js +1 -1
- package/tsconfig.json +6 -3
- package/tsdx.config.js +14 -0
- package/dist/Page.d.ts +0 -3
- package/dist/Page.d.ts.map +0 -1
- package/dist/stories/Header.stories.d.ts +0 -20
- package/dist/stories/Header.stories.d.ts.map +0 -1
- package/dist/stories/Page.stories.d.ts +0 -14
- package/dist/stories/Page.stories.d.ts.map +0 -1
- package/src/Page.tsx +0 -72
- package/src/stories/Configure.mdx +0 -364
- package/src/stories/Header.stories.ts +0 -33
- package/src/stories/Page.stories.ts +0 -32
- package/storybook-static/125.65b26339.iframe.bundle.js.map +0 -1
- package/storybook-static/13.0638081a.iframe.bundle.js +0 -2
- package/storybook-static/161.a19908ac.iframe.bundle.js +0 -2
- package/storybook-static/167.3fa3a909.iframe.bundle.js +0 -1
- package/storybook-static/294.ce38f65c.iframe.bundle.js +0 -1
- package/storybook-static/314.568bd9af.iframe.bundle.js +0 -2
- package/storybook-static/364.0b18ef67.iframe.bundle.js +0 -1
- package/storybook-static/735.1625d9f4.iframe.bundle.js +0 -2
- package/storybook-static/742.597501f6.iframe.bundle.js +0 -1
- package/storybook-static/844.aec20bdb.iframe.bundle.js.map +0 -1
- package/storybook-static/936.fd850a3f.iframe.bundle.js +0 -1
- package/storybook-static/961.0e5457c5.iframe.bundle.js +0 -2
- package/storybook-static/main.069281cf.iframe.bundle.js +0 -1
- package/storybook-static/stories-Badge-stories.484f7206.iframe.bundle.js +0 -1
- package/storybook-static/stories-Button-stories.5e29be85.iframe.bundle.js +0 -1
- package/storybook-static/stories-ButtonGroup-stories.cc89968c.iframe.bundle.js +0 -1
- package/storybook-static/stories-Colors-stories.f892dc75.iframe.bundle.js +0 -2
- package/storybook-static/stories-Configure-mdx.81346d97.iframe.bundle.js +0 -1
- package/storybook-static/stories-Header-stories.cf691094.iframe.bundle.js +0 -2
- package/storybook-static/stories-MobileNav-stories.f04cccdd.iframe.bundle.js +0 -1
- package/storybook-static/stories-Page-stories.0c9aa29d.iframe.bundle.js +0 -2
- package/storybook-static/stories-Paginate-stories.3b161781.iframe.bundle.js +0 -1
- package/storybook-static/stories-Select-stories.7556ae0d.iframe.bundle.js +0 -1
- package/storybook-static/stories-SideNav-stories.093fac6a.iframe.bundle.js +0 -1
- package/storybook-static/stories-TextInput-stories.6d3e15c6.iframe.bundle.js +0 -1
- package/storybook-static/stories-Typography-stories.6640f7ac.iframe.bundle.js +0 -2
- /package/storybook-static/{125.65b26339.iframe.bundle.js.LICENSE.txt → 125.df7cc93e.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{13.0638081a.iframe.bundle.js.LICENSE.txt → 13.d4c3993e.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{161.a19908ac.iframe.bundle.js.LICENSE.txt → 161.f5193502.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{314.568bd9af.iframe.bundle.js.LICENSE.txt → 314.c9f9245e.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{735.1625d9f4.iframe.bundle.js.LICENSE.txt → 735.c396ee77.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{844.aec20bdb.iframe.bundle.js.LICENSE.txt → 844.3bb89aad.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{961.0e5457c5.iframe.bundle.js.LICENSE.txt → 961.c3df469f.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{stories-Colors-stories.f892dc75.iframe.bundle.js.LICENSE.txt → stories-Colors-stories.424256b4.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{stories-Header-stories.cf691094.iframe.bundle.js.LICENSE.txt → stories-Header-stories.df09e844.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{stories-Page-stories.0c9aa29d.iframe.bundle.js.LICENSE.txt → stories-Page-stories.ab66c885.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{stories-Typography-stories.6640f7ac.iframe.bundle.js.LICENSE.txt → stories-Typography-stories.a31da7ce.iframe.bundle.js.LICENSE.txt} +0 -0
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"844.aec20bdb.iframe.bundle.js","mappings":";;;;;;;;;;;;;;;;;AAmNA;;ACikaA;AAIA;AACA;AAIA;;;;;;;;AAm+VA;;;;;;;AAmTA;;;;;AA2DA;;;;;AAoIA;;;;;;AAMA;AACA;AAIA;;;ACp+rBA;;;;;;;AAEA;;;;;AAEA;;;;AACA;AAnBA;;;AAoBA;;;;;;;;;;;AAIA;;;;AAgXA","sources":["webpack://box-ui/./node_modules/@storybook/blocks/dist/index.mjs","webpack://box-ui/./node_modules/@storybook/core/dist/components/index.js","webpack://box-ui/./node_modules/@storybook/core/dist/theming/index.js"],"sourcesContent":["import { __commonJS, __toESM, __require, getControlSetterButtonId, getControlId, cloneDeep, pickBy, uniq } from './chunk-2PTXLE6R.mjs';\nimport * as React15 from 'react';\nimport React15__default, { createContext, lazy, useState, useCallback, useRef, useEffect, Component, cloneElement, useMemo, Suspense, useContext, Children } from 'react';\nimport { withReset, SyntaxHighlighter, FlexBar, Form, IconButton, codeCommon, components, Zoom, ActionBar, Button, Link, ResetWrapper, Code, nameSpaceClassNames, H2, H3, Loader, EmptyTabContent, TabsState, ErrorFormatter, getStoryHref, WithTooltipPure } from 'storybook/internal/components';\nimport { styled, ignoreSsrWarning, useTheme, themes, ThemeProvider, convert, ensure } from 'storybook/internal/theming';\nimport { AddIcon, SubtractIcon, ChevronSmallUpIcon, ChevronSmallDownIcon, ChevronDownIcon as ChevronDownIcon$1, ChevronRightIcon, ZoomIcon, ZoomOutIcon, ZoomResetIcon, EyeCloseIcon, EyeIcon, DocumentIcon, UndoIcon, VideoIcon, LinkIcon } from '@storybook/icons';\nimport { deprecate, once, logger } from 'storybook/internal/client-logger';\nimport { includeConditionalArg } from 'storybook/internal/csf';\nimport { filterArgTypes, composeConfigs, Preview as Preview$1, DocsContext as DocsContext$1 } from 'storybook/internal/preview-api';\nimport { SNIPPET_RENDERED, SourceType } from 'storybook/internal/docs-tools';\nimport { STORY_ARGS_UPDATED, UPDATE_STORY_ARGS, RESET_STORY_ARGS, GLOBALS_UPDATED, NAVIGATE_URL } from 'storybook/internal/core-events';\nimport { dedent } from 'ts-dedent';\nimport { Channel } from 'storybook/internal/channels';\n\nvar require_memoizerific=__commonJS({\"../../node_modules/memoizerific/memoizerific.js\"(exports,module){(function(f3){if(typeof exports==\"object\"&&typeof module<\"u\")module.exports=f3();else if(typeof define==\"function\"&&define.amd)define([],f3);else {var g2;typeof window<\"u\"?g2=window:typeof global<\"u\"?g2=global:typeof self<\"u\"?g2=self:g2=this,g2.memoizerific=f3();}})(function(){return function e2(t2,n2,r2){function s2(o3,u2){if(!n2[o3]){if(!t2[o3]){var a2=typeof __require==\"function\"&&__require;if(!u2&&a2)return a2(o3,!0);if(i2)return i2(o3,!0);var f3=new Error(\"Cannot find module '\"+o3+\"'\");throw f3.code=\"MODULE_NOT_FOUND\",f3}var l2=n2[o3]={exports:{}};t2[o3][0].call(l2.exports,function(e3){var n3=t2[o3][1][e3];return s2(n3||e3)},l2,l2.exports,e2,t2,n2,r2);}return n2[o3].exports}for(var i2=typeof __require==\"function\"&&__require,o2=0;o2<r2.length;o2++)s2(r2[o2]);return s2}({1:[function(_dereq_,module3,exports3){module3.exports=function(forceSimilar){if(typeof Map!=\"function\"||forceSimilar){var Similar=_dereq_(\"./similar\");return new Similar}else return new Map};},{\"./similar\":2}],2:[function(_dereq_,module3,exports3){function Similar(){return this.list=[],this.lastItem=void 0,this.size=0,this}Similar.prototype.get=function(key2){var index;if(this.lastItem&&this.isEqual(this.lastItem.key,key2))return this.lastItem.val;if(index=this.indexOf(key2),index>=0)return this.lastItem=this.list[index],this.list[index].val},Similar.prototype.set=function(key2,val){var index;return this.lastItem&&this.isEqual(this.lastItem.key,key2)?(this.lastItem.val=val,this):(index=this.indexOf(key2),index>=0?(this.lastItem=this.list[index],this.list[index].val=val,this):(this.lastItem={key:key2,val},this.list.push(this.lastItem),this.size++,this))},Similar.prototype.delete=function(key2){var index;if(this.lastItem&&this.isEqual(this.lastItem.key,key2)&&(this.lastItem=void 0),index=this.indexOf(key2),index>=0)return this.size--,this.list.splice(index,1)[0]},Similar.prototype.has=function(key2){var index;return this.lastItem&&this.isEqual(this.lastItem.key,key2)?!0:(index=this.indexOf(key2),index>=0?(this.lastItem=this.list[index],!0):!1)},Similar.prototype.forEach=function(callback,thisArg){var i2;for(i2=0;i2<this.size;i2++)callback.call(thisArg||this,this.list[i2].val,this.list[i2].key,this);},Similar.prototype.indexOf=function(key2){var i2;for(i2=0;i2<this.size;i2++)if(this.isEqual(this.list[i2].key,key2))return i2;return -1},Similar.prototype.isEqual=function(val1,val2){return val1===val2||val1!==val1&&val2!==val2},module3.exports=Similar;},{}],3:[function(_dereq_,module3,exports3){var MapOrSimilar=_dereq_(\"map-or-similar\");module3.exports=function(limit){var cache=new MapOrSimilar(!1),lru=[];return function(fn){var memoizerific=function(){var currentCache=cache,newMap,fnResult,argsLengthMinusOne=arguments.length-1,lruPath=Array(argsLengthMinusOne+1),isMemoized=!0,i2;if((memoizerific.numArgs||memoizerific.numArgs===0)&&memoizerific.numArgs!==argsLengthMinusOne+1)throw new Error(\"Memoizerific functions should always be called with the same number of arguments\");for(i2=0;i2<argsLengthMinusOne;i2++){if(lruPath[i2]={cacheItem:currentCache,arg:arguments[i2]},currentCache.has(arguments[i2])){currentCache=currentCache.get(arguments[i2]);continue}isMemoized=!1,newMap=new MapOrSimilar(!1),currentCache.set(arguments[i2],newMap),currentCache=newMap;}return isMemoized&&(currentCache.has(arguments[argsLengthMinusOne])?fnResult=currentCache.get(arguments[argsLengthMinusOne]):isMemoized=!1),isMemoized||(fnResult=fn.apply(null,arguments),currentCache.set(arguments[argsLengthMinusOne],fnResult)),limit>0&&(lruPath[argsLengthMinusOne]={cacheItem:currentCache,arg:arguments[argsLengthMinusOne]},isMemoized?moveToMostRecentLru(lru,lruPath):lru.push(lruPath),lru.length>limit&&removeCachedResult(lru.shift())),memoizerific.wasMemoized=isMemoized,memoizerific.numArgs=argsLengthMinusOne+1,fnResult};return memoizerific.limit=limit,memoizerific.wasMemoized=!1,memoizerific.cache=cache,memoizerific.lru=lru,memoizerific}};function moveToMostRecentLru(lru,lruPath){var lruLen=lru.length,lruPathLen=lruPath.length,isMatch,i2,ii;for(i2=0;i2<lruLen;i2++){for(isMatch=!0,ii=0;ii<lruPathLen;ii++)if(!isEqual(lru[i2][ii].arg,lruPath[ii].arg)){isMatch=!1;break}if(isMatch)break}lru.push(lru.splice(i2,1)[0]);}function removeCachedResult(removedLru){var removedLruLen=removedLru.length,currentLru=removedLru[removedLruLen-1],tmp,i2;for(currentLru.cacheItem.delete(currentLru.arg),i2=removedLruLen-2;i2>=0&&(currentLru=removedLru[i2],tmp=currentLru.cacheItem.get(currentLru.arg),!tmp||!tmp.size);i2--)currentLru.cacheItem.delete(currentLru.arg);}function isEqual(val1,val2){return val1===val2||val1!==val1&&val2!==val2}},{\"map-or-similar\":1}]},{},[3])(3)});}});var require_default_options=__commonJS({\"../../node_modules/tocbot/src/js/default-options.js\"(exports,module){module.exports={tocSelector:\".js-toc\",contentSelector:\".js-toc-content\",headingSelector:\"h1, h2, h3\",ignoreSelector:\".js-toc-ignore\",hasInnerContainers:!1,linkClass:\"toc-link\",extraLinkClasses:\"\",activeLinkClass:\"is-active-link\",listClass:\"toc-list\",extraListClasses:\"\",isCollapsedClass:\"is-collapsed\",collapsibleClass:\"is-collapsible\",listItemClass:\"toc-list-item\",activeListItemClass:\"is-active-li\",collapseDepth:0,scrollSmooth:!0,scrollSmoothDuration:420,scrollSmoothOffset:0,scrollEndCallback:function(e2){},headingsOffset:1,throttleTimeout:50,positionFixedSelector:null,positionFixedClass:\"is-position-fixed\",fixedSidebarOffset:\"auto\",includeHtml:!1,includeTitleTags:!1,onClick:function(e2){},orderedList:!0,scrollContainer:null,skipRendering:!1,headingLabelCallback:!1,ignoreHiddenElements:!1,headingObjectCallback:null,basePath:\"\",disableTocScrollSync:!1,tocScrollOffset:0};}});var require_build_html=__commonJS({\"../../node_modules/tocbot/src/js/build-html.js\"(exports,module){module.exports=function(options2){var forEach=[].forEach,some=[].some,body=document.body,tocElement,currentlyHighlighting=!0,SPACE_CHAR=\" \";function createEl(d2,container){var link=container.appendChild(createLink(d2));if(d2.children.length){var list=createList(d2.isCollapsed);d2.children.forEach(function(child){createEl(child,list);}),link.appendChild(list);}}function render(parent,data){var collapsed=!1,container=createList(collapsed);if(data.forEach(function(d2){createEl(d2,container);}),tocElement=parent||tocElement,tocElement!==null)return tocElement.firstChild&&tocElement.removeChild(tocElement.firstChild),data.length===0?tocElement:tocElement.appendChild(container)}function createLink(data){var item=document.createElement(\"li\"),a2=document.createElement(\"a\");return options2.listItemClass&&item.setAttribute(\"class\",options2.listItemClass),options2.onClick&&(a2.onclick=options2.onClick),options2.includeTitleTags&&a2.setAttribute(\"title\",data.textContent),options2.includeHtml&&data.childNodes.length?forEach.call(data.childNodes,function(node){a2.appendChild(node.cloneNode(!0));}):a2.textContent=data.textContent,a2.setAttribute(\"href\",options2.basePath+\"#\"+data.id),a2.setAttribute(\"class\",options2.linkClass+SPACE_CHAR+\"node-name--\"+data.nodeName+SPACE_CHAR+options2.extraLinkClasses),item.appendChild(a2),item}function createList(isCollapsed){var listElement=options2.orderedList?\"ol\":\"ul\",list=document.createElement(listElement),classes=options2.listClass+SPACE_CHAR+options2.extraListClasses;return isCollapsed&&(classes=classes+SPACE_CHAR+options2.collapsibleClass,classes=classes+SPACE_CHAR+options2.isCollapsedClass),list.setAttribute(\"class\",classes),list}function updateFixedSidebarClass(){if(options2.scrollContainer&&document.querySelector(options2.scrollContainer)){var top;top=document.querySelector(options2.scrollContainer).scrollTop;}else top=document.documentElement.scrollTop||body.scrollTop;var posFixedEl=document.querySelector(options2.positionFixedSelector);options2.fixedSidebarOffset===\"auto\"&&(options2.fixedSidebarOffset=tocElement.offsetTop),top>options2.fixedSidebarOffset?posFixedEl.className.indexOf(options2.positionFixedClass)===-1&&(posFixedEl.className+=SPACE_CHAR+options2.positionFixedClass):posFixedEl.className=posFixedEl.className.replace(SPACE_CHAR+options2.positionFixedClass,\"\");}function getHeadingTopPos(obj){var position=0;return obj!==null&&(position=obj.offsetTop,options2.hasInnerContainers&&(position+=getHeadingTopPos(obj.offsetParent))),position}function updateClassname(obj,className){return obj&&obj.className!==className&&(obj.className=className),obj}function updateToc(headingsArray){if(options2.scrollContainer&&document.querySelector(options2.scrollContainer)){var top;top=document.querySelector(options2.scrollContainer).scrollTop;}else top=document.documentElement.scrollTop||body.scrollTop;options2.positionFixedSelector&&updateFixedSidebarClass();var headings=headingsArray,topHeader;if(currentlyHighlighting&&tocElement!==null&&headings.length>0){some.call(headings,function(heading,i2){if(getHeadingTopPos(heading)>top+options2.headingsOffset+10){var index=i2===0?i2:i2-1;return topHeader=headings[index],!0}else if(i2===headings.length-1)return topHeader=headings[headings.length-1],!0});var oldActiveTocLink=tocElement.querySelector(\".\"+options2.activeLinkClass),activeTocLink=tocElement.querySelector(\".\"+options2.linkClass+\".node-name--\"+topHeader.nodeName+'[href=\"'+options2.basePath+\"#\"+topHeader.id.replace(/([ #;&,.+*~':\"!^$[\\]()=>|/\\\\@])/g,\"\\\\$1\")+'\"]');if(oldActiveTocLink===activeTocLink)return;var tocLinks=tocElement.querySelectorAll(\".\"+options2.linkClass);forEach.call(tocLinks,function(tocLink){updateClassname(tocLink,tocLink.className.replace(SPACE_CHAR+options2.activeLinkClass,\"\"));});var tocLis=tocElement.querySelectorAll(\".\"+options2.listItemClass);forEach.call(tocLis,function(tocLi){updateClassname(tocLi,tocLi.className.replace(SPACE_CHAR+options2.activeListItemClass,\"\"));}),activeTocLink&&activeTocLink.className.indexOf(options2.activeLinkClass)===-1&&(activeTocLink.className+=SPACE_CHAR+options2.activeLinkClass);var li=activeTocLink&&activeTocLink.parentNode;li&&li.className.indexOf(options2.activeListItemClass)===-1&&(li.className+=SPACE_CHAR+options2.activeListItemClass);var tocLists=tocElement.querySelectorAll(\".\"+options2.listClass+\".\"+options2.collapsibleClass);forEach.call(tocLists,function(list){list.className.indexOf(options2.isCollapsedClass)===-1&&(list.className+=SPACE_CHAR+options2.isCollapsedClass);}),activeTocLink&&activeTocLink.nextSibling&&activeTocLink.nextSibling.className.indexOf(options2.isCollapsedClass)!==-1&&updateClassname(activeTocLink.nextSibling,activeTocLink.nextSibling.className.replace(SPACE_CHAR+options2.isCollapsedClass,\"\")),removeCollapsedFromParents(activeTocLink&&activeTocLink.parentNode.parentNode);}}function removeCollapsedFromParents(element){return element&&element.className.indexOf(options2.collapsibleClass)!==-1&&element.className.indexOf(options2.isCollapsedClass)!==-1?(updateClassname(element,element.className.replace(SPACE_CHAR+options2.isCollapsedClass,\"\")),removeCollapsedFromParents(element.parentNode.parentNode)):element}function disableTocAnimation(event){var target=event.target||event.srcElement;typeof target.className!=\"string\"||target.className.indexOf(options2.linkClass)===-1||(currentlyHighlighting=!1);}function enableTocAnimation(){currentlyHighlighting=!0;}return {enableTocAnimation,disableTocAnimation,render,updateToc}};}});var require_parse_content=__commonJS({\"../../node_modules/tocbot/src/js/parse-content.js\"(exports,module){module.exports=function(options2){var reduce=[].reduce;function getLastItem(array2){return array2[array2.length-1]}function getHeadingLevel(heading){return +heading.nodeName.toUpperCase().replace(\"H\",\"\")}function isHTMLElement(maybeElement){try{return maybeElement instanceof window.HTMLElement||maybeElement instanceof window.parent.HTMLElement}catch{return maybeElement instanceof window.HTMLElement}}function getHeadingObject(heading){if(!isHTMLElement(heading))return heading;if(options2.ignoreHiddenElements&&(!heading.offsetHeight||!heading.offsetParent))return null;let headingLabel=heading.getAttribute(\"data-heading-label\")||(options2.headingLabelCallback?String(options2.headingLabelCallback(heading.innerText)):(heading.innerText||heading.textContent).trim());var obj={id:heading.id,children:[],nodeName:heading.nodeName,headingLevel:getHeadingLevel(heading),textContent:headingLabel};return options2.includeHtml&&(obj.childNodes=heading.childNodes),options2.headingObjectCallback?options2.headingObjectCallback(obj,heading):obj}function addNode(node,nest){for(var obj=getHeadingObject(node),level=obj.headingLevel,array2=nest,lastItem=getLastItem(array2),lastItemLevel=lastItem?lastItem.headingLevel:0,counter=level-lastItemLevel;counter>0&&(lastItem=getLastItem(array2),!(lastItem&&level===lastItem.headingLevel));)lastItem&&lastItem.children!==void 0&&(array2=lastItem.children),counter--;return level>=options2.collapseDepth&&(obj.isCollapsed=!0),array2.push(obj),array2}function selectHeadings(contentElement,headingSelector){var selectors=headingSelector;options2.ignoreSelector&&(selectors=headingSelector.split(\",\").map(function(selector){return selector.trim()+\":not(\"+options2.ignoreSelector+\")\"}));try{return contentElement.querySelectorAll(selectors)}catch{return console.warn(\"Headers not found with selector: \"+selectors),null}}function nestHeadingsArray(headingsArray){return reduce.call(headingsArray,function(prev,curr){var currentHeading=getHeadingObject(curr);return currentHeading&&addNode(currentHeading,prev.nest),prev},{nest:[]})}return {nestHeadingsArray,selectHeadings}};}});var require_update_toc_scroll=__commonJS({\"../../node_modules/tocbot/src/js/update-toc-scroll.js\"(exports,module){module.exports=function(options2){var toc=options2.tocElement||document.querySelector(options2.tocSelector);if(toc&&toc.scrollHeight>toc.clientHeight){var activeItem=toc.querySelector(\".\"+options2.activeListItemClass);activeItem&&(toc.scrollTop=activeItem.offsetTop-options2.tocScrollOffset);}};}});var require_scroll_smooth=__commonJS({\"../../node_modules/tocbot/src/js/scroll-smooth/index.js\"(exports){exports.initSmoothScrolling=initSmoothScrolling;function initSmoothScrolling(options2){var duration=options2.duration,offset=options2.offset,pageUrl=location.hash?stripHash(location.href):location.href;delegatedLinkHijacking();function delegatedLinkHijacking(){document.body.addEventListener(\"click\",onClick,!1);function onClick(e2){!isInPageLink(e2.target)||e2.target.className.indexOf(\"no-smooth-scroll\")>-1||e2.target.href.charAt(e2.target.href.length-2)===\"#\"&&e2.target.href.charAt(e2.target.href.length-1)===\"!\"||e2.target.className.indexOf(options2.linkClass)===-1||jump(e2.target.hash,{duration,offset,callback:function(){setFocus(e2.target.hash);}});}}function isInPageLink(n2){return n2.tagName.toLowerCase()===\"a\"&&(n2.hash.length>0||n2.href.charAt(n2.href.length-1)===\"#\")&&(stripHash(n2.href)===pageUrl||stripHash(n2.href)+\"#\"===pageUrl)}function stripHash(url){return url.slice(0,url.lastIndexOf(\"#\"))}function setFocus(hash){var element=document.getElementById(hash.substring(1));element&&(/^(?:a|select|input|button|textarea)$/i.test(element.tagName)||(element.tabIndex=-1),element.focus());}}function jump(target,options2){var start=window.pageYOffset,opt={duration:options2.duration,offset:options2.offset||0,callback:options2.callback,easing:options2.easing||easeInOutQuad},tgt=document.querySelector('[id=\"'+decodeURI(target).split(\"#\").join(\"\")+'\"]')||document.querySelector('[id=\"'+target.split(\"#\").join(\"\")+'\"]'),distance=typeof target==\"string\"?opt.offset+(target?tgt&&tgt.getBoundingClientRect().top||0:-(document.documentElement.scrollTop||document.body.scrollTop)):target,duration=typeof opt.duration==\"function\"?opt.duration(distance):opt.duration,timeStart,timeElapsed;requestAnimationFrame(function(time){timeStart=time,loop(time);});function loop(time){timeElapsed=time-timeStart,window.scrollTo(0,opt.easing(timeElapsed,start,distance,duration)),timeElapsed<duration?requestAnimationFrame(loop):end();}function end(){window.scrollTo(0,start+distance),typeof opt.callback==\"function\"&&opt.callback();}function easeInOutQuad(t2,b2,c2,d2){return t2/=d2/2,t2<1?c2/2*t2*t2+b2:(t2--,-c2/2*(t2*(t2-2)-1)+b2)}}}});var require_js=__commonJS({\"../../node_modules/tocbot/src/js/index.js\"(exports,module){(function(root3,factory){typeof define==\"function\"&&define.amd?define([],factory(root3)):typeof exports==\"object\"?module.exports=factory(root3):root3.tocbot=factory(root3);})(typeof global<\"u\"?global:window||global,function(root3){var defaultOptions2=require_default_options(),options2={},tocbot2={},BuildHtml=require_build_html(),ParseContent=require_parse_content(),updateTocScroll=require_update_toc_scroll(),buildHtml,parseContent,supports=!!root3&&!!root3.document&&!!root3.document.querySelector&&!!root3.addEventListener;if(typeof window>\"u\"&&!supports)return;var headingsArray,hasOwnProperty5=Object.prototype.hasOwnProperty;function extend(){for(var target={},i2=0;i2<arguments.length;i2++){var source2=arguments[i2];for(var key2 in source2)hasOwnProperty5.call(source2,key2)&&(target[key2]=source2[key2]);}return target}function throttle(fn,threshold,scope){threshold||(threshold=250);var last,deferTimer;return function(){var context=scope||this,now=+new Date,args2=arguments;last&&now<last+threshold?(clearTimeout(deferTimer),deferTimer=setTimeout(function(){last=now,fn.apply(context,args2);},threshold)):(last=now,fn.apply(context,args2));}}function getContentElement(options3){try{return options3.contentElement||document.querySelector(options3.contentSelector)}catch{return console.warn(\"Contents element not found: \"+options3.contentSelector),null}}function getTocElement(options3){try{return options3.tocElement||document.querySelector(options3.tocSelector)}catch{return console.warn(\"TOC element not found: \"+options3.tocSelector),null}}return tocbot2.destroy=function(){var tocElement=getTocElement(options2);tocElement!==null&&(options2.skipRendering||tocElement&&(tocElement.innerHTML=\"\"),options2.scrollContainer&&document.querySelector(options2.scrollContainer)?(document.querySelector(options2.scrollContainer).removeEventListener(\"scroll\",this._scrollListener,!1),document.querySelector(options2.scrollContainer).removeEventListener(\"resize\",this._scrollListener,!1),buildHtml&&document.querySelector(options2.scrollContainer).removeEventListener(\"click\",this._clickListener,!1)):(document.removeEventListener(\"scroll\",this._scrollListener,!1),document.removeEventListener(\"resize\",this._scrollListener,!1),buildHtml&&document.removeEventListener(\"click\",this._clickListener,!1)));},tocbot2.init=function(customOptions){if(supports){options2=extend(defaultOptions2,customOptions||{}),this.options=options2,this.state={},options2.scrollSmooth&&(options2.duration=options2.scrollSmoothDuration,options2.offset=options2.scrollSmoothOffset,tocbot2.scrollSmooth=require_scroll_smooth().initSmoothScrolling(options2)),buildHtml=BuildHtml(options2),parseContent=ParseContent(options2),this._buildHtml=buildHtml,this._parseContent=parseContent,this._headingsArray=headingsArray,tocbot2.destroy();var contentElement=getContentElement(options2);if(contentElement!==null){var tocElement=getTocElement(options2);if(tocElement!==null&&(headingsArray=parseContent.selectHeadings(contentElement,options2.headingSelector),headingsArray!==null)){var nestedHeadingsObj=parseContent.nestHeadingsArray(headingsArray),nestedHeadings=nestedHeadingsObj.nest;if(!options2.skipRendering)buildHtml.render(tocElement,nestedHeadings);else return this;this._scrollListener=throttle(function(e2){buildHtml.updateToc(headingsArray),!options2.disableTocScrollSync&&updateTocScroll(options2);var isTop=e2&&e2.target&&e2.target.scrollingElement&&e2.target.scrollingElement.scrollTop===0;(e2&&(e2.eventPhase===0||e2.currentTarget===null)||isTop)&&(buildHtml.updateToc(headingsArray),options2.scrollEndCallback&&options2.scrollEndCallback(e2));},options2.throttleTimeout),this._scrollListener(),options2.scrollContainer&&document.querySelector(options2.scrollContainer)?(document.querySelector(options2.scrollContainer).addEventListener(\"scroll\",this._scrollListener,!1),document.querySelector(options2.scrollContainer).addEventListener(\"resize\",this._scrollListener,!1)):(document.addEventListener(\"scroll\",this._scrollListener,!1),document.addEventListener(\"resize\",this._scrollListener,!1));var timeout=null;return this._clickListener=throttle(function(event){options2.scrollSmooth&&buildHtml.disableTocAnimation(event),buildHtml.updateToc(headingsArray),timeout&&clearTimeout(timeout),timeout=setTimeout(function(){buildHtml.enableTocAnimation();},options2.scrollSmoothDuration);},options2.throttleTimeout),options2.scrollContainer&&document.querySelector(options2.scrollContainer)?document.querySelector(options2.scrollContainer).addEventListener(\"click\",this._clickListener,!1):document.addEventListener(\"click\",this._clickListener,!1),this}}}},tocbot2.refresh=function(customOptions){tocbot2.destroy(),tocbot2.init(customOptions||this.options);},root3.tocbot=tocbot2,tocbot2});}});function _extends(){return _extends=Object.assign?Object.assign.bind():function(n2){for(var e2=1;e2<arguments.length;e2++){var t2=arguments[e2];for(var r2 in t2)({}).hasOwnProperty.call(t2,r2)&&(n2[r2]=t2[r2]);}return n2},_extends.apply(null,arguments)}function _assertThisInitialized(e2){if(e2===void 0)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e2}function _setPrototypeOf(t2,e2){return _setPrototypeOf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t3,e3){return t3.__proto__=e3,t3},_setPrototypeOf(t2,e2)}function _inheritsLoose(t2,o2){t2.prototype=Object.create(o2.prototype),t2.prototype.constructor=t2,_setPrototypeOf(t2,o2);}function _getPrototypeOf(t2){return _getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t3){return t3.__proto__||Object.getPrototypeOf(t3)},_getPrototypeOf(t2)}function _isNativeFunction(t2){try{return Function.toString.call(t2).indexOf(\"[native code]\")!==-1}catch{return typeof t2==\"function\"}}function _isNativeReflectConstruct(){try{var t2=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}));}catch{}return (_isNativeReflectConstruct=function(){return !!t2})()}function _construct(t2,e2,r2){if(_isNativeReflectConstruct())return Reflect.construct.apply(null,arguments);var o2=[null];o2.push.apply(o2,e2);var p2=new(t2.bind.apply(t2,o2));return r2&&_setPrototypeOf(p2,r2.prototype),p2}function _wrapNativeSuper(t2){var r2=typeof Map==\"function\"?new Map:void 0;return _wrapNativeSuper=function(t3){if(t3===null||!_isNativeFunction(t3))return t3;if(typeof t3!=\"function\")throw new TypeError(\"Super expression must either be null or a function\");if(r2!==void 0){if(r2.has(t3))return r2.get(t3);r2.set(t3,Wrapper12);}function Wrapper12(){return _construct(t3,arguments,_getPrototypeOf(this).constructor)}return Wrapper12.prototype=Object.create(t3.prototype,{constructor:{value:Wrapper12,enumerable:!1,writable:!0,configurable:!0}}),_setPrototypeOf(Wrapper12,t3)},_wrapNativeSuper(t2)}var ERRORS={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 }).\n\n`,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 }).\n\n`,3:`Passed an incorrect argument to a color function, please pass a string representation of a color.\n\n`,4:`Couldn't generate valid rgb string from %s, it returned %s.\n\n`,5:`Couldn't parse the color string. Please provide the color as a string in hex, rgb, rgba, hsl or hsla notation.\n\n`,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 }).\n\n`,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 }).\n\n`,8:`Passed invalid argument to toColorString, please pass a RgbColor, RgbaColor, HslColor or HslaColor object.\n\n`,9:`Please provide a number of steps to the modularScale helper.\n\n`,10:`Please pass a number or one of the predefined scales to the modularScale helper as the ratio.\n\n`,11:`Invalid value passed as base to modularScale, expected number or em string but got \"%s\"\n\n`,12:`Expected a string ending in \"px\" or a number passed as the first argument to %s(), got \"%s\" instead.\n\n`,13:`Expected a string ending in \"px\" or a number passed as the second argument to %s(), got \"%s\" instead.\n\n`,14:`Passed invalid pixel value (\"%s\") to %s(), please pass a value like \"12px\" or 12.\n\n`,15:`Passed invalid base value (\"%s\") to %s(), please pass a value like \"12px\" or 12.\n\n`,16:`You must provide a template to this method.\n\n`,17:`You passed an unsupported selector state to this method.\n\n`,18:`minScreen and maxScreen must be provided as stringified numbers with the same units.\n\n`,19:`fromSize and toSize must be provided as stringified numbers with the same units.\n\n`,20:`expects either an array of objects or a single object with the properties prop, fromSize, and toSize.\n\n`,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.\n\n`,24:`fontFace expects either the path to the font file(s) or a name of a local copy.\n\n`,25:`fontFace expects localFonts to be an array.\n\n`,26:`fontFace expects fileFormats to be an array.\n\n`,27:`radialGradient requries at least 2 color-stops to properly render.\n\n`,28:`Please supply a filename to retinaImage() as the first argument.\n\n`,29:`Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'.\n\n`,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\n\n`,32:`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')\n\n`,33:`The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation\n\n`,34:`borderRadius expects a radius value as a string or number as the second argument.\n\n`,35:`borderRadius expects one of \"top\", \"bottom\", \"left\" or \"right\" as the first argument.\n\n`,36:`Property must be a string value.\n\n`,37:`Syntax Error at %s.\n\n`,38:`Formula contains a function that needs parentheses at %s.\n\n`,39:`Formula is missing closing parenthesis at %s.\n\n`,40:`Formula has too many closing parentheses at %s.\n\n`,41:`All values in a formula must have the same unit or be unitless.\n\n`,42:`Please provide a number of steps to the modularScale helper.\n\n`,43:`Please pass a number or one of the predefined scales to the modularScale helper as the ratio.\n\n`,44:`Invalid value passed as base to modularScale, expected number or em/rem string but got %s.\n\n`,45:`Passed invalid argument to hslToColorString, please pass a HslColor or HslaColor object.\n\n`,46:`Passed invalid argument to rgbToColorString, please pass a RgbColor or RgbaColor object.\n\n`,47:`minScreen and maxScreen must be provided as stringified numbers with the same units.\n\n`,48:`fromSize and toSize must be provided as stringified numbers with the same units.\n\n`,49:`Expects either an array of objects or a single object with the properties prop, fromSize, and toSize.\n\n`,50:`Expects the objects in the first argument array to have the properties prop, fromSize, and toSize.\n\n`,51:`Expects the first argument object to have the properties prop, fromSize, and toSize.\n\n`,52:`fontFace expects either the path to the font file(s) or a name of a local copy.\n\n`,53:`fontFace expects localFonts to be an array.\n\n`,54:`fontFace expects fileFormats to be an array.\n\n`,55:`fontFace expects a name of a font-family.\n\n`,56:`linearGradient requries at least 2 color-stops to properly render.\n\n`,57:`radialGradient requries at least 2 color-stops to properly render.\n\n`,58:`Please supply a filename to retinaImage() as the first argument.\n\n`,59:`Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'.\n\n`,60:\"Passed an invalid value to `height` or `width`. Please provide a pixel based unit.\\n\\n\",61:`Property must be a string value.\n\n`,62:`borderRadius expects a radius value as a string or number as the second argument.\n\n`,63:`borderRadius expects one of \"top\", \"bottom\", \"left\" or \"right\" as the first argument.\n\n`,64:`The animation shorthand only takes 8 arguments. See the specification for more information: http://mdn.io/animation.\n\n`,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').\n\n`,66:`The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation.\n\n`,67:`You must provide a template to this method.\n\n`,68:`You passed an unsupported selector state to this method.\n\n`,69:`Expected a string ending in \"px\" or a number passed as the first argument to %s(), got %s instead.\n\n`,70:`Expected a string ending in \"px\" or a number passed as the second argument to %s(), got %s instead.\n\n`,71:`Passed invalid pixel value %s to %s(), please pass a value like \"12px\" or 12.\n\n`,72:`Passed invalid base value %s to %s(), please pass a value like \"12px\" or 12.\n\n`,73:`Please provide a valid CSS variable.\n\n`,74:`CSS variable not found and no default was provided.\n\n`,75:`important requires a valid style object, got a %s instead.\n\n`,76:`fromSize and toSize must be provided as stringified numbers with the same units as minScreen and maxScreen.\n\n`,77:`remToPx expects a value in \"rem\" but you provided it in \"%s\".\n\n`,78:`base must be set in \"px\" or \"%\" but you set it in \"%s\".\n`};function format(){for(var _len=arguments.length,args2=new Array(_len),_key=0;_key<_len;_key++)args2[_key]=arguments[_key];var a2=args2[0],b2=[],c2;for(c2=1;c2<args2.length;c2+=1)b2.push(args2[c2]);return b2.forEach(function(d2){a2=a2.replace(/%[a-z]/,d2);}),a2}var PolishedError=function(_Error){_inheritsLoose(PolishedError2,_Error);function PolishedError2(code){var _this;if(process.env.NODE_ENV===\"production\")_this=_Error.call(this,\"An error occurred. See https://github.com/styled-components/polished/blob/main/src/internalHelpers/errors.md#\"+code+\" for more information.\")||this;else {for(var _len2=arguments.length,args2=new Array(_len2>1?_len2-1:0),_key2=1;_key2<_len2;_key2++)args2[_key2-1]=arguments[_key2];_this=_Error.call(this,format.apply(void 0,[ERRORS[code]].concat(args2)))||this;}return _assertThisInitialized(_this)}return PolishedError2}(_wrapNativeSuper(Error));function colorToInt(color){return Math.round(color*255)}function convertToInt(red,green,blue){return colorToInt(red)+\",\"+colorToInt(green)+\",\"+colorToInt(blue)}function hslToRgb(hue,saturation,lightness,convert2){if(convert2===void 0&&(convert2=convertToInt),saturation===0)return convert2(lightness,lightness,lightness);var huePrime=(hue%360+360)%360/60,chroma=(1-Math.abs(2*lightness-1))*saturation,secondComponent=chroma*(1-Math.abs(huePrime%2-1)),red=0,green=0,blue=0;huePrime>=0&&huePrime<1?(red=chroma,green=secondComponent):huePrime>=1&&huePrime<2?(red=secondComponent,green=chroma):huePrime>=2&&huePrime<3?(green=chroma,blue=secondComponent):huePrime>=3&&huePrime<4?(green=secondComponent,blue=chroma):huePrime>=4&&huePrime<5?(red=secondComponent,blue=chroma):huePrime>=5&&huePrime<6&&(red=chroma,blue=secondComponent);var lightnessModification=lightness-chroma/2,finalRed=red+lightnessModification,finalGreen=green+lightnessModification,finalBlue=blue+lightnessModification;return convert2(finalRed,finalGreen,finalBlue)}var namedColorMap={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 nameToHex(color){if(typeof color!=\"string\")return color;var normalizedColorName=color.toLowerCase();return namedColorMap[normalizedColorName]?\"#\"+namedColorMap[normalizedColorName]:color}var hexRegex=/^#[a-fA-F0-9]{6}$/,hexRgbaRegex=/^#[a-fA-F0-9]{8}$/,reducedHexRegex=/^#[a-fA-F0-9]{3}$/,reducedRgbaHexRegex=/^#[a-fA-F0-9]{4}$/,rgbRegex=/^rgb\\(\\s*(\\d{1,3})\\s*(?:,)?\\s*(\\d{1,3})\\s*(?:,)?\\s*(\\d{1,3})\\s*\\)$/i,rgbaRegex=/^rgb(?:a)?\\(\\s*(\\d{1,3})\\s*(?:,)?\\s*(\\d{1,3})\\s*(?:,)?\\s*(\\d{1,3})\\s*(?:,|\\/)\\s*([-+]?\\d*[.]?\\d+[%]?)\\s*\\)$/i,hslRegex=/^hsl\\(\\s*(\\d{0,3}[.]?[0-9]+(?:deg)?)\\s*(?:,)?\\s*(\\d{1,3}[.]?[0-9]?)%\\s*(?:,)?\\s*(\\d{1,3}[.]?[0-9]?)%\\s*\\)$/i,hslaRegex=/^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 parseToRgb(color){if(typeof color!=\"string\")throw new PolishedError(3);var normalizedColor=nameToHex(color);if(normalizedColor.match(hexRegex))return {red:parseInt(\"\"+normalizedColor[1]+normalizedColor[2],16),green:parseInt(\"\"+normalizedColor[3]+normalizedColor[4],16),blue:parseInt(\"\"+normalizedColor[5]+normalizedColor[6],16)};if(normalizedColor.match(hexRgbaRegex)){var alpha=parseFloat((parseInt(\"\"+normalizedColor[7]+normalizedColor[8],16)/255).toFixed(2));return {red:parseInt(\"\"+normalizedColor[1]+normalizedColor[2],16),green:parseInt(\"\"+normalizedColor[3]+normalizedColor[4],16),blue:parseInt(\"\"+normalizedColor[5]+normalizedColor[6],16),alpha}}if(normalizedColor.match(reducedHexRegex))return {red:parseInt(\"\"+normalizedColor[1]+normalizedColor[1],16),green:parseInt(\"\"+normalizedColor[2]+normalizedColor[2],16),blue:parseInt(\"\"+normalizedColor[3]+normalizedColor[3],16)};if(normalizedColor.match(reducedRgbaHexRegex)){var _alpha=parseFloat((parseInt(\"\"+normalizedColor[4]+normalizedColor[4],16)/255).toFixed(2));return {red:parseInt(\"\"+normalizedColor[1]+normalizedColor[1],16),green:parseInt(\"\"+normalizedColor[2]+normalizedColor[2],16),blue:parseInt(\"\"+normalizedColor[3]+normalizedColor[3],16),alpha:_alpha}}var rgbMatched=rgbRegex.exec(normalizedColor);if(rgbMatched)return {red:parseInt(\"\"+rgbMatched[1],10),green:parseInt(\"\"+rgbMatched[2],10),blue:parseInt(\"\"+rgbMatched[3],10)};var rgbaMatched=rgbaRegex.exec(normalizedColor.substring(0,50));if(rgbaMatched)return {red:parseInt(\"\"+rgbaMatched[1],10),green:parseInt(\"\"+rgbaMatched[2],10),blue:parseInt(\"\"+rgbaMatched[3],10),alpha:parseFloat(\"\"+rgbaMatched[4])>1?parseFloat(\"\"+rgbaMatched[4])/100:parseFloat(\"\"+rgbaMatched[4])};var hslMatched=hslRegex.exec(normalizedColor);if(hslMatched){var hue=parseInt(\"\"+hslMatched[1],10),saturation=parseInt(\"\"+hslMatched[2],10)/100,lightness=parseInt(\"\"+hslMatched[3],10)/100,rgbColorString=\"rgb(\"+hslToRgb(hue,saturation,lightness)+\")\",hslRgbMatched=rgbRegex.exec(rgbColorString);if(!hslRgbMatched)throw new PolishedError(4,normalizedColor,rgbColorString);return {red:parseInt(\"\"+hslRgbMatched[1],10),green:parseInt(\"\"+hslRgbMatched[2],10),blue:parseInt(\"\"+hslRgbMatched[3],10)}}var hslaMatched=hslaRegex.exec(normalizedColor.substring(0,50));if(hslaMatched){var _hue=parseInt(\"\"+hslaMatched[1],10),_saturation=parseInt(\"\"+hslaMatched[2],10)/100,_lightness=parseInt(\"\"+hslaMatched[3],10)/100,_rgbColorString=\"rgb(\"+hslToRgb(_hue,_saturation,_lightness)+\")\",_hslRgbMatched=rgbRegex.exec(_rgbColorString);if(!_hslRgbMatched)throw new PolishedError(4,normalizedColor,_rgbColorString);return {red:parseInt(\"\"+_hslRgbMatched[1],10),green:parseInt(\"\"+_hslRgbMatched[2],10),blue:parseInt(\"\"+_hslRgbMatched[3],10),alpha:parseFloat(\"\"+hslaMatched[4])>1?parseFloat(\"\"+hslaMatched[4])/100:parseFloat(\"\"+hslaMatched[4])}}throw new PolishedError(5)}function rgbToHsl(color){var red=color.red/255,green=color.green/255,blue=color.blue/255,max=Math.max(red,green,blue),min=Math.min(red,green,blue),lightness=(max+min)/2;if(max===min)return color.alpha!==void 0?{hue:0,saturation:0,lightness,alpha:color.alpha}:{hue:0,saturation:0,lightness};var hue,delta=max-min,saturation=lightness>.5?delta/(2-max-min):delta/(max+min);switch(max){case red:hue=(green-blue)/delta+(green<blue?6:0);break;case green:hue=(blue-red)/delta+2;break;default:hue=(red-green)/delta+4;break}return hue*=60,color.alpha!==void 0?{hue,saturation,lightness,alpha:color.alpha}:{hue,saturation,lightness}}function parseToHsl(color){return rgbToHsl(parseToRgb(color))}var reduceHexValue=function(value3){return value3.length===7&&value3[1]===value3[2]&&value3[3]===value3[4]&&value3[5]===value3[6]?\"#\"+value3[1]+value3[3]+value3[5]:value3},reduceHexValue$1=reduceHexValue;function numberToHex(value3){var hex=value3.toString(16);return hex.length===1?\"0\"+hex:hex}function colorToHex(color){return numberToHex(Math.round(color*255))}function convertToHex(red,green,blue){return reduceHexValue$1(\"#\"+colorToHex(red)+colorToHex(green)+colorToHex(blue))}function hslToHex(hue,saturation,lightness){return hslToRgb(hue,saturation,lightness,convertToHex)}function hsl(value3,saturation,lightness){if(typeof value3==\"number\"&&typeof saturation==\"number\"&&typeof lightness==\"number\")return hslToHex(value3,saturation,lightness);if(typeof value3==\"object\"&&saturation===void 0&&lightness===void 0)return hslToHex(value3.hue,value3.saturation,value3.lightness);throw new PolishedError(1)}function hsla(value3,saturation,lightness,alpha){if(typeof value3==\"number\"&&typeof saturation==\"number\"&&typeof lightness==\"number\"&&typeof alpha==\"number\")return alpha>=1?hslToHex(value3,saturation,lightness):\"rgba(\"+hslToRgb(value3,saturation,lightness)+\",\"+alpha+\")\";if(typeof value3==\"object\"&&saturation===void 0&&lightness===void 0&&alpha===void 0)return value3.alpha>=1?hslToHex(value3.hue,value3.saturation,value3.lightness):\"rgba(\"+hslToRgb(value3.hue,value3.saturation,value3.lightness)+\",\"+value3.alpha+\")\";throw new PolishedError(2)}function rgb(value3,green,blue){if(typeof value3==\"number\"&&typeof green==\"number\"&&typeof blue==\"number\")return reduceHexValue$1(\"#\"+numberToHex(value3)+numberToHex(green)+numberToHex(blue));if(typeof value3==\"object\"&&green===void 0&&blue===void 0)return reduceHexValue$1(\"#\"+numberToHex(value3.red)+numberToHex(value3.green)+numberToHex(value3.blue));throw new PolishedError(6)}function rgba(firstValue,secondValue,thirdValue,fourthValue){if(typeof firstValue==\"string\"&&typeof secondValue==\"number\"){var rgbValue=parseToRgb(firstValue);return \"rgba(\"+rgbValue.red+\",\"+rgbValue.green+\",\"+rgbValue.blue+\",\"+secondValue+\")\"}else {if(typeof firstValue==\"number\"&&typeof secondValue==\"number\"&&typeof thirdValue==\"number\"&&typeof fourthValue==\"number\")return fourthValue>=1?rgb(firstValue,secondValue,thirdValue):\"rgba(\"+firstValue+\",\"+secondValue+\",\"+thirdValue+\",\"+fourthValue+\")\";if(typeof firstValue==\"object\"&&secondValue===void 0&&thirdValue===void 0&&fourthValue===void 0)return firstValue.alpha>=1?rgb(firstValue.red,firstValue.green,firstValue.blue):\"rgba(\"+firstValue.red+\",\"+firstValue.green+\",\"+firstValue.blue+\",\"+firstValue.alpha+\")\"}throw new PolishedError(7)}var isRgb=function(color){return typeof color.red==\"number\"&&typeof color.green==\"number\"&&typeof color.blue==\"number\"&&(typeof color.alpha!=\"number\"||typeof color.alpha>\"u\")},isRgba=function(color){return typeof color.red==\"number\"&&typeof color.green==\"number\"&&typeof color.blue==\"number\"&&typeof color.alpha==\"number\"},isHsl=function(color){return typeof color.hue==\"number\"&&typeof color.saturation==\"number\"&&typeof color.lightness==\"number\"&&(typeof color.alpha!=\"number\"||typeof color.alpha>\"u\")},isHsla=function(color){return typeof color.hue==\"number\"&&typeof color.saturation==\"number\"&&typeof color.lightness==\"number\"&&typeof color.alpha==\"number\"};function toColorString(color){if(typeof color!=\"object\")throw new PolishedError(8);if(isRgba(color))return rgba(color);if(isRgb(color))return rgb(color);if(isHsla(color))return hsla(color);if(isHsl(color))return hsl(color);throw new PolishedError(8)}function curried(f3,length,acc){return function(){var combined=acc.concat(Array.prototype.slice.call(arguments));return combined.length>=length?f3.apply(this,combined):curried(f3,length,combined)}}function curry(f3){return curried(f3,f3.length,[])}function guard(lowerBoundary,upperBoundary,value3){return Math.max(lowerBoundary,Math.min(upperBoundary,value3))}function darken(amount,color){if(color===\"transparent\")return color;var hslColor=parseToHsl(color);return toColorString(_extends({},hslColor,{lightness:guard(0,1,hslColor.lightness-parseFloat(amount))}))}var curriedDarken=curry(darken),curriedDarken$1=curriedDarken;function lighten(amount,color){if(color===\"transparent\")return color;var hslColor=parseToHsl(color);return toColorString(_extends({},hslColor,{lightness:guard(0,1,hslColor.lightness+parseFloat(amount))}))}var curriedLighten=curry(lighten),curriedLighten$1=curriedLighten;function opacify(amount,color){if(color===\"transparent\")return color;var parsedColor=parseToRgb(color),alpha=typeof parsedColor.alpha==\"number\"?parsedColor.alpha:1,colorWithAlpha=_extends({},parsedColor,{alpha:guard(0,1,(alpha*100+parseFloat(amount)*100)/100)});return rgba(colorWithAlpha)}var curriedOpacify=curry(opacify),curriedOpacify$1=curriedOpacify;function transparentize(amount,color){if(color===\"transparent\")return color;var parsedColor=parseToRgb(color),alpha=typeof parsedColor.alpha==\"number\"?parsedColor.alpha:1,colorWithAlpha=_extends({},parsedColor,{alpha:guard(0,1,+(alpha*100-parseFloat(amount)*100).toFixed(2)/100)});return rgba(colorWithAlpha)}var curriedTransparentize=curry(transparentize),curriedTransparentize$1=curriedTransparentize;var Wrapper=styled.div(withReset,({theme})=>({backgroundColor:theme.base===\"light\"?\"rgba(0,0,0,.01)\":\"rgba(255,255,255,.01)\",borderRadius:theme.appBorderRadius,border:`1px dashed ${theme.appBorderColor}`,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",padding:20,margin:\"25px 0 40px\",color:curriedTransparentize$1(.3,theme.color.defaultText),fontSize:theme.typography.size.s2})),EmptyBlock=props=>React15__default.createElement(Wrapper,{...props,className:\"docblock-emptyblock sb-unstyled\"});var StyledSyntaxHighlighter=styled(SyntaxHighlighter)(({theme})=>({fontSize:`${theme.typography.size.s2-1}px`,lineHeight:\"19px\",margin:\"25px 0 40px\",borderRadius:theme.appBorderRadius,boxShadow:theme.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\"}}));var SourceSkeletonWrapper=styled.div(({theme})=>({background:theme.background.content,borderRadius:theme.appBorderRadius,border:`1px solid ${theme.appBorderColor}`,boxShadow:theme.base===\"light\"?\"rgba(0, 0, 0, 0.10) 0 1px 3px 0\":\"rgba(0, 0, 0, 0.20) 0 2px 5px 0\",margin:\"25px 0 40px\",padding:\"20px 20px 20px 22px\"})),SourceSkeletonPlaceholder=styled.div(({theme})=>({animation:`${theme.animation.glow} 1.5s ease-in-out infinite`,background:theme.appBorderColor,height:17,marginTop:1,width:\"60%\",[`&:first-child${ignoreSsrWarning}`]:{margin:0}})),SourceSkeleton=()=>React15__default.createElement(SourceSkeletonWrapper,null,React15__default.createElement(SourceSkeletonPlaceholder,null),React15__default.createElement(SourceSkeletonPlaceholder,{style:{width:\"80%\"}}),React15__default.createElement(SourceSkeletonPlaceholder,{style:{width:\"30%\"}}),React15__default.createElement(SourceSkeletonPlaceholder,{style:{width:\"80%\"}})),Source=({isLoading,error,language,code,dark,format:format3=!1,...rest})=>{let{typography}=useTheme();if(isLoading)return React15__default.createElement(SourceSkeleton,null);if(error)return React15__default.createElement(EmptyBlock,null,error);let syntaxHighlighter=React15__default.createElement(StyledSyntaxHighlighter,{bordered:!0,copyable:!0,format:format3,language,className:\"docblock-source sb-unstyled\",...rest},code);if(typeof dark>\"u\")return syntaxHighlighter;let overrideTheme=dark?themes.dark:themes.light;return React15__default.createElement(ThemeProvider,{theme:convert({...overrideTheme,fontCode:typography.fonts.mono,fontBase:typography.fonts.base})},syntaxHighlighter)};var toGlobalSelector=element=>`& :where(${element}:not(.sb-anchor, .sb-unstyled, .sb-unstyled ${element}))`,breakpoint=600,Title=styled.h1(withReset,({theme})=>({color:theme.color.defaultText,fontSize:theme.typography.size.m3,fontWeight:theme.typography.weight.bold,lineHeight:\"32px\",[`@media (min-width: ${breakpoint}px)`]:{fontSize:theme.typography.size.l1,lineHeight:\"36px\",marginBottom:\"16px\"}})),Subtitle=styled.h2(withReset,({theme})=>({fontWeight:theme.typography.weight.regular,fontSize:theme.typography.size.s3,lineHeight:\"20px\",borderBottom:\"none\",marginBottom:15,[`@media (min-width: ${breakpoint}px)`]:{fontSize:theme.typography.size.m1,lineHeight:\"28px\",marginBottom:24},color:curriedTransparentize$1(.25,theme.color.defaultText)})),DocsContent=styled.div(({theme})=>{let reset={fontFamily:theme.typography.fonts.base,fontSize:theme.typography.size.s3,margin:0,WebkitFontSmoothing:\"antialiased\",MozOsxFontSmoothing:\"grayscale\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",WebkitOverflowScrolling:\"touch\"},headers={margin:\"20px 0 8px\",padding:0,cursor:\"text\",position:\"relative\",color:theme.color.defaultText,\"&:first-of-type\":{marginTop:0,paddingTop:0},\"&:hover a.anchor\":{textDecoration:\"none\"},\"& code\":{fontSize:\"inherit\"}},code={lineHeight:1,margin:\"0 2px\",padding:\"3px 5px\",whiteSpace:\"nowrap\",borderRadius:3,fontSize:theme.typography.size.s2-1,border:theme.base===\"light\"?`1px solid ${theme.color.mediumlight}`:`1px solid ${theme.color.darker}`,color:theme.base===\"light\"?curriedTransparentize$1(.1,theme.color.defaultText):curriedTransparentize$1(.3,theme.color.defaultText),backgroundColor:theme.base===\"light\"?theme.color.lighter:theme.color.border};return {maxWidth:1e3,width:\"100%\",[toGlobalSelector(\"a\")]:{...reset,fontSize:\"inherit\",lineHeight:\"24px\",color:theme.color.secondary,textDecoration:\"none\",\"&.absent\":{color:\"#cc0000\"},\"&.anchor\":{display:\"block\",paddingLeft:30,marginLeft:-30,cursor:\"pointer\",position:\"absolute\",top:0,left:0,bottom:0}},[toGlobalSelector(\"blockquote\")]:{...reset,margin:\"16px 0\",borderLeft:`4px solid ${theme.color.medium}`,padding:\"0 15px\",color:theme.color.dark,\"& > :first-of-type\":{marginTop:0},\"& > :last-child\":{marginBottom:0}},[toGlobalSelector(\"div\")]:reset,[toGlobalSelector(\"dl\")]:{...reset,margin:\"16px 0\",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}},[toGlobalSelector(\"h1\")]:{...reset,...headers,fontSize:`${theme.typography.size.l1}px`,fontWeight:theme.typography.weight.bold},[toGlobalSelector(\"h2\")]:{...reset,...headers,fontSize:`${theme.typography.size.m2}px`,paddingBottom:4,borderBottom:`1px solid ${theme.appBorderColor}`},[toGlobalSelector(\"h3\")]:{...reset,...headers,fontSize:`${theme.typography.size.m1}px`,fontWeight:theme.typography.weight.bold},[toGlobalSelector(\"h4\")]:{...reset,...headers,fontSize:`${theme.typography.size.s3}px`},[toGlobalSelector(\"h5\")]:{...reset,...headers,fontSize:`${theme.typography.size.s2}px`},[toGlobalSelector(\"h6\")]:{...reset,...headers,fontSize:`${theme.typography.size.s2}px`,color:theme.color.dark},[toGlobalSelector(\"hr\")]:{border:\"0 none\",borderTop:`1px solid ${theme.appBorderColor}`,height:4,padding:0},[toGlobalSelector(\"img\")]:{maxWidth:\"100%\"},[toGlobalSelector(\"li\")]:{...reset,fontSize:theme.typography.size.s2,color:theme.color.defaultText,lineHeight:\"24px\",\"& + li\":{marginTop:\".25em\"},\"& ul, & ol\":{marginTop:\".25em\",marginBottom:0},\"& code\":code},[toGlobalSelector(\"ol\")]:{...reset,margin:\"16px 0\",paddingLeft:30,\"& :first-of-type\":{marginTop:0},\"& :last-child\":{marginBottom:0}},[toGlobalSelector(\"p\")]:{...reset,margin:\"16px 0\",fontSize:theme.typography.size.s2,lineHeight:\"24px\",color:theme.color.defaultText,\"& code\":code},[toGlobalSelector(\"pre\")]:{...reset,fontFamily:theme.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\"}},[toGlobalSelector(\"span\")]:{...reset,\"&.frame\":{display:\"block\",overflow:\"hidden\",\"& > span\":{border:`1px solid ${theme.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:theme.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\"}}},[toGlobalSelector(\"table\")]:{...reset,margin:\"16px 0\",fontSize:theme.typography.size.s2,lineHeight:\"24px\",padding:0,borderCollapse:\"collapse\",\"& tr\":{borderTop:`1px solid ${theme.appBorderColor}`,backgroundColor:theme.appContentBg,margin:0,padding:0},\"& tr:nth-of-type(2n)\":{backgroundColor:theme.base===\"dark\"?theme.color.darker:theme.color.lighter},\"& tr th\":{fontWeight:\"bold\",color:theme.color.defaultText,border:`1px solid ${theme.appBorderColor}`,margin:0,padding:\"6px 13px\"},\"& tr td\":{border:`1px solid ${theme.appBorderColor}`,color:theme.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}},[toGlobalSelector(\"ul\")]:{...reset,margin:\"16px 0\",paddingLeft:30,\"& :first-of-type\":{marginTop:0},\"& :last-child\":{marginBottom:0},listStyle:\"disc\"}}}),DocsWrapper=styled.div(({theme})=>({background:theme.background.content,display:\"flex\",justifyContent:\"center\",padding:\"4rem 20px\",minHeight:\"100vh\",boxSizing:\"border-box\",gap:\"3rem\",[`@media (min-width: ${breakpoint}px)`]:{}})),DocsPageWrapper=({children,toc})=>React15__default.createElement(DocsWrapper,{className:\"sbdocs sbdocs-wrapper\"},React15__default.createElement(DocsContent,{className:\"sbdocs sbdocs-content\"},children),toc);var getBlockBackgroundStyle=theme=>({borderRadius:theme.appBorderRadius,background:theme.background.content,boxShadow:theme.base===\"light\"?\"rgba(0, 0, 0, 0.10) 0 1px 3px 0\":\"rgba(0, 0, 0, 0.20) 0 2px 5px 0\",border:`1px solid ${theme.appBorderColor}`});var{window:globalWindow}=globalThis,IFrame=class extends Component{constructor(){super(...arguments);this.iframe=null;}componentDidMount(){let{id}=this.props;this.iframe=globalWindow.document.getElementById(id);}shouldComponentUpdate(nextProps){let{scale}=nextProps;return scale!==this.props.scale&&this.setIframeBodyStyle({width:`${scale*100}%`,height:`${scale*100}%`,transform:`scale(${1/scale})`,transformOrigin:\"top left\"}),!1}setIframeBodyStyle(style){return Object.assign(this.iframe.contentDocument.body.style,style)}render(){let{id,title,src,allowFullScreen,scale,...rest}=this.props;return React15__default.createElement(\"iframe\",{id,title,src,...allowFullScreen?{allow:\"fullscreen\"}:{},loading:\"lazy\",...rest})}};var ZoomContext=createContext({scale:1});var{PREVIEW_URL}=globalThis,BASE_URL=PREVIEW_URL||\"iframe.html\",storyBlockIdFromId=({story,primary})=>`story--${story.id}${primary?\"--primary\":\"\"}`,InlineStory=props=>{let storyRef=useRef(),[showLoader,setShowLoader]=useState(!0),[error,setError]=useState(),{story,height,autoplay,forceInitialArgs,renderStoryToElement}=props;return useEffect(()=>{if(!(story&&storyRef.current))return ()=>{};let element=storyRef.current,cleanup=renderStoryToElement(story,element,{showMain:()=>{},showError:({title,description})=>setError(new Error(`${title} - ${description}`)),showException:err=>setError(err)},{autoplay,forceInitialArgs});return setShowLoader(!1),()=>{Promise.resolve().then(()=>cleanup());}},[autoplay,renderStoryToElement,story]),error?React15__default.createElement(\"pre\",null,React15__default.createElement(ErrorFormatter,{error})):React15__default.createElement(React15__default.Fragment,null,height?React15__default.createElement(\"style\",null,`#${storyBlockIdFromId(props)} { min-height: ${height}; transform: translateZ(0); overflow: auto }`):null,showLoader&&React15__default.createElement(StorySkeleton,null),React15__default.createElement(\"div\",{ref:storyRef,id:`${storyBlockIdFromId(props)}-inner`,\"data-name\":story.name}))},IFrameStory=({story,height=\"500px\"})=>React15__default.createElement(\"div\",{style:{width:\"100%\",height}},React15__default.createElement(ZoomContext.Consumer,null,({scale})=>React15__default.createElement(IFrame,{key:\"iframe\",id:`iframe--${story.id}`,title:story.name,src:getStoryHref(BASE_URL,story.id,{viewMode:\"story\"}),allowFullScreen:!0,scale,style:{width:\"100%\",height:\"100%\",border:\"0 none\"}}))),ErrorMessage=styled.strong(({theme})=>({color:theme.color.orange})),Story=props=>{let{inline,story}=props;return inline&&!props.autoplay&&story.usesMount?React15__default.createElement(ErrorMessage,null,\"This story mounts inside of play. Set\",\" \",React15__default.createElement(\"a\",{href:\"https://storybook.js.org/docs/api/doc-blocks/doc-block-story#autoplay\"},\"autoplay\"),\" \",\"to true to view this story.\"):React15__default.createElement(\"div\",{id:storyBlockIdFromId(props),className:\"sb-story sb-unstyled\",\"data-story-block\":\"true\"},inline?React15__default.createElement(InlineStory,{...props}):React15__default.createElement(IFrameStory,{...props}))},StorySkeleton=()=>React15__default.createElement(Loader,null);var Bar=styled(FlexBar)({position:\"absolute\",left:0,right:0,top:0,transition:\"transform .2s linear\"}),Wrapper2=styled.div({display:\"flex\",alignItems:\"center\",gap:4}),IconPlaceholder=styled.div(({theme})=>({width:14,height:14,borderRadius:2,margin:\"0 7px\",backgroundColor:theme.appBorderColor,animation:`${theme.animation.glow} 1.5s ease-in-out infinite`})),Toolbar=({isLoading,storyId,baseUrl,zoom,resetZoom,...rest})=>React15__default.createElement(Bar,{...rest},React15__default.createElement(Wrapper2,{key:\"left\"},isLoading?[1,2,3].map(key2=>React15__default.createElement(IconPlaceholder,{key:key2})):React15__default.createElement(React15__default.Fragment,null,React15__default.createElement(IconButton,{key:\"zoomin\",onClick:e2=>{e2.preventDefault(),zoom(.8);},title:\"Zoom in\"},React15__default.createElement(ZoomIcon,null)),React15__default.createElement(IconButton,{key:\"zoomout\",onClick:e2=>{e2.preventDefault(),zoom(1.25);},title:\"Zoom out\"},React15__default.createElement(ZoomOutIcon,null)),React15__default.createElement(IconButton,{key:\"zoomreset\",onClick:e2=>{e2.preventDefault(),resetZoom();},title:\"Reset zoom\"},React15__default.createElement(ZoomResetIcon,null)))));var ChildrenContainer=styled.div(({isColumn,columns,layout})=>({display:isColumn||!columns?\"block\":\"flex\",position:\"relative\",flexWrap:\"wrap\",overflow:\"auto\",flexDirection:isColumn?\"column\":\"row\",\"& .innerZoomElementWrapper > *\":isColumn?{width:layout!==\"fullscreen\"?\"calc(100% - 20px)\":\"100%\",display:\"block\"}:{maxWidth:layout!==\"fullscreen\"?\"calc(100% - 20px)\":\"100%\",display:\"inline-block\"}}),({layout=\"padded\"})=>layout===\"centered\"||layout===\"padded\"?{padding:\"30px 20px\",\"& .innerZoomElementWrapper > *\":{width:\"auto\",border:\"10px solid transparent!important\"}}:{},({layout=\"padded\"})=>layout===\"centered\"?{display:\"flex\",justifyContent:\"center\",justifyItems:\"center\",alignContent:\"center\",alignItems:\"center\"}:{},({columns})=>columns&&columns>1?{\".innerZoomElementWrapper > *\":{minWidth:`calc(100% / ${columns} - 20px)`}}:{}),StyledSource=styled(Source)(({theme})=>({margin:0,borderTopLeftRadius:0,borderTopRightRadius:0,borderBottomLeftRadius:theme.appBorderRadius,borderBottomRightRadius:theme.appBorderRadius,border:\"none\",background:theme.base===\"light\"?\"rgba(0, 0, 0, 0.85)\":curriedDarken$1(.05,theme.background.content),color:theme.color.lightest,button:{background:theme.base===\"light\"?\"rgba(0, 0, 0, 0.85)\":curriedDarken$1(.05,theme.background.content)}})),PreviewContainer=styled.div(({theme,withSource,isExpanded})=>({position:\"relative\",overflow:\"hidden\",margin:\"25px 0 40px\",...getBlockBackgroundStyle(theme),borderBottomLeftRadius:withSource&&isExpanded&&0,borderBottomRightRadius:withSource&&isExpanded&&0,borderBottomWidth:isExpanded&&0,\"h3 + &\":{marginTop:\"16px\"}}),({withToolbar})=>withToolbar&&{paddingTop:40}),getSource=(withSource,expanded,setExpanded)=>{switch(!0){case!!(withSource&&withSource.error):return {source:null,actionItem:{title:\"No code available\",className:\"docblock-code-toggle docblock-code-toggle--disabled\",disabled:!0,onClick:()=>setExpanded(!1)}};case expanded:return {source:React15__default.createElement(StyledSource,{...withSource,dark:!0}),actionItem:{title:\"Hide code\",className:\"docblock-code-toggle docblock-code-toggle--expanded\",onClick:()=>setExpanded(!1)}};default:return {source:React15__default.createElement(StyledSource,{...withSource,dark:!0}),actionItem:{title:\"Show code\",className:\"docblock-code-toggle\",onClick:()=>setExpanded(!0)}}}};function getStoryId(children){if(Children.count(children)===1){let elt=children;if(elt.props)return elt.props.id}return null}var PositionedToolbar=styled(Toolbar)({position:\"absolute\",top:0,left:0,right:0,height:40}),Relative=styled.div({overflow:\"hidden\",position:\"relative\"}),Preview=({isLoading,isColumn,columns,children,withSource,withToolbar=!1,isExpanded=!1,additionalActions,className,layout=\"padded\",...props})=>{let[expanded,setExpanded]=useState(isExpanded),{source:source2,actionItem}=getSource(withSource,expanded,setExpanded),[scale,setScale]=useState(1),previewClasses=[className].concat([\"sbdocs\",\"sbdocs-preview\",\"sb-unstyled\"]),defaultActionItems=withSource?[actionItem]:[],[additionalActionItems,setAdditionalActionItems]=useState(additionalActions?[...additionalActions]:[]),actionItems=[...defaultActionItems,...additionalActionItems],{window:globalWindow4}=globalThis,copyToClipboard=useCallback(async text=>{let{createCopyToClipboardFunction}=await import('storybook/internal/components');createCopyToClipboardFunction();},[]),onCopyCapture=e2=>{let selection=globalWindow4.getSelection();selection&&selection.type===\"Range\"||(e2.preventDefault(),additionalActionItems.filter(item=>item.title===\"Copied\").length===0&©ToClipboard(source2.props.code).then(()=>{setAdditionalActionItems([...additionalActionItems,{title:\"Copied\",onClick:()=>{}}]),globalWindow4.setTimeout(()=>setAdditionalActionItems(additionalActionItems.filter(item=>item.title!==\"Copied\")),1500);}));};return React15__default.createElement(PreviewContainer,{withSource,withToolbar,...props,className:previewClasses.join(\" \")},withToolbar&&React15__default.createElement(PositionedToolbar,{isLoading,border:!0,zoom:z2=>setScale(scale*z2),resetZoom:()=>setScale(1),storyId:getStoryId(children),baseUrl:\"./iframe.html\"}),React15__default.createElement(ZoomContext.Provider,{value:{scale}},React15__default.createElement(Relative,{className:\"docs-story\",onCopyCapture:withSource&&onCopyCapture},React15__default.createElement(ChildrenContainer,{isColumn:isColumn||!Array.isArray(children),columns,layout},React15__default.createElement(Zoom.Element,{scale},Array.isArray(children)?children.map((child,i2)=>React15__default.createElement(\"div\",{key:i2},child)):React15__default.createElement(\"div\",null,children))),React15__default.createElement(ActionBar,{actionItems}))),withSource&&expanded&&source2)};styled(Preview)(()=>({\".docs-story\":{paddingTop:32,paddingBottom:40}}));function t(){return t=Object.assign?Object.assign.bind():function(e2){for(var t2=1;t2<arguments.length;t2++){var n2=arguments[t2];for(var r2 in n2)Object.prototype.hasOwnProperty.call(n2,r2)&&(e2[r2]=n2[r2]);}return e2},t.apply(this,arguments)}var n=[\"children\",\"options\"],r={blockQuote:\"0\",breakLine:\"1\",breakThematic:\"2\",codeBlock:\"3\",codeFenced:\"4\",codeInline:\"5\",footnote:\"6\",footnoteReference:\"7\",gfmTask:\"8\",heading:\"9\",headingSetext:\"10\",htmlBlock:\"11\",htmlComment:\"12\",htmlSelfClosing:\"13\",image:\"14\",link:\"15\",linkAngleBraceStyleDetector:\"16\",linkBareUrlDetector:\"17\",linkMailtoDetector:\"18\",newlineCoalescer:\"19\",orderedList:\"20\",paragraph:\"21\",ref:\"22\",refImage:\"23\",refLink:\"24\",table:\"25\",tableSeparator:\"26\",text:\"27\",textBolded:\"28\",textEmphasized:\"29\",textEscaped:\"30\",textMarked:\"31\",textStrikethroughed:\"32\",unorderedList:\"33\"},i;(function(e2){e2[e2.MAX=0]=\"MAX\",e2[e2.HIGH=1]=\"HIGH\",e2[e2.MED=2]=\"MED\",e2[e2.LOW=3]=\"LOW\",e2[e2.MIN=4]=\"MIN\";})(i||(i={}));var l=[\"allowFullScreen\",\"allowTransparency\",\"autoComplete\",\"autoFocus\",\"autoPlay\",\"cellPadding\",\"cellSpacing\",\"charSet\",\"classId\",\"colSpan\",\"contentEditable\",\"contextMenu\",\"crossOrigin\",\"encType\",\"formAction\",\"formEncType\",\"formMethod\",\"formNoValidate\",\"formTarget\",\"frameBorder\",\"hrefLang\",\"inputMode\",\"keyParams\",\"keyType\",\"marginHeight\",\"marginWidth\",\"maxLength\",\"mediaGroup\",\"minLength\",\"noValidate\",\"radioGroup\",\"readOnly\",\"rowSpan\",\"spellCheck\",\"srcDoc\",\"srcLang\",\"srcSet\",\"tabIndex\",\"useMap\"].reduce((e2,t2)=>(e2[t2.toLowerCase()]=t2,e2),{class:\"className\",for:\"htmlFor\"}),a={amp:\"&\",apos:\"'\",gt:\">\",lt:\"<\",nbsp:\"\\xA0\",quot:\"\\u201C\"},o=[\"style\",\"script\"],c=/([-A-Z0-9_:]+)(?:\\s*=\\s*(?:(?:\"((?:\\\\.|[^\"])*)\")|(?:'((?:\\\\.|[^'])*)')|(?:\\{((?:\\\\.|{[^}]*?}|[^}])*)\\})))?/gi,s=/mailto:/i,d=/\\n{2,}$/,p=/^(\\s*>[\\s\\S]*?)(?=\\n\\n|$)/,u=/^ *> ?/gm,f2=/^(?:\\[!([^\\]]*)\\]\\n)?([\\s\\S]*)/,h=/^ {2,}\\n/,m=/^(?:( *[-*_])){3,} *(?:\\n *)+\\n/,g=/^(?: {1,3})?(`{3,}|~{3,}) *(\\S+)? *([^\\n]*?)?\\n([\\s\\S]*?)(?:\\1\\n?|$)/,y=/^(?: {4}[^\\n]+\\n*)+(?:\\n *)+\\n?/,k=/^(`+)\\s*([\\s\\S]*?[^`])\\s*\\1(?!`)/,x=/^(?:\\n *)*\\n/,b=/\\r\\n?/g,v=/^\\[\\^([^\\]]+)](:(.*)((\\n+ {4,}.*)|(\\n(?!\\[\\^).+))*)/,S=/^\\[\\^([^\\]]+)]/,C=/\\f/g,$=/^---[ \\t]*\\n(.|\\n)*\\n---[ \\t]*\\n/,E=/^\\s*?\\[(x|\\s)\\]/,w=/^ *(#{1,6}) *([^\\n]+?)(?: +#*)?(?:\\n *)*(?:\\n|$)/,z=/^ *(#{1,6}) +([^\\n]+?)(?: +#*)?(?:\\n *)*(?:\\n|$)/,L=/^([^\\n]+)\\n *(=|-){3,} *(?:\\n *)+\\n/,A=/^ *(?!<[a-z][^ >/]* ?\\/>)<([a-z][^ >/]*) ?((?:[^>]*[^/])?)>\\n?(\\s*(?:<\\1[^>]*?>[\\s\\S]*?<\\/\\1>|(?!<\\1\\b)[\\s\\S])*?)<\\/\\1>(?!<\\/\\1>)\\n*/i,T=/&([a-z0-9]+|#[0-9]{1,6}|#x[0-9a-fA-F]{1,6});/gi,O=/^<!--[\\s\\S]*?(?:-->)/,B=/^(data|aria|x)-[a-z_][a-z\\d_.-]*$/,M=/^ *<([a-z][a-z0-9:]*)(?:\\s+((?:<.*?>|[^>])*))?\\/?>(?!<\\/\\1>)(\\s*\\n)?/i,R=/^\\{.*\\}$/,I=/^(https?:\\/\\/[^\\s<]+[^<.,:;\"')\\]\\s])/,U=/^<([^ >]+@[^ >]+)>/,D=/^<([^ >]+:\\/[^ >]+)>/,N=/-([a-z])?/gi,j=/^(\\|.*)\\n(?: *(\\|? *[-:]+ *\\|[-| :]*)\\n((?:.*\\|.*\\n)*))?\\n?/,H=/^\\[([^\\]]*)\\]:\\s+<?([^\\s>]+)>?\\s*(\"([^\"]*)\")?/,P=/^!\\[([^\\]]*)\\] ?\\[([^\\]]*)\\]/,F=/^\\[([^\\]]*)\\] ?\\[([^\\]]*)\\]/,_=/(\\n|^[-*]\\s|^#|^ {2,}|^-{2,}|^>\\s)/,G=/\\t/g,W=/(^ *\\||\\| *$)/g,Z=/^ *:-+: *$/,q=/^ *:-+ *$/,Q=/^ *-+: *$/,V=\"((?:\\\\[.*?\\\\][([].*?[)\\\\]]|<.*?>(?:.*?<.*?>)?|`.*?`|~~.*?~~|==.*?==|.|\\\\n)*?)\",X=new RegExp(`^([*_])\\\\1${V}\\\\1\\\\1(?!\\\\1)`),J=new RegExp(`^([*_])${V}\\\\1(?!\\\\1|\\\\w)`),K=new RegExp(`^==${V}==`),Y=new RegExp(`^~~${V}~~`),ee=/^\\\\([^0-9A-Za-z\\s])/,te=/^[\\s\\S]+?(?=[^0-9A-Z\\s\\u00c0-\\uffff&#;.()'\"]|\\d+\\.|\\n\\n| {2,}\\n|\\w+:\\S|$)/i,ne=/^\\n+/,re=/^([ \\t]*)/,ie=/\\\\([^\\\\])/g,le=/ *\\n+$/,ae=/(?:^|\\n)( *)$/,oe=\"(?:\\\\d+\\\\.)\",ce=\"(?:[*+-])\";function se(e2){return \"( *)(\"+(e2===1?oe:ce)+\") +\"}var de=se(1),pe=se(2);function ue(e2){return new RegExp(\"^\"+(e2===1?de:pe))}var fe=ue(1),he=ue(2);function me(e2){return new RegExp(\"^\"+(e2===1?de:pe)+\"[^\\\\n]*(?:\\\\n(?!\\\\1\"+(e2===1?oe:ce)+\" )[^\\\\n]*)*(\\\\n|$)\",\"gm\")}var ge=me(1),ye=me(2);function ke(e2){let t2=e2===1?oe:ce;return new RegExp(\"^( *)(\"+t2+\") [\\\\s\\\\S]+?(?:\\\\n{2,}(?! )(?!\\\\1\"+t2+\" (?!\"+t2+\" ))\\\\n*|\\\\s*\\\\n*$)\")}var xe=ke(1),be=ke(2);function ve(e2,t2){let n2=t2===1,i2=n2?xe:be,l2=n2?ge:ye,a2=n2?fe:he;return {match(e3,t3){let n3=ae.exec(t3.prevCapture);return n3&&(t3.list||!t3.inline&&!t3.simple)?i2.exec(e3=n3[1]+e3):null},order:1,parse(e3,t3,r2){let i3=n2?+e3[2]:void 0,o2=e3[0].replace(d,`\n`).match(l2),c2=!1;return {items:o2.map(function(e4,n3){let i4=a2.exec(e4)[0].length,l3=new RegExp(\"^ {1,\"+i4+\"}\",\"gm\"),s2=e4.replace(l3,\"\").replace(a2,\"\"),d2=n3===o2.length-1,p2=s2.indexOf(`\n\n`)!==-1||d2&&c2;c2=p2;let u2=r2.inline,f3=r2.list,h2;r2.list=!0,p2?(r2.inline=!1,h2=s2.replace(le,`\n\n`)):(r2.inline=!0,h2=s2.replace(le,\"\"));let m2=t3(h2,r2);return r2.inline=u2,r2.list=f3,m2}),ordered:n2,start:i3}},render:(t3,n3,i3)=>e2(t3.ordered?\"ol\":\"ul\",{key:i3.key,start:t3.type===r.orderedList?t3.start:void 0},t3.items.map(function(t4,r2){return e2(\"li\",{key:r2},n3(t4,i3))}))}}var Se=new RegExp(`^\\\\[((?:\\\\[[^\\\\]]*\\\\]|[^\\\\[\\\\]]|\\\\](?=[^\\\\[]*\\\\]))*)\\\\]\\\\(\\\\s*<?((?:\\\\([^)]*\\\\)|[^\\\\s\\\\\\\\]|\\\\\\\\.)*?)>?(?:\\\\s+['\"]([\\\\s\\\\S]*?)['\"])?\\\\s*\\\\)`),Ce=/^!\\[(.*?)\\]\\( *((?:\\([^)]*\\)|[^() ])*) *\"?([^)\"]*)?\"?\\)/,$e=[p,g,y,w,L,z,O,j,ge,xe,ye,be],Ee=[...$e,/^[^\\n]+(?: \\n|\\n{2,})/,A,M];function we(e2){return e2.replace(/[ÀÁÂÃÄÅàáâãä忯]/g,\"a\").replace(/[çÇ]/g,\"c\").replace(/[ðÐ]/g,\"d\").replace(/[ÈÉÊËéèêë]/g,\"e\").replace(/[ÏïÎîÍíÌì]/g,\"i\").replace(/[Ññ]/g,\"n\").replace(/[øØœŒÕõÔôÓóÒò]/g,\"o\").replace(/[ÜüÛûÚúÙù]/g,\"u\").replace(/[ŸÿÝý]/g,\"y\").replace(/[^a-z0-9- ]/gi,\"\").replace(/ /gi,\"-\").toLowerCase()}function ze(e2){return Q.test(e2)?\"right\":Z.test(e2)?\"center\":q.test(e2)?\"left\":null}function Le(e2,t2,n2,i2){let l2=n2.inTable;n2.inTable=!0;let a2=e2.trim().split(/( *(?:`[^`]*`|\\\\\\||\\|) *)/).reduce((e3,l3)=>(l3.trim()===\"|\"?e3.push(i2?{type:r.tableSeparator}:{type:r.text,text:l3}):l3!==\"\"&&e3.push.apply(e3,t2(l3,n2)),e3),[]);n2.inTable=l2;let o2=[[]];return a2.forEach(function(e3,t3){e3.type===r.tableSeparator?t3!==0&&t3!==a2.length-1&&o2.push([]):(e3.type!==r.text||a2[t3+1]!=null&&a2[t3+1].type!==r.tableSeparator||(e3.text=e3.text.trimEnd()),o2[o2.length-1].push(e3));}),o2}function Ae(e2,t2,n2){n2.inline=!0;let i2=e2[2]?e2[2].replace(W,\"\").split(\"|\").map(ze):[],l2=e2[3]?function(e3,t3,n3){return e3.trim().split(`\n`).map(function(e4){return Le(e4,t3,n3,!0)})}(e2[3],t2,n2):[],a2=Le(e2[1],t2,n2,!!l2.length);return n2.inline=!1,l2.length?{align:i2,cells:l2,header:a2,type:r.table}:{children:a2,type:r.paragraph}}function Te(e2,t2){return e2.align[t2]==null?{}:{textAlign:e2.align[t2]}}function Oe(e2){return function(t2,n2){return n2.inline?e2.exec(t2):null}}function Be(e2){return function(t2,n2){return n2.inline||n2.simple?e2.exec(t2):null}}function Me(e2){return function(t2,n2){return n2.inline||n2.simple?null:e2.exec(t2)}}function Re(e2){return function(t2){return e2.exec(t2)}}function Ie(e2,t2){if(t2.inline||t2.simple)return null;let n2=\"\";e2.split(`\n`).every(e3=>!$e.some(t3=>t3.test(e3))&&(n2+=e3+`\n`,e3.trim()));let r2=n2.trimEnd();return r2==\"\"?null:[n2,r2]}function Ue(e2){try{if(decodeURIComponent(e2).replace(/[^A-Za-z0-9/:]/g,\"\").match(/^\\s*(javascript|vbscript|data(?!:image)):/i))return null}catch{return null}return e2}function De(e2){return e2.replace(ie,\"$1\")}function Ne(e2,t2,n2){let r2=n2.inline||!1,i2=n2.simple||!1;n2.inline=!0,n2.simple=!0;let l2=e2(t2,n2);return n2.inline=r2,n2.simple=i2,l2}function je(e2,t2,n2){let r2=n2.inline||!1,i2=n2.simple||!1;n2.inline=!1,n2.simple=!0;let l2=e2(t2,n2);return n2.inline=r2,n2.simple=i2,l2}function He(e2,t2,n2){let r2=n2.inline||!1;n2.inline=!1;let i2=e2(t2,n2);return n2.inline=r2,i2}var Pe=(e2,t2,n2)=>({children:Ne(t2,e2[1],n2)});function Fe(){return {}}function _e(){return null}function Ge(...e2){return e2.filter(Boolean).join(\" \")}function We(e2,t2,n2){let r2=e2,i2=t2.split(\".\");for(;i2.length&&(r2=r2[i2[0]],r2!==void 0);)i2.shift();return r2||n2}function Ze(n2=\"\",i2={}){function d2(e2,n3,...r2){let l2=We(i2.overrides,`${e2}.props`,{});return i2.createElement(function(e3,t2){let n4=We(t2,e3);return n4?typeof n4==\"function\"||typeof n4==\"object\"&&\"render\"in n4?n4:We(t2,`${e3}.component`,e3):e3}(e2,i2.overrides),t({},n3,l2,{className:Ge(n3?.className,l2.className)||void 0}),...r2)}function W2(e2){e2=e2.replace($,\"\");let t2=!1;i2.forceInline?t2=!0:i2.forceBlock||(t2=_.test(e2)===!1);let n3=le2(ie2(t2?e2:`${e2.trimEnd().replace(ne,\"\")}\n\n`,{inline:t2}));for(;typeof n3[n3.length-1]==\"string\"&&!n3[n3.length-1].trim();)n3.pop();if(i2.wrapper===null)return n3;let r2=i2.wrapper||(t2?\"span\":\"div\"),l2;if(n3.length>1||i2.forceWrapper)l2=n3;else {if(n3.length===1)return l2=n3[0],typeof l2==\"string\"?d2(\"span\",{key:\"outer\"},l2):l2;l2=null;}return i2.createElement(r2,{key:\"outer\"},l2)}function Z2(e2,t2){let n3=t2.match(c);return n3?n3.reduce(function(t3,n4){let r2=n4.indexOf(\"=\");if(r2!==-1){let a2=function(e3){return e3.indexOf(\"-\")!==-1&&e3.match(B)===null&&(e3=e3.replace(N,function(e4,t4){return t4.toUpperCase()})),e3}(n4.slice(0,r2)).trim(),o2=function(e3){let t4=e3[0];return (t4==='\"'||t4===\"'\")&&e3.length>=2&&e3[e3.length-1]===t4?e3.slice(1,-1):e3}(n4.slice(r2+1).trim()),c2=l[a2]||a2;if(c2===\"ref\")return t3;let s2=t3[c2]=function(e3,t4,n5,r3){return t4===\"style\"?n5.split(/;\\s?/).reduce(function(e4,t5){let n6=t5.slice(0,t5.indexOf(\":\"));return e4[n6.trim().replace(/(-[a-z])/g,e5=>e5[1].toUpperCase())]=t5.slice(n6.length+1).trim(),e4},{}):t4===\"href\"||t4===\"src\"?r3(n5,e3,t4):(n5.match(R)&&(n5=n5.slice(1,n5.length-1)),n5===\"true\"||n5!==\"false\"&&n5)}(e2,a2,o2,i2.sanitizer);typeof s2==\"string\"&&(A.test(s2)||M.test(s2))&&(t3[c2]=W2(s2.trim()));}else n4!==\"style\"&&(t3[l[n4]||n4]=!0);return t3},{}):null}i2.overrides=i2.overrides||{},i2.sanitizer=i2.sanitizer||Ue,i2.slugify=i2.slugify||we,i2.namedCodesToUnicode=i2.namedCodesToUnicode?t({},a,i2.namedCodesToUnicode):a,i2.createElement=i2.createElement||React15.createElement;let q2=[],Q2={},V2={[r.blockQuote]:{match:Me(p),order:1,parse(e2,t2,n3){let[,r2,i3]=e2[0].replace(u,\"\").match(f2);return {alert:r2,children:t2(i3,n3)}},render(e2,t2,n3){let l2={key:n3.key};return e2.alert&&(l2.className=\"markdown-alert-\"+i2.slugify(e2.alert.toLowerCase(),we),e2.children.unshift({attrs:{},children:[{type:r.text,text:e2.alert}],noInnerParse:!0,type:r.htmlBlock,tag:\"header\"})),d2(\"blockquote\",l2,t2(e2.children,n3))}},[r.breakLine]:{match:Re(h),order:1,parse:Fe,render:(e2,t2,n3)=>d2(\"br\",{key:n3.key})},[r.breakThematic]:{match:Me(m),order:1,parse:Fe,render:(e2,t2,n3)=>d2(\"hr\",{key:n3.key})},[r.codeBlock]:{match:Me(y),order:0,parse:e2=>({lang:void 0,text:e2[0].replace(/^ {4}/gm,\"\").replace(/\\n+$/,\"\")}),render:(e2,n3,r2)=>d2(\"pre\",{key:r2.key},d2(\"code\",t({},e2.attrs,{className:e2.lang?`lang-${e2.lang}`:\"\"}),e2.text))},[r.codeFenced]:{match:Me(g),order:0,parse:e2=>({attrs:Z2(\"code\",e2[3]||\"\"),lang:e2[2]||void 0,text:e2[4],type:r.codeBlock})},[r.codeInline]:{match:Be(k),order:3,parse:e2=>({text:e2[2]}),render:(e2,t2,n3)=>d2(\"code\",{key:n3.key},e2.text)},[r.footnote]:{match:Me(v),order:0,parse:e2=>(q2.push({footnote:e2[2],identifier:e2[1]}),{}),render:_e},[r.footnoteReference]:{match:Oe(S),order:1,parse:e2=>({target:`#${i2.slugify(e2[1],we)}`,text:e2[1]}),render:(e2,t2,n3)=>d2(\"a\",{key:n3.key,href:i2.sanitizer(e2.target,\"a\",\"href\")},d2(\"sup\",{key:n3.key},e2.text))},[r.gfmTask]:{match:Oe(E),order:1,parse:e2=>({completed:e2[1].toLowerCase()===\"x\"}),render:(e2,t2,n3)=>d2(\"input\",{checked:e2.completed,key:n3.key,readOnly:!0,type:\"checkbox\"})},[r.heading]:{match:Me(i2.enforceAtxHeadings?z:w),order:1,parse:(e2,t2,n3)=>({children:Ne(t2,e2[2],n3),id:i2.slugify(e2[2],we),level:e2[1].length}),render:(e2,t2,n3)=>d2(`h${e2.level}`,{id:e2.id,key:n3.key},t2(e2.children,n3))},[r.headingSetext]:{match:Me(L),order:0,parse:(e2,t2,n3)=>({children:Ne(t2,e2[1],n3),level:e2[2]===\"=\"?1:2,type:r.heading})},[r.htmlBlock]:{match:Re(A),order:1,parse(e2,t2,n3){let[,r2]=e2[3].match(re),i3=new RegExp(`^${r2}`,\"gm\"),l2=e2[3].replace(i3,\"\"),a2=(c2=l2,Ee.some(e3=>e3.test(c2))?He:Ne);var c2;let s2=e2[1].toLowerCase(),d3=o.indexOf(s2)!==-1,p2=(d3?s2:e2[1]).trim(),u2={attrs:Z2(p2,e2[2]),noInnerParse:d3,tag:p2};return n3.inAnchor=n3.inAnchor||s2===\"a\",d3?u2.text=e2[3]:u2.children=a2(t2,l2,n3),n3.inAnchor=!1,u2},render:(e2,n3,r2)=>d2(e2.tag,t({key:r2.key},e2.attrs),e2.text||(e2.children?n3(e2.children,r2):\"\"))},[r.htmlSelfClosing]:{match:Re(M),order:1,parse(e2){let t2=e2[1].trim();return {attrs:Z2(t2,e2[2]||\"\"),tag:t2}},render:(e2,n3,r2)=>d2(e2.tag,t({},e2.attrs,{key:r2.key}))},[r.htmlComment]:{match:Re(O),order:1,parse:()=>({}),render:_e},[r.image]:{match:Be(Ce),order:1,parse:e2=>({alt:e2[1],target:De(e2[2]),title:e2[3]}),render:(e2,t2,n3)=>d2(\"img\",{key:n3.key,alt:e2.alt||void 0,title:e2.title||void 0,src:i2.sanitizer(e2.target,\"img\",\"src\")})},[r.link]:{match:Oe(Se),order:3,parse:(e2,t2,n3)=>({children:je(t2,e2[1],n3),target:De(e2[2]),title:e2[3]}),render:(e2,t2,n3)=>d2(\"a\",{key:n3.key,href:i2.sanitizer(e2.target,\"a\",\"href\"),title:e2.title},t2(e2.children,n3))},[r.linkAngleBraceStyleDetector]:{match:Oe(D),order:0,parse:e2=>({children:[{text:e2[1],type:r.text}],target:e2[1],type:r.link})},[r.linkBareUrlDetector]:{match:(e2,t2)=>t2.inAnchor||i2.disableAutoLink?null:Oe(I)(e2,t2),order:0,parse:e2=>({children:[{text:e2[1],type:r.text}],target:e2[1],title:void 0,type:r.link})},[r.linkMailtoDetector]:{match:Oe(U),order:0,parse(e2){let t2=e2[1],n3=e2[1];return s.test(n3)||(n3=\"mailto:\"+n3),{children:[{text:t2.replace(\"mailto:\",\"\"),type:r.text}],target:n3,type:r.link}}},[r.orderedList]:ve(d2,1),[r.unorderedList]:ve(d2,2),[r.newlineCoalescer]:{match:Me(x),order:3,parse:Fe,render:()=>`\n`},[r.paragraph]:{match:Ie,order:3,parse:Pe,render:(e2,t2,n3)=>d2(\"p\",{key:n3.key},t2(e2.children,n3))},[r.ref]:{match:Oe(H),order:0,parse:e2=>(Q2[e2[1]]={target:e2[2],title:e2[4]},{}),render:_e},[r.refImage]:{match:Be(P),order:0,parse:e2=>({alt:e2[1]||void 0,ref:e2[2]}),render:(e2,t2,n3)=>Q2[e2.ref]?d2(\"img\",{key:n3.key,alt:e2.alt,src:i2.sanitizer(Q2[e2.ref].target,\"img\",\"src\"),title:Q2[e2.ref].title}):null},[r.refLink]:{match:Oe(F),order:0,parse:(e2,t2,n3)=>({children:t2(e2[1],n3),fallbackChildren:e2[0],ref:e2[2]}),render:(e2,t2,n3)=>Q2[e2.ref]?d2(\"a\",{key:n3.key,href:i2.sanitizer(Q2[e2.ref].target,\"a\",\"href\"),title:Q2[e2.ref].title},t2(e2.children,n3)):d2(\"span\",{key:n3.key},e2.fallbackChildren)},[r.table]:{match:Me(j),order:1,parse:Ae,render(e2,t2,n3){let r2=e2;return d2(\"table\",{key:n3.key},d2(\"thead\",null,d2(\"tr\",null,r2.header.map(function(e3,i3){return d2(\"th\",{key:i3,style:Te(r2,i3)},t2(e3,n3))}))),d2(\"tbody\",null,r2.cells.map(function(e3,i3){return d2(\"tr\",{key:i3},e3.map(function(e4,i4){return d2(\"td\",{key:i4,style:Te(r2,i4)},t2(e4,n3))}))})))}},[r.text]:{match:Re(te),order:4,parse:e2=>({text:e2[0].replace(T,(e3,t2)=>i2.namedCodesToUnicode[t2]?i2.namedCodesToUnicode[t2]:e3)}),render:e2=>e2.text},[r.textBolded]:{match:Be(X),order:2,parse:(e2,t2,n3)=>({children:t2(e2[2],n3)}),render:(e2,t2,n3)=>d2(\"strong\",{key:n3.key},t2(e2.children,n3))},[r.textEmphasized]:{match:Be(J),order:3,parse:(e2,t2,n3)=>({children:t2(e2[2],n3)}),render:(e2,t2,n3)=>d2(\"em\",{key:n3.key},t2(e2.children,n3))},[r.textEscaped]:{match:Be(ee),order:1,parse:e2=>({text:e2[1],type:r.text})},[r.textMarked]:{match:Be(K),order:3,parse:Pe,render:(e2,t2,n3)=>d2(\"mark\",{key:n3.key},t2(e2.children,n3))},[r.textStrikethroughed]:{match:Be(Y),order:3,parse:Pe,render:(e2,t2,n3)=>d2(\"del\",{key:n3.key},t2(e2.children,n3))}};i2.disableParsingRawHTML===!0&&(delete V2[r.htmlBlock],delete V2[r.htmlSelfClosing]);let ie2=function(e2){let t2=Object.keys(e2);function n3(r2,i3){let l2=[];for(i3.prevCapture=i3.prevCapture||\"\";r2;){let a2=0;for(;a2<t2.length;){let o2=t2[a2],c2=e2[o2],s2=c2.match(r2,i3);if(s2){let e3=s2[0];i3.prevCapture+=e3,r2=r2.substring(e3.length);let t3=c2.parse(s2,n3,i3);t3.type==null&&(t3.type=o2),l2.push(t3);break}a2++;}}return i3.prevCapture=\"\",l2}return t2.sort(function(t3,n4){let r2=e2[t3].order,i3=e2[n4].order;return r2!==i3?r2-i3:t3<n4?-1:1}),function(e3,t3){return n3(function(e4){return e4.replace(b,`\n`).replace(C,\"\").replace(G,\" \")}(e3),t3)}}(V2),le2=(ae2=function(e2,t2){return function(n3,r2,i3){let l2=e2[n3.type].render;return t2?t2(()=>l2(n3,r2,i3),n3,r2,i3):l2(n3,r2,i3)}}(V2,i2.renderRule),function e2(t2,n3={}){if(Array.isArray(t2)){let r2=n3.key,i3=[],l2=!1;for(let r3=0;r3<t2.length;r3++){n3.key=r3;let a2=e2(t2[r3],n3),o2=typeof a2==\"string\";o2&&l2?i3[i3.length-1]+=a2:a2!==null&&i3.push(a2),l2=o2;}return n3.key=r2,i3}return ae2(t2,e2,n3)});var ae2;let oe2=W2(n2);return q2.length?d2(\"div\",null,oe2,d2(\"footer\",{key:\"footer\"},q2.map(function(e2){return d2(\"div\",{id:i2.slugify(e2.identifier,we),key:e2.identifier},e2.identifier,le2(ie2(e2.footnote,{inline:!0})))}))):oe2}var index_modern_default=t2=>{let{children:r2=\"\",options:i2}=t2,l2=function(e2,t3){if(e2==null)return {};var n2,r3,i3={},l3=Object.keys(e2);for(r3=0;r3<l3.length;r3++)t3.indexOf(n2=l3[r3])>=0||(i3[n2]=e2[n2]);return i3}(t2,n);return React15.cloneElement(Ze(r2,i2),l2)};var Label=styled.label(({theme})=>({lineHeight:\"18px\",alignItems:\"center\",marginBottom:8,display:\"inline-block\",position:\"relative\",whiteSpace:\"nowrap\",background:theme.boolean.background,borderRadius:\"3em\",padding:1,'&[aria-disabled=\"true\"]':{opacity:.5,input:{cursor:\"not-allowed\"}},input:{appearance:\"none\",width:\"100%\",height:\"100%\",position:\"absolute\",left:0,top:0,margin:0,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\",borderRadius:\"3em\",\"&:focus\":{outline:\"none\",boxShadow:`${theme.color.secondary} 0 0 0 1px inset !important`}},span:{textAlign:\"center\",fontSize:theme.typography.size.s1,fontWeight:theme.typography.weight.bold,lineHeight:\"1\",cursor:\"pointer\",display:\"inline-block\",padding:\"7px 15px\",transition:\"all 100ms ease-out\",userSelect:\"none\",borderRadius:\"3em\",color:curriedTransparentize$1(.5,theme.color.defaultText),background:\"transparent\",\"&:hover\":{boxShadow:`${curriedOpacify$1(.3,theme.appBorderColor)} 0 0 0 1px inset`},\"&:active\":{boxShadow:`${curriedOpacify$1(.05,theme.appBorderColor)} 0 0 0 2px inset`,color:curriedOpacify$1(1,theme.appBorderColor)},\"&:first-of-type\":{paddingRight:8},\"&:last-of-type\":{paddingLeft:8}},\"input:checked ~ span:last-of-type, input:not(:checked) ~ span:first-of-type\":{background:theme.boolean.selectedBackground,boxShadow:theme.base===\"light\"?`${curriedOpacify$1(.1,theme.appBorderColor)} 0 0 2px`:`${theme.appBorderColor} 0 0 0 1px`,color:theme.color.defaultText,padding:\"7px 15px\"}})),parse=value3=>value3===\"true\",BooleanControl=({name:name2,value:value3,onChange,onBlur,onFocus,argType})=>{let onSetFalse=useCallback(()=>onChange(!1),[onChange]),readonly=!!argType?.table?.readonly;if(value3===void 0)return React15__default.createElement(Button,{variant:\"outline\",size:\"medium\",id:getControlSetterButtonId(name2),onClick:onSetFalse,disabled:readonly},\"Set boolean\");let controlId=getControlId(name2),parsedValue=typeof value3==\"string\"?parse(value3):value3;return React15__default.createElement(Label,{\"aria-disabled\":readonly,htmlFor:controlId,\"aria-label\":name2},React15__default.createElement(\"input\",{id:controlId,type:\"checkbox\",onChange:e2=>onChange(e2.target.checked),checked:parsedValue,role:\"switch\",disabled:readonly,name:name2,onBlur,onFocus}),React15__default.createElement(\"span\",{\"aria-hidden\":\"true\"},\"False\"),React15__default.createElement(\"span\",{\"aria-hidden\":\"true\"},\"True\"))};var parseDate=value3=>{let[year,month,day]=value3.split(\"-\"),result2=new Date;return result2.setFullYear(parseInt(year,10),parseInt(month,10)-1,parseInt(day,10)),result2},parseTime=value3=>{let[hours,minutes]=value3.split(\":\"),result2=new Date;return result2.setHours(parseInt(hours,10)),result2.setMinutes(parseInt(minutes,10)),result2},formatDate=value3=>{let date=new Date(value3),year=`000${date.getFullYear()}`.slice(-4),month=`0${date.getMonth()+1}`.slice(-2),day=`0${date.getDate()}`.slice(-2);return `${year}-${month}-${day}`},formatTime=value3=>{let date=new Date(value3),hours=`0${date.getHours()}`.slice(-2),minutes=`0${date.getMinutes()}`.slice(-2);return `${hours}:${minutes}`},FormInput=styled(Form.Input)(({readOnly})=>({opacity:readOnly?.5:1})),FlexSpaced=styled.div(({theme})=>({flex:1,display:\"flex\",input:{marginLeft:10,flex:1,height:32,\"&::-webkit-calendar-picker-indicator\":{opacity:.5,height:12,filter:theme.base===\"light\"?void 0:\"invert(1)\"}},\"input:first-of-type\":{marginLeft:0,flexGrow:4},\"input:last-of-type\":{flexGrow:3}})),DateControl=({name:name2,value:value3,onChange,onFocus,onBlur,argType})=>{let[valid,setValid]=useState(!0),dateRef=useRef(),timeRef=useRef(),readonly=!!argType?.table?.readonly;useEffect(()=>{valid!==!1&&(dateRef&&dateRef.current&&(dateRef.current.value=value3?formatDate(value3):\"\"),timeRef&&timeRef.current&&(timeRef.current.value=value3?formatTime(value3):\"\"));},[value3]);let onDateChange=e2=>{if(!e2.target.value)return onChange();let parsed=parseDate(e2.target.value),result2=new Date(value3);result2.setFullYear(parsed.getFullYear(),parsed.getMonth(),parsed.getDate());let time=result2.getTime();time&&onChange(time),setValid(!!time);},onTimeChange=e2=>{if(!e2.target.value)return onChange();let parsed=parseTime(e2.target.value),result2=new Date(value3);result2.setHours(parsed.getHours()),result2.setMinutes(parsed.getMinutes());let time=result2.getTime();time&&onChange(time),setValid(!!time);},controlId=getControlId(name2);return React15__default.createElement(FlexSpaced,null,React15__default.createElement(FormInput,{type:\"date\",max:\"9999-12-31\",ref:dateRef,id:`${controlId}-date`,name:`${controlId}-date`,readOnly:readonly,onChange:onDateChange,onFocus,onBlur}),React15__default.createElement(FormInput,{type:\"time\",id:`${controlId}-time`,name:`${controlId}-time`,ref:timeRef,onChange:onTimeChange,readOnly:readonly,onFocus,onBlur}),valid?null:React15__default.createElement(\"div\",null,\"invalid\"))};var Wrapper3=styled.label({display:\"flex\"}),parse2=value3=>{let result2=parseFloat(value3);return Number.isNaN(result2)?void 0:result2},format2=value3=>value3!=null?String(value3):\"\",FormInput2=styled(Form.Input)(({readOnly})=>({opacity:readOnly?.5:1})),NumberControl=({name:name2,value:value3,onChange,min,max,step,onBlur,onFocus,argType})=>{let[inputValue,setInputValue]=useState(typeof value3==\"number\"?value3:\"\"),[forceVisible,setForceVisible]=useState(!1),[parseError,setParseError]=useState(null),readonly=!!argType?.table?.readonly,handleChange=useCallback(event=>{setInputValue(event.target.value);let result2=parseFloat(event.target.value);Number.isNaN(result2)?setParseError(new Error(`'${event.target.value}' is not a number`)):(onChange(result2),setParseError(null));},[onChange,setParseError]),onForceVisible=useCallback(()=>{setInputValue(\"0\"),onChange(0),setForceVisible(!0);},[setForceVisible]),htmlElRef=useRef(null);return useEffect(()=>{forceVisible&&htmlElRef.current&&htmlElRef.current.select();},[forceVisible]),useEffect(()=>{inputValue!==(typeof value3==\"number\"?value3:\"\")&&setInputValue(value3);},[value3]),value3===void 0?React15__default.createElement(Button,{variant:\"outline\",size:\"medium\",id:getControlSetterButtonId(name2),onClick:onForceVisible,disabled:readonly},\"Set number\"):React15__default.createElement(Wrapper3,null,React15__default.createElement(FormInput2,{ref:htmlElRef,id:getControlId(name2),type:\"number\",onChange:handleChange,size:\"flex\",placeholder:\"Edit number...\",value:inputValue,valid:parseError?\"error\":null,autoFocus:forceVisible,readOnly:readonly,name:name2,min,max,step,onFocus,onBlur}))};var selectedKey=(value3,options2)=>{let entry=options2&&Object.entries(options2).find(([_key,val])=>val===value3);return entry?entry[0]:void 0},selectedKeys=(value3,options2)=>value3&&options2?Object.entries(options2).filter(entry=>value3.includes(entry[1])).map(entry=>entry[0]):[],selectedValues=(keys,options2)=>keys&&options2&&keys.map(key2=>options2[key2]);var Wrapper4=styled.div(({isInline})=>isInline?{display:\"flex\",flexWrap:\"wrap\",alignItems:\"flex-start\",label:{display:\"inline-flex\",marginRight:15}}:{label:{display:\"flex\"}},props=>{if(props[\"aria-readonly\"]===\"true\")return {input:{cursor:\"not-allowed\"}}}),Text=styled.span({\"[aria-readonly=true] &\":{opacity:.5}}),Label2=styled.label({lineHeight:\"20px\",alignItems:\"center\",marginBottom:8,\"&:last-child\":{marginBottom:0},input:{margin:0,marginRight:6}}),CheckboxControl=({name:name2,options:options2,value:value3,onChange,isInline,argType})=>{if(!options2)return logger.warn(`Checkbox with no options: ${name2}`),React15__default.createElement(React15__default.Fragment,null,\"-\");let initial=selectedKeys(value3,options2),[selected,setSelected]=useState(initial),readonly=!!argType?.table?.readonly,handleChange=e2=>{let option=e2.target.value,updated=[...selected];updated.includes(option)?updated.splice(updated.indexOf(option),1):updated.push(option),onChange(selectedValues(updated,options2)),setSelected(updated);};useEffect(()=>{setSelected(selectedKeys(value3,options2));},[value3]);let controlId=getControlId(name2);return React15__default.createElement(Wrapper4,{\"aria-readonly\":readonly,isInline},Object.keys(options2).map((key2,index)=>{let id=`${controlId}-${index}`;return React15__default.createElement(Label2,{key:id,htmlFor:id},React15__default.createElement(\"input\",{type:\"checkbox\",disabled:readonly,id,name:id,value:key2,onChange:handleChange,checked:selected?.includes(key2)}),React15__default.createElement(Text,null,key2))}))};var Wrapper5=styled.div(({isInline})=>isInline?{display:\"flex\",flexWrap:\"wrap\",alignItems:\"flex-start\",label:{display:\"inline-flex\",marginRight:15}}:{label:{display:\"flex\"}},props=>{if(props[\"aria-readonly\"]===\"true\")return {input:{cursor:\"not-allowed\"}}}),Text2=styled.span({\"[aria-readonly=true] &\":{opacity:.5}}),Label3=styled.label({lineHeight:\"20px\",alignItems:\"center\",marginBottom:8,\"&:last-child\":{marginBottom:0},input:{margin:0,marginRight:6}}),RadioControl=({name:name2,options:options2,value:value3,onChange,isInline,argType})=>{if(!options2)return logger.warn(`Radio with no options: ${name2}`),React15__default.createElement(React15__default.Fragment,null,\"-\");let selection=selectedKey(value3,options2),controlId=getControlId(name2),readonly=!!argType?.table?.readonly;return React15__default.createElement(Wrapper5,{\"aria-readonly\":readonly,isInline},Object.keys(options2).map((key2,index)=>{let id=`${controlId}-${index}`;return React15__default.createElement(Label3,{key:id,htmlFor:id},React15__default.createElement(\"input\",{type:\"radio\",id,name:controlId,disabled:readonly,value:key2,onChange:e2=>onChange(options2[e2.currentTarget.value]),checked:key2===selection}),React15__default.createElement(Text2,null,key2))}))};var styleResets={appearance:\"none\",border:\"0 none\",boxSizing:\"inherit\",display:\" block\",margin:\" 0\",background:\"transparent\",padding:0,fontSize:\"inherit\",position:\"relative\"},OptionsSelect=styled.select(styleResets,({theme})=>({boxSizing:\"border-box\",position:\"relative\",padding:\"6px 10px\",width:\"100%\",color:theme.input.color||\"inherit\",background:theme.input.background,borderRadius:theme.input.borderRadius,boxShadow:`${theme.input.border} 0 0 0 1px inset`,fontSize:theme.typography.size.s2-1,lineHeight:\"20px\",\"&:focus\":{boxShadow:`${theme.color.secondary} 0 0 0 1px inset`,outline:\"none\"},\"&[disabled]\":{cursor:\"not-allowed\",opacity:.5},\"::placeholder\":{color:theme.textMutedColor},\"&[multiple]\":{overflow:\"auto\",padding:0,option:{display:\"block\",padding:\"6px 10px\",marginLeft:1,marginRight:1}}})),SelectWrapper=styled.span(({theme})=>({display:\"inline-block\",lineHeight:\"normal\",overflow:\"hidden\",position:\"relative\",verticalAlign:\"top\",width:\"100%\",svg:{position:\"absolute\",zIndex:1,pointerEvents:\"none\",height:\"12px\",marginTop:\"-6px\",right:\"12px\",top:\"50%\",fill:theme.textMutedColor,path:{fill:theme.textMutedColor}}})),NO_SELECTION=\"Choose option...\",SingleSelect=({name:name2,value:value3,options:options2,onChange,argType})=>{let handleChange=e2=>{onChange(options2[e2.currentTarget.value]);},selection=selectedKey(value3,options2)||NO_SELECTION,controlId=getControlId(name2),readonly=!!argType?.table?.readonly;return React15__default.createElement(SelectWrapper,null,React15__default.createElement(ChevronSmallDownIcon,null),React15__default.createElement(OptionsSelect,{disabled:readonly,id:controlId,value:selection,onChange:handleChange},React15__default.createElement(\"option\",{key:\"no-selection\",disabled:!0},NO_SELECTION),Object.keys(options2).map(key2=>React15__default.createElement(\"option\",{key:key2,value:key2},key2))))},MultiSelect=({name:name2,value:value3,options:options2,onChange,argType})=>{let handleChange=e2=>{let selection2=Array.from(e2.currentTarget.options).filter(option=>option.selected).map(option=>option.value);onChange(selectedValues(selection2,options2));},selection=selectedKeys(value3,options2),controlId=getControlId(name2),readonly=!!argType?.table?.readonly;return React15__default.createElement(SelectWrapper,null,React15__default.createElement(OptionsSelect,{disabled:readonly,id:controlId,multiple:!0,value:selection,onChange:handleChange},Object.keys(options2).map(key2=>React15__default.createElement(\"option\",{key:key2,value:key2},key2))))},SelectControl=props=>{let{name:name2,options:options2}=props;return options2?props.isMulti?React15__default.createElement(MultiSelect,{...props}):React15__default.createElement(SingleSelect,{...props}):(logger.warn(`Select with no options: ${name2}`),React15__default.createElement(React15__default.Fragment,null,\"-\"))};var normalizeOptions=(options2,labels)=>Array.isArray(options2)?options2.reduce((acc,item)=>(acc[labels?.[item]||String(item)]=item,acc),{}):options2,Controls={check:CheckboxControl,\"inline-check\":CheckboxControl,radio:RadioControl,\"inline-radio\":RadioControl,select:SelectControl,\"multi-select\":SelectControl},OptionsControl=props=>{let{type=\"select\",labels,argType}=props,normalized={...props,argType,options:argType?normalizeOptions(argType.options,labels):{},isInline:type.includes(\"inline\"),isMulti:type.includes(\"multi\")},Control=Controls[type];if(Control)return React15__default.createElement(Control,{...normalized});throw new Error(`Unknown options type: ${type}`)};var ERROR=\"Error\",OBJECT=\"Object\",ARRAY=\"Array\",STRING=\"String\",NUMBER=\"Number\",BOOLEAN=\"Boolean\",DATE=\"Date\",NULL=\"Null\",UNDEFINED=\"Undefined\",FUNCTION=\"Function\",SYMBOL=\"Symbol\";var ADD_DELTA_TYPE=\"ADD_DELTA_TYPE\",REMOVE_DELTA_TYPE=\"REMOVE_DELTA_TYPE\",UPDATE_DELTA_TYPE=\"UPDATE_DELTA_TYPE\";var VALUE=\"value\",KEY=\"key\";function getObjectType(obj){return obj!==null&&typeof obj==\"object\"&&!Array.isArray(obj)&&typeof obj[Symbol.iterator]==\"function\"?\"Iterable\":Object.prototype.toString.call(obj).slice(8,-1)}function isComponentWillChange(oldValue,newValue){let oldType=getObjectType(oldValue),newType=getObjectType(newValue);return (oldType===\"Function\"||newType===\"Function\")&&newType!==oldType}var JsonAddValue=class extends Component{constructor(props){super(props),this.state={inputRefKey:null,inputRefValue:null},this.refInputValue=this.refInputValue.bind(this),this.refInputKey=this.refInputKey.bind(this),this.onKeydown=this.onKeydown.bind(this),this.onSubmit=this.onSubmit.bind(this);}componentDidMount(){let{inputRefKey,inputRefValue}=this.state,{onlyValue}=this.props;inputRefKey&&typeof inputRefKey.focus==\"function\"&&inputRefKey.focus(),onlyValue&&inputRefValue&&typeof inputRefValue.focus==\"function\"&&inputRefValue.focus(),document.addEventListener(\"keydown\",this.onKeydown);}componentWillUnmount(){document.removeEventListener(\"keydown\",this.onKeydown);}onKeydown(event){event.altKey||event.ctrlKey||event.metaKey||event.shiftKey||event.repeat||((event.code===\"Enter\"||event.key===\"Enter\")&&(event.preventDefault(),this.onSubmit()),(event.code===\"Escape\"||event.key===\"Escape\")&&(event.preventDefault(),this.props.handleCancel()));}onSubmit(){let{handleAdd,onlyValue,onSubmitValueParser,keyPath,deep}=this.props,{inputRefKey,inputRefValue}=this.state,result2={};if(!onlyValue){if(!inputRefKey.value)return;result2.key=inputRefKey.value;}result2.newValue=onSubmitValueParser(!1,keyPath,deep,result2.key,inputRefValue.value),handleAdd(result2);}refInputKey(node){this.state.inputRefKey=node;}refInputValue(node){this.state.inputRefValue=node;}render(){let{handleCancel,onlyValue,addButtonElement,cancelButtonElement,inputElementGenerator,keyPath,deep}=this.props,addButtonElementLayout=cloneElement(addButtonElement,{onClick:this.onSubmit}),cancelButtonElementLayout=cloneElement(cancelButtonElement,{onClick:handleCancel}),inputElementValue=inputElementGenerator(VALUE,keyPath,deep),inputElementValueLayout=cloneElement(inputElementValue,{placeholder:\"Value\",ref:this.refInputValue}),inputElementKeyLayout=null;if(!onlyValue){let inputElementKey=inputElementGenerator(KEY,keyPath,deep);inputElementKeyLayout=cloneElement(inputElementKey,{placeholder:\"Key\",ref:this.refInputKey});}return React15__default.createElement(\"span\",{className:\"rejt-add-value-node\"},inputElementKeyLayout,inputElementValueLayout,cancelButtonElementLayout,addButtonElementLayout)}};JsonAddValue.defaultProps={onlyValue:!1,addButtonElement:React15__default.createElement(\"button\",null,\"+\"),cancelButtonElement:React15__default.createElement(\"button\",null,\"c\")};var JsonArray=class extends Component{constructor(props){super(props);let keyPath=[...props.keyPath,props.name];this.state={data:props.data,name:props.name,keyPath,deep:props.deep,nextDeep:props.deep+1,collapsed:props.isCollapsed(keyPath,props.deep,props.data),addFormVisible:!1},this.handleCollapseMode=this.handleCollapseMode.bind(this),this.handleRemoveItem=this.handleRemoveItem.bind(this),this.handleAddMode=this.handleAddMode.bind(this),this.handleAddValueAdd=this.handleAddValueAdd.bind(this),this.handleAddValueCancel=this.handleAddValueCancel.bind(this),this.handleEditValue=this.handleEditValue.bind(this),this.onChildUpdate=this.onChildUpdate.bind(this),this.renderCollapsed=this.renderCollapsed.bind(this),this.renderNotCollapsed=this.renderNotCollapsed.bind(this);}static getDerivedStateFromProps(props,state){return props.data!==state.data?{data:props.data}:null}onChildUpdate(childKey,childData){let{data,keyPath}=this.state;data[childKey]=childData,this.setState({data});let{onUpdate}=this.props,size=keyPath.length;onUpdate(keyPath[size-1],data);}handleAddMode(){this.setState({addFormVisible:!0});}handleCollapseMode(){this.setState(state=>({collapsed:!state.collapsed}));}handleRemoveItem(index){return ()=>{let{beforeRemoveAction,logger:logger4}=this.props,{data,keyPath,nextDeep:deep}=this.state,oldValue=data[index];beforeRemoveAction(index,keyPath,deep,oldValue).then(()=>{let deltaUpdateResult={keyPath,deep,key:index,oldValue,type:REMOVE_DELTA_TYPE};data.splice(index,1),this.setState({data});let{onUpdate,onDeltaUpdate}=this.props;onUpdate(keyPath[keyPath.length-1],data),onDeltaUpdate(deltaUpdateResult);}).catch(logger4.error);}}handleAddValueAdd({newValue}){let{data,keyPath,nextDeep:deep}=this.state,{beforeAddAction,logger:logger4}=this.props;beforeAddAction(data.length,keyPath,deep,newValue).then(()=>{let newData=[...data,newValue];this.setState({data:newData}),this.handleAddValueCancel();let{onUpdate,onDeltaUpdate}=this.props;onUpdate(keyPath[keyPath.length-1],newData),onDeltaUpdate({type:ADD_DELTA_TYPE,keyPath,deep,key:newData.length-1,newValue});}).catch(logger4.error);}handleAddValueCancel(){this.setState({addFormVisible:!1});}handleEditValue({key:key2,value:value3}){return new Promise((resolve,reject)=>{let{beforeUpdateAction}=this.props,{data,keyPath,nextDeep:deep}=this.state,oldValue=data[key2];beforeUpdateAction(key2,keyPath,deep,oldValue,value3).then(()=>{data[key2]=value3,this.setState({data});let{onUpdate,onDeltaUpdate}=this.props;onUpdate(keyPath[keyPath.length-1],data),onDeltaUpdate({type:UPDATE_DELTA_TYPE,keyPath,deep,key:key2,newValue:value3,oldValue}),resolve(void 0);}).catch(reject);})}renderCollapsed(){let{name:name2,data,keyPath,deep}=this.state,{handleRemove,readOnly,getStyle,dataType,minusMenuElement}=this.props,{minus,collapsed}=getStyle(name2,data,keyPath,deep,dataType),isReadOnly=readOnly(name2,data,keyPath,deep,dataType),removeItemButton=cloneElement(minusMenuElement,{onClick:handleRemove,className:\"rejt-minus-menu\",style:minus});return React15__default.createElement(\"span\",{className:\"rejt-collapsed\"},React15__default.createElement(\"span\",{className:\"rejt-collapsed-text\",style:collapsed,onClick:this.handleCollapseMode},\"[...] \",data.length,\" \",data.length===1?\"item\":\"items\"),!isReadOnly&&removeItemButton)}renderNotCollapsed(){let{name:name2,data,keyPath,deep,addFormVisible,nextDeep}=this.state,{isCollapsed,handleRemove,onDeltaUpdate,readOnly,getStyle,dataType,addButtonElement,cancelButtonElement,editButtonElement,inputElementGenerator,textareaElementGenerator,minusMenuElement,plusMenuElement,beforeRemoveAction,beforeAddAction,beforeUpdateAction,logger:logger4,onSubmitValueParser}=this.props,{minus,plus,delimiter,ul,addForm}=getStyle(name2,data,keyPath,deep,dataType),isReadOnly=readOnly(name2,data,keyPath,deep,dataType),addItemButton=cloneElement(plusMenuElement,{onClick:this.handleAddMode,className:\"rejt-plus-menu\",style:plus}),removeItemButton=cloneElement(minusMenuElement,{onClick:handleRemove,className:\"rejt-minus-menu\",style:minus});return React15__default.createElement(\"span\",{className:\"rejt-not-collapsed\"},React15__default.createElement(\"span\",{className:\"rejt-not-collapsed-delimiter\",style:delimiter},\"[\"),!addFormVisible&&addItemButton,React15__default.createElement(\"ul\",{className:\"rejt-not-collapsed-list\",style:ul},data.map((item,index)=>React15__default.createElement(JsonNode,{key:index,name:index.toString(),data:item,keyPath,deep:nextDeep,isCollapsed,handleRemove:this.handleRemoveItem(index),handleUpdateValue:this.handleEditValue,onUpdate:this.onChildUpdate,onDeltaUpdate,readOnly,getStyle,addButtonElement,cancelButtonElement,editButtonElement,inputElementGenerator,textareaElementGenerator,minusMenuElement,plusMenuElement,beforeRemoveAction,beforeAddAction,beforeUpdateAction,logger:logger4,onSubmitValueParser}))),!isReadOnly&&addFormVisible&&React15__default.createElement(\"div\",{className:\"rejt-add-form\",style:addForm},React15__default.createElement(JsonAddValue,{handleAdd:this.handleAddValueAdd,handleCancel:this.handleAddValueCancel,onlyValue:!0,addButtonElement,cancelButtonElement,inputElementGenerator,keyPath,deep,onSubmitValueParser})),React15__default.createElement(\"span\",{className:\"rejt-not-collapsed-delimiter\",style:delimiter},\"]\"),!isReadOnly&&removeItemButton)}render(){let{name:name2,collapsed,data,keyPath,deep}=this.state,{dataType,getStyle}=this.props,value3=collapsed?this.renderCollapsed():this.renderNotCollapsed(),style=getStyle(name2,data,keyPath,deep,dataType);return React15__default.createElement(\"div\",{className:\"rejt-array-node\"},React15__default.createElement(\"span\",{onClick:this.handleCollapseMode},React15__default.createElement(\"span\",{className:\"rejt-name\",style:style.name},name2,\" :\",\" \")),value3)}};JsonArray.defaultProps={keyPath:[],deep:0,minusMenuElement:React15__default.createElement(\"span\",null,\" - \"),plusMenuElement:React15__default.createElement(\"span\",null,\" + \")};var JsonFunctionValue=class extends Component{constructor(props){super(props);let keyPath=[...props.keyPath,props.name];this.state={value:props.value,name:props.name,keyPath,deep:props.deep,editEnabled:!1,inputRef:null},this.handleEditMode=this.handleEditMode.bind(this),this.refInput=this.refInput.bind(this),this.handleCancelEdit=this.handleCancelEdit.bind(this),this.handleEdit=this.handleEdit.bind(this),this.onKeydown=this.onKeydown.bind(this);}static getDerivedStateFromProps(props,state){return props.value!==state.value?{value:props.value}:null}componentDidUpdate(){let{editEnabled,inputRef,name:name2,value:value3,keyPath,deep}=this.state,{readOnly,dataType}=this.props,readOnlyResult=readOnly(name2,value3,keyPath,deep,dataType);editEnabled&&!readOnlyResult&&typeof inputRef.focus==\"function\"&&inputRef.focus();}componentDidMount(){document.addEventListener(\"keydown\",this.onKeydown);}componentWillUnmount(){document.removeEventListener(\"keydown\",this.onKeydown);}onKeydown(event){event.altKey||event.ctrlKey||event.metaKey||event.shiftKey||event.repeat||((event.code===\"Enter\"||event.key===\"Enter\")&&(event.preventDefault(),this.handleEdit()),(event.code===\"Escape\"||event.key===\"Escape\")&&(event.preventDefault(),this.handleCancelEdit()));}handleEdit(){let{handleUpdateValue,originalValue,logger:logger4,onSubmitValueParser,keyPath}=this.props,{inputRef,name:name2,deep}=this.state;if(!inputRef)return;let newValue=onSubmitValueParser(!0,keyPath,deep,name2,inputRef.value);handleUpdateValue({value:newValue,key:name2}).then(()=>{isComponentWillChange(originalValue,newValue)||this.handleCancelEdit();}).catch(logger4.error);}handleEditMode(){this.setState({editEnabled:!0});}refInput(node){this.state.inputRef=node;}handleCancelEdit(){this.setState({editEnabled:!1});}render(){let{name:name2,value:value3,editEnabled,keyPath,deep}=this.state,{handleRemove,originalValue,readOnly,dataType,getStyle,editButtonElement,cancelButtonElement,textareaElementGenerator,minusMenuElement,keyPath:comeFromKeyPath}=this.props,style=getStyle(name2,originalValue,keyPath,deep,dataType),result2=null,minusElement=null,resultOnlyResult=readOnly(name2,originalValue,keyPath,deep,dataType);if(editEnabled&&!resultOnlyResult){let textareaElement=textareaElementGenerator(VALUE,comeFromKeyPath,deep,name2,originalValue,dataType),editButtonElementLayout=cloneElement(editButtonElement,{onClick:this.handleEdit}),cancelButtonElementLayout=cloneElement(cancelButtonElement,{onClick:this.handleCancelEdit}),textareaElementLayout=cloneElement(textareaElement,{ref:this.refInput,defaultValue:originalValue});result2=React15__default.createElement(\"span\",{className:\"rejt-edit-form\",style:style.editForm},textareaElementLayout,\" \",cancelButtonElementLayout,editButtonElementLayout),minusElement=null;}else {result2=React15__default.createElement(\"span\",{className:\"rejt-value\",style:style.value,onClick:resultOnlyResult?null:this.handleEditMode},value3);let minusMenuLayout=cloneElement(minusMenuElement,{onClick:handleRemove,className:\"rejt-minus-menu\",style:style.minus});minusElement=resultOnlyResult?null:minusMenuLayout;}return React15__default.createElement(\"li\",{className:\"rejt-function-value-node\",style:style.li},React15__default.createElement(\"span\",{className:\"rejt-name\",style:style.name},name2,\" :\",\" \"),result2,minusElement)}};JsonFunctionValue.defaultProps={keyPath:[],deep:0,handleUpdateValue:()=>{},editButtonElement:React15__default.createElement(\"button\",null,\"e\"),cancelButtonElement:React15__default.createElement(\"button\",null,\"c\"),minusMenuElement:React15__default.createElement(\"span\",null,\" - \")};var JsonNode=class extends Component{constructor(props){super(props),this.state={data:props.data,name:props.name,keyPath:props.keyPath,deep:props.deep};}static getDerivedStateFromProps(props,state){return props.data!==state.data?{data:props.data}:null}render(){let{data,name:name2,keyPath,deep}=this.state,{isCollapsed,handleRemove,handleUpdateValue,onUpdate,onDeltaUpdate,readOnly,getStyle,addButtonElement,cancelButtonElement,editButtonElement,inputElementGenerator,textareaElementGenerator,minusMenuElement,plusMenuElement,beforeRemoveAction,beforeAddAction,beforeUpdateAction,logger:logger4,onSubmitValueParser}=this.props,readOnlyTrue=()=>!0,dataType=getObjectType(data);switch(dataType){case ERROR:return React15__default.createElement(JsonObject,{data,name:name2,isCollapsed,keyPath,deep,handleRemove,onUpdate,onDeltaUpdate,readOnly:readOnlyTrue,dataType,getStyle,addButtonElement,cancelButtonElement,editButtonElement,inputElementGenerator,textareaElementGenerator,minusMenuElement,plusMenuElement,beforeRemoveAction,beforeAddAction,beforeUpdateAction,logger:logger4,onSubmitValueParser});case OBJECT:return React15__default.createElement(JsonObject,{data,name:name2,isCollapsed,keyPath,deep,handleRemove,onUpdate,onDeltaUpdate,readOnly,dataType,getStyle,addButtonElement,cancelButtonElement,editButtonElement,inputElementGenerator,textareaElementGenerator,minusMenuElement,plusMenuElement,beforeRemoveAction,beforeAddAction,beforeUpdateAction,logger:logger4,onSubmitValueParser});case ARRAY:return React15__default.createElement(JsonArray,{data,name:name2,isCollapsed,keyPath,deep,handleRemove,onUpdate,onDeltaUpdate,readOnly,dataType,getStyle,addButtonElement,cancelButtonElement,editButtonElement,inputElementGenerator,textareaElementGenerator,minusMenuElement,plusMenuElement,beforeRemoveAction,beforeAddAction,beforeUpdateAction,logger:logger4,onSubmitValueParser});case STRING:return React15__default.createElement(JsonValue,{name:name2,value:`\"${data}\"`,originalValue:data,keyPath,deep,handleRemove,handleUpdateValue,readOnly,dataType,getStyle,cancelButtonElement,editButtonElement,inputElementGenerator,minusMenuElement,logger:logger4,onSubmitValueParser});case NUMBER:return React15__default.createElement(JsonValue,{name:name2,value:data,originalValue:data,keyPath,deep,handleRemove,handleUpdateValue,readOnly,dataType,getStyle,cancelButtonElement,editButtonElement,inputElementGenerator,minusMenuElement,logger:logger4,onSubmitValueParser});case BOOLEAN:return React15__default.createElement(JsonValue,{name:name2,value:data?\"true\":\"false\",originalValue:data,keyPath,deep,handleRemove,handleUpdateValue,readOnly,dataType,getStyle,cancelButtonElement,editButtonElement,inputElementGenerator,minusMenuElement,logger:logger4,onSubmitValueParser});case DATE:return React15__default.createElement(JsonValue,{name:name2,value:data.toISOString(),originalValue:data,keyPath,deep,handleRemove,handleUpdateValue,readOnly:readOnlyTrue,dataType,getStyle,cancelButtonElement,editButtonElement,inputElementGenerator,minusMenuElement,logger:logger4,onSubmitValueParser});case NULL:return React15__default.createElement(JsonValue,{name:name2,value:\"null\",originalValue:\"null\",keyPath,deep,handleRemove,handleUpdateValue,readOnly,dataType,getStyle,cancelButtonElement,editButtonElement,inputElementGenerator,minusMenuElement,logger:logger4,onSubmitValueParser});case UNDEFINED:return React15__default.createElement(JsonValue,{name:name2,value:\"undefined\",originalValue:\"undefined\",keyPath,deep,handleRemove,handleUpdateValue,readOnly,dataType,getStyle,cancelButtonElement,editButtonElement,inputElementGenerator,minusMenuElement,logger:logger4,onSubmitValueParser});case FUNCTION:return React15__default.createElement(JsonFunctionValue,{name:name2,value:data.toString(),originalValue:data,keyPath,deep,handleRemove,handleUpdateValue,readOnly,dataType,getStyle,cancelButtonElement,editButtonElement,textareaElementGenerator,minusMenuElement,logger:logger4,onSubmitValueParser});case SYMBOL:return React15__default.createElement(JsonValue,{name:name2,value:data.toString(),originalValue:data,keyPath,deep,handleRemove,handleUpdateValue,readOnly:readOnlyTrue,dataType,getStyle,cancelButtonElement,editButtonElement,inputElementGenerator,minusMenuElement,logger:logger4,onSubmitValueParser});default:return null}}};JsonNode.defaultProps={keyPath:[],deep:0};var JsonObject=class extends Component{constructor(props){super(props);let keyPath=props.deep===-1?[]:[...props.keyPath,props.name];this.state={name:props.name,data:props.data,keyPath,deep:props.deep,nextDeep:props.deep+1,collapsed:props.isCollapsed(keyPath,props.deep,props.data),addFormVisible:!1},this.handleCollapseMode=this.handleCollapseMode.bind(this),this.handleRemoveValue=this.handleRemoveValue.bind(this),this.handleAddMode=this.handleAddMode.bind(this),this.handleAddValueAdd=this.handleAddValueAdd.bind(this),this.handleAddValueCancel=this.handleAddValueCancel.bind(this),this.handleEditValue=this.handleEditValue.bind(this),this.onChildUpdate=this.onChildUpdate.bind(this),this.renderCollapsed=this.renderCollapsed.bind(this),this.renderNotCollapsed=this.renderNotCollapsed.bind(this);}static getDerivedStateFromProps(props,state){return props.data!==state.data?{data:props.data}:null}onChildUpdate(childKey,childData){let{data,keyPath}=this.state;data[childKey]=childData,this.setState({data});let{onUpdate}=this.props,size=keyPath.length;onUpdate(keyPath[size-1],data);}handleAddMode(){this.setState({addFormVisible:!0});}handleAddValueCancel(){this.setState({addFormVisible:!1});}handleAddValueAdd({key:key2,newValue}){let{data,keyPath,nextDeep:deep}=this.state,{beforeAddAction,logger:logger4}=this.props;beforeAddAction(key2,keyPath,deep,newValue).then(()=>{data[key2]=newValue,this.setState({data}),this.handleAddValueCancel();let{onUpdate,onDeltaUpdate}=this.props;onUpdate(keyPath[keyPath.length-1],data),onDeltaUpdate({type:ADD_DELTA_TYPE,keyPath,deep,key:key2,newValue});}).catch(logger4.error);}handleRemoveValue(key2){return ()=>{let{beforeRemoveAction,logger:logger4}=this.props,{data,keyPath,nextDeep:deep}=this.state,oldValue=data[key2];beforeRemoveAction(key2,keyPath,deep,oldValue).then(()=>{let deltaUpdateResult={keyPath,deep,key:key2,oldValue,type:REMOVE_DELTA_TYPE};delete data[key2],this.setState({data});let{onUpdate,onDeltaUpdate}=this.props;onUpdate(keyPath[keyPath.length-1],data),onDeltaUpdate(deltaUpdateResult);}).catch(logger4.error);}}handleCollapseMode(){this.setState(state=>({collapsed:!state.collapsed}));}handleEditValue({key:key2,value:value3}){return new Promise((resolve,reject)=>{let{beforeUpdateAction}=this.props,{data,keyPath,nextDeep:deep}=this.state,oldValue=data[key2];beforeUpdateAction(key2,keyPath,deep,oldValue,value3).then(()=>{data[key2]=value3,this.setState({data});let{onUpdate,onDeltaUpdate}=this.props;onUpdate(keyPath[keyPath.length-1],data),onDeltaUpdate({type:UPDATE_DELTA_TYPE,keyPath,deep,key:key2,newValue:value3,oldValue}),resolve();}).catch(reject);})}renderCollapsed(){let{name:name2,keyPath,deep,data}=this.state,{handleRemove,readOnly,dataType,getStyle,minusMenuElement}=this.props,{minus,collapsed}=getStyle(name2,data,keyPath,deep,dataType),keyList=Object.getOwnPropertyNames(data),isReadOnly=readOnly(name2,data,keyPath,deep,dataType),removeItemButton=cloneElement(minusMenuElement,{onClick:handleRemove,className:\"rejt-minus-menu\",style:minus});return React15__default.createElement(\"span\",{className:\"rejt-collapsed\"},React15__default.createElement(\"span\",{className:\"rejt-collapsed-text\",style:collapsed,onClick:this.handleCollapseMode},\"{...}\",\" \",keyList.length,\" \",keyList.length===1?\"key\":\"keys\"),!isReadOnly&&removeItemButton)}renderNotCollapsed(){let{name:name2,data,keyPath,deep,nextDeep,addFormVisible}=this.state,{isCollapsed,handleRemove,onDeltaUpdate,readOnly,getStyle,dataType,addButtonElement,cancelButtonElement,editButtonElement,inputElementGenerator,textareaElementGenerator,minusMenuElement,plusMenuElement,beforeRemoveAction,beforeAddAction,beforeUpdateAction,logger:logger4,onSubmitValueParser}=this.props,{minus,plus,addForm,ul,delimiter}=getStyle(name2,data,keyPath,deep,dataType),keyList=Object.getOwnPropertyNames(data),isReadOnly=readOnly(name2,data,keyPath,deep,dataType),addItemButton=cloneElement(plusMenuElement,{onClick:this.handleAddMode,className:\"rejt-plus-menu\",style:plus}),removeItemButton=cloneElement(minusMenuElement,{onClick:handleRemove,className:\"rejt-minus-menu\",style:minus}),list=keyList.map(key2=>React15__default.createElement(JsonNode,{key:key2,name:key2,data:data[key2],keyPath,deep:nextDeep,isCollapsed,handleRemove:this.handleRemoveValue(key2),handleUpdateValue:this.handleEditValue,onUpdate:this.onChildUpdate,onDeltaUpdate,readOnly,getStyle,addButtonElement,cancelButtonElement,editButtonElement,inputElementGenerator,textareaElementGenerator,minusMenuElement,plusMenuElement,beforeRemoveAction,beforeAddAction,beforeUpdateAction,logger:logger4,onSubmitValueParser}));return React15__default.createElement(\"span\",{className:\"rejt-not-collapsed\"},React15__default.createElement(\"span\",{className:\"rejt-not-collapsed-delimiter\",style:delimiter},\"{\"),!isReadOnly&&addItemButton,React15__default.createElement(\"ul\",{className:\"rejt-not-collapsed-list\",style:ul},list),!isReadOnly&&addFormVisible&&React15__default.createElement(\"div\",{className:\"rejt-add-form\",style:addForm},React15__default.createElement(JsonAddValue,{handleAdd:this.handleAddValueAdd,handleCancel:this.handleAddValueCancel,addButtonElement,cancelButtonElement,inputElementGenerator,keyPath,deep,onSubmitValueParser})),React15__default.createElement(\"span\",{className:\"rejt-not-collapsed-delimiter\",style:delimiter},\"}\"),!isReadOnly&&removeItemButton)}render(){let{name:name2,collapsed,data,keyPath,deep}=this.state,{getStyle,dataType}=this.props,value3=collapsed?this.renderCollapsed():this.renderNotCollapsed(),style=getStyle(name2,data,keyPath,deep,dataType);return React15__default.createElement(\"div\",{className:\"rejt-object-node\"},React15__default.createElement(\"span\",{onClick:this.handleCollapseMode},React15__default.createElement(\"span\",{className:\"rejt-name\",style:style.name},name2,\" :\",\" \")),value3)}};JsonObject.defaultProps={keyPath:[],deep:0,minusMenuElement:React15__default.createElement(\"span\",null,\" - \"),plusMenuElement:React15__default.createElement(\"span\",null,\" + \")};var JsonValue=class extends Component{constructor(props){super(props);let keyPath=[...props.keyPath,props.name];this.state={value:props.value,name:props.name,keyPath,deep:props.deep,editEnabled:!1,inputRef:null},this.handleEditMode=this.handleEditMode.bind(this),this.refInput=this.refInput.bind(this),this.handleCancelEdit=this.handleCancelEdit.bind(this),this.handleEdit=this.handleEdit.bind(this),this.onKeydown=this.onKeydown.bind(this);}static getDerivedStateFromProps(props,state){return props.value!==state.value?{value:props.value}:null}componentDidUpdate(){let{editEnabled,inputRef,name:name2,value:value3,keyPath,deep}=this.state,{readOnly,dataType}=this.props,isReadOnly=readOnly(name2,value3,keyPath,deep,dataType);editEnabled&&!isReadOnly&&typeof inputRef.focus==\"function\"&&inputRef.focus();}componentDidMount(){document.addEventListener(\"keydown\",this.onKeydown);}componentWillUnmount(){document.removeEventListener(\"keydown\",this.onKeydown);}onKeydown(event){event.altKey||event.ctrlKey||event.metaKey||event.shiftKey||event.repeat||((event.code===\"Enter\"||event.key===\"Enter\")&&(event.preventDefault(),this.handleEdit()),(event.code===\"Escape\"||event.key===\"Escape\")&&(event.preventDefault(),this.handleCancelEdit()));}handleEdit(){let{handleUpdateValue,originalValue,logger:logger4,onSubmitValueParser,keyPath}=this.props,{inputRef,name:name2,deep}=this.state;if(!inputRef)return;let newValue=onSubmitValueParser(!0,keyPath,deep,name2,inputRef.value);handleUpdateValue({value:newValue,key:name2}).then(()=>{isComponentWillChange(originalValue,newValue)||this.handleCancelEdit();}).catch(logger4.error);}handleEditMode(){this.setState({editEnabled:!0});}refInput(node){this.state.inputRef=node;}handleCancelEdit(){this.setState({editEnabled:!1});}render(){let{name:name2,value:value3,editEnabled,keyPath,deep}=this.state,{handleRemove,originalValue,readOnly,dataType,getStyle,editButtonElement,cancelButtonElement,inputElementGenerator,minusMenuElement,keyPath:comeFromKeyPath}=this.props,style=getStyle(name2,originalValue,keyPath,deep,dataType),isReadOnly=readOnly(name2,originalValue,keyPath,deep,dataType),isEditing=editEnabled&&!isReadOnly,inputElement=inputElementGenerator(VALUE,comeFromKeyPath,deep,name2,originalValue,dataType),editButtonElementLayout=cloneElement(editButtonElement,{onClick:this.handleEdit}),cancelButtonElementLayout=cloneElement(cancelButtonElement,{onClick:this.handleCancelEdit}),inputElementLayout=cloneElement(inputElement,{ref:this.refInput,defaultValue:JSON.stringify(originalValue)}),minusMenuLayout=cloneElement(minusMenuElement,{onClick:handleRemove,className:\"rejt-minus-menu\",style:style.minus});return React15__default.createElement(\"li\",{className:\"rejt-value-node\",style:style.li},React15__default.createElement(\"span\",{className:\"rejt-name\",style:style.name},name2,\" : \"),isEditing?React15__default.createElement(\"span\",{className:\"rejt-edit-form\",style:style.editForm},inputElementLayout,\" \",cancelButtonElementLayout,editButtonElementLayout):React15__default.createElement(\"span\",{className:\"rejt-value\",style:style.value,onClick:isReadOnly?null:this.handleEditMode},String(value3)),!isReadOnly&&!isEditing&&minusMenuLayout)}};JsonValue.defaultProps={keyPath:[],deep:0,handleUpdateValue:()=>Promise.resolve(),editButtonElement:React15__default.createElement(\"button\",null,\"e\"),cancelButtonElement:React15__default.createElement(\"button\",null,\"c\"),minusMenuElement:React15__default.createElement(\"span\",null,\" - \")};function parse3(string){let result2=string;if(result2.indexOf(\"function\")===0)return (0, eval)(`(${result2})`);try{result2=JSON.parse(string);}catch{}return result2}var object={minus:{color:\"red\"},plus:{color:\"green\"},collapsed:{color:\"grey\"},delimiter:{},ul:{padding:\"0px\",margin:\"0 0 0 25px\",listStyle:\"none\"},name:{color:\"#2287CD\"},addForm:{}},array={minus:{color:\"red\"},plus:{color:\"green\"},collapsed:{color:\"grey\"},delimiter:{},ul:{padding:\"0px\",margin:\"0 0 0 25px\",listStyle:\"none\"},name:{color:\"#2287CD\"},addForm:{}},value2={minus:{color:\"red\"},editForm:{},value:{color:\"#7bba3d\"},li:{minHeight:\"22px\",lineHeight:\"22px\",outline:\"0px\"},name:{color:\"#2287CD\"}};var JsonTree=class extends Component{constructor(props){super(props),this.state={data:props.data,rootName:props.rootName},this.onUpdate=this.onUpdate.bind(this),this.removeRoot=this.removeRoot.bind(this);}static getDerivedStateFromProps(props,state){return props.data!==state.data||props.rootName!==state.rootName?{data:props.data,rootName:props.rootName}:null}onUpdate(key2,data){this.setState({data}),this.props.onFullyUpdate(data);}removeRoot(){this.onUpdate(null,null);}render(){let{data,rootName}=this.state,{isCollapsed,onDeltaUpdate,readOnly,getStyle,addButtonElement,cancelButtonElement,editButtonElement,inputElement,textareaElement,minusMenuElement,plusMenuElement,beforeRemoveAction,beforeAddAction,beforeUpdateAction,logger:logger4,onSubmitValueParser,fallback=null}=this.props,dataType=getObjectType(data),readOnlyFunction=readOnly;getObjectType(readOnly)===\"Boolean\"&&(readOnlyFunction=()=>readOnly);let inputElementFunction=inputElement;inputElement&&getObjectType(inputElement)!==\"Function\"&&(inputElementFunction=()=>inputElement);let textareaElementFunction=textareaElement;return textareaElement&&getObjectType(textareaElement)!==\"Function\"&&(textareaElementFunction=()=>textareaElement),dataType===\"Object\"||dataType===\"Array\"?React15__default.createElement(\"div\",{className:\"rejt-tree\"},React15__default.createElement(JsonNode,{data,name:rootName,deep:-1,isCollapsed,onUpdate:this.onUpdate,onDeltaUpdate,readOnly:readOnlyFunction,getStyle,addButtonElement,cancelButtonElement,editButtonElement,inputElementGenerator:inputElementFunction,textareaElementGenerator:textareaElementFunction,minusMenuElement,plusMenuElement,handleRemove:this.removeRoot,beforeRemoveAction,beforeAddAction,beforeUpdateAction,logger:logger4,onSubmitValueParser})):fallback}};JsonTree.defaultProps={rootName:\"root\",isCollapsed:(keyPath,deep)=>deep!==-1,getStyle:(keyName,data,keyPath,deep,dataType)=>{switch(dataType){case\"Object\":case\"Error\":return object;case\"Array\":return array;default:return value2}},readOnly:()=>!1,onFullyUpdate:()=>{},onDeltaUpdate:()=>{},beforeRemoveAction:()=>Promise.resolve(),beforeAddAction:()=>Promise.resolve(),beforeUpdateAction:()=>Promise.resolve(),logger:{error:()=>{}},onSubmitValueParser:(isEditMode,keyPath,deep,name2,rawValue)=>parse3(rawValue),inputElement:()=>React15__default.createElement(\"input\",null),textareaElement:()=>React15__default.createElement(\"textarea\",null),fallback:null};var {window:globalWindow2}=globalThis,Wrapper6=styled.div(({theme})=>({position:\"relative\",display:\"flex\",'&[aria-readonly=\"true\"]':{opacity:.5},\".rejt-tree\":{marginLeft:\"1rem\",fontSize:\"13px\"},\".rejt-value-node, .rejt-object-node > .rejt-collapsed, .rejt-array-node > .rejt-collapsed, .rejt-object-node > .rejt-not-collapsed, .rejt-array-node > .rejt-not-collapsed\":{\"& > svg\":{opacity:0,transition:\"opacity 0.2s\"}},\".rejt-value-node:hover, .rejt-object-node:hover > .rejt-collapsed, .rejt-array-node:hover > .rejt-collapsed, .rejt-object-node:hover > .rejt-not-collapsed, .rejt-array-node:hover > .rejt-not-collapsed\":{\"& > svg\":{opacity:1}},\".rejt-edit-form button\":{display:\"none\"},\".rejt-add-form\":{marginLeft:10},\".rejt-add-value-node\":{display:\"inline-flex\",alignItems:\"center\"},\".rejt-name\":{lineHeight:\"22px\"},\".rejt-not-collapsed-delimiter\":{lineHeight:\"22px\"},\".rejt-plus-menu\":{marginLeft:5},\".rejt-object-node > span > *, .rejt-array-node > span > *\":{position:\"relative\",zIndex:2},\".rejt-object-node, .rejt-array-node\":{position:\"relative\"},\".rejt-object-node > span:first-of-type::after, .rejt-array-node > span:first-of-type::after, .rejt-collapsed::before, .rejt-not-collapsed::before\":{content:'\"\"',position:\"absolute\",top:0,display:\"block\",width:\"100%\",marginLeft:\"-1rem\",padding:\"0 4px 0 1rem\",height:22},\".rejt-collapsed::before, .rejt-not-collapsed::before\":{zIndex:1,background:\"transparent\",borderRadius:4,transition:\"background 0.2s\",pointerEvents:\"none\",opacity:.1},\".rejt-object-node:hover, .rejt-array-node:hover\":{\"& > .rejt-collapsed::before, & > .rejt-not-collapsed::before\":{background:theme.color.secondary}},\".rejt-collapsed::after, .rejt-not-collapsed::after\":{content:'\"\"',position:\"absolute\",display:\"inline-block\",pointerEvents:\"none\",width:0,height:0},\".rejt-collapsed::after\":{left:-8,top:8,borderTop:\"3px solid transparent\",borderBottom:\"3px solid transparent\",borderLeft:\"3px solid rgba(153,153,153,0.6)\"},\".rejt-not-collapsed::after\":{left:-10,top:10,borderTop:\"3px solid rgba(153,153,153,0.6)\",borderLeft:\"3px solid transparent\",borderRight:\"3px solid transparent\"},\".rejt-value\":{display:\"inline-block\",border:\"1px solid transparent\",borderRadius:4,margin:\"1px 0\",padding:\"0 4px\",cursor:\"text\",color:theme.color.defaultText},\".rejt-value-node:hover > .rejt-value\":{background:theme.color.lighter,borderColor:theme.appBorderColor}})),ButtonInline=styled.button(({theme,primary})=>({border:0,height:20,margin:1,borderRadius:4,background:primary?theme.color.secondary:\"transparent\",color:primary?theme.color.lightest:theme.color.dark,fontWeight:primary?\"bold\":\"normal\",cursor:\"pointer\",order:primary?\"initial\":9})),ActionAddIcon=styled(AddIcon)(({theme,disabled})=>({display:\"inline-block\",verticalAlign:\"middle\",width:15,height:15,padding:3,marginLeft:5,cursor:disabled?\"not-allowed\":\"pointer\",color:theme.textMutedColor,\"&:hover\":disabled?{}:{color:theme.color.ancillary},\"svg + &\":{marginLeft:0}})),ActionSubstractIcon=styled(SubtractIcon)(({theme,disabled})=>({display:\"inline-block\",verticalAlign:\"middle\",width:15,height:15,padding:3,marginLeft:5,cursor:disabled?\"not-allowed\":\"pointer\",color:theme.textMutedColor,\"&:hover\":disabled?{}:{color:theme.color.negative},\"svg + &\":{marginLeft:0}})),Input=styled.input(({theme,placeholder})=>({outline:0,margin:placeholder?1:\"1px 0\",padding:\"3px 4px\",color:theme.color.defaultText,background:theme.background.app,border:`1px solid ${theme.appBorderColor}`,borderRadius:4,lineHeight:\"14px\",width:placeholder===\"Key\"?80:120,\"&:focus\":{border:`1px solid ${theme.color.secondary}`}})),RawButton=styled(IconButton)(({theme})=>({position:\"absolute\",zIndex:2,top:2,right:2,height:21,padding:\"0 3px\",background:theme.background.bar,border:`1px solid ${theme.appBorderColor}`,borderRadius:3,color:theme.textMutedColor,fontSize:\"9px\",fontWeight:\"bold\",textDecoration:\"none\",span:{marginLeft:3,marginTop:1}})),RawInput=styled(Form.Textarea)(({theme})=>({flex:1,padding:\"7px 6px\",fontFamily:theme.typography.fonts.mono,fontSize:\"12px\",lineHeight:\"18px\",\"&::placeholder\":{fontFamily:theme.typography.fonts.base,fontSize:\"13px\"},\"&:placeholder-shown\":{padding:\"7px 10px\"}})),ENTER_EVENT={bubbles:!0,cancelable:!0,key:\"Enter\",code:\"Enter\",keyCode:13},dispatchEnterKey=event=>{event.currentTarget.dispatchEvent(new globalWindow2.KeyboardEvent(\"keydown\",ENTER_EVENT));},selectValue=event=>{event.currentTarget.select();},getCustomStyleFunction=theme=>()=>({name:{color:theme.color.secondary},collapsed:{color:theme.color.dark},ul:{listStyle:\"none\",margin:\"0 0 0 1rem\",padding:0},li:{outline:0}}),ObjectControl=({name:name2,value:value3,onChange,argType})=>{let theme=useTheme(),data=useMemo(()=>value3&&cloneDeep(value3),[value3]),hasData=data!=null,[showRaw,setShowRaw]=useState(!hasData),[parseError,setParseError]=useState(null),readonly=!!argType?.table?.readonly,updateRaw=useCallback(raw=>{try{raw&&onChange(JSON.parse(raw)),setParseError(void 0);}catch(e2){setParseError(e2);}},[onChange]),[forceVisible,setForceVisible]=useState(!1),onForceVisible=useCallback(()=>{onChange({}),setForceVisible(!0);},[setForceVisible]),htmlElRef=useRef(null);if(useEffect(()=>{forceVisible&&htmlElRef.current&&htmlElRef.current.select();},[forceVisible]),!hasData)return React15__default.createElement(Button,{disabled:readonly,id:getControlSetterButtonId(name2),onClick:onForceVisible},\"Set object\");let rawJSONForm=React15__default.createElement(RawInput,{ref:htmlElRef,id:getControlId(name2),name:name2,defaultValue:value3===null?\"\":JSON.stringify(value3,null,2),onBlur:event=>updateRaw(event.target.value),placeholder:\"Edit JSON string...\",autoFocus:forceVisible,valid:parseError?\"error\":null,readOnly:readonly}),isObjectOrArray=Array.isArray(value3)||typeof value3==\"object\"&&value3?.constructor===Object;return React15__default.createElement(Wrapper6,{\"aria-readonly\":readonly},isObjectOrArray&&React15__default.createElement(RawButton,{onClick:e2=>{e2.preventDefault(),setShowRaw(v2=>!v2);}},showRaw?React15__default.createElement(EyeCloseIcon,null):React15__default.createElement(EyeIcon,null),React15__default.createElement(\"span\",null,\"RAW\")),showRaw?rawJSONForm:React15__default.createElement(JsonTree,{readOnly:readonly||!isObjectOrArray,isCollapsed:isObjectOrArray?void 0:()=>!0,data,rootName:name2,onFullyUpdate:onChange,getStyle:getCustomStyleFunction(theme),cancelButtonElement:React15__default.createElement(ButtonInline,{type:\"button\"},\"Cancel\"),editButtonElement:React15__default.createElement(ButtonInline,{type:\"submit\"},\"Save\"),addButtonElement:React15__default.createElement(ButtonInline,{type:\"submit\",primary:!0},\"Save\"),plusMenuElement:React15__default.createElement(ActionAddIcon,null),minusMenuElement:React15__default.createElement(ActionSubstractIcon,null),inputElement:(_2,__,___,key2)=>key2?React15__default.createElement(Input,{onFocus:selectValue,onBlur:dispatchEnterKey}):React15__default.createElement(Input,null),fallback:rawJSONForm}))};var RangeInput=styled.input(({theme,min,max,value:value3,disabled})=>({\"&\":{width:\"100%\",backgroundColor:\"transparent\",appearance:\"none\"},\"&::-webkit-slider-runnable-track\":{background:theme.base===\"light\"?`linear-gradient(to right, \n ${theme.color.green} 0%, ${theme.color.green} ${(value3-min)/(max-min)*100}%, \n ${curriedDarken$1(.02,theme.input.background)} ${(value3-min)/(max-min)*100}%, \n ${curriedDarken$1(.02,theme.input.background)} 100%)`:`linear-gradient(to right, \n ${theme.color.green} 0%, ${theme.color.green} ${(value3-min)/(max-min)*100}%, \n ${curriedLighten$1(.02,theme.input.background)} ${(value3-min)/(max-min)*100}%, \n ${curriedLighten$1(.02,theme.input.background)} 100%)`,boxShadow:`${theme.appBorderColor} 0 0 0 1px inset`,borderRadius:6,width:\"100%\",height:6,cursor:disabled?\"not-allowed\":\"pointer\"},\"&::-webkit-slider-thumb\":{marginTop:\"-6px\",width:16,height:16,border:`1px solid ${rgba(theme.appBorderColor,.2)}`,borderRadius:\"50px\",boxShadow:`0 1px 3px 0px ${rgba(theme.appBorderColor,.2)}`,cursor:disabled?\"not-allowed\":\"grab\",appearance:\"none\",background:`${theme.input.background}`,transition:\"all 150ms ease-out\",\"&:hover\":{background:`${curriedDarken$1(.05,theme.input.background)}`,transform:\"scale3d(1.1, 1.1, 1.1) translateY(-1px)\",transition:\"all 50ms ease-out\"},\"&:active\":{background:`${theme.input.background}`,transform:\"scale3d(1, 1, 1) translateY(0px)\",cursor:disabled?\"not-allowed\":\"grab\"}},\"&:focus\":{outline:\"none\",\"&::-webkit-slider-runnable-track\":{borderColor:rgba(theme.color.secondary,.4)},\"&::-webkit-slider-thumb\":{borderColor:theme.color.secondary,boxShadow:`0 0px 5px 0px ${theme.color.secondary}`}},\"&::-moz-range-track\":{background:theme.base===\"light\"?`linear-gradient(to right, \n ${theme.color.green} 0%, ${theme.color.green} ${(value3-min)/(max-min)*100}%, \n ${curriedDarken$1(.02,theme.input.background)} ${(value3-min)/(max-min)*100}%, \n ${curriedDarken$1(.02,theme.input.background)} 100%)`:`linear-gradient(to right, \n ${theme.color.green} 0%, ${theme.color.green} ${(value3-min)/(max-min)*100}%, \n ${curriedLighten$1(.02,theme.input.background)} ${(value3-min)/(max-min)*100}%, \n ${curriedLighten$1(.02,theme.input.background)} 100%)`,boxShadow:`${theme.appBorderColor} 0 0 0 1px inset`,borderRadius:6,width:\"100%\",height:6,cursor:disabled?\"not-allowed\":\"pointer\",outline:\"none\"},\"&::-moz-range-thumb\":{width:16,height:16,border:`1px solid ${rgba(theme.appBorderColor,.2)}`,borderRadius:\"50px\",boxShadow:`0 1px 3px 0px ${rgba(theme.appBorderColor,.2)}`,cursor:disabled?\"not-allowed\":\"grap\",background:`${theme.input.background}`,transition:\"all 150ms ease-out\",\"&:hover\":{background:`${curriedDarken$1(.05,theme.input.background)}`,transform:\"scale3d(1.1, 1.1, 1.1) translateY(-1px)\",transition:\"all 50ms ease-out\"},\"&:active\":{background:`${theme.input.background}`,transform:\"scale3d(1, 1, 1) translateY(0px)\",cursor:\"grabbing\"}},\"&::-ms-track\":{background:theme.base===\"light\"?`linear-gradient(to right, \n ${theme.color.green} 0%, ${theme.color.green} ${(value3-min)/(max-min)*100}%, \n ${curriedDarken$1(.02,theme.input.background)} ${(value3-min)/(max-min)*100}%, \n ${curriedDarken$1(.02,theme.input.background)} 100%)`:`linear-gradient(to right, \n ${theme.color.green} 0%, ${theme.color.green} ${(value3-min)/(max-min)*100}%, \n ${curriedLighten$1(.02,theme.input.background)} ${(value3-min)/(max-min)*100}%, \n ${curriedLighten$1(.02,theme.input.background)} 100%)`,boxShadow:`${theme.appBorderColor} 0 0 0 1px inset`,color:\"transparent\",width:\"100%\",height:\"6px\",cursor:\"pointer\"},\"&::-ms-fill-lower\":{borderRadius:6},\"&::-ms-fill-upper\":{borderRadius:6},\"&::-ms-thumb\":{width:16,height:16,background:`${theme.input.background}`,border:`1px solid ${rgba(theme.appBorderColor,.2)}`,borderRadius:50,cursor:\"grab\",marginTop:0},\"@supports (-ms-ime-align:auto)\":{\"input[type=range]\":{margin:\"0\"}}})),RangeLabel=styled.span({paddingLeft:5,paddingRight:5,fontSize:12,whiteSpace:\"nowrap\",fontFeatureSettings:\"tnum\",fontVariantNumeric:\"tabular-nums\",\"[aria-readonly=true] &\":{opacity:.5}}),RangeCurrentAndMaxLabel=styled(RangeLabel)(({numberOFDecimalsPlaces,max})=>({width:`${numberOFDecimalsPlaces+max.toString().length*2+3}ch`,textAlign:\"right\",flexShrink:0})),RangeWrapper=styled.div({display:\"flex\",alignItems:\"center\",width:\"100%\"});function getNumberOfDecimalPlaces(number){let match=number.toString().match(/(?:\\.(\\d+))?(?:[eE]([+-]?\\d+))?$/);return match?Math.max(0,(match[1]?match[1].length:0)-(match[2]?+match[2]:0)):0}var RangeControl=({name:name2,value:value3,onChange,min=0,max=100,step=1,onBlur,onFocus,argType})=>{let handleChange=event=>{onChange(parse2(event.target.value));},hasValue=value3!==void 0,numberOFDecimalsPlaces=useMemo(()=>getNumberOfDecimalPlaces(step),[step]),readonly=!!argType?.table?.readonly;return React15__default.createElement(RangeWrapper,{\"aria-readonly\":readonly},React15__default.createElement(RangeLabel,null,min),React15__default.createElement(RangeInput,{id:getControlId(name2),type:\"range\",disabled:readonly,onChange:handleChange,name:name2,value:value3,min,max,step,onFocus,onBlur}),React15__default.createElement(RangeCurrentAndMaxLabel,{numberOFDecimalsPlaces,max},hasValue?value3.toFixed(numberOFDecimalsPlaces):\"--\",\" / \",max))};var Wrapper7=styled.label({display:\"flex\"}),MaxLength=styled.div(({isMaxed})=>({marginLeft:\"0.75rem\",paddingTop:\"0.35rem\",color:isMaxed?\"red\":void 0})),TextControl=({name:name2,value:value3,onChange,onFocus,onBlur,maxLength,argType})=>{let handleChange=event=>{onChange(event.target.value);},readonly=!!argType?.table?.readonly,[forceVisible,setForceVisible]=useState(!1),onForceVisible=useCallback(()=>{onChange(\"\"),setForceVisible(!0);},[setForceVisible]);if(value3===void 0)return React15__default.createElement(Button,{variant:\"outline\",size:\"medium\",disabled:readonly,id:getControlSetterButtonId(name2),onClick:onForceVisible},\"Set string\");let isValid=typeof value3==\"string\";return React15__default.createElement(Wrapper7,null,React15__default.createElement(Form.Textarea,{id:getControlId(name2),maxLength,onChange:handleChange,disabled:readonly,size:\"flex\",placeholder:\"Edit string...\",autoFocus:forceVisible,valid:isValid?null:\"error\",name:name2,value:isValid?value3:\"\",onFocus,onBlur}),maxLength&&React15__default.createElement(MaxLength,{isMaxed:value3?.length===maxLength},value3?.length??0,\" / \",maxLength))};var FileInput=styled(Form.Input)({padding:10});function revokeOldUrls(urls){urls.forEach(url=>{url.startsWith(\"blob:\")&&URL.revokeObjectURL(url);});}var FilesControl=({onChange,name:name2,accept=\"image/*\",value:value3,argType})=>{let inputElement=useRef(null),readonly=argType?.control?.readOnly;function handleFileChange(e2){if(!e2.target.files)return;let fileUrls=Array.from(e2.target.files).map(file=>URL.createObjectURL(file));onChange(fileUrls),revokeOldUrls(value3);}return useEffect(()=>{value3==null&&inputElement.current&&(inputElement.current.value=null);},[value3,name2]),React15__default.createElement(FileInput,{ref:inputElement,id:getControlId(name2),type:\"file\",name:name2,multiple:!0,disabled:readonly,onChange:handleFileChange,accept,size:\"flex\"})};var LazyColorControl=lazy(()=>import('./Color-YHDXOIA2.mjs')),ColorControl=props=>React15__default.createElement(Suspense,{fallback:React15__default.createElement(\"div\",null)},React15__default.createElement(LazyColorControl,{...props}));var Controls2={array:ObjectControl,object:ObjectControl,boolean:BooleanControl,color:ColorControl,date:DateControl,number:NumberControl,check:OptionsControl,\"inline-check\":OptionsControl,radio:OptionsControl,\"inline-radio\":OptionsControl,select:OptionsControl,\"multi-select\":OptionsControl,range:RangeControl,text:TextControl,file:FilesControl},NoControl=()=>React15__default.createElement(React15__default.Fragment,null,\"-\"),ArgControl=({row,arg,updateArgs,isHovered})=>{let{key:key2,control}=row,[isFocused,setFocused]=useState(!1),[boxedValue,setBoxedValue]=useState({value:arg});useEffect(()=>{isFocused||setBoxedValue({value:arg});},[isFocused,arg]);let onChange=useCallback(argVal=>(setBoxedValue({value:argVal}),updateArgs({[key2]:argVal}),argVal),[updateArgs,key2]),onBlur=useCallback(()=>setFocused(!1),[]),onFocus=useCallback(()=>setFocused(!0),[]);if(!control||control.disable){let canBeSetup=control?.disable!==!0&&row?.type?.name!==\"function\";return isHovered&&canBeSetup?React15__default.createElement(Link,{href:\"https://storybook.js.org/docs/essentials/controls\",target:\"_blank\",withArrow:!0},\"Setup controls\"):React15__default.createElement(NoControl,null)}let props={name:key2,argType:row,value:boxedValue.value,onChange,onBlur,onFocus},Control=Controls2[control.type]||NoControl;return React15__default.createElement(Control,{...props,...control,controlType:control.type})};var Table=styled.table(({theme})=>({\"&&\":{borderCollapse:\"collapse\",borderSpacing:0,border:\"none\",tr:{border:\"none !important\",background:\"none\"},\"td, th\":{padding:0,border:\"none\",width:\"auto!important\"},marginTop:0,marginBottom:0,\"th:first-of-type, td:first-of-type\":{paddingLeft:0},\"th:last-of-type, td:last-of-type\":{paddingRight:0},td:{paddingTop:0,paddingBottom:4,\"&:not(:first-of-type)\":{paddingLeft:10,paddingRight:0}},tbody:{boxShadow:\"none\",border:\"none\"},code:codeCommon({theme}),div:{span:{fontWeight:\"bold\"}},\"& code\":{margin:0,display:\"inline-block\",fontSize:theme.typography.size.s1}}})),ArgJsDoc=({tags})=>{let params=(tags.params||[]).filter(x2=>x2.description),hasDisplayableParams=params.length!==0,hasDisplayableDeprecated=tags.deprecated!=null,hasDisplayableReturns=tags.returns!=null&&tags.returns.description!=null;return !hasDisplayableParams&&!hasDisplayableReturns&&!hasDisplayableDeprecated?null:React15__default.createElement(React15__default.Fragment,null,React15__default.createElement(Table,null,React15__default.createElement(\"tbody\",null,hasDisplayableDeprecated&&React15__default.createElement(\"tr\",{key:\"deprecated\"},React15__default.createElement(\"td\",{colSpan:2},React15__default.createElement(\"strong\",null,\"Deprecated\"),\": \",tags.deprecated.toString())),hasDisplayableParams&¶ms.map(x2=>React15__default.createElement(\"tr\",{key:x2.name},React15__default.createElement(\"td\",null,React15__default.createElement(\"code\",null,x2.name)),React15__default.createElement(\"td\",null,x2.description))),hasDisplayableReturns&&React15__default.createElement(\"tr\",{key:\"returns\"},React15__default.createElement(\"td\",null,React15__default.createElement(\"code\",null,\"Returns\")),React15__default.createElement(\"td\",null,tags.returns.description)))))};var import_memoizerific=__toESM(require_memoizerific()),ITEMS_BEFORE_EXPANSION=8,Summary=styled.div(({isExpanded})=>({display:\"flex\",flexDirection:isExpanded?\"column\":\"row\",flexWrap:\"wrap\",alignItems:\"flex-start\",marginBottom:\"-4px\",minWidth:100})),Text3=styled.span(codeCommon,({theme,simple=!1})=>({flex:\"0 0 auto\",fontFamily:theme.typography.fonts.mono,fontSize:theme.typography.size.s1,wordBreak:\"break-word\",whiteSpace:\"normal\",maxWidth:\"100%\",margin:0,marginRight:\"4px\",marginBottom:\"4px\",paddingTop:\"2px\",paddingBottom:\"2px\",lineHeight:\"13px\",...simple&&{background:\"transparent\",border:\"0 none\",paddingLeft:0}})),ExpandButton=styled.button(({theme})=>({fontFamily:theme.typography.fonts.mono,color:theme.color.secondary,marginBottom:\"4px\",background:\"none\",border:\"none\"})),Expandable=styled.div(codeCommon,({theme})=>({fontFamily:theme.typography.fonts.mono,color:theme.color.secondary,fontSize:theme.typography.size.s1,margin:0,whiteSpace:\"nowrap\",display:\"flex\",alignItems:\"center\"})),Detail=styled.div(({theme,width})=>({width,minWidth:200,maxWidth:800,padding:15,fontFamily:theme.typography.fonts.mono,fontSize:theme.typography.size.s1,boxSizing:\"content-box\",\"& code\":{padding:\"0 !important\"}})),ChevronUpIcon=styled(ChevronSmallUpIcon)({marginLeft:4}),ChevronDownIcon=styled(ChevronSmallDownIcon)({marginLeft:4}),EmptyArg=()=>React15__default.createElement(\"span\",null,\"-\"),ArgText=({text,simple})=>React15__default.createElement(Text3,{simple},text),calculateDetailWidth=(0, import_memoizerific.default)(1e3)(detail=>{let lines=detail.split(/\\r?\\n/);return `${Math.max(...lines.map(x2=>x2.length))}ch`}),getSummaryItems=summary=>{if(!summary)return [summary];let summaryItems=summary.split(\"|\").map(value3=>value3.trim());return uniq(summaryItems)},renderSummaryItems=(summaryItems,isExpanded=!0)=>{let items=summaryItems;return isExpanded||(items=summaryItems.slice(0,ITEMS_BEFORE_EXPANSION)),items.map(item=>React15__default.createElement(ArgText,{key:item,text:item===\"\"?'\"\"':item}))},ArgSummary=({value:value3,initialExpandedArgs})=>{let{summary,detail}=value3,[isOpen,setIsOpen]=useState(!1),[isExpanded,setIsExpanded]=useState(initialExpandedArgs||!1);if(summary==null)return null;let summaryAsString=typeof summary.toString==\"function\"?summary.toString():summary;if(detail==null){if(/[(){}[\\]<>]/.test(summaryAsString))return React15__default.createElement(ArgText,{text:summaryAsString});let summaryItems=getSummaryItems(summaryAsString),itemsCount=summaryItems.length;return itemsCount>ITEMS_BEFORE_EXPANSION?React15__default.createElement(Summary,{isExpanded},renderSummaryItems(summaryItems,isExpanded),React15__default.createElement(ExpandButton,{onClick:()=>setIsExpanded(!isExpanded)},isExpanded?\"Show less...\":`Show ${itemsCount-ITEMS_BEFORE_EXPANSION} more...`)):React15__default.createElement(Summary,null,renderSummaryItems(summaryItems))}return React15__default.createElement(WithTooltipPure,{closeOnOutsideClick:!0,placement:\"bottom\",visible:isOpen,onVisibleChange:isVisible=>{setIsOpen(isVisible);},tooltip:React15__default.createElement(Detail,{width:calculateDetailWidth(detail)},React15__default.createElement(SyntaxHighlighter,{language:\"jsx\",format:!1},detail))},React15__default.createElement(Expandable,{className:\"sbdocs-expandable\"},React15__default.createElement(\"span\",null,summaryAsString),isOpen?React15__default.createElement(ChevronUpIcon,null):React15__default.createElement(ChevronDownIcon,null)))},ArgValue=({value:value3,initialExpandedArgs})=>value3==null?React15__default.createElement(EmptyArg,null):React15__default.createElement(ArgSummary,{value:value3,initialExpandedArgs});var Name=styled.span({fontWeight:\"bold\"}),Required=styled.span(({theme})=>({color:theme.color.negative,fontFamily:theme.typography.fonts.mono,cursor:\"help\"})),Description=styled.div(({theme})=>({\"&&\":{p:{margin:\"0 0 10px 0\"},a:{color:theme.color.secondary}},code:{...codeCommon({theme}),fontSize:12,fontFamily:theme.typography.fonts.mono},\"& code\":{margin:0,display:\"inline-block\"},\"& pre > code\":{whiteSpace:\"pre-wrap\"}})),Type=styled.div(({theme,hasDescription})=>({color:theme.base===\"light\"?curriedTransparentize$1(.1,theme.color.defaultText):curriedTransparentize$1(.2,theme.color.defaultText),marginTop:hasDescription?4:0})),TypeWithJsDoc=styled.div(({theme,hasDescription})=>({color:theme.base===\"light\"?curriedTransparentize$1(.1,theme.color.defaultText):curriedTransparentize$1(.2,theme.color.defaultText),marginTop:hasDescription?12:0,marginBottom:12})),StyledTd=styled.td(({theme,expandable})=>({paddingLeft:expandable?\"40px !important\":\"20px !important\"})),toSummary=value3=>value3&&{summary:typeof value3==\"string\"?value3:value3.name},ArgRow=props=>{let[isHovered,setIsHovered]=useState(!1),{row,updateArgs,compact,expandable,initialExpandedArgs}=props,{name:name2,description}=row,table=row.table||{},type=table.type||toSummary(row.type),defaultValue=table.defaultValue||row.defaultValue,required=row.type?.required,hasDescription=description!=null&&description!==\"\";return React15__default.createElement(\"tr\",{onMouseEnter:()=>setIsHovered(!0),onMouseLeave:()=>setIsHovered(!1)},React15__default.createElement(StyledTd,{expandable},React15__default.createElement(Name,null,name2),required?React15__default.createElement(Required,{title:\"Required\"},\"*\"):null),compact?null:React15__default.createElement(\"td\",null,hasDescription&&React15__default.createElement(Description,null,React15__default.createElement(index_modern_default,null,description)),table.jsDocTags!=null?React15__default.createElement(React15__default.Fragment,null,React15__default.createElement(TypeWithJsDoc,{hasDescription},React15__default.createElement(ArgValue,{value:type,initialExpandedArgs})),React15__default.createElement(ArgJsDoc,{tags:table.jsDocTags})):React15__default.createElement(Type,{hasDescription},React15__default.createElement(ArgValue,{value:type,initialExpandedArgs}))),compact?null:React15__default.createElement(\"td\",null,React15__default.createElement(ArgValue,{value:defaultValue,initialExpandedArgs})),updateArgs?React15__default.createElement(\"td\",null,React15__default.createElement(ArgControl,{...props,isHovered})):null)};var Wrapper8=styled.div(({inAddonPanel,theme})=>({height:inAddonPanel?\"100%\":\"auto\",display:\"flex\",border:inAddonPanel?\"none\":`1px solid ${theme.appBorderColor}`,borderRadius:inAddonPanel?0:theme.appBorderRadius,padding:inAddonPanel?0:40,alignItems:\"center\",justifyContent:\"center\",flexDirection:\"column\",gap:15,background:theme.background.content,boxShadow:\"rgba(0, 0, 0, 0.10) 0 1px 3px 0\"})),Links=styled.div(({theme})=>({display:\"flex\",fontSize:theme.typography.size.s2-1,gap:25})),Divider=styled.div(({theme})=>({width:1,height:16,backgroundColor:theme.appBorderColor})),Empty=({inAddonPanel})=>{let[isLoading,setIsLoading]=useState(!0);return useEffect(()=>{let load=setTimeout(()=>{setIsLoading(!1);},100);return ()=>clearTimeout(load)},[]),isLoading?null:React15__default.createElement(Wrapper8,{inAddonPanel},React15__default.createElement(EmptyTabContent,{title:inAddonPanel?\"Interactive story playground\":\"Args table with interactive controls couldn't be auto-generated\",description:React15__default.createElement(React15__default.Fragment,null,\"Controls give you an easy to use interface to test your components. Set your story args and you'll see controls appearing here automatically.\"),footer:React15__default.createElement(Links,null,inAddonPanel&&React15__default.createElement(React15__default.Fragment,null,React15__default.createElement(Link,{href:\"https://youtu.be/0gOfS6K0x0E\",target:\"_blank\",withArrow:!0},React15__default.createElement(VideoIcon,null),\" Watch 5m video\"),React15__default.createElement(Divider,null),React15__default.createElement(Link,{href:\"https://storybook.js.org/docs/essentials/controls\",target:\"_blank\",withArrow:!0},React15__default.createElement(DocumentIcon,null),\" Read docs\")),!inAddonPanel&&React15__default.createElement(Link,{href:\"https://storybook.js.org/docs/essentials/controls\",target:\"_blank\",withArrow:!0},React15__default.createElement(DocumentIcon,null),\" Learn how to set that up\"))}))};var ExpanderIconDown=styled(ChevronDownIcon$1)(({theme})=>({marginRight:8,marginLeft:-10,marginTop:-2,height:12,width:12,color:theme.base===\"light\"?curriedTransparentize$1(.25,theme.color.defaultText):curriedTransparentize$1(.3,theme.color.defaultText),border:\"none\",display:\"inline-block\"})),ExpanderIconRight=styled(ChevronRightIcon)(({theme})=>({marginRight:8,marginLeft:-10,marginTop:-2,height:12,width:12,color:theme.base===\"light\"?curriedTransparentize$1(.25,theme.color.defaultText):curriedTransparentize$1(.3,theme.color.defaultText),border:\"none\",display:\"inline-block\"})),FlexWrapper=styled.span(({theme})=>({display:\"flex\",lineHeight:\"20px\",alignItems:\"center\"})),Section=styled.td(({theme})=>({position:\"relative\",letterSpacing:\"0.35em\",textTransform:\"uppercase\",fontWeight:theme.typography.weight.bold,fontSize:theme.typography.size.s1-1,color:theme.base===\"light\"?curriedTransparentize$1(.4,theme.color.defaultText):curriedTransparentize$1(.6,theme.color.defaultText),background:`${theme.background.app} !important`,\"& ~ td\":{background:`${theme.background.app} !important`}})),Subsection=styled.td(({theme})=>({position:\"relative\",fontWeight:theme.typography.weight.bold,fontSize:theme.typography.size.s2-1,background:theme.background.app})),StyledTd2=styled.td({position:\"relative\"}),StyledTr=styled.tr(({theme})=>({\"&:hover > td\":{backgroundColor:`${curriedLighten$1(.005,theme.background.app)} !important`,boxShadow:`${theme.color.mediumlight} 0 - 1px 0 0 inset`,cursor:\"row-resize\"}})),ClickIntercept=styled.button({background:\"none\",border:\"none\",padding:\"0\",font:\"inherit\",position:\"absolute\",top:0,bottom:0,left:0,right:0,height:\"100%\",width:\"100%\",color:\"transparent\",cursor:\"row-resize !important\"}),SectionRow=({level=\"section\",label,children,initialExpanded=!0,colSpan=3})=>{let[expanded,setExpanded]=useState(initialExpanded),Level=level===\"subsection\"?Subsection:Section,itemCount=children?.length||0,caption=level===\"subsection\"?`${itemCount} item${itemCount!==1?\"s\":\"\"}`:\"\",helperText=`${expanded?\"Hide\":\"Show\"} ${level===\"subsection\"?itemCount:label} item${itemCount!==1?\"s\":\"\"}`;return React15__default.createElement(React15__default.Fragment,null,React15__default.createElement(StyledTr,{title:helperText},React15__default.createElement(Level,{colSpan:1},React15__default.createElement(ClickIntercept,{onClick:e2=>setExpanded(!expanded),tabIndex:0},helperText),React15__default.createElement(FlexWrapper,null,expanded?React15__default.createElement(ExpanderIconDown,null):React15__default.createElement(ExpanderIconRight,null),label)),React15__default.createElement(StyledTd2,{colSpan:colSpan-1},React15__default.createElement(ClickIntercept,{onClick:e2=>setExpanded(!expanded),tabIndex:-1,style:{outline:\"none\"}},helperText),expanded?null:caption)),expanded?children:null)};var Row=styled.div(({theme})=>({display:\"flex\",gap:16,borderBottom:`1px solid ${theme.appBorderColor}`,\"&:last-child\":{borderBottom:0}})),Column=styled.div(({numColumn})=>({display:\"flex\",flexDirection:\"column\",flex:numColumn||1,gap:5,padding:\"12px 20px\"})),SkeletonText=styled.div(({theme,width,height})=>({animation:`${theme.animation.glow} 1.5s ease-in-out infinite`,background:theme.appBorderColor,width:width||\"100%\",height:height||16,borderRadius:3})),columnWidth=[2,4,2,2],Skeleton=()=>React15__default.createElement(React15__default.Fragment,null,React15__default.createElement(Row,null,React15__default.createElement(Column,{numColumn:columnWidth[0]},React15__default.createElement(SkeletonText,{width:\"60%\"})),React15__default.createElement(Column,{numColumn:columnWidth[1]},React15__default.createElement(SkeletonText,{width:\"30%\"})),React15__default.createElement(Column,{numColumn:columnWidth[2]},React15__default.createElement(SkeletonText,{width:\"60%\"})),React15__default.createElement(Column,{numColumn:columnWidth[3]},React15__default.createElement(SkeletonText,{width:\"60%\"}))),React15__default.createElement(Row,null,React15__default.createElement(Column,{numColumn:columnWidth[0]},React15__default.createElement(SkeletonText,{width:\"60%\"})),React15__default.createElement(Column,{numColumn:columnWidth[1]},React15__default.createElement(SkeletonText,{width:\"80%\"}),React15__default.createElement(SkeletonText,{width:\"30%\"})),React15__default.createElement(Column,{numColumn:columnWidth[2]},React15__default.createElement(SkeletonText,{width:\"60%\"})),React15__default.createElement(Column,{numColumn:columnWidth[3]},React15__default.createElement(SkeletonText,{width:\"60%\"}))),React15__default.createElement(Row,null,React15__default.createElement(Column,{numColumn:columnWidth[0]},React15__default.createElement(SkeletonText,{width:\"60%\"})),React15__default.createElement(Column,{numColumn:columnWidth[1]},React15__default.createElement(SkeletonText,{width:\"80%\"}),React15__default.createElement(SkeletonText,{width:\"30%\"})),React15__default.createElement(Column,{numColumn:columnWidth[2]},React15__default.createElement(SkeletonText,{width:\"60%\"})),React15__default.createElement(Column,{numColumn:columnWidth[3]},React15__default.createElement(SkeletonText,{width:\"60%\"}))),React15__default.createElement(Row,null,React15__default.createElement(Column,{numColumn:columnWidth[0]},React15__default.createElement(SkeletonText,{width:\"60%\"})),React15__default.createElement(Column,{numColumn:columnWidth[1]},React15__default.createElement(SkeletonText,{width:\"80%\"}),React15__default.createElement(SkeletonText,{width:\"30%\"})),React15__default.createElement(Column,{numColumn:columnWidth[2]},React15__default.createElement(SkeletonText,{width:\"60%\"})),React15__default.createElement(Column,{numColumn:columnWidth[3]},React15__default.createElement(SkeletonText,{width:\"60%\"}))));var TableWrapper=styled.table(({theme,compact,inAddonPanel})=>({\"&&\":{borderSpacing:0,color:theme.color.defaultText,\"td, th\":{padding:0,border:\"none\",verticalAlign:\"top\",textOverflow:\"ellipsis\"},fontSize:theme.typography.size.s2-1,lineHeight:\"20px\",textAlign:\"left\",width:\"100%\",marginTop:inAddonPanel?0:25,marginBottom:inAddonPanel?0:40,\"thead th:first-of-type, td:first-of-type\":{width:\"25%\"},\"th:first-of-type, td:first-of-type\":{paddingLeft:20},\"th:nth-of-type(2), td:nth-of-type(2)\":{...compact?null:{width:\"35%\"}},\"td:nth-of-type(3)\":{...compact?null:{width:\"15%\"}},\"th:last-of-type, td:last-of-type\":{paddingRight:20,...compact?null:{width:\"25%\"}},th:{color:theme.base===\"light\"?curriedTransparentize$1(.25,theme.color.defaultText):curriedTransparentize$1(.45,theme.color.defaultText),paddingTop:10,paddingBottom:10,paddingLeft:15,paddingRight:15},td:{paddingTop:\"10px\",paddingBottom:\"10px\",\"&:not(:first-of-type)\":{paddingLeft:15,paddingRight:15},\"&:last-of-type\":{paddingRight:20}},marginLeft:inAddonPanel?0:1,marginRight:inAddonPanel?0:1,tbody:{...inAddonPanel?null:{filter:theme.base===\"light\"?\"drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.10))\":\"drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.20))\"},\"> tr > *\":{background:theme.background.content,borderTop:`1px solid ${theme.appBorderColor}`},...inAddonPanel?null:{\"> tr:first-of-type > *\":{borderBlockStart:`1px solid ${theme.appBorderColor}`},\"> tr:last-of-type > *\":{borderBlockEnd:`1px solid ${theme.appBorderColor}`},\"> tr > *:first-of-type\":{borderInlineStart:`1px solid ${theme.appBorderColor}`},\"> tr > *:last-of-type\":{borderInlineEnd:`1px solid ${theme.appBorderColor}`},\"> tr:first-of-type > td:first-of-type\":{borderTopLeftRadius:theme.appBorderRadius},\"> tr:first-of-type > td:last-of-type\":{borderTopRightRadius:theme.appBorderRadius},\"> tr:last-of-type > td:first-of-type\":{borderBottomLeftRadius:theme.appBorderRadius},\"> tr:last-of-type > td:last-of-type\":{borderBottomRightRadius:theme.appBorderRadius}}}}})),StyledIconButton=styled(IconButton)(({theme})=>({margin:\"-4px -12px -4px 0\"})),ControlHeadingWrapper=styled.span({display:\"flex\",justifyContent:\"space-between\"});var sortFns={alpha:(a2,b2)=>a2.name.localeCompare(b2.name),requiredFirst:(a2,b2)=>+!!b2.type?.required-+!!a2.type?.required||a2.name.localeCompare(b2.name),none:void 0},groupRows=(rows,sort)=>{let sections={ungrouped:[],ungroupedSubsections:{},sections:{}};if(!rows)return sections;Object.entries(rows).forEach(([key2,row])=>{let{category,subcategory}=row?.table||{};if(category){let section=sections.sections[category]||{ungrouped:[],subsections:{}};if(!subcategory)section.ungrouped.push({key:key2,...row});else {let subsection=section.subsections[subcategory]||[];subsection.push({key:key2,...row}),section.subsections[subcategory]=subsection;}sections.sections[category]=section;}else if(subcategory){let subsection=sections.ungroupedSubsections[subcategory]||[];subsection.push({key:key2,...row}),sections.ungroupedSubsections[subcategory]=subsection;}else sections.ungrouped.push({key:key2,...row});});let sortFn=sortFns[sort],sortSubsection=record=>sortFn?Object.keys(record).reduce((acc,cur)=>({...acc,[cur]:record[cur].sort(sortFn)}),{}):record;return {ungrouped:sections.ungrouped.sort(sortFn),ungroupedSubsections:sortSubsection(sections.ungroupedSubsections),sections:Object.keys(sections.sections).reduce((acc,cur)=>({...acc,[cur]:{ungrouped:sections.sections[cur].ungrouped.sort(sortFn),subsections:sortSubsection(sections.sections[cur].subsections)}}),{})}},safeIncludeConditionalArg=(row,args2,globals)=>{try{return includeConditionalArg(row,args2,globals)}catch(err){return once.warn(err.message),!1}},ArgsTable=props=>{let{updateArgs,resetArgs,compact,inAddonPanel,initialExpandedArgs,sort=\"none\",isLoading}=props;if(\"error\"in props){let{error}=props;return React15__default.createElement(EmptyBlock,null,error,\"\\xA0\",React15__default.createElement(Link,{href:\"http://storybook.js.org/docs/\",target:\"_blank\",withArrow:!0},React15__default.createElement(DocumentIcon,null),\" Read the docs\"))}if(isLoading)return React15__default.createElement(Skeleton,null);let{rows,args:args2,globals}=\"rows\"in props&&props,groups=groupRows(pickBy(rows||{},row=>!row?.table?.disable&&safeIncludeConditionalArg(row,args2||{},globals||{})),sort),hasNoUngrouped=groups.ungrouped.length===0,hasNoSections=Object.entries(groups.sections).length===0,hasNoUngroupedSubsections=Object.entries(groups.ungroupedSubsections).length===0;if(hasNoUngrouped&&hasNoSections&&hasNoUngroupedSubsections)return React15__default.createElement(Empty,{inAddonPanel});let colSpan=1;updateArgs&&(colSpan+=1),compact||(colSpan+=2);let expandable=Object.keys(groups.sections).length>0,common={updateArgs,compact,inAddonPanel,initialExpandedArgs};return React15__default.createElement(ResetWrapper,null,React15__default.createElement(TableWrapper,{compact,inAddonPanel,className:\"docblock-argstable sb-unstyled\"},React15__default.createElement(\"thead\",{className:\"docblock-argstable-head\"},React15__default.createElement(\"tr\",null,React15__default.createElement(\"th\",null,React15__default.createElement(\"span\",null,\"Name\")),compact?null:React15__default.createElement(\"th\",null,React15__default.createElement(\"span\",null,\"Description\")),compact?null:React15__default.createElement(\"th\",null,React15__default.createElement(\"span\",null,\"Default\")),updateArgs?React15__default.createElement(\"th\",null,React15__default.createElement(ControlHeadingWrapper,null,\"Control\",\" \",!isLoading&&resetArgs&&React15__default.createElement(StyledIconButton,{onClick:()=>resetArgs(),title:\"Reset controls\"},React15__default.createElement(UndoIcon,{\"aria-hidden\":!0})))):null)),React15__default.createElement(\"tbody\",{className:\"docblock-argstable-body\"},groups.ungrouped.map(row=>React15__default.createElement(ArgRow,{key:row.key,row,arg:args2&&args2[row.key],...common})),Object.entries(groups.ungroupedSubsections).map(([subcategory,subsection])=>React15__default.createElement(SectionRow,{key:subcategory,label:subcategory,level:\"subsection\",colSpan},subsection.map(row=>React15__default.createElement(ArgRow,{key:row.key,row,arg:args2&&args2[row.key],expandable,...common})))),Object.entries(groups.sections).map(([category,section])=>React15__default.createElement(SectionRow,{key:category,label:category,level:\"section\",colSpan},section.ungrouped.map(row=>React15__default.createElement(ArgRow,{key:row.key,row,arg:args2&&args2[row.key],...common})),Object.entries(section.subsections).map(([subcategory,subsection])=>React15__default.createElement(SectionRow,{key:subcategory,label:subcategory,level:\"subsection\",colSpan},subsection.map(row=>React15__default.createElement(ArgRow,{key:row.key,row,arg:args2&&args2[row.key],expandable,...common})))))))))};var TabbedArgsTable=({tabs,...props})=>{let entries=Object.entries(tabs);return entries.length===1?React15__default.createElement(ArgsTable,{...entries[0][1],...props}):React15__default.createElement(TabsState,null,entries.map((entry,index)=>{let[label,table]=entry,id=`prop_table_div_${label}`,Component4=\"div\",argsTableProps=index===0?props:{sort:props.sort};return React15__default.createElement(Component4,{key:id,id,title:label},({active})=>active?React15__default.createElement(ArgsTable,{key:`prop_table_${label}`,...table,...argsTableProps}):null)}))};var Label4=styled.div(({theme})=>({marginRight:30,fontSize:`${theme.typography.size.s1}px`,color:theme.base===\"light\"?curriedTransparentize$1(.4,theme.color.defaultText):curriedTransparentize$1(.6,theme.color.defaultText)})),Sample=styled.div({overflow:\"hidden\",whiteSpace:\"nowrap\",textOverflow:\"ellipsis\"}),TypeSpecimen=styled.div({display:\"flex\",flexDirection:\"row\",alignItems:\"baseline\",\"&:not(:last-child)\":{marginBottom:\"1rem\"}}),Wrapper9=styled.div(withReset,({theme})=>({...getBlockBackgroundStyle(theme),margin:\"25px 0 40px\",padding:\"30px 20px\"})),Typeset=({fontFamily,fontSizes,fontWeight,sampleText,...props})=>React15__default.createElement(Wrapper9,{...props,className:\"docblock-typeset sb-unstyled\"},fontSizes.map(size=>React15__default.createElement(TypeSpecimen,{key:size},React15__default.createElement(Label4,null,size),React15__default.createElement(Sample,{style:{fontFamily,fontSize:size,fontWeight,lineHeight:1.2}},sampleText||\"Was he a beast if music could move him so?\"))));var ItemTitle=styled.div(({theme})=>({fontWeight:theme.typography.weight.bold,color:theme.color.defaultText})),ItemSubtitle=styled.div(({theme})=>({color:theme.base===\"light\"?curriedTransparentize$1(.2,theme.color.defaultText):curriedTransparentize$1(.6,theme.color.defaultText)})),ItemDescription=styled.div({flex:\"0 0 30%\",lineHeight:\"20px\",marginTop:5}),SwatchLabel=styled.div(({theme})=>({flex:1,textAlign:\"center\",fontFamily:theme.typography.fonts.mono,fontSize:theme.typography.size.s1,lineHeight:1,overflow:\"hidden\",color:theme.base===\"light\"?curriedTransparentize$1(.4,theme.color.defaultText):curriedTransparentize$1(.6,theme.color.defaultText),\"> div\":{display:\"inline-block\",overflow:\"hidden\",maxWidth:\"100%\",textOverflow:\"ellipsis\"},span:{display:\"block\",marginTop:2}})),SwatchLabels=styled.div({display:\"flex\",flexDirection:\"row\"}),Swatch=styled.div(({background})=>({position:\"relative\",flex:1,\"&::before\":{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",background,content:'\"\"'}})),SwatchColors=styled.div(({theme})=>({...getBlockBackgroundStyle(theme),display:\"flex\",flexDirection:\"row\",height:50,marginBottom:5,overflow:\"hidden\",backgroundColor:\"white\",backgroundImage:\"repeating-linear-gradient(-45deg, #ccc, #ccc 1px, #fff 1px, #fff 16px)\",backgroundClip:\"padding-box\"})),SwatchSpecimen=styled.div({display:\"flex\",flexDirection:\"column\",flex:1,position:\"relative\",marginBottom:30}),Swatches=styled.div({flex:1,display:\"flex\",flexDirection:\"row\"}),Item=styled.div({display:\"flex\",alignItems:\"flex-start\"}),ListName=styled.div({flex:\"0 0 30%\"}),ListSwatches=styled.div({flex:1}),ListHeading=styled.div(({theme})=>({display:\"flex\",flexDirection:\"row\",alignItems:\"center\",paddingBottom:20,fontWeight:theme.typography.weight.bold,color:theme.base===\"light\"?curriedTransparentize$1(.4,theme.color.defaultText):curriedTransparentize$1(.6,theme.color.defaultText)})),List=styled.div(({theme})=>({fontSize:theme.typography.size.s2,lineHeight:\"20px\",display:\"flex\",flexDirection:\"column\"}));function renderSwatch(color,index){return React15__default.createElement(Swatch,{key:`${color}-${index}`,title:color,background:color})}function renderSwatchLabel(color,index,colorDescription){return React15__default.createElement(SwatchLabel,{key:`${color}-${index}`,title:color},React15__default.createElement(\"div\",null,color,colorDescription&&React15__default.createElement(\"span\",null,colorDescription)))}function renderSwatchSpecimen(colors){if(Array.isArray(colors))return React15__default.createElement(SwatchSpecimen,null,React15__default.createElement(SwatchColors,null,colors.map((color,index)=>renderSwatch(color,index))),React15__default.createElement(SwatchLabels,null,colors.map((color,index)=>renderSwatchLabel(color,index))));let swatchElements=[],labelElements=[];for(let colorKey in colors){let colorValue=colors[colorKey];swatchElements.push(renderSwatch(colorValue,swatchElements.length)),labelElements.push(renderSwatchLabel(colorKey,labelElements.length,colorValue));}return React15__default.createElement(SwatchSpecimen,null,React15__default.createElement(SwatchColors,null,swatchElements),React15__default.createElement(SwatchLabels,null,labelElements))}var ColorItem=({title,subtitle,colors})=>React15__default.createElement(Item,null,React15__default.createElement(ItemDescription,null,React15__default.createElement(ItemTitle,null,title),React15__default.createElement(ItemSubtitle,null,subtitle)),React15__default.createElement(Swatches,null,renderSwatchSpecimen(colors))),ColorPalette=({children,...props})=>React15__default.createElement(ResetWrapper,null,React15__default.createElement(List,{...props,className:\"docblock-colorpalette sb-unstyled\"},React15__default.createElement(ListHeading,null,React15__default.createElement(ListName,null,\"Name\"),React15__default.createElement(ListSwatches,null,\"Swatches\")),children));var ItemLabel=styled.div(({theme})=>({fontFamily:theme.typography.fonts.base,fontSize:theme.typography.size.s2,color:theme.color.defaultText,marginLeft:10,lineHeight:1.2})),ItemSpecimen=styled.div(({theme})=>({...getBlockBackgroundStyle(theme),overflow:\"hidden\",height:40,width:40,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",flex:\"none\",\"> img, > svg\":{width:20,height:20}})),Item2=styled.div({display:\"inline-flex\",flexDirection:\"row\",alignItems:\"center\",flex:\"0 1 calc(20% - 10px)\",minWidth:120,margin:\"0px 10px 30px 0\"}),List2=styled.div({display:\"flex\",flexFlow:\"row wrap\"}),IconItem=({name:name2,children})=>React15__default.createElement(Item2,null,React15__default.createElement(ItemSpecimen,null,children),React15__default.createElement(ItemLabel,null,name2)),IconGallery=({children,...props})=>React15__default.createElement(ResetWrapper,null,React15__default.createElement(List2,{...props,className:\"docblock-icongallery sb-unstyled\"},children));var anchorBlockIdFromId=storyId=>`anchor--${storyId}`,Anchor=({storyId,children})=>React15__default.createElement(\"div\",{id:anchorBlockIdFromId(storyId),className:\"sb-anchor\"},children);globalThis&&globalThis.__DOCS_CONTEXT__===void 0&&(globalThis.__DOCS_CONTEXT__=createContext(null),globalThis.__DOCS_CONTEXT__.displayName=\"DocsContext\");var DocsContext=globalThis?globalThis.__DOCS_CONTEXT__:createContext(null);var useOf=(moduleExportOrType,validTypes)=>useContext(DocsContext).resolveOf(moduleExportOrType,validTypes);var titleCase=str=>str.split(\"-\").map(part=>part.charAt(0).toUpperCase()+part.slice(1)).join(\"\"),getComponentName=component=>{if(component)return typeof component==\"string\"?component.includes(\"-\")?titleCase(component):component:component.__docgenInfo&&component.__docgenInfo.displayName?component.__docgenInfo.displayName:component.name};function scrollToElement(element,block=\"start\"){element.scrollIntoView({behavior:\"smooth\",block,inline:\"nearest\"});}function extractComponentArgTypes(component,parameters){let{extractArgTypes}=parameters.docs||{};if(!extractArgTypes)throw new Error(\"Args unsupported. See Args documentation for your framework.\");return extractArgTypes(component)}function getArgTypesFromResolved(resolved){if(resolved.type===\"component\"){let{component:component2,projectAnnotations:{parameters:parameters2}}=resolved;return {argTypes:extractComponentArgTypes(component2,parameters2),parameters:parameters2,component:component2}}if(resolved.type===\"meta\"){let{preparedMeta:{argTypes:argTypes2,parameters:parameters2,component:component2,subcomponents:subcomponents2}}=resolved;return {argTypes:argTypes2,parameters:parameters2,component:component2,subcomponents:subcomponents2}}let{story:{argTypes,parameters,component,subcomponents}}=resolved;return {argTypes,parameters,component,subcomponents}}var ArgTypes=props=>{let{of}=props;if(\"of\"in props&&of===void 0)throw new Error(\"Unexpected `of={undefined}`, did you mistype a CSF file reference?\");let resolved=useOf(of||\"meta\"),{argTypes,parameters,component,subcomponents}=getArgTypesFromResolved(resolved),argTypesParameters=parameters.docs?.argTypes||{},include=props.include??argTypesParameters.include,exclude=props.exclude??argTypesParameters.exclude,sort=props.sort??argTypesParameters.sort,filteredArgTypes=filterArgTypes(argTypes,include,exclude);if(!(!!subcomponents&&Object.keys(subcomponents).length>0))return React15__default.createElement(ArgsTable,{rows:filteredArgTypes,sort});let mainComponentName=getComponentName(component),subcomponentTabs=Object.fromEntries(Object.entries(subcomponents).map(([key2,comp])=>[key2,{rows:filterArgTypes(extractComponentArgTypes(comp,parameters),include,exclude),sort}])),tabs={[mainComponentName]:{rows:filteredArgTypes,sort},...subcomponentTabs};return React15__default.createElement(TabbedArgsTable,{tabs,sort})};var __create=Object.create,__defProp=Object.defineProperty,__getOwnPropDesc=Object.getOwnPropertyDescriptor,__getOwnPropNames=Object.getOwnPropertyNames,__getProtoOf=Object.getPrototypeOf,__hasOwnProp=Object.prototype.hasOwnProperty,__commonJS2=(cb,mod)=>function(){return mod||(0, cb[__getOwnPropNames(cb)[0]])((mod={exports:{}}).exports,mod),mod.exports},__copyProps=(to,from,except,desc)=>{if(from&&typeof from==\"object\"||typeof from==\"function\")for(let key2 of __getOwnPropNames(from))!__hasOwnProp.call(to,key2)&&key2!==except&&__defProp(to,key2,{get:()=>from[key2],enumerable:!(desc=__getOwnPropDesc(from,key2))||desc.enumerable});return to},__toESM2=(mod,isNodeMode,target)=>(target=mod!=null?__create(__getProtoOf(mod)):{},__copyProps(isNodeMode||!mod||!mod.__esModule?__defProp(target,\"default\",{value:mod,enumerable:!0}):target,mod)),eventProperties=[\"bubbles\",\"cancelBubble\",\"cancelable\",\"composed\",\"currentTarget\",\"defaultPrevented\",\"eventPhase\",\"isTrusted\",\"returnValue\",\"srcElement\",\"target\",\"timeStamp\",\"type\"],customEventSpecificProperties=[\"detail\"];function extractEventHiddenProperties(event){let rebuildEvent=eventProperties.filter(value3=>event[value3]!==void 0).reduce((acc,value3)=>({...acc,[value3]:event[value3]}),{});return event instanceof CustomEvent&&customEventSpecificProperties.filter(value3=>event[value3]!==void 0).forEach(value3=>{rebuildEvent[value3]=event[value3];}),rebuildEvent}var import_memoizerific2=__toESM(require_memoizerific(),1),require_shams=__commonJS2({\"node_modules/has-symbols/shams.js\"(exports,module){module.exports=function(){if(typeof Symbol!=\"function\"||typeof Object.getOwnPropertySymbols!=\"function\")return !1;if(typeof Symbol.iterator==\"symbol\")return !0;var obj={},sym=Symbol(\"test\"),symObj=Object(sym);if(typeof sym==\"string\"||Object.prototype.toString.call(sym)!==\"[object Symbol]\"||Object.prototype.toString.call(symObj)!==\"[object Symbol]\")return !1;var symVal=42;obj[sym]=symVal;for(sym in obj)return !1;if(typeof Object.keys==\"function\"&&Object.keys(obj).length!==0||typeof Object.getOwnPropertyNames==\"function\"&&Object.getOwnPropertyNames(obj).length!==0)return !1;var syms=Object.getOwnPropertySymbols(obj);if(syms.length!==1||syms[0]!==sym||!Object.prototype.propertyIsEnumerable.call(obj,sym))return !1;if(typeof Object.getOwnPropertyDescriptor==\"function\"){var descriptor=Object.getOwnPropertyDescriptor(obj,sym);if(descriptor.value!==symVal||descriptor.enumerable!==!0)return !1}return !0};}}),require_has_symbols=__commonJS2({\"node_modules/has-symbols/index.js\"(exports,module){var origSymbol=typeof Symbol<\"u\"&&Symbol,hasSymbolSham=require_shams();module.exports=function(){return typeof origSymbol!=\"function\"||typeof Symbol!=\"function\"||typeof origSymbol(\"foo\")!=\"symbol\"||typeof Symbol(\"bar\")!=\"symbol\"?!1:hasSymbolSham()};}}),require_implementation=__commonJS2({\"node_modules/function-bind/implementation.js\"(exports,module){var ERROR_MESSAGE=\"Function.prototype.bind called on incompatible \",slice=Array.prototype.slice,toStr=Object.prototype.toString,funcType=\"[object Function]\";module.exports=function(that){var target=this;if(typeof target!=\"function\"||toStr.call(target)!==funcType)throw new TypeError(ERROR_MESSAGE+target);for(var args2=slice.call(arguments,1),bound,binder=function(){if(this instanceof bound){var result2=target.apply(this,args2.concat(slice.call(arguments)));return Object(result2)===result2?result2:this}else return target.apply(that,args2.concat(slice.call(arguments)))},boundLength=Math.max(0,target.length-args2.length),boundArgs=[],i2=0;i2<boundLength;i2++)boundArgs.push(\"$\"+i2);if(bound=Function(\"binder\",\"return function (\"+boundArgs.join(\",\")+\"){ return binder.apply(this,arguments); }\")(binder),target.prototype){var Empty2=function(){};Empty2.prototype=target.prototype,bound.prototype=new Empty2,Empty2.prototype=null;}return bound};}}),require_function_bind=__commonJS2({\"node_modules/function-bind/index.js\"(exports,module){var implementation=require_implementation();module.exports=Function.prototype.bind||implementation;}}),require_src=__commonJS2({\"node_modules/has/src/index.js\"(exports,module){var bind=require_function_bind();module.exports=bind.call(Function.call,Object.prototype.hasOwnProperty);}}),require_get_intrinsic=__commonJS2({\"node_modules/get-intrinsic/index.js\"(exports,module){var undefined2,$SyntaxError=SyntaxError,$Function=Function,$TypeError=TypeError,getEvalledConstructor=function(expressionSyntax){try{return $Function('\"use strict\"; return ('+expressionSyntax+\").constructor;\")()}catch{}},$gOPD=Object.getOwnPropertyDescriptor;if($gOPD)try{$gOPD({},\"\");}catch{$gOPD=null;}var throwTypeError=function(){throw new $TypeError},ThrowTypeError=$gOPD?function(){try{return arguments.callee,throwTypeError}catch{try{return $gOPD(arguments,\"callee\").get}catch{return throwTypeError}}}():throwTypeError,hasSymbols=require_has_symbols()(),getProto=Object.getPrototypeOf||function(x2){return x2.__proto__},needsEval={},TypedArray=typeof Uint8Array>\"u\"?undefined2:getProto(Uint8Array),INTRINSICS={\"%AggregateError%\":typeof AggregateError>\"u\"?undefined2:AggregateError,\"%Array%\":Array,\"%ArrayBuffer%\":typeof ArrayBuffer>\"u\"?undefined2:ArrayBuffer,\"%ArrayIteratorPrototype%\":hasSymbols?getProto([][Symbol.iterator]()):undefined2,\"%AsyncFromSyncIteratorPrototype%\":undefined2,\"%AsyncFunction%\":needsEval,\"%AsyncGenerator%\":needsEval,\"%AsyncGeneratorFunction%\":needsEval,\"%AsyncIteratorPrototype%\":needsEval,\"%Atomics%\":typeof Atomics>\"u\"?undefined2:Atomics,\"%BigInt%\":typeof BigInt>\"u\"?undefined2:BigInt,\"%Boolean%\":Boolean,\"%DataView%\":typeof DataView>\"u\"?undefined2:DataView,\"%Date%\":Date,\"%decodeURI%\":decodeURI,\"%decodeURIComponent%\":decodeURIComponent,\"%encodeURI%\":encodeURI,\"%encodeURIComponent%\":encodeURIComponent,\"%Error%\":Error,\"%eval%\":eval,\"%EvalError%\":EvalError,\"%Float32Array%\":typeof Float32Array>\"u\"?undefined2:Float32Array,\"%Float64Array%\":typeof Float64Array>\"u\"?undefined2:Float64Array,\"%FinalizationRegistry%\":typeof FinalizationRegistry>\"u\"?undefined2:FinalizationRegistry,\"%Function%\":$Function,\"%GeneratorFunction%\":needsEval,\"%Int8Array%\":typeof Int8Array>\"u\"?undefined2:Int8Array,\"%Int16Array%\":typeof Int16Array>\"u\"?undefined2:Int16Array,\"%Int32Array%\":typeof Int32Array>\"u\"?undefined2:Int32Array,\"%isFinite%\":isFinite,\"%isNaN%\":isNaN,\"%IteratorPrototype%\":hasSymbols?getProto(getProto([][Symbol.iterator]())):undefined2,\"%JSON%\":typeof JSON==\"object\"?JSON:undefined2,\"%Map%\":typeof Map>\"u\"?undefined2:Map,\"%MapIteratorPrototype%\":typeof Map>\"u\"||!hasSymbols?undefined2:getProto(new Map()[Symbol.iterator]()),\"%Math%\":Math,\"%Number%\":Number,\"%Object%\":Object,\"%parseFloat%\":parseFloat,\"%parseInt%\":parseInt,\"%Promise%\":typeof Promise>\"u\"?undefined2:Promise,\"%Proxy%\":typeof Proxy>\"u\"?undefined2:Proxy,\"%RangeError%\":RangeError,\"%ReferenceError%\":ReferenceError,\"%Reflect%\":typeof Reflect>\"u\"?undefined2:Reflect,\"%RegExp%\":RegExp,\"%Set%\":typeof Set>\"u\"?undefined2:Set,\"%SetIteratorPrototype%\":typeof Set>\"u\"||!hasSymbols?undefined2:getProto(new Set()[Symbol.iterator]()),\"%SharedArrayBuffer%\":typeof SharedArrayBuffer>\"u\"?undefined2:SharedArrayBuffer,\"%String%\":String,\"%StringIteratorPrototype%\":hasSymbols?getProto(\"\"[Symbol.iterator]()):undefined2,\"%Symbol%\":hasSymbols?Symbol:undefined2,\"%SyntaxError%\":$SyntaxError,\"%ThrowTypeError%\":ThrowTypeError,\"%TypedArray%\":TypedArray,\"%TypeError%\":$TypeError,\"%Uint8Array%\":typeof Uint8Array>\"u\"?undefined2:Uint8Array,\"%Uint8ClampedArray%\":typeof Uint8ClampedArray>\"u\"?undefined2:Uint8ClampedArray,\"%Uint16Array%\":typeof Uint16Array>\"u\"?undefined2:Uint16Array,\"%Uint32Array%\":typeof Uint32Array>\"u\"?undefined2:Uint32Array,\"%URIError%\":URIError,\"%WeakMap%\":typeof WeakMap>\"u\"?undefined2:WeakMap,\"%WeakRef%\":typeof WeakRef>\"u\"?undefined2:WeakRef,\"%WeakSet%\":typeof WeakSet>\"u\"?undefined2:WeakSet},doEval=function doEval2(name2){var value22;if(name2===\"%AsyncFunction%\")value22=getEvalledConstructor(\"async function () {}\");else if(name2===\"%GeneratorFunction%\")value22=getEvalledConstructor(\"function* () {}\");else if(name2===\"%AsyncGeneratorFunction%\")value22=getEvalledConstructor(\"async function* () {}\");else if(name2===\"%AsyncGenerator%\"){var fn=doEval2(\"%AsyncGeneratorFunction%\");fn&&(value22=fn.prototype);}else if(name2===\"%AsyncIteratorPrototype%\"){var gen=doEval2(\"%AsyncGenerator%\");gen&&(value22=getProto(gen.prototype));}return INTRINSICS[name2]=value22,value22},LEGACY_ALIASES={\"%ArrayBufferPrototype%\":[\"ArrayBuffer\",\"prototype\"],\"%ArrayPrototype%\":[\"Array\",\"prototype\"],\"%ArrayProto_entries%\":[\"Array\",\"prototype\",\"entries\"],\"%ArrayProto_forEach%\":[\"Array\",\"prototype\",\"forEach\"],\"%ArrayProto_keys%\":[\"Array\",\"prototype\",\"keys\"],\"%ArrayProto_values%\":[\"Array\",\"prototype\",\"values\"],\"%AsyncFunctionPrototype%\":[\"AsyncFunction\",\"prototype\"],\"%AsyncGenerator%\":[\"AsyncGeneratorFunction\",\"prototype\"],\"%AsyncGeneratorPrototype%\":[\"AsyncGeneratorFunction\",\"prototype\",\"prototype\"],\"%BooleanPrototype%\":[\"Boolean\",\"prototype\"],\"%DataViewPrototype%\":[\"DataView\",\"prototype\"],\"%DatePrototype%\":[\"Date\",\"prototype\"],\"%ErrorPrototype%\":[\"Error\",\"prototype\"],\"%EvalErrorPrototype%\":[\"EvalError\",\"prototype\"],\"%Float32ArrayPrototype%\":[\"Float32Array\",\"prototype\"],\"%Float64ArrayPrototype%\":[\"Float64Array\",\"prototype\"],\"%FunctionPrototype%\":[\"Function\",\"prototype\"],\"%Generator%\":[\"GeneratorFunction\",\"prototype\"],\"%GeneratorPrototype%\":[\"GeneratorFunction\",\"prototype\",\"prototype\"],\"%Int8ArrayPrototype%\":[\"Int8Array\",\"prototype\"],\"%Int16ArrayPrototype%\":[\"Int16Array\",\"prototype\"],\"%Int32ArrayPrototype%\":[\"Int32Array\",\"prototype\"],\"%JSONParse%\":[\"JSON\",\"parse\"],\"%JSONStringify%\":[\"JSON\",\"stringify\"],\"%MapPrototype%\":[\"Map\",\"prototype\"],\"%NumberPrototype%\":[\"Number\",\"prototype\"],\"%ObjectPrototype%\":[\"Object\",\"prototype\"],\"%ObjProto_toString%\":[\"Object\",\"prototype\",\"toString\"],\"%ObjProto_valueOf%\":[\"Object\",\"prototype\",\"valueOf\"],\"%PromisePrototype%\":[\"Promise\",\"prototype\"],\"%PromiseProto_then%\":[\"Promise\",\"prototype\",\"then\"],\"%Promise_all%\":[\"Promise\",\"all\"],\"%Promise_reject%\":[\"Promise\",\"reject\"],\"%Promise_resolve%\":[\"Promise\",\"resolve\"],\"%RangeErrorPrototype%\":[\"RangeError\",\"prototype\"],\"%ReferenceErrorPrototype%\":[\"ReferenceError\",\"prototype\"],\"%RegExpPrototype%\":[\"RegExp\",\"prototype\"],\"%SetPrototype%\":[\"Set\",\"prototype\"],\"%SharedArrayBufferPrototype%\":[\"SharedArrayBuffer\",\"prototype\"],\"%StringPrototype%\":[\"String\",\"prototype\"],\"%SymbolPrototype%\":[\"Symbol\",\"prototype\"],\"%SyntaxErrorPrototype%\":[\"SyntaxError\",\"prototype\"],\"%TypedArrayPrototype%\":[\"TypedArray\",\"prototype\"],\"%TypeErrorPrototype%\":[\"TypeError\",\"prototype\"],\"%Uint8ArrayPrototype%\":[\"Uint8Array\",\"prototype\"],\"%Uint8ClampedArrayPrototype%\":[\"Uint8ClampedArray\",\"prototype\"],\"%Uint16ArrayPrototype%\":[\"Uint16Array\",\"prototype\"],\"%Uint32ArrayPrototype%\":[\"Uint32Array\",\"prototype\"],\"%URIErrorPrototype%\":[\"URIError\",\"prototype\"],\"%WeakMapPrototype%\":[\"WeakMap\",\"prototype\"],\"%WeakSetPrototype%\":[\"WeakSet\",\"prototype\"]},bind=require_function_bind(),hasOwn=require_src(),$concat=bind.call(Function.call,Array.prototype.concat),$spliceApply=bind.call(Function.apply,Array.prototype.splice),$replace=bind.call(Function.call,String.prototype.replace),$strSlice=bind.call(Function.call,String.prototype.slice),$exec=bind.call(Function.call,RegExp.prototype.exec),rePropName2=/[^%.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|%$))/g,reEscapeChar2=/\\\\(\\\\)?/g,stringToPath2=function(string){var first=$strSlice(string,0,1),last=$strSlice(string,-1);if(first===\"%\"&&last!==\"%\")throw new $SyntaxError(\"invalid intrinsic syntax, expected closing `%`\");if(last===\"%\"&&first!==\"%\")throw new $SyntaxError(\"invalid intrinsic syntax, expected opening `%`\");var result2=[];return $replace(string,rePropName2,function(match,number,quote,subString){result2[result2.length]=quote?$replace(subString,reEscapeChar2,\"$1\"):number||match;}),result2},getBaseIntrinsic=function(name2,allowMissing){var intrinsicName=name2,alias;if(hasOwn(LEGACY_ALIASES,intrinsicName)&&(alias=LEGACY_ALIASES[intrinsicName],intrinsicName=\"%\"+alias[0]+\"%\"),hasOwn(INTRINSICS,intrinsicName)){var value22=INTRINSICS[intrinsicName];if(value22===needsEval&&(value22=doEval(intrinsicName)),typeof value22>\"u\"&&!allowMissing)throw new $TypeError(\"intrinsic \"+name2+\" exists, but is not available. Please file an issue!\");return {alias,name:intrinsicName,value:value22}}throw new $SyntaxError(\"intrinsic \"+name2+\" does not exist!\")};module.exports=function(name2,allowMissing){if(typeof name2!=\"string\"||name2.length===0)throw new $TypeError(\"intrinsic name must be a non-empty string\");if(arguments.length>1&&typeof allowMissing!=\"boolean\")throw new $TypeError('\"allowMissing\" argument must be a boolean');if($exec(/^%?[^%]*%?$/,name2)===null)throw new $SyntaxError(\"`%` may not be present anywhere but at the beginning and end of the intrinsic name\");var parts=stringToPath2(name2),intrinsicBaseName=parts.length>0?parts[0]:\"\",intrinsic=getBaseIntrinsic(\"%\"+intrinsicBaseName+\"%\",allowMissing),intrinsicRealName=intrinsic.name,value22=intrinsic.value,skipFurtherCaching=!1,alias=intrinsic.alias;alias&&(intrinsicBaseName=alias[0],$spliceApply(parts,$concat([0,1],alias)));for(var i2=1,isOwn=!0;i2<parts.length;i2+=1){var part=parts[i2],first=$strSlice(part,0,1),last=$strSlice(part,-1);if((first==='\"'||first===\"'\"||first===\"`\"||last==='\"'||last===\"'\"||last===\"`\")&&first!==last)throw new $SyntaxError(\"property names with quotes must have matching quotes\");if((part===\"constructor\"||!isOwn)&&(skipFurtherCaching=!0),intrinsicBaseName+=\".\"+part,intrinsicRealName=\"%\"+intrinsicBaseName+\"%\",hasOwn(INTRINSICS,intrinsicRealName))value22=INTRINSICS[intrinsicRealName];else if(value22!=null){if(!(part in value22)){if(!allowMissing)throw new $TypeError(\"base intrinsic for \"+name2+\" exists, but the property is not available.\");return}if($gOPD&&i2+1>=parts.length){var desc=$gOPD(value22,part);isOwn=!!desc,isOwn&&\"get\"in desc&&!(\"originalValue\"in desc.get)?value22=desc.get:value22=value22[part];}else isOwn=hasOwn(value22,part),value22=value22[part];isOwn&&!skipFurtherCaching&&(INTRINSICS[intrinsicRealName]=value22);}}return value22};}}),require_call_bind=__commonJS2({\"node_modules/call-bind/index.js\"(exports,module){var bind=require_function_bind(),GetIntrinsic=require_get_intrinsic(),$apply=GetIntrinsic(\"%Function.prototype.apply%\"),$call=GetIntrinsic(\"%Function.prototype.call%\"),$reflectApply=GetIntrinsic(\"%Reflect.apply%\",!0)||bind.call($call,$apply),$gOPD=GetIntrinsic(\"%Object.getOwnPropertyDescriptor%\",!0),$defineProperty=GetIntrinsic(\"%Object.defineProperty%\",!0),$max=GetIntrinsic(\"%Math.max%\");if($defineProperty)try{$defineProperty({},\"a\",{value:1});}catch{$defineProperty=null;}module.exports=function(originalFunction){var func=$reflectApply(bind,$call,arguments);if($gOPD&&$defineProperty){var desc=$gOPD(func,\"length\");desc.configurable&&$defineProperty(func,\"length\",{value:1+$max(0,originalFunction.length-(arguments.length-1))});}return func};var applyBind=function(){return $reflectApply(bind,$apply,arguments)};$defineProperty?$defineProperty(module.exports,\"apply\",{value:applyBind}):module.exports.apply=applyBind;}}),require_callBound=__commonJS2({\"node_modules/call-bind/callBound.js\"(exports,module){var GetIntrinsic=require_get_intrinsic(),callBind=require_call_bind(),$indexOf=callBind(GetIntrinsic(\"String.prototype.indexOf\"));module.exports=function(name2,allowMissing){var intrinsic=GetIntrinsic(name2,!!allowMissing);return typeof intrinsic==\"function\"&&$indexOf(name2,\".prototype.\")>-1?callBind(intrinsic):intrinsic};}}),require_shams2=__commonJS2({\"node_modules/has-tostringtag/shams.js\"(exports,module){var hasSymbols=require_shams();module.exports=function(){return hasSymbols()&&!!Symbol.toStringTag};}}),require_is_regex=__commonJS2({\"node_modules/is-regex/index.js\"(exports,module){var callBound=require_callBound(),hasToStringTag=require_shams2()(),has,$exec,isRegexMarker,badStringifier;hasToStringTag&&(has=callBound(\"Object.prototype.hasOwnProperty\"),$exec=callBound(\"RegExp.prototype.exec\"),isRegexMarker={},throwRegexMarker=function(){throw isRegexMarker},badStringifier={toString:throwRegexMarker,valueOf:throwRegexMarker},typeof Symbol.toPrimitive==\"symbol\"&&(badStringifier[Symbol.toPrimitive]=throwRegexMarker));var throwRegexMarker,$toString=callBound(\"Object.prototype.toString\"),gOPD=Object.getOwnPropertyDescriptor,regexClass=\"[object RegExp]\";module.exports=hasToStringTag?function(value22){if(!value22||typeof value22!=\"object\")return !1;var descriptor=gOPD(value22,\"lastIndex\"),hasLastIndexDataProperty=descriptor&&has(descriptor,\"value\");if(!hasLastIndexDataProperty)return !1;try{$exec(value22,badStringifier);}catch(e2){return e2===isRegexMarker}}:function(value22){return !value22||typeof value22!=\"object\"&&typeof value22!=\"function\"?!1:$toString(value22)===regexClass};}}),require_is_function=__commonJS2({\"node_modules/is-function/index.js\"(exports,module){module.exports=isFunction3;var toString2=Object.prototype.toString;function isFunction3(fn){if(!fn)return !1;var string=toString2.call(fn);return string===\"[object Function]\"||typeof fn==\"function\"&&string!==\"[object RegExp]\"||typeof window<\"u\"&&(fn===window.setTimeout||fn===window.alert||fn===window.confirm||fn===window.prompt)}}}),require_is_symbol=__commonJS2({\"node_modules/is-symbol/index.js\"(exports,module){var toStr=Object.prototype.toString,hasSymbols=require_has_symbols()();hasSymbols?(symToStr=Symbol.prototype.toString,symStringRegex=/^Symbol\\(.*\\)$/,isSymbolObject=function(value22){return typeof value22.valueOf()!=\"symbol\"?!1:symStringRegex.test(symToStr.call(value22))},module.exports=function(value22){if(typeof value22==\"symbol\")return !0;if(toStr.call(value22)!==\"[object Symbol]\")return !1;try{return isSymbolObject(value22)}catch{return !1}}):module.exports=function(value22){return !1};var symToStr,symStringRegex,isSymbolObject;}}),import_is_regex=__toESM2(require_is_regex()),import_is_function=__toESM2(require_is_function()),import_is_symbol=__toESM2(require_is_symbol());function isObject(val){return val!=null&&typeof val==\"object\"&&Array.isArray(val)===!1}var freeGlobal=typeof global==\"object\"&&global&&global.Object===Object&&global,freeGlobal_default=freeGlobal,freeSelf=typeof self==\"object\"&&self&&self.Object===Object&&self,root2=freeGlobal_default||freeSelf||Function(\"return this\")(),root_default=root2,Symbol2=root_default.Symbol,Symbol_default=Symbol2,objectProto=Object.prototype,hasOwnProperty=objectProto.hasOwnProperty,nativeObjectToString=objectProto.toString,symToStringTag=Symbol_default?Symbol_default.toStringTag:void 0;function getRawTag(value22){var isOwn=hasOwnProperty.call(value22,symToStringTag),tag=value22[symToStringTag];try{value22[symToStringTag]=void 0;var unmasked=!0;}catch{}var result2=nativeObjectToString.call(value22);return unmasked&&(isOwn?value22[symToStringTag]=tag:delete value22[symToStringTag]),result2}var getRawTag_default=getRawTag,objectProto2=Object.prototype,nativeObjectToString2=objectProto2.toString;function objectToString(value22){return nativeObjectToString2.call(value22)}var objectToString_default=objectToString,nullTag=\"[object Null]\",undefinedTag=\"[object Undefined]\",symToStringTag2=Symbol_default?Symbol_default.toStringTag:void 0;function baseGetTag(value22){return value22==null?value22===void 0?undefinedTag:nullTag:symToStringTag2&&symToStringTag2 in Object(value22)?getRawTag_default(value22):objectToString_default(value22)}var baseGetTag_default=baseGetTag;var symbolProto=Symbol_default?Symbol_default.prototype:void 0;symbolProto?symbolProto.toString:void 0;function isObject2(value22){var type=typeof value22;return value22!=null&&(type==\"object\"||type==\"function\")}var isObject_default=isObject2,asyncTag=\"[object AsyncFunction]\",funcTag=\"[object Function]\",genTag=\"[object GeneratorFunction]\",proxyTag=\"[object Proxy]\";function isFunction(value22){if(!isObject_default(value22))return !1;var tag=baseGetTag_default(value22);return tag==funcTag||tag==genTag||tag==asyncTag||tag==proxyTag}var isFunction_default=isFunction,coreJsData=root_default[\"__core-js_shared__\"],coreJsData_default=coreJsData,maskSrcKey=function(){var uid=/[^.]+$/.exec(coreJsData_default&&coreJsData_default.keys&&coreJsData_default.keys.IE_PROTO||\"\");return uid?\"Symbol(src)_1.\"+uid:\"\"}();function isMasked(func){return !!maskSrcKey&&maskSrcKey in func}var isMasked_default=isMasked,funcProto=Function.prototype,funcToString=funcProto.toString;function toSource(func){if(func!=null){try{return funcToString.call(func)}catch{}try{return func+\"\"}catch{}}return \"\"}var toSource_default=toSource,reRegExpChar=/[\\\\^$.*+?()[\\]{}|]/g,reIsHostCtor=/^\\[object .+?Constructor\\]$/,funcProto2=Function.prototype,objectProto3=Object.prototype,funcToString2=funcProto2.toString,hasOwnProperty2=objectProto3.hasOwnProperty,reIsNative=RegExp(\"^\"+funcToString2.call(hasOwnProperty2).replace(reRegExpChar,\"\\\\$&\").replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g,\"$1.*?\")+\"$\");function baseIsNative(value22){if(!isObject_default(value22)||isMasked_default(value22))return !1;var pattern=isFunction_default(value22)?reIsNative:reIsHostCtor;return pattern.test(toSource_default(value22))}var baseIsNative_default=baseIsNative;function getValue(object2,key2){return object2?.[key2]}var getValue_default=getValue;function getNative(object2,key2){var value22=getValue_default(object2,key2);return baseIsNative_default(value22)?value22:void 0}var getNative_default=getNative;function eq(value22,other){return value22===other||value22!==value22&&other!==other}var eq_default=eq;var nativeCreate=getNative_default(Object,\"create\"),nativeCreate_default=nativeCreate;function hashClear(){this.__data__=nativeCreate_default?nativeCreate_default(null):{},this.size=0;}var hashClear_default=hashClear;function hashDelete(key2){var result2=this.has(key2)&&delete this.__data__[key2];return this.size-=result2?1:0,result2}var hashDelete_default=hashDelete,HASH_UNDEFINED=\"__lodash_hash_undefined__\",objectProto4=Object.prototype,hasOwnProperty3=objectProto4.hasOwnProperty;function hashGet(key2){var data=this.__data__;if(nativeCreate_default){var result2=data[key2];return result2===HASH_UNDEFINED?void 0:result2}return hasOwnProperty3.call(data,key2)?data[key2]:void 0}var hashGet_default=hashGet,objectProto5=Object.prototype,hasOwnProperty4=objectProto5.hasOwnProperty;function hashHas(key2){var data=this.__data__;return nativeCreate_default?data[key2]!==void 0:hasOwnProperty4.call(data,key2)}var hashHas_default=hashHas,HASH_UNDEFINED2=\"__lodash_hash_undefined__\";function hashSet(key2,value22){var data=this.__data__;return this.size+=this.has(key2)?0:1,data[key2]=nativeCreate_default&&value22===void 0?HASH_UNDEFINED2:value22,this}var hashSet_default=hashSet;function Hash(entries){var index=-1,length=entries==null?0:entries.length;for(this.clear();++index<length;){var entry=entries[index];this.set(entry[0],entry[1]);}}Hash.prototype.clear=hashClear_default;Hash.prototype.delete=hashDelete_default;Hash.prototype.get=hashGet_default;Hash.prototype.has=hashHas_default;Hash.prototype.set=hashSet_default;var Hash_default=Hash;function listCacheClear(){this.__data__=[],this.size=0;}var listCacheClear_default=listCacheClear;function assocIndexOf(array2,key2){for(var length=array2.length;length--;)if(eq_default(array2[length][0],key2))return length;return -1}var assocIndexOf_default=assocIndexOf,arrayProto=Array.prototype,splice=arrayProto.splice;function listCacheDelete(key2){var data=this.__data__,index=assocIndexOf_default(data,key2);if(index<0)return !1;var lastIndex=data.length-1;return index==lastIndex?data.pop():splice.call(data,index,1),--this.size,!0}var listCacheDelete_default=listCacheDelete;function listCacheGet(key2){var data=this.__data__,index=assocIndexOf_default(data,key2);return index<0?void 0:data[index][1]}var listCacheGet_default=listCacheGet;function listCacheHas(key2){return assocIndexOf_default(this.__data__,key2)>-1}var listCacheHas_default=listCacheHas;function listCacheSet(key2,value22){var data=this.__data__,index=assocIndexOf_default(data,key2);return index<0?(++this.size,data.push([key2,value22])):data[index][1]=value22,this}var listCacheSet_default=listCacheSet;function ListCache(entries){var index=-1,length=entries==null?0:entries.length;for(this.clear();++index<length;){var entry=entries[index];this.set(entry[0],entry[1]);}}ListCache.prototype.clear=listCacheClear_default;ListCache.prototype.delete=listCacheDelete_default;ListCache.prototype.get=listCacheGet_default;ListCache.prototype.has=listCacheHas_default;ListCache.prototype.set=listCacheSet_default;var ListCache_default=ListCache,Map2=getNative_default(root_default,\"Map\"),Map_default=Map2;function mapCacheClear(){this.size=0,this.__data__={hash:new Hash_default,map:new(Map_default||ListCache_default),string:new Hash_default};}var mapCacheClear_default=mapCacheClear;function isKeyable(value22){var type=typeof value22;return type==\"string\"||type==\"number\"||type==\"symbol\"||type==\"boolean\"?value22!==\"__proto__\":value22===null}var isKeyable_default=isKeyable;function getMapData(map,key2){var data=map.__data__;return isKeyable_default(key2)?data[typeof key2==\"string\"?\"string\":\"hash\"]:data.map}var getMapData_default=getMapData;function mapCacheDelete(key2){var result2=getMapData_default(this,key2).delete(key2);return this.size-=result2?1:0,result2}var mapCacheDelete_default=mapCacheDelete;function mapCacheGet(key2){return getMapData_default(this,key2).get(key2)}var mapCacheGet_default=mapCacheGet;function mapCacheHas(key2){return getMapData_default(this,key2).has(key2)}var mapCacheHas_default=mapCacheHas;function mapCacheSet(key2,value22){var data=getMapData_default(this,key2),size=data.size;return data.set(key2,value22),this.size+=data.size==size?0:1,this}var mapCacheSet_default=mapCacheSet;function MapCache(entries){var index=-1,length=entries==null?0:entries.length;for(this.clear();++index<length;){var entry=entries[index];this.set(entry[0],entry[1]);}}MapCache.prototype.clear=mapCacheClear_default;MapCache.prototype.delete=mapCacheDelete_default;MapCache.prototype.get=mapCacheGet_default;MapCache.prototype.has=mapCacheHas_default;MapCache.prototype.set=mapCacheSet_default;var MapCache_default=MapCache,FUNC_ERROR_TEXT=\"Expected a function\";function memoize3(func,resolver){if(typeof func!=\"function\"||resolver!=null&&typeof resolver!=\"function\")throw new TypeError(FUNC_ERROR_TEXT);var memoized=function(){var args2=arguments,key2=resolver?resolver.apply(this,args2):args2[0],cache=memoized.cache;if(cache.has(key2))return cache.get(key2);var result2=func.apply(this,args2);return memoized.cache=cache.set(key2,result2)||cache,result2};return memoized.cache=new(memoize3.Cache||MapCache_default),memoized}memoize3.Cache=MapCache_default;var memoize_default=memoize3,MAX_MEMOIZE_SIZE=500;function memoizeCapped(func){var result2=memoize_default(func,function(key2){return cache.size===MAX_MEMOIZE_SIZE&&cache.clear(),key2}),cache=result2.cache;return result2}var memoizeCapped_default=memoizeCapped,rePropName=/[^.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|$))/g,reEscapeChar=/\\\\(\\\\)?/g;memoizeCapped_default(function(string){var result2=[];return string.charCodeAt(0)===46&&result2.push(\"\"),string.replace(rePropName,function(match,number,quote,subString){result2.push(quote?subString.replace(reEscapeChar,\"$1\"):number||match);}),result2});var isObject3=isObject,removeCodeComments=code=>{let inQuoteChar=null,inBlockComment=!1,inLineComment=!1,inRegexLiteral=!1,newCode=\"\";if(code.indexOf(\"//\")>=0||code.indexOf(\"/*\")>=0)for(let i2=0;i2<code.length;i2+=1)!inQuoteChar&&!inBlockComment&&!inLineComment&&!inRegexLiteral?code[i2]==='\"'||code[i2]===\"'\"||code[i2]===\"`\"?inQuoteChar=code[i2]:code[i2]===\"/\"&&code[i2+1]===\"*\"?inBlockComment=!0:code[i2]===\"/\"&&code[i2+1]===\"/\"?inLineComment=!0:code[i2]===\"/\"&&code[i2+1]!==\"/\"&&(inRegexLiteral=!0):(inQuoteChar&&(code[i2]===inQuoteChar&&code[i2-1]!==\"\\\\\"||code[i2]===`\n`&&inQuoteChar!==\"`\")&&(inQuoteChar=null),inRegexLiteral&&(code[i2]===\"/\"&&code[i2-1]!==\"\\\\\"||code[i2]===`\n`)&&(inRegexLiteral=!1),inBlockComment&&code[i2-1]===\"/\"&&code[i2-2]===\"*\"&&(inBlockComment=!1),inLineComment&&code[i2]===`\n`&&(inLineComment=!1)),!inBlockComment&&!inLineComment&&(newCode+=code[i2]);else newCode=code;return newCode},cleanCode=(0, import_memoizerific2.default)(1e4)(code=>removeCodeComments(code).replace(/\\n\\s*/g,\"\").trim()),convertShorthandMethods=function(key2,stringified){let fnHead=stringified.slice(0,stringified.indexOf(\"{\")),fnBody=stringified.slice(stringified.indexOf(\"{\"));if(fnHead.includes(\"=>\")||fnHead.includes(\"function\"))return stringified;let modifiedHead=fnHead;return modifiedHead=modifiedHead.replace(key2,\"function\"),modifiedHead+fnBody},dateFormat=/^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(\\.\\d{3})?Z$/;function convertUnconventionalData(data){if(!isObject3(data))return data;let result2=data,wasMutated=!1;return typeof Event<\"u\"&&data instanceof Event&&(result2=extractEventHiddenProperties(result2),wasMutated=!0),result2=Object.keys(result2).reduce((acc,key2)=>{try{result2[key2]&&result2[key2].toJSON,acc[key2]=result2[key2];}catch{wasMutated=!0;}return acc},{}),wasMutated?result2:data}var replacer=function(options2){let objects,map,stack,keys;return function(key2,value22){try{if(key2===\"\")return keys=[],objects=new Map([[value22,\"[]\"]]),map=new Map,stack=[],value22;let origin=map.get(this)||this;for(;stack.length&&origin!==stack[0];)stack.shift(),keys.pop();if(typeof value22==\"boolean\")return value22;if(value22===void 0)return options2.allowUndefined?\"_undefined_\":void 0;if(value22===null)return null;if(typeof value22==\"number\")return value22===-1/0?\"_-Infinity_\":value22===1/0?\"_Infinity_\":Number.isNaN(value22)?\"_NaN_\":value22;if(typeof value22==\"bigint\")return `_bigint_${value22.toString()}`;if(typeof value22==\"string\")return dateFormat.test(value22)?options2.allowDate?`_date_${value22}`:void 0:value22;if((0,import_is_regex.default)(value22))return options2.allowRegExp?`_regexp_${value22.flags}|${value22.source}`:void 0;if((0,import_is_function.default)(value22)){if(!options2.allowFunction)return;let{name:name2}=value22,stringified=value22.toString();return stringified.match(/(\\[native code\\]|WEBPACK_IMPORTED_MODULE|__webpack_exports__|__webpack_require__)/)?`_function_${name2}|${(()=>{}).toString()}`:`_function_${name2}|${cleanCode(convertShorthandMethods(key2,stringified))}`}if((0,import_is_symbol.default)(value22)){if(!options2.allowSymbol)return;let globalRegistryKey=Symbol.keyFor(value22);return globalRegistryKey!==void 0?`_gsymbol_${globalRegistryKey}`:`_symbol_${value22.toString().slice(7,-1)}`}if(stack.length>=options2.maxDepth)return Array.isArray(value22)?`[Array(${value22.length})]`:\"[Object]\";if(value22===this)return `_duplicate_${JSON.stringify(keys)}`;if(value22 instanceof Error&&options2.allowError)return {__isConvertedError__:!0,errorProperties:{...value22.cause?{cause:value22.cause}:{},...value22,name:value22.name,message:value22.message,stack:value22.stack,\"_constructor-name_\":value22.constructor.name}};if(value22.constructor&&value22.constructor.name&&value22.constructor.name!==\"Object\"&&!Array.isArray(value22)&&!options2.allowClass)return;let found=objects.get(value22);if(!found){let converted=Array.isArray(value22)?value22:convertUnconventionalData(value22);if(value22.constructor&&value22.constructor.name&&value22.constructor.name!==\"Object\"&&!Array.isArray(value22)&&options2.allowClass)try{Object.assign(converted,{\"_constructor-name_\":value22.constructor.name});}catch{}return keys.push(key2),stack.unshift(converted),objects.set(value22,JSON.stringify(keys)),value22!==converted&&map.set(value22,converted),converted}return `_duplicate_${found}`}catch{return}}},defaultOptions={maxDepth:10,space:void 0,allowFunction:!0,allowRegExp:!0,allowDate:!0,allowClass:!0,allowError:!0,allowUndefined:!0,allowSymbol:!0,lazyEval:!0},stringify=(data,options2={})=>{let mergedOptions={...defaultOptions,...options2};return JSON.stringify(convertUnconventionalData(data),replacer(mergedOptions),options2.space)};function argsHash(args2){return stringify(args2,{allowFunction:!1})}var SourceContext=createContext({sources:{}}),UNKNOWN_ARGS_HASH=\"--unknown--\",SourceContainer=({children,channel})=>{let[sources,setSources]=useState({});return useEffect(()=>{let handleSnippetRendered=(idOrEvent,inputSource=null,inputFormat=!1)=>{let{id,args:args2=void 0,source:source2,format:format3}=typeof idOrEvent==\"string\"?{id:idOrEvent,source:inputSource,format:inputFormat}:idOrEvent,hash=args2?argsHash(args2):UNKNOWN_ARGS_HASH;setSources(current=>({...current,[id]:{...current[id],[hash]:{code:source2,format:format3}}}));};return channel.on(SNIPPET_RENDERED,handleSnippetRendered),()=>channel.off(SNIPPET_RENDERED,handleSnippetRendered)},[]),React15__default.createElement(SourceContext.Provider,{value:{sources}},children)};var getStorySource=(storyId,args2,sourceContext)=>{let{sources}=sourceContext,sourceMap=sources?.[storyId];return sourceMap?.[argsHash(args2)]||sourceMap?.[UNKNOWN_ARGS_HASH]||{code:\"\"}},getSnippet=({snippet,storyContext,typeFromProps,transformFromProps})=>{let{__isArgsStory:isArgsStory}=storyContext.parameters,sourceParameters=storyContext.parameters.docs?.source||{},type=typeFromProps||sourceParameters.type||SourceType.AUTO;if(sourceParameters.code!==void 0)return sourceParameters.code;let code=type===SourceType.DYNAMIC||type===SourceType.AUTO&&snippet&&isArgsStory?snippet:sourceParameters.originalSource||\"\";return (transformFromProps??sourceParameters.transform)?.(code,storyContext)||code},useSourceProps=(props,docsContext,sourceContext)=>{let story,{of}=props;if(\"of\"in props&&of===void 0)throw new Error(\"Unexpected `of={undefined}`, did you mistype a CSF file reference?\");if(of)story=docsContext.resolveOf(of,[\"story\"]).story;else try{story=docsContext.storyById();}catch{}let sourceParameters=story?.parameters?.docs?.source||{},{code}=props,format3=props.format??sourceParameters.format,language=props.language??sourceParameters.language??\"jsx\",dark=props.dark??sourceParameters.dark??!1;if(!code&&!story)return {error:\"Oh no! The source is not available.\"};if(code)return {code,format:format3,language,dark};let storyContext=docsContext.getStoryContext(story),argsForSource=props.__forceInitialArgs?storyContext.initialArgs:storyContext.unmappedArgs,source2=getStorySource(story.id,argsForSource,sourceContext);return format3=source2.format??story.parameters.docs?.source?.format??!1,{code:getSnippet({snippet:source2.code,storyContext:{...storyContext,args:argsForSource},typeFromProps:props.type,transformFromProps:props.transform}),format:format3,language,dark}},Source2=props=>{let sourceContext=useContext(SourceContext),docsContext=useContext(DocsContext),sourceProps=useSourceProps(props,docsContext,sourceContext);return React15__default.createElement(Source,{...sourceProps})};function useStory(storyId,context){let stories=useStories([storyId],context);return stories&&stories[0]}function useStories(storyIds,context){let[storiesById,setStories]=useState({});return useEffect(()=>{Promise.all(storyIds.map(async storyId=>{let story=await context.loadStory(storyId);setStories(current=>current[storyId]===story?current:{...current,[storyId]:story});}));}),storyIds.map(storyId=>{if(storiesById[storyId])return storiesById[storyId];try{return context.storyById(storyId)}catch{return null}})}var getStoryId2=(props,context)=>{let{of,meta}=props;if(\"of\"in props&&of===void 0)throw new Error(\"Unexpected `of={undefined}`, did you mistype a CSF file reference?\");return meta&&context.referenceMeta(meta,!1),context.resolveOf(of||\"story\",[\"story\"]).story.id},getStoryProps=(props,story,context)=>{let{parameters={}}=story||{},{docs={}}=parameters,storyParameters=docs.story||{};if(docs.disable)return null;if(props.inline??storyParameters.inline??!1){let height2=props.height??storyParameters.height,autoplay=props.autoplay??storyParameters.autoplay??!1;return {story,inline:!0,height:height2,autoplay,forceInitialArgs:!!props.__forceInitialArgs,primary:!!props.__primary,renderStoryToElement:context.renderStoryToElement}}let height=props.height??storyParameters.height??storyParameters.iframeHeight??\"100px\";return {story,inline:!1,height,primary:!!props.__primary}},Story2=(props={__forceInitialArgs:!1,__primary:!1})=>{let context=useContext(DocsContext),storyId=getStoryId2(props,context),story=useStory(storyId,context);if(!story)return React15__default.createElement(StorySkeleton,null);let storyProps=getStoryProps(props,story,context);return storyProps?React15__default.createElement(Story,{...storyProps}):null};var Canvas=props=>{let docsContext=useContext(DocsContext),sourceContext=useContext(SourceContext),{of,source:source2}=props;if(\"of\"in props&&of===void 0)throw new Error(\"Unexpected `of={undefined}`, did you mistype a CSF file reference?\");let{story}=useOf(of||\"story\",[\"story\"]),sourceProps=useSourceProps({...source2,...of&&{of}},docsContext,sourceContext),layout=props.layout??story.parameters.layout??story.parameters.docs?.canvas?.layout??\"padded\",withToolbar=props.withToolbar??story.parameters.docs?.canvas?.withToolbar??!1,additionalActions=props.additionalActions??story.parameters.docs?.canvas?.additionalActions,sourceState=props.sourceState??story.parameters.docs?.canvas?.sourceState??\"hidden\",className=props.className??story.parameters.docs?.canvas?.className;return React15__default.createElement(Preview,{withSource:sourceState===\"none\"?void 0:sourceProps,isExpanded:sourceState===\"shown\",withToolbar,additionalActions,className,layout},React15__default.createElement(Story2,{of:of||story.moduleExport,meta:props.meta,...props.story}))};var useArgs=(story,context)=>{let result2=useArgsIfDefined(story,context);if(!result2)throw new Error(\"No result when story was defined\");return result2},useArgsIfDefined=(story,context)=>{let storyContext=story?context.getStoryContext(story):{args:{}},{id:storyId}=story||{id:\"none\"},[args2,setArgs]=useState(storyContext.args);useEffect(()=>{let onArgsUpdated=changed=>{changed.storyId===storyId&&setArgs(changed.args);};return context.channel.on(STORY_ARGS_UPDATED,onArgsUpdated),()=>context.channel.off(STORY_ARGS_UPDATED,onArgsUpdated)},[storyId,context.channel]);let updateArgs=useCallback(updatedArgs=>context.channel.emit(UPDATE_STORY_ARGS,{storyId,updatedArgs}),[storyId,context.channel]),resetArgs=useCallback(argNames=>context.channel.emit(RESET_STORY_ARGS,{storyId,argNames}),[storyId,context.channel]);return story&&[args2,updateArgs,resetArgs]};var useGlobals=(story,context)=>{let storyContext=context.getStoryContext(story),[globals,setGlobals]=useState(storyContext.globals);return useEffect(()=>{let onGlobalsUpdated=changed=>{setGlobals(changed.globals);};return context.channel.on(GLOBALS_UPDATED,onGlobalsUpdated),()=>context.channel.off(GLOBALS_UPDATED,onGlobalsUpdated)},[context.channel]),[globals]};function extractComponentArgTypes2(component,parameters){let{extractArgTypes}=parameters.docs||{};if(!extractArgTypes)throw new Error(\"Args unsupported. See Args documentation for your framework.\");return extractArgTypes(component)}var Controls3=props=>{let{of}=props;if(\"of\"in props&&of===void 0)throw new Error(\"Unexpected `of={undefined}`, did you mistype a CSF file reference?\");let context=useContext(DocsContext),{story}=context.resolveOf(of||\"story\",[\"story\"]),{parameters,argTypes,component,subcomponents}=story,controlsParameters=parameters.docs?.controls||{},include=props.include??controlsParameters.include,exclude=props.exclude??controlsParameters.exclude,sort=props.sort??controlsParameters.sort,[args2,updateArgs,resetArgs]=useArgs(story,context),[globals]=useGlobals(story,context),filteredArgTypes=filterArgTypes(argTypes,include,exclude);if(!(!!subcomponents&&Object.keys(subcomponents).length>0))return Object.keys(filteredArgTypes).length>0||Object.keys(args2).length>0?React15__default.createElement(ArgsTable,{rows:filteredArgTypes,sort,args:args2,globals,updateArgs,resetArgs}):null;let mainComponentName=getComponentName(component),subcomponentTabs=Object.fromEntries(Object.entries(subcomponents).map(([key2,comp])=>[key2,{rows:filterArgTypes(extractComponentArgTypes2(comp,parameters),include,exclude),sort}])),tabs={[mainComponentName]:{rows:filteredArgTypes,sort},...subcomponentTabs};return React15__default.createElement(TabbedArgsTable,{tabs,sort,args:args2,globals,updateArgs,resetArgs})};var {document:document2}=globalThis,assertIsFn=val=>{if(typeof val!=\"function\")throw new Error(`Expected story function, got: ${val}`);return val},AddContext=props=>{let{children,...rest}=props,parentContext=React15__default.useContext(DocsContext);return React15__default.createElement(DocsContext.Provider,{value:{...parentContext,...rest}},children)},CodeOrSourceMdx=({className,children,...rest})=>{if(typeof className!=\"string\"&&(typeof children!=\"string\"||!children.match(/[\\n\\r]/g)))return React15__default.createElement(Code,null,children);let language=className&&className.split(\"-\");return React15__default.createElement(Source,{language:language&&language[1]||\"text\",format:!1,code:children,...rest})};function navigate(context,url){context.channel.emit(NAVIGATE_URL,url);}var A2=components.a,AnchorInPage=({hash,children})=>{let context=useContext(DocsContext);return React15__default.createElement(A2,{href:hash,target:\"_self\",onClick:event=>{let id=hash.substring(1);document2.getElementById(id)&&navigate(context,hash);}},children)},AnchorMdx=props=>{let{href,target,children,...rest}=props,context=useContext(DocsContext);return !href||target===\"_blank\"||/^https?:\\/\\//.test(href)?React15__default.createElement(A2,{...props}):href.startsWith(\"#\")?React15__default.createElement(AnchorInPage,{hash:href},children):React15__default.createElement(A2,{href,onClick:event=>{event.button===0&&!event.altKey&&!event.ctrlKey&&!event.metaKey&&!event.shiftKey&&(event.preventDefault(),navigate(context,event.currentTarget.getAttribute(\"href\")));},target,...rest},children)},SUPPORTED_MDX_HEADERS=[\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"],OcticonHeaders=SUPPORTED_MDX_HEADERS.reduce((acc,headerType)=>({...acc,[headerType]:styled(headerType)({\"& svg\":{position:\"relative\",top:\"-0.1em\",visibility:\"hidden\"},\"&:hover svg\":{visibility:\"visible\"}})}),{}),OcticonAnchor=styled.a(()=>({float:\"left\",lineHeight:\"inherit\",paddingRight:\"10px\",marginLeft:\"-24px\",color:\"inherit\"})),HeaderWithOcticonAnchor=({as,id,children,...rest})=>{let context=useContext(DocsContext),OcticonHeader=OcticonHeaders[as],hash=`#${id}`;return React15__default.createElement(OcticonHeader,{id,...rest},React15__default.createElement(OcticonAnchor,{\"aria-hidden\":\"true\",href:hash,tabIndex:-1,target:\"_self\",onClick:event=>{document2.getElementById(id)&&navigate(context,hash);}},React15__default.createElement(LinkIcon,null)),children)},HeaderMdx=props=>{let{as,id,children,...rest}=props;if(id)return React15__default.createElement(HeaderWithOcticonAnchor,{as,id,...rest},children);let Component4=as,{as:omittedAs,...withoutAs}=props;return React15__default.createElement(Component4,{...nameSpaceClassNames(withoutAs,as)})},HeadersMdx=SUPPORTED_MDX_HEADERS.reduce((acc,headerType)=>({...acc,[headerType]:props=>React15__default.createElement(HeaderMdx,{as:headerType,...props})}),{});var Markdown=props=>{if(!props.children)return null;if(typeof props.children!=\"string\")throw new Error(dedent`The Markdown block only accepts children as a single string, but children were of type: '${typeof props.children}'\n This is often caused by not wrapping the child in a template string.\n \n This is invalid:\n <Markdown>\n # Some heading\n A paragraph\n </Markdown>\n\n Instead do:\n <Markdown>\n {\\`\n # Some heading\n A paragraph\n \\`}\n </Markdown>\n `);return React15__default.createElement(index_modern_default,{...props,options:{forceBlock:!0,overrides:{code:CodeOrSourceMdx,a:AnchorMdx,...HeadersMdx,...props?.options?.overrides},...props?.options}})};var DescriptionType=(DescriptionType2=>(DescriptionType2.INFO=\"info\",DescriptionType2.NOTES=\"notes\",DescriptionType2.DOCGEN=\"docgen\",DescriptionType2.AUTO=\"auto\",DescriptionType2))(DescriptionType||{}),getDescriptionFromResolvedOf=resolvedOf=>{switch(resolvedOf.type){case\"story\":return resolvedOf.story.parameters.docs?.description?.story||null;case\"meta\":{let{parameters,component}=resolvedOf.preparedMeta,metaDescription=parameters.docs?.description?.component;return metaDescription||parameters.docs?.extractComponentDescription?.(component,{component,parameters})||null}case\"component\":{let{component,projectAnnotations:{parameters}}=resolvedOf;return parameters.docs?.extractComponentDescription?.(component,{component,parameters})||null}default:throw new Error(`Unrecognized module type resolved from 'useOf', got: ${resolvedOf.type}`)}},DescriptionContainer=props=>{let{of}=props;if(\"of\"in props&&of===void 0)throw new Error(\"Unexpected `of={undefined}`, did you mistype a CSF file reference?\");let resolvedOf=useOf(of||\"meta\"),markdown=getDescriptionFromResolvedOf(resolvedOf);return markdown?React15__default.createElement(Markdown,null,markdown):null};var tocbot=__toESM(require_js());var Wrapper10=styled.div(({theme})=>({width:\"10rem\",\"@media (max-width: 768px)\":{display:\"none\"}})),Content=styled.div(({theme})=>({position:\"fixed\",bottom:0,top:0,width:\"10rem\",paddingTop:\"4rem\",paddingBottom:\"2rem\",overflowY:\"auto\",fontFamily:theme.typography.fonts.base,fontSize:theme.typography.size.s2,WebkitFontSmoothing:\"antialiased\",MozOsxFontSmoothing:\"grayscale\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",WebkitOverflowScrolling:\"touch\",\"& *\":{boxSizing:\"border-box\"},\"& > .toc-wrapper > .toc-list\":{paddingLeft:0,borderLeft:`solid 2px ${theme.color.mediumlight}`,\".toc-list\":{paddingLeft:0,borderLeft:`solid 2px ${theme.color.mediumlight}`,\".toc-list\":{paddingLeft:0,borderLeft:`solid 2px ${theme.color.mediumlight}`}}},\"& .toc-list-item\":{position:\"relative\",listStyleType:\"none\",marginLeft:20,paddingTop:3,paddingBottom:3},\"& .toc-list-item::before\":{content:'\"\"',position:\"absolute\",height:\"100%\",top:0,left:0,transform:\"translateX(calc(-2px - 20px))\",borderLeft:`solid 2px ${theme.color.mediumdark}`,opacity:0,transition:\"opacity 0.2s\"},\"& .toc-list-item.is-active-li::before\":{opacity:1},\"& .toc-list-item > a\":{color:theme.color.defaultText,textDecoration:\"none\"},\"& .toc-list-item.is-active-li > a\":{fontWeight:600,color:theme.color.secondary,textDecoration:\"none\"}})),Heading=styled.p(({theme})=>({fontWeight:600,fontSize:\"0.875em\",color:theme.textColor,textTransform:\"uppercase\",marginBottom:10})),OptionalTitle=({title})=>title===null?null:typeof title==\"string\"?React15__default.createElement(Heading,null,title):title,TableOfContents=({title,disable,headingSelector,contentsSelector,ignoreSelector,unsafeTocbotOptions,channel})=>(useEffect(()=>{if(disable)return ()=>{};let configuration={tocSelector:\".toc-wrapper\",contentSelector:contentsSelector??\".sbdocs-content\",headingSelector:headingSelector??\"h3\",ignoreSelector:ignoreSelector??\".docs-story *, .skip-toc\",headingsOffset:40,scrollSmoothOffset:-40,orderedList:!1,onClick:e2=>{if(e2.preventDefault(),e2.currentTarget instanceof HTMLAnchorElement){let[,headerId]=e2.currentTarget.href.split(\"#\");headerId&&channel.emit(NAVIGATE_URL,`#${headerId}`);}},...unsafeTocbotOptions},timeout=setTimeout(()=>tocbot.init(configuration),100);return ()=>{clearTimeout(timeout),tocbot.destroy();}},[channel,disable,ignoreSelector,contentsSelector,headingSelector,unsafeTocbotOptions]),React15__default.createElement(React15__default.Fragment,null,React15__default.createElement(Wrapper10,null,disable?null:React15__default.createElement(Content,null,React15__default.createElement(OptionalTitle,{title:title||null}),React15__default.createElement(\"div\",{className:\"toc-wrapper\"})))));var {document:document3,window:globalWindow3}=globalThis,DocsContainer=({context,theme,children})=>{let toc;try{toc=context.resolveOf(\"meta\",[\"meta\"]).preparedMeta.parameters?.docs?.toc;}catch{toc=context?.projectAnnotations?.parameters?.docs?.toc;}return useEffect(()=>{let url;try{if(url=new URL(globalWindow3.parent.location.toString()),url.hash){let element=document3.getElementById(decodeURIComponent(url.hash.substring(1)));element&&setTimeout(()=>{scrollToElement(element);},200);}}catch{}}),React15__default.createElement(DocsContext.Provider,{value:context},React15__default.createElement(SourceContainer,{channel:context.channel},React15__default.createElement(ThemeProvider,{theme:ensure(theme)},React15__default.createElement(DocsPageWrapper,{toc:toc?React15__default.createElement(TableOfContents,{className:\"sbdocs sbdocs-toc--custom\",channel:context.channel,...toc}):null},children))))};var regex=/[\\0-\\x1F!-,\\.\\/:-@\\[-\\^`\\{-\\xA9\\xAB-\\xB4\\xB6-\\xB9\\xBB-\\xBF\\xD7\\xF7\\u02C2-\\u02C5\\u02D2-\\u02DF\\u02E5-\\u02EB\\u02ED\\u02EF-\\u02FF\\u0375\\u0378\\u0379\\u037E\\u0380-\\u0385\\u0387\\u038B\\u038D\\u03A2\\u03F6\\u0482\\u0530\\u0557\\u0558\\u055A-\\u055F\\u0589-\\u0590\\u05BE\\u05C0\\u05C3\\u05C6\\u05C8-\\u05CF\\u05EB-\\u05EE\\u05F3-\\u060F\\u061B-\\u061F\\u066A-\\u066D\\u06D4\\u06DD\\u06DE\\u06E9\\u06FD\\u06FE\\u0700-\\u070F\\u074B\\u074C\\u07B2-\\u07BF\\u07F6-\\u07F9\\u07FB\\u07FC\\u07FE\\u07FF\\u082E-\\u083F\\u085C-\\u085F\\u086B-\\u089F\\u08B5\\u08C8-\\u08D2\\u08E2\\u0964\\u0965\\u0970\\u0984\\u098D\\u098E\\u0991\\u0992\\u09A9\\u09B1\\u09B3-\\u09B5\\u09BA\\u09BB\\u09C5\\u09C6\\u09C9\\u09CA\\u09CF-\\u09D6\\u09D8-\\u09DB\\u09DE\\u09E4\\u09E5\\u09F2-\\u09FB\\u09FD\\u09FF\\u0A00\\u0A04\\u0A0B-\\u0A0E\\u0A11\\u0A12\\u0A29\\u0A31\\u0A34\\u0A37\\u0A3A\\u0A3B\\u0A3D\\u0A43-\\u0A46\\u0A49\\u0A4A\\u0A4E-\\u0A50\\u0A52-\\u0A58\\u0A5D\\u0A5F-\\u0A65\\u0A76-\\u0A80\\u0A84\\u0A8E\\u0A92\\u0AA9\\u0AB1\\u0AB4\\u0ABA\\u0ABB\\u0AC6\\u0ACA\\u0ACE\\u0ACF\\u0AD1-\\u0ADF\\u0AE4\\u0AE5\\u0AF0-\\u0AF8\\u0B00\\u0B04\\u0B0D\\u0B0E\\u0B11\\u0B12\\u0B29\\u0B31\\u0B34\\u0B3A\\u0B3B\\u0B45\\u0B46\\u0B49\\u0B4A\\u0B4E-\\u0B54\\u0B58-\\u0B5B\\u0B5E\\u0B64\\u0B65\\u0B70\\u0B72-\\u0B81\\u0B84\\u0B8B-\\u0B8D\\u0B91\\u0B96-\\u0B98\\u0B9B\\u0B9D\\u0BA0-\\u0BA2\\u0BA5-\\u0BA7\\u0BAB-\\u0BAD\\u0BBA-\\u0BBD\\u0BC3-\\u0BC5\\u0BC9\\u0BCE\\u0BCF\\u0BD1-\\u0BD6\\u0BD8-\\u0BE5\\u0BF0-\\u0BFF\\u0C0D\\u0C11\\u0C29\\u0C3A-\\u0C3C\\u0C45\\u0C49\\u0C4E-\\u0C54\\u0C57\\u0C5B-\\u0C5F\\u0C64\\u0C65\\u0C70-\\u0C7F\\u0C84\\u0C8D\\u0C91\\u0CA9\\u0CB4\\u0CBA\\u0CBB\\u0CC5\\u0CC9\\u0CCE-\\u0CD4\\u0CD7-\\u0CDD\\u0CDF\\u0CE4\\u0CE5\\u0CF0\\u0CF3-\\u0CFF\\u0D0D\\u0D11\\u0D45\\u0D49\\u0D4F-\\u0D53\\u0D58-\\u0D5E\\u0D64\\u0D65\\u0D70-\\u0D79\\u0D80\\u0D84\\u0D97-\\u0D99\\u0DB2\\u0DBC\\u0DBE\\u0DBF\\u0DC7-\\u0DC9\\u0DCB-\\u0DCE\\u0DD5\\u0DD7\\u0DE0-\\u0DE5\\u0DF0\\u0DF1\\u0DF4-\\u0E00\\u0E3B-\\u0E3F\\u0E4F\\u0E5A-\\u0E80\\u0E83\\u0E85\\u0E8B\\u0EA4\\u0EA6\\u0EBE\\u0EBF\\u0EC5\\u0EC7\\u0ECE\\u0ECF\\u0EDA\\u0EDB\\u0EE0-\\u0EFF\\u0F01-\\u0F17\\u0F1A-\\u0F1F\\u0F2A-\\u0F34\\u0F36\\u0F38\\u0F3A-\\u0F3D\\u0F48\\u0F6D-\\u0F70\\u0F85\\u0F98\\u0FBD-\\u0FC5\\u0FC7-\\u0FFF\\u104A-\\u104F\\u109E\\u109F\\u10C6\\u10C8-\\u10CC\\u10CE\\u10CF\\u10FB\\u1249\\u124E\\u124F\\u1257\\u1259\\u125E\\u125F\\u1289\\u128E\\u128F\\u12B1\\u12B6\\u12B7\\u12BF\\u12C1\\u12C6\\u12C7\\u12D7\\u1311\\u1316\\u1317\\u135B\\u135C\\u1360-\\u137F\\u1390-\\u139F\\u13F6\\u13F7\\u13FE-\\u1400\\u166D\\u166E\\u1680\\u169B-\\u169F\\u16EB-\\u16ED\\u16F9-\\u16FF\\u170D\\u1715-\\u171F\\u1735-\\u173F\\u1754-\\u175F\\u176D\\u1771\\u1774-\\u177F\\u17D4-\\u17D6\\u17D8-\\u17DB\\u17DE\\u17DF\\u17EA-\\u180A\\u180E\\u180F\\u181A-\\u181F\\u1879-\\u187F\\u18AB-\\u18AF\\u18F6-\\u18FF\\u191F\\u192C-\\u192F\\u193C-\\u1945\\u196E\\u196F\\u1975-\\u197F\\u19AC-\\u19AF\\u19CA-\\u19CF\\u19DA-\\u19FF\\u1A1C-\\u1A1F\\u1A5F\\u1A7D\\u1A7E\\u1A8A-\\u1A8F\\u1A9A-\\u1AA6\\u1AA8-\\u1AAF\\u1AC1-\\u1AFF\\u1B4C-\\u1B4F\\u1B5A-\\u1B6A\\u1B74-\\u1B7F\\u1BF4-\\u1BFF\\u1C38-\\u1C3F\\u1C4A-\\u1C4C\\u1C7E\\u1C7F\\u1C89-\\u1C8F\\u1CBB\\u1CBC\\u1CC0-\\u1CCF\\u1CD3\\u1CFB-\\u1CFF\\u1DFA\\u1F16\\u1F17\\u1F1E\\u1F1F\\u1F46\\u1F47\\u1F4E\\u1F4F\\u1F58\\u1F5A\\u1F5C\\u1F5E\\u1F7E\\u1F7F\\u1FB5\\u1FBD\\u1FBF-\\u1FC1\\u1FC5\\u1FCD-\\u1FCF\\u1FD4\\u1FD5\\u1FDC-\\u1FDF\\u1FED-\\u1FF1\\u1FF5\\u1FFD-\\u203E\\u2041-\\u2053\\u2055-\\u2070\\u2072-\\u207E\\u2080-\\u208F\\u209D-\\u20CF\\u20F1-\\u2101\\u2103-\\u2106\\u2108\\u2109\\u2114\\u2116-\\u2118\\u211E-\\u2123\\u2125\\u2127\\u2129\\u212E\\u213A\\u213B\\u2140-\\u2144\\u214A-\\u214D\\u214F-\\u215F\\u2189-\\u24B5\\u24EA-\\u2BFF\\u2C2F\\u2C5F\\u2CE5-\\u2CEA\\u2CF4-\\u2CFF\\u2D26\\u2D28-\\u2D2C\\u2D2E\\u2D2F\\u2D68-\\u2D6E\\u2D70-\\u2D7E\\u2D97-\\u2D9F\\u2DA7\\u2DAF\\u2DB7\\u2DBF\\u2DC7\\u2DCF\\u2DD7\\u2DDF\\u2E00-\\u2E2E\\u2E30-\\u3004\\u3008-\\u3020\\u3030\\u3036\\u3037\\u303D-\\u3040\\u3097\\u3098\\u309B\\u309C\\u30A0\\u30FB\\u3100-\\u3104\\u3130\\u318F-\\u319F\\u31C0-\\u31EF\\u3200-\\u33FF\\u4DC0-\\u4DFF\\u9FFD-\\u9FFF\\uA48D-\\uA4CF\\uA4FE\\uA4FF\\uA60D-\\uA60F\\uA62C-\\uA63F\\uA673\\uA67E\\uA6F2-\\uA716\\uA720\\uA721\\uA789\\uA78A\\uA7C0\\uA7C1\\uA7CB-\\uA7F4\\uA828-\\uA82B\\uA82D-\\uA83F\\uA874-\\uA87F\\uA8C6-\\uA8CF\\uA8DA-\\uA8DF\\uA8F8-\\uA8FA\\uA8FC\\uA92E\\uA92F\\uA954-\\uA95F\\uA97D-\\uA97F\\uA9C1-\\uA9CE\\uA9DA-\\uA9DF\\uA9FF\\uAA37-\\uAA3F\\uAA4E\\uAA4F\\uAA5A-\\uAA5F\\uAA77-\\uAA79\\uAAC3-\\uAADA\\uAADE\\uAADF\\uAAF0\\uAAF1\\uAAF7-\\uAB00\\uAB07\\uAB08\\uAB0F\\uAB10\\uAB17-\\uAB1F\\uAB27\\uAB2F\\uAB5B\\uAB6A-\\uAB6F\\uABEB\\uABEE\\uABEF\\uABFA-\\uABFF\\uD7A4-\\uD7AF\\uD7C7-\\uD7CA\\uD7FC-\\uD7FF\\uE000-\\uF8FF\\uFA6E\\uFA6F\\uFADA-\\uFAFF\\uFB07-\\uFB12\\uFB18-\\uFB1C\\uFB29\\uFB37\\uFB3D\\uFB3F\\uFB42\\uFB45\\uFBB2-\\uFBD2\\uFD3E-\\uFD4F\\uFD90\\uFD91\\uFDC8-\\uFDEF\\uFDFC-\\uFDFF\\uFE10-\\uFE1F\\uFE30-\\uFE32\\uFE35-\\uFE4C\\uFE50-\\uFE6F\\uFE75\\uFEFD-\\uFF0F\\uFF1A-\\uFF20\\uFF3B-\\uFF3E\\uFF40\\uFF5B-\\uFF65\\uFFBF-\\uFFC1\\uFFC8\\uFFC9\\uFFD0\\uFFD1\\uFFD8\\uFFD9\\uFFDD-\\uFFFF]|\\uD800[\\uDC0C\\uDC27\\uDC3B\\uDC3E\\uDC4E\\uDC4F\\uDC5E-\\uDC7F\\uDCFB-\\uDD3F\\uDD75-\\uDDFC\\uDDFE-\\uDE7F\\uDE9D-\\uDE9F\\uDED1-\\uDEDF\\uDEE1-\\uDEFF\\uDF20-\\uDF2C\\uDF4B-\\uDF4F\\uDF7B-\\uDF7F\\uDF9E\\uDF9F\\uDFC4-\\uDFC7\\uDFD0\\uDFD6-\\uDFFF]|\\uD801[\\uDC9E\\uDC9F\\uDCAA-\\uDCAF\\uDCD4-\\uDCD7\\uDCFC-\\uDCFF\\uDD28-\\uDD2F\\uDD64-\\uDDFF\\uDF37-\\uDF3F\\uDF56-\\uDF5F\\uDF68-\\uDFFF]|\\uD802[\\uDC06\\uDC07\\uDC09\\uDC36\\uDC39-\\uDC3B\\uDC3D\\uDC3E\\uDC56-\\uDC5F\\uDC77-\\uDC7F\\uDC9F-\\uDCDF\\uDCF3\\uDCF6-\\uDCFF\\uDD16-\\uDD1F\\uDD3A-\\uDD7F\\uDDB8-\\uDDBD\\uDDC0-\\uDDFF\\uDE04\\uDE07-\\uDE0B\\uDE14\\uDE18\\uDE36\\uDE37\\uDE3B-\\uDE3E\\uDE40-\\uDE5F\\uDE7D-\\uDE7F\\uDE9D-\\uDEBF\\uDEC8\\uDEE7-\\uDEFF\\uDF36-\\uDF3F\\uDF56-\\uDF5F\\uDF73-\\uDF7F\\uDF92-\\uDFFF]|\\uD803[\\uDC49-\\uDC7F\\uDCB3-\\uDCBF\\uDCF3-\\uDCFF\\uDD28-\\uDD2F\\uDD3A-\\uDE7F\\uDEAA\\uDEAD-\\uDEAF\\uDEB2-\\uDEFF\\uDF1D-\\uDF26\\uDF28-\\uDF2F\\uDF51-\\uDFAF\\uDFC5-\\uDFDF\\uDFF7-\\uDFFF]|\\uD804[\\uDC47-\\uDC65\\uDC70-\\uDC7E\\uDCBB-\\uDCCF\\uDCE9-\\uDCEF\\uDCFA-\\uDCFF\\uDD35\\uDD40-\\uDD43\\uDD48-\\uDD4F\\uDD74\\uDD75\\uDD77-\\uDD7F\\uDDC5-\\uDDC8\\uDDCD\\uDDDB\\uDDDD-\\uDDFF\\uDE12\\uDE38-\\uDE3D\\uDE3F-\\uDE7F\\uDE87\\uDE89\\uDE8E\\uDE9E\\uDEA9-\\uDEAF\\uDEEB-\\uDEEF\\uDEFA-\\uDEFF\\uDF04\\uDF0D\\uDF0E\\uDF11\\uDF12\\uDF29\\uDF31\\uDF34\\uDF3A\\uDF45\\uDF46\\uDF49\\uDF4A\\uDF4E\\uDF4F\\uDF51-\\uDF56\\uDF58-\\uDF5C\\uDF64\\uDF65\\uDF6D-\\uDF6F\\uDF75-\\uDFFF]|\\uD805[\\uDC4B-\\uDC4F\\uDC5A-\\uDC5D\\uDC62-\\uDC7F\\uDCC6\\uDCC8-\\uDCCF\\uDCDA-\\uDD7F\\uDDB6\\uDDB7\\uDDC1-\\uDDD7\\uDDDE-\\uDDFF\\uDE41-\\uDE43\\uDE45-\\uDE4F\\uDE5A-\\uDE7F\\uDEB9-\\uDEBF\\uDECA-\\uDEFF\\uDF1B\\uDF1C\\uDF2C-\\uDF2F\\uDF3A-\\uDFFF]|\\uD806[\\uDC3B-\\uDC9F\\uDCEA-\\uDCFE\\uDD07\\uDD08\\uDD0A\\uDD0B\\uDD14\\uDD17\\uDD36\\uDD39\\uDD3A\\uDD44-\\uDD4F\\uDD5A-\\uDD9F\\uDDA8\\uDDA9\\uDDD8\\uDDD9\\uDDE2\\uDDE5-\\uDDFF\\uDE3F-\\uDE46\\uDE48-\\uDE4F\\uDE9A-\\uDE9C\\uDE9E-\\uDEBF\\uDEF9-\\uDFFF]|\\uD807[\\uDC09\\uDC37\\uDC41-\\uDC4F\\uDC5A-\\uDC71\\uDC90\\uDC91\\uDCA8\\uDCB7-\\uDCFF\\uDD07\\uDD0A\\uDD37-\\uDD39\\uDD3B\\uDD3E\\uDD48-\\uDD4F\\uDD5A-\\uDD5F\\uDD66\\uDD69\\uDD8F\\uDD92\\uDD99-\\uDD9F\\uDDAA-\\uDEDF\\uDEF7-\\uDFAF\\uDFB1-\\uDFFF]|\\uD808[\\uDF9A-\\uDFFF]|\\uD809[\\uDC6F-\\uDC7F\\uDD44-\\uDFFF]|[\\uD80A\\uD80B\\uD80E-\\uD810\\uD812-\\uD819\\uD824-\\uD82B\\uD82D\\uD82E\\uD830-\\uD833\\uD837\\uD839\\uD83D\\uD83F\\uD87B-\\uD87D\\uD87F\\uD885-\\uDB3F\\uDB41-\\uDBFF][\\uDC00-\\uDFFF]|\\uD80D[\\uDC2F-\\uDFFF]|\\uD811[\\uDE47-\\uDFFF]|\\uD81A[\\uDE39-\\uDE3F\\uDE5F\\uDE6A-\\uDECF\\uDEEE\\uDEEF\\uDEF5-\\uDEFF\\uDF37-\\uDF3F\\uDF44-\\uDF4F\\uDF5A-\\uDF62\\uDF78-\\uDF7C\\uDF90-\\uDFFF]|\\uD81B[\\uDC00-\\uDE3F\\uDE80-\\uDEFF\\uDF4B-\\uDF4E\\uDF88-\\uDF8E\\uDFA0-\\uDFDF\\uDFE2\\uDFE5-\\uDFEF\\uDFF2-\\uDFFF]|\\uD821[\\uDFF8-\\uDFFF]|\\uD823[\\uDCD6-\\uDCFF\\uDD09-\\uDFFF]|\\uD82C[\\uDD1F-\\uDD4F\\uDD53-\\uDD63\\uDD68-\\uDD6F\\uDEFC-\\uDFFF]|\\uD82F[\\uDC6B-\\uDC6F\\uDC7D-\\uDC7F\\uDC89-\\uDC8F\\uDC9A-\\uDC9C\\uDC9F-\\uDFFF]|\\uD834[\\uDC00-\\uDD64\\uDD6A-\\uDD6C\\uDD73-\\uDD7A\\uDD83\\uDD84\\uDD8C-\\uDDA9\\uDDAE-\\uDE41\\uDE45-\\uDFFF]|\\uD835[\\uDC55\\uDC9D\\uDCA0\\uDCA1\\uDCA3\\uDCA4\\uDCA7\\uDCA8\\uDCAD\\uDCBA\\uDCBC\\uDCC4\\uDD06\\uDD0B\\uDD0C\\uDD15\\uDD1D\\uDD3A\\uDD3F\\uDD45\\uDD47-\\uDD49\\uDD51\\uDEA6\\uDEA7\\uDEC1\\uDEDB\\uDEFB\\uDF15\\uDF35\\uDF4F\\uDF6F\\uDF89\\uDFA9\\uDFC3\\uDFCC\\uDFCD]|\\uD836[\\uDC00-\\uDDFF\\uDE37-\\uDE3A\\uDE6D-\\uDE74\\uDE76-\\uDE83\\uDE85-\\uDE9A\\uDEA0\\uDEB0-\\uDFFF]|\\uD838[\\uDC07\\uDC19\\uDC1A\\uDC22\\uDC25\\uDC2B-\\uDCFF\\uDD2D-\\uDD2F\\uDD3E\\uDD3F\\uDD4A-\\uDD4D\\uDD4F-\\uDEBF\\uDEFA-\\uDFFF]|\\uD83A[\\uDCC5-\\uDCCF\\uDCD7-\\uDCFF\\uDD4C-\\uDD4F\\uDD5A-\\uDFFF]|\\uD83B[\\uDC00-\\uDDFF\\uDE04\\uDE20\\uDE23\\uDE25\\uDE26\\uDE28\\uDE33\\uDE38\\uDE3A\\uDE3C-\\uDE41\\uDE43-\\uDE46\\uDE48\\uDE4A\\uDE4C\\uDE50\\uDE53\\uDE55\\uDE56\\uDE58\\uDE5A\\uDE5C\\uDE5E\\uDE60\\uDE63\\uDE65\\uDE66\\uDE6B\\uDE73\\uDE78\\uDE7D\\uDE7F\\uDE8A\\uDE9C-\\uDEA0\\uDEA4\\uDEAA\\uDEBC-\\uDFFF]|\\uD83C[\\uDC00-\\uDD2F\\uDD4A-\\uDD4F\\uDD6A-\\uDD6F\\uDD8A-\\uDFFF]|\\uD83E[\\uDC00-\\uDFEF\\uDFFA-\\uDFFF]|\\uD869[\\uDEDE-\\uDEFF]|\\uD86D[\\uDF35-\\uDF3F]|\\uD86E[\\uDC1E\\uDC1F]|\\uD873[\\uDEA2-\\uDEAF]|\\uD87A[\\uDFE1-\\uDFFF]|\\uD87E[\\uDE1E-\\uDFFF]|\\uD884[\\uDF4B-\\uDFFF]|\\uDB40[\\uDC00-\\uDCFF\\uDDF0-\\uDFFF]/g;var own=Object.hasOwnProperty,BananaSlug=class{constructor(){this.occurrences,this.reset();}slug(value3,maintainCase){let self2=this,result2=slug(value3,maintainCase===!0),originalSlug=result2;for(;own.call(self2.occurrences,result2);)self2.occurrences[originalSlug]++,result2=originalSlug+\"-\"+self2.occurrences[originalSlug];return self2.occurrences[result2]=0,result2}reset(){this.occurrences=Object.create(null);}};function slug(value3,maintainCase){return typeof value3!=\"string\"?\"\":(maintainCase||(value3=value3.toLowerCase()),value3.replace(regex,\"\").replace(/ /g,\"-\"))}var slugs=new BananaSlug,Heading2=({children,disableAnchor,...props})=>{if(disableAnchor||typeof children!=\"string\")return React15__default.createElement(H2,null,children);let tagID=slugs.slug(children.toLowerCase());return React15__default.createElement(HeaderMdx,{as:\"h2\",id:tagID,...props},children)};var Subheading=({children,disableAnchor})=>{if(disableAnchor||typeof children!=\"string\")return React15__default.createElement(H3,null,children);let tagID=slugs.slug(children.toLowerCase());return React15__default.createElement(HeaderMdx,{as:\"h3\",id:tagID},children)};var DocsStory=({of,expanded=!0,withToolbar:withToolbarProp=!1,__forceInitialArgs=!1,__primary=!1})=>{let{story}=useOf(of||\"story\",[\"story\"]),withToolbar=story.parameters.docs?.canvas?.withToolbar??withToolbarProp;return React15__default.createElement(Anchor,{storyId:story.id},expanded&&React15__default.createElement(React15__default.Fragment,null,React15__default.createElement(Subheading,null,story.name),React15__default.createElement(DescriptionContainer,{of})),React15__default.createElement(Canvas,{of,withToolbar,story:{__forceInitialArgs,__primary},source:{__forceInitialArgs}}))};var Primary=props=>{let{of}=props;if(\"of\"in props&&of===void 0)throw new Error(\"Unexpected `of={undefined}`, did you mistype a CSF file reference?\");let{csfFile}=useOf(of||\"meta\",[\"meta\"]),primaryStory=useContext(DocsContext).componentStoriesFromCSFFile(csfFile)[0];return primaryStory?React15__default.createElement(DocsStory,{of:primaryStory.moduleExport,expanded:!1,__primary:!0,withToolbar:!0}):null};var StyledHeading=styled(Heading2)(({theme})=>({fontSize:`${theme.typography.size.s2-1}px`,fontWeight:theme.typography.weight.bold,lineHeight:\"16px\",letterSpacing:\"0.35em\",textTransform:\"uppercase\",color:theme.textMutedColor,border:0,marginBottom:\"12px\",\"&:first-of-type\":{marginTop:\"56px\"}})),Stories=({title=\"Stories\",includePrimary=!0})=>{let{componentStories,projectAnnotations,getStoryContext}=useContext(DocsContext),stories=componentStories(),{stories:{filter}={filter:void 0}}=projectAnnotations.parameters?.docs||{};return filter&&(stories=stories.filter(story=>filter(story,getStoryContext(story)))),stories.some(story=>story.tags?.includes(\"autodocs\"))&&(stories=stories.filter(story=>story.tags?.includes(\"autodocs\")&&!story.usesMount)),includePrimary||(stories=stories.slice(1)),!stories||stories.length===0?null:React15__default.createElement(React15__default.Fragment,null,typeof title==\"string\"?React15__default.createElement(StyledHeading,null,title):title,stories.map(story=>story&&React15__default.createElement(DocsStory,{key:story.id,of:story.moduleExport,expanded:!0,__forceInitialArgs:!0})))};var DEPRECATION_MIGRATION_LINK=\"https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#subtitle-block-and-parameterscomponentsubtitle\",Subtitle2=props=>{let{of,children}=props;if(\"of\"in props&&of===void 0)throw new Error(\"Unexpected `of={undefined}`, did you mistype a CSF file reference?\");let preparedMeta;try{preparedMeta=useOf(of||\"meta\",[\"meta\"]).preparedMeta;}catch(error){if(children&&!error.message.includes(\"did you forget to use <Meta of={} />?\"))throw error}let{componentSubtitle,docs}=preparedMeta?.parameters||{};componentSubtitle&&deprecate(`Using 'parameters.componentSubtitle' property to subtitle stories is deprecated. See ${DEPRECATION_MIGRATION_LINK}`);let content=children||docs?.subtitle||componentSubtitle;return content?React15__default.createElement(Subtitle,{className:\"sbdocs-subtitle sb-unstyled\"},content):null};var STORY_KIND_PATH_SEPARATOR=/\\s*\\/\\s*/,extractTitle=title=>{let groups=title.trim().split(STORY_KIND_PATH_SEPARATOR);return groups?.[groups?.length-1]||title},Title2=props=>{let{children,of}=props;if(\"of\"in props&&of===void 0)throw new Error(\"Unexpected `of={undefined}`, did you mistype a CSF file reference?\");let preparedMeta;try{preparedMeta=useOf(of||\"meta\",[\"meta\"]).preparedMeta;}catch(error){if(children&&!error.message.includes(\"did you forget to use <Meta of={} />?\"))throw error}let content=children||extractTitle(preparedMeta?.title);return content?React15__default.createElement(Title,{className:\"sbdocs-title sb-unstyled\"},content):null};var DocsPage=()=>{let resolvedOf=useOf(\"meta\",[\"meta\"]),{stories}=resolvedOf.csfFile,isSingleStory=Object.keys(stories).length===1;return React15__default.createElement(React15__default.Fragment,null,React15__default.createElement(Title2,null),React15__default.createElement(Subtitle2,null),React15__default.createElement(DescriptionContainer,{of:\"meta\"}),isSingleStory?React15__default.createElement(DescriptionContainer,{of:\"story\"}):null,React15__default.createElement(Primary,null),React15__default.createElement(Controls3,null),isSingleStory?null:React15__default.createElement(Stories,null))};function Docs({context,docsParameter}){let Container=docsParameter.container||DocsContainer,Page=docsParameter.page||DocsPage;return React15__default.createElement(Container,{context,theme:docsParameter.theme},React15__default.createElement(Page,null))}var ExternalDocsContext=class extends DocsContext$1{constructor(channel,store,renderStoryToElement,processMetaExports){super(channel,store,renderStoryToElement,[]);this.channel=channel;this.store=store;this.renderStoryToElement=renderStoryToElement;this.processMetaExports=processMetaExports;this.referenceMeta=(metaExports,attach)=>{let csfFile=this.processMetaExports(metaExports);this.referenceCSFFile(csfFile),super.referenceMeta(metaExports,attach);};}};var ConstantMap=class{constructor(prefix){this.prefix=prefix;this.entries=new Map;}get(key2){return this.entries.has(key2)||this.entries.set(key2,`${this.prefix}${this.entries.size}`),this.entries.get(key2)}},ExternalPreview=class extends Preview$1{constructor(projectAnnotations){super(path=>Promise.resolve(this.moduleExportsByImportPath[path]),()=>composeConfigs([{parameters:{docs:{story:{inline:!0}}}},this.projectAnnotations]),new Channel({}));this.projectAnnotations=projectAnnotations;this.importPaths=new ConstantMap(\"./importPath/\");this.titles=new ConstantMap(\"title-\");this.storyIndex={v:5,entries:{}};this.moduleExportsByImportPath={};this.processMetaExports=metaExports=>{let importPath=this.importPaths.get(metaExports);this.moduleExportsByImportPath[importPath]=metaExports;let title=metaExports.default.title||this.titles.get(metaExports),csfFile=this.storyStoreValue.processCSFFileWithCache(metaExports,importPath,title);return Object.values(csfFile.stories).forEach(({id,name:name2})=>{this.storyIndex.entries[id]={id,importPath,title,name:name2,type:\"story\"};}),this.onStoriesChanged({storyIndex:this.storyIndex}),csfFile};this.docsContext=()=>new ExternalDocsContext(this.channel,this.storyStoreValue,this.renderStoryToElement.bind(this),this.processMetaExports.bind(this));}async getStoryIndexFromServer(){return this.storyIndex}};function usePreview(projectAnnotations){let previewRef=useRef();return previewRef.current||(previewRef.current=new ExternalPreview(projectAnnotations)),previewRef.current}function ExternalDocs({projectAnnotationsList,children}){let projectAnnotations=composeConfigs(projectAnnotationsList),preview2=usePreview(projectAnnotations),docsParameter={...projectAnnotations.parameters?.docs,page:()=>children};return React15__default.createElement(Docs,{docsParameter,context:preview2.docsContext()})}var preview,ExternalDocsContainer=({projectAnnotations,children})=>(preview||(preview=new ExternalPreview(projectAnnotations)),React15__default.createElement(DocsContext.Provider,{value:preview.docsContext()},React15__default.createElement(ThemeProvider,{theme:ensure(themes.light)},children)));var Meta=({of})=>{let context=useContext(DocsContext);of&&context.referenceMeta(of,!0);try{let primary=context.storyById();return React15__default.createElement(Anchor,{storyId:primary.id})}catch{return null}};var Unstyled=props=>React15__default.createElement(\"div\",{...props,className:\"sb-unstyled\"});var Wrapper11=({children})=>React15__default.createElement(\"div\",{style:{fontFamily:\"sans-serif\"}},children);var PRIMARY_STORY=\"^\";\n\nexport { AddContext, Anchor, AnchorMdx, ArgTypes, BooleanControl, Canvas, CodeOrSourceMdx, ColorControl, ColorItem, ColorPalette, Controls3 as Controls, DateControl, DescriptionContainer as Description, DescriptionType, Docs, DocsContainer, DocsContext, DocsPage, DocsStory, ExternalDocs, ExternalDocsContainer, FilesControl, HeaderMdx, HeadersMdx, Heading2 as Heading, IconGallery, IconItem, Markdown, Meta, NumberControl, ObjectControl, OptionsControl, PRIMARY_STORY, Primary, ArgsTable as PureArgsTable, RangeControl, Source2 as Source, SourceContainer, SourceContext, Stories, Story2 as Story, Subheading, Subtitle2 as Subtitle, TextControl, Title2 as Title, Typeset, UNKNOWN_ARGS_HASH, Unstyled, Wrapper11 as Wrapper, anchorBlockIdFromId, argsHash, assertIsFn, extractTitle, format2 as format, formatDate, formatTime, getStoryId2 as getStoryId, getStoryProps, parse2 as parse, parseDate, parseTime, slugs, useOf, useSourceProps };\n","var V3 = Object.create;\nvar oi = Object.defineProperty;\nvar j3 = Object.getOwnPropertyDescriptor;\nvar W3 = Object.getOwnPropertyNames;\nvar q3 = Object.getPrototypeOf, U3 = Object.prototype.hasOwnProperty;\nvar o = (e, t) => oi(e, \"name\", { value: t, configurable: !0 }), oo = /* @__PURE__ */ ((e) => typeof require < \"u\" ? require : typeof Proxy <\n\"u\" ? new Proxy(e, {\n get: (t, r) => (typeof require < \"u\" ? require : t)[r]\n}) : e)(function(e) {\n if (typeof require < \"u\") return require.apply(this, arguments);\n throw Error('Dynamic require of \"' + e + '\" is not supported');\n});\nvar S = (e, t) => () => (e && (t = e(e = 0)), t);\nvar M = (e, t) => () => (t || e((t = { exports: {} }).exports, t), t.exports), fn = (e, t) => {\n for (var r in t)\n oi(e, r, { get: t[r], enumerable: !0 });\n}, G3 = (e, t, r, n) => {\n if (t && typeof t == \"object\" || typeof t == \"function\")\n for (let a of W3(t))\n !U3.call(e, a) && a !== r && oi(e, a, { get: () => t[a], enumerable: !(n = j3(t, a)) || n.enumerable });\n return e;\n};\nvar Re = (e, t, r) => (r = e != null ? V3(q3(e)) : {}, G3(\n // If the importer is in node compatibility mode or this is not an ESM\n // file that has been converted to a CommonJS file using a Babel-\n // compatible transform (i.e. \"__esModule\" has not been set), then set\n // \"default\" to the CommonJS \"module.exports\" for node compatibility.\n t || !e || !e.__esModule ? oi(r, \"default\", { value: e, enumerable: !0 }) : r,\n e\n));\n\n// ../node_modules/@babel/runtime/helpers/esm/extends.js\nfunction we() {\n return we = Object.assign ? Object.assign.bind() : function(e) {\n for (var t = 1; t < arguments.length; t++) {\n var r = arguments[t];\n for (var n in r) ({}).hasOwnProperty.call(r, n) && (e[n] = r[n]);\n }\n return e;\n }, we.apply(null, arguments);\n}\nvar io = S(() => {\n o(we, \"_extends\");\n});\n\n// ../node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js\nfunction mp(e) {\n if (e === void 0) throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n return e;\n}\nvar gp = S(() => {\n o(mp, \"_assertThisInitialized\");\n});\n\n// ../node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js\nfunction er(e, t) {\n return er = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(r, n) {\n return r.__proto__ = n, r;\n }, er(e, t);\n}\nvar ii = S(() => {\n o(er, \"_setPrototypeOf\");\n});\n\n// ../node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js\nfunction li(e) {\n return li = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function(t) {\n return t.__proto__ || Object.getPrototypeOf(t);\n }, li(e);\n}\nvar wp = S(() => {\n o(li, \"_getPrototypeOf\");\n});\n\n// ../node_modules/@storybook/global/dist/index.mjs\nvar hn, ci = S(() => {\n hn = (() => {\n let e;\n return typeof window < \"u\" ? e = window : typeof globalThis < \"u\" ? e = globalThis : typeof global < \"u\" ? e = global : typeof self < \"u\" ?\n e = self : e = {}, e;\n })();\n});\n\n// ../node_modules/memoizerific/memoizerific.js\nvar uo = M((Ap, ws) => {\n (function(e) {\n if (typeof Ap == \"object\" && typeof ws < \"u\")\n ws.exports = e();\n else if (typeof define == \"function\" && define.amd)\n define([], e);\n else {\n var t;\n typeof window < \"u\" ? t = window : typeof global < \"u\" ? t = global : typeof self < \"u\" ? t = self : t = this, t.memoizerific = e();\n }\n })(function() {\n var e, t, r;\n return (/* @__PURE__ */ o(function n(a, i, l) {\n function u(d, h) {\n if (!i[d]) {\n if (!a[d]) {\n var f = typeof oo == \"function\" && oo;\n if (!h && f) return f(d, !0);\n if (c) return c(d, !0);\n var g = new Error(\"Cannot find module '\" + d + \"'\");\n throw g.code = \"MODULE_NOT_FOUND\", g;\n }\n var w = i[d] = { exports: {} };\n a[d][0].call(w.exports, function(m) {\n var v = a[d][1][m];\n return u(v || m);\n }, w, w.exports, n, a, i, l);\n }\n return i[d].exports;\n }\n o(u, \"s\");\n for (var c = typeof oo == \"function\" && oo, p = 0; p < l.length; p++) u(l[p]);\n return u;\n }, \"e\"))({ 1: [function(n, a, i) {\n a.exports = function(l) {\n if (typeof Map != \"function\" || l) {\n var u = n(\"./similar\");\n return new u();\n } else\n return /* @__PURE__ */ new Map();\n };\n }, { \"./similar\": 2 }], 2: [function(n, a, i) {\n function l() {\n return this.list = [], this.lastItem = void 0, this.size = 0, this;\n }\n o(l, \"Similar\"), l.prototype.get = function(u) {\n var c;\n if (this.lastItem && this.isEqual(this.lastItem.key, u))\n return this.lastItem.val;\n if (c = this.indexOf(u), c >= 0)\n return this.lastItem = this.list[c], this.list[c].val;\n }, l.prototype.set = function(u, c) {\n var p;\n return this.lastItem && this.isEqual(this.lastItem.key, u) ? (this.lastItem.val = c, this) : (p = this.indexOf(u), p >= 0 ? (this.lastItem =\n this.list[p], this.list[p].val = c, this) : (this.lastItem = { key: u, val: c }, this.list.push(this.lastItem), this.size++, this));\n }, l.prototype.delete = function(u) {\n var c;\n if (this.lastItem && this.isEqual(this.lastItem.key, u) && (this.lastItem = void 0), c = this.indexOf(u), c >= 0)\n return this.size--, this.list.splice(c, 1)[0];\n }, l.prototype.has = function(u) {\n var c;\n return this.lastItem && this.isEqual(this.lastItem.key, u) ? !0 : (c = this.indexOf(u), c >= 0 ? (this.lastItem = this.list[c], !0) :\n !1);\n }, l.prototype.forEach = function(u, c) {\n var p;\n for (p = 0; p < this.size; p++)\n u.call(c || this, this.list[p].val, this.list[p].key, this);\n }, l.prototype.indexOf = function(u) {\n var c;\n for (c = 0; c < this.size; c++)\n if (this.isEqual(this.list[c].key, u))\n return c;\n return -1;\n }, l.prototype.isEqual = function(u, c) {\n return u === c || u !== u && c !== c;\n }, a.exports = l;\n }, {}], 3: [function(n, a, i) {\n var l = n(\"map-or-similar\");\n a.exports = function(d) {\n var h = new l(!1), f = [];\n return function(g) {\n var w = /* @__PURE__ */ o(function() {\n var m = h, v, y, b = arguments.length - 1, D = Array(b + 1), x = !0, C;\n if ((w.numArgs || w.numArgs === 0) && w.numArgs !== b + 1)\n throw new Error(\"Memoizerific functions should always be called with the same number of arguments\");\n for (C = 0; C < b; C++) {\n if (D[C] = {\n cacheItem: m,\n arg: arguments[C]\n }, m.has(arguments[C])) {\n m = m.get(arguments[C]);\n continue;\n }\n x = !1, v = new l(!1), m.set(arguments[C], v), m = v;\n }\n return x && (m.has(arguments[b]) ? y = m.get(arguments[b]) : x = !1), x || (y = g.apply(null, arguments), m.set(arguments[b], y)),\n d > 0 && (D[b] = {\n cacheItem: m,\n arg: arguments[b]\n }, x ? u(f, D) : f.push(D), f.length > d && c(f.shift())), w.wasMemoized = x, w.numArgs = b + 1, y;\n }, \"memoizerific\");\n return w.limit = d, w.wasMemoized = !1, w.cache = h, w.lru = f, w;\n };\n };\n function u(d, h) {\n var f = d.length, g = h.length, w, m, v;\n for (m = 0; m < f; m++) {\n for (w = !0, v = 0; v < g; v++)\n if (!p(d[m][v].arg, h[v].arg)) {\n w = !1;\n break;\n }\n if (w)\n break;\n }\n d.push(d.splice(m, 1)[0]);\n }\n o(u, \"moveToMostRecentLru\");\n function c(d) {\n var h = d.length, f = d[h - 1], g, w;\n for (f.cacheItem.delete(f.arg), w = h - 2; w >= 0 && (f = d[w], g = f.cacheItem.get(f.arg), !g || !g.size); w--)\n f.cacheItem.delete(f.arg);\n }\n o(c, \"removeCachedResult\");\n function p(d, h) {\n return d === h || d !== d && h !== h;\n }\n o(p, \"isEqual\");\n }, { \"map-or-similar\": 1 }] }, {}, [3])(3);\n });\n});\n\n// ../node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js\nfunction mn(e, t) {\n if (e == null) return {};\n var r = {};\n for (var n in e) if ({}.hasOwnProperty.call(e, n)) {\n if (t.indexOf(n) >= 0) continue;\n r[n] = e[n];\n }\n return r;\n}\nvar pi = S(() => {\n o(mn, \"_objectWithoutPropertiesLoose\");\n});\n\n// ../node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js\nfunction Fp(e, t) {\n if (e == null) return {};\n var r, n, a = mn(e, t);\n if (Object.getOwnPropertySymbols) {\n var i = Object.getOwnPropertySymbols(e);\n for (n = 0; n < i.length; n++) r = i[n], t.indexOf(r) >= 0 || {}.propertyIsEnumerable.call(e, r) && (a[r] = e[r]);\n }\n return a;\n}\nvar kp = S(() => {\n pi();\n o(Fp, \"_objectWithoutProperties\");\n});\n\n// ../node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js\nfunction co(e, t) {\n (t == null || t > e.length) && (t = e.length);\n for (var r = 0, n = Array(t); r < t; r++) n[r] = e[r];\n return n;\n}\nvar bs = S(() => {\n o(co, \"_arrayLikeToArray\");\n});\n\n// ../node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js\nfunction Lp(e) {\n if (Array.isArray(e)) return co(e);\n}\nvar Tp = S(() => {\n bs();\n o(Lp, \"_arrayWithoutHoles\");\n});\n\n// ../node_modules/@babel/runtime/helpers/esm/iterableToArray.js\nfunction Ip(e) {\n if (typeof Symbol < \"u\" && e[Symbol.iterator] != null || e[\"@@iterator\"] != null) return Array.from(e);\n}\nvar Bp = S(() => {\n o(Ip, \"_iterableToArray\");\n});\n\n// ../node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js\nfunction Mp(e, t) {\n if (e) {\n if (typeof e == \"string\") return co(e, t);\n var r = {}.toString.call(e).slice(8, -1);\n return r === \"Object\" && e.constructor && (r = e.constructor.name), r === \"Map\" || r === \"Set\" ? Array.from(e) : r === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.\n test(r) ? co(e, t) : void 0;\n }\n}\nvar _p = S(() => {\n bs();\n o(Mp, \"_unsupportedIterableToArray\");\n});\n\n// ../node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js\nfunction Pp() {\n throw new TypeError(`Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);\n}\nvar Hp = S(() => {\n o(Pp, \"_nonIterableSpread\");\n});\n\n// ../node_modules/@babel/runtime/helpers/esm/toConsumableArray.js\nfunction zp(e) {\n return Lp(e) || Ip(e) || Mp(e) || Pp();\n}\nvar Op = S(() => {\n Tp();\n Bp();\n _p();\n Hp();\n o(zp, \"_toConsumableArray\");\n});\n\n// ../node_modules/@babel/runtime/helpers/esm/typeof.js\nfunction Rr(e) {\n \"@babel/helpers - typeof\";\n return Rr = typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? function(t) {\n return typeof t;\n } : function(t) {\n return t && typeof Symbol == \"function\" && t.constructor === Symbol && t !== Symbol.prototype ? \"symbol\" : typeof t;\n }, Rr(e);\n}\nvar ys = S(() => {\n o(Rr, \"_typeof\");\n});\n\n// ../node_modules/@babel/runtime/helpers/esm/toPrimitive.js\nfunction Np(e, t) {\n if (Rr(e) != \"object\" || !e) return e;\n var r = e[Symbol.toPrimitive];\n if (r !== void 0) {\n var n = r.call(e, t || \"default\");\n if (Rr(n) != \"object\") return n;\n throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n }\n return (t === \"string\" ? String : Number)(e);\n}\nvar $p = S(() => {\n ys();\n o(Np, \"toPrimitive\");\n});\n\n// ../node_modules/@babel/runtime/helpers/esm/toPropertyKey.js\nfunction Vp(e) {\n var t = Np(e, \"string\");\n return Rr(t) == \"symbol\" ? t : t + \"\";\n}\nvar jp = S(() => {\n ys();\n $p();\n o(Vp, \"toPropertyKey\");\n});\n\n// ../node_modules/@babel/runtime/helpers/esm/defineProperty.js\nfunction di(e, t, r) {\n return (t = Vp(t)) in e ? Object.defineProperty(e, t, {\n value: r,\n enumerable: !0,\n configurable: !0,\n writable: !0\n }) : e[t] = r, e;\n}\nvar Ds = S(() => {\n jp();\n o(di, \"_defineProperty\");\n});\n\n// ../node_modules/react-syntax-highlighter/dist/esm/create-element.js\nimport E7 from \"react\";\nfunction Wp(e, t) {\n var r = Object.keys(e);\n if (Object.getOwnPropertySymbols) {\n var n = Object.getOwnPropertySymbols(e);\n t && (n = n.filter(function(a) {\n return Object.getOwnPropertyDescriptor(e, a).enumerable;\n })), r.push.apply(r, n);\n }\n return r;\n}\nfunction gn(e) {\n for (var t = 1; t < arguments.length; t++) {\n var r = arguments[t] != null ? arguments[t] : {};\n t % 2 ? Wp(Object(r), !0).forEach(function(n) {\n di(e, n, r[n]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(r)) : Wp(Object(r)).forEach(function(n) {\n Object.defineProperty(e, n, Object.getOwnPropertyDescriptor(r, n));\n });\n }\n return e;\n}\nfunction R7(e) {\n var t = e.length;\n if (t === 0 || t === 1) return e;\n if (t === 2)\n return [e[0], e[1], \"\".concat(e[0], \".\").concat(e[1]), \"\".concat(e[1], \".\").concat(e[0])];\n if (t === 3)\n return [e[0], e[1], e[2], \"\".concat(e[0], \".\").concat(e[1]), \"\".concat(e[0], \".\").concat(e[2]), \"\".concat(e[1], \".\").concat(e[0]), \"\".concat(\n e[1], \".\").concat(e[2]), \"\".concat(e[2], \".\").concat(e[0]), \"\".concat(e[2], \".\").concat(e[1]), \"\".concat(e[0], \".\").concat(e[1], \".\").concat(\n e[2]), \"\".concat(e[0], \".\").concat(e[2], \".\").concat(e[1]), \"\".concat(e[1], \".\").concat(e[0], \".\").concat(e[2]), \"\".concat(e[1], \".\").concat(\n e[2], \".\").concat(e[0]), \"\".concat(e[2], \".\").concat(e[0], \".\").concat(e[1]), \"\".concat(e[2], \".\").concat(e[1], \".\").concat(e[0])];\n if (t >= 4)\n return [e[0], e[1], e[2], e[3], \"\".concat(e[0], \".\").concat(e[1]), \"\".concat(e[0], \".\").concat(e[2]), \"\".concat(e[0], \".\").concat(e[3]),\n \"\".concat(e[1], \".\").concat(e[0]), \"\".concat(e[1], \".\").concat(e[2]), \"\".concat(e[1], \".\").concat(e[3]), \"\".concat(e[2], \".\").concat(e[0]),\n \"\".concat(e[2], \".\").concat(e[1]), \"\".concat(e[2], \".\").concat(e[3]), \"\".concat(e[3], \".\").concat(e[0]), \"\".concat(e[3], \".\").concat(e[1]),\n \"\".concat(e[3], \".\").concat(e[2]), \"\".concat(e[0], \".\").concat(e[1], \".\").concat(e[2]), \"\".concat(e[0], \".\").concat(e[1], \".\").concat(e[3]),\n \"\".concat(e[0], \".\").concat(e[2], \".\").concat(e[1]), \"\".concat(e[0], \".\").concat(e[2], \".\").concat(e[3]), \"\".concat(e[0], \".\").concat(e[3],\n \".\").concat(e[1]), \"\".concat(e[0], \".\").concat(e[3], \".\").concat(e[2]), \"\".concat(e[1], \".\").concat(e[0], \".\").concat(e[2]), \"\".concat(e[1],\n \".\").concat(e[0], \".\").concat(e[3]), \"\".concat(e[1], \".\").concat(e[2], \".\").concat(e[0]), \"\".concat(e[1], \".\").concat(e[2], \".\").concat(\n e[3]), \"\".concat(e[1], \".\").concat(e[3], \".\").concat(e[0]), \"\".concat(e[1], \".\").concat(e[3], \".\").concat(e[2]), \"\".concat(e[2], \".\").concat(\n e[0], \".\").concat(e[1]), \"\".concat(e[2], \".\").concat(e[0], \".\").concat(e[3]), \"\".concat(e[2], \".\").concat(e[1], \".\").concat(e[0]), \"\".concat(\n e[2], \".\").concat(e[1], \".\").concat(e[3]), \"\".concat(e[2], \".\").concat(e[3], \".\").concat(e[0]), \"\".concat(e[2], \".\").concat(e[3], \".\").concat(\n e[1]), \"\".concat(e[3], \".\").concat(e[0], \".\").concat(e[1]), \"\".concat(e[3], \".\").concat(e[0], \".\").concat(e[2]), \"\".concat(e[3], \".\").concat(\n e[1], \".\").concat(e[0]), \"\".concat(e[3], \".\").concat(e[1], \".\").concat(e[2]), \"\".concat(e[3], \".\").concat(e[2], \".\").concat(e[0]), \"\".concat(\n e[3], \".\").concat(e[2], \".\").concat(e[1]), \"\".concat(e[0], \".\").concat(e[1], \".\").concat(e[2], \".\").concat(e[3]), \"\".concat(e[0], \".\").concat(\n e[1], \".\").concat(e[3], \".\").concat(e[2]), \"\".concat(e[0], \".\").concat(e[2], \".\").concat(e[1], \".\").concat(e[3]), \"\".concat(e[0], \".\").concat(\n e[2], \".\").concat(e[3], \".\").concat(e[1]), \"\".concat(e[0], \".\").concat(e[3], \".\").concat(e[1], \".\").concat(e[2]), \"\".concat(e[0], \".\").concat(\n e[3], \".\").concat(e[2], \".\").concat(e[1]), \"\".concat(e[1], \".\").concat(e[0], \".\").concat(e[2], \".\").concat(e[3]), \"\".concat(e[1], \".\").concat(\n e[0], \".\").concat(e[3], \".\").concat(e[2]), \"\".concat(e[1], \".\").concat(e[2], \".\").concat(e[0], \".\").concat(e[3]), \"\".concat(e[1], \".\").concat(\n e[2], \".\").concat(e[3], \".\").concat(e[0]), \"\".concat(e[1], \".\").concat(e[3], \".\").concat(e[0], \".\").concat(e[2]), \"\".concat(e[1], \".\").concat(\n e[3], \".\").concat(e[2], \".\").concat(e[0]), \"\".concat(e[2], \".\").concat(e[0], \".\").concat(e[1], \".\").concat(e[3]), \"\".concat(e[2], \".\").concat(\n e[0], \".\").concat(e[3], \".\").concat(e[1]), \"\".concat(e[2], \".\").concat(e[1], \".\").concat(e[0], \".\").concat(e[3]), \"\".concat(e[2], \".\").concat(\n e[1], \".\").concat(e[3], \".\").concat(e[0]), \"\".concat(e[2], \".\").concat(e[3], \".\").concat(e[0], \".\").concat(e[1]), \"\".concat(e[2], \".\").concat(\n e[3], \".\").concat(e[1], \".\").concat(e[0]), \"\".concat(e[3], \".\").concat(e[0], \".\").concat(e[1], \".\").concat(e[2]), \"\".concat(e[3], \".\").concat(\n e[0], \".\").concat(e[2], \".\").concat(e[1]), \"\".concat(e[3], \".\").concat(e[1], \".\").concat(e[0], \".\").concat(e[2]), \"\".concat(e[3], \".\").concat(\n e[1], \".\").concat(e[2], \".\").concat(e[0]), \"\".concat(e[3], \".\").concat(e[2], \".\").concat(e[0], \".\").concat(e[1]), \"\".concat(e[3], \".\").concat(\n e[2], \".\").concat(e[1], \".\").concat(e[0])];\n}\nfunction S7(e) {\n if (e.length === 0 || e.length === 1) return e;\n var t = e.join(\".\");\n return xs[t] || (xs[t] = R7(e)), xs[t];\n}\nfunction A7(e) {\n var t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, r = arguments.length > 2 ? arguments[2] : void 0, n = e.filter(\n function(i) {\n return i !== \"token\";\n }), a = S7(n);\n return a.reduce(function(i, l) {\n return gn(gn({}, i), r[l]);\n }, t);\n}\nfunction qp(e) {\n return e.join(\" \");\n}\nfunction F7(e, t) {\n var r = 0;\n return function(n) {\n return r += 1, n.map(function(a, i) {\n return Sr({\n node: a,\n stylesheet: e,\n useInlineStyles: t,\n key: \"code-segment-\".concat(r, \"-\").concat(i)\n });\n });\n };\n}\nfunction Sr(e) {\n var t = e.node, r = e.stylesheet, n = e.style, a = n === void 0 ? {} : n, i = e.useInlineStyles, l = e.key, u = t.properties, c = t.type, p = t.\n tagName, d = t.value;\n if (c === \"text\")\n return d;\n if (p) {\n var h = F7(r, i), f;\n if (!i)\n f = gn(gn({}, u), {}, {\n className: qp(u.className)\n });\n else {\n var g = Object.keys(r).reduce(function(y, b) {\n return b.split(\".\").forEach(function(D) {\n y.includes(D) || y.push(D);\n }), y;\n }, []), w = u.className && u.className.includes(\"token\") ? [\"token\"] : [], m = u.className && w.concat(u.className.filter(function(y) {\n return !g.includes(y);\n }));\n f = gn(gn({}, u), {}, {\n className: qp(m) || void 0,\n style: A7(u.className, Object.assign({}, u.style, a), r)\n });\n }\n var v = h(t.children);\n return /* @__PURE__ */ E7.createElement(p, we({\n key: l\n }, f), v);\n }\n}\nvar xs, Cs = S(() => {\n io();\n Ds();\n o(Wp, \"ownKeys\");\n o(gn, \"_objectSpread\");\n o(R7, \"powerSetPermutations\");\n xs = {};\n o(S7, \"getClassNameCombinations\");\n o(A7, \"createStyleObject\");\n o(qp, \"createClassNameString\");\n o(F7, \"createChildren\");\n o(Sr, \"createElement\");\n});\n\n// ../node_modules/react-syntax-highlighter/dist/esm/checkForListedLanguage.js\nvar Up, Gp = S(() => {\n Up = /* @__PURE__ */ o(function(e, t) {\n var r = e.listLanguages();\n return r.indexOf(t) !== -1;\n }, \"default\");\n});\n\n// ../node_modules/react-syntax-highlighter/dist/esm/highlight.js\nimport Ar from \"react\";\nfunction Yp(e, t) {\n var r = Object.keys(e);\n if (Object.getOwnPropertySymbols) {\n var n = Object.getOwnPropertySymbols(e);\n t && (n = n.filter(function(a) {\n return Object.getOwnPropertyDescriptor(e, a).enumerable;\n })), r.push.apply(r, n);\n }\n return r;\n}\nfunction Rt(e) {\n for (var t = 1; t < arguments.length; t++) {\n var r = arguments[t] != null ? arguments[t] : {};\n t % 2 ? Yp(Object(r), !0).forEach(function(n) {\n di(e, n, r[n]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(r)) : Yp(Object(r)).forEach(function(n) {\n Object.defineProperty(e, n, Object.getOwnPropertyDescriptor(r, n));\n });\n }\n return e;\n}\nfunction T7(e) {\n return e.match(L7);\n}\nfunction I7(e) {\n var t = e.lines, r = e.startingLineNumber, n = e.style;\n return t.map(function(a, i) {\n var l = i + r;\n return /* @__PURE__ */ Ar.createElement(\"span\", {\n key: \"line-\".concat(i),\n className: \"react-syntax-highlighter-line-number\",\n style: typeof n == \"function\" ? n(l) : n\n }, \"\".concat(l, `\n`));\n });\n}\nfunction B7(e) {\n var t = e.codeString, r = e.codeStyle, n = e.containerStyle, a = n === void 0 ? {\n float: \"left\",\n paddingRight: \"10px\"\n } : n, i = e.numberStyle, l = i === void 0 ? {} : i, u = e.startingLineNumber;\n return /* @__PURE__ */ Ar.createElement(\"code\", {\n style: Object.assign({}, r, a)\n }, I7({\n lines: t.replace(/\\n$/, \"\").split(`\n`),\n style: l,\n startingLineNumber: u\n }));\n}\nfunction M7(e) {\n return \"\".concat(e.toString().length, \".25em\");\n}\nfunction Xp(e, t) {\n return {\n type: \"element\",\n tagName: \"span\",\n properties: {\n key: \"line-number--\".concat(e),\n className: [\"comment\", \"linenumber\", \"react-syntax-highlighter-line-number\"],\n style: t\n },\n children: [{\n type: \"text\",\n value: e\n }]\n };\n}\nfunction Kp(e, t, r) {\n var n = {\n display: \"inline-block\",\n minWidth: M7(r),\n paddingRight: \"1em\",\n textAlign: \"right\",\n userSelect: \"none\"\n }, a = typeof e == \"function\" ? e(t) : e, i = Rt(Rt({}, n), a);\n return i;\n}\nfunction fi(e) {\n var t = e.children, r = e.lineNumber, n = e.lineNumberStyle, a = e.largestLineNumber, i = e.showInlineLineNumbers, l = e.lineProps, u = l ===\n void 0 ? {} : l, c = e.className, p = c === void 0 ? [] : c, d = e.showLineNumbers, h = e.wrapLongLines, f = typeof u == \"function\" ? u(r) :\n u;\n if (f.className = p, r && i) {\n var g = Kp(n, r, a);\n t.unshift(Xp(r, g));\n }\n return h & d && (f.style = Rt(Rt({}, f.style), {}, {\n display: \"flex\"\n })), {\n type: \"element\",\n tagName: \"span\",\n properties: f,\n children: t\n };\n}\nfunction Zp(e) {\n for (var t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : [], r = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] :\n [], n = 0; n < e.length; n++) {\n var a = e[n];\n if (a.type === \"text\")\n r.push(fi({\n children: [a],\n className: zp(new Set(t))\n }));\n else if (a.children) {\n var i = t.concat(a.properties.className);\n Zp(a.children, i).forEach(function(l) {\n return r.push(l);\n });\n }\n }\n return r;\n}\nfunction _7(e, t, r, n, a, i, l, u, c) {\n var p, d = Zp(e.value), h = [], f = -1, g = 0;\n function w(C, E) {\n var R = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : [];\n return fi({\n children: C,\n lineNumber: E,\n lineNumberStyle: u,\n largestLineNumber: l,\n showInlineLineNumbers: a,\n lineProps: r,\n className: R,\n showLineNumbers: n,\n wrapLongLines: c\n });\n }\n o(w, \"createWrappedLine\");\n function m(C, E) {\n if (n && E && a) {\n var R = Kp(u, E, l);\n C.unshift(Xp(E, R));\n }\n return C;\n }\n o(m, \"createUnwrappedLine\");\n function v(C, E) {\n var R = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : [];\n return t || R.length > 0 ? w(C, E, R) : m(C, E);\n }\n o(v, \"createLine\");\n for (var y = /* @__PURE__ */ o(function() {\n var E = d[g], R = E.children[0].value, F = T7(R);\n if (F) {\n var A = R.split(`\n`);\n A.forEach(function(k, B) {\n var j = n && h.length + i, V = {\n type: \"text\",\n value: \"\".concat(k, `\n`)\n };\n if (B === 0) {\n var ee = d.slice(f + 1, g).concat(fi({\n children: [V],\n className: E.properties.className\n })), I = v(ee, j);\n h.push(I);\n } else if (B === A.length - 1) {\n var T = d[g + 1] && d[g + 1].children && d[g + 1].children[0], P = {\n type: \"text\",\n value: \"\".concat(k)\n };\n if (T) {\n var q = fi({\n children: [P],\n className: E.properties.className\n });\n d.splice(g + 1, 0, q);\n } else {\n var $ = [P], U = v($, j, E.properties.className);\n h.push(U);\n }\n } else {\n var H = [V], X = v(H, j, E.properties.className);\n h.push(X);\n }\n }), f = g;\n }\n g++;\n }, \"_loop\"); g < d.length; )\n y();\n if (f !== d.length - 1) {\n var b = d.slice(f + 1, d.length);\n if (b && b.length) {\n var D = n && h.length + i, x = v(b, D);\n h.push(x);\n }\n }\n return t ? h : (p = []).concat.apply(p, h);\n}\nfunction P7(e) {\n var t = e.rows, r = e.stylesheet, n = e.useInlineStyles;\n return t.map(function(a, i) {\n return Sr({\n node: a,\n stylesheet: r,\n useInlineStyles: n,\n key: \"code-segement\".concat(i)\n });\n });\n}\nfunction Jp(e) {\n return e && typeof e.highlightAuto < \"u\";\n}\nfunction H7(e) {\n var t = e.astGenerator, r = e.language, n = e.code, a = e.defaultCodeValue;\n if (Jp(t)) {\n var i = Up(t, r);\n return r === \"text\" ? {\n value: a,\n language: \"text\"\n } : i ? t.highlight(r, n) : t.highlightAuto(n);\n }\n try {\n return r && r !== \"text\" ? {\n value: t.highlight(n, r)\n } : {\n value: a\n };\n } catch {\n return {\n value: a\n };\n }\n}\nfunction Es(e, t) {\n return /* @__PURE__ */ o(function(n) {\n var a = n.language, i = n.children, l = n.style, u = l === void 0 ? t : l, c = n.customStyle, p = c === void 0 ? {} : c, d = n.codeTagProps,\n h = d === void 0 ? {\n className: a ? \"language-\".concat(a) : void 0,\n style: Rt(Rt({}, u['code[class*=\"language-\"]']), u['code[class*=\"language-'.concat(a, '\"]')])\n } : d, f = n.useInlineStyles, g = f === void 0 ? !0 : f, w = n.showLineNumbers, m = w === void 0 ? !1 : w, v = n.showInlineLineNumbers, y = v ===\n void 0 ? !0 : v, b = n.startingLineNumber, D = b === void 0 ? 1 : b, x = n.lineNumberContainerStyle, C = n.lineNumberStyle, E = C === void 0 ?\n {} : C, R = n.wrapLines, F = n.wrapLongLines, A = F === void 0 ? !1 : F, k = n.lineProps, B = k === void 0 ? {} : k, j = n.renderer, V = n.\n PreTag, ee = V === void 0 ? \"pre\" : V, I = n.CodeTag, T = I === void 0 ? \"code\" : I, P = n.code, q = P === void 0 ? (Array.isArray(i) ? i[0] :\n i) || \"\" : P, $ = n.astGenerator, U = Fp(n, k7);\n $ = $ || e;\n var H = m ? /* @__PURE__ */ Ar.createElement(B7, {\n containerStyle: x,\n codeStyle: h.style || {},\n numberStyle: E,\n startingLineNumber: D,\n codeString: q\n }) : null, X = u.hljs || u['pre[class*=\"language-\"]'] || {\n backgroundColor: \"#fff\"\n }, ze = Jp($) ? \"hljs\" : \"prismjs\", Ee = g ? Object.assign({}, U, {\n style: Object.assign({}, X, p)\n }) : Object.assign({}, U, {\n className: U.className ? \"\".concat(ze, \" \").concat(U.className) : ze,\n style: Object.assign({}, p)\n });\n if (A ? h.style = Rt(Rt({}, h.style), {}, {\n whiteSpace: \"pre-wrap\"\n }) : h.style = Rt(Rt({}, h.style), {}, {\n whiteSpace: \"pre\"\n }), !$)\n return /* @__PURE__ */ Ar.createElement(ee, Ee, H, /* @__PURE__ */ Ar.createElement(T, h, q));\n (R === void 0 && j || A) && (R = !0), j = j || P7;\n var ve = [{\n type: \"text\",\n value: q\n }], Le = H7({\n astGenerator: $,\n language: a,\n code: q,\n defaultCodeValue: ve\n });\n Le.language === null && (Le.value = ve);\n var Oe = Le.value.length + D, Ne = _7(Le, R, B, m, y, D, Oe, E, A);\n return /* @__PURE__ */ Ar.createElement(ee, Ee, /* @__PURE__ */ Ar.createElement(T, h, !y && H, j({\n rows: Ne,\n stylesheet: u,\n useInlineStyles: g\n })));\n }, \"SyntaxHighlighter\");\n}\nvar k7, L7, Qp = S(() => {\n kp();\n Op();\n Ds();\n Cs();\n Gp();\n k7 = [\"language\", \"children\", \"style\", \"customStyle\", \"codeTagProps\", \"useInlineStyles\", \"showLineNumbers\", \"showInlineLineNumbers\", \"star\\\ntingLineNumber\", \"lineNumberContainerStyle\", \"lineNumberStyle\", \"wrapLines\", \"wrapLongLines\", \"lineProps\", \"renderer\", \"PreTag\", \"CodeTag\", \"\\\ncode\", \"astGenerator\"];\n o(Yp, \"ownKeys\");\n o(Rt, \"_objectSpread\");\n L7 = /\\n/g;\n o(T7, \"getNewLines\");\n o(I7, \"getAllLineNumbers\");\n o(B7, \"AllLineNumbers\");\n o(M7, \"getEmWidthOfNumber\");\n o(Xp, \"getInlineLineNumber\");\n o(Kp, \"assembleLineNumberStyles\");\n o(fi, \"createLineElement\");\n o(Zp, \"flattenCodeTree\");\n o(_7, \"processLines\");\n o(P7, \"defaultRenderer\");\n o(Jp, \"isHighlightJs\");\n o(H7, \"getCodeTree\");\n o(Es, \"default\");\n});\n\n// ../node_modules/xtend/immutable.js\nvar td = M((cH, ed) => {\n ed.exports = O7;\n var z7 = Object.prototype.hasOwnProperty;\n function O7() {\n for (var e = {}, t = 0; t < arguments.length; t++) {\n var r = arguments[t];\n for (var n in r)\n z7.call(r, n) && (e[n] = r[n]);\n }\n return e;\n }\n o(O7, \"extend\");\n});\n\n// ../node_modules/hastscript/node_modules/property-information/lib/util/schema.js\nvar Ss = M((dH, nd) => {\n \"use strict\";\n nd.exports = rd;\n var Rs = rd.prototype;\n Rs.space = null;\n Rs.normal = {};\n Rs.property = {};\n function rd(e, t, r) {\n this.property = e, this.normal = t, r && (this.space = r);\n }\n o(rd, \"Schema\");\n});\n\n// ../node_modules/hastscript/node_modules/property-information/lib/util/merge.js\nvar id = M((hH, od) => {\n \"use strict\";\n var ad = td(), N7 = Ss();\n od.exports = $7;\n function $7(e) {\n for (var t = e.length, r = [], n = [], a = -1, i, l; ++a < t; )\n i = e[a], r.push(i.property), n.push(i.normal), l = i.space;\n return new N7(\n ad.apply(null, r),\n ad.apply(null, n),\n l\n );\n }\n o($7, \"merge\");\n});\n\n// ../node_modules/hastscript/node_modules/property-information/normalize.js\nvar hi = M((gH, ld) => {\n \"use strict\";\n ld.exports = V7;\n function V7(e) {\n return e.toLowerCase();\n }\n o(V7, \"normalize\");\n});\n\n// ../node_modules/hastscript/node_modules/property-information/lib/util/info.js\nvar As = M((wH, ud) => {\n \"use strict\";\n ud.exports = sd;\n var et = sd.prototype;\n et.space = null;\n et.attribute = null;\n et.property = null;\n et.boolean = !1;\n et.booleanish = !1;\n et.overloadedBoolean = !1;\n et.number = !1;\n et.commaSeparated = !1;\n et.spaceSeparated = !1;\n et.commaOrSpaceSeparated = !1;\n et.mustUseProperty = !1;\n et.defined = !1;\n function sd(e, t) {\n this.property = e, this.attribute = t;\n }\n o(sd, \"Info\");\n});\n\n// ../node_modules/hastscript/node_modules/property-information/lib/util/types.js\nvar mi = M((rr) => {\n \"use strict\";\n var j7 = 0;\n rr.boolean = Fr();\n rr.booleanish = Fr();\n rr.overloadedBoolean = Fr();\n rr.number = Fr();\n rr.spaceSeparated = Fr();\n rr.commaSeparated = Fr();\n rr.commaOrSpaceSeparated = Fr();\n function Fr() {\n return Math.pow(2, ++j7);\n }\n o(Fr, \"increment\");\n});\n\n// ../node_modules/hastscript/node_modules/property-information/lib/util/defined-info.js\nvar ks = M((xH, hd) => {\n \"use strict\";\n var dd = As(), cd = mi();\n hd.exports = Fs;\n Fs.prototype = new dd();\n Fs.prototype.defined = !0;\n var fd = [\n \"boolean\",\n \"booleanish\",\n \"overloadedBoolean\",\n \"number\",\n \"commaSeparated\",\n \"spaceSeparated\",\n \"commaOrSpaceSeparated\"\n ], W7 = fd.length;\n function Fs(e, t, r, n) {\n var a = -1, i;\n for (pd(this, \"space\", n), dd.call(this, e, t); ++a < W7; )\n i = fd[a], pd(this, i, (r & cd[i]) === cd[i]);\n }\n o(Fs, \"DefinedInfo\");\n function pd(e, t, r) {\n r && (e[t] = r);\n }\n o(pd, \"mark\");\n});\n\n// ../node_modules/hastscript/node_modules/property-information/lib/util/create.js\nvar vn = M((EH, gd) => {\n \"use strict\";\n var md = hi(), q7 = Ss(), U7 = ks();\n gd.exports = G7;\n function G7(e) {\n var t = e.space, r = e.mustUseProperty || [], n = e.attributes || {}, a = e.properties, i = e.transform, l = {}, u = {}, c, p;\n for (c in a)\n p = new U7(\n c,\n i(n, c),\n a[c],\n t\n ), r.indexOf(c) !== -1 && (p.mustUseProperty = !0), l[c] = p, u[md(c)] = c, u[md(p.attribute)] = c;\n return new q7(l, u, t);\n }\n o(G7, \"create\");\n});\n\n// ../node_modules/hastscript/node_modules/property-information/lib/xlink.js\nvar wd = M((SH, vd) => {\n \"use strict\";\n var Y7 = vn();\n vd.exports = Y7({\n space: \"xlink\",\n transform: X7,\n properties: {\n xLinkActuate: null,\n xLinkArcRole: null,\n xLinkHref: null,\n xLinkRole: null,\n xLinkShow: null,\n xLinkTitle: null,\n xLinkType: null\n }\n });\n function X7(e, t) {\n return \"xlink:\" + t.slice(5).toLowerCase();\n }\n o(X7, \"xlinkTransform\");\n});\n\n// ../node_modules/hastscript/node_modules/property-information/lib/xml.js\nvar yd = M((FH, bd) => {\n \"use strict\";\n var K7 = vn();\n bd.exports = K7({\n space: \"xml\",\n transform: Z7,\n properties: {\n xmlLang: null,\n xmlBase: null,\n xmlSpace: null\n }\n });\n function Z7(e, t) {\n return \"xml:\" + t.slice(3).toLowerCase();\n }\n o(Z7, \"xmlTransform\");\n});\n\n// ../node_modules/hastscript/node_modules/property-information/lib/util/case-sensitive-transform.js\nvar xd = M((LH, Dd) => {\n \"use strict\";\n Dd.exports = J7;\n function J7(e, t) {\n return t in e ? e[t] : t;\n }\n o(J7, \"caseSensitiveTransform\");\n});\n\n// ../node_modules/hastscript/node_modules/property-information/lib/util/case-insensitive-transform.js\nvar Ls = M((IH, Cd) => {\n \"use strict\";\n var Q7 = xd();\n Cd.exports = ew;\n function ew(e, t) {\n return Q7(e, t.toLowerCase());\n }\n o(ew, \"caseInsensitiveTransform\");\n});\n\n// ../node_modules/hastscript/node_modules/property-information/lib/xmlns.js\nvar Rd = M((MH, Ed) => {\n \"use strict\";\n var tw = vn(), rw = Ls();\n Ed.exports = tw({\n space: \"xmlns\",\n attributes: {\n xmlnsxlink: \"xmlns:xlink\"\n },\n transform: rw,\n properties: {\n xmlns: null,\n xmlnsXLink: null\n }\n });\n});\n\n// ../node_modules/hastscript/node_modules/property-information/lib/aria.js\nvar Ad = M((_H, Sd) => {\n \"use strict\";\n var Ts = mi(), nw = vn(), Ve = Ts.booleanish, tt = Ts.number, kr = Ts.spaceSeparated;\n Sd.exports = nw({\n transform: aw,\n properties: {\n ariaActiveDescendant: null,\n ariaAtomic: Ve,\n ariaAutoComplete: null,\n ariaBusy: Ve,\n ariaChecked: Ve,\n ariaColCount: tt,\n ariaColIndex: tt,\n ariaColSpan: tt,\n ariaControls: kr,\n ariaCurrent: null,\n ariaDescribedBy: kr,\n ariaDetails: null,\n ariaDisabled: Ve,\n ariaDropEffect: kr,\n ariaErrorMessage: null,\n ariaExpanded: Ve,\n ariaFlowTo: kr,\n ariaGrabbed: Ve,\n ariaHasPopup: null,\n ariaHidden: Ve,\n ariaInvalid: null,\n ariaKeyShortcuts: null,\n ariaLabel: null,\n ariaLabelledBy: kr,\n ariaLevel: tt,\n ariaLive: null,\n ariaModal: Ve,\n ariaMultiLine: Ve,\n ariaMultiSelectable: Ve,\n ariaOrientation: null,\n ariaOwns: kr,\n ariaPlaceholder: null,\n ariaPosInSet: tt,\n ariaPressed: Ve,\n ariaReadOnly: Ve,\n ariaRelevant: null,\n ariaRequired: Ve,\n ariaRoleDescription: kr,\n ariaRowCount: tt,\n ariaRowIndex: tt,\n ariaRowSpan: tt,\n ariaSelected: Ve,\n ariaSetSize: tt,\n ariaSort: null,\n ariaValueMax: tt,\n ariaValueMin: tt,\n ariaValueNow: tt,\n ariaValueText: null,\n role: null\n }\n });\n function aw(e, t) {\n return t === \"role\" ? t : \"aria-\" + t.slice(4).toLowerCase();\n }\n o(aw, \"ariaTransform\");\n});\n\n// ../node_modules/hastscript/node_modules/property-information/lib/html.js\nvar kd = M((HH, Fd) => {\n \"use strict\";\n var wn = mi(), ow = vn(), iw = Ls(), O = wn.boolean, lw = wn.overloadedBoolean, po = wn.booleanish, K = wn.number, Me = wn.spaceSeparated,\n gi = wn.commaSeparated;\n Fd.exports = ow({\n space: \"html\",\n attributes: {\n acceptcharset: \"accept-charset\",\n classname: \"class\",\n htmlfor: \"for\",\n httpequiv: \"http-equiv\"\n },\n transform: iw,\n mustUseProperty: [\"checked\", \"multiple\", \"muted\", \"selected\"],\n properties: {\n // Standard Properties.\n abbr: null,\n accept: gi,\n acceptCharset: Me,\n accessKey: Me,\n action: null,\n allow: null,\n allowFullScreen: O,\n allowPaymentRequest: O,\n allowUserMedia: O,\n alt: null,\n as: null,\n async: O,\n autoCapitalize: null,\n autoComplete: Me,\n autoFocus: O,\n autoPlay: O,\n capture: O,\n charSet: null,\n checked: O,\n cite: null,\n className: Me,\n cols: K,\n colSpan: null,\n content: null,\n contentEditable: po,\n controls: O,\n controlsList: Me,\n coords: K | gi,\n crossOrigin: null,\n data: null,\n dateTime: null,\n decoding: null,\n default: O,\n defer: O,\n dir: null,\n dirName: null,\n disabled: O,\n download: lw,\n draggable: po,\n encType: null,\n enterKeyHint: null,\n form: null,\n formAction: null,\n formEncType: null,\n formMethod: null,\n formNoValidate: O,\n formTarget: null,\n headers: Me,\n height: K,\n hidden: O,\n high: K,\n href: null,\n hrefLang: null,\n htmlFor: Me,\n httpEquiv: Me,\n id: null,\n imageSizes: null,\n imageSrcSet: gi,\n inputMode: null,\n integrity: null,\n is: null,\n isMap: O,\n itemId: null,\n itemProp: Me,\n itemRef: Me,\n itemScope: O,\n itemType: Me,\n kind: null,\n label: null,\n lang: null,\n language: null,\n list: null,\n loading: null,\n loop: O,\n low: K,\n manifest: null,\n max: null,\n maxLength: K,\n media: null,\n method: null,\n min: null,\n minLength: K,\n multiple: O,\n muted: O,\n name: null,\n nonce: null,\n noModule: O,\n noValidate: O,\n onAbort: null,\n onAfterPrint: null,\n onAuxClick: null,\n onBeforePrint: null,\n onBeforeUnload: null,\n onBlur: null,\n onCancel: null,\n onCanPlay: null,\n onCanPlayThrough: null,\n onChange: null,\n onClick: null,\n onClose: null,\n onContextMenu: null,\n onCopy: null,\n onCueChange: null,\n onCut: null,\n onDblClick: null,\n onDrag: null,\n onDragEnd: null,\n onDragEnter: null,\n onDragExit: null,\n onDragLeave: null,\n onDragOver: null,\n onDragStart: null,\n onDrop: null,\n onDurationChange: null,\n onEmptied: null,\n onEnded: null,\n onError: null,\n onFocus: null,\n onFormData: null,\n onHashChange: null,\n onInput: null,\n onInvalid: null,\n onKeyDown: null,\n onKeyPress: null,\n onKeyUp: null,\n onLanguageChange: null,\n onLoad: null,\n onLoadedData: null,\n onLoadedMetadata: null,\n onLoadEnd: null,\n onLoadStart: null,\n onMessage: null,\n onMessageError: null,\n onMouseDown: null,\n onMouseEnter: null,\n onMouseLeave: null,\n onMouseMove: null,\n onMouseOut: null,\n onMouseOver: null,\n onMouseUp: null,\n onOffline: null,\n onOnline: null,\n onPageHide: null,\n onPageShow: null,\n onPaste: null,\n onPause: null,\n onPlay: null,\n onPlaying: null,\n onPopState: null,\n onProgress: null,\n onRateChange: null,\n onRejectionHandled: null,\n onReset: null,\n onResize: null,\n onScroll: null,\n onSecurityPolicyViolation: null,\n onSeeked: null,\n onSeeking: null,\n onSelect: null,\n onSlotChange: null,\n onStalled: null,\n onStorage: null,\n onSubmit: null,\n onSuspend: null,\n onTimeUpdate: null,\n onToggle: null,\n onUnhandledRejection: null,\n onUnload: null,\n onVolumeChange: null,\n onWaiting: null,\n onWheel: null,\n open: O,\n optimum: K,\n pattern: null,\n ping: Me,\n placeholder: null,\n playsInline: O,\n poster: null,\n preload: null,\n readOnly: O,\n referrerPolicy: null,\n rel: Me,\n required: O,\n reversed: O,\n rows: K,\n rowSpan: K,\n sandbox: Me,\n scope: null,\n scoped: O,\n seamless: O,\n selected: O,\n shape: null,\n size: K,\n sizes: null,\n slot: null,\n span: K,\n spellCheck: po,\n src: null,\n srcDoc: null,\n srcLang: null,\n srcSet: gi,\n start: K,\n step: null,\n style: null,\n tabIndex: K,\n target: null,\n title: null,\n translate: null,\n type: null,\n typeMustMatch: O,\n useMap: null,\n value: po,\n width: K,\n wrap: null,\n // Legacy.\n // See: https://html.spec.whatwg.org/#other-elements,-attributes-and-apis\n align: null,\n // Several. Use CSS `text-align` instead,\n aLink: null,\n // `<body>`. Use CSS `a:active {color}` instead\n archive: Me,\n // `<object>`. List of URIs to archives\n axis: null,\n // `<td>` and `<th>`. Use `scope` on `<th>`\n background: null,\n // `<body>`. Use CSS `background-image` instead\n bgColor: null,\n // `<body>` and table elements. Use CSS `background-color` instead\n border: K,\n // `<table>`. Use CSS `border-width` instead,\n borderColor: null,\n // `<table>`. Use CSS `border-color` instead,\n bottomMargin: K,\n // `<body>`\n cellPadding: null,\n // `<table>`\n cellSpacing: null,\n // `<table>`\n char: null,\n // Several table elements. When `align=char`, sets the character to align on\n charOff: null,\n // Several table elements. When `char`, offsets the alignment\n classId: null,\n // `<object>`\n clear: null,\n // `<br>`. Use CSS `clear` instead\n code: null,\n // `<object>`\n codeBase: null,\n // `<object>`\n codeType: null,\n // `<object>`\n color: null,\n // `<font>` and `<hr>`. Use CSS instead\n compact: O,\n // Lists. Use CSS to reduce space between items instead\n declare: O,\n // `<object>`\n event: null,\n // `<script>`\n face: null,\n // `<font>`. Use CSS instead\n frame: null,\n // `<table>`\n frameBorder: null,\n // `<iframe>`. Use CSS `border` instead\n hSpace: K,\n // `<img>` and `<object>`\n leftMargin: K,\n // `<body>`\n link: null,\n // `<body>`. Use CSS `a:link {color: *}` instead\n longDesc: null,\n // `<frame>`, `<iframe>`, and `<img>`. Use an `<a>`\n lowSrc: null,\n // `<img>`. Use a `<picture>`\n marginHeight: K,\n // `<body>`\n marginWidth: K,\n // `<body>`\n noResize: O,\n // `<frame>`\n noHref: O,\n // `<area>`. Use no href instead of an explicit `nohref`\n noShade: O,\n // `<hr>`. Use background-color and height instead of borders\n noWrap: O,\n // `<td>` and `<th>`\n object: null,\n // `<applet>`\n profile: null,\n // `<head>`\n prompt: null,\n // `<isindex>`\n rev: null,\n // `<link>`\n rightMargin: K,\n // `<body>`\n rules: null,\n // `<table>`\n scheme: null,\n // `<meta>`\n scrolling: po,\n // `<frame>`. Use overflow in the child context\n standby: null,\n // `<object>`\n summary: null,\n // `<table>`\n text: null,\n // `<body>`. Use CSS `color` instead\n topMargin: K,\n // `<body>`\n valueType: null,\n // `<param>`\n version: null,\n // `<html>`. Use a doctype.\n vAlign: null,\n // Several. Use CSS `vertical-align` instead\n vLink: null,\n // `<body>`. Use CSS `a:visited {color}` instead\n vSpace: K,\n // `<img>` and `<object>`\n // Non-standard Properties.\n allowTransparency: null,\n autoCorrect: null,\n autoSave: null,\n disablePictureInPicture: O,\n disableRemotePlayback: O,\n prefix: null,\n property: null,\n results: K,\n security: null,\n unselectable: null\n }\n });\n});\n\n// ../node_modules/hastscript/node_modules/property-information/html.js\nvar Td = M((zH, Ld) => {\n \"use strict\";\n var sw = id(), uw = wd(), cw = yd(), pw = Rd(), dw = Ad(), fw = kd();\n Ld.exports = sw([cw, uw, pw, dw, fw]);\n});\n\n// ../node_modules/hastscript/node_modules/property-information/find.js\nvar Md = M((OH, Bd) => {\n \"use strict\";\n var hw = hi(), mw = ks(), gw = As(), Is = \"data\";\n Bd.exports = bw;\n var vw = /^data[-\\w.:]+$/i, Id = /-[a-z]/g, ww = /[A-Z]/g;\n function bw(e, t) {\n var r = hw(t), n = t, a = gw;\n return r in e.normal ? e.property[e.normal[r]] : (r.length > 4 && r.slice(0, 4) === Is && vw.test(t) && (t.charAt(4) === \"-\" ? n = yw(t) :\n t = Dw(t), a = mw), new a(n, t));\n }\n o(bw, \"find\");\n function yw(e) {\n var t = e.slice(5).replace(Id, Cw);\n return Is + t.charAt(0).toUpperCase() + t.slice(1);\n }\n o(yw, \"datasetToProperty\");\n function Dw(e) {\n var t = e.slice(4);\n return Id.test(t) ? e : (t = t.replace(ww, xw), t.charAt(0) !== \"-\" && (t = \"-\" + t), Is + t);\n }\n o(Dw, \"datasetToAttribute\");\n function xw(e) {\n return \"-\" + e.toLowerCase();\n }\n o(xw, \"kebab\");\n function Cw(e) {\n return e.charAt(1).toUpperCase();\n }\n o(Cw, \"camelcase\");\n});\n\n// ../node_modules/hast-util-parse-selector/index.js\nvar Hd = M(($H, Pd) => {\n \"use strict\";\n Pd.exports = Ew;\n var _d = /[#.]/g;\n function Ew(e, t) {\n for (var r = e || \"\", n = t || \"div\", a = {}, i = 0, l, u, c; i < r.length; )\n _d.lastIndex = i, c = _d.exec(r), l = r.slice(i, c ? c.index : r.length), l && (u ? u === \"#\" ? a.id = l : a.className ? a.className.push(\n l) : a.className = [l] : n = l, i += l.length), c && (u = c[0], i++);\n return { type: \"element\", tagName: n, properties: a, children: [] };\n }\n o(Ew, \"parse\");\n});\n\n// ../node_modules/hastscript/node_modules/space-separated-tokens/index.js\nvar Od = M((Bs) => {\n \"use strict\";\n Bs.parse = Aw;\n Bs.stringify = Fw;\n var zd = \"\", Rw = \" \", Sw = /[ \\t\\n\\r\\f]+/g;\n function Aw(e) {\n var t = String(e || zd).trim();\n return t === zd ? [] : t.split(Sw);\n }\n o(Aw, \"parse\");\n function Fw(e) {\n return e.join(Rw).trim();\n }\n o(Fw, \"stringify\");\n});\n\n// ../node_modules/hastscript/node_modules/comma-separated-tokens/index.js\nvar $d = M((_s) => {\n \"use strict\";\n _s.parse = kw;\n _s.stringify = Lw;\n var Ms = \",\", Nd = \" \", fo = \"\";\n function kw(e) {\n for (var t = [], r = String(e || fo), n = r.indexOf(Ms), a = 0, i = !1, l; !i; )\n n === -1 && (n = r.length, i = !0), l = r.slice(a, n).trim(), (l || !i) && t.push(l), a = n + 1, n = r.indexOf(Ms, a);\n return t;\n }\n o(kw, \"parse\");\n function Lw(e, t) {\n var r = t || {}, n = r.padLeft === !1 ? fo : Nd, a = r.padRight ? Nd : fo;\n return e[e.length - 1] === fo && (e = e.concat(fo)), e.join(a + Ms + n).trim();\n }\n o(Lw, \"stringify\");\n});\n\n// ../node_modules/hastscript/factory.js\nvar Yd = M((GH, Gd) => {\n \"use strict\";\n var Tw = Md(), Vd = hi(), Iw = Hd(), jd = Od().parse, Wd = $d().parse;\n Gd.exports = Mw;\n var Bw = {}.hasOwnProperty;\n function Mw(e, t, r) {\n var n = r ? Ow(r) : null;\n return a;\n function a(l, u) {\n var c = Iw(l, t), p = Array.prototype.slice.call(arguments, 2), d = c.tagName.toLowerCase(), h;\n if (c.tagName = n && Bw.call(n, d) ? n[d] : d, u && _w(u, c) && (p.unshift(u), u = null), u)\n for (h in u)\n i(c.properties, h, u[h]);\n return Ud(c.children, p), c.tagName === \"template\" && (c.content = { type: \"root\", children: c.children }, c.children = []), c;\n }\n function i(l, u, c) {\n var p, d, h;\n c == null || c !== c || (p = Tw(e, u), d = p.property, h = c, typeof h == \"string\" && (p.spaceSeparated ? h = jd(h) : p.commaSeparated ?\n h = Wd(h) : p.commaOrSpaceSeparated && (h = jd(Wd(h).join(\" \")))), d === \"style\" && typeof c != \"string\" && (h = zw(h)), d === \"classN\\\name\" && l.className && (h = l.className.concat(h)), l[d] = Hw(p, d, h));\n }\n }\n o(Mw, \"factory\");\n function _w(e, t) {\n return typeof e == \"string\" || \"length\" in e || Pw(t.tagName, e);\n }\n o(_w, \"isChildren\");\n function Pw(e, t) {\n var r = t.type;\n return e === \"input\" || !r || typeof r != \"string\" ? !1 : typeof t.children == \"object\" && \"length\" in t.children ? !0 : (r = r.toLowerCase(),\n e === \"button\" ? r !== \"menu\" && r !== \"submit\" && r !== \"reset\" && r !== \"button\" : \"value\" in t);\n }\n o(Pw, \"isNode\");\n function Ud(e, t) {\n var r, n;\n if (typeof t == \"string\" || typeof t == \"number\") {\n e.push({ type: \"text\", value: String(t) });\n return;\n }\n if (typeof t == \"object\" && \"length\" in t) {\n for (r = -1, n = t.length; ++r < n; )\n Ud(e, t[r]);\n return;\n }\n if (typeof t != \"object\" || !(\"type\" in t))\n throw new Error(\"Expected node, nodes, or string, got `\" + t + \"`\");\n e.push(t);\n }\n o(Ud, \"addChild\");\n function Hw(e, t, r) {\n var n, a, i;\n if (typeof r != \"object\" || !(\"length\" in r))\n return qd(e, t, r);\n for (a = r.length, n = -1, i = []; ++n < a; )\n i[n] = qd(e, t, r[n]);\n return i;\n }\n o(Hw, \"parsePrimitives\");\n function qd(e, t, r) {\n var n = r;\n return e.number || e.positiveNumber ? !isNaN(n) && n !== \"\" && (n = Number(n)) : (e.boolean || e.overloadedBoolean) && typeof n == \"stri\\\nng\" && (n === \"\" || Vd(r) === Vd(t)) && (n = !0), n;\n }\n o(qd, \"parsePrimitive\");\n function zw(e) {\n var t = [], r;\n for (r in e)\n t.push([r, e[r]].join(\": \"));\n return t.join(\"; \");\n }\n o(zw, \"style\");\n function Ow(e) {\n for (var t = e.length, r = -1, n = {}, a; ++r < t; )\n a = e[r], n[a.toLowerCase()] = a;\n return n;\n }\n o(Ow, \"createAdjustMap\");\n});\n\n// ../node_modules/hastscript/html.js\nvar Zd = M((XH, Kd) => {\n \"use strict\";\n var Nw = Td(), $w = Yd(), Xd = $w(Nw, \"div\");\n Xd.displayName = \"html\";\n Kd.exports = Xd;\n});\n\n// ../node_modules/hastscript/index.js\nvar Qd = M((KH, Jd) => {\n \"use strict\";\n Jd.exports = Zd();\n});\n\n// ../node_modules/refractor/node_modules/character-entities-legacy/index.json\nvar ef = M((ZH, Vw) => {\n Vw.exports = {\n AElig: \"\\xC6\",\n AMP: \"&\",\n Aacute: \"\\xC1\",\n Acirc: \"\\xC2\",\n Agrave: \"\\xC0\",\n Aring: \"\\xC5\",\n Atilde: \"\\xC3\",\n Auml: \"\\xC4\",\n COPY: \"\\xA9\",\n Ccedil: \"\\xC7\",\n ETH: \"\\xD0\",\n Eacute: \"\\xC9\",\n Ecirc: \"\\xCA\",\n Egrave: \"\\xC8\",\n Euml: \"\\xCB\",\n GT: \">\",\n Iacute: \"\\xCD\",\n Icirc: \"\\xCE\",\n Igrave: \"\\xCC\",\n Iuml: \"\\xCF\",\n LT: \"<\",\n Ntilde: \"\\xD1\",\n Oacute: \"\\xD3\",\n Ocirc: \"\\xD4\",\n Ograve: \"\\xD2\",\n Oslash: \"\\xD8\",\n Otilde: \"\\xD5\",\n Ouml: \"\\xD6\",\n QUOT: '\"',\n REG: \"\\xAE\",\n THORN: \"\\xDE\",\n Uacute: \"\\xDA\",\n Ucirc: \"\\xDB\",\n Ugrave: \"\\xD9\",\n Uuml: \"\\xDC\",\n Yacute: \"\\xDD\",\n aacute: \"\\xE1\",\n acirc: \"\\xE2\",\n acute: \"\\xB4\",\n aelig: \"\\xE6\",\n agrave: \"\\xE0\",\n amp: \"&\",\n aring: \"\\xE5\",\n atilde: \"\\xE3\",\n auml: \"\\xE4\",\n brvbar: \"\\xA6\",\n ccedil: \"\\xE7\",\n cedil: \"\\xB8\",\n cent: \"\\xA2\",\n copy: \"\\xA9\",\n curren: \"\\xA4\",\n deg: \"\\xB0\",\n divide: \"\\xF7\",\n eacute: \"\\xE9\",\n ecirc: \"\\xEA\",\n egrave: \"\\xE8\",\n eth: \"\\xF0\",\n euml: \"\\xEB\",\n frac12: \"\\xBD\",\n frac14: \"\\xBC\",\n frac34: \"\\xBE\",\n gt: \">\",\n iacute: \"\\xED\",\n icirc: \"\\xEE\",\n iexcl: \"\\xA1\",\n igrave: \"\\xEC\",\n iquest: \"\\xBF\",\n iuml: \"\\xEF\",\n laquo: \"\\xAB\",\n lt: \"<\",\n macr: \"\\xAF\",\n micro: \"\\xB5\",\n middot: \"\\xB7\",\n nbsp: \"\\xA0\",\n not: \"\\xAC\",\n ntilde: \"\\xF1\",\n oacute: \"\\xF3\",\n ocirc: \"\\xF4\",\n ograve: \"\\xF2\",\n ordf: \"\\xAA\",\n ordm: \"\\xBA\",\n oslash: \"\\xF8\",\n otilde: \"\\xF5\",\n ouml: \"\\xF6\",\n para: \"\\xB6\",\n plusmn: \"\\xB1\",\n pound: \"\\xA3\",\n quot: '\"',\n raquo: \"\\xBB\",\n reg: \"\\xAE\",\n sect: \"\\xA7\",\n shy: \"\\xAD\",\n sup1: \"\\xB9\",\n sup2: \"\\xB2\",\n sup3: \"\\xB3\",\n szlig: \"\\xDF\",\n thorn: \"\\xFE\",\n times: \"\\xD7\",\n uacute: \"\\xFA\",\n ucirc: \"\\xFB\",\n ugrave: \"\\xF9\",\n uml: \"\\xA8\",\n uuml: \"\\xFC\",\n yacute: \"\\xFD\",\n yen: \"\\xA5\",\n yuml: \"\\xFF\"\n };\n});\n\n// ../node_modules/refractor/node_modules/character-reference-invalid/index.json\nvar tf = M((JH, jw) => {\n jw.exports = {\n \"0\": \"\\uFFFD\",\n \"128\": \"\\u20AC\",\n \"130\": \"\\u201A\",\n \"131\": \"\\u0192\",\n \"132\": \"\\u201E\",\n \"133\": \"\\u2026\",\n \"134\": \"\\u2020\",\n \"135\": \"\\u2021\",\n \"136\": \"\\u02C6\",\n \"137\": \"\\u2030\",\n \"138\": \"\\u0160\",\n \"139\": \"\\u2039\",\n \"140\": \"\\u0152\",\n \"142\": \"\\u017D\",\n \"145\": \"\\u2018\",\n \"146\": \"\\u2019\",\n \"147\": \"\\u201C\",\n \"148\": \"\\u201D\",\n \"149\": \"\\u2022\",\n \"150\": \"\\u2013\",\n \"151\": \"\\u2014\",\n \"152\": \"\\u02DC\",\n \"153\": \"\\u2122\",\n \"154\": \"\\u0161\",\n \"155\": \"\\u203A\",\n \"156\": \"\\u0153\",\n \"158\": \"\\u017E\",\n \"159\": \"\\u0178\"\n };\n});\n\n// ../node_modules/refractor/node_modules/is-decimal/index.js\nvar Ps = M((QH, rf) => {\n \"use strict\";\n rf.exports = Ww;\n function Ww(e) {\n var t = typeof e == \"string\" ? e.charCodeAt(0) : e;\n return t >= 48 && t <= 57;\n }\n o(Ww, \"decimal\");\n});\n\n// ../node_modules/refractor/node_modules/is-hexadecimal/index.js\nvar af = M((tz, nf) => {\n \"use strict\";\n nf.exports = qw;\n function qw(e) {\n var t = typeof e == \"string\" ? e.charCodeAt(0) : e;\n return t >= 97 && t <= 102 || t >= 65 && t <= 70 || t >= 48 && t <= 57;\n }\n o(qw, \"hexadecimal\");\n});\n\n// ../node_modules/refractor/node_modules/is-alphabetical/index.js\nvar lf = M((nz, of) => {\n \"use strict\";\n of.exports = Uw;\n function Uw(e) {\n var t = typeof e == \"string\" ? e.charCodeAt(0) : e;\n return t >= 97 && t <= 122 || t >= 65 && t <= 90;\n }\n o(Uw, \"alphabetical\");\n});\n\n// ../node_modules/refractor/node_modules/is-alphanumerical/index.js\nvar uf = M((oz, sf) => {\n \"use strict\";\n var Gw = lf(), Yw = Ps();\n sf.exports = Xw;\n function Xw(e) {\n return Gw(e) || Yw(e);\n }\n o(Xw, \"alphanumerical\");\n});\n\n// ../node_modules/refractor/node_modules/parse-entities/decode-entity.browser.js\nvar pf = M((lz, cf) => {\n \"use strict\";\n var vi, Kw = 59;\n cf.exports = Zw;\n function Zw(e) {\n var t = \"&\" + e + \";\", r;\n return vi = vi || document.createElement(\"i\"), vi.innerHTML = t, r = vi.textContent, r.charCodeAt(r.length - 1) === Kw && e !== \"semi\" ||\n r === t ? !1 : r;\n }\n o(Zw, \"decodeEntity\");\n});\n\n// ../node_modules/refractor/node_modules/parse-entities/index.js\nvar Rf = M((uz, Ef) => {\n \"use strict\";\n var df = ef(), ff = tf(), Jw = Ps(), Qw = af(), vf = uf(), e6 = pf();\n Ef.exports = f6;\n var t6 = {}.hasOwnProperty, bn = String.fromCharCode, r6 = Function.prototype, hf = {\n warning: null,\n reference: null,\n text: null,\n warningContext: null,\n referenceContext: null,\n textContext: null,\n position: {},\n additional: null,\n attribute: !1,\n nonTerminated: !0\n }, n6 = 9, mf = 10, a6 = 12, o6 = 32, gf = 38, i6 = 59, l6 = 60, s6 = 61, u6 = 35, c6 = 88, p6 = 120, d6 = 65533, yn = \"named\", zs = \"hexa\\\ndecimal\", Os = \"decimal\", Ns = {};\n Ns[zs] = 16;\n Ns[Os] = 10;\n var wi = {};\n wi[yn] = vf;\n wi[Os] = Jw;\n wi[zs] = Qw;\n var wf = 1, bf = 2, yf = 3, Df = 4, xf = 5, Hs = 6, Cf = 7, nr = {};\n nr[wf] = \"Named character references must be terminated by a semicolon\";\n nr[bf] = \"Numeric character references must be terminated by a semicolon\";\n nr[yf] = \"Named character references cannot be empty\";\n nr[Df] = \"Numeric character references cannot be empty\";\n nr[xf] = \"Named character references must be known\";\n nr[Hs] = \"Numeric character references cannot be disallowed\";\n nr[Cf] = \"Numeric character references cannot be outside the permissible Unicode range\";\n function f6(e, t) {\n var r = {}, n, a;\n t || (t = {});\n for (a in hf)\n n = t[a], r[a] = n ?? hf[a];\n return (r.position.indent || r.position.start) && (r.indent = r.position.indent || [], r.position = r.position.start), h6(e, r);\n }\n o(f6, \"parseEntities\");\n function h6(e, t) {\n var r = t.additional, n = t.nonTerminated, a = t.text, i = t.reference, l = t.warning, u = t.textContext, c = t.referenceContext, p = t.\n warningContext, d = t.position, h = t.indent || [], f = e.length, g = 0, w = -1, m = d.column || 1, v = d.line || 1, y = \"\", b = [], D, x,\n C, E, R, F, A, k, B, j, V, ee, I, T, P, q, $, U, H;\n for (typeof r == \"string\" && (r = r.charCodeAt(0)), q = X(), k = l ? ze : r6, g--, f++; ++g < f; )\n if (R === mf && (m = h[w] || 1), R = e.charCodeAt(g), R === gf) {\n if (A = e.charCodeAt(g + 1), A === n6 || A === mf || A === a6 || A === o6 || A === gf || A === l6 || A !== A || r && A === r) {\n y += bn(R), m++;\n continue;\n }\n for (I = g + 1, ee = I, H = I, A === u6 ? (H = ++ee, A = e.charCodeAt(H), A === c6 || A === p6 ? (T = zs, H = ++ee) : T = Os) : T = yn,\n D = \"\", V = \"\", E = \"\", P = wi[T], H--; ++H < f && (A = e.charCodeAt(H), !!P(A)); )\n E += bn(A), T === yn && t6.call(df, E) && (D = E, V = df[E]);\n C = e.charCodeAt(H) === i6, C && (H++, x = T === yn ? e6(E) : !1, x && (D = E, V = x)), U = 1 + H - I, !C && !n || (E ? T === yn ? (C &&\n !V ? k(xf, 1) : (D !== E && (H = ee + D.length, U = 1 + H - ee, C = !1), C || (B = D ? wf : yf, t.attribute ? (A = e.charCodeAt(H), A ===\n s6 ? (k(B, U), V = null) : vf(A) ? V = null : k(B, U)) : k(B, U))), F = V) : (C || k(bf, U), F = parseInt(E, Ns[T]), m6(F) ? (k(Cf, U),\n F = bn(d6)) : F in ff ? (k(Hs, U), F = ff[F]) : (j = \"\", g6(F) && k(Hs, U), F > 65535 && (F -= 65536, j += bn(F >>> 10 | 55296), F =\n 56320 | F & 1023), F = j + bn(F))) : T !== yn && k(Df, U)), F ? (Ee(), q = X(), g = H - 1, m += H - I + 1, b.push(F), $ = X(), $.offset++,\n i && i.call(\n c,\n F,\n { start: q, end: $ },\n e.slice(I - 1, H)\n ), q = $) : (E = e.slice(I - 1, H), y += E, m += E.length, g = H - 1);\n } else\n R === 10 && (v++, w++, m = 0), R === R ? (y += bn(R), m++) : Ee();\n return b.join(\"\");\n function X() {\n return {\n line: v,\n column: m,\n offset: g + (d.offset || 0)\n };\n }\n function ze(ve, Le) {\n var Oe = X();\n Oe.column += Le, Oe.offset += Le, l.call(p, nr[ve], Oe, ve);\n }\n function Ee() {\n y && (b.push(y), a && a.call(u, y, { start: q, end: X() }), y = \"\");\n }\n }\n o(h6, \"parse\");\n function m6(e) {\n return e >= 55296 && e <= 57343 || e > 1114111;\n }\n o(m6, \"prohibited\");\n function g6(e) {\n return e >= 1 && e <= 8 || e === 11 || e >= 13 && e <= 31 || e >= 127 && e <= 159 || e >= 64976 && e <= 65007 || (e & 65535) === 65535 ||\n (e & 65535) === 65534;\n }\n o(g6, \"disallowed\");\n});\n\n// ../node_modules/refractor/node_modules/prismjs/components/prism-core.js\nvar Af = M((pz, bi) => {\n var v6 = typeof window < \"u\" ? window : typeof WorkerGlobalScope < \"u\" && self instanceof WorkerGlobalScope ? self : {};\n var Sf = function(e) {\n var t = /(?:^|\\s)lang(?:uage)?-([\\w-]+)(?=\\s|$)/i, r = 0, n = {}, a = {\n /**\n * By default, Prism will attempt to highlight all code elements (by calling {@link Prism.highlightAll}) on the\n * current page after the page finished loading. This might be a problem if e.g. you wanted to asynchronously load\n * additional languages or plugins yourself.\n *\n * By setting this value to `true`, Prism will not automatically highlight all code elements on the page.\n *\n * You obviously have to change this value before the automatic highlighting started. To do this, you can add an\n * empty Prism object into the global scope before loading the Prism script like this:\n *\n * ```js\n * window.Prism = window.Prism || {};\n * Prism.manual = true;\n * // add a new <script> to load Prism's script\n * ```\n *\n * @default false\n * @type {boolean}\n * @memberof Prism\n * @public\n */\n manual: e.Prism && e.Prism.manual,\n /**\n * By default, if Prism is in a web worker, it assumes that it is in a worker it created itself, so it uses\n * `addEventListener` to communicate with its parent instance. However, if you're using Prism manually in your\n * own worker, you don't want it to do this.\n *\n * By setting this value to `true`, Prism will not add its own listeners to the worker.\n *\n * You obviously have to change this value before Prism executes. To do this, you can add an\n * empty Prism object into the global scope before loading the Prism script like this:\n *\n * ```js\n * window.Prism = window.Prism || {};\n * Prism.disableWorkerMessageHandler = true;\n * // Load Prism's script\n * ```\n *\n * @default false\n * @type {boolean}\n * @memberof Prism\n * @public\n */\n disableWorkerMessageHandler: e.Prism && e.Prism.disableWorkerMessageHandler,\n /**\n * A namespace for utility methods.\n *\n * All function in this namespace that are not explicitly marked as _public_ are for __internal use only__ and may\n * change or disappear at any time.\n *\n * @namespace\n * @memberof Prism\n */\n util: {\n encode: /* @__PURE__ */ o(function m(v) {\n return v instanceof i ? new i(v.type, m(v.content), v.alias) : Array.isArray(v) ? v.map(m) : v.replace(/&/g, \"&\").replace(/</g,\n \"<\").replace(/\\u00a0/g, \" \");\n }, \"encode\"),\n /**\n * Returns the name of the type of the given value.\n *\n * @param {any} o\n * @returns {string}\n * @example\n * type(null) === 'Null'\n * type(undefined) === 'Undefined'\n * type(123) === 'Number'\n * type('foo') === 'String'\n * type(true) === 'Boolean'\n * type([1, 2]) === 'Array'\n * type({}) === 'Object'\n * type(String) === 'Function'\n * type(/abc+/) === 'RegExp'\n */\n type: /* @__PURE__ */ o(function(m) {\n return Object.prototype.toString.call(m).slice(8, -1);\n }, \"type\"),\n /**\n * Returns a unique number for the given object. Later calls will still return the same number.\n *\n * @param {Object} obj\n * @returns {number}\n */\n objId: /* @__PURE__ */ o(function(m) {\n return m.__id || Object.defineProperty(m, \"__id\", { value: ++r }), m.__id;\n }, \"objId\"),\n /**\n * Creates a deep clone of the given object.\n *\n * The main intended use of this function is to clone language definitions.\n *\n * @param {T} o\n * @param {Record<number, any>} [visited]\n * @returns {T}\n * @template T\n */\n clone: /* @__PURE__ */ o(function m(v, y) {\n y = y || {};\n var b, D;\n switch (a.util.type(v)) {\n case \"Object\":\n if (D = a.util.objId(v), y[D])\n return y[D];\n b = /** @type {Record<string, any>} */\n {}, y[D] = b;\n for (var x in v)\n v.hasOwnProperty(x) && (b[x] = m(v[x], y));\n return (\n /** @type {any} */\n b\n );\n case \"Array\":\n return D = a.util.objId(v), y[D] ? y[D] : (b = [], y[D] = b, /** @type {Array} */\n /** @type {any} */\n v.forEach(function(C, E) {\n b[E] = m(C, y);\n }), /** @type {any} */\n b);\n default:\n return v;\n }\n }, \"deepClone\"),\n /**\n * Returns the Prism language of the given element set by a `language-xxxx` or `lang-xxxx` class.\n *\n * If no language is set for the element or the element is `null` or `undefined`, `none` will be returned.\n *\n * @param {Element} element\n * @returns {string}\n */\n getLanguage: /* @__PURE__ */ o(function(m) {\n for (; m; ) {\n var v = t.exec(m.className);\n if (v)\n return v[1].toLowerCase();\n m = m.parentElement;\n }\n return \"none\";\n }, \"getLanguage\"),\n /**\n * Sets the Prism `language-xxxx` class of the given element.\n *\n * @param {Element} element\n * @param {string} language\n * @returns {void}\n */\n setLanguage: /* @__PURE__ */ o(function(m, v) {\n m.className = m.className.replace(RegExp(t, \"gi\"), \"\"), m.classList.add(\"language-\" + v);\n }, \"setLanguage\"),\n /**\n * Returns the script element that is currently executing.\n *\n * This does __not__ work for line script element.\n *\n * @returns {HTMLScriptElement | null}\n */\n currentScript: /* @__PURE__ */ o(function() {\n if (typeof document > \"u\")\n return null;\n if (\"currentScript\" in document)\n return (\n /** @type {any} */\n document.currentScript\n );\n try {\n throw new Error();\n } catch (b) {\n var m = (/at [^(\\r\\n]*\\((.*):[^:]+:[^:]+\\)$/i.exec(b.stack) || [])[1];\n if (m) {\n var v = document.getElementsByTagName(\"script\");\n for (var y in v)\n if (v[y].src == m)\n return v[y];\n }\n return null;\n }\n }, \"currentScript\"),\n /**\n * Returns whether a given class is active for `element`.\n *\n * The class can be activated if `element` or one of its ancestors has the given class and it can be deactivated\n * if `element` or one of its ancestors has the negated version of the given class. The _negated version_ of the\n * given class is just the given class with a `no-` prefix.\n *\n * Whether the class is active is determined by the closest ancestor of `element` (where `element` itself is\n * closest ancestor) that has the given class or the negated version of it. If neither `element` nor any of its\n * ancestors have the given class or the negated version of it, then the default activation will be returned.\n *\n * In the paradoxical situation where the closest ancestor contains __both__ the given class and the negated\n * version of it, the class is considered active.\n *\n * @param {Element} element\n * @param {string} className\n * @param {boolean} [defaultActivation=false]\n * @returns {boolean}\n */\n isActive: /* @__PURE__ */ o(function(m, v, y) {\n for (var b = \"no-\" + v; m; ) {\n var D = m.classList;\n if (D.contains(v))\n return !0;\n if (D.contains(b))\n return !1;\n m = m.parentElement;\n }\n return !!y;\n }, \"isActive\")\n },\n /**\n * This namespace contains all currently loaded languages and the some helper functions to create and modify languages.\n *\n * @namespace\n * @memberof Prism\n * @public\n */\n languages: {\n /**\n * The grammar for plain, unformatted text.\n */\n plain: n,\n plaintext: n,\n text: n,\n txt: n,\n /**\n * Creates a deep copy of the language with the given id and appends the given tokens.\n *\n * If a token in `redef` also appears in the copied language, then the existing token in the copied language\n * will be overwritten at its original position.\n *\n * ## Best practices\n *\n * Since the position of overwriting tokens (token in `redef` that overwrite tokens in the copied language)\n * doesn't matter, they can technically be in any order. However, this can be confusing to others that trying to\n * understand the language definition because, normally, the order of tokens matters in Prism grammars.\n *\n * Therefore, it is encouraged to order overwriting tokens according to the positions of the overwritten tokens.\n * Furthermore, all non-overwriting tokens should be placed after the overwriting ones.\n *\n * @param {string} id The id of the language to extend. This has to be a key in `Prism.languages`.\n * @param {Grammar} redef The new tokens to append.\n * @returns {Grammar} The new language created.\n * @public\n * @example\n * Prism.languages['css-with-colors'] = Prism.languages.extend('css', {\n * // Prism.languages.css already has a 'comment' token, so this token will overwrite CSS' 'comment' token\n * // at its original position\n * 'comment': { ... },\n * // CSS doesn't have a 'color' token, so this token will be appended\n * 'color': /\\b(?:red|green|blue)\\b/\n * });\n */\n extend: /* @__PURE__ */ o(function(m, v) {\n var y = a.util.clone(a.languages[m]);\n for (var b in v)\n y[b] = v[b];\n return y;\n }, \"extend\"),\n /**\n * Inserts tokens _before_ another token in a language definition or any other grammar.\n *\n * ## Usage\n *\n * This helper method makes it easy to modify existing languages. For example, the CSS language definition\n * not only defines CSS highlighting for CSS documents, but also needs to define highlighting for CSS embedded\n * in HTML through `<style>` elements. To do this, it needs to modify `Prism.languages.markup` and add the\n * appropriate tokens. However, `Prism.languages.markup` is a regular JavaScript object literal, so if you do\n * this:\n *\n * ```js\n * Prism.languages.markup.style = {\n * // token\n * };\n * ```\n *\n * then the `style` token will be added (and processed) at the end. `insertBefore` allows you to insert tokens\n * before existing tokens. For the CSS example above, you would use it like this:\n *\n * ```js\n * Prism.languages.insertBefore('markup', 'cdata', {\n * 'style': {\n * // token\n * }\n * });\n * ```\n *\n * ## Special cases\n *\n * If the grammars of `inside` and `insert` have tokens with the same name, the tokens in `inside`'s grammar\n * will be ignored.\n *\n * This behavior can be used to insert tokens after `before`:\n *\n * ```js\n * Prism.languages.insertBefore('markup', 'comment', {\n * 'comment': Prism.languages.markup.comment,\n * // tokens after 'comment'\n * });\n * ```\n *\n * ## Limitations\n *\n * The main problem `insertBefore` has to solve is iteration order. Since ES2015, the iteration order for object\n * properties is guaranteed to be the insertion order (except for integer keys) but some browsers behave\n * differently when keys are deleted and re-inserted. So `insertBefore` can't be implemented by temporarily\n * deleting properties which is necessary to insert at arbitrary positions.\n *\n * To solve this problem, `insertBefore` doesn't actually insert the given tokens into the target object.\n * Instead, it will create a new object and replace all references to the target object with the new one. This\n * can be done without temporarily deleting properties, so the iteration order is well-defined.\n *\n * However, only references that can be reached from `Prism.languages` or `insert` will be replaced. I.e. if\n * you hold the target object in a variable, then the value of the variable will not change.\n *\n * ```js\n * var oldMarkup = Prism.languages.markup;\n * var newMarkup = Prism.languages.insertBefore('markup', 'comment', { ... });\n *\n * assert(oldMarkup !== Prism.languages.markup);\n * assert(newMarkup === Prism.languages.markup);\n * ```\n *\n * @param {string} inside The property of `root` (e.g. a language id in `Prism.languages`) that contains the\n * object to be modified.\n * @param {string} before The key to insert before.\n * @param {Grammar} insert An object containing the key-value pairs to be inserted.\n * @param {Object<string, any>} [root] The object containing `inside`, i.e. the object that contains the\n * object to be modified.\n *\n * Defaults to `Prism.languages`.\n * @returns {Grammar} The new grammar object.\n * @public\n */\n insertBefore: /* @__PURE__ */ o(function(m, v, y, b) {\n b = b || /** @type {any} */\n a.languages;\n var D = b[m], x = {};\n for (var C in D)\n if (D.hasOwnProperty(C)) {\n if (C == v)\n for (var E in y)\n y.hasOwnProperty(E) && (x[E] = y[E]);\n y.hasOwnProperty(C) || (x[C] = D[C]);\n }\n var R = b[m];\n return b[m] = x, a.languages.DFS(a.languages, function(F, A) {\n A === R && F != m && (this[F] = x);\n }), x;\n }, \"insertBefore\"),\n // Traverse a language definition with Depth First Search\n DFS: /* @__PURE__ */ o(function m(v, y, b, D) {\n D = D || {};\n var x = a.util.objId;\n for (var C in v)\n if (v.hasOwnProperty(C)) {\n y.call(v, C, v[C], b || C);\n var E = v[C], R = a.util.type(E);\n R === \"Object\" && !D[x(E)] ? (D[x(E)] = !0, m(E, y, null, D)) : R === \"Array\" && !D[x(E)] && (D[x(E)] = !0, m(E, y, C, D));\n }\n }, \"DFS\")\n },\n plugins: {},\n /**\n * This is the most high-level function in Prism’s API.\n * It fetches all the elements that have a `.language-xxxx` class and then calls {@link Prism.highlightElement} on\n * each one of them.\n *\n * This is equivalent to `Prism.highlightAllUnder(document, async, callback)`.\n *\n * @param {boolean} [async=false] Same as in {@link Prism.highlightAllUnder}.\n * @param {HighlightCallback} [callback] Same as in {@link Prism.highlightAllUnder}.\n * @memberof Prism\n * @public\n */\n highlightAll: /* @__PURE__ */ o(function(m, v) {\n a.highlightAllUnder(document, m, v);\n }, \"highlightAll\"),\n /**\n * Fetches all the descendants of `container` that have a `.language-xxxx` class and then calls\n * {@link Prism.highlightElement} on each one of them.\n *\n * The following hooks will be run:\n * 1. `before-highlightall`\n * 2. `before-all-elements-highlight`\n * 3. All hooks of {@link Prism.highlightElement} for each element.\n *\n * @param {ParentNode} container The root element, whose descendants that have a `.language-xxxx` class will be highlighted.\n * @param {boolean} [async=false] Whether each element is to be highlighted asynchronously using Web Workers.\n * @param {HighlightCallback} [callback] An optional callback to be invoked on each element after its highlighting is done.\n * @memberof Prism\n * @public\n */\n highlightAllUnder: /* @__PURE__ */ o(function(m, v, y) {\n var b = {\n callback: y,\n container: m,\n selector: 'code[class*=\"language-\"], [class*=\"language-\"] code, code[class*=\"lang-\"], [class*=\"lang-\"] code'\n };\n a.hooks.run(\"before-highlightall\", b), b.elements = Array.prototype.slice.apply(b.container.querySelectorAll(b.selector)), a.hooks.run(\n \"before-all-elements-highlight\", b);\n for (var D = 0, x; x = b.elements[D++]; )\n a.highlightElement(x, v === !0, b.callback);\n }, \"highlightAllUnder\"),\n /**\n * Highlights the code inside a single element.\n *\n * The following hooks will be run:\n * 1. `before-sanity-check`\n * 2. `before-highlight`\n * 3. All hooks of {@link Prism.highlight}. These hooks will be run by an asynchronous worker if `async` is `true`.\n * 4. `before-insert`\n * 5. `after-highlight`\n * 6. `complete`\n *\n * Some the above hooks will be skipped if the element doesn't contain any text or there is no grammar loaded for\n * the element's language.\n *\n * @param {Element} element The element containing the code.\n * It must have a class of `language-xxxx` to be processed, where `xxxx` is a valid language identifier.\n * @param {boolean} [async=false] Whether the element is to be highlighted asynchronously using Web Workers\n * to improve performance and avoid blocking the UI when highlighting very large chunks of code. This option is\n * [disabled by default](https://prismjs.com/faq.html#why-is-asynchronous-highlighting-disabled-by-default).\n *\n * Note: All language definitions required to highlight the code must be included in the main `prism.js` file for\n * asynchronous highlighting to work. You can build your own bundle on the\n * [Download page](https://prismjs.com/download.html).\n * @param {HighlightCallback} [callback] An optional callback to be invoked after the highlighting is done.\n * Mostly useful when `async` is `true`, since in that case, the highlighting is done asynchronously.\n * @memberof Prism\n * @public\n */\n highlightElement: /* @__PURE__ */ o(function(m, v, y) {\n var b = a.util.getLanguage(m), D = a.languages[b];\n a.util.setLanguage(m, b);\n var x = m.parentElement;\n x && x.nodeName.toLowerCase() === \"pre\" && a.util.setLanguage(x, b);\n var C = m.textContent, E = {\n element: m,\n language: b,\n grammar: D,\n code: C\n };\n function R(A) {\n E.highlightedCode = A, a.hooks.run(\"before-insert\", E), E.element.innerHTML = E.highlightedCode, a.hooks.run(\"after-highlight\", E),\n a.hooks.run(\"complete\", E), y && y.call(E.element);\n }\n if (o(R, \"insertHighlightedCode\"), a.hooks.run(\"before-sanity-check\", E), x = E.element.parentElement, x && x.nodeName.toLowerCase() ===\n \"pre\" && !x.hasAttribute(\"tabindex\") && x.setAttribute(\"tabindex\", \"0\"), !E.code) {\n a.hooks.run(\"complete\", E), y && y.call(E.element);\n return;\n }\n if (a.hooks.run(\"before-highlight\", E), !E.grammar) {\n R(a.util.encode(E.code));\n return;\n }\n if (v && e.Worker) {\n var F = new Worker(a.filename);\n F.onmessage = function(A) {\n R(A.data);\n }, F.postMessage(JSON.stringify({\n language: E.language,\n code: E.code,\n immediateClose: !0\n }));\n } else\n R(a.highlight(E.code, E.grammar, E.language));\n }, \"highlightElement\"),\n /**\n * Low-level function, only use if you know what you’re doing. It accepts a string of text as input\n * and the language definitions to use, and returns a string with the HTML produced.\n *\n * The following hooks will be run:\n * 1. `before-tokenize`\n * 2. `after-tokenize`\n * 3. `wrap`: On each {@link Token}.\n *\n * @param {string} text A string with the code to be highlighted.\n * @param {Grammar} grammar An object containing the tokens to use.\n *\n * Usually a language definition like `Prism.languages.markup`.\n * @param {string} language The name of the language definition passed to `grammar`.\n * @returns {string} The highlighted HTML.\n * @memberof Prism\n * @public\n * @example\n * Prism.highlight('var foo = true;', Prism.languages.javascript, 'javascript');\n */\n highlight: /* @__PURE__ */ o(function(m, v, y) {\n var b = {\n code: m,\n grammar: v,\n language: y\n };\n if (a.hooks.run(\"before-tokenize\", b), !b.grammar)\n throw new Error('The language \"' + b.language + '\" has no grammar.');\n return b.tokens = a.tokenize(b.code, b.grammar), a.hooks.run(\"after-tokenize\", b), i.stringify(a.util.encode(b.tokens), b.language);\n }, \"highlight\"),\n /**\n * This is the heart of Prism, and the most low-level function you can use. It accepts a string of text as input\n * and the language definitions to use, and returns an array with the tokenized code.\n *\n * When the language definition includes nested tokens, the function is called recursively on each of these tokens.\n *\n * This method could be useful in other contexts as well, as a very crude parser.\n *\n * @param {string} text A string with the code to be highlighted.\n * @param {Grammar} grammar An object containing the tokens to use.\n *\n * Usually a language definition like `Prism.languages.markup`.\n * @returns {TokenStream} An array of strings and tokens, a token stream.\n * @memberof Prism\n * @public\n * @example\n * let code = `var foo = 0;`;\n * let tokens = Prism.tokenize(code, Prism.languages.javascript);\n * tokens.forEach(token => {\n * if (token instanceof Prism.Token && token.type === 'number') {\n * console.log(`Found numeric literal: ${token.content}`);\n * }\n * });\n */\n tokenize: /* @__PURE__ */ o(function(m, v) {\n var y = v.rest;\n if (y) {\n for (var b in y)\n v[b] = y[b];\n delete v.rest;\n }\n var D = new c();\n return p(D, D.head, m), u(m, D, v, D.head, 0), h(D);\n }, \"tokenize\"),\n /**\n * @namespace\n * @memberof Prism\n * @public\n */\n hooks: {\n all: {},\n /**\n * Adds the given callback to the list of callbacks for the given hook.\n *\n * The callback will be invoked when the hook it is registered for is run.\n * Hooks are usually directly run by a highlight function but you can also run hooks yourself.\n *\n * One callback function can be registered to multiple hooks and the same hook multiple times.\n *\n * @param {string} name The name of the hook.\n * @param {HookCallback} callback The callback function which is given environment variables.\n * @public\n */\n add: /* @__PURE__ */ o(function(m, v) {\n var y = a.hooks.all;\n y[m] = y[m] || [], y[m].push(v);\n }, \"add\"),\n /**\n * Runs a hook invoking all registered callbacks with the given environment variables.\n *\n * Callbacks will be invoked synchronously and in the order in which they were registered.\n *\n * @param {string} name The name of the hook.\n * @param {Object<string, any>} env The environment variables of the hook passed to all callbacks registered.\n * @public\n */\n run: /* @__PURE__ */ o(function(m, v) {\n var y = a.hooks.all[m];\n if (!(!y || !y.length))\n for (var b = 0, D; D = y[b++]; )\n D(v);\n }, \"run\")\n },\n Token: i\n };\n e.Prism = a;\n function i(m, v, y, b) {\n this.type = m, this.content = v, this.alias = y, this.length = (b || \"\").length | 0;\n }\n o(i, \"Token\"), i.stringify = /* @__PURE__ */ o(function m(v, y) {\n if (typeof v == \"string\")\n return v;\n if (Array.isArray(v)) {\n var b = \"\";\n return v.forEach(function(R) {\n b += m(R, y);\n }), b;\n }\n var D = {\n type: v.type,\n content: m(v.content, y),\n tag: \"span\",\n classes: [\"token\", v.type],\n attributes: {},\n language: y\n }, x = v.alias;\n x && (Array.isArray(x) ? Array.prototype.push.apply(D.classes, x) : D.classes.push(x)), a.hooks.run(\"wrap\", D);\n var C = \"\";\n for (var E in D.attributes)\n C += \" \" + E + '=\"' + (D.attributes[E] || \"\").replace(/\"/g, \""\") + '\"';\n return \"<\" + D.tag + ' class=\"' + D.classes.join(\" \") + '\"' + C + \">\" + D.content + \"</\" + D.tag + \">\";\n }, \"stringify\");\n function l(m, v, y, b) {\n m.lastIndex = v;\n var D = m.exec(y);\n if (D && b && D[1]) {\n var x = D[1].length;\n D.index += x, D[0] = D[0].slice(x);\n }\n return D;\n }\n o(l, \"matchPattern\");\n function u(m, v, y, b, D, x) {\n for (var C in y)\n if (!(!y.hasOwnProperty(C) || !y[C])) {\n var E = y[C];\n E = Array.isArray(E) ? E : [E];\n for (var R = 0; R < E.length; ++R) {\n if (x && x.cause == C + \",\" + R)\n return;\n var F = E[R], A = F.inside, k = !!F.lookbehind, B = !!F.greedy, j = F.alias;\n if (B && !F.pattern.global) {\n var V = F.pattern.toString().match(/[imsuy]*$/)[0];\n F.pattern = RegExp(F.pattern.source, V + \"g\");\n }\n for (var ee = F.pattern || F, I = b.next, T = D; I !== v.tail && !(x && T >= x.reach); T += I.value.length, I = I.next) {\n var P = I.value;\n if (v.length > m.length)\n return;\n if (!(P instanceof i)) {\n var q = 1, $;\n if (B) {\n if ($ = l(ee, T, m, k), !$ || $.index >= m.length)\n break;\n var ze = $.index, U = $.index + $[0].length, H = T;\n for (H += I.value.length; ze >= H; )\n I = I.next, H += I.value.length;\n if (H -= I.value.length, T = H, I.value instanceof i)\n continue;\n for (var X = I; X !== v.tail && (H < U || typeof X.value == \"string\"); X = X.next)\n q++, H += X.value.length;\n q--, P = m.slice(T, H), $.index -= T;\n } else if ($ = l(ee, 0, P, k), !$)\n continue;\n var ze = $.index, Ee = $[0], ve = P.slice(0, ze), Le = P.slice(ze + Ee.length), Oe = T + P.length;\n x && Oe > x.reach && (x.reach = Oe);\n var Ne = I.prev;\n ve && (Ne = p(v, Ne, ve), T += ve.length), d(v, Ne, q);\n var no = new i(C, A ? a.tokenize(Ee, A) : Ee, j, Ee);\n if (I = p(v, Ne, no), Le && p(v, I, Le), q > 1) {\n var ao = {\n cause: C + \",\" + R,\n reach: Oe\n };\n u(m, v, y, I.prev, T, ao), x && ao.reach > x.reach && (x.reach = ao.reach);\n }\n }\n }\n }\n }\n }\n o(u, \"matchGrammar\");\n function c() {\n var m = { value: null, prev: null, next: null }, v = { value: null, prev: m, next: null };\n m.next = v, this.head = m, this.tail = v, this.length = 0;\n }\n o(c, \"LinkedList\");\n function p(m, v, y) {\n var b = v.next, D = { value: y, prev: v, next: b };\n return v.next = D, b.prev = D, m.length++, D;\n }\n o(p, \"addAfter\");\n function d(m, v, y) {\n for (var b = v.next, D = 0; D < y && b !== m.tail; D++)\n b = b.next;\n v.next = b, b.prev = v, m.length -= D;\n }\n o(d, \"removeRange\");\n function h(m) {\n for (var v = [], y = m.head.next; y !== m.tail; )\n v.push(y.value), y = y.next;\n return v;\n }\n if (o(h, \"toArray\"), !e.document)\n return e.addEventListener && (a.disableWorkerMessageHandler || e.addEventListener(\"message\", function(m) {\n var v = JSON.parse(m.data), y = v.language, b = v.code, D = v.immediateClose;\n e.postMessage(a.highlight(b, a.languages[y], y)), D && e.close();\n }, !1)), a;\n var f = a.util.currentScript();\n f && (a.filename = f.src, f.hasAttribute(\"data-manual\") && (a.manual = !0));\n function g() {\n a.manual || a.highlightAll();\n }\n if (o(g, \"highlightAutomaticallyCallback\"), !a.manual) {\n var w = document.readyState;\n w === \"loading\" || w === \"interactive\" && f && f.defer ? document.addEventListener(\"DOMContentLoaded\", g) : window.requestAnimationFrame ?\n window.requestAnimationFrame(g) : window.setTimeout(g, 16);\n }\n return a;\n }(v6);\n typeof bi < \"u\" && bi.exports && (bi.exports = Sf);\n typeof global < \"u\" && (global.Prism = Sf);\n});\n\n// ../node_modules/refractor/lang/markup.js\nvar Vs = M((fz, Ff) => {\n \"use strict\";\n Ff.exports = $s;\n $s.displayName = \"markup\";\n $s.aliases = [\"html\", \"mathml\", \"svg\", \"xml\", \"ssml\", \"atom\", \"rss\"];\n function $s(e) {\n e.languages.markup = {\n comment: {\n pattern: /<!--(?:(?!<!--)[\\s\\S])*?-->/,\n greedy: !0\n },\n prolog: {\n pattern: /<\\?[\\s\\S]+?\\?>/,\n greedy: !0\n },\n doctype: {\n // https://www.w3.org/TR/xml/#NT-doctypedecl\n pattern: /<!DOCTYPE(?:[^>\"'[\\]]|\"[^\"]*\"|'[^']*')+(?:\\[(?:[^<\"'\\]]|\"[^\"]*\"|'[^']*'|<(?!!--)|<!--(?:[^-]|-(?!->))*-->)*\\]\\s*)?>/i,\n greedy: !0,\n inside: {\n \"internal-subset\": {\n pattern: /(^[^\\[]*\\[)[\\s\\S]+(?=\\]>$)/,\n lookbehind: !0,\n greedy: !0,\n inside: null\n // see below\n },\n string: {\n pattern: /\"[^\"]*\"|'[^']*'/,\n greedy: !0\n },\n punctuation: /^<!|>$|[[\\]]/,\n \"doctype-tag\": /^DOCTYPE/i,\n name: /[^\\s<>'\"]+/\n }\n },\n cdata: {\n pattern: /<!\\[CDATA\\[[\\s\\S]*?\\]\\]>/i,\n greedy: !0\n },\n tag: {\n pattern: /<\\/?(?!\\d)[^\\s>\\/=$<%]+(?:\\s(?:\\s*[^\\s>\\/=]+(?:\\s*=\\s*(?:\"[^\"]*\"|'[^']*'|[^\\s'\">=]+(?=[\\s>]))|(?=[\\s/>])))+)?\\s*\\/?>/,\n greedy: !0,\n inside: {\n tag: {\n pattern: /^<\\/?[^\\s>\\/]+/,\n inside: {\n punctuation: /^<\\/?/,\n namespace: /^[^\\s>\\/:]+:/\n }\n },\n \"special-attr\": [],\n \"attr-value\": {\n pattern: /=\\s*(?:\"[^\"]*\"|'[^']*'|[^\\s'\">=]+)/,\n inside: {\n punctuation: [\n {\n pattern: /^=/,\n alias: \"attr-equals\"\n },\n /\"|'/\n ]\n }\n },\n punctuation: /\\/?>/,\n \"attr-name\": {\n pattern: /[^\\s>\\/]+/,\n inside: {\n namespace: /^[^\\s>\\/:]+:/\n }\n }\n }\n },\n entity: [\n {\n pattern: /&[\\da-z]{1,8};/i,\n alias: \"named-entity\"\n },\n /&#x?[\\da-f]{1,8};/i\n ]\n }, e.languages.markup.tag.inside[\"attr-value\"].inside.entity = e.languages.markup.entity, e.languages.markup.doctype.inside[\"internal-su\\\nbset\"].inside = e.languages.markup, e.hooks.add(\"wrap\", function(t) {\n t.type === \"entity\" && (t.attributes.title = t.content.value.replace(/&/, \"&\"));\n }), Object.defineProperty(e.languages.markup.tag, \"addInlined\", {\n /**\n * Adds an inlined language to markup.\n *\n * An example of an inlined language is CSS with `<style>` tags.\n *\n * @param {string} tagName The name of the tag that contains the inlined language. This name will be treated as\n * case insensitive.\n * @param {string} lang The language key.\n * @example\n * addInlined('style', 'css');\n */\n value: /* @__PURE__ */ o(function(r, n) {\n var a = {};\n a[\"language-\" + n] = {\n pattern: /(^<!\\[CDATA\\[)[\\s\\S]+?(?=\\]\\]>$)/i,\n lookbehind: !0,\n inside: e.languages[n]\n }, a.cdata = /^<!\\[CDATA\\[|\\]\\]>$/i;\n var i = {\n \"included-cdata\": {\n pattern: /<!\\[CDATA\\[[\\s\\S]*?\\]\\]>/i,\n inside: a\n }\n };\n i[\"language-\" + n] = {\n pattern: /[\\s\\S]+/,\n inside: e.languages[n]\n };\n var l = {};\n l[r] = {\n pattern: RegExp(\n /(<__[^>]*>)(?:<!\\[CDATA\\[(?:[^\\]]|\\](?!\\]>))*\\]\\]>|(?!<!\\[CDATA\\[)[\\s\\S])*?(?=<\\/__>)/.source.replace(\n /__/g,\n function() {\n return r;\n }\n ),\n \"i\"\n ),\n lookbehind: !0,\n greedy: !0,\n inside: i\n }, e.languages.insertBefore(\"markup\", \"cdata\", l);\n }, \"addInlined\")\n }), Object.defineProperty(e.languages.markup.tag, \"addAttribute\", {\n /**\n * Adds an pattern to highlight languages embedded in HTML attributes.\n *\n * An example of an inlined language is CSS with `style` attributes.\n *\n * @param {string} attrName The name of the tag that contains the inlined language. This name will be treated as\n * case insensitive.\n * @param {string} lang The language key.\n * @example\n * addAttribute('style', 'css');\n */\n value: /* @__PURE__ */ o(function(t, r) {\n e.languages.markup.tag.inside[\"special-attr\"].push({\n pattern: RegExp(\n /(^|[\"'\\s])/.source + \"(?:\" + t + \")\" + /\\s*=\\s*(?:\"[^\"]*\"|'[^']*'|[^\\s'\">=]+(?=[\\s>]))/.source,\n \"i\"\n ),\n lookbehind: !0,\n inside: {\n \"attr-name\": /^[^\\s=]+/,\n \"attr-value\": {\n pattern: /=[\\s\\S]+/,\n inside: {\n value: {\n pattern: /(^=\\s*([\"']|(?![\"'])))\\S[\\s\\S]*(?=\\2$)/,\n lookbehind: !0,\n alias: [r, \"language-\" + r],\n inside: e.languages[r]\n },\n punctuation: [\n {\n pattern: /^=/,\n alias: \"attr-equals\"\n },\n /\"|'/\n ]\n }\n }\n }\n });\n }, \"value\")\n }), e.languages.html = e.languages.markup, e.languages.mathml = e.languages.markup, e.languages.svg = e.languages.markup, e.languages.xml =\n e.languages.extend(\"markup\", {}), e.languages.ssml = e.languages.xml, e.languages.atom = e.languages.xml, e.languages.rss = e.languages.\n xml;\n }\n o($s, \"markup\");\n});\n\n// ../node_modules/refractor/lang/css.js\nvar Ws = M((mz, kf) => {\n \"use strict\";\n kf.exports = js;\n js.displayName = \"css\";\n js.aliases = [];\n function js(e) {\n (function(t) {\n var r = /(?:\"(?:\\\\(?:\\r\\n|[\\s\\S])|[^\"\\\\\\r\\n])*\"|'(?:\\\\(?:\\r\\n|[\\s\\S])|[^'\\\\\\r\\n])*')/;\n t.languages.css = {\n comment: /\\/\\*[\\s\\S]*?\\*\\//,\n atrule: {\n pattern: /@[\\w-](?:[^;{\\s]|\\s+(?![\\s{]))*(?:;|(?=\\s*\\{))/,\n inside: {\n rule: /^@[\\w-]+/,\n \"selector-function-argument\": {\n pattern: /(\\bselector\\s*\\(\\s*(?![\\s)]))(?:[^()\\s]|\\s+(?![\\s)])|\\((?:[^()]|\\([^()]*\\))*\\))+(?=\\s*\\))/,\n lookbehind: !0,\n alias: \"selector\"\n },\n keyword: {\n pattern: /(^|[^\\w-])(?:and|not|only|or)(?![\\w-])/,\n lookbehind: !0\n }\n // See rest below\n }\n },\n url: {\n // https://drafts.csswg.org/css-values-3/#urls\n pattern: RegExp(\n \"\\\\burl\\\\((?:\" + r.source + \"|\" + /(?:[^\\\\\\r\\n()\"']|\\\\[\\s\\S])*/.source + \")\\\\)\",\n \"i\"\n ),\n greedy: !0,\n inside: {\n function: /^url/i,\n punctuation: /^\\(|\\)$/,\n string: {\n pattern: RegExp(\"^\" + r.source + \"$\"),\n alias: \"url\"\n }\n }\n },\n selector: {\n pattern: RegExp(\n `(^|[{}\\\\s])[^{}\\\\s](?:[^{};\"'\\\\s]|\\\\s+(?![\\\\s{])|` + r.source + \")*(?=\\\\s*\\\\{)\"\n ),\n lookbehind: !0\n },\n string: {\n pattern: r,\n greedy: !0\n },\n property: {\n pattern: /(^|[^-\\w\\xA0-\\uFFFF])(?!\\s)[-_a-z\\xA0-\\uFFFF](?:(?!\\s)[-\\w\\xA0-\\uFFFF])*(?=\\s*:)/i,\n lookbehind: !0\n },\n important: /!important\\b/i,\n function: {\n pattern: /(^|[^-a-z0-9])[-a-z0-9]+(?=\\()/i,\n lookbehind: !0\n },\n punctuation: /[(){};:,]/\n }, t.languages.css.atrule.inside.rest = t.languages.css;\n var n = t.languages.markup;\n n && (n.tag.addInlined(\"style\", \"css\"), n.tag.addAttribute(\"style\", \"css\"));\n })(e);\n }\n o(js, \"css\");\n});\n\n// ../node_modules/refractor/lang/clike.js\nvar Tf = M((vz, Lf) => {\n \"use strict\";\n Lf.exports = qs;\n qs.displayName = \"clike\";\n qs.aliases = [];\n function qs(e) {\n e.languages.clike = {\n comment: [\n {\n pattern: /(^|[^\\\\])\\/\\*[\\s\\S]*?(?:\\*\\/|$)/,\n lookbehind: !0,\n greedy: !0\n },\n {\n pattern: /(^|[^\\\\:])\\/\\/.*/,\n lookbehind: !0,\n greedy: !0\n }\n ],\n string: {\n pattern: /([\"'])(?:\\\\(?:\\r\\n|[\\s\\S])|(?!\\1)[^\\\\\\r\\n])*\\1/,\n greedy: !0\n },\n \"class-name\": {\n pattern: /(\\b(?:class|extends|implements|instanceof|interface|new|trait)\\s+|\\bcatch\\s+\\()[\\w.\\\\]+/i,\n lookbehind: !0,\n inside: {\n punctuation: /[.\\\\]/\n }\n },\n keyword: /\\b(?:break|catch|continue|do|else|finally|for|function|if|in|instanceof|new|null|return|throw|try|while)\\b/,\n boolean: /\\b(?:false|true)\\b/,\n function: /\\b\\w+(?=\\()/,\n number: /\\b0x[\\da-f]+\\b|(?:\\b\\d+(?:\\.\\d*)?|\\B\\.\\d+)(?:e[+-]?\\d+)?/i,\n operator: /[<>]=?|[!=]=?=?|--?|\\+\\+?|&&?|\\|\\|?|[?*/~^%]/,\n punctuation: /[{}[\\];(),.:]/\n };\n }\n o(qs, \"clike\");\n});\n\n// ../node_modules/refractor/lang/javascript.js\nvar Bf = M((bz, If) => {\n \"use strict\";\n If.exports = Us;\n Us.displayName = \"javascript\";\n Us.aliases = [\"js\"];\n function Us(e) {\n e.languages.javascript = e.languages.extend(\"clike\", {\n \"class-name\": [\n e.languages.clike[\"class-name\"],\n {\n pattern: /(^|[^$\\w\\xA0-\\uFFFF])(?!\\s)[_$A-Z\\xA0-\\uFFFF](?:(?!\\s)[$\\w\\xA0-\\uFFFF])*(?=\\.(?:constructor|prototype))/,\n lookbehind: !0\n }\n ],\n keyword: [\n {\n pattern: /((?:^|\\})\\s*)catch\\b/,\n lookbehind: !0\n },\n {\n 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/,\n lookbehind: !0\n }\n ],\n // Allow for all non-ASCII characters (See http://stackoverflow.com/a/2008444)\n function: /#?(?!\\s)[_$a-zA-Z\\xA0-\\uFFFF](?:(?!\\s)[$\\w\\xA0-\\uFFFF])*(?=\\s*(?:\\.\\s*(?:apply|bind|call)\\s*)?\\()/,\n number: {\n pattern: RegExp(\n /(^|[^\\w$])/.source + \"(?:\" + // constant\n (/NaN|Infinity/.source + \"|\" + // binary integer\n /0[bB][01]+(?:_[01]+)*n?/.source + \"|\" + // octal integer\n /0[oO][0-7]+(?:_[0-7]+)*n?/.source + \"|\" + // hexadecimal integer\n /0[xX][\\dA-Fa-f]+(?:_[\\dA-Fa-f]+)*n?/.source + \"|\" + // decimal bigint\n /\\d+(?:_\\d+)*n/.source + \"|\" + // decimal number (integer or float) but no bigint\n /(?:\\d+(?:_\\d+)*(?:\\.(?:\\d+(?:_\\d+)*)?)?|\\.\\d+(?:_\\d+)*)(?:[Ee][+-]?\\d+(?:_\\d+)*)?/.source) + \")\" + /(?![\\w$])/.source\n ),\n lookbehind: !0\n },\n operator: /--|\\+\\+|\\*\\*=?|=>|&&=?|\\|\\|=?|[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\\.{3}|\\?\\?=?|\\?\\.?|[~:]/\n }), e.languages.javascript[\"class-name\"][0].pattern = /(\\b(?:class|extends|implements|instanceof|interface|new)\\s+)[\\w.\\\\]+/, e.languages.\n insertBefore(\"javascript\", \"keyword\", {\n regex: {\n // eslint-disable-next-line regexp/no-dupe-characters-character-class\n pattern: /((?:^|[^$\\w\\xA0-\\uFFFF.\"'\\])\\s]|\\b(?:return|yield))\\s*)\\/(?:\\[(?:[^\\]\\\\\\r\\n]|\\\\.)*\\]|\\\\.|[^/\\\\\\[\\r\\n])+\\/[dgimyus]{0,7}(?=(?:\\s|\\/\\*(?:[^*]|\\*(?!\\/))*\\*\\/)*(?:$|[\\r\\n,.;:})\\]]|\\/\\/))/,\n lookbehind: !0,\n greedy: !0,\n inside: {\n \"regex-source\": {\n pattern: /^(\\/)[\\s\\S]+(?=\\/[a-z]*$)/,\n lookbehind: !0,\n alias: \"language-regex\",\n inside: e.languages.regex\n },\n \"regex-delimiter\": /^\\/|\\/$/,\n \"regex-flags\": /^[a-z]+$/\n }\n },\n // This must be declared before keyword because we use \"function\" inside the look-forward\n \"function-variable\": {\n 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*=>))/,\n alias: \"function\"\n },\n parameter: [\n {\n pattern: /(function(?:\\s+(?!\\s)[_$a-zA-Z\\xA0-\\uFFFF](?:(?!\\s)[$\\w\\xA0-\\uFFFF])*)?\\s*\\(\\s*)(?!\\s)(?:[^()\\s]|\\s+(?![\\s)])|\\([^()]*\\))+(?=\\s*\\))/,\n lookbehind: !0,\n inside: e.languages.javascript\n },\n {\n pattern: /(^|[^$\\w\\xA0-\\uFFFF])(?!\\s)[_$a-z\\xA0-\\uFFFF](?:(?!\\s)[$\\w\\xA0-\\uFFFF])*(?=\\s*=>)/i,\n lookbehind: !0,\n inside: e.languages.javascript\n },\n {\n pattern: /(\\(\\s*)(?!\\s)(?:[^()\\s]|\\s+(?![\\s)])|\\([^()]*\\))+(?=\\s*\\)\\s*=>)/,\n lookbehind: !0,\n inside: e.languages.javascript\n },\n {\n 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*\\{)/,\n lookbehind: !0,\n inside: e.languages.javascript\n }\n ],\n constant: /\\b[A-Z](?:[A-Z_]|\\dx?)*\\b/\n }), e.languages.insertBefore(\"javascript\", \"string\", {\n hashbang: {\n pattern: /^#!.*/,\n greedy: !0,\n alias: \"comment\"\n },\n \"template-string\": {\n pattern: /`(?:\\\\[\\s\\S]|\\$\\{(?:[^{}]|\\{(?:[^{}]|\\{[^}]*\\})*\\})+\\}|(?!\\$\\{)[^\\\\`])*`/,\n greedy: !0,\n inside: {\n \"template-punctuation\": {\n pattern: /^`|`$/,\n alias: \"string\"\n },\n interpolation: {\n pattern: /((?:^|[^\\\\])(?:\\\\{2})*)\\$\\{(?:[^{}]|\\{(?:[^{}]|\\{[^}]*\\})*\\})+\\}/,\n lookbehind: !0,\n inside: {\n \"interpolation-punctuation\": {\n pattern: /^\\$\\{|\\}$/,\n alias: \"punctuation\"\n },\n rest: e.languages.javascript\n }\n },\n string: /[\\s\\S]+/\n }\n },\n \"string-property\": {\n pattern: /((?:^|[,{])[ \\t]*)([\"'])(?:\\\\(?:\\r\\n|[\\s\\S])|(?!\\2)[^\\\\\\r\\n])*\\2(?=\\s*:)/m,\n lookbehind: !0,\n greedy: !0,\n alias: \"property\"\n }\n }), e.languages.insertBefore(\"javascript\", \"operator\", {\n \"literal-property\": {\n pattern: /((?:^|[,{])[ \\t]*)(?!\\s)[_$a-zA-Z\\xA0-\\uFFFF](?:(?!\\s)[$\\w\\xA0-\\uFFFF])*(?=\\s*:)/m,\n lookbehind: !0,\n alias: \"property\"\n }\n }), e.languages.markup && (e.languages.markup.tag.addInlined(\"script\", \"javascript\"), e.languages.markup.tag.addAttribute(\n /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)/.\n source,\n \"javascript\"\n )), e.languages.js = e.languages.javascript;\n }\n o(Us, \"javascript\");\n});\n\n// ../node_modules/refractor/core.js\nvar Hf = M((Dz, Pf) => {\n \"use strict\";\n var ho = typeof globalThis == \"object\" ? globalThis : typeof self == \"object\" ? self : typeof window == \"object\" ? window : typeof global ==\n \"object\" ? global : {}, w6 = B6();\n ho.Prism = { manual: !0, disableWorkerMessageHandler: !0 };\n var b6 = Qd(), y6 = Rf(), Mf = Af(), D6 = Vs(), x6 = Ws(), C6 = Tf(), E6 = Bf();\n w6();\n var Gs = {}.hasOwnProperty;\n function _f() {\n }\n o(_f, \"Refractor\");\n _f.prototype = Mf;\n var le = new _f();\n Pf.exports = le;\n le.highlight = S6;\n le.register = mo;\n le.alias = R6;\n le.registered = A6;\n le.listLanguages = F6;\n mo(D6);\n mo(x6);\n mo(C6);\n mo(E6);\n le.util.encode = T6;\n le.Token.stringify = k6;\n function mo(e) {\n if (typeof e != \"function\" || !e.displayName)\n throw new Error(\"Expected `function` for `grammar`, got `\" + e + \"`\");\n le.languages[e.displayName] === void 0 && e(le);\n }\n o(mo, \"register\");\n function R6(e, t) {\n var r = le.languages, n = e, a, i, l, u;\n t && (n = {}, n[e] = t);\n for (a in n)\n for (i = n[a], i = typeof i == \"string\" ? [i] : i, l = i.length, u = -1; ++u < l; )\n r[i[u]] = r[a];\n }\n o(R6, \"alias\");\n function S6(e, t) {\n var r = Mf.highlight, n;\n if (typeof e != \"string\")\n throw new Error(\"Expected `string` for `value`, got `\" + e + \"`\");\n if (le.util.type(t) === \"Object\")\n n = t, t = null;\n else {\n if (typeof t != \"string\")\n throw new Error(\"Expected `string` for `name`, got `\" + t + \"`\");\n if (Gs.call(le.languages, t))\n n = le.languages[t];\n else\n throw new Error(\"Unknown language: `\" + t + \"` is not registered\");\n }\n return r.call(this, e, n, t);\n }\n o(S6, \"highlight\");\n function A6(e) {\n if (typeof e != \"string\")\n throw new Error(\"Expected `string` for `language`, got `\" + e + \"`\");\n return Gs.call(le.languages, e);\n }\n o(A6, \"registered\");\n function F6() {\n var e = le.languages, t = [], r;\n for (r in e)\n Gs.call(e, r) && typeof e[r] == \"object\" && t.push(r);\n return t;\n }\n o(F6, \"listLanguages\");\n function k6(e, t, r) {\n var n;\n return typeof e == \"string\" ? { type: \"text\", value: e } : le.util.type(e) === \"Array\" ? L6(e, t) : (n = {\n type: e.type,\n content: le.Token.stringify(e.content, t, r),\n tag: \"span\",\n classes: [\"token\", e.type],\n attributes: {},\n language: t,\n parent: r\n }, e.alias && (n.classes = n.classes.concat(e.alias)), le.hooks.run(\"wrap\", n), b6(\n n.tag + \".\" + n.classes.join(\".\"),\n I6(n.attributes),\n n.content\n ));\n }\n o(k6, \"stringify\");\n function L6(e, t) {\n for (var r = [], n = e.length, a = -1, i; ++a < n; )\n i = e[a], i !== \"\" && i !== null && i !== void 0 && r.push(i);\n for (a = -1, n = r.length; ++a < n; )\n i = r[a], r[a] = le.Token.stringify(i, t, r);\n return r;\n }\n o(L6, \"stringifyAll\");\n function T6(e) {\n return e;\n }\n o(T6, \"encode\");\n function I6(e) {\n var t;\n for (t in e)\n e[t] = y6(e[t]);\n return e;\n }\n o(I6, \"attributes\");\n function B6() {\n var e = \"Prism\" in ho, t = e ? ho.Prism : void 0;\n return r;\n function r() {\n e ? ho.Prism = t : delete ho.Prism, e = void 0, t = void 0;\n }\n }\n o(B6, \"capture\");\n});\n\n// ../node_modules/react-syntax-highlighter/dist/esm/prism-light.js\nvar yi, Ys, Di, zf = S(() => {\n Qp();\n yi = Re(Hf()), Ys = Es(yi.default, {});\n Ys.registerLanguage = function(e, t) {\n return yi.default.register(t);\n };\n Ys.alias = function(e, t) {\n return yi.default.alias(e, t);\n };\n Di = Ys;\n});\n\n// ../node_modules/react-syntax-highlighter/dist/esm/index.js\nvar Of = S(() => {\n Cs();\n});\n\n// ../node_modules/refractor/lang/bash.js\nvar $f = M((Az, Nf) => {\n \"use strict\";\n Nf.exports = Xs;\n Xs.displayName = \"bash\";\n Xs.aliases = [\"shell\"];\n function Xs(e) {\n (function(t) {\n var r = \"\\\\b(?:BASH|BASHOPTS|BASH_ALIASES|BASH_ARGC|BASH_ARGV|BASH_CMDS|BASH_COMPLETION_COMPAT_DIR|BASH_LINENO|BASH_REMATCH|BASH_SOURCE\\\n|BASH_VERSINFO|BASH_VERSION|COLORTERM|COLUMNS|COMP_WORDBREAKS|DBUS_SESSION_BUS_ADDRESS|DEFAULTS_PATH|DESKTOP_SESSION|DIRSTACK|DISPLAY|EUID|G\\\nDMSESSION|GDM_LANG|GNOME_KEYRING_CONTROL|GNOME_KEYRING_PID|GPG_AGENT_INFO|GROUPS|HISTCONTROL|HISTFILE|HISTFILESIZE|HISTSIZE|HOME|HOSTNAME|HO\\\nSTTYPE|IFS|INSTANCE|JOB|LANG|LANGUAGE|LC_ADDRESS|LC_ALL|LC_IDENTIFICATION|LC_MEASUREMENT|LC_MONETARY|LC_NAME|LC_NUMERIC|LC_PAPER|LC_TELEPHON\\\nE|LC_TIME|LESSCLOSE|LESSOPEN|LINES|LOGNAME|LS_COLORS|MACHTYPE|MAILCHECK|MANDATORY_PATH|NO_AT_BRIDGE|OLDPWD|OPTERR|OPTIND|ORBIT_SOCKETDIR|OST\\\nYPE|PAPERSIZE|PATH|PIPESTATUS|PPID|PS1|PS2|PS3|PS4|PWD|RANDOM|REPLY|SECONDS|SELINUX_INIT|SESSION|SESSIONTYPE|SESSION_MANAGER|SHELL|SHELLOPTS\\\n|SHLVL|SSH_AUTH_SOCK|TERM|UID|UPSTART_EVENTS|UPSTART_INSTANCE|UPSTART_JOB|UPSTART_SESSION|USER|WINDOWID|XAUTHORITY|XDG_CONFIG_DIRS|XDG_CURRE\\\nNT_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_\\\nSESSION_PATH|XDG_SESSION_TYPE|XDG_VTNR|XMODIFIERS)\\\\b\", n = {\n pattern: /(^([\"']?)\\w+\\2)[ \\t]+\\S.*/,\n lookbehind: !0,\n alias: \"punctuation\",\n // this looks reasonably well in all themes\n inside: null\n // see below\n }, a = {\n bash: n,\n environment: {\n pattern: RegExp(\"\\\\$\" + r),\n alias: \"constant\"\n },\n variable: [\n // [0]: Arithmetic Environment\n {\n pattern: /\\$?\\(\\([\\s\\S]+?\\)\\)/,\n greedy: !0,\n inside: {\n // If there is a $ sign at the beginning highlight $(( and )) as variable\n variable: [\n {\n pattern: /(^\\$\\(\\([\\s\\S]+)\\)\\)/,\n lookbehind: !0\n },\n /^\\$\\(\\(/\n ],\n number: /\\b0x[\\dA-Fa-f]+\\b|(?:\\b\\d+(?:\\.\\d*)?|\\B\\.\\d+)(?:[Ee]-?\\d+)?/,\n // Operators according to https://www.gnu.org/software/bash/manual/bashref.html#Shell-Arithmetic\n operator: /--|\\+\\+|\\*\\*=?|<<=?|>>=?|&&|\\|\\||[=!+\\-*/%<>^&|]=?|[?~:]/,\n // If there is no $ sign at the beginning highlight (( and )) as punctuation\n punctuation: /\\(\\(?|\\)\\)?|,|;/\n }\n },\n // [1]: Command Substitution\n {\n pattern: /\\$\\((?:\\([^)]+\\)|[^()])+\\)|`[^`]+`/,\n greedy: !0,\n inside: {\n variable: /^\\$\\(|^`|\\)$|`$/\n }\n },\n // [2]: Brace expansion\n {\n pattern: /\\$\\{[^}]+\\}/,\n greedy: !0,\n inside: {\n operator: /:[-=?+]?|[!\\/]|##?|%%?|\\^\\^?|,,?/,\n punctuation: /[\\[\\]]/,\n environment: {\n pattern: RegExp(\"(\\\\{)\" + r),\n lookbehind: !0,\n alias: \"constant\"\n }\n }\n },\n /\\$(?:\\w+|[#?*!@$])/\n ],\n // Escape sequences from echo and printf's manuals, and escaped quotes.\n 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})/\n };\n t.languages.bash = {\n shebang: {\n pattern: /^#!\\s*\\/.*/,\n alias: \"important\"\n },\n comment: {\n pattern: /(^|[^\"{\\\\$])#.*/,\n lookbehind: !0\n },\n \"function-name\": [\n // a) function foo {\n // b) foo() {\n // c) function foo() {\n // but not “foo {”\n {\n // a) and c)\n pattern: /(\\bfunction\\s+)[\\w-]+(?=(?:\\s*\\(?:\\s*\\))?\\s*\\{)/,\n lookbehind: !0,\n alias: \"function\"\n },\n {\n // b)\n pattern: /\\b[\\w-]+(?=\\s*\\(\\s*\\)\\s*\\{)/,\n alias: \"function\"\n }\n ],\n // Highlight variable names as variables in for and select beginnings.\n \"for-or-select\": {\n pattern: /(\\b(?:for|select)\\s+)\\w+(?=\\s+in\\s)/,\n alias: \"variable\",\n lookbehind: !0\n },\n // Highlight variable names as variables in the left-hand part\n // of assignments (“=” and “+=”).\n \"assign-left\": {\n pattern: /(^|[\\s;|&]|[<>]\\()\\w+(?=\\+?=)/,\n inside: {\n environment: {\n pattern: RegExp(\"(^|[\\\\s;|&]|[<>]\\\\()\" + r),\n lookbehind: !0,\n alias: \"constant\"\n }\n },\n alias: \"variable\",\n lookbehind: !0\n },\n string: [\n // Support for Here-documents https://en.wikipedia.org/wiki/Here_document\n {\n pattern: /((?:^|[^<])<<-?\\s*)(\\w+)\\s[\\s\\S]*?(?:\\r?\\n|\\r)\\2/,\n lookbehind: !0,\n greedy: !0,\n inside: a\n },\n // Here-document with quotes around the tag\n // → No expansion (so no “inside”).\n {\n pattern: /((?:^|[^<])<<-?\\s*)([\"'])(\\w+)\\2\\s[\\s\\S]*?(?:\\r?\\n|\\r)\\3/,\n lookbehind: !0,\n greedy: !0,\n inside: {\n bash: n\n }\n },\n // “Normal” string\n {\n // https://www.gnu.org/software/bash/manual/html_node/Double-Quotes.html\n pattern: /(^|[^\\\\](?:\\\\\\\\)*)\"(?:\\\\[\\s\\S]|\\$\\([^)]+\\)|\\$(?!\\()|`[^`]+`|[^\"\\\\`$])*\"/,\n lookbehind: !0,\n greedy: !0,\n inside: a\n },\n {\n // https://www.gnu.org/software/bash/manual/html_node/Single-Quotes.html\n pattern: /(^|[^$\\\\])'[^']*'/,\n lookbehind: !0,\n greedy: !0\n },\n {\n // https://www.gnu.org/software/bash/manual/html_node/ANSI_002dC-Quoting.html\n pattern: /\\$'(?:[^'\\\\]|\\\\[\\s\\S])*'/,\n greedy: !0,\n inside: {\n entity: a.entity\n }\n }\n ],\n environment: {\n pattern: RegExp(\"\\\\$?\" + r),\n alias: \"constant\"\n },\n variable: a.variable,\n function: {\n 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;|&])/,\n lookbehind: !0\n },\n keyword: {\n pattern: /(^|[\\s;|&]|[<>]\\()(?:case|do|done|elif|else|esac|fi|for|function|if|in|select|then|until|while)(?=$|[)\\s;|&])/,\n lookbehind: !0\n },\n // https://www.gnu.org/software/bash/manual/html_node/Shell-Builtin-Commands.html\n builtin: {\n 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;|&])/,\n lookbehind: !0,\n // Alias added to make those easier to distinguish from strings.\n alias: \"class-name\"\n },\n boolean: {\n pattern: /(^|[\\s;|&]|[<>]\\()(?:false|true)(?=$|[)\\s;|&])/,\n lookbehind: !0\n },\n \"file-descriptor\": {\n pattern: /\\B&\\d\\b/,\n alias: \"important\"\n },\n operator: {\n // Lots of redirections here, but not just that.\n pattern: /\\d?<>|>\\||\\+=|=[=~]?|!=?|<<[<-]?|[&\\d]?>>|\\d[<>]&?|[<>][&=]?|&[>&]?|\\|[&|]?/,\n inside: {\n \"file-descriptor\": {\n pattern: /^\\d/,\n alias: \"important\"\n }\n }\n },\n punctuation: /\\$?\\(\\(?|\\)\\)?|\\.\\.|[{}[\\];\\\\]/,\n number: {\n pattern: /(^|\\s)(?:[1-9]\\d*|0)(?:[.,]\\d+)?\\b/,\n lookbehind: !0\n }\n }, n.inside = t.languages.bash;\n for (var i = [\n \"comment\",\n \"function-name\",\n \"for-or-select\",\n \"assign-left\",\n \"string\",\n \"environment\",\n \"function\",\n \"keyword\",\n \"builtin\",\n \"boolean\",\n \"file-descriptor\",\n \"operator\",\n \"punctuation\",\n \"number\"\n ], l = a.variable[1].inside, u = 0; u < i.length; u++)\n l[i[u]] = t.languages.bash[i[u]];\n t.languages.shell = t.languages.bash;\n })(e);\n }\n o(Xs, \"bash\");\n});\n\n// ../node_modules/react-syntax-highlighter/dist/esm/languages/prism/bash.js\nvar Vf, jf, Wf = S(() => {\n Vf = Re($f()), jf = Vf.default;\n});\n\n// ../node_modules/react-syntax-highlighter/dist/esm/languages/prism/css.js\nvar qf, Uf, Gf = S(() => {\n qf = Re(Ws()), Uf = qf.default;\n});\n\n// ../node_modules/refractor/lang/graphql.js\nvar Xf = M((Tz, Yf) => {\n \"use strict\";\n Yf.exports = Ks;\n Ks.displayName = \"graphql\";\n Ks.aliases = [];\n function Ks(e) {\n e.languages.graphql = {\n comment: /#.*/,\n description: {\n pattern: /(?:\"\"\"(?:[^\"]|(?!\"\"\")\")*\"\"\"|\"(?:\\\\.|[^\\\\\"\\r\\n])*\")(?=\\s*[a-z_])/i,\n greedy: !0,\n alias: \"string\",\n inside: {\n \"language-markdown\": {\n pattern: /(^\"(?:\"\")?)(?!\\1)[\\s\\S]+(?=\\1$)/,\n lookbehind: !0,\n inside: e.languages.markdown\n }\n }\n },\n string: {\n pattern: /\"\"\"(?:[^\"]|(?!\"\"\")\")*\"\"\"|\"(?:\\\\.|[^\\\\\"\\r\\n])*\"/,\n greedy: !0\n },\n number: /(?:\\B-|\\b)\\d+(?:\\.\\d+)?(?:e[+-]?\\d+)?\\b/i,\n boolean: /\\b(?:false|true)\\b/,\n variable: /\\$[a-z_]\\w*/i,\n directive: {\n pattern: /@[a-z_]\\w*/i,\n alias: \"function\"\n },\n \"attr-name\": {\n pattern: /\\b[a-z_]\\w*(?=\\s*(?:\\((?:[^()\"]|\"(?:\\\\.|[^\\\\\"\\r\\n])*\")*\\))?:)/i,\n greedy: !0\n },\n \"atom-input\": {\n pattern: /\\b[A-Z]\\w*Input\\b/,\n alias: \"class-name\"\n },\n scalar: /\\b(?:Boolean|Float|ID|Int|String)\\b/,\n constant: /\\b[A-Z][A-Z_\\d]*\\b/,\n \"class-name\": {\n pattern: /(\\b(?:enum|implements|interface|on|scalar|type|union)\\s+|&\\s*|:\\s*|\\[)[A-Z_]\\w*/,\n lookbehind: !0\n },\n fragment: {\n pattern: /(\\bfragment\\s+|\\.{3}\\s*(?!on\\b))[a-zA-Z_]\\w*/,\n lookbehind: !0,\n alias: \"function\"\n },\n \"definition-mutation\": {\n pattern: /(\\bmutation\\s+)[a-zA-Z_]\\w*/,\n lookbehind: !0,\n alias: \"function\"\n },\n \"definition-query\": {\n pattern: /(\\bquery\\s+)[a-zA-Z_]\\w*/,\n lookbehind: !0,\n alias: \"function\"\n },\n keyword: /\\b(?:directive|enum|extend|fragment|implements|input|interface|mutation|on|query|repeatable|scalar|schema|subscription|type|union)\\b/,\n operator: /[!=|&]|\\.{3}/,\n \"property-query\": /\\w+(?=\\s*\\()/,\n object: /\\w+(?=\\s*\\{)/,\n punctuation: /[!(){}\\[\\]:=,]/,\n property: /\\w+/\n }, e.hooks.add(\"after-tokenize\", /* @__PURE__ */ o(function(r) {\n if (r.language !== \"graphql\")\n return;\n var n = r.tokens.filter(function(v) {\n return typeof v != \"string\" && v.type !== \"comment\" && v.type !== \"scalar\";\n }), a = 0;\n function i(v) {\n return n[a + v];\n }\n o(i, \"getToken\");\n function l(v, y) {\n y = y || 0;\n for (var b = 0; b < v.length; b++) {\n var D = i(b + y);\n if (!D || D.type !== v[b])\n return !1;\n }\n return !0;\n }\n o(l, \"isTokenType\");\n function u(v, y) {\n for (var b = 1, D = a; D < n.length; D++) {\n var x = n[D], C = x.content;\n if (x.type === \"punctuation\" && typeof C == \"string\") {\n if (v.test(C))\n b++;\n else if (y.test(C) && (b--, b === 0))\n return D;\n }\n }\n return -1;\n }\n o(u, \"findClosingBracket\");\n function c(v, y) {\n var b = v.alias;\n b ? Array.isArray(b) || (v.alias = b = [b]) : v.alias = b = [], b.push(y);\n }\n for (o(c, \"addAlias\"); a < n.length; ) {\n var p = n[a++];\n if (p.type === \"keyword\" && p.content === \"mutation\") {\n var d = [];\n if (l([\"definition-mutation\", \"punctuation\"]) && i(1).content === \"(\") {\n a += 2;\n var h = u(/^\\($/, /^\\)$/);\n if (h === -1)\n continue;\n for (; a < h; a++) {\n var f = i(0);\n f.type === \"variable\" && (c(f, \"variable-input\"), d.push(f.content));\n }\n a = h + 1;\n }\n if (l([\"punctuation\", \"property-query\"]) && i(0).content === \"{\" && (a++, c(i(0), \"property-mutation\"), d.length > 0)) {\n var g = u(/^\\{$/, /^\\}$/);\n if (g === -1)\n continue;\n for (var w = a; w < g; w++) {\n var m = n[w];\n m.type === \"variable\" && d.indexOf(m.content) >= 0 && c(m, \"variable-input\");\n }\n }\n }\n }\n }, \"afterTokenizeGraphql\"));\n }\n o(Ks, \"graphql\");\n});\n\n// ../node_modules/react-syntax-highlighter/dist/esm/languages/prism/graphql.js\nvar Kf, Zf, Jf = S(() => {\n Kf = Re(Xf()), Zf = Kf.default;\n});\n\n// ../node_modules/refractor/lang/js-extras.js\nvar e2 = M((Mz, Qf) => {\n \"use strict\";\n Qf.exports = Zs;\n Zs.displayName = \"jsExtras\";\n Zs.aliases = [];\n function Zs(e) {\n (function(t) {\n t.languages.insertBefore(\"javascript\", \"function-variable\", {\n \"method-variable\": {\n pattern: RegExp(\n \"(\\\\.\\\\s*)\" + t.languages.javascript[\"function-variable\"].pattern.source\n ),\n lookbehind: !0,\n alias: [\"function-variable\", \"method\", \"function\", \"property-access\"]\n }\n }), t.languages.insertBefore(\"javascript\", \"function\", {\n method: {\n pattern: RegExp(\n \"(\\\\.\\\\s*)\" + t.languages.javascript.function.source\n ),\n lookbehind: !0,\n alias: [\"function\", \"property-access\"]\n }\n }), t.languages.insertBefore(\"javascript\", \"constant\", {\n \"known-class-name\": [\n {\n // standard built-ins\n // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects\n 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/,\n alias: \"class-name\"\n },\n {\n // errors\n pattern: /\\b(?:[A-Z]\\w*)Error\\b/,\n alias: \"class-name\"\n }\n ]\n });\n function r(c, p) {\n return RegExp(\n c.replace(/<ID>/g, function() {\n return /(?!\\s)[_$a-zA-Z\\xA0-\\uFFFF](?:(?!\\s)[$\\w\\xA0-\\uFFFF])*/.source;\n }),\n p\n );\n }\n o(r, \"withId\"), t.languages.insertBefore(\"javascript\", \"keyword\", {\n imports: {\n // https://tc39.es/ecma262/#sec-imports\n pattern: r(\n /(\\bimport\\b\\s*)(?:<ID>(?:\\s*,\\s*(?:\\*\\s*as\\s+<ID>|\\{[^{}]*\\}))?|\\*\\s*as\\s+<ID>|\\{[^{}]*\\})(?=\\s*\\bfrom\\b)/.source\n ),\n lookbehind: !0,\n inside: t.languages.javascript\n },\n exports: {\n // https://tc39.es/ecma262/#sec-exports\n pattern: r(\n /(\\bexport\\b\\s*)(?:\\*(?:\\s*as\\s+<ID>)?(?=\\s*\\bfrom\\b)|\\{[^{}]*\\})/.source\n ),\n lookbehind: !0,\n inside: t.languages.javascript\n }\n }), t.languages.javascript.keyword.unshift(\n {\n pattern: /\\b(?:as|default|export|from|import)\\b/,\n alias: \"module\"\n },\n {\n pattern: /\\b(?:await|break|catch|continue|do|else|finally|for|if|return|switch|throw|try|while|yield)\\b/,\n alias: \"control-flow\"\n },\n {\n pattern: /\\bnull\\b/,\n alias: [\"null\", \"nil\"]\n },\n {\n pattern: /\\bundefined\\b/,\n alias: \"nil\"\n }\n ), t.languages.insertBefore(\"javascript\", \"operator\", {\n spread: {\n pattern: /\\.{3}/,\n alias: \"operator\"\n },\n arrow: {\n pattern: /=>/,\n alias: \"operator\"\n }\n }), t.languages.insertBefore(\"javascript\", \"punctuation\", {\n \"property-access\": {\n pattern: r(/(\\.\\s*)#?<ID>/.source),\n lookbehind: !0\n },\n \"maybe-class-name\": {\n pattern: /(^|[^$\\w\\xA0-\\uFFFF])[A-Z][$\\w\\xA0-\\uFFFF]+/,\n lookbehind: !0\n },\n dom: {\n // this contains only a few commonly used DOM variables\n pattern: /\\b(?:document|(?:local|session)Storage|location|navigator|performance|window)\\b/,\n alias: \"variable\"\n },\n console: {\n pattern: /\\bconsole(?=\\s*\\.)/,\n alias: \"class-name\"\n }\n });\n for (var n = [\n \"function\",\n \"function-variable\",\n \"method\",\n \"method-variable\",\n \"property-access\"\n ], a = 0; a < n.length; a++) {\n var i = n[a], l = t.languages.javascript[i];\n t.util.type(l) === \"RegExp\" && (l = t.languages.javascript[i] = {\n pattern: l\n });\n var u = l.inside || {};\n l.inside = u, u[\"maybe-class-name\"] = /^[A-Z][\\s\\S]*/;\n }\n })(e);\n }\n o(Zs, \"jsExtras\");\n});\n\n// ../node_modules/react-syntax-highlighter/dist/esm/languages/prism/js-extras.js\nvar t2, r2, n2 = S(() => {\n t2 = Re(e2()), r2 = t2.default;\n});\n\n// ../node_modules/refractor/lang/json.js\nvar o2 = M((Hz, a2) => {\n \"use strict\";\n a2.exports = Js;\n Js.displayName = \"json\";\n Js.aliases = [\"webmanifest\"];\n function Js(e) {\n e.languages.json = {\n property: {\n pattern: /(^|[^\\\\])\"(?:\\\\.|[^\\\\\"\\r\\n])*\"(?=\\s*:)/,\n lookbehind: !0,\n greedy: !0\n },\n string: {\n pattern: /(^|[^\\\\])\"(?:\\\\.|[^\\\\\"\\r\\n])*\"(?!\\s*:)/,\n lookbehind: !0,\n greedy: !0\n },\n comment: {\n pattern: /\\/\\/.*|\\/\\*[\\s\\S]*?(?:\\*\\/|$)/,\n greedy: !0\n },\n number: /-?\\b\\d+(?:\\.\\d+)?(?:e[+-]?\\d+)?\\b/i,\n punctuation: /[{}[\\],]/,\n operator: /:/,\n boolean: /\\b(?:false|true)\\b/,\n null: {\n pattern: /\\bnull\\b/,\n alias: \"keyword\"\n }\n }, e.languages.webmanifest = e.languages.json;\n }\n o(Js, \"json\");\n});\n\n// ../node_modules/react-syntax-highlighter/dist/esm/languages/prism/json.js\nvar i2, l2, s2 = S(() => {\n i2 = Re(o2()), l2 = i2.default;\n});\n\n// ../node_modules/refractor/lang/jsx.js\nvar eu = M((Nz, u2) => {\n \"use strict\";\n u2.exports = Qs;\n Qs.displayName = \"jsx\";\n Qs.aliases = [];\n function Qs(e) {\n (function(t) {\n var r = t.util.clone(t.languages.javascript), n = /(?:\\s|\\/\\/.*(?!.)|\\/\\*(?:[^*]|\\*(?!\\/))\\*\\/)/.source, a = /(?:\\{(?:\\{(?:\\{[^{}]*\\}|[^{}])*\\}|[^{}])*\\})/.\n source, i = /(?:\\{<S>*\\.{3}(?:[^{}]|<BRACES>)*\\})/.source;\n function l(p, d) {\n return p = p.replace(/<S>/g, function() {\n return n;\n }).replace(/<BRACES>/g, function() {\n return a;\n }).replace(/<SPREAD>/g, function() {\n return i;\n }), RegExp(p, d);\n }\n o(l, \"re\"), i = l(i).source, t.languages.jsx = t.languages.extend(\"markup\", r), t.languages.jsx.tag.pattern = l(\n /<\\/?(?:[\\w.:-]+(?:<S>+(?:[\\w.:$-]+(?:=(?:\"(?:\\\\[\\s\\S]|[^\\\\\"])*\"|'(?:\\\\[\\s\\S]|[^\\\\'])*'|[^\\s{'\"/>=]+|<BRACES>))?|<SPREAD>))*<S>*\\/?)?>/.\n source\n ), t.languages.jsx.tag.inside.tag.pattern = /^<\\/?[^\\s>\\/]*/, t.languages.jsx.tag.inside[\"attr-value\"].pattern = /=(?!\\{)(?:\"(?:\\\\[\\s\\S]|[^\\\\\"])*\"|'(?:\\\\[\\s\\S]|[^\\\\'])*'|[^\\s'\">]+)/,\n t.languages.jsx.tag.inside.tag.inside[\"class-name\"] = /^[A-Z]\\w*(?:\\.[A-Z]\\w*)*$/, t.languages.jsx.tag.inside.comment = r.comment, t.languages.\n insertBefore(\n \"inside\",\n \"attr-name\",\n {\n spread: {\n pattern: l(/<SPREAD>/.source),\n inside: t.languages.jsx\n }\n },\n t.languages.jsx.tag\n ), t.languages.insertBefore(\n \"inside\",\n \"special-attr\",\n {\n script: {\n // Allow for two levels of nesting\n pattern: l(/=<BRACES>/.source),\n alias: \"language-javascript\",\n inside: {\n \"script-punctuation\": {\n pattern: /^=(?=\\{)/,\n alias: \"punctuation\"\n },\n rest: t.languages.jsx\n }\n }\n },\n t.languages.jsx.tag\n );\n var u = /* @__PURE__ */ o(function(p) {\n return p ? typeof p == \"string\" ? p : typeof p.content == \"string\" ? p.content : p.content.map(u).join(\"\") : \"\";\n }, \"stringifyToken\"), c = /* @__PURE__ */ o(function(p) {\n for (var d = [], h = 0; h < p.length; h++) {\n var f = p[h], g = !1;\n if (typeof f != \"string\" && (f.type === \"tag\" && f.content[0] && f.content[0].type === \"tag\" ? f.content[0].content[0].content ===\n \"</\" ? d.length > 0 && d[d.length - 1].tagName === u(f.content[0].content[1]) && d.pop() : f.content[f.content.length - 1].content ===\n \"/>\" || d.push({\n tagName: u(f.content[0].content[1]),\n openedBraces: 0\n }) : d.length > 0 && f.type === \"punctuation\" && f.content === \"{\" ? d[d.length - 1].openedBraces++ : d.length > 0 && d[d.length -\n 1].openedBraces > 0 && f.type === \"punctuation\" && f.content === \"}\" ? d[d.length - 1].openedBraces-- : g = !0), (g || typeof f ==\n \"string\") && d.length > 0 && d[d.length - 1].openedBraces === 0) {\n var w = u(f);\n h < p.length - 1 && (typeof p[h + 1] == \"string\" || p[h + 1].type === \"plain-text\") && (w += u(p[h + 1]), p.splice(h + 1, 1)), h >\n 0 && (typeof p[h - 1] == \"string\" || p[h - 1].type === \"plain-text\") && (w = u(p[h - 1]) + w, p.splice(h - 1, 1), h--), p[h] = new t.\n Token(\n \"plain-text\",\n w,\n null,\n w\n );\n }\n f.content && typeof f.content != \"string\" && c(f.content);\n }\n }, \"walkTokens\");\n t.hooks.add(\"after-tokenize\", function(p) {\n p.language !== \"jsx\" && p.language !== \"tsx\" || c(p.tokens);\n });\n })(e);\n }\n o(Qs, \"jsx\");\n});\n\n// ../node_modules/react-syntax-highlighter/dist/esm/languages/prism/jsx.js\nvar c2, p2, d2 = S(() => {\n c2 = Re(eu()), p2 = c2.default;\n});\n\n// ../node_modules/refractor/lang/markdown.js\nvar h2 = M((jz, f2) => {\n \"use strict\";\n f2.exports = tu;\n tu.displayName = \"markdown\";\n tu.aliases = [\"md\"];\n function tu(e) {\n (function(t) {\n var r = /(?:\\\\.|[^\\\\\\n\\r]|(?:\\n|\\r\\n?)(?![\\r\\n]))/.source;\n function n(h) {\n return h = h.replace(/<inner>/g, function() {\n return r;\n }), RegExp(/((?:^|[^\\\\])(?:\\\\{2})*)/.source + \"(?:\" + h + \")\");\n }\n o(n, \"createInline\");\n var a = /(?:\\\\.|``(?:[^`\\r\\n]|`(?!`))+``|`[^`\\r\\n]+`|[^\\\\|\\r\\n`])+/.source, i = /\\|?__(?:\\|__)+\\|?(?:(?:\\n|\\r\\n?)|(?![\\s\\S]))/.source.\n replace(\n /__/g,\n function() {\n return a;\n }\n ), l = /\\|?[ \\t]*:?-{3,}:?[ \\t]*(?:\\|[ \\t]*:?-{3,}:?[ \\t]*)+\\|?(?:\\n|\\r\\n?)/.source;\n t.languages.markdown = t.languages.extend(\"markup\", {}), t.languages.insertBefore(\"markdown\", \"prolog\", {\n \"front-matter-block\": {\n pattern: /(^(?:\\s*[\\r\\n])?)---(?!.)[\\s\\S]*?[\\r\\n]---(?!.)/,\n lookbehind: !0,\n greedy: !0,\n inside: {\n punctuation: /^---|---$/,\n \"front-matter\": {\n pattern: /\\S+(?:\\s+\\S+)*/,\n alias: [\"yaml\", \"language-yaml\"],\n inside: t.languages.yaml\n }\n }\n },\n blockquote: {\n // > ...\n pattern: /^>(?:[\\t ]*>)*/m,\n alias: \"punctuation\"\n },\n table: {\n pattern: RegExp(\n \"^\" + i + l + \"(?:\" + i + \")*\",\n \"m\"\n ),\n inside: {\n \"table-data-rows\": {\n pattern: RegExp(\n \"^(\" + i + l + \")(?:\" + i + \")*$\"\n ),\n lookbehind: !0,\n inside: {\n \"table-data\": {\n pattern: RegExp(a),\n inside: t.languages.markdown\n },\n punctuation: /\\|/\n }\n },\n \"table-line\": {\n pattern: RegExp(\"^(\" + i + \")\" + l + \"$\"),\n lookbehind: !0,\n inside: {\n punctuation: /\\||:?-{3,}:?/\n }\n },\n \"table-header-row\": {\n pattern: RegExp(\"^\" + i + \"$\"),\n inside: {\n \"table-header\": {\n pattern: RegExp(a),\n alias: \"important\",\n inside: t.languages.markdown\n },\n punctuation: /\\|/\n }\n }\n }\n },\n code: [\n {\n // Prefixed by 4 spaces or 1 tab and preceded by an empty line\n pattern: /((?:^|\\n)[ \\t]*\\n|(?:^|\\r\\n?)[ \\t]*\\r\\n?)(?: {4}|\\t).+(?:(?:\\n|\\r\\n?)(?: {4}|\\t).+)*/,\n lookbehind: !0,\n alias: \"keyword\"\n },\n {\n // ```optional language\n // code block\n // ```\n pattern: /^```[\\s\\S]*?^```$/m,\n greedy: !0,\n inside: {\n \"code-block\": {\n pattern: /^(```.*(?:\\n|\\r\\n?))[\\s\\S]+?(?=(?:\\n|\\r\\n?)^```$)/m,\n lookbehind: !0\n },\n \"code-language\": {\n pattern: /^(```).+/,\n lookbehind: !0\n },\n punctuation: /```/\n }\n }\n ],\n title: [\n {\n // title 1\n // =======\n // title 2\n // -------\n pattern: /\\S.*(?:\\n|\\r\\n?)(?:==+|--+)(?=[ \\t]*$)/m,\n alias: \"important\",\n inside: {\n punctuation: /==+$|--+$/\n }\n },\n {\n // # title 1\n // ###### title 6\n pattern: /(^\\s*)#.+/m,\n lookbehind: !0,\n alias: \"important\",\n inside: {\n punctuation: /^#+|#+$/\n }\n }\n ],\n hr: {\n // ***\n // ---\n // * * *\n // -----------\n pattern: /(^\\s*)([*-])(?:[\\t ]*\\2){2,}(?=\\s*$)/m,\n lookbehind: !0,\n alias: \"punctuation\"\n },\n list: {\n // * item\n // + item\n // - item\n // 1. item\n pattern: /(^\\s*)(?:[*+-]|\\d+\\.)(?=[\\t ].)/m,\n lookbehind: !0,\n alias: \"punctuation\"\n },\n \"url-reference\": {\n // [id]: http://example.com \"Optional title\"\n // [id]: http://example.com 'Optional title'\n // [id]: http://example.com (Optional title)\n // [id]: <http://example.com> \"Optional title\"\n pattern: /!?\\[[^\\]]+\\]:[\\t ]+(?:\\S+|<(?:\\\\.|[^>\\\\])+>)(?:[\\t ]+(?:\"(?:\\\\.|[^\"\\\\])*\"|'(?:\\\\.|[^'\\\\])*'|\\((?:\\\\.|[^)\\\\])*\\)))?/,\n inside: {\n variable: {\n pattern: /^(!?\\[)[^\\]]+/,\n lookbehind: !0\n },\n string: /(?:\"(?:\\\\.|[^\"\\\\])*\"|'(?:\\\\.|[^'\\\\])*'|\\((?:\\\\.|[^)\\\\])*\\))$/,\n punctuation: /^[\\[\\]!:]|[<>]/\n },\n alias: \"url\"\n },\n bold: {\n // **strong**\n // __strong__\n // allow one nested instance of italic text using the same delimiter\n pattern: n(\n /\\b__(?:(?!_)<inner>|_(?:(?!_)<inner>)+_)+__\\b|\\*\\*(?:(?!\\*)<inner>|\\*(?:(?!\\*)<inner>)+\\*)+\\*\\*/.source\n ),\n lookbehind: !0,\n greedy: !0,\n inside: {\n content: {\n pattern: /(^..)[\\s\\S]+(?=..$)/,\n lookbehind: !0,\n inside: {}\n // see below\n },\n punctuation: /\\*\\*|__/\n }\n },\n italic: {\n // *em*\n // _em_\n // allow one nested instance of bold text using the same delimiter\n pattern: n(\n /\\b_(?:(?!_)<inner>|__(?:(?!_)<inner>)+__)+_\\b|\\*(?:(?!\\*)<inner>|\\*\\*(?:(?!\\*)<inner>)+\\*\\*)+\\*/.source\n ),\n lookbehind: !0,\n greedy: !0,\n inside: {\n content: {\n pattern: /(^.)[\\s\\S]+(?=.$)/,\n lookbehind: !0,\n inside: {}\n // see below\n },\n punctuation: /[*_]/\n }\n },\n strike: {\n // ~~strike through~~\n // ~strike~\n // eslint-disable-next-line regexp/strict\n pattern: n(/(~~?)(?:(?!~)<inner>)+\\2/.source),\n lookbehind: !0,\n greedy: !0,\n inside: {\n content: {\n pattern: /(^~~?)[\\s\\S]+(?=\\1$)/,\n lookbehind: !0,\n inside: {}\n // see below\n },\n punctuation: /~~?/\n }\n },\n \"code-snippet\": {\n // `code`\n // ``code``\n pattern: /(^|[^\\\\`])(?:``[^`\\r\\n]+(?:`[^`\\r\\n]+)*``(?!`)|`[^`\\r\\n]+`(?!`))/,\n lookbehind: !0,\n greedy: !0,\n alias: [\"code\", \"keyword\"]\n },\n url: {\n // [example](http://example.com \"Optional title\")\n // [example][id]\n // [example] [id]\n pattern: n(\n /!?\\[(?:(?!\\])<inner>)+\\](?:\\([^\\s)]+(?:[\\t ]+\"(?:\\\\.|[^\"\\\\])*\")?\\)|[ \\t]?\\[(?:(?!\\])<inner>)+\\])/.source\n ),\n lookbehind: !0,\n greedy: !0,\n inside: {\n operator: /^!/,\n content: {\n pattern: /(^\\[)[^\\]]+(?=\\])/,\n lookbehind: !0,\n inside: {}\n // see below\n },\n variable: {\n pattern: /(^\\][ \\t]?\\[)[^\\]]+(?=\\]$)/,\n lookbehind: !0\n },\n url: {\n pattern: /(^\\]\\()[^\\s)]+/,\n lookbehind: !0\n },\n string: {\n pattern: /(^[ \\t]+)\"(?:\\\\.|[^\"\\\\])*\"(?=\\)$)/,\n lookbehind: !0\n }\n }\n }\n }), [\"url\", \"bold\", \"italic\", \"strike\"].forEach(function(h) {\n [\"url\", \"bold\", \"italic\", \"strike\", \"code-snippet\"].forEach(function(f) {\n h !== f && (t.languages.markdown[h].inside.content.inside[f] = t.languages.markdown[f]);\n });\n }), t.hooks.add(\"after-tokenize\", function(h) {\n if (h.language !== \"markdown\" && h.language !== \"md\")\n return;\n function f(g) {\n if (!(!g || typeof g == \"string\"))\n for (var w = 0, m = g.length; w < m; w++) {\n var v = g[w];\n if (v.type !== \"code\") {\n f(v.content);\n continue;\n }\n var y = v.content[1], b = v.content[3];\n if (y && b && y.type === \"code-language\" && b.type === \"code-block\" && typeof y.content == \"string\") {\n var D = y.content.replace(/\\b#/g, \"sharp\").replace(/\\b\\+\\+/g, \"pp\");\n D = (/[a-z][\\w-]*/i.exec(D) || [\"\"])[0].toLowerCase();\n var x = \"language-\" + D;\n b.alias ? typeof b.alias == \"string\" ? b.alias = [b.alias, x] : b.alias.push(x) : b.alias = [x];\n }\n }\n }\n o(f, \"walkTokens\"), f(h.tokens);\n }), t.hooks.add(\"wrap\", function(h) {\n if (h.type === \"code-block\") {\n for (var f = \"\", g = 0, w = h.classes.length; g < w; g++) {\n var m = h.classes[g], v = /language-(.+)/.exec(m);\n if (v) {\n f = v[1];\n break;\n }\n }\n var y = t.languages[f];\n if (y)\n h.content = t.highlight(\n d(h.content.value),\n y,\n f\n );\n else if (f && f !== \"none\" && t.plugins.autoloader) {\n var b = \"md-\" + (/* @__PURE__ */ new Date()).valueOf() + \"-\" + Math.floor(Math.random() * 1e16);\n h.attributes.id = b, t.plugins.autoloader.loadLanguages(f, function() {\n var D = document.getElementById(b);\n D && (D.innerHTML = t.highlight(\n D.textContent,\n t.languages[f],\n f\n ));\n });\n }\n }\n });\n var u = RegExp(t.languages.markup.tag.pattern.source, \"gi\"), c = {\n amp: \"&\",\n lt: \"<\",\n gt: \">\",\n quot: '\"'\n }, p = String.fromCodePoint || String.fromCharCode;\n function d(h) {\n var f = h.replace(u, \"\");\n return f = f.replace(/&(\\w{1,8}|#x?[\\da-f]{1,8});/gi, function(g, w) {\n if (w = w.toLowerCase(), w[0] === \"#\") {\n var m;\n return w[1] === \"x\" ? m = parseInt(w.slice(2), 16) : m = Number(w.slice(1)), p(m);\n } else {\n var v = c[w];\n return v || g;\n }\n }), f;\n }\n o(d, \"textContent\"), t.languages.md = t.languages.markdown;\n })(e);\n }\n o(tu, \"markdown\");\n});\n\n// ../node_modules/react-syntax-highlighter/dist/esm/languages/prism/markdown.js\nvar m2, g2, v2 = S(() => {\n m2 = Re(h2()), g2 = m2.default;\n});\n\n// ../node_modules/react-syntax-highlighter/dist/esm/languages/prism/markup.js\nvar w2, b2, y2 = S(() => {\n w2 = Re(Vs()), b2 = w2.default;\n});\n\n// ../node_modules/refractor/lang/typescript.js\nvar nu = M((Gz, D2) => {\n \"use strict\";\n D2.exports = ru;\n ru.displayName = \"typescript\";\n ru.aliases = [\"ts\"];\n function ru(e) {\n (function(t) {\n t.languages.typescript = t.languages.extend(\"javascript\", {\n \"class-name\": {\n pattern: /(\\b(?:class|extends|implements|instanceof|interface|new|type)\\s+)(?!keyof\\b)(?!\\s)[_$a-zA-Z\\xA0-\\uFFFF](?:(?!\\s)[$\\w\\xA0-\\uFFFF])*(?:\\s*<(?:[^<>]|<(?:[^<>]|<[^<>]*>)*>)*>)?/,\n lookbehind: !0,\n greedy: !0,\n inside: null\n // see below\n },\n builtin: /\\b(?:Array|Function|Promise|any|boolean|console|never|number|string|symbol|unknown)\\b/\n }), t.languages.typescript.keyword.push(\n /\\b(?:abstract|declare|is|keyof|readonly|require)\\b/,\n // keywords that have to be followed by an identifier\n /\\b(?:asserts|infer|interface|module|namespace|type)\\b(?=\\s*(?:[{_$a-zA-Z\\xA0-\\uFFFF]|$))/,\n // This is for `import type *, {}`\n /\\btype\\b(?=\\s*(?:[\\{*]|$))/\n ), delete t.languages.typescript.parameter, delete t.languages.typescript[\"literal-property\"];\n var r = t.languages.extend(\"typescript\", {});\n delete r[\"class-name\"], t.languages.typescript[\"class-name\"].inside = r, t.languages.insertBefore(\"typescript\", \"function\", {\n decorator: {\n pattern: /@[$\\w\\xA0-\\uFFFF]+/,\n inside: {\n at: {\n pattern: /^@/,\n alias: \"operator\"\n },\n function: /^[\\s\\S]+/\n }\n },\n \"generic-function\": {\n // e.g. foo<T extends \"bar\" | \"baz\">( ...\n pattern: /#?(?!\\s)[_$a-zA-Z\\xA0-\\uFFFF](?:(?!\\s)[$\\w\\xA0-\\uFFFF])*\\s*<(?:[^<>]|<(?:[^<>]|<[^<>]*>)*>)*>(?=\\s*\\()/,\n greedy: !0,\n inside: {\n function: /^#?(?!\\s)[_$a-zA-Z\\xA0-\\uFFFF](?:(?!\\s)[$\\w\\xA0-\\uFFFF])*/,\n generic: {\n pattern: /<[\\s\\S]+/,\n // everything after the first <\n alias: \"class-name\",\n inside: r\n }\n }\n }\n }), t.languages.ts = t.languages.typescript;\n })(e);\n }\n o(ru, \"typescript\");\n});\n\n// ../node_modules/refractor/lang/tsx.js\nvar C2 = M((Xz, x2) => {\n \"use strict\";\n var M6 = eu(), _6 = nu();\n x2.exports = au;\n au.displayName = \"tsx\";\n au.aliases = [];\n function au(e) {\n e.register(M6), e.register(_6), function(t) {\n var r = t.util.clone(t.languages.typescript);\n t.languages.tsx = t.languages.extend(\"jsx\", r), delete t.languages.tsx.parameter, delete t.languages.tsx[\"literal-property\"];\n var n = t.languages.tsx.tag;\n n.pattern = RegExp(\n /(^|[^\\w$]|(?=<\\/))/.source + \"(?:\" + n.pattern.source + \")\",\n n.pattern.flags\n ), n.lookbehind = !0;\n }(e);\n }\n o(au, \"tsx\");\n});\n\n// ../node_modules/react-syntax-highlighter/dist/esm/languages/prism/tsx.js\nvar E2, R2, S2 = S(() => {\n E2 = Re(C2()), R2 = E2.default;\n});\n\n// ../node_modules/react-syntax-highlighter/dist/esm/languages/prism/typescript.js\nvar A2, F2, k2 = S(() => {\n A2 = Re(nu()), F2 = A2.default;\n});\n\n// ../node_modules/refractor/lang/yaml.js\nvar T2 = M((Qz, L2) => {\n \"use strict\";\n L2.exports = ou;\n ou.displayName = \"yaml\";\n ou.aliases = [\"yml\"];\n function ou(e) {\n (function(t) {\n var r = /[*&][^\\s[\\]{},]+/, n = /!(?:<[\\w\\-%#;/?:@&=+$,.!~*'()[\\]]+>|(?:[a-zA-Z\\d-]*!)?[\\w\\-%#;/?:@&=+$.~*'()]+)?/, a = \"(?:\" + n.source +\n \"(?:[ \t]+\" + r.source + \")?|\" + r.source + \"(?:[ \t]+\" + n.source + \")?)\", i = /(?:[^\\s\\x00-\\x08\\x0e-\\x1f!\"#%&'*,\\-:>?@[\\]`{|}\\x7f-\\x84\\x86-\\x9f\\ud800-\\udfff\\ufffe\\uffff]|[?:-]<PLAIN>)(?:[ \\t]*(?:(?![#:])<PLAIN>|:<PLAIN>))*/.\n source.replace(\n /<PLAIN>/g,\n function() {\n return /[^\\s\\x00-\\x08\\x0e-\\x1f,[\\]{}\\x7f-\\x84\\x86-\\x9f\\ud800-\\udfff\\ufffe\\uffff]/.source;\n }\n ), l = /\"(?:[^\"\\\\\\r\\n]|\\\\.)*\"|'(?:[^'\\\\\\r\\n]|\\\\.)*'/.source;\n function u(c, p) {\n p = (p || \"\").replace(/m/g, \"\") + \"m\";\n var d = /([:\\-,[{]\\s*(?:\\s<<prop>>[ \\t]+)?)(?:<<value>>)(?=[ \\t]*(?:$|,|\\]|\\}|(?:[\\r\\n]\\s*)?#))/.source.replace(/<<prop>>/g, function() {\n return a;\n }).replace(/<<value>>/g, function() {\n return c;\n });\n return RegExp(d, p);\n }\n o(u, \"createValuePattern\"), t.languages.yaml = {\n scalar: {\n pattern: RegExp(\n /([\\-:]\\s*(?:\\s<<prop>>[ \\t]+)?[|>])[ \\t]*(?:((?:\\r?\\n|\\r)[ \\t]+)\\S[^\\r\\n]*(?:\\2[^\\r\\n]+)*)/.source.replace(\n /<<prop>>/g,\n function() {\n return a;\n }\n )\n ),\n lookbehind: !0,\n alias: \"string\"\n },\n comment: /#.*/,\n key: {\n pattern: RegExp(\n /((?:^|[:\\-,[{\\r\\n?])[ \\t]*(?:<<prop>>[ \\t]+)?)<<key>>(?=\\s*:\\s)/.source.replace(/<<prop>>/g, function() {\n return a;\n }).replace(/<<key>>/g, function() {\n return \"(?:\" + i + \"|\" + l + \")\";\n })\n ),\n lookbehind: !0,\n greedy: !0,\n alias: \"atrule\"\n },\n directive: {\n pattern: /(^[ \\t]*)%.+/m,\n lookbehind: !0,\n alias: \"important\"\n },\n datetime: {\n pattern: u(\n /\\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*)?)?/.\n source\n ),\n lookbehind: !0,\n alias: \"number\"\n },\n boolean: {\n pattern: u(/false|true/.source, \"i\"),\n lookbehind: !0,\n alias: \"important\"\n },\n null: {\n pattern: u(/null|~/.source, \"i\"),\n lookbehind: !0,\n alias: \"important\"\n },\n string: {\n pattern: u(l),\n lookbehind: !0,\n greedy: !0\n },\n number: {\n pattern: u(\n /[+-]?(?:0x[\\da-f]+|0o[0-7]+|(?:\\d+(?:\\.\\d*)?|\\.\\d+)(?:e[+-]?\\d+)?|\\.inf|\\.nan)/.source,\n \"i\"\n ),\n lookbehind: !0\n },\n tag: n,\n important: r,\n punctuation: /---|[:[\\]{}\\-,|>?]|\\.\\.\\./\n }, t.languages.yml = t.languages.yaml;\n })(e);\n }\n o(ou, \"yaml\");\n});\n\n// ../node_modules/react-syntax-highlighter/dist/esm/languages/prism/yaml.js\nvar I2, B2, M2 = S(() => {\n I2 = Re(T2()), B2 = I2.default;\n});\n\n// src/components/components/ActionBar/ActionBar.tsx\nimport _2 from \"react\";\nimport { styled as P2 } from \"@storybook/core/theming\";\nvar P6, H2, iu, lu = S(() => {\n \"use strict\";\n P6 = P2.div(({ theme: e }) => ({\n position: \"absolute\",\n bottom: 0,\n right: 0,\n maxWidth: \"100%\",\n display: \"flex\",\n background: e.background.content,\n zIndex: 1\n })), H2 = P2.button(\n ({ theme: e }) => ({\n margin: 0,\n border: \"0 none\",\n padding: \"4px 10px\",\n cursor: \"pointer\",\n display: \"flex\",\n alignItems: \"center\",\n color: e.color.defaultText,\n background: e.background.content,\n fontSize: 12,\n lineHeight: \"16px\",\n fontFamily: e.typography.fonts.base,\n fontWeight: e.typography.weight.bold,\n borderTop: `1px solid ${e.appBorderColor}`,\n borderLeft: `1px solid ${e.appBorderColor}`,\n marginLeft: -1,\n borderRadius: \"4px 0 0 0\",\n \"&:not(:last-child)\": { borderRight: `1px solid ${e.appBorderColor}` },\n \"& + *\": {\n borderLeft: `1px solid ${e.appBorderColor}`,\n borderRadius: 0\n },\n \"&:focus\": {\n boxShadow: `${e.color.secondary} 0 -3px 0 0 inset`,\n outline: \"0 none\"\n }\n }),\n ({ disabled: e }) => e && {\n cursor: \"not-allowed\",\n opacity: 0.5\n }\n );\n H2.displayName = \"ActionButton\";\n iu = /* @__PURE__ */ o(({ actionItems: e, ...t }) => /* @__PURE__ */ _2.createElement(P6, { ...t }, e.map(({ title: r, className: n, onClick: a,\n disabled: i }, l) => /* @__PURE__ */ _2.createElement(H2, { key: l, className: n, onClick: a, disabled: !!i }, r))), \"ActionBar\");\n});\n\n// ../node_modules/@radix-ui/react-compose-refs/dist/index.mjs\nimport * as z2 from \"react\";\nfunction H6(e, t) {\n typeof e == \"function\" ? e(t) : e != null && (e.current = t);\n}\nfunction go(...e) {\n return (t) => e.forEach((r) => H6(r, t));\n}\nfunction se(...e) {\n return z2.useCallback(go(...e), e);\n}\nvar Ht = S(() => {\n o(H6, \"setRef\");\n o(go, \"composeRefs\");\n o(se, \"useComposedRefs\");\n});\n\n// ../node_modules/@radix-ui/react-primitive/node_modules/@radix-ui/react-slot/dist/index.mjs\nimport * as Se from \"react\";\nimport { Fragment as z6, jsx as su } from \"react/jsx-runtime\";\nfunction N6(e) {\n return Se.isValidElement(e) && e.type === O6;\n}\nfunction $6(e, t) {\n let r = { ...t };\n for (let n in t) {\n let a = e[n], i = t[n];\n /^on[A-Z]/.test(n) ? a && i ? r[n] = (...u) => {\n i(...u), a(...u);\n } : a && (r[n] = a) : n === \"style\" ? r[n] = { ...a, ...i } : n === \"className\" && (r[n] = [a, i].filter(Boolean).join(\" \"));\n }\n return { ...e, ...r };\n}\nfunction V6(e) {\n let t = Object.getOwnPropertyDescriptor(e.props, \"ref\")?.get, r = t && \"isReactWarning\" in t && t.isReactWarning;\n return r ? e.ref : (t = Object.getOwnPropertyDescriptor(e, \"ref\")?.get, r = t && \"isReactWarning\" in t && t.isReactWarning, r ? e.props.ref :\n e.props.ref || e.ref);\n}\nvar cu, uu, O6, O2 = S(() => {\n Ht();\n cu = Se.forwardRef((e, t) => {\n let { children: r, ...n } = e, a = Se.Children.toArray(r), i = a.find(N6);\n if (i) {\n let l = i.props.children, u = a.map((c) => c === i ? Se.Children.count(l) > 1 ? Se.Children.only(null) : Se.isValidElement(l) ? l.props.\n children : null : c);\n return /* @__PURE__ */ su(uu, { ...n, ref: t, children: Se.isValidElement(l) ? Se.cloneElement(l, void 0, u) : null });\n }\n return /* @__PURE__ */ su(uu, { ...n, ref: t, children: r });\n });\n cu.displayName = \"Slot\";\n uu = Se.forwardRef((e, t) => {\n let { children: r, ...n } = e;\n if (Se.isValidElement(r)) {\n let a = V6(r);\n return Se.cloneElement(r, {\n ...$6(n, r.props),\n // @ts-ignore\n ref: t ? go(t, a) : a\n });\n }\n return Se.Children.count(r) > 1 ? Se.Children.only(null) : null;\n });\n uu.displayName = \"SlotClone\";\n O6 = /* @__PURE__ */ o(({ children: e }) => /* @__PURE__ */ su(z6, { children: e }), \"Slottable\");\n o(N6, \"isSlottable\");\n o($6, \"mergeProps\");\n o(V6, \"getElementRef\");\n});\n\n// ../node_modules/@radix-ui/react-primitive/dist/index.mjs\nimport * as N2 from \"react\";\nimport * as $2 from \"react-dom\";\nimport { jsx as j6 } from \"react/jsx-runtime\";\nfunction V2(e, t) {\n e && $2.flushSync(() => e.dispatchEvent(t));\n}\nvar W6, pe, Dn = S(() => {\n O2();\n W6 = [\n \"a\",\n \"button\",\n \"div\",\n \"form\",\n \"h2\",\n \"h3\",\n \"img\",\n \"input\",\n \"label\",\n \"li\",\n \"nav\",\n \"ol\",\n \"p\",\n \"span\",\n \"svg\",\n \"ul\"\n ], pe = W6.reduce((e, t) => {\n let r = N2.forwardRef((n, a) => {\n let { asChild: i, ...l } = n, u = i ? cu : t;\n return typeof window < \"u\" && (window[Symbol.for(\"radix-ui\")] = !0), /* @__PURE__ */ j6(u, { ...l, ref: a });\n });\n return r.displayName = `Primitive.${t}`, { ...e, [t]: r };\n }, {});\n o(V2, \"dispatchDiscreteCustomEvent\");\n});\n\n// ../node_modules/@radix-ui/react-use-layout-effect/dist/index.mjs\nimport * as j2 from \"react\";\nvar rt, xn = S(() => {\n rt = globalThis?.document ? j2.useLayoutEffect : () => {\n };\n});\n\n// ../node_modules/@radix-ui/react-scroll-area/node_modules/@radix-ui/react-presence/dist/index.mjs\nimport * as je from \"react\";\nimport * as W2 from \"react-dom\";\nimport * as q2 from \"react\";\nfunction q6(e, t) {\n return q2.useReducer((r, n) => t[r][n] ?? r, e);\n}\nfunction U6(e) {\n let [t, r] = je.useState(), n = je.useRef({}), a = je.useRef(e), i = je.useRef(\"none\"), l = e ? \"mounted\" : \"unmounted\", [u, c] = q6(l, {\n mounted: {\n UNMOUNT: \"unmounted\",\n ANIMATION_OUT: \"unmountSuspended\"\n },\n unmountSuspended: {\n MOUNT: \"mounted\",\n ANIMATION_END: \"unmounted\"\n },\n unmounted: {\n MOUNT: \"mounted\"\n }\n });\n return je.useEffect(() => {\n let p = xi(n.current);\n i.current = u === \"mounted\" ? p : \"none\";\n }, [u]), rt(() => {\n let p = n.current, d = a.current;\n if (d !== e) {\n let f = i.current, g = xi(p);\n e ? c(\"MOUNT\") : g === \"none\" || p?.display === \"none\" ? c(\"UNMOUNT\") : c(d && f !== g ? \"ANIMATION_OUT\" : \"UNMOUNT\"), a.current = e;\n }\n }, [e, c]), rt(() => {\n if (t) {\n let p = /* @__PURE__ */ o((h) => {\n let g = xi(n.current).includes(h.animationName);\n h.target === t && g && W2.flushSync(() => c(\"ANIMATION_END\"));\n }, \"handleAnimationEnd\"), d = /* @__PURE__ */ o((h) => {\n h.target === t && (i.current = xi(n.current));\n }, \"handleAnimationStart\");\n return t.addEventListener(\"animationstart\", d), t.addEventListener(\"animationcancel\", p), t.addEventListener(\"animationend\", p), () => {\n t.removeEventListener(\"animationstart\", d), t.removeEventListener(\"animationcancel\", p), t.removeEventListener(\"animationend\", p);\n };\n } else\n c(\"ANIMATION_END\");\n }, [t, c]), {\n isPresent: [\"mounted\", \"unmountSuspended\"].includes(u),\n ref: je.useCallback((p) => {\n p && (n.current = getComputedStyle(p)), r(p);\n }, [])\n };\n}\nfunction xi(e) {\n return e?.animationName || \"none\";\n}\nfunction G6(e) {\n let t = Object.getOwnPropertyDescriptor(e.props, \"ref\")?.get, r = t && \"isReactWarning\" in t && t.isReactWarning;\n return r ? e.ref : (t = Object.getOwnPropertyDescriptor(e, \"ref\")?.get, r = t && \"isReactWarning\" in t && t.isReactWarning, r ? e.props.ref :\n e.props.ref || e.ref);\n}\nvar Cn, U2 = S(() => {\n \"use client\";\n Ht();\n xn();\n o(q6, \"useStateMachine\");\n Cn = /* @__PURE__ */ o((e) => {\n let { present: t, children: r } = e, n = U6(t), a = typeof r == \"function\" ? r({ present: n.isPresent }) : je.Children.only(r), i = se(n.\n ref, G6(a));\n return typeof r == \"function\" || n.isPresent ? je.cloneElement(a, { ref: i }) : null;\n }, \"Presence\");\n Cn.displayName = \"Presence\";\n o(U6, \"usePresence\");\n o(xi, \"getAnimationName\");\n o(G6, \"getElementRef\");\n});\n\n// ../node_modules/@radix-ui/react-scroll-area/node_modules/@radix-ui/react-context/dist/index.mjs\nimport * as zt from \"react\";\nimport { jsx as Y6 } from \"react/jsx-runtime\";\nfunction G2(e, t = []) {\n let r = [];\n function n(i, l) {\n let u = zt.createContext(l), c = r.length;\n r = [...r, l];\n function p(h) {\n let { scope: f, children: g, ...w } = h, m = f?.[e][c] || u, v = zt.useMemo(() => w, Object.values(w));\n return /* @__PURE__ */ Y6(m.Provider, { value: v, children: g });\n }\n o(p, \"Provider\");\n function d(h, f) {\n let g = f?.[e][c] || u, w = zt.useContext(g);\n if (w) return w;\n if (l !== void 0) return l;\n throw new Error(`\\`${h}\\` must be used within \\`${i}\\``);\n }\n return o(d, \"useContext2\"), p.displayName = i + \"Provider\", [p, d];\n }\n o(n, \"createContext3\");\n let a = /* @__PURE__ */ o(() => {\n let i = r.map((l) => zt.createContext(l));\n return /* @__PURE__ */ o(function(u) {\n let c = u?.[e] || i;\n return zt.useMemo(\n () => ({ [`__scope${e}`]: { ...u, [e]: c } }),\n [u, c]\n );\n }, \"useScope\");\n }, \"createScope\");\n return a.scopeName = e, [n, X6(a, ...t)];\n}\nfunction X6(...e) {\n let t = e[0];\n if (e.length === 1) return t;\n let r = /* @__PURE__ */ o(() => {\n let n = e.map((a) => ({\n useScope: a(),\n scopeName: a.scopeName\n }));\n return /* @__PURE__ */ o(function(i) {\n let l = n.reduce((u, { useScope: c, scopeName: p }) => {\n let h = c(i)[`__scope${p}`];\n return { ...u, ...h };\n }, {});\n return zt.useMemo(() => ({ [`__scope${t.scopeName}`]: l }), [l]);\n }, \"useComposedScopes\");\n }, \"createScope\");\n return r.scopeName = t.scopeName, r;\n}\nvar Y2 = S(() => {\n o(G2, \"createContextScope\");\n o(X6, \"composeContextScopes\");\n});\n\n// ../node_modules/@radix-ui/react-use-callback-ref/dist/index.mjs\nimport * as En from \"react\";\nfunction de(e) {\n let t = En.useRef(e);\n return En.useEffect(() => {\n t.current = e;\n }), En.useMemo(() => (...r) => t.current?.(...r), []);\n}\nvar Rn = S(() => {\n o(de, \"useCallbackRef\");\n});\n\n// ../node_modules/@radix-ui/react-direction/dist/index.mjs\nimport * as Ci from \"react\";\nimport { jsx as AO } from \"react/jsx-runtime\";\nfunction X2(e) {\n let t = Ci.useContext(K6);\n return e || t || \"ltr\";\n}\nvar K6, K2 = S(() => {\n K6 = Ci.createContext(void 0);\n o(X2, \"useDirection\");\n});\n\n// ../node_modules/@radix-ui/number/dist/index.mjs\nfunction Z2(e, [t, r]) {\n return Math.min(r, Math.max(t, e));\n}\nvar J2 = S(() => {\n o(Z2, \"clamp\");\n});\n\n// ../node_modules/@radix-ui/primitive/dist/index.mjs\nfunction be(e, t, { checkForDefaultPrevented: r = !0 } = {}) {\n return /* @__PURE__ */ o(function(a) {\n if (e?.(a), r === !1 || !a.defaultPrevented)\n return t?.(a);\n }, \"handleEvent\");\n}\nvar Ei = S(() => {\n o(be, \"composeEventHandlers\");\n});\n\n// ../node_modules/@radix-ui/react-scroll-area/dist/index.mjs\nimport * as L from \"react\";\nimport * as eh from \"react\";\nimport { Fragment as J6, jsx as G, jsxs as Q6 } from \"react/jsx-runtime\";\nfunction Z6(e, t) {\n return eh.useReducer((r, n) => t[r][n] ?? r, e);\n}\nfunction Si(e) {\n return e ? parseInt(e, 10) : 0;\n}\nfunction ph(e, t) {\n let r = e / t;\n return isNaN(r) ? 0 : r;\n}\nfunction Ai(e) {\n let t = ph(e.viewport, e.content), r = e.scrollbar.paddingStart + e.scrollbar.paddingEnd, n = (e.scrollbar.size - r) * t;\n return Math.max(n, 18);\n}\nfunction sb(e, t, r, n = \"ltr\") {\n let a = Ai(r), i = a / 2, l = t || i, u = a - l, c = r.scrollbar.paddingStart + l, p = r.scrollbar.size - r.scrollbar.paddingEnd - u, d = r.\n content - r.viewport, h = n === \"ltr\" ? [0, d] : [d * -1, 0];\n return dh([c, p], h)(e);\n}\nfunction Q2(e, t, r = \"ltr\") {\n let n = Ai(t), a = t.scrollbar.paddingStart + t.scrollbar.paddingEnd, i = t.scrollbar.size - a, l = t.content - t.viewport, u = i - n, c = r ===\n \"ltr\" ? [0, l] : [l * -1, 0], p = Z2(e, c);\n return dh([0, l], [0, u])(p);\n}\nfunction dh(e, t) {\n return (r) => {\n if (e[0] === e[1] || t[0] === t[1]) return t[0];\n let n = (t[1] - t[0]) / (e[1] - e[0]);\n return t[0] + n * (r - e[0]);\n };\n}\nfunction fh(e, t) {\n return e > 0 && e < t;\n}\nfunction Fi(e, t) {\n let r = de(e), n = L.useRef(0);\n return L.useEffect(() => () => window.clearTimeout(n.current), []), L.useCallback(() => {\n window.clearTimeout(n.current), n.current = window.setTimeout(r, t);\n }, [r, t]);\n}\nfunction Sn(e, t) {\n let r = de(t);\n rt(() => {\n let n = 0;\n if (e) {\n let a = new ResizeObserver(() => {\n cancelAnimationFrame(n), n = window.requestAnimationFrame(r);\n });\n return a.observe(e), () => {\n window.cancelAnimationFrame(n), a.unobserve(e);\n };\n }\n }, [e, r]);\n}\nfunction cb(e, t) {\n let { asChild: r, children: n } = e;\n if (!r) return typeof t == \"function\" ? t(n) : t;\n let a = L.Children.only(n);\n return L.cloneElement(a, {\n children: typeof t == \"function\" ? t(a.props.children) : t\n });\n}\nvar pu, th, WO, eb, nt, rh, nh, ah, St, oh, tb, rb, ih, du, nb, ab, ob, lh, sh, Ri, uh, ib, fu, ch, lb, ub, hh, mh, gh, vh, wh, bh = S(() => {\n \"use client\";\n Dn();\n U2();\n Y2();\n Ht();\n Rn();\n K2();\n xn();\n J2();\n Ei();\n o(Z6, \"useStateMachine\");\n pu = \"ScrollArea\", [th, WO] = G2(pu), [eb, nt] = th(pu), rh = L.forwardRef(\n (e, t) => {\n let {\n __scopeScrollArea: r,\n type: n = \"hover\",\n dir: a,\n scrollHideDelay: i = 600,\n ...l\n } = e, [u, c] = L.useState(null), [p, d] = L.useState(null), [h, f] = L.useState(null), [g, w] = L.useState(null), [m, v] = L.useState(\n null), [y, b] = L.useState(0), [D, x] = L.useState(0), [C, E] = L.useState(!1), [R, F] = L.useState(!1), A = se(t, (B) => c(B)), k = X2(\n a);\n return /* @__PURE__ */ G(\n eb,\n {\n scope: r,\n type: n,\n dir: k,\n scrollHideDelay: i,\n scrollArea: u,\n viewport: p,\n onViewportChange: d,\n content: h,\n onContentChange: f,\n scrollbarX: g,\n onScrollbarXChange: w,\n scrollbarXEnabled: C,\n onScrollbarXEnabledChange: E,\n scrollbarY: m,\n onScrollbarYChange: v,\n scrollbarYEnabled: R,\n onScrollbarYEnabledChange: F,\n onCornerWidthChange: b,\n onCornerHeightChange: x,\n children: /* @__PURE__ */ G(\n pe.div,\n {\n dir: k,\n ...l,\n ref: A,\n style: {\n position: \"relative\",\n // Pass corner sizes as CSS vars to reduce re-renders of context consumers\n \"--radix-scroll-area-corner-width\": y + \"px\",\n \"--radix-scroll-area-corner-height\": D + \"px\",\n ...e.style\n }\n }\n )\n }\n );\n }\n );\n rh.displayName = pu;\n nh = \"ScrollAreaViewport\", ah = L.forwardRef(\n (e, t) => {\n let { __scopeScrollArea: r, children: n, asChild: a, nonce: i, ...l } = e, u = nt(nh, r), c = L.useRef(null), p = se(t, c, u.onViewportChange);\n return /* @__PURE__ */ Q6(J6, { children: [\n /* @__PURE__ */ G(\n \"style\",\n {\n dangerouslySetInnerHTML: {\n __html: `\n[data-radix-scroll-area-viewport] {\n scrollbar-width: none;\n -ms-overflow-style: none;\n -webkit-overflow-scrolling: touch;\n}\n[data-radix-scroll-area-viewport]::-webkit-scrollbar {\n display: none;\n}\n:where([data-radix-scroll-area-viewport]) {\n display: flex;\n flex-direction: column;\n align-items: stretch;\n}\n:where([data-radix-scroll-area-content]) {\n flex-grow: 1;\n}\n`\n },\n nonce: i\n }\n ),\n /* @__PURE__ */ G(\n pe.div,\n {\n \"data-radix-scroll-area-viewport\": \"\",\n ...l,\n asChild: a,\n ref: p,\n style: {\n /**\n * We don't support `visible` because the intention is to have at least one scrollbar\n * if this component is used and `visible` will behave like `auto` in that case\n * https://developer.mozilla.org/en-US/docs/Web/CSS/overflow#description\n *\n * We don't handle `auto` because the intention is for the native implementation\n * to be hidden if using this component. We just want to ensure the node is scrollable\n * so could have used either `scroll` or `auto` here. We picked `scroll` to prevent\n * the browser from having to work out whether to render native scrollbars or not,\n * we tell it to with the intention of hiding them in CSS.\n */\n overflowX: u.scrollbarXEnabled ? \"scroll\" : \"hidden\",\n overflowY: u.scrollbarYEnabled ? \"scroll\" : \"hidden\",\n ...e.style\n },\n children: cb({ asChild: a, children: n }, (d) => /* @__PURE__ */ G(\n \"div\",\n {\n \"data-radix-scroll-area-content\": \"\",\n ref: u.onContentChange,\n style: { minWidth: u.scrollbarXEnabled ? \"fit-content\" : void 0 },\n children: d\n }\n ))\n }\n )\n ] });\n }\n );\n ah.displayName = nh;\n St = \"ScrollAreaScrollbar\", oh = L.forwardRef(\n (e, t) => {\n let { forceMount: r, ...n } = e, a = nt(St, e.__scopeScrollArea), { onScrollbarXEnabledChange: i, onScrollbarYEnabledChange: l } = a, u = e.\n orientation === \"horizontal\";\n return L.useEffect(() => (u ? i(!0) : l(!0), () => {\n u ? i(!1) : l(!1);\n }), [u, i, l]), a.type === \"hover\" ? /* @__PURE__ */ G(tb, { ...n, ref: t, forceMount: r }) : a.type === \"scroll\" ? /* @__PURE__ */ G(\n rb, { ...n, ref: t, forceMount: r }) : a.type === \"auto\" ? /* @__PURE__ */ G(ih, { ...n, ref: t, forceMount: r }) : a.type === \"always\" ?\n /* @__PURE__ */ G(du, { ...n, ref: t }) : null;\n }\n );\n oh.displayName = St;\n tb = L.forwardRef((e, t) => {\n let { forceMount: r, ...n } = e, a = nt(St, e.__scopeScrollArea), [i, l] = L.useState(!1);\n return L.useEffect(() => {\n let u = a.scrollArea, c = 0;\n if (u) {\n let p = /* @__PURE__ */ o(() => {\n window.clearTimeout(c), l(!0);\n }, \"handlePointerEnter\"), d = /* @__PURE__ */ o(() => {\n c = window.setTimeout(() => l(!1), a.scrollHideDelay);\n }, \"handlePointerLeave\");\n return u.addEventListener(\"pointerenter\", p), u.addEventListener(\"pointerleave\", d), () => {\n window.clearTimeout(c), u.removeEventListener(\"pointerenter\", p), u.removeEventListener(\"pointerleave\", d);\n };\n }\n }, [a.scrollArea, a.scrollHideDelay]), /* @__PURE__ */ G(Cn, { present: r || i, children: /* @__PURE__ */ G(\n ih,\n {\n \"data-state\": i ? \"visible\" : \"hidden\",\n ...n,\n ref: t\n }\n ) });\n }), rb = L.forwardRef((e, t) => {\n let { forceMount: r, ...n } = e, a = nt(St, e.__scopeScrollArea), i = e.orientation === \"horizontal\", l = Fi(() => c(\"SCROLL_END\"), 100),\n [u, c] = Z6(\"hidden\", {\n hidden: {\n SCROLL: \"scrolling\"\n },\n scrolling: {\n SCROLL_END: \"idle\",\n POINTER_ENTER: \"interacting\"\n },\n interacting: {\n SCROLL: \"interacting\",\n POINTER_LEAVE: \"idle\"\n },\n idle: {\n HIDE: \"hidden\",\n SCROLL: \"scrolling\",\n POINTER_ENTER: \"interacting\"\n }\n });\n return L.useEffect(() => {\n if (u === \"idle\") {\n let p = window.setTimeout(() => c(\"HIDE\"), a.scrollHideDelay);\n return () => window.clearTimeout(p);\n }\n }, [u, a.scrollHideDelay, c]), L.useEffect(() => {\n let p = a.viewport, d = i ? \"scrollLeft\" : \"scrollTop\";\n if (p) {\n let h = p[d], f = /* @__PURE__ */ o(() => {\n let g = p[d];\n h !== g && (c(\"SCROLL\"), l()), h = g;\n }, \"handleScroll\");\n return p.addEventListener(\"scroll\", f), () => p.removeEventListener(\"scroll\", f);\n }\n }, [a.viewport, i, c, l]), /* @__PURE__ */ G(Cn, { present: r || u !== \"hidden\", children: /* @__PURE__ */ G(\n du,\n {\n \"data-state\": u === \"hidden\" ? \"hidden\" : \"visible\",\n ...n,\n ref: t,\n onPointerEnter: be(e.onPointerEnter, () => c(\"POINTER_ENTER\")),\n onPointerLeave: be(e.onPointerLeave, () => c(\"POINTER_LEAVE\"))\n }\n ) });\n }), ih = L.forwardRef((e, t) => {\n let r = nt(St, e.__scopeScrollArea), { forceMount: n, ...a } = e, [i, l] = L.useState(!1), u = e.orientation === \"horizontal\", c = Fi(() => {\n if (r.viewport) {\n let p = r.viewport.offsetWidth < r.viewport.scrollWidth, d = r.viewport.offsetHeight < r.viewport.scrollHeight;\n l(u ? p : d);\n }\n }, 10);\n return Sn(r.viewport, c), Sn(r.content, c), /* @__PURE__ */ G(Cn, { present: n || i, children: /* @__PURE__ */ G(\n du,\n {\n \"data-state\": i ? \"visible\" : \"hidden\",\n ...a,\n ref: t\n }\n ) });\n }), du = L.forwardRef((e, t) => {\n let { orientation: r = \"vertical\", ...n } = e, a = nt(St, e.__scopeScrollArea), i = L.useRef(null), l = L.useRef(0), [u, c] = L.useState(\n {\n content: 0,\n viewport: 0,\n scrollbar: { size: 0, paddingStart: 0, paddingEnd: 0 }\n }), p = ph(u.viewport, u.content), d = {\n ...n,\n sizes: u,\n onSizesChange: c,\n hasThumb: p > 0 && p < 1,\n onThumbChange: /* @__PURE__ */ o((f) => i.current = f, \"onThumbChange\"),\n onThumbPointerUp: /* @__PURE__ */ o(() => l.current = 0, \"onThumbPointerUp\"),\n onThumbPointerDown: /* @__PURE__ */ o((f) => l.current = f, \"onThumbPointerDown\")\n };\n function h(f, g) {\n return sb(f, l.current, u, g);\n }\n return o(h, \"getScrollPosition\"), r === \"horizontal\" ? /* @__PURE__ */ G(\n nb,\n {\n ...d,\n ref: t,\n onThumbPositionChange: /* @__PURE__ */ o(() => {\n if (a.viewport && i.current) {\n let f = a.viewport.scrollLeft, g = Q2(f, u, a.dir);\n i.current.style.transform = `translate3d(${g}px, 0, 0)`;\n }\n }, \"onThumbPositionChange\"),\n onWheelScroll: /* @__PURE__ */ o((f) => {\n a.viewport && (a.viewport.scrollLeft = f);\n }, \"onWheelScroll\"),\n onDragScroll: /* @__PURE__ */ o((f) => {\n a.viewport && (a.viewport.scrollLeft = h(f, a.dir));\n }, \"onDragScroll\")\n }\n ) : r === \"vertical\" ? /* @__PURE__ */ G(\n ab,\n {\n ...d,\n ref: t,\n onThumbPositionChange: /* @__PURE__ */ o(() => {\n if (a.viewport && i.current) {\n let f = a.viewport.scrollTop, g = Q2(f, u);\n i.current.style.transform = `translate3d(0, ${g}px, 0)`;\n }\n }, \"onThumbPositionChange\"),\n onWheelScroll: /* @__PURE__ */ o((f) => {\n a.viewport && (a.viewport.scrollTop = f);\n }, \"onWheelScroll\"),\n onDragScroll: /* @__PURE__ */ o((f) => {\n a.viewport && (a.viewport.scrollTop = h(f));\n }, \"onDragScroll\")\n }\n ) : null;\n }), nb = L.forwardRef((e, t) => {\n let { sizes: r, onSizesChange: n, ...a } = e, i = nt(St, e.__scopeScrollArea), [l, u] = L.useState(), c = L.useRef(null), p = se(t, c, i.\n onScrollbarXChange);\n return L.useEffect(() => {\n c.current && u(getComputedStyle(c.current));\n }, [c]), /* @__PURE__ */ G(\n sh,\n {\n \"data-orientation\": \"horizontal\",\n ...a,\n ref: p,\n sizes: r,\n style: {\n bottom: 0,\n left: i.dir === \"rtl\" ? \"var(--radix-scroll-area-corner-width)\" : 0,\n right: i.dir === \"ltr\" ? \"var(--radix-scroll-area-corner-width)\" : 0,\n \"--radix-scroll-area-thumb-width\": Ai(r) + \"px\",\n ...e.style\n },\n onThumbPointerDown: /* @__PURE__ */ o((d) => e.onThumbPointerDown(d.x), \"onThumbPointerDown\"),\n onDragScroll: /* @__PURE__ */ o((d) => e.onDragScroll(d.x), \"onDragScroll\"),\n onWheelScroll: /* @__PURE__ */ o((d, h) => {\n if (i.viewport) {\n let f = i.viewport.scrollLeft + d.deltaX;\n e.onWheelScroll(f), fh(f, h) && d.preventDefault();\n }\n }, \"onWheelScroll\"),\n onResize: /* @__PURE__ */ o(() => {\n c.current && i.viewport && l && n({\n content: i.viewport.scrollWidth,\n viewport: i.viewport.offsetWidth,\n scrollbar: {\n size: c.current.clientWidth,\n paddingStart: Si(l.paddingLeft),\n paddingEnd: Si(l.paddingRight)\n }\n });\n }, \"onResize\")\n }\n );\n }), ab = L.forwardRef((e, t) => {\n let { sizes: r, onSizesChange: n, ...a } = e, i = nt(St, e.__scopeScrollArea), [l, u] = L.useState(), c = L.useRef(null), p = se(t, c, i.\n onScrollbarYChange);\n return L.useEffect(() => {\n c.current && u(getComputedStyle(c.current));\n }, [c]), /* @__PURE__ */ G(\n sh,\n {\n \"data-orientation\": \"vertical\",\n ...a,\n ref: p,\n sizes: r,\n style: {\n top: 0,\n right: i.dir === \"ltr\" ? 0 : void 0,\n left: i.dir === \"rtl\" ? 0 : void 0,\n bottom: \"var(--radix-scroll-area-corner-height)\",\n \"--radix-scroll-area-thumb-height\": Ai(r) + \"px\",\n ...e.style\n },\n onThumbPointerDown: /* @__PURE__ */ o((d) => e.onThumbPointerDown(d.y), \"onThumbPointerDown\"),\n onDragScroll: /* @__PURE__ */ o((d) => e.onDragScroll(d.y), \"onDragScroll\"),\n onWheelScroll: /* @__PURE__ */ o((d, h) => {\n if (i.viewport) {\n let f = i.viewport.scrollTop + d.deltaY;\n e.onWheelScroll(f), fh(f, h) && d.preventDefault();\n }\n }, \"onWheelScroll\"),\n onResize: /* @__PURE__ */ o(() => {\n c.current && i.viewport && l && n({\n content: i.viewport.scrollHeight,\n viewport: i.viewport.offsetHeight,\n scrollbar: {\n size: c.current.clientHeight,\n paddingStart: Si(l.paddingTop),\n paddingEnd: Si(l.paddingBottom)\n }\n });\n }, \"onResize\")\n }\n );\n }), [ob, lh] = th(St), sh = L.forwardRef((e, t) => {\n let {\n __scopeScrollArea: r,\n sizes: n,\n hasThumb: a,\n onThumbChange: i,\n onThumbPointerUp: l,\n onThumbPointerDown: u,\n onThumbPositionChange: c,\n onDragScroll: p,\n onWheelScroll: d,\n onResize: h,\n ...f\n } = e, g = nt(St, r), [w, m] = L.useState(null), v = se(t, (A) => m(A)), y = L.useRef(null), b = L.useRef(\"\"), D = g.viewport, x = n.content -\n n.viewport, C = de(d), E = de(c), R = Fi(h, 10);\n function F(A) {\n if (y.current) {\n let k = A.clientX - y.current.left, B = A.clientY - y.current.top;\n p({ x: k, y: B });\n }\n }\n return o(F, \"handleDragScroll\"), L.useEffect(() => {\n let A = /* @__PURE__ */ o((k) => {\n let B = k.target;\n w?.contains(B) && C(k, x);\n }, \"handleWheel\");\n return document.addEventListener(\"wheel\", A, { passive: !1 }), () => document.removeEventListener(\"wheel\", A, { passive: !1 });\n }, [D, w, x, C]), L.useEffect(E, [n, E]), Sn(w, R), Sn(g.content, R), /* @__PURE__ */ G(\n ob,\n {\n scope: r,\n scrollbar: w,\n hasThumb: a,\n onThumbChange: de(i),\n onThumbPointerUp: de(l),\n onThumbPositionChange: E,\n onThumbPointerDown: de(u),\n children: /* @__PURE__ */ G(\n pe.div,\n {\n ...f,\n ref: v,\n style: { position: \"absolute\", ...f.style },\n onPointerDown: be(e.onPointerDown, (A) => {\n A.button === 0 && (A.target.setPointerCapture(A.pointerId), y.current = w.getBoundingClientRect(), b.current = document.body.style.\n webkitUserSelect, document.body.style.webkitUserSelect = \"none\", g.viewport && (g.viewport.style.scrollBehavior = \"auto\"), F(A));\n }),\n onPointerMove: be(e.onPointerMove, F),\n onPointerUp: be(e.onPointerUp, (A) => {\n let k = A.target;\n k.hasPointerCapture(A.pointerId) && k.releasePointerCapture(A.pointerId), document.body.style.webkitUserSelect = b.current, g.\n viewport && (g.viewport.style.scrollBehavior = \"\"), y.current = null;\n })\n }\n )\n }\n );\n }), Ri = \"ScrollAreaThumb\", uh = L.forwardRef(\n (e, t) => {\n let { forceMount: r, ...n } = e, a = lh(Ri, e.__scopeScrollArea);\n return /* @__PURE__ */ G(Cn, { present: r || a.hasThumb, children: /* @__PURE__ */ G(ib, { ref: t, ...n }) });\n }\n ), ib = L.forwardRef(\n (e, t) => {\n let { __scopeScrollArea: r, style: n, ...a } = e, i = nt(Ri, r), l = lh(Ri, r), { onThumbPositionChange: u } = l, c = se(\n t,\n (h) => l.onThumbChange(h)\n ), p = L.useRef(), d = Fi(() => {\n p.current && (p.current(), p.current = void 0);\n }, 100);\n return L.useEffect(() => {\n let h = i.viewport;\n if (h) {\n let f = /* @__PURE__ */ o(() => {\n if (d(), !p.current) {\n let g = ub(h, u);\n p.current = g, u();\n }\n }, \"handleScroll\");\n return u(), h.addEventListener(\"scroll\", f), () => h.removeEventListener(\"scroll\", f);\n }\n }, [i.viewport, d, u]), /* @__PURE__ */ G(\n pe.div,\n {\n \"data-state\": l.hasThumb ? \"visible\" : \"hidden\",\n ...a,\n ref: c,\n style: {\n width: \"var(--radix-scroll-area-thumb-width)\",\n height: \"var(--radix-scroll-area-thumb-height)\",\n ...n\n },\n onPointerDownCapture: be(e.onPointerDownCapture, (h) => {\n let g = h.target.getBoundingClientRect(), w = h.clientX - g.left, m = h.clientY - g.top;\n l.onThumbPointerDown({ x: w, y: m });\n }),\n onPointerUp: be(e.onPointerUp, l.onThumbPointerUp)\n }\n );\n }\n );\n uh.displayName = Ri;\n fu = \"ScrollAreaCorner\", ch = L.forwardRef(\n (e, t) => {\n let r = nt(fu, e.__scopeScrollArea), n = !!(r.scrollbarX && r.scrollbarY);\n return r.type !== \"scroll\" && n ? /* @__PURE__ */ G(lb, { ...e, ref: t }) : null;\n }\n );\n ch.displayName = fu;\n lb = L.forwardRef((e, t) => {\n let { __scopeScrollArea: r, ...n } = e, a = nt(fu, r), [i, l] = L.useState(0), [u, c] = L.useState(0), p = !!(i && u);\n return Sn(a.scrollbarX, () => {\n let d = a.scrollbarX?.offsetHeight || 0;\n a.onCornerHeightChange(d), c(d);\n }), Sn(a.scrollbarY, () => {\n let d = a.scrollbarY?.offsetWidth || 0;\n a.onCornerWidthChange(d), l(d);\n }), p ? /* @__PURE__ */ G(\n pe.div,\n {\n ...n,\n ref: t,\n style: {\n width: i,\n height: u,\n position: \"absolute\",\n right: a.dir === \"ltr\" ? 0 : void 0,\n left: a.dir === \"rtl\" ? 0 : void 0,\n bottom: 0,\n ...e.style\n }\n }\n ) : null;\n });\n o(Si, \"toInt\");\n o(ph, \"getThumbRatio\");\n o(Ai, \"getThumbSize\");\n o(sb, \"getScrollPositionFromPointer\");\n o(Q2, \"getThumbOffsetFromScroll\");\n o(dh, \"linearScale\");\n o(fh, \"isScrollingWithinScrollbarBounds\");\n ub = /* @__PURE__ */ o((e, t = () => {\n }) => {\n let r = { left: e.scrollLeft, top: e.scrollTop }, n = 0;\n return (/* @__PURE__ */ o(function a() {\n let i = { left: e.scrollLeft, top: e.scrollTop }, l = r.left !== i.left, u = r.top !== i.top;\n (l || u) && t(), r = i, n = window.requestAnimationFrame(a);\n }, \"loop\"))(), () => window.cancelAnimationFrame(n);\n }, \"addUnlinkedScrollListener\");\n o(Fi, \"useDebounceCallback\");\n o(Sn, \"useResizeObserver\");\n o(cb, \"getSubtree\");\n hh = rh, mh = ah, gh = oh, vh = uh, wh = ch;\n});\n\n// src/components/components/ScrollArea/ScrollArea.tsx\nimport Lr, { forwardRef as db } from \"react\";\nimport { styled as ki } from \"@storybook/core/theming\";\nvar fb, hb, yh, Dh, An, Li = S(() => {\n \"use strict\";\n bh();\n fb = ki(hh)(\n ({ scrollbarsize: e, offset: t }) => ({\n width: \"100%\",\n height: \"100%\",\n overflow: \"hidden\",\n \"--scrollbar-size\": `${e + t}px`,\n \"--radix-scroll-area-thumb-width\": `${e}px`\n })\n ), hb = ki(mh)({\n width: \"100%\",\n height: \"100%\"\n }), yh = ki(gh)(({ offset: e, horizontal: t, vertical: r }) => ({\n display: \"flex\",\n userSelect: \"none\",\n // ensures no selection\n touchAction: \"none\",\n // disable browser handling of all panning and zooming gestures on touch devices\n background: \"transparent\",\n transition: \"all 0.2s ease-out\",\n borderRadius: \"var(--scrollbar-size)\",\n zIndex: 1,\n '&[data-orientation=\"vertical\"]': {\n width: \"var(--scrollbar-size)\",\n paddingRight: e,\n marginTop: e,\n marginBottom: t === \"true\" && r === \"true\" ? 0 : e\n },\n '&[data-orientation=\"horizontal\"]': {\n flexDirection: \"column\",\n height: \"var(--scrollbar-size)\",\n paddingBottom: e,\n marginLeft: e,\n marginRight: t === \"true\" && r === \"true\" ? 0 : e\n }\n })), Dh = ki(vh)(({ theme: e }) => ({\n flex: 1,\n background: e.textMutedColor,\n opacity: 0.5,\n borderRadius: \"var(--scrollbar-size)\",\n position: \"relative\",\n transition: \"opacity 0.2s ease-out\",\n \"&:hover\": { opacity: 0.8 },\n /* increase target size for touch devices https://www.w3.org/WAI/WCAG21/Understanding/target-size.html */\n \"::before\": {\n content: '\"\"',\n position: \"absolute\",\n top: \"50%\",\n left: \"50%\",\n transform: \"translate(-50%,-50%)\",\n width: \"100%\",\n height: \"100%\"\n }\n })), An = db(\n ({ children: e, horizontal: t = !1, vertical: r = !1, offset: n = 2, scrollbarSize: a = 6, className: i }, l) => /* @__PURE__ */ Lr.createElement(\n fb, { scrollbarsize: a, offset: n, className: i }, /* @__PURE__ */ Lr.createElement(hb, { ref: l }, e), t && /* @__PURE__ */ Lr.createElement(\n yh,\n {\n orientation: \"horizontal\",\n offset: n,\n horizontal: t.toString(),\n vertical: r.toString()\n },\n /* @__PURE__ */ Lr.createElement(Dh, null)\n ), r && /* @__PURE__ */ Lr.createElement(\n yh,\n {\n orientation: \"vertical\",\n offset: n,\n horizontal: t.toString(),\n vertical: r.toString()\n },\n /* @__PURE__ */ Lr.createElement(Dh, null)\n ), t && r && /* @__PURE__ */ Lr.createElement(wh, null))\n );\n An.displayName = \"ScrollArea\";\n});\n\n// src/components/components/syntaxhighlighter/syntaxhighlighter.tsx\nvar mu = {};\nfn(mu, {\n SyntaxHighlighter: () => bo,\n createCopyToClipboardFunction: () => hu,\n default: () => Fb,\n supportedLanguages: () => Rh\n});\nimport wo, { useCallback as mb, useEffect as gb, useState as xh } from \"react\";\nimport { styled as Ti } from \"@storybook/core/theming\";\nimport { logger as vb } from \"@storybook/core/client-logger\";\nfunction hu() {\n return Ch?.clipboard ? (e) => Ch.clipboard.writeText(e) : async (e) => {\n let t = vo.createElement(\"TEXTAREA\"), r = vo.activeElement;\n t.value = e, vo.body.appendChild(t), t.select(), vo.execCommand(\"copy\"), vo.body.removeChild(t), r.focus();\n };\n}\nvar Eh, Ch, vo, wb, Rh, bb, yb, Db, xb, Cb, Eb, Rb, Sh, Sb, Ab, bo, Fb, yo = S(() => {\n \"use strict\";\n ci();\n Eh = Re(uo(), 1);\n Of();\n Wf();\n Gf();\n Jf();\n n2();\n s2();\n d2();\n v2();\n y2();\n S2();\n k2();\n M2();\n zf();\n lu();\n Li();\n ({ navigator: Ch, document: vo, window: wb } = hn), Rh = {\n jsextra: r2,\n jsx: p2,\n json: l2,\n yml: B2,\n md: g2,\n bash: jf,\n css: Uf,\n html: b2,\n tsx: R2,\n typescript: F2,\n graphql: Zf\n };\n Object.entries(Rh).forEach(([e, t]) => {\n Di.registerLanguage(e, t);\n });\n bb = (0, Eh.default)(2)(\n (e) => Object.entries(e.code || {}).reduce((t, [r, n]) => ({ ...t, [`* .${r}`]: n }), {})\n ), yb = hu();\n o(hu, \"createCopyToClipboardFunction\");\n Db = Ti.div(\n ({ theme: e }) => ({\n position: \"relative\",\n overflow: \"hidden\",\n color: e.color.defaultText\n }),\n ({ theme: e, bordered: t }) => t ? {\n border: `1px solid ${e.appBorderColor}`,\n borderRadius: e.borderRadius,\n background: e.background.content\n } : {},\n ({ showLineNumbers: e }) => e ? {\n // use the before pseudo element to display line numbers\n \".react-syntax-highlighter-line-number::before\": {\n content: \"attr(data-line-number)\"\n }\n } : {}\n ), xb = /* @__PURE__ */ o(({ children: e, className: t }) => /* @__PURE__ */ wo.createElement(An, { horizontal: !0, vertical: !0, className: t },\n e), \"UnstyledScroller\"), Cb = Ti(xb)(\n {\n position: \"relative\"\n },\n ({ theme: e }) => bb(e)\n ), Eb = Ti.pre(({ theme: e, padded: t }) => ({\n display: \"flex\",\n justifyContent: \"flex-start\",\n margin: 0,\n padding: t ? e.layoutMargin : 0\n })), Rb = Ti.div(({ theme: e }) => ({\n flex: 1,\n paddingLeft: 2,\n // TODO: To match theming/global.ts for now\n paddingRight: e.layoutMargin,\n opacity: 1,\n fontFamily: e.typography.fonts.mono\n })), Sh = /* @__PURE__ */ o((e) => {\n let t = [...e.children], r = t[0], n = r.children[0].value, a = {\n ...r,\n // empty the line-number element\n children: [],\n properties: {\n ...r.properties,\n // add a data-line-number attribute to line-number element, so we can access the line number with `content: attr(data-line-number)`\n \"data-line-number\": n,\n // remove the 'userSelect: none' style, which will produce extra empty lines when copy-pasting in firefox\n style: { ...r.properties.style, userSelect: \"auto\" }\n }\n };\n return t[0] = a, { ...e, children: t };\n }, \"processLineNumber\"), Sb = /* @__PURE__ */ o(({ rows: e, stylesheet: t, useInlineStyles: r }) => e.map((n, a) => Sr({\n node: Sh(n),\n stylesheet: t,\n useInlineStyles: r,\n key: `code-segement${a}`\n })), \"defaultRenderer\"), Ab = /* @__PURE__ */ o((e, t) => t ? e ? ({ rows: r, ...n }) => e({ rows: r.map((a) => Sh(a)), ...n }) : Sb : e, \"\\\nwrapRenderer\"), bo = /* @__PURE__ */ o(({\n children: e,\n language: t = \"jsx\",\n copyable: r = !1,\n bordered: n = !1,\n padded: a = !1,\n format: i = !0,\n formatter: l = void 0,\n className: u = void 0,\n showLineNumbers: c = !1,\n ...p\n }) => {\n if (typeof e != \"string\" || !e.trim())\n return null;\n let [d, h] = xh(\"\");\n gb(() => {\n l ? l(i, e).then(h) : h(e.trim());\n }, [e, i, l]);\n let [f, g] = xh(!1), w = mb(\n (v) => {\n v.preventDefault(), yb(d).then(() => {\n g(!0), wb.setTimeout(() => g(!1), 1500);\n }).catch(vb.error);\n },\n [d]\n ), m = Ab(p.renderer, c);\n return /* @__PURE__ */ wo.createElement(\n Db,\n {\n bordered: n,\n padded: a,\n showLineNumbers: c,\n className: u\n },\n /* @__PURE__ */ wo.createElement(Cb, null, /* @__PURE__ */ wo.createElement(\n Di,\n {\n padded: a || n,\n language: t,\n showLineNumbers: c,\n showInlineLineNumbers: c,\n useInlineStyles: !1,\n PreTag: Eb,\n CodeTag: Rb,\n lineNumberContainerStyle: {},\n ...p,\n renderer: m\n },\n d\n )),\n r ? /* @__PURE__ */ wo.createElement(iu, { actionItems: [{ title: f ? \"Copied\" : \"Copy\", onClick: w }] }) : null\n );\n }, \"SyntaxHighlighter\");\n bo.registerLanguage = (...e) => Di.registerLanguage(...e);\n Fb = bo;\n});\n\n// ../node_modules/prettier/plugins/html.mjs\nfunction $x(e) {\n if (typeof e == \"string\") return d5;\n if (Array.isArray(e)) return f5;\n if (!e) return;\n let { type: t } = e;\n if (b5.has(t)) return t;\n}\nfunction jx(e) {\n let t = e === null ? \"null\" : typeof e;\n if (t !== \"string\" && t !== \"object\") return `Unexpected doc '${t}', \nExpected it to be 'string' or 'object'.`;\n if (y5(e)) throw new Error(\"doc is valid.\");\n let r = Object.prototype.toString.call(e);\n if (r !== \"[object Object]\") return `Unexpected doc '${r}'.`;\n let n = Vx([...b5].map((a) => `'${a}'`));\n return `Unexpected doc.type '${e.type}'.\nExpected it to be ${n}.`;\n}\nfunction kt(e) {\n return Pr(e), { type: Qu, contents: e };\n}\nfunction x5(e, t) {\n return Pr(t), { type: ec, contents: t, n: e };\n}\nfunction fe(e, t = {}) {\n return Pr(e), ic(t.expandedStates, !0), { type: tc, id: t.id, contents: e, break: !!t.shouldBreak, expandedStates: t.expandedStates };\n}\nfunction Ux(e) {\n return x5(Number.NEGATIVE_INFINITY, e);\n}\nfunction Gx(e) {\n return x5({ type: \"root\" }, e);\n}\nfunction C5(e) {\n return ic(e), { type: rc, parts: e };\n}\nfunction Oi(e, t = \"\", r = {}) {\n return Pr(e), t !== \"\" && Pr(t), { type: nc, breakContents: e, flatContents: t, groupId: r.groupId };\n}\nfunction Yx(e, t) {\n return Pr(e), { type: ac, contents: e, groupId: t.groupId, negate: t.negate };\n}\nfunction sa(e, t) {\n Pr(e), ic(t);\n let r = [];\n for (let n = 0; n < t.length; n++) n !== 0 && r.push(e), r.push(t[n]);\n return r;\n}\nfunction E5(e, t) {\n if (typeof e == \"string\") return t(e);\n let r = /* @__PURE__ */ new Map();\n return n(e);\n function n(i) {\n if (r.has(i)) return r.get(i);\n let l = a(i);\n return r.set(i, l), l;\n }\n function a(i) {\n switch (y5(i)) {\n case f5:\n return t(i.map(n));\n case rc:\n return t({ ...i, parts: i.parts.map(n) });\n case nc:\n return t({ ...i, breakContents: n(i.breakContents), flatContents: n(i.flatContents) });\n case tc: {\n let { expandedStates: l, contents: u } = i;\n return l ? (l = l.map(n), u = l[0]) : u = n(u), t({ ...i, contents: u, expandedStates: l });\n }\n case ec:\n case Qu:\n case ac:\n case w5:\n case g5:\n return t({ ...i, contents: n(i.contents) });\n case d5:\n case h5:\n case m5:\n case v5:\n case la:\n case oc:\n return t(i);\n default:\n throw new qx(i);\n }\n }\n}\nfunction ht(e, t = Zx) {\n return E5(e, (r) => typeof r == \"string\" ? sa(t, r.split(`\n`)) : r);\n}\nfunction Qx(e, t) {\n let r = t === !0 || t === Ii ? Ii : Th, n = r === Ii ? Th : Ii, a = 0, i = 0;\n for (let l of e) l === r ? a++ : l === n && i++;\n return a > i ? n : r;\n}\nfunction tC(e) {\n if (typeof e != \"string\") throw new TypeError(\"Expected a string\");\n return e.replace(/[|\\\\{}()[\\]^$+*?.]/g, \"\\\\$&\").replace(/-/g, \"\\\\x2d\");\n}\nfunction sC(e) {\n return e?.type === \"front-matter\";\n}\nfunction R5(e, t) {\n var r;\n if (e.type === \"text\" || e.type === \"comment\" || Gi(e) || e.type === \"yaml\" || e.type === \"toml\") return null;\n if (e.type === \"attribute\" && delete t.value, e.type === \"docType\" && delete t.value, e.type === \"angularControlFlowBlock\" && (r = e.parameters) !=\n null && r.children) for (let n of t.parameters.children) cC.has(e.name) ? delete n.expression : n.expression = n.expression.trim();\n e.type === \"angularIcuExpression\" && (t.switchValue = e.switchValue.trim()), e.type === \"angularLetDeclarationInitializer\" && delete t.value;\n}\nasync function dC(e, t) {\n if (e.language === \"yaml\") {\n let r = e.value.trim(), n = r ? await t(r, { parser: \"yaml\" }) : \"\";\n return Gx([e.startDelimiter, e.explicitLanguage, J, n, n ? J : \"\", e.endDelimiter]);\n }\n}\nfunction Yi(e, t = !0) {\n return [kt([Te, e]), t ? Te : \"\"];\n}\nfunction ua(e, t) {\n let r = e.type === \"NGRoot\" ? e.node.type === \"NGMicrosyntax\" && e.node.body.length === 1 && e.node.body[0].type === \"NGMicrosyntaxExpress\\\nion\" ? e.node.body[0].expression : e.node : e.type === \"JsExpressionRoot\" ? e.node : e;\n return r && (r.type === \"ObjectExpression\" || r.type === \"ArrayExpression\" || (t.parser === \"__vue_expression\" || t.parser === \"__vue_ts_e\\\nxpression\") && (r.type === \"TemplateLiteral\" || r.type === \"StringLiteral\"));\n}\nasync function mt(e, t, r, n) {\n r = { __isInHtmlAttribute: !0, __embeddedInHtml: !0, ...r };\n let a = !0;\n n && (r.__onHtmlBindingRoot = (l, u) => {\n a = n(l, u);\n });\n let i = await t(e, r, t);\n return a ? fe(i) : Yi(i);\n}\nfunction hC(e, t, r, n) {\n let { node: a } = r, i = n.originalText.slice(a.sourceSpan.start.offset, a.sourceSpan.end.offset);\n return /^\\s*$/u.test(i) ? \"\" : mt(i, e, { parser: \"__ng_directive\", __isInHtmlAttribute: !1 }, ua);\n}\nfunction Ih(e, t) {\n if (!t) return;\n let r = gC(t).toLowerCase();\n return e.find(({ filenames: n }) => n?.some((a) => a.toLowerCase() === r)) ?? e.find(({ extensions: n }) => n?.some((a) => r.endsWith(a)));\n}\nfunction vC(e, t) {\n if (t) return e.find(({ name: r }) => r.toLowerCase() === t) ?? e.find(({ aliases: r }) => r?.includes(t)) ?? e.find(({ extensions: r }) => r?.\n includes(`.${t}`));\n}\nfunction wC(e, t) {\n let r = e.plugins.flatMap((a) => a.languages ?? []), n = vC(r, t.language) ?? Ih(r, t.physicalFile) ?? Ih(r, t.file) ?? (t.physicalFile, void 0);\n return n?.parsers[0];\n}\nfunction CC(e) {\n return e.type === \"element\" && !e.hasExplicitNamespace && ![\"html\", \"svg\"].includes(e.namespace);\n}\nfunction A5(e, t) {\n return !!(e.type === \"ieConditionalComment\" && e.lastChild && !e.lastChild.isSelfClosing && !e.lastChild.endSourceSpan || e.type === \"ieCo\\\nnditionalComment\" && !e.complete || ia(e) && e.children.some((r) => r.type !== \"text\" && r.type !== \"interpolation\") || sc(e, t) && !Ot(e) &&\n e.type !== \"interpolation\");\n}\nfunction Ki(e) {\n return e.type === \"attribute\" || !e.parent || !e.prev ? !1 : SC(e.prev);\n}\nfunction SC(e) {\n return e.type === \"comment\" && e.value.trim() === \"prettier-ignore\";\n}\nfunction at(e) {\n return e.type === \"text\" || e.type === \"comment\";\n}\nfunction Ot(e) {\n return e.type === \"element\" && (e.fullName === \"script\" || e.fullName === \"style\" || e.fullName === \"svg:style\" || e.fullName === \"svg:scr\\\nipt\" || Fo(e) && (e.name === \"script\" || e.name === \"style\"));\n}\nfunction AC(e) {\n return e.children && !Ot(e);\n}\nfunction FC(e) {\n return Ot(e) || e.type === \"interpolation\" || F5(e);\n}\nfunction F5(e) {\n return _5(e).startsWith(\"pre\");\n}\nfunction kC(e, t) {\n var r, n;\n let a = i();\n if (a && !e.prev && (n = (r = e.parent) == null ? void 0 : r.tagDefinition) != null && n.ignoreFirstLf) return e.type === \"interpolation\";\n return a;\n function i() {\n return Gi(e) || e.type === \"angularControlFlowBlock\" ? !1 : (e.type === \"text\" || e.type === \"interpolation\") && e.prev && (e.prev.type ===\n \"text\" || e.prev.type === \"interpolation\") ? !0 : !e.parent || e.parent.cssDisplay === \"none\" ? !1 : ia(e.parent) ? !0 : !(!e.prev && (e.\n parent.type === \"root\" || ia(e) && e.parent || Ot(e.parent) || Zi(e.parent, t) || !zC(e.parent.cssDisplay)) || e.prev && !$C(e.prev.cssDisplay));\n }\n}\nfunction LC(e, t) {\n return Gi(e) || e.type === \"angularControlFlowBlock\" ? !1 : (e.type === \"text\" || e.type === \"interpolation\") && e.next && (e.next.type ===\n \"text\" || e.next.type === \"interpolation\") ? !0 : !e.parent || e.parent.cssDisplay === \"none\" ? !1 : ia(e.parent) ? !0 : !(!e.next && (e.parent.\n type === \"root\" || ia(e) && e.parent || Ot(e.parent) || Zi(e.parent, t) || !OC(e.parent.cssDisplay)) || e.next && !NC(e.next.cssDisplay));\n}\nfunction TC(e) {\n return VC(e.cssDisplay) && !Ot(e);\n}\nfunction Bi(e) {\n return Gi(e) || e.next && e.sourceSpan.end && e.sourceSpan.end.line + 1 < e.next.sourceSpan.start.line;\n}\nfunction IC(e) {\n return k5(e) || e.type === \"element\" && e.children.length > 0 && ([\"body\", \"script\", \"style\"].includes(e.name) || e.children.some((t) => MC(\n t))) || e.firstChild && e.firstChild === e.lastChild && e.firstChild.type !== \"text\" && T5(e.firstChild) && (!e.lastChild.isTrailingSpaceSensitive ||\n I5(e.lastChild));\n}\nfunction k5(e) {\n return e.type === \"element\" && e.children.length > 0 && ([\"html\", \"head\", \"ul\", \"ol\", \"select\"].includes(e.name) || e.cssDisplay.startsWith(\n \"table\") && e.cssDisplay !== \"table-cell\");\n}\nfunction Vu(e) {\n return B5(e) || e.prev && BC(e.prev) || L5(e);\n}\nfunction BC(e) {\n return B5(e) || e.type === \"element\" && e.fullName === \"br\" || L5(e);\n}\nfunction L5(e) {\n return T5(e) && I5(e);\n}\nfunction T5(e) {\n return e.hasLeadingSpaces && (e.prev ? e.prev.sourceSpan.end.line < e.sourceSpan.start.line : e.parent.type === \"root\" || e.parent.startSourceSpan.\n end.line < e.sourceSpan.start.line);\n}\nfunction I5(e) {\n return e.hasTrailingSpaces && (e.next ? e.next.sourceSpan.start.line > e.sourceSpan.end.line : e.parent.type === \"root\" || e.parent.endSourceSpan &&\n e.parent.endSourceSpan.start.line > e.sourceSpan.end.line);\n}\nfunction B5(e) {\n switch (e.type) {\n case \"ieConditionalComment\":\n case \"comment\":\n case \"directive\":\n return !0;\n case \"element\":\n return [\"script\", \"select\"].includes(e.name);\n }\n return !1;\n}\nfunction lc(e) {\n return e.lastChild ? lc(e.lastChild) : e;\n}\nfunction MC(e) {\n var t;\n return (t = e.children) == null ? void 0 : t.some((r) => r.type !== \"text\");\n}\nfunction M5(e) {\n if (e) switch (e) {\n case \"module\":\n case \"text/javascript\":\n case \"text/babel\":\n case \"application/javascript\":\n return \"babel\";\n case \"application/x-typescript\":\n return \"typescript\";\n case \"text/markdown\":\n return \"markdown\";\n case \"text/html\":\n return \"html\";\n case \"text/x-handlebars-template\":\n return \"glimmer\";\n default:\n if (e.endsWith(\"json\") || e.endsWith(\"importmap\") || e === \"speculationrules\") return \"json\";\n }\n}\nfunction _C(e, t) {\n let { name: r, attrMap: n } = e;\n if (r !== \"script\" || Object.prototype.hasOwnProperty.call(n, \"src\")) return;\n let { type: a, lang: i } = e.attrMap;\n return !i && !a ? \"babel\" : Xi(t, { language: i }) ?? M5(a);\n}\nfunction PC(e, t) {\n if (!sc(e, t)) return;\n let { attrMap: r } = e;\n if (Object.prototype.hasOwnProperty.call(r, \"src\")) return;\n let { type: n, lang: a } = r;\n return Xi(t, { language: a }) ?? M5(n);\n}\nfunction HC(e, t) {\n if (e.name !== \"style\") return;\n let { lang: r } = e.attrMap;\n return r ? Xi(t, { language: r }) : \"css\";\n}\nfunction Bh(e, t) {\n return _C(e, t) ?? HC(e, t) ?? PC(e, t);\n}\nfunction To(e) {\n return e === \"block\" || e === \"list-item\" || e.startsWith(\"table\");\n}\nfunction zC(e) {\n return !To(e) && e !== \"inline-block\";\n}\nfunction OC(e) {\n return !To(e) && e !== \"inline-block\";\n}\nfunction NC(e) {\n return !To(e);\n}\nfunction $C(e) {\n return !To(e);\n}\nfunction VC(e) {\n return !To(e) && e !== \"inline-block\";\n}\nfunction ia(e) {\n return _5(e).startsWith(\"pre\");\n}\nfunction jC(e, t) {\n let r = e;\n for (; r; ) {\n if (t(r)) return !0;\n r = r.parent;\n }\n return !1;\n}\nfunction WC(e, t) {\n var r;\n if (ca(e, t)) return \"block\";\n if (((r = e.prev) == null ? void 0 : r.type) === \"comment\") {\n let a = e.prev.value.match(/^\\s*display:\\s*([a-z]+)\\s*$/u);\n if (a) return a[1];\n }\n let n = !1;\n if (e.type === \"element\" && e.namespace === \"svg\") if (jC(e, (a) => a.fullName === \"svg:foreignObject\")) n = !0;\n else return e.name === \"svg\" ? \"inline-block\" : \"block\";\n switch (t.htmlWhitespaceSensitivity) {\n case \"strict\":\n return \"inline\";\n case \"ignore\":\n return \"block\";\n default:\n return e.type === \"element\" && (!e.namespace || n || Fo(e)) && yC[e.name] || bC;\n }\n}\nfunction _5(e) {\n return e.type === \"element\" && (!e.namespace || Fo(e)) && xC[e.name] || DC;\n}\nfunction qC(e) {\n let t = Number.POSITIVE_INFINITY;\n for (let r of e.split(`\n`)) {\n if (r.length === 0) continue;\n let n = Ft.getLeadingWhitespaceCount(r);\n if (n === 0) return 0;\n r.length !== n && n < t && (t = n);\n }\n return t === Number.POSITIVE_INFINITY ? 0 : t;\n}\nfunction P5(e, t = qC(e)) {\n return t === 0 ? e : e.split(`\n`).map((r) => r.slice(t)).join(`\n`);\n}\nfunction H5(e) {\n return Xe(!1, Xe(!1, e, \"'\", \"'\"), \""\", '\"');\n}\nfunction sr(e) {\n return H5(e.value);\n}\nfunction Zi(e, t) {\n return ca(e, t) && !UC.has(e.fullName);\n}\nfunction ca(e, t) {\n return t.parser === \"vue\" && e.type === \"element\" && e.parent.type === \"root\" && e.fullName.toLowerCase() !== \"html\";\n}\nfunction sc(e, t) {\n return ca(e, t) && (Zi(e, t) || e.attrMap.lang && e.attrMap.lang !== \"html\");\n}\nfunction GC(e) {\n let t = e.fullName;\n return t.charAt(0) === \"#\" || t === \"slot-scope\" || t === \"v-slot\" || t.startsWith(\"v-slot:\");\n}\nfunction YC(e, t) {\n let r = e.parent;\n if (!ca(r, t)) return !1;\n let n = r.fullName, a = e.fullName;\n return n === \"script\" && a === \"setup\" || n === \"style\" && a === \"vars\";\n}\nfunction z5(e, t = e.value) {\n return e.parent.isWhitespaceSensitive ? e.parent.isIndentationSensitive ? ht(t) : ht(P5(S5(t)), J) : sa(ye, Ft.split(t));\n}\nfunction O5(e, t) {\n return ca(e, t) && e.name === \"script\";\n}\nasync function XC(e, t) {\n let r = [];\n for (let [n, a] of e.split(N5).entries()) if (n % 2 === 0) r.push(ht(a));\n else try {\n r.push(fe([\"{{\", kt([ye, await mt(a, t, { parser: \"__ng_interpolation\", __isInHtmlInterpolation: !0 })]), ye, \"}}\"]));\n } catch {\n r.push(\"{{\", ht(a), \"}}\");\n }\n return r;\n}\nfunction uc({ parser: e }) {\n return (t, r, n) => mt(sr(n.node), t, { parser: e }, ua);\n}\nfunction QC(e, t) {\n if (t.parser !== \"angular\") return;\n let { node: r } = e, n = r.fullName;\n if (n.startsWith(\"(\") && n.endsWith(\")\") || n.startsWith(\"on-\")) return KC;\n if (n.startsWith(\"[\") && n.endsWith(\"]\") || /^bind(?:on)?-/u.test(n) || /^ng-(?:if|show|hide|class|style)$/u.test(n)) return ZC;\n if (n.startsWith(\"*\")) return JC;\n let a = sr(r);\n if (/^i18n(?:-.+)?$/u.test(n)) return () => Yi(C5(z5(r, a.trim())), !a.includes(\"@@\"));\n if (N5.test(a)) return (i) => XC(a, i);\n}\nfunction tE(e, t) {\n let { node: r } = e, n = sr(r);\n if (r.fullName === \"class\" && !t.parentParser && !n.includes(\"{{\")) return () => n.trim().split(/\\s+/u).join(\" \");\n}\nfunction Mh(e) {\n return e === \"\t\" || e === `\n` || e === \"\\f\" || e === \"\\r\" || e === \" \";\n}\nfunction sE(e) {\n let t = e.length, r, n, a, i, l, u = 0, c;\n function p(g) {\n let w, m = g.exec(e.substring(u));\n if (m) return [w] = m, u += w.length, w;\n }\n o(p, \"p\");\n let d = [];\n for (; ; ) {\n if (p(aE), u >= t) {\n if (d.length === 0) throw new Error(\"Must contain one or more image candidate strings.\");\n return d;\n }\n c = u, r = p(oE), n = [], r.slice(-1) === \",\" ? (r = r.replace(iE, \"\"), f()) : h();\n }\n function h() {\n for (p(nE), a = \"\", i = \"in descriptor\"; ; ) {\n if (l = e.charAt(u), i === \"in descriptor\") if (Mh(l)) a && (n.push(a), a = \"\", i = \"after descriptor\");\n else if (l === \",\") {\n u += 1, a && n.push(a), f();\n return;\n } else if (l === \"(\") a += l, i = \"in parens\";\n else if (l === \"\") {\n a && n.push(a), f();\n return;\n } else a += l;\n else if (i === \"in parens\") if (l === \")\") a += l, i = \"in descriptor\";\n else if (l === \"\") {\n n.push(a), f();\n return;\n } else a += l;\n else if (i === \"after descriptor\" && !Mh(l)) if (l === \"\") {\n f();\n return;\n } else i = \"in descriptor\", u -= 1;\n u += 1;\n }\n }\n o(h, \"f\");\n function f() {\n let g = !1, w, m, v, y, b = {}, D, x, C, E, R;\n for (y = 0; y < n.length; y++) D = n[y], x = D[D.length - 1], C = D.substring(0, D.length - 1), E = parseInt(C, 10), R = parseFloat(C), _h.\n test(C) && x === \"w\" ? ((w || m) && (g = !0), E === 0 ? g = !0 : w = E) : lE.test(C) && x === \"x\" ? ((w || m || v) && (g = !0), R < 0 ? g =\n !0 : m = R) : _h.test(C) && x === \"h\" ? ((v || m) && (g = !0), E === 0 ? g = !0 : v = E) : g = !0;\n if (!g) b.source = { value: r, startOffset: c }, w && (b.width = { value: w }), m && (b.density = { value: m }), v && (b.height = { value: v }),\n d.push(b);\n else throw new Error(`Invalid srcset descriptor found in \"${e}\" at \"${D}\".`);\n }\n o(f, \"d\");\n}\nfunction cE(e) {\n if (e.node.fullName === \"srcset\" && (e.parent.fullName === \"img\" || e.parent.fullName === \"source\")) return () => dE(sr(e.node));\n}\nfunction dE(e) {\n let t = uE(e), r = pE.filter((d) => t.some((h) => Object.prototype.hasOwnProperty.call(h, d)));\n if (r.length > 1) throw new Error(\"Mixed descriptor in srcset is not supported\");\n let [n] = r, a = $5[n], i = t.map((d) => d.source.value), l = Math.max(...i.map((d) => d.length)), u = t.map((d) => d[n] ? String(d[n].value) :\n \"\"), c = u.map((d) => {\n let h = d.indexOf(\".\");\n return h === -1 ? d.length : h;\n }), p = Math.max(...c);\n return Yi(sa([\",\", ye], i.map((d, h) => {\n let f = [d], g = u[h];\n if (g) {\n let w = l - d.length + 1, m = p - c[h], v = \" \".repeat(w + m);\n f.push(Oi(v, \" \"), g + a);\n }\n return f;\n })));\n}\nfunction hE(e, t) {\n let { node: r } = e, n = sr(e.node).trim();\n if (r.fullName === \"style\" && !t.parentParser && !n.includes(\"{{\")) return async (a) => Yi(await a(n, { parser: \"css\", __isHTMLStyleAttribute: !0 }));\n}\nfunction mE(e, t) {\n let { root: r } = e;\n return ju.has(r) || ju.set(r, r.children.some((n) => O5(n, t) && [\"ts\", \"typescript\"].includes(n.attrMap.lang))), ju.get(r);\n}\nfunction gE(e, t, r) {\n let { node: n } = r, a = sr(n);\n return mt(`type T<${a}> = any`, e, { parser: \"babel-ts\", __isEmbeddedTypescriptGenericParameters: !0 }, ua);\n}\nfunction vE(e, t, { parseWithTs: r }) {\n return mt(`function _(${e}) {}`, t, { parser: r ? \"babel-ts\" : \"babel\", __isVueBindings: !0 });\n}\nasync function wE(e, t, r, n) {\n let a = sr(r.node), { left: i, operator: l, right: u } = bE(a), c = cc(r, n);\n return [fe(await mt(`function _(${i}) {}`, e, { parser: c ? \"babel-ts\" : \"babel\", __isVueForBindingLeft: !0 })), \" \", l, \" \", await mt(u, e,\n { parser: c ? \"__ts_expression\" : \"__js_expression\" })];\n}\nfunction bE(e) {\n let t = /(.*?)\\s+(in|of)\\s+(.*)/su, r = /,([^,\\]}]*)(?:,([^,\\]}]*))?$/u, n = /^\\(|\\)$/gu, a = e.match(t);\n if (!a) return;\n let i = {};\n if (i.for = a[3].trim(), !i.for) return;\n let l = Xe(!1, a[1].trim(), n, \"\"), u = l.match(r);\n u ? (i.alias = l.replace(r, \"\"), i.iterator1 = u[1].trim(), u[2] && (i.iterator2 = u[2].trim())) : i.alias = l;\n let c = [i.alias, i.iterator1, i.iterator2];\n if (!c.some((p, d) => !p && (d === 0 || c.slice(d + 1).some(Boolean)))) return { left: c.filter(Boolean).join(\",\"), operator: a[2], right: i.\n for };\n}\nfunction yE(e, t) {\n if (t.parser !== \"vue\") return;\n let { node: r } = e, n = r.fullName;\n if (n === \"v-for\") return wE;\n if (n === \"generic\" && O5(r.parent, t)) return gE;\n let a = sr(r), i = cc(e, t);\n if (GC(r) || YC(r, t)) return (l) => vE(a, l, { parseWithTs: i });\n if (n.startsWith(\"@\") || n.startsWith(\"v-on:\")) return (l) => DE(a, l, { parseWithTs: i });\n if (n.startsWith(\":\") || n.startsWith(\"v-bind:\")) return (l) => xE(a, l, { parseWithTs: i });\n if (n.startsWith(\"v-\")) return (l) => V5(a, l, { parseWithTs: i });\n}\nasync function DE(e, t, { parseWithTs: r }) {\n var n;\n try {\n return await V5(e, t, { parseWithTs: r });\n } catch (a) {\n if (((n = a.cause) == null ? void 0 : n.code) !== \"BABEL_PARSER_SYNTAX_ERROR\") throw a;\n }\n return mt(e, t, { parser: r ? \"__vue_ts_event_binding\" : \"__vue_event_binding\" }, ua);\n}\nfunction xE(e, t, { parseWithTs: r }) {\n return mt(e, t, { parser: r ? \"__vue_ts_expression\" : \"__vue_expression\" }, ua);\n}\nfunction V5(e, t, { parseWithTs: r }) {\n return mt(e, t, { parser: r ? \"__ts_expression\" : \"__js_expression\" }, ua);\n}\nfunction EE(e, t) {\n let { node: r } = e;\n if (r.value) {\n if (/^PRETTIER_HTML_PLACEHOLDER_\\d+_\\d+_IN_JS$/u.test(t.originalText.slice(r.valueSpan.start.offset, r.valueSpan.end.offset)) || t.parser ===\n \"lwc\" && r.value.startsWith(\"{\") && r.value.endsWith(\"}\")) return [r.rawName, \"=\", r.value];\n for (let n of [fE, hE, rE, CE, eE]) {\n let a = n(e, t);\n if (a) return RE(a);\n }\n }\n}\nfunction RE(e) {\n return async (t, r, n, a) => {\n let i = await e(t, r, n, a);\n if (i) return i = E5(i, (l) => typeof l == \"string\" ? Xe(!1, l, '\"', \""\") : l), [n.node.rawName, '=\"', fe(i), '\"'];\n };\n}\nfunction AE(e) {\n return Array.isArray(e) && e.length > 0;\n}\nfunction Io(e) {\n return e.sourceSpan.start.offset;\n}\nfunction Bo(e) {\n return e.sourceSpan.end.offset;\n}\nfunction Xu(e, t) {\n return [e.isSelfClosing ? \"\" : FE(e, t), Ro(e, t)];\n}\nfunction FE(e, t) {\n return e.lastChild && ko(e.lastChild) ? \"\" : [kE(e, t), dc(e, t)];\n}\nfunction Ro(e, t) {\n return (e.next ? zr(e.next) : _o(e.parent)) ? \"\" : [Mo(e, t), Hr(e, t)];\n}\nfunction kE(e, t) {\n return _o(e) ? Mo(e.lastChild, t) : \"\";\n}\nfunction Hr(e, t) {\n return ko(e) ? dc(e.parent, t) : Ji(e) ? fc(e.next, t) : \"\";\n}\nfunction dc(e, t) {\n if (W5(!e.isSelfClosing), q5(e, t)) return \"\";\n switch (e.type) {\n case \"ieConditionalComment\":\n return \"<!\";\n case \"element\":\n if (e.hasHtmComponentClosingTag) return \"<//\";\n default:\n return `</${e.rawName}`;\n }\n}\nfunction Mo(e, t) {\n if (q5(e, t)) return \"\";\n switch (e.type) {\n case \"ieConditionalComment\":\n case \"ieConditionalEndComment\":\n return \"[endif]-->\";\n case \"ieConditionalStartComment\":\n return \"]><!-->\";\n case \"interpolation\":\n return \"}}\";\n case \"angularIcuExpression\":\n return \"}\";\n case \"element\":\n if (e.isSelfClosing) return \"/>\";\n default:\n return \">\";\n }\n}\nfunction q5(e, t) {\n return !e.isSelfClosing && !e.endSourceSpan && (Ki(e) || A5(e.parent, t));\n}\nfunction zr(e) {\n return e.prev && e.prev.type !== \"docType\" && e.type !== \"angularControlFlowBlock\" && !at(e.prev) && e.isLeadingSpaceSensitive && !e.hasLeadingSpaces;\n}\nfunction _o(e) {\n var t;\n return ((t = e.lastChild) == null ? void 0 : t.isTrailingSpaceSensitive) && !e.lastChild.hasTrailingSpaces && !at(lc(e.lastChild)) && !ia(\n e);\n}\nfunction ko(e) {\n return !e.next && !e.hasTrailingSpaces && e.isTrailingSpaceSensitive && at(lc(e));\n}\nfunction Ji(e) {\n return e.next && !at(e.next) && at(e) && e.isTrailingSpaceSensitive && !e.hasTrailingSpaces;\n}\nfunction LE(e) {\n let t = e.trim().match(/^prettier-ignore-attribute(?:\\s+(.+))?$/su);\n return t ? t[1] ? t[1].split(/\\s+/u) : !0 : !1;\n}\nfunction Qi(e) {\n return !e.prev && e.isLeadingSpaceSensitive && !e.hasLeadingSpaces;\n}\nfunction TE(e, t, r) {\n var n;\n let { node: a } = e;\n if (!pc(a.attrs)) return a.isSelfClosing ? \" \" : \"\";\n let i = ((n = a.prev) == null ? void 0 : n.type) === \"comment\" && LE(a.prev.value), l = typeof i == \"boolean\" ? () => i : Array.isArray(i) ?\n (h) => i.includes(h.rawName) : () => !1, u = e.map(({ node: h }) => l(h) ? ht(t.originalText.slice(Io(h), Bo(h))) : r(), \"attrs\"), c = a.type ===\n \"element\" && a.fullName === \"script\" && a.attrs.length === 1 && a.attrs[0].fullName === \"src\" && a.children.length === 0, p = t.singleAttributePerLine &&\n a.attrs.length > 1 && !ca(a, t) ? J : ye, d = [kt([c ? \" \" : ye, sa(p, u)])];\n return a.firstChild && Qi(a.firstChild) || a.isSelfClosing && _o(a.parent) || c ? d.push(a.isSelfClosing ? \" \" : \"\") : d.push(t.bracketSameLine ?\n a.isSelfClosing ? \" \" : \"\" : a.isSelfClosing ? ye : Te), d;\n}\nfunction IE(e) {\n return e.firstChild && Qi(e.firstChild) ? \"\" : hc(e);\n}\nfunction Ku(e, t, r) {\n let { node: n } = e;\n return [So(n, t), TE(e, t, r), n.isSelfClosing ? \"\" : IE(n)];\n}\nfunction So(e, t) {\n return e.prev && Ji(e.prev) ? \"\" : [Or(e, t), fc(e, t)];\n}\nfunction Or(e, t) {\n return Qi(e) ? hc(e.parent) : zr(e) ? Mo(e.prev, t) : \"\";\n}\nfunction fc(e, t) {\n switch (e.type) {\n case \"ieConditionalComment\":\n case \"ieConditionalStartComment\":\n return `<!--[if ${e.condition}`;\n case \"ieConditionalEndComment\":\n return \"<!--<!\";\n case \"interpolation\":\n return \"{{\";\n case \"docType\": {\n if (e.value === \"html\") {\n let r = t.filepath ?? \"\";\n if (/\\.html?$/u.test(r)) return Ph;\n }\n return t.originalText.slice(Io(e), Bo(e)).slice(0, Ph.length);\n }\n case \"angularIcuExpression\":\n return \"{\";\n case \"element\":\n if (e.condition) return `<!--[if ${e.condition}]><!--><${e.rawName}`;\n default:\n return `<${e.rawName}`;\n }\n}\nfunction hc(e) {\n switch (W5(!e.isSelfClosing), e.type) {\n case \"ieConditionalComment\":\n return \"]>\";\n case \"element\":\n if (e.condition) return \"><!--<![endif]-->\";\n default:\n return \">\";\n }\n}\nfunction BE(e, t) {\n if (!e.endSourceSpan) return \"\";\n let r = e.startSourceSpan.end.offset;\n e.firstChild && Qi(e.firstChild) && (r -= hc(e).length);\n let n = e.endSourceSpan.start.offset;\n return e.lastChild && ko(e.lastChild) ? n += dc(e, t).length : _o(e) && (n -= Mo(e.lastChild, t).length), t.originalText.slice(r, n);\n}\nfunction _E(e, t) {\n let { node: r } = e;\n switch (r.type) {\n case \"element\":\n if (Ot(r) || r.type === \"interpolation\") return;\n if (!r.isSelfClosing && sc(r, t)) {\n let n = Bh(r, t);\n return n ? async (a, i) => {\n let l = U5(r, t), u = /^\\s*$/u.test(l), c = \"\";\n return u || (c = await a(S5(l), { parser: n, __embeddedInHtml: !0 }), u = c === \"\"), [Or(r, t), fe(Ku(e, t, i)), u ? \"\" : J, c, u ?\n \"\" : J, Xu(r, t), Hr(r, t)];\n } : void 0;\n }\n break;\n case \"text\":\n if (Ot(r.parent)) {\n let n = Bh(r.parent, t);\n if (n) return async (a) => {\n let i = n === \"markdown\" ? P5(r.value.replace(/^[^\\S\\n]*\\n/u, \"\")) : r.value, l = { parser: n, __embeddedInHtml: !0 };\n if (t.parser === \"html\" && n === \"babel\") {\n let u = \"script\", { attrMap: c } = r.parent;\n c && (c.type === \"module\" || c.type === \"text/babel\" && c[\"data-type\"] === \"module\") && (u = \"module\"), l.__babelSourceType = u;\n }\n return [Lo, Or(r, t), await a(i, l), Hr(r, t)];\n };\n } else if (r.parent.type === \"interpolation\") return async (n) => {\n let a = { __isInHtmlInterpolation: !0, __embeddedInHtml: !0 };\n return t.parser === \"angular\" ? a.parser = \"__ng_interpolation\" : t.parser === \"vue\" ? a.parser = cc(e, t) ? \"__vue_ts_expression\" :\n \"__vue_expression\" : a.parser = \"__js_expression\", [kt([ye, await n(r.value, a)]), r.parent.next && zr(r.parent.next) ? \" \" : ye];\n };\n break;\n case \"attribute\":\n return SE(e, t);\n case \"front-matter\":\n return (n) => fC(r, n);\n case \"angularControlFlowBlockParameters\":\n return ME.has(e.parent.name) ? mC : void 0;\n case \"angularLetDeclarationInitializer\":\n return (n) => mt(r.value, n, { parser: \"__ng_binding\", __isInHtmlAttribute: !1 });\n }\n}\nfunction Ao(e) {\n if (Do !== null && typeof Do.property) {\n let t = Do;\n return Do = Ao.prototype = null, t;\n }\n return Do = Ao.prototype = e ?? /* @__PURE__ */ Object.create(null), new Ao();\n}\nfunction zE(e) {\n return Ao(e);\n}\nfunction OE(e, t = \"type\") {\n zE(e);\n function r(n) {\n let a = n[t], i = e[a];\n if (!Array.isArray(i)) throw Object.assign(new Error(`Missing visitor keys for '${a}'.`), { node: n });\n return i;\n }\n return o(r, \"r\"), r;\n}\nfunction qE(e) {\n return /^\\s*<!--\\s*@(?:format|prettier)\\s*-->/u.test(e);\n}\nfunction UE(e) {\n return `<!-- @format -->\n\n` + e;\n}\nfunction G5(e) {\n let t = Bo(e);\n return e.type === \"element\" && !e.endSourceSpan && pc(e.children) ? Math.max(t, G5(Ui(!1, e.children, -1))) : t;\n}\nfunction xo(e, t, r) {\n let n = e.node;\n if (Ki(n)) {\n let a = G5(n);\n return [Or(n, t), ht(Ft.trimEnd(t.originalText.slice(Io(n) + (n.prev && Ji(n.prev) ? fc(n).length : 0), a - (n.next && zr(n.next) ? Mo(n,\n t).length : 0)))), Hr(n, t)];\n }\n return r();\n}\nfunction Mi(e, t) {\n return at(e) && at(t) ? e.isTrailingSpaceSensitive ? e.hasTrailingSpaces ? Vu(t) ? J : ye : \"\" : Vu(t) ? J : Te : Ji(e) && (Ki(t) || t.firstChild ||\n t.isSelfClosing || t.type === \"element\" && t.attrs.length > 0) || e.type === \"element\" && e.isSelfClosing && zr(t) ? \"\" : !t.isLeadingSpaceSensitive ||\n Vu(t) || zr(t) && e.lastChild && ko(e.lastChild) && e.lastChild.lastChild && ko(e.lastChild.lastChild) ? J : t.hasLeadingSpaces ? ye : Te;\n}\nfunction mc(e, t, r) {\n let { node: n } = e;\n if (k5(n)) return [Lo, ...e.map((i) => {\n let l = i.node, u = l.prev ? Mi(l.prev, l) : \"\";\n return [u ? [u, Bi(l.prev) ? J : \"\"] : \"\", xo(i, t, r)];\n }, \"children\")];\n let a = n.children.map(() => Symbol(\"\"));\n return e.map((i, l) => {\n let u = i.node;\n if (at(u)) {\n if (u.prev && at(u.prev)) {\n let w = Mi(u.prev, u);\n if (w) return Bi(u.prev) ? [J, J, xo(i, t, r)] : [w, xo(i, t, r)];\n }\n return xo(i, t, r);\n }\n let c = [], p = [], d = [], h = [], f = u.prev ? Mi(u.prev, u) : \"\", g = u.next ? Mi(u, u.next) : \"\";\n return f && (Bi(u.prev) ? c.push(J, J) : f === J ? c.push(J) : at(u.prev) ? p.push(f) : p.push(Oi(\"\", Te, { groupId: a[l - 1] }))), g &&\n (Bi(u) ? at(u.next) && h.push(J, J) : g === J ? at(u.next) && h.push(J) : d.push(g)), [...c, fe([...p, fe([xo(i, t, r), ...d], { id: a[l] })]),\n ...h];\n }, \"children\");\n}\nfunction YE(e, t, r) {\n let { node: n } = e, a = [];\n XE(e) && a.push(\"} \"), a.push(\"@\", n.name), n.parameters && a.push(\" (\", fe(r(\"parameters\")), \")\"), a.push(\" {\");\n let i = Y5(n);\n return n.children.length > 0 ? (n.firstChild.hasLeadingSpaces = !0, n.lastChild.hasTrailingSpaces = !0, a.push(kt([J, mc(e, t, r)])), i &&\n a.push(J, \"}\")) : i && a.push(\"}\"), fe(a, { shouldBreak: !0 });\n}\nfunction Y5(e) {\n var t, r;\n return !(((t = e.next) == null ? void 0 : t.type) === \"angularControlFlowBlock\" && (r = GE.get(e.name)) != null && r.has(e.next.name));\n}\nfunction XE(e) {\n let { previous: t } = e;\n return t?.type === \"angularControlFlowBlock\" && !Ki(t) && !Y5(t);\n}\nfunction KE(e, t, r) {\n return [kt([Te, sa([\";\", ye], e.map(r, \"children\"))]), Te];\n}\nfunction ZE(e, t, r) {\n let { node: n } = e;\n return [So(n, t), fe([n.switchValue.trim(), \", \", n.clause, n.cases.length > 0 ? [\",\", kt([ye, sa(ye, e.map(r, \"cases\"))])] : \"\", Te]), Ro(\n n, t)];\n}\nfunction JE(e, t, r) {\n let { node: n } = e;\n return [n.value, \" {\", fe([kt([Te, e.map(({ node: a }) => a.type === \"text\" && !Ft.trim(a.value) ? \"\" : r(), \"expression\")]), Te]), \"}\"];\n}\nfunction QE(e, t, r) {\n let { node: n } = e;\n if (A5(n, t)) return [Or(n, t), fe(Ku(e, t, r)), ht(U5(n, t)), ...Xu(n, t), Hr(n, t)];\n let a = n.children.length === 1 && (n.firstChild.type === \"interpolation\" || n.firstChild.type === \"angularIcuExpression\") && n.firstChild.\n isLeadingSpaceSensitive && !n.firstChild.hasLeadingSpaces && n.lastChild.isTrailingSpaceSensitive && !n.lastChild.hasTrailingSpaces, i = Symbol(\n \"element-attr-group-id\"), l = /* @__PURE__ */ o((d) => fe([fe(Ku(e, t, r), { id: i }), d, Xu(n, t)]), \"a\"), u = /* @__PURE__ */ o((d) => a ?\n Yx(d, { groupId: i }) : (Ot(n) || Zi(n, t)) && n.parent.type === \"root\" && t.parser === \"vue\" && !t.vueIndentScriptAndStyle ? d : kt(d), \"\\\no\"), c = /* @__PURE__ */ o(() => a ? Oi(Te, \"\", { groupId: i }) : n.firstChild.hasLeadingSpaces && n.firstChild.isLeadingSpaceSensitive ? ye :\n n.firstChild.type === \"text\" && n.isWhitespaceSensitive && n.isIndentationSensitive ? Ux(Te) : Te, \"u\"), p = /* @__PURE__ */ o(() => (n.next ?\n zr(n.next) : _o(n.parent)) ? n.lastChild.hasTrailingSpaces && n.lastChild.isTrailingSpaceSensitive ? \" \" : \"\" : a ? Oi(Te, \"\", { groupId: i }) :\n n.lastChild.hasTrailingSpaces && n.lastChild.isTrailingSpaceSensitive ? ye : (n.lastChild.type === \"comment\" || n.lastChild.type === \"text\" &&\n n.isWhitespaceSensitive && n.isIndentationSensitive) && new RegExp(`\\\\n[\\\\t ]{${t.tabWidth * (e.ancestors.length - 1)}}$`, \"u\").test(n.lastChild.\n value) ? \"\" : Te, \"p\");\n return n.children.length === 0 ? l(n.hasDanglingSpaces && n.isDanglingSpaceSensitive ? ye : \"\") : l([IC(n) ? Lo : \"\", u([c(), mc(e, t, r)]),\n p()]);\n}\nfunction Ni(e) {\n return e >= 9 && e <= 32 || e == 160;\n}\nfunction gc(e) {\n return 48 <= e && e <= 57;\n}\nfunction $i(e) {\n return e >= 97 && e <= 122 || e >= 65 && e <= 90;\n}\nfunction eR(e) {\n return e >= 97 && e <= 102 || e >= 65 && e <= 70 || gc(e);\n}\nfunction vc(e) {\n return e === 10 || e === 13;\n}\nfunction Hh(e) {\n return 48 <= e && e <= 55;\n}\nfunction Wu(e) {\n return e === 39 || e === 34 || e === 96;\n}\nfunction rR(e) {\n return e.replace(tR, (...t) => t[1].toUpperCase());\n}\nfunction aR(e, t) {\n for (let r of nR) r(e, t);\n return e;\n}\nfunction oR(e) {\n e.walk((t) => {\n if (t.type === \"element\" && t.tagDefinition.ignoreFirstLf && t.children.length > 0 && t.children[0].type === \"text\" && t.children[0].value[0] ===\n `\n`) {\n let r = t.children[0];\n r.value.length === 1 ? t.removeChild(r) : r.value = r.value.slice(1);\n }\n });\n}\nfunction iR(e) {\n let t = /* @__PURE__ */ o((r) => {\n var n, a;\n return r.type === \"element\" && ((n = r.prev) == null ? void 0 : n.type) === \"ieConditionalStartComment\" && r.prev.sourceSpan.end.offset ===\n r.startSourceSpan.start.offset && ((a = r.firstChild) == null ? void 0 : a.type) === \"ieConditionalEndComment\" && r.firstChild.sourceSpan.\n start.offset === r.startSourceSpan.end.offset;\n }, \"e\");\n e.walk((r) => {\n if (r.children) for (let n = 0; n < r.children.length; n++) {\n let a = r.children[n];\n if (!t(a)) continue;\n let i = a.prev, l = a.firstChild;\n r.removeChild(i), n--;\n let u = new z(i.sourceSpan.start, l.sourceSpan.end), c = new z(u.start, a.sourceSpan.end);\n a.condition = i.condition, a.sourceSpan = c, a.startSourceSpan = u, a.removeChild(l);\n }\n });\n}\nfunction lR(e, t, r) {\n e.walk((n) => {\n if (n.children) for (let a = 0; a < n.children.length; a++) {\n let i = n.children[a];\n if (i.type !== \"text\" && !t(i)) continue;\n i.type !== \"text\" && (i.type = \"text\", i.value = r(i));\n let l = i.prev;\n !l || l.type !== \"text\" || (l.value += i.value, l.sourceSpan = new z(l.sourceSpan.start, i.sourceSpan.end), n.removeChild(i), a--);\n }\n });\n}\nfunction sR(e) {\n return lR(e, (t) => t.type === \"cdata\", (t) => `<![CDATA[${t.value}]]>`);\n}\nfunction uR(e) {\n let t = /* @__PURE__ */ o((r) => {\n var n, a;\n return r.type === \"element\" && r.attrs.length === 0 && r.children.length === 1 && r.firstChild.type === \"text\" && !Ft.hasWhitespaceCharacter(\n r.children[0].value) && !r.firstChild.hasLeadingSpaces && !r.firstChild.hasTrailingSpaces && r.isLeadingSpaceSensitive && !r.hasLeadingSpaces &&\n r.isTrailingSpaceSensitive && !r.hasTrailingSpaces && ((n = r.prev) == null ? void 0 : n.type) === \"text\" && ((a = r.next) == null ? void 0 :\n a.type) === \"text\";\n }, \"e\");\n e.walk((r) => {\n if (r.children) for (let n = 0; n < r.children.length; n++) {\n let a = r.children[n];\n if (!t(a)) continue;\n let i = a.prev, l = a.next;\n i.value += `<${a.rawName}>` + a.firstChild.value + `</${a.rawName}>` + l.value, i.sourceSpan = new z(i.sourceSpan.start, l.sourceSpan.\n end), i.isTrailingSpaceSensitive = l.isTrailingSpaceSensitive, i.hasTrailingSpaces = l.hasTrailingSpaces, r.removeChild(a), n--, r.removeChild(\n l);\n }\n });\n}\nfunction cR(e, t) {\n if (t.parser === \"html\") return;\n let r = /\\{\\{(.+?)\\}\\}/su;\n e.walk((n) => {\n if (AC(n)) for (let a of n.children) {\n if (a.type !== \"text\") continue;\n let i = a.sourceSpan.start, l = null, u = a.value.split(r);\n for (let c = 0; c < u.length; c++, i = l) {\n let p = u[c];\n if (c % 2 === 0) {\n l = i.moveBy(p.length), p.length > 0 && n.insertChildBefore(a, { type: \"text\", value: p, sourceSpan: new z(i, l) });\n continue;\n }\n l = i.moveBy(p.length + 4), n.insertChildBefore(a, { type: \"interpolation\", sourceSpan: new z(i, l), children: p.length === 0 ? [] :\n [{ type: \"text\", value: p, sourceSpan: new z(i.moveBy(2), l.moveBy(-2)) }] });\n }\n n.removeChild(a);\n }\n });\n}\nfunction pR(e) {\n e.walk((t) => {\n if (!t.children) return;\n if (t.children.length === 0 || t.children.length === 1 && t.children[0].type === \"text\" && Ft.trim(t.children[0].value).length === 0) {\n t.hasDanglingSpaces = t.children.length > 0, t.children = [];\n return;\n }\n let r = FC(t), n = F5(t);\n if (!r) for (let a = 0; a < t.children.length; a++) {\n let i = t.children[a];\n if (i.type !== \"text\") continue;\n let { leadingWhitespace: l, text: u, trailingWhitespace: c } = RC(i.value), p = i.prev, d = i.next;\n u ? (i.value = u, i.sourceSpan = new z(i.sourceSpan.start.moveBy(l.length), i.sourceSpan.end.moveBy(-c.length)), l && (p && (p.hasTrailingSpaces =\n !0), i.hasLeadingSpaces = !0), c && (i.hasTrailingSpaces = !0, d && (d.hasLeadingSpaces = !0))) : (t.removeChild(i), a--, (l || c) && (p &&\n (p.hasTrailingSpaces = !0), d && (d.hasLeadingSpaces = !0)));\n }\n t.isWhitespaceSensitive = r, t.isIndentationSensitive = n;\n });\n}\nfunction dR(e) {\n e.walk((t) => {\n t.isSelfClosing = !t.children || t.type === \"element\" && (t.tagDefinition.isVoid || t.endSourceSpan && t.startSourceSpan.start === t.endSourceSpan.\n start && t.startSourceSpan.end === t.endSourceSpan.end);\n });\n}\nfunction fR(e, t) {\n e.walk((r) => {\n r.type === \"element\" && (r.hasHtmComponentClosingTag = r.endSourceSpan && /^<\\s*\\/\\s*\\/\\s*>$/u.test(t.originalText.slice(r.endSourceSpan.\n start.offset, r.endSourceSpan.end.offset)));\n });\n}\nfunction hR(e, t) {\n e.walk((r) => {\n r.cssDisplay = WC(r, t);\n });\n}\nfunction mR(e, t) {\n e.walk((r) => {\n let { children: n } = r;\n if (n) {\n if (n.length === 0) {\n r.isDanglingSpaceSensitive = TC(r);\n return;\n }\n for (let a of n) a.isLeadingSpaceSensitive = kC(a, t), a.isTrailingSpaceSensitive = LC(a, t);\n for (let a = 0; a < n.length; a++) {\n let i = n[a];\n i.isLeadingSpaceSensitive = (a === 0 || i.prev.isTrailingSpaceSensitive) && i.isLeadingSpaceSensitive, i.isTrailingSpaceSensitive = (a ===\n n.length - 1 || i.next.isLeadingSpaceSensitive) && i.isTrailingSpaceSensitive;\n }\n }\n });\n}\nfunction vR(e, t, r) {\n let { node: n } = e;\n switch (n.type) {\n case \"front-matter\":\n return ht(n.raw);\n case \"root\":\n return t.__onHtmlRoot && t.__onHtmlRoot(n), [fe(mc(e, t, r)), J];\n case \"element\":\n case \"ieConditionalComment\":\n return QE(e, t, r);\n case \"angularControlFlowBlock\":\n return YE(e, t, r);\n case \"angularControlFlowBlockParameters\":\n return KE(e, t, r);\n case \"angularControlFlowBlockParameter\":\n return Ft.trim(n.expression);\n case \"angularLetDeclaration\":\n return fe([\"@let \", fe([n.id, \" =\", fe(kt([ye, r(\"init\")]))]), \";\"]);\n case \"angularLetDeclarationInitializer\":\n return n.value;\n case \"angularIcuExpression\":\n return ZE(e, t, r);\n case \"angularIcuCase\":\n return JE(e, t, r);\n case \"ieConditionalStartComment\":\n case \"ieConditionalEndComment\":\n return [So(n), Ro(n)];\n case \"interpolation\":\n return [So(n, t), ...e.map(r, \"children\"), Ro(n, t)];\n case \"text\": {\n if (n.parent.type === \"interpolation\") {\n let u = /\\n[^\\S\\n]*$/u, c = u.test(n.value), p = c ? n.value.replace(u, \"\") : n.value;\n return [ht(p), c ? J : \"\"];\n }\n let a = Or(n, t), i = z5(n), l = Hr(n, t);\n return i[0] = [a, i[0]], i.push([i.pop(), l]), C5(i);\n }\n case \"docType\":\n return [fe([So(n, t), \" \", Xe(!1, n.value.replace(/^html\\b/iu, \"html\"), /\\s+/gu, \" \")]), Ro(n, t)];\n case \"comment\":\n return [Or(n, t), ht(t.originalText.slice(Io(n), Bo(n))), Hr(n, t)];\n case \"attribute\": {\n if (n.value === null) return n.rawName;\n let a = H5(n.value), i = eC(a, '\"');\n return [n.rawName, \"=\", i, ht(i === '\"' ? Xe(!1, a, '\"', \""\") : Xe(!1, a, \"'\", \"'\")), i];\n }\n case \"cdata\":\n default:\n throw new lC(n, \"HTML\");\n }\n}\nfunction el(e, t = !0) {\n if (e[0] != \":\") return [null, e];\n let r = e.indexOf(\":\", 1);\n if (r === -1) {\n if (t) throw new Error(`Unsupported format \"${e}\" expecting \":namespace:name\"`);\n return [null, e];\n }\n return [e.slice(1, r), e.slice(r + 1)];\n}\nfunction Uh(e) {\n return el(e)[1] === \"ng-container\";\n}\nfunction Gh(e) {\n return el(e)[1] === \"ng-content\";\n}\nfunction Hi(e) {\n return e === null ? null : el(e)[0];\n}\nfunction ji(e, t) {\n return e ? `:${e}:${t}` : t;\n}\nfunction Yh() {\n return zi || (zi = {}, _i(Tr.HTML, [\"iframe|srcdoc\", \"*|innerHTML\", \"*|outerHTML\"]), _i(Tr.STYLE, [\"*|style\"]), _i(Tr.URL, [\"*|formAction\",\n \"area|href\", \"area|ping\", \"audio|src\", \"a|href\", \"a|ping\", \"blockquote|cite\", \"body|background\", \"del|cite\", \"form|action\", \"img|src\", \"in\\\nput|src\", \"ins|cite\", \"q|cite\", \"source|src\", \"track|src\", \"video|poster\", \"video|src\"]), _i(Tr.RESOURCE_URL, [\"applet|code\", \"applet|codeba\\\nse\", \"base|href\", \"embed|src\", \"frame|src\", \"head|profile\", \"html|manifest\", \"iframe|src\", \"link|href\", \"media|src\", \"object|codebase\", \"obj\\\nect|data\", \"script|src\"])), zi;\n}\nfunction _i(e, t) {\n for (let r of t) zi[r.toLowerCase()] = e;\n}\nfunction TR(e) {\n switch (e) {\n case \"width\":\n case \"height\":\n case \"minWidth\":\n case \"minHeight\":\n case \"maxWidth\":\n case \"maxHeight\":\n case \"left\":\n case \"top\":\n case \"bottom\":\n case \"right\":\n case \"fontSize\":\n case \"outlineWidth\":\n case \"outlineOffset\":\n case \"paddingTop\":\n case \"paddingLeft\":\n case \"paddingBottom\":\n case \"paddingRight\":\n case \"marginTop\":\n case \"marginLeft\":\n case \"marginBottom\":\n case \"marginRight\":\n case \"borderRadius\":\n case \"borderWidth\":\n case \"borderTopWidth\":\n case \"borderLeftWidth\":\n case \"borderRightWidth\":\n case \"borderBottomWidth\":\n case \"textIndent\":\n return !0;\n default:\n return !1;\n }\n}\nfunction Ju(e) {\n return Co || (Xh = new _({ canSelfClose: !0 }), Co = Object.assign(/* @__PURE__ */ Object.create(null), { base: new _({ isVoid: !0 }), meta: new _(\n { isVoid: !0 }), area: new _({ isVoid: !0 }), embed: new _({ isVoid: !0 }), link: new _({ isVoid: !0 }), img: new _({ isVoid: !0 }), input: new _(\n { isVoid: !0 }), param: new _({ isVoid: !0 }), hr: new _({ isVoid: !0 }), br: new _({ isVoid: !0 }), source: new _({ isVoid: !0 }), track: new _(\n { isVoid: !0 }), wbr: new _({ isVoid: !0 }), p: new _({ closedByChildren: [\"address\", \"article\", \"aside\", \"blockquote\", \"div\", \"dl\", \"fiel\\\ndset\", \"footer\", \"form\", \"h1\", \"h2\", \"h3\", \"h4\", \"h5\", \"h6\", \"header\", \"hgroup\", \"hr\", \"main\", \"nav\", \"ol\", \"p\", \"pre\", \"section\", \"table\", \"\\\nul\"], closedByParent: !0 }), thead: new _({ closedByChildren: [\"tbody\", \"tfoot\"] }), tbody: new _({ closedByChildren: [\"tbody\", \"tfoot\"], closedByParent: !0 }),\n tfoot: new _({ closedByChildren: [\"tbody\"], closedByParent: !0 }), tr: new _({ closedByChildren: [\"tr\"], closedByParent: !0 }), td: new _(\n { closedByChildren: [\"td\", \"th\"], closedByParent: !0 }), th: new _({ closedByChildren: [\"td\", \"th\"], closedByParent: !0 }), col: new _({ isVoid: !0 }),\n svg: new _({ implicitNamespacePrefix: \"svg\" }), foreignObject: new _({ implicitNamespacePrefix: \"svg\", preventNamespaceInheritance: !0 }),\n math: new _({ implicitNamespacePrefix: \"math\" }), li: new _({ closedByChildren: [\"li\"], closedByParent: !0 }), dt: new _({ closedByChildren: [\n \"dt\", \"dd\"] }), dd: new _({ closedByChildren: [\"dt\", \"dd\"], closedByParent: !0 }), rb: new _({ closedByChildren: [\"rb\", \"rt\", \"rtc\", \"rp\"],\n closedByParent: !0 }), rt: new _({ closedByChildren: [\"rb\", \"rt\", \"rtc\", \"rp\"], closedByParent: !0 }), rtc: new _({ closedByChildren: [\"rb\",\n \"rtc\", \"rp\"], closedByParent: !0 }), rp: new _({ closedByChildren: [\"rb\", \"rt\", \"rtc\", \"rp\"], closedByParent: !0 }), optgroup: new _({ closedByChildren: [\n \"optgroup\"], closedByParent: !0 }), option: new _({ closedByChildren: [\"option\", \"optgroup\"], closedByParent: !0 }), pre: new _({ ignoreFirstLf: !0 }),\n listing: new _({ ignoreFirstLf: !0 }), style: new _({ contentType: ft.RAW_TEXT }), script: new _({ contentType: ft.RAW_TEXT }), title: new _(\n { contentType: { default: ft.ESCAPABLE_RAW_TEXT, svg: ft.PARSABLE_DATA } }), textarea: new _({ contentType: ft.ESCAPABLE_RAW_TEXT, ignoreFirstLf: !0 }) }),\n new LR().allKnownElementNames().forEach((t) => {\n !Co[t] && Hi(t) === null && (Co[t] = new _({ canSelfClose: !1 }));\n })), Co[e] ?? Xh;\n}\nfunction Q5(e, t, r = null) {\n let n = [], a = e.visit ? (i) => e.visit(i, r) || i.visit(e, r) : (i) => i.visit(e, r);\n return t.forEach((i) => {\n let l = a(i);\n l && n.push(l);\n }), n;\n}\nfunction VR(e, t) {\n if (t != null && !(Array.isArray(t) && t.length == 2)) throw new Error(`Expected '${e}' to be an array, [start, end].`);\n if (t != null) {\n let r = t[0], n = t[1];\n $R.forEach((a) => {\n if (a.test(r) || a.test(n)) throw new Error(`['${r}', '${n}'] contains unusable interpolation symbol.`);\n });\n }\n}\nfunction qR(e, t, r, n = {}) {\n let a = new YR(new X5(e, t), r, n);\n return a.tokenize(), new WR(eS(a.tokens), a.errors, a.nonNormalizedIcuExpressions);\n}\nfunction kn(e) {\n return `Unexpected character \"${e === 0 ? \"EOF\" : String.fromCharCode(e)}\"`;\n}\nfunction Jh(e) {\n return `Unknown entity \"${e}\" - use the \"&#<decimal>;\" or \"&#x<hex>;\" syntax`;\n}\nfunction GR(e, t) {\n return `Unable to parse entity \"${t}\" - ${e} character reference entities must end with \";\"`;\n}\nfunction ue(e) {\n return !Ni(e) || e === 0;\n}\nfunction Qh(e) {\n return Ni(e) || e === 62 || e === 60 || e === 47 || e === 39 || e === 34 || e === 61 || e === 0;\n}\nfunction XR(e) {\n return (e < 97 || 122 < e) && (e < 65 || 90 < e) && (e < 48 || e > 57);\n}\nfunction KR(e) {\n return e === 59 || e === 0 || !eR(e);\n}\nfunction ZR(e) {\n return e === 59 || e === 0 || !$i(e);\n}\nfunction JR(e) {\n return e !== 125;\n}\nfunction QR(e, t) {\n return e5(e) === e5(t);\n}\nfunction e5(e) {\n return e >= 97 && e <= 122 ? e - 97 + 65 : e;\n}\nfunction t5(e) {\n return $i(e) || gc(e) || e === 95;\n}\nfunction r5(e) {\n return e !== 59 && ue(e);\n}\nfunction eS(e) {\n let t = [], r;\n for (let n = 0; n < e.length; n++) {\n let a = e[n];\n r && r.type === 5 && a.type === 5 || r && r.type === 16 && a.type === 16 ? (r.parts[0] += a.parts[0], r.sourceSpan.end = a.sourceSpan.end) :\n (r = a, t.push(r));\n }\n return t;\n}\nfunction n5(e, t) {\n return e.length > 0 && e[e.length - 1] === t;\n}\nfunction a5(e, t) {\n return Wi[t] !== void 0 ? Wi[t] || e : /^#x[a-f0-9]+$/i.test(t) ? String.fromCodePoint(parseInt(t.slice(2), 16)) : /^#\\d+$/.test(t) ? String.\n fromCodePoint(parseInt(t.slice(1), 10)) : e;\n}\nfunction o5(e, t = {}) {\n let { canSelfClose: r = !1, allowHtmComponentClosingTags: n = !1, isTagNameCaseSensitive: a = !1, getTagContentType: i, tokenizeAngularBlocks: l = !1,\n tokenizeAngularLetDeclaration: u = !1 } = t;\n return iS().parse(e, \"angular-html-parser\", { tokenizeExpansionForms: l, interpolationConfig: void 0, canSelfClose: r, allowHtmComponentClosingTags: n,\n tokenizeBlocks: l, tokenizeLet: u }, a, i);\n}\nfunction lS(e, t) {\n let r = new SyntaxError(e + \" (\" + t.loc.start.line + \":\" + t.loc.start.column + \")\");\n return Object.assign(r, t);\n}\nfunction uS(e) {\n let t = e.slice(0, Eo);\n if (t !== \"---\" && t !== \"+++\") return;\n let r = e.indexOf(`\n`, Eo);\n if (r === -1) return;\n let n = e.slice(Eo, r).trim(), a = e.indexOf(`\n${t}`, r), i = n;\n if (i || (i = t === \"+++\" ? \"toml\" : \"yaml\"), a === -1 && t === \"---\" && i === \"yaml\" && (a = e.indexOf(`\n...`, r)), a === -1) return;\n let l = a + 1 + Eo, u = e.charAt(l + 1);\n if (!/\\s?/u.test(u)) return;\n let c = e.slice(0, l);\n return { type: \"front-matter\", language: i, explicitLanguage: n, value: e.slice(r + 1, a), startDelimiter: t, endDelimiter: c.slice(-Eo), raw: c };\n}\nfunction cS(e) {\n let t = uS(e);\n if (!t) return { content: e };\n let { raw: r } = t;\n return { frontMatter: t, content: Xe(!1, r, /[^\\n]/gu, \" \") + e.slice(r.length) };\n}\nfunction fS(e, t) {\n let r = e.map(t);\n return r.some((n, a) => n !== e[a]) ? r : e;\n}\nfunction mS(e, t) {\n if (e.value) for (let { regex: r, parse: n } of hS) {\n let a = e.value.match(r);\n if (a) return n(e, t, a);\n }\n return null;\n}\nfunction gS(e, t, r) {\n let [, n, a, i] = r, l = 4 + n.length, u = e.sourceSpan.start.moveBy(l), c = u.moveBy(i.length), [p, d] = (() => {\n try {\n return [!0, t(i, u).children];\n } catch {\n return [!1, [{ type: \"text\", value: i, sourceSpan: new z(u, c) }]];\n }\n })();\n return { type: \"ieConditionalComment\", complete: p, children: d, condition: Xe(!1, a.trim(), /\\s+/gu, \" \"), sourceSpan: e.sourceSpan, startSourceSpan: new z(\n e.sourceSpan.start, u), endSourceSpan: new z(c, e.sourceSpan.end) };\n}\nfunction vS(e, t, r) {\n let [, n] = r;\n return { type: \"ieConditionalStartComment\", condition: Xe(!1, n.trim(), /\\s+/gu, \" \"), sourceSpan: e.sourceSpan };\n}\nfunction wS(e) {\n return { type: \"ieConditionalEndComment\", sourceSpan: e.sourceSpan };\n}\nfunction yS(e) {\n if (e.type === \"block\") {\n if (e.name = Xe(!1, e.name.toLowerCase(), /\\s+/gu, \" \").trim(), e.type = \"angularControlFlowBlock\", !pc(e.parameters)) {\n delete e.parameters;\n return;\n }\n for (let t of e.parameters) t.type = \"angularControlFlowBlockParameter\";\n e.parameters = { type: \"angularControlFlowBlockParameters\", children: e.parameters, sourceSpan: new z(e.parameters[0].sourceSpan.start, Ui(\n !1, e.parameters, -1).sourceSpan.end) };\n }\n}\nfunction DS(e) {\n e.type === \"letDeclaration\" && (e.type = \"angularLetDeclaration\", e.id = e.name, e.init = { type: \"angularLetDeclarationInitializer\", sourceSpan: new z(\n e.valueSpan.start, e.valueSpan.end), value: e.value }, delete e.name, delete e.value);\n}\nfunction xS(e) {\n (e.type === \"plural\" || e.type === \"select\") && (e.clause = e.type, e.type = \"angularIcuExpression\"), e.type === \"expansionCase\" && (e.type =\n \"angularIcuCase\");\n}\nfunction rm(e, t, r) {\n let { name: n, canSelfClose: a = !0, normalizeTagName: i = !1, normalizeAttributeName: l = !1, allowHtmComponentClosingTags: u = !1, isTagNameCaseSensitive: c = !1,\n shouldParseAsRawText: p } = t, { rootNodes: d, errors: h } = o5(e, { canSelfClose: a, allowHtmComponentClosingTags: u, isTagNameCaseSensitive: c,\n getTagContentType: p ? (...b) => p(...b) ? ft.RAW_TEXT : void 0 : void 0, tokenizeAngularBlocks: n === \"angular\" ? !0 : void 0, tokenizeAngularLetDeclaration: n ===\n \"angular\" ? !0 : void 0 });\n if (n === \"vue\") {\n if (d.some((C) => C.type === \"docType\" && C.value === \"html\" || C.type === \"element\" && C.name.toLowerCase() === \"html\")) return rm(e, am,\n r);\n let b, D = /* @__PURE__ */ o(() => b ?? (b = o5(e, { canSelfClose: a, allowHtmComponentClosingTags: u, isTagNameCaseSensitive: c })), \"y\"),\n x = /* @__PURE__ */ o((C) => D().rootNodes.find(({ startSourceSpan: E }) => E && E.start.offset === C.startSourceSpan.start.offset) ?? C,\n \"M\");\n for (let [C, E] of d.entries()) {\n let { endSourceSpan: R, startSourceSpan: F } = E;\n if (R === null) h = D().errors, d[C] = x(E);\n else if (CS(E, r)) {\n let A = D().errors.find((k) => k.span.start.offset > F.start.offset && k.span.start.offset < R.end.offset);\n A && l5(A), d[C] = x(E);\n }\n }\n }\n h.length > 0 && l5(h[0]);\n let f = /* @__PURE__ */ o((b) => {\n let D = b.name.startsWith(\":\") ? b.name.slice(1).split(\":\")[0] : null, x = b.nameSpan.toString(), C = D !== null && x.startsWith(`${D}:`),\n E = C ? x.slice(D.length + 1) : x;\n b.name = E, b.namespace = D, b.hasExplicitNamespace = C;\n }, \"d\"), g = /* @__PURE__ */ o((b) => {\n switch (b.type) {\n case \"element\":\n f(b);\n for (let D of b.attrs) f(D), D.valueSpan ? (D.value = D.valueSpan.toString(), /[\"']/u.test(D.value[0]) && (D.value = D.value.slice(1,\n -1))) : D.value = null;\n break;\n case \"comment\":\n b.value = b.sourceSpan.toString().slice(4, -3);\n break;\n case \"text\":\n b.value = b.sourceSpan.toString();\n break;\n }\n }, \"C\"), w = /* @__PURE__ */ o((b, D) => {\n let x = b.toLowerCase();\n return D(x) ? x : b;\n }, \"A\"), m = /* @__PURE__ */ o((b) => {\n if (b.type === \"element\" && (i && (!b.namespace || b.namespace === b.tagDefinition.implicitNamespacePrefix || Fo(b)) && (b.name = w(b.name,\n (D) => bS.has(D))), l)) for (let D of b.attrs) D.namespace || (D.name = w(D.name, (x) => Yu.has(b.name) && (Yu.get(\"*\").has(x) || Yu.get(\n b.name).has(x))));\n }, \"D\"), v = /* @__PURE__ */ o((b) => {\n b.sourceSpan && b.endSourceSpan && (b.sourceSpan = new z(b.sourceSpan.start, b.endSourceSpan.end));\n }, \"R\"), y = /* @__PURE__ */ o((b) => {\n if (b.type === \"element\") {\n let D = Ju(c ? b.name : b.name.toLowerCase());\n !b.namespace || b.namespace === D.implicitNamespacePrefix || Fo(b) ? b.tagDefinition = D : b.tagDefinition = Ju(\"\");\n }\n }, \"F\");\n return Q5(new class extends OR {\n visitExpansionCase(b, D) {\n n === \"angular\" && this.visitChildren(D, (x) => {\n x(b.expression);\n });\n }\n visit(b) {\n g(b), y(b), m(b), v(b);\n }\n }(), d), d;\n}\nfunction CS(e, t) {\n var r;\n if (e.type !== \"element\" || e.name !== \"template\") return !1;\n let n = (r = e.attrs.find((a) => a.name === \"lang\")) == null ? void 0 : r.value;\n return !n || Xi(t, { language: n }) === \"html\";\n}\nfunction l5(e) {\n let { msg: t, span: { start: r, end: n } } = e;\n throw sS(t, { loc: { start: { line: r.line + 1, column: r.col + 1 }, end: { line: n.line + 1, column: n.col + 1 } }, cause: e });\n}\nfunction nm(e, t, r = {}, n = !0) {\n let { frontMatter: a, content: i } = n ? pS(e) : { frontMatter: null, content: e }, l = new X5(e, r.filepath), u = new Zu(l, 0, 0, 0), c = u.\n moveBy(e.length), p = { type: \"root\", sourceSpan: new z(u, c), children: rm(i, t, r) };\n if (a) {\n let f = new Zu(l, 0, 0, 0), g = f.moveBy(a.raw.length);\n a.sourceSpan = new z(f, g), p.children.unshift(a);\n }\n let d = new dS(p), h = /* @__PURE__ */ o((f, g) => {\n let { offset: w } = g, m = Xe(!1, e.slice(0, w), /[^\\n\\r]/gu, \" \"), v = nm(m + f, t, r, !1);\n v.sourceSpan = new z(g, Ui(!1, v.children, -1).sourceSpan.end);\n let y = v.children[0];\n return y.length === w ? v.children.shift() : (y.sourceSpan = new z(y.sourceSpan.start.moveBy(w), y.sourceSpan.end), y.value = y.value.slice(\n w)), v;\n }, \"f\");\n return d.walk((f) => {\n if (f.type === \"comment\") {\n let g = mS(f, h);\n g && f.parent.replaceChild(f, g);\n }\n yS(f), DS(f), xS(f);\n }), d;\n}\nfunction tl(e) {\n return { parse: /* @__PURE__ */ o((t, r) => nm(t, e, r), \"parse\"), hasPragma: qE, astFormat: \"html\", locStart: Io, locEnd: Bo };\n}\nvar Hx, s5, u5, c5, ar, zx, Ox, p5, Nx, Xe, d5, f5, h5, Qu, ec, m5, tc, rc, nc, ac, g5, v5, la, w5, oc, b5, y5, Vx, Ln, Wx, qx, D5, Pr, ic, Lo,\nXx, Kx, ye, Te, J, Zx, Jx, Ui, Ii, Th, eC, dt, Tn, rC, nC, aC, oC, Ft, In, iC, lC, Gi, uC, cC, pC, fC, mC, gC, Xi, bC, yC, DC, xC, Fo, EC, S5,\nRC, UC, N5, KC, ZC, JC, eE, rE, nE, aE, oE, iE, _h, lE, uE, $5, pE, fE, ju, cc, CE, SE, j5, W5, pc, Ph, U5, ME, PE, Do, HE, NE, $E, VE, jE, WE,\nGE, tR, Ir, Zu, Bn, X5, Mn, z, Vi, _n, K5, nR, gR, wR, bR, yR, zh, Oh, DR, xR, Z5, iV, Nh, $h, Vh, jh, Wh, Tr, qh, ft, zi, Pn, CR, ER, RR, SR,\nAR, FR, J5, kR, Hn, LR, zn, _, Xh, Co, On, pa, Nn, IR, $n, BR, Vn, MR, jn, _R, Wn, PR, qn, or, Un, HR, Gn, zR, Yn, Fn, Xn, Kh, Kn, Zh, Zn, OR,\nWi, NR, $R, Br, jR, em, Jn, qu, Qn, WR, UR, qi, ea, Uu, ta, YR, ir, tm, lr, tS, ra, wc, Mr, _e, na, rS, aa, nS, _r, aS, oa, oS, Gu, iS, sS, Eo,\npS, Pi, i5, At, dS, hS, Yu, bS, am, ES, RS, SS, AS, FS, om, im = S(() => {\n Hx = Object.defineProperty, s5 = /* @__PURE__ */ o((e) => {\n throw TypeError(e);\n }, \"Xr\"), u5 = /* @__PURE__ */ o((e, t) => {\n for (var r in t) Hx(e, r, { get: t[r], enumerable: !0 });\n }, \"Jr\"), c5 = /* @__PURE__ */ o((e, t, r) => t.has(e) || s5(\"Cannot \" + r), \"Zr\"), ar = /* @__PURE__ */ o((e, t, r) => (c5(e, t, \"read fr\\\nom private field\"), r ? r.call(e) : t.get(e)), \"K\"), zx = /* @__PURE__ */ o((e, t, r) => t.has(e) ? s5(\"Cannot add the same private member m\\\nore than once\") : t instanceof WeakSet ? t.add(e) : t.set(e, r), \"en\"), Ox = /* @__PURE__ */ o((e, t, r, n) => (c5(e, t, \"write to private f\\\nield\"), n ? n.call(e, r) : t.set(e, r), r), \"tn\"), p5 = {};\n u5(p5, { languages: /* @__PURE__ */ o(() => yR, \"languages\"), options: /* @__PURE__ */ o(() => xR, \"options\"), parsers: /* @__PURE__ */ o(\n () => Z5, \"parsers\"), printers: /* @__PURE__ */ o(() => FS, \"printers\") });\n Nx = /* @__PURE__ */ o((e, t, r, n) => {\n if (!(e && t == null)) return t.replaceAll ? t.replaceAll(r, n) : r.global ? t.replace(r, n) : t.split(r).join(n);\n }, \"ni\"), Xe = Nx, d5 = \"string\", f5 = \"array\", h5 = \"cursor\", Qu = \"indent\", ec = \"align\", m5 = \"trim\", tc = \"group\", rc = \"fill\", nc = \"\\\nif-break\", ac = \"indent-if-break\", g5 = \"line-suffix\", v5 = \"line-suffix-boundary\", la = \"line\", w5 = \"label\", oc = \"break-parent\", b5 = /* @__PURE__ */ new Set(\n [h5, Qu, ec, m5, tc, rc, nc, ac, g5, v5, la, w5, oc]);\n o($x, \"si\");\n y5 = $x, Vx = /* @__PURE__ */ o((e) => new Intl.ListFormat(\"en-US\", { type: \"disjunction\" }).format(e), \"ii\");\n o(jx, \"ai\");\n Wx = (Ln = class extends Error {\n name = \"InvalidDocError\";\n constructor(t) {\n super(jx(t)), this.doc = t;\n }\n }, o(Ln, \"or\"), Ln), qx = Wx, D5 = /* @__PURE__ */ o(() => {\n }, \"rn\"), Pr = D5, ic = D5;\n o(kt, \"k\");\n o(x5, \"nn\");\n o(fe, \"_\");\n o(Ux, \"sn\");\n o(Gx, \"an\");\n o(C5, \"Et\");\n o(Oi, \"le\");\n o(Yx, \"on\");\n Lo = { type: oc }, Xx = { type: la, hard: !0 }, Kx = { type: la, hard: !0, literal: !0 }, ye = { type: la }, Te = { type: la, soft: !0 }, J =\n [Xx, Lo], Zx = [Kx, Lo];\n o(sa, \"q\");\n Jx = /* @__PURE__ */ o((e, t, r) => {\n if (!(e && t == null)) return Array.isArray(t) || typeof t == \"string\" ? t[r < 0 ? t.length + r : r] : t.at(r);\n }, \"li\"), Ui = Jx;\n o(E5, \"lr\");\n o(ht, \"B\");\n Ii = \"'\", Th = '\"';\n o(Qx, \"ci\");\n eC = Qx;\n o(tC, \"cr\");\n rC = (Tn = class {\n constructor(t) {\n zx(this, dt), Ox(this, dt, new Set(t));\n }\n getLeadingWhitespaceCount(t) {\n let r = ar(this, dt), n = 0;\n for (let a = 0; a < t.length && r.has(t.charAt(a)); a++) n++;\n return n;\n }\n getTrailingWhitespaceCount(t) {\n let r = ar(this, dt), n = 0;\n for (let a = t.length - 1; a >= 0 && r.has(t.charAt(a)); a--) n++;\n return n;\n }\n getLeadingWhitespace(t) {\n let r = this.getLeadingWhitespaceCount(t);\n return t.slice(0, r);\n }\n getTrailingWhitespace(t) {\n let r = this.getTrailingWhitespaceCount(t);\n return t.slice(t.length - r);\n }\n hasLeadingWhitespace(t) {\n return ar(this, dt).has(t.charAt(0));\n }\n hasTrailingWhitespace(t) {\n return ar(this, dt).has(Ui(!1, t, -1));\n }\n trimStart(t) {\n let r = this.getLeadingWhitespaceCount(t);\n return t.slice(r);\n }\n trimEnd(t) {\n let r = this.getTrailingWhitespaceCount(t);\n return t.slice(0, t.length - r);\n }\n trim(t) {\n return this.trimEnd(this.trimStart(t));\n }\n split(t, r = !1) {\n let n = `[${tC([...ar(this, dt)].join(\"\"))}]+`, a = new RegExp(r ? `(${n})` : n, \"u\");\n return t.split(a);\n }\n hasWhitespaceCharacter(t) {\n let r = ar(this, dt);\n return Array.prototype.some.call(t, (n) => r.has(n));\n }\n hasNonWhitespaceCharacter(t) {\n let r = ar(this, dt);\n return Array.prototype.some.call(t, (n) => !r.has(n));\n }\n isWhitespaceOnly(t) {\n let r = ar(this, dt);\n return Array.prototype.every.call(t, (n) => r.has(n));\n }\n }, o(Tn, \"pr\"), Tn);\n dt = /* @__PURE__ */ new WeakMap();\n nC = rC, aC = [\"\t\", `\n`, \"\\f\", \"\\r\", \" \"], oC = new nC(aC), Ft = oC, iC = (In = class extends Error {\n name = \"UnexpectedNodeError\";\n constructor(t, r, n = \"type\") {\n super(`Unexpected ${r} node ${n}: ${JSON.stringify(t[n])}.`), this.node = t;\n }\n }, o(In, \"hr\"), In), lC = iC;\n o(sC, \"mi\");\n Gi = sC, uC = /* @__PURE__ */ new Set([\"sourceSpan\", \"startSourceSpan\", \"endSourceSpan\", \"nameSpan\", \"valueSpan\", \"keySpan\", \"tagDefinitio\\\nn\", \"tokens\", \"valueTokens\", \"switchValueSourceSpan\", \"expSourceSpan\", \"valueSourceSpan\"]), cC = /* @__PURE__ */ new Set([\"if\", \"else if\", \"\\\nfor\", \"switch\", \"case\"]);\n o(R5, \"mn\");\n R5.ignoredProperties = uC;\n pC = R5;\n o(dC, \"gi\");\n fC = dC;\n o(Yi, \"ce\");\n o(ua, \"Y\");\n o(mt, \"T\");\n o(hC, \"Ci\");\n mC = hC, gC = /* @__PURE__ */ o((e) => String(e).split(/[/\\\\]/u).pop(), \"Si\");\n o(Ih, \"Cn\");\n o(vC, \"_i\");\n o(wC, \"Ei\");\n Xi = wC, bC = \"inline\", yC = { area: \"none\", base: \"none\", basefont: \"none\", datalist: \"none\", head: \"none\", link: \"none\", meta: \"none\", noembed: \"\\\nnone\", noframes: \"none\", param: \"block\", rp: \"none\", script: \"block\", style: \"none\", template: \"inline\", title: \"none\", html: \"block\", body: \"\\\nblock\", address: \"block\", blockquote: \"block\", center: \"block\", dialog: \"block\", div: \"block\", figure: \"block\", figcaption: \"block\", footer: \"\\\nblock\", form: \"block\", header: \"block\", hr: \"block\", legend: \"block\", listing: \"block\", main: \"block\", p: \"block\", plaintext: \"block\", pre: \"\\\nblock\", search: \"block\", xmp: \"block\", slot: \"contents\", ruby: \"ruby\", rt: \"ruby-text\", article: \"block\", aside: \"block\", h1: \"block\", h2: \"\\\nblock\", h3: \"block\", h4: \"block\", h5: \"block\", h6: \"block\", hgroup: \"block\", nav: \"block\", section: \"block\", dir: \"block\", dd: \"block\", dl: \"\\\nblock\", dt: \"block\", menu: \"block\", ol: \"block\", ul: \"block\", li: \"list-item\", table: \"table\", caption: \"table-caption\", colgroup: \"table-co\\\nlumn-group\", col: \"table-column\", thead: \"table-header-group\", tbody: \"table-row-group\", tfoot: \"table-footer-group\", tr: \"table-row\", td: \"\\\ntable-cell\", th: \"table-cell\", input: \"inline-block\", button: \"inline-block\", fieldset: \"block\", details: \"block\", summary: \"block\", marquee: \"\\\ninline-block\", source: \"block\", track: \"block\", meter: \"inline-block\", progress: \"inline-block\", object: \"inline-block\", video: \"inline-bloc\\\nk\", audio: \"inline-block\", select: \"inline-block\", option: \"block\", optgroup: \"block\" }, DC = \"normal\", xC = { listing: \"pre\", plaintext: \"p\\\nre\", pre: \"pre\", xmp: \"pre\", nobr: \"nowrap\", table: \"initial\", textarea: \"pre-wrap\" };\n o(CC, \"Ai\");\n Fo = CC, EC = /* @__PURE__ */ o((e) => Xe(!1, e, /^[\\t\\f\\r ]*\\n/gu, \"\"), \"Di\"), S5 = /* @__PURE__ */ o((e) => EC(Ft.trimEnd(e)), \"mr\"), RC =\n /* @__PURE__ */ o((e) => {\n let t = e, r = Ft.getLeadingWhitespace(t);\n r && (t = t.slice(r.length));\n let n = Ft.getTrailingWhitespace(t);\n return n && (t = t.slice(0, -n.length)), { leadingWhitespace: r, trailingWhitespace: n, text: t };\n }, \"Dn\");\n o(A5, \"Dt\");\n o(Ki, \"me\");\n o(SC, \"vi\");\n o(at, \"O\");\n o(Ot, \"U\");\n o(AC, \"vn\");\n o(FC, \"yn\");\n o(F5, \"fr\");\n o(kC, \"wn\");\n o(LC, \"bn\");\n o(TC, \"Tn\");\n o(Bi, \"Qe\");\n o(IC, \"xn\");\n o(k5, \"dr\");\n o(Vu, \"vt\");\n o(BC, \"yi\");\n o(L5, \"kn\");\n o(T5, \"Bn\");\n o(I5, \"Ln\");\n o(B5, \"Fn\");\n o(lc, \"yt\");\n o(MC, \"wi\");\n o(M5, \"Nn\");\n o(_C, \"bi\");\n o(PC, \"Ti\");\n o(HC, \"xi\");\n o(Bh, \"gr\");\n o(To, \"Xe\");\n o(zC, \"ki\");\n o(OC, \"Bi\");\n o(NC, \"Li\");\n o($C, \"Fi\");\n o(VC, \"Ni\");\n o(ia, \"he\");\n o(jC, \"Pi\");\n o(WC, \"Pn\");\n o(_5, \"In\");\n o(qC, \"Ii\");\n o(P5, \"Cr\");\n o(H5, \"Sr\");\n o(sr, \"P\");\n UC = /* @__PURE__ */ new Set([\"template\", \"style\", \"script\"]);\n o(Zi, \"Je\");\n o(ca, \"fe\");\n o(sc, \"wt\");\n o(GC, \"Rn\");\n o(YC, \"On\");\n o(z5, \"bt\");\n o(O5, \"Tt\");\n N5 = /\\{\\{(.+?)\\}\\}/su;\n o(XC, \"$n\");\n o(uc, \"Er\");\n KC = uc({ parser: \"__ng_action\" }), ZC = uc({ parser: \"__ng_binding\" }), JC = uc({ parser: \"__ng_directive\" });\n o(QC, \"qi\");\n eE = QC;\n o(tE, \"Hi\");\n rE = tE;\n o(Mh, \"Hn\");\n nE = /^[ \\t\\n\\r\\u000c]+/, aE = /^[, \\t\\n\\r\\u000c]+/, oE = /^[^ \\t\\n\\r\\u000c]+/, iE = /[,]+$/, _h = /^\\d+$/, lE = /^-?(?:[0-9]+|[0-9]*\\.[0-9]+)(?:[eE][+-]?[0-9]+)?$/;\n o(sE, \"Yi\");\n uE = sE;\n o(cE, \"ji\");\n $5 = { width: \"w\", height: \"h\", density: \"x\" }, pE = Object.keys($5);\n o(dE, \"Qi\");\n fE = cE;\n o(hE, \"Gn\");\n ju = /* @__PURE__ */ new WeakMap();\n o(mE, \"Xi\");\n cc = mE;\n o(gE, \"Yn\");\n o(vE, \"jn\");\n o(wE, \"Kn\");\n o(bE, \"Ji\");\n o(yE, \"Zi\");\n o(DE, \"ea\");\n o(xE, \"ta\");\n o(V5, \"Qn\");\n CE = yE;\n o(EE, \"ra\");\n o(RE, \"na\");\n SE = EE, j5 = new Proxy(() => {\n }, { get: /* @__PURE__ */ o(() => j5, \"get\") }), W5 = j5;\n o(AE, \"sa\");\n pc = AE;\n o(Io, \"X\");\n o(Bo, \"J\");\n o(Xu, \"Ze\");\n o(FE, \"ia\");\n o(Ro, \"de\");\n o(kE, \"aa\");\n o(Hr, \"W\");\n o(dc, \"xt\");\n o(Mo, \"ge\");\n o(q5, \"ts\");\n o(zr, \"j\");\n o(_o, \"Ce\");\n o(ko, \"Se\");\n o(Ji, \"et\");\n o(LE, \"oa\");\n o(Qi, \"tt\");\n o(TE, \"ua\");\n o(IE, \"la\");\n o(Ku, \"rt\");\n o(So, \"_e\");\n o(Or, \"z\");\n Ph = \"<!doctype\";\n o(fc, \"kt\");\n o(hc, \"Bt\");\n o(BE, \"ca\");\n U5 = BE, ME = /* @__PURE__ */ new Set([\"if\", \"else if\", \"for\", \"switch\", \"case\"]);\n o(_E, \"ha\");\n PE = _E, Do = null;\n o(Ao, \"st\");\n HE = 10;\n for (let e = 0; e <= HE; e++) Ao();\n o(zE, \"vr\");\n o(OE, \"fa\");\n NE = OE, $E = { \"front-matter\": [], root: [\"children\"], element: [\"attrs\", \"children\"], ieConditionalComment: [\"children\"], ieConditionalStartComment: [],\n ieConditionalEndComment: [], interpolation: [\"children\"], text: [\"children\"], docType: [], comment: [], attribute: [], cdata: [], angularControlFlowBlock: [\n \"children\", \"parameters\"], angularControlFlowBlockParameters: [\"children\"], angularControlFlowBlockParameter: [], angularLetDeclaration: [\n \"init\"], angularLetDeclarationInitializer: [], angularIcuExpression: [\"cases\"], angularIcuCase: [\"expression\"] }, VE = $E, jE = NE(VE), WE =\n jE;\n o(qE, \"as\");\n o(UE, \"os\");\n GE = /* @__PURE__ */ new Map([[\"if\", /* @__PURE__ */ new Set([\"else if\", \"else\"])], [\"else if\", /* @__PURE__ */ new Set([\"else if\", \"else\"])],\n [\"for\", /* @__PURE__ */ new Set([\"empty\"])], [\"defer\", /* @__PURE__ */ new Set([\"placeholder\", \"error\", \"loading\"])], [\"placeholder\", /* @__PURE__ */ new Set(\n [\"placeholder\", \"error\", \"loading\"])], [\"error\", /* @__PURE__ */ new Set([\"placeholder\", \"error\", \"loading\"])], [\"loading\", /* @__PURE__ */ new Set(\n [\"placeholder\", \"error\", \"loading\"])]]);\n o(G5, \"ls\");\n o(xo, \"it\");\n o(Mi, \"Ft\");\n o(mc, \"Ne\");\n o(YE, \"cs\");\n o(Y5, \"ps\");\n o(XE, \"Ca\");\n o(KE, \"hs\");\n o(ZE, \"ms\");\n o(JE, \"fs\");\n o(QE, \"ds\");\n o(Ni, \"at\");\n o(gc, \"Nt\");\n o($i, \"ot\");\n o(eR, \"gs\");\n o(vc, \"Pt\");\n o(Hh, \"yr\");\n o(Wu, \"It\");\n tR = /-+([a-z0-9])/g;\n o(rR, \"Ss\");\n Zu = (Ir = class {\n constructor(t, r, n, a) {\n this.file = t, this.offset = r, this.line = n, this.col = a;\n }\n toString() {\n return this.offset != null ? `${this.file.url}@${this.line}:${this.col}` : this.file.url;\n }\n moveBy(t) {\n let r = this.file.content, n = r.length, a = this.offset, i = this.line, l = this.col;\n for (; a > 0 && t < 0; ) if (a--, t++, r.charCodeAt(a) == 10) {\n i--;\n let u = r.substring(0, a - 1).lastIndexOf(`\n`);\n l = u > 0 ? a - u : a;\n } else l--;\n for (; a < n && t > 0; ) {\n let u = r.charCodeAt(a);\n a++, t--, u == 10 ? (i++, l = 0) : l++;\n }\n return new Ir(this.file, a, i, l);\n }\n getContext(t, r) {\n let n = this.file.content, a = this.offset;\n if (a != null) {\n a > n.length - 1 && (a = n.length - 1);\n let i = a, l = 0, u = 0;\n for (; l < t && a > 0 && (a--, l++, !(n[a] == `\n` && ++u == r)); ) ;\n for (l = 0, u = 0; l < t && i < n.length - 1 && (i++, l++, !(n[i] == `\n` && ++u == r)); ) ;\n return { before: n.substring(a, this.offset), after: n.substring(this.offset, i + 1) };\n }\n return null;\n }\n }, o(Ir, \"t\"), Ir), X5 = (Bn = class {\n constructor(t, r) {\n this.content = t, this.url = r;\n }\n }, o(Bn, \"Ee\"), Bn), z = (Mn = class {\n constructor(t, r, n = t, a = null) {\n this.start = t, this.end = r, this.fullStart = n, this.details = a;\n }\n toString() {\n return this.start.file.content.substring(this.start.offset, this.end.offset);\n }\n }, o(Mn, \"h\"), Mn);\n (function(e) {\n e[e.WARNING = 0] = \"WARNING\", e[e.ERROR = 1] = \"ERROR\";\n })(Vi || (Vi = {}));\n K5 = (_n = class {\n constructor(t, r, n = Vi.ERROR) {\n this.span = t, this.msg = r, this.level = n;\n }\n contextualMessage() {\n let t = this.span.start.getContext(100, 3);\n return t ? `${this.msg} (\"${t.before}[${Vi[this.level]} ->]${t.after}\")` : this.msg;\n }\n toString() {\n let t = this.span.details ? `, ${this.span.details}` : \"\";\n return `${this.contextualMessage()}: ${this.span.start}${t}`;\n }\n }, o(_n, \"Ie\"), _n), nR = [oR, iR, sR, cR, pR, hR, dR, fR, mR, uR];\n o(aR, \"Ea\");\n o(oR, \"Aa\");\n o(iR, \"Da\");\n o(lR, \"va\");\n o(sR, \"ya\");\n o(uR, \"wa\");\n o(cR, \"ba\");\n o(pR, \"Ta\");\n o(dR, \"xa\");\n o(fR, \"ka\");\n o(hR, \"Ba\");\n o(mR, \"La\");\n gR = aR;\n o(vR, \"Fa\");\n wR = { preprocess: gR, print: vR, insertPragma: UE, massageAstNode: pC, embed: PE, getVisitorKeys: WE }, bR = wR, yR = [{ linguistLanguageId: 146,\n name: \"Angular\", type: \"markup\", tmScope: \"text.html.basic\", aceMode: \"html\", codemirrorMode: \"htmlmixed\", codemirrorMimeType: \"text/html\",\n color: \"#e34c26\", aliases: [\"xhtml\"], extensions: [\".component.html\"], parsers: [\"angular\"], vscodeLanguageIds: [\"html\"], filenames: [] },\n { linguistLanguageId: 146, name: \"HTML\", type: \"markup\", tmScope: \"text.html.basic\", aceMode: \"html\", codemirrorMode: \"htmlmixed\", codemirrorMimeType: \"\\\ntext/html\", color: \"#e34c26\", aliases: [\"xhtml\"], extensions: [\".html\", \".hta\", \".htm\", \".html.hl\", \".inc\", \".xht\", \".xhtml\", \".mjml\"], parsers: [\n \"html\"], vscodeLanguageIds: [\"html\"] }, { linguistLanguageId: 146, name: \"Lightning Web Components\", type: \"markup\", tmScope: \"text.html.b\\\nasic\", aceMode: \"html\", codemirrorMode: \"htmlmixed\", codemirrorMimeType: \"text/html\", color: \"#e34c26\", aliases: [\"xhtml\"], extensions: [], parsers: [\n \"lwc\"], vscodeLanguageIds: [\"html\"], filenames: [] }, { linguistLanguageId: 391, name: \"Vue\", type: \"markup\", color: \"#41b883\", extensions: [\n \".vue\"], tmScope: \"text.html.vue\", aceMode: \"html\", parsers: [\"vue\"], vscodeLanguageIds: [\"vue\"] }], zh = { bracketSpacing: { category: \"C\\\nommon\", type: \"boolean\", default: !0, description: \"Print spaces between brackets.\", oppositeDescription: \"Do not print spaces between brack\\\nets.\" }, singleQuote: { category: \"Common\", type: \"boolean\", default: !1, description: \"Use single quotes instead of double quotes.\" }, proseWrap: {\n category: \"Common\", type: \"choice\", default: \"preserve\", description: \"How to wrap prose.\", choices: [{ value: \"always\", description: \"Wra\\\np prose if it exceeds the print width.\" }, { value: \"never\", description: \"Do not wrap prose.\" }, { value: \"preserve\", description: \"Wrap pr\\\nose as-is.\" }] }, bracketSameLine: { category: \"Common\", type: \"boolean\", default: !1, description: \"Put > of opening tags on the last line \\\ninstead of on a new line.\" }, singleAttributePerLine: { category: \"Common\", type: \"boolean\", default: !1, description: \"Enforce single attri\\\nbute per line in HTML, Vue and JSX.\" } }, Oh = \"HTML\", DR = { bracketSameLine: zh.bracketSameLine, htmlWhitespaceSensitivity: { category: Oh,\n type: \"choice\", default: \"css\", description: \"How to handle whitespaces in HTML.\", choices: [{ value: \"css\", description: \"Respect the def\\\nault value of CSS display property.\" }, { value: \"strict\", description: \"Whitespaces are considered sensitive.\" }, { value: \"ignore\", description: \"\\\nWhitespaces are considered insensitive.\" }] }, singleAttributePerLine: zh.singleAttributePerLine, vueIndentScriptAndStyle: { category: Oh, type: \"\\\nboolean\", default: !1, description: \"Indent script and style tags in Vue files.\" } }, xR = DR, Z5 = {};\n u5(Z5, { angular: /* @__PURE__ */ o(() => RS, \"angular\"), html: /* @__PURE__ */ o(() => ES, \"html\"), lwc: /* @__PURE__ */ o(() => AS, \"lwc\"),\n vue: /* @__PURE__ */ o(() => SS, \"vue\") });\n iV = new RegExp(`(\\\\:not\\\\()|(([\\\\.\\\\#]?)[-\\\\w]+)|(?:\\\\[([-.\\\\w*\\\\\\\\$]+)(?:=([\"']?)([^\\\\]\"']*)\\\\5)?\\\\])|(\\\\))|(\\\\s*,\\\\s*)`, \"g\");\n (function(e) {\n e[e.Emulated = 0] = \"Emulated\", e[e.None = 2] = \"None\", e[e.ShadowDom = 3] = \"ShadowDom\";\n })(Nh || (Nh = {}));\n (function(e) {\n e[e.OnPush = 0] = \"OnPush\", e[e.Default = 1] = \"Default\";\n })($h || ($h = {}));\n (function(e) {\n e[e.None = 0] = \"None\", e[e.SignalBased = 1] = \"SignalBased\", e[e.HasDecoratorInputTransform = 2] = \"HasDecoratorInputTransform\";\n })(Vh || (Vh = {}));\n jh = { name: \"custom-elements\" }, Wh = { name: \"no-errors-schema\" };\n (function(e) {\n 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 =\n 5] = \"RESOURCE_URL\";\n })(Tr || (Tr = {}));\n (function(e) {\n e[e.Error = 0] = \"Error\", e[e.Warning = 1] = \"Warning\", e[e.Ignore = 2] = \"Ignore\";\n })(qh || (qh = {}));\n (function(e) {\n e[e.RAW_TEXT = 0] = \"RAW_TEXT\", e[e.ESCAPABLE_RAW_TEXT = 1] = \"ESCAPABLE_RAW_TEXT\", e[e.PARSABLE_DATA = 2] = \"PARSABLE_DATA\";\n })(ft || (ft = {}));\n o(el, \"ut\");\n o(Uh, \"xr\");\n o(Gh, \"kr\");\n o(Hi, \"Re\");\n o(ji, \"Oe\");\n o(Yh, \"Br\");\n o(_i, \"Ot\");\n CR = (Pn = class {\n }, o(Pn, \"Mt\"), Pn), ER = \"boolean\", RR = \"number\", SR = \"string\", AR = \"object\", FR = [\"[Element]|textContent,%ariaAtomic,%ariaAutoComple\\\nte,%ariaBusy,%ariaChecked,%ariaColCount,%ariaColIndex,%ariaColSpan,%ariaCurrent,%ariaDescription,%ariaDisabled,%ariaExpanded,%ariaHasPopup,%\\\nariaHidden,%ariaKeyShortcuts,%ariaLabel,%ariaLevel,%ariaLive,%ariaModal,%ariaMultiLine,%ariaMultiSelectable,%ariaOrientation,%ariaPlaceholde\\\nr,%ariaPosInSet,%ariaPressed,%ariaReadOnly,%ariaRelevant,%ariaRequired,%ariaRoleDescription,%ariaRowCount,%ariaRowIndex,%ariaRowSpan,%ariaSe\\\nlected,%ariaSetSize,%ariaSort,%ariaValueMax,%ariaValueMin,%ariaValueNow,%ariaValueText,%classList,className,elementTiming,id,innerHTML,*befo\\\nrecopy,*beforecut,*beforepaste,*fullscreenchange,*fullscreenerror,*search,*webkitfullscreenchange,*webkitfullscreenerror,outerHTML,%part,#sc\\\nrollLeft,#scrollTop,slot,*message,*mozfullscreenchange,*mozfullscreenerror,*mozpointerlockchange,*mozpointerlockerror,*webglcontextcreatione\\\nrror,*webglcontextlost,*webglcontextrestored\", \"[HTMLElement]^[Element]|accessKey,autocapitalize,!autofocus,contentEditable,dir,!draggable,e\\\nnterKeyHint,!hidden,!inert,innerText,inputMode,lang,nonce,*abort,*animationend,*animationiteration,*animationstart,*auxclick,*beforexrselect\\\n,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contextmenu,*copy,*cuechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragle\\\nave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*formdata,*gotpointercapture,*input,*invalid,*keydown,*keypress\\\n,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*lostpointercapture,*mousedown,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,\\\n*mouseup,*mousewheel,*paste,*pause,*play,*playing,*pointercancel,*pointerdown,*pointerenter,*pointerleave,*pointermove,*pointerout,*pointero\\\nver,*pointerrawupdate,*pointerup,*progress,*ratechange,*reset,*resize,*scroll,*securitypolicyviolation,*seeked,*seeking,*select,*selectionch\\\nange,*selectstart,*slotchange,*stalled,*submit,*suspend,*timeupdate,*toggle,*transitioncancel,*transitionend,*transitionrun,*transitionstart\\\n,*volumechange,*waiting,*webkitanimationend,*webkitanimationiteration,*webkitanimationstart,*webkittransitionend,*wheel,outerText,!spellchec\\\nk,%style,#tabIndex,title,!translate,virtualKeyboardPolicy\", \"abbr,address,article,aside,b,bdi,bdo,cite,content,code,dd,dfn,dt,em,figcaption,\\\nfigure,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]|acces\\\nsKey,autocapitalize,!autofocus,contentEditable,dir,!draggable,enterKeyHint,!hidden,innerText,inputMode,lang,nonce,*abort,*animationend,*anim\\\nationiteration,*animationstart,*auxclick,*beforexrselect,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contextmenu,*copy,*cu\\\nechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*formda\\\nta,*gotpointercapture,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*lostpointercapture,*mousedown,\\\n*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*paste,*pause,*play,*playing,*pointercancel,*pointerdown,*point\\\nerenter,*pointerleave,*pointermove,*pointerout,*pointerover,*pointerrawupdate,*pointerup,*progress,*ratechange,*reset,*resize,*scroll,*secur\\\nitypolicyviolation,*seeked,*seeking,*select,*selectionchange,*selectstart,*slotchange,*stalled,*submit,*suspend,*timeupdate,*toggle,*transit\\\nioncancel,*transitionend,*transitionrun,*transitionstart,*volumechange,*waiting,*webkitanimationend,*webkitanimationiteration,*webkitanimati\\\nonstart,*webkittransitionend,*wheel,outerText,!spellcheck,%style,#tabIndex,title,!translate,virtualKeyboardPolicy\", \"media^[HTMLElement]|!au\\\ntoplay,!controls,%controlsList,%crossOrigin,#currentTime,!defaultMuted,#defaultPlaybackRate,!disableRemotePlayback,!loop,!muted,*encrypted,*\\\nwaitingforkey,#playbackRate,preload,!preservesPitch,src,%srcObject,#volume\", \":svg:^[HTMLElement]|!autofocus,nonce,*abort,*animationend,*ani\\\nmationiteration,*animationstart,*auxclick,*beforexrselect,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contextmenu,*copy,*c\\\nuechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*formd\\\nata,*gotpointercapture,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*lostpointercapture,*mousedown\\\n,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*paste,*pause,*play,*playing,*pointercancel,*pointerdown,*poin\\\nterenter,*pointerleave,*pointermove,*pointerout,*pointerover,*pointerrawupdate,*pointerup,*progress,*ratechange,*reset,*resize,*scroll,*secu\\\nritypolicyviolation,*seeked,*seeking,*select,*selectionchange,*selectstart,*slotchange,*stalled,*submit,*suspend,*timeupdate,*toggle,*transi\\\ntioncancel,*transitionend,*transitionrun,*transitionstart,*volumechange,*waiting,*webkitanimationend,*webkitanimationiteration,*webkitanimat\\\nionstart,*webkittransitionend,*wheel,%style,#tabIndex\", \":svg:graphics^:svg:|\", \":svg:animation^:svg:|*begin,*end,*repeat\", \":svg:geometry^:\\\nsvg:|\", \":svg:componentTransferFunction^:svg:|\", \":svg:gradient^:svg:|\", \":svg:textContent^:svg:graphics|\", \":svg:textPositioning^:svg:textC\\\nontent|\", \"a^[HTMLElement]|charset,coords,download,hash,host,hostname,href,hreflang,name,password,pathname,ping,port,protocol,referrerPolicy\\\n,rel,%relList,rev,search,shape,target,text,type,username\", \"area^[HTMLElement]|alt,coords,download,hash,host,hostname,href,!noHref,password,\\\npathname,ping,port,protocol,referrerPolicy,rel,%relList,search,shape,target,username\", \"audio^media|\", \"br^[HTMLElement]|clear\", \"base^[HTML\\\nElement]|href,target\", \"body^[HTMLElement]|aLink,background,bgColor,link,*afterprint,*beforeprint,*beforeunload,*blur,*error,*focus,*hashcha\\\nnge,*languagechange,*load,*message,*messageerror,*offline,*online,*pagehide,*pageshow,*popstate,*rejectionhandled,*resize,*scroll,*storage,*\\\nunhandledrejection,*unload,text,vLink\", \"button^[HTMLElement]|!disabled,formAction,formEnctype,formMethod,!formNoValidate,formTarget,name,ty\\\npe,value\", \"canvas^[HTMLElement]|#height,#width\", \"content^[HTMLElement]|select\", \"dl^[HTMLElement]|!compact\", \"data^[HTMLElement]|value\", \"\\\ndatalist^[HTMLElement]|\", \"details^[HTMLElement]|!open\", \"dialog^[HTMLElement]|!open,returnValue\", \"dir^[HTMLElement]|!compact\", \"div^[HTMLE\\\nlement]|align\", \"embed^[HTMLElement]|align,height,name,src,type,width\", \"fieldset^[HTMLElement]|!disabled,name\", \"font^[HTMLElement]|color,f\\\nace,size\", \"form^[HTMLElement]|acceptCharset,action,autocomplete,encoding,enctype,method,name,!noValidate,target\", \"frame^[HTMLElement]|fram\\\neBorder,longDesc,marginHeight,marginWidth,name,!noResize,scrolling,src\", \"frameset^[HTMLElement]|cols,*afterprint,*beforeprint,*beforeunload\\\n,*blur,*error,*focus,*hashchange,*languagechange,*load,*message,*messageerror,*offline,*online,*pagehide,*pageshow,*popstate,*rejectionhandl\\\ned,*resize,*scroll,*storage,*unhandledrejection,*unload,rows\", \"hr^[HTMLElement]|align,color,!noShade,size,width\", \"head^[HTMLElement]|\", \"h\\\n1,h2,h3,h4,h5,h6^[HTMLElement]|align\", \"html^[HTMLElement]|version\", \"iframe^[HTMLElement]|align,allow,!allowFullscreen,!allowPaymentRequest\\\n,csp,frameBorder,height,loading,longDesc,marginHeight,marginWidth,name,referrerPolicy,%sandbox,scrolling,src,srcdoc,width\", \"img^[HTMLElemen\\\nt]|align,alt,border,%crossOrigin,decoding,#height,#hspace,!isMap,loading,longDesc,lowsrc,name,referrerPolicy,sizes,src,srcset,useMap,#vspace\\\n,#width\", \"input^[HTMLElement]|accept,align,alt,autocomplete,!checked,!defaultChecked,defaultValue,dirName,!disabled,%files,formAction,formE\\\nnctype,formMethod,!formNoValidate,formTarget,#height,!incremental,!indeterminate,max,#maxLength,min,#minLength,!multiple,name,pattern,placeh\\\nolder,!readOnly,!required,selectionDirection,#selectionEnd,#selectionStart,#size,src,step,type,useMap,value,%valueAsDate,#valueAsNumber,#wid\\\nth\", \"li^[HTMLElement]|type,#value\", \"label^[HTMLElement]|htmlFor\", \"legend^[HTMLElement]|align\", \"link^[HTMLElement]|as,charset,%crossOrigi\\\nn,!disabled,href,hreflang,imageSizes,imageSrcset,integrity,media,referrerPolicy,rel,%relList,rev,%sizes,target,type\", \"map^[HTMLElement]|nam\\\ne\", \"marquee^[HTMLElement]|behavior,bgColor,direction,height,#hspace,#loop,#scrollAmount,#scrollDelay,!trueSpeed,#vspace,width\", \"menu^[HTML\\\nElement]|!compact\", \"meta^[HTMLElement]|content,httpEquiv,media,name,scheme\", \"meter^[HTMLElement]|#high,#low,#max,#min,#optimum,#value\", \"i\\\nns,del^[HTMLElement]|cite,dateTime\", \"ol^[HTMLElement]|!compact,!reversed,#start,type\", \"object^[HTMLElement]|align,archive,border,code,code\\\nBase,codeType,data,!declare,height,#hspace,name,standby,type,useMap,#vspace,width\", \"optgroup^[HTMLElement]|!disabled,label\", \"option^[HTMLE\\\nlement]|!defaultSelected,!disabled,label,!selected,text,value\", \"output^[HTMLElement]|defaultValue,%htmlFor,name,value\", \"p^[HTMLElement]|al\\\nign\", \"param^[HTMLElement]|name,type,value,valueType\", \"picture^[HTMLElement]|\", \"pre^[HTMLElement]|#width\", \"progress^[HTMLElement]|#max,#v\\\nalue\", \"q,blockquote,cite^[HTMLElement]|\", \"script^[HTMLElement]|!async,charset,%crossOrigin,!defer,event,htmlFor,integrity,!noModule,%refer\\\nrerPolicy,src,text,type\", \"select^[HTMLElement]|autocomplete,!disabled,#length,!multiple,name,!required,#selectedIndex,#size,value\", \"slot^[\\\nHTMLElement]|name\", \"source^[HTMLElement]|#height,media,sizes,src,srcset,type,#width\", \"span^[HTMLElement]|\", \"style^[HTMLElement]|!disabled\\\n,media,type\", \"caption^[HTMLElement]|align\", \"th,td^[HTMLElement]|abbr,align,axis,bgColor,ch,chOff,#colSpan,headers,height,!noWrap,#rowSpan,\\\nscope,vAlign,width\", \"col,colgroup^[HTMLElement]|align,ch,chOff,#span,vAlign,width\", \"table^[HTMLElement]|align,bgColor,border,%caption,cell\\\nPadding,cellSpacing,frame,rules,summary,%tFoot,%tHead,width\", \"tr^[HTMLElement]|align,bgColor,ch,chOff,vAlign\", \"tfoot,thead,tbody^[HTMLElem\\\nent]|align,ch,chOff,vAlign\", \"template^[HTMLElement]|\", \"textarea^[HTMLElement]|autocomplete,#cols,defaultValue,dirName,!disabled,#maxLength\\\n,#minLength,name,placeholder,!readOnly,!required,#rows,selectionDirection,#selectionEnd,#selectionStart,value,wrap\", \"time^[HTMLElement]|dat\\\neTime\", \"title^[HTMLElement]|text\", \"track^[HTMLElement]|!default,kind,label,src,srclang\", \"ul^[HTMLElement]|!compact,type\", \"unknown^[HTMLE\\\nlement]|\", \"video^media|!disablePictureInPicture,#height,*enterpictureinpicture,*leavepictureinpicture,!playsInline,poster,#width\", \":svg:a^\\\n:svg:graphics|\", \":svg:animate^:svg:animation|\", \":svg:animateMotion^:svg:animation|\", \":svg:animateTransform^:svg:animation|\", \":svg:circle\\\n^:svg:geometry|\", \":svg:clipPath^:svg:graphics|\", \":svg:defs^:svg:graphics|\", \":svg:desc^:svg:|\", \":svg:discard^:svg:|\", \":svg:ellipse^:svg:\\\ngeometry|\", \":svg:feBlend^:svg:|\", \":svg:feColorMatrix^:svg:|\", \":svg:feComponentTransfer^:svg:|\", \":svg:feComposite^:svg:|\", \":svg:feConvol\\\nveMatrix^:svg:|\", \":svg:feDiffuseLighting^:svg:|\", \":svg:feDisplacementMap^:svg:|\", \":svg:feDistantLight^:svg:|\", \":svg:feDropShadow^:svg:|\",\n \":svg:feFlood^:svg:|\", \":svg:feFuncA^:svg:componentTransferFunction|\", \":svg:feFuncB^:svg:componentTransferFunction|\", \":svg:feFuncG^:svg:\\\ncomponentTransferFunction|\", \":svg:feFuncR^:svg:componentTransferFunction|\", \":svg:feGaussianBlur^:svg:|\", \":svg:feImage^:svg:|\", \":svg:feMe\\\nrge^:svg:|\", \":svg:feMergeNode^:svg:|\", \":svg:feMorphology^:svg:|\", \":svg:feOffset^:svg:|\", \":svg:fePointLight^:svg:|\", \":svg:feSpecularLigh\\\nting^:svg:|\", \":svg:feSpotLight^:svg:|\", \":svg:feTile^:svg:|\", \":svg:feTurbulence^:svg:|\", \":svg:filter^:svg:|\", \":svg:foreignObject^:svg:gr\\\naphics|\", \":svg:g^:svg:graphics|\", \":svg:image^:svg:graphics|decoding\", \":svg:line^:svg:geometry|\", \":svg:linearGradient^:svg:gradient|\", \":\\\nsvg:mpath^:svg:|\", \":svg:marker^:svg:|\", \":svg:mask^:svg:|\", \":svg:metadata^:svg:|\", \":svg:path^:svg:geometry|\", \":svg:pattern^:svg:|\", \":sv\\\ng:polygon^:svg:geometry|\", \":svg:polyline^:svg:geometry|\", \":svg:radialGradient^:svg:gradient|\", \":svg:rect^:svg:geometry|\", \":svg:svg^:svg:\\\ngraphics|#currentScale,#zoomAndPan\", \":svg:script^:svg:|type\", \":svg:set^:svg:animation|\", \":svg:stop^:svg:|\", \":svg:style^:svg:|!disabled,m\\\nedia,title,type\", \":svg:switch^:svg:graphics|\", \":svg:symbol^:svg:|\", \":svg:tspan^:svg:textPositioning|\", \":svg:text^:svg:textPositioning|\",\n \":svg:textPath^:svg:textContent|\", \":svg:title^:svg:|\", \":svg:use^:svg:graphics|\", \":svg:view^:svg:|#zoomAndPan\", \"data^[HTMLElement]|valu\\\ne\", \"keygen^[HTMLElement]|!autofocus,challenge,!disabled,form,keytype,name\", \"menuitem^[HTMLElement]|type,label,icon,!disabled,!checked,radi\\\nogroup,!default\", \"summary^[HTMLElement]|\", \"time^[HTMLElement]|dateTime\", \":svg:cursor^:svg:|\", \":math:^[HTMLElement]|!autofocus,nonce,*abo\\\nrt,*animationend,*animationiteration,*animationstart,*auxclick,*beforeinput,*beforematch,*beforetoggle,*beforexrselect,*blur,*cancel,*canpla\\\ny,*canplaythrough,*change,*click,*close,*contentvisibilityautostatechange,*contextlost,*contextmenu,*contextrestored,*copy,*cuechange,*cut,*\\\ndblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*formdata,*gotpointer\\\ncapture,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*lostpointercapture,*mousedown,*mouseenter,*m\\\nouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*paste,*pause,*play,*playing,*pointercancel,*pointerdown,*pointerenter,*point\\\nerleave,*pointermove,*pointerout,*pointerover,*pointerrawupdate,*pointerup,*progress,*ratechange,*reset,*resize,*scroll,*scrollend,*security\\\npolicyviolation,*seeked,*seeking,*select,*selectionchange,*selectstart,*slotchange,*stalled,*submit,*suspend,*timeupdate,*toggle,*transition\\\ncancel,*transitionend,*transitionrun,*transitionstart,*volumechange,*waiting,*webkitanimationend,*webkitanimationiteration,*webkitanimations\\\ntart,*webkittransitionend,*wheel,%style,#tabIndex\", \":math:math^:math:|\", \":math:maction^:math:|\", \":math:menclose^:math:|\", \":math:merror^:\\\nmath:|\", \":math:mfenced^:math:|\", \":math:mfrac^:math:|\", \":math:mi^:math:|\", \":math:mmultiscripts^:math:|\", \":math:mn^:math:|\", \":math:mo^:m\\\nath:|\", \":math:mover^:math:|\", \":math:mpadded^:math:|\", \":math:mphantom^:math:|\", \":math:mroot^:math:|\", \":math:mrow^:math:|\", \":math:ms^:ma\\\nth:|\", \":math:mspace^:math:|\", \":math:msqrt^:math:|\", \":math:mstyle^:math:|\", \":math:msub^:math:|\", \":math:msubsup^:math:|\", \":math:msup^:ma\\\nth:|\", \":math:mtable^:math:|\", \":math:mtd^:math:|\", \":math:mtext^:math:|\", \":math:mtr^:math:|\", \":math:munder^:math:|\", \":math:munderover^:m\\\nath:|\", \":math:semantics^:math:|\"], J5 = new Map(Object.entries({ class: \"className\", for: \"htmlFor\", formaction: \"formAction\", innerHtml: \"\\\ninnerHTML\", readonly: \"readOnly\", tabindex: \"tabIndex\" })), kR = Array.from(J5).reduce((e, [t, r]) => (e.set(t, r), e), /* @__PURE__ */ new Map()),\n LR = (Hn = class extends CR {\n constructor() {\n super(), this._schema = /* @__PURE__ */ new Map(), this._eventSchema = /* @__PURE__ */ new Map(), FR.forEach((t) => {\n let r = /* @__PURE__ */ new Map(), n = /* @__PURE__ */ new Set(), [a, i] = t.split(\"|\"), l = i.split(\",\"), [u, c] = a.split(\"^\");\n u.split(\",\").forEach((d) => {\n this._schema.set(d.toLowerCase(), r), this._eventSchema.set(d.toLowerCase(), n);\n });\n let p = c && this._schema.get(c.toLowerCase());\n if (p) {\n for (let [d, h] of p) r.set(d, h);\n for (let d of this._eventSchema.get(c.toLowerCase())) n.add(d);\n }\n l.forEach((d) => {\n if (d.length > 0) switch (d[0]) {\n case \"*\":\n n.add(d.substring(1));\n break;\n case \"!\":\n r.set(d.substring(1), ER);\n break;\n case \"#\":\n r.set(d.substring(1), RR);\n break;\n case \"%\":\n r.set(d.substring(1), AR);\n break;\n default:\n r.set(d, SR);\n }\n });\n });\n }\n hasProperty(t, r, n) {\n if (n.some((a) => a.name === Wh.name)) return !0;\n if (t.indexOf(\"-\") > -1) {\n if (Uh(t) || Gh(t)) return !1;\n if (n.some((a) => a.name === jh.name)) return !0;\n }\n return (this._schema.get(t.toLowerCase()) || this._schema.get(\"unknown\")).has(r);\n }\n hasElement(t, r) {\n return r.some((n) => n.name === Wh.name) || t.indexOf(\"-\") > -1 && (Uh(t) || Gh(t) || r.some((n) => n.name === jh.name)) ? !0 : this._schema.\n has(t.toLowerCase());\n }\n securityContext(t, r, n) {\n n && (r = this.getMappedPropName(r)), t = t.toLowerCase(), r = r.toLowerCase();\n let a = Yh()[t + \"|\" + r];\n return a || (a = Yh()[\"*|\" + r], a || Tr.NONE);\n }\n getMappedPropName(t) {\n return J5.get(t) ?? t;\n }\n getDefaultComponentElementName() {\n return \"ng-component\";\n }\n validateProperty(t) {\n return t.toLowerCase().startsWith(\"on\") ? { error: !0, msg: `Binding to event property '${t}' is disallowed for security reasons, plea\\\nse use (${t.slice(2)})=...\nIf '${t}' is a directive input, make sure the directive is imported by the current module.` } : { error: !1 };\n }\n validateAttribute(t) {\n return t.toLowerCase().startsWith(\"on\") ? { error: !0, msg: `Binding to event attribute '${t}' is disallowed for security reasons, ple\\\nase use (${t.slice(2)})=...` } : { error: !1 };\n }\n allKnownElementNames() {\n return Array.from(this._schema.keys());\n }\n allKnownAttributesOfElement(t) {\n let r = this._schema.get(t.toLowerCase()) || this._schema.get(\"unknown\");\n return Array.from(r.keys()).map((n) => kR.get(n) ?? n);\n }\n allKnownEventsOfElement(t) {\n return Array.from(this._eventSchema.get(t.toLowerCase()) ?? []);\n }\n normalizeAnimationStyleProperty(t) {\n return rR(t);\n }\n normalizeAnimationStyleValue(t, r, n) {\n let a = \"\", i = n.toString().trim(), l = null;\n if (TR(t) && n !== 0 && n !== \"0\") if (typeof n == \"number\") a = \"px\";\n else {\n let u = n.match(/^[+-]?[\\d\\.]+([a-z]*)$/);\n u && u[1].length == 0 && (l = `Please provide a CSS unit value for ${r}:${n}`);\n }\n return { error: l, value: i + a };\n }\n }, o(Hn, \"qt\"), Hn);\n o(TR, \"Ha\");\n _ = (zn = class {\n constructor({ closedByChildren: t, implicitNamespacePrefix: r, contentType: n = ft.PARSABLE_DATA, closedByParent: a = !1, isVoid: i = !1,\n ignoreFirstLf: l = !1, preventNamespaceInheritance: u = !1, canSelfClose: c = !1 } = {}) {\n this.closedByChildren = {}, this.closedByParent = !1, t && t.length > 0 && t.forEach((p) => this.closedByChildren[p] = !0), this.isVoid =\n i, this.closedByParent = a || i, this.implicitNamespacePrefix = r || null, this.contentType = n, this.ignoreFirstLf = l, this.preventNamespaceInheritance =\n u, this.canSelfClose = c ?? i;\n }\n isClosedByChild(t) {\n return this.isVoid || t.toLowerCase() in this.closedByChildren;\n }\n getContentType(t) {\n return typeof this.contentType == \"object\" ? (t === void 0 ? void 0 : this.contentType[t]) ?? this.contentType.default : this.contentType;\n }\n }, o(zn, \"m\"), zn);\n o(Ju, \"$e\");\n pa = (On = class {\n constructor(t, r) {\n this.sourceSpan = t, this.i18n = r;\n }\n }, o(On, \"ae\"), On), IR = (Nn = class extends pa {\n constructor(t, r, n, a) {\n super(r, a), this.value = t, this.tokens = n, this.type = \"text\";\n }\n visit(t, r) {\n return t.visitText(this, r);\n }\n }, o(Nn, \"Ht\"), Nn), BR = ($n = class extends pa {\n constructor(t, r, n, a) {\n super(r, a), this.value = t, this.tokens = n, this.type = \"cdata\";\n }\n visit(t, r) {\n return t.visitCdata(this, r);\n }\n }, o($n, \"Vt\"), $n), MR = (Vn = class extends pa {\n constructor(t, r, n, a, i, l) {\n super(a, l), this.switchValue = t, this.type = r, this.cases = n, this.switchValueSourceSpan = i;\n }\n visit(t, r) {\n return t.visitExpansion(this, r);\n }\n }, o(Vn, \"Ut\"), Vn), _R = (jn = class {\n constructor(t, r, n, a, i) {\n this.value = t, this.expression = r, this.sourceSpan = n, this.valueSourceSpan = a, this.expSourceSpan = i, this.type = \"expansionCase\";\n }\n visit(t, r) {\n return t.visitExpansionCase(this, r);\n }\n }, o(jn, \"Wt\"), jn), PR = (Wn = class extends pa {\n constructor(t, r, n, a, i, l, u) {\n super(n, u), this.name = t, this.value = r, this.keySpan = a, this.valueSpan = i, this.valueTokens = l, this.type = \"attribute\";\n }\n visit(t, r) {\n return t.visitAttribute(this, r);\n }\n get nameSpan() {\n return this.keySpan;\n }\n }, o(Wn, \"zt\"), Wn), or = (qn = class extends pa {\n constructor(t, r, n, a, i, l = null, u = null, c) {\n super(a, c), this.name = t, this.attrs = r, this.children = n, this.startSourceSpan = i, this.endSourceSpan = l, this.nameSpan = u, this.\n type = \"element\";\n }\n visit(t, r) {\n return t.visitElement(this, r);\n }\n }, o(qn, \"G\"), qn), HR = (Un = class {\n constructor(t, r) {\n this.value = t, this.sourceSpan = r, this.type = \"comment\";\n }\n visit(t, r) {\n return t.visitComment(this, r);\n }\n }, o(Un, \"Gt\"), Un), zR = (Gn = class {\n constructor(t, r) {\n this.value = t, this.sourceSpan = r, this.type = \"docType\";\n }\n visit(t, r) {\n return t.visitDocType(this, r);\n }\n }, o(Gn, \"Yt\"), Gn), Fn = (Yn = class extends pa {\n constructor(t, r, n, a, i, l, u = null, c) {\n super(a, c), this.name = t, this.parameters = r, this.children = n, this.nameSpan = i, this.startSourceSpan = l, this.endSourceSpan = u,\n this.type = \"block\";\n }\n visit(t, r) {\n return t.visitBlock(this, r);\n }\n }, o(Yn, \"ee\"), Yn), Kh = (Xn = class {\n constructor(t, r) {\n this.expression = t, this.sourceSpan = r, this.type = \"blockParameter\", this.startSourceSpan = null, this.endSourceSpan = null;\n }\n visit(t, r) {\n return t.visitBlockParameter(this, r);\n }\n }, o(Xn, \"ct\"), Xn), Zh = (Kn = class {\n constructor(t, r, n, a, i) {\n this.name = t, this.value = r, this.sourceSpan = n, this.nameSpan = a, this.valueSpan = i, this.type = \"letDeclaration\", this.startSourceSpan =\n null, this.endSourceSpan = null;\n }\n visit(t, r) {\n return t.visitLetDeclaration(this, r);\n }\n }, o(Kn, \"pt\"), Kn);\n o(Q5, \"jt\");\n OR = (Zn = class {\n constructor() {\n }\n visitElement(t, r) {\n this.visitChildren(r, (n) => {\n n(t.attrs), n(t.children);\n });\n }\n visitAttribute(t, r) {\n }\n visitText(t, r) {\n }\n visitCdata(t, r) {\n }\n visitComment(t, r) {\n }\n visitDocType(t, r) {\n }\n visitExpansion(t, r) {\n return this.visitChildren(r, (n) => {\n n(t.cases);\n });\n }\n visitExpansionCase(t, r) {\n }\n visitBlock(t, r) {\n this.visitChildren(r, (n) => {\n n(t.parameters), n(t.children);\n });\n }\n visitBlockParameter(t, r) {\n }\n visitLetDeclaration(t, r) {\n }\n visitChildren(t, r) {\n let n = [], a = this;\n function i(l) {\n l && n.push(Q5(a, l, t));\n }\n return o(i, \"i\"), r(i), Array.prototype.concat.apply([], n);\n }\n }, o(Zn, \"ht\"), Zn), Wi = { AElig: \"\\xC6\", AMP: \"&\", amp: \"&\", Aacute: \"\\xC1\", Abreve: \"\\u0102\", Acirc: \"\\xC2\", Acy: \"\\u0410\", Afr: \"\\u{1D504}\",\n Agrave: \"\\xC0\", Alpha: \"\\u0391\", Amacr: \"\\u0100\", And: \"\\u2A53\", Aogon: \"\\u0104\", Aopf: \"\\u{1D538}\", ApplyFunction: \"\\u2061\", af: \"\\u2061\",\n Aring: \"\\xC5\", angst: \"\\xC5\", Ascr: \"\\u{1D49C}\", Assign: \"\\u2254\", colone: \"\\u2254\", coloneq: \"\\u2254\", Atilde: \"\\xC3\", Auml: \"\\xC4\", Backslash: \"\\\n\\u2216\", setminus: \"\\u2216\", setmn: \"\\u2216\", smallsetminus: \"\\u2216\", ssetmn: \"\\u2216\", Barv: \"\\u2AE7\", Barwed: \"\\u2306\", doublebarwedge: \"\\\n\\u2306\", Bcy: \"\\u0411\", Because: \"\\u2235\", becaus: \"\\u2235\", because: \"\\u2235\", Bernoullis: \"\\u212C\", Bscr: \"\\u212C\", bernou: \"\\u212C\", Beta: \"\\\n\\u0392\", Bfr: \"\\u{1D505}\", Bopf: \"\\u{1D539}\", Breve: \"\\u02D8\", breve: \"\\u02D8\", Bumpeq: \"\\u224E\", HumpDownHump: \"\\u224E\", bump: \"\\u224E\", CHcy: \"\\\n\\u0427\", COPY: \"\\xA9\", copy: \"\\xA9\", Cacute: \"\\u0106\", Cap: \"\\u22D2\", CapitalDifferentialD: \"\\u2145\", DD: \"\\u2145\", Cayleys: \"\\u212D\", Cfr: \"\\\n\\u212D\", Ccaron: \"\\u010C\", Ccedil: \"\\xC7\", Ccirc: \"\\u0108\", Cconint: \"\\u2230\", Cdot: \"\\u010A\", Cedilla: \"\\xB8\", cedil: \"\\xB8\", CenterDot: \"\\xB7\",\n centerdot: \"\\xB7\", middot: \"\\xB7\", Chi: \"\\u03A7\", CircleDot: \"\\u2299\", odot: \"\\u2299\", CircleMinus: \"\\u2296\", ominus: \"\\u2296\", CirclePlus: \"\\\n\\u2295\", oplus: \"\\u2295\", CircleTimes: \"\\u2297\", otimes: \"\\u2297\", ClockwiseContourIntegral: \"\\u2232\", cwconint: \"\\u2232\", CloseCurlyDoubleQuote: \"\\\n\\u201D\", rdquo: \"\\u201D\", rdquor: \"\\u201D\", CloseCurlyQuote: \"\\u2019\", rsquo: \"\\u2019\", rsquor: \"\\u2019\", Colon: \"\\u2237\", Proportion: \"\\u2237\",\n Colone: \"\\u2A74\", Congruent: \"\\u2261\", equiv: \"\\u2261\", Conint: \"\\u222F\", DoubleContourIntegral: \"\\u222F\", ContourIntegral: \"\\u222E\", conint: \"\\\n\\u222E\", oint: \"\\u222E\", Copf: \"\\u2102\", complexes: \"\\u2102\", Coproduct: \"\\u2210\", coprod: \"\\u2210\", CounterClockwiseContourIntegral: \"\\u2233\",\n awconint: \"\\u2233\", Cross: \"\\u2A2F\", Cscr: \"\\u{1D49E}\", Cup: \"\\u22D3\", CupCap: \"\\u224D\", asympeq: \"\\u224D\", DDotrahd: \"\\u2911\", DJcy: \"\\u0402\",\n DScy: \"\\u0405\", DZcy: \"\\u040F\", Dagger: \"\\u2021\", ddagger: \"\\u2021\", Darr: \"\\u21A1\", Dashv: \"\\u2AE4\", DoubleLeftTee: \"\\u2AE4\", Dcaron: \"\\u010E\",\n Dcy: \"\\u0414\", Del: \"\\u2207\", nabla: \"\\u2207\", Delta: \"\\u0394\", Dfr: \"\\u{1D507}\", DiacriticalAcute: \"\\xB4\", acute: \"\\xB4\", DiacriticalDot: \"\\\n\\u02D9\", dot: \"\\u02D9\", DiacriticalDoubleAcute: \"\\u02DD\", dblac: \"\\u02DD\", DiacriticalGrave: \"`\", grave: \"`\", DiacriticalTilde: \"\\u02DC\", tilde: \"\\\n\\u02DC\", Diamond: \"\\u22C4\", diam: \"\\u22C4\", diamond: \"\\u22C4\", DifferentialD: \"\\u2146\", dd: \"\\u2146\", Dopf: \"\\u{1D53B}\", Dot: \"\\xA8\", DoubleDot: \"\\\n\\xA8\", die: \"\\xA8\", uml: \"\\xA8\", DotDot: \"\\u20DC\", DotEqual: \"\\u2250\", doteq: \"\\u2250\", esdot: \"\\u2250\", DoubleDownArrow: \"\\u21D3\", Downarrow: \"\\\n\\u21D3\", dArr: \"\\u21D3\", DoubleLeftArrow: \"\\u21D0\", Leftarrow: \"\\u21D0\", lArr: \"\\u21D0\", DoubleLeftRightArrow: \"\\u21D4\", Leftrightarrow: \"\\u21D4\",\n hArr: \"\\u21D4\", iff: \"\\u21D4\", DoubleLongLeftArrow: \"\\u27F8\", Longleftarrow: \"\\u27F8\", xlArr: \"\\u27F8\", DoubleLongLeftRightArrow: \"\\u27FA\",\n Longleftrightarrow: \"\\u27FA\", xhArr: \"\\u27FA\", DoubleLongRightArrow: \"\\u27F9\", Longrightarrow: \"\\u27F9\", xrArr: \"\\u27F9\", DoubleRightArrow: \"\\\n\\u21D2\", Implies: \"\\u21D2\", Rightarrow: \"\\u21D2\", rArr: \"\\u21D2\", DoubleRightTee: \"\\u22A8\", vDash: \"\\u22A8\", DoubleUpArrow: \"\\u21D1\", Uparrow: \"\\\n\\u21D1\", uArr: \"\\u21D1\", DoubleUpDownArrow: \"\\u21D5\", Updownarrow: \"\\u21D5\", vArr: \"\\u21D5\", DoubleVerticalBar: \"\\u2225\", par: \"\\u2225\", parallel: \"\\\n\\u2225\", shortparallel: \"\\u2225\", spar: \"\\u2225\", DownArrow: \"\\u2193\", ShortDownArrow: \"\\u2193\", darr: \"\\u2193\", downarrow: \"\\u2193\", DownArrowBar: \"\\\n\\u2913\", DownArrowUpArrow: \"\\u21F5\", duarr: \"\\u21F5\", DownBreve: \"\\u0311\", DownLeftRightVector: \"\\u2950\", DownLeftTeeVector: \"\\u295E\", DownLeftVector: \"\\\n\\u21BD\", leftharpoondown: \"\\u21BD\", lhard: \"\\u21BD\", DownLeftVectorBar: \"\\u2956\", DownRightTeeVector: \"\\u295F\", DownRightVector: \"\\u21C1\", rhard: \"\\\n\\u21C1\", rightharpoondown: \"\\u21C1\", DownRightVectorBar: \"\\u2957\", DownTee: \"\\u22A4\", top: \"\\u22A4\", DownTeeArrow: \"\\u21A7\", mapstodown: \"\\u21A7\",\n Dscr: \"\\u{1D49F}\", Dstrok: \"\\u0110\", ENG: \"\\u014A\", ETH: \"\\xD0\", Eacute: \"\\xC9\", Ecaron: \"\\u011A\", Ecirc: \"\\xCA\", Ecy: \"\\u042D\", Edot: \"\\u0116\",\n Efr: \"\\u{1D508}\", Egrave: \"\\xC8\", Element: \"\\u2208\", in: \"\\u2208\", isin: \"\\u2208\", isinv: \"\\u2208\", Emacr: \"\\u0112\", EmptySmallSquare: \"\\u25FB\",\n EmptyVerySmallSquare: \"\\u25AB\", Eogon: \"\\u0118\", Eopf: \"\\u{1D53C}\", Epsilon: \"\\u0395\", Equal: \"\\u2A75\", EqualTilde: \"\\u2242\", eqsim: \"\\u2242\",\n esim: \"\\u2242\", Equilibrium: \"\\u21CC\", rightleftharpoons: \"\\u21CC\", rlhar: \"\\u21CC\", Escr: \"\\u2130\", expectation: \"\\u2130\", Esim: \"\\u2A73\",\n Eta: \"\\u0397\", Euml: \"\\xCB\", Exists: \"\\u2203\", exist: \"\\u2203\", ExponentialE: \"\\u2147\", ee: \"\\u2147\", exponentiale: \"\\u2147\", Fcy: \"\\u0424\",\n Ffr: \"\\u{1D509}\", FilledSmallSquare: \"\\u25FC\", FilledVerySmallSquare: \"\\u25AA\", blacksquare: \"\\u25AA\", squarf: \"\\u25AA\", squf: \"\\u25AA\", Fopf: \"\\\n\\u{1D53D}\", ForAll: \"\\u2200\", forall: \"\\u2200\", Fouriertrf: \"\\u2131\", Fscr: \"\\u2131\", GJcy: \"\\u0403\", GT: \">\", gt: \">\", Gamma: \"\\u0393\", Gammad: \"\\\n\\u03DC\", Gbreve: \"\\u011E\", Gcedil: \"\\u0122\", Gcirc: \"\\u011C\", Gcy: \"\\u0413\", Gdot: \"\\u0120\", Gfr: \"\\u{1D50A}\", Gg: \"\\u22D9\", ggg: \"\\u22D9\", Gopf: \"\\\n\\u{1D53E}\", GreaterEqual: \"\\u2265\", ge: \"\\u2265\", geq: \"\\u2265\", GreaterEqualLess: \"\\u22DB\", gel: \"\\u22DB\", gtreqless: \"\\u22DB\", GreaterFullEqual: \"\\\n\\u2267\", gE: \"\\u2267\", geqq: \"\\u2267\", GreaterGreater: \"\\u2AA2\", GreaterLess: \"\\u2277\", gl: \"\\u2277\", gtrless: \"\\u2277\", GreaterSlantEqual: \"\\\n\\u2A7E\", geqslant: \"\\u2A7E\", ges: \"\\u2A7E\", GreaterTilde: \"\\u2273\", gsim: \"\\u2273\", gtrsim: \"\\u2273\", Gscr: \"\\u{1D4A2}\", Gt: \"\\u226B\", NestedGreaterGreater: \"\\\n\\u226B\", gg: \"\\u226B\", HARDcy: \"\\u042A\", Hacek: \"\\u02C7\", caron: \"\\u02C7\", Hat: \"^\", Hcirc: \"\\u0124\", Hfr: \"\\u210C\", Poincareplane: \"\\u210C\",\n HilbertSpace: \"\\u210B\", Hscr: \"\\u210B\", hamilt: \"\\u210B\", Hopf: \"\\u210D\", quaternions: \"\\u210D\", HorizontalLine: \"\\u2500\", boxh: \"\\u2500\",\n Hstrok: \"\\u0126\", HumpEqual: \"\\u224F\", bumpe: \"\\u224F\", bumpeq: \"\\u224F\", IEcy: \"\\u0415\", IJlig: \"\\u0132\", IOcy: \"\\u0401\", Iacute: \"\\xCD\",\n Icirc: \"\\xCE\", Icy: \"\\u0418\", Idot: \"\\u0130\", Ifr: \"\\u2111\", Im: \"\\u2111\", image: \"\\u2111\", imagpart: \"\\u2111\", Igrave: \"\\xCC\", Imacr: \"\\u012A\",\n ImaginaryI: \"\\u2148\", ii: \"\\u2148\", Int: \"\\u222C\", Integral: \"\\u222B\", int: \"\\u222B\", Intersection: \"\\u22C2\", bigcap: \"\\u22C2\", xcap: \"\\u22C2\",\n InvisibleComma: \"\\u2063\", ic: \"\\u2063\", InvisibleTimes: \"\\u2062\", it: \"\\u2062\", Iogon: \"\\u012E\", Iopf: \"\\u{1D540}\", Iota: \"\\u0399\", Iscr: \"\\\n\\u2110\", imagline: \"\\u2110\", Itilde: \"\\u0128\", Iukcy: \"\\u0406\", Iuml: \"\\xCF\", Jcirc: \"\\u0134\", Jcy: \"\\u0419\", Jfr: \"\\u{1D50D}\", Jopf: \"\\u{1D541}\",\n Jscr: \"\\u{1D4A5}\", Jsercy: \"\\u0408\", Jukcy: \"\\u0404\", KHcy: \"\\u0425\", KJcy: \"\\u040C\", Kappa: \"\\u039A\", Kcedil: \"\\u0136\", Kcy: \"\\u041A\", Kfr: \"\\\n\\u{1D50E}\", Kopf: \"\\u{1D542}\", Kscr: \"\\u{1D4A6}\", LJcy: \"\\u0409\", LT: \"<\", lt: \"<\", Lacute: \"\\u0139\", Lambda: \"\\u039B\", Lang: \"\\u27EA\", Laplacetrf: \"\\\n\\u2112\", Lscr: \"\\u2112\", lagran: \"\\u2112\", Larr: \"\\u219E\", twoheadleftarrow: \"\\u219E\", Lcaron: \"\\u013D\", Lcedil: \"\\u013B\", Lcy: \"\\u041B\", LeftAngleBracket: \"\\\n\\u27E8\", lang: \"\\u27E8\", langle: \"\\u27E8\", LeftArrow: \"\\u2190\", ShortLeftArrow: \"\\u2190\", larr: \"\\u2190\", leftarrow: \"\\u2190\", slarr: \"\\u2190\",\n LeftArrowBar: \"\\u21E4\", larrb: \"\\u21E4\", LeftArrowRightArrow: \"\\u21C6\", leftrightarrows: \"\\u21C6\", lrarr: \"\\u21C6\", LeftCeiling: \"\\u2308\",\n lceil: \"\\u2308\", LeftDoubleBracket: \"\\u27E6\", lobrk: \"\\u27E6\", LeftDownTeeVector: \"\\u2961\", LeftDownVector: \"\\u21C3\", dharl: \"\\u21C3\", downharpoonleft: \"\\\n\\u21C3\", LeftDownVectorBar: \"\\u2959\", LeftFloor: \"\\u230A\", lfloor: \"\\u230A\", LeftRightArrow: \"\\u2194\", harr: \"\\u2194\", leftrightarrow: \"\\u2194\",\n LeftRightVector: \"\\u294E\", LeftTee: \"\\u22A3\", dashv: \"\\u22A3\", LeftTeeArrow: \"\\u21A4\", mapstoleft: \"\\u21A4\", LeftTeeVector: \"\\u295A\", LeftTriangle: \"\\\n\\u22B2\", vartriangleleft: \"\\u22B2\", vltri: \"\\u22B2\", LeftTriangleBar: \"\\u29CF\", LeftTriangleEqual: \"\\u22B4\", ltrie: \"\\u22B4\", trianglelefteq: \"\\\n\\u22B4\", LeftUpDownVector: \"\\u2951\", LeftUpTeeVector: \"\\u2960\", LeftUpVector: \"\\u21BF\", uharl: \"\\u21BF\", upharpoonleft: \"\\u21BF\", LeftUpVectorBar: \"\\\n\\u2958\", LeftVector: \"\\u21BC\", leftharpoonup: \"\\u21BC\", lharu: \"\\u21BC\", LeftVectorBar: \"\\u2952\", LessEqualGreater: \"\\u22DA\", leg: \"\\u22DA\",\n lesseqgtr: \"\\u22DA\", LessFullEqual: \"\\u2266\", lE: \"\\u2266\", leqq: \"\\u2266\", LessGreater: \"\\u2276\", lessgtr: \"\\u2276\", lg: \"\\u2276\", LessLess: \"\\\n\\u2AA1\", LessSlantEqual: \"\\u2A7D\", leqslant: \"\\u2A7D\", les: \"\\u2A7D\", LessTilde: \"\\u2272\", lesssim: \"\\u2272\", lsim: \"\\u2272\", Lfr: \"\\u{1D50F}\",\n Ll: \"\\u22D8\", Lleftarrow: \"\\u21DA\", lAarr: \"\\u21DA\", Lmidot: \"\\u013F\", LongLeftArrow: \"\\u27F5\", longleftarrow: \"\\u27F5\", xlarr: \"\\u27F5\", LongLeftRightArrow: \"\\\n\\u27F7\", longleftrightarrow: \"\\u27F7\", xharr: \"\\u27F7\", LongRightArrow: \"\\u27F6\", longrightarrow: \"\\u27F6\", xrarr: \"\\u27F6\", Lopf: \"\\u{1D543}\",\n LowerLeftArrow: \"\\u2199\", swarr: \"\\u2199\", swarrow: \"\\u2199\", LowerRightArrow: \"\\u2198\", searr: \"\\u2198\", searrow: \"\\u2198\", Lsh: \"\\u21B0\",\n lsh: \"\\u21B0\", Lstrok: \"\\u0141\", Lt: \"\\u226A\", NestedLessLess: \"\\u226A\", ll: \"\\u226A\", Map: \"\\u2905\", Mcy: \"\\u041C\", MediumSpace: \"\\u205F\",\n Mellintrf: \"\\u2133\", Mscr: \"\\u2133\", phmmat: \"\\u2133\", Mfr: \"\\u{1D510}\", MinusPlus: \"\\u2213\", mnplus: \"\\u2213\", mp: \"\\u2213\", Mopf: \"\\u{1D544}\",\n Mu: \"\\u039C\", NJcy: \"\\u040A\", Nacute: \"\\u0143\", Ncaron: \"\\u0147\", Ncedil: \"\\u0145\", Ncy: \"\\u041D\", NegativeMediumSpace: \"\\u200B\", NegativeThickSpace: \"\\\n\\u200B\", NegativeThinSpace: \"\\u200B\", NegativeVeryThinSpace: \"\\u200B\", ZeroWidthSpace: \"\\u200B\", NewLine: `\n`, Nfr: \"\\u{1D511}\", NoBreak: \"\\u2060\", NonBreakingSpace: \"\\xA0\", nbsp: \"\\xA0\", Nopf: \"\\u2115\", naturals: \"\\u2115\", Not: \"\\u2AEC\", NotCongruent: \"\\\n\\u2262\", nequiv: \"\\u2262\", NotCupCap: \"\\u226D\", NotDoubleVerticalBar: \"\\u2226\", npar: \"\\u2226\", nparallel: \"\\u2226\", nshortparallel: \"\\u2226\",\n nspar: \"\\u2226\", NotElement: \"\\u2209\", notin: \"\\u2209\", notinva: \"\\u2209\", NotEqual: \"\\u2260\", ne: \"\\u2260\", NotEqualTilde: \"\\u2242\\u0338\",\n nesim: \"\\u2242\\u0338\", NotExists: \"\\u2204\", nexist: \"\\u2204\", nexists: \"\\u2204\", NotGreater: \"\\u226F\", ngt: \"\\u226F\", ngtr: \"\\u226F\", NotGreaterEqual: \"\\\n\\u2271\", nge: \"\\u2271\", ngeq: \"\\u2271\", NotGreaterFullEqual: \"\\u2267\\u0338\", ngE: \"\\u2267\\u0338\", ngeqq: \"\\u2267\\u0338\", NotGreaterGreater: \"\\\n\\u226B\\u0338\", nGtv: \"\\u226B\\u0338\", NotGreaterLess: \"\\u2279\", ntgl: \"\\u2279\", NotGreaterSlantEqual: \"\\u2A7E\\u0338\", ngeqslant: \"\\u2A7E\\u0338\",\n nges: \"\\u2A7E\\u0338\", NotGreaterTilde: \"\\u2275\", ngsim: \"\\u2275\", NotHumpDownHump: \"\\u224E\\u0338\", nbump: \"\\u224E\\u0338\", NotHumpEqual: \"\\u224F\\\n\\u0338\", nbumpe: \"\\u224F\\u0338\", NotLeftTriangle: \"\\u22EA\", nltri: \"\\u22EA\", ntriangleleft: \"\\u22EA\", NotLeftTriangleBar: \"\\u29CF\\u0338\", NotLeftTriangleEqual: \"\\\n\\u22EC\", nltrie: \"\\u22EC\", ntrianglelefteq: \"\\u22EC\", NotLess: \"\\u226E\", nless: \"\\u226E\", nlt: \"\\u226E\", NotLessEqual: \"\\u2270\", nle: \"\\u2270\",\n nleq: \"\\u2270\", NotLessGreater: \"\\u2278\", ntlg: \"\\u2278\", NotLessLess: \"\\u226A\\u0338\", nLtv: \"\\u226A\\u0338\", NotLessSlantEqual: \"\\u2A7D\\u0338\",\n nleqslant: \"\\u2A7D\\u0338\", nles: \"\\u2A7D\\u0338\", NotLessTilde: \"\\u2274\", nlsim: \"\\u2274\", NotNestedGreaterGreater: \"\\u2AA2\\u0338\", NotNestedLessLess: \"\\\n\\u2AA1\\u0338\", NotPrecedes: \"\\u2280\", npr: \"\\u2280\", nprec: \"\\u2280\", NotPrecedesEqual: \"\\u2AAF\\u0338\", npre: \"\\u2AAF\\u0338\", npreceq: \"\\u2AAF\\u0338\",\n NotPrecedesSlantEqual: \"\\u22E0\", nprcue: \"\\u22E0\", NotReverseElement: \"\\u220C\", notni: \"\\u220C\", notniva: \"\\u220C\", NotRightTriangle: \"\\u22EB\",\n nrtri: \"\\u22EB\", ntriangleright: \"\\u22EB\", NotRightTriangleBar: \"\\u29D0\\u0338\", NotRightTriangleEqual: \"\\u22ED\", nrtrie: \"\\u22ED\", ntrianglerighteq: \"\\\n\\u22ED\", NotSquareSubset: \"\\u228F\\u0338\", NotSquareSubsetEqual: \"\\u22E2\", nsqsube: \"\\u22E2\", NotSquareSuperset: \"\\u2290\\u0338\", NotSquareSupersetEqual: \"\\\n\\u22E3\", nsqsupe: \"\\u22E3\", NotSubset: \"\\u2282\\u20D2\", nsubset: \"\\u2282\\u20D2\", vnsub: \"\\u2282\\u20D2\", NotSubsetEqual: \"\\u2288\", nsube: \"\\u2288\",\n nsubseteq: \"\\u2288\", NotSucceeds: \"\\u2281\", nsc: \"\\u2281\", nsucc: \"\\u2281\", NotSucceedsEqual: \"\\u2AB0\\u0338\", nsce: \"\\u2AB0\\u0338\", nsucceq: \"\\\n\\u2AB0\\u0338\", NotSucceedsSlantEqual: \"\\u22E1\", nsccue: \"\\u22E1\", NotSucceedsTilde: \"\\u227F\\u0338\", NotSuperset: \"\\u2283\\u20D2\", nsupset: \"\\u2283\\\n\\u20D2\", vnsup: \"\\u2283\\u20D2\", NotSupersetEqual: \"\\u2289\", nsupe: \"\\u2289\", nsupseteq: \"\\u2289\", NotTilde: \"\\u2241\", nsim: \"\\u2241\", NotTildeEqual: \"\\\n\\u2244\", nsime: \"\\u2244\", nsimeq: \"\\u2244\", NotTildeFullEqual: \"\\u2247\", ncong: \"\\u2247\", NotTildeTilde: \"\\u2249\", nap: \"\\u2249\", napprox: \"\\\n\\u2249\", NotVerticalBar: \"\\u2224\", nmid: \"\\u2224\", nshortmid: \"\\u2224\", nsmid: \"\\u2224\", Nscr: \"\\u{1D4A9}\", Ntilde: \"\\xD1\", Nu: \"\\u039D\", OElig: \"\\\n\\u0152\", Oacute: \"\\xD3\", Ocirc: \"\\xD4\", Ocy: \"\\u041E\", Odblac: \"\\u0150\", Ofr: \"\\u{1D512}\", Ograve: \"\\xD2\", Omacr: \"\\u014C\", Omega: \"\\u03A9\",\n ohm: \"\\u03A9\", Omicron: \"\\u039F\", Oopf: \"\\u{1D546}\", OpenCurlyDoubleQuote: \"\\u201C\", ldquo: \"\\u201C\", OpenCurlyQuote: \"\\u2018\", lsquo: \"\\u2018\",\n Or: \"\\u2A54\", Oscr: \"\\u{1D4AA}\", Oslash: \"\\xD8\", Otilde: \"\\xD5\", Otimes: \"\\u2A37\", Ouml: \"\\xD6\", OverBar: \"\\u203E\", oline: \"\\u203E\", OverBrace: \"\\\n\\u23DE\", OverBracket: \"\\u23B4\", tbrk: \"\\u23B4\", OverParenthesis: \"\\u23DC\", PartialD: \"\\u2202\", part: \"\\u2202\", Pcy: \"\\u041F\", Pfr: \"\\u{1D513}\",\n Phi: \"\\u03A6\", Pi: \"\\u03A0\", PlusMinus: \"\\xB1\", plusmn: \"\\xB1\", pm: \"\\xB1\", Popf: \"\\u2119\", primes: \"\\u2119\", Pr: \"\\u2ABB\", Precedes: \"\\u227A\",\n pr: \"\\u227A\", prec: \"\\u227A\", PrecedesEqual: \"\\u2AAF\", pre: \"\\u2AAF\", preceq: \"\\u2AAF\", PrecedesSlantEqual: \"\\u227C\", prcue: \"\\u227C\", preccurlyeq: \"\\\n\\u227C\", PrecedesTilde: \"\\u227E\", precsim: \"\\u227E\", prsim: \"\\u227E\", Prime: \"\\u2033\", Product: \"\\u220F\", prod: \"\\u220F\", Proportional: \"\\u221D\",\n prop: \"\\u221D\", propto: \"\\u221D\", varpropto: \"\\u221D\", vprop: \"\\u221D\", Pscr: \"\\u{1D4AB}\", Psi: \"\\u03A8\", QUOT: '\"', quot: '\"', Qfr: \"\\u{1D514}\",\n Qopf: \"\\u211A\", rationals: \"\\u211A\", Qscr: \"\\u{1D4AC}\", RBarr: \"\\u2910\", drbkarow: \"\\u2910\", REG: \"\\xAE\", circledR: \"\\xAE\", reg: \"\\xAE\", Racute: \"\\\n\\u0154\", Rang: \"\\u27EB\", Rarr: \"\\u21A0\", twoheadrightarrow: \"\\u21A0\", Rarrtl: \"\\u2916\", Rcaron: \"\\u0158\", Rcedil: \"\\u0156\", Rcy: \"\\u0420\", Re: \"\\\n\\u211C\", Rfr: \"\\u211C\", real: \"\\u211C\", realpart: \"\\u211C\", ReverseElement: \"\\u220B\", SuchThat: \"\\u220B\", ni: \"\\u220B\", niv: \"\\u220B\", ReverseEquilibrium: \"\\\n\\u21CB\", leftrightharpoons: \"\\u21CB\", lrhar: \"\\u21CB\", ReverseUpEquilibrium: \"\\u296F\", duhar: \"\\u296F\", Rho: \"\\u03A1\", RightAngleBracket: \"\\u27E9\",\n rang: \"\\u27E9\", rangle: \"\\u27E9\", RightArrow: \"\\u2192\", ShortRightArrow: \"\\u2192\", rarr: \"\\u2192\", rightarrow: \"\\u2192\", srarr: \"\\u2192\", RightArrowBar: \"\\\n\\u21E5\", rarrb: \"\\u21E5\", RightArrowLeftArrow: \"\\u21C4\", rightleftarrows: \"\\u21C4\", rlarr: \"\\u21C4\", RightCeiling: \"\\u2309\", rceil: \"\\u2309\",\n RightDoubleBracket: \"\\u27E7\", robrk: \"\\u27E7\", RightDownTeeVector: \"\\u295D\", RightDownVector: \"\\u21C2\", dharr: \"\\u21C2\", downharpoonright: \"\\\n\\u21C2\", RightDownVectorBar: \"\\u2955\", RightFloor: \"\\u230B\", rfloor: \"\\u230B\", RightTee: \"\\u22A2\", vdash: \"\\u22A2\", RightTeeArrow: \"\\u21A6\",\n map: \"\\u21A6\", mapsto: \"\\u21A6\", RightTeeVector: \"\\u295B\", RightTriangle: \"\\u22B3\", vartriangleright: \"\\u22B3\", vrtri: \"\\u22B3\", RightTriangleBar: \"\\\n\\u29D0\", RightTriangleEqual: \"\\u22B5\", rtrie: \"\\u22B5\", trianglerighteq: \"\\u22B5\", RightUpDownVector: \"\\u294F\", RightUpTeeVector: \"\\u295C\", RightUpVector: \"\\\n\\u21BE\", uharr: \"\\u21BE\", upharpoonright: \"\\u21BE\", RightUpVectorBar: \"\\u2954\", RightVector: \"\\u21C0\", rharu: \"\\u21C0\", rightharpoonup: \"\\u21C0\",\n RightVectorBar: \"\\u2953\", Ropf: \"\\u211D\", reals: \"\\u211D\", RoundImplies: \"\\u2970\", Rrightarrow: \"\\u21DB\", rAarr: \"\\u21DB\", Rscr: \"\\u211B\",\n realine: \"\\u211B\", Rsh: \"\\u21B1\", rsh: \"\\u21B1\", RuleDelayed: \"\\u29F4\", SHCHcy: \"\\u0429\", SHcy: \"\\u0428\", SOFTcy: \"\\u042C\", Sacute: \"\\u015A\",\n Sc: \"\\u2ABC\", Scaron: \"\\u0160\", Scedil: \"\\u015E\", Scirc: \"\\u015C\", Scy: \"\\u0421\", Sfr: \"\\u{1D516}\", ShortUpArrow: \"\\u2191\", UpArrow: \"\\u2191\",\n uarr: \"\\u2191\", uparrow: \"\\u2191\", Sigma: \"\\u03A3\", SmallCircle: \"\\u2218\", compfn: \"\\u2218\", Sopf: \"\\u{1D54A}\", Sqrt: \"\\u221A\", radic: \"\\u221A\",\n Square: \"\\u25A1\", squ: \"\\u25A1\", square: \"\\u25A1\", SquareIntersection: \"\\u2293\", sqcap: \"\\u2293\", SquareSubset: \"\\u228F\", sqsub: \"\\u228F\",\n sqsubset: \"\\u228F\", SquareSubsetEqual: \"\\u2291\", sqsube: \"\\u2291\", sqsubseteq: \"\\u2291\", SquareSuperset: \"\\u2290\", sqsup: \"\\u2290\", sqsupset: \"\\\n\\u2290\", SquareSupersetEqual: \"\\u2292\", sqsupe: \"\\u2292\", sqsupseteq: \"\\u2292\", SquareUnion: \"\\u2294\", sqcup: \"\\u2294\", Sscr: \"\\u{1D4AE}\", Star: \"\\\n\\u22C6\", sstarf: \"\\u22C6\", Sub: \"\\u22D0\", Subset: \"\\u22D0\", SubsetEqual: \"\\u2286\", sube: \"\\u2286\", subseteq: \"\\u2286\", Succeeds: \"\\u227B\", sc: \"\\\n\\u227B\", succ: \"\\u227B\", SucceedsEqual: \"\\u2AB0\", sce: \"\\u2AB0\", succeq: \"\\u2AB0\", SucceedsSlantEqual: \"\\u227D\", sccue: \"\\u227D\", succcurlyeq: \"\\\n\\u227D\", SucceedsTilde: \"\\u227F\", scsim: \"\\u227F\", succsim: \"\\u227F\", Sum: \"\\u2211\", sum: \"\\u2211\", Sup: \"\\u22D1\", Supset: \"\\u22D1\", Superset: \"\\\n\\u2283\", sup: \"\\u2283\", supset: \"\\u2283\", SupersetEqual: \"\\u2287\", supe: \"\\u2287\", supseteq: \"\\u2287\", THORN: \"\\xDE\", TRADE: \"\\u2122\", trade: \"\\\n\\u2122\", TSHcy: \"\\u040B\", TScy: \"\\u0426\", Tab: \"\t\", Tau: \"\\u03A4\", Tcaron: \"\\u0164\", Tcedil: \"\\u0162\", Tcy: \"\\u0422\", Tfr: \"\\u{1D517}\", Therefore: \"\\\n\\u2234\", there4: \"\\u2234\", therefore: \"\\u2234\", Theta: \"\\u0398\", ThickSpace: \"\\u205F\\u200A\", ThinSpace: \"\\u2009\", thinsp: \"\\u2009\", Tilde: \"\\\n\\u223C\", sim: \"\\u223C\", thicksim: \"\\u223C\", thksim: \"\\u223C\", TildeEqual: \"\\u2243\", sime: \"\\u2243\", simeq: \"\\u2243\", TildeFullEqual: \"\\u2245\",\n cong: \"\\u2245\", TildeTilde: \"\\u2248\", ap: \"\\u2248\", approx: \"\\u2248\", asymp: \"\\u2248\", thickapprox: \"\\u2248\", thkap: \"\\u2248\", Topf: \"\\u{1D54B}\",\n TripleDot: \"\\u20DB\", tdot: \"\\u20DB\", Tscr: \"\\u{1D4AF}\", Tstrok: \"\\u0166\", Uacute: \"\\xDA\", Uarr: \"\\u219F\", Uarrocir: \"\\u2949\", Ubrcy: \"\\u040E\",\n Ubreve: \"\\u016C\", Ucirc: \"\\xDB\", Ucy: \"\\u0423\", Udblac: \"\\u0170\", Ufr: \"\\u{1D518}\", Ugrave: \"\\xD9\", Umacr: \"\\u016A\", UnderBar: \"_\", lowbar: \"\\\n_\", UnderBrace: \"\\u23DF\", UnderBracket: \"\\u23B5\", bbrk: \"\\u23B5\", UnderParenthesis: \"\\u23DD\", Union: \"\\u22C3\", bigcup: \"\\u22C3\", xcup: \"\\u22C3\",\n UnionPlus: \"\\u228E\", uplus: \"\\u228E\", Uogon: \"\\u0172\", Uopf: \"\\u{1D54C}\", UpArrowBar: \"\\u2912\", UpArrowDownArrow: \"\\u21C5\", udarr: \"\\u21C5\",\n UpDownArrow: \"\\u2195\", updownarrow: \"\\u2195\", varr: \"\\u2195\", UpEquilibrium: \"\\u296E\", udhar: \"\\u296E\", UpTee: \"\\u22A5\", bot: \"\\u22A5\", bottom: \"\\\n\\u22A5\", perp: \"\\u22A5\", UpTeeArrow: \"\\u21A5\", mapstoup: \"\\u21A5\", UpperLeftArrow: \"\\u2196\", nwarr: \"\\u2196\", nwarrow: \"\\u2196\", UpperRightArrow: \"\\\n\\u2197\", nearr: \"\\u2197\", nearrow: \"\\u2197\", Upsi: \"\\u03D2\", upsih: \"\\u03D2\", Upsilon: \"\\u03A5\", Uring: \"\\u016E\", Uscr: \"\\u{1D4B0}\", Utilde: \"\\\n\\u0168\", Uuml: \"\\xDC\", VDash: \"\\u22AB\", Vbar: \"\\u2AEB\", Vcy: \"\\u0412\", Vdash: \"\\u22A9\", Vdashl: \"\\u2AE6\", Vee: \"\\u22C1\", bigvee: \"\\u22C1\", xvee: \"\\\n\\u22C1\", Verbar: \"\\u2016\", Vert: \"\\u2016\", VerticalBar: \"\\u2223\", mid: \"\\u2223\", shortmid: \"\\u2223\", smid: \"\\u2223\", VerticalLine: \"|\", verbar: \"\\\n|\", vert: \"|\", VerticalSeparator: \"\\u2758\", VerticalTilde: \"\\u2240\", wr: \"\\u2240\", wreath: \"\\u2240\", VeryThinSpace: \"\\u200A\", hairsp: \"\\u200A\",\n Vfr: \"\\u{1D519}\", Vopf: \"\\u{1D54D}\", Vscr: \"\\u{1D4B1}\", Vvdash: \"\\u22AA\", Wcirc: \"\\u0174\", Wedge: \"\\u22C0\", bigwedge: \"\\u22C0\", xwedge: \"\\u22C0\",\n Wfr: \"\\u{1D51A}\", Wopf: \"\\u{1D54E}\", Wscr: \"\\u{1D4B2}\", Xfr: \"\\u{1D51B}\", Xi: \"\\u039E\", Xopf: \"\\u{1D54F}\", Xscr: \"\\u{1D4B3}\", YAcy: \"\\u042F\",\n YIcy: \"\\u0407\", YUcy: \"\\u042E\", Yacute: \"\\xDD\", Ycirc: \"\\u0176\", Ycy: \"\\u042B\", Yfr: \"\\u{1D51C}\", Yopf: \"\\u{1D550}\", Yscr: \"\\u{1D4B4}\", Yuml: \"\\\n\\u0178\", ZHcy: \"\\u0416\", Zacute: \"\\u0179\", Zcaron: \"\\u017D\", Zcy: \"\\u0417\", Zdot: \"\\u017B\", Zeta: \"\\u0396\", Zfr: \"\\u2128\", zeetrf: \"\\u2128\",\n Zopf: \"\\u2124\", integers: \"\\u2124\", Zscr: \"\\u{1D4B5}\", aacute: \"\\xE1\", abreve: \"\\u0103\", ac: \"\\u223E\", mstpos: \"\\u223E\", acE: \"\\u223E\\u0333\",\n acd: \"\\u223F\", acirc: \"\\xE2\", acy: \"\\u0430\", aelig: \"\\xE6\", afr: \"\\u{1D51E}\", agrave: \"\\xE0\", alefsym: \"\\u2135\", aleph: \"\\u2135\", alpha: \"\\\n\\u03B1\", amacr: \"\\u0101\", amalg: \"\\u2A3F\", and: \"\\u2227\", wedge: \"\\u2227\", andand: \"\\u2A55\", andd: \"\\u2A5C\", andslope: \"\\u2A58\", andv: \"\\u2A5A\",\n ang: \"\\u2220\", angle: \"\\u2220\", ange: \"\\u29A4\", angmsd: \"\\u2221\", measuredangle: \"\\u2221\", angmsdaa: \"\\u29A8\", angmsdab: \"\\u29A9\", angmsdac: \"\\\n\\u29AA\", angmsdad: \"\\u29AB\", angmsdae: \"\\u29AC\", angmsdaf: \"\\u29AD\", angmsdag: \"\\u29AE\", angmsdah: \"\\u29AF\", angrt: \"\\u221F\", angrtvb: \"\\u22BE\",\n angrtvbd: \"\\u299D\", angsph: \"\\u2222\", angzarr: \"\\u237C\", aogon: \"\\u0105\", aopf: \"\\u{1D552}\", apE: \"\\u2A70\", apacir: \"\\u2A6F\", ape: \"\\u224A\",\n approxeq: \"\\u224A\", apid: \"\\u224B\", apos: \"'\", aring: \"\\xE5\", ascr: \"\\u{1D4B6}\", ast: \"*\", midast: \"*\", atilde: \"\\xE3\", auml: \"\\xE4\", awint: \"\\\n\\u2A11\", bNot: \"\\u2AED\", backcong: \"\\u224C\", bcong: \"\\u224C\", backepsilon: \"\\u03F6\", bepsi: \"\\u03F6\", backprime: \"\\u2035\", bprime: \"\\u2035\",\n backsim: \"\\u223D\", bsim: \"\\u223D\", backsimeq: \"\\u22CD\", bsime: \"\\u22CD\", barvee: \"\\u22BD\", barwed: \"\\u2305\", barwedge: \"\\u2305\", bbrktbrk: \"\\\n\\u23B6\", bcy: \"\\u0431\", bdquo: \"\\u201E\", ldquor: \"\\u201E\", bemptyv: \"\\u29B0\", beta: \"\\u03B2\", beth: \"\\u2136\", between: \"\\u226C\", twixt: \"\\u226C\",\n bfr: \"\\u{1D51F}\", bigcirc: \"\\u25EF\", xcirc: \"\\u25EF\", bigodot: \"\\u2A00\", xodot: \"\\u2A00\", bigoplus: \"\\u2A01\", xoplus: \"\\u2A01\", bigotimes: \"\\\n\\u2A02\", xotime: \"\\u2A02\", bigsqcup: \"\\u2A06\", xsqcup: \"\\u2A06\", bigstar: \"\\u2605\", starf: \"\\u2605\", bigtriangledown: \"\\u25BD\", xdtri: \"\\u25BD\",\n bigtriangleup: \"\\u25B3\", xutri: \"\\u25B3\", biguplus: \"\\u2A04\", xuplus: \"\\u2A04\", bkarow: \"\\u290D\", rbarr: \"\\u290D\", blacklozenge: \"\\u29EB\",\n lozf: \"\\u29EB\", blacktriangle: \"\\u25B4\", utrif: \"\\u25B4\", blacktriangledown: \"\\u25BE\", dtrif: \"\\u25BE\", blacktriangleleft: \"\\u25C2\", ltrif: \"\\\n\\u25C2\", blacktriangleright: \"\\u25B8\", rtrif: \"\\u25B8\", blank: \"\\u2423\", blk12: \"\\u2592\", blk14: \"\\u2591\", blk34: \"\\u2593\", block: \"\\u2588\",\n bne: \"=\\u20E5\", bnequiv: \"\\u2261\\u20E5\", bnot: \"\\u2310\", bopf: \"\\u{1D553}\", bowtie: \"\\u22C8\", boxDL: \"\\u2557\", boxDR: \"\\u2554\", boxDl: \"\\u2556\",\n boxDr: \"\\u2553\", boxH: \"\\u2550\", boxHD: \"\\u2566\", boxHU: \"\\u2569\", boxHd: \"\\u2564\", boxHu: \"\\u2567\", boxUL: \"\\u255D\", boxUR: \"\\u255A\", boxUl: \"\\\n\\u255C\", boxUr: \"\\u2559\", boxV: \"\\u2551\", boxVH: \"\\u256C\", boxVL: \"\\u2563\", boxVR: \"\\u2560\", boxVh: \"\\u256B\", boxVl: \"\\u2562\", boxVr: \"\\u255F\",\n boxbox: \"\\u29C9\", boxdL: \"\\u2555\", boxdR: \"\\u2552\", boxdl: \"\\u2510\", boxdr: \"\\u250C\", boxhD: \"\\u2565\", boxhU: \"\\u2568\", boxhd: \"\\u252C\", boxhu: \"\\\n\\u2534\", boxminus: \"\\u229F\", minusb: \"\\u229F\", boxplus: \"\\u229E\", plusb: \"\\u229E\", boxtimes: \"\\u22A0\", timesb: \"\\u22A0\", boxuL: \"\\u255B\", boxuR: \"\\\n\\u2558\", boxul: \"\\u2518\", boxur: \"\\u2514\", boxv: \"\\u2502\", boxvH: \"\\u256A\", boxvL: \"\\u2561\", boxvR: \"\\u255E\", boxvh: \"\\u253C\", boxvl: \"\\u2524\",\n boxvr: \"\\u251C\", brvbar: \"\\xA6\", bscr: \"\\u{1D4B7}\", bsemi: \"\\u204F\", bsol: \"\\\\\", bsolb: \"\\u29C5\", bsolhsub: \"\\u27C8\", bull: \"\\u2022\", bullet: \"\\\n\\u2022\", bumpE: \"\\u2AAE\", cacute: \"\\u0107\", cap: \"\\u2229\", capand: \"\\u2A44\", capbrcup: \"\\u2A49\", capcap: \"\\u2A4B\", capcup: \"\\u2A47\", capdot: \"\\\n\\u2A40\", caps: \"\\u2229\\uFE00\", caret: \"\\u2041\", ccaps: \"\\u2A4D\", ccaron: \"\\u010D\", ccedil: \"\\xE7\", ccirc: \"\\u0109\", ccups: \"\\u2A4C\", ccupssm: \"\\\n\\u2A50\", cdot: \"\\u010B\", cemptyv: \"\\u29B2\", cent: \"\\xA2\", cfr: \"\\u{1D520}\", chcy: \"\\u0447\", check: \"\\u2713\", checkmark: \"\\u2713\", chi: \"\\u03C7\",\n cir: \"\\u25CB\", cirE: \"\\u29C3\", circ: \"\\u02C6\", circeq: \"\\u2257\", cire: \"\\u2257\", circlearrowleft: \"\\u21BA\", olarr: \"\\u21BA\", circlearrowright: \"\\\n\\u21BB\", orarr: \"\\u21BB\", circledS: \"\\u24C8\", oS: \"\\u24C8\", circledast: \"\\u229B\", oast: \"\\u229B\", circledcirc: \"\\u229A\", ocir: \"\\u229A\", circleddash: \"\\\n\\u229D\", odash: \"\\u229D\", cirfnint: \"\\u2A10\", cirmid: \"\\u2AEF\", cirscir: \"\\u29C2\", clubs: \"\\u2663\", clubsuit: \"\\u2663\", colon: \":\", comma: \"\\\n,\", commat: \"@\", comp: \"\\u2201\", complement: \"\\u2201\", congdot: \"\\u2A6D\", copf: \"\\u{1D554}\", copysr: \"\\u2117\", crarr: \"\\u21B5\", cross: \"\\u2717\",\n cscr: \"\\u{1D4B8}\", csub: \"\\u2ACF\", csube: \"\\u2AD1\", csup: \"\\u2AD0\", csupe: \"\\u2AD2\", ctdot: \"\\u22EF\", cudarrl: \"\\u2938\", cudarrr: \"\\u2935\",\n cuepr: \"\\u22DE\", curlyeqprec: \"\\u22DE\", cuesc: \"\\u22DF\", curlyeqsucc: \"\\u22DF\", cularr: \"\\u21B6\", curvearrowleft: \"\\u21B6\", cularrp: \"\\u293D\",\n cup: \"\\u222A\", cupbrcap: \"\\u2A48\", cupcap: \"\\u2A46\", cupcup: \"\\u2A4A\", cupdot: \"\\u228D\", cupor: \"\\u2A45\", cups: \"\\u222A\\uFE00\", curarr: \"\\u21B7\",\n curvearrowright: \"\\u21B7\", curarrm: \"\\u293C\", curlyvee: \"\\u22CE\", cuvee: \"\\u22CE\", curlywedge: \"\\u22CF\", cuwed: \"\\u22CF\", curren: \"\\xA4\", cwint: \"\\\n\\u2231\", cylcty: \"\\u232D\", dHar: \"\\u2965\", dagger: \"\\u2020\", daleth: \"\\u2138\", dash: \"\\u2010\", hyphen: \"\\u2010\", dbkarow: \"\\u290F\", rBarr: \"\\\n\\u290F\", dcaron: \"\\u010F\", dcy: \"\\u0434\", ddarr: \"\\u21CA\", downdownarrows: \"\\u21CA\", ddotseq: \"\\u2A77\", eDDot: \"\\u2A77\", deg: \"\\xB0\", delta: \"\\\n\\u03B4\", demptyv: \"\\u29B1\", dfisht: \"\\u297F\", dfr: \"\\u{1D521}\", diamondsuit: \"\\u2666\", diams: \"\\u2666\", digamma: \"\\u03DD\", gammad: \"\\u03DD\",\n disin: \"\\u22F2\", div: \"\\xF7\", divide: \"\\xF7\", divideontimes: \"\\u22C7\", divonx: \"\\u22C7\", djcy: \"\\u0452\", dlcorn: \"\\u231E\", llcorner: \"\\u231E\",\n dlcrop: \"\\u230D\", dollar: \"$\", dopf: \"\\u{1D555}\", doteqdot: \"\\u2251\", eDot: \"\\u2251\", dotminus: \"\\u2238\", minusd: \"\\u2238\", dotplus: \"\\u2214\",\n plusdo: \"\\u2214\", dotsquare: \"\\u22A1\", sdotb: \"\\u22A1\", drcorn: \"\\u231F\", lrcorner: \"\\u231F\", drcrop: \"\\u230C\", dscr: \"\\u{1D4B9}\", dscy: \"\\\n\\u0455\", dsol: \"\\u29F6\", dstrok: \"\\u0111\", dtdot: \"\\u22F1\", dtri: \"\\u25BF\", triangledown: \"\\u25BF\", dwangle: \"\\u29A6\", dzcy: \"\\u045F\", dzigrarr: \"\\\n\\u27FF\", eacute: \"\\xE9\", easter: \"\\u2A6E\", ecaron: \"\\u011B\", ecir: \"\\u2256\", eqcirc: \"\\u2256\", ecirc: \"\\xEA\", ecolon: \"\\u2255\", eqcolon: \"\\u2255\",\n ecy: \"\\u044D\", edot: \"\\u0117\", efDot: \"\\u2252\", fallingdotseq: \"\\u2252\", efr: \"\\u{1D522}\", eg: \"\\u2A9A\", egrave: \"\\xE8\", egs: \"\\u2A96\", eqslantgtr: \"\\\n\\u2A96\", egsdot: \"\\u2A98\", el: \"\\u2A99\", elinters: \"\\u23E7\", ell: \"\\u2113\", els: \"\\u2A95\", eqslantless: \"\\u2A95\", elsdot: \"\\u2A97\", emacr: \"\\\n\\u0113\", empty: \"\\u2205\", emptyset: \"\\u2205\", emptyv: \"\\u2205\", varnothing: \"\\u2205\", emsp13: \"\\u2004\", emsp14: \"\\u2005\", emsp: \"\\u2003\", eng: \"\\\n\\u014B\", ensp: \"\\u2002\", eogon: \"\\u0119\", eopf: \"\\u{1D556}\", epar: \"\\u22D5\", eparsl: \"\\u29E3\", eplus: \"\\u2A71\", epsi: \"\\u03B5\", epsilon: \"\\u03B5\",\n epsiv: \"\\u03F5\", straightepsilon: \"\\u03F5\", varepsilon: \"\\u03F5\", equals: \"=\", equest: \"\\u225F\", questeq: \"\\u225F\", equivDD: \"\\u2A78\", eqvparsl: \"\\\n\\u29E5\", erDot: \"\\u2253\", risingdotseq: \"\\u2253\", erarr: \"\\u2971\", escr: \"\\u212F\", eta: \"\\u03B7\", eth: \"\\xF0\", euml: \"\\xEB\", euro: \"\\u20AC\",\n excl: \"!\", fcy: \"\\u0444\", female: \"\\u2640\", ffilig: \"\\uFB03\", fflig: \"\\uFB00\", ffllig: \"\\uFB04\", ffr: \"\\u{1D523}\", filig: \"\\uFB01\", fjlig: \"\\\nfj\", flat: \"\\u266D\", fllig: \"\\uFB02\", fltns: \"\\u25B1\", fnof: \"\\u0192\", fopf: \"\\u{1D557}\", fork: \"\\u22D4\", pitchfork: \"\\u22D4\", forkv: \"\\u2AD9\",\n fpartint: \"\\u2A0D\", frac12: \"\\xBD\", half: \"\\xBD\", frac13: \"\\u2153\", frac14: \"\\xBC\", frac15: \"\\u2155\", frac16: \"\\u2159\", frac18: \"\\u215B\", frac23: \"\\\n\\u2154\", frac25: \"\\u2156\", frac34: \"\\xBE\", frac35: \"\\u2157\", frac38: \"\\u215C\", frac45: \"\\u2158\", frac56: \"\\u215A\", frac58: \"\\u215D\", frac78: \"\\\n\\u215E\", frasl: \"\\u2044\", frown: \"\\u2322\", sfrown: \"\\u2322\", fscr: \"\\u{1D4BB}\", gEl: \"\\u2A8C\", gtreqqless: \"\\u2A8C\", gacute: \"\\u01F5\", gamma: \"\\\n\\u03B3\", gap: \"\\u2A86\", gtrapprox: \"\\u2A86\", gbreve: \"\\u011F\", gcirc: \"\\u011D\", gcy: \"\\u0433\", gdot: \"\\u0121\", gescc: \"\\u2AA9\", gesdot: \"\\u2A80\",\n gesdoto: \"\\u2A82\", gesdotol: \"\\u2A84\", gesl: \"\\u22DB\\uFE00\", gesles: \"\\u2A94\", gfr: \"\\u{1D524}\", gimel: \"\\u2137\", gjcy: \"\\u0453\", glE: \"\\u2A92\",\n gla: \"\\u2AA5\", glj: \"\\u2AA4\", gnE: \"\\u2269\", gneqq: \"\\u2269\", gnap: \"\\u2A8A\", gnapprox: \"\\u2A8A\", gne: \"\\u2A88\", gneq: \"\\u2A88\", gnsim: \"\\u22E7\",\n gopf: \"\\u{1D558}\", gscr: \"\\u210A\", gsime: \"\\u2A8E\", gsiml: \"\\u2A90\", gtcc: \"\\u2AA7\", gtcir: \"\\u2A7A\", gtdot: \"\\u22D7\", gtrdot: \"\\u22D7\", gtlPar: \"\\\n\\u2995\", gtquest: \"\\u2A7C\", gtrarr: \"\\u2978\", gvertneqq: \"\\u2269\\uFE00\", gvnE: \"\\u2269\\uFE00\", hardcy: \"\\u044A\", harrcir: \"\\u2948\", harrw: \"\\\n\\u21AD\", leftrightsquigarrow: \"\\u21AD\", hbar: \"\\u210F\", hslash: \"\\u210F\", planck: \"\\u210F\", plankv: \"\\u210F\", hcirc: \"\\u0125\", hearts: \"\\u2665\",\n heartsuit: \"\\u2665\", hellip: \"\\u2026\", mldr: \"\\u2026\", hercon: \"\\u22B9\", hfr: \"\\u{1D525}\", hksearow: \"\\u2925\", searhk: \"\\u2925\", hkswarow: \"\\\n\\u2926\", swarhk: \"\\u2926\", hoarr: \"\\u21FF\", homtht: \"\\u223B\", hookleftarrow: \"\\u21A9\", larrhk: \"\\u21A9\", hookrightarrow: \"\\u21AA\", rarrhk: \"\\\n\\u21AA\", hopf: \"\\u{1D559}\", horbar: \"\\u2015\", hscr: \"\\u{1D4BD}\", hstrok: \"\\u0127\", hybull: \"\\u2043\", iacute: \"\\xED\", icirc: \"\\xEE\", icy: \"\\u0438\",\n iecy: \"\\u0435\", iexcl: \"\\xA1\", ifr: \"\\u{1D526}\", igrave: \"\\xEC\", iiiint: \"\\u2A0C\", qint: \"\\u2A0C\", iiint: \"\\u222D\", tint: \"\\u222D\", iinfin: \"\\\n\\u29DC\", iiota: \"\\u2129\", ijlig: \"\\u0133\", imacr: \"\\u012B\", imath: \"\\u0131\", inodot: \"\\u0131\", imof: \"\\u22B7\", imped: \"\\u01B5\", incare: \"\\u2105\",\n infin: \"\\u221E\", infintie: \"\\u29DD\", intcal: \"\\u22BA\", intercal: \"\\u22BA\", intlarhk: \"\\u2A17\", intprod: \"\\u2A3C\", iprod: \"\\u2A3C\", iocy: \"\\\n\\u0451\", iogon: \"\\u012F\", iopf: \"\\u{1D55A}\", iota: \"\\u03B9\", iquest: \"\\xBF\", iscr: \"\\u{1D4BE}\", isinE: \"\\u22F9\", isindot: \"\\u22F5\", isins: \"\\\n\\u22F4\", isinsv: \"\\u22F3\", itilde: \"\\u0129\", iukcy: \"\\u0456\", iuml: \"\\xEF\", jcirc: \"\\u0135\", jcy: \"\\u0439\", jfr: \"\\u{1D527}\", jmath: \"\\u0237\",\n jopf: \"\\u{1D55B}\", jscr: \"\\u{1D4BF}\", jsercy: \"\\u0458\", jukcy: \"\\u0454\", kappa: \"\\u03BA\", kappav: \"\\u03F0\", varkappa: \"\\u03F0\", kcedil: \"\\u0137\",\n kcy: \"\\u043A\", kfr: \"\\u{1D528}\", kgreen: \"\\u0138\", khcy: \"\\u0445\", kjcy: \"\\u045C\", kopf: \"\\u{1D55C}\", kscr: \"\\u{1D4C0}\", lAtail: \"\\u291B\",\n lBarr: \"\\u290E\", lEg: \"\\u2A8B\", lesseqqgtr: \"\\u2A8B\", lHar: \"\\u2962\", lacute: \"\\u013A\", laemptyv: \"\\u29B4\", lambda: \"\\u03BB\", langd: \"\\u2991\",\n lap: \"\\u2A85\", lessapprox: \"\\u2A85\", laquo: \"\\xAB\", larrbfs: \"\\u291F\", larrfs: \"\\u291D\", larrlp: \"\\u21AB\", looparrowleft: \"\\u21AB\", larrpl: \"\\\n\\u2939\", larrsim: \"\\u2973\", larrtl: \"\\u21A2\", leftarrowtail: \"\\u21A2\", lat: \"\\u2AAB\", latail: \"\\u2919\", late: \"\\u2AAD\", lates: \"\\u2AAD\\uFE00\",\n lbarr: \"\\u290C\", lbbrk: \"\\u2772\", lbrace: \"{\", lcub: \"{\", lbrack: \"[\", lsqb: \"[\", lbrke: \"\\u298B\", lbrksld: \"\\u298F\", lbrkslu: \"\\u298D\", lcaron: \"\\\n\\u013E\", lcedil: \"\\u013C\", lcy: \"\\u043B\", ldca: \"\\u2936\", ldrdhar: \"\\u2967\", ldrushar: \"\\u294B\", ldsh: \"\\u21B2\", le: \"\\u2264\", leq: \"\\u2264\",\n leftleftarrows: \"\\u21C7\", llarr: \"\\u21C7\", leftthreetimes: \"\\u22CB\", lthree: \"\\u22CB\", lescc: \"\\u2AA8\", lesdot: \"\\u2A7F\", lesdoto: \"\\u2A81\",\n lesdotor: \"\\u2A83\", lesg: \"\\u22DA\\uFE00\", lesges: \"\\u2A93\", lessdot: \"\\u22D6\", ltdot: \"\\u22D6\", lfisht: \"\\u297C\", lfr: \"\\u{1D529}\", lgE: \"\\\n\\u2A91\", lharul: \"\\u296A\", lhblk: \"\\u2584\", ljcy: \"\\u0459\", llhard: \"\\u296B\", lltri: \"\\u25FA\", lmidot: \"\\u0140\", lmoust: \"\\u23B0\", lmoustache: \"\\\n\\u23B0\", lnE: \"\\u2268\", lneqq: \"\\u2268\", lnap: \"\\u2A89\", lnapprox: \"\\u2A89\", lne: \"\\u2A87\", lneq: \"\\u2A87\", lnsim: \"\\u22E6\", loang: \"\\u27EC\",\n loarr: \"\\u21FD\", longmapsto: \"\\u27FC\", xmap: \"\\u27FC\", looparrowright: \"\\u21AC\", rarrlp: \"\\u21AC\", lopar: \"\\u2985\", lopf: \"\\u{1D55D}\", loplus: \"\\\n\\u2A2D\", lotimes: \"\\u2A34\", lowast: \"\\u2217\", loz: \"\\u25CA\", lozenge: \"\\u25CA\", lpar: \"(\", lparlt: \"\\u2993\", lrhard: \"\\u296D\", lrm: \"\\u200E\",\n lrtri: \"\\u22BF\", lsaquo: \"\\u2039\", lscr: \"\\u{1D4C1}\", lsime: \"\\u2A8D\", lsimg: \"\\u2A8F\", lsquor: \"\\u201A\", sbquo: \"\\u201A\", lstrok: \"\\u0142\",\n ltcc: \"\\u2AA6\", ltcir: \"\\u2A79\", ltimes: \"\\u22C9\", ltlarr: \"\\u2976\", ltquest: \"\\u2A7B\", ltrPar: \"\\u2996\", ltri: \"\\u25C3\", triangleleft: \"\\u25C3\",\n lurdshar: \"\\u294A\", luruhar: \"\\u2966\", lvertneqq: \"\\u2268\\uFE00\", lvnE: \"\\u2268\\uFE00\", mDDot: \"\\u223A\", macr: \"\\xAF\", strns: \"\\xAF\", male: \"\\\n\\u2642\", malt: \"\\u2720\", maltese: \"\\u2720\", marker: \"\\u25AE\", mcomma: \"\\u2A29\", mcy: \"\\u043C\", mdash: \"\\u2014\", mfr: \"\\u{1D52A}\", mho: \"\\u2127\",\n micro: \"\\xB5\", midcir: \"\\u2AF0\", minus: \"\\u2212\", minusdu: \"\\u2A2A\", mlcp: \"\\u2ADB\", models: \"\\u22A7\", mopf: \"\\u{1D55E}\", mscr: \"\\u{1D4C2}\",\n mu: \"\\u03BC\", multimap: \"\\u22B8\", mumap: \"\\u22B8\", nGg: \"\\u22D9\\u0338\", nGt: \"\\u226B\\u20D2\", nLeftarrow: \"\\u21CD\", nlArr: \"\\u21CD\", nLeftrightarrow: \"\\\n\\u21CE\", nhArr: \"\\u21CE\", nLl: \"\\u22D8\\u0338\", nLt: \"\\u226A\\u20D2\", nRightarrow: \"\\u21CF\", nrArr: \"\\u21CF\", nVDash: \"\\u22AF\", nVdash: \"\\u22AE\",\n nacute: \"\\u0144\", nang: \"\\u2220\\u20D2\", napE: \"\\u2A70\\u0338\", napid: \"\\u224B\\u0338\", napos: \"\\u0149\", natur: \"\\u266E\", natural: \"\\u266E\", ncap: \"\\\n\\u2A43\", ncaron: \"\\u0148\", ncedil: \"\\u0146\", ncongdot: \"\\u2A6D\\u0338\", ncup: \"\\u2A42\", ncy: \"\\u043D\", ndash: \"\\u2013\", neArr: \"\\u21D7\", nearhk: \"\\\n\\u2924\", nedot: \"\\u2250\\u0338\", nesear: \"\\u2928\", toea: \"\\u2928\", nfr: \"\\u{1D52B}\", nharr: \"\\u21AE\", nleftrightarrow: \"\\u21AE\", nhpar: \"\\u2AF2\",\n nis: \"\\u22FC\", nisd: \"\\u22FA\", njcy: \"\\u045A\", nlE: \"\\u2266\\u0338\", nleqq: \"\\u2266\\u0338\", nlarr: \"\\u219A\", nleftarrow: \"\\u219A\", nldr: \"\\u2025\",\n nopf: \"\\u{1D55F}\", not: \"\\xAC\", notinE: \"\\u22F9\\u0338\", notindot: \"\\u22F5\\u0338\", notinvb: \"\\u22F7\", notinvc: \"\\u22F6\", notnivb: \"\\u22FE\",\n notnivc: \"\\u22FD\", nparsl: \"\\u2AFD\\u20E5\", npart: \"\\u2202\\u0338\", npolint: \"\\u2A14\", nrarr: \"\\u219B\", nrightarrow: \"\\u219B\", nrarrc: \"\\u2933\\u0338\",\n nrarrw: \"\\u219D\\u0338\", nscr: \"\\u{1D4C3}\", nsub: \"\\u2284\", nsubE: \"\\u2AC5\\u0338\", nsubseteqq: \"\\u2AC5\\u0338\", nsup: \"\\u2285\", nsupE: \"\\u2AC6\\u0338\",\n nsupseteqq: \"\\u2AC6\\u0338\", ntilde: \"\\xF1\", nu: \"\\u03BD\", num: \"#\", numero: \"\\u2116\", numsp: \"\\u2007\", nvDash: \"\\u22AD\", nvHarr: \"\\u2904\",\n nvap: \"\\u224D\\u20D2\", nvdash: \"\\u22AC\", nvge: \"\\u2265\\u20D2\", nvgt: \">\\u20D2\", nvinfin: \"\\u29DE\", nvlArr: \"\\u2902\", nvle: \"\\u2264\\u20D2\", nvlt: \"\\\n<\\u20D2\", nvltrie: \"\\u22B4\\u20D2\", nvrArr: \"\\u2903\", nvrtrie: \"\\u22B5\\u20D2\", nvsim: \"\\u223C\\u20D2\", nwArr: \"\\u21D6\", nwarhk: \"\\u2923\", nwnear: \"\\\n\\u2927\", oacute: \"\\xF3\", ocirc: \"\\xF4\", ocy: \"\\u043E\", odblac: \"\\u0151\", odiv: \"\\u2A38\", odsold: \"\\u29BC\", oelig: \"\\u0153\", ofcir: \"\\u29BF\",\n ofr: \"\\u{1D52C}\", ogon: \"\\u02DB\", ograve: \"\\xF2\", ogt: \"\\u29C1\", ohbar: \"\\u29B5\", olcir: \"\\u29BE\", olcross: \"\\u29BB\", olt: \"\\u29C0\", omacr: \"\\\n\\u014D\", omega: \"\\u03C9\", omicron: \"\\u03BF\", omid: \"\\u29B6\", oopf: \"\\u{1D560}\", opar: \"\\u29B7\", operp: \"\\u29B9\", or: \"\\u2228\", vee: \"\\u2228\",\n ord: \"\\u2A5D\", order: \"\\u2134\", orderof: \"\\u2134\", oscr: \"\\u2134\", ordf: \"\\xAA\", ordm: \"\\xBA\", origof: \"\\u22B6\", oror: \"\\u2A56\", orslope: \"\\\n\\u2A57\", orv: \"\\u2A5B\", oslash: \"\\xF8\", osol: \"\\u2298\", otilde: \"\\xF5\", otimesas: \"\\u2A36\", ouml: \"\\xF6\", ovbar: \"\\u233D\", para: \"\\xB6\", parsim: \"\\\n\\u2AF3\", parsl: \"\\u2AFD\", pcy: \"\\u043F\", percnt: \"%\", period: \".\", permil: \"\\u2030\", pertenk: \"\\u2031\", pfr: \"\\u{1D52D}\", phi: \"\\u03C6\", phiv: \"\\\n\\u03D5\", straightphi: \"\\u03D5\", varphi: \"\\u03D5\", phone: \"\\u260E\", pi: \"\\u03C0\", piv: \"\\u03D6\", varpi: \"\\u03D6\", planckh: \"\\u210E\", plus: \"+\",\n plusacir: \"\\u2A23\", pluscir: \"\\u2A22\", plusdu: \"\\u2A25\", pluse: \"\\u2A72\", plussim: \"\\u2A26\", plustwo: \"\\u2A27\", pointint: \"\\u2A15\", popf: \"\\\n\\u{1D561}\", pound: \"\\xA3\", prE: \"\\u2AB3\", prap: \"\\u2AB7\", precapprox: \"\\u2AB7\", precnapprox: \"\\u2AB9\", prnap: \"\\u2AB9\", precneqq: \"\\u2AB5\", prnE: \"\\\n\\u2AB5\", precnsim: \"\\u22E8\", prnsim: \"\\u22E8\", prime: \"\\u2032\", profalar: \"\\u232E\", profline: \"\\u2312\", profsurf: \"\\u2313\", prurel: \"\\u22B0\",\n pscr: \"\\u{1D4C5}\", psi: \"\\u03C8\", puncsp: \"\\u2008\", qfr: \"\\u{1D52E}\", qopf: \"\\u{1D562}\", qprime: \"\\u2057\", qscr: \"\\u{1D4C6}\", quatint: \"\\u2A16\",\n quest: \"?\", rAtail: \"\\u291C\", rHar: \"\\u2964\", race: \"\\u223D\\u0331\", racute: \"\\u0155\", raemptyv: \"\\u29B3\", rangd: \"\\u2992\", range: \"\\u29A5\",\n raquo: \"\\xBB\", rarrap: \"\\u2975\", rarrbfs: \"\\u2920\", rarrc: \"\\u2933\", rarrfs: \"\\u291E\", rarrpl: \"\\u2945\", rarrsim: \"\\u2974\", rarrtl: \"\\u21A3\",\n rightarrowtail: \"\\u21A3\", rarrw: \"\\u219D\", rightsquigarrow: \"\\u219D\", ratail: \"\\u291A\", ratio: \"\\u2236\", rbbrk: \"\\u2773\", rbrace: \"}\", rcub: \"\\\n}\", rbrack: \"]\", rsqb: \"]\", rbrke: \"\\u298C\", rbrksld: \"\\u298E\", rbrkslu: \"\\u2990\", rcaron: \"\\u0159\", rcedil: \"\\u0157\", rcy: \"\\u0440\", rdca: \"\\\n\\u2937\", rdldhar: \"\\u2969\", rdsh: \"\\u21B3\", rect: \"\\u25AD\", rfisht: \"\\u297D\", rfr: \"\\u{1D52F}\", rharul: \"\\u296C\", rho: \"\\u03C1\", rhov: \"\\u03F1\",\n varrho: \"\\u03F1\", rightrightarrows: \"\\u21C9\", rrarr: \"\\u21C9\", rightthreetimes: \"\\u22CC\", rthree: \"\\u22CC\", ring: \"\\u02DA\", rlm: \"\\u200F\",\n rmoust: \"\\u23B1\", rmoustache: \"\\u23B1\", rnmid: \"\\u2AEE\", roang: \"\\u27ED\", roarr: \"\\u21FE\", ropar: \"\\u2986\", ropf: \"\\u{1D563}\", roplus: \"\\u2A2E\",\n rotimes: \"\\u2A35\", rpar: \")\", rpargt: \"\\u2994\", rppolint: \"\\u2A12\", rsaquo: \"\\u203A\", rscr: \"\\u{1D4C7}\", rtimes: \"\\u22CA\", rtri: \"\\u25B9\",\n triangleright: \"\\u25B9\", rtriltri: \"\\u29CE\", ruluhar: \"\\u2968\", rx: \"\\u211E\", sacute: \"\\u015B\", scE: \"\\u2AB4\", scap: \"\\u2AB8\", succapprox: \"\\\n\\u2AB8\", scaron: \"\\u0161\", scedil: \"\\u015F\", scirc: \"\\u015D\", scnE: \"\\u2AB6\", succneqq: \"\\u2AB6\", scnap: \"\\u2ABA\", succnapprox: \"\\u2ABA\", scnsim: \"\\\n\\u22E9\", succnsim: \"\\u22E9\", scpolint: \"\\u2A13\", scy: \"\\u0441\", sdot: \"\\u22C5\", sdote: \"\\u2A66\", seArr: \"\\u21D8\", sect: \"\\xA7\", semi: \";\", seswar: \"\\\n\\u2929\", tosa: \"\\u2929\", sext: \"\\u2736\", sfr: \"\\u{1D530}\", sharp: \"\\u266F\", shchcy: \"\\u0449\", shcy: \"\\u0448\", shy: \"\\xAD\", sigma: \"\\u03C3\", sigmaf: \"\\\n\\u03C2\", sigmav: \"\\u03C2\", varsigma: \"\\u03C2\", simdot: \"\\u2A6A\", simg: \"\\u2A9E\", simgE: \"\\u2AA0\", siml: \"\\u2A9D\", simlE: \"\\u2A9F\", simne: \"\\u2246\",\n simplus: \"\\u2A24\", simrarr: \"\\u2972\", smashp: \"\\u2A33\", smeparsl: \"\\u29E4\", smile: \"\\u2323\", ssmile: \"\\u2323\", smt: \"\\u2AAA\", smte: \"\\u2AAC\",\n smtes: \"\\u2AAC\\uFE00\", softcy: \"\\u044C\", sol: \"/\", solb: \"\\u29C4\", solbar: \"\\u233F\", sopf: \"\\u{1D564}\", spades: \"\\u2660\", spadesuit: \"\\u2660\",\n sqcaps: \"\\u2293\\uFE00\", sqcups: \"\\u2294\\uFE00\", sscr: \"\\u{1D4C8}\", star: \"\\u2606\", sub: \"\\u2282\", subset: \"\\u2282\", subE: \"\\u2AC5\", subseteqq: \"\\\n\\u2AC5\", subdot: \"\\u2ABD\", subedot: \"\\u2AC3\", submult: \"\\u2AC1\", subnE: \"\\u2ACB\", subsetneqq: \"\\u2ACB\", subne: \"\\u228A\", subsetneq: \"\\u228A\",\n subplus: \"\\u2ABF\", subrarr: \"\\u2979\", subsim: \"\\u2AC7\", subsub: \"\\u2AD5\", subsup: \"\\u2AD3\", sung: \"\\u266A\", sup1: \"\\xB9\", sup2: \"\\xB2\", sup3: \"\\\n\\xB3\", supE: \"\\u2AC6\", supseteqq: \"\\u2AC6\", supdot: \"\\u2ABE\", supdsub: \"\\u2AD8\", supedot: \"\\u2AC4\", suphsol: \"\\u27C9\", suphsub: \"\\u2AD7\", suplarr: \"\\\n\\u297B\", supmult: \"\\u2AC2\", supnE: \"\\u2ACC\", supsetneqq: \"\\u2ACC\", supne: \"\\u228B\", supsetneq: \"\\u228B\", supplus: \"\\u2AC0\", supsim: \"\\u2AC8\",\n supsub: \"\\u2AD4\", supsup: \"\\u2AD6\", swArr: \"\\u21D9\", swnwar: \"\\u292A\", szlig: \"\\xDF\", target: \"\\u2316\", tau: \"\\u03C4\", tcaron: \"\\u0165\", tcedil: \"\\\n\\u0163\", tcy: \"\\u0442\", telrec: \"\\u2315\", tfr: \"\\u{1D531}\", theta: \"\\u03B8\", thetasym: \"\\u03D1\", thetav: \"\\u03D1\", vartheta: \"\\u03D1\", thorn: \"\\\n\\xFE\", times: \"\\xD7\", timesbar: \"\\u2A31\", timesd: \"\\u2A30\", topbot: \"\\u2336\", topcir: \"\\u2AF1\", topf: \"\\u{1D565}\", topfork: \"\\u2ADA\", tprime: \"\\\n\\u2034\", triangle: \"\\u25B5\", utri: \"\\u25B5\", triangleq: \"\\u225C\", trie: \"\\u225C\", tridot: \"\\u25EC\", triminus: \"\\u2A3A\", triplus: \"\\u2A39\", trisb: \"\\\n\\u29CD\", tritime: \"\\u2A3B\", trpezium: \"\\u23E2\", tscr: \"\\u{1D4C9}\", tscy: \"\\u0446\", tshcy: \"\\u045B\", tstrok: \"\\u0167\", uHar: \"\\u2963\", uacute: \"\\\n\\xFA\", ubrcy: \"\\u045E\", ubreve: \"\\u016D\", ucirc: \"\\xFB\", ucy: \"\\u0443\", udblac: \"\\u0171\", ufisht: \"\\u297E\", ufr: \"\\u{1D532}\", ugrave: \"\\xF9\",\n uhblk: \"\\u2580\", ulcorn: \"\\u231C\", ulcorner: \"\\u231C\", ulcrop: \"\\u230F\", ultri: \"\\u25F8\", umacr: \"\\u016B\", uogon: \"\\u0173\", uopf: \"\\u{1D566}\",\n upsi: \"\\u03C5\", upsilon: \"\\u03C5\", upuparrows: \"\\u21C8\", uuarr: \"\\u21C8\", urcorn: \"\\u231D\", urcorner: \"\\u231D\", urcrop: \"\\u230E\", uring: \"\\\n\\u016F\", urtri: \"\\u25F9\", uscr: \"\\u{1D4CA}\", utdot: \"\\u22F0\", utilde: \"\\u0169\", uuml: \"\\xFC\", uwangle: \"\\u29A7\", vBar: \"\\u2AE8\", vBarv: \"\\u2AE9\",\n vangrt: \"\\u299C\", varsubsetneq: \"\\u228A\\uFE00\", vsubne: \"\\u228A\\uFE00\", varsubsetneqq: \"\\u2ACB\\uFE00\", vsubnE: \"\\u2ACB\\uFE00\", varsupsetneq: \"\\\n\\u228B\\uFE00\", vsupne: \"\\u228B\\uFE00\", varsupsetneqq: \"\\u2ACC\\uFE00\", vsupnE: \"\\u2ACC\\uFE00\", vcy: \"\\u0432\", veebar: \"\\u22BB\", veeeq: \"\\u225A\",\n vellip: \"\\u22EE\", vfr: \"\\u{1D533}\", vopf: \"\\u{1D567}\", vscr: \"\\u{1D4CB}\", vzigzag: \"\\u299A\", wcirc: \"\\u0175\", wedbar: \"\\u2A5F\", wedgeq: \"\\u2259\",\n weierp: \"\\u2118\", wp: \"\\u2118\", wfr: \"\\u{1D534}\", wopf: \"\\u{1D568}\", wscr: \"\\u{1D4CC}\", xfr: \"\\u{1D535}\", xi: \"\\u03BE\", xnis: \"\\u22FB\", xopf: \"\\\n\\u{1D569}\", xscr: \"\\u{1D4CD}\", yacute: \"\\xFD\", yacy: \"\\u044F\", ycirc: \"\\u0177\", ycy: \"\\u044B\", yen: \"\\xA5\", yfr: \"\\u{1D536}\", yicy: \"\\u0457\",\n yopf: \"\\u{1D56A}\", yscr: \"\\u{1D4CE}\", yucy: \"\\u044E\", yuml: \"\\xFF\", zacute: \"\\u017A\", zcaron: \"\\u017E\", zcy: \"\\u0437\", zdot: \"\\u017C\", zeta: \"\\\n\\u03B6\", zfr: \"\\u{1D537}\", zhcy: \"\\u0436\", zigrarr: \"\\u21DD\", zopf: \"\\u{1D56B}\", zscr: \"\\u{1D4CF}\", zwj: \"\\u200D\", zwnj: \"\\u200C\" }, NR = \"\\uE500\";\n Wi.ngsp = NR;\n $R = [/@/, /^\\s*$/, /[<>]/, /^[{}]$/, /&(#|[a-z])/i, /^\\/\\//];\n o(VR, \"Bs\");\n jR = (Br = class {\n static fromArray(t) {\n return t ? (VR(\"interpolation\", t), new Br(t[0], t[1])) : em;\n }\n constructor(t, r) {\n this.start = t, this.end = r;\n }\n }, o(Br, \"t\"), Br), em = new jR(\"{{\", \"}}\"), qu = (Jn = class extends K5 {\n constructor(t, r, n) {\n super(n, t), this.tokenType = r;\n }\n }, o(Jn, \"ft\"), Jn), WR = (Qn = class {\n constructor(t, r, n) {\n this.tokens = t, this.errors = r, this.nonNormalizedIcuExpressions = n;\n }\n }, o(Qn, \"Or\"), Qn);\n o(qR, \"Us\");\n UR = /\\r\\n?/g;\n o(kn, \"qe\");\n o(Jh, \"Is\");\n o(GR, \"co\");\n (function(e) {\n e.HEX = \"hexadecimal\", e.DEC = \"decimal\";\n })(qi || (qi = {}));\n Uu = (ea = class {\n constructor(t) {\n this.error = t;\n }\n }, o(ea, \"dt\"), ea), YR = (ta = class {\n constructor(t, r, n) {\n this._getTagContentType = r, this._currentTokenStart = null, this._currentTokenType = null, this._expansionCaseStack = [], this._inInterpolation =\n !1, this._fullNameStack = [], this.tokens = [], this.errors = [], this.nonNormalizedIcuExpressions = [], this._tokenizeIcu = n.tokenizeExpansionForms ||\n !1, this._interpolationConfig = n.interpolationConfig || em, this._leadingTriviaCodePoints = n.leadingTriviaChars && n.leadingTriviaChars.\n map((i) => i.codePointAt(0) || 0), this._canSelfClose = n.canSelfClose || !1, this._allowHtmComponentClosingTags = n.allowHtmComponentClosingTags ||\n !1;\n let a = n.range || { endPos: t.content.length, startPos: 0, startLine: 0, startCol: 0 };\n this._cursor = n.escapedString ? new tS(t, a) : new tm(t, a), this._preserveLineEndings = n.preserveLineEndings || !1, this._i18nNormalizeLineEndingsInICUs =\n n.i18nNormalizeLineEndingsInICUs || !1, this._tokenizeBlocks = n.tokenizeBlocks ?? !0, this._tokenizeLet = n.tokenizeLet ?? !0;\n try {\n this._cursor.init();\n } catch (i) {\n this.handleError(i);\n }\n }\n _processCarriageReturns(t) {\n return this._preserveLineEndings ? t : t.replace(UR, `\n`);\n }\n tokenize() {\n for (; this._cursor.peek() !== 0; ) {\n let t = this._cursor.clone();\n try {\n if (this._attemptCharCode(60)) if (this._attemptCharCode(33)) this._attemptStr(\"[CDATA[\") ? this._consumeCdata(t) : this._attemptStr(\n \"--\") ? this._consumeComment(t) : this._attemptStrCaseInsensitive(\"doctype\") ? this._consumeDocType(t) : this._consumeBogusComment(\n t);\n else if (this._attemptCharCode(47)) this._consumeTagClose(t);\n else {\n let r = this._cursor.clone();\n this._attemptCharCode(63) ? (this._cursor = r, this._consumeBogusComment(t)) : this._consumeTagOpen(t);\n }\n else this._tokenizeLet && this._cursor.peek() === 64 && !this._inInterpolation && this._attemptStr(\"@let\") ? this._consumeLetDeclaration(\n t) : this._tokenizeBlocks && this._attemptCharCode(64) ? this._consumeBlockStart(t) : this._tokenizeBlocks && !this._inInterpolation &&\n !this._isInExpansionCase() && !this._isInExpansionForm() && this._attemptCharCode(125) ? this._consumeBlockEnd(t) : this._tokenizeIcu &&\n this._tokenizeExpansionForm() || this._consumeWithInterpolation(5, 8, () => this._isTextEnd(), () => this._isTagStart());\n } catch (r) {\n this.handleError(r);\n }\n }\n this._beginToken(34), this._endToken([]);\n }\n _getBlockName() {\n let t = !1, r = this._cursor.clone();\n return this._attemptCharCodeUntilFn((n) => Ni(n) ? !t : t5(n) ? (t = !0, !1) : !0), this._cursor.getChars(r).trim();\n }\n _consumeBlockStart(t) {\n this._beginToken(25, t);\n let r = this._endToken([this._getBlockName()]);\n if (this._cursor.peek() === 40) if (this._cursor.advance(), this._consumeBlockParameters(), this._attemptCharCodeUntilFn(ue), this._attemptCharCode(\n 41)) this._attemptCharCodeUntilFn(ue);\n else {\n r.type = 29;\n return;\n }\n this._attemptCharCode(123) ? (this._beginToken(26), this._endToken([])) : r.type = 29;\n }\n _consumeBlockEnd(t) {\n this._beginToken(27, t), this._endToken([]);\n }\n _consumeBlockParameters() {\n for (this._attemptCharCodeUntilFn(r5); this._cursor.peek() !== 41 && this._cursor.peek() !== 0; ) {\n this._beginToken(28);\n let t = this._cursor.clone(), r = null, n = 0;\n for (; this._cursor.peek() !== 59 && this._cursor.peek() !== 0 || r !== null; ) {\n let a = this._cursor.peek();\n if (a === 92) this._cursor.advance();\n else if (a === r) r = null;\n else if (r === null && Wu(a)) r = a;\n else if (a === 40 && r === null) n++;\n else if (a === 41 && r === null) {\n if (n === 0) break;\n n > 0 && n--;\n }\n this._cursor.advance();\n }\n this._endToken([this._cursor.getChars(t)]), this._attemptCharCodeUntilFn(r5);\n }\n }\n _consumeLetDeclaration(t) {\n if (this._beginToken(30, t), Ni(this._cursor.peek())) this._attemptCharCodeUntilFn(ue);\n else {\n let n = this._endToken([this._cursor.getChars(t)]);\n n.type = 33;\n return;\n }\n let r = this._endToken([this._getLetDeclarationName()]);\n if (this._attemptCharCodeUntilFn(ue), !this._attemptCharCode(61)) {\n r.type = 33;\n return;\n }\n this._attemptCharCodeUntilFn((n) => ue(n) && !vc(n)), this._consumeLetDeclarationValue(), this._cursor.peek() === 59 ? (this._beginToken(\n 32), this._endToken([]), this._cursor.advance()) : (r.type = 33, r.sourceSpan = this._cursor.getSpan(t));\n }\n _getLetDeclarationName() {\n let t = this._cursor.clone(), r = !1;\n return this._attemptCharCodeUntilFn((n) => $i(n) || n === 36 || n === 95 || r && gc(n) ? (r = !0, !1) : !0), this._cursor.getChars(t).\n trim();\n }\n _consumeLetDeclarationValue() {\n let t = this._cursor.clone();\n for (this._beginToken(31, t); this._cursor.peek() !== 0; ) {\n let r = this._cursor.peek();\n if (r === 59) break;\n Wu(r) && (this._cursor.advance(), this._attemptCharCodeUntilFn((n) => n === 92 ? (this._cursor.advance(), !1) : n === r)), this._cursor.\n advance();\n }\n this._endToken([this._cursor.getChars(t)]);\n }\n _tokenizeExpansionForm() {\n if (this.isExpansionFormStart()) return this._consumeExpansionFormStart(), !0;\n if (JR(this._cursor.peek()) && this._isInExpansionForm()) return this._consumeExpansionCaseStart(), !0;\n if (this._cursor.peek() === 125) {\n if (this._isInExpansionCase()) return this._consumeExpansionCaseEnd(), !0;\n if (this._isInExpansionForm()) return this._consumeExpansionFormEnd(), !0;\n }\n return !1;\n }\n _beginToken(t, r = this._cursor.clone()) {\n this._currentTokenStart = r, this._currentTokenType = t;\n }\n _endToken(t, r) {\n if (this._currentTokenStart === null) throw new qu(\"Programming error - attempted to end a token when there was no start to the token\",\n this._currentTokenType, this._cursor.getSpan(r));\n if (this._currentTokenType === null) throw new qu(\"Programming error - attempted to end a token which has no token type\", null, this._cursor.\n getSpan(this._currentTokenStart));\n let n = { type: this._currentTokenType, parts: t, sourceSpan: (r ?? this._cursor).getSpan(this._currentTokenStart, this._leadingTriviaCodePoints) };\n return this.tokens.push(n), this._currentTokenStart = null, this._currentTokenType = null, n;\n }\n _createError(t, r) {\n this._isInExpansionForm() && (t += ` (Do you have an unescaped \"{\" in your template? Use \"{{ '{' }}\") to escape it.)`);\n let n = new qu(t, this._currentTokenType, r);\n return this._currentTokenStart = null, this._currentTokenType = null, new Uu(n);\n }\n handleError(t) {\n if (t instanceof wc && (t = this._createError(t.msg, this._cursor.getSpan(t.cursor))), t instanceof Uu) this.errors.push(t.error);\n else throw t;\n }\n _attemptCharCode(t) {\n return this._cursor.peek() === t ? (this._cursor.advance(), !0) : !1;\n }\n _attemptCharCodeCaseInsensitive(t) {\n return QR(this._cursor.peek(), t) ? (this._cursor.advance(), !0) : !1;\n }\n _requireCharCode(t) {\n let r = this._cursor.clone();\n if (!this._attemptCharCode(t)) throw this._createError(kn(this._cursor.peek()), this._cursor.getSpan(r));\n }\n _attemptStr(t) {\n let r = t.length;\n if (this._cursor.charsLeft() < r) return !1;\n let n = this._cursor.clone();\n for (let a = 0; a < r; a++) if (!this._attemptCharCode(t.charCodeAt(a))) return this._cursor = n, !1;\n return !0;\n }\n _attemptStrCaseInsensitive(t) {\n for (let r = 0; r < t.length; r++) if (!this._attemptCharCodeCaseInsensitive(t.charCodeAt(r))) return !1;\n return !0;\n }\n _requireStr(t) {\n let r = this._cursor.clone();\n if (!this._attemptStr(t)) throw this._createError(kn(this._cursor.peek()), this._cursor.getSpan(r));\n }\n _requireStrCaseInsensitive(t) {\n let r = this._cursor.clone();\n if (!this._attemptStrCaseInsensitive(t)) throw this._createError(kn(this._cursor.peek()), this._cursor.getSpan(r));\n }\n _attemptCharCodeUntilFn(t) {\n for (; !t(this._cursor.peek()); ) this._cursor.advance();\n }\n _requireCharCodeUntilFn(t, r) {\n let n = this._cursor.clone();\n if (this._attemptCharCodeUntilFn(t), this._cursor.diff(n) < r) throw this._createError(kn(this._cursor.peek()), this._cursor.getSpan(n));\n }\n _attemptUntilChar(t) {\n for (; this._cursor.peek() !== t; ) this._cursor.advance();\n }\n _readChar() {\n let t = String.fromCodePoint(this._cursor.peek());\n return this._cursor.advance(), t;\n }\n _consumeEntity(t) {\n this._beginToken(9);\n let r = this._cursor.clone();\n if (this._cursor.advance(), this._attemptCharCode(35)) {\n let n = this._attemptCharCode(120) || this._attemptCharCode(88), a = this._cursor.clone();\n if (this._attemptCharCodeUntilFn(KR), this._cursor.peek() != 59) {\n this._cursor.advance();\n let l = n ? qi.HEX : qi.DEC;\n throw this._createError(GR(l, this._cursor.getChars(r)), this._cursor.getSpan());\n }\n let i = this._cursor.getChars(a);\n this._cursor.advance();\n try {\n let l = parseInt(i, n ? 16 : 10);\n this._endToken([String.fromCharCode(l), this._cursor.getChars(r)]);\n } catch {\n throw this._createError(Jh(this._cursor.getChars(r)), this._cursor.getSpan());\n }\n } else {\n let n = this._cursor.clone();\n if (this._attemptCharCodeUntilFn(ZR), this._cursor.peek() != 59) this._beginToken(t, r), this._cursor = n, this._endToken([\"&\"]);\n else {\n let a = this._cursor.getChars(n);\n this._cursor.advance();\n let i = Wi[a];\n if (!i) throw this._createError(Jh(a), this._cursor.getSpan(r));\n this._endToken([i, `&${a};`]);\n }\n }\n }\n _consumeRawText(t, r) {\n this._beginToken(t ? 6 : 7);\n let n = [];\n for (; ; ) {\n let a = this._cursor.clone(), i = r();\n if (this._cursor = a, i) break;\n t && this._cursor.peek() === 38 ? (this._endToken([this._processCarriageReturns(n.join(\"\"))]), n.length = 0, this._consumeEntity(6),\n this._beginToken(6)) : n.push(this._readChar());\n }\n this._endToken([this._processCarriageReturns(n.join(\"\"))]);\n }\n _consumeComment(t) {\n this._beginToken(10, t), this._endToken([]), this._consumeRawText(!1, () => this._attemptStr(\"-->\")), this._beginToken(11), this._requireStr(\n \"-->\"), this._endToken([]);\n }\n _consumeBogusComment(t) {\n this._beginToken(10, t), this._endToken([]), this._consumeRawText(!1, () => this._cursor.peek() === 62), this._beginToken(11), this._cursor.\n advance(), this._endToken([]);\n }\n _consumeCdata(t) {\n this._beginToken(12, t), this._endToken([]), this._consumeRawText(!1, () => this._attemptStr(\"]]>\")), this._beginToken(13), this._requireStr(\n \"]]>\"), this._endToken([]);\n }\n _consumeDocType(t) {\n this._beginToken(18, t), this._endToken([]), this._consumeRawText(!1, () => this._cursor.peek() === 62), this._beginToken(19), this._cursor.\n advance(), this._endToken([]);\n }\n _consumePrefixAndName() {\n let t = this._cursor.clone(), r = \"\";\n for (; this._cursor.peek() !== 58 && !XR(this._cursor.peek()); ) this._cursor.advance();\n let n;\n this._cursor.peek() === 58 ? (r = this._cursor.getChars(t), this._cursor.advance(), n = this._cursor.clone()) : n = t, this._requireCharCodeUntilFn(\n Qh, r === \"\" ? 0 : 1);\n let a = this._cursor.getChars(n);\n return [r, a];\n }\n _consumeTagOpen(t) {\n let r, n, a, i = [];\n try {\n if (!$i(this._cursor.peek())) throw this._createError(kn(this._cursor.peek()), this._cursor.getSpan(t));\n for (a = this._consumeTagOpenStart(t), n = a.parts[0], r = a.parts[1], this._attemptCharCodeUntilFn(ue); this._cursor.peek() !== 47 &&\n this._cursor.peek() !== 62 && this._cursor.peek() !== 60 && this._cursor.peek() !== 0; ) {\n let [u, c] = this._consumeAttributeName();\n if (this._attemptCharCodeUntilFn(ue), this._attemptCharCode(61)) {\n this._attemptCharCodeUntilFn(ue);\n let p = this._consumeAttributeValue();\n i.push({ prefix: u, name: c, value: p });\n } else i.push({ prefix: u, name: c });\n this._attemptCharCodeUntilFn(ue);\n }\n this._consumeTagOpenEnd();\n } catch (u) {\n if (u instanceof Uu) {\n a ? a.type = 4 : (this._beginToken(5, t), this._endToken([\"<\"]));\n return;\n }\n throw u;\n }\n if (this._canSelfClose && this.tokens[this.tokens.length - 1].type === 2) return;\n let l = this._getTagContentType(r, n, this._fullNameStack.length > 0, i);\n this._handleFullNameStackForTagOpen(n, r), l === ft.RAW_TEXT ? this._consumeRawTextWithTagClose(n, r, !1) : l === ft.ESCAPABLE_RAW_TEXT &&\n this._consumeRawTextWithTagClose(n, r, !0);\n }\n _consumeRawTextWithTagClose(t, r, n) {\n this._consumeRawText(n, () => !this._attemptCharCode(60) || !this._attemptCharCode(47) || (this._attemptCharCodeUntilFn(ue), !this._attemptStrCaseInsensitive(\n t ? `${t}:${r}` : r)) ? !1 : (this._attemptCharCodeUntilFn(ue), this._attemptCharCode(62))), this._beginToken(3), this._requireCharCodeUntilFn(\n (a) => a === 62, 3), this._cursor.advance(), this._endToken([t, r]), this._handleFullNameStackForTagClose(t, r);\n }\n _consumeTagOpenStart(t) {\n this._beginToken(0, t);\n let r = this._consumePrefixAndName();\n return this._endToken(r);\n }\n _consumeAttributeName() {\n let t = this._cursor.peek();\n if (t === 39 || t === 34) throw this._createError(kn(t), this._cursor.getSpan());\n this._beginToken(14);\n let r = this._consumePrefixAndName();\n return this._endToken(r), r;\n }\n _consumeAttributeValue() {\n let t;\n if (this._cursor.peek() === 39 || this._cursor.peek() === 34) {\n let r = this._cursor.peek();\n this._consumeQuote(r);\n let n = /* @__PURE__ */ o(() => this._cursor.peek() === r, \"n\");\n t = this._consumeWithInterpolation(16, 17, n, n), this._consumeQuote(r);\n } else {\n let r = /* @__PURE__ */ o(() => Qh(this._cursor.peek()), \"r\");\n t = this._consumeWithInterpolation(16, 17, r, r);\n }\n return t;\n }\n _consumeQuote(t) {\n this._beginToken(15), this._requireCharCode(t), this._endToken([String.fromCodePoint(t)]);\n }\n _consumeTagOpenEnd() {\n let t = this._attemptCharCode(47) ? 2 : 1;\n this._beginToken(t), this._requireCharCode(62), this._endToken([]);\n }\n _consumeTagClose(t) {\n if (this._beginToken(3, t), this._attemptCharCodeUntilFn(ue), this._allowHtmComponentClosingTags && this._attemptCharCode(47)) this._attemptCharCodeUntilFn(\n ue), this._requireCharCode(62), this._endToken([]);\n else {\n let [r, n] = this._consumePrefixAndName();\n this._attemptCharCodeUntilFn(ue), this._requireCharCode(62), this._endToken([r, n]), this._handleFullNameStackForTagClose(r, n);\n }\n }\n _consumeExpansionFormStart() {\n this._beginToken(20), this._requireCharCode(123), this._endToken([]), this._expansionCaseStack.push(20), this._beginToken(7);\n let t = this._readUntil(44), r = this._processCarriageReturns(t);\n if (this._i18nNormalizeLineEndingsInICUs) this._endToken([r]);\n else {\n let a = this._endToken([t]);\n r !== t && this.nonNormalizedIcuExpressions.push(a);\n }\n this._requireCharCode(44), this._attemptCharCodeUntilFn(ue), this._beginToken(7);\n let n = this._readUntil(44);\n this._endToken([n]), this._requireCharCode(44), this._attemptCharCodeUntilFn(ue);\n }\n _consumeExpansionCaseStart() {\n this._beginToken(21);\n let t = this._readUntil(123).trim();\n this._endToken([t]), this._attemptCharCodeUntilFn(ue), this._beginToken(22), this._requireCharCode(123), this._endToken([]), this._attemptCharCodeUntilFn(\n ue), this._expansionCaseStack.push(22);\n }\n _consumeExpansionCaseEnd() {\n this._beginToken(23), this._requireCharCode(125), this._endToken([]), this._attemptCharCodeUntilFn(ue), this._expansionCaseStack.pop();\n }\n _consumeExpansionFormEnd() {\n this._beginToken(24), this._requireCharCode(125), this._endToken([]), this._expansionCaseStack.pop();\n }\n _consumeWithInterpolation(t, r, n, a) {\n this._beginToken(t);\n let i = [];\n for (; !n(); ) {\n let u = this._cursor.clone();\n this._interpolationConfig && this._attemptStr(this._interpolationConfig.start) ? (this._endToken([this._processCarriageReturns(i.join(\n \"\"))], u), i.length = 0, this._consumeInterpolation(r, u, a), this._beginToken(t)) : this._cursor.peek() === 38 ? (this._endToken([this.\n _processCarriageReturns(i.join(\"\"))]), i.length = 0, this._consumeEntity(t), this._beginToken(t)) : i.push(this._readChar());\n }\n this._inInterpolation = !1;\n let l = this._processCarriageReturns(i.join(\"\"));\n return this._endToken([l]), l;\n }\n _consumeInterpolation(t, r, n) {\n let a = [];\n this._beginToken(t, r), a.push(this._interpolationConfig.start);\n let i = this._cursor.clone(), l = null, u = !1;\n for (; this._cursor.peek() !== 0 && (n === null || !n()); ) {\n let c = this._cursor.clone();\n if (this._isTagStart()) {\n this._cursor = c, a.push(this._getProcessedChars(i, c)), this._endToken(a);\n return;\n }\n if (l === null) if (this._attemptStr(this._interpolationConfig.end)) {\n a.push(this._getProcessedChars(i, c)), a.push(this._interpolationConfig.end), this._endToken(a);\n return;\n } else this._attemptStr(\"//\") && (u = !0);\n let p = this._cursor.peek();\n this._cursor.advance(), p === 92 ? this._cursor.advance() : p === l ? l = null : !u && l === null && Wu(p) && (l = p);\n }\n a.push(this._getProcessedChars(i, this._cursor)), this._endToken(a);\n }\n _getProcessedChars(t, r) {\n return this._processCarriageReturns(r.getChars(t));\n }\n _isTextEnd() {\n return !!(this._isTagStart() || this._cursor.peek() === 0 || this._tokenizeIcu && !this._inInterpolation && (this.isExpansionFormStart() ||\n this._cursor.peek() === 125 && this._isInExpansionCase()) || this._tokenizeBlocks && !this._inInterpolation && !this._isInExpansion() &&\n (this._isBlockStart() || this._cursor.peek() === 64 || this._cursor.peek() === 125));\n }\n _isTagStart() {\n if (this._cursor.peek() === 60) {\n let t = this._cursor.clone();\n t.advance();\n let r = t.peek();\n if (97 <= r && r <= 122 || 65 <= r && r <= 90 || r === 47 || r === 33) return !0;\n }\n return !1;\n }\n _isBlockStart() {\n if (this._tokenizeBlocks && this._cursor.peek() === 64) {\n let t = this._cursor.clone();\n if (t.advance(), t5(t.peek())) return !0;\n }\n return !1;\n }\n _readUntil(t) {\n let r = this._cursor.clone();\n return this._attemptUntilChar(t), this._cursor.getChars(r);\n }\n _isInExpansion() {\n return this._isInExpansionCase() || this._isInExpansionForm();\n }\n _isInExpansionCase() {\n return this._expansionCaseStack.length > 0 && this._expansionCaseStack[this._expansionCaseStack.length - 1] === 22;\n }\n _isInExpansionForm() {\n return this._expansionCaseStack.length > 0 && this._expansionCaseStack[this._expansionCaseStack.length - 1] === 20;\n }\n isExpansionFormStart() {\n if (this._cursor.peek() !== 123) return !1;\n if (this._interpolationConfig) {\n let t = this._cursor.clone(), r = this._attemptStr(this._interpolationConfig.start);\n return this._cursor = t, !r;\n }\n return !0;\n }\n _handleFullNameStackForTagOpen(t, r) {\n let n = ji(t, r);\n (this._fullNameStack.length === 0 || this._fullNameStack[this._fullNameStack.length - 1] === n) && this._fullNameStack.push(n);\n }\n _handleFullNameStackForTagClose(t, r) {\n let n = ji(t, r);\n this._fullNameStack.length !== 0 && this._fullNameStack[this._fullNameStack.length - 1] === n && this._fullNameStack.pop();\n }\n }, o(ta, \"$r\"), ta);\n o(ue, \"b\");\n o(Qh, \"Rs\");\n o(XR, \"po\");\n o(KR, \"ho\");\n o(ZR, \"mo\");\n o(JR, \"fo\");\n o(QR, \"go\");\n o(e5, \"Os\");\n o(t5, \"$s\");\n o(r5, \"Ms\");\n o(eS, \"Co\");\n tm = (ir = class {\n constructor(t, r) {\n if (t instanceof ir) {\n this.file = t.file, this.input = t.input, this.end = t.end;\n let n = t.state;\n this.state = { peek: n.peek, offset: n.offset, line: n.line, column: n.column };\n } else {\n if (!r) throw new Error(\"Programming error: the range argument must be provided with a file argument.\");\n this.file = t, this.input = t.content, this.end = r.endPos, this.state = { peek: -1, offset: r.startPos, line: r.startLine, column: r.\n startCol };\n }\n }\n clone() {\n return new ir(this);\n }\n peek() {\n return this.state.peek;\n }\n charsLeft() {\n return this.end - this.state.offset;\n }\n diff(t) {\n return this.state.offset - t.state.offset;\n }\n advance() {\n this.advanceState(this.state);\n }\n init() {\n this.updatePeek(this.state);\n }\n getSpan(t, r) {\n t = t || this;\n let n = t;\n if (r) for (; this.diff(t) > 0 && r.indexOf(t.peek()) !== -1; ) n === t && (t = t.clone()), t.advance();\n let a = this.locationFromCursor(t), i = this.locationFromCursor(this), l = n !== t ? this.locationFromCursor(n) : a;\n return new z(a, i, l);\n }\n getChars(t) {\n return this.input.substring(t.state.offset, this.state.offset);\n }\n charAt(t) {\n return this.input.charCodeAt(t);\n }\n advanceState(t) {\n if (t.offset >= this.end) throw this.state = t, new wc('Unexpected character \"EOF\"', this);\n let r = this.charAt(t.offset);\n r === 10 ? (t.line++, t.column = 0) : vc(r) || t.column++, t.offset++, this.updatePeek(t);\n }\n updatePeek(t) {\n t.peek = t.offset >= this.end ? 0 : this.charAt(t.offset);\n }\n locationFromCursor(t) {\n return new Zu(t.file, t.state.offset, t.state.line, t.state.column);\n }\n }, o(ir, \"t\"), ir), tS = (lr = class extends tm {\n constructor(t, r) {\n t instanceof lr ? (super(t), this.internalState = { ...t.internalState }) : (super(t, r), this.internalState = this.state);\n }\n advance() {\n this.state = this.internalState, super.advance(), this.processEscapeSequence();\n }\n init() {\n super.init(), this.processEscapeSequence();\n }\n clone() {\n return new lr(this);\n }\n getChars(t) {\n let r = t.clone(), n = \"\";\n for (; r.internalState.offset < this.internalState.offset; ) n += String.fromCodePoint(r.peek()), r.advance();\n return n;\n }\n processEscapeSequence() {\n let t = /* @__PURE__ */ o(() => this.internalState.peek, \"e\");\n if (t() === 92) if (this.internalState = { ...this.state }, this.advanceState(this.internalState), t() === 110) this.state.peek = 10;\n else if (t() === 114) this.state.peek = 13;\n else if (t() === 118) this.state.peek = 11;\n else if (t() === 116) this.state.peek = 9;\n else if (t() === 98) this.state.peek = 8;\n else if (t() === 102) this.state.peek = 12;\n else if (t() === 117) if (this.advanceState(this.internalState), t() === 123) {\n this.advanceState(this.internalState);\n let r = this.clone(), n = 0;\n for (; t() !== 125; ) this.advanceState(this.internalState), n++;\n this.state.peek = this.decodeHexDigits(r, n);\n } else {\n let r = this.clone();\n this.advanceState(this.internalState), this.advanceState(this.internalState), this.advanceState(this.internalState), this.state.peek =\n this.decodeHexDigits(r, 4);\n }\n else if (t() === 120) {\n this.advanceState(this.internalState);\n let r = this.clone();\n this.advanceState(this.internalState), this.state.peek = this.decodeHexDigits(r, 2);\n } else if (Hh(t())) {\n let r = \"\", n = 0, a = this.clone();\n for (; Hh(t()) && n < 3; ) a = this.clone(), r += String.fromCodePoint(t()), this.advanceState(this.internalState), n++;\n this.state.peek = parseInt(r, 8), this.internalState = a.internalState;\n } else vc(this.internalState.peek) ? (this.advanceState(this.internalState), this.state = this.internalState) : this.state.peek = this.\n internalState.peek;\n }\n decodeHexDigits(t, r) {\n let n = this.input.slice(t.internalState.offset, t.internalState.offset + r), a = parseInt(n, 16);\n if (isNaN(a)) throw t.state = t.internalState, new wc(\"Invalid hexadecimal escape sequence\", t);\n return a;\n }\n }, o(lr, \"t\"), lr), wc = (ra = class {\n constructor(t, r) {\n this.msg = t, this.cursor = r;\n }\n }, o(ra, \"gt\"), ra), _e = (Mr = class extends K5 {\n static create(t, r, n) {\n return new Mr(t, r, n);\n }\n constructor(t, r, n) {\n super(r, n), this.elementName = t;\n }\n }, o(Mr, \"t\"), Mr), rS = (na = class {\n constructor(t, r) {\n this.rootNodes = t, this.errors = r;\n }\n }, o(na, \"Vr\"), na), nS = (aa = class {\n constructor(t) {\n this.getTagDefinition = t;\n }\n parse(t, r, n, a = !1, i) {\n let l = /* @__PURE__ */ o((w) => (m, ...v) => w(m.toLowerCase(), ...v), \"a\"), u = a ? this.getTagDefinition : l(this.getTagDefinition),\n c = /* @__PURE__ */ o((w) => u(w).getContentType(), \"u\"), p = a ? i : l(i), d = qR(t, r, i ? (w, m, v, y) => {\n let b = p(w, m, v, y);\n return b !== void 0 ? b : c(w);\n } : c, n), h = n && n.canSelfClose || !1, f = n && n.allowHtmComponentClosingTags || !1, g = new aS(d.tokens, u, h, f, a);\n return g.build(), new rS(g.rootNodes, d.errors.concat(g.errors));\n }\n }, o(aa, \"tr\"), aa), aS = (_r = class {\n constructor(t, r, n, a, i) {\n this.tokens = t, this.getTagDefinition = r, this.canSelfClose = n, this.allowHtmComponentClosingTags = a, this.isTagNameCaseSensitive =\n i, this._index = -1, this._containerStack = [], this.rootNodes = [], this.errors = [], this._advance();\n }\n build() {\n for (; this._peek.type !== 34; ) this._peek.type === 0 || this._peek.type === 4 ? this._consumeStartTag(this._advance()) : this._peek.\n type === 3 ? (this._closeVoidElement(), this._consumeEndTag(this._advance())) : this._peek.type === 12 ? (this._closeVoidElement(), this.\n _consumeCdata(this._advance())) : this._peek.type === 10 ? (this._closeVoidElement(), this._consumeComment(this._advance())) : this._peek.\n type === 5 || this._peek.type === 7 || this._peek.type === 6 ? (this._closeVoidElement(), this._consumeText(this._advance())) : this._peek.\n type === 20 ? this._consumeExpansion(this._advance()) : this._peek.type === 25 ? (this._closeVoidElement(), this._consumeBlockOpen(this.\n _advance())) : this._peek.type === 27 ? (this._closeVoidElement(), this._consumeBlockClose(this._advance())) : this._peek.type === 29 ?\n (this._closeVoidElement(), this._consumeIncompleteBlock(this._advance())) : this._peek.type === 30 ? (this._closeVoidElement(), this._consumeLet(\n this._advance())) : this._peek.type === 18 ? this._consumeDocType(this._advance()) : this._peek.type === 33 ? (this._closeVoidElement(),\n this._consumeIncompleteLet(this._advance())) : this._advance();\n for (let t of this._containerStack) t instanceof Fn && this.errors.push(_e.create(t.name, t.sourceSpan, `Unclosed block \"${t.name}\"`));\n }\n _advance() {\n let t = this._peek;\n return this._index < this.tokens.length - 1 && this._index++, this._peek = this.tokens[this._index], t;\n }\n _advanceIf(t) {\n return this._peek.type === t ? this._advance() : null;\n }\n _consumeCdata(t) {\n let r = this._advance(), n = this._getText(r), a = this._advanceIf(13);\n this._addToParent(new BR(n, new z(t.sourceSpan.start, (a || r).sourceSpan.end), [r]));\n }\n _consumeComment(t) {\n let r = this._advanceIf(7), n = this._advanceIf(11), a = r != null ? r.parts[0].trim() : null, i = n == null ? t.sourceSpan : new z(t.\n sourceSpan.start, n.sourceSpan.end, t.sourceSpan.fullStart);\n this._addToParent(new HR(a, i));\n }\n _consumeDocType(t) {\n let r = this._advanceIf(7), n = this._advanceIf(19), a = r != null ? r.parts[0].trim() : null, i = new z(t.sourceSpan.start, (n || r ||\n t).sourceSpan.end);\n this._addToParent(new zR(a, i));\n }\n _consumeExpansion(t) {\n let r = this._advance(), n = this._advance(), a = [];\n for (; this._peek.type === 21; ) {\n let l = this._parseExpansionCase();\n if (!l) return;\n a.push(l);\n }\n if (this._peek.type !== 24) {\n this.errors.push(_e.create(null, this._peek.sourceSpan, \"Invalid ICU message. Missing '}'.\"));\n return;\n }\n let i = new z(t.sourceSpan.start, this._peek.sourceSpan.end, t.sourceSpan.fullStart);\n this._addToParent(new MR(r.parts[0], n.parts[0], a, i, r.sourceSpan)), this._advance();\n }\n _parseExpansionCase() {\n let t = this._advance();\n if (this._peek.type !== 22) return this.errors.push(_e.create(null, this._peek.sourceSpan, \"Invalid ICU message. Missing '{'.\")), null;\n let r = this._advance(), n = this._collectExpansionExpTokens(r);\n if (!n) return null;\n let a = this._advance();\n n.push({ type: 34, parts: [], sourceSpan: a.sourceSpan });\n let i = new _r(n, this.getTagDefinition, this.canSelfClose, this.allowHtmComponentClosingTags, this.isTagNameCaseSensitive);\n if (i.build(), i.errors.length > 0) return this.errors = this.errors.concat(i.errors), null;\n let l = new z(t.sourceSpan.start, a.sourceSpan.end, t.sourceSpan.fullStart), u = new z(r.sourceSpan.start, a.sourceSpan.end, r.sourceSpan.\n fullStart);\n return new _R(t.parts[0], i.rootNodes, l, t.sourceSpan, u);\n }\n _collectExpansionExpTokens(t) {\n let r = [], n = [22];\n for (; ; ) {\n if ((this._peek.type === 20 || this._peek.type === 22) && n.push(this._peek.type), this._peek.type === 23) if (n5(n, 22)) {\n if (n.pop(), n.length === 0) return r;\n } else return this.errors.push(_e.create(null, t.sourceSpan, \"Invalid ICU message. Missing '}'.\")), null;\n if (this._peek.type === 24) if (n5(n, 20)) n.pop();\n else return this.errors.push(_e.create(null, t.sourceSpan, \"Invalid ICU message. Missing '}'.\")), null;\n if (this._peek.type === 34) return this.errors.push(_e.create(null, t.sourceSpan, \"Invalid ICU message. Missing '}'.\")), null;\n r.push(this._advance());\n }\n }\n _getText(t) {\n let r = t.parts[0];\n if (r.length > 0 && r[0] == `\n`) {\n let n = this._getClosestParentElement();\n n != null && n.children.length == 0 && this.getTagDefinition(n.name).ignoreFirstLf && (r = r.substring(1));\n }\n return r;\n }\n _consumeText(t) {\n let r = [t], n = t.sourceSpan, a = t.parts[0];\n if (a.length > 0 && a[0] === `\n`) {\n let i = this._getContainer();\n i != null && i.children.length === 0 && this.getTagDefinition(i.name).ignoreFirstLf && (a = a.substring(1), r[0] = { type: t.type, sourceSpan: t.\n sourceSpan, parts: [a] });\n }\n for (; this._peek.type === 8 || this._peek.type === 5 || this._peek.type === 9; ) t = this._advance(), r.push(t), t.type === 8 ? a += t.\n parts.join(\"\").replace(/&([^;]+);/g, a5) : t.type === 9 ? a += t.parts[0] : a += t.parts.join(\"\");\n if (a.length > 0) {\n let i = t.sourceSpan;\n this._addToParent(new IR(a, new z(n.start, i.end, n.fullStart, n.details), r));\n }\n }\n _closeVoidElement() {\n let t = this._getContainer();\n t instanceof or && this.getTagDefinition(t.name).isVoid && this._containerStack.pop();\n }\n _consumeStartTag(t) {\n let [r, n] = t.parts, a = [];\n for (; this._peek.type === 14; ) a.push(this._consumeAttr(this._advance()));\n let i = this._getElementFullName(r, n, this._getClosestParentElement()), l = !1;\n if (this._peek.type === 2) {\n this._advance(), l = !0;\n let g = this.getTagDefinition(i);\n this.canSelfClose || g.canSelfClose || Hi(i) !== null || g.isVoid || this.errors.push(_e.create(i, t.sourceSpan, `Only void, custom \\\nand foreign elements can be self closed \"${t.parts[1]}\"`));\n } else this._peek.type === 1 && (this._advance(), l = !1);\n let u = this._peek.sourceSpan.fullStart, c = new z(t.sourceSpan.start, u, t.sourceSpan.fullStart), p = new z(t.sourceSpan.start, u, t.\n sourceSpan.fullStart), d = new z(t.sourceSpan.start.moveBy(1), t.sourceSpan.end), h = new or(i, a, [], c, p, void 0, d), f = this._getContainer();\n this._pushContainer(h, f instanceof or && this.getTagDefinition(f.name).isClosedByChild(h.name)), l ? this._popContainer(i, or, c) : t.\n type === 4 && (this._popContainer(i, or, null), this.errors.push(_e.create(i, c, `Opening tag \"${i}\" not terminated.`)));\n }\n _pushContainer(t, r) {\n r && this._containerStack.pop(), this._addToParent(t), this._containerStack.push(t);\n }\n _consumeEndTag(t) {\n let r = this.allowHtmComponentClosingTags && t.parts.length === 0 ? null : this._getElementFullName(t.parts[0], t.parts[1], this._getClosestParentElement());\n if (r && this.getTagDefinition(r).isVoid) this.errors.push(_e.create(r, t.sourceSpan, `Void elements do not have end tags \"${t.parts[1]}\\\n\"`));\n else if (!this._popContainer(r, or, t.sourceSpan)) {\n let n = `Unexpected closing tag \"${r}\". It may happen when the tag has already been closed by another tag. For more info see https:/\\\n/www.w3.org/TR/html5/syntax.html#closing-elements-that-have-implied-end-tags`;\n this.errors.push(_e.create(r, t.sourceSpan, n));\n }\n }\n _popContainer(t, r, n) {\n let a = !1;\n for (let i = this._containerStack.length - 1; i >= 0; i--) {\n let l = this._containerStack[i];\n if (Hi(l.name) ? l.name === t : (t == null || l.name.toLowerCase() === t.toLowerCase()) && l instanceof r) return l.endSourceSpan = n,\n l.sourceSpan.end = n !== null ? n.end : l.sourceSpan.end, this._containerStack.splice(i, this._containerStack.length - i), !a;\n (l instanceof Fn || l instanceof or && !this.getTagDefinition(l.name).closedByParent) && (a = !0);\n }\n return !1;\n }\n _consumeAttr(t) {\n let r = ji(t.parts[0], t.parts[1]), n = t.sourceSpan.end, a;\n this._peek.type === 15 && (a = this._advance());\n let i = \"\", l = [], u, c;\n if (this._peek.type === 16) for (u = this._peek.sourceSpan, c = this._peek.sourceSpan.end; this._peek.type === 16 || this._peek.type ===\n 17 || this._peek.type === 9; ) {\n let d = this._advance();\n l.push(d), d.type === 17 ? i += d.parts.join(\"\").replace(/&([^;]+);/g, a5) : d.type === 9 ? i += d.parts[0] : i += d.parts.join(\"\"),\n c = n = d.sourceSpan.end;\n }\n this._peek.type === 15 && (c = n = this._advance().sourceSpan.end);\n let p = u && c && new z(a?.sourceSpan.start ?? u.start, c, a?.sourceSpan.fullStart ?? u.fullStart);\n return new PR(r, i, new z(t.sourceSpan.start, n, t.sourceSpan.fullStart), t.sourceSpan, p, l.length > 0 ? l : void 0, void 0);\n }\n _consumeBlockOpen(t) {\n let r = [];\n for (; this._peek.type === 28; ) {\n let u = this._advance();\n r.push(new Kh(u.parts[0], u.sourceSpan));\n }\n this._peek.type === 26 && this._advance();\n let n = this._peek.sourceSpan.fullStart, a = new z(t.sourceSpan.start, n, t.sourceSpan.fullStart), i = new z(t.sourceSpan.start, n, t.\n sourceSpan.fullStart), l = new Fn(t.parts[0], r, [], a, t.sourceSpan, i);\n this._pushContainer(l, !1);\n }\n _consumeBlockClose(t) {\n this._popContainer(null, Fn, t.sourceSpan) || this.errors.push(_e.create(null, t.sourceSpan, 'Unexpected closing block. The block may \\\nhave been closed earlier. If you meant to write the } character, you should use the \"}\" HTML entity instead.'));\n }\n _consumeIncompleteBlock(t) {\n let r = [];\n for (; this._peek.type === 28; ) {\n let u = this._advance();\n r.push(new Kh(u.parts[0], u.sourceSpan));\n }\n let n = this._peek.sourceSpan.fullStart, a = new z(t.sourceSpan.start, n, t.sourceSpan.fullStart), i = new z(t.sourceSpan.start, n, t.\n sourceSpan.fullStart), l = new Fn(t.parts[0], r, [], a, t.sourceSpan, i);\n this._pushContainer(l, !1), this._popContainer(null, Fn, null), this.errors.push(_e.create(t.parts[0], a, `Incomplete block \"${t.parts[0]}\\\n\". If you meant to write the @ character, you should use the \"@\" HTML entity instead.`));\n }\n _consumeLet(t) {\n let r = t.parts[0], n, a;\n if (this._peek.type !== 31) {\n this.errors.push(_e.create(t.parts[0], t.sourceSpan, `Invalid @let declaration \"${r}\". Declaration must have a value.`));\n return;\n } else n = this._advance();\n if (this._peek.type !== 32) {\n this.errors.push(_e.create(t.parts[0], t.sourceSpan, `Unterminated @let declaration \"${r}\". Declaration must be terminated with a se\\\nmicolon.`));\n return;\n } else a = this._advance();\n let i = a.sourceSpan.fullStart, l = new z(t.sourceSpan.start, i, t.sourceSpan.fullStart), u = t.sourceSpan.toString().lastIndexOf(r), c = t.\n sourceSpan.start.moveBy(u), p = new z(c, t.sourceSpan.end), d = new Zh(r, n.parts[0], l, p, n.sourceSpan);\n this._addToParent(d);\n }\n _consumeIncompleteLet(t) {\n let r = t.parts[0] ?? \"\", n = r ? ` \"${r}\"` : \"\";\n if (r.length > 0) {\n let a = t.sourceSpan.toString().lastIndexOf(r), i = t.sourceSpan.start.moveBy(a), l = new z(i, t.sourceSpan.end), u = new z(t.sourceSpan.\n start, t.sourceSpan.start.moveBy(0)), c = new Zh(r, \"\", t.sourceSpan, l, u);\n this._addToParent(c);\n }\n this.errors.push(_e.create(t.parts[0], t.sourceSpan, `Incomplete @let declaration${n}. @let declarations must be written as \\`@let <nam\\\ne> = <value>;\\``));\n }\n _getContainer() {\n return this._containerStack.length > 0 ? this._containerStack[this._containerStack.length - 1] : null;\n }\n _getClosestParentElement() {\n for (let t = this._containerStack.length - 1; t > -1; t--) if (this._containerStack[t] instanceof or) return this._containerStack[t];\n return null;\n }\n _addToParent(t) {\n let r = this._getContainer();\n r === null ? this.rootNodes.push(t) : r.children.push(t);\n }\n _getElementFullName(t, r, n) {\n if (t === \"\" && (t = this.getTagDefinition(r).implicitNamespacePrefix || \"\", t === \"\" && n != null)) {\n let a = el(n.name)[1];\n this.getTagDefinition(a).preventNamespaceInheritance || (t = Hi(n.name));\n }\n return ji(t, r);\n }\n }, o(_r, \"t\"), _r);\n o(n5, \"Ws\");\n o(a5, \"zs\");\n oS = (oa = class extends nS {\n constructor() {\n super(Ju);\n }\n parse(t, r, n, a = !1, i) {\n return super.parse(t, r, n, a, i);\n }\n }, o(oa, \"rr\"), oa), Gu = null, iS = /* @__PURE__ */ o(() => (Gu || (Gu = new oS()), Gu), \"So\");\n o(o5, \"zr\");\n o(lS, \"_o\");\n sS = lS, Eo = 3;\n o(uS, \"Eo\");\n o(cS, \"Ao\");\n pS = cS, Pi = { attrs: !0, children: !0, cases: !0, expression: !0 }, i5 = /* @__PURE__ */ new Set([\"parent\"]), dS = (At = class {\n constructor(t = {}) {\n for (let r of /* @__PURE__ */ new Set([...i5, ...Object.keys(t)])) this.setProperty(r, t[r]);\n }\n setProperty(t, r) {\n if (this[t] !== r) {\n if (t in Pi && (r = r.map((n) => this.createChild(n))), !i5.has(t)) {\n this[t] = r;\n return;\n }\n Object.defineProperty(this, t, { value: r, enumerable: !1, configurable: !0 });\n }\n }\n map(t) {\n let r;\n for (let n in Pi) {\n let a = this[n];\n if (a) {\n let i = fS(a, (l) => l.map(t));\n r !== a && (r || (r = new At({ parent: this.parent })), r.setProperty(n, i));\n }\n }\n if (r) for (let n in this) n in Pi || (r[n] = this[n]);\n return t(r || this);\n }\n walk(t) {\n for (let r in Pi) {\n let n = this[r];\n if (n) for (let a = 0; a < n.length; a++) n[a].walk(t);\n }\n t(this);\n }\n createChild(t) {\n let r = t instanceof At ? t.clone() : new At(t);\n return r.setProperty(\"parent\", this), r;\n }\n insertChildBefore(t, r) {\n this.children.splice(this.children.indexOf(t), 0, this.createChild(r));\n }\n removeChild(t) {\n this.children.splice(this.children.indexOf(t), 1);\n }\n replaceChild(t, r) {\n this.children[this.children.indexOf(t)] = this.createChild(r);\n }\n clone() {\n return new At(this);\n }\n get firstChild() {\n var t;\n return (t = this.children) == null ? void 0 : t[0];\n }\n get lastChild() {\n var t;\n return (t = this.children) == null ? void 0 : t[this.children.length - 1];\n }\n get prev() {\n var t, r;\n return (r = (t = this.parent) == null ? void 0 : t.children) == null ? void 0 : r[this.parent.children.indexOf(this) - 1];\n }\n get next() {\n var t, r;\n return (r = (t = this.parent) == null ? void 0 : t.children) == null ? void 0 : r[this.parent.children.indexOf(this) + 1];\n }\n get rawName() {\n return this.hasExplicitNamespace ? this.fullName : this.name;\n }\n get fullName() {\n return this.namespace ? this.namespace + \":\" + this.name : this.name;\n }\n get attrMap() {\n return Object.fromEntries(this.attrs.map((t) => [t.fullName, t.value]));\n }\n }, o(At, \"t\"), At);\n o(fS, \"Do\");\n hS = [{ regex: /^(\\[if([^\\]]*)\\]>)(.*?)<!\\s*\\[endif\\]$/su, parse: gS }, { regex: /^\\[if([^\\]]*)\\]><!$/u, parse: vS }, { regex: /^<!\\s*\\[endif\\]$/u,\n parse: wS }];\n o(mS, \"Ks\");\n o(gS, \"yo\");\n o(vS, \"wo\");\n o(wS, \"bo\");\n Yu = /* @__PURE__ */ new Map([[\"*\", /* @__PURE__ */ new Set([\"accesskey\", \"autocapitalize\", \"autofocus\", \"class\", \"contenteditable\", \"dir\",\n \"draggable\", \"enterkeyhint\", \"hidden\", \"id\", \"inert\", \"inputmode\", \"is\", \"itemid\", \"itemprop\", \"itemref\", \"itemscope\", \"itemtype\", \"lang\",\n \"nonce\", \"popover\", \"slot\", \"spellcheck\", \"style\", \"tabindex\", \"title\", \"translate\", \"writingsuggestions\"])], [\"a\", /* @__PURE__ */ new Set(\n [\"charset\", \"coords\", \"download\", \"href\", \"hreflang\", \"name\", \"ping\", \"referrerpolicy\", \"rel\", \"rev\", \"shape\", \"target\", \"type\"])], [\"appl\\\net\", /* @__PURE__ */ new Set([\"align\", \"alt\", \"archive\", \"code\", \"codebase\", \"height\", \"hspace\", \"name\", \"object\", \"vspace\", \"width\"])], [\"a\\\nrea\", /* @__PURE__ */ new Set([\"alt\", \"coords\", \"download\", \"href\", \"hreflang\", \"nohref\", \"ping\", \"referrerpolicy\", \"rel\", \"shape\", \"target\",\n \"type\"])], [\"audio\", /* @__PURE__ */ new Set([\"autoplay\", \"controls\", \"crossorigin\", \"loop\", \"muted\", \"preload\", \"src\"])], [\"base\", /* @__PURE__ */ new Set(\n [\"href\", \"target\"])], [\"basefont\", /* @__PURE__ */ new Set([\"color\", \"face\", \"size\"])], [\"blockquote\", /* @__PURE__ */ new Set([\"cite\"])],\n [\"body\", /* @__PURE__ */ new Set([\"alink\", \"background\", \"bgcolor\", \"link\", \"text\", \"vlink\"])], [\"br\", /* @__PURE__ */ new Set([\"clear\"])],\n [\"button\", /* @__PURE__ */ new Set([\"disabled\", \"form\", \"formaction\", \"formenctype\", \"formmethod\", \"formnovalidate\", \"formtarget\", \"name\",\n \"popovertarget\", \"popovertargetaction\", \"type\", \"value\"])], [\"canvas\", /* @__PURE__ */ new Set([\"height\", \"width\"])], [\"caption\", /* @__PURE__ */ new Set(\n [\"align\"])], [\"col\", /* @__PURE__ */ new Set([\"align\", \"char\", \"charoff\", \"span\", \"valign\", \"width\"])], [\"colgroup\", /* @__PURE__ */ new Set(\n [\"align\", \"char\", \"charoff\", \"span\", \"valign\", \"width\"])], [\"data\", /* @__PURE__ */ new Set([\"value\"])], [\"del\", /* @__PURE__ */ new Set([\n \"cite\", \"datetime\"])], [\"details\", /* @__PURE__ */ new Set([\"name\", \"open\"])], [\"dialog\", /* @__PURE__ */ new Set([\"open\"])], [\"dir\", /* @__PURE__ */ new Set(\n [\"compact\"])], [\"div\", /* @__PURE__ */ new Set([\"align\"])], [\"dl\", /* @__PURE__ */ new Set([\"compact\"])], [\"embed\", /* @__PURE__ */ new Set(\n [\"height\", \"src\", \"type\", \"width\"])], [\"fieldset\", /* @__PURE__ */ new Set([\"disabled\", \"form\", \"name\"])], [\"font\", /* @__PURE__ */ new Set(\n [\"color\", \"face\", \"size\"])], [\"form\", /* @__PURE__ */ new Set([\"accept\", \"accept-charset\", \"action\", \"autocomplete\", \"enctype\", \"method\", \"\\\nname\", \"novalidate\", \"target\"])], [\"frame\", /* @__PURE__ */ new Set([\"frameborder\", \"longdesc\", \"marginheight\", \"marginwidth\", \"name\", \"nore\\\nsize\", \"scrolling\", \"src\"])], [\"frameset\", /* @__PURE__ */ new Set([\"cols\", \"rows\"])], [\"h1\", /* @__PURE__ */ new Set([\"align\"])], [\"h2\", /* @__PURE__ */ new Set(\n [\"align\"])], [\"h3\", /* @__PURE__ */ new Set([\"align\"])], [\"h4\", /* @__PURE__ */ new Set([\"align\"])], [\"h5\", /* @__PURE__ */ new Set([\"alig\\\nn\"])], [\"h6\", /* @__PURE__ */ new Set([\"align\"])], [\"head\", /* @__PURE__ */ new Set([\"profile\"])], [\"hr\", /* @__PURE__ */ new Set([\"align\", \"\\\nnoshade\", \"size\", \"width\"])], [\"html\", /* @__PURE__ */ new Set([\"manifest\", \"version\"])], [\"iframe\", /* @__PURE__ */ new Set([\"align\", \"allo\\\nw\", \"allowfullscreen\", \"allowpaymentrequest\", \"allowusermedia\", \"frameborder\", \"height\", \"loading\", \"longdesc\", \"marginheight\", \"marginwidth\",\n \"name\", \"referrerpolicy\", \"sandbox\", \"scrolling\", \"src\", \"srcdoc\", \"width\"])], [\"img\", /* @__PURE__ */ new Set([\"align\", \"alt\", \"border\", \"\\\ncrossorigin\", \"decoding\", \"fetchpriority\", \"height\", \"hspace\", \"ismap\", \"loading\", \"longdesc\", \"name\", \"referrerpolicy\", \"sizes\", \"src\", \"sr\\\ncset\", \"usemap\", \"vspace\", \"width\"])], [\"input\", /* @__PURE__ */ new Set([\"accept\", \"align\", \"alt\", \"autocomplete\", \"checked\", \"dirname\", \"d\\\nisabled\", \"form\", \"formaction\", \"formenctype\", \"formmethod\", \"formnovalidate\", \"formtarget\", \"height\", \"ismap\", \"list\", \"max\", \"maxlength\", \"\\\nmin\", \"minlength\", \"multiple\", \"name\", \"pattern\", \"placeholder\", \"popovertarget\", \"popovertargetaction\", \"readonly\", \"required\", \"size\", \"sr\\\nc\", \"step\", \"type\", \"usemap\", \"value\", \"width\"])], [\"ins\", /* @__PURE__ */ new Set([\"cite\", \"datetime\"])], [\"isindex\", /* @__PURE__ */ new Set(\n [\"prompt\"])], [\"label\", /* @__PURE__ */ new Set([\"for\", \"form\"])], [\"legend\", /* @__PURE__ */ new Set([\"align\"])], [\"li\", /* @__PURE__ */ new Set(\n [\"type\", \"value\"])], [\"link\", /* @__PURE__ */ new Set([\"as\", \"blocking\", \"charset\", \"color\", \"crossorigin\", \"disabled\", \"fetchpriority\", \"\\\nhref\", \"hreflang\", \"imagesizes\", \"imagesrcset\", \"integrity\", \"media\", \"referrerpolicy\", \"rel\", \"rev\", \"sizes\", \"target\", \"type\"])], [\"map\", /* @__PURE__ */ new Set(\n [\"name\"])], [\"menu\", /* @__PURE__ */ new Set([\"compact\"])], [\"meta\", /* @__PURE__ */ new Set([\"charset\", \"content\", \"http-equiv\", \"media\",\n \"name\", \"scheme\"])], [\"meter\", /* @__PURE__ */ new Set([\"high\", \"low\", \"max\", \"min\", \"optimum\", \"value\"])], [\"object\", /* @__PURE__ */ new Set(\n [\"align\", \"archive\", \"border\", \"classid\", \"codebase\", \"codetype\", \"data\", \"declare\", \"form\", \"height\", \"hspace\", \"name\", \"standby\", \"type\",\n \"typemustmatch\", \"usemap\", \"vspace\", \"width\"])], [\"ol\", /* @__PURE__ */ new Set([\"compact\", \"reversed\", \"start\", \"type\"])], [\"optgroup\", /* @__PURE__ */ new Set(\n [\"disabled\", \"label\"])], [\"option\", /* @__PURE__ */ new Set([\"disabled\", \"label\", \"selected\", \"value\"])], [\"output\", /* @__PURE__ */ new Set(\n [\"for\", \"form\", \"name\"])], [\"p\", /* @__PURE__ */ new Set([\"align\"])], [\"param\", /* @__PURE__ */ new Set([\"name\", \"type\", \"value\", \"valuety\\\npe\"])], [\"pre\", /* @__PURE__ */ new Set([\"width\"])], [\"progress\", /* @__PURE__ */ new Set([\"max\", \"value\"])], [\"q\", /* @__PURE__ */ new Set(\n [\"cite\"])], [\"script\", /* @__PURE__ */ new Set([\"async\", \"blocking\", \"charset\", \"crossorigin\", \"defer\", \"fetchpriority\", \"integrity\", \"lan\\\nguage\", \"nomodule\", \"referrerpolicy\", \"src\", \"type\"])], [\"select\", /* @__PURE__ */ new Set([\"autocomplete\", \"disabled\", \"form\", \"multiple\", \"\\\nname\", \"required\", \"size\"])], [\"slot\", /* @__PURE__ */ new Set([\"name\"])], [\"source\", /* @__PURE__ */ new Set([\"height\", \"media\", \"sizes\", \"\\\nsrc\", \"srcset\", \"type\", \"width\"])], [\"style\", /* @__PURE__ */ new Set([\"blocking\", \"media\", \"type\"])], [\"table\", /* @__PURE__ */ new Set([\"a\\\nlign\", \"bgcolor\", \"border\", \"cellpadding\", \"cellspacing\", \"frame\", \"rules\", \"summary\", \"width\"])], [\"tbody\", /* @__PURE__ */ new Set([\"align\",\n \"char\", \"charoff\", \"valign\"])], [\"td\", /* @__PURE__ */ new Set([\"abbr\", \"align\", \"axis\", \"bgcolor\", \"char\", \"charoff\", \"colspan\", \"headers\",\n \"height\", \"nowrap\", \"rowspan\", \"scope\", \"valign\", \"width\"])], [\"template\", /* @__PURE__ */ new Set([\"shadowrootclonable\", \"shadowrootdeleg\\\natesfocus\", \"shadowrootmode\"])], [\"textarea\", /* @__PURE__ */ new Set([\"autocomplete\", \"cols\", \"dirname\", \"disabled\", \"form\", \"maxlength\", \"\\\nminlength\", \"name\", \"placeholder\", \"readonly\", \"required\", \"rows\", \"wrap\"])], [\"tfoot\", /* @__PURE__ */ new Set([\"align\", \"char\", \"charoff\",\n \"valign\"])], [\"th\", /* @__PURE__ */ new Set([\"abbr\", \"align\", \"axis\", \"bgcolor\", \"char\", \"charoff\", \"colspan\", \"headers\", \"height\", \"nowra\\\np\", \"rowspan\", \"scope\", \"valign\", \"width\"])], [\"thead\", /* @__PURE__ */ new Set([\"align\", \"char\", \"charoff\", \"valign\"])], [\"time\", /* @__PURE__ */ new Set(\n [\"datetime\"])], [\"tr\", /* @__PURE__ */ new Set([\"align\", \"bgcolor\", \"char\", \"charoff\", \"valign\"])], [\"track\", /* @__PURE__ */ new Set([\"de\\\nfault\", \"kind\", \"label\", \"src\", \"srclang\"])], [\"ul\", /* @__PURE__ */ new Set([\"compact\", \"type\"])], [\"video\", /* @__PURE__ */ new Set([\"auto\\\nplay\", \"controls\", \"crossorigin\", \"height\", \"loop\", \"muted\", \"playsinline\", \"poster\", \"preload\", \"src\", \"width\"])]]), bS = /* @__PURE__ */ new Set(\n [\"a\", \"abbr\", \"acronym\", \"address\", \"applet\", \"area\", \"article\", \"aside\", \"audio\", \"b\", \"base\", \"basefont\", \"bdi\", \"bdo\", \"bgsound\", \"big\",\n \"blink\", \"blockquote\", \"body\", \"br\", \"button\", \"canvas\", \"caption\", \"center\", \"cite\", \"code\", \"col\", \"colgroup\", \"command\", \"content\", \"da\\\nta\", \"datalist\", \"dd\", \"del\", \"details\", \"dfn\", \"dialog\", \"dir\", \"div\", \"dl\", \"dt\", \"element\", \"em\", \"embed\", \"fieldset\", \"figcaption\", \"fig\\\nure\", \"font\", \"footer\", \"form\", \"frame\", \"frameset\", \"h1\", \"h2\", \"h3\", \"h4\", \"h5\", \"h6\", \"head\", \"header\", \"hgroup\", \"hr\", \"html\", \"i\", \"ifr\\\name\", \"image\", \"img\", \"input\", \"ins\", \"isindex\", \"kbd\", \"keygen\", \"label\", \"legend\", \"li\", \"link\", \"listing\", \"main\", \"map\", \"mark\", \"marque\\\ne\", \"math\", \"menu\", \"menuitem\", \"meta\", \"meter\", \"multicol\", \"nav\", \"nextid\", \"nobr\", \"noembed\", \"noframes\", \"noscript\", \"object\", \"ol\", \"op\\\ntgroup\", \"option\", \"output\", \"p\", \"param\", \"picture\", \"plaintext\", \"pre\", \"progress\", \"q\", \"rb\", \"rbc\", \"rp\", \"rt\", \"rtc\", \"ruby\", \"s\", \"sam\\\np\", \"script\", \"search\", \"section\", \"select\", \"shadow\", \"slot\", \"small\", \"source\", \"spacer\", \"span\", \"strike\", \"strong\", \"style\", \"sub\", \"sum\\\nmary\", \"sup\", \"svg\", \"table\", \"tbody\", \"td\", \"template\", \"textarea\", \"tfoot\", \"th\", \"thead\", \"time\", \"title\", \"tr\", \"track\", \"tt\", \"u\", \"ul\",\n \"var\", \"video\", \"wbr\", \"xmp\"]);\n o(yS, \"To\");\n o(DS, \"xo\");\n o(xS, \"ko\");\n o(rm, \"Js\");\n o(CS, \"Bo\");\n o(l5, \"Xs\");\n o(nm, \"Zs\");\n o(tl, \"ar\");\n am = { name: \"html\", normalizeTagName: !0, normalizeAttributeName: !0, allowHtmComponentClosingTags: !0 }, ES = tl(am), RS = tl({ name: \"a\\\nngular\" }), SS = tl({ name: \"vue\", isTagNameCaseSensitive: !0, shouldParseAsRawText(e, t, r, n) {\n return e.toLowerCase() !== \"html\" && !r && (e !== \"template\" || n.some(({ name: a, value: i }) => a === \"lang\" && i !== \"html\" && i !== \"\" &&\n i !== void 0));\n } }), AS = tl({ name: \"lwc\", canSelfClose: !1 }), FS = { html: bR }, om = p5;\n});\n\n// ../node_modules/prettier/standalone.mjs\nfunction gt() {\n}\nfunction lm(e, t, r, n, a) {\n for (var i = [], l; t; ) i.push(t), l = t.previousComponent, delete t.previousComponent, t = l;\n i.reverse();\n for (var u = 0, c = i.length, p = 0, d = 0; u < c; u++) {\n var h = i[u];\n if (h.removed) h.value = e.join(n.slice(d, d + h.count)), d += h.count;\n else {\n if (!h.added && a) {\n var f = r.slice(p, p + h.count);\n f = f.map(function(g, w) {\n var m = n[d + w];\n return m.length > g.length ? m : g;\n }), h.value = e.join(f);\n } else h.value = e.join(r.slice(p, p + h.count));\n p += h.count, h.added || (d += h.count);\n }\n }\n return i;\n}\nfunction sm(e, t) {\n var r;\n for (r = 0; r < e.length && r < t.length; r++) if (e[r] != t[r]) return e.slice(0, r);\n return e.slice(0, r);\n}\nfunction um(e, t) {\n var r;\n if (!e || !t || e[e.length - 1] != t[t.length - 1]) return \"\";\n for (r = 0; r < e.length && r < t.length; r++) if (e[e.length - (r + 1)] != t[t.length - (r + 1)]) return e.slice(-r);\n return e.slice(-r);\n}\nfunction Rc(e, t, r) {\n if (e.slice(0, t.length) != t) throw Error(\"string \".concat(JSON.stringify(e), \" doesn't start with prefix \").concat(JSON.stringify(t), \";\\\n this is a bug\"));\n return r + e.slice(t.length);\n}\nfunction Sc(e, t, r) {\n if (!t) return e + r;\n if (e.slice(-t.length) != t) throw Error(\"string \".concat(JSON.stringify(e), \" doesn't end with suffix \").concat(JSON.stringify(t), \"; thi\\\ns is a bug\"));\n return e.slice(0, -t.length) + r;\n}\nfunction Ho(e, t) {\n return Rc(e, t, \"\");\n}\nfunction rl(e, t) {\n return Sc(e, t, \"\");\n}\nfunction cm(e, t) {\n return t.slice(0, OS(e, t));\n}\nfunction OS(e, t) {\n var r = 0;\n e.length > t.length && (r = e.length - t.length);\n var n = t.length;\n e.length < t.length && (n = e.length);\n var a = Array(n), i = 0;\n a[0] = 0;\n for (var l = 1; l < n; l++) {\n for (t[l] == t[i] ? a[l] = a[i] : a[l] = i; i > 0 && t[l] != t[i]; ) i = a[i];\n t[l] == t[i] && i++;\n }\n i = 0;\n for (var u = r; u < e.length; u++) {\n for (; i > 0 && e[u] != t[i]; ) i = a[i];\n e[u] == t[i] && i++;\n }\n return i;\n}\nfunction pm(e, t, r, n) {\n if (t && r) {\n var a = t.value.match(/^\\s*/)[0], i = t.value.match(/\\s*$/)[0], l = r.value.match(/^\\s*/)[0], u = r.value.match(/\\s*$/)[0];\n if (e) {\n var c = sm(a, l);\n e.value = Sc(e.value, l, c), t.value = Ho(t.value, c), r.value = Ho(r.value, c);\n }\n if (n) {\n var p = um(i, u);\n n.value = Rc(n.value, u, p), t.value = rl(t.value, p), r.value = rl(r.value, p);\n }\n } else if (r) e && (r.value = r.value.replace(/^\\s*/, \"\")), n && (n.value = n.value.replace(/^\\s*/, \"\"));\n else if (e && n) {\n var d = n.value.match(/^\\s*/)[0], h = t.value.match(/^\\s*/)[0], f = t.value.match(/\\s*$/)[0], g = sm(d, h);\n t.value = Ho(t.value, g);\n var w = um(Ho(d, g), f);\n t.value = rl(t.value, w), n.value = Rc(n.value, d, w), e.value = Sc(e.value, d, d.slice(0, d.length - w.length));\n } else if (n) {\n var m = n.value.match(/^\\s*/)[0], v = t.value.match(/\\s*$/)[0], y = cm(v, m);\n t.value = rl(t.value, y);\n } else if (e) {\n var b = e.value.match(/\\s*$/)[0], D = t.value.match(/^\\s*/)[0], x = cm(b, D);\n t.value = Ho(t.value, x);\n }\n}\nfunction Ac(e) {\n \"@babel/helpers - typeof\";\n return Ac = typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? function(t) {\n return typeof t;\n } : function(t) {\n return t && typeof Symbol == \"function\" && t.constructor === Symbol && t !== Symbol.prototype ? \"symbol\" : typeof t;\n }, Ac(e);\n}\nfunction Fc(e, t, r, n, a) {\n t = t || [], r = r || [], n && (e = n(a, e));\n var i;\n for (i = 0; i < t.length; i += 1) if (t[i] === e) return r[i];\n var l;\n if (Object.prototype.toString.call(e) === \"[object Array]\") {\n for (t.push(e), l = new Array(e.length), r.push(l), i = 0; i < e.length; i += 1) l[i] = Fc(e[i], t, r, n, a);\n return t.pop(), r.pop(), l;\n }\n if (e && e.toJSON && (e = e.toJSON()), Ac(e) === \"object\" && e !== null) {\n t.push(e), l = {}, r.push(l);\n var u = [], c;\n for (c in e) Object.prototype.hasOwnProperty.call(e, c) && u.push(c);\n for (u.sort(), i = 0; i < u.length; i += 1) c = u[i], l[c] = Fc(e[c], t, r, n, c);\n t.pop(), r.pop();\n } else l = e;\n return l;\n}\nfunction WS(e, t, r) {\n return ul.diff(e, t, r);\n}\nfunction qS(e) {\n let t = e.indexOf(\"\\r\");\n return t !== -1 ? e.charAt(t + 1) === `\n` ? \"crlf\" : \"cr\" : \"lf\";\n}\nfunction $c(e) {\n switch (e) {\n case \"cr\":\n return \"\\r\";\n case \"crlf\":\n return `\\r\n`;\n default:\n return `\n`;\n }\n}\nfunction $m(e, t) {\n let r;\n switch (t) {\n case `\n`:\n r = /\\n/gu;\n break;\n case \"\\r\":\n r = /\\r/gu;\n break;\n case `\\r\n`:\n r = /\\r\\n/gu;\n break;\n default:\n throw new Error(`Unexpected \"eol\" ${JSON.stringify(t)}.`);\n }\n let n = e.match(r);\n return n ? n.length : 0;\n}\nfunction US(e) {\n return dl(!1, e, /\\r\\n?/gu, `\n`);\n}\nfunction GS(e) {\n if (typeof e == \"string\") return Ur;\n if (Array.isArray(e)) return $t;\n if (!e) return;\n let { type: t } = e;\n if (Vm.has(t)) return t;\n}\nfunction XS(e) {\n let t = e === null ? \"null\" : typeof e;\n if (t !== \"string\" && t !== \"object\") return `Unexpected doc '${t}', \nExpected it to be 'string' or 'object'.`;\n if (Yr(e)) throw new Error(\"doc is valid.\");\n let r = Object.prototype.toString.call(e);\n if (r !== \"[object Object]\") return `Unexpected doc '${r}'.`;\n let n = YS([...Vm].map((a) => `'${a}'`));\n return `Unexpected doc.type '${e.type}'.\nExpected it to be ${n}.`;\n}\nfunction ZS(e, t, r, n) {\n let a = [e];\n for (; a.length > 0; ) {\n let i = a.pop();\n if (i === dm) {\n r(a.pop());\n continue;\n }\n r && a.push(i, dm);\n let l = Yr(i);\n if (!l) throw new Ta(i);\n if (t?.(i) !== !1) switch (l) {\n case $t:\n case It: {\n let u = l === $t ? i : i.parts;\n for (let c = u.length, p = c - 1; p >= 0; --p) a.push(u[p]);\n break;\n }\n case Ke:\n a.push(i.flatContents, i.breakContents);\n break;\n case qe:\n if (n && i.expandedStates) for (let u = i.expandedStates.length, c = u - 1; c >= 0; --c) a.push(i.expandedStates[c]);\n else a.push(i.contents);\n break;\n case jt:\n case Vt:\n case qt:\n case Bt:\n case Ut:\n a.push(i.contents);\n break;\n case Ur:\n case Gr:\n case Wt:\n case Gt:\n case Ae:\n case ot:\n break;\n default:\n throw new Ta(i);\n }\n }\n}\nfunction cl(e) {\n return Tt(e), { type: Vt, contents: e };\n}\nfunction Ia(e, t) {\n return Tt(t), { type: jt, contents: t, n: e };\n}\nfunction Wm(e, t = {}) {\n return Tt(e), jc(t.expandedStates, !0), { type: qe, id: t.id, contents: e, break: !!t.shouldBreak, expandedStates: t.expandedStates };\n}\nfunction JS(e) {\n return Ia(Number.NEGATIVE_INFINITY, e);\n}\nfunction QS(e) {\n return Ia({ type: \"root\" }, e);\n}\nfunction eA(e) {\n return Ia(-1, e);\n}\nfunction tA(e, t) {\n return Wm(e[0], { ...t, expandedStates: e });\n}\nfunction rA(e) {\n return jc(e), { type: It, parts: e };\n}\nfunction nA(e, t = \"\", r = {}) {\n return Tt(e), t !== \"\" && Tt(t), { type: Ke, breakContents: e, flatContents: t, groupId: r.groupId };\n}\nfunction aA(e, t) {\n return Tt(e), { type: qt, contents: e, groupId: t.groupId, negate: t.negate };\n}\nfunction kc(e) {\n return Tt(e), { type: Ut, contents: e };\n}\nfunction Ym(e, t) {\n Tt(e), jc(t);\n let r = [];\n for (let n = 0; n < t.length; n++) n !== 0 && r.push(e), r.push(t[n]);\n return r;\n}\nfunction Xm(e, t, r) {\n Tt(e);\n let n = e;\n if (t > 0) {\n for (let a = 0; a < Math.floor(t / r); ++a) n = cl(n);\n n = Ia(t % r, n), n = Ia(Number.NEGATIVE_INFINITY, n);\n }\n return n;\n}\nfunction sA(e, t) {\n return Tt(t), e ? { type: Bt, label: e, contents: t } : t;\n}\nfunction Nt(e) {\n var t;\n if (!e) return \"\";\n if (Array.isArray(e)) {\n let r = [];\n for (let n of e) if (Array.isArray(n)) r.push(...Nt(n));\n else {\n let a = Nt(n);\n a !== \"\" && r.push(a);\n }\n return r;\n }\n return e.type === Ke ? { ...e, breakContents: Nt(e.breakContents), flatContents: Nt(e.flatContents) } : e.type === qe ? { ...e, contents: Nt(\n e.contents), expandedStates: (t = e.expandedStates) == null ? void 0 : t.map(Nt) } : e.type === It ? { type: \"fill\", parts: e.parts.map(Nt) } :\n e.contents ? { ...e, contents: Nt(e.contents) } : e;\n}\nfunction uA(e) {\n let t = /* @__PURE__ */ Object.create(null), r = /* @__PURE__ */ new Set();\n return n(Nt(e));\n function n(i, l, u) {\n var c, p;\n if (typeof i == \"string\") return JSON.stringify(i);\n if (Array.isArray(i)) {\n let d = i.map(n).filter(Boolean);\n return d.length === 1 ? d[0] : `[${d.join(\", \")}]`;\n }\n if (i.type === Ae) {\n let d = ((c = u?.[l + 1]) == null ? void 0 : c.type) === ot;\n return i.literal ? d ? \"literalline\" : \"literallineWithoutBreakParent\" : i.hard ? d ? \"hardline\" : \"hardlineWithoutBreakParent\" : i.soft ?\n \"softline\" : \"line\";\n }\n if (i.type === ot) return ((p = u?.[l - 1]) == null ? void 0 : p.type) === Ae && u[l - 1].hard ? void 0 : \"breakParent\";\n if (i.type === Wt) return \"trim\";\n if (i.type === Vt) return \"indent(\" + n(i.contents) + \")\";\n if (i.type === jt) return i.n === Number.NEGATIVE_INFINITY ? \"dedentToRoot(\" + n(i.contents) + \")\" : i.n < 0 ? \"dedent(\" + n(i.contents) +\n \")\" : i.n.type === \"root\" ? \"markAsRoot(\" + n(i.contents) + \")\" : \"align(\" + JSON.stringify(i.n) + \", \" + n(i.contents) + \")\";\n if (i.type === Ke) return \"ifBreak(\" + n(i.breakContents) + (i.flatContents ? \", \" + n(i.flatContents) : \"\") + (i.groupId ? (i.flatContents ?\n \"\" : ', \"\"') + `, { groupId: ${a(i.groupId)} }` : \"\") + \")\";\n if (i.type === qt) {\n let d = [];\n i.negate && d.push(\"negate: true\"), i.groupId && d.push(`groupId: ${a(i.groupId)}`);\n let h = d.length > 0 ? `, { ${d.join(\", \")} }` : \"\";\n return `indentIfBreak(${n(i.contents)}${h})`;\n }\n if (i.type === qe) {\n let d = [];\n i.break && i.break !== \"propagated\" && d.push(\"shouldBreak: true\"), i.id && d.push(`id: ${a(i.id)}`);\n let h = d.length > 0 ? `, { ${d.join(\", \")} }` : \"\";\n return i.expandedStates ? `conditionalGroup([${i.expandedStates.map((f) => n(f)).join(\",\")}]${h})` : `group(${n(i.contents)}${h})`;\n }\n if (i.type === It) return `fill([${i.parts.map((d) => n(d)).join(\", \")}])`;\n if (i.type === Ut) return \"lineSuffix(\" + n(i.contents) + \")\";\n if (i.type === Gt) return \"lineSuffixBoundary\";\n if (i.type === Bt) return `label(${JSON.stringify(i.label)}, ${n(i.contents)})`;\n throw new Error(\"Unknown doc type \" + i.type);\n }\n function a(i) {\n if (typeof i != \"symbol\") return JSON.stringify(String(i));\n if (i in t) return t[i];\n let l = i.description || \"symbol\";\n for (let u = 0; ; u++) {\n let c = l + (u > 0 ? ` #${u}` : \"\");\n if (!r.has(c)) return r.add(c), t[i] = `Symbol.for(${JSON.stringify(c)})`;\n }\n }\n}\nfunction dA(e) {\n return e === 12288 || e >= 65281 && e <= 65376 || e >= 65504 && e <= 65510;\n}\nfunction fA(e) {\n return e >= 4352 && e <= 4447 || e === 8986 || e === 8987 || e === 9001 || e === 9002 || e >= 9193 && e <= 9196 || e === 9200 || e === 9203 ||\n e === 9725 || e === 9726 || e === 9748 || e === 9749 || e >= 9776 && e <= 9783 || e >= 9800 && e <= 9811 || e === 9855 || e >= 9866 && e <=\n 9871 || e === 9875 || e === 9889 || e === 9898 || e === 9899 || e === 9917 || e === 9918 || e === 9924 || e === 9925 || e === 9934 || e ===\n 9940 || e === 9962 || e === 9970 || e === 9971 || e === 9973 || e === 9978 || e === 9981 || e === 9989 || e === 9994 || e === 9995 || e ===\n 10024 || e === 10060 || e === 10062 || e >= 10067 && e <= 10069 || e === 10071 || e >= 10133 && e <= 10135 || e === 10160 || e === 10175 ||\n e === 11035 || e === 11036 || e === 11088 || e === 11093 || e >= 11904 && e <= 11929 || e >= 11931 && e <= 12019 || e >= 12032 && e <= 12245 ||\n e >= 12272 && e <= 12287 || e >= 12289 && e <= 12350 || e >= 12353 && e <= 12438 || e >= 12441 && e <= 12543 || e >= 12549 && e <= 12591 ||\n e >= 12593 && e <= 12686 || e >= 12688 && e <= 12773 || e >= 12783 && e <= 12830 || e >= 12832 && e <= 12871 || e >= 12880 && e <= 42124 ||\n e >= 42128 && e <= 42182 || e >= 43360 && e <= 43388 || e >= 44032 && e <= 55203 || e >= 63744 && e <= 64255 || e >= 65040 && e <= 65049 ||\n e >= 65072 && e <= 65106 || e >= 65108 && e <= 65126 || e >= 65128 && e <= 65131 || e >= 94176 && e <= 94180 || e === 94192 || e === 94193 ||\n e >= 94208 && e <= 100343 || e >= 100352 && e <= 101589 || e >= 101631 && e <= 101640 || e >= 110576 && e <= 110579 || e >= 110581 && e <=\n 110587 || e === 110589 || e === 110590 || e >= 110592 && e <= 110882 || e === 110898 || e >= 110928 && e <= 110930 || e === 110933 || e >=\n 110948 && e <= 110951 || e >= 110960 && e <= 111355 || e >= 119552 && e <= 119638 || e >= 119648 && e <= 119670 || e === 126980 || e === 127183 ||\n e === 127374 || e >= 127377 && e <= 127386 || e >= 127488 && e <= 127490 || e >= 127504 && e <= 127547 || e >= 127552 && e <= 127560 || e ===\n 127568 || e === 127569 || e >= 127584 && e <= 127589 || e >= 127744 && e <= 127776 || e >= 127789 && e <= 127797 || e >= 127799 && e <= 127868 ||\n e >= 127870 && e <= 127891 || e >= 127904 && e <= 127946 || e >= 127951 && e <= 127955 || e >= 127968 && e <= 127984 || e === 127988 || e >=\n 127992 && e <= 128062 || e === 128064 || e >= 128066 && e <= 128252 || e >= 128255 && e <= 128317 || e >= 128331 && e <= 128334 || e >= 128336 &&\n e <= 128359 || e === 128378 || e === 128405 || e === 128406 || e === 128420 || e >= 128507 && e <= 128591 || e >= 128640 && e <= 128709 ||\n e === 128716 || e >= 128720 && e <= 128722 || e >= 128725 && e <= 128727 || e >= 128732 && e <= 128735 || e === 128747 || e === 128748 || e >=\n 128756 && e <= 128764 || e >= 128992 && e <= 129003 || e === 129008 || e >= 129292 && e <= 129338 || e >= 129340 && e <= 129349 || e >= 129351 &&\n e <= 129535 || e >= 129648 && e <= 129660 || e >= 129664 && e <= 129673 || e >= 129679 && e <= 129734 || e >= 129742 && e <= 129756 || e >=\n 129759 && e <= 129769 || e >= 129776 && e <= 129784 || e >= 131072 && e <= 196605 || e >= 196608 && e <= 262141;\n}\nfunction gA(e) {\n if (!e) return 0;\n if (!mA.test(e)) return e.length;\n e = e.replace(pA(), \" \");\n let t = 0;\n for (let r of e) {\n let n = r.codePointAt(0);\n n <= 31 || n >= 127 && n <= 159 || n >= 768 && n <= 879 || (t += hA(n) ? 1 : 2);\n }\n return t;\n}\nfunction ml(e, t) {\n if (typeof e == \"string\") return t(e);\n let r = /* @__PURE__ */ new Map();\n return n(e);\n function n(i) {\n if (r.has(i)) return r.get(i);\n let l = a(i);\n return r.set(i, l), l;\n }\n function a(i) {\n switch (Yr(i)) {\n case $t:\n return t(i.map(n));\n case It:\n return t({ ...i, parts: i.parts.map(n) });\n case Ke:\n return t({ ...i, breakContents: n(i.breakContents), flatContents: n(i.flatContents) });\n case qe: {\n let { expandedStates: l, contents: u } = i;\n return l ? (l = l.map(n), u = l[0]) : u = n(u), t({ ...i, contents: u, expandedStates: l });\n }\n case jt:\n case Vt:\n case qt:\n case Bt:\n case Ut:\n return t({ ...i, contents: n(i.contents) });\n case Ur:\n case Gr:\n case Wt:\n case Gt:\n case Ae:\n case ot:\n return t(i);\n default:\n throw new Ta(i);\n }\n }\n}\nfunction Uc(e, t, r) {\n let n = r, a = !1;\n function i(l) {\n if (a) return !1;\n let u = t(l);\n u !== void 0 && (a = !0, n = u);\n }\n return o(i, \"i\"), Vc(e, i), n;\n}\nfunction vA(e) {\n if (e.type === qe && e.break || e.type === Ae && e.hard || e.type === ot) return !0;\n}\nfunction wA(e) {\n return Uc(e, vA, !1);\n}\nfunction fm(e) {\n if (e.length > 0) {\n let t = De(!1, e, -1);\n !t.expandedStates && !t.break && (t.break = \"propagated\");\n }\n return null;\n}\nfunction bA(e) {\n let t = /* @__PURE__ */ new Set(), r = [];\n function n(i) {\n if (i.type === ot && fm(r), i.type === qe) {\n if (r.push(i), t.has(i)) return !1;\n t.add(i);\n }\n }\n o(n, \"n\");\n function a(i) {\n i.type === qe && r.pop().break && fm(r);\n }\n o(a, \"u\"), Vc(e, n, a, !0);\n}\nfunction yA(e) {\n return e.type === Ae && !e.hard ? e.soft ? \"\" : \" \" : e.type === Ke ? e.flatContents : e;\n}\nfunction DA(e) {\n return ml(e, yA);\n}\nfunction hm(e) {\n for (e = [...e]; e.length >= 2 && De(!1, e, -2).type === Ae && De(!1, e, -1).type === ot; ) e.length -= 2;\n if (e.length > 0) {\n let t = zo(De(!1, e, -1));\n e[e.length - 1] = t;\n }\n return e;\n}\nfunction zo(e) {\n switch (Yr(e)) {\n case Vt:\n case qt:\n case qe:\n case Ut:\n case Bt: {\n let t = zo(e.contents);\n return { ...e, contents: t };\n }\n case Ke:\n return { ...e, breakContents: zo(e.breakContents), flatContents: zo(e.flatContents) };\n case It:\n return { ...e, parts: hm(e.parts) };\n case $t:\n return hm(e);\n case Ur:\n return e.replace(/[\\n\\r]*$/u, \"\");\n case jt:\n case Gr:\n case Wt:\n case Gt:\n case Ae:\n case ot:\n break;\n default:\n throw new Ta(e);\n }\n return e;\n}\nfunction Km(e) {\n return zo(CA(e));\n}\nfunction xA(e) {\n switch (Yr(e)) {\n case It:\n if (e.parts.every((t) => t === \"\")) return \"\";\n break;\n case qe:\n if (!e.contents && !e.id && !e.break && !e.expandedStates) return \"\";\n if (e.contents.type === qe && e.contents.id === e.id && e.contents.break === e.break && e.contents.expandedStates === e.expandedStates)\n return e.contents;\n break;\n case jt:\n case Vt:\n case qt:\n case Ut:\n if (!e.contents) return \"\";\n break;\n case Ke:\n if (!e.flatContents && !e.breakContents) return \"\";\n break;\n case $t: {\n let t = [];\n for (let r of e) {\n if (!r) continue;\n let [n, ...a] = Array.isArray(r) ? r : [r];\n typeof n == \"string\" && typeof De(!1, t, -1) == \"string\" ? t[t.length - 1] += n : t.push(n), t.push(...a);\n }\n return t.length === 0 ? \"\" : t.length === 1 ? t[0] : t;\n }\n case Ur:\n case Gr:\n case Wt:\n case Gt:\n case Ae:\n case Bt:\n case ot:\n break;\n default:\n throw new Ta(e);\n }\n return e;\n}\nfunction CA(e) {\n return ml(e, (t) => xA(t));\n}\nfunction EA(e, t = Gm) {\n return ml(e, (r) => typeof r == \"string\" ? Ym(t, r.split(`\n`)) : r);\n}\nfunction RA(e) {\n if (e.type === Ae) return !0;\n}\nfunction SA(e) {\n return Uc(e, RA, !1);\n}\nfunction ol(e, t) {\n return e.type === Bt ? { ...e, contents: t(e.contents) } : t(e);\n}\nfunction Zm() {\n return { value: \"\", length: 0, queue: [] };\n}\nfunction AA(e, t) {\n return Tc(e, { type: \"indent\" }, t);\n}\nfunction FA(e, t, r) {\n return t === Number.NEGATIVE_INFINITY ? e.root || Zm() : t < 0 ? Tc(e, { type: \"dedent\" }, r) : t ? t.type === \"root\" ? { ...e, root: e } :\n Tc(e, { type: typeof t == \"string\" ? \"stringAlign\" : \"numberAlign\", n: t }, r) : e;\n}\nfunction Tc(e, t, r) {\n let n = t.type === \"dedent\" ? e.queue.slice(0, -1) : [...e.queue, t], a = \"\", i = 0, l = 0, u = 0;\n for (let w of n) switch (w.type) {\n case \"indent\":\n d(), r.useTabs ? c(1) : p(r.tabWidth);\n break;\n case \"stringAlign\":\n d(), a += w.n, i += w.n.length;\n break;\n case \"numberAlign\":\n l += 1, u += w.n;\n break;\n default:\n throw new Error(`Unexpected type '${w.type}'`);\n }\n return f(), { ...e, value: a, length: i, queue: n };\n function c(w) {\n a += \"\t\".repeat(w), i += r.tabWidth * w;\n }\n function p(w) {\n a += \" \".repeat(w), i += w;\n }\n function d() {\n r.useTabs ? h() : f();\n }\n function h() {\n l > 0 && c(l), g();\n }\n function f() {\n u > 0 && p(u), g();\n }\n function g() {\n l = 0, u = 0;\n }\n}\nfunction Ic(e) {\n let t = 0, r = 0, n = e.length;\n e: for (; n--; ) {\n let a = e[n];\n if (a === da) {\n r++;\n continue;\n }\n for (let i = a.length - 1; i >= 0; i--) {\n let l = a[i];\n if (l === \" \" || l === \"\t\") t++;\n else {\n e[n] = a.slice(0, i + 1);\n break e;\n }\n }\n }\n if (t > 0 || r > 0) for (e.length = n + 1; r-- > 0; ) e.push(da);\n return t;\n}\nfunction nl(e, t, r, n, a, i) {\n if (r === Number.POSITIVE_INFINITY) return !0;\n let l = t.length, u = [e], c = [];\n for (; r >= 0; ) {\n if (u.length === 0) {\n if (l === 0) return !0;\n u.push(t[--l]);\n continue;\n }\n let { mode: p, doc: d } = u.pop(), h = Yr(d);\n switch (h) {\n case Ur:\n c.push(d), r -= qc(d);\n break;\n case $t:\n case It: {\n let f = h === $t ? d : d.parts, g = d[Lc] ?? 0;\n for (let w = f.length - 1; w >= g; w--) u.push({ mode: p, doc: f[w] });\n break;\n }\n case Vt:\n case jt:\n case qt:\n case Bt:\n u.push({ mode: p, doc: d.contents });\n break;\n case Wt:\n r += Ic(c);\n break;\n case qe: {\n if (i && d.break) return !1;\n let f = d.break ? We : p, g = d.expandedStates && f === We ? De(!1, d.expandedStates, -1) : d.contents;\n u.push({ mode: f, doc: g });\n break;\n }\n case Ke: {\n let f = (d.groupId ? a[d.groupId] || Lt : p) === We ? d.breakContents : d.flatContents;\n f && u.push({ mode: p, doc: f });\n break;\n }\n case Ae:\n if (p === We || d.hard) return !0;\n d.soft || (c.push(\" \"), r--);\n break;\n case Ut:\n n = !0;\n break;\n case Gt:\n if (n) return !1;\n break;\n }\n }\n return !1;\n}\nfunction gl(e, t) {\n let r = {}, n = t.printWidth, a = $c(t.endOfLine), i = 0, l = [{ ind: Zm(), mode: We, doc: e }], u = [], c = !1, p = [], d = 0;\n for (bA(e); l.length > 0; ) {\n let { ind: f, mode: g, doc: w } = l.pop();\n switch (Yr(w)) {\n case Ur: {\n let m = a !== `\n` ? dl(!1, w, `\n`, a) : w;\n u.push(m), l.length > 0 && (i += qc(m));\n break;\n }\n case $t:\n for (let m = w.length - 1; m >= 0; m--) l.push({ ind: f, mode: g, doc: w[m] });\n break;\n case Gr:\n if (d >= 2) throw new Error(\"There are too many 'cursor' in doc.\");\n u.push(da), d++;\n break;\n case Vt:\n l.push({ ind: AA(f, t), mode: g, doc: w.contents });\n break;\n case jt:\n l.push({ ind: FA(f, w.n, t), mode: g, doc: w.contents });\n break;\n case Wt:\n i -= Ic(u);\n break;\n case qe:\n switch (g) {\n case Lt:\n if (!c) {\n l.push({ ind: f, mode: w.break ? We : Lt, doc: w.contents });\n break;\n }\n case We: {\n c = !1;\n let m = { ind: f, mode: Lt, doc: w.contents }, v = n - i, y = p.length > 0;\n if (!w.break && nl(m, l, v, y, r)) l.push(m);\n else if (w.expandedStates) {\n let b = De(!1, w.expandedStates, -1);\n if (w.break) {\n l.push({ ind: f, mode: We, doc: b });\n break;\n } else for (let D = 1; D < w.expandedStates.length + 1; D++) if (D >= w.expandedStates.length) {\n l.push({ ind: f, mode: We, doc: b });\n break;\n } else {\n let x = w.expandedStates[D], C = { ind: f, mode: Lt, doc: x };\n if (nl(C, l, v, y, r)) {\n l.push(C);\n break;\n }\n }\n } else l.push({ ind: f, mode: We, doc: w.contents });\n break;\n }\n }\n w.id && (r[w.id] = De(!1, l, -1).mode);\n break;\n case It: {\n let m = n - i, v = w[Lc] ?? 0, { parts: y } = w, b = y.length - v;\n if (b === 0) break;\n let D = y[v + 0], x = y[v + 1], C = { ind: f, mode: Lt, doc: D }, E = { ind: f, mode: We, doc: D }, R = nl(C, [], m, p.length > 0, r,\n !0);\n if (b === 1) {\n R ? l.push(C) : l.push(E);\n break;\n }\n let F = { ind: f, mode: Lt, doc: x }, A = { ind: f, mode: We, doc: x };\n if (b === 2) {\n R ? l.push(F, C) : l.push(A, E);\n break;\n }\n let k = y[v + 2], B = { ind: f, mode: g, doc: { ...w, [Lc]: v + 2 } };\n nl({ ind: f, mode: Lt, doc: [D, x, k] }, [], m, p.length > 0, r, !0) ? l.push(B, F, C) : R ? l.push(B, A, C) : l.push(B, A, E);\n break;\n }\n case Ke:\n case qt: {\n let m = w.groupId ? r[w.groupId] : g;\n if (m === We) {\n let v = w.type === Ke ? w.breakContents : w.negate ? w.contents : cl(w.contents);\n v && l.push({ ind: f, mode: g, doc: v });\n }\n if (m === Lt) {\n let v = w.type === Ke ? w.flatContents : w.negate ? cl(w.contents) : w.contents;\n v && l.push({ ind: f, mode: g, doc: v });\n }\n break;\n }\n case Ut:\n p.push({ ind: f, mode: g, doc: w.contents });\n break;\n case Gt:\n p.length > 0 && l.push({ ind: f, mode: g, doc: Wc });\n break;\n case Ae:\n switch (g) {\n case Lt:\n if (w.hard) c = !0;\n else {\n w.soft || (u.push(\" \"), i += 1);\n break;\n }\n case We:\n if (p.length > 0) {\n l.push({ ind: f, mode: g, doc: w }, ...p.reverse()), p.length = 0;\n break;\n }\n w.literal ? f.root ? (u.push(a, f.root.value), i = f.root.length) : (u.push(a), i = 0) : (i -= Ic(u), u.push(a + f.value), i = f.\n length);\n break;\n }\n break;\n case Bt:\n l.push({ ind: f, mode: g, doc: w.contents });\n break;\n case ot:\n break;\n default:\n throw new Ta(w);\n }\n l.length === 0 && p.length > 0 && (l.push(...p.reverse()), p.length = 0);\n }\n let h = u.indexOf(da);\n if (h !== -1) {\n let f = u.indexOf(da, h + 1);\n if (f === -1) return { formatted: u.filter((v) => v !== da).join(\"\") };\n let g = u.slice(0, h).join(\"\"), w = u.slice(h + 1, f).join(\"\"), m = u.slice(f + 1).join(\"\");\n return { formatted: g + w + m, cursorNodeStart: g.length, cursorNodeText: w };\n }\n return { formatted: u.join(\"\") };\n}\nfunction kA(e, t, r = 0) {\n let n = 0;\n for (let a = r; a < e.length; ++a) e[a] === \"\t\" ? n = n + t - n % t : n++;\n return n;\n}\nfunction IA(e) {\n return e !== null && typeof e == \"object\";\n}\nfunction* vl(e, t) {\n let { getVisitorKeys: r, filter: n = /* @__PURE__ */ o(() => !0, \"n\") } = t, a = /* @__PURE__ */ o((i) => BA(i) && n(i), \"u\");\n for (let i of r(e)) {\n let l = e[i];\n if (Array.isArray(l)) for (let u of l) a(u) && (yield u);\n else a(l) && (yield l);\n }\n}\nfunction* MA(e, t) {\n let r = [e];\n for (let n = 0; n < r.length; n++) {\n let a = r[n];\n for (let i of vl(a, t)) yield i, r.push(i);\n }\n}\nfunction _A(e, t) {\n return vl(e, t).next().done;\n}\nfunction No(e) {\n return (t, r, n) => {\n let a = !!(n != null && n.backwards);\n if (r === !1) return !1;\n let { length: i } = t, l = r;\n for (; l >= 0 && l < i; ) {\n let u = t.charAt(l);\n if (e instanceof RegExp) {\n if (!e.test(u)) return l;\n } else if (!e.includes(u)) return l;\n a ? l-- : l++;\n }\n return l === -1 || l === i ? l : !1;\n };\n}\nfunction HA(e, t, r) {\n let n = !!(r != null && r.backwards);\n if (t === !1) return !1;\n let a = e.charAt(t);\n if (n) {\n if (e.charAt(t - 1) === \"\\r\" && a === `\n`) return t - 2;\n if (a === `\n` || a === \"\\r\" || a === \"\\u2028\" || a === \"\\u2029\") return t - 1;\n } else {\n if (a === \"\\r\" && e.charAt(t + 1) === `\n`) return t + 2;\n if (a === `\n` || a === \"\\r\" || a === \"\\u2028\" || a === \"\\u2029\") return t + 1;\n }\n return t;\n}\nfunction zA(e, t, r = {}) {\n let n = cr(e, r.backwards ? t - 1 : t, r), a = qr(e, n, r);\n return n !== a;\n}\nfunction OA(e) {\n return Array.isArray(e) && e.length > 0;\n}\nfunction VA(e) {\n return e ? (t) => e(t, tg) : $A;\n}\nfunction jA(e) {\n let t = e.type || e.kind || \"(unknown type)\", r = String(e.name || e.id && (typeof e.id == \"object\" ? e.id.name : e.id) || e.key && (typeof e.\n key == \"object\" ? e.key.name : e.key) || e.value && (typeof e.value == \"object\" ? \"\" : String(e.value)) || e.operator || \"\");\n return r.length > 20 && (r = r.slice(0, 19) + \"\\u2026\"), t + (r ? \" \" + r : \"\");\n}\nfunction Yc(e, t) {\n (e.comments ?? (e.comments = [])).push(t), t.printed = !1, t.nodeDescription = jA(e);\n}\nfunction fa(e, t) {\n t.leading = !0, t.trailing = !1, Yc(e, t);\n}\nfunction $r(e, t, r) {\n t.leading = !1, t.trailing = !1, r && (t.marker = r), Yc(e, t);\n}\nfunction ha(e, t) {\n t.leading = !1, t.trailing = !0, Yc(e, t);\n}\nfunction Xc(e, t) {\n if (bc.has(e)) return bc.get(e);\n let { printer: { getCommentChildNodes: r, canAttachComment: n, getVisitorKeys: a }, locStart: i, locEnd: l } = t;\n if (!n) return [];\n let u = (r?.(e, t) ?? [...vl(e, { getVisitorKeys: wl(a) })]).flatMap((c) => n(c) ? [c] : Xc(c, t));\n return u.sort((c, p) => i(c) - i(p) || l(c) - l(p)), bc.set(e, u), u;\n}\nfunction rg(e, t, r, n) {\n let { locStart: a, locEnd: i } = r, l = a(t), u = i(t), c = Xc(e, r), p, d, h = 0, f = c.length;\n for (; h < f; ) {\n let g = h + f >> 1, w = c[g], m = a(w), v = i(w);\n if (m <= l && u <= v) return rg(w, t, r, w);\n if (v <= l) {\n p = w, h = g + 1;\n continue;\n }\n if (u <= m) {\n d = w, f = g;\n continue;\n }\n throw new Error(\"Comment location overlaps with node location\");\n }\n if (n?.type === \"TemplateLiteral\") {\n let { quasis: g } = n, w = Dc(g, t, r);\n p && Dc(g, p, r) !== w && (p = null), d && Dc(g, d, r) !== w && (d = null);\n }\n return { enclosingNode: n, precedingNode: p, followingNode: d };\n}\nfunction WA(e, t) {\n let { comments: r } = e;\n if (delete e.comments, !NA(r) || !t.printer.canAttachComment) return;\n let n = [], { locStart: a, locEnd: i, printer: { experimentalFeatures: { avoidAstMutation: l = !1 } = {}, handleComments: u = {} }, originalText: c } = t,\n { ownLine: p = yc, endOfLine: d = yc, remaining: h = yc } = u, f = r.map((g, w) => ({ ...rg(e, g, t), comment: g, text: c, options: t, ast: e,\n isLastComment: r.length - 1 === w }));\n for (let [g, w] of f.entries()) {\n let { comment: m, precedingNode: v, enclosingNode: y, followingNode: b, text: D, options: x, ast: C, isLastComment: E } = w;\n if (x.parser === \"json\" || x.parser === \"json5\" || x.parser === \"jsonc\" || x.parser === \"__js_expression\" || x.parser === \"__ts_expressi\\\non\" || x.parser === \"__vue_expression\" || x.parser === \"__vue_ts_expression\") {\n if (a(m) - a(C) <= 0) {\n fa(C, m);\n continue;\n }\n if (i(m) - i(C) >= 0) {\n ha(C, m);\n continue;\n }\n }\n let R;\n if (l ? R = [w] : (m.enclosingNode = y, m.precedingNode = v, m.followingNode = b, R = [m, D, x, C, E]), qA(D, x, f, g)) m.placement = \"o\\\nwnLine\", p(...R) || (b ? fa(b, m) : v ? ha(v, m) : $r(y || C, m));\n else if (UA(D, x, f, g)) m.placement = \"endOfLine\", d(...R) || (v ? ha(v, m) : b ? fa(b, m) : $r(y || C, m));\n else if (m.placement = \"remaining\", !h(...R)) if (v && b) {\n let F = n.length;\n F > 0 && n[F - 1].followingNode !== b && mm(n, x), n.push(w);\n } else v ? ha(v, m) : b ? fa(b, m) : $r(y || C, m);\n }\n if (mm(n, t), !l) for (let g of r) delete g.precedingNode, delete g.enclosingNode, delete g.followingNode;\n}\nfunction qA(e, t, r, n) {\n let { comment: a, precedingNode: i } = r[n], { locStart: l, locEnd: u } = t, c = l(a);\n if (i) for (let p = n - 1; p >= 0; p--) {\n let { comment: d, precedingNode: h } = r[p];\n if (h !== i || !ng(e.slice(u(d), c))) break;\n c = l(d);\n }\n return ur(e, c, { backwards: !0 });\n}\nfunction UA(e, t, r, n) {\n let { comment: a, followingNode: i } = r[n], { locStart: l, locEnd: u } = t, c = u(a);\n if (i) for (let p = n + 1; p < r.length; p++) {\n let { comment: d, followingNode: h } = r[p];\n if (h !== i || !ng(e.slice(c, l(d)))) break;\n c = u(d);\n }\n return ur(e, c);\n}\nfunction mm(e, t) {\n var r, n;\n let a = e.length;\n if (a === 0) return;\n let { precedingNode: i, followingNode: l } = e[0], u = t.locStart(l), c;\n for (c = a; c > 0; --c) {\n let { comment: p, precedingNode: d, followingNode: h } = e[c - 1];\n Mc.strictEqual(d, i), Mc.strictEqual(h, l);\n let f = t.originalText.slice(t.locEnd(p), u);\n if (((n = (r = t.printer).isGap) == null ? void 0 : n.call(r, f, t)) ?? /^[\\s(]*$/u.test(f)) u = t.locStart(p);\n else break;\n }\n for (let [p, { comment: d }] of e.entries()) p < c ? ha(i, d) : fa(l, d);\n for (let p of [i, l]) p.comments && p.comments.length > 1 && p.comments.sort((d, h) => t.locStart(d) - t.locStart(h));\n e.length = 0;\n}\nfunction Dc(e, t, r) {\n let n = r.locStart(t) - 1;\n for (let a = 1; a < e.length; ++a) if (n < r.locStart(e[a])) return a - 1;\n return 0;\n}\nfunction GA(e, t) {\n let r = t - 1;\n r = cr(e, r, { backwards: !0 }), r = qr(e, r, { backwards: !0 }), r = cr(e, r, { backwards: !0 });\n let n = qr(e, r, { backwards: !0 });\n return r !== n;\n}\nfunction ag(e, t) {\n let r = e.node;\n return r.printed = !0, t.printer.printComment(e, t);\n}\nfunction YA(e, t) {\n var r;\n let n = e.node, a = [ag(e, t)], { printer: i, originalText: l, locStart: u, locEnd: c } = t;\n if ((r = i.isBlockComment) != null && r.call(i, n)) {\n let d = ur(l, c(n)) ? ur(l, u(n), { backwards: !0 }) ? Wr : Um : \" \";\n a.push(d);\n } else a.push(Wr);\n let p = qr(l, cr(l, c(n)));\n return p !== !1 && ur(l, p) && a.push(Wr), a;\n}\nfunction XA(e, t, r) {\n var n;\n let a = e.node, i = ag(e, t), { printer: l, originalText: u, locStart: c } = t, p = (n = l.isBlockComment) == null ? void 0 : n.call(l, a);\n if (r != null && r.hasLineSuffix && !(r != null && r.isBlock) || ur(u, c(a), { backwards: !0 })) {\n let d = Kc(u, c(a));\n return { doc: kc([Wr, d ? Wr : \"\", i]), isBlock: p, hasLineSuffix: !0 };\n }\n return !p || r != null && r.hasLineSuffix ? { doc: [kc([\" \", i]), hl], isBlock: p, hasLineSuffix: !0 } : { doc: [\" \", i], isBlock: p, hasLineSuffix: !1 };\n}\nfunction KA(e, t) {\n let r = e.node;\n if (!r) return {};\n let n = t[Symbol.for(\"printedComments\")];\n if ((r.comments || []).filter((u) => !n.has(u)).length === 0) return { leading: \"\", trailing: \"\" };\n let a = [], i = [], l;\n return e.each(() => {\n let u = e.node;\n if (n != null && n.has(u)) return;\n let { leading: c, trailing: p } = u;\n c ? a.push(YA(e, t)) : p && (l = XA(e, t, l), i.push(l.doc));\n }, \"comments\"), { leading: a, trailing: i };\n}\nfunction ZA(e, t, r) {\n let { leading: n, trailing: a } = KA(e, r);\n return !n && !a ? t : ol(t, (i) => [n, i, a]);\n}\nfunction JA(e) {\n let { [Symbol.for(\"comments\")]: t, [Symbol.for(\"printedComments\")]: r } = e;\n for (let n of t) {\n if (!n.printed && !r.has(n)) throw new Error('Comment \"' + n.value.trim() + '\" was not printed. Please report this error!');\n delete n.printed;\n }\n}\nfunction QA(e) {\n return () => {\n };\n}\nfunction ig({ plugins: e = [], showDeprecated: t = !1 } = {}) {\n let r = e.flatMap((a) => a.languages ?? []), n = [];\n for (let a of nF(Object.assign({}, ...e.map(({ options: i }) => i), tF))) !t && a.deprecated || (Array.isArray(a.choices) && (t || (a.choices =\n a.choices.filter((i) => !i.deprecated)), a.name === \"parser\" && (a.choices = [...a.choices, ...rF(a.choices, r, e)])), a.pluginDefaults = Object.\n fromEntries(e.filter((i) => {\n var l;\n return ((l = i.defaultOptions) == null ? void 0 : l[a.name]) !== void 0;\n }).map((i) => [i.name, i.defaultOptions[a.name]])), n.push(a));\n return { languages: r, options: n };\n}\nfunction* rF(e, t, r) {\n let n = new Set(e.map((a) => a.value));\n for (let a of t) if (a.parsers) {\n for (let i of a.parsers) if (!n.has(i)) {\n n.add(i);\n let l = r.find((c) => c.parsers && Object.prototype.hasOwnProperty.call(c.parsers, i)), u = a.name;\n l != null && l.name && (u += ` (plugin: ${l.name})`), yield { value: i, description: u };\n }\n }\n}\nfunction nF(e) {\n let t = [];\n for (let [r, n] of Object.entries(e)) {\n let a = { name: r, ...n };\n Array.isArray(a.default) && (a.default = De(!1, a.default, -1).value), t.push(a);\n }\n return t;\n}\nfunction vm(e, t) {\n if (!t) return;\n let r = aF(t).toLowerCase();\n return e.find(({ filenames: n }) => n?.some((a) => a.toLowerCase() === r)) ?? e.find(({ extensions: n }) => n?.some((a) => r.endsWith(a)));\n}\nfunction oF(e, t) {\n if (t) return e.find(({ name: r }) => r.toLowerCase() === t) ?? e.find(({ aliases: r }) => r?.includes(t)) ?? e.find(({ extensions: r }) => r?.\n includes(`.${t}`));\n}\nfunction iF(e, t) {\n let r = e.plugins.flatMap((a) => a.languages ?? []), n = oF(r, t.language) ?? vm(r, t.physicalFile) ?? vm(r, t.file) ?? (t.physicalFile, void 0);\n return n?.parsers[0];\n}\nfunction ym(e, t, r, n) {\n return [`Invalid ${ga.default.red(n.key(e))} value.`, `Expected ${ga.default.blue(r)},`, `but received ${t === lg ? ga.default.gray(\"nothi\\\nng\") : ga.default.red(n.value(t))}.`].join(\" \");\n}\nfunction sg({ text: e, list: t }, r) {\n let n = [];\n return e && n.push(`- ${ga.default.blue(e)}`), t && n.push([`- ${ga.default.blue(t.title)}:`].concat(t.values.map((a) => sg(a, r - bm.length).\n replace(/^|\\n/g, `$&${bm}`))).join(`\n`)), ug(n, r);\n}\nfunction ug(e, t) {\n if (e.length === 1) return e[0];\n let [r, n] = e, [a, i] = e.map((l) => l.split(`\n`, 1)[0].length);\n return a > t && a > i ? n : r;\n}\nfunction cF(e, t) {\n if (e === t) return 0;\n let r = e;\n e.length > t.length && (e = t, t = r);\n let n = e.length, a = t.length;\n for (; n > 0 && e.charCodeAt(~-n) === t.charCodeAt(~-a); ) n--, a--;\n let i = 0;\n for (; i < n && e.charCodeAt(i) === t.charCodeAt(i); ) i++;\n if (n -= i, a -= i, n === 0) return a;\n let l, u, c, p, d = 0, h = 0;\n for (; d < n; ) xm[d] = e.charCodeAt(i + d), xc[d] = ++d;\n for (; h < a; ) for (l = t.charCodeAt(i + h), c = h++, u = h, d = 0; d < n; d++) p = l === xm[d] ? c : c + 1, c = xc[d], u = xc[d] = c > u ?\n p > u ? u + 1 : p : p > c ? c + 1 : p;\n return u;\n}\nfunction dF(e, t) {\n let r = new e(t), n = Object.create(r);\n for (let a of pF) a in t && (n[a] = fF(t[a], r, pr.prototype[a].length));\n return n;\n}\nfunction fF(e, t, r) {\n return typeof e == \"function\" ? (...n) => e(...n.slice(0, r - 1), t, ...n.slice(r - 1)) : () => e;\n}\nfunction Cm({ from: e, to: t }) {\n return { from: [e], to: t };\n}\nfunction wF(e, t) {\n let r = /* @__PURE__ */ Object.create(null);\n for (let n of e) {\n let a = n[t];\n if (r[a]) throw new Error(`Duplicate ${t} ${JSON.stringify(a)}`);\n r[a] = n;\n }\n return r;\n}\nfunction bF(e, t) {\n let r = /* @__PURE__ */ new Map();\n for (let n of e) {\n let a = n[t];\n if (r.has(a)) throw new Error(`Duplicate ${t} ${JSON.stringify(a)}`);\n r.set(a, n);\n }\n return r;\n}\nfunction yF() {\n let e = /* @__PURE__ */ Object.create(null);\n return (t) => {\n let r = JSON.stringify(t);\n return e[r] ? !0 : (e[r] = !0, !1);\n };\n}\nfunction DF(e, t) {\n let r = [], n = [];\n for (let a of e) t(a) ? r.push(a) : n.push(a);\n return [r, n];\n}\nfunction xF(e) {\n return e === Math.floor(e);\n}\nfunction CF(e, t) {\n if (e === t) return 0;\n let r = typeof e, n = typeof t, a = [\"undefined\", \"object\", \"boolean\", \"number\", \"string\"];\n return r !== n ? a.indexOf(r) - a.indexOf(n) : r !== \"string\" ? Number(e) - Number(t) : e.localeCompare(t);\n}\nfunction EF(e) {\n return (...t) => {\n let r = e(...t);\n return typeof r == \"string\" ? new Error(r) : r;\n };\n}\nfunction Em(e) {\n return e === void 0 ? {} : e;\n}\nfunction pg(e) {\n if (typeof e == \"string\") return { text: e };\n let { text: t, list: r } = e;\n return RF((t || r) !== void 0, \"Unexpected `expected` result, there should be at least one field.\"), r ? { text: t, list: { title: r.title,\n values: r.values.map(pg) } } : { text: t };\n}\nfunction Rm(e, t) {\n return e === !0 ? !0 : e === !1 ? { value: t } : e;\n}\nfunction Sm(e, t, r = !1) {\n return e === !1 ? !1 : e === !0 ? r ? !0 : [{ value: t }] : \"value\" in e ? [e] : e.length === 0 ? !1 : e;\n}\nfunction Am(e, t) {\n 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 };\n}\nfunction _c(e, t) {\n return e === void 0 ? [] : Array.isArray(e) ? e.map((r) => Am(r, t)) : [Am(e, t)];\n}\nfunction Fm(e, t) {\n let r = _c(typeof e == \"object\" && \"redirect\" in e ? e.redirect : e, t);\n return r.length === 0 ? { remain: t, redirect: r } : typeof e == \"object\" && \"remain\" in e ? { remain: e.remain, redirect: r } : { redirect: r };\n}\nfunction RF(e, t) {\n if (!e) throw new Error(t);\n}\nfunction MF(e, t, { logger: r = !1, isCLI: n = !1, passThrough: a = !1, FlagSchema: i, descriptor: l } = {}) {\n if (n) {\n if (!i) throw new Error(\"'FlagSchema' option is required.\");\n if (!l) throw new Error(\"'descriptor' option is required.\");\n } else l = ma;\n let u = a ? Array.isArray(a) ? (f, g) => a.includes(f) ? { [f]: g } : void 0 : (f, g) => ({ [f]: g }) : (f, g, w) => {\n let { _: m, ...v } = w.schemas;\n return cg(f, g, { ...w, schemas: v });\n }, c = _F(t, { isCLI: n, FlagSchema: i }), p = new BF(c, { logger: r, unknown: u, descriptor: l }), d = r !== !1;\n d && Cc && (p._hasDeprecationWarned = Cc);\n let h = p.normalize(e);\n return d && (Cc = p._hasDeprecationWarned), h;\n}\nfunction _F(e, { isCLI: t, FlagSchema: r }) {\n let n = [];\n t && n.push(mF.create({ name: \"_\" }));\n for (let a of e) n.push(PF(a, { isCLI: t, optionInfos: e, FlagSchema: r })), a.alias && t && n.push(hF.create({ name: a.alias, sourceName: a.\n name }));\n return n;\n}\nfunction PF(e, { isCLI: t, optionInfos: r, FlagSchema: n }) {\n let { name: a } = e, i = { name: a }, l, u = {};\n switch (e.type) {\n case \"int\":\n l = FF, t && (i.preprocess = Number);\n break;\n case \"string\":\n l = km;\n break;\n case \"choice\":\n l = SF, i.choices = e.choices.map((c) => c != null && c.redirect ? { ...c, redirect: { to: { key: e.name, value: c.redirect } } } : c);\n break;\n case \"boolean\":\n l = vF;\n break;\n case \"flag\":\n l = n, i.flags = r.flatMap((c) => [c.alias, c.description && c.name, c.oppositeDescription && `no-${c.name}`].filter(Boolean));\n break;\n case \"path\":\n l = km;\n break;\n default:\n throw new Error(`Unexpected type ${e.type}`);\n }\n if (e.exception ? i.validate = (c, p, d) => e.exception(c) || p.validate(c, d) : i.validate = (c, p, d) => c === void 0 || p.validate(c, d),\n e.redirect && (u.redirect = (c) => c ? { to: typeof e.redirect == \"string\" ? e.redirect : { key: e.redirect.option, value: e.redirect.value } } :\n void 0), e.deprecated && (u.deprecated = !0), t && !e.array) {\n let c = i.preprocess || ((p) => p);\n i.preprocess = (p, d, h) => d.preprocess(c(Array.isArray(p) ? De(!1, p, -1) : p), h);\n }\n return e.array ? gF.create({ ...t ? { preprocess: /* @__PURE__ */ o((c) => Array.isArray(c) ? c : [c], \"preprocess\") } : {}, ...u, valueSchema: l.\n create(i) }) : l.create({ ...i, ...u });\n}\nfunction fg(e, t) {\n if (!t) throw new Error(\"parserName is required.\");\n let r = dg(!1, e, (a) => a.parsers && Object.prototype.hasOwnProperty.call(a.parsers, t));\n if (r) return r;\n let n = `Couldn't resolve parser \"${t}\".`;\n throw n += \" Plugins must be explicitly added to the standalone bundle.\", new og(n);\n}\nfunction OF(e, t) {\n if (!t) throw new Error(\"astFormat is required.\");\n let r = dg(!1, e, (a) => a.printers && Object.prototype.hasOwnProperty.call(a.printers, t));\n if (r) return r;\n let n = `Couldn't find plugin for AST format \"${t}\".`;\n throw n += \" Plugins must be explicitly added to the standalone bundle.\", new og(n);\n}\nfunction hg({ plugins: e, parser: t }) {\n let r = fg(e, t);\n return mg(r, t);\n}\nfunction mg(e, t) {\n let r = e.parsers[t];\n return typeof r == \"function\" ? r() : r;\n}\nfunction NF(e, t) {\n let r = e.printers[t];\n return typeof r == \"function\" ? r() : r;\n}\nasync function $F(e, t = {}) {\n var r;\n let n = { ...e };\n if (!n.parser) if (n.filepath) {\n if (n.parser = lF(n, { physicalFile: n.filepath }), !n.parser) throw new gm(`No parser could be inferred for file \"${n.filepath}\".`);\n } else throw new gm(\"No parser and no file path given, couldn't infer a parser.\");\n let a = ig({ plugins: e.plugins, showDeprecated: !0 }).options, i = { ...Lm, ...Object.fromEntries(a.filter((f) => f.default !== void 0).map(\n (f) => [f.name, f.default])) }, l = fg(n.plugins, n.parser), u = await mg(l, n.parser);\n n.astFormat = u.astFormat, n.locEnd = u.locEnd, n.locStart = u.locStart;\n let c = (r = l.printers) != null && r[u.astFormat] ? l : OF(n.plugins, u.astFormat), p = await NF(c, u.astFormat);\n n.printer = p;\n let d = c.defaultOptions ? Object.fromEntries(Object.entries(c.defaultOptions).filter(([, f]) => f !== void 0)) : {}, h = { ...i, ...d };\n for (let [f, g] of Object.entries(h)) (n[f] === null || n[f] === void 0) && (n[f] = g);\n return n.parser === \"json\" && (n.trailingComma = \"none\"), HF(n, a, { passThrough: Object.keys(Lm), ...t });\n}\nasync function jF(e, t) {\n let r = await hg(t), n = r.preprocess ? r.preprocess(e, t) : e;\n t.originalText = n;\n let a;\n try {\n a = await r.parse(n, t, t);\n } catch (i) {\n WF(i, e);\n }\n return { text: n, ast: a };\n}\nfunction WF(e, t) {\n let { loc: r } = e;\n if (r) {\n let n = (0, VF.codeFrameColumns)(t, r, { highlightCode: !0 });\n throw e.message += `\n` + n, e.codeFrame = n, e;\n }\n throw e;\n}\nasync function qF(e, t, r, n, a) {\n let { embeddedLanguageFormatting: i, printer: { embed: l, hasPrettierIgnore: u = /* @__PURE__ */ o(() => !1, \"s\"), getVisitorKeys: c } } = r;\n if (!l || i !== \"auto\") return;\n if (l.length > 2) throw new Error(\"printer.embed has too many parameters. The API changed in Prettier v3. Please update your plugin. See h\\\nttps://prettier.io/docs/en/plugins.html#optional-embed\");\n let p = wl(l.getVisitorKeys ?? c), d = [];\n g();\n let h = e.stack;\n for (let { print: w, node: m, pathStack: v } of d) try {\n e.stack = v;\n let y = await w(f, t, e, r);\n y && a.set(m, y);\n } catch (y) {\n if (globalThis.PRETTIER_DEBUG) throw y;\n }\n e.stack = h;\n function f(w, m) {\n return UF(w, m, r, n);\n }\n o(f, \"f\");\n function g() {\n let { node: w } = e;\n if (w === null || typeof w != \"object\" || u(e)) return;\n for (let v of p(w)) Array.isArray(w[v]) ? e.each(g, v) : e.call(g, v);\n let m = l(e, r);\n if (m) {\n if (typeof m == \"function\") {\n d.push({ print: m, node: w, pathStack: [...e.stack] });\n return;\n }\n a.set(w, m);\n }\n }\n o(g, \"d\");\n}\nasync function UF(e, t, r, n) {\n let a = await Ba({ ...r, ...t, parentParser: r.parser, originalText: e }, { passThrough: !0 }), { ast: i } = await $o(e, a), l = await n(i,\n a);\n return Km(l);\n}\nfunction GF(e, t) {\n let { originalText: r, [Symbol.for(\"comments\")]: n, locStart: a, locEnd: i, [Symbol.for(\"printedComments\")]: l } = t, { node: u } = e, c = a(\n u), p = i(u);\n for (let d of n) a(d) >= c && i(d) <= p && l.add(d);\n return r.slice(c, p);\n}\nasync function bl(e, t) {\n ({ ast: e } = await gg(e, t));\n let r = /* @__PURE__ */ new Map(), n = new TA(e), a = eF(t), i = /* @__PURE__ */ new Map();\n await qF(n, u, t, bl, i);\n let l = await Tm(n, t, u, void 0, i);\n if (JA(t), t.nodeAfterCursor && !t.nodeBeforeCursor) return [jr, l];\n if (t.nodeBeforeCursor && !t.nodeAfterCursor) return [l, jr];\n return l;\n function u(p, d) {\n return p === void 0 || p === n ? c(d) : Array.isArray(p) ? n.call(() => c(d), ...p) : n.call(() => c(d), p);\n }\n function c(p) {\n a(n);\n let d = n.node;\n if (d == null) return \"\";\n let h = d && typeof d == \"object\" && p === void 0;\n if (h && r.has(d)) return r.get(d);\n let f = Tm(n, t, u, p, i);\n return h && r.set(d, f), f;\n }\n}\nfunction Tm(e, t, r, n, a) {\n var i;\n let { node: l } = e, { printer: u } = t, c;\n switch ((i = u.hasPrettierIgnore) != null && i.call(u, e) ? c = YF(e, t) : a.has(l) ? c = a.get(l) : c = u.print(e, t, r, n), l) {\n case t.cursorNode:\n c = ol(c, (p) => [jr, p, jr]);\n break;\n case t.nodeBeforeCursor:\n c = ol(c, (p) => [p, jr]);\n break;\n case t.nodeAfterCursor:\n c = ol(c, (p) => [jr, p]);\n break;\n }\n return u.printComment && (!u.willPrintOwnComments || !u.willPrintOwnComments(e, t)) && (c = ZA(e, c, t)), c;\n}\nasync function gg(e, t) {\n let r = e.comments ?? [];\n t[Symbol.for(\"comments\")] = r, t[Symbol.for(\"tokens\")] = e.tokens ?? [], t[Symbol.for(\"printedComments\")] = /* @__PURE__ */ new Set(), WA(\n e, t);\n let { printer: { preprocess: n } } = t;\n return e = n ? await n(e, t) : e, { ast: e, comments: r };\n}\nfunction XF(e, t) {\n let { cursorOffset: r, locStart: n, locEnd: a } = t, i = wl(t.printer.getVisitorKeys), l = /* @__PURE__ */ o((g) => n(g) <= r && a(g) >= r,\n \"o\"), u = e, c = [e];\n for (let g of MA(e, { getVisitorKeys: i, filter: l })) c.push(g), u = g;\n if (_A(u, { getVisitorKeys: i })) return { cursorNode: u };\n let p, d, h = -1, f = Number.POSITIVE_INFINITY;\n for (; c.length > 0 && (p === void 0 || d === void 0); ) {\n u = c.pop();\n let g = p !== void 0, w = d !== void 0;\n for (let m of vl(u, { getVisitorKeys: i })) {\n if (!g) {\n let v = a(m);\n v <= r && v > h && (p = m, h = v);\n }\n if (!w) {\n let v = n(m);\n v >= r && v < f && (d = m, f = v);\n }\n }\n }\n return { nodeBeforeCursor: p, nodeAfterCursor: d };\n}\nfunction ZF(e, t) {\n let { printer: { massageAstNode: r, getVisitorKeys: n } } = t;\n if (!r) return e;\n let a = wl(n), i = r.ignoredProperties ?? /* @__PURE__ */ new Set();\n return l(e);\n function l(u, c) {\n if (!(u !== null && typeof u == \"object\")) return u;\n if (Array.isArray(u)) return u.map((f) => l(f, c)).filter(Boolean);\n let p = {}, d = new Set(a(u));\n for (let f in u) !Object.prototype.hasOwnProperty.call(u, f) || i.has(f) || (d.has(f) ? p[f] = l(u[f], u) : p[f] = u[f]);\n let h = r(u, p, c);\n if (h !== null) return h ?? p;\n }\n}\nfunction rk(e, t) {\n let r = [e.node, ...e.parentNodes], n = /* @__PURE__ */ new Set([t.node, ...t.parentNodes]);\n return r.find((a) => vg.has(a.type) && n.has(a));\n}\nfunction Im(e) {\n let t = ek(!1, e, (r) => r.type !== \"Program\" && r.type !== \"File\");\n return t === -1 ? e : e.slice(0, t + 1);\n}\nfunction nk(e, t, { locStart: r, locEnd: n }) {\n let a = e.node, i = t.node;\n if (a === i) return { startNode: a, endNode: i };\n let l = r(e.node);\n for (let c of Im(t.parentNodes)) if (r(c) >= l) i = c;\n else break;\n let u = n(t.node);\n for (let c of Im(e.parentNodes)) {\n if (n(c) <= u) a = c;\n else break;\n if (a === i) break;\n }\n return { startNode: a, endNode: i };\n}\nfunction Pc(e, t, r, n, a = [], i) {\n let { locStart: l, locEnd: u } = r, c = l(e), p = u(e);\n if (!(t > p || t < c || i === \"rangeEnd\" && t === c || i === \"rangeStart\" && t === p)) {\n for (let d of Xc(e, r)) {\n let h = Pc(d, t, r, n, [e, ...a], i);\n if (h) return h;\n }\n if (!n || n(e, a[0])) return { node: e, parentNodes: a };\n }\n}\nfunction ak(e, t) {\n return t !== \"DeclareExportDeclaration\" && e !== \"TypeParameterDeclaration\" && (e === \"Directive\" || e === \"TypeAlias\" || e === \"TSExportA\\\nssignment\" || e.startsWith(\"Declare\") || e.startsWith(\"TSDeclare\") || e.endsWith(\"Statement\") || e.endsWith(\"Declaration\"));\n}\nfunction Bm(e, t, r) {\n if (!t) return !1;\n switch (e.parser) {\n case \"flow\":\n case \"babel\":\n case \"babel-flow\":\n case \"babel-ts\":\n case \"typescript\":\n case \"acorn\":\n case \"espree\":\n case \"meriyah\":\n case \"__babel_estree\":\n return ak(t.type, r?.type);\n case \"json\":\n case \"json5\":\n case \"jsonc\":\n case \"json-stringify\":\n return vg.has(t.type);\n case \"graphql\":\n return ok.has(t.kind);\n case \"vue\":\n return t.tag !== \"root\";\n }\n return !1;\n}\nfunction ik(e, t, r) {\n let { rangeStart: n, rangeEnd: a, locStart: i, locEnd: l } = t;\n Mc.ok(a > n);\n let u = e.slice(n, a).search(/\\S/u), c = u === -1;\n if (!c) for (n += u; a > n && !/\\S/u.test(e[a - 1]); --a) ;\n let p = Pc(r, n, t, (g, w) => Bm(t, g, w), [], \"rangeStart\"), d = c ? p : Pc(r, a, t, (g) => Bm(t, g), [], \"rangeEnd\");\n if (!p || !d) return { rangeStart: 0, rangeEnd: 0 };\n let h, f;\n if (tk(t)) {\n let g = rk(p, d);\n h = g, f = g;\n } else ({ startNode: h, endNode: f } = nk(p, d, t));\n return { rangeStart: Math.min(i(h), i(f)), rangeEnd: Math.max(l(h), l(f)) };\n}\nasync function bg(e, t, r = 0) {\n if (!e || e.trim().length === 0) return { formatted: \"\", cursorOffset: -1, comments: [] };\n let { ast: n, text: a } = await $o(e, t);\n t.cursorOffset >= 0 && (t = { ...t, ...KF(n, t) });\n let i = await bl(n, t, r);\n r > 0 && (i = Xm([Wr, i], r, t.tabWidth));\n let l = gl(i, t);\n if (r > 0) {\n let c = l.formatted.trim();\n l.cursorNodeStart !== void 0 && (l.cursorNodeStart -= l.formatted.indexOf(c), l.cursorNodeStart < 0 && (l.cursorNodeStart = 0, l.cursorNodeText =\n l.cursorNodeText.trimStart()), l.cursorNodeStart + l.cursorNodeText.length > c.length && (l.cursorNodeText = l.cursorNodeText.trimEnd())),\n l.formatted = c + $c(t.endOfLine);\n }\n let u = t[Symbol.for(\"comments\")];\n if (t.cursorOffset >= 0) {\n let c, p, d, h;\n if ((t.cursorNode || t.nodeBeforeCursor || t.nodeAfterCursor) && l.cursorNodeText) if (d = l.cursorNodeStart, h = l.cursorNodeText, t.cursorNode)\n c = t.locStart(t.cursorNode), p = a.slice(c, t.locEnd(t.cursorNode));\n else {\n if (!t.nodeBeforeCursor && !t.nodeAfterCursor) throw new Error(\"Cursor location must contain at least one of cursorNode, nodeBeforeCur\\\nsor, nodeAfterCursor\");\n c = t.nodeBeforeCursor ? t.locEnd(t.nodeBeforeCursor) : 0;\n let y = t.nodeAfterCursor ? t.locStart(t.nodeAfterCursor) : a.length;\n p = a.slice(c, y);\n }\n else c = 0, p = a, d = 0, h = l.formatted;\n let f = t.cursorOffset - c;\n if (p === h) return { formatted: l.formatted, cursorOffset: d + f, comments: u };\n let g = p.split(\"\");\n g.splice(f, 0, Mm);\n let w = h.split(\"\"), m = WS(g, w), v = d;\n for (let y of m) if (y.removed) {\n if (y.value.includes(Mm)) break;\n } else v += y.count;\n return { formatted: l.formatted, cursorOffset: v, comments: u };\n }\n return { formatted: l.formatted, cursorOffset: -1, comments: u };\n}\nasync function lk(e, t) {\n let { ast: r, text: n } = await $o(e, t), { rangeStart: a, rangeEnd: i } = ik(n, t, r), l = n.slice(a, i), u = Math.min(a, n.lastIndexOf(`\\\n\n`, a) + 1), c = n.slice(u, a).match(/^\\s*/u)[0], p = Gc(c, t.tabWidth), d = await bg(l, { ...t, rangeStart: 0, rangeEnd: Number.POSITIVE_INFINITY,\n cursorOffset: t.cursorOffset > a && t.cursorOffset <= i ? t.cursorOffset - a : -1, endOfLine: \"lf\" }, p), h = d.formatted.trimEnd(), { cursorOffset: f } = t;\n f > i ? f += h.length - l.length : d.cursorOffset >= 0 && (f = d.cursorOffset + a);\n let g = n.slice(0, a) + h + n.slice(i);\n if (t.endOfLine !== \"lf\") {\n let w = $c(t.endOfLine);\n f >= 0 && w === `\\r\n` && (f += $m(g.slice(0, f), `\n`)), g = dl(!1, g, `\n`, w);\n }\n return { formatted: g, cursorOffset: f, comments: d.comments };\n}\nfunction Ec(e, t, r) {\n return typeof t != \"number\" || Number.isNaN(t) || t < 0 || t > e.length ? r : t;\n}\nfunction _m(e, t) {\n let { cursorOffset: r, rangeStart: n, rangeEnd: a } = t;\n return r = Ec(e, r, -1), n = Ec(e, n, 0), a = Ec(e, a, e.length), { ...t, cursorOffset: r, rangeStart: n, rangeEnd: a };\n}\nfunction yg(e, t) {\n let { cursorOffset: r, rangeStart: n, rangeEnd: a, endOfLine: i } = _m(e, t), l = e.charAt(0) === wg;\n if (l && (e = e.slice(1), r--, n--, a--), i === \"auto\" && (i = qS(e)), e.includes(\"\\r\")) {\n let u = /* @__PURE__ */ o((c) => $m(e.slice(0, Math.max(c, 0)), `\\r\n`), \"s\");\n r -= u(r), n -= u(n), a -= u(a), e = US(e);\n }\n return { hasBOM: l, text: e, options: _m(e, { ...t, cursorOffset: r, rangeStart: n, rangeEnd: a, endOfLine: i }) };\n}\nasync function Pm(e, t) {\n let r = await hg(t);\n return !r.hasPragma || r.hasPragma(e);\n}\nasync function Dg(e, t) {\n let { hasBOM: r, text: n, options: a } = yg(e, await Ba(t));\n if (a.rangeStart >= a.rangeEnd && n !== \"\" || a.requirePragma && !await Pm(n, a)) return { formatted: e, cursorOffset: t.cursorOffset, comments: [] };\n let i;\n return a.rangeStart > 0 || a.rangeEnd < n.length ? i = await lk(n, a) : (!a.requirePragma && a.insertPragma && a.printer.insertPragma && !await Pm(\n n, a) && (n = a.printer.insertPragma(n)), i = await bg(n, a)), r && (i.formatted = wg + i.formatted, i.cursorOffset >= 0 && i.cursorOffset++),\n i;\n}\nasync function sk(e, t, r) {\n let { text: n, options: a } = yg(e, await Ba(t)), i = await $o(n, a);\n return r && (r.preprocessForPrint && (i.ast = await gg(i.ast, a)), r.massage && (i.ast = JF(i.ast, a))), i;\n}\nasync function uk(e, t) {\n t = await Ba(t);\n let r = await bl(e, t);\n return gl(r, t);\n}\nasync function ck(e, t) {\n let r = uA(e), { formatted: n } = await Dg(r, { ...t, parser: \"__js_expression\" });\n return n;\n}\nasync function pk(e, t) {\n t = await Ba(t);\n let { ast: r } = await $o(e, t);\n return bl(r, t);\n}\nasync function dk(e, t) {\n return gl(e, await Ba(t));\n}\nfunction vk(e, t) {\n if (t === !1) return !1;\n if (e.charAt(t) === \"/\" && e.charAt(t + 1) === \"*\") {\n for (let r = t + 2; r < e.length; ++r) if (e.charAt(r) === \"*\" && e.charAt(r + 1) === \"/\") return r + 2;\n }\n return t;\n}\nfunction wk(e, t) {\n return t === !1 ? !1 : e.charAt(t) === \"/\" && e.charAt(t + 1) === \"/\" ? eg(e, t) : t;\n}\nfunction bk(e, t) {\n let r = null, n = t;\n for (; n !== r; ) r = n, n = cr(e, n), n = Zc(e, n), n = Jc(e, n), n = qr(e, n);\n return n;\n}\nfunction yk(e, t) {\n let r = null, n = t;\n for (; n !== r; ) r = n, n = Qm(e, n), n = Zc(e, n), n = cr(e, n);\n return n = Jc(e, n), n = qr(e, n), n !== !1 && ur(e, n);\n}\nfunction Dk(e, t) {\n let r = e.lastIndexOf(`\n`);\n return r === -1 ? 0 : Gc(e.slice(r + 1).match(/^[\\t ]*/u)[0], t);\n}\nfunction Ck(e) {\n if (typeof e != \"string\") throw new TypeError(\"Expected a string\");\n return e.replace(/[|\\\\{}()[\\]^$+*?.]/g, \"\\\\$&\").replace(/-/g, \"\\\\x2d\");\n}\nfunction Ek(e, t) {\n let r = e.match(new RegExp(`(${Ck(t)})+`, \"gu\"));\n return r === null ? 0 : r.reduce((n, a) => Math.max(n, a.length / t.length), 0);\n}\nfunction Sk(e, t) {\n let r = Qc(e, t);\n return r === !1 ? \"\" : e.charAt(r);\n}\nfunction Fk(e, t) {\n let r = t === !0 || t === al ? al : Hm, n = r === al ? Hm : al, a = 0, i = 0;\n for (let l of e) l === r ? a++ : l === n && i++;\n return a > i ? n : r;\n}\nfunction Lk(e, t, r) {\n for (let n = t; n < r; ++n) if (e.charAt(n) === `\n`) return !0;\n return !1;\n}\nfunction Ik(e, t, r = {}) {\n return cr(e, r.backwards ? t - 1 : t, r) !== t;\n}\nfunction Mk(e, t, r) {\n let n = t === '\"' ? \"'\" : '\"', a = dl(!1, e, /\\\\(.)|([\"'])/gsu, (i, l, u) => l === n ? l : u === t ? \"\\\\\" + u : u || (r && /^[^\\n\\r\"'0-7\\\\bfnrt-vx\\u2028\\u2029]$/u.\n test(l) ? l : \"\\\\\" + l));\n return t + a + t;\n}\nfunction Pk(e, t, r) {\n return Qc(e, r(t));\n}\nfunction Hk(e, t) {\n return arguments.length === 2 || typeof t == \"number\" ? Qc(e, t) : Pk(...arguments);\n}\nfunction zk(e, t, r) {\n return Kc(e, r(t));\n}\nfunction Ok(e, t) {\n return arguments.length === 2 || typeof t == \"number\" ? Kc(e, t) : zk(...arguments);\n}\nfunction Nk(e, t, r) {\n return e0(e, r(t));\n}\nfunction $k(e, t) {\n return arguments.length === 2 || typeof t == \"number\" ? e0(e, t) : Nk(...arguments);\n}\nfunction Vr(e, t = 1) {\n return async (...r) => {\n let n = r[t] ?? {}, a = n.plugins ?? [];\n return r[t] = { ...n, plugins: Array.isArray(a) ? a : Object.values(a) }, e(...r);\n };\n}\nasync function Rg(e, t) {\n let { formatted: r } = await Eg(e, { ...t, cursorOffset: -1 });\n return r;\n}\nasync function Vk(e, t) {\n return await Rg(e, t) === e;\n}\nvar kS, Hc, LS, TS, IS, BS, zm, Om, zc, MS, pl, _S, PS, Po, Oc, HS, Nm, zS, dl, cV, sl, NS, fl, $S, Nc, VS, jS, Oo, ul, Ur, $t, Gr, Vt, jt, Wt,\nqe, It, Ke, qt, Ut, Gt, Ae, Bt, ot, Vm, Yr, YS, va, KS, Ta, dm, Vc, jm, Tt, jc, oA, hl, iA, Wc, qm, Um, lA, Wr, Gm, jr, cA, De, pA, hA, mA, qc,\nWe, Lt, da, Lc, Gc, Nr, Bc, il, wa, LA, TA, Jm, Mc, BA, PA, cr, Qm, eg, qr, ur, NA, tg, $A, wl, bc, yc, ng, Kc, eF, ba, og, ya, gm, tF, aF, lF,\nma, wm, sF, ga, lg, ll, bm, uF, Dm, xc, xm, cg, pF, Da, pr, xa, hF, Ca, mF, Ea, gF, Ra, vF, Sa, SF, Aa, AF, Fa, FF, ka, km, kF, LF, TF, IF, La,\nBF, Cc, HF, zF, dg, Lm, Ba, VF, $o, YF, KF, JF, QF, ek, tk, vg, ok, wg, Mm, xg, fk, hk, mk, gk, Cg, Zc, Jc, Qc, e0, xk, Rk, Ak, al, Hm, kk, Tk,\nBk, _k, Eg, jk, Wk, Sg, Ag = S(() => {\n kS = Object.create, Hc = Object.defineProperty, LS = Object.getOwnPropertyDescriptor, TS = Object.getOwnPropertyNames, IS = Object.getPrototypeOf,\n BS = Object.prototype.hasOwnProperty, zm = /* @__PURE__ */ o((e) => {\n throw TypeError(e);\n }, \"fr\"), Om = /* @__PURE__ */ o((e, t) => () => (t || e((t = { exports: {} }).exports, t), t.exports), \"dr\"), zc = /* @__PURE__ */ o((e, t) => {\n for (var r in t) Hc(e, r, { get: t[r], enumerable: !0 });\n }, \"Bt\"), MS = /* @__PURE__ */ o((e, t, r, n) => {\n if (t && typeof t == \"object\" || typeof t == \"function\") for (let a of TS(t)) !BS.call(e, a) && a !== r && Hc(e, a, { get: /* @__PURE__ */ o(\n () => t[a], \"get\"), enumerable: !(n = LS(t, a)) || n.enumerable });\n return e;\n }, \"_u\"), pl = /* @__PURE__ */ o((e, t, r) => (r = e != null ? kS(IS(e)) : {}, MS(t || !e || !e.__esModule ? Hc(r, \"default\", { value: e, enumerable: !0 }) :\n r, e)), \"Me\"), _S = /* @__PURE__ */ o((e, t, r) => t.has(e) || zm(\"Cannot \" + r), \"xu\"), PS = /* @__PURE__ */ o((e, t, r) => t.has(e) ? zm(\n \"Cannot add the same private member more than once\") : t instanceof WeakSet ? t.add(e) : t.set(e, r), \"pr\"), Po = /* @__PURE__ */ o((e, t, r) => (_S(\n e, t, \"access private method\"), r), \"pe\"), Oc = Om((e, t) => {\n \"use strict\";\n var r = new Proxy(String, { get: /* @__PURE__ */ o(() => r, \"get\") });\n t.exports = r;\n }), HS = Om((e) => {\n \"use strict\";\n Object.defineProperty(e, \"__esModule\", { value: !0 });\n function t() {\n return new Proxy({}, { get: /* @__PURE__ */ o(() => (i) => i, \"get\") });\n }\n o(t, \"Bi\");\n var r = /\\r\\n|[\\n\\r\\u2028\\u2029]/;\n function n(i, l, u) {\n let c = Object.assign({ column: 0, line: -1 }, i.start), p = Object.assign({}, c, i.end), { linesAbove: d = 2, linesBelow: h = 3 } = u ||\n {}, f = c.line, g = c.column, w = p.line, m = p.column, v = Math.max(f - (d + 1), 0), y = Math.min(l.length, w + h);\n f === -1 && (v = 0), w === -1 && (y = l.length);\n let b = w - f, D = {};\n if (b) for (let x = 0; x <= b; x++) {\n let C = x + f;\n if (!g) D[C] = !0;\n else if (x === 0) {\n let E = l[C - 1].length;\n D[C] = [g, E - g + 1];\n } else if (x === b) D[C] = [0, m];\n else {\n let E = l[C - x].length;\n D[C] = [0, E];\n }\n }\n else g === m ? g ? D[f] = [g, 0] : D[f] = !0 : D[f] = [g, m - g];\n return { start: v, end: y, markerLines: D };\n }\n o(n, \"wi\");\n function a(i, l, u = {}) {\n let c = t(!1), p = i.split(r), { start: d, end: h, markerLines: f } = n(l, p, u), g = l.start && typeof l.start.column == \"number\", w = String(\n h).length, m = i.split(r, h).slice(d, h).map((v, y) => {\n let b = d + 1 + y, D = ` ${` ${b}`.slice(-w)} |`, x = f[b], C = !f[b + 1];\n if (x) {\n let E = \"\";\n if (Array.isArray(x)) {\n let R = v.slice(0, Math.max(x[0] - 1, 0)).replace(/[^\\t]/g, \" \"), F = x[1] || 1;\n E = [`\n `, c.gutter(D.replace(/\\d/g, \" \")), \" \", R, c.marker(\"^\").repeat(F)].join(\"\"), C && u.message && (E += \" \" + c.message(u.message));\n }\n return [c.marker(\">\"), c.gutter(D), v.length > 0 ? ` ${v}` : \"\", E].join(\"\");\n } else return ` ${c.gutter(D)}${v.length > 0 ? ` ${v}` : \"\"}`;\n }).join(`\n`);\n return u.message && !g && (m = `${\" \".repeat(w + 1)}${u.message}\n${m}`), m;\n }\n o(a, \"_i\"), e.codeFrameColumns = a;\n }), Nm = {};\n zc(Nm, { __debug: /* @__PURE__ */ o(() => Wk, \"__debug\"), check: /* @__PURE__ */ o(() => Vk, \"check\"), doc: /* @__PURE__ */ o(() => xg, \"d\\\noc\"), format: /* @__PURE__ */ o(() => Rg, \"format\"), formatWithCursor: /* @__PURE__ */ o(() => Eg, \"formatWithCursor\"), getSupportInfo: /* @__PURE__ */ o(\n () => jk, \"getSupportInfo\"), util: /* @__PURE__ */ o(() => Cg, \"util\"), version: /* @__PURE__ */ o(() => gk, \"version\") });\n zS = /* @__PURE__ */ o((e, t, r, n) => {\n if (!(e && t == null)) return t.replaceAll ? t.replaceAll(r, n) : r.global ? t.replace(r, n) : t.split(r).join(n);\n }, \"bu\"), dl = zS;\n o(gt, \"M\");\n gt.prototype = { diff: /* @__PURE__ */ o(function(e, t) {\n var r, n = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}, a = n.callback;\n typeof n == \"function\" && (a = n, n = {});\n var i = this;\n function l(D) {\n return D = i.postProcess(D, n), a ? (setTimeout(function() {\n a(D);\n }, 0), !0) : D;\n }\n o(l, \"s\"), e = this.castInput(e, n), t = this.castInput(t, n), e = this.removeEmpty(this.tokenize(e, n)), t = this.removeEmpty(this.tokenize(\n t, n));\n var u = t.length, c = e.length, p = 1, d = u + c;\n n.maxEditLength != null && (d = Math.min(d, n.maxEditLength));\n var h = (r = n.timeout) !== null && r !== void 0 ? r : 1 / 0, f = Date.now() + h, g = [{ oldPos: -1, lastComponent: void 0 }], w = this.\n extractCommon(g[0], t, e, 0, n);\n if (g[0].oldPos + 1 >= c && w + 1 >= u) return l(lm(i, g[0].lastComponent, t, e, i.useLongestToken));\n var m = -1 / 0, v = 1 / 0;\n function y() {\n for (var D = Math.max(m, -p); D <= Math.min(v, p); D += 2) {\n var x = void 0, C = g[D - 1], E = g[D + 1];\n C && (g[D - 1] = void 0);\n var R = !1;\n if (E) {\n var F = E.oldPos - D;\n R = E && 0 <= F && F < u;\n }\n var A = C && C.oldPos + 1 < c;\n if (!R && !A) {\n g[D] = void 0;\n continue;\n }\n if (!A || R && C.oldPos < E.oldPos ? x = i.addToPath(E, !0, !1, 0, n) : x = i.addToPath(C, !1, !0, 1, n), w = i.extractCommon(x, t, e,\n D, n), x.oldPos + 1 >= c && w + 1 >= u) return l(lm(i, x.lastComponent, t, e, i.useLongestToken));\n g[D] = x, x.oldPos + 1 >= c && (v = Math.min(v, D - 1)), w + 1 >= u && (m = Math.max(m, D + 1));\n }\n p++;\n }\n if (o(y, \"C\"), a) (/* @__PURE__ */ o(function D() {\n setTimeout(function() {\n if (p > d || Date.now() > f) return a();\n y() || D();\n }, 0);\n }, \"E\"))();\n else for (; p <= d && Date.now() <= f; ) {\n var b = y();\n if (b) return b;\n }\n }, \"diff\"), addToPath: /* @__PURE__ */ o(function(e, t, r, n, a) {\n var i = e.lastComponent;\n return i && !a.oneChangePerToken && i.added === t && i.removed === r ? { oldPos: e.oldPos + n, lastComponent: { count: i.count + 1, added: t,\n removed: r, previousComponent: i.previousComponent } } : { oldPos: e.oldPos + n, lastComponent: { count: 1, added: t, removed: r, previousComponent: i } };\n }, \"addToPath\"), extractCommon: /* @__PURE__ */ o(function(e, t, r, n, a) {\n for (var i = t.length, l = r.length, u = e.oldPos, c = u - n, p = 0; c + 1 < i && u + 1 < l && this.equals(r[u + 1], t[c + 1], a); ) c++,\n u++, p++, a.oneChangePerToken && (e.lastComponent = { count: 1, previousComponent: e.lastComponent, added: !1, removed: !1 });\n return p && !a.oneChangePerToken && (e.lastComponent = { count: p, previousComponent: e.lastComponent, added: !1, removed: !1 }), e.oldPos =\n u, c;\n }, \"extractCommon\"), equals: /* @__PURE__ */ o(function(e, t, r) {\n return r.comparator ? r.comparator(e, t) : e === t || r.ignoreCase && e.toLowerCase() === t.toLowerCase();\n }, \"equals\"), removeEmpty: /* @__PURE__ */ o(function(e) {\n for (var t = [], r = 0; r < e.length; r++) e[r] && t.push(e[r]);\n return t;\n }, \"removeEmpty\"), castInput: /* @__PURE__ */ o(function(e) {\n return e;\n }, \"castInput\"), tokenize: /* @__PURE__ */ o(function(e) {\n return Array.from(e);\n }, \"tokenize\"), join: /* @__PURE__ */ o(function(e) {\n return e.join(\"\");\n }, \"join\"), postProcess: /* @__PURE__ */ o(function(e) {\n return e;\n }, \"postProcess\") };\n o(lm, \"Fr\");\n cV = new gt();\n o(sm, \"mr\");\n o(um, \"hr\");\n o(Rc, \"wt\");\n o(Sc, \"_t\");\n o(Ho, \"we\");\n o(rl, \"Ue\");\n o(cm, \"Er\");\n o(OS, \"Nu\");\n sl = \"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}\", NS = new RegExp(\"[\".\n concat(sl, \"]+|\\\\s+|[^\").concat(sl, \"]\"), \"ug\"), fl = new gt();\n fl.equals = function(e, t, r) {\n return r.ignoreCase && (e = e.toLowerCase(), t = t.toLowerCase()), e.trim() === t.trim();\n };\n fl.tokenize = function(e) {\n var t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, r;\n if (t.intlSegmenter) {\n if (t.intlSegmenter.resolvedOptions().granularity != \"word\") throw new Error('The segmenter passed must have a granularity of \"word\"');\n r = Array.from(t.intlSegmenter.segment(e), function(i) {\n return i.segment;\n });\n } else r = e.match(NS) || [];\n var n = [], a = null;\n return r.forEach(function(i) {\n /\\s/.test(i) ? a == null ? n.push(i) : n.push(n.pop() + i) : /\\s/.test(a) ? n[n.length - 1] == a ? n.push(n.pop() + i) : n.push(a + i) :\n n.push(i), a = i;\n }), n;\n };\n fl.join = function(e) {\n return e.map(function(t, r) {\n return r == 0 ? t : t.replace(/^\\s+/, \"\");\n }).join(\"\");\n };\n fl.postProcess = function(e, t) {\n if (!e || t.oneChangePerToken) return e;\n var r = null, n = null, a = null;\n return e.forEach(function(i) {\n i.added ? n = i : i.removed ? a = i : ((n || a) && pm(r, a, n, i), r = i, n = null, a = null);\n }), (n || a) && pm(r, a, n, null), e;\n };\n o(pm, \"Cr\");\n $S = new gt();\n $S.tokenize = function(e) {\n var t = new RegExp(\"(\\\\r?\\\\n)|[\".concat(sl, \"]+|[^\\\\S\\\\n\\\\r]+|[^\").concat(sl, \"]\"), \"ug\");\n return e.match(t) || [];\n };\n Nc = new gt();\n Nc.tokenize = function(e, t) {\n t.stripTrailingCr && (e = e.replace(/\\r\\n/g, `\n`));\n var r = [], n = e.split(/(\\n|\\r\\n)/);\n n[n.length - 1] || n.pop();\n for (var a = 0; a < n.length; a++) {\n var i = n[a];\n a % 2 && !t.newlineIsToken ? r[r.length - 1] += i : r.push(i);\n }\n return r;\n };\n Nc.equals = function(e, t, r) {\n return r.ignoreWhitespace ? ((!r.newlineIsToken || !e.includes(`\n`)) && (e = e.trim()), (!r.newlineIsToken || !t.includes(`\n`)) && (t = t.trim())) : r.ignoreNewlineAtEof && !r.newlineIsToken && (e.endsWith(`\n`) && (e = e.slice(0, -1)), t.endsWith(`\n`) && (t = t.slice(0, -1))), gt.prototype.equals.call(this, e, t, r);\n };\n VS = new gt();\n VS.tokenize = function(e) {\n return e.split(/(\\S.+?[.!?])(?=\\s+|$)/);\n };\n jS = new gt();\n jS.tokenize = function(e) {\n return e.split(/([{}:;,]|\\s+)/);\n };\n o(Ac, \"xt\");\n Oo = new gt();\n Oo.useLongestToken = !0;\n Oo.tokenize = Nc.tokenize;\n Oo.castInput = function(e, t) {\n var r = t.undefinedReplacement, n = t.stringifyReplacer, a = n === void 0 ? function(i, l) {\n return typeof l > \"u\" ? r : l;\n } : n;\n return typeof e == \"string\" ? e : JSON.stringify(Fc(e, null, null, a), a, \" \");\n };\n Oo.equals = function(e, t, r) {\n return gt.prototype.equals.call(Oo, e.replace(/,([\\r\\n])/g, \"$1\"), t.replace(/,([\\r\\n])/g, \"$1\"), r);\n };\n o(Fc, \"bt\");\n ul = new gt();\n ul.tokenize = function(e) {\n return e.slice();\n };\n ul.join = ul.removeEmpty = function(e) {\n return e;\n };\n o(WS, \"gr\");\n o(qS, \"yr\");\n o($c, \"xe\");\n o($m, \"Ot\");\n o(US, \"Ar\");\n Ur = \"string\", $t = \"array\", Gr = \"cursor\", Vt = \"indent\", jt = \"align\", Wt = \"trim\", qe = \"group\", It = \"fill\", Ke = \"if-break\", qt = \"in\\\ndent-if-break\", Ut = \"line-suffix\", Gt = \"line-suffix-boundary\", Ae = \"line\", Bt = \"label\", ot = \"break-parent\", Vm = /* @__PURE__ */ new Set(\n [Gr, Vt, jt, Wt, qe, It, Ke, qt, Ut, Gt, Ae, Bt, ot]);\n o(GS, \"Lu\");\n Yr = GS, YS = /* @__PURE__ */ o((e) => new Intl.ListFormat(\"en-US\", { type: \"disjunction\" }).format(e), \"Pu\");\n o(XS, \"Iu\");\n KS = (va = class extends Error {\n name = \"InvalidDocError\";\n constructor(t) {\n super(XS(t)), this.doc = t;\n }\n }, o(va, \"St\"), va), Ta = KS, dm = {};\n o(ZS, \"Ru\");\n Vc = ZS, jm = /* @__PURE__ */ o(() => {\n }, \"Br\"), Tt = jm, jc = jm;\n o(cl, \"le\");\n o(Ia, \"De\");\n o(Wm, \"Tt\");\n o(JS, \"wr\");\n o(QS, \"_r\");\n o(eA, \"xr\");\n o(tA, \"br\");\n o(rA, \"Nr\");\n o(nA, \"Or\");\n o(aA, \"Sr\");\n o(kc, \"Ne\");\n oA = { type: Gt }, hl = { type: ot }, iA = { type: Wt }, Wc = { type: Ae, hard: !0 }, qm = { type: Ae, hard: !0, literal: !0 }, Um = { type: Ae },\n lA = { type: Ae, soft: !0 }, Wr = [Wc, hl], Gm = [qm, hl], jr = { type: Gr };\n o(Ym, \"Se\");\n o(Xm, \"Qe\");\n o(sA, \"Pr\");\n o(Nt, \"ee\");\n o(uA, \"Ir\");\n cA = /* @__PURE__ */ o((e, t, r) => {\n if (!(e && t == null)) return Array.isArray(t) || typeof t == \"string\" ? t[r < 0 ? t.length + r : r] : t.at(r);\n }, \"Yu\"), De = cA, pA = /* @__PURE__ */ o(() => /[#*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,\n \"Rr\");\n o(dA, \"Yr\");\n o(fA, \"jr\");\n hA = /* @__PURE__ */ o((e) => !(dA(e) || fA(e)), \"Hr\"), mA = /[^\\x20-\\x7F]/u;\n o(gA, \"Hu\");\n qc = gA;\n o(ml, \"Le\");\n o(Uc, \"Ze\");\n o(vA, \"Wu\");\n o(wA, \"Mr\");\n o(fm, \"Wr\");\n o(bA, \"Ur\");\n o(yA, \"$u\");\n o(DA, \"Vr\");\n o(hm, \"$r\");\n o(zo, \"ke\");\n o(Km, \"et\");\n o(xA, \"Mu\");\n o(CA, \"Uu\");\n o(EA, \"zr\");\n o(RA, \"Vu\");\n o(SA, \"Gr\");\n o(ol, \"me\");\n We = Symbol(\"MODE_BREAK\"), Lt = Symbol(\"MODE_FLAT\"), da = Symbol(\"cursor\"), Lc = Symbol(\"DOC_FILL_PRINTED_LENGTH\");\n o(Zm, \"Kr\");\n o(AA, \"zu\");\n o(FA, \"Gu\");\n o(Tc, \"Pt\");\n o(Ic, \"It\");\n o(nl, \"tt\");\n o(gl, \"Ee\");\n o(kA, \"Ku\");\n Gc = kA, LA = (wa = class {\n constructor(t) {\n PS(this, Nr), this.stack = [t];\n }\n get key() {\n let { stack: t, siblings: r } = this;\n return De(!1, t, r === null ? -2 : -4) ?? null;\n }\n get index() {\n return this.siblings === null ? null : De(!1, this.stack, -2);\n }\n get node() {\n return De(!1, this.stack, -1);\n }\n get parent() {\n return this.getNode(1);\n }\n get grandparent() {\n return this.getNode(2);\n }\n get isInArray() {\n return this.siblings !== null;\n }\n get siblings() {\n let { stack: t } = this, r = De(!1, t, -3);\n return Array.isArray(r) ? r : null;\n }\n get next() {\n let { siblings: t } = this;\n return t === null ? null : t[this.index + 1];\n }\n get previous() {\n let { siblings: t } = this;\n return t === null ? null : t[this.index - 1];\n }\n get isFirst() {\n return this.index === 0;\n }\n get isLast() {\n let { siblings: t, index: r } = this;\n return t !== null && r === t.length - 1;\n }\n get isRoot() {\n return this.stack.length === 1;\n }\n get root() {\n return this.stack[0];\n }\n get ancestors() {\n return [...Po(this, Nr, il).call(this)];\n }\n getName() {\n let { stack: t } = this, { length: r } = t;\n return r > 1 ? De(!1, t, -2) : null;\n }\n getValue() {\n return De(!1, this.stack, -1);\n }\n getNode(t = 0) {\n let r = Po(this, Nr, Bc).call(this, t);\n return r === -1 ? null : this.stack[r];\n }\n getParentNode(t = 0) {\n return this.getNode(t + 1);\n }\n call(t, ...r) {\n let { stack: n } = this, { length: a } = n, i = De(!1, n, -1);\n for (let l of r) i = i[l], n.push(l, i);\n try {\n return t(this);\n } finally {\n n.length = a;\n }\n }\n callParent(t, r = 0) {\n let n = Po(this, Nr, Bc).call(this, r + 1), a = this.stack.splice(n + 1);\n try {\n return t(this);\n } finally {\n this.stack.push(...a);\n }\n }\n each(t, ...r) {\n let { stack: n } = this, { length: a } = n, i = De(!1, n, -1);\n for (let l of r) i = i[l], n.push(l, i);\n try {\n for (let l = 0; l < i.length; ++l) n.push(l, i[l]), t(this, l, i), n.length -= 2;\n } finally {\n n.length = a;\n }\n }\n map(t, ...r) {\n let n = [];\n return this.each((a, i, l) => {\n n[i] = t(a, i, l);\n }, ...r), n;\n }\n match(...t) {\n let r = this.stack.length - 1, n = null, a = this.stack[r--];\n for (let i of t) {\n if (a === void 0) return !1;\n let l = null;\n if (typeof n == \"number\" && (l = n, n = this.stack[r--], a = this.stack[r--]), i && !i(a, n, l)) return !1;\n n = this.stack[r--], a = this.stack[r--];\n }\n return !0;\n }\n findAncestor(t) {\n for (let r of Po(this, Nr, il).call(this)) if (t(r)) return r;\n }\n hasAncestor(t) {\n for (let r of Po(this, Nr, il).call(this)) if (t(r)) return !0;\n return !1;\n }\n }, o(wa, \"Rt\"), wa);\n Nr = /* @__PURE__ */ new WeakSet(), Bc = /* @__PURE__ */ o(function(e) {\n let { stack: t } = this;\n for (let r = t.length - 1; r >= 0; r -= 2) if (!Array.isArray(t[r]) && --e < 0) return r;\n return -1;\n }, \"Yt\"), il = /* @__PURE__ */ o(function* () {\n let { stack: e } = this;\n for (let t = e.length - 3; t >= 0; t -= 2) {\n let r = e[t];\n Array.isArray(r) || (yield r);\n }\n }, \"rt\");\n TA = LA, Jm = new Proxy(() => {\n }, { get: /* @__PURE__ */ o(() => Jm, \"get\") }), Mc = Jm;\n o(IA, \"Ju\");\n BA = IA;\n o(vl, \"ge\");\n o(MA, \"Qr\");\n o(_A, \"Zr\");\n o(No, \"ye\");\n PA = No(/\\s/u), cr = No(\" \t\"), Qm = No(\",; \t\"), eg = No(/[^\\n\\r]/u);\n o(HA, \"qu\");\n qr = HA;\n o(zA, \"Xu\");\n ur = zA;\n o(OA, \"Qu\");\n NA = OA, tg = /* @__PURE__ */ new Set([\"tokens\", \"comments\", \"parent\", \"enclosingNode\", \"precedingNode\", \"followingNode\"]), $A = /* @__PURE__ */ o(\n (e) => Object.keys(e).filter((t) => !tg.has(t)), \"Zu\");\n o(VA, \"ei\");\n wl = VA;\n o(jA, \"ti\");\n o(Yc, \"Ht\");\n o(fa, \"ue\");\n o($r, \"re\");\n o(ha, \"ie\");\n bc = /* @__PURE__ */ new WeakMap();\n o(Xc, \"it\");\n o(rg, \"nn\");\n yc = /* @__PURE__ */ o(() => !1, \"$t\");\n o(WA, \"un\");\n ng = /* @__PURE__ */ o((e) => !/[\\S\\n\\u2028\\u2029]/u.test(e), \"on\");\n o(qA, \"ri\");\n o(UA, \"ni\");\n o(mm, \"rn\");\n o(Dc, \"Mt\");\n o(GA, \"ui\");\n Kc = GA;\n o(ag, \"sn\");\n o(YA, \"ii\");\n o(XA, \"oi\");\n o(KA, \"si\");\n o(ZA, \"an\");\n o(JA, \"Dn\");\n o(QA, \"ai\");\n eF = QA, og = (ba = class extends Error {\n name = \"ConfigError\";\n }, o(ba, \"Re\"), ba), gm = (ya = class extends Error {\n name = \"UndefinedParserError\";\n }, o(ya, \"Ye\"), ya), tF = { cursorOffset: { category: \"Special\", type: \"int\", default: -1, range: { start: -1, end: 1 / 0, step: 1 }, description: \"\\\nPrint (to stderr) where a cursor at the given position would move to after formatting.\", cliCategory: \"Editor\" }, endOfLine: { category: \"Gl\\\nobal\", type: \"choice\", default: \"lf\", description: \"Which end of line characters to apply.\", choices: [{ value: \"lf\", description: \"Line Fee\\\nd only (\\\\n), common on Linux and macOS as well as inside git repos\" }, { value: \"crlf\", description: \"Carriage Return + Line Feed character\\\ns (\\\\r\\\\n), common on Windows\" }, { value: \"cr\", description: \"Carriage Return character only (\\\\r), used very rarely\" }, { value: \"auto\", description: `\\\nMaintain existing\n(mixed values within one file are normalised by looking at what's used after the first line)` }] }, filepath: { category: \"Special\", type: \"\\\npath\", description: \"Specify the input filepath. This will be used to do parser inference.\", cliName: \"stdin-filepath\", cliCategory: \"Other\",\n cliDescription: \"Path to the file to pretend that stdin comes from.\" }, insertPragma: { category: \"Special\", type: \"boolean\", default: !1,\n description: \"Insert @format pragma into file's first docblock comment.\", cliCategory: \"Other\" }, parser: { category: \"Global\", type: \"cho\\\nice\", default: void 0, description: \"Which parser to use.\", exception: /* @__PURE__ */ o((e) => typeof e == \"string\" || typeof e == \"functio\\\nn\", \"exception\"), choices: [{ value: \"flow\", description: \"Flow\" }, { value: \"babel\", description: \"JavaScript\" }, { value: \"babel-flow\", description: \"\\\nFlow\" }, { value: \"babel-ts\", description: \"TypeScript\" }, { value: \"typescript\", description: \"TypeScript\" }, { value: \"acorn\", description: \"\\\nJavaScript\" }, { value: \"espree\", description: \"JavaScript\" }, { value: \"meriyah\", description: \"JavaScript\" }, { value: \"css\", description: \"\\\nCSS\" }, { value: \"less\", description: \"Less\" }, { value: \"scss\", description: \"SCSS\" }, { value: \"json\", description: \"JSON\" }, { value: \"js\\\non5\", description: \"JSON5\" }, { value: \"jsonc\", description: \"JSON with Comments\" }, { value: \"json-stringify\", description: \"JSON.stringify\" },\n { value: \"graphql\", description: \"GraphQL\" }, { value: \"markdown\", description: \"Markdown\" }, { value: \"mdx\", description: \"MDX\" }, { value: \"\\\nvue\", description: \"Vue\" }, { value: \"yaml\", description: \"YAML\" }, { value: \"glimmer\", description: \"Ember / Handlebars\" }, { value: \"html\",\n description: \"HTML\" }, { value: \"angular\", description: \"Angular\" }, { value: \"lwc\", description: \"Lightning Web Components\" }] }, plugins: {\n type: \"path\", array: !0, default: [{ value: [] }], category: \"Global\", description: \"Add a plugin. Multiple plugins can be passed as separ\\\nate `--plugin`s.\", exception: /* @__PURE__ */ o((e) => typeof e == \"string\" || typeof e == \"object\", \"exception\"), cliName: \"plugin\", cliCategory: \"\\\nConfig\" }, printWidth: { category: \"Global\", type: \"int\", default: 80, description: \"The line length where Prettier will try wrap.\", range: {\n start: 0, end: 1 / 0, step: 1 } }, rangeEnd: { category: \"Special\", type: \"int\", default: 1 / 0, range: { start: 0, end: 1 / 0, step: 1 },\n description: `Format code ending at a given character offset (exclusive).\nThe range will extend forwards to the end of the selected statement.`, cliCategory: \"Editor\" }, rangeStart: { category: \"Special\", type: \"in\\\nt\", default: 0, range: { start: 0, end: 1 / 0, step: 1 }, description: `Format code starting at a given character offset.\nThe range will extend backwards to the start of the first line containing the selected statement.`, cliCategory: \"Editor\" }, requirePragma: {\n category: \"Special\", type: \"boolean\", default: !1, description: `Require either '@prettier' or '@format' to be present in the file's first\\\n docblock comment\nin order for it to be formatted.`, cliCategory: \"Other\" }, tabWidth: { type: \"int\", category: \"Global\", default: 2, description: \"Number of \\\nspaces per indentation level.\", range: { start: 0, end: 1 / 0, step: 1 } }, useTabs: { category: \"Global\", type: \"boolean\", default: !1, description: \"\\\nIndent with tabs instead of spaces.\" }, embeddedLanguageFormatting: { category: \"Global\", type: \"choice\", default: \"auto\", description: \"Con\\\ntrol how Prettier formats quoted code embedded in the file.\", choices: [{ value: \"auto\", description: \"Format embedded code if Prettier can \\\nautomatically identify it.\" }, { value: \"off\", description: \"Never automatically format embedded code.\" }] } };\n o(ig, \"ot\");\n o(rF, \"Di\");\n o(nF, \"li\");\n aF = /* @__PURE__ */ o((e) => String(e).split(/[/\\\\]/u).pop(), \"ci\");\n o(vm, \"fn\");\n o(oF, \"fi\");\n o(iF, \"di\");\n lF = iF, ma = { key: /* @__PURE__ */ o((e) => /^[$_a-zA-Z][$_a-zA-Z0-9]*$/.test(e) ? e : JSON.stringify(e), \"key\"), value(e) {\n if (e === null || typeof e != \"object\") return JSON.stringify(e);\n if (Array.isArray(e)) return `[${e.map((r) => ma.value(r)).join(\", \")}]`;\n let t = Object.keys(e);\n return t.length === 0 ? \"{}\" : `{ ${t.map((r) => `${ma.key(r)}: ${ma.value(e[r])}`).join(\", \")} }`;\n }, pair: /* @__PURE__ */ o(({ key: e, value: t }) => ma.value({ [e]: t }), \"pair\") }, wm = pl(Oc(), 1), sF = /* @__PURE__ */ o((e, t, { descriptor: r }) => {\n let n = [`${wm.default.yellow(typeof e == \"string\" ? r.key(e) : r.pair(e))} is deprecated`];\n return t && n.push(`we now treat it as ${wm.default.blue(typeof t == \"string\" ? r.key(t) : r.pair(t))}`), n.join(\"; \") + \".\";\n }, \"mn\"), ga = pl(Oc(), 1), lg = Symbol.for(\"vnopts.VALUE_NOT_EXIST\"), ll = Symbol.for(\"vnopts.VALUE_UNCHANGED\"), bm = \" \".repeat(2), uF =\n /* @__PURE__ */ o((e, t, r) => {\n let { text: n, list: a } = r.normalizeExpectedResult(r.schemas[e].expected(r)), i = [];\n return n && i.push(ym(e, t, n, r.descriptor)), a && i.push([ym(e, t, a.title, r.descriptor)].concat(a.values.map((l) => sg(l, r.loggerPrintWidth))).\n join(`\n`)), ug(i, r.loggerPrintWidth);\n }, \"Cn\");\n o(ym, \"En\");\n o(sg, \"gn\");\n o(ug, \"yn\");\n Dm = pl(Oc(), 1), xc = [], xm = [];\n o(cF, \"zt\");\n cg = /* @__PURE__ */ o((e, t, { descriptor: r, logger: n, schemas: a }) => {\n let i = [`Ignored unknown option ${Dm.default.yellow(r.pair({ key: e, value: t }))}.`], l = Object.keys(a).sort().find((u) => cF(e, u) <\n 3);\n l && i.push(`Did you mean ${Dm.default.blue(r.key(l))}?`), n.warn(i.join(\" \"));\n }, \"Dt\"), pF = [\"default\", \"expected\", \"validate\", \"deprecated\", \"forward\", \"redirect\", \"overlap\", \"preprocess\", \"postprocess\"];\n o(dF, \"Fi\");\n pr = (Da = class {\n static create(t) {\n return dF(this, t);\n }\n constructor(t) {\n this.name = t.name;\n }\n default(t) {\n }\n expected(t) {\n return \"nothing\";\n }\n validate(t, r) {\n return !1;\n }\n deprecated(t, r) {\n return !1;\n }\n forward(t, r) {\n }\n redirect(t, r) {\n }\n overlap(t, r, n) {\n return t;\n }\n preprocess(t, r) {\n return t;\n }\n postprocess(t, r) {\n return ll;\n }\n }, o(Da, \"x\"), Da);\n o(fF, \"mi\");\n hF = (xa = class extends pr {\n constructor(t) {\n super(t), this._sourceName = t.sourceName;\n }\n expected(t) {\n return t.schemas[this._sourceName].expected(t);\n }\n validate(t, r) {\n return r.schemas[this._sourceName].validate(t, r);\n }\n redirect(t, r) {\n return this._sourceName;\n }\n }, o(xa, \"lt\"), xa), mF = (Ca = class extends pr {\n expected() {\n return \"anything\";\n }\n validate() {\n return !0;\n }\n }, o(Ca, \"ct\"), Ca), gF = (Ea = class extends pr {\n constructor({ valueSchema: t, name: r = t.name, ...n }) {\n super({ ...n, name: r }), this._valueSchema = t;\n }\n expected(t) {\n let { text: r, list: n } = t.normalizeExpectedResult(this._valueSchema.expected(t));\n return { text: r && `an array of ${r}`, list: n && { title: \"an array of the following values\", values: [{ list: n }] } };\n }\n validate(t, r) {\n if (!Array.isArray(t)) return !1;\n let n = [];\n for (let a of t) {\n let i = r.normalizeValidateResult(this._valueSchema.validate(a, r), a);\n i !== !0 && n.push(i.value);\n }\n return n.length === 0 ? !0 : { value: n };\n }\n deprecated(t, r) {\n let n = [];\n for (let a of t) {\n let i = r.normalizeDeprecatedResult(this._valueSchema.deprecated(a, r), a);\n i !== !1 && n.push(...i.map(({ value: l }) => ({ value: [l] })));\n }\n return n;\n }\n forward(t, r) {\n let n = [];\n for (let a of t) {\n let i = r.normalizeForwardResult(this._valueSchema.forward(a, r), a);\n n.push(...i.map(Cm));\n }\n return n;\n }\n redirect(t, r) {\n let n = [], a = [];\n for (let i of t) {\n let l = r.normalizeRedirectResult(this._valueSchema.redirect(i, r), i);\n \"remain\" in l && n.push(l.remain), a.push(...l.redirect.map(Cm));\n }\n return n.length === 0 ? { redirect: a } : { redirect: a, remain: n };\n }\n overlap(t, r) {\n return t.concat(r);\n }\n }, o(Ea, \"ft\"), Ea);\n o(Cm, \"vn\");\n vF = (Ra = class extends pr {\n expected() {\n return \"true or false\";\n }\n validate(t) {\n return typeof t == \"boolean\";\n }\n }, o(Ra, \"dt\"), Ra);\n o(wF, \"wn\");\n o(bF, \"_n\");\n o(yF, \"xn\");\n o(DF, \"bn\");\n o(xF, \"Nn\");\n o(CF, \"On\");\n o(EF, \"Sn\");\n o(Em, \"Kt\");\n o(pg, \"Jt\");\n o(Rm, \"qt\");\n o(Sm, \"Xt\");\n o(Am, \"Bn\");\n o(_c, \"pt\");\n o(Fm, \"Qt\");\n o(RF, \"hi\");\n SF = (Sa = class extends pr {\n constructor(t) {\n super(t), this._choices = bF(t.choices.map((r) => r && typeof r == \"object\" ? r : { value: r }), \"value\");\n }\n expected({ descriptor: t }) {\n let r = Array.from(this._choices.keys()).map((i) => this._choices.get(i)).filter(({ hidden: i }) => !i).map((i) => i.value).sort(CF).map(\n t.value), n = r.slice(0, -2), a = r.slice(-2);\n return { text: n.concat(a.join(\" or \")).join(\", \"), list: { title: \"one of the following values\", values: r } };\n }\n validate(t) {\n return this._choices.has(t);\n }\n deprecated(t) {\n let r = this._choices.get(t);\n return r && r.deprecated ? { value: t } : !1;\n }\n forward(t) {\n let r = this._choices.get(t);\n return r ? r.forward : void 0;\n }\n redirect(t) {\n let r = this._choices.get(t);\n return r ? r.redirect : void 0;\n }\n }, o(Sa, \"Ft\"), Sa), AF = (Aa = class extends pr {\n expected() {\n return \"a number\";\n }\n validate(t, r) {\n return typeof t == \"number\";\n }\n }, o(Aa, \"mt\"), Aa), FF = (Fa = class extends AF {\n expected() {\n return \"an integer\";\n }\n validate(t, r) {\n return r.normalizeValidateResult(super.validate(t, r), t) === !0 && xF(t);\n }\n }, o(Fa, \"ht\"), Fa), km = (ka = class extends pr {\n expected() {\n return \"a string\";\n }\n validate(t) {\n return typeof t == \"string\";\n }\n }, o(ka, \"je\"), ka), kF = ma, LF = cg, TF = uF, IF = sF, BF = (La = class {\n constructor(t, r) {\n let { logger: n = console, loggerPrintWidth: a = 80, descriptor: i = kF, unknown: l = LF, invalid: u = TF, deprecated: c = IF, missing: p = /* @__PURE__ */ o(\n () => !1, \"D\"), required: d = /* @__PURE__ */ o(() => !1, \"l\"), preprocess: h = /* @__PURE__ */ o((g) => g, \"p\"), postprocess: f = /* @__PURE__ */ o(\n () => ll, \"f\") } = r || {};\n this._utils = { descriptor: i, logger: n || { warn: /* @__PURE__ */ o(() => {\n }, \"warn\") }, loggerPrintWidth: a, schemas: wF(t, \"name\"), normalizeDefaultResult: Em, normalizeExpectedResult: pg, normalizeDeprecatedResult: Sm,\n normalizeForwardResult: _c, normalizeRedirectResult: Fm, normalizeValidateResult: Rm }, this._unknownHandler = l, this._invalidHandler =\n EF(u), this._deprecatedHandler = c, this._identifyMissing = (g, w) => !(g in w) || p(g, w), this._identifyRequired = d, this._preprocess =\n h, this._postprocess = f, this.cleanHistory();\n }\n cleanHistory() {\n this._hasDeprecationWarned = yF();\n }\n normalize(t) {\n let r = {}, n = [this._preprocess(t, this._utils)], a = /* @__PURE__ */ o(() => {\n for (; n.length !== 0; ) {\n let i = n.shift(), l = this._applyNormalization(i, r);\n n.push(...l);\n }\n }, \"i\");\n a();\n for (let i of Object.keys(this._utils.schemas)) {\n let l = this._utils.schemas[i];\n if (!(i in r)) {\n let u = Em(l.default(this._utils));\n \"value\" in u && n.push({ [i]: u.value });\n }\n }\n a();\n for (let i of Object.keys(this._utils.schemas)) {\n if (!(i in r)) continue;\n let l = this._utils.schemas[i], u = r[i], c = l.postprocess(u, this._utils);\n c !== ll && (this._applyValidation(c, i, l), r[i] = c);\n }\n return this._applyPostprocess(r), this._applyRequiredCheck(r), r;\n }\n _applyNormalization(t, r) {\n let n = [], { knownKeys: a, unknownKeys: i } = this._partitionOptionKeys(t);\n for (let l of a) {\n let u = this._utils.schemas[l], c = u.preprocess(t[l], this._utils);\n this._applyValidation(c, l, u);\n let p = /* @__PURE__ */ o(({ from: f, to: g }) => {\n n.push(typeof g == \"string\" ? { [g]: f } : { [g.key]: g.value });\n }, \"D\"), d = /* @__PURE__ */ o(({ value: f, redirectTo: g }) => {\n let w = Sm(u.deprecated(f, this._utils), c, !0);\n if (w !== !1) if (w === !0) this._hasDeprecationWarned(l) || this._utils.logger.warn(this._deprecatedHandler(l, g, this._utils));\n else for (let { value: m } of w) {\n let v = { key: l, value: m };\n if (!this._hasDeprecationWarned(v)) {\n let y = typeof g == \"string\" ? { key: g, value: m } : g;\n this._utils.logger.warn(this._deprecatedHandler(v, y, this._utils));\n }\n }\n }, \"l\");\n _c(u.forward(c, this._utils), c).forEach(p);\n let h = Fm(u.redirect(c, this._utils), c);\n if (h.redirect.forEach(p), \"remain\" in h) {\n let f = h.remain;\n r[l] = l in r ? u.overlap(r[l], f, this._utils) : f, d({ value: f });\n }\n for (let { from: f, to: g } of h.redirect) d({ value: f, redirectTo: g });\n }\n for (let l of i) {\n let u = t[l];\n this._applyUnknownHandler(l, u, r, (c, p) => {\n n.push({ [c]: p });\n });\n }\n return n;\n }\n _applyRequiredCheck(t) {\n for (let r of Object.keys(this._utils.schemas)) if (this._identifyMissing(r, t) && this._identifyRequired(r)) throw this._invalidHandler(\n r, lg, this._utils);\n }\n _partitionOptionKeys(t) {\n let [r, n] = DF(Object.keys(t).filter((a) => !this._identifyMissing(a, t)), (a) => a in this._utils.schemas);\n return { knownKeys: r, unknownKeys: n };\n }\n _applyValidation(t, r, n) {\n let a = Rm(n.validate(t, this._utils), t);\n if (a !== !0) throw this._invalidHandler(r, a.value, this._utils);\n }\n _applyUnknownHandler(t, r, n, a) {\n let i = this._unknownHandler(t, r, this._utils);\n if (i) for (let l of Object.keys(i)) {\n if (this._identifyMissing(l, i)) continue;\n let u = i[l];\n l in this._utils.schemas ? a(l, u) : n[l] = u;\n }\n }\n _applyPostprocess(t) {\n let r = this._postprocess(t, this._utils);\n if (r !== ll) {\n if (r.delete) for (let n of r.delete) delete t[n];\n if (r.override) {\n let { knownKeys: n, unknownKeys: a } = this._partitionOptionKeys(r.override);\n for (let i of n) {\n let l = r.override[i];\n this._applyValidation(l, i, this._utils.schemas[i]), t[i] = l;\n }\n for (let i of a) {\n let l = r.override[i];\n this._applyUnknownHandler(i, l, t, (u, c) => {\n let p = this._utils.schemas[u];\n this._applyValidation(c, u, p), t[u] = c;\n });\n }\n }\n }\n }\n }, o(La, \"Et\"), La);\n o(MF, \"Ci\");\n o(_F, \"gi\");\n o(PF, \"yi\");\n HF = MF, zF = /* @__PURE__ */ o((e, t, r) => {\n if (!(e && t == null)) {\n if (t.findLast) return t.findLast(r);\n for (let n = t.length - 1; n >= 0; n--) {\n let a = t[n];\n if (r(a, n, t)) return a;\n }\n }\n }, \"Ai\"), dg = zF;\n o(fg, \"tr\");\n o(OF, \"Rn\");\n o(hg, \"Ct\");\n o(mg, \"rr\");\n o(NF, \"Yn\");\n Lm = { astFormat: \"estree\", printer: {}, originalText: void 0, locStart: null, locEnd: null };\n o($F, \"vi\");\n Ba = $F, VF = pl(HS(), 1);\n o(jF, \"xi\");\n o(WF, \"bi\");\n $o = jF;\n o(qF, \"Mn\");\n o(UF, \"Ni\");\n o(GF, \"Oi\");\n YF = GF;\n o(bl, \"He\");\n o(Tm, \"Vn\");\n o(gg, \"ur\");\n o(XF, \"Si\");\n KF = XF;\n o(ZF, \"Ti\");\n JF = ZF, QF = /* @__PURE__ */ o((e, t, r) => {\n if (!(e && t == null)) {\n if (t.findLastIndex) return t.findLastIndex(r);\n for (let n = t.length - 1; n >= 0; n--) {\n let a = t[n];\n if (r(a, n, t)) return n;\n }\n return -1;\n }\n }, \"ki\"), ek = QF, tk = /* @__PURE__ */ o(({ parser: e }) => e === \"json\" || e === \"json5\" || e === \"jsonc\" || e === \"json-stringify\", \"Li\");\n o(rk, \"Pi\");\n o(Im, \"Jn\");\n o(nk, \"Ii\");\n o(Pc, \"ir\");\n o(ak, \"Ri\");\n vg = /* @__PURE__ */ new Set([\"JsonRoot\", \"ObjectExpression\", \"ArrayExpression\", \"StringLiteral\", \"NumericLiteral\", \"BooleanLiteral\", \"Nul\\\nlLiteral\", \"UnaryExpression\", \"TemplateLiteral\"]), ok = /* @__PURE__ */ new Set([\"OperationDefinition\", \"FragmentDefinition\", \"VariableDefin\\\nition\", \"TypeExtensionDefinition\", \"ObjectTypeDefinition\", \"FieldDefinition\", \"DirectiveDefinition\", \"EnumTypeDefinition\", \"EnumValueDefinit\\\nion\", \"InputValueDefinition\", \"InputObjectTypeDefinition\", \"SchemaDefinition\", \"OperationTypeDefinition\", \"InterfaceTypeDefinition\", \"UnionT\\\nypeDefinition\", \"ScalarTypeDefinition\"]);\n o(Bm, \"qn\");\n o(ik, \"Qn\");\n wg = \"\\uFEFF\", Mm = Symbol(\"cursor\");\n o(bg, \"nu\");\n o(lk, \"ji\");\n o(Ec, \"or\");\n o(_m, \"eu\");\n o(yg, \"uu\");\n o(Pm, \"tu\");\n o(Dg, \"sr\");\n o(sk, \"iu\");\n o(uk, \"ou\");\n o(ck, \"su\");\n o(pk, \"au\");\n o(dk, \"Du\");\n xg = {};\n zc(xg, { builders: /* @__PURE__ */ o(() => fk, \"builders\"), printer: /* @__PURE__ */ o(() => hk, \"printer\"), utils: /* @__PURE__ */ o(() => mk,\n \"utils\") });\n fk = { join: Ym, line: Um, softline: lA, hardline: Wr, literalline: Gm, group: Wm, conditionalGroup: tA, fill: rA, lineSuffix: kc, lineSuffixBoundary: oA,\n cursor: jr, breakParent: hl, ifBreak: nA, trim: iA, indent: cl, indentIfBreak: aA, align: Ia, addAlignmentToDoc: Xm, markAsRoot: QS, dedentToRoot: JS,\n dedent: eA, hardlineWithoutBreakParent: Wc, literallineWithoutBreakParent: qm, label: sA, concat: /* @__PURE__ */ o((e) => e, \"concat\") },\n hk = { printDocToString: gl }, mk = { willBreak: wA, traverseDoc: Vc, findInDoc: Uc, mapDoc: ml, removeLines: DA, stripTrailingHardline: Km,\n replaceEndOfLine: EA, canBreak: SA }, gk = \"3.4.2\", Cg = {};\n zc(Cg, { addDanglingComment: /* @__PURE__ */ o(() => $r, \"addDanglingComment\"), addLeadingComment: /* @__PURE__ */ o(() => fa, \"addLeading\\\nComment\"), addTrailingComment: /* @__PURE__ */ o(() => ha, \"addTrailingComment\"), getAlignmentSize: /* @__PURE__ */ o(() => Gc, \"getAlignmen\\\ntSize\"), getIndentSize: /* @__PURE__ */ o(() => xk, \"getIndentSize\"), getMaxContinuousCount: /* @__PURE__ */ o(() => Rk, \"getMaxContinuousCo\\\nunt\"), getNextNonSpaceNonCommentCharacter: /* @__PURE__ */ o(() => Ak, \"getNextNonSpaceNonCommentCharacter\"), getNextNonSpaceNonCommentCharacterIndex: /* @__PURE__ */ o(\n () => Hk, \"getNextNonSpaceNonCommentCharacterIndex\"), getPreferredQuote: /* @__PURE__ */ o(() => kk, \"getPreferredQuote\"), getStringWidth: /* @__PURE__ */ o(\n () => qc, \"getStringWidth\"), hasNewline: /* @__PURE__ */ o(() => ur, \"hasNewline\"), hasNewlineInRange: /* @__PURE__ */ o(() => Tk, \"hasNew\\\nlineInRange\"), hasSpaces: /* @__PURE__ */ o(() => Bk, \"hasSpaces\"), isNextLineEmpty: /* @__PURE__ */ o(() => $k, \"isNextLineEmpty\"), isNextLineEmptyAfterIndex: /* @__PURE__ */ o(\n () => e0, \"isNextLineEmptyAfterIndex\"), isPreviousLineEmpty: /* @__PURE__ */ o(() => Ok, \"isPreviousLineEmpty\"), makeString: /* @__PURE__ */ o(\n () => _k, \"makeString\"), skip: /* @__PURE__ */ o(() => No, \"skip\"), skipEverythingButNewLine: /* @__PURE__ */ o(() => eg, \"skipEverythingB\\\nutNewLine\"), skipInlineComment: /* @__PURE__ */ o(() => Zc, \"skipInlineComment\"), skipNewline: /* @__PURE__ */ o(() => qr, \"skipNewline\"), skipSpaces: /* @__PURE__ */ o(\n () => cr, \"skipSpaces\"), skipToLineEnd: /* @__PURE__ */ o(() => Qm, \"skipToLineEnd\"), skipTrailingComment: /* @__PURE__ */ o(() => Jc, \"sk\\\nipTrailingComment\"), skipWhitespace: /* @__PURE__ */ o(() => PA, \"skipWhitespace\") });\n o(vk, \"Ui\");\n Zc = vk;\n o(wk, \"Vi\");\n Jc = wk;\n o(bk, \"zi\");\n Qc = bk;\n o(yk, \"Gi\");\n e0 = yk;\n o(Dk, \"Ki\");\n xk = Dk;\n o(Ck, \"Dr\");\n o(Ek, \"Ji\");\n Rk = Ek;\n o(Sk, \"qi\");\n Ak = Sk, al = \"'\", Hm = '\"';\n o(Fk, \"Xi\");\n kk = Fk;\n o(Lk, \"Qi\");\n Tk = Lk;\n o(Ik, \"Zi\");\n Bk = Ik;\n o(Mk, \"eo\");\n _k = Mk;\n o(Pk, \"to\");\n o(Hk, \"ro\");\n o(zk, \"no\");\n o(Ok, \"uo\");\n o(Nk, \"io\");\n o($k, \"oo\");\n o(Vr, \"de\");\n Eg = Vr(Dg);\n o(Rg, \"gu\");\n o(Vk, \"so\");\n jk = Vr(ig, 0), Wk = { parse: Vr(sk), formatAST: Vr(uk), formatDoc: Vr(ck), printToDoc: Vr(pk), printDocToString: Vr(dk) }, Sg = Nm;\n});\n\n// ../node_modules/ts-dedent/esm/index.js\nfunction Fg(e) {\n for (var t = [], r = 1; r < arguments.length; r++)\n t[r - 1] = arguments[r];\n var n = Array.from(typeof e == \"string\" ? [e] : e);\n n[n.length - 1] = n[n.length - 1].replace(/\\r?\\n([\\t ]*)$/, \"\");\n var a = n.reduce(function(u, c) {\n var p = c.match(/\\n([\\t ]+|(?!\\s).)/g);\n return p ? u.concat(p.map(function(d) {\n var h, f;\n return (f = (h = d.match(/[\\t ]/g)) === null || h === void 0 ? void 0 : h.length) !== null && f !== void 0 ? f : 0;\n })) : u;\n }, []);\n if (a.length) {\n var i = new RegExp(`\n[\t ]{` + Math.min.apply(Math, a) + \"}\", \"g\");\n n = n.map(function(u) {\n return u.replace(i, `\n`);\n });\n }\n n[0] = n[0].replace(/^\\r?\\n/, \"\");\n var l = n[0];\n return t.forEach(function(u, c) {\n var p = l.match(/(?:^|\\n)( *)$/), d = p ? p[1] : \"\", h = u;\n typeof u == \"string\" && u.includes(`\n`) && (h = String(u).split(`\n`).map(function(f, g) {\n return g === 0 ? f : \"\" + d + f;\n }).join(`\n`)), l += h + n[c + 1];\n }), l;\n}\nvar kg = S(() => {\n o(Fg, \"dedent\");\n});\n\n// src/components/components/syntaxhighlighter/formatter.ts\nvar Tg = {};\nfn(Tg, {\n formatter: () => qk\n});\nvar Lg, qk, Ig = S(() => {\n \"use strict\";\n Lg = Re(uo(), 1);\n im();\n Ag();\n kg();\n qk = (0, Lg.default)(2)(async (e, t) => e === !1 ? t : e === \"dedent\" || e === !0 ? Fg(t) : (await Sg.format(t, {\n parser: e,\n plugins: [om],\n htmlWhitespaceSensitivity: \"ignore\"\n })).trim());\n});\n\n// ../node_modules/react-popper/lib/esm/utils.js\nimport * as Pl from \"react\";\nvar p1, d1, uv = S(() => {\n p1 = /* @__PURE__ */ o(function(t) {\n return t.reduce(function(r, n) {\n var a = n[0], i = n[1];\n return r[a] = i, r;\n }, {});\n }, \"fromEntries\"), d1 = typeof window < \"u\" && window.document && window.document.createElement ? Pl.useLayoutEffect : Pl.useEffect;\n});\n\n// ../node_modules/@popperjs/core/lib/enums.js\nvar ae, me, ce, ie, Hl, mr, Xt, tn, cv, zl, ja, pv, f1, Ol, AI, FI, kI, LI, TI, II, BI, MI, _I, dv, Ze = S(() => {\n ae = \"top\", me = \"bottom\", ce = \"right\", ie = \"left\", Hl = \"auto\", mr = [ae, me, ce, ie], Xt = \"start\", tn = \"end\", cv = \"clippingParents\",\n zl = \"viewport\", ja = \"popper\", pv = \"reference\", f1 = /* @__PURE__ */ mr.reduce(function(e, t) {\n return e.concat([t + \"-\" + Xt, t + \"-\" + tn]);\n }, []), Ol = /* @__PURE__ */ [].concat(mr, [Hl]).reduce(function(e, t) {\n return e.concat([t, t + \"-\" + Xt, t + \"-\" + tn]);\n }, []), AI = \"beforeRead\", FI = \"read\", kI = \"afterRead\", LI = \"beforeMain\", TI = \"main\", II = \"afterMain\", BI = \"beforeWrite\", MI = \"writ\\\ne\", _I = \"afterWrite\", dv = [AI, FI, kI, LI, TI, II, BI, MI, _I];\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/getNodeName.js\nfunction xe(e) {\n return e ? (e.nodeName || \"\").toLowerCase() : null;\n}\nvar gr = S(() => {\n o(xe, \"getNodeName\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/getWindow.js\nfunction Q(e) {\n if (e == null)\n return window;\n if (e.toString() !== \"[object Window]\") {\n var t = e.ownerDocument;\n return t && t.defaultView || window;\n }\n return e;\n}\nvar bt = S(() => {\n o(Q, \"getWindow\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/instanceOf.js\nfunction st(e) {\n var t = Q(e).Element;\n return e instanceof t || e instanceof Element;\n}\nfunction ge(e) {\n var t = Q(e).HTMLElement;\n return e instanceof t || e instanceof HTMLElement;\n}\nfunction Wa(e) {\n if (typeof ShadowRoot > \"u\")\n return !1;\n var t = Q(e).ShadowRoot;\n return e instanceof t || e instanceof ShadowRoot;\n}\nvar Je = S(() => {\n bt();\n o(st, \"isElement\");\n o(ge, \"isHTMLElement\");\n o(Wa, \"isShadowRoot\");\n});\n\n// ../node_modules/@popperjs/core/lib/modifiers/applyStyles.js\nfunction PI(e) {\n var t = e.state;\n Object.keys(t.elements).forEach(function(r) {\n var n = t.styles[r] || {}, a = t.attributes[r] || {}, i = t.elements[r];\n !ge(i) || !xe(i) || (Object.assign(i.style, n), Object.keys(a).forEach(function(l) {\n var u = a[l];\n u === !1 ? i.removeAttribute(l) : i.setAttribute(l, u === !0 ? \"\" : u);\n }));\n });\n}\nfunction HI(e) {\n var t = e.state, r = {\n popper: {\n position: t.options.strategy,\n left: \"0\",\n top: \"0\",\n margin: \"0\"\n },\n arrow: {\n position: \"absolute\"\n },\n reference: {}\n };\n return Object.assign(t.elements.popper.style, r.popper), t.styles = r, t.elements.arrow && Object.assign(t.elements.arrow.style, r.arrow),\n function() {\n Object.keys(t.elements).forEach(function(n) {\n var a = t.elements[n], i = t.attributes[n] || {}, l = Object.keys(t.styles.hasOwnProperty(n) ? t.styles[n] : r[n]), u = l.reduce(function(c, p) {\n return c[p] = \"\", c;\n }, {});\n !ge(a) || !xe(a) || (Object.assign(a.style, u), Object.keys(i).forEach(function(c) {\n a.removeAttribute(c);\n }));\n });\n };\n}\nvar fv, hv = S(() => {\n gr();\n Je();\n o(PI, \"applyStyles\");\n o(HI, \"effect\");\n fv = {\n name: \"applyStyles\",\n enabled: !0,\n phase: \"write\",\n fn: PI,\n effect: HI,\n requires: [\"computeStyles\"]\n };\n});\n\n// ../node_modules/@popperjs/core/lib/utils/getBasePlacement.js\nfunction Ce(e) {\n return e.split(\"-\")[0];\n}\nvar vr = S(() => {\n o(Ce, \"getBasePlacement\");\n});\n\n// ../node_modules/@popperjs/core/lib/utils/math.js\nvar yt, rn, Kt, wr = S(() => {\n yt = Math.max, rn = Math.min, Kt = Math.round;\n});\n\n// ../node_modules/@popperjs/core/lib/utils/userAgent.js\nfunction qa() {\n var e = navigator.userAgentData;\n return e != null && e.brands && Array.isArray(e.brands) ? e.brands.map(function(t) {\n return t.brand + \"/\" + t.version;\n }).join(\" \") : navigator.userAgent;\n}\nvar h1 = S(() => {\n o(qa, \"getUAString\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js\nfunction Uo() {\n return !/^((?!chrome|android).)*safari/i.test(qa());\n}\nvar m1 = S(() => {\n h1();\n o(Uo, \"isLayoutViewport\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js\nfunction ut(e, t, r) {\n t === void 0 && (t = !1), r === void 0 && (r = !1);\n var n = e.getBoundingClientRect(), a = 1, i = 1;\n t && ge(e) && (a = e.offsetWidth > 0 && Kt(n.width) / e.offsetWidth || 1, i = e.offsetHeight > 0 && Kt(n.height) / e.offsetHeight || 1);\n var l = st(e) ? Q(e) : window, u = l.visualViewport, c = !Uo() && r, p = (n.left + (c && u ? u.offsetLeft : 0)) / a, d = (n.top + (c && u ?\n u.offsetTop : 0)) / i, h = n.width / a, f = n.height / i;\n return {\n width: h,\n height: f,\n top: d,\n right: p + h,\n bottom: d + f,\n left: p,\n x: p,\n y: d\n };\n}\nvar Ua = S(() => {\n Je();\n wr();\n bt();\n m1();\n o(ut, \"getBoundingClientRect\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js\nfunction nn(e) {\n var t = ut(e), r = e.offsetWidth, n = e.offsetHeight;\n return Math.abs(t.width - r) <= 1 && (r = t.width), Math.abs(t.height - n) <= 1 && (n = t.height), {\n x: e.offsetLeft,\n y: e.offsetTop,\n width: r,\n height: n\n };\n}\nvar Nl = S(() => {\n Ua();\n o(nn, \"getLayoutRect\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/contains.js\nfunction Go(e, t) {\n var r = t.getRootNode && t.getRootNode();\n if (e.contains(t))\n return !0;\n if (r && Wa(r)) {\n var n = t;\n do {\n if (n && e.isSameNode(n))\n return !0;\n n = n.parentNode || n.host;\n } while (n);\n }\n return !1;\n}\nvar g1 = S(() => {\n Je();\n o(Go, \"contains\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js\nfunction He(e) {\n return Q(e).getComputedStyle(e);\n}\nvar Ga = S(() => {\n bt();\n o(He, \"getComputedStyle\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/isTableElement.js\nfunction v1(e) {\n return [\"table\", \"td\", \"th\"].indexOf(xe(e)) >= 0;\n}\nvar mv = S(() => {\n gr();\n o(v1, \"isTableElement\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js\nfunction ke(e) {\n return ((st(e) ? e.ownerDocument : (\n // $FlowFixMe[prop-missing]\n e.document\n )) || window.document).documentElement;\n}\nvar Zt = S(() => {\n Je();\n o(ke, \"getDocumentElement\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/getParentNode.js\nfunction Jt(e) {\n return xe(e) === \"html\" ? e : (\n // this is a quicker (but less type safe) way to save quite some bytes from the bundle\n // $FlowFixMe[incompatible-return]\n // $FlowFixMe[prop-missing]\n e.assignedSlot || // step into the shadow DOM of the parent of a slotted node\n e.parentNode || // DOM Element detected\n (Wa(e) ? e.host : null) || // ShadowRoot detected\n // $FlowFixMe[incompatible-call]: HTMLElement is a Node\n ke(e)\n );\n}\nvar Yo = S(() => {\n gr();\n Zt();\n Je();\n o(Jt, \"getParentNode\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js\nfunction gv(e) {\n return !ge(e) || // https://github.com/popperjs/popper-core/issues/837\n He(e).position === \"fixed\" ? null : e.offsetParent;\n}\nfunction zI(e) {\n var t = /firefox/i.test(qa()), r = /Trident/i.test(qa());\n if (r && ge(e)) {\n var n = He(e);\n if (n.position === \"fixed\")\n return null;\n }\n var a = Jt(e);\n for (Wa(a) && (a = a.host); ge(a) && [\"html\", \"body\"].indexOf(xe(a)) < 0; ) {\n var i = He(a);\n if (i.transform !== \"none\" || i.perspective !== \"none\" || i.contain === \"paint\" || [\"transform\", \"perspective\"].indexOf(i.willChange) !==\n -1 || t && i.willChange === \"filter\" || t && i.filter && i.filter !== \"none\")\n return a;\n a = a.parentNode;\n }\n return null;\n}\nfunction Dt(e) {\n for (var t = Q(e), r = gv(e); r && v1(r) && He(r).position === \"static\"; )\n r = gv(r);\n return r && (xe(r) === \"html\" || xe(r) === \"body\" && He(r).position === \"static\") ? t : r || zI(e) || t;\n}\nvar Ya = S(() => {\n bt();\n gr();\n Ga();\n Je();\n mv();\n Yo();\n h1();\n o(gv, \"getTrueOffsetParent\");\n o(zI, \"getContainingBlock\");\n o(Dt, \"getOffsetParent\");\n});\n\n// ../node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js\nfunction an(e) {\n return [\"top\", \"bottom\"].indexOf(e) >= 0 ? \"x\" : \"y\";\n}\nvar $l = S(() => {\n o(an, \"getMainAxisFromPlacement\");\n});\n\n// ../node_modules/@popperjs/core/lib/utils/within.js\nfunction on(e, t, r) {\n return yt(e, rn(t, r));\n}\nfunction vv(e, t, r) {\n var n = on(e, t, r);\n return n > r ? r : n;\n}\nvar w1 = S(() => {\n wr();\n o(on, \"within\");\n o(vv, \"withinMaxClamp\");\n});\n\n// ../node_modules/@popperjs/core/lib/utils/getFreshSideObject.js\nfunction Xo() {\n return {\n top: 0,\n right: 0,\n bottom: 0,\n left: 0\n };\n}\nvar b1 = S(() => {\n o(Xo, \"getFreshSideObject\");\n});\n\n// ../node_modules/@popperjs/core/lib/utils/mergePaddingObject.js\nfunction Ko(e) {\n return Object.assign({}, Xo(), e);\n}\nvar y1 = S(() => {\n b1();\n o(Ko, \"mergePaddingObject\");\n});\n\n// ../node_modules/@popperjs/core/lib/utils/expandToHashMap.js\nfunction Zo(e, t) {\n return t.reduce(function(r, n) {\n return r[n] = e, r;\n }, {});\n}\nvar D1 = S(() => {\n o(Zo, \"expandToHashMap\");\n});\n\n// ../node_modules/@popperjs/core/lib/modifiers/arrow.js\nfunction NI(e) {\n var t, r = e.state, n = e.name, a = e.options, i = r.elements.arrow, l = r.modifiersData.popperOffsets, u = Ce(r.placement), c = an(u), p = [\n ie, ce].indexOf(u) >= 0, d = p ? \"height\" : \"width\";\n if (!(!i || !l)) {\n var h = OI(a.padding, r), f = nn(i), g = c === \"y\" ? ae : ie, w = c === \"y\" ? me : ce, m = r.rects.reference[d] + r.rects.reference[c] -\n l[c] - r.rects.popper[d], v = l[c] - r.rects.reference[c], y = Dt(i), b = y ? c === \"y\" ? y.clientHeight || 0 : y.clientWidth || 0 : 0, D = m /\n 2 - v / 2, x = h[g], C = b - f[d] - h[w], E = b / 2 - f[d] / 2 + D, R = on(x, E, C), F = c;\n r.modifiersData[n] = (t = {}, t[F] = R, t.centerOffset = R - E, t);\n }\n}\nfunction $I(e) {\n var t = e.state, r = e.options, n = r.element, a = n === void 0 ? \"[data-popper-arrow]\" : n;\n a != null && (typeof a == \"string\" && (a = t.elements.popper.querySelector(a), !a) || Go(t.elements.popper, a) && (t.elements.arrow = a));\n}\nvar OI, wv, bv = S(() => {\n vr();\n Nl();\n g1();\n Ya();\n $l();\n w1();\n y1();\n D1();\n Ze();\n OI = /* @__PURE__ */ o(function(t, r) {\n return t = typeof t == \"function\" ? t(Object.assign({}, r.rects, {\n placement: r.placement\n })) : t, Ko(typeof t != \"number\" ? t : Zo(t, mr));\n }, \"toPaddingObject\");\n o(NI, \"arrow\");\n o($I, \"effect\");\n wv = {\n name: \"arrow\",\n enabled: !0,\n phase: \"main\",\n fn: NI,\n effect: $I,\n requires: [\"popperOffsets\"],\n requiresIfExists: [\"preventOverflow\"]\n };\n});\n\n// ../node_modules/@popperjs/core/lib/utils/getVariation.js\nfunction ct(e) {\n return e.split(\"-\")[1];\n}\nvar Xa = S(() => {\n o(ct, \"getVariation\");\n});\n\n// ../node_modules/@popperjs/core/lib/modifiers/computeStyles.js\nfunction jI(e, t) {\n var r = e.x, n = e.y, a = t.devicePixelRatio || 1;\n return {\n x: Kt(r * a) / a || 0,\n y: Kt(n * a) / a || 0\n };\n}\nfunction yv(e) {\n var t, r = e.popper, n = e.popperRect, a = e.placement, i = e.variation, l = e.offsets, u = e.position, c = e.gpuAcceleration, p = e.adaptive,\n d = e.roundOffsets, h = e.isFixed, f = l.x, g = f === void 0 ? 0 : f, w = l.y, m = w === void 0 ? 0 : w, v = typeof d == \"function\" ? d({\n x: g,\n y: m\n }) : {\n x: g,\n y: m\n };\n g = v.x, m = v.y;\n var y = l.hasOwnProperty(\"x\"), b = l.hasOwnProperty(\"y\"), D = ie, x = ae, C = window;\n if (p) {\n var E = Dt(r), R = \"clientHeight\", F = \"clientWidth\";\n if (E === Q(r) && (E = ke(r), He(E).position !== \"static\" && u === \"absolute\" && (R = \"scrollHeight\", F = \"scrollWidth\")), E = E, a === ae ||\n (a === ie || a === ce) && i === tn) {\n x = me;\n var A = h && E === C && C.visualViewport ? C.visualViewport.height : (\n // $FlowFixMe[prop-missing]\n E[R]\n );\n m -= A - n.height, m *= c ? 1 : -1;\n }\n if (a === ie || (a === ae || a === me) && i === tn) {\n D = ce;\n var k = h && E === C && C.visualViewport ? C.visualViewport.width : (\n // $FlowFixMe[prop-missing]\n E[F]\n );\n g -= k - n.width, g *= c ? 1 : -1;\n }\n }\n var B = Object.assign({\n position: u\n }, p && VI), j = d === !0 ? jI({\n x: g,\n y: m\n }, Q(r)) : {\n x: g,\n y: m\n };\n if (g = j.x, m = j.y, c) {\n var V;\n return Object.assign({}, B, (V = {}, V[x] = b ? \"0\" : \"\", V[D] = y ? \"0\" : \"\", V.transform = (C.devicePixelRatio || 1) <= 1 ? \"translate\\\n(\" + g + \"px, \" + m + \"px)\" : \"translate3d(\" + g + \"px, \" + m + \"px, 0)\", V));\n }\n return Object.assign({}, B, (t = {}, t[x] = b ? m + \"px\" : \"\", t[D] = y ? g + \"px\" : \"\", t.transform = \"\", t));\n}\nfunction WI(e) {\n var t = e.state, r = e.options, n = r.gpuAcceleration, a = n === void 0 ? !0 : n, i = r.adaptive, l = i === void 0 ? !0 : i, u = r.roundOffsets,\n c = u === void 0 ? !0 : u, p = {\n placement: Ce(t.placement),\n variation: ct(t.placement),\n popper: t.elements.popper,\n popperRect: t.rects.popper,\n gpuAcceleration: a,\n isFixed: t.options.strategy === \"fixed\"\n };\n t.modifiersData.popperOffsets != null && (t.styles.popper = Object.assign({}, t.styles.popper, yv(Object.assign({}, p, {\n offsets: t.modifiersData.popperOffsets,\n position: t.options.strategy,\n adaptive: l,\n roundOffsets: c\n })))), t.modifiersData.arrow != null && (t.styles.arrow = Object.assign({}, t.styles.arrow, yv(Object.assign({}, p, {\n offsets: t.modifiersData.arrow,\n position: \"absolute\",\n adaptive: !1,\n roundOffsets: c\n })))), t.attributes.popper = Object.assign({}, t.attributes.popper, {\n \"data-popper-placement\": t.placement\n });\n}\nvar VI, Dv, xv = S(() => {\n Ze();\n Ya();\n bt();\n Zt();\n Ga();\n vr();\n Xa();\n wr();\n VI = {\n top: \"auto\",\n right: \"auto\",\n bottom: \"auto\",\n left: \"auto\"\n };\n o(jI, \"roundOffsetsByDPR\");\n o(yv, \"mapToStyles\");\n o(WI, \"computeStyles\");\n Dv = {\n name: \"computeStyles\",\n enabled: !0,\n phase: \"beforeWrite\",\n fn: WI,\n data: {}\n };\n});\n\n// ../node_modules/@popperjs/core/lib/modifiers/eventListeners.js\nfunction qI(e) {\n var t = e.state, r = e.instance, n = e.options, a = n.scroll, i = a === void 0 ? !0 : a, l = n.resize, u = l === void 0 ? !0 : l, c = Q(t.\n elements.popper), p = [].concat(t.scrollParents.reference, t.scrollParents.popper);\n return i && p.forEach(function(d) {\n d.addEventListener(\"scroll\", r.update, Vl);\n }), u && c.addEventListener(\"resize\", r.update, Vl), function() {\n i && p.forEach(function(d) {\n d.removeEventListener(\"scroll\", r.update, Vl);\n }), u && c.removeEventListener(\"resize\", r.update, Vl);\n };\n}\nvar Vl, Cv, Ev = S(() => {\n bt();\n Vl = {\n passive: !0\n };\n o(qI, \"effect\");\n Cv = {\n name: \"eventListeners\",\n enabled: !0,\n phase: \"write\",\n fn: /* @__PURE__ */ o(function() {\n }, \"fn\"),\n effect: qI,\n data: {}\n };\n});\n\n// ../node_modules/@popperjs/core/lib/utils/getOppositePlacement.js\nfunction Ka(e) {\n return e.replace(/left|right|bottom|top/g, function(t) {\n return UI[t];\n });\n}\nvar UI, Rv = S(() => {\n UI = {\n left: \"right\",\n right: \"left\",\n bottom: \"top\",\n top: \"bottom\"\n };\n o(Ka, \"getOppositePlacement\");\n});\n\n// ../node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js\nfunction jl(e) {\n return e.replace(/start|end/g, function(t) {\n return GI[t];\n });\n}\nvar GI, Sv = S(() => {\n GI = {\n start: \"end\",\n end: \"start\"\n };\n o(jl, \"getOppositeVariationPlacement\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js\nfunction ln(e) {\n var t = Q(e), r = t.pageXOffset, n = t.pageYOffset;\n return {\n scrollLeft: r,\n scrollTop: n\n };\n}\nvar Wl = S(() => {\n bt();\n o(ln, \"getWindowScroll\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js\nfunction sn(e) {\n return ut(ke(e)).left + ln(e).scrollLeft;\n}\nvar ql = S(() => {\n Ua();\n Zt();\n Wl();\n o(sn, \"getWindowScrollBarX\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js\nfunction x1(e, t) {\n var r = Q(e), n = ke(e), a = r.visualViewport, i = n.clientWidth, l = n.clientHeight, u = 0, c = 0;\n if (a) {\n i = a.width, l = a.height;\n var p = Uo();\n (p || !p && t === \"fixed\") && (u = a.offsetLeft, c = a.offsetTop);\n }\n return {\n width: i,\n height: l,\n x: u + sn(e),\n y: c\n };\n}\nvar Av = S(() => {\n bt();\n Zt();\n ql();\n m1();\n o(x1, \"getViewportRect\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js\nfunction C1(e) {\n var t, r = ke(e), n = ln(e), a = (t = e.ownerDocument) == null ? void 0 : t.body, i = yt(r.scrollWidth, r.clientWidth, a ? a.scrollWidth :\n 0, a ? a.clientWidth : 0), l = yt(r.scrollHeight, r.clientHeight, a ? a.scrollHeight : 0, a ? a.clientHeight : 0), u = -n.scrollLeft + sn(\n e), c = -n.scrollTop;\n return He(a || r).direction === \"rtl\" && (u += yt(r.clientWidth, a ? a.clientWidth : 0) - i), {\n width: i,\n height: l,\n x: u,\n y: c\n };\n}\nvar Fv = S(() => {\n Zt();\n Ga();\n ql();\n Wl();\n wr();\n o(C1, \"getDocumentRect\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js\nfunction un(e) {\n var t = He(e), r = t.overflow, n = t.overflowX, a = t.overflowY;\n return /auto|scroll|overlay|hidden/.test(r + a + n);\n}\nvar Ul = S(() => {\n Ga();\n o(un, \"isScrollParent\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js\nfunction Gl(e) {\n return [\"html\", \"body\", \"#document\"].indexOf(xe(e)) >= 0 ? e.ownerDocument.body : ge(e) && un(e) ? e : Gl(Jt(e));\n}\nvar kv = S(() => {\n Yo();\n Ul();\n gr();\n Je();\n o(Gl, \"getScrollParent\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js\nfunction br(e, t) {\n var r;\n t === void 0 && (t = []);\n var n = Gl(e), a = n === ((r = e.ownerDocument) == null ? void 0 : r.body), i = Q(n), l = a ? [i].concat(i.visualViewport || [], un(n) ? n :\n []) : n, u = t.concat(l);\n return a ? u : (\n // $FlowFixMe[incompatible-call]: isBody tells us target will be an HTMLElement here\n u.concat(br(Jt(l)))\n );\n}\nvar E1 = S(() => {\n kv();\n Yo();\n bt();\n Ul();\n o(br, \"listScrollParents\");\n});\n\n// ../node_modules/@popperjs/core/lib/utils/rectToClientRect.js\nfunction Za(e) {\n return Object.assign({}, e, {\n left: e.x,\n top: e.y,\n right: e.x + e.width,\n bottom: e.y + e.height\n });\n}\nvar R1 = S(() => {\n o(Za, \"rectToClientRect\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js\nfunction YI(e, t) {\n var r = ut(e, !1, t === \"fixed\");\n return r.top = r.top + e.clientTop, r.left = r.left + e.clientLeft, r.bottom = r.top + e.clientHeight, r.right = r.left + e.clientWidth, r.\n width = e.clientWidth, r.height = e.clientHeight, r.x = r.left, r.y = r.top, r;\n}\nfunction Lv(e, t, r) {\n return t === zl ? Za(x1(e, r)) : st(t) ? YI(t, r) : Za(C1(ke(e)));\n}\nfunction XI(e) {\n var t = br(Jt(e)), r = [\"absolute\", \"fixed\"].indexOf(He(e).position) >= 0, n = r && ge(e) ? Dt(e) : e;\n return st(n) ? t.filter(function(a) {\n return st(a) && Go(a, n) && xe(a) !== \"body\";\n }) : [];\n}\nfunction S1(e, t, r, n) {\n var a = t === \"clippingParents\" ? XI(e) : [].concat(t), i = [].concat(a, [r]), l = i[0], u = i.reduce(function(c, p) {\n var d = Lv(e, p, n);\n return c.top = yt(d.top, c.top), c.right = rn(d.right, c.right), c.bottom = rn(d.bottom, c.bottom), c.left = yt(d.left, c.left), c;\n }, Lv(e, l, n));\n return u.width = u.right - u.left, u.height = u.bottom - u.top, u.x = u.left, u.y = u.top, u;\n}\nvar Tv = S(() => {\n Ze();\n Av();\n Fv();\n E1();\n Ya();\n Zt();\n Ga();\n Je();\n Ua();\n Yo();\n g1();\n gr();\n R1();\n wr();\n o(YI, \"getInnerBoundingClientRect\");\n o(Lv, \"getClientRectFromMixedType\");\n o(XI, \"getClippingParents\");\n o(S1, \"getClippingRect\");\n});\n\n// ../node_modules/@popperjs/core/lib/utils/computeOffsets.js\nfunction Jo(e) {\n var t = e.reference, r = e.element, n = e.placement, a = n ? Ce(n) : null, i = n ? ct(n) : null, l = t.x + t.width / 2 - r.width / 2, u = t.\n y + t.height / 2 - r.height / 2, c;\n switch (a) {\n case ae:\n c = {\n x: l,\n y: t.y - r.height\n };\n break;\n case me:\n c = {\n x: l,\n y: t.y + t.height\n };\n break;\n case ce:\n c = {\n x: t.x + t.width,\n y: u\n };\n break;\n case ie:\n c = {\n x: t.x - r.width,\n y: u\n };\n break;\n default:\n c = {\n x: t.x,\n y: t.y\n };\n }\n var p = a ? an(a) : null;\n if (p != null) {\n var d = p === \"y\" ? \"height\" : \"width\";\n switch (i) {\n case Xt:\n c[p] = c[p] - (t[d] / 2 - r[d] / 2);\n break;\n case tn:\n c[p] = c[p] + (t[d] / 2 - r[d] / 2);\n break;\n default:\n }\n }\n return c;\n}\nvar A1 = S(() => {\n vr();\n Xa();\n $l();\n Ze();\n o(Jo, \"computeOffsets\");\n});\n\n// ../node_modules/@popperjs/core/lib/utils/detectOverflow.js\nfunction xt(e, t) {\n t === void 0 && (t = {});\n var r = t, n = r.placement, a = n === void 0 ? e.placement : n, i = r.strategy, l = i === void 0 ? e.strategy : i, u = r.boundary, c = u ===\n void 0 ? cv : u, p = r.rootBoundary, d = p === void 0 ? zl : p, h = r.elementContext, f = h === void 0 ? ja : h, g = r.altBoundary, w = g ===\n void 0 ? !1 : g, m = r.padding, v = m === void 0 ? 0 : m, y = Ko(typeof v != \"number\" ? v : Zo(v, mr)), b = f === ja ? pv : ja, D = e.rects.\n popper, x = e.elements[w ? b : f], C = S1(st(x) ? x : x.contextElement || ke(e.elements.popper), c, d, l), E = ut(e.elements.reference), R = Jo(\n {\n reference: E,\n element: D,\n strategy: \"absolute\",\n placement: a\n }), F = Za(Object.assign({}, D, R)), A = f === ja ? F : E, k = {\n top: C.top - A.top + y.top,\n bottom: A.bottom - C.bottom + y.bottom,\n left: C.left - A.left + y.left,\n right: A.right - C.right + y.right\n }, B = e.modifiersData.offset;\n if (f === ja && B) {\n var j = B[a];\n Object.keys(k).forEach(function(V) {\n var ee = [ce, me].indexOf(V) >= 0 ? 1 : -1, I = [ae, me].indexOf(V) >= 0 ? \"y\" : \"x\";\n k[V] += j[I] * ee;\n });\n }\n return k;\n}\nvar Qo = S(() => {\n Tv();\n Zt();\n Ua();\n A1();\n R1();\n Ze();\n Je();\n y1();\n D1();\n o(xt, \"detectOverflow\");\n});\n\n// ../node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js\nfunction F1(e, t) {\n t === void 0 && (t = {});\n var r = t, n = r.placement, a = r.boundary, i = r.rootBoundary, l = r.padding, u = r.flipVariations, c = r.allowedAutoPlacements, p = c ===\n void 0 ? Ol : c, d = ct(n), h = d ? u ? f1 : f1.filter(function(w) {\n return ct(w) === d;\n }) : mr, f = h.filter(function(w) {\n return p.indexOf(w) >= 0;\n });\n f.length === 0 && (f = h);\n var g = f.reduce(function(w, m) {\n return w[m] = xt(e, {\n placement: m,\n boundary: a,\n rootBoundary: i,\n padding: l\n })[Ce(m)], w;\n }, {});\n return Object.keys(g).sort(function(w, m) {\n return g[w] - g[m];\n });\n}\nvar Iv = S(() => {\n Xa();\n Ze();\n Qo();\n vr();\n o(F1, \"computeAutoPlacement\");\n});\n\n// ../node_modules/@popperjs/core/lib/modifiers/flip.js\nfunction KI(e) {\n if (Ce(e) === Hl)\n return [];\n var t = Ka(e);\n return [jl(e), t, jl(t)];\n}\nfunction ZI(e) {\n var t = e.state, r = e.options, n = e.name;\n if (!t.modifiersData[n]._skip) {\n for (var a = r.mainAxis, i = a === void 0 ? !0 : a, l = r.altAxis, u = l === void 0 ? !0 : l, c = r.fallbackPlacements, p = r.padding, d = r.\n boundary, h = r.rootBoundary, f = r.altBoundary, g = r.flipVariations, w = g === void 0 ? !0 : g, m = r.allowedAutoPlacements, v = t.options.\n placement, y = Ce(v), b = y === v, D = c || (b || !w ? [Ka(v)] : KI(v)), x = [v].concat(D).reduce(function(Ee, ve) {\n return Ee.concat(Ce(ve) === Hl ? F1(t, {\n placement: ve,\n boundary: d,\n rootBoundary: h,\n padding: p,\n flipVariations: w,\n allowedAutoPlacements: m\n }) : ve);\n }, []), C = t.rects.reference, E = t.rects.popper, R = /* @__PURE__ */ new Map(), F = !0, A = x[0], k = 0; k < x.length; k++) {\n var B = x[k], j = Ce(B), V = ct(B) === Xt, ee = [ae, me].indexOf(j) >= 0, I = ee ? \"width\" : \"height\", T = xt(t, {\n placement: B,\n boundary: d,\n rootBoundary: h,\n altBoundary: f,\n padding: p\n }), P = ee ? V ? ce : ie : V ? me : ae;\n C[I] > E[I] && (P = Ka(P));\n var q = Ka(P), $ = [];\n if (i && $.push(T[j] <= 0), u && $.push(T[P] <= 0, T[q] <= 0), $.every(function(Ee) {\n return Ee;\n })) {\n A = B, F = !1;\n break;\n }\n R.set(B, $);\n }\n if (F)\n for (var U = w ? 3 : 1, H = /* @__PURE__ */ o(function(ve) {\n var Le = x.find(function(Oe) {\n var Ne = R.get(Oe);\n if (Ne)\n return Ne.slice(0, ve).every(function(no) {\n return no;\n });\n });\n if (Le)\n return A = Le, \"break\";\n }, \"_loop\"), X = U; X > 0; X--) {\n var ze = H(X);\n if (ze === \"break\") break;\n }\n t.placement !== A && (t.modifiersData[n]._skip = !0, t.placement = A, t.reset = !0);\n }\n}\nvar Bv, Mv = S(() => {\n Rv();\n vr();\n Sv();\n Qo();\n Iv();\n Ze();\n Xa();\n o(KI, \"getExpandedFallbackPlacements\");\n o(ZI, \"flip\");\n Bv = {\n name: \"flip\",\n enabled: !0,\n phase: \"main\",\n fn: ZI,\n requiresIfExists: [\"offset\"],\n data: {\n _skip: !1\n }\n };\n});\n\n// ../node_modules/@popperjs/core/lib/modifiers/hide.js\nfunction _v(e, t, r) {\n return r === void 0 && (r = {\n x: 0,\n y: 0\n }), {\n top: e.top - t.height - r.y,\n right: e.right - t.width + r.x,\n bottom: e.bottom - t.height + r.y,\n left: e.left - t.width - r.x\n };\n}\nfunction Pv(e) {\n return [ae, ce, me, ie].some(function(t) {\n return e[t] >= 0;\n });\n}\nfunction JI(e) {\n var t = e.state, r = e.name, n = t.rects.reference, a = t.rects.popper, i = t.modifiersData.preventOverflow, l = xt(t, {\n elementContext: \"reference\"\n }), u = xt(t, {\n altBoundary: !0\n }), c = _v(l, n), p = _v(u, a, i), d = Pv(c), h = Pv(p);\n t.modifiersData[r] = {\n referenceClippingOffsets: c,\n popperEscapeOffsets: p,\n isReferenceHidden: d,\n hasPopperEscaped: h\n }, t.attributes.popper = Object.assign({}, t.attributes.popper, {\n \"data-popper-reference-hidden\": d,\n \"data-popper-escaped\": h\n });\n}\nvar Hv, zv = S(() => {\n Ze();\n Qo();\n o(_v, \"getSideOffsets\");\n o(Pv, \"isAnySideFullyClipped\");\n o(JI, \"hide\");\n Hv = {\n name: \"hide\",\n enabled: !0,\n phase: \"main\",\n requiresIfExists: [\"preventOverflow\"],\n fn: JI\n };\n});\n\n// ../node_modules/@popperjs/core/lib/modifiers/offset.js\nfunction QI(e, t, r) {\n var n = Ce(e), a = [ie, ae].indexOf(n) >= 0 ? -1 : 1, i = typeof r == \"function\" ? r(Object.assign({}, t, {\n placement: e\n })) : r, l = i[0], u = i[1];\n return l = l || 0, u = (u || 0) * a, [ie, ce].indexOf(n) >= 0 ? {\n x: u,\n y: l\n } : {\n x: l,\n y: u\n };\n}\nfunction eB(e) {\n var t = e.state, r = e.options, n = e.name, a = r.offset, i = a === void 0 ? [0, 0] : a, l = Ol.reduce(function(d, h) {\n return d[h] = QI(h, t.rects, i), d;\n }, {}), u = l[t.placement], c = u.x, p = u.y;\n t.modifiersData.popperOffsets != null && (t.modifiersData.popperOffsets.x += c, t.modifiersData.popperOffsets.y += p), t.modifiersData[n] =\n l;\n}\nvar Ov, Nv = S(() => {\n vr();\n Ze();\n o(QI, \"distanceAndSkiddingToXY\");\n o(eB, \"offset\");\n Ov = {\n name: \"offset\",\n enabled: !0,\n phase: \"main\",\n requires: [\"popperOffsets\"],\n fn: eB\n };\n});\n\n// ../node_modules/@popperjs/core/lib/modifiers/popperOffsets.js\nfunction tB(e) {\n var t = e.state, r = e.name;\n t.modifiersData[r] = Jo({\n reference: t.rects.reference,\n element: t.rects.popper,\n strategy: \"absolute\",\n placement: t.placement\n });\n}\nvar $v, Vv = S(() => {\n A1();\n o(tB, \"popperOffsets\");\n $v = {\n name: \"popperOffsets\",\n enabled: !0,\n phase: \"read\",\n fn: tB,\n data: {}\n };\n});\n\n// ../node_modules/@popperjs/core/lib/utils/getAltAxis.js\nfunction k1(e) {\n return e === \"x\" ? \"y\" : \"x\";\n}\nvar jv = S(() => {\n o(k1, \"getAltAxis\");\n});\n\n// ../node_modules/@popperjs/core/lib/modifiers/preventOverflow.js\nfunction rB(e) {\n var t = e.state, r = e.options, n = e.name, a = r.mainAxis, i = a === void 0 ? !0 : a, l = r.altAxis, u = l === void 0 ? !1 : l, c = r.boundary,\n p = r.rootBoundary, d = r.altBoundary, h = r.padding, f = r.tether, g = f === void 0 ? !0 : f, w = r.tetherOffset, m = w === void 0 ? 0 : w,\n v = xt(t, {\n boundary: c,\n rootBoundary: p,\n padding: h,\n altBoundary: d\n }), y = Ce(t.placement), b = ct(t.placement), D = !b, x = an(y), C = k1(x), E = t.modifiersData.popperOffsets, R = t.rects.reference, F = t.\n rects.popper, A = typeof m == \"function\" ? m(Object.assign({}, t.rects, {\n placement: t.placement\n })) : m, k = typeof A == \"number\" ? {\n mainAxis: A,\n altAxis: A\n } : Object.assign({\n mainAxis: 0,\n altAxis: 0\n }, A), B = t.modifiersData.offset ? t.modifiersData.offset[t.placement] : null, j = {\n x: 0,\n y: 0\n };\n if (E) {\n if (i) {\n var V, ee = x === \"y\" ? ae : ie, I = x === \"y\" ? me : ce, T = x === \"y\" ? \"height\" : \"width\", P = E[x], q = P + v[ee], $ = P - v[I], U = g ?\n -F[T] / 2 : 0, H = b === Xt ? R[T] : F[T], X = b === Xt ? -F[T] : -R[T], ze = t.elements.arrow, Ee = g && ze ? nn(ze) : {\n width: 0,\n height: 0\n }, ve = t.modifiersData[\"arrow#persistent\"] ? t.modifiersData[\"arrow#persistent\"].padding : Xo(), Le = ve[ee], Oe = ve[I], Ne = on(0, R[T],\n Ee[T]), no = D ? R[T] / 2 - U - Ne - Le - k.mainAxis : H - Ne - Le - k.mainAxis, ao = D ? -R[T] / 2 + U + Ne + Oe + k.mainAxis : X + Ne +\n Oe + k.mainAxis, as = t.elements.arrow && Dt(t.elements.arrow), H3 = as ? x === \"y\" ? as.clientTop || 0 : as.clientLeft || 0 : 0, ip = (V =\n B?.[x]) != null ? V : 0, z3 = P + no - ip - H3, O3 = P + ao - ip, lp = on(g ? rn(q, z3) : q, P, g ? yt($, O3) : $);\n E[x] = lp, j[x] = lp - P;\n }\n if (u) {\n var sp, N3 = x === \"x\" ? ae : ie, $3 = x === \"x\" ? me : ce, Cr = E[C], ai = C === \"y\" ? \"height\" : \"width\", up = Cr + v[N3], cp = Cr -\n v[$3], os = [ae, ie].indexOf(y) !== -1, pp = (sp = B?.[C]) != null ? sp : 0, dp = os ? up : Cr - R[ai] - F[ai] - pp + k.altAxis, fp = os ?\n Cr + R[ai] + F[ai] - pp - k.altAxis : cp, hp = g && os ? vv(dp, Cr, fp) : on(g ? dp : up, Cr, g ? fp : cp);\n E[C] = hp, j[C] = hp - Cr;\n }\n t.modifiersData[n] = j;\n }\n}\nvar Wv, qv = S(() => {\n Ze();\n vr();\n $l();\n jv();\n w1();\n Nl();\n Ya();\n Qo();\n Xa();\n b1();\n wr();\n o(rB, \"preventOverflow\");\n Wv = {\n name: \"preventOverflow\",\n enabled: !0,\n phase: \"main\",\n fn: rB,\n requiresIfExists: [\"offset\"]\n };\n});\n\n// ../node_modules/@popperjs/core/lib/modifiers/index.js\nvar L1 = S(() => {\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js\nfunction T1(e) {\n return {\n scrollLeft: e.scrollLeft,\n scrollTop: e.scrollTop\n };\n}\nvar Uv = S(() => {\n o(T1, \"getHTMLElementScroll\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js\nfunction I1(e) {\n return e === Q(e) || !ge(e) ? ln(e) : T1(e);\n}\nvar Gv = S(() => {\n Wl();\n bt();\n Je();\n Uv();\n o(I1, \"getNodeScroll\");\n});\n\n// ../node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js\nfunction nB(e) {\n var t = e.getBoundingClientRect(), r = Kt(t.width) / e.offsetWidth || 1, n = Kt(t.height) / e.offsetHeight || 1;\n return r !== 1 || n !== 1;\n}\nfunction B1(e, t, r) {\n r === void 0 && (r = !1);\n var n = ge(t), a = ge(t) && nB(t), i = ke(t), l = ut(e, a, r), u = {\n scrollLeft: 0,\n scrollTop: 0\n }, c = {\n x: 0,\n y: 0\n };\n return (n || !n && !r) && ((xe(t) !== \"body\" || // https://github.com/popperjs/popper-core/issues/1078\n un(i)) && (u = I1(t)), ge(t) ? (c = ut(t, !0), c.x += t.clientLeft, c.y += t.clientTop) : i && (c.x = sn(i))), {\n x: l.left + u.scrollLeft - c.x,\n y: l.top + u.scrollTop - c.y,\n width: l.width,\n height: l.height\n };\n}\nvar Yv = S(() => {\n Ua();\n Gv();\n gr();\n Je();\n ql();\n Zt();\n Ul();\n wr();\n o(nB, \"isElementScaled\");\n o(B1, \"getCompositeRect\");\n});\n\n// ../node_modules/@popperjs/core/lib/utils/orderModifiers.js\nfunction aB(e) {\n var t = /* @__PURE__ */ new Map(), r = /* @__PURE__ */ new Set(), n = [];\n e.forEach(function(i) {\n t.set(i.name, i);\n });\n function a(i) {\n r.add(i.name);\n var l = [].concat(i.requires || [], i.requiresIfExists || []);\n l.forEach(function(u) {\n if (!r.has(u)) {\n var c = t.get(u);\n c && a(c);\n }\n }), n.push(i);\n }\n return o(a, \"sort\"), e.forEach(function(i) {\n r.has(i.name) || a(i);\n }), n;\n}\nfunction M1(e) {\n var t = aB(e);\n return dv.reduce(function(r, n) {\n return r.concat(t.filter(function(a) {\n return a.phase === n;\n }));\n }, []);\n}\nvar Xv = S(() => {\n Ze();\n o(aB, \"order\");\n o(M1, \"orderModifiers\");\n});\n\n// ../node_modules/@popperjs/core/lib/utils/debounce.js\nfunction _1(e) {\n var t;\n return function() {\n return t || (t = new Promise(function(r) {\n Promise.resolve().then(function() {\n t = void 0, r(e());\n });\n })), t;\n };\n}\nvar Kv = S(() => {\n o(_1, \"debounce\");\n});\n\n// ../node_modules/@popperjs/core/lib/utils/mergeByName.js\nfunction P1(e) {\n var t = e.reduce(function(r, n) {\n var a = r[n.name];\n return r[n.name] = a ? Object.assign({}, a, n, {\n options: Object.assign({}, a.options, n.options),\n data: Object.assign({}, a.data, n.data)\n }) : n, r;\n }, {});\n return Object.keys(t).map(function(r) {\n return t[r];\n });\n}\nvar Zv = S(() => {\n o(P1, \"mergeByName\");\n});\n\n// ../node_modules/@popperjs/core/lib/createPopper.js\nfunction Qv() {\n for (var e = arguments.length, t = new Array(e), r = 0; r < e; r++)\n t[r] = arguments[r];\n return !t.some(function(n) {\n return !(n && typeof n.getBoundingClientRect == \"function\");\n });\n}\nfunction e3(e) {\n e === void 0 && (e = {});\n var t = e, r = t.defaultModifiers, n = r === void 0 ? [] : r, a = t.defaultOptions, i = a === void 0 ? Jv : a;\n return /* @__PURE__ */ o(function(u, c, p) {\n p === void 0 && (p = i);\n var d = {\n placement: \"bottom\",\n orderedModifiers: [],\n options: Object.assign({}, Jv, i),\n modifiersData: {},\n elements: {\n reference: u,\n popper: c\n },\n attributes: {},\n styles: {}\n }, h = [], f = !1, g = {\n state: d,\n setOptions: /* @__PURE__ */ o(function(y) {\n var b = typeof y == \"function\" ? y(d.options) : y;\n m(), d.options = Object.assign({}, i, d.options, b), d.scrollParents = {\n reference: st(u) ? br(u) : u.contextElement ? br(u.contextElement) : [],\n popper: br(c)\n };\n var D = M1(P1([].concat(n, d.options.modifiers)));\n return d.orderedModifiers = D.filter(function(x) {\n return x.enabled;\n }), w(), g.update();\n }, \"setOptions\"),\n // Sync update – it will always be executed, even if not necessary. This\n // is useful for low frequency updates where sync behavior simplifies the\n // logic.\n // For high frequency updates (e.g. `resize` and `scroll` events), always\n // prefer the async Popper#update method\n forceUpdate: /* @__PURE__ */ o(function() {\n if (!f) {\n var y = d.elements, b = y.reference, D = y.popper;\n if (Qv(b, D)) {\n d.rects = {\n reference: B1(b, Dt(D), d.options.strategy === \"fixed\"),\n popper: nn(D)\n }, d.reset = !1, d.placement = d.options.placement, d.orderedModifiers.forEach(function(k) {\n return d.modifiersData[k.name] = Object.assign({}, k.data);\n });\n for (var x = 0; x < d.orderedModifiers.length; x++) {\n if (d.reset === !0) {\n d.reset = !1, x = -1;\n continue;\n }\n var C = d.orderedModifiers[x], E = C.fn, R = C.options, F = R === void 0 ? {} : R, A = C.name;\n typeof E == \"function\" && (d = E({\n state: d,\n options: F,\n name: A,\n instance: g\n }) || d);\n }\n }\n }\n }, \"forceUpdate\"),\n // Async and optimistically optimized update – it will not be executed if\n // not necessary (debounced to run at most once-per-tick)\n update: _1(function() {\n return new Promise(function(v) {\n g.forceUpdate(), v(d);\n });\n }),\n destroy: /* @__PURE__ */ o(function() {\n m(), f = !0;\n }, \"destroy\")\n };\n if (!Qv(u, c))\n return g;\n g.setOptions(p).then(function(v) {\n !f && p.onFirstUpdate && p.onFirstUpdate(v);\n });\n function w() {\n d.orderedModifiers.forEach(function(v) {\n var y = v.name, b = v.options, D = b === void 0 ? {} : b, x = v.effect;\n if (typeof x == \"function\") {\n var C = x({\n state: d,\n name: y,\n instance: g,\n options: D\n }), E = /* @__PURE__ */ o(function() {\n }, \"noopFn\");\n h.push(C || E);\n }\n });\n }\n o(w, \"runModifierEffects\");\n function m() {\n h.forEach(function(v) {\n return v();\n }), h = [];\n }\n return o(m, \"cleanupModifierEffects\"), g;\n }, \"createPopper\");\n}\nvar Jv, t3 = S(() => {\n Yv();\n Nl();\n E1();\n Ya();\n Xv();\n Kv();\n Zv();\n Je();\n Jv = {\n placement: \"bottom\",\n modifiers: [],\n strategy: \"absolute\"\n };\n o(Qv, \"areValidElements\");\n o(e3, \"popperGenerator\");\n});\n\n// ../node_modules/@popperjs/core/lib/popper.js\nvar oB, H1, r3 = S(() => {\n t3();\n Ev();\n Vv();\n xv();\n hv();\n Nv();\n Mv();\n qv();\n bv();\n zv();\n L1();\n oB = [Cv, $v, Dv, fv, Ov, Bv, Wv, wv, Hv], H1 = /* @__PURE__ */ e3({\n defaultModifiers: oB\n });\n});\n\n// ../node_modules/@popperjs/core/lib/index.js\nvar n3 = S(() => {\n Ze();\n L1();\n r3();\n});\n\n// ../node_modules/react-fast-compare/index.js\nvar o3 = M((mZ, a3) => {\n var iB = typeof Element < \"u\", lB = typeof Map == \"function\", sB = typeof Set == \"function\", uB = typeof ArrayBuffer == \"function\" && !!ArrayBuffer.\n isView;\n function Yl(e, t) {\n if (e === t) return !0;\n if (e && t && typeof e == \"object\" && typeof t == \"object\") {\n if (e.constructor !== t.constructor) return !1;\n var r, n, a;\n if (Array.isArray(e)) {\n if (r = e.length, r != t.length) return !1;\n for (n = r; n-- !== 0; )\n if (!Yl(e[n], t[n])) return !1;\n return !0;\n }\n var i;\n if (lB && e instanceof Map && t instanceof Map) {\n if (e.size !== t.size) return !1;\n for (i = e.entries(); !(n = i.next()).done; )\n if (!t.has(n.value[0])) return !1;\n for (i = e.entries(); !(n = i.next()).done; )\n if (!Yl(n.value[1], t.get(n.value[0]))) return !1;\n return !0;\n }\n if (sB && e instanceof Set && t instanceof Set) {\n if (e.size !== t.size) return !1;\n for (i = e.entries(); !(n = i.next()).done; )\n if (!t.has(n.value[0])) return !1;\n return !0;\n }\n if (uB && ArrayBuffer.isView(e) && ArrayBuffer.isView(t)) {\n if (r = e.length, r != t.length) return !1;\n for (n = r; n-- !== 0; )\n if (e[n] !== t[n]) return !1;\n return !0;\n }\n if (e.constructor === RegExp) return e.source === t.source && e.flags === t.flags;\n if (e.valueOf !== Object.prototype.valueOf && typeof e.valueOf == \"function\" && typeof t.valueOf == \"function\") return e.valueOf() ===\n t.valueOf();\n if (e.toString !== Object.prototype.toString && typeof e.toString == \"function\" && typeof t.toString == \"function\") return e.toString() ===\n t.toString();\n if (a = Object.keys(e), r = a.length, r !== Object.keys(t).length) return !1;\n for (n = r; n-- !== 0; )\n if (!Object.prototype.hasOwnProperty.call(t, a[n])) return !1;\n if (iB && e instanceof Element) return !1;\n for (n = r; n-- !== 0; )\n if (!((a[n] === \"_owner\" || a[n] === \"__v\" || a[n] === \"__o\") && e.$$typeof) && !Yl(e[a[n]], t[a[n]]))\n return !1;\n return !0;\n }\n return e !== e && t !== t;\n }\n o(Yl, \"equal\");\n a3.exports = /* @__PURE__ */ o(function(t, r) {\n try {\n return Yl(t, r);\n } catch (n) {\n if ((n.message || \"\").match(/stack|recursion/i))\n return console.warn(\"react-fast-compare cannot handle circular refs\"), !1;\n throw n;\n }\n }, \"isEqual\");\n});\n\n// ../node_modules/react-popper/lib/esm/usePopper.js\nimport * as yr from \"react\";\nimport * as i3 from \"react-dom\";\nvar l3, cB, z1, s3 = S(() => {\n n3();\n l3 = Re(o3());\n uv();\n cB = [], z1 = /* @__PURE__ */ o(function(t, r, n) {\n n === void 0 && (n = {});\n var a = yr.useRef(null), i = {\n onFirstUpdate: n.onFirstUpdate,\n placement: n.placement || \"bottom\",\n strategy: n.strategy || \"absolute\",\n modifiers: n.modifiers || cB\n }, l = yr.useState({\n styles: {\n popper: {\n position: i.strategy,\n left: \"0\",\n top: \"0\"\n },\n arrow: {\n position: \"absolute\"\n }\n },\n attributes: {}\n }), u = l[0], c = l[1], p = yr.useMemo(function() {\n return {\n name: \"updateState\",\n enabled: !0,\n phase: \"write\",\n fn: /* @__PURE__ */ o(function(g) {\n var w = g.state, m = Object.keys(w.elements);\n i3.flushSync(function() {\n c({\n styles: p1(m.map(function(v) {\n return [v, w.styles[v] || {}];\n })),\n attributes: p1(m.map(function(v) {\n return [v, w.attributes[v]];\n }))\n });\n });\n }, \"fn\"),\n requires: [\"computeStyles\"]\n };\n }, []), d = yr.useMemo(function() {\n var f = {\n onFirstUpdate: i.onFirstUpdate,\n placement: i.placement,\n strategy: i.strategy,\n modifiers: [].concat(i.modifiers, [p, {\n name: \"applyStyles\",\n enabled: !1\n }])\n };\n return (0, l3.default)(a.current, f) ? a.current || f : (a.current = f, f);\n }, [i.onFirstUpdate, i.placement, i.strategy, i.modifiers, p]), h = yr.useRef();\n return d1(function() {\n h.current && h.current.setOptions(d);\n }, [d]), d1(function() {\n if (!(t == null || r == null)) {\n var f = n.createPopper || H1, g = f(t, r, d);\n return h.current = g, function() {\n g.destroy(), h.current = null;\n };\n }\n }, [t, r, n.createPopper]), {\n state: h.current ? h.current.state : null,\n styles: u.styles,\n attributes: u.attributes,\n update: h.current ? h.current.update : null,\n forceUpdate: h.current ? h.current.forceUpdate : null\n };\n }, \"usePopper\");\n});\n\n// ../node_modules/react-popper/lib/esm/index.js\nvar u3 = S(() => {\n s3();\n});\n\n// ../node_modules/react-popper-tooltip/dist/esm/react-popper-tooltip.js\nimport * as W from \"react\";\nfunction d3(e) {\n var t = W.useRef(e);\n return t.current = e, W.useCallback(function() {\n return t.current;\n }, []);\n}\nfunction dB(e) {\n var t = e.initial, r = e.value, n = e.onChange, a = n === void 0 ? pB : n;\n if (t === void 0 && r === void 0)\n throw new TypeError('Either \"value\" or \"initial\" variable must be set. Now both are undefined');\n var i = W.useState(t), l = i[0], u = i[1], c = d3(l), p = W.useCallback(function(h) {\n var f = c(), g = typeof h == \"function\" ? h(f) : h;\n typeof g.persist == \"function\" && g.persist(), u(g), typeof a == \"function\" && a(g);\n }, [c, a]), d = r !== void 0;\n return [d ? r : l, d ? a : p];\n}\nfunction f3(e, t) {\n return e === void 0 && (e = 0), t === void 0 && (t = 0), function() {\n return {\n width: 0,\n height: 0,\n top: t,\n right: e,\n bottom: t,\n left: e,\n x: 0,\n y: 0,\n toJSON: /* @__PURE__ */ o(function() {\n return null;\n }, \"toJSON\")\n };\n };\n}\nfunction h3(e, t) {\n var r, n, a;\n e === void 0 && (e = {}), t === void 0 && (t = {});\n var i = Object.keys(p3).reduce(function(I, T) {\n var P;\n return we({}, I, (P = {}, P[T] = I[T] !== void 0 ? I[T] : p3[T], P));\n }, e), l = W.useMemo(\n function() {\n return [{\n name: \"offset\",\n options: {\n offset: i.offset\n }\n }];\n },\n // eslint-disable-next-line react-hooks/exhaustive-deps\n Array.isArray(i.offset) ? i.offset : []\n ), u = we({}, t, {\n placement: t.placement || i.placement,\n modifiers: t.modifiers || l\n }), c = W.useState(null), p = c[0], d = c[1], h = W.useState(null), f = h[0], g = h[1], w = dB({\n initial: i.defaultVisible,\n value: i.visible,\n onChange: i.onVisibleChange\n }), m = w[0], v = w[1], y = W.useRef();\n W.useEffect(function() {\n return function() {\n return clearTimeout(y.current);\n };\n }, []);\n var b = z1(i.followCursor ? c3 : p, f, u), D = b.styles, x = b.attributes, C = mn(b, fB), E = C.update, R = d3({\n visible: m,\n triggerRef: p,\n tooltipRef: f,\n finalConfig: i\n }), F = W.useCallback(\n function(I) {\n return Array.isArray(i.trigger) ? i.trigger.includes(I) : i.trigger === I;\n },\n // eslint-disable-next-line react-hooks/exhaustive-deps\n Array.isArray(i.trigger) ? i.trigger : [i.trigger]\n ), A = W.useCallback(function() {\n clearTimeout(y.current), y.current = window.setTimeout(function() {\n return v(!1);\n }, i.delayHide);\n }, [i.delayHide, v]), k = W.useCallback(function() {\n clearTimeout(y.current), y.current = window.setTimeout(function() {\n return v(!0);\n }, i.delayShow);\n }, [i.delayShow, v]), B = W.useCallback(function() {\n R().visible ? A() : k();\n }, [R, A, k]);\n W.useEffect(function() {\n if (R().finalConfig.closeOnOutsideClick) {\n var I = /* @__PURE__ */ o(function(P) {\n var q, $ = R(), U = $.tooltipRef, H = $.triggerRef, X = (P.composedPath == null || (q = P.composedPath()) == null ? void 0 : q[0]) ||\n P.target;\n X instanceof Node && U != null && H != null && !U.contains(X) && !H.contains(X) && A();\n }, \"handleClickOutside\");\n return document.addEventListener(\"mousedown\", I), function() {\n return document.removeEventListener(\"mousedown\", I);\n };\n }\n }, [R, A]), W.useEffect(function() {\n if (!(p == null || !F(\"click\")))\n return p.addEventListener(\"click\", B), function() {\n return p.removeEventListener(\"click\", B);\n };\n }, [p, F, B]), W.useEffect(function() {\n if (!(p == null || !F(\"double-click\")))\n return p.addEventListener(\"dblclick\", B), function() {\n return p.removeEventListener(\"dblclick\", B);\n };\n }, [p, F, B]), W.useEffect(function() {\n if (!(p == null || !F(\"right-click\"))) {\n var I = /* @__PURE__ */ o(function(P) {\n P.preventDefault(), B();\n }, \"preventDefaultAndToggle\");\n return p.addEventListener(\"contextmenu\", I), function() {\n return p.removeEventListener(\"contextmenu\", I);\n };\n }\n }, [p, F, B]), W.useEffect(function() {\n if (!(p == null || !F(\"focus\")))\n return p.addEventListener(\"focus\", k), p.addEventListener(\"blur\", A), function() {\n p.removeEventListener(\"focus\", k), p.removeEventListener(\"blur\", A);\n };\n }, [p, F, k, A]), W.useEffect(function() {\n if (!(p == null || !F(\"hover\")))\n return p.addEventListener(\"mouseenter\", k), p.addEventListener(\"mouseleave\", A), function() {\n p.removeEventListener(\"mouseenter\", k), p.removeEventListener(\"mouseleave\", A);\n };\n }, [p, F, k, A]), W.useEffect(function() {\n if (!(f == null || !F(\"hover\") || !R().finalConfig.interactive))\n return f.addEventListener(\"mouseenter\", k), f.addEventListener(\"mouseleave\", A), function() {\n f.removeEventListener(\"mouseenter\", k), f.removeEventListener(\"mouseleave\", A);\n };\n }, [f, F, k, A, R]);\n var j = C == null || (r = C.state) == null || (n = r.modifiersData) == null || (a = n.hide) == null ? void 0 : a.isReferenceHidden;\n W.useEffect(function() {\n i.closeOnTriggerHidden && j && A();\n }, [i.closeOnTriggerHidden, A, j]), W.useEffect(function() {\n if (!i.followCursor || p == null) return;\n function I(T) {\n var P = T.clientX, q = T.clientY;\n c3.getBoundingClientRect = f3(P, q), E?.();\n }\n return o(I, \"setMousePosition\"), p.addEventListener(\"mousemove\", I), function() {\n return p.removeEventListener(\"mousemove\", I);\n };\n }, [i.followCursor, p, E]), W.useEffect(function() {\n if (!(f == null || E == null || i.mutationObserverOptions == null)) {\n var I = new MutationObserver(E);\n return I.observe(f, i.mutationObserverOptions), function() {\n return I.disconnect();\n };\n }\n }, [i.mutationObserverOptions, f, E]);\n var V = /* @__PURE__ */ o(function(T) {\n return T === void 0 && (T = {}), we({}, T, {\n style: we({}, T.style, D.popper)\n }, x.popper, {\n \"data-popper-interactive\": i.interactive\n });\n }, \"getTooltipProps\"), ee = /* @__PURE__ */ o(function(T) {\n return T === void 0 && (T = {}), we({}, T, x.arrow, {\n style: we({}, T.style, D.arrow),\n \"data-popper-arrow\": !0\n });\n }, \"getArrowProps\");\n return we({\n getArrowProps: ee,\n getTooltipProps: V,\n setTooltipRef: g,\n setTriggerRef: d,\n tooltipRef: f,\n triggerRef: p,\n visible: m\n }, C);\n}\nvar pB, fB, c3, p3, m3 = S(() => {\n pi();\n io();\n u3();\n o(d3, \"useGetLatest\");\n pB = /* @__PURE__ */ o(function() {\n }, \"noop\");\n o(dB, \"useControlledState\");\n o(f3, \"generateBoundingClientRect\");\n fB = [\"styles\", \"attributes\"], c3 = {\n getBoundingClientRect: f3()\n }, p3 = {\n closeOnOutsideClick: !0,\n closeOnTriggerHidden: !1,\n defaultVisible: !1,\n delayHide: 0,\n delayShow: 0,\n followCursor: !1,\n interactive: !1,\n mutationObserverOptions: {\n attributes: !0,\n childList: !0,\n subtree: !0\n },\n offset: [0, 6],\n trigger: \"hover\"\n };\n o(h3, \"usePopperTooltip\");\n});\n\n// src/components/components/tooltip/Tooltip.tsx\nimport O1 from \"react\";\nimport { lighten as ei, styled as g3 } from \"@storybook/core/theming\";\nvar v3, pt, Dr, hB, mB, N1, w3 = S(() => {\n \"use strict\";\n v3 = Re(uo(), 1), pt = (0, v3.default)(1e3)(\n (e, t, r, n = 0) => t.split(\"-\")[0] === e ? r : n\n ), Dr = 8, hB = g3.div(\n {\n position: \"absolute\",\n borderStyle: \"solid\"\n },\n ({ placement: e }) => {\n let t = 0, r = 0;\n switch (!0) {\n case (e.startsWith(\"left\") || e.startsWith(\"right\")): {\n r = 8;\n break;\n }\n case (e.startsWith(\"top\") || e.startsWith(\"bottom\")): {\n t = 8;\n break;\n }\n default:\n }\n return { transform: `translate3d(${t}px, ${r}px, 0px)` };\n },\n ({ theme: e, color: t, placement: r }) => ({\n bottom: `${pt(\"top\", r, `${Dr * -1}px`, \"auto\")}`,\n top: `${pt(\"bottom\", r, `${Dr * -1}px`, \"auto\")}`,\n right: `${pt(\"left\", r, `${Dr * -1}px`, \"auto\")}`,\n left: `${pt(\"right\", r, `${Dr * -1}px`, \"auto\")}`,\n borderBottomWidth: `${pt(\"top\", r, \"0\", Dr)}px`,\n borderTopWidth: `${pt(\"bottom\", r, \"0\", Dr)}px`,\n borderRightWidth: `${pt(\"left\", r, \"0\", Dr)}px`,\n borderLeftWidth: `${pt(\"right\", r, \"0\", Dr)}px`,\n borderTopColor: pt(\n \"top\",\n r,\n e.color[t] || t || e.base === \"light\" ? ei(e.background.app) : e.background.app,\n \"transparent\"\n ),\n borderBottomColor: pt(\n \"bottom\",\n r,\n e.color[t] || t || e.base === \"light\" ? ei(e.background.app) : e.background.app,\n \"transparent\"\n ),\n borderLeftColor: pt(\n \"left\",\n r,\n e.color[t] || t || e.base === \"light\" ? ei(e.background.app) : e.background.app,\n \"transparent\"\n ),\n borderRightColor: pt(\n \"right\",\n r,\n e.color[t] || t || e.base === \"light\" ? ei(e.background.app) : e.background.app,\n \"transparent\"\n )\n })\n ), mB = g3.div(\n ({ hidden: e }) => ({\n display: e ? \"none\" : \"inline-block\",\n zIndex: 2147483647\n }),\n ({ theme: e, color: t, hasChrome: r }) => r ? {\n background: t && e.color[t] || t || e.base === \"light\" ? ei(e.background.app) : e.background.app,\n filter: `\n drop-shadow(0px 5px 5px rgba(0,0,0,0.05))\n drop-shadow(0 1px 3px rgba(0,0,0,0.1))\n `,\n borderRadius: e.appBorderRadius + 2,\n fontSize: e.typography.size.s1\n } : {}\n ), N1 = O1.forwardRef(\n ({\n placement: e = \"top\",\n hasChrome: t = !0,\n children: r,\n arrowProps: n = {},\n tooltipRef: a,\n color: i,\n withArrows: l,\n ...u\n }, c) => /* @__PURE__ */ O1.createElement(mB, { \"data-testid\": \"tooltip\", hasChrome: t, ref: c, ...u, color: i }, t && l && /* @__PURE__ */ O1.\n createElement(hB, { placement: e, ...n, color: i }), r)\n );\n N1.displayName = \"Tooltip\";\n});\n\n// src/components/components/tooltip/WithTooltip.tsx\nvar V1 = {};\nfn(V1, {\n WithToolTipState: () => $1,\n WithTooltip: () => $1,\n WithTooltipPure: () => y3\n});\nimport ti, { useCallback as gB, useEffect as vB, useState as wB } from \"react\";\nimport bB from \"react-dom\";\nimport { styled as b3 } from \"@storybook/core/theming\";\nvar Xl, yB, DB, y3, $1, Kl = S(() => {\n \"use strict\";\n ci();\n m3();\n w3();\n ({ document: Xl } = hn), yB = b3.div`\n display: inline-block;\n cursor: ${(e) => (\n // @ts-expect-error (non strict)\n e.trigger === \"hover\" || e.trigger.includes(\"hover\") ? \"default\" : \"pointer\"\n )};\n`, DB = b3.g`\n cursor: ${(e) => (\n // @ts-expect-error (non strict)\n e.trigger === \"hover\" || e.trigger.includes(\"hover\") ? \"default\" : \"pointer\"\n )};\n`, y3 = /* @__PURE__ */ o(({\n svg: e = !1,\n trigger: t = \"click\",\n closeOnOutsideClick: r = !1,\n placement: n = \"top\",\n modifiers: a = [\n {\n name: \"preventOverflow\",\n options: {\n padding: 8\n }\n },\n {\n name: \"offset\",\n options: {\n offset: [8, 8]\n }\n },\n {\n name: \"arrow\",\n options: {\n padding: 8\n }\n }\n ],\n hasChrome: i = !0,\n defaultVisible: l = !1,\n withArrows: u,\n offset: c,\n tooltip: p,\n children: d,\n closeOnTriggerHidden: h,\n mutationObserverOptions: f,\n delayHide: g,\n visible: w,\n interactive: m,\n delayShow: v,\n strategy: y,\n followCursor: b,\n onVisibleChange: D,\n ...x\n }) => {\n let C = e ? DB : yB, {\n getArrowProps: E,\n getTooltipProps: R,\n setTooltipRef: F,\n setTriggerRef: A,\n visible: k,\n state: B\n } = h3(\n {\n trigger: t,\n placement: n,\n defaultVisible: l,\n delayHide: g,\n interactive: m,\n closeOnOutsideClick: r,\n closeOnTriggerHidden: h,\n onVisibleChange: D,\n delayShow: v,\n followCursor: b,\n mutationObserverOptions: f,\n visible: w,\n offset: c\n },\n {\n modifiers: a,\n strategy: y\n }\n ), j = k ? /* @__PURE__ */ ti.createElement(\n N1,\n {\n placement: B?.placement,\n ref: F,\n hasChrome: i,\n arrowProps: E(),\n withArrows: u,\n ...R()\n },\n typeof p == \"function\" ? p({ onHide: /* @__PURE__ */ o(() => D(!1), \"onHide\") }) : p\n ) : null;\n return /* @__PURE__ */ ti.createElement(ti.Fragment, null, /* @__PURE__ */ ti.createElement(C, { trigger: t, ref: A, ...x }, d), k && bB.\n createPortal(j, Xl.body));\n }, \"WithTooltipPure\"), $1 = /* @__PURE__ */ o(({\n startOpen: e = !1,\n onVisibleChange: t,\n ...r\n }) => {\n let [n, a] = wB(e), i = gB(\n (l) => {\n t && t(l) === !1 || a(l);\n },\n [t]\n );\n return vB(() => {\n let l = /* @__PURE__ */ o(() => i(!1), \"hide\");\n Xl.addEventListener(\"keydown\", l, !1);\n let u = Array.from(Xl.getElementsByTagName(\"iframe\")), c = [];\n return u.forEach((p) => {\n let d = /* @__PURE__ */ o(() => {\n try {\n p.contentWindow.document && (p.contentWindow.document.addEventListener(\"click\", l), c.push(() => {\n try {\n p.contentWindow.document.removeEventListener(\"click\", l);\n } catch {\n }\n }));\n } catch {\n }\n }, \"bind\");\n d(), p.addEventListener(\"load\", d), c.push(() => {\n p.removeEventListener(\"load\", d);\n });\n }), () => {\n Xl.removeEventListener(\"keydown\", l), c.forEach((p) => {\n p();\n });\n };\n }), /* @__PURE__ */ ti.createElement(y3, { ...r, visible: n, onVisibleChange: i });\n }, \"WithToolTipState\");\n});\n\n// src/components/index.ts\nimport { createElement as u_, forwardRef as c_ } from \"react\";\n\n// src/components/components/typography/components.tsx\nimport ne from \"react\";\n\n// src/components/components/typography/DocumentFormatting.tsx\nvar te = /* @__PURE__ */ o(({ ...e }, t) => {\n let r = [e.class, e.className];\n return delete e.class, e.className = [\"sbdocs\", `sbdocs-${t}`, ...r].filter(Boolean).join(\" \"), e;\n}, \"nameSpaceClassNames\");\n\n// src/components/components/typography/ResetWrapper.tsx\nimport { styled as y7 } from \"@storybook/core/theming\";\n\n// ../node_modules/polished/dist/polished.esm.js\nio();\ngp();\n\n// ../node_modules/@babel/runtime/helpers/esm/inheritsLoose.js\nii();\nfunction vp(e, t) {\n e.prototype = Object.create(t.prototype), e.prototype.constructor = e, er(e, t);\n}\no(vp, \"_inheritsLoose\");\n\n// ../node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js\nwp();\nii();\n\n// ../node_modules/@babel/runtime/helpers/esm/isNativeFunction.js\nfunction bp(e) {\n try {\n return Function.toString.call(e).indexOf(\"[native code]\") !== -1;\n } catch {\n return typeof e == \"function\";\n }\n}\no(bp, \"_isNativeFunction\");\n\n// ../node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js\nfunction is() {\n try {\n var e = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {\n }));\n } catch {\n }\n return (is = /* @__PURE__ */ o(function() {\n return !!e;\n }, \"_isNativeReflectConstruct\"))();\n}\no(is, \"_isNativeReflectConstruct\");\n\n// ../node_modules/@babel/runtime/helpers/esm/construct.js\nii();\nfunction yp(e, t, r) {\n if (is()) return Reflect.construct.apply(null, arguments);\n var n = [null];\n n.push.apply(n, t);\n var a = new (e.bind.apply(e, n))();\n return r && er(a, r.prototype), a;\n}\no(yp, \"_construct\");\n\n// ../node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js\nfunction si(e) {\n var t = typeof Map == \"function\" ? /* @__PURE__ */ new Map() : void 0;\n return si = /* @__PURE__ */ o(function(n) {\n if (n === null || !bp(n)) return n;\n if (typeof n != \"function\") throw new TypeError(\"Super expression must either be null or a function\");\n if (t !== void 0) {\n if (t.has(n)) return t.get(n);\n t.set(n, a);\n }\n function a() {\n return yp(n, arguments, li(this).constructor);\n }\n return o(a, \"Wrapper\"), a.prototype = Object.create(n.prototype, {\n constructor: {\n value: a,\n enumerable: !1,\n writable: !0,\n configurable: !0\n }\n }), er(a, n);\n }, \"_wrapNativeSuper\"), si(e);\n}\no(si, \"_wrapNativeSuper\");\n\n// ../node_modules/polished/dist/polished.esm.js\nvar Y3 = {\n 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\\\n.4, lightness: 0.75 }).\n\n`,\n 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, satura\\\ntion: 0.4, lightness: 0.75, alpha: 0.7 }).\n\n`,\n 3: `Passed an incorrect argument to a color function, please pass a string representation of a color.\n\n`,\n 4: `Couldn't generate valid rgb string from %s, it returned %s.\n\n`,\n 5: `Couldn't parse the color string. Please provide the color as a string in hex, rgb, rgba, hsl or hsla notation.\n\n`,\n 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, bl\\\nue: 100 }).\n\n`,\n 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: \\\n205, blue: 100, alpha: 0.75 }).\n\n`,\n 8: `Passed invalid argument to toColorString, please pass a RgbColor, RgbaColor, HslColor or HslaColor object.\n\n`,\n 9: `Please provide a number of steps to the modularScale helper.\n\n`,\n 10: `Please pass a number or one of the predefined scales to the modularScale helper as the ratio.\n\n`,\n 11: `Invalid value passed as base to modularScale, expected number or em string but got \"%s\"\n\n`,\n 12: `Expected a string ending in \"px\" or a number passed as the first argument to %s(), got \"%s\" instead.\n\n`,\n 13: `Expected a string ending in \"px\" or a number passed as the second argument to %s(), got \"%s\" instead.\n\n`,\n 14: `Passed invalid pixel value (\"%s\") to %s(), please pass a value like \"12px\" or 12.\n\n`,\n 15: `Passed invalid base value (\"%s\") to %s(), please pass a value like \"12px\" or 12.\n\n`,\n 16: `You must provide a template to this method.\n\n`,\n 17: `You passed an unsupported selector state to this method.\n\n`,\n 18: `minScreen and maxScreen must be provided as stringified numbers with the same units.\n\n`,\n 19: `fromSize and toSize must be provided as stringified numbers with the same units.\n\n`,\n 20: `expects either an array of objects or a single object with the properties prop, fromSize, and toSize.\n\n`,\n 21: \"expects the objects in the first argument array to have the properties `prop`, `fromSize`, and `toSize`.\\n\\n\",\n 22: \"expects the first argument object to have the properties `prop`, `fromSize`, and `toSize`.\\n\\n\",\n 23: `fontFace expects a name of a font-family.\n\n`,\n 24: `fontFace expects either the path to the font file(s) or a name of a local copy.\n\n`,\n 25: `fontFace expects localFonts to be an array.\n\n`,\n 26: `fontFace expects fileFormats to be an array.\n\n`,\n 27: `radialGradient requries at least 2 color-stops to properly render.\n\n`,\n 28: `Please supply a filename to retinaImage() as the first argument.\n\n`,\n 29: `Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'.\n\n`,\n 30: \"Passed an invalid value to `height` or `width`. Please provide a pixel based unit.\\n\\n\",\n 31: `The animation shorthand only takes 8 arguments. See the specification for more information: http://mdn.io/animation\n\n`,\n 32: `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')\n\n`,\n 33: `The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation\n\n`,\n 34: `borderRadius expects a radius value as a string or number as the second argument.\n\n`,\n 35: `borderRadius expects one of \"top\", \"bottom\", \"left\" or \"right\" as the first argument.\n\n`,\n 36: `Property must be a string value.\n\n`,\n 37: `Syntax Error at %s.\n\n`,\n 38: `Formula contains a function that needs parentheses at %s.\n\n`,\n 39: `Formula is missing closing parenthesis at %s.\n\n`,\n 40: `Formula has too many closing parentheses at %s.\n\n`,\n 41: `All values in a formula must have the same unit or be unitless.\n\n`,\n 42: `Please provide a number of steps to the modularScale helper.\n\n`,\n 43: `Please pass a number or one of the predefined scales to the modularScale helper as the ratio.\n\n`,\n 44: `Invalid value passed as base to modularScale, expected number or em/rem string but got %s.\n\n`,\n 45: `Passed invalid argument to hslToColorString, please pass a HslColor or HslaColor object.\n\n`,\n 46: `Passed invalid argument to rgbToColorString, please pass a RgbColor or RgbaColor object.\n\n`,\n 47: `minScreen and maxScreen must be provided as stringified numbers with the same units.\n\n`,\n 48: `fromSize and toSize must be provided as stringified numbers with the same units.\n\n`,\n 49: `Expects either an array of objects or a single object with the properties prop, fromSize, and toSize.\n\n`,\n 50: `Expects the objects in the first argument array to have the properties prop, fromSize, and toSize.\n\n`,\n 51: `Expects the first argument object to have the properties prop, fromSize, and toSize.\n\n`,\n 52: `fontFace expects either the path to the font file(s) or a name of a local copy.\n\n`,\n 53: `fontFace expects localFonts to be an array.\n\n`,\n 54: `fontFace expects fileFormats to be an array.\n\n`,\n 55: `fontFace expects a name of a font-family.\n\n`,\n 56: `linearGradient requries at least 2 color-stops to properly render.\n\n`,\n 57: `radialGradient requries at least 2 color-stops to properly render.\n\n`,\n 58: `Please supply a filename to retinaImage() as the first argument.\n\n`,\n 59: `Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'.\n\n`,\n 60: \"Passed an invalid value to `height` or `width`. Please provide a pixel based unit.\\n\\n\",\n 61: `Property must be a string value.\n\n`,\n 62: `borderRadius expects a radius value as a string or number as the second argument.\n\n`,\n 63: `borderRadius expects one of \"top\", \"bottom\", \"left\" or \"right\" as the first argument.\n\n`,\n 64: `The animation shorthand only takes 8 arguments. See the specification for more information: http://mdn.io/animation.\n\n`,\n 65: `To pass multiple animations please supply them in arrays, e.g. animation(['rotate', '2s'], ['move', '1s'])\\\\nTo pass a single animatio\\\nn please supply them in simple values, e.g. animation('rotate', '2s').\n\n`,\n 66: `The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation.\n\n`,\n 67: `You must provide a template to this method.\n\n`,\n 68: `You passed an unsupported selector state to this method.\n\n`,\n 69: `Expected a string ending in \"px\" or a number passed as the first argument to %s(), got %s instead.\n\n`,\n 70: `Expected a string ending in \"px\" or a number passed as the second argument to %s(), got %s instead.\n\n`,\n 71: `Passed invalid pixel value %s to %s(), please pass a value like \"12px\" or 12.\n\n`,\n 72: `Passed invalid base value %s to %s(), please pass a value like \"12px\" or 12.\n\n`,\n 73: `Please provide a valid CSS variable.\n\n`,\n 74: `CSS variable not found and no default was provided.\n\n`,\n 75: `important requires a valid style object, got a %s instead.\n\n`,\n 76: `fromSize and toSize must be provided as stringified numbers with the same units as minScreen and maxScreen.\n\n`,\n 77: `remToPx expects a value in \"rem\" but you provided it in \"%s\".\n\n`,\n 78: `base must be set in \"px\" or \"%\" but you set it in \"%s\".\n`\n};\nfunction X3() {\n for (var e = arguments.length, t = new Array(e), r = 0; r < e; r++)\n t[r] = arguments[r];\n var n = t[0], a = [], i;\n for (i = 1; i < t.length; i += 1)\n a.push(t[i]);\n return a.forEach(function(l) {\n n = n.replace(/%[a-z]/, l);\n }), n;\n}\no(X3, \"format\");\nvar Et = /* @__PURE__ */ function(e) {\n vp(t, e);\n function t(r) {\n for (var n, a = arguments.length, i = new Array(a > 1 ? a - 1 : 0), l = 1; l < a; l++)\n i[l - 1] = arguments[l];\n return n = e.call(this, X3.apply(void 0, [Y3[r]].concat(i))) || this, mp(n);\n }\n return o(t, \"PolishedError\"), t;\n}(/* @__PURE__ */ si(Error));\nfunction ls(e) {\n return Math.round(e * 255);\n}\no(ls, \"colorToInt\");\nfunction K3(e, t, r) {\n return ls(e) + \",\" + ls(t) + \",\" + ls(r);\n}\no(K3, \"convertToInt\");\nfunction lo(e, t, r, n) {\n if (n === void 0 && (n = K3), t === 0)\n return n(r, r, r);\n var a = (e % 360 + 360) % 360 / 60, i = (1 - Math.abs(2 * r - 1)) * t, l = i * (1 - Math.abs(a % 2 - 1)), u = 0, c = 0, p = 0;\n a >= 0 && a < 1 ? (u = i, c = l) : a >= 1 && a < 2 ? (u = l, c = i) : a >= 2 && a < 3 ? (c = i, p = l) : a >= 3 && a < 4 ? (c = l, p = i) :\n a >= 4 && a < 5 ? (u = l, p = i) : a >= 5 && a < 6 && (u = i, p = l);\n var d = r - i / 2, h = u + d, f = c + d, g = p + d;\n return n(h, f, g);\n}\no(lo, \"hslToRgb\");\nvar Dp = {\n aliceblue: \"f0f8ff\",\n antiquewhite: \"faebd7\",\n aqua: \"00ffff\",\n aquamarine: \"7fffd4\",\n azure: \"f0ffff\",\n beige: \"f5f5dc\",\n bisque: \"ffe4c4\",\n black: \"000\",\n blanchedalmond: \"ffebcd\",\n blue: \"0000ff\",\n blueviolet: \"8a2be2\",\n brown: \"a52a2a\",\n burlywood: \"deb887\",\n cadetblue: \"5f9ea0\",\n chartreuse: \"7fff00\",\n chocolate: \"d2691e\",\n coral: \"ff7f50\",\n cornflowerblue: \"6495ed\",\n cornsilk: \"fff8dc\",\n crimson: \"dc143c\",\n cyan: \"00ffff\",\n darkblue: \"00008b\",\n darkcyan: \"008b8b\",\n darkgoldenrod: \"b8860b\",\n darkgray: \"a9a9a9\",\n darkgreen: \"006400\",\n darkgrey: \"a9a9a9\",\n darkkhaki: \"bdb76b\",\n darkmagenta: \"8b008b\",\n darkolivegreen: \"556b2f\",\n darkorange: \"ff8c00\",\n darkorchid: \"9932cc\",\n darkred: \"8b0000\",\n darksalmon: \"e9967a\",\n darkseagreen: \"8fbc8f\",\n darkslateblue: \"483d8b\",\n darkslategray: \"2f4f4f\",\n darkslategrey: \"2f4f4f\",\n darkturquoise: \"00ced1\",\n darkviolet: \"9400d3\",\n deeppink: \"ff1493\",\n deepskyblue: \"00bfff\",\n dimgray: \"696969\",\n dimgrey: \"696969\",\n dodgerblue: \"1e90ff\",\n firebrick: \"b22222\",\n floralwhite: \"fffaf0\",\n forestgreen: \"228b22\",\n fuchsia: \"ff00ff\",\n gainsboro: \"dcdcdc\",\n ghostwhite: \"f8f8ff\",\n gold: \"ffd700\",\n goldenrod: \"daa520\",\n gray: \"808080\",\n green: \"008000\",\n greenyellow: \"adff2f\",\n grey: \"808080\",\n honeydew: \"f0fff0\",\n hotpink: \"ff69b4\",\n indianred: \"cd5c5c\",\n indigo: \"4b0082\",\n ivory: \"fffff0\",\n khaki: \"f0e68c\",\n lavender: \"e6e6fa\",\n lavenderblush: \"fff0f5\",\n lawngreen: \"7cfc00\",\n lemonchiffon: \"fffacd\",\n lightblue: \"add8e6\",\n lightcoral: \"f08080\",\n lightcyan: \"e0ffff\",\n lightgoldenrodyellow: \"fafad2\",\n lightgray: \"d3d3d3\",\n lightgreen: \"90ee90\",\n lightgrey: \"d3d3d3\",\n lightpink: \"ffb6c1\",\n lightsalmon: \"ffa07a\",\n lightseagreen: \"20b2aa\",\n lightskyblue: \"87cefa\",\n lightslategray: \"789\",\n lightslategrey: \"789\",\n lightsteelblue: \"b0c4de\",\n lightyellow: \"ffffe0\",\n lime: \"0f0\",\n limegreen: \"32cd32\",\n linen: \"faf0e6\",\n magenta: \"f0f\",\n maroon: \"800000\",\n mediumaquamarine: \"66cdaa\",\n mediumblue: \"0000cd\",\n mediumorchid: \"ba55d3\",\n mediumpurple: \"9370db\",\n mediumseagreen: \"3cb371\",\n mediumslateblue: \"7b68ee\",\n mediumspringgreen: \"00fa9a\",\n mediumturquoise: \"48d1cc\",\n mediumvioletred: \"c71585\",\n midnightblue: \"191970\",\n mintcream: \"f5fffa\",\n mistyrose: \"ffe4e1\",\n moccasin: \"ffe4b5\",\n navajowhite: \"ffdead\",\n navy: \"000080\",\n oldlace: \"fdf5e6\",\n olive: \"808000\",\n olivedrab: \"6b8e23\",\n orange: \"ffa500\",\n orangered: \"ff4500\",\n orchid: \"da70d6\",\n palegoldenrod: \"eee8aa\",\n palegreen: \"98fb98\",\n paleturquoise: \"afeeee\",\n palevioletred: \"db7093\",\n papayawhip: \"ffefd5\",\n peachpuff: \"ffdab9\",\n peru: \"cd853f\",\n pink: \"ffc0cb\",\n plum: \"dda0dd\",\n powderblue: \"b0e0e6\",\n purple: \"800080\",\n rebeccapurple: \"639\",\n red: \"f00\",\n rosybrown: \"bc8f8f\",\n royalblue: \"4169e1\",\n saddlebrown: \"8b4513\",\n salmon: \"fa8072\",\n sandybrown: \"f4a460\",\n seagreen: \"2e8b57\",\n seashell: \"fff5ee\",\n sienna: \"a0522d\",\n silver: \"c0c0c0\",\n skyblue: \"87ceeb\",\n slateblue: \"6a5acd\",\n slategray: \"708090\",\n slategrey: \"708090\",\n snow: \"fffafa\",\n springgreen: \"00ff7f\",\n steelblue: \"4682b4\",\n tan: \"d2b48c\",\n teal: \"008080\",\n thistle: \"d8bfd8\",\n tomato: \"ff6347\",\n turquoise: \"40e0d0\",\n violet: \"ee82ee\",\n wheat: \"f5deb3\",\n white: \"fff\",\n whitesmoke: \"f5f5f5\",\n yellow: \"ff0\",\n yellowgreen: \"9acd32\"\n};\nfunction Z3(e) {\n if (typeof e != \"string\") return e;\n var t = e.toLowerCase();\n return Dp[t] ? \"#\" + Dp[t] : e;\n}\no(Z3, \"nameToHex\");\nvar J3 = /^#[a-fA-F0-9]{6}$/, Q3 = /^#[a-fA-F0-9]{8}$/, e7 = /^#[a-fA-F0-9]{3}$/, t7 = /^#[a-fA-F0-9]{4}$/, ss = /^rgb\\(\\s*(\\d{1,3})\\s*(?:,)?\\s*(\\d{1,3})\\s*(?:,)?\\s*(\\d{1,3})\\s*\\)$/i,\nr7 = /^rgb(?:a)?\\(\\s*(\\d{1,3})\\s*(?:,)?\\s*(\\d{1,3})\\s*(?:,)?\\s*(\\d{1,3})\\s*(?:,|\\/)\\s*([-+]?\\d*[.]?\\d+[%]?)\\s*\\)$/i, n7 = /^hsl\\(\\s*(\\d{0,3}[.]?[0-9]+(?:deg)?)\\s*(?:,)?\\s*(\\d{1,3}[.]?[0-9]?)%\\s*(?:,)?\\s*(\\d{1,3}[.]?[0-9]?)%\\s*\\)$/i,\na7 = /^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;\nfunction ds(e) {\n if (typeof e != \"string\")\n throw new Et(3);\n var t = Z3(e);\n if (t.match(J3))\n return {\n red: parseInt(\"\" + t[1] + t[2], 16),\n green: parseInt(\"\" + t[3] + t[4], 16),\n blue: parseInt(\"\" + t[5] + t[6], 16)\n };\n if (t.match(Q3)) {\n var r = parseFloat((parseInt(\"\" + t[7] + t[8], 16) / 255).toFixed(2));\n return {\n red: parseInt(\"\" + t[1] + t[2], 16),\n green: parseInt(\"\" + t[3] + t[4], 16),\n blue: parseInt(\"\" + t[5] + t[6], 16),\n alpha: r\n };\n }\n if (t.match(e7))\n return {\n red: parseInt(\"\" + t[1] + t[1], 16),\n green: parseInt(\"\" + t[2] + t[2], 16),\n blue: parseInt(\"\" + t[3] + t[3], 16)\n };\n if (t.match(t7)) {\n var n = parseFloat((parseInt(\"\" + t[4] + t[4], 16) / 255).toFixed(2));\n return {\n red: parseInt(\"\" + t[1] + t[1], 16),\n green: parseInt(\"\" + t[2] + t[2], 16),\n blue: parseInt(\"\" + t[3] + t[3], 16),\n alpha: n\n };\n }\n var a = ss.exec(t);\n if (a)\n return {\n red: parseInt(\"\" + a[1], 10),\n green: parseInt(\"\" + a[2], 10),\n blue: parseInt(\"\" + a[3], 10)\n };\n var i = r7.exec(t.substring(0, 50));\n if (i)\n return {\n red: parseInt(\"\" + i[1], 10),\n green: parseInt(\"\" + i[2], 10),\n blue: parseInt(\"\" + i[3], 10),\n alpha: parseFloat(\"\" + i[4]) > 1 ? parseFloat(\"\" + i[4]) / 100 : parseFloat(\"\" + i[4])\n };\n var l = n7.exec(t);\n if (l) {\n var u = parseInt(\"\" + l[1], 10), c = parseInt(\"\" + l[2], 10) / 100, p = parseInt(\"\" + l[3], 10) / 100, d = \"rgb(\" + lo(u, c, p) + \")\", h = ss.\n exec(d);\n if (!h)\n throw new Et(4, t, d);\n return {\n red: parseInt(\"\" + h[1], 10),\n green: parseInt(\"\" + h[2], 10),\n blue: parseInt(\"\" + h[3], 10)\n };\n }\n var f = a7.exec(t.substring(0, 50));\n if (f) {\n var g = parseInt(\"\" + f[1], 10), w = parseInt(\"\" + f[2], 10) / 100, m = parseInt(\"\" + f[3], 10) / 100, v = \"rgb(\" + lo(g, w, m) + \")\", y = ss.\n exec(v);\n if (!y)\n throw new Et(4, t, v);\n return {\n red: parseInt(\"\" + y[1], 10),\n green: parseInt(\"\" + y[2], 10),\n blue: parseInt(\"\" + y[3], 10),\n alpha: parseFloat(\"\" + f[4]) > 1 ? parseFloat(\"\" + f[4]) / 100 : parseFloat(\"\" + f[4])\n };\n }\n throw new Et(5);\n}\no(ds, \"parseToRgb\");\nfunction o7(e) {\n var t = e.red / 255, r = e.green / 255, n = e.blue / 255, a = Math.max(t, r, n), i = Math.min(t, r, n), l = (a + i) / 2;\n if (a === i)\n return e.alpha !== void 0 ? {\n hue: 0,\n saturation: 0,\n lightness: l,\n alpha: e.alpha\n } : {\n hue: 0,\n saturation: 0,\n lightness: l\n };\n var u, c = a - i, p = l > 0.5 ? c / (2 - a - i) : c / (a + i);\n switch (a) {\n case t:\n u = (r - n) / c + (r < n ? 6 : 0);\n break;\n case r:\n u = (n - t) / c + 2;\n break;\n default:\n u = (t - r) / c + 4;\n break;\n }\n return u *= 60, e.alpha !== void 0 ? {\n hue: u,\n saturation: p,\n lightness: l,\n alpha: e.alpha\n } : {\n hue: u,\n saturation: p,\n lightness: l\n };\n}\no(o7, \"rgbToHsl\");\nfunction xp(e) {\n return o7(ds(e));\n}\no(xp, \"parseToHsl\");\nvar i7 = /* @__PURE__ */ o(function(t) {\n return t.length === 7 && t[1] === t[2] && t[3] === t[4] && t[5] === t[6] ? \"#\" + t[1] + t[3] + t[5] : t;\n}, \"reduceHexValue\"), cs = i7;\nfunction Er(e) {\n var t = e.toString(16);\n return t.length === 1 ? \"0\" + t : t;\n}\no(Er, \"numberToHex\");\nfunction us(e) {\n return Er(Math.round(e * 255));\n}\no(us, \"colorToHex\");\nfunction l7(e, t, r) {\n return cs(\"#\" + us(e) + us(t) + us(r));\n}\no(l7, \"convertToHex\");\nfunction ui(e, t, r) {\n return lo(e, t, r, l7);\n}\no(ui, \"hslToHex\");\nfunction s7(e, t, r) {\n if (typeof e == \"number\" && typeof t == \"number\" && typeof r == \"number\")\n return ui(e, t, r);\n if (typeof e == \"object\" && t === void 0 && r === void 0)\n return ui(e.hue, e.saturation, e.lightness);\n throw new Et(1);\n}\no(s7, \"hsl\");\nfunction u7(e, t, r, n) {\n if (typeof e == \"number\" && typeof t == \"number\" && typeof r == \"number\" && typeof n == \"number\")\n return n >= 1 ? ui(e, t, r) : \"rgba(\" + lo(e, t, r) + \",\" + n + \")\";\n if (typeof e == \"object\" && t === void 0 && r === void 0 && n === void 0)\n return e.alpha >= 1 ? ui(e.hue, e.saturation, e.lightness) : \"rgba(\" + lo(e.hue, e.saturation, e.lightness) + \",\" + e.alpha + \")\";\n throw new Et(2);\n}\no(u7, \"hsla\");\nfunction ps(e, t, r) {\n if (typeof e == \"number\" && typeof t == \"number\" && typeof r == \"number\")\n return cs(\"#\" + Er(e) + Er(t) + Er(r));\n if (typeof e == \"object\" && t === void 0 && r === void 0)\n return cs(\"#\" + Er(e.red) + Er(e.green) + Er(e.blue));\n throw new Et(6);\n}\no(ps, \"rgb\");\nfunction so(e, t, r, n) {\n if (typeof e == \"string\" && typeof t == \"number\") {\n var a = ds(e);\n return \"rgba(\" + a.red + \",\" + a.green + \",\" + a.blue + \",\" + t + \")\";\n } else {\n if (typeof e == \"number\" && typeof t == \"number\" && typeof r == \"number\" && typeof n == \"number\")\n return n >= 1 ? ps(e, t, r) : \"rgba(\" + e + \",\" + t + \",\" + r + \",\" + n + \")\";\n if (typeof e == \"object\" && t === void 0 && r === void 0 && n === void 0)\n return e.alpha >= 1 ? ps(e.red, e.green, e.blue) : \"rgba(\" + e.red + \",\" + e.green + \",\" + e.blue + \",\" + e.alpha + \")\";\n }\n throw new Et(7);\n}\no(so, \"rgba\");\nvar c7 = /* @__PURE__ */ o(function(t) {\n return typeof t.red == \"number\" && typeof t.green == \"number\" && typeof t.blue == \"number\" && (typeof t.alpha != \"number\" || typeof t.alpha >\n \"u\");\n}, \"isRgb\"), p7 = /* @__PURE__ */ o(function(t) {\n return typeof t.red == \"number\" && typeof t.green == \"number\" && typeof t.blue == \"number\" && typeof t.alpha == \"number\";\n}, \"isRgba\"), d7 = /* @__PURE__ */ o(function(t) {\n return typeof t.hue == \"number\" && typeof t.saturation == \"number\" && typeof t.lightness == \"number\" && (typeof t.alpha != \"number\" || typeof t.\n alpha > \"u\");\n}, \"isHsl\"), f7 = /* @__PURE__ */ o(function(t) {\n return typeof t.hue == \"number\" && typeof t.saturation == \"number\" && typeof t.lightness == \"number\" && typeof t.alpha == \"number\";\n}, \"isHsla\");\nfunction Cp(e) {\n if (typeof e != \"object\") throw new Et(8);\n if (p7(e)) return so(e);\n if (c7(e)) return ps(e);\n if (f7(e)) return u7(e);\n if (d7(e)) return s7(e);\n throw new Et(8);\n}\no(Cp, \"toColorString\");\nfunction Ep(e, t, r) {\n return /* @__PURE__ */ o(function() {\n var a = r.concat(Array.prototype.slice.call(arguments));\n return a.length >= t ? e.apply(this, a) : Ep(e, t, a);\n }, \"fn\");\n}\no(Ep, \"curried\");\nfunction fs(e) {\n return Ep(e, e.length, []);\n}\no(fs, \"curry\");\nfunction hs(e, t, r) {\n return Math.max(e, Math.min(t, r));\n}\no(hs, \"guard\");\nfunction h7(e, t) {\n if (t === \"transparent\") return t;\n var r = xp(t);\n return Cp(we({}, r, {\n lightness: hs(0, 1, r.lightness - parseFloat(e))\n }));\n}\no(h7, \"darken\");\nvar m7 = /* @__PURE__ */ fs(h7), tr = m7;\nfunction g7(e, t) {\n if (t === \"transparent\") return t;\n var r = xp(t);\n return Cp(we({}, r, {\n lightness: hs(0, 1, r.lightness + parseFloat(e))\n }));\n}\no(g7, \"lighten\");\nvar v7 = /* @__PURE__ */ fs(g7), ms = v7;\nfunction w7(e, t) {\n if (t === \"transparent\") return t;\n var r = ds(t), n = typeof r.alpha == \"number\" ? r.alpha : 1, a = we({}, r, {\n alpha: hs(0, 1, +(n * 100 - parseFloat(e) * 100).toFixed(2) / 100)\n });\n return so(a);\n}\no(w7, \"transparentize\");\nvar b7 = /* @__PURE__ */ fs(w7), Be = b7;\n\n// src/components/components/typography/lib/common.tsx\nvar Qe = /* @__PURE__ */ o(({ theme: e }) => ({\n margin: \"20px 0 8px\",\n padding: 0,\n cursor: \"text\",\n position: \"relative\",\n color: e.color.defaultText,\n \"&:first-of-type\": {\n marginTop: 0,\n paddingTop: 0\n },\n \"&:hover a.anchor\": {\n textDecoration: \"none\"\n },\n \"& tt, & code\": {\n fontSize: \"inherit\"\n }\n}), \"headerCommon\"), Pt = /* @__PURE__ */ o(({ theme: e }) => ({\n lineHeight: 1,\n margin: \"0 2px\",\n padding: \"3px 5px\",\n whiteSpace: \"nowrap\",\n borderRadius: 3,\n fontSize: e.typography.size.s2 - 1,\n border: e.base === \"light\" ? `1px solid ${e.color.mediumlight}` : `1px solid ${e.color.darker}`,\n color: e.base === \"light\" ? Be(0.1, e.color.defaultText) : Be(0.3, e.color.defaultText),\n backgroundColor: e.base === \"light\" ? e.color.lighter : e.color.border\n}), \"codeCommon\"), N = /* @__PURE__ */ o(({ theme: e }) => ({\n fontFamily: e.typography.fonts.base,\n fontSize: e.typography.size.s3,\n margin: 0,\n WebkitFontSmoothing: \"antialiased\",\n MozOsxFontSmoothing: \"grayscale\",\n WebkitTapHighlightColor: \"rgba(0, 0, 0, 0)\",\n WebkitOverflowScrolling: \"touch\"\n}), \"withReset\"), $e = {\n margin: \"16px 0\"\n};\n\n// src/components/components/typography/ResetWrapper.tsx\nvar Rp = y7.div(N);\n\n// src/components/components/typography/elements/A.tsx\nimport { styled as x7 } from \"@storybook/core/theming\";\n\n// src/components/components/typography/elements/Link.tsx\nimport D7 from \"react\";\nvar Sp = /* @__PURE__ */ o(({\n href: e = \"\",\n ...t\n}) => {\n let n = /^\\//.test(e) ? `./?path=${e}` : e, i = /^#.*/.test(e) ? \"_self\" : \"_top\";\n return /* @__PURE__ */ D7.createElement(\"a\", { href: n, target: i, ...t });\n}, \"Link\");\n\n// src/components/components/typography/elements/A.tsx\nvar gs = x7(Sp)(N, ({ theme: e }) => ({\n fontSize: \"inherit\",\n lineHeight: \"24px\",\n color: e.color.secondary,\n textDecoration: \"none\",\n \"&.absent\": {\n color: \"#cc0000\"\n },\n \"&.anchor\": {\n display: \"block\",\n paddingLeft: 30,\n marginLeft: -30,\n cursor: \"pointer\",\n position: \"absolute\",\n top: 0,\n left: 0,\n bottom: 0\n }\n}));\n\n// src/components/components/typography/elements/Blockquote.tsx\nimport { styled as C7 } from \"@storybook/core/theming\";\nvar vs = C7.blockquote(N, $e, ({ theme: e }) => ({\n borderLeft: `4px solid ${e.color.medium}`,\n padding: \"0 15px\",\n color: e.color.dark,\n \"& > :first-of-type\": {\n marginTop: 0\n },\n \"& > :last-child\": {\n marginBottom: 0\n }\n}));\n\n// src/components/components/typography/elements/Code.tsx\nyo();\nimport Fh, { Children as kb } from \"react\";\nimport { styled as kh } from \"@storybook/core/theming\";\n\n// src/components/components/typography/lib/isReactChildString.tsx\nvar Ah = /* @__PURE__ */ o((e) => typeof e == \"string\", \"isReactChildString\");\n\n// src/components/components/typography/elements/Code.tsx\nvar Lb = /[\\n\\r]/g, Tb = kh.code(\n ({ theme: e }) => ({\n // from reset\n fontFamily: e.typography.fonts.mono,\n WebkitFontSmoothing: \"antialiased\",\n MozOsxFontSmoothing: \"grayscale\",\n display: \"inline-block\",\n paddingLeft: 2,\n paddingRight: 2,\n verticalAlign: \"baseline\",\n color: \"inherit\"\n }),\n Pt\n), Ib = kh(bo)(({ theme: e }) => ({\n // DocBlocks-specific styling and overrides\n fontFamily: e.typography.fonts.mono,\n fontSize: `${e.typography.size.s2 - 1}px`,\n lineHeight: \"19px\",\n margin: \"25px 0 40px\",\n borderRadius: e.appBorderRadius,\n boxShadow: e.base === \"light\" ? \"rgba(0, 0, 0, 0.10) 0 1px 3px 0\" : \"rgba(0, 0, 0, 0.20) 0 2px 5px 0\",\n \"pre.prismjs\": {\n padding: 20,\n background: \"inherit\"\n }\n})), gu = /* @__PURE__ */ o(({\n className: e,\n children: t,\n ...r\n}) => {\n let n = (e || \"\").match(/lang-(\\S+)/), a = kb.toArray(t);\n return a.filter(Ah).some((l) => l.match(Lb)) ? /* @__PURE__ */ Fh.createElement(\n Ib,\n {\n bordered: !0,\n copyable: !0,\n language: n?.[1] ?? \"text\",\n format: !1,\n ...r\n },\n t\n ) : /* @__PURE__ */ Fh.createElement(Tb, { ...r, className: e }, a);\n}, \"Code\");\n\n// src/components/components/typography/elements/DL.tsx\nimport { styled as Bb } from \"@storybook/core/theming\";\nvar vu = Bb.dl(N, $e, {\n padding: 0,\n \"& dt\": {\n fontSize: \"14px\",\n fontWeight: \"bold\",\n fontStyle: \"italic\",\n padding: 0,\n margin: \"16px 0 4px\"\n },\n \"& dt:first-of-type\": {\n padding: 0\n },\n \"& dt > :first-of-type\": {\n marginTop: 0\n },\n \"& dt > :last-child\": {\n marginBottom: 0\n },\n \"& dd\": {\n margin: \"0 0 16px\",\n padding: \"0 15px\"\n },\n \"& dd > :first-of-type\": {\n marginTop: 0\n },\n \"& dd > :last-child\": {\n marginBottom: 0\n }\n});\n\n// src/components/components/typography/elements/Div.tsx\nimport { styled as Mb } from \"@storybook/core/theming\";\nvar wu = Mb.div(N);\n\n// src/components/components/typography/elements/H1.tsx\nimport { styled as _b } from \"@storybook/core/theming\";\nvar bu = _b.h1(N, Qe, ({ theme: e }) => ({\n fontSize: `${e.typography.size.l1}px`,\n fontWeight: e.typography.weight.bold\n}));\n\n// src/components/components/typography/elements/H2.tsx\nimport { styled as Pb } from \"@storybook/core/theming\";\nvar yu = Pb.h2(N, Qe, ({ theme: e }) => ({\n fontSize: `${e.typography.size.m2}px`,\n paddingBottom: 4,\n borderBottom: `1px solid ${e.appBorderColor}`\n}));\n\n// src/components/components/typography/elements/H3.tsx\nimport { styled as Hb } from \"@storybook/core/theming\";\nvar Du = Hb.h3(N, Qe, ({ theme: e }) => ({\n fontSize: `${e.typography.size.m1}px`\n}));\n\n// src/components/components/typography/elements/H4.tsx\nimport { styled as zb } from \"@storybook/core/theming\";\nvar xu = zb.h4(N, Qe, ({ theme: e }) => ({\n fontSize: `${e.typography.size.s3}px`\n}));\n\n// src/components/components/typography/elements/H5.tsx\nimport { styled as Ob } from \"@storybook/core/theming\";\nvar Cu = Ob.h5(N, Qe, ({ theme: e }) => ({\n fontSize: `${e.typography.size.s2}px`\n}));\n\n// src/components/components/typography/elements/H6.tsx\nimport { styled as Nb } from \"@storybook/core/theming\";\nvar Eu = Nb.h6(N, Qe, ({ theme: e }) => ({\n fontSize: `${e.typography.size.s2}px`,\n color: e.color.dark\n}));\n\n// src/components/components/typography/elements/HR.tsx\nimport { styled as $b } from \"@storybook/core/theming\";\nvar Ru = $b.hr(({ theme: e }) => ({\n border: \"0 none\",\n borderTop: `1px solid ${e.appBorderColor}`,\n height: 4,\n padding: 0\n}));\n\n// src/components/components/typography/elements/Img.tsx\nimport { styled as Vb } from \"@storybook/core/theming\";\nvar Su = Vb.img({\n maxWidth: \"100%\"\n});\n\n// src/components/components/typography/elements/LI.tsx\nimport { styled as jb } from \"@storybook/core/theming\";\nvar Au = jb.li(N, ({ theme: e }) => ({\n fontSize: e.typography.size.s2,\n color: e.color.defaultText,\n lineHeight: \"24px\",\n \"& + li\": {\n marginTop: \".25em\"\n },\n \"& ul, & ol\": {\n marginTop: \".25em\",\n marginBottom: 0\n },\n \"& code\": Pt({ theme: e })\n}));\n\n// src/components/components/typography/elements/OL.tsx\nimport { styled as Wb } from \"@storybook/core/theming\";\nvar qb = {\n paddingLeft: 30,\n \"& :first-of-type\": {\n marginTop: 0\n },\n \"& :last-child\": {\n marginBottom: 0\n }\n}, Fu = Wb.ol(N, $e, qb, {\n listStyle: \"decimal\"\n});\n\n// src/components/components/typography/elements/P.tsx\nimport { styled as Ub } from \"@storybook/core/theming\";\nvar ku = Ub.p(N, $e, ({ theme: e }) => ({\n fontSize: e.typography.size.s2,\n lineHeight: \"24px\",\n color: e.color.defaultText,\n \"& code\": Pt({ theme: e })\n}));\n\n// src/components/components/typography/elements/Pre.tsx\nimport { styled as Gb } from \"@storybook/core/theming\";\nvar Lu = Gb.pre(N, $e, ({ theme: e }) => ({\n // reset\n fontFamily: e.typography.fonts.mono,\n WebkitFontSmoothing: \"antialiased\",\n MozOsxFontSmoothing: \"grayscale\",\n lineHeight: \"18px\",\n padding: \"11px 1rem\",\n whiteSpace: \"pre-wrap\",\n color: \"inherit\",\n borderRadius: 3,\n margin: \"1rem 0\",\n \"&:not(.prismjs)\": {\n background: \"transparent\",\n border: \"none\",\n borderRadius: 0,\n padding: 0,\n margin: 0\n },\n \"& pre, &.prismjs\": {\n padding: 15,\n margin: 0,\n whiteSpace: \"pre-wrap\",\n color: \"inherit\",\n fontSize: \"13px\",\n lineHeight: \"19px\",\n code: {\n color: \"inherit\",\n fontSize: \"inherit\"\n }\n },\n \"& code\": {\n whiteSpace: \"pre\"\n },\n \"& code, & tt\": {\n border: \"none\"\n }\n}));\n\n// src/components/components/typography/elements/Span.tsx\nimport { styled as Yb } from \"@storybook/core/theming\";\nvar Tu = Yb.span(N, ({ theme: e }) => ({\n \"&.frame\": {\n display: \"block\",\n overflow: \"hidden\",\n \"& > span\": {\n border: `1px solid ${e.color.medium}`,\n display: \"block\",\n float: \"left\",\n overflow: \"hidden\",\n margin: \"13px 0 0\",\n padding: 7,\n width: \"auto\"\n },\n \"& span img\": {\n display: \"block\",\n float: \"left\"\n },\n \"& span span\": {\n clear: \"both\",\n color: e.color.darkest,\n display: \"block\",\n padding: \"5px 0 0\"\n }\n },\n \"&.align-center\": {\n display: \"block\",\n overflow: \"hidden\",\n clear: \"both\",\n \"& > span\": {\n display: \"block\",\n overflow: \"hidden\",\n margin: \"13px auto 0\",\n textAlign: \"center\"\n },\n \"& span img\": {\n margin: \"0 auto\",\n textAlign: \"center\"\n }\n },\n \"&.align-right\": {\n display: \"block\",\n overflow: \"hidden\",\n clear: \"both\",\n \"& > span\": {\n display: \"block\",\n overflow: \"hidden\",\n margin: \"13px 0 0\",\n textAlign: \"right\"\n },\n \"& span img\": {\n margin: 0,\n textAlign: \"right\"\n }\n },\n \"&.float-left\": {\n display: \"block\",\n marginRight: 13,\n overflow: \"hidden\",\n float: \"left\",\n \"& span\": {\n margin: \"13px 0 0\"\n }\n },\n \"&.float-right\": {\n display: \"block\",\n marginLeft: 13,\n overflow: \"hidden\",\n float: \"right\",\n \"& > span\": {\n display: \"block\",\n overflow: \"hidden\",\n margin: \"13px auto 0\",\n textAlign: \"right\"\n }\n }\n}));\n\n// src/components/components/typography/elements/TT.tsx\nimport { styled as Xb } from \"@storybook/core/theming\";\nvar Iu = Xb.title(Pt);\n\n// src/components/components/typography/elements/Table.tsx\nimport { styled as Kb } from \"@storybook/core/theming\";\nvar Bu = Kb.table(N, $e, ({ theme: e }) => ({\n fontSize: e.typography.size.s2,\n lineHeight: \"24px\",\n padding: 0,\n borderCollapse: \"collapse\",\n \"& tr\": {\n borderTop: `1px solid ${e.appBorderColor}`,\n backgroundColor: e.appContentBg,\n margin: 0,\n padding: 0\n },\n \"& tr:nth-of-type(2n)\": {\n backgroundColor: e.base === \"dark\" ? e.color.darker : e.color.lighter\n },\n \"& tr th\": {\n fontWeight: \"bold\",\n color: e.color.defaultText,\n border: `1px solid ${e.appBorderColor}`,\n margin: 0,\n padding: \"6px 13px\"\n },\n \"& tr td\": {\n border: `1px solid ${e.appBorderColor}`,\n color: e.color.defaultText,\n margin: 0,\n padding: \"6px 13px\"\n },\n \"& tr th :first-of-type, & tr td :first-of-type\": {\n marginTop: 0\n },\n \"& tr th :last-child, & tr td :last-child\": {\n marginBottom: 0\n }\n}));\n\n// src/components/components/typography/elements/UL.tsx\nimport { styled as Zb } from \"@storybook/core/theming\";\nvar Jb = {\n paddingLeft: 30,\n \"& :first-of-type\": {\n marginTop: 0\n },\n \"& :last-child\": {\n marginBottom: 0\n }\n}, Mu = Zb.ul(N, $e, Jb, { listStyle: \"disc\" });\n\n// src/components/components/typography/components.tsx\nvar _u = {\n h1: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(bu, { ...te(e, \"h1\") }), \"h1\"),\n h2: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(yu, { ...te(e, \"h2\") }), \"h2\"),\n h3: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(Du, { ...te(e, \"h3\") }), \"h3\"),\n h4: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(xu, { ...te(e, \"h4\") }), \"h4\"),\n h5: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(Cu, { ...te(e, \"h5\") }), \"h5\"),\n h6: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(Eu, { ...te(e, \"h6\") }), \"h6\"),\n pre: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(Lu, { ...te(e, \"pre\") }), \"pre\"),\n a: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(gs, { ...te(e, \"a\") }), \"a\"),\n hr: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(Ru, { ...te(e, \"hr\") }), \"hr\"),\n dl: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(vu, { ...te(e, \"dl\") }), \"dl\"),\n blockquote: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(vs, { ...te(e, \"blockquote\") }), \"blockquote\"),\n table: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(Bu, { ...te(e, \"table\") }), \"table\"),\n img: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(Su, { ...te(e, \"img\") }), \"img\"),\n div: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(wu, { ...te(e, \"div\") }), \"div\"),\n span: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(Tu, { ...te(e, \"span\") }), \"span\"),\n li: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(Au, { ...te(e, \"li\") }), \"li\"),\n ul: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(Mu, { ...te(e, \"ul\") }), \"ul\"),\n ol: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(Fu, { ...te(e, \"ol\") }), \"ol\"),\n p: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(ku, { ...te(e, \"p\") }), \"p\"),\n code: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(gu, { ...te(e, \"code\") }), \"code\"),\n tt: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(Iu, { ...te(e, \"tt\") }), \"tt\"),\n resetwrapper: /* @__PURE__ */ o((e) => /* @__PURE__ */ ne.createElement(Rp, { ...te(e, \"resetwrapper\") }), \"resetwrapper\")\n};\n\n// src/components/components/Badge/Badge.tsx\nimport ey from \"react\";\nimport { styled as ty } from \"@storybook/core/theming\";\nvar ry = ty.div(\n ({ theme: e }) => ({\n display: \"inline-block\",\n fontSize: 11,\n lineHeight: \"12px\",\n alignSelf: \"center\",\n padding: \"4px 12px\",\n borderRadius: \"3em\",\n fontWeight: e.typography.weight.bold\n }),\n {\n svg: {\n height: 12,\n width: 12,\n marginRight: 4,\n marginTop: -2,\n path: {\n fill: \"currentColor\"\n }\n }\n },\n ({ theme: e, status: t }) => {\n switch (t) {\n case \"critical\":\n return {\n color: e.color.critical,\n background: e.background.critical\n };\n case \"negative\":\n return {\n color: e.color.negativeText,\n background: e.background.negative,\n boxShadow: e.base === \"light\" ? `inset 0 0 0 1px ${Be(0.9, e.color.negativeText)}` : \"none\"\n };\n case \"warning\":\n return {\n color: e.color.warningText,\n background: e.background.warning,\n boxShadow: e.base === \"light\" ? `inset 0 0 0 1px ${Be(0.9, e.color.warningText)}` : \"none\"\n };\n case \"neutral\":\n return {\n color: e.color.dark,\n background: e.color.mediumlight,\n boxShadow: e.base === \"light\" ? `inset 0 0 0 1px ${Be(0.9, e.color.dark)}` : \"none\"\n };\n case \"positive\":\n return {\n color: e.color.positiveText,\n background: e.background.positive,\n boxShadow: e.base === \"light\" ? `inset 0 0 0 1px ${Be(0.9, e.color.positiveText)}` : \"none\"\n };\n default:\n return {};\n }\n }\n), ny = /* @__PURE__ */ o(({ ...e }) => /* @__PURE__ */ ey.createElement(ry, { ...e }), \"Badge\");\n\n// src/components/components/typography/link/link.tsx\nimport Nu from \"react\";\nimport { styled as Lh } from \"@storybook/core/theming\";\n\n// ../node_modules/@storybook/icons/dist/index.mjs\nvar Ou = {};\nfn(Ou, {\n AccessibilityAltIcon: () => Fx,\n AccessibilityIcon: () => Ax,\n AccessibilityIgnoredIcon: () => kx,\n AddIcon: () => x9,\n AdminIcon: () => vx,\n AlertAltIcon: () => K9,\n AlertIcon: () => X9,\n AlignLeftIcon: () => Qy,\n AlignRightIcon: () => e8,\n AppleIcon: () => b8,\n ArrowBottomLeftIcon: () => jD,\n ArrowBottomRightIcon: () => WD,\n ArrowDownIcon: () => zD,\n ArrowLeftIcon: () => OD,\n ArrowRightIcon: () => ND,\n ArrowSolidDownIcon: () => UD,\n ArrowSolidLeftIcon: () => GD,\n ArrowSolidRightIcon: () => YD,\n ArrowSolidUpIcon: () => qD,\n ArrowTopLeftIcon: () => $D,\n ArrowTopRightIcon: () => VD,\n ArrowUpIcon: () => HD,\n AzureDevOpsIcon: () => R8,\n BackIcon: () => ix,\n BasketIcon: () => bD,\n BatchAcceptIcon: () => m9,\n BatchDenyIcon: () => h9,\n BeakerIcon: () => yD,\n BellIcon: () => tD,\n BitbucketIcon: () => S8,\n BoldIcon: () => l8,\n BookIcon: () => Wy,\n BookmarkHollowIcon: () => sD,\n BookmarkIcon: () => uD,\n BottomBarIcon: () => J8,\n BottomBarToggleIcon: () => Q8,\n BoxIcon: () => a9,\n BranchIcon: () => g8,\n BrowserIcon: () => W8,\n ButtonIcon: () => N9,\n CPUIcon: () => e9,\n CalendarIcon: () => Zy,\n CameraIcon: () => Ay,\n CameraStabilizeIcon: () => py,\n CategoryIcon: () => Gy,\n CertificateIcon: () => mD,\n ChangedIcon: () => A9,\n ChatIcon: () => M9,\n CheckIcon: () => d9,\n ChevronDownIcon: () => TD,\n ChevronLeftIcon: () => ID,\n ChevronRightIcon: () => zu,\n ChevronSmallDownIcon: () => MD,\n ChevronSmallLeftIcon: () => _D,\n ChevronSmallRightIcon: () => PD,\n ChevronSmallUpIcon: () => BD,\n ChevronUpIcon: () => LD,\n ChromaticIcon: () => A8,\n ChromeIcon: () => C8,\n CircleHollowIcon: () => iD,\n CircleIcon: () => lD,\n ClearIcon: () => k9,\n CloseAltIcon: () => w9,\n CloseIcon: () => E9,\n CloudHollowIcon: () => CD,\n CloudIcon: () => ED,\n CogIcon: () => l9,\n CollapseIcon: () => KD,\n CommandIcon: () => W9,\n CommentAddIcon: () => T9,\n CommentIcon: () => L9,\n CommentsIcon: () => B9,\n CommitIcon: () => m8,\n CompassIcon: () => cx,\n ComponentDrivenIcon: () => F8,\n ComponentIcon: () => iy,\n ContrastIcon: () => xy,\n ContrastIgnoredIcon: () => Ey,\n ControlsIcon: () => g9,\n CopyIcon: () => Uy,\n CreditIcon: () => O9,\n CrossIcon: () => Hu,\n DashboardIcon: () => hx,\n DatabaseIcon: () => t9,\n DeleteIcon: () => R9,\n DiamondIcon: () => cD,\n DirectionIcon: () => wx,\n DiscordIcon: () => k8,\n DocChartIcon: () => r8,\n DocListIcon: () => n8,\n DocumentIcon: () => qy,\n DownloadIcon: () => ox,\n DragIcon: () => a8,\n EditIcon: () => i9,\n EllipsisIcon: () => c9,\n EmailIcon: () => Z9,\n ExpandAltIcon: () => XD,\n ExpandIcon: () => ZD,\n EyeCloseIcon: () => wy,\n EyeIcon: () => vy,\n FaceHappyIcon: () => Ex,\n FaceNeutralIcon: () => Rx,\n FaceSadIcon: () => Sx,\n FacebookIcon: () => L8,\n FailedIcon: () => F9,\n FastForwardIcon: () => My,\n FigmaIcon: () => T8,\n FilterIcon: () => t8,\n FlagIcon: () => xD,\n FolderIcon: () => Yy,\n FormIcon: () => f9,\n GDriveIcon: () => I8,\n GithubIcon: () => B8,\n GitlabIcon: () => M8,\n GlobeIcon: () => ux,\n GoogleIcon: () => _8,\n GraphBarIcon: () => Jy,\n GraphLineIcon: () => Ky,\n GraphqlIcon: () => P8,\n GridAltIcon: () => dy,\n GridIcon: () => ly,\n GrowIcon: () => Dy,\n HeartHollowIcon: () => pD,\n HeartIcon: () => dD,\n HomeIcon: () => gx,\n HourglassIcon: () => DD,\n InfoIcon: () => U9,\n ItalicIcon: () => s8,\n JumpToIcon: () => oD,\n KeyIcon: () => H9,\n LightningIcon: () => by,\n LightningOffIcon: () => Pu,\n LinkBrokenIcon: () => eD,\n LinkIcon: () => Q9,\n LinkedinIcon: () => V8,\n LinuxIcon: () => y8,\n ListOrderedIcon: () => c8,\n ListUnorderedIcon: () => p8,\n LocationIcon: () => px,\n LockIcon: () => _9,\n MarkdownIcon: () => f8,\n MarkupIcon: () => i8,\n MediumIcon: () => H8,\n MemoryIcon: () => r9,\n MenuIcon: () => o8,\n MergeIcon: () => w8,\n MirrorIcon: () => yy,\n MobileIcon: () => U8,\n MoonIcon: () => Hy,\n NutIcon: () => s9,\n OutboxIcon: () => z9,\n OutlineIcon: () => sy,\n PaintBrushIcon: () => Ry,\n PaperClipIcon: () => u8,\n ParagraphIcon: () => d8,\n PassedIcon: () => S9,\n PhoneIcon: () => J9,\n PhotoDragIcon: () => uy,\n PhotoIcon: () => oy,\n PhotoStabilizeIcon: () => cy,\n PinAltIcon: () => y9,\n PinIcon: () => dx,\n PlayAllHollowIcon: () => Ny,\n PlayBackIcon: () => Ty,\n PlayHollowIcon: () => Oy,\n PlayIcon: () => Ly,\n PlayNextIcon: () => Iy,\n PlusIcon: () => v9,\n PointerDefaultIcon: () => V9,\n PointerHandIcon: () => j9,\n PowerIcon: () => o9,\n PrintIcon: () => Xy,\n ProceedIcon: () => lx,\n ProfileIcon: () => Cx,\n PullRequestIcon: () => v8,\n QuestionIcon: () => G9,\n RSSIcon: () => rD,\n RedirectIcon: () => ex,\n ReduxIcon: () => z8,\n RefreshIcon: () => sx,\n ReplyIcon: () => rx,\n RepoIcon: () => h8,\n RequestChangeIcon: () => I9,\n RewindIcon: () => By,\n RulerIcon: () => Sy,\n SaveIcon: () => q9,\n SearchIcon: () => fy,\n ShareAltIcon: () => nD,\n ShareIcon: () => aD,\n ShieldIcon: () => wD,\n SideBySideIcon: () => Vy,\n SidebarAltIcon: () => X8,\n SidebarAltToggleIcon: () => K8,\n SidebarIcon: () => Y8,\n SidebarToggleIcon: () => Z8,\n SpeakerIcon: () => ky,\n StackedIcon: () => jy,\n StarHollowIcon: () => fD,\n StarIcon: () => hD,\n StatusFailIcon: () => SD,\n StatusIcon: () => AD,\n StatusPassIcon: () => kD,\n StatusWarnIcon: () => FD,\n StickerIcon: () => RD,\n StopAltHollowIcon: () => zy,\n StopAltIcon: () => _y,\n StopIcon: () => $y,\n StorybookIcon: () => E8,\n StructureIcon: () => n9,\n SubtractIcon: () => C9,\n SunIcon: () => Py,\n SupportIcon: () => Y9,\n SwitchAltIcon: () => Cy,\n SyncIcon: () => nx,\n TabletIcon: () => q8,\n ThumbsUpIcon: () => vD,\n TimeIcon: () => fx,\n TimerIcon: () => mx,\n TransferIcon: () => QD,\n TrashIcon: () => b9,\n TwitterIcon: () => O8,\n TypeIcon: () => $9,\n UbuntuIcon: () => D8,\n UndoIcon: () => tx,\n UnfoldIcon: () => JD,\n UnlockIcon: () => P9,\n UnpinIcon: () => D9,\n UploadIcon: () => ax,\n UserAddIcon: () => Dx,\n UserAltIcon: () => yx,\n UserIcon: () => bx,\n UsersIcon: () => xx,\n VSCodeIcon: () => $8,\n VerifiedIcon: () => gD,\n VideoIcon: () => Fy,\n WandIcon: () => p9,\n WatchIcon: () => G8,\n WindowsIcon: () => x8,\n WrenchIcon: () => u9,\n XIcon: () => j8,\n YoutubeIcon: () => N8,\n ZoomIcon: () => hy,\n ZoomOutIcon: () => my,\n ZoomResetIcon: () => gy,\n iconList: () => ay\n});\nimport * as s from \"react\";\nvar ay = [\n {\n name: \"Images\",\n icons: [\n \"PhotoIcon\",\n \"ComponentIcon\",\n \"GridIcon\",\n \"OutlineIcon\",\n \"PhotoDragIcon\",\n \"PhotoStabilizeIcon\",\n \"CameraStabilizeIcon\",\n \"GridAltIcon\",\n \"SearchIcon\",\n \"ZoomIcon\",\n \"ZoomOutIcon\",\n \"ZoomResetIcon\",\n \"EyeIcon\",\n \"EyeCloseIcon\",\n \"LightningIcon\",\n \"LightningOffIcon\",\n \"MirrorIcon\",\n \"GrowIcon\",\n \"ContrastIcon\",\n \"SwitchAltIcon\",\n \"ContrastIgnoredIcon\",\n \"PaintBrushIcon\",\n \"RulerIcon\",\n \"CameraIcon\",\n \"VideoIcon\",\n \"SpeakerIcon\",\n \"PlayIcon\",\n \"PlayBackIcon\",\n \"PlayNextIcon\",\n \"RewindIcon\",\n \"FastForwardIcon\",\n \"StopAltIcon\",\n \"SunIcon\",\n \"MoonIcon\",\n \"StopAltHollowIcon\",\n \"PlayHollowIcon\",\n \"PlayAllHollowIcon\",\n \"StopIcon\",\n \"SideBySideIcon\",\n \"StackedIcon\"\n ]\n },\n {\n name: \"Documents\",\n icons: [\n \"BookIcon\",\n \"DocumentIcon\",\n \"CopyIcon\",\n \"CategoryIcon\",\n \"FolderIcon\",\n \"PrintIcon\",\n \"GraphLineIcon\",\n \"CalendarIcon\",\n \"GraphBarIcon\",\n \"AlignLeftIcon\",\n \"AlignRightIcon\",\n \"FilterIcon\",\n \"DocChartIcon\",\n \"DocListIcon\",\n \"DragIcon\",\n \"MenuIcon\"\n ]\n },\n {\n name: \"Editing\",\n icons: [\n \"MarkupIcon\",\n \"BoldIcon\",\n \"ItalicIcon\",\n \"PaperClipIcon\",\n \"ListOrderedIcon\",\n \"ListUnorderedIcon\",\n \"ParagraphIcon\",\n \"MarkdownIcon\"\n ]\n },\n {\n name: \"Git\",\n icons: [\n \"RepoIcon\",\n \"CommitIcon\",\n \"BranchIcon\",\n \"PullRequestIcon\",\n \"MergeIcon\"\n ]\n },\n {\n name: \"OS\",\n icons: [\n \"AppleIcon\",\n \"LinuxIcon\",\n \"UbuntuIcon\",\n \"WindowsIcon\",\n \"ChromeIcon\"\n ]\n },\n {\n name: \"Logos\",\n icons: [\n \"StorybookIcon\",\n \"AzureDevOpsIcon\",\n \"BitbucketIcon\",\n \"ChromaticIcon\",\n \"ComponentDrivenIcon\",\n \"DiscordIcon\",\n \"FacebookIcon\",\n \"FigmaIcon\",\n \"GDriveIcon\",\n \"GithubIcon\",\n \"GitlabIcon\",\n \"GoogleIcon\",\n \"GraphqlIcon\",\n \"MediumIcon\",\n \"ReduxIcon\",\n \"TwitterIcon\",\n \"YoutubeIcon\",\n \"VSCodeIcon\",\n \"LinkedinIcon\",\n \"XIcon\"\n ]\n },\n {\n name: \"Devices\",\n icons: [\n \"BrowserIcon\",\n \"TabletIcon\",\n \"MobileIcon\",\n \"WatchIcon\",\n \"SidebarIcon\",\n \"SidebarAltIcon\",\n \"SidebarAltToggleIcon\",\n \"SidebarToggleIcon\",\n \"BottomBarIcon\",\n \"BottomBarToggleIcon\",\n \"CPUIcon\",\n \"DatabaseIcon\",\n \"MemoryIcon\",\n \"StructureIcon\",\n \"BoxIcon\",\n \"PowerIcon\"\n ]\n },\n {\n name: \"CRUD\",\n icons: [\n \"EditIcon\",\n \"CogIcon\",\n \"NutIcon\",\n \"WrenchIcon\",\n \"EllipsisIcon\",\n \"WandIcon\",\n \"CheckIcon\",\n \"FormIcon\",\n \"BatchDenyIcon\",\n \"BatchAcceptIcon\",\n \"ControlsIcon\",\n \"PlusIcon\",\n \"CloseAltIcon\",\n \"CrossIcon\",\n \"TrashIcon\",\n \"PinAltIcon\",\n \"UnpinIcon\",\n \"AddIcon\",\n \"SubtractIcon\",\n \"CloseIcon\",\n \"DeleteIcon\",\n \"PassedIcon\",\n \"ChangedIcon\",\n \"FailedIcon\",\n \"ClearIcon\",\n \"CommentIcon\",\n \"CommentAddIcon\",\n \"RequestChangeIcon\",\n \"CommentsIcon\",\n \"ChatIcon\",\n \"LockIcon\",\n \"UnlockIcon\",\n \"KeyIcon\",\n \"OutboxIcon\",\n \"CreditIcon\",\n \"ButtonIcon\",\n \"TypeIcon\",\n \"PointerDefaultIcon\",\n \"PointerHandIcon\",\n \"CommandIcon\",\n \"SaveIcon\"\n ]\n },\n {\n name: \"Communicate\",\n icons: [\n \"InfoIcon\",\n \"QuestionIcon\",\n \"SupportIcon\",\n \"AlertIcon\",\n \"AlertAltIcon\",\n \"EmailIcon\",\n \"PhoneIcon\",\n \"LinkIcon\",\n \"LinkBrokenIcon\",\n \"BellIcon\",\n \"RSSIcon\",\n \"ShareAltIcon\",\n \"ShareIcon\",\n \"JumpToIcon\",\n \"CircleHollowIcon\",\n \"CircleIcon\",\n \"BookmarkHollowIcon\",\n \"BookmarkIcon\",\n \"DiamondIcon\",\n \"HeartHollowIcon\",\n \"HeartIcon\",\n \"StarHollowIcon\",\n \"StarIcon\",\n \"CertificateIcon\",\n \"VerifiedIcon\",\n \"ThumbsUpIcon\",\n \"ShieldIcon\",\n \"BasketIcon\",\n \"BeakerIcon\",\n \"HourglassIcon\",\n \"FlagIcon\",\n \"CloudHollowIcon\",\n \"CloudIcon\",\n \"StickerIcon\",\n \"StatusFailIcon\",\n \"StatusIcon\",\n \"StatusWarnIcon\",\n \"StatusPassIcon\"\n ]\n },\n {\n name: \"Wayfinding\",\n icons: [\n \"ChevronUpIcon\",\n \"ChevronDownIcon\",\n \"ChevronLeftIcon\",\n \"ChevronRightIcon\",\n \"ChevronSmallUpIcon\",\n \"ChevronSmallDownIcon\",\n \"ChevronSmallLeftIcon\",\n \"ChevronSmallRightIcon\",\n \"ArrowUpIcon\",\n \"ArrowDownIcon\",\n \"ArrowLeftIcon\",\n \"ArrowRightIcon\",\n \"ArrowTopLeftIcon\",\n \"ArrowTopRightIcon\",\n \"ArrowBottomLeftIcon\",\n \"ArrowBottomRightIcon\",\n \"ArrowSolidUpIcon\",\n \"ArrowSolidDownIcon\",\n \"ArrowSolidLeftIcon\",\n \"ArrowSolidRightIcon\",\n \"ExpandAltIcon\",\n \"CollapseIcon\",\n \"ExpandIcon\",\n \"UnfoldIcon\",\n \"TransferIcon\",\n \"RedirectIcon\",\n \"UndoIcon\",\n \"ReplyIcon\",\n \"SyncIcon\",\n \"UploadIcon\",\n \"DownloadIcon\",\n \"BackIcon\",\n \"ProceedIcon\",\n \"RefreshIcon\",\n \"GlobeIcon\",\n \"CompassIcon\",\n \"LocationIcon\",\n \"PinIcon\",\n \"TimeIcon\",\n \"DashboardIcon\",\n \"TimerIcon\",\n \"HomeIcon\",\n \"AdminIcon\",\n \"DirectionIcon\"\n ]\n },\n {\n name: \"People\",\n icons: [\n \"UserIcon\",\n \"UserAltIcon\",\n \"UserAddIcon\",\n \"UsersIcon\",\n \"ProfileIcon\",\n \"FaceHappyIcon\",\n \"FaceNeutralIcon\",\n \"FaceSadIcon\",\n \"AccessibilityIcon\",\n \"AccessibilityAltIcon\",\n \"AccessibilityIgnoredIcon\"\n ]\n }\n], oy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-.\\\n708 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\",\n fill: e\n }\n )\n)), iy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n 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\",\n fill: e\n }\n )\n)), ly = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-.5h\\\n4.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-.\\\n5v-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-\\\n3.5H12v3.5H8.5z\",\n fill: e\n }\n )\n)), sy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.\\\n5h-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 00\\\n0 2z\",\n fill: e\n }\n )\n)), uy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-\\\n2.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\\\n-2.293 2.293L9.354 8.15a.5.5 0 11-.708.707L6 6.211l-2 2v1.793h9V7.21z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n d: \"M0 10.004v-3h1v3H0zM0 13.504v-2.5h1v2h2v1H.5a.5.5 0 01-.5-.5zM7 14.004H4v-1h3v1z\",\n fill: e\n }\n )\n)), cy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n d: \"M2.5 1H4V0H2.5A2.5 2.5 0 000 2.5V4h1V2.5A1.5 1.5 0 012.5 1z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 \\\n8.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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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 13\\\nh1.5a1.5 1.5 0 001.5-1.5V10h1v1.5a2.5 2.5 0 01-2.5 2.5H10v-1z\",\n fill: e\n }\n )\n)), py = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"g\", { clipPath: \"url(#prefix__clip0_2484_400)\" }, /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.\\\n223L9.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 0\\\n01 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 \\\n0 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\",\n fill: e\n }\n )),\n /* @__PURE__ */ s.createElement(\"defs\", null, /* @__PURE__ */ s.createElement(\"clipPath\", { id: \"prefix__clip0_2484_400\" }, /* @__PURE__ */ s.createElement(\n \"path\", { fill: \"#fff\", d: \"M0 0h14v14H0z\" })))\n)), dy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n d: \"M4 3V1h1v2H4zM4 6v2h1V6H4zM4 11v2h1v-2H4zM9 11v2h1v-2H9zM9 8V6h1v2H9zM9 1v2h1V1H9zM13 5h-2V4h2v1zM11 10h2V9h-2v1zM3 10H1V9h2v1zM1 \\\n5h2V4H1v1zM8 5H6V4h2v1zM6 10h2V9H6v1zM4 4h1v1H4V4zM10 4H9v1h1V4zM9 9h1v1H9V9zM5 9H4v1h1V9z\",\n fill: e\n }\n )\n)), fy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 \\\n4.5 0 019 0z\",\n fill: e\n }\n )\n)), hy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 \\\n4.5 0 019 0z\",\n fill: e\n }\n )\n)), my = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"path\", { d: \"M4 5.5a.5.5 0 000 1h4a.5.5 0 000-1H4z\", fill: e }),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.\\\n5 4.5 0 100-9 4.5 4.5 0 000 9z\",\n fill: e\n }\n )\n)), gy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.72\\\n4 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\",\n fill: e\n }\n )\n)), vy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"path\", { d: \"M7 9.5a2.5 2.5 0 100-5 2.5 2.5 0 000 5z\", fill: e }),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.207L\\\n14 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.\\\n72 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\",\n fill: e\n }\n )\n)), wy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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 00\\\n2.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.8\\\n02A12.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\\\n.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.\\\n58C3.262 11.5.332 7.465.21 7.293L0 7l.21-.293z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), by = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n.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-.\\\n804L9.02 2.29 3.814 6.803l2.95.764-1.277 4.285 4.754-4.622zM4.51 13.435l.037.011-.037-.011z\",\n fill: e\n }\n )\n)), Pu = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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-.\\\n648.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.7\\\n82.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-.\\\n71L2.524 6.6zM1.854 1.146a.5.5 0 10-.708.708l11 11a.5.5 0 00.708-.708l-11-11z\",\n fill: e\n }\n )\n)), yy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), Dy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n d: \"M1.5 1.004a.5.5 0 100 1H12v10.5a.5.5 0 001 0v-10.5a1 1 0 00-1-1H1.5z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), xy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.5zm\\\n1 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.707\\\nV4.71l-5.293 5.293h1.586L10 6.297zm-.707-2.293H7.707L4 7.71v1.586l5.293-5.293z\",\n fill: e\n }\n )\n)), Cy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 0\\\nv-2h9v9h-2v-6.5a.5.5 0 00-.5-.5H4zm6 8v2H1v-9h2v6.5a.5.5 0 00.5.5H10zm0-1H4v-6h6v6z\",\n fill: e\n }\n )\n)), Ey = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"g\",\n {\n clipPath: \"url(#prefix__clip0_2359_559)\",\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n fill: e\n },\n /* @__PURE__ */ s.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.\\\n499 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 0\\\n0-.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.2\\\n93 0H7.707L4 7.71v1.586l5.293-5.293z\" }),\n /* @__PURE__ */ s.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\\\n-.5-.5z\" })\n ),\n /* @__PURE__ */ s.createElement(\"defs\", null, /* @__PURE__ */ s.createElement(\"clipPath\", { id: \"prefix__clip0_2359_559\" }, /* @__PURE__ */ s.createElement(\n \"path\", { fill: \"#fff\", d: \"M0 0h14v14H0z\" })))\n)), Ry = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.\\\n095-.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.24\\\n2 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-\\\n.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\",\n fill: e\n }\n )\n)), Sy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n-1 0V7H7.5v2.5a.5.5 0 01-1 0V7h-.75v1a.5.5 0 01-1 0V7H4v2.5a.5.5 0 01-1 0V7H2z\",\n fill: e\n }\n )\n)), Ay = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M10 7a3 3 0 11-6 0 3 3 0 016 0zM9 7a2 2 0 11-4 0 2 2 0 014 0z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.00\\\n4v8h12v-8H1z\",\n fill: e\n }\n )\n)), Fy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"path\", { d: \"M2.5 10a.5.5 0 100-1 .5.5 0 000 1z\", fill: e }),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.\\\n5a.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\",\n fill: e\n }\n )\n)), ky = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.\\\n504 0 005 9.5v-5c0-.015 0-.03-.002-.044L7 2.704v8.592L4.998 9.545z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), Ly = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), Ty = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.608\\\nA.5.5 0 0112 2.39v9.217a.5.5 0 01-.76.427z\",\n fill: e\n }\n )\n)), Iy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.965\\\nA.5.5 0 002 2.39v9.217a.5.5 0 00.76.427z\",\n fill: e\n }\n )\n)), By = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n 0v-8.5a.75.75 0 011.5 0v3.603L8.228 2A.5.5 0 019 2.42z\",\n fill: e\n }\n )\n)), My = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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 0\\\nv-8.5a.75.75 0 00-1.5 0v3.603L5.772 2A.5.5 0 005 2.42z\",\n fill: e\n }\n )\n)), _y = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), Py = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"g\", { clipPath: \"url(#prefix__clip0_1107_3492)\", fill: e }, /* @__PURE__ */ s.createElement(\"path\", { d: \"\\\nM7.5.5a.5.5 0 00-1 0V2a.5.5 0 001 0V.5z\" }), /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M7 10a3 3 0 100-6 3 3 0 000 6zm0-1a2 2 0 100-4 2 2 0 000 4z\"\n }\n ), /* @__PURE__ */ s.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\\\n 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\\\n.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-.\\\n706.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\" })),\n /* @__PURE__ */ s.createElement(\"defs\", null, /* @__PURE__ */ s.createElement(\"clipPath\", { id: \"prefix__clip0_1107_3492\" }, /* @__PURE__ */ s.createElement(\n \"path\", { fill: \"#fff\", d: \"M0 0h14v14H0z\" })))\n)), Hy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 15 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"g\", { clipPath: \"url(#prefix__clip0_1107_3493)\" }, /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.691C\\\n9.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\",\n fill: e\n }\n )),\n /* @__PURE__ */ s.createElement(\"defs\", null, /* @__PURE__ */ s.createElement(\"clipPath\", { id: \"prefix__clip0_1107_3493\" }, /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fill: \"#fff\",\n transform: \"scale(1.07124)\",\n d: \"M0 0h14.001v14.002H0z\"\n }\n )))\n)), zy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), Oy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), Ny = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n 1.6a.6.6 0 01.6.6v9.6a.6.6 0 11-1.2 0V2.2a.6.6 0 01.6-.6z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 0\\\n1-.536-1.073l1-.5a.6.6 0 01.805.268z\",\n fill: e\n }\n )\n)), $y = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z\",\n fill: e\n }\n )\n)), Vy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), jy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), Wy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.\\\n352l-.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\",\n fill: e\n }\n )\n)), qy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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 01\\\n0 1h-5a.5.5 0 01-.5-.5z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n 0 00.5.5h2V13H2V1z\",\n fill: e\n }\n )\n)), Uy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n.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\\\n.15.217.15.357v4.5zm-8-6v9h7v-7H6.5a.5.5 0 01-.5-.5v-1.5H1z\",\n fill: e\n }\n )\n)), Gy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), Yy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-.\\\n5v-8.5a.5.5 0 00-.5-.5H7z\",\n fill: e\n }\n )\n)), Xy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n 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-4h12v4\\\nzm-2-6v1H3v-2h7v.5a.5.5 0 00.5.5h.5zm-8 9h8v-5H3v5z\",\n fill: e\n }\n )\n)), Ky = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n.211 3.854 8.857a.5.5 0 11-.708-.707l2-2z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), Zy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 \\\n01.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 4v\\\n2.3h3V4H9zM5.5 6.3h3V4h-3v2.3z\",\n fill: e\n }\n )\n)), Jy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n.5-.5zM3 10.5a.5.5 0 00-1 0v2a.5.5 0 001 0v-2z\",\n fill: e\n }\n )\n)), Qy = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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-.5z\\\nM7.5 11a.5.5 0 010 1H1a.5.5 0 010-1h6.5z\",\n fill: e\n }\n )\n)), e8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.\\\n5 11a.5.5 0 000 1H13a.5.5 0 000-1H6.5z\",\n fill: e\n }\n )\n)), t8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n 11a.5.5 0 000 1h1a.5.5 0 000-1h-1z\",\n fill: e\n }\n )\n)), r8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.7H\\\n2zm3.5 0V12h3V9.7h-3zm3.5 0V12h3V9.7H9zm3-.5H9V6.8h3v2.4zm-3.5 0h-3V6.8h3v2.4zM9 6.3h3V4H9v2.3zm-3.5 0h3V4h-3v2.3z\",\n fill: e\n }\n )\n)), n8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), a8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), o8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n-1h12z\",\n fill: e\n }\n )\n)), i8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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-\\\n2.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.\\\n5-3a.5.5 0 00-.704-.064z\",\n fill: e\n }\n )\n)), l8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 10\\\n0-2.5z\",\n fill: e\n }\n )\n)), s8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"path\", { d: \"M5 2h6v1H8.5l-2 8H9v1H3v-1h2.5l2-8H5V2z\", fill: e })\n)), u8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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 \\\n0 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.\\\n5.5 0 11.707.707L4.189 9.34a.5.5 0 00.707.707l5.657-5.657a1.5 1.5 0 000-2.121z\",\n fill: e\n }\n )\n)), c8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n.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-1\\\nH2v-.5z\",\n fill: e\n }\n )\n)), p8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.25\\\na.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\",\n fill: e\n }\n )\n)), d8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), f8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), h8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), m8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), g8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.14\\\n3c-.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.\\\n5 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\",\n fill: e\n }\n )\n)), v8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.\\\n5a.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 11\\\na.5.5 0 100 1 .5.5 0 000-1zm0-8a.5.5 0 100-1 .5.5 0 000 1z\",\n fill: e\n }\n )\n)), w8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.0\\\n9 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 0z\\\nm7 6a.5.5 0 11-1 0 .5.5 0 011 0z\",\n fill: e\n }\n )\n)), b8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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-.\\\n016c-.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.0\\\n7.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.00\\\n2h.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\\\n.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\",\n fill: e\n }\n )\n)), y8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n 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.50\\\n7 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\\\n.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\\\n.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 \\\n00-.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.017\\\nA4.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 \\\n012 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.\\\n5 0 01.5-.5zM6 2.5a.5.5 0 00-1 0V3a.5.5 0 001 0v-.5z\",\n fill: e\n }\n )\n)), D8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"g\", { clipPath: \"url(#prefix__clip0_1107_3497)\", fill: e }, /* @__PURE__ */ s.createElement(\"path\", { d: \"\\\nM12.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.6\\\nc0 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.7\\\n61 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\\\n 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\\\n-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.7\\\n8.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.\\\n23a3.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\" })),\n /* @__PURE__ */ s.createElement(\"defs\", null, /* @__PURE__ */ s.createElement(\"clipPath\", { id: \"prefix__clip0_1107_3497\" }, /* @__PURE__ */ s.createElement(\n \"path\", { fill: \"#fff\", d: \"M0 0h14v14H0z\" })))\n)), x8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n d: \"M6.5 1H1v5.5h5.5V1zM13 1H7.5v5.5H13V1zM7.5 7.5H13V13H7.5V7.5zM6.5 7.5H1V13h5.5V7.5z\",\n fill: e\n }\n )\n)), C8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"g\", { clipPath: \"url(#prefix__clip0_1107_3496)\" }, /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 \\\n6.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.\\\n615zm1.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.\\\n058 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.4\\\n81 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.\\\n785-1.024-2.433a.115.115 0 01.08-.196z\",\n fill: e\n }\n )),\n /* @__PURE__ */ s.createElement(\"defs\", null, /* @__PURE__ */ s.createElement(\"clipPath\", { id: \"prefix__clip0_1107_3496\" }, /* @__PURE__ */ s.createElement(\n \"path\", { fill: \"#fff\", d: \"M0 0h14v14H0z\" })))\n)), E8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-.\\\n044a.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\\\n.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 \\\n2.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.6\\\n24-.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\",\n fill: e\n }\n )\n)), R8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"g\", { clipPath: \"url(#prefix__clip0_1107_3503)\" }, /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n.661l8.784 1.047v-7.55L14 2.581z\",\n fill: e\n }\n )),\n /* @__PURE__ */ s.createElement(\"defs\", null, /* @__PURE__ */ s.createElement(\"clipPath\", { id: \"prefix__clip0_1107_3503\" }, /* @__PURE__ */ s.createElement(\n \"path\", { fill: \"#fff\", d: \"M0 0h14v14H0z\" })))\n)), S8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-.\\\n724-3.781h7.904L13.412 2A.411.411 0 0013 1.524L1 1.522z\",\n fill: e\n }\n )\n)), A8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.3\\\n46-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 \\\n4.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 00\\\n2.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\\\n.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.7\\\n47a.268.268 0 01-.135.232l-2.1 1.211v1.96l3.346-1.931a1.966 1.966 0 00.72-2.683z\",\n fill: e\n }\n )\n)), F8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.6\\\n85.685 0 00.97 0l4.81-4.81a.685.685 0 000-.969L8.441 5.555l2.405-2.404a.685.685 0 000-.97z\",\n fill: e\n }\n )\n)), k8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n 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\\\n.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\\\n-.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.04\\\n5.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\\\n.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.\\\n258-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 \\\n1.27.639 1.258 1.41 0 .778-.551 1.412-1.258 1.412z\",\n fill: e\n }\n )\n)), L8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.208h\\\n1.934l-.228 2.412L7.401 7l-.002 7z\",\n fill: e\n }\n )\n)), T8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.60\\\n4 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.397\\\nh1.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\",\n fill: e\n }\n )\n)), I8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.\\\n42 6.236 4.378 2.7z\",\n fill: e\n }\n )\n)), B8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.35\\\n3-.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-\\\n.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-.236\\\nc.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\\\n.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\",\n fill: e\n }\n )\n)), M8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.\\\n256.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\",\n fill: e\n }\n )\n)), _8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.684c\\\n0 .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-.31\\\n3-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.\\\n82-.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.00\\\n4.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.\\\n023 2.003 2.262.163 1.24-.47 2.222-1.414 2.193z\",\n fill: e\n }\n )\n)), P8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.26\\\n5 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.\\\n033-.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\\\n-.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.56a\\\n1.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-.\\\n035l2.687-1.552a1.168 1.168 0 101.457-1.791z\",\n fill: e\n }\n )\n)), H8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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-.07\\\n4.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\\\n.126-.416v.003-4.157a.363.363 0 00-.118-.307l-.878-1.058v-.158h2.727l2.107 4.622L9.031 3.16h2.6v.158z\",\n fill: e\n }\n )\n)), z8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.\\\n314-.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\\\n.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-\\\n5.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\\\n.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.32\\\n6 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\\\n-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 \\\n1.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 \\\n1.825c-.897 1.842-2.478 3.08-4.565 3.488z\",\n fill: e\n }\n )\n)), O8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 \\\n1.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.\\\n806 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\\\n.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\",\n fill: e\n }\n )\n)), N8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n-.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-\\\n.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.\\\n095.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-.4\\\n53c.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\\\n 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\",\n fill: e\n }\n )\n)), $8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n.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-\\\n.033L4.11 5.327 9.628.296a.871.871 0 01.615-.255zm.259 3.784L6.315 7l4.187 3.176V3.824z\",\n fill: e\n }\n )\n)), V8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n.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 \\\n1.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.06\\\n6-.584 0-1.058.477-1.058 1.066zm1.962 7.6h-1.79V5.556h1.79v5.777z\",\n fill: e\n }\n )\n)), j8 = /* @__PURE__ */ s.forwardRef(\n ({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n.357h1.18L3.796 1.655H2.502l7.759 10.148z\",\n fill: e\n }\n )\n )\n), W8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 01\\\n1 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\",\n fill: e\n }\n )\n)), q8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n-9.5a.5.5 0 01.5-.5zm2.5 11a.5.5 0 000 1h2a.5.5 0 000-1H6z\",\n fill: e\n }\n )\n)), U8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), G8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-\\\n.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 \\\n1H7a.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\",\n fill: e\n }\n )\n)), Y8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n 0 110 1H3a.5.5 0 01-.5-.5z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), X8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.\\\n5.5 0 010 1h-1a.5.5 0 01-.5-.5z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), K8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n-1a.5.5 0 100 1h1a.5.5 0 00.5-.5z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.6\\\n5-.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\",\n fill: e\n }\n )\n)), Z8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n 0 110 1H2a.5.5 0 01-.5-.5z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.\\\n5 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\",\n fill: e\n }\n )\n)), J8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.\\\n5.5 0 010 1h-1a.5.5 0 01-.5-.5z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), Q8 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.\\\n5.5 0 000-1h-1z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n.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\",\n fill: e\n }\n )\n)), e9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-.\\\n5.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\\\n-1.5a.5.5 0 01.5-.5zm5.5 3H3v8h8v-8z\",\n fill: e\n }\n )\n)), t9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-.17\\\n2 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\\\n 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.7\\\n9 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-\\\n.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.37\\\n8-.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.\\\n465 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-.\\\n751.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\\\n 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-.\\\n414c.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\\\n-1.281 0-2.462-.172-3.34-.465A4.767 4.767 0 013 9.763z\",\n fill: e\n }\n )\n)), r9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n.504z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n.5-.5V3.54zM3 1.004h5.293L11 3.71v5.293H3v-8zm0 9v3h8v-3H3z\",\n fill: e\n }\n )\n)), n9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.446z\\\nm-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\",\n fill: e\n }\n )\n)), a9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.958\\\na.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.18V\\\n4.282L7.5 6.82v5.898zM12.307 3.5L7 5.95 1.693 3.5 7 1.05l5.307 2.45z\",\n fill: e\n }\n )\n)), o9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"path\", { d: \"M7.5.5a.5.5 0 00-1 0v6a.5.5 0 001 0v-6z\", fill: e }),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), i9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.134l\\\n2.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 1\\\n2.293 11.293 4 10 2.707zM1.137 12.863l.17-.849.679.679-.849.17z\",\n fill: e\n }\n )\n)), l9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.63\\\n5 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.057\\\nV11.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-\\\n.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.63\\\n4.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.3\\\n3A7.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-\\\n1.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.01\\\n4c.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.50\\\n2 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.2\\\n94-.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 \\\n0 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\",\n fill: e\n }\n )\n)), s9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 \\\n1 0 01.5-.866L6.5.29zm.5.866l5.062 2.922v5.846L7 12.845 1.937 9.923V4.077L7 1.155z\",\n fill: e\n }\n )\n)), u9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n 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\",\n fill: e\n }\n )\n)), c9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), p9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n.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.21\\\n4.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-.3\\\n7L2.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.23\\\nl.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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n.758L9.258 6.04 2.5 12.797zm7.465-7.465l2.828-2.828L11.5 1.211 8.672 4.039l1.293 1.293z\",\n fill: e\n }\n )\n)), d9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), f9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), h9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n.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 \\\n0111 7zM11.5 11a.5.5 0 000 1h2a.5.5 0 000-1h-2z\",\n fill: e\n }\n )\n)), m9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.\\\n5 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-1\\\nh-2z\",\n fill: e\n }\n )\n)), g9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.\\\n5.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\\\n.5A.5.5 0 011 7z\",\n fill: e\n }\n )\n)), v9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), w9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n 0011.97.97L7 5.94 2.03.97z\",\n fill: e\n }\n )\n)), Hu = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n.5.5 0 00-.708-.708L7 6.293 1.854 1.146z\",\n fill: e\n }\n )\n)), b9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 1h6\\\na1 1 0 001-1V3H3zm2.5-2h3v1h-3V1z\",\n fill: e\n }\n )\n)), y9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"g\", { clipPath: \"url(#prefix__clip0_1107_3502)\" }, /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-\\\n3 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.\\\n585l-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 \\\n0l3.878 3.88a.5.5 0 010 .706l-.44.44a.414.414 0 01-.585 0L11 5.586z\",\n fill: e\n }\n )),\n /* @__PURE__ */ s.createElement(\"defs\", null, /* @__PURE__ */ s.createElement(\"clipPath\", { id: \"prefix__clip0_1107_3502\" }, /* @__PURE__ */ s.createElement(\n \"path\", { fill: \"#fff\", d: \"M0 0h14v14H0z\" })))\n)), D9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"g\", { clipPath: \"url(#prefix__clip0_1107_3501)\", fill: e }, /* @__PURE__ */ s.createElement(\"path\", { d: \"\\\nM13.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 \\\n0l3.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\\\n.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.\\\n5.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 0\\\n0.708-.708l-11-11z\" })),\n /* @__PURE__ */ s.createElement(\"defs\", null, /* @__PURE__ */ s.createElement(\"clipPath\", { id: \"prefix__clip0_1107_3501\" }, /* @__PURE__ */ s.createElement(\n \"path\", { fill: \"#fff\", d: \"M0 0h14v14H0z\" })))\n)), x9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M7 14A7 7 0 107 0a7 7 0 000 14zm0-1A6 6 0 107 1a6 6 0 000 12z\",\n fill: e\n }\n )\n)), C9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"path\", { d: \"M3.5 6.5a.5.5 0 000 1h7a.5.5 0 000-1h-7z\", fill: e }),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z\",\n fill: e\n }\n )\n)), E9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n.5 0 11.708-.708L7 6.293l2.146-2.147a.5.5 0 01.708 0z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M7 14A7 7 0 107 0a7 7 0 000 14zm0-1A6 6 0 107 1a6 6 0 000 12z\",\n fill: e\n }\n )\n)), R9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.45\\\n6 8.456z\",\n fill: e\n }\n )\n)), S9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.\\\n147a.5.5 0 01.708 0z\",\n fill: e\n }\n )\n)), A9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), F9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-.\\\n708-.708L6.293 7 4.146 4.854a.5.5 0 11.708-.708L7 6.293l2.146-2.147a.5.5 0 01.708 0z\",\n fill: e\n }\n )\n)), k9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 0\\\n1.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\\\n.854a.5.5 0 010-.708z\",\n fill: e\n }\n )\n)), L9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 \\\n0 01.5.5v9a.5.5 0 01-.5.5zm-10.5-1v-8h10v8H2z\",\n fill: e\n }\n )\n)), T9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.\\\n5 0 01-.5.5H5.707l-1.853 1.854a.5.5 0 01-.163.108zM2 3.004v8h10v-8H2z\",\n fill: e\n }\n )\n)), I9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.\\\n5 0 01-.5.5H5.707l-1.853 1.854a.5.5 0 01-.163.108zM2 3.004v8h10v-8H2z\",\n fill: e\n }\n )\n)), B9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n.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\",\n fill: e\n }\n )\n)), M9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n 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 \\\n0 00-1.843 0z\",\n fill: e\n }\n )\n)), _9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n d: \"M8 8.004a1 1 0 01-.5.866v1.634a.5.5 0 01-1 0V8.87A1 1 0 118 8.004z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 1\\\nH2v7h10v-7z\",\n fill: e\n }\n )\n)), P9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"g\", { clipPath: \"url(#prefix__clip0_1107_3614)\", fill: e }, /* @__PURE__ */ s.createElement(\"path\", { d: \"\\\nM6.5 8.87a1 1 0 111 0v1.634a.5.5 0 01-1 0V8.87z\" }), /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-\\\n.939.345A3.001 3.001 0 007 1zM2 6.004h10v7H2v-7z\"\n }\n )),\n /* @__PURE__ */ s.createElement(\"defs\", null, /* @__PURE__ */ s.createElement(\"clipPath\", { id: \"prefix__clip0_1107_3614\" }, /* @__PURE__ */ s.createElement(\n \"path\", { fill: \"#fff\", d: \"M0 0h14v14H0z\" })))\n)), H9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"path\", { d: \"M11 4a1 1 0 11-2 0 1 1 0 012 0z\", fill: e }),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n 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.\\\n552 0 00.099-.613A3.473 3.473 0 016 4.5z\",\n fill: e\n }\n )\n)), z9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), O9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"path\", { d: \"M2.5 8.004a.5.5 0 100 1h3a.5.5 0 000-1h-3z\", fill: e }),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), N9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n-.663-.135.498.498 0 01-.095-.3L6 7.515a.497.497 0 01.45-.509z\",\n fill: e\n }\n )\n)), $9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n.5.5 0 00.5-.5v-5a.5.5 0 00-.5-.5h-4z\",\n fill: e\n }\n )\n)), V9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n.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\\\n 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.35\\\n8 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\\\n.792-.014l-1.56-1.56-.957 1.916a1.27 1.27 0 01-1.142.702h-.037z\",\n fill: e\n }\n )\n)), j9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-.\\\n47V5.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-\\\n.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-.21\\\n4-.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 \\\n00-.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-.2\\\n6.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-.\\\n032zm.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.5\\\n04l-.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\\\n.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-.16\\\n1c.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\",\n fill: e\n }\n )\n)), W9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 \\\n113 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\",\n fill: e\n }\n )\n)), q9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n.167z\",\n stroke: e,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n d: \"M9.917 12.25V7.583H4.083v4.667M4.083 1.75v2.917H8.75\",\n stroke: e,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n )\n)), U9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M7 14A7 7 0 107 0a7 7 0 000 14zm0-1A6 6 0 107 1a6 6 0 000 12z\",\n fill: e\n }\n )\n)), G9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.\\\n75 0 000 1.5z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z\",\n fill: e\n }\n )\n)), Y9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 1\\\n1s1.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\\\n.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.\\\n742 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.20\\\n2-1.436.554-2.032zM10 7a3 3 0 11-6 0 3 3 0 016 0z\",\n fill: e\n }\n )\n)), X9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.4\\\n97.497 0 01.642-.21zM7 2.483L1.376 12h11.248L7 2.483z\",\n fill: e\n }\n )\n)), K9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), Z9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-\\\n.526.062.497.497 0 01-.1-.062L1 3.516zm11.03-.512H1.974L7 6.874l5.03-3.87z\",\n fill: e\n }\n )\n)), J9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n.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.\\\n55 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\\\n 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 \\\n2.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 0\\\n14.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\\\n-.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-.22\\\n2-.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.\\\n57 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\",\n fill: e\n }\n )\n)), Q9 = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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 01\\\n4.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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n 2.25 0 010 3.182l-2.5 2.5A2.25 2.25 0 112.159 8.66l1.45-1.45z\",\n fill: e\n }\n )\n)), eD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.596z\\\nM12.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.\\\n854 1.146a.5.5 0 10-.708.708l11 11a.5.5 0 00.707-.707l-11-11z\",\n fill: e\n }\n )\n)), tD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n.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\\\n-4 3.5a.5.5 0 111 0 .5.5 0 01-1 0z\",\n fill: e\n }\n )\n)), rD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), nD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), aD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), oD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), iD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M7 13A6 6 0 107 1a6 6 0 000 12zm0 1A7 7 0 107 0a7 7 0 000 14z\",\n fill: e\n }\n )\n)), lD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"path\", { d: \"M14 7A7 7 0 110 7a7 7 0 0114 0z\", fill: e })\n)), sD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.\\\n5.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\",\n fill: e\n }\n )\n)), uD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 15\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.\\\n5.5 0 01.5-.5z\",\n fill: e\n }\n )\n)), cD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"g\", { clipPath: \"url(#prefix__clip0_1449_588)\" }, /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n 3 0 000 4.242l4 4a3 3 0 004.242 0l4-4a3 3 0 000-4.242l-4-4z\",\n fill: e\n }\n )),\n /* @__PURE__ */ s.createElement(\"defs\", null, /* @__PURE__ */ s.createElement(\"clipPath\", { id: \"prefix__clip0_1449_588\" }, /* @__PURE__ */ s.createElement(\n \"path\", { fill: \"#fff\", d: \"M0 0h14v14H0z\" })))\n)), pD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n 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.217\\\na7.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\\\n.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.5\\\n12.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\\\n.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.708\\\nc0 .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-\\\n.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-\\\n1.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.09\\\nh-.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 \\\n4.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\",\n fill: e\n }\n )\n)), dD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n 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.217\\\na7.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\\\n.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.5\\\n12.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\\\n.086 1.585.262.392.146.734.34 1.026.584z\",\n fill: e\n }\n )\n)), fD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 \\\n1.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\\\n.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-.41\\\n2a.75.75 0 01-.593-.43L7 1.694z\",\n fill: e\n }\n )\n)), hD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n.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\",\n fill: e\n }\n )\n)), mD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 \\\n0 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\",\n fill: e\n }\n )\n)), gD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-.\\\n154-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-.19\\\na.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-.7\\\n04.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.9\\\n9.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-.7\\\n08 0l-2.5-2.5a.5.5 0 11.708-.708L6 8.793l4.146-4.147a.5.5 0 01.708 0z\",\n fill: e\n }\n )\n)), vD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-.\\\n62-.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\\\n-.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 \\\n.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.\\\n33a.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 \\\n00-.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.\\\n202-.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.\\\n98.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\\\n-.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 0\\\n00 1z\",\n fill: e\n }\n )\n)), wD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n-.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\\\n 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-.163C\\\n9.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\",\n fill: e\n }\n )\n)), bD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n d: \"M10.354 2.854a.5.5 0 10-.708-.708l-3 3a.5.5 0 10.708.708l3-3z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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 \\\n0 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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 0\\\n1-1 0z\",\n fill: e\n }\n )\n)), yD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 1zm\\\n1.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.5\\\n97z\",\n fill: e\n }\n )\n)), DD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"path\", { d: \"M7.5 10.5a.5.5 0 11-1 0 .5.5 0 011 0z\", fill: e }),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.\\\n631-.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.95\\\n6.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.4\\\n07-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.4\\\n99 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.12\\\n8a32.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\",\n fill: e\n }\n )\n)), xD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 2\\\nH3v5h7.293L8.146 4.854a.5.5 0 010-.708z\",\n fill: e\n }\n )\n)), CD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n.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\",\n fill: e\n }\n )\n)), ED = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), RD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n.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\\\n.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-\\\n1.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.\\\n99.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\\\n 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.\\\n663L2.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.\\\n073.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\",\n fill: e\n }\n )\n)), SD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M7 4a3 3 0 100 6 3 3 0 000-6zM3 7a4 4 0 118 0 4 4 0 01-8 0z\",\n fill: e\n }\n )\n)), AD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"circle\", { cx: 7, cy: 7, r: 3, fill: e })\n)), FD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n.497.497 0 01.642-.212zM7 4.492L4.37 9h5.26L7 4.492z\",\n fill: e\n }\n )\n)), kD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), LD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), TD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), ID = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), zu = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), BD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), MD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), _D = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), PD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), HD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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-.70\\\n8z\",\n fill: e\n }\n )\n)), zD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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 0\\\n0-.707-.708L7.5 12.293V.5z\",\n fill: e\n }\n )\n)), OD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.\\\n5 0 01.708 0z\",\n fill: e\n }\n )\n)), ND = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n.5 0 010-.708z\",\n fill: e\n }\n )\n)), $D = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), VD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), jD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), WD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n )\n)), qD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), UD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), GD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), YD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), XD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.\\\n5.5 0 01-.708 0l-4-4a.5.5 0 11.708-.708L7 12.793l3.646-3.647a.5.5 0 01.708 0z\",\n fill: e\n }\n )\n)), KD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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 \\\n0 01-.708.708L7 10.207l-3.646 3.647a.5.5 0 01-.708-.708l4-4z\",\n fill: e\n }\n )\n)), ZD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n.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.\\\n5.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-.\\\n793l3.147-3.146a.5.5 0 10-.708-.708L2 11.293z\",\n fill: e\n }\n )\n)), JD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.\\\n5-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\\\n.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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.\\\n5-.5zM9 9.5a.5.5 0 01.5-.5h3a.5.5 0 010 1h-3a.5.5 0 01-.5-.5z\",\n fill: e\n }\n )\n)), QD = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n 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\",\n fill: e\n }\n )\n)), ex = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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-.70\\\n8L11 11.793V4a2 2 0 10-4 0v6.002a3 3 0 01-6 0V1.5a.5.5 0 01.5-.5z\",\n fill: e\n }\n )\n)), tx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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 \\\n0 11-.708.708l-2-2z\",\n fill: e\n }\n )\n)), rx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n-.708.708l-3.5-3.5a.5.5 0 010-.708l3.5-3.5a.5.5 0 01.708 0z\",\n fill: e\n }\n )\n)), nx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.3\\\n53a.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 \\\n007.917 1.576.5.5 0 017.507 1z\",\n fill: e\n }\n )\n)), ax = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z\",\n fill: e\n }\n )\n)), ox = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M0 7a7 7 0 1114 0A7 7 0 010 7zm1 0a6 6 0 1112 0A6 6 0 011 7z\",\n fill: e\n }\n )\n)), ix = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M7 0a7 7 0 110 14A7 7 0 017 0zm0 1a6 6 0 110 12A6 6 0 017 1z\",\n fill: e\n }\n )\n)), lx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M7 14A7 7 0 117 0a7 7 0 010 14zm0-1A6 6 0 117 1a6 6 0 010 12z\",\n fill: e\n }\n )\n)), sx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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 00\\\n0 1h3a.5.5 0 00.5-.5V2a.5.5 0 00-1 0v1.535A6.495 6.495 0 007.092.5z\",\n fill: e\n }\n )\n)), ux = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-\\\n.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.0\\\n56.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\\\n 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-\\\n8.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 \\\n7.5H1.02z\",\n fill: e\n }\n )\n)), cx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.136l\\\n4.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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z\",\n fill: e\n }\n )\n)), px = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n 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\",\n fill: e\n }\n )\n)), dx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M9 5a2 2 0 11-4 0 2 2 0 014 0zM8 5a1 1 0 11-2 0 1 1 0 012 0z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.3\\\n03 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\",\n fill: e\n }\n )\n)), fx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M7 14A7 7 0 107 0a7 7 0 000 14zm0-1A6 6 0 107 1a6 6 0 000 12z\",\n fill: e\n }\n )\n)), hx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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 1\\\n1c1.629 0 3.194.279 4.65.791z\",\n fill: e\n }\n )\n)), mx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"path\", { d: \"M7.5 4.5a.5.5 0 00-1 0v2.634a1 1 0 101 0V4.5z\", fill: e }),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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.02V1H6\\\na.5.5 0 01-.5-.5zM7 3a5 5 0 100 10A5 5 0 007 3z\",\n fill: e\n }\n )\n)), gx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-.5V\\\n7.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\",\n fill: e\n }\n )\n)), vx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\\\n 01-.297-.91zm2.246-.09h7.082L7 2.07 3.459 4.004z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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-.5z\\\nM8.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\",\n fill: e\n }\n )\n)), wx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"g\", { clipPath: \"url(#prefix__clip0_1107_3594)\" }, /* @__PURE__ */ s.createElement(\n \"path\",\n {\n d: \"M11.451.537l.01 12.922h0L7.61 8.946a1.077 1.077 0 00-.73-.374L.964 8.087 11.45.537h0z\",\n stroke: e,\n strokeWidth: 1.077\n }\n )),\n /* @__PURE__ */ s.createElement(\"defs\", null, /* @__PURE__ */ s.createElement(\"clipPath\", { id: \"prefix__clip0_1107_3594\" }, /* @__PURE__ */ s.createElement(\n \"path\", { fill: \"#fff\", d: \"M0 0h14v14H0z\" })))\n)), bx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-.3\\\n9 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\\\n 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\",\n fill: e\n }\n )\n)), yx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.\\\n463 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 \\\n1.836s-.006.74-.275.783c-.858.136-4.036 1.536-4.103 3.082a11.388 11.388 0 005.73 1.532z\",\n fill: e\n }\n )\n)), Dx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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 \\\n0-.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\\\n.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.1\\\n46c-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\\\n.5-.5z\",\n fill: e\n }\n )\n)), xx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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-\\\n.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\\\n.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-.\\\n427.2-.646.29z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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-.6\\\n74-.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.6\\\n33-.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-.40\\\n8-.853-.754-1.312-1.03z\",\n fill: e\n }\n )\n)), Cx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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-.\\\n348-.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.\\\n207.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.2\\\n5A.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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\",\n fill: e\n }\n )\n)), Ex = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.\\\n498 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z\",\n fill: e\n }\n )\n)), Rx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z\",\n fill: e\n }\n )\n)), Sx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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.49\\\n8 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\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z\",\n fill: e\n }\n )\n)), Ax = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n 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\\\n.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-.20\\\n5-.285l-2.453-.818a.5.5 0 01-.316-.632z\",\n fill: e\n }\n ),\n /* @__PURE__ */ s.createElement(\"path\", { d: \"M7 4.5a1 1 0 100-2 1 1 0 000 2z\", fill: e }),\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M7 14A7 7 0 107 0a7 7 0 000 14zm0-1A6 6 0 107 1a6 6 0 000 12z\",\n fill: e\n }\n )\n)), Fx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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-\\\n.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 1\\\n1-.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\",\n fill: e\n }\n )\n)), kx = /* @__PURE__ */ s.forwardRef(({ color: e = \"currentColor\", size: t = 14, ...r }, n) => /* @__PURE__ */ s.createElement(\n \"svg\",\n {\n width: t,\n height: t,\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: n,\n ...r\n },\n /* @__PURE__ */ s.createElement(\"g\", { clipPath: \"url(#prefix__clip0_2359_558)\", fill: e }, /* @__PURE__ */ s.createElement(\"path\", { d: \"\\\nM7.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\" }), /* @__PURE__ */ s.createElement(\n \"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\\\n-.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\\\n.21.011.316z\" }), /* @__PURE__ */ s.createElement(\"path\", { d: \"M8 3.5a1 1 0 11-2 0 1 1 0 012 0z\" }), /* @__PURE__ */ s.createElement(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n 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\"\n }\n )),\n /* @__PURE__ */ s.createElement(\"defs\", null, /* @__PURE__ */ s.createElement(\"clipPath\", { id: \"prefix__clip0_2359_558\" }, /* @__PURE__ */ s.createElement(\n \"path\", { fill: \"#fff\", d: \"M0 0h14v14H0z\" })))\n));\n\n// src/components/components/typography/link/link.tsx\nvar Lx = 0, Tx = /* @__PURE__ */ o((e) => e.button === Lx && !e.altKey && !e.ctrlKey && !e.metaKey && !e.shiftKey, \"isPlainLeftClick\"), Ix = /* @__PURE__ */ o(\n(e, t) => {\n Tx(e) && (e.preventDefault(), t(e));\n}, \"cancelled\"), Bx = Lh.span(\n ({ withArrow: e }) => e ? {\n \"> svg:last-of-type\": {\n height: \"0.7em\",\n width: \"0.7em\",\n marginRight: 0,\n marginLeft: \"0.25em\",\n bottom: \"auto\",\n verticalAlign: \"inherit\"\n }\n } : {},\n ({ containsIcon: e }) => e ? {\n svg: {\n height: \"1em\",\n width: \"1em\",\n verticalAlign: \"middle\",\n position: \"relative\",\n bottom: 0,\n marginRight: 0\n }\n } : {}\n), Mx = Lh.a(\n ({ theme: e }) => ({\n display: \"inline-block\",\n transition: \"all 150ms ease-out\",\n textDecoration: \"none\",\n color: e.color.secondary,\n \"&:hover, &:focus\": {\n cursor: \"pointer\",\n color: tr(0.07, e.color.secondary),\n \"svg path:not([fill])\": {\n fill: tr(0.07, e.color.secondary)\n }\n },\n \"&:active\": {\n color: tr(0.1, e.color.secondary),\n \"svg path:not([fill])\": {\n fill: tr(0.1, e.color.secondary)\n }\n },\n svg: {\n display: \"inline-block\",\n height: \"1em\",\n width: \"1em\",\n verticalAlign: \"text-top\",\n position: \"relative\",\n bottom: \"-0.125em\",\n marginRight: \"0.4em\",\n \"& path\": {\n fill: e.color.secondary\n }\n }\n }),\n ({ theme: e, secondary: t, tertiary: r }) => {\n let n;\n return t && (n = [e.textMutedColor, e.color.dark, e.color.darker]), r && (n = [e.color.dark, e.color.darkest, e.textMutedColor]), n ? {\n color: n[0],\n \"svg path:not([fill])\": {\n fill: n[0]\n },\n \"&:hover\": {\n color: n[1],\n \"svg path:not([fill])\": {\n fill: n[1]\n }\n },\n \"&:active\": {\n color: n[2],\n \"svg path:not([fill])\": {\n fill: n[2]\n }\n }\n } : {};\n },\n ({ nochrome: e }) => e ? {\n color: \"inherit\",\n \"&:hover, &:active\": {\n color: \"inherit\",\n textDecoration: \"underline\"\n }\n } : {},\n ({ theme: e, inverse: t }) => t ? {\n color: e.color.lightest,\n \":not([fill])\": {\n fill: e.color.lightest\n },\n \"&:hover\": {\n color: e.color.lighter,\n \"svg path:not([fill])\": {\n fill: e.color.lighter\n }\n },\n \"&:active\": {\n color: e.color.light,\n \"svg path:not([fill])\": {\n fill: e.color.light\n }\n }\n } : {},\n ({ isButton: e }) => e ? {\n border: 0,\n borderRadius: 0,\n background: \"none\",\n padding: 0,\n fontSize: \"inherit\"\n } : {}\n), $u = /* @__PURE__ */ o(({\n cancel: e = !0,\n children: t,\n onClick: r = void 0,\n withArrow: n = !1,\n containsIcon: a = !1,\n className: i = void 0,\n style: l = void 0,\n ...u\n}) => /* @__PURE__ */ Nu.createElement(\n Mx,\n {\n ...u,\n onClick: r && e ? (c) => Ix(c, r) : r,\n className: i\n },\n /* @__PURE__ */ Nu.createElement(Bx, { withArrow: n, containsIcon: a }, t, n && /* @__PURE__ */ Nu.createElement(zu, null))\n), \"Link\");\n\n// src/components/components/typography/DocumentWrapper.tsx\nimport { styled as _x } from \"@storybook/core/theming\";\nvar Px = _x.div(({ theme: e }) => ({\n fontSize: `${e.typography.size.s2}px`,\n lineHeight: \"1.6\",\n h1: {\n fontSize: `${e.typography.size.l1}px`,\n fontWeight: e.typography.weight.bold\n },\n h2: {\n fontSize: `${e.typography.size.m2}px`,\n borderBottom: `1px solid ${e.appBorderColor}`\n },\n h3: {\n fontSize: `${e.typography.size.m1}px`\n },\n h4: {\n fontSize: `${e.typography.size.s3}px`\n },\n h5: {\n fontSize: `${e.typography.size.s2}px`\n },\n h6: {\n fontSize: `${e.typography.size.s2}px`,\n color: e.color.dark\n },\n \"pre:not(.prismjs)\": {\n background: \"transparent\",\n border: \"none\",\n borderRadius: 0,\n padding: 0,\n margin: 0\n },\n \"pre pre, pre.prismjs\": {\n padding: 15,\n margin: 0,\n whiteSpace: \"pre-wrap\",\n color: \"inherit\",\n fontSize: \"13px\",\n lineHeight: \"19px\"\n },\n \"pre pre code, pre.prismjs code\": {\n color: \"inherit\",\n fontSize: \"inherit\"\n },\n \"pre code\": {\n margin: 0,\n padding: 0,\n whiteSpace: \"pre\",\n border: \"none\",\n background: \"transparent\"\n },\n \"pre code, pre tt\": {\n backgroundColor: \"transparent\",\n border: \"none\"\n },\n /* GitHub inspired Markdown styles loosely from https://gist.github.com/tuzz/3331384 */\n \"body > *:first-of-type\": {\n marginTop: \"0 !important\"\n },\n \"body > *:last-child\": {\n marginBottom: \"0 !important\"\n },\n a: {\n color: e.color.secondary,\n textDecoration: \"none\"\n },\n \"a.absent\": {\n color: \"#cc0000\"\n },\n \"a.anchor\": {\n display: \"block\",\n paddingLeft: 30,\n marginLeft: -30,\n cursor: \"pointer\",\n position: \"absolute\",\n top: 0,\n left: 0,\n bottom: 0\n },\n \"h1, h2, h3, h4, h5, h6\": {\n margin: \"20px 0 10px\",\n padding: 0,\n cursor: \"text\",\n position: \"relative\",\n \"&:first-of-type\": {\n marginTop: 0,\n paddingTop: 0\n },\n \"&:hover a.anchor\": {\n textDecoration: \"none\"\n },\n \"& tt, & code\": {\n fontSize: \"inherit\"\n }\n },\n \"h1:first-of-type + h2\": {\n marginTop: 0,\n paddingTop: 0\n },\n \"p, blockquote, ul, ol, dl, li, table, pre\": {\n margin: \"15px 0\"\n },\n hr: {\n border: \"0 none\",\n borderTop: `1px solid ${e.appBorderColor}`,\n height: 4,\n padding: 0\n },\n \"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:fi\\\nrst-of-type\": {\n marginTop: 0,\n paddingTop: 0\n },\n \"body > h1:first-of-type + h2\": {\n marginTop: 0,\n paddingTop: 0\n },\n \"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\": {\n marginTop: 0,\n paddingTop: 0\n },\n \"h1 p, h2 p, h3 p, h4 p, h5 p, h6 p\": {\n marginTop: 0\n },\n \"li p.first\": {\n display: \"inline-block\"\n },\n \"ul, ol\": {\n paddingLeft: 30,\n \"& :first-of-type\": {\n marginTop: 0\n },\n \"& :last-child\": {\n marginBottom: 0\n }\n },\n dl: {\n padding: 0\n },\n \"dl dt\": {\n fontSize: \"14px\",\n fontWeight: \"bold\",\n fontStyle: \"italic\",\n margin: \"0 0 15px\",\n padding: \"0 15px\",\n \"&:first-of-type\": {\n padding: 0\n },\n \"& > :first-of-type\": {\n marginTop: 0\n },\n \"& > :last-child\": {\n marginBottom: 0\n }\n },\n blockquote: {\n borderLeft: `4px solid ${e.color.medium}`,\n padding: \"0 15px\",\n color: e.color.dark,\n \"& > :first-of-type\": {\n marginTop: 0\n },\n \"& > :last-child\": {\n marginBottom: 0\n }\n },\n table: {\n padding: 0,\n borderCollapse: \"collapse\",\n \"& tr\": {\n borderTop: `1px solid ${e.appBorderColor}`,\n backgroundColor: \"white\",\n margin: 0,\n padding: 0,\n \"& th\": {\n fontWeight: \"bold\",\n border: `1px solid ${e.appBorderColor}`,\n textAlign: \"left\",\n margin: 0,\n padding: \"6px 13px\"\n },\n \"& td\": {\n border: `1px solid ${e.appBorderColor}`,\n textAlign: \"left\",\n margin: 0,\n padding: \"6px 13px\"\n },\n \"&:nth-of-type(2n)\": {\n backgroundColor: e.color.lighter\n },\n \"& th :first-of-type, & td :first-of-type\": {\n marginTop: 0\n },\n \"& th :last-child, & td :last-child\": {\n marginBottom: 0\n }\n }\n },\n img: {\n maxWidth: \"100%\"\n },\n \"span.frame\": {\n display: \"block\",\n overflow: \"hidden\",\n \"& > span\": {\n border: `1px solid ${e.color.medium}`,\n display: \"block\",\n float: \"left\",\n overflow: \"hidden\",\n margin: \"13px 0 0\",\n padding: 7,\n width: \"auto\"\n },\n \"& span img\": {\n display: \"block\",\n float: \"left\"\n },\n \"& span span\": {\n clear: \"both\",\n color: e.color.darkest,\n display: \"block\",\n padding: \"5px 0 0\"\n }\n },\n \"span.align-center\": {\n display: \"block\",\n overflow: \"hidden\",\n clear: \"both\",\n \"& > span\": {\n display: \"block\",\n overflow: \"hidden\",\n margin: \"13px auto 0\",\n textAlign: \"center\"\n },\n \"& span img\": {\n margin: \"0 auto\",\n textAlign: \"center\"\n }\n },\n \"span.align-right\": {\n display: \"block\",\n overflow: \"hidden\",\n clear: \"both\",\n \"& > span\": {\n display: \"block\",\n overflow: \"hidden\",\n margin: \"13px 0 0\",\n textAlign: \"right\"\n },\n \"& span img\": {\n margin: 0,\n textAlign: \"right\"\n }\n },\n \"span.float-left\": {\n display: \"block\",\n marginRight: 13,\n overflow: \"hidden\",\n float: \"left\",\n \"& span\": {\n margin: \"13px 0 0\"\n }\n },\n \"span.float-right\": {\n display: \"block\",\n marginLeft: 13,\n overflow: \"hidden\",\n float: \"right\",\n \"& > span\": {\n display: \"block\",\n overflow: \"hidden\",\n margin: \"13px auto 0\",\n textAlign: \"right\"\n }\n },\n \"code, tt\": {\n margin: \"0 2px\",\n padding: \"0 5px\",\n whiteSpace: \"nowrap\",\n border: `1px solid ${e.color.mediumlight}`,\n backgroundColor: e.color.lighter,\n borderRadius: 3,\n color: e.base === \"dark\" ? e.color.darkest : e.color.dark\n }\n}));\n\n// src/components/components/syntaxhighlighter/lazy-syntaxhighlighter.tsx\nimport Ma, { Suspense as Uk, lazy as Bg } from \"react\";\nvar Xr = [], _a = null, Gk = Bg(async () => {\n let { SyntaxHighlighter: e } = await Promise.resolve().then(() => (yo(), mu));\n return Xr.length > 0 && (Xr.forEach((t) => {\n e.registerLanguage(...t);\n }), Xr = []), _a === null && (_a = e), {\n default: /* @__PURE__ */ o((t) => /* @__PURE__ */ Ma.createElement(e, { ...t }), \"default\")\n };\n}), Yk = Bg(async () => {\n let [{ SyntaxHighlighter: e }, { formatter: t }] = await Promise.all([\n Promise.resolve().then(() => (yo(), mu)),\n Promise.resolve().then(() => (Ig(), Tg))\n ]);\n return Xr.length > 0 && (Xr.forEach((r) => {\n e.registerLanguage(...r);\n }), Xr = []), _a === null && (_a = e), {\n default: /* @__PURE__ */ o((r) => /* @__PURE__ */ Ma.createElement(e, { ...r, formatter: t }), \"default\")\n };\n}), Mg = /* @__PURE__ */ o((e) => /* @__PURE__ */ Ma.createElement(Uk, { fallback: /* @__PURE__ */ Ma.createElement(\"div\", null) }, e.format !==\n!1 ? /* @__PURE__ */ Ma.createElement(Yk, { ...e }) : /* @__PURE__ */ Ma.createElement(Gk, { ...e })), \"SyntaxHighlighter\");\nMg.registerLanguage = (...e) => {\n if (_a !== null) {\n _a.registerLanguage(...e);\n return;\n }\n Xr.push(e);\n};\n\n// src/components/index.ts\nyo();\nlu();\n\n// src/components/components/Modal/Modal.tsx\nimport $a from \"react\";\n\n// ../node_modules/@radix-ui/react-dialog/dist/index.mjs\nvar Il = {};\nfn(Il, {\n Close: () => W0,\n Content: () => $0,\n Description: () => j0,\n Dialog: () => A0,\n DialogClose: () => P0,\n DialogContent: () => I0,\n DialogDescription: () => _0,\n DialogOverlay: () => T0,\n DialogPortal: () => L0,\n DialogTitle: () => M0,\n DialogTrigger: () => F0,\n Overlay: () => N0,\n Portal: () => O0,\n Root: () => z0,\n Title: () => V0,\n Trigger: () => oT,\n WarningProvider: () => tT,\n createDialogScope: () => XL\n});\nEi();\nHt();\nimport * as Y from \"react\";\n\n// ../node_modules/@radix-ui/react-context/dist/index.mjs\nimport * as it from \"react\";\nimport { jsx as _g } from \"react/jsx-runtime\";\nfunction Pg(e, t) {\n let r = it.createContext(t), n = /* @__PURE__ */ o((i) => {\n let { children: l, ...u } = i, c = it.useMemo(() => u, Object.values(u));\n return /* @__PURE__ */ _g(r.Provider, { value: c, children: l });\n }, \"Provider\");\n n.displayName = e + \"Provider\";\n function a(i) {\n let l = it.useContext(r);\n if (l) return l;\n if (t !== void 0) return t;\n throw new Error(`\\`${i}\\` must be used within \\`${e}\\``);\n }\n return o(a, \"useContext2\"), [n, a];\n}\no(Pg, \"createContext2\");\nfunction Hg(e, t = []) {\n let r = [];\n function n(i, l) {\n let u = it.createContext(l), c = r.length;\n r = [...r, l];\n let p = /* @__PURE__ */ o((h) => {\n let { scope: f, children: g, ...w } = h, m = f?.[e]?.[c] || u, v = it.useMemo(() => w, Object.values(w));\n return /* @__PURE__ */ _g(m.Provider, { value: v, children: g });\n }, \"Provider\");\n p.displayName = i + \"Provider\";\n function d(h, f) {\n let g = f?.[e]?.[c] || u, w = it.useContext(g);\n if (w) return w;\n if (l !== void 0) return l;\n throw new Error(`\\`${h}\\` must be used within \\`${i}\\``);\n }\n return o(d, \"useContext2\"), [p, d];\n }\n o(n, \"createContext3\");\n let a = /* @__PURE__ */ o(() => {\n let i = r.map((l) => it.createContext(l));\n return /* @__PURE__ */ o(function(u) {\n let c = u?.[e] || i;\n return it.useMemo(\n () => ({ [`__scope${e}`]: { ...u, [e]: c } }),\n [u, c]\n );\n }, \"useScope\");\n }, \"createScope\");\n return a.scopeName = e, [n, Xk(a, ...t)];\n}\no(Hg, \"createContextScope\");\nfunction Xk(...e) {\n let t = e[0];\n if (e.length === 1) return t;\n let r = /* @__PURE__ */ o(() => {\n let n = e.map((a) => ({\n useScope: a(),\n scopeName: a.scopeName\n }));\n return /* @__PURE__ */ o(function(i) {\n let l = n.reduce((u, { useScope: c, scopeName: p }) => {\n let h = c(i)[`__scope${p}`];\n return { ...u, ...h };\n }, {});\n return it.useMemo(() => ({ [`__scope${t.scopeName}`]: l }), [l]);\n }, \"useComposedScopes\");\n }, \"createScope\");\n return r.scopeName = t.scopeName, r;\n}\no(Xk, \"composeContextScopes\");\n\n// ../node_modules/@radix-ui/react-id/dist/index.mjs\nxn();\nimport * as yl from \"react\";\nvar Kk = yl.useId || (() => {\n}), Zk = 0;\nfunction Dl(e) {\n let [t, r] = yl.useState(Kk());\n return rt(() => {\n e || r((n) => n ?? String(Zk++));\n }, [e]), e || (t ? `radix-${t}` : \"\");\n}\no(Dl, \"useId\");\n\n// ../node_modules/@radix-ui/react-use-controllable-state/dist/index.mjs\nRn();\nimport * as dr from \"react\";\nfunction zg({\n prop: e,\n defaultProp: t,\n onChange: r = /* @__PURE__ */ o(() => {\n }, \"onChange\")\n}) {\n let [n, a] = Jk({ defaultProp: t, onChange: r }), i = e !== void 0, l = i ? e : n, u = de(r), c = dr.useCallback(\n (p) => {\n if (i) {\n let h = typeof p == \"function\" ? p(e) : p;\n h !== e && u(h);\n } else\n a(p);\n },\n [i, e, a, u]\n );\n return [l, c];\n}\no(zg, \"useControllableState\");\nfunction Jk({\n defaultProp: e,\n onChange: t\n}) {\n let r = dr.useState(e), [n] = r, a = dr.useRef(n), i = de(t);\n return dr.useEffect(() => {\n a.current !== n && (i(n), a.current = n);\n }, [n, a, i]), r;\n}\no(Jk, \"useUncontrolledState\");\n\n// ../node_modules/@radix-ui/react-dismissable-layer/dist/index.mjs\nEi();\nDn();\nHt();\nRn();\nimport * as re from \"react\";\n\n// ../node_modules/@radix-ui/react-use-escape-keydown/dist/index.mjs\nRn();\nimport * as Og from \"react\";\nfunction Ng(e, t = globalThis?.document) {\n let r = de(e);\n Og.useEffect(() => {\n let n = /* @__PURE__ */ o((a) => {\n a.key === \"Escape\" && r(a);\n }, \"handleKeyDown\");\n return t.addEventListener(\"keydown\", n, { capture: !0 }), () => t.removeEventListener(\"keydown\", n, { capture: !0 });\n }, [r, t]);\n}\no(Ng, \"useEscapeKeydown\");\n\n// ../node_modules/@radix-ui/react-dismissable-layer/dist/index.mjs\nimport { jsx as jg } from \"react/jsx-runtime\";\nvar Qk = \"DismissableLayer\", t0 = \"dismissableLayer.update\", eL = \"dismissableLayer.pointerDownOutside\", tL = \"dismissableLayer.focusOutside\",\n$g, Wg = re.createContext({\n layers: /* @__PURE__ */ new Set(),\n layersWithOutsidePointerEventsDisabled: /* @__PURE__ */ new Set(),\n branches: /* @__PURE__ */ new Set()\n}), r0 = re.forwardRef(\n (e, t) => {\n let {\n disableOutsidePointerEvents: r = !1,\n onEscapeKeyDown: n,\n onPointerDownOutside: a,\n onFocusOutside: i,\n onInteractOutside: l,\n onDismiss: u,\n ...c\n } = e, p = re.useContext(Wg), [d, h] = re.useState(null), f = d?.ownerDocument ?? globalThis?.document, [, g] = re.useState({}), w = se(\n t, (R) => h(R)), m = Array.from(p.layers), [v] = [...p.layersWithOutsidePointerEventsDisabled].slice(-1), y = m.indexOf(v), b = d ? m.indexOf(\n d) : -1, D = p.layersWithOutsidePointerEventsDisabled.size > 0, x = b >= y, C = aL((R) => {\n let F = R.target, A = [...p.branches].some((k) => k.contains(F));\n !x || A || (a?.(R), l?.(R), R.defaultPrevented || u?.());\n }, f), E = oL((R) => {\n let F = R.target;\n [...p.branches].some((k) => k.contains(F)) || (i?.(R), l?.(R), R.defaultPrevented || u?.());\n }, f);\n return Ng((R) => {\n b === p.layers.size - 1 && (n?.(R), !R.defaultPrevented && u && (R.preventDefault(), u()));\n }, f), re.useEffect(() => {\n if (d)\n return r && (p.layersWithOutsidePointerEventsDisabled.size === 0 && ($g = f.body.style.pointerEvents, f.body.style.pointerEvents = \"\\\nnone\"), p.layersWithOutsidePointerEventsDisabled.add(d)), p.layers.add(d), Vg(), () => {\n r && p.layersWithOutsidePointerEventsDisabled.size === 1 && (f.body.style.pointerEvents = $g);\n };\n }, [d, f, r, p]), re.useEffect(() => () => {\n d && (p.layers.delete(d), p.layersWithOutsidePointerEventsDisabled.delete(d), Vg());\n }, [d, p]), re.useEffect(() => {\n let R = /* @__PURE__ */ o(() => g({}), \"handleUpdate\");\n return document.addEventListener(t0, R), () => document.removeEventListener(t0, R);\n }, []), /* @__PURE__ */ jg(\n pe.div,\n {\n ...c,\n ref: w,\n style: {\n pointerEvents: D ? x ? \"auto\" : \"none\" : void 0,\n ...e.style\n },\n onFocusCapture: be(e.onFocusCapture, E.onFocusCapture),\n onBlurCapture: be(e.onBlurCapture, E.onBlurCapture),\n onPointerDownCapture: be(\n e.onPointerDownCapture,\n C.onPointerDownCapture\n )\n }\n );\n }\n);\nr0.displayName = Qk;\nvar rL = \"DismissableLayerBranch\", nL = re.forwardRef((e, t) => {\n let r = re.useContext(Wg), n = re.useRef(null), a = se(t, n);\n return re.useEffect(() => {\n let i = n.current;\n if (i)\n return r.branches.add(i), () => {\n r.branches.delete(i);\n };\n }, [r.branches]), /* @__PURE__ */ jg(pe.div, { ...e, ref: a });\n});\nnL.displayName = rL;\nfunction aL(e, t = globalThis?.document) {\n let r = de(e), n = re.useRef(!1), a = re.useRef(() => {\n });\n return re.useEffect(() => {\n let i = /* @__PURE__ */ o((u) => {\n if (u.target && !n.current) {\n let p = /* @__PURE__ */ o(function() {\n qg(\n eL,\n r,\n d,\n { discrete: !0 }\n );\n }, \"handleAndDispatchPointerDownOutsideEvent2\");\n var c = p;\n let d = { originalEvent: u };\n u.pointerType === \"touch\" ? (t.removeEventListener(\"click\", a.current), a.current = p, t.addEventListener(\"click\", a.current, { once: !0 })) :\n p();\n } else\n t.removeEventListener(\"click\", a.current);\n n.current = !1;\n }, \"handlePointerDown\"), l = window.setTimeout(() => {\n t.addEventListener(\"pointerdown\", i);\n }, 0);\n return () => {\n window.clearTimeout(l), t.removeEventListener(\"pointerdown\", i), t.removeEventListener(\"click\", a.current);\n };\n }, [t, r]), {\n // ensures we check React component tree (not just DOM tree)\n onPointerDownCapture: /* @__PURE__ */ o(() => n.current = !0, \"onPointerDownCapture\")\n };\n}\no(aL, \"usePointerDownOutside\");\nfunction oL(e, t = globalThis?.document) {\n let r = de(e), n = re.useRef(!1);\n return re.useEffect(() => {\n let a = /* @__PURE__ */ o((i) => {\n i.target && !n.current && qg(tL, r, { originalEvent: i }, {\n discrete: !1\n });\n }, \"handleFocus\");\n return t.addEventListener(\"focusin\", a), () => t.removeEventListener(\"focusin\", a);\n }, [t, r]), {\n onFocusCapture: /* @__PURE__ */ o(() => n.current = !0, \"onFocusCapture\"),\n onBlurCapture: /* @__PURE__ */ o(() => n.current = !1, \"onBlurCapture\")\n };\n}\no(oL, \"useFocusOutside\");\nfunction Vg() {\n let e = new CustomEvent(t0);\n document.dispatchEvent(e);\n}\no(Vg, \"dispatchUpdate\");\nfunction qg(e, t, r, { discrete: n }) {\n let a = r.originalEvent.target, i = new CustomEvent(e, { bubbles: !1, cancelable: !0, detail: r });\n t && a.addEventListener(e, t, { once: !0 }), n ? V2(a, i) : a.dispatchEvent(i);\n}\no(qg, \"handleAndDispatchCustomEvent\");\n\n// ../node_modules/@radix-ui/react-focus-scope/dist/index.mjs\nHt();\nDn();\nRn();\nimport * as lt from \"react\";\nimport { jsx as iL } from \"react/jsx-runtime\";\nvar n0 = \"focusScope.autoFocusOnMount\", a0 = \"focusScope.autoFocusOnUnmount\", Ug = { bubbles: !1, cancelable: !0 }, lL = \"FocusScope\", o0 = lt.forwardRef(\n(e, t) => {\n let {\n loop: r = !1,\n trapped: n = !1,\n onMountAutoFocus: a,\n onUnmountAutoFocus: i,\n ...l\n } = e, [u, c] = lt.useState(null), p = de(a), d = de(i), h = lt.useRef(null), f = se(t, (m) => c(m)), g = lt.useRef({\n paused: !1,\n pause() {\n this.paused = !0;\n },\n resume() {\n this.paused = !1;\n }\n }).current;\n lt.useEffect(() => {\n if (n) {\n let b = /* @__PURE__ */ o(function(E) {\n if (g.paused || !u) return;\n let R = E.target;\n u.contains(R) ? h.current = R : fr(h.current, { select: !0 });\n }, \"handleFocusIn2\"), D = /* @__PURE__ */ o(function(E) {\n if (g.paused || !u) return;\n let R = E.relatedTarget;\n R !== null && (u.contains(R) || fr(h.current, { select: !0 }));\n }, \"handleFocusOut2\"), x = /* @__PURE__ */ o(function(E) {\n if (document.activeElement === document.body)\n for (let F of E)\n F.removedNodes.length > 0 && fr(u);\n }, \"handleMutations2\");\n var m = b, v = D, y = x;\n document.addEventListener(\"focusin\", b), document.addEventListener(\"focusout\", D);\n let C = new MutationObserver(x);\n return u && C.observe(u, { childList: !0, subtree: !0 }), () => {\n document.removeEventListener(\"focusin\", b), document.removeEventListener(\"focusout\", D), C.disconnect();\n };\n }\n }, [n, u, g.paused]), lt.useEffect(() => {\n if (u) {\n Yg.add(g);\n let m = document.activeElement;\n if (!u.contains(m)) {\n let y = new CustomEvent(n0, Ug);\n u.addEventListener(n0, p), u.dispatchEvent(y), y.defaultPrevented || (sL(fL(Kg(u)), { select: !0 }), document.activeElement === m &&\n fr(u));\n }\n return () => {\n u.removeEventListener(n0, p), setTimeout(() => {\n let y = new CustomEvent(a0, Ug);\n u.addEventListener(a0, d), u.dispatchEvent(y), y.defaultPrevented || fr(m ?? document.body, { select: !0 }), u.removeEventListener(\n a0, d), Yg.remove(g);\n }, 0);\n };\n }\n }, [u, p, d, g]);\n let w = lt.useCallback(\n (m) => {\n if (!r && !n || g.paused) return;\n let v = m.key === \"Tab\" && !m.altKey && !m.ctrlKey && !m.metaKey, y = document.activeElement;\n if (v && y) {\n let b = m.currentTarget, [D, x] = uL(b);\n D && x ? !m.shiftKey && y === x ? (m.preventDefault(), r && fr(D, { select: !0 })) : m.shiftKey && y === D && (m.preventDefault(), r &&\n fr(x, { select: !0 })) : y === b && m.preventDefault();\n }\n },\n [r, n, g.paused]\n );\n return /* @__PURE__ */ iL(pe.div, { tabIndex: -1, ...l, ref: f, onKeyDown: w });\n});\no0.displayName = lL;\nfunction sL(e, { select: t = !1 } = {}) {\n let r = document.activeElement;\n for (let n of e)\n if (fr(n, { select: t }), document.activeElement !== r) return;\n}\no(sL, \"focusFirst\");\nfunction uL(e) {\n let t = Kg(e), r = Gg(t, e), n = Gg(t.reverse(), e);\n return [r, n];\n}\no(uL, \"getTabbableEdges\");\nfunction Kg(e) {\n let t = [], r = document.createTreeWalker(e, NodeFilter.SHOW_ELEMENT, {\n acceptNode: /* @__PURE__ */ o((n) => {\n let a = n.tagName === \"INPUT\" && n.type === \"hidden\";\n return n.disabled || n.hidden || a ? NodeFilter.FILTER_SKIP : n.tabIndex >= 0 ? NodeFilter.FILTER_ACCEPT : NodeFilter.FILTER_SKIP;\n }, \"acceptNode\")\n });\n for (; r.nextNode(); ) t.push(r.currentNode);\n return t;\n}\no(Kg, \"getTabbableCandidates\");\nfunction Gg(e, t) {\n for (let r of e)\n if (!cL(r, { upTo: t })) return r;\n}\no(Gg, \"findVisible\");\nfunction cL(e, { upTo: t }) {\n if (getComputedStyle(e).visibility === \"hidden\") return !0;\n for (; e; ) {\n if (t !== void 0 && e === t) return !1;\n if (getComputedStyle(e).display === \"none\") return !0;\n e = e.parentElement;\n }\n return !1;\n}\no(cL, \"isHidden\");\nfunction pL(e) {\n return e instanceof HTMLInputElement && \"select\" in e;\n}\no(pL, \"isSelectableInput\");\nfunction fr(e, { select: t = !1 } = {}) {\n if (e && e.focus) {\n let r = document.activeElement;\n e.focus({ preventScroll: !0 }), e !== r && pL(e) && t && e.select();\n }\n}\no(fr, \"focus\");\nvar Yg = dL();\nfunction dL() {\n let e = [];\n return {\n add(t) {\n let r = e[0];\n t !== r && r?.pause(), e = Xg(e, t), e.unshift(t);\n },\n remove(t) {\n e = Xg(e, t), e[0]?.resume();\n }\n };\n}\no(dL, \"createFocusScopesStack\");\nfunction Xg(e, t) {\n let r = [...e], n = r.indexOf(t);\n return n !== -1 && r.splice(n, 1), r;\n}\no(Xg, \"arrayRemove\");\nfunction fL(e) {\n return e.filter((t) => t.tagName !== \"A\");\n}\no(fL, \"removeLinks\");\n\n// ../node_modules/@radix-ui/react-portal/dist/index.mjs\nDn();\nxn();\nimport * as xl from \"react\";\nimport hL from \"react-dom\";\nimport { jsx as mL } from \"react/jsx-runtime\";\nvar gL = \"Portal\", i0 = xl.forwardRef((e, t) => {\n let { container: r, ...n } = e, [a, i] = xl.useState(!1);\n rt(() => i(!0), []);\n let l = r || a && globalThis?.document?.body;\n return l ? hL.createPortal(/* @__PURE__ */ mL(pe.div, { ...n, ref: t }), l) : null;\n});\ni0.displayName = gL;\n\n// ../node_modules/@radix-ui/react-presence/dist/index.mjs\nHt();\nxn();\nimport * as Ue from \"react\";\nimport * as Zg from \"react\";\nfunction vL(e, t) {\n return Zg.useReducer((r, n) => t[r][n] ?? r, e);\n}\no(vL, \"useStateMachine\");\nvar Vo = /* @__PURE__ */ o((e) => {\n let { present: t, children: r } = e, n = wL(t), a = typeof r == \"function\" ? r({ present: n.isPresent }) : Ue.Children.only(r), i = se(n.ref,\n bL(a));\n return typeof r == \"function\" || n.isPresent ? Ue.cloneElement(a, { ref: i }) : null;\n}, \"Presence\");\nVo.displayName = \"Presence\";\nfunction wL(e) {\n let [t, r] = Ue.useState(), n = Ue.useRef({}), a = Ue.useRef(e), i = Ue.useRef(\"none\"), l = e ? \"mounted\" : \"unmounted\", [u, c] = vL(l, {\n mounted: {\n UNMOUNT: \"unmounted\",\n ANIMATION_OUT: \"unmountSuspended\"\n },\n unmountSuspended: {\n MOUNT: \"mounted\",\n ANIMATION_END: \"unmounted\"\n },\n unmounted: {\n MOUNT: \"mounted\"\n }\n });\n return Ue.useEffect(() => {\n let p = Cl(n.current);\n i.current = u === \"mounted\" ? p : \"none\";\n }, [u]), rt(() => {\n let p = n.current, d = a.current;\n if (d !== e) {\n let f = i.current, g = Cl(p);\n e ? c(\"MOUNT\") : g === \"none\" || p?.display === \"none\" ? c(\"UNMOUNT\") : c(d && f !== g ? \"ANIMATION_OUT\" : \"UNMOUNT\"), a.current = e;\n }\n }, [e, c]), rt(() => {\n if (t) {\n let p, d = t.ownerDocument.defaultView ?? window, h = /* @__PURE__ */ o((g) => {\n let m = Cl(n.current).includes(g.animationName);\n if (g.target === t && m && (c(\"ANIMATION_END\"), !a.current)) {\n let v = t.style.animationFillMode;\n t.style.animationFillMode = \"forwards\", p = d.setTimeout(() => {\n t.style.animationFillMode === \"forwards\" && (t.style.animationFillMode = v);\n });\n }\n }, \"handleAnimationEnd\"), f = /* @__PURE__ */ o((g) => {\n g.target === t && (i.current = Cl(n.current));\n }, \"handleAnimationStart\");\n return t.addEventListener(\"animationstart\", f), t.addEventListener(\"animationcancel\", h), t.addEventListener(\"animationend\", h), () => {\n d.clearTimeout(p), t.removeEventListener(\"animationstart\", f), t.removeEventListener(\"animationcancel\", h), t.removeEventListener(\"a\\\nnimationend\", h);\n };\n } else\n c(\"ANIMATION_END\");\n }, [t, c]), {\n isPresent: [\"mounted\", \"unmountSuspended\"].includes(u),\n ref: Ue.useCallback((p) => {\n p && (n.current = getComputedStyle(p)), r(p);\n }, [])\n };\n}\no(wL, \"usePresence\");\nfunction Cl(e) {\n return e?.animationName || \"none\";\n}\no(Cl, \"getAnimationName\");\nfunction bL(e) {\n let t = Object.getOwnPropertyDescriptor(e.props, \"ref\")?.get, r = t && \"isReactWarning\" in t && t.isReactWarning;\n return r ? e.ref : (t = Object.getOwnPropertyDescriptor(e, \"ref\")?.get, r = t && \"isReactWarning\" in t && t.isReactWarning, r ? e.props.ref :\n e.props.ref || e.ref);\n}\no(bL, \"getElementRef\");\n\n// ../node_modules/@radix-ui/react-dialog/dist/index.mjs\nDn();\n\n// ../node_modules/@radix-ui/react-focus-guards/dist/index.mjs\nimport * as Qg from \"react\";\nvar l0 = 0;\nfunction e4() {\n Qg.useEffect(() => {\n let e = document.querySelectorAll(\"[data-radix-focus-guard]\");\n return document.body.insertAdjacentElement(\"afterbegin\", e[0] ?? Jg()), document.body.insertAdjacentElement(\"beforeend\", e[1] ?? Jg()), l0++,\n () => {\n l0 === 1 && document.querySelectorAll(\"[data-radix-focus-guard]\").forEach((t) => t.remove()), l0--;\n };\n }, []);\n}\no(e4, \"useFocusGuards\");\nfunction Jg() {\n let e = document.createElement(\"span\");\n return e.setAttribute(\"data-radix-focus-guard\", \"\"), e.tabIndex = 0, e.style.outline = \"none\", e.style.opacity = \"0\", e.style.position = \"\\\nfixed\", e.style.pointerEvents = \"none\", e;\n}\no(Jg, \"createFocusGuard\");\n\n// ../node_modules/tslib/tslib.es6.mjs\nvar Ge = /* @__PURE__ */ o(function() {\n return Ge = Object.assign || /* @__PURE__ */ o(function(t) {\n for (var r, n = 1, a = arguments.length; n < a; n++) {\n r = arguments[n];\n for (var i in r) Object.prototype.hasOwnProperty.call(r, i) && (t[i] = r[i]);\n }\n return t;\n }, \"__assign\"), Ge.apply(this, arguments);\n}, \"__assign\");\nfunction El(e, t) {\n var r = {};\n for (var n in e) Object.prototype.hasOwnProperty.call(e, n) && t.indexOf(n) < 0 && (r[n] = e[n]);\n if (e != null && typeof Object.getOwnPropertySymbols == \"function\")\n for (var a = 0, n = Object.getOwnPropertySymbols(e); a < n.length; a++)\n t.indexOf(n[a]) < 0 && Object.prototype.propertyIsEnumerable.call(e, n[a]) && (r[n[a]] = e[n[a]]);\n return r;\n}\no(El, \"__rest\");\nfunction t4(e, t, r) {\n if (r || arguments.length === 2) for (var n = 0, a = t.length, i; n < a; n++)\n (i || !(n in t)) && (i || (i = Array.prototype.slice.call(t, 0, n)), i[n] = t[n]);\n return e.concat(i || Array.prototype.slice.call(t));\n}\no(t4, \"__spreadArray\");\n\n// ../node_modules/react-remove-scroll/dist/es2015/Combination.js\nimport * as Fl from \"react\";\n\n// ../node_modules/react-remove-scroll/dist/es2015/UI.js\nimport * as Ie from \"react\";\n\n// ../node_modules/react-remove-scroll-bar/dist/es2015/constants.js\nvar Kr = \"right-scroll-bar-position\", Zr = \"width-before-scroll-bar\", s0 = \"with-scroll-bars-hidden\", u0 = \"--removed-body-scroll-bar-size\";\n\n// ../node_modules/use-callback-ref/dist/es2015/assignRef.js\nfunction Rl(e, t) {\n return typeof e == \"function\" ? e(t) : e && (e.current = t), e;\n}\no(Rl, \"assignRef\");\n\n// ../node_modules/use-callback-ref/dist/es2015/useRef.js\nimport { useState as yL } from \"react\";\nfunction r4(e, t) {\n var r = yL(function() {\n return {\n // value\n value: e,\n // last callback\n callback: t,\n // \"memoized\" public interface\n facade: {\n get current() {\n return r.value;\n },\n set current(n) {\n var a = r.value;\n a !== n && (r.value = n, r.callback(n, a));\n }\n }\n };\n })[0];\n return r.callback = t, r.facade;\n}\no(r4, \"useCallbackRef\");\n\n// ../node_modules/use-callback-ref/dist/es2015/useMergeRef.js\nimport * as a4 from \"react\";\nvar n4 = /* @__PURE__ */ new WeakMap();\nfunction c0(e, t) {\n var r = r4(t || null, function(n) {\n return e.forEach(function(a) {\n return Rl(a, n);\n });\n });\n return a4.useLayoutEffect(function() {\n var n = n4.get(r);\n if (n) {\n var a = new Set(n), i = new Set(e), l = r.current;\n a.forEach(function(u) {\n i.has(u) || Rl(u, null);\n }), i.forEach(function(u) {\n a.has(u) || Rl(u, l);\n });\n }\n n4.set(r, e);\n }, [e]), r;\n}\no(c0, \"useMergeRefs\");\n\n// ../node_modules/use-sidecar/dist/es2015/medium.js\nfunction DL(e) {\n return e;\n}\no(DL, \"ItoI\");\nfunction xL(e, t) {\n t === void 0 && (t = DL);\n var r = [], n = !1, a = {\n read: /* @__PURE__ */ o(function() {\n if (n)\n throw new Error(\"Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.\");\n return r.length ? r[r.length - 1] : e;\n }, \"read\"),\n useMedium: /* @__PURE__ */ o(function(i) {\n var l = t(i, n);\n return r.push(l), function() {\n r = r.filter(function(u) {\n return u !== l;\n });\n };\n }, \"useMedium\"),\n assignSyncMedium: /* @__PURE__ */ o(function(i) {\n for (n = !0; r.length; ) {\n var l = r;\n r = [], l.forEach(i);\n }\n r = {\n push: /* @__PURE__ */ o(function(u) {\n return i(u);\n }, \"push\"),\n filter: /* @__PURE__ */ o(function() {\n return r;\n }, \"filter\")\n };\n }, \"assignSyncMedium\"),\n assignMedium: /* @__PURE__ */ o(function(i) {\n n = !0;\n var l = [];\n if (r.length) {\n var u = r;\n r = [], u.forEach(i), l = r;\n }\n var c = /* @__PURE__ */ o(function() {\n var d = l;\n l = [], d.forEach(i);\n }, \"executeQueue\"), p = /* @__PURE__ */ o(function() {\n return Promise.resolve().then(c);\n }, \"cycle\");\n p(), r = {\n push: /* @__PURE__ */ o(function(d) {\n l.push(d), p();\n }, \"push\"),\n filter: /* @__PURE__ */ o(function(d) {\n return l = l.filter(d), r;\n }, \"filter\")\n };\n }, \"assignMedium\")\n };\n return a;\n}\no(xL, \"innerCreateMedium\");\nfunction p0(e) {\n e === void 0 && (e = {});\n var t = xL(null);\n return t.options = Ge({ async: !0, ssr: !1 }, e), t;\n}\no(p0, \"createSidecarMedium\");\n\n// ../node_modules/use-sidecar/dist/es2015/exports.js\nimport * as o4 from \"react\";\nvar i4 = /* @__PURE__ */ o(function(e) {\n var t = e.sideCar, r = El(e, [\"sideCar\"]);\n if (!t)\n throw new Error(\"Sidecar: please provide `sideCar` property to import the right car\");\n var n = t.read();\n if (!n)\n throw new Error(\"Sidecar medium not found\");\n return o4.createElement(n, Ge({}, r));\n}, \"SideCar\");\ni4.isSideCarExport = !0;\nfunction d0(e, t) {\n return e.useMedium(t), i4;\n}\no(d0, \"exportSidecar\");\n\n// ../node_modules/react-remove-scroll/dist/es2015/medium.js\nvar Sl = p0();\n\n// ../node_modules/react-remove-scroll/dist/es2015/UI.js\nvar f0 = /* @__PURE__ */ o(function() {\n}, \"nothing\"), jo = Ie.forwardRef(function(e, t) {\n var r = Ie.useRef(null), n = Ie.useState({\n onScrollCapture: f0,\n onWheelCapture: f0,\n onTouchMoveCapture: f0\n }), a = n[0], i = n[1], l = e.forwardProps, u = e.children, c = e.className, p = e.removeScrollBar, d = e.enabled, h = e.shards, f = e.sideCar,\n g = e.noIsolation, w = e.inert, m = e.allowPinchZoom, v = e.as, y = v === void 0 ? \"div\" : v, b = e.gapMode, D = El(e, [\"forwardProps\", \"c\\\nhildren\", \"className\", \"removeScrollBar\", \"enabled\", \"shards\", \"sideCar\", \"noIsolation\", \"inert\", \"allowPinchZoom\", \"as\", \"gapMode\"]), x = f,\n C = c0([r, t]), E = Ge(Ge({}, D), a);\n return Ie.createElement(\n Ie.Fragment,\n null,\n d && Ie.createElement(x, { sideCar: Sl, removeScrollBar: p, shards: h, noIsolation: g, inert: w, setCallbacks: i, allowPinchZoom: !!m, lockRef: r,\n gapMode: b }),\n l ? Ie.cloneElement(Ie.Children.only(u), Ge(Ge({}, E), { ref: C })) : Ie.createElement(y, Ge({}, E, { className: c, ref: C }), u)\n );\n});\njo.defaultProps = {\n enabled: !0,\n removeScrollBar: !0,\n inert: !1\n};\njo.classNames = {\n fullWidth: Zr,\n zeroRight: Kr\n};\n\n// ../node_modules/react-remove-scroll/dist/es2015/SideEffect.js\nimport * as Z from \"react\";\n\n// ../node_modules/react-remove-scroll-bar/dist/es2015/component.js\nimport * as Ha from \"react\";\n\n// ../node_modules/react-style-singleton/dist/es2015/hook.js\nimport * as u4 from \"react\";\n\n// ../node_modules/get-nonce/dist/es2015/index.js\nvar l4;\nvar s4 = /* @__PURE__ */ o(function() {\n if (l4)\n return l4;\n if (typeof __webpack_nonce__ < \"u\")\n return __webpack_nonce__;\n}, \"getNonce\");\n\n// ../node_modules/react-style-singleton/dist/es2015/singleton.js\nfunction CL() {\n if (!document)\n return null;\n var e = document.createElement(\"style\");\n e.type = \"text/css\";\n var t = s4();\n return t && e.setAttribute(\"nonce\", t), e;\n}\no(CL, \"makeStyleTag\");\nfunction EL(e, t) {\n e.styleSheet ? e.styleSheet.cssText = t : e.appendChild(document.createTextNode(t));\n}\no(EL, \"injectStyles\");\nfunction RL(e) {\n var t = document.head || document.getElementsByTagName(\"head\")[0];\n t.appendChild(e);\n}\no(RL, \"insertStyleTag\");\nvar h0 = /* @__PURE__ */ o(function() {\n var e = 0, t = null;\n return {\n add: /* @__PURE__ */ o(function(r) {\n e == 0 && (t = CL()) && (EL(t, r), RL(t)), e++;\n }, \"add\"),\n remove: /* @__PURE__ */ o(function() {\n e--, !e && t && (t.parentNode && t.parentNode.removeChild(t), t = null);\n }, \"remove\")\n };\n}, \"stylesheetSingleton\");\n\n// ../node_modules/react-style-singleton/dist/es2015/hook.js\nvar m0 = /* @__PURE__ */ o(function() {\n var e = h0();\n return function(t, r) {\n u4.useEffect(function() {\n return e.add(t), function() {\n e.remove();\n };\n }, [t && r]);\n };\n}, \"styleHookSingleton\");\n\n// ../node_modules/react-style-singleton/dist/es2015/component.js\nvar Wo = /* @__PURE__ */ o(function() {\n var e = m0(), t = /* @__PURE__ */ o(function(r) {\n var n = r.styles, a = r.dynamic;\n return e(n, a), null;\n }, \"Sheet\");\n return t;\n}, \"styleSingleton\");\n\n// ../node_modules/react-remove-scroll-bar/dist/es2015/utils.js\nvar SL = {\n left: 0,\n top: 0,\n right: 0,\n gap: 0\n}, g0 = /* @__PURE__ */ o(function(e) {\n return parseInt(e || \"\", 10) || 0;\n}, \"parse\"), AL = /* @__PURE__ */ o(function(e) {\n var t = window.getComputedStyle(document.body), r = t[e === \"padding\" ? \"paddingLeft\" : \"marginLeft\"], n = t[e === \"padding\" ? \"paddingTop\" :\n \"marginTop\"], a = t[e === \"padding\" ? \"paddingRight\" : \"marginRight\"];\n return [g0(r), g0(n), g0(a)];\n}, \"getOffset\"), v0 = /* @__PURE__ */ o(function(e) {\n if (e === void 0 && (e = \"margin\"), typeof window > \"u\")\n return SL;\n var t = AL(e), r = document.documentElement.clientWidth, n = window.innerWidth;\n return {\n left: t[0],\n top: t[1],\n right: t[2],\n gap: Math.max(0, n - r + t[2] - t[0])\n };\n}, \"getGapWidth\");\n\n// ../node_modules/react-remove-scroll-bar/dist/es2015/component.js\nvar FL = Wo(), Pa = \"data-scroll-locked\", kL = /* @__PURE__ */ o(function(e, t, r, n) {\n var a = e.left, i = e.top, l = e.right, u = e.gap;\n return r === void 0 && (r = \"margin\"), `\n .`.concat(s0, ` {\n overflow: hidden `).concat(n, `;\n padding-right: `).concat(u, \"px \").concat(n, `;\n }\n body[`).concat(Pa, `] {\n overflow: hidden `).concat(n, `;\n overscroll-behavior: contain;\n `).concat([\n t && \"position: relative \".concat(n, \";\"),\n r === \"margin\" && `\n padding-left: `.concat(a, `px;\n padding-top: `).concat(i, `px;\n padding-right: `).concat(l, `px;\n margin-left:0;\n margin-top:0;\n margin-right: `).concat(u, \"px \").concat(n, `;\n `),\n r === \"padding\" && \"padding-right: \".concat(u, \"px \").concat(n, \";\")\n ].filter(Boolean).join(\"\"), `\n }\n \n .`).concat(Kr, ` {\n right: `).concat(u, \"px \").concat(n, `;\n }\n \n .`).concat(Zr, ` {\n margin-right: `).concat(u, \"px \").concat(n, `;\n }\n \n .`).concat(Kr, \" .\").concat(Kr, ` {\n right: 0 `).concat(n, `;\n }\n \n .`).concat(Zr, \" .\").concat(Zr, ` {\n margin-right: 0 `).concat(n, `;\n }\n \n body[`).concat(Pa, `] {\n `).concat(u0, \": \").concat(u, `px;\n }\n`);\n}, \"getStyles\"), c4 = /* @__PURE__ */ o(function() {\n var e = parseInt(document.body.getAttribute(Pa) || \"0\", 10);\n return isFinite(e) ? e : 0;\n}, \"getCurrentUseCounter\"), LL = /* @__PURE__ */ o(function() {\n Ha.useEffect(function() {\n return document.body.setAttribute(Pa, (c4() + 1).toString()), function() {\n var e = c4() - 1;\n e <= 0 ? document.body.removeAttribute(Pa) : document.body.setAttribute(Pa, e.toString());\n };\n }, []);\n}, \"useLockAttribute\"), w0 = /* @__PURE__ */ o(function(e) {\n var t = e.noRelative, r = e.noImportant, n = e.gapMode, a = n === void 0 ? \"margin\" : n;\n LL();\n var i = Ha.useMemo(function() {\n return v0(a);\n }, [a]);\n return Ha.createElement(FL, { styles: kL(i, !t, a, r ? \"\" : \"!important\") });\n}, \"RemoveScrollBar\");\n\n// ../node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js\nvar b0 = !1;\nif (typeof window < \"u\")\n try {\n qo = Object.defineProperty({}, \"passive\", {\n get: /* @__PURE__ */ o(function() {\n return b0 = !0, !0;\n }, \"get\")\n }), window.addEventListener(\"test\", qo, qo), window.removeEventListener(\"test\", qo, qo);\n } catch {\n b0 = !1;\n }\nvar qo, Jr = b0 ? { passive: !1 } : !1;\n\n// ../node_modules/react-remove-scroll/dist/es2015/handleScroll.js\nvar TL = /* @__PURE__ */ o(function(e) {\n return e.tagName === \"TEXTAREA\";\n}, \"alwaysContainsScroll\"), p4 = /* @__PURE__ */ o(function(e, t) {\n if (!(e instanceof Element))\n return !1;\n var r = window.getComputedStyle(e);\n return (\n // not-not-scrollable\n r[t] !== \"hidden\" && // contains scroll inside self\n !(r.overflowY === r.overflowX && !TL(e) && r[t] === \"visible\")\n );\n}, \"elementCanBeScrolled\"), IL = /* @__PURE__ */ o(function(e) {\n return p4(e, \"overflowY\");\n}, \"elementCouldBeVScrolled\"), BL = /* @__PURE__ */ o(function(e) {\n return p4(e, \"overflowX\");\n}, \"elementCouldBeHScrolled\"), y0 = /* @__PURE__ */ o(function(e, t) {\n var r = t.ownerDocument, n = t;\n do {\n typeof ShadowRoot < \"u\" && n instanceof ShadowRoot && (n = n.host);\n var a = d4(e, n);\n if (a) {\n var i = f4(e, n), l = i[1], u = i[2];\n if (l > u)\n return !0;\n }\n n = n.parentNode;\n } while (n && n !== r.body);\n return !1;\n}, \"locationCouldBeScrolled\"), ML = /* @__PURE__ */ o(function(e) {\n var t = e.scrollTop, r = e.scrollHeight, n = e.clientHeight;\n return [\n t,\n r,\n n\n ];\n}, \"getVScrollVariables\"), _L = /* @__PURE__ */ o(function(e) {\n var t = e.scrollLeft, r = e.scrollWidth, n = e.clientWidth;\n return [\n t,\n r,\n n\n ];\n}, \"getHScrollVariables\"), d4 = /* @__PURE__ */ o(function(e, t) {\n return e === \"v\" ? IL(t) : BL(t);\n}, \"elementCouldBeScrolled\"), f4 = /* @__PURE__ */ o(function(e, t) {\n return e === \"v\" ? ML(t) : _L(t);\n}, \"getScrollVariables\"), PL = /* @__PURE__ */ o(function(e, t) {\n return e === \"h\" && t === \"rtl\" ? -1 : 1;\n}, \"getDirectionFactor\"), h4 = /* @__PURE__ */ o(function(e, t, r, n, a) {\n var i = PL(e, window.getComputedStyle(t).direction), l = i * n, u = r.target, c = t.contains(u), p = !1, d = l > 0, h = 0, f = 0;\n do {\n var g = f4(e, u), w = g[0], m = g[1], v = g[2], y = m - v - i * w;\n (w || y) && d4(e, u) && (h += y, f += w), u instanceof ShadowRoot ? u = u.host : u = u.parentNode;\n } while (\n // portaled content\n !c && u !== document.body || // self content\n c && (t.contains(u) || t === u)\n );\n return (d && (a && Math.abs(h) < 1 || !a && l > h) || !d && (a && Math.abs(f) < 1 || !a && -l > f)) && (p = !0), p;\n}, \"handleScroll\");\n\n// ../node_modules/react-remove-scroll/dist/es2015/SideEffect.js\nvar Al = /* @__PURE__ */ o(function(e) {\n return \"changedTouches\" in e ? [e.changedTouches[0].clientX, e.changedTouches[0].clientY] : [0, 0];\n}, \"getTouchXY\"), m4 = /* @__PURE__ */ o(function(e) {\n return [e.deltaX, e.deltaY];\n}, \"getDeltaXY\"), g4 = /* @__PURE__ */ o(function(e) {\n return e && \"current\" in e ? e.current : e;\n}, \"extractRef\"), HL = /* @__PURE__ */ o(function(e, t) {\n return e[0] === t[0] && e[1] === t[1];\n}, \"deltaCompare\"), zL = /* @__PURE__ */ o(function(e) {\n return `\n .block-interactivity-`.concat(e, ` {pointer-events: none;}\n .allow-interactivity-`).concat(e, ` {pointer-events: all;}\n`);\n}, \"generateStyle\"), OL = 0, za = [];\nfunction v4(e) {\n var t = Z.useRef([]), r = Z.useRef([0, 0]), n = Z.useRef(), a = Z.useState(OL++)[0], i = Z.useState(Wo)[0], l = Z.useRef(e);\n Z.useEffect(function() {\n l.current = e;\n }, [e]), Z.useEffect(function() {\n if (e.inert) {\n document.body.classList.add(\"block-interactivity-\".concat(a));\n var m = t4([e.lockRef.current], (e.shards || []).map(g4), !0).filter(Boolean);\n return m.forEach(function(v) {\n return v.classList.add(\"allow-interactivity-\".concat(a));\n }), function() {\n document.body.classList.remove(\"block-interactivity-\".concat(a)), m.forEach(function(v) {\n return v.classList.remove(\"allow-interactivity-\".concat(a));\n });\n };\n }\n }, [e.inert, e.lockRef.current, e.shards]);\n var u = Z.useCallback(function(m, v) {\n if (\"touches\" in m && m.touches.length === 2 || m.type === \"wheel\" && m.ctrlKey)\n return !l.current.allowPinchZoom;\n var y = Al(m), b = r.current, D = \"deltaX\" in m ? m.deltaX : b[0] - y[0], x = \"deltaY\" in m ? m.deltaY : b[1] - y[1], C, E = m.target, R = Math.\n abs(D) > Math.abs(x) ? \"h\" : \"v\";\n if (\"touches\" in m && R === \"h\" && E.type === \"range\")\n return !1;\n var F = y0(R, E);\n if (!F)\n return !0;\n if (F ? C = R : (C = R === \"v\" ? \"h\" : \"v\", F = y0(R, E)), !F)\n return !1;\n if (!n.current && \"changedTouches\" in m && (D || x) && (n.current = C), !C)\n return !0;\n var A = n.current || C;\n return h4(A, v, m, A === \"h\" ? D : x, !0);\n }, []), c = Z.useCallback(function(m) {\n var v = m;\n if (!(!za.length || za[za.length - 1] !== i)) {\n var y = \"deltaY\" in v ? m4(v) : Al(v), b = t.current.filter(function(C) {\n return C.name === v.type && (C.target === v.target || v.target === C.shadowParent) && HL(C.delta, y);\n })[0];\n if (b && b.should) {\n v.cancelable && v.preventDefault();\n return;\n }\n if (!b) {\n var D = (l.current.shards || []).map(g4).filter(Boolean).filter(function(C) {\n return C.contains(v.target);\n }), x = D.length > 0 ? u(v, D[0]) : !l.current.noIsolation;\n x && v.cancelable && v.preventDefault();\n }\n }\n }, []), p = Z.useCallback(function(m, v, y, b) {\n var D = { name: m, delta: v, target: y, should: b, shadowParent: NL(y) };\n t.current.push(D), setTimeout(function() {\n t.current = t.current.filter(function(x) {\n return x !== D;\n });\n }, 1);\n }, []), d = Z.useCallback(function(m) {\n r.current = Al(m), n.current = void 0;\n }, []), h = Z.useCallback(function(m) {\n p(m.type, m4(m), m.target, u(m, e.lockRef.current));\n }, []), f = Z.useCallback(function(m) {\n p(m.type, Al(m), m.target, u(m, e.lockRef.current));\n }, []);\n Z.useEffect(function() {\n return za.push(i), e.setCallbacks({\n onScrollCapture: h,\n onWheelCapture: h,\n onTouchMoveCapture: f\n }), document.addEventListener(\"wheel\", c, Jr), document.addEventListener(\"touchmove\", c, Jr), document.addEventListener(\"touchstart\", d,\n Jr), function() {\n za = za.filter(function(m) {\n return m !== i;\n }), document.removeEventListener(\"wheel\", c, Jr), document.removeEventListener(\"touchmove\", c, Jr), document.removeEventListener(\"touc\\\nhstart\", d, Jr);\n };\n }, []);\n var g = e.removeScrollBar, w = e.inert;\n return Z.createElement(\n Z.Fragment,\n null,\n w ? Z.createElement(i, { styles: zL(a) }) : null,\n g ? Z.createElement(w0, { gapMode: e.gapMode }) : null\n );\n}\no(v4, \"RemoveScrollSideCar\");\nfunction NL(e) {\n for (var t = null; e !== null; )\n e instanceof ShadowRoot && (t = e.host, e = e.host), e = e.parentNode;\n return t;\n}\no(NL, \"getOutermostShadowParent\");\n\n// ../node_modules/react-remove-scroll/dist/es2015/sidecar.js\nvar w4 = d0(Sl, v4);\n\n// ../node_modules/react-remove-scroll/dist/es2015/Combination.js\nvar b4 = Fl.forwardRef(function(e, t) {\n return Fl.createElement(jo, Ge({}, e, { ref: t, sideCar: w4 }));\n});\nb4.classNames = jo.classNames;\nvar D0 = b4;\n\n// ../node_modules/aria-hidden/dist/es2015/index.js\nvar $L = /* @__PURE__ */ o(function(e) {\n if (typeof document > \"u\")\n return null;\n var t = Array.isArray(e) ? e[0] : e;\n return t.ownerDocument.body;\n}, \"getDefaultParent\"), Oa = /* @__PURE__ */ new WeakMap(), kl = /* @__PURE__ */ new WeakMap(), Ll = {}, x0 = 0, y4 = /* @__PURE__ */ o(function(e) {\n return e && (e.host || y4(e.parentNode));\n}, \"unwrapHost\"), VL = /* @__PURE__ */ o(function(e, t) {\n return t.map(function(r) {\n if (e.contains(r))\n return r;\n var n = y4(r);\n return n && e.contains(n) ? n : (console.error(\"aria-hidden\", r, \"in not contained inside\", e, \". Doing nothing\"), null);\n }).filter(function(r) {\n return !!r;\n });\n}, \"correctTargets\"), jL = /* @__PURE__ */ o(function(e, t, r, n) {\n var a = VL(t, Array.isArray(e) ? e : [e]);\n Ll[r] || (Ll[r] = /* @__PURE__ */ new WeakMap());\n var i = Ll[r], l = [], u = /* @__PURE__ */ new Set(), c = new Set(a), p = /* @__PURE__ */ o(function(h) {\n !h || u.has(h) || (u.add(h), p(h.parentNode));\n }, \"keep\");\n a.forEach(p);\n var d = /* @__PURE__ */ o(function(h) {\n !h || c.has(h) || Array.prototype.forEach.call(h.children, function(f) {\n if (u.has(f))\n d(f);\n else {\n var g = f.getAttribute(n), w = g !== null && g !== \"false\", m = (Oa.get(f) || 0) + 1, v = (i.get(f) || 0) + 1;\n Oa.set(f, m), i.set(f, v), l.push(f), m === 1 && w && kl.set(f, !0), v === 1 && f.setAttribute(r, \"true\"), w || f.setAttribute(n, \"t\\\nrue\");\n }\n });\n }, \"deep\");\n return d(t), u.clear(), x0++, function() {\n l.forEach(function(h) {\n var f = Oa.get(h) - 1, g = i.get(h) - 1;\n Oa.set(h, f), i.set(h, g), f || (kl.has(h) || h.removeAttribute(n), kl.delete(h)), g || h.removeAttribute(r);\n }), x0--, x0 || (Oa = /* @__PURE__ */ new WeakMap(), Oa = /* @__PURE__ */ new WeakMap(), kl = /* @__PURE__ */ new WeakMap(), Ll = {});\n };\n}, \"applyAttributeToOthers\"), D4 = /* @__PURE__ */ o(function(e, t, r) {\n r === void 0 && (r = \"data-aria-hidden\");\n var n = Array.from(Array.isArray(e) ? e : [e]), a = t || $L(e);\n return a ? (n.push.apply(n, Array.from(a.querySelectorAll(\"[aria-live]\"))), jL(n, a, r, \"aria-hidden\")) : function() {\n return null;\n };\n}, \"hideOthers\");\n\n// ../node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-slot/dist/index.mjs\nHt();\nimport * as Fe from \"react\";\nimport { Fragment as WL, jsx as C0 } from \"react/jsx-runtime\";\nvar R0 = Fe.forwardRef((e, t) => {\n let { children: r, ...n } = e, a = Fe.Children.toArray(r), i = a.find(UL);\n if (i) {\n let l = i.props.children, u = a.map((c) => c === i ? Fe.Children.count(l) > 1 ? Fe.Children.only(null) : Fe.isValidElement(l) ? l.props.\n children : null : c);\n return /* @__PURE__ */ C0(E0, { ...n, ref: t, children: Fe.isValidElement(l) ? Fe.cloneElement(l, void 0, u) : null });\n }\n return /* @__PURE__ */ C0(E0, { ...n, ref: t, children: r });\n});\nR0.displayName = \"Slot\";\nvar E0 = Fe.forwardRef((e, t) => {\n let { children: r, ...n } = e;\n if (Fe.isValidElement(r)) {\n let a = YL(r);\n return Fe.cloneElement(r, {\n ...GL(n, r.props),\n // @ts-ignore\n ref: t ? go(t, a) : a\n });\n }\n return Fe.Children.count(r) > 1 ? Fe.Children.only(null) : null;\n});\nE0.displayName = \"SlotClone\";\nvar qL = /* @__PURE__ */ o(({ children: e }) => /* @__PURE__ */ C0(WL, { children: e }), \"Slottable\");\nfunction UL(e) {\n return Fe.isValidElement(e) && e.type === qL;\n}\no(UL, \"isSlottable\");\nfunction GL(e, t) {\n let r = { ...t };\n for (let n in t) {\n let a = e[n], i = t[n];\n /^on[A-Z]/.test(n) ? a && i ? r[n] = (...u) => {\n i(...u), a(...u);\n } : a && (r[n] = a) : n === \"style\" ? r[n] = { ...a, ...i } : n === \"className\" && (r[n] = [a, i].filter(Boolean).join(\" \"));\n }\n return { ...e, ...r };\n}\no(GL, \"mergeProps\");\nfunction YL(e) {\n let t = Object.getOwnPropertyDescriptor(e.props, \"ref\")?.get, r = t && \"isReactWarning\" in t && t.isReactWarning;\n return r ? e.ref : (t = Object.getOwnPropertyDescriptor(e, \"ref\")?.get, r = t && \"isReactWarning\" in t && t.isReactWarning, r ? e.props.ref :\n e.props.ref || e.ref);\n}\no(YL, \"getElementRef\");\n\n// ../node_modules/@radix-ui/react-dialog/dist/index.mjs\nimport { Fragment as x4, jsx as oe, jsxs as C4 } from \"react/jsx-runtime\";\nvar S0 = \"Dialog\", [E4, XL] = Hg(S0), [KL, vt] = E4(S0), A0 = /* @__PURE__ */ o((e) => {\n let {\n __scopeDialog: t,\n children: r,\n open: n,\n defaultOpen: a,\n onOpenChange: i,\n modal: l = !0\n } = e, u = Y.useRef(null), c = Y.useRef(null), [p = !1, d] = zg({\n prop: n,\n defaultProp: a,\n onChange: i\n });\n return /* @__PURE__ */ oe(\n KL,\n {\n scope: t,\n triggerRef: u,\n contentRef: c,\n contentId: Dl(),\n titleId: Dl(),\n descriptionId: Dl(),\n open: p,\n onOpenChange: d,\n onOpenToggle: Y.useCallback(() => d((h) => !h), [d]),\n modal: l,\n children: r\n }\n );\n}, \"Dialog\");\nA0.displayName = S0;\nvar R4 = \"DialogTrigger\", F0 = Y.forwardRef(\n (e, t) => {\n let { __scopeDialog: r, ...n } = e, a = vt(R4, r), i = se(t, a.triggerRef);\n return /* @__PURE__ */ oe(\n pe.button,\n {\n type: \"button\",\n \"aria-haspopup\": \"dialog\",\n \"aria-expanded\": a.open,\n \"aria-controls\": a.contentId,\n \"data-state\": H0(a.open),\n ...n,\n ref: i,\n onClick: be(e.onClick, a.onOpenToggle)\n }\n );\n }\n);\nF0.displayName = R4;\nvar k0 = \"DialogPortal\", [ZL, S4] = E4(k0, {\n forceMount: void 0\n}), L0 = /* @__PURE__ */ o((e) => {\n let { __scopeDialog: t, forceMount: r, children: n, container: a } = e, i = vt(k0, t);\n return /* @__PURE__ */ oe(ZL, { scope: t, forceMount: r, children: Y.Children.map(n, (l) => /* @__PURE__ */ oe(Vo, { present: r || i.open,\n children: /* @__PURE__ */ oe(i0, { asChild: !0, container: a, children: l }) })) });\n}, \"DialogPortal\");\nL0.displayName = k0;\nvar Tl = \"DialogOverlay\", T0 = Y.forwardRef(\n (e, t) => {\n let r = S4(Tl, e.__scopeDialog), { forceMount: n = r.forceMount, ...a } = e, i = vt(Tl, e.__scopeDialog);\n return i.modal ? /* @__PURE__ */ oe(Vo, { present: n || i.open, children: /* @__PURE__ */ oe(JL, { ...a, ref: t }) }) : null;\n }\n);\nT0.displayName = Tl;\nvar JL = Y.forwardRef(\n (e, t) => {\n let { __scopeDialog: r, ...n } = e, a = vt(Tl, r);\n return (\n // Make sure `Content` is scrollable even when it doesn't live inside `RemoveScroll`\n // ie. when `Overlay` and `Content` are siblings\n /* @__PURE__ */ oe(D0, { as: R0, allowPinchZoom: !0, shards: [a.contentRef], children: /* @__PURE__ */ oe(\n pe.div,\n {\n \"data-state\": H0(a.open),\n ...n,\n ref: t,\n style: { pointerEvents: \"auto\", ...n.style }\n }\n ) })\n );\n }\n), Qr = \"DialogContent\", I0 = Y.forwardRef(\n (e, t) => {\n let r = S4(Qr, e.__scopeDialog), { forceMount: n = r.forceMount, ...a } = e, i = vt(Qr, e.__scopeDialog);\n return /* @__PURE__ */ oe(Vo, { present: n || i.open, children: i.modal ? /* @__PURE__ */ oe(QL, { ...a, ref: t }) : /* @__PURE__ */ oe(\n eT, { ...a, ref: t }) });\n }\n);\nI0.displayName = Qr;\nvar QL = Y.forwardRef(\n (e, t) => {\n let r = vt(Qr, e.__scopeDialog), n = Y.useRef(null), a = se(t, r.contentRef, n);\n return Y.useEffect(() => {\n let i = n.current;\n if (i) return D4(i);\n }, []), /* @__PURE__ */ oe(\n A4,\n {\n ...e,\n ref: a,\n trapFocus: r.open,\n disableOutsidePointerEvents: !0,\n onCloseAutoFocus: be(e.onCloseAutoFocus, (i) => {\n i.preventDefault(), r.triggerRef.current?.focus();\n }),\n onPointerDownOutside: be(e.onPointerDownOutside, (i) => {\n let l = i.detail.originalEvent, u = l.button === 0 && l.ctrlKey === !0;\n (l.button === 2 || u) && i.preventDefault();\n }),\n onFocusOutside: be(\n e.onFocusOutside,\n (i) => i.preventDefault()\n )\n }\n );\n }\n), eT = Y.forwardRef(\n (e, t) => {\n let r = vt(Qr, e.__scopeDialog), n = Y.useRef(!1), a = Y.useRef(!1);\n return /* @__PURE__ */ oe(\n A4,\n {\n ...e,\n ref: t,\n trapFocus: !1,\n disableOutsidePointerEvents: !1,\n onCloseAutoFocus: /* @__PURE__ */ o((i) => {\n e.onCloseAutoFocus?.(i), i.defaultPrevented || (n.current || r.triggerRef.current?.focus(), i.preventDefault()), n.current = !1, a.\n current = !1;\n }, \"onCloseAutoFocus\"),\n onInteractOutside: /* @__PURE__ */ o((i) => {\n e.onInteractOutside?.(i), i.defaultPrevented || (n.current = !0, i.detail.originalEvent.type === \"pointerdown\" && (a.current = !0));\n let l = i.target;\n r.triggerRef.current?.contains(l) && i.preventDefault(), i.detail.originalEvent.type === \"focusin\" && a.current && i.preventDefault();\n }, \"onInteractOutside\")\n }\n );\n }\n), A4 = Y.forwardRef(\n (e, t) => {\n let { __scopeDialog: r, trapFocus: n, onOpenAutoFocus: a, onCloseAutoFocus: i, ...l } = e, u = vt(Qr, r), c = Y.useRef(null), p = se(t, c);\n return e4(), /* @__PURE__ */ C4(x4, { children: [\n /* @__PURE__ */ oe(\n o0,\n {\n asChild: !0,\n loop: !0,\n trapped: n,\n onMountAutoFocus: a,\n onUnmountAutoFocus: i,\n children: /* @__PURE__ */ oe(\n r0,\n {\n role: \"dialog\",\n id: u.contentId,\n \"aria-describedby\": u.descriptionId,\n \"aria-labelledby\": u.titleId,\n \"data-state\": H0(u.open),\n ...l,\n ref: p,\n onDismiss: /* @__PURE__ */ o(() => u.onOpenChange(!1), \"onDismiss\")\n }\n )\n }\n ),\n /* @__PURE__ */ C4(x4, { children: [\n /* @__PURE__ */ oe(rT, { titleId: u.titleId }),\n /* @__PURE__ */ oe(aT, { contentRef: c, descriptionId: u.descriptionId })\n ] })\n ] });\n }\n), B0 = \"DialogTitle\", M0 = Y.forwardRef(\n (e, t) => {\n let { __scopeDialog: r, ...n } = e, a = vt(B0, r);\n return /* @__PURE__ */ oe(pe.h2, { id: a.titleId, ...n, ref: t });\n }\n);\nM0.displayName = B0;\nvar F4 = \"DialogDescription\", _0 = Y.forwardRef(\n (e, t) => {\n let { __scopeDialog: r, ...n } = e, a = vt(F4, r);\n return /* @__PURE__ */ oe(pe.p, { id: a.descriptionId, ...n, ref: t });\n }\n);\n_0.displayName = F4;\nvar k4 = \"DialogClose\", P0 = Y.forwardRef(\n (e, t) => {\n let { __scopeDialog: r, ...n } = e, a = vt(k4, r);\n return /* @__PURE__ */ oe(\n pe.button,\n {\n type: \"button\",\n ...n,\n ref: t,\n onClick: be(e.onClick, () => a.onOpenChange(!1))\n }\n );\n }\n);\nP0.displayName = k4;\nfunction H0(e) {\n return e ? \"open\" : \"closed\";\n}\no(H0, \"getState\");\nvar L4 = \"DialogTitleWarning\", [tT, T4] = Pg(L4, {\n contentName: Qr,\n titleName: B0,\n docsSlug: \"dialog\"\n}), rT = /* @__PURE__ */ o(({ titleId: e }) => {\n let t = T4(L4), r = `\\`${t.contentName}\\` requires a \\`${t.titleName}\\` for the component to be accessible for screen reader users.\n\nIf you want to hide the \\`${t.titleName}\\`, you can wrap it with our VisuallyHidden component.\n\nFor more information, see https://radix-ui.com/primitives/docs/components/${t.docsSlug}`;\n return Y.useEffect(() => {\n e && (document.getElementById(e) || console.error(r));\n }, [r, e]), null;\n}, \"TitleWarning\"), nT = \"DialogDescriptionWarning\", aT = /* @__PURE__ */ o(({ contentRef: e, descriptionId: t }) => {\n let n = `Warning: Missing \\`Description\\` or \\`aria-describedby={undefined}\\` for {${T4(nT).contentName}}.`;\n return Y.useEffect(() => {\n let a = e.current?.getAttribute(\"aria-describedby\");\n t && a && (document.getElementById(t) || console.warn(n));\n }, [n, e, t]), null;\n}, \"DescriptionWarning\"), z0 = A0, oT = F0, O0 = L0, N0 = T0, $0 = I0, V0 = M0, j0 = _0, W0 = P0;\n\n// src/components/components/Modal/Modal.styled.tsx\nvar Z0 = {};\nfn(Z0, {\n Actions: () => AT,\n CloseButton: () => P4,\n Col: () => z4,\n Container: () => K0,\n Content: () => CT,\n Description: () => ST,\n Error: () => FT,\n ErrorWrapper: () => O4,\n Header: () => ET,\n Overlay: () => X0,\n Row: () => H4,\n Title: () => RT\n});\nimport hr from \"react\";\nimport { keyframes as Y0, styled as Yt } from \"@storybook/core/theming\";\n\n// src/components/components/IconButton/IconButton.tsx\nimport bT, { forwardRef as yT } from \"react\";\n\n// src/components/components/Button/Button.tsx\nimport M4, { forwardRef as dT, useEffect as fT, useState as hT } from \"react\";\nimport { isPropValid as mT, styled as gT } from \"@storybook/core/theming\";\nimport { deprecate as vT } from \"@storybook/core/client-logger\";\n\n// ../node_modules/@radix-ui/react-slot/dist/index.mjs\nimport * as he from \"react\";\n\n// ../node_modules/@radix-ui/react-slot/node_modules/@radix-ui/react-compose-refs/dist/index.mjs\nimport * as iT from \"react\";\nfunction I4(e, t) {\n if (typeof e == \"function\")\n return e(t);\n e != null && (e.current = t);\n}\no(I4, \"setRef\");\nfunction B4(...e) {\n return (t) => {\n let r = !1, n = e.map((a) => {\n let i = I4(a, t);\n return !r && typeof i == \"function\" && (r = !0), i;\n });\n if (r)\n return () => {\n for (let a = 0; a < n.length; a++) {\n let i = n[a];\n typeof i == \"function\" ? i() : I4(e[a], null);\n }\n };\n };\n}\no(B4, \"composeRefs\");\n\n// ../node_modules/@radix-ui/react-slot/dist/index.mjs\nimport { Fragment as lT, jsx as q0 } from \"react/jsx-runtime\";\nvar G0 = he.forwardRef((e, t) => {\n let { children: r, ...n } = e, a = he.Children.toArray(r), i = a.find(uT);\n if (i) {\n let l = i.props.children, u = a.map((c) => c === i ? he.Children.count(l) > 1 ? he.Children.only(null) : he.isValidElement(l) ? l.props.\n children : null : c);\n return /* @__PURE__ */ q0(U0, { ...n, ref: t, children: he.isValidElement(l) ? he.cloneElement(l, void 0, u) : null });\n }\n return /* @__PURE__ */ q0(U0, { ...n, ref: t, children: r });\n});\nG0.displayName = \"Slot\";\nvar U0 = he.forwardRef((e, t) => {\n let { children: r, ...n } = e;\n if (he.isValidElement(r)) {\n let a = pT(r), i = cT(n, r.props);\n return r.type !== he.Fragment && (i.ref = t ? B4(t, a) : a), he.cloneElement(r, i);\n }\n return he.Children.count(r) > 1 ? he.Children.only(null) : null;\n});\nU0.displayName = \"SlotClone\";\nvar sT = /* @__PURE__ */ o(({ children: e }) => /* @__PURE__ */ q0(lT, { children: e }), \"Slottable\");\nfunction uT(e) {\n return he.isValidElement(e) && e.type === sT;\n}\no(uT, \"isSlottable\");\nfunction cT(e, t) {\n let r = { ...t };\n for (let n in t) {\n let a = e[n], i = t[n];\n /^on[A-Z]/.test(n) ? a && i ? r[n] = (...u) => {\n i(...u), a(...u);\n } : a && (r[n] = a) : n === \"style\" ? r[n] = { ...a, ...i } : n === \"className\" && (r[n] = [a, i].filter(Boolean).join(\" \"));\n }\n return { ...e, ...r };\n}\no(cT, \"mergeProps\");\nfunction pT(e) {\n let t = Object.getOwnPropertyDescriptor(e.props, \"ref\")?.get, r = t && \"isReactWarning\" in t && t.isReactWarning;\n return r ? e.ref : (t = Object.getOwnPropertyDescriptor(e, \"ref\")?.get, r = t && \"isReactWarning\" in t && t.isReactWarning, r ? e.props.ref :\n e.props.ref || e.ref);\n}\no(pT, \"getElementRef\");\n\n// src/components/components/Button/Button.tsx\nvar Na = dT(\n ({\n asChild: e = !1,\n animation: t = \"none\",\n size: r = \"small\",\n variant: n = \"outline\",\n padding: a = \"medium\",\n disabled: i = !1,\n active: l = !1,\n onClick: u,\n ...c\n }, p) => {\n let d = \"button\";\n c.isLink && (d = \"a\"), e && (d = G0);\n let h = n, f = r, [g, w] = hT(!1), m = /* @__PURE__ */ o((v) => {\n u && u(v), t !== \"none\" && w(!0);\n }, \"handleClick\");\n if (fT(() => {\n let v = setTimeout(() => {\n g && w(!1);\n }, 1e3);\n return () => clearTimeout(v);\n }, [g]), c.primary && (h = \"solid\", f = \"medium\"), (c.secondary || c.tertiary || c.gray || c.outline || c.inForm) && (h = \"outline\", f =\n \"medium\"), c.small || c.isLink || c.primary || c.secondary || c.tertiary || c.gray || c.outline || c.inForm || c.containsIcon) {\n let v = M4.Children.toArray(c.children).filter(\n (y) => typeof y == \"string\" && y !== \"\"\n );\n vT(\n `Use of deprecated props in the button ${v.length > 0 ? `\"${v.join(\" \")}\"` : \"component\"} detected, see the migration notes at https\\\n://github.com/storybookjs/storybook/blob/next/MIGRATION.md#new-ui-and-props-for-button-and-iconbutton-components`\n );\n }\n return /* @__PURE__ */ M4.createElement(\n wT,\n {\n as: d,\n ref: p,\n variant: h,\n size: f,\n padding: a,\n disabled: i,\n active: l,\n animating: g,\n animation: t,\n onClick: m,\n ...c\n }\n );\n }\n);\nNa.displayName = \"Button\";\nvar wT = gT(\"button\", {\n shouldForwardProp: /* @__PURE__ */ o((e) => mT(e), \"shouldForwardProp\")\n})(({ theme: e, variant: t, size: r, disabled: n, active: a, animating: i, animation: l = \"none\", padding: u }) => ({\n border: 0,\n cursor: n ? \"not-allowed\" : \"pointer\",\n display: \"inline-flex\",\n gap: \"6px\",\n alignItems: \"center\",\n justifyContent: \"center\",\n overflow: \"hidden\",\n padding: u === \"none\" ? 0 : u === \"small\" && r === \"small\" ? \"0 7px\" : u === \"small\" && r === \"medium\" ? \"0 9px\" : r === \"small\" ? \"0 10px\" :\n r === \"medium\" ? \"0 12px\" : 0,\n height: r === \"small\" ? \"28px\" : \"32px\",\n position: \"relative\",\n textAlign: \"center\",\n textDecoration: \"none\",\n transitionProperty: \"background, box-shadow\",\n transitionDuration: \"150ms\",\n transitionTimingFunction: \"ease-out\",\n verticalAlign: \"top\",\n whiteSpace: \"nowrap\",\n userSelect: \"none\",\n opacity: n ? 0.5 : 1,\n margin: 0,\n fontSize: `${e.typography.size.s1}px`,\n fontWeight: e.typography.weight.bold,\n lineHeight: \"1\",\n background: t === \"solid\" ? e.color.secondary : t === \"outline\" ? e.button.background : t === \"ghost\" && a ? e.background.hoverable : \"tra\\\nnsparent\",\n ...t === \"ghost\" ? {\n // This is a hack to apply bar styles to the button as soon as it is part of a bar\n // It is a temporary solution until we have implemented Theming 2.0.\n \".sb-bar &\": {\n background: a ? Be(0.9, e.barTextColor) : \"transparent\",\n color: a ? e.barSelectedColor : e.barTextColor,\n \"&:hover\": {\n color: e.barHoverColor,\n background: Be(0.86, e.barHoverColor)\n },\n \"&:active\": {\n color: e.barSelectedColor,\n background: Be(0.9, e.barSelectedColor)\n },\n \"&:focus\": {\n boxShadow: `${so(e.barHoverColor, 1)} 0 0 0 1px inset`,\n outline: \"none\"\n }\n }\n } : {},\n color: t === \"solid\" ? e.color.lightest : t === \"outline\" ? e.input.color : t === \"ghost\" && a ? e.color.secondary : t === \"ghost\" ? e.color.\n mediumdark : e.input.color,\n boxShadow: t === \"outline\" ? `${e.button.border} 0 0 0 1px inset` : \"none\",\n borderRadius: e.input.borderRadius,\n // Making sure that the button never shrinks below its minimum size\n flexShrink: 0,\n \"&:hover\": {\n color: t === \"ghost\" ? e.color.secondary : void 0,\n background: (() => {\n let c = e.color.secondary;\n return t === \"solid\" && (c = e.color.secondary), t === \"outline\" && (c = e.button.background), t === \"ghost\" ? Be(0.86, e.color.secondary) :\n e.base === \"light\" ? tr(0.02, c) : ms(0.03, c);\n })()\n },\n \"&:active\": {\n color: t === \"ghost\" ? e.color.secondary : void 0,\n background: (() => {\n let c = e.color.secondary;\n return t === \"solid\" && (c = e.color.secondary), t === \"outline\" && (c = e.button.background), t === \"ghost\" ? e.background.hoverable :\n e.base === \"light\" ? tr(0.02, c) : ms(0.03, c);\n })()\n },\n \"&:focus\": {\n boxShadow: `${so(e.color.secondary, 1)} 0 0 0 1px inset`,\n outline: \"none\"\n },\n \"> svg\": {\n animation: i && l !== \"none\" ? `${e.animation[l]} 1000ms ease-out` : \"\"\n }\n}));\n\n// src/components/components/IconButton/IconButton.tsx\nvar Bl = yT(\n ({ padding: e = \"small\", variant: t = \"ghost\", ...r }, n) => /* @__PURE__ */ bT.createElement(Na, { padding: e, variant: t, ref: n, ...r })\n);\nBl.displayName = \"IconButton\";\n\n// src/components/components/Modal/Modal.styled.tsx\nvar _4 = Y0({\n from: { opacity: 0 },\n to: { opacity: 1 }\n}), DT = Y0({\n from: { maxHeight: 0 },\n to: {}\n}), xT = Y0({\n from: {\n opacity: 0,\n transform: \"translate(-50%, -50%) scale(0.9)\"\n },\n to: {\n opacity: 1,\n transform: \"translate(-50%, -50%) scale(1)\"\n }\n}), X0 = Yt.div({\n backdropFilter: \"blur(24px)\",\n position: \"fixed\",\n inset: 0,\n width: \"100%\",\n height: \"100%\",\n zIndex: 10,\n animation: `${_4} 200ms`\n}), K0 = Yt.div(\n ({ theme: e, width: t, height: r }) => ({\n backgroundColor: e.background.bar,\n borderRadius: 6,\n boxShadow: \"0px 4px 67px 0px #00000040\",\n position: \"fixed\",\n top: \"50%\",\n left: \"50%\",\n transform: \"translate(-50%, -50%)\",\n width: t ?? 740,\n height: r ?? \"auto\",\n maxWidth: \"calc(100% - 40px)\",\n maxHeight: \"85vh\",\n overflow: \"hidden\",\n zIndex: 11,\n animation: `${xT} 200ms`,\n \"&:focus-visible\": {\n outline: \"none\"\n }\n })\n), P4 = /* @__PURE__ */ o((e) => /* @__PURE__ */ hr.createElement(W0, { asChild: !0 }, /* @__PURE__ */ hr.createElement(Bl, { ...e }, /* @__PURE__ */ hr.\ncreateElement(Hu, null))), \"CloseButton\"), CT = Yt.div({\n display: \"flex\",\n flexDirection: \"column\",\n margin: 16,\n gap: 16\n}), H4 = Yt.div({\n display: \"flex\",\n justifyContent: \"space-between\",\n gap: 16\n}), z4 = Yt.div({\n display: \"flex\",\n flexDirection: \"column\",\n gap: 4\n}), ET = /* @__PURE__ */ o((e) => /* @__PURE__ */ hr.createElement(H4, null, /* @__PURE__ */ hr.createElement(z4, { ...e }), /* @__PURE__ */ hr.\ncreateElement(P4, null)), \"Header\"), RT = Yt(V0)(({ theme: e }) => ({\n margin: 0,\n fontSize: e.typography.size.s3,\n fontWeight: e.typography.weight.bold\n})), ST = Yt(j0)(({ theme: e }) => ({\n position: \"relative\",\n zIndex: 1,\n margin: 0,\n fontSize: e.typography.size.s2\n})), AT = Yt.div({\n display: \"flex\",\n flexDirection: \"row-reverse\",\n gap: 8\n}), O4 = Yt.div(({ theme: e }) => ({\n maxHeight: 100,\n overflow: \"auto\",\n animation: `${DT} 300ms, ${_4} 300ms`,\n backgroundColor: e.background.critical,\n color: e.color.lightest,\n fontSize: e.typography.size.s2,\n \"& > div\": {\n position: \"relative\",\n padding: \"8px 16px\"\n }\n})), FT = /* @__PURE__ */ o(({\n children: e,\n ...t\n}) => /* @__PURE__ */ hr.createElement(O4, { ...t }, /* @__PURE__ */ hr.createElement(\"div\", null, e)), \"Error\");\n\n// src/components/components/Modal/Modal.tsx\nfunction kT({\n children: e,\n width: t,\n height: r,\n onEscapeKeyDown: n,\n onInteractOutside: a = /* @__PURE__ */ o((c) => c.preventDefault(), \"onInteractOutside\"),\n className: i,\n container: l,\n ...u\n}) {\n return /* @__PURE__ */ $a.createElement(z0, { ...u }, /* @__PURE__ */ $a.createElement(O0, { container: l }, /* @__PURE__ */ $a.createElement(\n N0, { asChild: !0 }, /* @__PURE__ */ $a.createElement(X0, null)), /* @__PURE__ */ $a.createElement(\n $0,\n {\n asChild: !0,\n onInteractOutside: a,\n onEscapeKeyDown: n\n },\n /* @__PURE__ */ $a.createElement(K0, { className: i, width: t, height: r }, e)\n )));\n}\no(kT, \"BaseModal\");\nvar LT = Object.assign(kT, Z0, { Dialog: Il });\n\n// src/components/components/spaced/Spaced.tsx\nimport TT from \"react\";\nimport { ignoreSsrWarning as N4, styled as IT } from \"@storybook/core/theming\";\nvar BT = /* @__PURE__ */ o((e) => typeof e == \"number\" ? e : Number(e), \"toNumber\"), MT = IT.div(\n ({ theme: e, col: t, row: r = 1 }) => t ? {\n display: \"inline-block\",\n verticalAlign: \"inherit\",\n \"& > *\": {\n marginLeft: t * e.layoutMargin,\n verticalAlign: \"inherit\"\n },\n [`& > *:first-child${N4}`]: {\n marginLeft: 0\n }\n } : {\n \"& > *\": {\n marginTop: r * e.layoutMargin\n },\n [`& > *:first-child${N4}`]: {\n marginTop: 0\n }\n },\n ({ theme: e, outer: t, col: r, row: n }) => {\n switch (!0) {\n case !!(t && r):\n return {\n marginLeft: t * e.layoutMargin,\n marginRight: t * e.layoutMargin\n };\n case !!(t && n):\n return {\n marginTop: t * e.layoutMargin,\n marginBottom: t * e.layoutMargin\n };\n default:\n return {};\n }\n }\n), _T = /* @__PURE__ */ o(({ col: e, row: t, outer: r, children: n, ...a }) => {\n let i = BT(typeof r == \"number\" || !r ? r : e || t);\n return /* @__PURE__ */ TT.createElement(MT, { col: e, row: t, outer: i, ...a }, n);\n}, \"Spaced\");\n\n// src/components/components/placeholder/placeholder.tsx\nimport J0, { Children as PT } from \"react\";\nimport { styled as Q0 } from \"@storybook/core/theming\";\nvar HT = Q0.div(({ theme: e }) => ({\n fontWeight: e.typography.weight.bold\n})), zT = Q0.div(), OT = Q0.div(({ theme: e }) => ({\n padding: 30,\n textAlign: \"center\",\n color: e.color.defaultText,\n fontSize: e.typography.size.s2 - 1\n})), NT = /* @__PURE__ */ o(({ children: e, ...t }) => {\n let [r, n] = PT.toArray(e);\n return /* @__PURE__ */ J0.createElement(OT, { ...t }, /* @__PURE__ */ J0.createElement(HT, null, r), n && /* @__PURE__ */ J0.createElement(\n zT, null, n));\n}, \"Placeholder\");\n\n// src/components/index.ts\nLi();\n\n// src/components/components/Zoom/ZoomElement.tsx\nimport V4, { useCallback as WT, useEffect as qT, useRef as UT, useState as GT } from \"react\";\nimport { styled as YT } from \"@storybook/core/theming\";\n\n// ../node_modules/use-resize-observer/dist/bundle.esm.js\nimport { useRef as en, useEffect as e1, useCallback as t1, useState as $T, useMemo as VT } from \"react\";\nfunction jT(e, t) {\n var r = en(null), n = en(null);\n n.current = t;\n var a = en(null);\n e1(function() {\n i();\n });\n var i = t1(function() {\n var l = a.current, u = n.current, c = l || (u ? u instanceof Element ? u : u.current : null);\n r.current && r.current.element === c && r.current.subscriber === e || (r.current && r.current.cleanup && r.current.cleanup(), r.current =\n {\n element: c,\n subscriber: e,\n // Only calling the subscriber, if there's an actual element to report.\n // Setting cleanup to undefined unless a subscriber returns one, as an existing cleanup function would've been just called.\n cleanup: c ? e(c) : void 0\n });\n }, [e]);\n return e1(function() {\n return function() {\n r.current && r.current.cleanup && (r.current.cleanup(), r.current = null);\n };\n }, []), t1(function(l) {\n a.current = l, i();\n }, [i]);\n}\no(jT, \"useResolvedElement\");\nfunction $4(e, t, r) {\n return e[t] ? e[t][0] ? e[t][0][r] : (\n // TS complains about this, because the RO entry type follows the spec and does not reflect Firefox's current\n // behaviour of returning objects instead of arrays for `borderBoxSize` and `contentBoxSize`.\n // @ts-ignore\n e[t][r]\n ) : t === \"contentBoxSize\" ? e.contentRect[r === \"inlineSize\" ? \"width\" : \"height\"] : void 0;\n}\no($4, \"extractSize\");\nfunction Ml(e) {\n e === void 0 && (e = {});\n var t = e.onResize, r = en(void 0);\n r.current = t;\n var n = e.round || Math.round, a = en(), i = $T({\n width: void 0,\n height: void 0\n }), l = i[0], u = i[1], c = en(!1);\n e1(function() {\n return c.current = !1, function() {\n c.current = !0;\n };\n }, []);\n var p = en({\n width: void 0,\n height: void 0\n }), d = jT(t1(function(h) {\n return (!a.current || a.current.box !== e.box || a.current.round !== n) && (a.current = {\n box: e.box,\n round: n,\n instance: new ResizeObserver(function(f) {\n var g = f[0], w = e.box === \"border-box\" ? \"borderBoxSize\" : e.box === \"device-pixel-content-box\" ? \"devicePixelContentBoxSize\" : \"c\\\nontentBoxSize\", m = $4(g, w, \"inlineSize\"), v = $4(g, w, \"blockSize\"), y = m ? n(m) : void 0, b = v ? n(v) : void 0;\n if (p.current.width !== y || p.current.height !== b) {\n var D = {\n width: y,\n height: b\n };\n p.current.width = y, p.current.height = b, r.current ? r.current(D) : c.current || u(D);\n }\n })\n }), a.current.instance.observe(h, {\n box: e.box\n }), function() {\n a.current && a.current.instance.unobserve(h);\n };\n }, [e.box, n]), e.ref);\n return VT(function() {\n return {\n ref: d,\n width: l.width,\n height: l.height\n };\n }, [d, l.width, l.height]);\n}\no(Ml, \"useResizeObserver\");\n\n// src/components/components/Zoom/ZoomElement.tsx\nvar XT = YT.div(\n ({ scale: e = 1, elementHeight: t }) => ({\n height: t || \"auto\",\n transformOrigin: \"top left\",\n transform: `scale(${1 / e})`\n })\n);\nfunction j4({ scale: e, children: t }) {\n let r = UT(null), [n, a] = GT(0), i = WT(\n ({ height: l }) => {\n l && a(l / e);\n },\n [e]\n );\n return qT(() => {\n r.current && a(r.current.getBoundingClientRect().height);\n }, [e]), Ml({\n ref: r,\n onResize: i\n }), /* @__PURE__ */ V4.createElement(XT, { scale: e, elementHeight: n }, /* @__PURE__ */ V4.createElement(\"div\", { ref: r, className: \"inn\\\nerZoomElementWrapper\" }, t));\n}\no(j4, \"ZoomElement\");\n\n// src/components/components/Zoom/ZoomIFrame.tsx\nimport W4, { Component as KT } from \"react\";\nvar r1 = class r1 extends KT {\n constructor() {\n super(...arguments);\n // @ts-expect-error (non strict)\n this.iframe = null;\n }\n componentDidMount() {\n let { iFrameRef: r } = this.props;\n this.iframe = r.current;\n }\n shouldComponentUpdate(r) {\n let { scale: n, active: a } = this.props;\n return n !== r.scale && this.setIframeInnerZoom(r.scale), a !== r.active && this.iframe.setAttribute(\"data-is-storybook\", r.active ? \"tr\\\nue\" : \"false\"), r.children.props.src !== this.props.children.props.src;\n }\n setIframeInnerZoom(r) {\n try {\n Object.assign(this.iframe.contentDocument.body.style, {\n width: `${r * 100}%`,\n height: `${r * 100}%`,\n transform: `scale(${1 / r})`,\n transformOrigin: \"top left\"\n });\n } catch {\n this.setIframeZoom(r);\n }\n }\n setIframeZoom(r) {\n Object.assign(this.iframe.style, {\n width: `${r * 100}%`,\n height: `${r * 100}%`,\n transform: `scale(${1 / r})`,\n transformOrigin: \"top left\"\n });\n }\n render() {\n let { children: r } = this.props;\n return /* @__PURE__ */ W4.createElement(W4.Fragment, null, r);\n }\n};\no(r1, \"ZoomIFrame\");\nvar _l = r1;\n\n// src/components/components/Zoom/Zoom.tsx\nvar ZT = {\n Element: j4,\n IFrame: _l\n};\n\n// src/components/components/ErrorFormatter/ErrorFormatter.tsx\nci();\nimport Ye, { Fragment as Va } from \"react\";\nimport { styled as n1 } from \"@storybook/core/theming\";\nvar { document: JT } = hn, QT = n1.strong(({ theme: e }) => ({\n color: e.color.orange\n})), eI = n1.strong(({ theme: e }) => ({\n color: e.color.ancillary,\n textDecoration: \"underline\"\n})), q4 = n1.em(({ theme: e }) => ({\n color: e.textMutedColor\n})), tI = /(Error): (.*)\\n/, rI = /at (?:(.*) )?\\(?(.+)\\)?/, nI = /([^@]+)?(?:\\/<)?@(.+)?/, aI = /([^@]+)?@(.+)?/, oI = /* @__PURE__ */ o(({\nerror: e }) => {\n if (!e)\n return /* @__PURE__ */ Ye.createElement(Va, null, \"This error has no stack or message\");\n if (!e.stack)\n return /* @__PURE__ */ Ye.createElement(Va, null, e.message || \"This error has no stack or message\");\n let t = e.stack.toString();\n t && e.message && !t.includes(e.message) && (t = `Error: ${e.message}\n\n${t}`);\n let r = t.match(tI);\n if (!r)\n return /* @__PURE__ */ Ye.createElement(Va, null, t);\n let [, n, a] = r, i = t.split(/\\n/).slice(1), [, ...l] = i.map((u) => {\n let c = u.match(rI) || u.match(nI) || u.match(aI);\n return c ? {\n name: (c[1] || \"\").replace(\"/<\", \"\"),\n location: c[2].replace(JT.location.origin, \"\")\n } : null;\n }).filter(Boolean);\n return /* @__PURE__ */ Ye.createElement(Va, null, /* @__PURE__ */ Ye.createElement(\"span\", null, n), \": \", /* @__PURE__ */ Ye.createElement(\n QT, null, a), /* @__PURE__ */ Ye.createElement(\"br\", null), l.map(\n (u, c) => u?.name ? /* @__PURE__ */ Ye.createElement(Va, { key: c }, \" \", \"at \", /* @__PURE__ */ Ye.createElement(eI, null, u.name), \" \\\n(\", /* @__PURE__ */ Ye.createElement(q4, null, u.location), \")\", /* @__PURE__ */ Ye.createElement(\"br\", null)) : /* @__PURE__ */ Ye.createElement(\n Va, { key: c }, \" \", \"at \", /* @__PURE__ */ Ye.createElement(q4, null, u?.location), /* @__PURE__ */ Ye.createElement(\"br\", null))\n ));\n}, \"ErrorFormatter\");\n\n// src/components/components/form/index.tsx\nimport { styled as RI } from \"@storybook/core/theming\";\n\n// src/components/components/form/field/field.tsx\nimport a1 from \"react\";\nimport { styled as U4 } from \"@storybook/core/theming\";\nvar iI = U4.label(({ theme: e }) => ({\n display: \"flex\",\n borderBottom: `1px solid ${e.appBorderColor}`,\n margin: \"0 15px\",\n padding: \"8px 0\",\n \"&:last-child\": {\n marginBottom: \"3rem\"\n }\n})), lI = U4.span(({ theme: e }) => ({\n minWidth: 100,\n fontWeight: e.typography.weight.bold,\n marginRight: 15,\n display: \"flex\",\n justifyContent: \"flex-start\",\n alignItems: \"center\",\n lineHeight: \"16px\"\n})), G4 = /* @__PURE__ */ o(({ label: e, children: t, ...r }) => /* @__PURE__ */ a1.createElement(iI, { ...r }, e ? /* @__PURE__ */ a1.createElement(\nlI, null, /* @__PURE__ */ a1.createElement(\"span\", null, e)) : null, t), \"Field\");\n\n// src/components/components/form/input/input.tsx\nimport o1, { forwardRef as i1 } from \"react\";\nimport { styled as l1 } from \"@storybook/core/theming\";\n\n// ../node_modules/react-textarea-autosize/dist/react-textarea-autosize.browser.esm.js\nio();\npi();\nimport * as wt from \"react\";\n\n// ../node_modules/use-latest/dist/use-latest.esm.js\nimport * as X4 from \"react\";\n\n// ../node_modules/use-isomorphic-layout-effect/dist/use-isomorphic-layout-effect.browser.esm.js\nimport { useLayoutEffect as sI } from \"react\";\nvar uI = sI, Y4 = uI;\n\n// ../node_modules/use-latest/dist/use-latest.esm.js\nvar K4 = /* @__PURE__ */ o(function(t) {\n var r = X4.useRef(t);\n return Y4(function() {\n r.current = t;\n }), r;\n}, \"useLatest\");\n\n// ../node_modules/use-composed-ref/dist/use-composed-ref.esm.js\nimport { useRef as cI, useCallback as pI } from \"react\";\nvar Z4 = /* @__PURE__ */ o(function(t, r) {\n if (typeof t == \"function\") {\n t(r);\n return;\n }\n t.current = r;\n}, \"updateRef\"), dI = /* @__PURE__ */ o(function(t, r) {\n var n = cI();\n return pI(function(a) {\n t.current = a, n.current && Z4(n.current, null), n.current = r, r && Z4(r, a);\n }, [r]);\n}, \"useComposedRef\"), J4 = dI;\n\n// ../node_modules/react-textarea-autosize/dist/react-textarea-autosize.browser.esm.js\nvar Q4 = {\n \"min-height\": \"0\",\n \"max-height\": \"none\",\n height: \"0\",\n visibility: \"hidden\",\n overflow: \"hidden\",\n position: \"absolute\",\n \"z-index\": \"-1000\",\n top: \"0\",\n right: \"0\"\n}, fI = /* @__PURE__ */ o(function(t) {\n Object.keys(Q4).forEach(function(r) {\n t.style.setProperty(r, Q4[r], \"important\");\n });\n}, \"forceHiddenStyles\"), ev = fI, Pe = null, tv = /* @__PURE__ */ o(function(t, r) {\n var n = t.scrollHeight;\n return r.sizingStyle.boxSizing === \"border-box\" ? n + r.borderSize : n - r.paddingSize;\n}, \"getHeight\");\nfunction hI(e, t, r, n) {\n r === void 0 && (r = 1), n === void 0 && (n = 1 / 0), Pe || (Pe = document.createElement(\"textarea\"), Pe.setAttribute(\"tabindex\", \"-1\"), Pe.\n setAttribute(\"aria-hidden\", \"true\"), ev(Pe)), Pe.parentNode === null && document.body.appendChild(Pe);\n var a = e.paddingSize, i = e.borderSize, l = e.sizingStyle, u = l.boxSizing;\n Object.keys(l).forEach(function(f) {\n var g = f;\n Pe.style[g] = l[g];\n }), ev(Pe), Pe.value = t;\n var c = tv(Pe, e);\n Pe.value = t, c = tv(Pe, e), Pe.value = \"x\";\n var p = Pe.scrollHeight - a, d = p * r;\n u === \"border-box\" && (d = d + a + i), c = Math.max(d, c);\n var h = p * n;\n return u === \"border-box\" && (h = h + a + i), c = Math.min(h, c), [c, p];\n}\no(hI, \"calculateNodeHeight\");\nvar rv = /* @__PURE__ */ o(function() {\n}, \"noop\"), mI = /* @__PURE__ */ o(function(t, r) {\n return t.reduce(function(n, a) {\n return n[a] = r[a], n;\n }, {});\n}, \"pick\"), gI = [\n \"borderBottomWidth\",\n \"borderLeftWidth\",\n \"borderRightWidth\",\n \"borderTopWidth\",\n \"boxSizing\",\n \"fontFamily\",\n \"fontSize\",\n \"fontStyle\",\n \"fontWeight\",\n \"letterSpacing\",\n \"lineHeight\",\n \"paddingBottom\",\n \"paddingLeft\",\n \"paddingRight\",\n \"paddingTop\",\n // non-standard\n \"tabSize\",\n \"textIndent\",\n // non-standard\n \"textRendering\",\n \"textTransform\",\n \"width\",\n \"wordBreak\"\n], vI = !!document.documentElement.currentStyle, wI = /* @__PURE__ */ o(function(t) {\n var r = window.getComputedStyle(t);\n if (r === null)\n return null;\n var n = mI(gI, r), a = n.boxSizing;\n if (a === \"\")\n return null;\n vI && a === \"border-box\" && (n.width = parseFloat(n.width) + parseFloat(n.borderRightWidth) + parseFloat(n.borderLeftWidth) + parseFloat(n.\n paddingRight) + parseFloat(n.paddingLeft) + \"px\");\n var i = parseFloat(n.paddingBottom) + parseFloat(n.paddingTop), l = parseFloat(n.borderBottomWidth) + parseFloat(n.borderTopWidth);\n return {\n sizingStyle: n,\n paddingSize: i,\n borderSize: l\n };\n}, \"getSizingData\"), bI = wI;\nfunction nv(e, t, r) {\n var n = K4(r);\n wt.useLayoutEffect(function() {\n var a = /* @__PURE__ */ o(function(l) {\n return n.current(l);\n }, \"handler\");\n if (e)\n return e.addEventListener(t, a), function() {\n return e.removeEventListener(t, a);\n };\n }, []);\n}\no(nv, \"useListener\");\nvar yI = /* @__PURE__ */ o(function(t) {\n nv(window, \"resize\", t);\n}, \"useWindowResizeListener\"), DI = /* @__PURE__ */ o(function(t) {\n nv(document.fonts, \"loadingdone\", t);\n}, \"useFontsLoadedListener\"), xI = [\"cacheMeasurements\", \"maxRows\", \"minRows\", \"onChange\", \"onHeightChange\"], CI = /* @__PURE__ */ o(function(t, r) {\n var n = t.cacheMeasurements, a = t.maxRows, i = t.minRows, l = t.onChange, u = l === void 0 ? rv : l, c = t.onHeightChange, p = c === void 0 ?\n rv : c, d = mn(t, xI), h = d.value !== void 0, f = wt.useRef(null), g = J4(f, r), w = wt.useRef(0), m = wt.useRef(), v = /* @__PURE__ */ o(\n function() {\n var D = f.current, x = n && m.current ? m.current : bI(D);\n if (x) {\n m.current = x;\n var C = hI(x, D.value || D.placeholder || \"x\", i, a), E = C[0], R = C[1];\n w.current !== E && (w.current = E, D.style.setProperty(\"height\", E + \"px\", \"important\"), p(E, {\n rowHeight: R\n }));\n }\n }, \"resizeTextarea\"), y = /* @__PURE__ */ o(function(D) {\n h || v(), u(D);\n }, \"handleChange\");\n return wt.useLayoutEffect(v), yI(v), DI(v), /* @__PURE__ */ wt.createElement(\"textarea\", we({}, d, {\n onChange: y,\n ref: g\n }));\n}, \"TextareaAutosize\"), av = /* @__PURE__ */ wt.forwardRef(CI);\n\n// src/components/components/form/input/input.tsx\nvar EI = {\n // resets\n appearance: \"none\",\n border: \"0 none\",\n boxSizing: \"inherit\",\n display: \" block\",\n margin: \" 0\",\n background: \"transparent\",\n padding: 0,\n fontSize: \"inherit\",\n position: \"relative\"\n}, s1 = /* @__PURE__ */ o(({ theme: e }) => ({\n ...EI,\n transition: \"box-shadow 200ms ease-out, opacity 200ms ease-out\",\n color: e.input.color || \"inherit\",\n background: e.input.background,\n boxShadow: `${e.input.border} 0 0 0 1px inset`,\n borderRadius: e.input.borderRadius,\n fontSize: e.typography.size.s2 - 1,\n lineHeight: \"20px\",\n padding: \"6px 10px\",\n // 32\n boxSizing: \"border-box\",\n height: 32,\n '&[type=\"file\"]': {\n height: \"auto\"\n },\n \"&:focus\": {\n boxShadow: `${e.color.secondary} 0 0 0 1px inset`,\n outline: \"none\"\n },\n \"&[disabled]\": {\n cursor: \"not-allowed\",\n opacity: 0.5\n },\n \"&:-webkit-autofill\": { WebkitBoxShadow: `0 0 0 3em ${e.color.lightest} inset` },\n \"&::placeholder\": {\n color: e.textMutedColor,\n opacity: 1\n }\n}), \"styles\"), u1 = /* @__PURE__ */ o(({ size: e }) => {\n switch (e) {\n case \"100%\":\n return { width: \"100%\" };\n case \"flex\":\n return { flex: 1 };\n case \"auto\":\n default:\n return { display: \"inline\" };\n }\n}, \"sizes\"), ov = /* @__PURE__ */ o(({\n align: e\n}) => {\n switch (e) {\n case \"end\":\n return { textAlign: \"right\" };\n case \"center\":\n return { textAlign: \"center\" };\n case \"start\":\n default:\n return { textAlign: \"left\" };\n }\n}, \"alignment\"), c1 = /* @__PURE__ */ o(({ valid: e, theme: t }) => {\n switch (e) {\n case \"valid\":\n return { boxShadow: `${t.color.positive} 0 0 0 1px inset !important` };\n case \"error\":\n return { boxShadow: `${t.color.negative} 0 0 0 1px inset !important` };\n case \"warn\":\n return {\n boxShadow: `${t.color.warning} 0 0 0 1px inset`\n };\n case void 0:\n case null:\n default:\n return {};\n }\n}, \"validation\"), iv = Object.assign(\n l1(\n i1(/* @__PURE__ */ o(function({ size: t, valid: r, align: n, ...a }, i) {\n return /* @__PURE__ */ o1.createElement(\"input\", { ...a, ref: i });\n }, \"Input\"))\n )(s1, u1, ov, c1, {\n minHeight: 32\n }),\n {\n displayName: \"Input\"\n }\n), lv = Object.assign(\n l1(\n i1(/* @__PURE__ */ o(function({ size: t, valid: r, align: n, ...a }, i) {\n return /* @__PURE__ */ o1.createElement(\"select\", { ...a, ref: i });\n }, \"Select\"))\n )(s1, u1, c1, {\n height: 32,\n userSelect: \"none\",\n paddingRight: 20,\n appearance: \"menulist\"\n }),\n {\n displayName: \"Select\"\n }\n), sv = Object.assign(\n l1(\n i1(/* @__PURE__ */ o(function({ size: t, valid: r, align: n, ...a }, i) {\n return /* @__PURE__ */ o1.createElement(av, { ...a, ref: i });\n }, \"Textarea\"))\n )(s1, u1, ov, c1, ({ height: e = 400 }) => ({\n overflow: \"visible\",\n maxHeight: e\n })),\n {\n displayName: \"Textarea\"\n }\n);\n\n// src/components/components/form/index.tsx\nvar SI = Object.assign(\n RI.form({\n boxSizing: \"border-box\",\n width: \"100%\"\n }),\n {\n Field: G4,\n Input: iv,\n Select: lv,\n Textarea: sv,\n Button: Na\n }\n);\n\n// src/components/components/tooltip/lazy-WithTooltip.tsx\nimport Ja, { Suspense as D3, lazy as x3 } from \"react\";\nvar xB = x3(\n () => Promise.resolve().then(() => (Kl(), V1)).then((e) => ({ default: e.WithTooltip }))\n), CB = /* @__PURE__ */ o((e) => /* @__PURE__ */ Ja.createElement(D3, { fallback: /* @__PURE__ */ Ja.createElement(\"div\", null) }, /* @__PURE__ */ Ja.\ncreateElement(xB, { ...e })), \"WithTooltip\"), EB = x3(\n () => Promise.resolve().then(() => (Kl(), V1)).then((e) => ({ default: e.WithTooltipPure }))\n), RB = /* @__PURE__ */ o((e) => /* @__PURE__ */ Ja.createElement(D3, { fallback: /* @__PURE__ */ Ja.createElement(\"div\", null) }, /* @__PURE__ */ Ja.\ncreateElement(EB, { ...e })), \"WithTooltipPure\");\n\n// src/components/components/tooltip/TooltipMessage.tsx\nimport Qa from \"react\";\nimport { styled as ri } from \"@storybook/core/theming\";\nvar SB = ri.div(({ theme: e }) => ({\n fontWeight: e.typography.weight.bold\n})), AB = ri.span(), FB = ri.div(({ theme: e }) => ({\n marginTop: 8,\n textAlign: \"center\",\n \"> *\": {\n margin: \"0 8px\",\n fontWeight: e.typography.weight.bold\n }\n})), kB = ri.div(({ theme: e }) => ({\n color: e.color.defaultText,\n lineHeight: \"18px\"\n})), LB = ri.div({\n padding: 15,\n width: 280,\n boxSizing: \"border-box\"\n}), TB = /* @__PURE__ */ o(({ title: e, desc: t, links: r }) => /* @__PURE__ */ Qa.createElement(LB, null, /* @__PURE__ */ Qa.createElement(\nkB, null, e && /* @__PURE__ */ Qa.createElement(SB, null, e), t && /* @__PURE__ */ Qa.createElement(AB, null, t)), r && /* @__PURE__ */ Qa.createElement(\nFB, null, r.map(({ title: n, ...a }) => /* @__PURE__ */ Qa.createElement($u, { ...a, key: n }, n)))), \"TooltipMessage\");\n\n// src/components/components/tooltip/TooltipNote.tsx\nimport IB from \"react\";\nimport { styled as BB } from \"@storybook/core/theming\";\nvar MB = BB.div(({ theme: e }) => ({\n padding: \"2px 6px\",\n lineHeight: \"16px\",\n fontSize: 10,\n fontWeight: e.typography.weight.bold,\n color: e.color.lightest,\n boxShadow: \"0 0 5px 0 rgba(0, 0, 0, 0.3)\",\n borderRadius: 4,\n whiteSpace: \"nowrap\",\n pointerEvents: \"none\",\n zIndex: -1,\n background: e.base === \"light\" ? \"rgba(60, 60, 60, 0.9)\" : \"rgba(0, 0, 0, 0.95)\",\n margin: 6\n})), _B = /* @__PURE__ */ o(({ note: e, ...t }) => /* @__PURE__ */ IB.createElement(MB, { ...t }, e), \"TooltipNote\");\n\n// src/components/components/tooltip/TooltipLinkList.tsx\nimport ni, { Fragment as WB, useCallback as qB } from \"react\";\nimport { styled as E3 } from \"@storybook/core/theming\";\n\n// src/components/components/tooltip/ListItem.tsx\nvar C3 = Re(uo(), 1);\nimport Mt from \"react\";\nimport { styled as eo } from \"@storybook/core/theming\";\nvar PB = eo(({ active: e, loading: t, disabled: r, ...n }) => /* @__PURE__ */ Mt.createElement(\"span\", { ...n }))(\n ({ theme: e }) => ({\n color: e.color.defaultText,\n // Previously was theme.typography.weight.normal but this weight does not exists in Theme\n fontWeight: e.typography.weight.regular\n }),\n ({ active: e, theme: t }) => e ? {\n color: t.color.secondary,\n fontWeight: t.typography.weight.bold\n } : {},\n ({ loading: e, theme: t }) => e ? {\n display: \"inline-block\",\n flex: \"none\",\n ...t.animation.inlineGlow\n } : {},\n ({ disabled: e, theme: t }) => e ? {\n color: t.textMutedColor\n } : {}\n), HB = eo.span({\n display: \"flex\",\n \"& svg\": {\n height: 12,\n width: 12,\n margin: \"3px 0\",\n verticalAlign: \"top\"\n },\n \"& path\": {\n fill: \"inherit\"\n }\n}), zB = eo.span(\n {\n flex: 1,\n textAlign: \"left\",\n display: \"flex\",\n flexDirection: \"column\"\n },\n ({ isIndented: e }) => e ? { marginLeft: 24 } : {}\n), OB = eo.span(\n ({ theme: e }) => ({\n fontSize: \"11px\",\n lineHeight: \"14px\"\n }),\n ({ active: e, theme: t }) => e ? {\n color: t.color.secondary\n } : {},\n ({ theme: e, disabled: t }) => t ? {\n color: e.textMutedColor\n } : {}\n), NB = eo.span(\n ({ active: e, theme: t }) => e ? {\n color: t.color.secondary\n } : {},\n () => ({\n display: \"flex\",\n maxWidth: 14\n })\n), $B = eo.div(\n ({ theme: e }) => ({\n width: \"100%\",\n border: \"none\",\n borderRadius: e.appBorderRadius,\n background: \"none\",\n fontSize: e.typography.size.s1,\n transition: \"all 150ms ease-out\",\n color: e.color.dark,\n textDecoration: \"none\",\n justifyContent: \"space-between\",\n lineHeight: \"18px\",\n padding: \"7px 10px\",\n display: \"flex\",\n alignItems: \"center\",\n \"& > * + *\": {\n paddingLeft: 10\n }\n }),\n ({ theme: e, href: t, onClick: r }) => (t || r) && {\n cursor: \"pointer\",\n \"&:hover\": {\n background: e.background.hoverable\n },\n \"&:hover svg\": {\n opacity: 1\n }\n },\n ({ theme: e, as: t }) => t === \"label\" && {\n \"&:has(input:not(:disabled))\": {\n cursor: \"pointer\",\n \"&:hover\": {\n background: e.background.hoverable\n }\n }\n },\n ({ disabled: e }) => e && { cursor: \"not-allowed\" }\n), VB = (0, C3.default)(100)((e, t, r) => ({\n ...e && {\n as: \"button\",\n onClick: e\n },\n ...t && {\n as: \"a\",\n href: t,\n ...r && {\n as: r,\n to: t\n }\n }\n})), jB = /* @__PURE__ */ o(({\n loading: e = !1,\n title: t = /* @__PURE__ */ Mt.createElement(\"span\", null, \"Loading state\"),\n center: r = null,\n right: n = null,\n active: a = !1,\n disabled: i = !1,\n isIndented: l,\n href: u = void 0,\n onClick: c = void 0,\n icon: p,\n LinkWrapper: d = void 0,\n ...h\n}) => {\n let f = { active: a, disabled: i }, g = VB(c, u, d);\n return /* @__PURE__ */ Mt.createElement($B, { ...h, ...f, ...g }, /* @__PURE__ */ Mt.createElement(Mt.Fragment, null, p && /* @__PURE__ */ Mt.\n createElement(NB, { ...f }, p), t || r ? /* @__PURE__ */ Mt.createElement(zB, { isIndented: !!(!p && l) }, t && /* @__PURE__ */ Mt.createElement(\n PB, { ...f, loading: e }, t), r && /* @__PURE__ */ Mt.createElement(OB, { ...f }, r)) : null, n && /* @__PURE__ */ Mt.createElement(HB, { ...f },\n n)));\n}, \"ListItem\"), j1 = jB;\n\n// src/components/components/tooltip/TooltipLinkList.tsx\nvar UB = E3.div(\n {\n minWidth: 180,\n overflow: \"hidden\",\n overflowY: \"auto\",\n maxHeight: 15.5 * 32 + 8\n // 15.5 items at 32px each + 8px padding\n },\n ({ theme: e }) => ({\n borderRadius: e.appBorderRadius + 2\n }),\n ({ theme: e }) => e.base === \"dark\" ? { background: e.background.content } : {}\n), GB = E3.div(({ theme: e }) => ({\n padding: 4,\n \"& + &\": {\n borderTop: `1px solid ${e.appBorderColor}`\n }\n})), YB = /* @__PURE__ */ o(({ id: e, onClick: t, ...r }) => {\n let { active: n, disabled: a, title: i, href: l } = r, u = qB(\n (c) => t?.(c, { id: e, active: n, disabled: a, title: i, href: l }),\n [t, e, n, a, i, l]\n );\n return /* @__PURE__ */ ni.createElement(j1, { id: `list-item-${e}`, ...r, ...t && { onClick: u } });\n}, \"Item\"), W1 = /* @__PURE__ */ o(({ links: e, LinkWrapper: t, ...r }) => {\n let n = Array.isArray(e[0]) ? e : [e], a = n.some((i) => i.some((l) => \"icon\" in l && l.icon));\n return /* @__PURE__ */ ni.createElement(UB, { ...r }, n.filter((i) => i.length).map((i, l) => /* @__PURE__ */ ni.createElement(GB, { key: i.\n map((u) => u.id).join(`~${l}~`) }, i.map((u) => \"content\" in u ? /* @__PURE__ */ ni.createElement(WB, { key: u.id }, u.content) : /* @__PURE__ */ ni.\n createElement(YB, { key: u.id, isIndented: a, LinkWrapper: t, ...u })))));\n}, \"TooltipLinkList\");\n\n// src/components/components/tabs/tabs.tsx\nimport Ct, { Component as vM, memo as wM, useMemo as bM } from \"react\";\nimport { sanitize as yM } from \"@storybook/core/csf\";\nimport { styled as Q1 } from \"@storybook/core/theming\";\n\n// src/components/components/bar/bar.tsx\nLi();\nimport to, { Children as XB } from \"react\";\nimport { styled as U1 } from \"@storybook/core/theming\";\nvar q1 = U1.div(\n {\n display: \"flex\",\n whiteSpace: \"nowrap\",\n flexBasis: \"auto\",\n marginLeft: 3,\n marginRight: 3\n },\n ({ scrollable: e }) => e ? { flexShrink: 0 } : {},\n ({ left: e }) => e ? {\n \"& > *\": {\n marginLeft: 4\n }\n } : {},\n ({ right: e }) => e ? {\n marginLeft: 30,\n \"& > *\": {\n marginRight: 4\n }\n } : {}\n);\nq1.displayName = \"Side\";\nvar KB = /* @__PURE__ */ o(({ children: e, className: t, scrollable: r }) => r ? /* @__PURE__ */ to.createElement(An, { vertical: !1, className: t },\ne) : /* @__PURE__ */ to.createElement(\"div\", { className: t }, e), \"UnstyledBar\"), G1 = U1(KB)(\n ({ theme: e, scrollable: t = !0 }) => ({\n color: e.barTextColor,\n width: \"100%\",\n height: 40,\n flexShrink: 0,\n overflow: t ? \"auto\" : \"hidden\",\n overflowY: \"hidden\"\n }),\n ({ theme: e, border: t = !1 }) => t ? {\n boxShadow: `${e.appBorderColor} 0 -1px 0 0 inset`,\n background: e.barBg\n } : {}\n);\nG1.displayName = \"Bar\";\nvar ZB = U1.div(({ bgColor: e }) => ({\n display: \"flex\",\n justifyContent: \"space-between\",\n position: \"relative\",\n flexWrap: \"nowrap\",\n flexShrink: 0,\n height: 40,\n backgroundColor: e || \"\"\n})), Zl = /* @__PURE__ */ o(({ children: e, backgroundColor: t, className: r, ...n }) => {\n let [a, i] = XB.toArray(e);\n return /* @__PURE__ */ to.createElement(G1, { className: `sb-bar ${r}`, ...n }, /* @__PURE__ */ to.createElement(ZB, { bgColor: t }, /* @__PURE__ */ to.\n createElement(q1, { scrollable: n.scrollable, left: !0 }, a), i ? /* @__PURE__ */ to.createElement(q1, { right: !0 }, i) : null));\n}, \"FlexBar\");\nZl.displayName = \"FlexBar\";\n\n// src/components/components/bar/button.tsx\nimport Jl, { forwardRef as JB } from \"react\";\nimport { isPropValid as QB, styled as Y1 } from \"@storybook/core/theming\";\nvar eM = /* @__PURE__ */ o((e) => typeof e.props.href == \"string\", \"isLink\"), tM = /* @__PURE__ */ o((e) => typeof e.props.href != \"string\",\n\"isButton\");\nfunction rM({ children: e, ...t }, r) {\n let n = { props: t, ref: r };\n if (eM(n))\n return /* @__PURE__ */ Jl.createElement(\"a\", { ref: n.ref, ...n.props }, e);\n if (tM(n))\n return /* @__PURE__ */ Jl.createElement(\"button\", { ref: n.ref, type: \"button\", ...n.props }, e);\n throw new Error(\"invalid props\");\n}\no(rM, \"ForwardRefFunction\");\nvar R3 = JB(rM);\nR3.displayName = \"ButtonOrLink\";\nvar cn = Y1(R3, { shouldForwardProp: QB })(\n {\n whiteSpace: \"normal\",\n display: \"inline-flex\",\n overflow: \"hidden\",\n verticalAlign: \"top\",\n justifyContent: \"center\",\n alignItems: \"center\",\n textAlign: \"center\",\n textDecoration: \"none\",\n \"&:empty\": {\n display: \"none\"\n },\n \"&[hidden]\": {\n display: \"none\"\n }\n },\n ({ theme: e }) => ({\n padding: \"0 15px\",\n transition: \"color 0.2s linear, border-bottom-color 0.2s linear\",\n height: 40,\n lineHeight: \"12px\",\n cursor: \"pointer\",\n background: \"transparent\",\n border: \"0 solid transparent\",\n borderTop: \"3px solid transparent\",\n borderBottom: \"3px solid transparent\",\n fontWeight: \"bold\",\n fontSize: 13,\n \"&:focus\": {\n outline: \"0 none\",\n borderBottomColor: e.barSelectedColor\n }\n }),\n ({ active: e, textColor: t, theme: r }) => e ? {\n color: t || r.barSelectedColor,\n borderBottomColor: r.barSelectedColor\n } : {\n color: t || r.barTextColor,\n borderBottomColor: \"transparent\",\n \"&:hover\": {\n color: r.barHoverColor\n }\n }\n);\ncn.displayName = \"TabButton\";\nvar nM = Y1.div(({ theme: e }) => ({\n width: 14,\n height: 14,\n backgroundColor: e.appBorderColor,\n animation: `${e.animation.glow} 1.5s ease-in-out infinite`\n})), aM = Y1.div({\n marginTop: 6,\n padding: 7,\n height: 28\n}), oM = /* @__PURE__ */ o(() => /* @__PURE__ */ Jl.createElement(aM, null, /* @__PURE__ */ Jl.createElement(nM, null)), \"IconButtonSkeleton\");\n\n// src/components/components/tabs/EmptyTabContent.tsx\nimport Ql from \"react\";\nimport { styled as es } from \"@storybook/core/theming\";\nvar iM = es.div(({ theme: e }) => ({\n height: \"100%\",\n display: \"flex\",\n padding: 30,\n alignItems: \"center\",\n justifyContent: \"center\",\n flexDirection: \"column\",\n gap: 15,\n background: e.background.content\n})), lM = es.div({\n display: \"flex\",\n flexDirection: \"column\",\n gap: 4,\n maxWidth: 415\n}), sM = es.div(({ theme: e }) => ({\n fontWeight: e.typography.weight.bold,\n fontSize: e.typography.size.s2 - 1,\n textAlign: \"center\",\n color: e.textColor\n})), uM = es.div(({ theme: e }) => ({\n fontWeight: e.typography.weight.regular,\n fontSize: e.typography.size.s2 - 1,\n textAlign: \"center\",\n color: e.textMutedColor\n})), X1 = /* @__PURE__ */ o(({ title: e, description: t, footer: r }) => /* @__PURE__ */ Ql.createElement(iM, null, /* @__PURE__ */ Ql.createElement(\nlM, null, /* @__PURE__ */ Ql.createElement(sM, null, e), t && /* @__PURE__ */ Ql.createElement(uM, null, t)), r), \"EmptyTabContent\");\n\n// src/components/components/tabs/tabs.helpers.tsx\nimport cM, { Children as pM } from \"react\";\nimport { styled as dM } from \"@storybook/core/theming\";\nvar K1 = dM.div(\n ({ active: e }) => e ? { display: \"block\" } : { display: \"none\" }\n), S3 = /* @__PURE__ */ o((e) => pM.toArray(e).map(\n // @ts-expect-error (non strict)\n ({\n props: { title: t, id: r, color: n, children: a }\n }) => {\n let i = Array.isArray(\n a\n ) ? a[0] : a;\n return {\n title: t,\n id: r,\n ...n ? { color: n } : {},\n render: typeof i == \"function\" ? i : ({ active: u }) => /* @__PURE__ */ cM.createElement(K1, { active: u, role: \"tabpanel\" }, i)\n };\n }\n), \"childrenToList\");\n\n// src/components/components/tabs/tabs.hooks.tsx\nimport pn, { useCallback as A3, useLayoutEffect as fM, useRef as ts, useState as Z1 } from \"react\";\nimport { sanitize as hM } from \"@storybook/core/csf\";\nimport { styled as F3 } from \"@storybook/core/theming\";\nKl();\nvar mM = F3.span(({ theme: e, isActive: t }) => ({\n display: \"inline-block\",\n width: 0,\n height: 0,\n marginLeft: 8,\n color: t ? e.color.secondary : e.color.mediumdark,\n borderRight: \"3px solid transparent\",\n borderLeft: \"3px solid transparent\",\n borderTop: \"3px solid\",\n transition: \"transform .1s ease-out\"\n})), gM = F3(cn)(({ active: e, theme: t, preActive: r }) => `\n color: ${r || e ? t.barSelectedColor : t.barTextColor};\n .addon-collapsible-icon {\n color: ${r || e ? t.barSelectedColor : t.barTextColor};\n }\n &:hover {\n color: ${t.barHoverColor};\n .addon-collapsible-icon {\n color: ${t.barHoverColor};\n }\n }\n `);\nfunction k3(e) {\n let t = ts(), r = ts(), n = ts(/* @__PURE__ */ new Map()), { width: a = 1 } = Ml({\n // @ts-expect-error (non strict)\n ref: t\n }), [i, l] = Z1(e), [u, c] = Z1([]), p = ts(e), d = A3(\n ({\n menuName: f,\n actions: g\n }) => {\n let w = u.some(({ active: y }) => y), [m, v] = Z1(!1);\n return /* @__PURE__ */ pn.createElement(pn.Fragment, null, /* @__PURE__ */ pn.createElement(\n $1,\n {\n interactive: !0,\n visible: m,\n onVisibleChange: v,\n placement: \"bottom\",\n delayHide: 100,\n tooltip: /* @__PURE__ */ pn.createElement(\n W1,\n {\n links: u.map(({ title: y, id: b, color: D, active: x }) => ({\n id: b,\n title: y,\n color: D,\n active: x,\n onClick: /* @__PURE__ */ o((C) => {\n C.preventDefault(), g.onSelect(b);\n }, \"onClick\")\n }))\n }\n )\n },\n /* @__PURE__ */ pn.createElement(\n gM,\n {\n ref: r,\n active: w,\n preActive: m,\n style: { visibility: u.length ? \"visible\" : \"hidden\" },\n \"aria-hidden\": !u.length,\n className: \"tabbutton\",\n type: \"button\",\n role: \"tab\"\n },\n f,\n /* @__PURE__ */ pn.createElement(\n mM,\n {\n className: \"addon-collapsible-icon\",\n isActive: w || m\n }\n )\n )\n ), u.map(({ title: y, id: b, color: D }, x) => {\n let C = `index-${x}`;\n return /* @__PURE__ */ pn.createElement(\n cn,\n {\n id: `tabbutton-${hM(b) ?? C}`,\n style: { visibility: \"hidden\" },\n \"aria-hidden\": !0,\n tabIndex: -1,\n ref: (E) => {\n n.current.set(b, E);\n },\n className: \"tabbutton\",\n type: \"button\",\n key: b,\n textColor: D,\n role: \"tab\"\n },\n y\n );\n }));\n },\n [u]\n ), h = A3(() => {\n if (!t.current || !r.current)\n return;\n let { x: f, width: g } = t.current.getBoundingClientRect(), { width: w } = r.current.getBoundingClientRect(), m = u.length ? f + g - w :\n f + g, v = [], y = 0, b = e.filter((D) => {\n let { id: x } = D, C = n.current.get(x), { width: E = 0 } = C?.getBoundingClientRect() || {}, R = f + y + E > m;\n return (!R || !C) && v.push(D), y += E, R;\n });\n (v.length !== i.length || p.current !== e) && (l(v), c(b), p.current = e);\n }, [u.length, e, i]);\n return fM(h, [h, a]), {\n tabRefs: n,\n addonsRef: r,\n tabBarRef: t,\n visibleList: i,\n invisibleList: u,\n AddonTab: d\n };\n}\no(k3, \"useList\");\n\n// src/components/components/tabs/tabs.tsx\nvar DM = \"/* emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason */\", xM = Q1.div(\n ({ theme: e, bordered: t }) => t ? {\n backgroundClip: \"padding-box\",\n border: `1px solid ${e.appBorderColor}`,\n borderRadius: e.appBorderRadius,\n overflow: \"hidden\",\n boxSizing: \"border-box\"\n } : {},\n ({ absolute: e }) => e ? {\n width: \"100%\",\n height: \"100%\",\n boxSizing: \"border-box\",\n display: \"flex\",\n flexDirection: \"column\"\n } : {\n display: \"block\"\n }\n), ep = Q1.div({\n overflow: \"hidden\",\n \"&:first-of-type\": {\n marginLeft: -3\n },\n whiteSpace: \"nowrap\",\n flexGrow: 1\n});\nep.displayName = \"TabBar\";\nvar CM = Q1.div(\n {\n display: \"block\",\n position: \"relative\"\n },\n ({ theme: e }) => ({\n fontSize: e.typography.size.s2 - 1,\n background: e.background.content\n }),\n ({ bordered: e, theme: t }) => e ? {\n borderRadius: `0 0 ${t.appBorderRadius - 1}px ${t.appBorderRadius - 1}px`\n } : {},\n ({ absolute: e, bordered: t }) => e ? {\n height: `calc(100% - ${t ? 42 : 40}px)`,\n position: \"absolute\",\n left: 0 + (t ? 1 : 0),\n right: 0 + (t ? 1 : 0),\n bottom: 0 + (t ? 1 : 0),\n top: 40 + (t ? 1 : 0),\n overflow: \"auto\",\n [`& > *:first-child${DM}`]: {\n position: \"absolute\",\n left: 0 + (t ? 1 : 0),\n right: 0 + (t ? 1 : 0),\n bottom: 0 + (t ? 1 : 0),\n top: 0 + (t ? 1 : 0),\n height: `calc(100% - ${t ? 2 : 0}px)`,\n overflow: \"auto\"\n }\n } : {}\n), EM = /* @__PURE__ */ o(({ active: e, render: t, children: r }) => /* @__PURE__ */ Ct.createElement(K1, { active: e }, t ? t() : r), \"TabW\\\nrapper\");\nvar tp = wM(\n ({\n children: e,\n selected: t = null,\n actions: r,\n absolute: n = !1,\n bordered: a = !1,\n tools: i = null,\n backgroundColor: l,\n id: u = null,\n menuName: c = \"Tabs\",\n emptyState: p,\n showToolsWhenEmpty: d\n }) => {\n let h = bM(\n () => S3(e).map((y, b) => ({\n ...y,\n active: t ? y.id === t : b === 0\n })),\n [e, t]\n ), { visibleList: f, tabBarRef: g, tabRefs: w, AddonTab: m } = k3(h), v = p ?? /* @__PURE__ */ Ct.createElement(X1, { title: \"Nothing fo\\\nund\" });\n return !d && h.length === 0 ? v : (\n // @ts-expect-error (non strict)\n /* @__PURE__ */ Ct.createElement(xM, { absolute: n, bordered: a, id: u }, /* @__PURE__ */ Ct.createElement(Zl, { scrollable: !1, border: !0,\n backgroundColor: l }, /* @__PURE__ */ Ct.createElement(ep, { style: { whiteSpace: \"normal\" }, ref: g, role: \"tablist\" }, f.map(({ title: y,\n id: b, active: D, color: x }, C) => {\n let E = `index-${C}`;\n return /* @__PURE__ */ Ct.createElement(\n cn,\n {\n id: `tabbutton-${yM(b) ?? E}`,\n ref: (R) => {\n w.current.set(b, R);\n },\n className: `tabbutton ${D ? \"tabbutton-active\" : \"\"}`,\n type: \"button\",\n key: b,\n active: D,\n textColor: x,\n onClick: (R) => {\n R.preventDefault(), r.onSelect(b);\n },\n role: \"tab\"\n },\n typeof y == \"function\" ? /* @__PURE__ */ Ct.createElement(\"title\", null) : y\n );\n }), /* @__PURE__ */ Ct.createElement(m, { menuName: c, actions: r })), i), /* @__PURE__ */ Ct.createElement(CM, { id: \"panel-tab-conte\\\nnt\", bordered: a, absolute: n }, h.length ? h.map(({ id: y, active: b, render: D }) => Ct.createElement(D, { key: y, active: b }, null)) : v))\n );\n }\n);\ntp.displayName = \"Tabs\";\nvar rs = class rs extends vM {\n constructor(r) {\n super(r);\n this.handlers = {\n onSelect: /* @__PURE__ */ o((r) => this.setState({ selected: r }), \"onSelect\")\n };\n this.state = {\n selected: r.initial\n };\n }\n render() {\n let { bordered: r = !1, absolute: n = !1, children: a, backgroundColor: i, menuName: l } = this.props, { selected: u } = this.state;\n return /* @__PURE__ */ Ct.createElement(\n tp,\n {\n bordered: r,\n absolute: n,\n selected: u,\n backgroundColor: i,\n menuName: l,\n actions: this.handlers\n },\n a\n );\n }\n};\no(rs, \"TabsState\"), rs.defaultProps = {\n children: [],\n // @ts-expect-error (non strict)\n initial: null,\n absolute: !1,\n bordered: !1,\n backgroundColor: \"\",\n // @ts-expect-error (non strict)\n menuName: void 0\n};\nvar J1 = rs;\n\n// src/components/components/bar/separator.tsx\nimport L3, { Fragment as RM } from \"react\";\nimport { styled as SM } from \"@storybook/core/theming\";\nvar rp = SM.span(\n ({ theme: e }) => ({\n width: 1,\n height: 20,\n background: e.appBorderColor,\n marginLeft: 2,\n marginRight: 2\n }),\n ({ force: e }) => e ? {} : {\n \"& + &\": {\n display: \"none\"\n }\n }\n);\nrp.displayName = \"Separator\";\nvar AM = /* @__PURE__ */ o((e) => e.reduce(\n (t, r, n) => r ? /* @__PURE__ */ L3.createElement(RM, { key: r.id || r.key || `f-${n}` }, t, n > 0 ? /* @__PURE__ */ L3.createElement(rp, {\n key: `s-${n}` }) : null, r.render() || r) : t,\n null\n), \"interleaveSeparators\");\n\n// src/components/components/addon-panel/addon-panel.tsx\nimport FM, { useEffect as kM, useRef as LM } from \"react\";\nvar TM = /* @__PURE__ */ o((e) => {\n let t = LM();\n return kM(() => {\n t.current = e;\n }, [e]), t.current;\n}, \"usePrevious\"), IM = /* @__PURE__ */ o((e, t) => {\n let r = TM(t);\n return e ? t : r;\n}, \"useUpdate\"), BM = /* @__PURE__ */ o(({ active: e, children: t }) => (\n // the hidden attribute is an valid html element that's both accessible and works to visually hide content\n /* @__PURE__ */ FM.createElement(\"div\", { hidden: !e }, IM(e, t))\n), \"AddonPanel\");\n\n// src/components/components/icon/icon.tsx\nimport np, { memo as MM } from \"react\";\nimport { styled as _M } from \"@storybook/core/theming\";\nimport { deprecate as PM, logger as HM } from \"@storybook/core/client-logger\";\nvar zM = Ou, OM = _M.svg`\n display: inline-block;\n shape-rendering: inherit;\n vertical-align: middle;\n fill: currentColor;\n path {\n fill: currentColor;\n }\n`, NM = /* @__PURE__ */ o(({\n icon: e,\n useSymbol: t,\n __suppressDeprecationWarning: r = !1,\n ...n\n}) => {\n r || PM(\n `Use of the deprecated Icons ${`(${e})` || \"\"} component detected. Please use the @storybook/icons component directly. For more informat\\\nions, see the migration notes at https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#icons-is-deprecated`\n );\n let a = ns[e] || null;\n if (!a)\n return HM.warn(\n `Use of an unknown prop ${`(${e})` || \"\"} in the Icons component. The Icons component is deprecated. Please use the @storybook/icons c\\\nomponent directly. For more informations, see the migration notes at https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#icons-i\\\ns-deprecated`\n ), null;\n let i = zM[a];\n return /* @__PURE__ */ np.createElement(i, { ...n });\n}, \"Icons\"), $M = MM(/* @__PURE__ */ o(function({ icons: t = Object.keys(ns) }) {\n return /* @__PURE__ */ np.createElement(\n OM,\n {\n viewBox: \"0 0 14 14\",\n style: { position: \"absolute\", width: 0, height: 0 },\n \"data-chromatic\": \"ignore\"\n },\n t.map((r) => /* @__PURE__ */ np.createElement(\"symbol\", { id: `icon--${r}`, key: r }, ns[r]))\n );\n}, \"Symbols\")), ns = {\n user: \"UserIcon\",\n useralt: \"UserAltIcon\",\n useradd: \"UserAddIcon\",\n users: \"UsersIcon\",\n profile: \"ProfileIcon\",\n facehappy: \"FaceHappyIcon\",\n faceneutral: \"FaceNeutralIcon\",\n facesad: \"FaceSadIcon\",\n accessibility: \"AccessibilityIcon\",\n accessibilityalt: \"AccessibilityAltIcon\",\n arrowup: \"ChevronUpIcon\",\n arrowdown: \"ChevronDownIcon\",\n arrowleft: \"ChevronLeftIcon\",\n arrowright: \"ChevronRightIcon\",\n arrowupalt: \"ArrowUpIcon\",\n arrowdownalt: \"ArrowDownIcon\",\n arrowleftalt: \"ArrowLeftIcon\",\n arrowrightalt: \"ArrowRightIcon\",\n expandalt: \"ExpandAltIcon\",\n collapse: \"CollapseIcon\",\n expand: \"ExpandIcon\",\n unfold: \"UnfoldIcon\",\n transfer: \"TransferIcon\",\n redirect: \"RedirectIcon\",\n undo: \"UndoIcon\",\n reply: \"ReplyIcon\",\n sync: \"SyncIcon\",\n upload: \"UploadIcon\",\n download: \"DownloadIcon\",\n back: \"BackIcon\",\n proceed: \"ProceedIcon\",\n refresh: \"RefreshIcon\",\n globe: \"GlobeIcon\",\n compass: \"CompassIcon\",\n location: \"LocationIcon\",\n pin: \"PinIcon\",\n time: \"TimeIcon\",\n dashboard: \"DashboardIcon\",\n timer: \"TimerIcon\",\n home: \"HomeIcon\",\n admin: \"AdminIcon\",\n info: \"InfoIcon\",\n question: \"QuestionIcon\",\n support: \"SupportIcon\",\n alert: \"AlertIcon\",\n email: \"EmailIcon\",\n phone: \"PhoneIcon\",\n link: \"LinkIcon\",\n unlink: \"LinkBrokenIcon\",\n bell: \"BellIcon\",\n rss: \"RSSIcon\",\n sharealt: \"ShareAltIcon\",\n share: \"ShareIcon\",\n circle: \"CircleIcon\",\n circlehollow: \"CircleHollowIcon\",\n bookmarkhollow: \"BookmarkHollowIcon\",\n bookmark: \"BookmarkIcon\",\n hearthollow: \"HeartHollowIcon\",\n heart: \"HeartIcon\",\n starhollow: \"StarHollowIcon\",\n star: \"StarIcon\",\n certificate: \"CertificateIcon\",\n verified: \"VerifiedIcon\",\n thumbsup: \"ThumbsUpIcon\",\n shield: \"ShieldIcon\",\n basket: \"BasketIcon\",\n beaker: \"BeakerIcon\",\n hourglass: \"HourglassIcon\",\n flag: \"FlagIcon\",\n cloudhollow: \"CloudHollowIcon\",\n edit: \"EditIcon\",\n cog: \"CogIcon\",\n nut: \"NutIcon\",\n wrench: \"WrenchIcon\",\n ellipsis: \"EllipsisIcon\",\n check: \"CheckIcon\",\n form: \"FormIcon\",\n batchdeny: \"BatchDenyIcon\",\n batchaccept: \"BatchAcceptIcon\",\n controls: \"ControlsIcon\",\n plus: \"PlusIcon\",\n closeAlt: \"CloseAltIcon\",\n cross: \"CrossIcon\",\n trash: \"TrashIcon\",\n pinalt: \"PinAltIcon\",\n unpin: \"UnpinIcon\",\n add: \"AddIcon\",\n subtract: \"SubtractIcon\",\n close: \"CloseIcon\",\n delete: \"DeleteIcon\",\n passed: \"PassedIcon\",\n changed: \"ChangedIcon\",\n failed: \"FailedIcon\",\n clear: \"ClearIcon\",\n comment: \"CommentIcon\",\n commentadd: \"CommentAddIcon\",\n requestchange: \"RequestChangeIcon\",\n comments: \"CommentsIcon\",\n lock: \"LockIcon\",\n unlock: \"UnlockIcon\",\n key: \"KeyIcon\",\n outbox: \"OutboxIcon\",\n credit: \"CreditIcon\",\n button: \"ButtonIcon\",\n type: \"TypeIcon\",\n pointerdefault: \"PointerDefaultIcon\",\n pointerhand: \"PointerHandIcon\",\n browser: \"BrowserIcon\",\n tablet: \"TabletIcon\",\n mobile: \"MobileIcon\",\n watch: \"WatchIcon\",\n sidebar: \"SidebarIcon\",\n sidebaralt: \"SidebarAltIcon\",\n sidebaralttoggle: \"SidebarAltToggleIcon\",\n sidebartoggle: \"SidebarToggleIcon\",\n bottombar: \"BottomBarIcon\",\n bottombartoggle: \"BottomBarToggleIcon\",\n cpu: \"CPUIcon\",\n database: \"DatabaseIcon\",\n memory: \"MemoryIcon\",\n structure: \"StructureIcon\",\n box: \"BoxIcon\",\n power: \"PowerIcon\",\n photo: \"PhotoIcon\",\n component: \"ComponentIcon\",\n grid: \"GridIcon\",\n outline: \"OutlineIcon\",\n photodrag: \"PhotoDragIcon\",\n search: \"SearchIcon\",\n zoom: \"ZoomIcon\",\n zoomout: \"ZoomOutIcon\",\n zoomreset: \"ZoomResetIcon\",\n eye: \"EyeIcon\",\n eyeclose: \"EyeCloseIcon\",\n lightning: \"LightningIcon\",\n lightningoff: \"LightningOffIcon\",\n contrast: \"ContrastIcon\",\n switchalt: \"SwitchAltIcon\",\n mirror: \"MirrorIcon\",\n grow: \"GrowIcon\",\n paintbrush: \"PaintBrushIcon\",\n ruler: \"RulerIcon\",\n stop: \"StopIcon\",\n camera: \"CameraIcon\",\n video: \"VideoIcon\",\n speaker: \"SpeakerIcon\",\n play: \"PlayIcon\",\n playback: \"PlayBackIcon\",\n playnext: \"PlayNextIcon\",\n rewind: \"RewindIcon\",\n fastforward: \"FastForwardIcon\",\n stopalt: \"StopAltIcon\",\n sidebyside: \"SideBySideIcon\",\n stacked: \"StackedIcon\",\n sun: \"SunIcon\",\n moon: \"MoonIcon\",\n book: \"BookIcon\",\n document: \"DocumentIcon\",\n copy: \"CopyIcon\",\n category: \"CategoryIcon\",\n folder: \"FolderIcon\",\n print: \"PrintIcon\",\n graphline: \"GraphLineIcon\",\n calendar: \"CalendarIcon\",\n graphbar: \"GraphBarIcon\",\n menu: \"MenuIcon\",\n menualt: \"MenuIcon\",\n filter: \"FilterIcon\",\n docchart: \"DocChartIcon\",\n doclist: \"DocListIcon\",\n markup: \"MarkupIcon\",\n bold: \"BoldIcon\",\n paperclip: \"PaperClipIcon\",\n listordered: \"ListOrderedIcon\",\n listunordered: \"ListUnorderedIcon\",\n paragraph: \"ParagraphIcon\",\n markdown: \"MarkdownIcon\",\n repository: \"RepoIcon\",\n commit: \"CommitIcon\",\n branch: \"BranchIcon\",\n pullrequest: \"PullRequestIcon\",\n merge: \"MergeIcon\",\n apple: \"AppleIcon\",\n linux: \"LinuxIcon\",\n ubuntu: \"UbuntuIcon\",\n windows: \"WindowsIcon\",\n storybook: \"StorybookIcon\",\n azuredevops: \"AzureDevOpsIcon\",\n bitbucket: \"BitbucketIcon\",\n chrome: \"ChromeIcon\",\n chromatic: \"ChromaticIcon\",\n componentdriven: \"ComponentDrivenIcon\",\n discord: \"DiscordIcon\",\n facebook: \"FacebookIcon\",\n figma: \"FigmaIcon\",\n gdrive: \"GDriveIcon\",\n github: \"GithubIcon\",\n gitlab: \"GitlabIcon\",\n google: \"GoogleIcon\",\n graphql: \"GraphqlIcon\",\n medium: \"MediumIcon\",\n redux: \"ReduxIcon\",\n twitter: \"TwitterIcon\",\n youtube: \"YoutubeIcon\",\n vscode: \"VSCodeIcon\"\n};\n\n// src/components/brand/StorybookLogo.tsx\nimport _t from \"react\";\nvar VM = /* @__PURE__ */ o(({ alt: e, ...t }) => /* @__PURE__ */ _t.createElement(\"svg\", { width: \"200px\", height: \"40px\", viewBox: \"0 0 200\\\n 40\", ...t, role: \"img\" }, e ? /* @__PURE__ */ _t.createElement(\"title\", null, e) : null, /* @__PURE__ */ _t.createElement(\"defs\", null, /* @__PURE__ */ _t.\ncreateElement(\n \"path\",\n {\n d: \"M1.2 36.9L0 3.9c0-1.1.8-2 1.9-2.1l28-1.8a2 2 0 0 1 2.2 1.9 2 2 0 0 1 0 .1v36a2 2 0 0 1-2 2 2 2 0 0 1-.1 0L3.2 38.8a2 2 0 0 1-2-2z\",\n id: \"a\"\n }\n)), /* @__PURE__ */ _t.createElement(\"g\", { fill: \"none\", fillRule: \"evenodd\" }, /* @__PURE__ */ _t.createElement(\n \"path\",\n {\n d: \"M53.3 31.7c-1.7 0-3.4-.3-5-.7-1.5-.5-2.8-1.1-3.9-2l1.6-3.5c2.2 1.5 4.6 2.3 7.3 2.3 1.5 0 2.5-.2 3.3-.7.7-.5 1.1-1 1.1-1.9 0-.7-.3-1.\\\n3-1-1.7s-2-.8-3.7-1.2c-2-.4-3.6-.9-4.8-1.5-1.1-.5-2-1.2-2.6-2-.5-1-.8-2-.8-3.2 0-1.4.4-2.6 1.2-3.6.7-1.1 1.8-2 3.2-2.6 1.3-.6 2.9-.9 4.7-.9 \\\n1.6 0 3.1.3 4.6.7 1.5.5 2.7 1.1 3.5 2l-1.6 3.5c-2-1.5-4.2-2.3-6.5-2.3-1.3 0-2.3.2-3 .8-.8.5-1.2 1.1-1.2 2 0 .5.2 1 .5 1.3.2.3.7.6 1.4.9l2.9.\\\n8c2.9.6 5 1.4 6.2 2.4a5 5 0 0 1 2 4.2 6 6 0 0 1-2.5 5c-1.7 1.2-4 1.9-7 1.9zm21-3.6l1.4-.1-.2 3.5-1.9.1c-2.4 0-4.1-.5-5.2-1.5-1.1-1-1.6-2.7-1\\\n.6-4.8v-6h-3v-3.6h3V11h4.8v4.6h4v3.6h-4v6c0 1.8.9 2.8 2.6 2.8zm11.1 3.5c-1.6 0-3-.3-4.3-1a7 7 0 0 1-3-2.8c-.6-1.3-1-2.7-1-4.4 0-1.6.4-3 1-4.\\\n3a7 7 0 0 1 3-2.8c1.2-.7 2.7-1 4.3-1 1.7 0 3.2.3 4.4 1a7 7 0 0 1 3 2.8c.6 1.2 1 2.7 1 4.3 0 1.7-.4 3.1-1 4.4a7 7 0 0 1-3 2.8c-1.2.7-2.7 1-4.\\\n4 1zm0-3.6c2.4 0 3.6-1.6 3.6-4.6 0-1.5-.3-2.6-1-3.4a3.2 3.2 0 0 0-2.6-1c-2.3 0-3.5 1.4-3.5 4.4 0 3 1.2 4.6 3.5 4.6zm21.7-8.8l-2.7.3c-1.3.2-2\\\n.3.5-2.8 1.2-.6.6-.9 1.4-.9 2.5v8.2H96V15.7h4.6v2.6c.8-1.8 2.5-2.8 5-3h1.3l.3 4zm14-3.5h4.8L116.4 37h-4.9l3-6.6-6.4-14.8h5l4 10 4-10zm16-.4c\\\n1.4 0 2.6.3 3.6 1 1 .6 1.9 1.6 2.5 2.8.6 1.2.9 2.7.9 4.3 0 1.6-.3 3-1 4.3a6.9 6.9 0 0 1-2.4 2.9c-1 .7-2.2 1-3.6 1-1 0-2-.2-3-.7-.8-.4-1.5-1-\\\n2-1.9v2.4h-4.7V8.8h4.8v9c.5-.8 1.2-1.4 2-1.9.9-.4 1.8-.6 3-.6zM135.7 28c1.1 0 2-.4 2.6-1.2.6-.8 1-2 1-3.4 0-1.5-.4-2.5-1-3.3s-1.5-1.1-2.6-1.\\\n1-2 .3-2.6 1.1c-.6.8-1 2-1 3.3 0 1.5.4 2.6 1 3.4.6.8 1.5 1.2 2.6 1.2zm18.9 3.6c-1.7 0-3.2-.3-4.4-1a7 7 0 0 1-3-2.8c-.6-1.3-1-2.7-1-4.4 0-1.6\\\n.4-3 1-4.3a7 7 0 0 1 3-2.8c1.2-.7 2.7-1 4.4-1 1.6 0 3 .3 4.3 1a7 7 0 0 1 3 2.8c.6 1.2 1 2.7 1 4.3 0 1.7-.4 3.1-1 4.4a7 7 0 0 1-3 2.8c-1.2.7-\\\n2.7 1-4.3 1zm0-3.6c2.3 0 3.5-1.6 3.5-4.6 0-1.5-.3-2.6-1-3.4a3.2 3.2 0 0 0-2.5-1c-2.4 0-3.6 1.4-3.6 4.4 0 3 1.2 4.6 3.6 4.6zm18 3.6c-1.7 0-3.\\\n2-.3-4.4-1a7 7 0 0 1-3-2.8c-.6-1.3-1-2.7-1-4.4 0-1.6.4-3 1-4.3a7 7 0 0 1 3-2.8c1.2-.7 2.7-1 4.4-1 1.6 0 3 .3 4.4 1a7 7 0 0 1 2.9 2.8c.6 1.2 \\\n1 2.7 1 4.3 0 1.7-.4 3.1-1 4.4a7 7 0 0 1-3 2.8c-1.2.7-2.7 1-4.3 1zm0-3.6c2.3 0 3.5-1.6 3.5-4.6 0-1.5-.3-2.6-1-3.4a3.2 3.2 0 0 0-2.5-1c-2.4 0\\\n-3.6 1.4-3.6 4.4 0 3 1.2 4.6 3.6 4.6zm27.4 3.4h-6l-6-7v7h-4.8V8.8h4.9v13.6l5.8-6.7h5.7l-6.6 7.5 7 8.2z\",\n fill: \"currentColor\"\n }\n), /* @__PURE__ */ _t.createElement(\"mask\", { id: \"b\", fill: \"#fff\" }, /* @__PURE__ */ _t.createElement(\"use\", { xlinkHref: \"#a\" })), /* @__PURE__ */ _t.\ncreateElement(\"use\", { fill: \"#FF4785\", fillRule: \"nonzero\", xlinkHref: \"#a\" }), /* @__PURE__ */ _t.createElement(\n \"path\",\n {\n d: \"M23.7 5L24 .2l3.9-.3.1 4.8a.3.3 0 0 1-.5.2L26 3.8l-1.7 1.4a.3.3 0 0 1-.5-.3zm-5 10c0 .9 5.3.5 6 0 0-5.4-2.8-8.2-8-8.2-5.3 0-8.2 2.8-\\\n8.2 7.1 0 7.4 10 7.6 10 11.6 0 1.2-.5 1.9-1.8 1.9-1.6 0-2.2-.9-2.1-3.6 0-.6-6.1-.8-6.3 0-.5 6.7 3.7 8.6 8.5 8.6 4.6 0 8.3-2.5 8.3-7 0-7.9-10\\\n.2-7.7-10.2-11.6 0-1.6 1.2-1.8 2-1.8.6 0 2 0 1.9 3z\",\n fill: \"#FFF\",\n fillRule: \"nonzero\",\n mask: \"url(#b)\"\n }\n))), \"StorybookLogo\");\n\n// src/components/brand/StorybookIcon.tsx\nimport ro from \"react\";\nvar jM = /* @__PURE__ */ o((e) => /* @__PURE__ */ ro.createElement(\"svg\", { viewBox: \"0 0 64 64\", ...e }, /* @__PURE__ */ ro.createElement(\"\\\ntitle\", null, \"Storybook icon\"), /* @__PURE__ */ ro.createElement(\"g\", { id: \"Artboard\", stroke: \"none\", strokeWidth: \"1\", fill: \"none\", fillRule: \"\\\nevenodd\" }, /* @__PURE__ */ ro.createElement(\n \"path\",\n {\n d: \"M8.04798541,58.7875918 L6.07908839,6.32540407 C6.01406344,4.5927838 7.34257463,3.12440831 9.07303814,3.01625434 L53.6958037,0.227331\\\n489 C55.457209,0.117243658 56.974354,1.45590096 57.0844418,3.21730626 C57.0885895,3.28366922 57.0906648,3.35014546 57.0906648,3.41663791 L57\\\n.0906648,60.5834697 C57.0906648,62.3483119 55.6599776,63.7789992 53.8951354,63.7789992 C53.847325,63.7789992 53.7995207,63.7779262 53.751758\\\n5,63.775781 L11.0978899,61.8600599 C9.43669044,61.7854501 8.11034889,60.4492961 8.04798541,58.7875918 Z\",\n id: \"path-1\",\n fill: \"#FF4785\",\n fillRule: \"nonzero\"\n }\n), /* @__PURE__ */ ro.createElement(\n \"path\",\n {\n d: \"M35.9095005,24.1768792 C35.9095005,25.420127 44.2838488,24.8242707 45.4080313,23.9509748 C45.4080313,15.4847538 40.8652557,11.035887\\\n8 32.5466666,11.0358878 C24.2280775,11.0358878 19.5673077,15.553972 19.5673077,22.3311017 C19.5673077,34.1346028 35.4965208,34.3605071 35.49\\\n65208,40.7987804 C35.4965208,42.606015 34.6115646,43.6790606 32.6646607,43.6790606 C30.127786,43.6790606 29.1248356,42.3834613 29.2428298,37\\\n.9783269 C29.2428298,37.0226907 19.5673077,36.7247626 19.2723223,37.9783269 C18.5211693,48.6535354 25.1720308,51.7326752 32.7826549,51.73267\\\n52 C40.1572906,51.7326752 45.939005,47.8018145 45.939005,40.6858282 C45.939005,28.035186 29.7738035,28.3740425 29.7738035,22.1051974 C29.773\\\n8035,19.5637737 31.6617103,19.2249173 32.7826549,19.2249173 C33.9625966,19.2249173 36.0864917,19.4328883 35.9095005,24.1768792 Z\",\n id: \"path9_fill-path\",\n fill: \"#FFFFFF\",\n fillRule: \"nonzero\"\n }\n), /* @__PURE__ */ ro.createElement(\n \"path\",\n {\n d: \"M44.0461638,0.830433986 L50.1874092,0.446606143 L50.443532,7.7810017 C50.4527198,8.04410717 50.2468789,8.26484453 49.9837734,8.27403\\\n237 C49.871115,8.27796649 49.7607078,8.24184808 49.6721567,8.17209069 L47.3089847,6.3104681 L44.5110468,8.43287463 C44.3012992,8.591981 44.0\\\n022839,8.55092814 43.8431776,8.34118051 C43.7762017,8.25288717 43.742082,8.14401677 43.7466857,8.03329059 L44.0461638,0.830433986 Z\",\n id: \"Path\",\n fill: \"#FFFFFF\"\n }\n))), \"StorybookIcon\");\n\n// src/components/components/Loader/Loader.tsx\nimport Qt from \"react\";\nimport { keyframes as qM, styled as dn } from \"@storybook/core/theming\";\n\n// src/components/components/shared/animation.ts\nimport { keyframes as WM } from \"@storybook/core/theming\";\nvar T3 = WM`\n\tfrom {\n\t\ttransform: rotate(0deg);\n\t}\n\tto {\n\t\ttransform: rotate(360deg);\n\t}\n`;\n\n// src/components/components/Loader/Loader.tsx\nvar UM = dn.div(({ size: e = 32 }) => ({\n borderRadius: \"50%\",\n cursor: \"progress\",\n display: \"inline-block\",\n overflow: \"hidden\",\n position: \"absolute\",\n transition: \"all 200ms ease-out\",\n verticalAlign: \"top\",\n top: \"50%\",\n left: \"50%\",\n marginTop: -(e / 2),\n marginLeft: -(e / 2),\n height: e,\n width: e,\n zIndex: 4,\n borderWidth: 2,\n borderStyle: \"solid\",\n borderColor: \"rgba(97, 97, 97, 0.29)\",\n borderTopColor: \"rgb(100,100,100)\",\n animation: `${T3} 0.7s linear infinite`,\n mixBlendMode: \"difference\"\n})), I3 = dn.div({\n position: \"absolute\",\n display: \"flex\",\n flexDirection: \"column\",\n justifyContent: \"center\",\n alignItems: \"center\",\n width: \"100%\",\n height: \"100%\"\n}), GM = dn.div(({ theme: e }) => ({\n position: \"relative\",\n width: \"80%\",\n marginBottom: \"0.75rem\",\n maxWidth: 300,\n height: 5,\n borderRadius: 5,\n background: Be(0.8, e.color.secondary),\n overflow: \"hidden\",\n cursor: \"progress\"\n})), YM = dn.div(({ theme: e }) => ({\n position: \"absolute\",\n top: 0,\n left: 0,\n height: \"100%\",\n background: e.color.secondary\n})), B3 = dn.div(({ theme: e }) => ({\n minHeight: \"2em\",\n fontSize: `${e.typography.size.s1}px`,\n color: e.textMutedColor\n})), XM = dn(Pu)(({ theme: e }) => ({\n width: 20,\n height: 20,\n marginBottom: \"0.5rem\",\n color: e.textMutedColor\n})), KM = qM`\n from { content: \"...\" }\n 33% { content: \".\" }\n 66% { content: \"..\" }\n to { content: \"...\" }\n`, ZM = dn.span({\n \"&::after\": {\n content: \"'...'\",\n animation: `${KM} 1s linear infinite`,\n animationDelay: \"1s\",\n display: \"inline-block\",\n width: \"1em\",\n height: \"auto\"\n }\n}), JM = /* @__PURE__ */ o(({ progress: e, error: t, size: r, ...n }) => {\n if (t)\n return /* @__PURE__ */ Qt.createElement(I3, { \"aria-label\": t.toString(), \"aria-live\": \"polite\", role: \"status\", ...n }, /* @__PURE__ */ Qt.\n createElement(XM, null), /* @__PURE__ */ Qt.createElement(B3, null, t.message));\n if (e) {\n let { value: a, modules: i } = e, { message: l } = e;\n return i && (l += ` ${i.complete} / ${i.total} modules`), /* @__PURE__ */ Qt.createElement(\n I3,\n {\n \"aria-label\": \"Content is loading...\",\n \"aria-live\": \"polite\",\n \"aria-valuemin\": 0,\n \"aria-valuemax\": 100,\n \"aria-valuenow\": a * 100,\n \"aria-valuetext\": l,\n role: \"progressbar\",\n ...n\n },\n /* @__PURE__ */ Qt.createElement(GM, null, /* @__PURE__ */ Qt.createElement(YM, { style: { width: `${a * 100}%` } })),\n /* @__PURE__ */ Qt.createElement(B3, null, l, a < 1 && /* @__PURE__ */ Qt.createElement(ZM, { key: l }))\n );\n }\n return /* @__PURE__ */ Qt.createElement(\n UM,\n {\n \"aria-label\": \"Content is loading...\",\n \"aria-live\": \"polite\",\n role: \"status\",\n size: r,\n ...n\n }\n );\n}, \"Loader\");\n\n// src/components/components/ProgressSpinner/ProgressSpinner.tsx\nimport xr from \"react\";\nimport { keyframes as QM, styled as _3 } from \"@storybook/core/theming\";\nvar ap = \"http://www.w3.org/2000/svg\", e_ = QM({\n \"0%\": {\n transform: \"rotate(0deg)\"\n },\n \"100%\": {\n transform: \"rotate(360deg)\"\n }\n}), M3 = _3.div(({ size: e }) => ({\n display: \"inline-flex\",\n alignItems: \"center\",\n justifyContent: \"center\",\n position: \"relative\",\n minWidth: e,\n minHeight: e\n})), op = _3.svg(\n ({ size: e, width: t }) => ({\n position: \"absolute\",\n width: `${e}px!important`,\n height: `${e}px!important`,\n transform: \"rotate(-90deg)\",\n circle: {\n r: (e - Math.ceil(t)) / 2,\n cx: e / 2,\n cy: e / 2,\n opacity: 0.15,\n fill: \"transparent\",\n stroke: \"currentColor\",\n strokeWidth: t,\n strokeLinecap: \"round\",\n strokeDasharray: Math.PI * (e - Math.ceil(t))\n }\n }),\n ({ progress: e }) => e && {\n circle: {\n opacity: 0.75\n }\n },\n ({ spinner: e }) => e && {\n animation: `${e_} 1s linear infinite`,\n circle: {\n opacity: 0.25\n }\n }\n), t_ = /* @__PURE__ */ o(({\n percentage: e = void 0,\n running: t = !0,\n size: r = 24,\n width: n = 1.5,\n children: a = null,\n ...i\n}) => typeof e == \"number\" ? /* @__PURE__ */ xr.createElement(M3, { size: r, ...i }, a, /* @__PURE__ */ xr.createElement(op, { size: r, width: n,\nxmlns: ap }, /* @__PURE__ */ xr.createElement(\"circle\", null)), t && /* @__PURE__ */ xr.createElement(op, { size: r, width: n, xmlns: ap, spinner: !0 },\n/* @__PURE__ */ xr.createElement(\"circle\", { strokeDashoffset: Math.PI * (r - Math.ceil(n)) * (1 - e / 100) })), /* @__PURE__ */ xr.createElement(\nop, { size: r, width: n, xmlns: ap, progress: !0 }, /* @__PURE__ */ xr.createElement(\"circle\", { strokeDashoffset: Math.PI * (r - Math.ceil(\nn)) * (1 - e / 100) }))) : /* @__PURE__ */ xr.createElement(M3, { size: r, ...i }, a), \"ProgressSpinner\");\n\n// src/components/components/utils/getStoryHref.ts\nfunction r_(e) {\n let t = {}, r = e.split(\"&\");\n for (let n = 0; n < r.length; n++) {\n let a = r[n].split(\"=\");\n t[decodeURIComponent(a[0])] = decodeURIComponent(a[1] || \"\");\n }\n return t;\n}\no(r_, \"parseQuery\");\nvar n_ = /* @__PURE__ */ o((e, t, r = {}) => {\n let [n, a] = e.split(\"?\"), i = a ? {\n ...r_(a),\n ...r,\n id: t\n } : {\n ...r,\n id: t\n };\n return `${n}?${Object.entries(i).map((l) => `${l[0]}=${l[1]}`).join(\"&\")}`;\n}, \"getStoryHref\");\n\n// src/components/components/clipboard/ClipboardCode.tsx\nimport a_ from \"react\";\nimport { color as o_, styled as i_, typography as P3 } from \"@storybook/core/theming\";\nvar l_ = i_.pre`\n line-height: 18px;\n padding: 11px 1rem;\n white-space: pre-wrap;\n background: rgba(0, 0, 0, 0.05);\n color: ${o_.darkest};\n border-radius: 3px;\n margin: 1rem 0;\n width: 100%;\n display: block;\n overflow: hidden;\n font-family: ${P3.fonts.mono};\n font-size: ${P3.size.s2 - 1}px;\n`, s_ = /* @__PURE__ */ o(({ code: e, ...t }) => /* @__PURE__ */ a_.createElement(l_, { id: \"clipboard-code\", ...t }, e), \"ClipboardCode\");\n\n// src/components/index.ts\nvar RQ = _u, p_ = {};\nObject.keys(_u).forEach((e) => {\n p_[e] = c_((t, r) => u_(e, { ...t, ref: r }));\n});\nexport {\n gs as A,\n iu as ActionBar,\n BM as AddonPanel,\n ny as Badge,\n G1 as Bar,\n vs as Blockquote,\n Na as Button,\n s_ as ClipboardCode,\n gu as Code,\n vu as DL,\n wu as Div,\n Px as DocumentWrapper,\n X1 as EmptyTabContent,\n oI as ErrorFormatter,\n Zl as FlexBar,\n SI as Form,\n bu as H1,\n yu as H2,\n Du as H3,\n xu as H4,\n Cu as H5,\n Eu as H6,\n Ru as HR,\n Bl as IconButton,\n oM as IconButtonSkeleton,\n NM as Icons,\n Su as Img,\n Au as LI,\n $u as Link,\n j1 as ListItem,\n JM as Loader,\n LT as Modal,\n Fu as OL,\n ku as P,\n NT as Placeholder,\n Lu as Pre,\n t_ as ProgressSpinner,\n Rp as ResetWrapper,\n An as ScrollArea,\n rp as Separator,\n _T as Spaced,\n Tu as Span,\n jM as StorybookIcon,\n VM as StorybookLogo,\n $M as Symbols,\n Mg as SyntaxHighlighter,\n Iu as TT,\n ep as TabBar,\n cn as TabButton,\n EM as TabWrapper,\n Bu as Table,\n tp as Tabs,\n J1 as TabsState,\n W1 as TooltipLinkList,\n TB as TooltipMessage,\n _B as TooltipNote,\n Mu as UL,\n CB as WithTooltip,\n RB as WithTooltipPure,\n ZT as Zoom,\n Pt as codeCommon,\n RQ as components,\n hu as createCopyToClipboardFunction,\n n_ as getStoryHref,\n ns as icons,\n AM as interleaveSeparators,\n te as nameSpaceClassNames,\n p_ as resetComponents,\n N as withReset\n};\n","var vn = Object.create;\nvar nr = Object.defineProperty;\nvar yn = Object.getOwnPropertyDescriptor;\nvar xn = Object.getOwnPropertyNames;\nvar wn = Object.getPrototypeOf, En = Object.prototype.hasOwnProperty;\nvar o = (e, r) => nr(e, \"name\", { value: r, configurable: !0 }), we = /* @__PURE__ */ ((e) => typeof require < \"u\" ? require : typeof Proxy <\n\"u\" ? new Proxy(e, {\n get: (r, t) => (typeof require < \"u\" ? require : r)[t]\n}) : e)(function(e) {\n if (typeof require < \"u\") return require.apply(this, arguments);\n throw Error('Dynamic require of \"' + e + '\" is not supported');\n});\nvar ze = (e, r) => () => (r || e((r = { exports: {} }).exports, r), r.exports);\nvar Sn = (e, r, t, n) => {\n if (r && typeof r == \"object\" || typeof r == \"function\")\n for (let a of xn(r))\n !En.call(e, a) && a !== t && nr(e, a, { get: () => r[a], enumerable: !(n = yn(r, a)) || n.enumerable });\n return e;\n};\nvar ar = (e, r, t) => (t = e != null ? vn(wn(e)) : {}, Sn(\n // If the importer is in node compatibility mode or this is not an ESM\n // file that has been converted to a CommonJS file using a Babel-\n // compatible transform (i.e. \"__esModule\" has not been set), then set\n // \"default\" to the CommonJS \"module.exports\" for node compatibility.\n r || !e || !e.__esModule ? nr(t, \"default\", { value: e, enumerable: !0 }) : t,\n e\n));\n\n// ../node_modules/react-is/cjs/react-is.development.js\nvar rt = ze((O) => {\n \"use strict\";\n (function() {\n \"use strict\";\n var e = typeof Symbol == \"function\" && Symbol.for, r = e ? Symbol.for(\"react.element\") : 60103, t = e ? Symbol.for(\"react.portal\") : 60106,\n n = e ? Symbol.for(\"react.fragment\") : 60107, a = e ? Symbol.for(\"react.strict_mode\") : 60108, i = e ? Symbol.for(\"react.profiler\") : 60114,\n s = e ? Symbol.for(\"react.provider\") : 60109, u = e ? Symbol.for(\"react.context\") : 60110, f = e ? Symbol.for(\"react.async_mode\") : 60111,\n l = e ? Symbol.for(\"react.concurrent_mode\") : 60111, c = e ? Symbol.for(\"react.forward_ref\") : 60112, p = e ? Symbol.for(\"react.suspense\") :\n 60113, m = e ? Symbol.for(\"react.suspense_list\") : 60120, w = e ? Symbol.for(\"react.memo\") : 60115, b = e ? Symbol.for(\"react.lazy\") : 60116,\n d = e ? Symbol.for(\"react.block\") : 60121, v = e ? Symbol.for(\"react.fundamental\") : 60117, y = e ? Symbol.for(\"react.responder\") : 60118,\n x = e ? Symbol.for(\"react.scope\") : 60119;\n function A(g) {\n return typeof g == \"string\" || typeof g == \"function\" || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.\n g === n || g === l || g === i || g === a || g === p || g === m || typeof g == \"object\" && g !== null && (g.$$typeof === b || g.$$typeof ===\n w || g.$$typeof === s || g.$$typeof === u || g.$$typeof === c || g.$$typeof === v || g.$$typeof === y || g.$$typeof === x || g.$$typeof ===\n d);\n }\n o(A, \"isValidElementType\");\n function S(g) {\n if (typeof g == \"object\" && g !== null) {\n var tr = g.$$typeof;\n switch (tr) {\n case r:\n var Le = g.type;\n switch (Le) {\n case f:\n case l:\n case n:\n case i:\n case a:\n case p:\n return Le;\n default:\n var Lr = Le && Le.$$typeof;\n switch (Lr) {\n case u:\n case c:\n case b:\n case w:\n case s:\n return Lr;\n default:\n return tr;\n }\n }\n case t:\n return tr;\n }\n }\n }\n o(S, \"typeOf\");\n var R = f, F = l, T = u, ae = s, oe = r, V = c, G = n, Qe = b, er = w, rr = t, tn = i, nn = a, an = p, Ir = !1;\n function on(g) {\n return Ir || (Ir = !0, console.warn(\"The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update you\\\nr code to use ReactIs.isConcurrentMode() instead. It has the exact same API.\")), Pr(g) || S(g) === f;\n }\n o(on, \"isAsyncMode\");\n function Pr(g) {\n return S(g) === l;\n }\n o(Pr, \"isConcurrentMode\");\n function sn(g) {\n return S(g) === u;\n }\n o(sn, \"isContextConsumer\");\n function un(g) {\n return S(g) === s;\n }\n o(un, \"isContextProvider\");\n function fn(g) {\n return typeof g == \"object\" && g !== null && g.$$typeof === r;\n }\n o(fn, \"isElement\");\n function cn(g) {\n return S(g) === c;\n }\n o(cn, \"isForwardRef\");\n function ln(g) {\n return S(g) === n;\n }\n o(ln, \"isFragment\");\n function pn(g) {\n return S(g) === b;\n }\n o(pn, \"isLazy\");\n function dn(g) {\n return S(g) === w;\n }\n o(dn, \"isMemo\");\n function mn(g) {\n return S(g) === t;\n }\n o(mn, \"isPortal\");\n function hn(g) {\n return S(g) === i;\n }\n o(hn, \"isProfiler\");\n function gn(g) {\n return S(g) === a;\n }\n o(gn, \"isStrictMode\");\n function bn(g) {\n return S(g) === p;\n }\n o(bn, \"isSuspense\"), O.AsyncMode = R, O.ConcurrentMode = F, O.ContextConsumer = T, O.ContextProvider = ae, O.Element = oe, O.ForwardRef =\n V, O.Fragment = G, O.Lazy = Qe, O.Memo = er, O.Portal = rr, O.Profiler = tn, O.StrictMode = nn, O.Suspense = an, O.isAsyncMode = on, O.isConcurrentMode =\n Pr, O.isContextConsumer = sn, O.isContextProvider = un, O.isElement = fn, O.isForwardRef = cn, O.isFragment = ln, O.isLazy = pn, O.isMemo =\n dn, O.isPortal = mn, O.isProfiler = hn, O.isStrictMode = gn, O.isSuspense = bn, O.isValidElementType = A, O.typeOf = S;\n })();\n});\n\n// ../node_modules/react-is/index.js\nvar nt = ze((Vo, tt) => {\n \"use strict\";\n tt.exports = rt();\n});\n\n// ../node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js\nvar pr = ze((Go, ft) => {\n \"use strict\";\n var cr = nt(), Mn = {\n childContextTypes: !0,\n contextType: !0,\n contextTypes: !0,\n defaultProps: !0,\n displayName: !0,\n getDefaultProps: !0,\n getDerivedStateFromError: !0,\n getDerivedStateFromProps: !0,\n mixins: !0,\n propTypes: !0,\n type: !0\n }, kn = {\n name: !0,\n length: !0,\n prototype: !0,\n caller: !0,\n callee: !0,\n arguments: !0,\n arity: !0\n }, Nn = {\n $$typeof: !0,\n render: !0,\n defaultProps: !0,\n displayName: !0,\n propTypes: !0\n }, st = {\n $$typeof: !0,\n compare: !0,\n defaultProps: !0,\n displayName: !0,\n propTypes: !0,\n type: !0\n }, lr = {};\n lr[cr.ForwardRef] = Nn;\n lr[cr.Memo] = st;\n function at(e) {\n return cr.isMemo(e) ? st : lr[e.$$typeof] || Mn;\n }\n o(at, \"getStatics\");\n var Bn = Object.defineProperty, Dn = Object.getOwnPropertyNames, ot = Object.getOwnPropertySymbols, $n = Object.getOwnPropertyDescriptor, jn = Object.\n getPrototypeOf, it = Object.prototype;\n function ut(e, r, t) {\n if (typeof r != \"string\") {\n if (it) {\n var n = jn(r);\n n && n !== it && ut(e, n, t);\n }\n var a = Dn(r);\n ot && (a = a.concat(ot(r)));\n for (var i = at(e), s = at(r), u = 0; u < a.length; ++u) {\n var f = a[u];\n if (!kn[f] && !(t && t[f]) && !(s && s[f]) && !(i && i[f])) {\n var l = $n(r, f);\n try {\n Bn(e, f, l);\n } catch {\n }\n }\n }\n }\n return e;\n }\n o(ut, \"hoistNonReactStatics\");\n ft.exports = ut;\n});\n\n// ../node_modules/memoizerific/memoizerific.js\nvar Ht = ze((jt, Cr) => {\n (function(e) {\n if (typeof jt == \"object\" && typeof Cr < \"u\")\n Cr.exports = e();\n else if (typeof define == \"function\" && define.amd)\n define([], e);\n else {\n var r;\n typeof window < \"u\" ? r = window : typeof global < \"u\" ? r = global : typeof self < \"u\" ? r = self : r = this, r.memoizerific = e();\n }\n })(function() {\n var e, r, t;\n return (/* @__PURE__ */ o(function n(a, i, s) {\n function u(c, p) {\n if (!i[c]) {\n if (!a[c]) {\n var m = typeof we == \"function\" && we;\n if (!p && m) return m(c, !0);\n if (f) return f(c, !0);\n var w = new Error(\"Cannot find module '\" + c + \"'\");\n throw w.code = \"MODULE_NOT_FOUND\", w;\n }\n var b = i[c] = { exports: {} };\n a[c][0].call(b.exports, function(d) {\n var v = a[c][1][d];\n return u(v || d);\n }, b, b.exports, n, a, i, s);\n }\n return i[c].exports;\n }\n o(u, \"s\");\n for (var f = typeof we == \"function\" && we, l = 0; l < s.length; l++) u(s[l]);\n return u;\n }, \"e\"))({ 1: [function(n, a, i) {\n a.exports = function(s) {\n if (typeof Map != \"function\" || s) {\n var u = n(\"./similar\");\n return new u();\n } else\n return /* @__PURE__ */ new Map();\n };\n }, { \"./similar\": 2 }], 2: [function(n, a, i) {\n function s() {\n return this.list = [], this.lastItem = void 0, this.size = 0, this;\n }\n o(s, \"Similar\"), s.prototype.get = function(u) {\n var f;\n if (this.lastItem && this.isEqual(this.lastItem.key, u))\n return this.lastItem.val;\n if (f = this.indexOf(u), f >= 0)\n return this.lastItem = this.list[f], this.list[f].val;\n }, s.prototype.set = function(u, f) {\n var l;\n return this.lastItem && this.isEqual(this.lastItem.key, u) ? (this.lastItem.val = f, this) : (l = this.indexOf(u), l >= 0 ? (this.lastItem =\n this.list[l], this.list[l].val = f, this) : (this.lastItem = { key: u, val: f }, this.list.push(this.lastItem), this.size++, this));\n }, s.prototype.delete = function(u) {\n var f;\n if (this.lastItem && this.isEqual(this.lastItem.key, u) && (this.lastItem = void 0), f = this.indexOf(u), f >= 0)\n return this.size--, this.list.splice(f, 1)[0];\n }, s.prototype.has = function(u) {\n var f;\n return this.lastItem && this.isEqual(this.lastItem.key, u) ? !0 : (f = this.indexOf(u), f >= 0 ? (this.lastItem = this.list[f], !0) :\n !1);\n }, s.prototype.forEach = function(u, f) {\n var l;\n for (l = 0; l < this.size; l++)\n u.call(f || this, this.list[l].val, this.list[l].key, this);\n }, s.prototype.indexOf = function(u) {\n var f;\n for (f = 0; f < this.size; f++)\n if (this.isEqual(this.list[f].key, u))\n return f;\n return -1;\n }, s.prototype.isEqual = function(u, f) {\n return u === f || u !== u && f !== f;\n }, a.exports = s;\n }, {}], 3: [function(n, a, i) {\n var s = n(\"map-or-similar\");\n a.exports = function(c) {\n var p = new s(!1), m = [];\n return function(w) {\n var b = /* @__PURE__ */ o(function() {\n var d = p, v, y, x = arguments.length - 1, A = Array(x + 1), S = !0, R;\n if ((b.numArgs || b.numArgs === 0) && b.numArgs !== x + 1)\n throw new Error(\"Memoizerific functions should always be called with the same number of arguments\");\n for (R = 0; R < x; R++) {\n if (A[R] = {\n cacheItem: d,\n arg: arguments[R]\n }, d.has(arguments[R])) {\n d = d.get(arguments[R]);\n continue;\n }\n S = !1, v = new s(!1), d.set(arguments[R], v), d = v;\n }\n return S && (d.has(arguments[x]) ? y = d.get(arguments[x]) : S = !1), S || (y = w.apply(null, arguments), d.set(arguments[x], y)),\n c > 0 && (A[x] = {\n cacheItem: d,\n arg: arguments[x]\n }, S ? u(m, A) : m.push(A), m.length > c && f(m.shift())), b.wasMemoized = S, b.numArgs = x + 1, y;\n }, \"memoizerific\");\n return b.limit = c, b.wasMemoized = !1, b.cache = p, b.lru = m, b;\n };\n };\n function u(c, p) {\n var m = c.length, w = p.length, b, d, v;\n for (d = 0; d < m; d++) {\n for (b = !0, v = 0; v < w; v++)\n if (!l(c[d][v].arg, p[v].arg)) {\n b = !1;\n break;\n }\n if (b)\n break;\n }\n c.push(c.splice(d, 1)[0]);\n }\n o(u, \"moveToMostRecentLru\");\n function f(c) {\n var p = c.length, m = c[p - 1], w, b;\n for (m.cacheItem.delete(m.arg), b = p - 2; b >= 0 && (m = c[b], w = m.cacheItem.get(m.arg), !w || !w.size); b--)\n m.cacheItem.delete(m.arg);\n }\n o(f, \"removeCachedResult\");\n function l(c, p) {\n return c === p || c !== c && p !== p;\n }\n o(l, \"isEqual\");\n }, { \"map-or-similar\": 1 }] }, {}, [3])(3);\n });\n});\n\n// ../node_modules/@babel/runtime/helpers/esm/extends.js\nfunction N() {\n return N = Object.assign ? Object.assign.bind() : function(e) {\n for (var r = 1; r < arguments.length; r++) {\n var t = arguments[r];\n for (var n in t) ({}).hasOwnProperty.call(t, n) && (e[n] = t[n]);\n }\n return e;\n }, N.apply(null, arguments);\n}\no(N, \"_extends\");\n\n// ../node_modules/@emotion/react/dist/emotion-element-f0de968e.browser.esm.js\nimport * as P from \"react\";\nimport { useContext as Jn, forwardRef as Kn } from \"react\";\n\n// ../node_modules/@emotion/sheet/dist/emotion-sheet.esm.js\nvar Tn = !1;\nfunction Cn(e) {\n if (e.sheet)\n return e.sheet;\n for (var r = 0; r < document.styleSheets.length; r++)\n if (document.styleSheets[r].ownerNode === e)\n return document.styleSheets[r];\n}\no(Cn, \"sheetForTag\");\nfunction On(e) {\n var r = document.createElement(\"style\");\n return r.setAttribute(\"data-emotion\", e.key), e.nonce !== void 0 && r.setAttribute(\"nonce\", e.nonce), r.appendChild(document.createTextNode(\n \"\")), r.setAttribute(\"data-s\", \"\"), r;\n}\no(On, \"createStyleElement\");\nvar zr = /* @__PURE__ */ function() {\n function e(t) {\n var n = this;\n this._insertTag = function(a) {\n var i;\n n.tags.length === 0 ? n.insertionPoint ? i = n.insertionPoint.nextSibling : n.prepend ? i = n.container.firstChild : i = n.before : i =\n n.tags[n.tags.length - 1].nextSibling, n.container.insertBefore(a, i), n.tags.push(a);\n }, this.isSpeedy = t.speedy === void 0 ? !Tn : t.speedy, this.tags = [], this.ctr = 0, this.nonce = t.nonce, this.key = t.key, this.container =\n t.container, this.prepend = t.prepend, this.insertionPoint = t.insertionPoint, this.before = null;\n }\n o(e, \"StyleSheet\");\n var r = e.prototype;\n return r.hydrate = /* @__PURE__ */ o(function(n) {\n n.forEach(this._insertTag);\n }, \"hydrate\"), r.insert = /* @__PURE__ */ o(function(n) {\n this.ctr % (this.isSpeedy ? 65e3 : 1) === 0 && this._insertTag(On(this));\n var a = this.tags[this.tags.length - 1];\n if (this.isSpeedy) {\n var i = Cn(a);\n try {\n i.insertRule(n, i.cssRules.length);\n } catch {\n }\n } else\n a.appendChild(document.createTextNode(n));\n this.ctr++;\n }, \"insert\"), r.flush = /* @__PURE__ */ o(function() {\n this.tags.forEach(function(n) {\n var a;\n return (a = n.parentNode) == null ? void 0 : a.removeChild(n);\n }), this.tags = [], this.ctr = 0;\n }, \"flush\"), e;\n}();\n\n// ../node_modules/stylis/src/Enum.js\nvar L = \"-ms-\", Ee = \"-moz-\", C = \"-webkit-\", Me = \"comm\", ie = \"rule\", se = \"decl\";\nvar Mr = \"@import\";\nvar ke = \"@keyframes\";\nvar kr = \"@layer\";\n\n// ../node_modules/stylis/src/Utility.js\nvar Nr = Math.abs, X = String.fromCharCode, Br = Object.assign;\nfunction Dr(e, r) {\n return _(e, 0) ^ 45 ? (((r << 2 ^ _(e, 0)) << 2 ^ _(e, 1)) << 2 ^ _(e, 2)) << 2 ^ _(e, 3) : 0;\n}\no(Dr, \"hash\");\nfunction Ne(e) {\n return e.trim();\n}\no(Ne, \"trim\");\nfunction or(e, r) {\n return (e = r.exec(e)) ? e[0] : e;\n}\no(or, \"match\");\nfunction E(e, r, t) {\n return e.replace(r, t);\n}\no(E, \"replace\");\nfunction Se(e, r) {\n return e.indexOf(r);\n}\no(Se, \"indexof\");\nfunction _(e, r) {\n return e.charCodeAt(r) | 0;\n}\no(_, \"charat\");\nfunction Y(e, r, t) {\n return e.slice(r, t);\n}\no(Y, \"substr\");\nfunction z(e) {\n return e.length;\n}\no(z, \"strlen\");\nfunction ue(e) {\n return e.length;\n}\no(ue, \"sizeof\");\nfunction fe(e, r) {\n return r.push(e), e;\n}\no(fe, \"append\");\nfunction ir(e, r) {\n return e.map(r).join(\"\");\n}\no(ir, \"combine\");\n\n// ../node_modules/stylis/src/Tokenizer.js\nvar Be = 1, ce = 1, $r = 0, M = 0, I = 0, pe = \"\";\nfunction Te(e, r, t, n, a, i, s) {\n return { value: e, root: r, parent: t, type: n, props: a, children: i, line: Be, column: ce, length: s, return: \"\" };\n}\no(Te, \"node\");\nfunction de(e, r) {\n return Br(Te(\"\", null, null, \"\", null, null, 0), e, { length: -e.length }, r);\n}\no(de, \"copy\");\nfunction jr() {\n return I;\n}\no(jr, \"char\");\nfunction Hr() {\n return I = M > 0 ? _(pe, --M) : 0, ce--, I === 10 && (ce = 1, Be--), I;\n}\no(Hr, \"prev\");\nfunction k() {\n return I = M < $r ? _(pe, M++) : 0, ce++, I === 10 && (ce = 1, Be++), I;\n}\no(k, \"next\");\nfunction B() {\n return _(pe, M);\n}\no(B, \"peek\");\nfunction Ce() {\n return M;\n}\no(Ce, \"caret\");\nfunction me(e, r) {\n return Y(pe, e, r);\n}\no(me, \"slice\");\nfunction le(e) {\n switch (e) {\n // \\0 \\t \\n \\r \\s whitespace token\n case 0:\n case 9:\n case 10:\n case 13:\n case 32:\n return 5;\n // ! + , / > @ ~ isolate token\n case 33:\n case 43:\n case 44:\n case 47:\n case 62:\n case 64:\n case 126:\n // ; { } breakpoint token\n case 59:\n case 123:\n case 125:\n return 4;\n // : accompanied token\n case 58:\n return 3;\n // \" ' ( [ opening delimit token\n case 34:\n case 39:\n case 40:\n case 91:\n return 2;\n // ) ] closing delimit token\n case 41:\n case 93:\n return 1;\n }\n return 0;\n}\no(le, \"token\");\nfunction De(e) {\n return Be = ce = 1, $r = z(pe = e), M = 0, [];\n}\no(De, \"alloc\");\nfunction $e(e) {\n return pe = \"\", e;\n}\no($e, \"dealloc\");\nfunction he(e) {\n return Ne(me(M - 1, sr(e === 91 ? e + 2 : e === 40 ? e + 1 : e)));\n}\no(he, \"delimit\");\nfunction Wr(e) {\n for (; (I = B()) && I < 33; )\n k();\n return le(e) > 2 || le(I) > 3 ? \"\" : \" \";\n}\no(Wr, \"whitespace\");\nfunction Ur(e, r) {\n for (; --r && k() && !(I < 48 || I > 102 || I > 57 && I < 65 || I > 70 && I < 97); )\n ;\n return me(e, Ce() + (r < 6 && B() == 32 && k() == 32));\n}\no(Ur, \"escaping\");\nfunction sr(e) {\n for (; k(); )\n switch (I) {\n // ] ) \" '\n case e:\n return M;\n // \" '\n case 34:\n case 39:\n e !== 34 && e !== 39 && sr(I);\n break;\n // (\n case 40:\n e === 41 && sr(e);\n break;\n // \\\n case 92:\n k();\n break;\n }\n return M;\n}\no(sr, \"delimiter\");\nfunction Vr(e, r) {\n for (; k() && e + I !== 57; )\n if (e + I === 84 && B() === 47)\n break;\n return \"/*\" + me(r, M - 1) + \"*\" + X(e === 47 ? e : k());\n}\no(Vr, \"commenter\");\nfunction Gr(e) {\n for (; !le(B()); )\n k();\n return me(e, M);\n}\no(Gr, \"identifier\");\n\n// ../node_modules/stylis/src/Parser.js\nfunction Jr(e) {\n return $e(je(\"\", null, null, null, [\"\"], e = De(e), 0, [0], e));\n}\no(Jr, \"compile\");\nfunction je(e, r, t, n, a, i, s, u, f) {\n for (var l = 0, c = 0, p = s, m = 0, w = 0, b = 0, d = 1, v = 1, y = 1, x = 0, A = \"\", S = a, R = i, F = n, T = A; v; )\n switch (b = x, x = k()) {\n // (\n case 40:\n if (b != 108 && _(T, p - 1) == 58) {\n Se(T += E(he(x), \"&\", \"&\\f\"), \"&\\f\") != -1 && (y = -1);\n break;\n }\n // \" ' [\n case 34:\n case 39:\n case 91:\n T += he(x);\n break;\n // \\t \\n \\r \\s\n case 9:\n case 10:\n case 13:\n case 32:\n T += Wr(b);\n break;\n // \\\n case 92:\n T += Ur(Ce() - 1, 7);\n continue;\n // /\n case 47:\n switch (B()) {\n case 42:\n case 47:\n fe(Rn(Vr(k(), Ce()), r, t), f);\n break;\n default:\n T += \"/\";\n }\n break;\n // {\n case 123 * d:\n u[l++] = z(T) * y;\n // } ; \\0\n case 125 * d:\n case 59:\n case 0:\n switch (x) {\n // \\0 }\n case 0:\n case 125:\n v = 0;\n // ;\n case 59 + c:\n y == -1 && (T = E(T, /\\f/g, \"\")), w > 0 && z(T) - p && fe(w > 32 ? qr(T + \";\", n, t, p - 1) : qr(E(T, \" \", \"\") + \";\", n, t, p - 2),\n f);\n break;\n // @ ;\n case 59:\n T += \";\";\n // { rule/at-rule\n default:\n if (fe(F = Yr(T, r, t, l, c, a, u, A, S = [], R = [], p), i), x === 123)\n if (c === 0)\n je(T, r, F, F, S, i, p, u, R);\n else\n switch (m === 99 && _(T, 3) === 110 ? 100 : m) {\n // d l m s\n case 100:\n case 108:\n case 109:\n case 115:\n je(e, F, F, n && fe(Yr(e, F, F, 0, 0, a, u, A, a, S = [], p), R), a, R, p, u, n ? S : R);\n break;\n default:\n je(T, F, F, F, [\"\"], R, 0, u, R);\n }\n }\n l = c = w = 0, d = y = 1, A = T = \"\", p = s;\n break;\n // :\n case 58:\n p = 1 + z(T), w = b;\n default:\n if (d < 1) {\n if (x == 123)\n --d;\n else if (x == 125 && d++ == 0 && Hr() == 125)\n continue;\n }\n switch (T += X(x), x * d) {\n // &\n case 38:\n y = c > 0 ? 1 : (T += \"\\f\", -1);\n break;\n // ,\n case 44:\n u[l++] = (z(T) - 1) * y, y = 1;\n break;\n // @\n case 64:\n B() === 45 && (T += he(k())), m = B(), c = p = z(A = T += Gr(Ce())), x++;\n break;\n // -\n case 45:\n b === 45 && z(T) == 2 && (d = 0);\n }\n }\n return i;\n}\no(je, \"parse\");\nfunction Yr(e, r, t, n, a, i, s, u, f, l, c) {\n for (var p = a - 1, m = a === 0 ? i : [\"\"], w = ue(m), b = 0, d = 0, v = 0; b < n; ++b)\n for (var y = 0, x = Y(e, p + 1, p = Nr(d = s[b])), A = e; y < w; ++y)\n (A = Ne(d > 0 ? m[y] + \" \" + x : E(x, /&\\f/g, m[y]))) && (f[v++] = A);\n return Te(e, r, t, a === 0 ? ie : u, f, l, c);\n}\no(Yr, \"ruleset\");\nfunction Rn(e, r, t) {\n return Te(e, r, t, Me, X(jr()), Y(e, 2, -2), 0);\n}\no(Rn, \"comment\");\nfunction qr(e, r, t, n) {\n return Te(e, r, t, se, Y(e, 0, n), Y(e, n + 1, -1), n);\n}\no(qr, \"declaration\");\n\n// ../node_modules/stylis/src/Serializer.js\nfunction Z(e, r) {\n for (var t = \"\", n = ue(e), a = 0; a < n; a++)\n t += r(e[a], a, e, r) || \"\";\n return t;\n}\no(Z, \"serialize\");\nfunction Kr(e, r, t, n) {\n switch (e.type) {\n case kr:\n if (e.children.length) break;\n case Mr:\n case se:\n return e.return = e.return || e.value;\n case Me:\n return \"\";\n case ke:\n return e.return = e.value + \"{\" + Z(e.children, n) + \"}\";\n case ie:\n e.value = e.props.join(\",\");\n }\n return z(t = Z(e.children, n)) ? e.return = e.value + \"{\" + t + \"}\" : \"\";\n}\no(Kr, \"stringify\");\n\n// ../node_modules/stylis/src/Middleware.js\nfunction Xr(e) {\n var r = ue(e);\n return function(t, n, a, i) {\n for (var s = \"\", u = 0; u < r; u++)\n s += e[u](t, n, a, i) || \"\";\n return s;\n };\n}\no(Xr, \"middleware\");\nfunction Zr(e) {\n return function(r) {\n r.root || (r = r.return) && e(r);\n };\n}\no(Zr, \"rulesheet\");\n\n// ../node_modules/@emotion/weak-memoize/dist/emotion-weak-memoize.esm.js\nvar ur = /* @__PURE__ */ o(function(r) {\n var t = /* @__PURE__ */ new WeakMap();\n return function(n) {\n if (t.has(n))\n return t.get(n);\n var a = r(n);\n return t.set(n, a), a;\n };\n}, \"weakMemoize\");\n\n// ../node_modules/@emotion/memoize/dist/emotion-memoize.esm.js\nfunction He(e) {\n var r = /* @__PURE__ */ Object.create(null);\n return function(t) {\n return r[t] === void 0 && (r[t] = e(t)), r[t];\n };\n}\no(He, \"memoize\");\n\n// ../node_modules/@emotion/cache/dist/emotion-cache.browser.esm.js\nvar An = /* @__PURE__ */ o(function(r, t, n) {\n for (var a = 0, i = 0; a = i, i = B(), a === 38 && i === 12 && (t[n] = 1), !le(i); )\n k();\n return me(r, M);\n}, \"identifierWithPointTracking\"), Fn = /* @__PURE__ */ o(function(r, t) {\n var n = -1, a = 44;\n do\n switch (le(a)) {\n case 0:\n a === 38 && B() === 12 && (t[n] = 1), r[n] += An(M - 1, t, n);\n break;\n case 2:\n r[n] += he(a);\n break;\n case 4:\n if (a === 44) {\n r[++n] = B() === 58 ? \"&\\f\" : \"\", t[n] = r[n].length;\n break;\n }\n // fallthrough\n default:\n r[n] += X(a);\n }\n while (a = k());\n return r;\n}, \"toRules\"), _n = /* @__PURE__ */ o(function(r, t) {\n return $e(Fn(De(r), t));\n}, \"getRules\"), Qr = /* @__PURE__ */ new WeakMap(), In = /* @__PURE__ */ o(function(r) {\n if (!(r.type !== \"rule\" || !r.parent || // positive .length indicates that this rule contains pseudo\n // negative .length indicates that this rule has been already prefixed\n r.length < 1)) {\n for (var t = r.value, n = r.parent, a = r.column === n.column && r.line === n.line; n.type !== \"rule\"; )\n if (n = n.parent, !n) return;\n if (!(r.props.length === 1 && t.charCodeAt(0) !== 58 && !Qr.get(n)) && !a) {\n Qr.set(r, !0);\n for (var i = [], s = _n(t, i), u = n.props, f = 0, l = 0; f < s.length; f++)\n for (var c = 0; c < u.length; c++, l++)\n r.props[l] = i[f] ? s[f].replace(/&\\f/g, u[c]) : u[c] + \" \" + s[f];\n }\n }\n}, \"compat\"), Pn = /* @__PURE__ */ o(function(r) {\n if (r.type === \"decl\") {\n var t = r.value;\n // charcode for l\n t.charCodeAt(0) === 108 && // charcode for b\n t.charCodeAt(2) === 98 && (r.return = \"\", r.value = \"\");\n }\n}, \"removeLabel\");\nfunction et(e, r) {\n switch (Dr(e, r)) {\n // color-adjust\n case 5103:\n return C + \"print-\" + e + e;\n // animation, animation-(delay|direction|duration|fill-mode|iteration-count|name|play-state|timing-function)\n case 5737:\n case 4201:\n case 3177:\n case 3433:\n case 1641:\n case 4457:\n case 2921:\n // text-decoration, filter, clip-path, backface-visibility, column, box-decoration-break\n case 5572:\n case 6356:\n case 5844:\n case 3191:\n case 6645:\n case 3005:\n // mask, mask-image, mask-(mode|clip|size), mask-(repeat|origin), mask-position, mask-composite,\n case 6391:\n case 5879:\n case 5623:\n case 6135:\n case 4599:\n case 4855:\n // background-clip, columns, column-(count|fill|gap|rule|rule-color|rule-style|rule-width|span|width)\n case 4215:\n case 6389:\n case 5109:\n case 5365:\n case 5621:\n case 3829:\n return C + e + e;\n // appearance, user-select, transform, hyphens, text-size-adjust\n case 5349:\n case 4246:\n case 4810:\n case 6968:\n case 2756:\n return C + e + Ee + e + L + e + e;\n // flex, flex-direction\n case 6828:\n case 4268:\n return C + e + L + e + e;\n // order\n case 6165:\n return C + e + L + \"flex-\" + e + e;\n // align-items\n case 5187:\n return C + e + E(e, /(\\w+).+(:[^]+)/, C + \"box-$1$2\" + L + \"flex-$1$2\") + e;\n // align-self\n case 5443:\n return C + e + L + \"flex-item-\" + E(e, /flex-|-self/, \"\") + e;\n // align-content\n case 4675:\n return C + e + L + \"flex-line-pack\" + E(e, /align-content|flex-|-self/, \"\") + e;\n // flex-shrink\n case 5548:\n return C + e + L + E(e, \"shrink\", \"negative\") + e;\n // flex-basis\n case 5292:\n return C + e + L + E(e, \"basis\", \"preferred-size\") + e;\n // flex-grow\n case 6060:\n return C + \"box-\" + E(e, \"-grow\", \"\") + C + e + L + E(e, \"grow\", \"positive\") + e;\n // transition\n case 4554:\n return C + E(e, /([^-])(transform)/g, \"$1\" + C + \"$2\") + e;\n // cursor\n case 6187:\n return E(E(E(e, /(zoom-|grab)/, C + \"$1\"), /(image-set)/, C + \"$1\"), e, \"\") + e;\n // background, background-image\n case 5495:\n case 3959:\n return E(e, /(image-set\\([^]*)/, C + \"$1$`$1\");\n // justify-content\n case 4968:\n return E(E(e, /(.+:)(flex-)?(.*)/, C + \"box-pack:$3\" + L + \"flex-pack:$3\"), /s.+-b[^;]+/, \"justify\") + C + e + e;\n // (margin|padding)-inline-(start|end)\n case 4095:\n case 3583:\n case 4068:\n case 2532:\n return E(e, /(.+)-inline(.+)/, C + \"$1$2\") + e;\n // (min|max)?(width|height|inline-size|block-size)\n case 8116:\n case 7059:\n case 5753:\n case 5535:\n case 5445:\n case 5701:\n case 4933:\n case 4677:\n case 5533:\n case 5789:\n case 5021:\n case 4765:\n if (z(e) - 1 - r > 6) switch (_(e, r + 1)) {\n // (m)ax-content, (m)in-content\n case 109:\n if (_(e, r + 4) !== 45) break;\n // (f)ill-available, (f)it-content\n case 102:\n return E(e, /(.+:)(.+)-([^]+)/, \"$1\" + C + \"$2-$3$1\" + Ee + (_(e, r + 3) == 108 ? \"$3\" : \"$2-$3\")) + e;\n // (s)tretch\n case 115:\n return ~Se(e, \"stretch\") ? et(E(e, \"stretch\", \"fill-available\"), r) + e : e;\n }\n break;\n // position: sticky\n case 4949:\n if (_(e, r + 1) !== 115) break;\n // display: (flex|inline-flex)\n case 6444:\n switch (_(e, z(e) - 3 - (~Se(e, \"!important\") && 10))) {\n // stic(k)y\n case 107:\n return E(e, \":\", \":\" + C) + e;\n // (inline-)?fl(e)x\n case 101:\n return E(e, /(.+:)([^;!]+)(;|!.+)?/, \"$1\" + C + (_(e, 14) === 45 ? \"inline-\" : \"\") + \"box$3$1\" + C + \"$2$3$1\" + L + \"$2box$3\") + e;\n }\n break;\n // writing-mode\n case 5936:\n switch (_(e, r + 11)) {\n // vertical-l(r)\n case 114:\n return C + e + L + E(e, /[svh]\\w+-[tblr]{2}/, \"tb\") + e;\n // vertical-r(l)\n case 108:\n return C + e + L + E(e, /[svh]\\w+-[tblr]{2}/, \"tb-rl\") + e;\n // horizontal(-)tb\n case 45:\n return C + e + L + E(e, /[svh]\\w+-[tblr]{2}/, \"lr\") + e;\n }\n return C + e + L + e + e;\n }\n return e;\n}\no(et, \"prefix\");\nvar Ln = /* @__PURE__ */ o(function(r, t, n, a) {\n if (r.length > -1 && !r.return) switch (r.type) {\n case se:\n r.return = et(r.value, r.length);\n break;\n case ke:\n return Z([de(r, {\n value: E(r.value, \"@\", \"@\" + C)\n })], a);\n case ie:\n if (r.length) return ir(r.props, function(i) {\n switch (or(i, /(::plac\\w+|:read-\\w+)/)) {\n // :read-(only|write)\n case \":read-only\":\n case \":read-write\":\n return Z([de(r, {\n props: [E(i, /:(read-\\w+)/, \":\" + Ee + \"$1\")]\n })], a);\n // :placeholder\n case \"::placeholder\":\n return Z([de(r, {\n props: [E(i, /:(plac\\w+)/, \":\" + C + \"input-$1\")]\n }), de(r, {\n props: [E(i, /:(plac\\w+)/, \":\" + Ee + \"$1\")]\n }), de(r, {\n props: [E(i, /:(plac\\w+)/, L + \"input-$1\")]\n })], a);\n }\n return \"\";\n });\n }\n}, \"prefixer\"), zn = [Ln], fr = /* @__PURE__ */ o(function(r) {\n var t = r.key;\n if (t === \"css\") {\n var n = document.querySelectorAll(\"style[data-emotion]:not([data-s])\");\n Array.prototype.forEach.call(n, function(d) {\n var v = d.getAttribute(\"data-emotion\");\n v.indexOf(\" \") !== -1 && (document.head.appendChild(d), d.setAttribute(\"data-s\", \"\"));\n });\n }\n var a = r.stylisPlugins || zn, i = {}, s, u = [];\n s = r.container || document.head, Array.prototype.forEach.call(\n // this means we will ignore elements which don't have a space in them which\n // means that the style elements we're looking at are only Emotion 11 server-rendered style elements\n document.querySelectorAll('style[data-emotion^=\"' + t + ' \"]'),\n function(d) {\n for (var v = d.getAttribute(\"data-emotion\").split(\" \"), y = 1; y < v.length; y++)\n i[v[y]] = !0;\n u.push(d);\n }\n );\n var f, l = [In, Pn];\n {\n var c, p = [Kr, Zr(function(d) {\n c.insert(d);\n })], m = Xr(l.concat(a, p)), w = /* @__PURE__ */ o(function(v) {\n return Z(Jr(v), m);\n }, \"stylis\");\n f = /* @__PURE__ */ o(function(v, y, x, A) {\n c = x, w(v ? v + \"{\" + y.styles + \"}\" : y.styles), A && (b.inserted[y.name] = !0);\n }, \"insert\");\n }\n var b = {\n key: t,\n sheet: new zr({\n key: t,\n container: s,\n nonce: r.nonce,\n speedy: r.speedy,\n prepend: r.prepend,\n insertionPoint: r.insertionPoint\n }),\n nonce: r.nonce,\n inserted: i,\n registered: {},\n insert: f\n };\n return b.sheet.hydrate(u), b;\n}, \"createCache\");\n\n// ../node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.esm.js\nvar ct = ar(pr());\nvar lt = /* @__PURE__ */ o(function(e, r) {\n return (0, ct.default)(e, r);\n}, \"hoistNonReactStatics\");\n\n// ../node_modules/@emotion/utils/dist/emotion-utils.browser.esm.js\nvar Hn = !0;\nfunction ge(e, r, t) {\n var n = \"\";\n return t.split(\" \").forEach(function(a) {\n e[a] !== void 0 ? r.push(e[a] + \";\") : a && (n += a + \" \");\n }), n;\n}\no(ge, \"getRegisteredStyles\");\nvar Q = /* @__PURE__ */ o(function(r, t, n) {\n var a = r.key + \"-\" + t.name;\n // we only need to add the styles to the registered cache if the\n // class name could be used further down\n // the tree but if it's a string tag, we know it won't\n // so we don't have to add it to registered cache.\n // this improves memory usage since we can avoid storing the whole style string\n (n === !1 || // we need to always store it if we're in compat mode and\n // in node since emotion-server relies on whether a style is in\n // the registered cache to know whether a style is global or not\n // also, note that this check will be dead code eliminated in the browser\n Hn === !1) && r.registered[a] === void 0 && (r.registered[a] = t.styles);\n}, \"registerStyles\"), ee = /* @__PURE__ */ o(function(r, t, n) {\n Q(r, t, n);\n var a = r.key + \"-\" + t.name;\n if (r.inserted[t.name] === void 0) {\n var i = t;\n do\n r.insert(t === i ? \".\" + a : \"\", i, r.sheet, !0), i = i.next;\n while (i !== void 0);\n }\n}, \"insertStyles\");\n\n// ../node_modules/@emotion/hash/dist/emotion-hash.esm.js\nfunction pt(e) {\n for (var r = 0, t, n = 0, a = e.length; a >= 4; ++n, a -= 4)\n t = e.charCodeAt(n) & 255 | (e.charCodeAt(++n) & 255) << 8 | (e.charCodeAt(++n) & 255) << 16 | (e.charCodeAt(++n) & 255) << 24, t = /* Math.imul(k, m): */\n (t & 65535) * 1540483477 + ((t >>> 16) * 59797 << 16), t ^= /* k >>> r: */\n t >>> 24, r = /* Math.imul(k, m): */\n (t & 65535) * 1540483477 + ((t >>> 16) * 59797 << 16) ^ /* Math.imul(h, m): */\n (r & 65535) * 1540483477 + ((r >>> 16) * 59797 << 16);\n switch (a) {\n case 3:\n r ^= (e.charCodeAt(n + 2) & 255) << 16;\n case 2:\n r ^= (e.charCodeAt(n + 1) & 255) << 8;\n case 1:\n r ^= e.charCodeAt(n) & 255, r = /* Math.imul(h, m): */\n (r & 65535) * 1540483477 + ((r >>> 16) * 59797 << 16);\n }\n return r ^= r >>> 13, r = /* Math.imul(h, m): */\n (r & 65535) * 1540483477 + ((r >>> 16) * 59797 << 16), ((r ^ r >>> 15) >>> 0).toString(36);\n}\no(pt, \"murmur2\");\n\n// ../node_modules/@emotion/unitless/dist/emotion-unitless.esm.js\nvar dt = {\n animationIterationCount: 1,\n aspectRatio: 1,\n borderImageOutset: 1,\n borderImageSlice: 1,\n borderImageWidth: 1,\n boxFlex: 1,\n boxFlexGroup: 1,\n boxOrdinalGroup: 1,\n columnCount: 1,\n columns: 1,\n flex: 1,\n flexGrow: 1,\n flexPositive: 1,\n flexShrink: 1,\n flexNegative: 1,\n flexOrder: 1,\n gridRow: 1,\n gridRowEnd: 1,\n gridRowSpan: 1,\n gridRowStart: 1,\n gridColumn: 1,\n gridColumnEnd: 1,\n gridColumnSpan: 1,\n gridColumnStart: 1,\n msGridRow: 1,\n msGridRowSpan: 1,\n msGridColumn: 1,\n msGridColumnSpan: 1,\n fontWeight: 1,\n lineHeight: 1,\n opacity: 1,\n order: 1,\n orphans: 1,\n scale: 1,\n tabSize: 1,\n widows: 1,\n zIndex: 1,\n zoom: 1,\n WebkitLineClamp: 1,\n // SVG-related properties\n fillOpacity: 1,\n floodOpacity: 1,\n stopOpacity: 1,\n strokeDasharray: 1,\n strokeDashoffset: 1,\n strokeMiterlimit: 1,\n strokeOpacity: 1,\n strokeWidth: 1\n};\n\n// ../node_modules/@emotion/serialize/dist/emotion-serialize.esm.js\nvar Wn = !1, Un = /[A-Z]|^ms/g, Vn = /_EMO_([^_]+?)_([^]*?)_EMO_/g, bt = /* @__PURE__ */ o(function(r) {\n return r.charCodeAt(1) === 45;\n}, \"isCustomProperty\"), mt = /* @__PURE__ */ o(function(r) {\n return r != null && typeof r != \"boolean\";\n}, \"isProcessableValue\"), dr = /* @__PURE__ */ He(function(e) {\n return bt(e) ? e : e.replace(Un, \"-$&\").toLowerCase();\n}), ht = /* @__PURE__ */ o(function(r, t) {\n switch (r) {\n case \"animation\":\n case \"animationName\":\n if (typeof t == \"string\")\n return t.replace(Vn, function(n, a, i) {\n return H = {\n name: a,\n styles: i,\n next: H\n }, a;\n });\n }\n return dt[r] !== 1 && !bt(r) && typeof t == \"number\" && t !== 0 ? t + \"px\" : t;\n}, \"processStyleValue\"), Gn = \"Component selectors can only be used in conjunction with @emotion/babel-plugin, the swc Emotion plugin, or an\\\nother Emotion-aware compiler transform.\";\nfunction Oe(e, r, t) {\n if (t == null)\n return \"\";\n var n = t;\n if (n.__emotion_styles !== void 0)\n return n;\n switch (typeof t) {\n case \"boolean\":\n return \"\";\n case \"object\": {\n var a = t;\n if (a.anim === 1)\n return H = {\n name: a.name,\n styles: a.styles,\n next: H\n }, a.name;\n var i = t;\n if (i.styles !== void 0) {\n var s = i.next;\n if (s !== void 0)\n for (; s !== void 0; )\n H = {\n name: s.name,\n styles: s.styles,\n next: H\n }, s = s.next;\n var u = i.styles + \";\";\n return u;\n }\n return Yn(e, r, t);\n }\n case \"function\": {\n if (e !== void 0) {\n var f = H, l = t(e);\n return H = f, Oe(e, r, l);\n }\n break;\n }\n }\n var c = t;\n if (r == null)\n return c;\n var p = r[c];\n return p !== void 0 ? p : c;\n}\no(Oe, \"handleInterpolation\");\nfunction Yn(e, r, t) {\n var n = \"\";\n if (Array.isArray(t))\n for (var a = 0; a < t.length; a++)\n n += Oe(e, r, t[a]) + \";\";\n else\n for (var i in t) {\n var s = t[i];\n if (typeof s != \"object\") {\n var u = s;\n r != null && r[u] !== void 0 ? n += i + \"{\" + r[u] + \"}\" : mt(u) && (n += dr(i) + \":\" + ht(i, u) + \";\");\n } else {\n if (i === \"NO_COMPONENT_SELECTOR\" && Wn)\n throw new Error(Gn);\n if (Array.isArray(s) && typeof s[0] == \"string\" && (r == null || r[s[0]] === void 0))\n for (var f = 0; f < s.length; f++)\n mt(s[f]) && (n += dr(i) + \":\" + ht(i, s[f]) + \";\");\n else {\n var l = Oe(e, r, s);\n switch (i) {\n case \"animation\":\n case \"animationName\": {\n n += dr(i) + \":\" + l + \";\";\n break;\n }\n default:\n n += i + \"{\" + l + \"}\";\n }\n }\n }\n }\n return n;\n}\no(Yn, \"createStringFromObject\");\nvar gt = /label:\\s*([^\\s;{]+)\\s*(;|$)/g, H;\nfunction q(e, r, t) {\n if (e.length === 1 && typeof e[0] == \"object\" && e[0] !== null && e[0].styles !== void 0)\n return e[0];\n var n = !0, a = \"\";\n H = void 0;\n var i = e[0];\n if (i == null || i.raw === void 0)\n n = !1, a += Oe(t, r, i);\n else {\n var s = i;\n a += s[0];\n }\n for (var u = 1; u < e.length; u++)\n if (a += Oe(t, r, e[u]), n) {\n var f = i;\n a += f[u];\n }\n gt.lastIndex = 0;\n for (var l = \"\", c; (c = gt.exec(a)) !== null; )\n l += \"-\" + c[1];\n var p = pt(a) + l;\n return {\n name: p,\n styles: a,\n next: H\n };\n}\no(q, \"serializeStyles\");\n\n// ../node_modules/@emotion/use-insertion-effect-with-fallbacks/dist/emotion-use-insertion-effect-with-fallbacks.browser.esm.js\nimport * as Re from \"react\";\nvar qn = /* @__PURE__ */ o(function(r) {\n return r();\n}, \"syncFallback\"), vt = Re.useInsertionEffect ? Re.useInsertionEffect : !1, be = vt || qn, mr = vt || Re.useLayoutEffect;\n\n// ../node_modules/@emotion/react/dist/emotion-element-f0de968e.browser.esm.js\nvar We = !1, yt = /* @__PURE__ */ P.createContext(\n // we're doing this to avoid preconstruct's dead code elimination in this one case\n // because this module is primarily intended for the browser and node\n // but it's also required in react native and similar environments sometimes\n // and we could have a special build just for that\n // but this is much easier and the native packages\n // might use a different theme context in the future anyway\n typeof HTMLElement < \"u\" ? /* @__PURE__ */ fr({\n key: \"css\"\n }) : null\n), xt = yt.Provider;\nvar re = /* @__PURE__ */ o(function(r) {\n return /* @__PURE__ */ Kn(function(t, n) {\n var a = Jn(yt);\n return r(t, a, n);\n });\n}, \"withEmotionCache\"), $ = /* @__PURE__ */ P.createContext({}), wt = /* @__PURE__ */ o(function() {\n return P.useContext($);\n}, \"useTheme\"), Xn = /* @__PURE__ */ o(function(r, t) {\n if (typeof t == \"function\") {\n var n = t(r);\n return n;\n }\n return N({}, r, t);\n}, \"getTheme\"), Zn = /* @__PURE__ */ ur(function(e) {\n return ur(function(r) {\n return Xn(e, r);\n });\n}), Et = /* @__PURE__ */ o(function(r) {\n var t = P.useContext($);\n return r.theme !== t && (t = Zn(t)(r.theme)), /* @__PURE__ */ P.createElement($.Provider, {\n value: t\n }, r.children);\n}, \"ThemeProvider\");\nfunction St(e) {\n var r = e.displayName || e.name || \"Component\", t = /* @__PURE__ */ P.forwardRef(/* @__PURE__ */ o(function(a, i) {\n var s = P.useContext($);\n return /* @__PURE__ */ P.createElement(e, N({\n theme: s,\n ref: i\n }, a));\n }, \"render\"));\n return t.displayName = \"WithTheme(\" + r + \")\", lt(t, e);\n}\no(St, \"withTheme\");\nvar Ue = {}.hasOwnProperty, hr = \"__EMOTION_TYPE_PLEASE_DO_NOT_USE__\", Tt = /* @__PURE__ */ o(function(r, t) {\n var n = {};\n for (var a in t)\n Ue.call(t, a) && (n[a] = t[a]);\n return n[hr] = r, n;\n}, \"createEmotionProps\"), Qn = /* @__PURE__ */ o(function(r) {\n var t = r.cache, n = r.serialized, a = r.isStringTag;\n return Q(t, n, a), be(function() {\n return ee(t, n, a);\n }), null;\n}, \"Insertion\"), ea = /* @__PURE__ */ re(function(e, r, t) {\n var n = e.css;\n typeof n == \"string\" && r.registered[n] !== void 0 && (n = r.registered[n]);\n var a = e[hr], i = [n], s = \"\";\n typeof e.className == \"string\" ? s = ge(r.registered, i, e.className) : e.className != null && (s = e.className + \" \");\n var u = q(i, void 0, P.useContext($));\n s += r.key + \"-\" + u.name;\n var f = {};\n for (var l in e)\n Ue.call(e, l) && l !== \"css\" && l !== hr && !We && (f[l] = e[l]);\n return f.className = s, t && (f.ref = t), /* @__PURE__ */ P.createElement(P.Fragment, null, /* @__PURE__ */ P.createElement(Qn, {\n cache: r,\n serialized: u,\n isStringTag: typeof a == \"string\"\n }), /* @__PURE__ */ P.createElement(a, f));\n}), Ct = ea;\n\n// ../node_modules/@emotion/react/dist/emotion-react.browser.esm.js\nimport * as D from \"react\";\nvar Oi = ar(pr());\nvar gr = /* @__PURE__ */ o(function(r, t) {\n var n = arguments;\n if (t == null || !Ue.call(t, \"css\"))\n return D.createElement.apply(void 0, n);\n var a = n.length, i = new Array(a);\n i[0] = Ct, i[1] = Tt(r, t);\n for (var s = 2; s < a; s++)\n i[s] = n[s];\n return D.createElement.apply(null, i);\n}, \"jsx\");\n(function(e) {\n var r;\n r || (r = e.JSX || (e.JSX = {}));\n})(gr || (gr = {}));\nvar ra = /* @__PURE__ */ re(function(e, r) {\n var t = e.styles, n = q([t], void 0, D.useContext($)), a = D.useRef();\n return mr(function() {\n var i = r.key + \"-global\", s = new r.sheet.constructor({\n key: i,\n nonce: r.sheet.nonce,\n container: r.sheet.container,\n speedy: r.sheet.isSpeedy\n }), u = !1, f = document.querySelector('style[data-emotion=\"' + i + \" \" + n.name + '\"]');\n return r.sheet.tags.length && (s.before = r.sheet.tags[0]), f !== null && (u = !0, f.setAttribute(\"data-emotion\", i), s.hydrate([f])), a.\n current = [s, u], function() {\n s.flush();\n };\n }, [r]), mr(function() {\n var i = a.current, s = i[0], u = i[1];\n if (u) {\n i[1] = !1;\n return;\n }\n if (n.next !== void 0 && ee(r, n.next, !0), s.tags.length) {\n var f = s.tags[s.tags.length - 1].nextElementSibling;\n s.before = f, s.flush();\n }\n r.insert(\"\", n, s, !1);\n }, [r, n.name]), null;\n});\nfunction Ae() {\n for (var e = arguments.length, r = new Array(e), t = 0; t < e; t++)\n r[t] = arguments[t];\n return q(r);\n}\no(Ae, \"css\");\nfunction ve() {\n var e = Ae.apply(void 0, arguments), r = \"animation-\" + e.name;\n return {\n name: r,\n styles: \"@keyframes \" + r + \"{\" + e.styles + \"}\",\n anim: 1,\n toString: /* @__PURE__ */ o(function() {\n return \"_EMO_\" + this.name + \"_\" + this.styles + \"_EMO_\";\n }, \"toString\")\n };\n}\no(ve, \"keyframes\");\nvar ta = /* @__PURE__ */ o(function e(r) {\n for (var t = r.length, n = 0, a = \"\"; n < t; n++) {\n var i = r[n];\n if (i != null) {\n var s = void 0;\n switch (typeof i) {\n case \"boolean\":\n break;\n case \"object\": {\n if (Array.isArray(i))\n s = e(i);\n else {\n s = \"\";\n for (var u in i)\n i[u] && u && (s && (s += \" \"), s += u);\n }\n break;\n }\n default:\n s = i;\n }\n s && (a && (a += \" \"), a += s);\n }\n }\n return a;\n}, \"classnames\");\nfunction na(e, r, t) {\n var n = [], a = ge(e, n, t);\n return n.length < 2 ? t : a + r(n);\n}\no(na, \"merge\");\nvar aa = /* @__PURE__ */ o(function(r) {\n var t = r.cache, n = r.serializedArr;\n return be(function() {\n for (var a = 0; a < n.length; a++)\n ee(t, n[a], !1);\n }), null;\n}, \"Insertion\"), oa = /* @__PURE__ */ re(function(e, r) {\n var t = !1, n = [], a = /* @__PURE__ */ o(function() {\n if (t && We)\n throw new Error(\"css can only be used during render\");\n for (var l = arguments.length, c = new Array(l), p = 0; p < l; p++)\n c[p] = arguments[p];\n var m = q(c, r.registered);\n return n.push(m), Q(r, m, !1), r.key + \"-\" + m.name;\n }, \"css\"), i = /* @__PURE__ */ o(function() {\n if (t && We)\n throw new Error(\"cx can only be used during render\");\n for (var l = arguments.length, c = new Array(l), p = 0; p < l; p++)\n c[p] = arguments[p];\n return na(r.registered, a, ta(c));\n }, \"cx\"), s = {\n css: a,\n cx: i,\n theme: D.useContext($)\n }, u = e.children(s);\n return t = !0, /* @__PURE__ */ D.createElement(D.Fragment, null, /* @__PURE__ */ D.createElement(aa, {\n cache: r,\n serializedArr: n\n }), u);\n});\n\n// ../node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.esm.js\nimport * as J from \"react\";\n\n// ../node_modules/@emotion/is-prop-valid/dist/emotion-is-prop-valid.esm.js\nvar ia = /^((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)-.*))$/,\nbr = /* @__PURE__ */ He(\n function(e) {\n return ia.test(e) || e.charCodeAt(0) === 111 && e.charCodeAt(1) === 110 && e.charCodeAt(2) < 91;\n }\n /* Z+1 */\n);\n\n// ../node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.esm.js\nvar sa = !1, ua = br, fa = /* @__PURE__ */ o(function(r) {\n return r !== \"theme\";\n}, \"testOmitPropsOnComponent\"), Ot = /* @__PURE__ */ o(function(r) {\n return typeof r == \"string\" && // 96 is one less than the char code\n // for \"a\" so this is checking that\n // it's a lowercase character\n r.charCodeAt(0) > 96 ? ua : fa;\n}, \"getDefaultShouldForwardProp\"), Rt = /* @__PURE__ */ o(function(r, t, n) {\n var a;\n if (t) {\n var i = t.shouldForwardProp;\n a = r.__emotion_forwardProp && i ? function(s) {\n return r.__emotion_forwardProp(s) && i(s);\n } : i;\n }\n return typeof a != \"function\" && n && (a = r.__emotion_forwardProp), a;\n}, \"composeShouldForwardProps\"), ca = /* @__PURE__ */ o(function(r) {\n var t = r.cache, n = r.serialized, a = r.isStringTag;\n return Q(t, n, a), be(function() {\n return ee(t, n, a);\n }), null;\n}, \"Insertion\"), At = /* @__PURE__ */ o(function e(r, t) {\n var n = r.__emotion_real === r, a = n && r.__emotion_base || r, i, s;\n t !== void 0 && (i = t.label, s = t.target);\n var u = Rt(r, t, n), f = u || Ot(a), l = !f(\"as\");\n return function() {\n var c = arguments, p = n && r.__emotion_styles !== void 0 ? r.__emotion_styles.slice(0) : [];\n if (i !== void 0 && p.push(\"label:\" + i + \";\"), c[0] == null || c[0].raw === void 0)\n p.push.apply(p, c);\n else {\n var m = c[0];\n p.push(m[0]);\n for (var w = c.length, b = 1; b < w; b++)\n p.push(c[b], m[b]);\n }\n var d = re(function(v, y, x) {\n var A = l && v.as || a, S = \"\", R = [], F = v;\n if (v.theme == null) {\n F = {};\n for (var T in v)\n F[T] = v[T];\n F.theme = J.useContext($);\n }\n typeof v.className == \"string\" ? S = ge(y.registered, R, v.className) : v.className != null && (S = v.className + \" \");\n var ae = q(p.concat(R), y.registered, F);\n S += y.key + \"-\" + ae.name, s !== void 0 && (S += \" \" + s);\n var oe = l && u === void 0 ? Ot(A) : f, V = {};\n for (var G in v)\n l && G === \"as\" || oe(G) && (V[G] = v[G]);\n return V.className = S, x && (V.ref = x), /* @__PURE__ */ J.createElement(J.Fragment, null, /* @__PURE__ */ J.createElement(ca, {\n cache: y,\n serialized: ae,\n isStringTag: typeof A == \"string\"\n }), /* @__PURE__ */ J.createElement(A, V));\n });\n return d.displayName = i !== void 0 ? i : \"Styled(\" + (typeof a == \"string\" ? a : a.displayName || a.name || \"Component\") + \")\", d.defaultProps =\n r.defaultProps, d.__emotion_real = d, d.__emotion_base = a, d.__emotion_styles = p, d.__emotion_forwardProp = u, Object.defineProperty(d,\n \"toString\", {\n value: /* @__PURE__ */ o(function() {\n return s === void 0 && sa ? \"NO_COMPONENT_SELECTOR\" : \".\" + s;\n }, \"value\")\n }), d.withComponent = function(v, y) {\n var x = e(v, N({}, t, y, {\n shouldForwardProp: Rt(d, y, !0)\n }));\n return x.apply(void 0, p);\n }, d;\n };\n}, \"createStyled\");\n\n// ../node_modules/@emotion/styled/dist/emotion-styled.browser.esm.js\nimport \"react\";\nvar la = [\n \"a\",\n \"abbr\",\n \"address\",\n \"area\",\n \"article\",\n \"aside\",\n \"audio\",\n \"b\",\n \"base\",\n \"bdi\",\n \"bdo\",\n \"big\",\n \"blockquote\",\n \"body\",\n \"br\",\n \"button\",\n \"canvas\",\n \"caption\",\n \"cite\",\n \"code\",\n \"col\",\n \"colgroup\",\n \"data\",\n \"datalist\",\n \"dd\",\n \"del\",\n \"details\",\n \"dfn\",\n \"dialog\",\n \"div\",\n \"dl\",\n \"dt\",\n \"em\",\n \"embed\",\n \"fieldset\",\n \"figcaption\",\n \"figure\",\n \"footer\",\n \"form\",\n \"h1\",\n \"h2\",\n \"h3\",\n \"h4\",\n \"h5\",\n \"h6\",\n \"head\",\n \"header\",\n \"hgroup\",\n \"hr\",\n \"html\",\n \"i\",\n \"iframe\",\n \"img\",\n \"input\",\n \"ins\",\n \"kbd\",\n \"keygen\",\n \"label\",\n \"legend\",\n \"li\",\n \"link\",\n \"main\",\n \"map\",\n \"mark\",\n \"marquee\",\n \"menu\",\n \"menuitem\",\n \"meta\",\n \"meter\",\n \"nav\",\n \"noscript\",\n \"object\",\n \"ol\",\n \"optgroup\",\n \"option\",\n \"output\",\n \"p\",\n \"param\",\n \"picture\",\n \"pre\",\n \"progress\",\n \"q\",\n \"rp\",\n \"rt\",\n \"ruby\",\n \"s\",\n \"samp\",\n \"script\",\n \"section\",\n \"select\",\n \"small\",\n \"source\",\n \"span\",\n \"strong\",\n \"style\",\n \"sub\",\n \"summary\",\n \"sup\",\n \"table\",\n \"tbody\",\n \"td\",\n \"textarea\",\n \"tfoot\",\n \"th\",\n \"thead\",\n \"time\",\n \"title\",\n \"tr\",\n \"track\",\n \"u\",\n \"ul\",\n \"var\",\n \"video\",\n \"wbr\",\n // SVG\n \"circle\",\n \"clipPath\",\n \"defs\",\n \"ellipse\",\n \"foreignObject\",\n \"g\",\n \"image\",\n \"line\",\n \"linearGradient\",\n \"mask\",\n \"path\",\n \"pattern\",\n \"polygon\",\n \"polyline\",\n \"radialGradient\",\n \"rect\",\n \"stop\",\n \"svg\",\n \"text\",\n \"tspan\"\n], vr = At.bind(null);\nla.forEach(function(e) {\n vr[e] = vr(e);\n});\n\n// ../node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js\nfunction Ft(e) {\n if (e === void 0) throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n return e;\n}\no(Ft, \"_assertThisInitialized\");\n\n// ../node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js\nfunction K(e, r) {\n return K = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(t, n) {\n return t.__proto__ = n, t;\n }, K(e, r);\n}\no(K, \"_setPrototypeOf\");\n\n// ../node_modules/@babel/runtime/helpers/esm/inheritsLoose.js\nfunction _t(e, r) {\n e.prototype = Object.create(r.prototype), e.prototype.constructor = e, K(e, r);\n}\no(_t, \"_inheritsLoose\");\n\n// ../node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js\nfunction Ve(e) {\n return Ve = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function(r) {\n return r.__proto__ || Object.getPrototypeOf(r);\n }, Ve(e);\n}\no(Ve, \"_getPrototypeOf\");\n\n// ../node_modules/@babel/runtime/helpers/esm/isNativeFunction.js\nfunction It(e) {\n try {\n return Function.toString.call(e).indexOf(\"[native code]\") !== -1;\n } catch {\n return typeof e == \"function\";\n }\n}\no(It, \"_isNativeFunction\");\n\n// ../node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js\nfunction yr() {\n try {\n var e = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {\n }));\n } catch {\n }\n return (yr = /* @__PURE__ */ o(function() {\n return !!e;\n }, \"_isNativeReflectConstruct\"))();\n}\no(yr, \"_isNativeReflectConstruct\");\n\n// ../node_modules/@babel/runtime/helpers/esm/construct.js\nfunction Pt(e, r, t) {\n if (yr()) return Reflect.construct.apply(null, arguments);\n var n = [null];\n n.push.apply(n, r);\n var a = new (e.bind.apply(e, n))();\n return t && K(a, t.prototype), a;\n}\no(Pt, \"_construct\");\n\n// ../node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js\nfunction Ge(e) {\n var r = typeof Map == \"function\" ? /* @__PURE__ */ new Map() : void 0;\n return Ge = /* @__PURE__ */ o(function(n) {\n if (n === null || !It(n)) return n;\n if (typeof n != \"function\") throw new TypeError(\"Super expression must either be null or a function\");\n if (r !== void 0) {\n if (r.has(n)) return r.get(n);\n r.set(n, a);\n }\n function a() {\n return Pt(n, arguments, Ve(this).constructor);\n }\n return o(a, \"Wrapper\"), a.prototype = Object.create(n.prototype, {\n constructor: {\n value: a,\n enumerable: !1,\n writable: !0,\n configurable: !0\n }\n }), K(a, n);\n }, \"_wrapNativeSuper\"), Ge(e);\n}\no(Ge, \"_wrapNativeSuper\");\n\n// ../node_modules/polished/dist/polished.esm.js\nvar pa = {\n 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\\\n.4, lightness: 0.75 }).\n\n`,\n 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, satura\\\ntion: 0.4, lightness: 0.75, alpha: 0.7 }).\n\n`,\n 3: `Passed an incorrect argument to a color function, please pass a string representation of a color.\n\n`,\n 4: `Couldn't generate valid rgb string from %s, it returned %s.\n\n`,\n 5: `Couldn't parse the color string. Please provide the color as a string in hex, rgb, rgba, hsl or hsla notation.\n\n`,\n 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, bl\\\nue: 100 }).\n\n`,\n 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: \\\n205, blue: 100, alpha: 0.75 }).\n\n`,\n 8: `Passed invalid argument to toColorString, please pass a RgbColor, RgbaColor, HslColor or HslaColor object.\n\n`,\n 9: `Please provide a number of steps to the modularScale helper.\n\n`,\n 10: `Please pass a number or one of the predefined scales to the modularScale helper as the ratio.\n\n`,\n 11: `Invalid value passed as base to modularScale, expected number or em string but got \"%s\"\n\n`,\n 12: `Expected a string ending in \"px\" or a number passed as the first argument to %s(), got \"%s\" instead.\n\n`,\n 13: `Expected a string ending in \"px\" or a number passed as the second argument to %s(), got \"%s\" instead.\n\n`,\n 14: `Passed invalid pixel value (\"%s\") to %s(), please pass a value like \"12px\" or 12.\n\n`,\n 15: `Passed invalid base value (\"%s\") to %s(), please pass a value like \"12px\" or 12.\n\n`,\n 16: `You must provide a template to this method.\n\n`,\n 17: `You passed an unsupported selector state to this method.\n\n`,\n 18: `minScreen and maxScreen must be provided as stringified numbers with the same units.\n\n`,\n 19: `fromSize and toSize must be provided as stringified numbers with the same units.\n\n`,\n 20: `expects either an array of objects or a single object with the properties prop, fromSize, and toSize.\n\n`,\n 21: \"expects the objects in the first argument array to have the properties `prop`, `fromSize`, and `toSize`.\\n\\n\",\n 22: \"expects the first argument object to have the properties `prop`, `fromSize`, and `toSize`.\\n\\n\",\n 23: `fontFace expects a name of a font-family.\n\n`,\n 24: `fontFace expects either the path to the font file(s) or a name of a local copy.\n\n`,\n 25: `fontFace expects localFonts to be an array.\n\n`,\n 26: `fontFace expects fileFormats to be an array.\n\n`,\n 27: `radialGradient requries at least 2 color-stops to properly render.\n\n`,\n 28: `Please supply a filename to retinaImage() as the first argument.\n\n`,\n 29: `Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'.\n\n`,\n 30: \"Passed an invalid value to `height` or `width`. Please provide a pixel based unit.\\n\\n\",\n 31: `The animation shorthand only takes 8 arguments. See the specification for more information: http://mdn.io/animation\n\n`,\n 32: `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')\n\n`,\n 33: `The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation\n\n`,\n 34: `borderRadius expects a radius value as a string or number as the second argument.\n\n`,\n 35: `borderRadius expects one of \"top\", \"bottom\", \"left\" or \"right\" as the first argument.\n\n`,\n 36: `Property must be a string value.\n\n`,\n 37: `Syntax Error at %s.\n\n`,\n 38: `Formula contains a function that needs parentheses at %s.\n\n`,\n 39: `Formula is missing closing parenthesis at %s.\n\n`,\n 40: `Formula has too many closing parentheses at %s.\n\n`,\n 41: `All values in a formula must have the same unit or be unitless.\n\n`,\n 42: `Please provide a number of steps to the modularScale helper.\n\n`,\n 43: `Please pass a number or one of the predefined scales to the modularScale helper as the ratio.\n\n`,\n 44: `Invalid value passed as base to modularScale, expected number or em/rem string but got %s.\n\n`,\n 45: `Passed invalid argument to hslToColorString, please pass a HslColor or HslaColor object.\n\n`,\n 46: `Passed invalid argument to rgbToColorString, please pass a RgbColor or RgbaColor object.\n\n`,\n 47: `minScreen and maxScreen must be provided as stringified numbers with the same units.\n\n`,\n 48: `fromSize and toSize must be provided as stringified numbers with the same units.\n\n`,\n 49: `Expects either an array of objects or a single object with the properties prop, fromSize, and toSize.\n\n`,\n 50: `Expects the objects in the first argument array to have the properties prop, fromSize, and toSize.\n\n`,\n 51: `Expects the first argument object to have the properties prop, fromSize, and toSize.\n\n`,\n 52: `fontFace expects either the path to the font file(s) or a name of a local copy.\n\n`,\n 53: `fontFace expects localFonts to be an array.\n\n`,\n 54: `fontFace expects fileFormats to be an array.\n\n`,\n 55: `fontFace expects a name of a font-family.\n\n`,\n 56: `linearGradient requries at least 2 color-stops to properly render.\n\n`,\n 57: `radialGradient requries at least 2 color-stops to properly render.\n\n`,\n 58: `Please supply a filename to retinaImage() as the first argument.\n\n`,\n 59: `Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'.\n\n`,\n 60: \"Passed an invalid value to `height` or `width`. Please provide a pixel based unit.\\n\\n\",\n 61: `Property must be a string value.\n\n`,\n 62: `borderRadius expects a radius value as a string or number as the second argument.\n\n`,\n 63: `borderRadius expects one of \"top\", \"bottom\", \"left\" or \"right\" as the first argument.\n\n`,\n 64: `The animation shorthand only takes 8 arguments. See the specification for more information: http://mdn.io/animation.\n\n`,\n 65: `To pass multiple animations please supply them in arrays, e.g. animation(['rotate', '2s'], ['move', '1s'])\\\\nTo pass a single animatio\\\nn please supply them in simple values, e.g. animation('rotate', '2s').\n\n`,\n 66: `The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation.\n\n`,\n 67: `You must provide a template to this method.\n\n`,\n 68: `You passed an unsupported selector state to this method.\n\n`,\n 69: `Expected a string ending in \"px\" or a number passed as the first argument to %s(), got %s instead.\n\n`,\n 70: `Expected a string ending in \"px\" or a number passed as the second argument to %s(), got %s instead.\n\n`,\n 71: `Passed invalid pixel value %s to %s(), please pass a value like \"12px\" or 12.\n\n`,\n 72: `Passed invalid base value %s to %s(), please pass a value like \"12px\" or 12.\n\n`,\n 73: `Please provide a valid CSS variable.\n\n`,\n 74: `CSS variable not found and no default was provided.\n\n`,\n 75: `important requires a valid style object, got a %s instead.\n\n`,\n 76: `fromSize and toSize must be provided as stringified numbers with the same units as minScreen and maxScreen.\n\n`,\n 77: `remToPx expects a value in \"rem\" but you provided it in \"%s\".\n\n`,\n 78: `base must be set in \"px\" or \"%\" but you set it in \"%s\".\n`\n};\nfunction da() {\n for (var e = arguments.length, r = new Array(e), t = 0; t < e; t++)\n r[t] = arguments[t];\n var n = r[0], a = [], i;\n for (i = 1; i < r.length; i += 1)\n a.push(r[i]);\n return a.forEach(function(s) {\n n = n.replace(/%[a-z]/, s);\n }), n;\n}\no(da, \"format\");\nvar W = /* @__PURE__ */ function(e) {\n _t(r, e);\n function r(t) {\n for (var n, a = arguments.length, i = new Array(a > 1 ? a - 1 : 0), s = 1; s < a; s++)\n i[s - 1] = arguments[s];\n return n = e.call(this, da.apply(void 0, [pa[t]].concat(i))) || this, Ft(n);\n }\n return o(r, \"PolishedError\"), r;\n}(/* @__PURE__ */ Ge(Error));\nfunction xr(e) {\n return Math.round(e * 255);\n}\no(xr, \"colorToInt\");\nfunction ma(e, r, t) {\n return xr(e) + \",\" + xr(r) + \",\" + xr(t);\n}\no(ma, \"convertToInt\");\nfunction Fe(e, r, t, n) {\n if (n === void 0 && (n = ma), r === 0)\n return n(t, t, t);\n var a = (e % 360 + 360) % 360 / 60, i = (1 - Math.abs(2 * t - 1)) * r, s = i * (1 - Math.abs(a % 2 - 1)), u = 0, f = 0, l = 0;\n a >= 0 && a < 1 ? (u = i, f = s) : a >= 1 && a < 2 ? (u = s, f = i) : a >= 2 && a < 3 ? (f = i, l = s) : a >= 3 && a < 4 ? (f = s, l = i) :\n a >= 4 && a < 5 ? (u = s, l = i) : a >= 5 && a < 6 && (u = i, l = s);\n var c = t - i / 2, p = u + c, m = f + c, w = l + c;\n return n(p, m, w);\n}\no(Fe, \"hslToRgb\");\nvar Lt = {\n aliceblue: \"f0f8ff\",\n antiquewhite: \"faebd7\",\n aqua: \"00ffff\",\n aquamarine: \"7fffd4\",\n azure: \"f0ffff\",\n beige: \"f5f5dc\",\n bisque: \"ffe4c4\",\n black: \"000\",\n blanchedalmond: \"ffebcd\",\n blue: \"0000ff\",\n blueviolet: \"8a2be2\",\n brown: \"a52a2a\",\n burlywood: \"deb887\",\n cadetblue: \"5f9ea0\",\n chartreuse: \"7fff00\",\n chocolate: \"d2691e\",\n coral: \"ff7f50\",\n cornflowerblue: \"6495ed\",\n cornsilk: \"fff8dc\",\n crimson: \"dc143c\",\n cyan: \"00ffff\",\n darkblue: \"00008b\",\n darkcyan: \"008b8b\",\n darkgoldenrod: \"b8860b\",\n darkgray: \"a9a9a9\",\n darkgreen: \"006400\",\n darkgrey: \"a9a9a9\",\n darkkhaki: \"bdb76b\",\n darkmagenta: \"8b008b\",\n darkolivegreen: \"556b2f\",\n darkorange: \"ff8c00\",\n darkorchid: \"9932cc\",\n darkred: \"8b0000\",\n darksalmon: \"e9967a\",\n darkseagreen: \"8fbc8f\",\n darkslateblue: \"483d8b\",\n darkslategray: \"2f4f4f\",\n darkslategrey: \"2f4f4f\",\n darkturquoise: \"00ced1\",\n darkviolet: \"9400d3\",\n deeppink: \"ff1493\",\n deepskyblue: \"00bfff\",\n dimgray: \"696969\",\n dimgrey: \"696969\",\n dodgerblue: \"1e90ff\",\n firebrick: \"b22222\",\n floralwhite: \"fffaf0\",\n forestgreen: \"228b22\",\n fuchsia: \"ff00ff\",\n gainsboro: \"dcdcdc\",\n ghostwhite: \"f8f8ff\",\n gold: \"ffd700\",\n goldenrod: \"daa520\",\n gray: \"808080\",\n green: \"008000\",\n greenyellow: \"adff2f\",\n grey: \"808080\",\n honeydew: \"f0fff0\",\n hotpink: \"ff69b4\",\n indianred: \"cd5c5c\",\n indigo: \"4b0082\",\n ivory: \"fffff0\",\n khaki: \"f0e68c\",\n lavender: \"e6e6fa\",\n lavenderblush: \"fff0f5\",\n lawngreen: \"7cfc00\",\n lemonchiffon: \"fffacd\",\n lightblue: \"add8e6\",\n lightcoral: \"f08080\",\n lightcyan: \"e0ffff\",\n lightgoldenrodyellow: \"fafad2\",\n lightgray: \"d3d3d3\",\n lightgreen: \"90ee90\",\n lightgrey: \"d3d3d3\",\n lightpink: \"ffb6c1\",\n lightsalmon: \"ffa07a\",\n lightseagreen: \"20b2aa\",\n lightskyblue: \"87cefa\",\n lightslategray: \"789\",\n lightslategrey: \"789\",\n lightsteelblue: \"b0c4de\",\n lightyellow: \"ffffe0\",\n lime: \"0f0\",\n limegreen: \"32cd32\",\n linen: \"faf0e6\",\n magenta: \"f0f\",\n maroon: \"800000\",\n mediumaquamarine: \"66cdaa\",\n mediumblue: \"0000cd\",\n mediumorchid: \"ba55d3\",\n mediumpurple: \"9370db\",\n mediumseagreen: \"3cb371\",\n mediumslateblue: \"7b68ee\",\n mediumspringgreen: \"00fa9a\",\n mediumturquoise: \"48d1cc\",\n mediumvioletred: \"c71585\",\n midnightblue: \"191970\",\n mintcream: \"f5fffa\",\n mistyrose: \"ffe4e1\",\n moccasin: \"ffe4b5\",\n navajowhite: \"ffdead\",\n navy: \"000080\",\n oldlace: \"fdf5e6\",\n olive: \"808000\",\n olivedrab: \"6b8e23\",\n orange: \"ffa500\",\n orangered: \"ff4500\",\n orchid: \"da70d6\",\n palegoldenrod: \"eee8aa\",\n palegreen: \"98fb98\",\n paleturquoise: \"afeeee\",\n palevioletred: \"db7093\",\n papayawhip: \"ffefd5\",\n peachpuff: \"ffdab9\",\n peru: \"cd853f\",\n pink: \"ffc0cb\",\n plum: \"dda0dd\",\n powderblue: \"b0e0e6\",\n purple: \"800080\",\n rebeccapurple: \"639\",\n red: \"f00\",\n rosybrown: \"bc8f8f\",\n royalblue: \"4169e1\",\n saddlebrown: \"8b4513\",\n salmon: \"fa8072\",\n sandybrown: \"f4a460\",\n seagreen: \"2e8b57\",\n seashell: \"fff5ee\",\n sienna: \"a0522d\",\n silver: \"c0c0c0\",\n skyblue: \"87ceeb\",\n slateblue: \"6a5acd\",\n slategray: \"708090\",\n slategrey: \"708090\",\n snow: \"fffafa\",\n springgreen: \"00ff7f\",\n steelblue: \"4682b4\",\n tan: \"d2b48c\",\n teal: \"008080\",\n thistle: \"d8bfd8\",\n tomato: \"ff6347\",\n turquoise: \"40e0d0\",\n violet: \"ee82ee\",\n wheat: \"f5deb3\",\n white: \"fff\",\n whitesmoke: \"f5f5f5\",\n yellow: \"ff0\",\n yellowgreen: \"9acd32\"\n};\nfunction ha(e) {\n if (typeof e != \"string\") return e;\n var r = e.toLowerCase();\n return Lt[r] ? \"#\" + Lt[r] : e;\n}\no(ha, \"nameToHex\");\nvar ga = /^#[a-fA-F0-9]{6}$/, ba = /^#[a-fA-F0-9]{8}$/, va = /^#[a-fA-F0-9]{3}$/, ya = /^#[a-fA-F0-9]{4}$/, wr = /^rgb\\(\\s*(\\d{1,3})\\s*(?:,)?\\s*(\\d{1,3})\\s*(?:,)?\\s*(\\d{1,3})\\s*\\)$/i,\nxa = /^rgb(?:a)?\\(\\s*(\\d{1,3})\\s*(?:,)?\\s*(\\d{1,3})\\s*(?:,)?\\s*(\\d{1,3})\\s*(?:,|\\/)\\s*([-+]?\\d*[.]?\\d+[%]?)\\s*\\)$/i, wa = /^hsl\\(\\s*(\\d{0,3}[.]?[0-9]+(?:deg)?)\\s*(?:,)?\\s*(\\d{1,3}[.]?[0-9]?)%\\s*(?:,)?\\s*(\\d{1,3}[.]?[0-9]?)%\\s*\\)$/i,\nEa = /^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;\nfunction qe(e) {\n if (typeof e != \"string\")\n throw new W(3);\n var r = ha(e);\n if (r.match(ga))\n return {\n red: parseInt(\"\" + r[1] + r[2], 16),\n green: parseInt(\"\" + r[3] + r[4], 16),\n blue: parseInt(\"\" + r[5] + r[6], 16)\n };\n if (r.match(ba)) {\n var t = parseFloat((parseInt(\"\" + r[7] + r[8], 16) / 255).toFixed(2));\n return {\n red: parseInt(\"\" + r[1] + r[2], 16),\n green: parseInt(\"\" + r[3] + r[4], 16),\n blue: parseInt(\"\" + r[5] + r[6], 16),\n alpha: t\n };\n }\n if (r.match(va))\n return {\n red: parseInt(\"\" + r[1] + r[1], 16),\n green: parseInt(\"\" + r[2] + r[2], 16),\n blue: parseInt(\"\" + r[3] + r[3], 16)\n };\n if (r.match(ya)) {\n var n = parseFloat((parseInt(\"\" + r[4] + r[4], 16) / 255).toFixed(2));\n return {\n red: parseInt(\"\" + r[1] + r[1], 16),\n green: parseInt(\"\" + r[2] + r[2], 16),\n blue: parseInt(\"\" + r[3] + r[3], 16),\n alpha: n\n };\n }\n var a = wr.exec(r);\n if (a)\n return {\n red: parseInt(\"\" + a[1], 10),\n green: parseInt(\"\" + a[2], 10),\n blue: parseInt(\"\" + a[3], 10)\n };\n var i = xa.exec(r.substring(0, 50));\n if (i)\n return {\n red: parseInt(\"\" + i[1], 10),\n green: parseInt(\"\" + i[2], 10),\n blue: parseInt(\"\" + i[3], 10),\n alpha: parseFloat(\"\" + i[4]) > 1 ? parseFloat(\"\" + i[4]) / 100 : parseFloat(\"\" + i[4])\n };\n var s = wa.exec(r);\n if (s) {\n var u = parseInt(\"\" + s[1], 10), f = parseInt(\"\" + s[2], 10) / 100, l = parseInt(\"\" + s[3], 10) / 100, c = \"rgb(\" + Fe(u, f, l) + \")\", p = wr.\n exec(c);\n if (!p)\n throw new W(4, r, c);\n return {\n red: parseInt(\"\" + p[1], 10),\n green: parseInt(\"\" + p[2], 10),\n blue: parseInt(\"\" + p[3], 10)\n };\n }\n var m = Ea.exec(r.substring(0, 50));\n if (m) {\n var w = parseInt(\"\" + m[1], 10), b = parseInt(\"\" + m[2], 10) / 100, d = parseInt(\"\" + m[3], 10) / 100, v = \"rgb(\" + Fe(w, b, d) + \")\", y = wr.\n exec(v);\n if (!y)\n throw new W(4, r, v);\n return {\n red: parseInt(\"\" + y[1], 10),\n green: parseInt(\"\" + y[2], 10),\n blue: parseInt(\"\" + y[3], 10),\n alpha: parseFloat(\"\" + m[4]) > 1 ? parseFloat(\"\" + m[4]) / 100 : parseFloat(\"\" + m[4])\n };\n }\n throw new W(5);\n}\no(qe, \"parseToRgb\");\nfunction Sa(e) {\n var r = e.red / 255, t = e.green / 255, n = e.blue / 255, a = Math.max(r, t, n), i = Math.min(r, t, n), s = (a + i) / 2;\n if (a === i)\n return e.alpha !== void 0 ? {\n hue: 0,\n saturation: 0,\n lightness: s,\n alpha: e.alpha\n } : {\n hue: 0,\n saturation: 0,\n lightness: s\n };\n var u, f = a - i, l = s > 0.5 ? f / (2 - a - i) : f / (a + i);\n switch (a) {\n case r:\n u = (t - n) / f + (t < n ? 6 : 0);\n break;\n case t:\n u = (n - r) / f + 2;\n break;\n default:\n u = (r - t) / f + 4;\n break;\n }\n return u *= 60, e.alpha !== void 0 ? {\n hue: u,\n saturation: l,\n lightness: s,\n alpha: e.alpha\n } : {\n hue: u,\n saturation: l,\n lightness: s\n };\n}\no(Sa, \"rgbToHsl\");\nfunction zt(e) {\n return Sa(qe(e));\n}\no(zt, \"parseToHsl\");\nvar Ta = /* @__PURE__ */ o(function(r) {\n return r.length === 7 && r[1] === r[2] && r[3] === r[4] && r[5] === r[6] ? \"#\" + r[1] + r[3] + r[5] : r;\n}, \"reduceHexValue\"), Sr = Ta;\nfunction te(e) {\n var r = e.toString(16);\n return r.length === 1 ? \"0\" + r : r;\n}\no(te, \"numberToHex\");\nfunction Er(e) {\n return te(Math.round(e * 255));\n}\no(Er, \"colorToHex\");\nfunction Ca(e, r, t) {\n return Sr(\"#\" + Er(e) + Er(r) + Er(t));\n}\no(Ca, \"convertToHex\");\nfunction Ye(e, r, t) {\n return Fe(e, r, t, Ca);\n}\no(Ye, \"hslToHex\");\nfunction Oa(e, r, t) {\n if (typeof e == \"number\" && typeof r == \"number\" && typeof t == \"number\")\n return Ye(e, r, t);\n if (typeof e == \"object\" && r === void 0 && t === void 0)\n return Ye(e.hue, e.saturation, e.lightness);\n throw new W(1);\n}\no(Oa, \"hsl\");\nfunction Ra(e, r, t, n) {\n if (typeof e == \"number\" && typeof r == \"number\" && typeof t == \"number\" && typeof n == \"number\")\n return n >= 1 ? Ye(e, r, t) : \"rgba(\" + Fe(e, r, t) + \",\" + n + \")\";\n if (typeof e == \"object\" && r === void 0 && t === void 0 && n === void 0)\n return e.alpha >= 1 ? Ye(e.hue, e.saturation, e.lightness) : \"rgba(\" + Fe(e.hue, e.saturation, e.lightness) + \",\" + e.alpha + \")\";\n throw new W(2);\n}\no(Ra, \"hsla\");\nfunction Tr(e, r, t) {\n if (typeof e == \"number\" && typeof r == \"number\" && typeof t == \"number\")\n return Sr(\"#\" + te(e) + te(r) + te(t));\n if (typeof e == \"object\" && r === void 0 && t === void 0)\n return Sr(\"#\" + te(e.red) + te(e.green) + te(e.blue));\n throw new W(6);\n}\no(Tr, \"rgb\");\nfunction ye(e, r, t, n) {\n if (typeof e == \"string\" && typeof r == \"number\") {\n var a = qe(e);\n return \"rgba(\" + a.red + \",\" + a.green + \",\" + a.blue + \",\" + r + \")\";\n } else {\n if (typeof e == \"number\" && typeof r == \"number\" && typeof t == \"number\" && typeof n == \"number\")\n return n >= 1 ? Tr(e, r, t) : \"rgba(\" + e + \",\" + r + \",\" + t + \",\" + n + \")\";\n if (typeof e == \"object\" && r === void 0 && t === void 0 && n === void 0)\n return e.alpha >= 1 ? Tr(e.red, e.green, e.blue) : \"rgba(\" + e.red + \",\" + e.green + \",\" + e.blue + \",\" + e.alpha + \")\";\n }\n throw new W(7);\n}\no(ye, \"rgba\");\nvar Aa = /* @__PURE__ */ o(function(r) {\n return typeof r.red == \"number\" && typeof r.green == \"number\" && typeof r.blue == \"number\" && (typeof r.alpha != \"number\" || typeof r.alpha >\n \"u\");\n}, \"isRgb\"), Fa = /* @__PURE__ */ o(function(r) {\n return typeof r.red == \"number\" && typeof r.green == \"number\" && typeof r.blue == \"number\" && typeof r.alpha == \"number\";\n}, \"isRgba\"), _a = /* @__PURE__ */ o(function(r) {\n return typeof r.hue == \"number\" && typeof r.saturation == \"number\" && typeof r.lightness == \"number\" && (typeof r.alpha != \"number\" || typeof r.\n alpha > \"u\");\n}, \"isHsl\"), Ia = /* @__PURE__ */ o(function(r) {\n return typeof r.hue == \"number\" && typeof r.saturation == \"number\" && typeof r.lightness == \"number\" && typeof r.alpha == \"number\";\n}, \"isHsla\");\nfunction Mt(e) {\n if (typeof e != \"object\") throw new W(8);\n if (Fa(e)) return ye(e);\n if (Aa(e)) return Tr(e);\n if (Ia(e)) return Ra(e);\n if (_a(e)) return Oa(e);\n throw new W(8);\n}\no(Mt, \"toColorString\");\nfunction kt(e, r, t) {\n return /* @__PURE__ */ o(function() {\n var a = t.concat(Array.prototype.slice.call(arguments));\n return a.length >= r ? e.apply(this, a) : kt(e, r, a);\n }, \"fn\");\n}\no(kt, \"curried\");\nfunction Je(e) {\n return kt(e, e.length, []);\n}\no(Je, \"curry\");\nfunction Ke(e, r, t) {\n return Math.max(e, Math.min(r, t));\n}\no(Ke, \"guard\");\nfunction Pa(e, r) {\n if (r === \"transparent\") return r;\n var t = zt(r);\n return Mt(N({}, t, {\n lightness: Ke(0, 1, t.lightness - parseFloat(e))\n }));\n}\no(Pa, \"darken\");\nvar La = /* @__PURE__ */ Je(Pa), Nt = La;\nfunction za(e, r) {\n if (r === \"transparent\") return r;\n var t = zt(r);\n return Mt(N({}, t, {\n lightness: Ke(0, 1, t.lightness + parseFloat(e))\n }));\n}\no(za, \"lighten\");\nvar Ma = /* @__PURE__ */ Je(za), Bt = Ma;\nfunction ka(e, r) {\n if (r === \"transparent\") return r;\n var t = qe(r), n = typeof t.alpha == \"number\" ? t.alpha : 1, a = N({}, t, {\n alpha: Ke(0, 1, (n * 100 + parseFloat(e) * 100) / 100)\n });\n return ye(a);\n}\no(ka, \"opacify\");\nvar Na = /* @__PURE__ */ Je(ka), Dt = Na;\nfunction Ba(e, r) {\n if (r === \"transparent\") return r;\n var t = qe(r), n = typeof t.alpha == \"number\" ? t.alpha : 1, a = N({}, t, {\n alpha: Ke(0, 1, +(n * 100 - parseFloat(e) * 100).toFixed(2) / 100)\n });\n return ye(a);\n}\no(Ba, \"transparentize\");\nvar Da = /* @__PURE__ */ Je(Ba), $t = Da;\n\n// src/theming/base.ts\nvar h = {\n // Official color palette\n primary: \"#FF4785\",\n // coral\n secondary: \"#029CFD\",\n // ocean\n tertiary: \"#FAFBFC\",\n ancillary: \"#22a699\",\n // Complimentary\n orange: \"#FC521F\",\n gold: \"#FFAE00\",\n green: \"#66BF3C\",\n seafoam: \"#37D5D3\",\n purple: \"#6F2CAC\",\n ultraviolet: \"#2A0481\",\n // Monochrome\n lightest: \"#FFFFFF\",\n lighter: \"#F7FAFC\",\n light: \"#EEF3F6\",\n mediumlight: \"#ECF4F9\",\n medium: \"#D9E8F2\",\n mediumdark: \"#73828C\",\n dark: \"#5C6870\",\n darker: \"#454E54\",\n darkest: \"#2E3438\",\n // For borders\n border: \"hsla(203, 50%, 30%, 0.15)\",\n // Status\n positive: \"#66BF3C\",\n negative: \"#FF4400\",\n warning: \"#E69D00\",\n critical: \"#FFFFFF\",\n // Text\n defaultText: \"#2E3438\",\n inverseText: \"#FFFFFF\",\n positiveText: \"#448028\",\n negativeText: \"#D43900\",\n warningText: \"#A15C20\"\n}, U = {\n app: \"#F6F9FC\",\n bar: h.lightest,\n content: h.lightest,\n preview: h.lightest,\n gridCellSize: 10,\n hoverable: $t(0.9, h.secondary),\n // hover state for items in a list\n // Notification, error, and warning backgrounds\n positive: \"#E1FFD4\",\n negative: \"#FEDED2\",\n warning: \"#FFF5CF\",\n critical: \"#FF4400\"\n}, j = {\n fonts: {\n base: [\n '\"Nunito Sans\"',\n \"-apple-system\",\n '\".SFNSText-Regular\"',\n '\"San Francisco\"',\n \"BlinkMacSystemFont\",\n '\"Segoe UI\"',\n '\"Helvetica Neue\"',\n \"Helvetica\",\n \"Arial\",\n \"sans-serif\"\n ].join(\", \"),\n mono: [\n \"ui-monospace\",\n \"Menlo\",\n \"Monaco\",\n '\"Roboto Mono\"',\n '\"Oxygen Mono\"',\n '\"Ubuntu Monospace\"',\n '\"Source Code Pro\"',\n '\"Droid Sans Mono\"',\n '\"Courier New\"',\n \"monospace\"\n ].join(\", \")\n },\n weight: {\n regular: 400,\n bold: 700\n },\n size: {\n s1: 12,\n s2: 14,\n s3: 16,\n m1: 20,\n m2: 24,\n m3: 28,\n l1: 32,\n l2: 40,\n l3: 48,\n code: 90\n }\n};\n\n// src/theming/global.ts\nvar Or = ar(Ht(), 1), Wt = (0, Or.default)(1)(\n ({ typography: e }) => ({\n body: {\n fontFamily: e.fonts.base,\n fontSize: e.size.s3,\n margin: 0,\n WebkitFontSmoothing: \"antialiased\",\n MozOsxFontSmoothing: \"grayscale\",\n WebkitTapHighlightColor: \"rgba(0, 0, 0, 0)\",\n WebkitOverflowScrolling: \"touch\"\n },\n \"*\": {\n boxSizing: \"border-box\"\n },\n \"h1, h2, h3, h4, h5, h6\": {\n fontWeight: e.weight.regular,\n margin: 0,\n padding: 0\n },\n \"button, input, textarea, select\": {\n fontFamily: \"inherit\",\n fontSize: \"inherit\",\n boxSizing: \"border-box\"\n },\n sub: {\n fontSize: \"0.8em\",\n bottom: \"-0.2em\"\n },\n sup: {\n fontSize: \"0.8em\",\n top: \"-0.2em\"\n },\n \"b, strong\": {\n fontWeight: e.weight.bold\n },\n hr: {\n border: \"none\",\n borderTop: \"1px solid silver\",\n clear: \"both\",\n marginBottom: \"1.25rem\"\n },\n code: {\n fontFamily: e.fonts.mono,\n WebkitFontSmoothing: \"antialiased\",\n MozOsxFontSmoothing: \"grayscale\",\n display: \"inline-block\",\n paddingLeft: 2,\n paddingRight: 2,\n verticalAlign: \"baseline\",\n color: \"inherit\"\n },\n pre: {\n fontFamily: e.fonts.mono,\n WebkitFontSmoothing: \"antialiased\",\n MozOsxFontSmoothing: \"grayscale\",\n lineHeight: \"18px\",\n padding: \"11px 1rem\",\n whiteSpace: \"pre-wrap\",\n color: \"inherit\",\n borderRadius: 3,\n margin: \"1rem 0\"\n }\n })\n), $a = (0, Or.default)(1)(({\n color: e,\n background: r,\n typography: t\n}) => {\n let n = Wt({ typography: t });\n return {\n ...n,\n body: {\n ...n.body,\n color: e.defaultText,\n background: r.app,\n overflow: \"hidden\"\n },\n hr: {\n ...n.hr,\n borderTop: `1px solid ${e.border}`\n }\n };\n});\n\n// src/theming/themes/dark.ts\nvar ja = {\n base: \"dark\",\n // Storybook-specific color palette\n colorPrimary: \"#FF4785\",\n // coral\n colorSecondary: \"#029CFD\",\n // ocean\n // UI\n appBg: \"#222425\",\n appContentBg: \"#1B1C1D\",\n appPreviewBg: h.lightest,\n appBorderColor: \"rgba(255,255,255,.1)\",\n appBorderRadius: 4,\n // Fonts\n fontBase: j.fonts.base,\n fontCode: j.fonts.mono,\n // Text colors\n textColor: \"#C9CDCF\",\n textInverseColor: \"#222425\",\n textMutedColor: \"#798186\",\n // Toolbar default and active colors\n barTextColor: h.mediumdark,\n barHoverColor: h.secondary,\n barSelectedColor: h.secondary,\n barBg: \"#292C2E\",\n // Form colors\n buttonBg: \"#222425\",\n buttonBorder: \"rgba(255,255,255,.1)\",\n booleanBg: \"#222425\",\n booleanSelectedBg: \"#2E3438\",\n inputBg: \"#1B1C1D\",\n inputBorder: \"rgba(255,255,255,.1)\",\n inputTextColor: h.lightest,\n inputBorderRadius: 4\n}, Ut = ja;\n\n// src/theming/themes/light.ts\nvar Ha = {\n base: \"light\",\n // Storybook-specific color palette\n colorPrimary: \"#FF4785\",\n // coral\n colorSecondary: \"#029CFD\",\n // ocean\n // UI\n appBg: U.app,\n appContentBg: h.lightest,\n appPreviewBg: h.lightest,\n appBorderColor: h.border,\n appBorderRadius: 4,\n // Fonts\n fontBase: j.fonts.base,\n fontCode: j.fonts.mono,\n // Text colors\n textColor: h.darkest,\n textInverseColor: h.lightest,\n textMutedColor: h.dark,\n // Toolbar default and active colors\n barTextColor: h.mediumdark,\n barHoverColor: h.secondary,\n barSelectedColor: h.secondary,\n barBg: h.lightest,\n // Form colors\n buttonBg: U.app,\n buttonBorder: h.medium,\n booleanBg: h.mediumlight,\n booleanSelectedBg: h.lightest,\n inputBg: h.lightest,\n inputBorder: h.border,\n inputTextColor: h.darkest,\n inputBorderRadius: 4\n}, xe = Ha;\n\n// ../node_modules/@storybook/global/dist/index.mjs\nvar Vt = (() => {\n let e;\n return typeof window < \"u\" ? e = window : typeof globalThis < \"u\" ? e = globalThis : typeof global < \"u\" ? e = global : typeof self < \"u\" ?\n e = self : e = {}, e;\n})();\n\n// src/theming/utils.ts\nimport { logger as Wa } from \"@storybook/core/client-logger\";\nvar { window: Rr } = Vt, Gt = /* @__PURE__ */ o((e) => ({ color: e }), \"mkColor\"), Ua = /* @__PURE__ */ o((e) => typeof e != \"string\" ? (Wa.\nwarn(\n `Color passed to theme object should be a string. Instead ${e}(${typeof e}) was passed.`\n), !1) : !0, \"isColorString\"), Va = /* @__PURE__ */ o((e) => !/(gradient|var|calc)/.test(e), \"isValidColorForPolished\"), Ga = /* @__PURE__ */ o(\n(e, r) => e === \"darken\" ? ye(`${Nt(1, r)}`, 0.95) : e === \"lighten\" ? ye(`${Bt(1, r)}`, 0.95) : r, \"applyPolished\"), Yt = /* @__PURE__ */ o(\n(e) => (r) => {\n if (!Ua(r) || !Va(r))\n return r;\n try {\n return Ga(e, r);\n } catch {\n return r;\n }\n}, \"colorFactory\"), Ya = Yt(\"lighten\"), qa = Yt(\"darken\"), Xe = /* @__PURE__ */ o(() => !Rr || !Rr.matchMedia ? \"light\" : Rr.matchMedia(\"(pr\\\nefers-color-scheme: dark)\").matches ? \"dark\" : \"light\", \"getPreferredColorScheme\");\n\n// src/theming/create.ts\nvar _e = {\n light: xe,\n dark: Ut,\n normal: xe\n}, Ar = Xe(), Us = /* @__PURE__ */ o((e = { base: Ar }, r) => {\n let t = {\n ..._e[Ar],\n ..._e[e.base] || {},\n ...e,\n base: _e[e.base] ? e.base : Ar\n };\n return {\n ...r,\n ...t,\n barSelectedColor: e.barSelectedColor || t.colorSecondary\n };\n}, \"create\");\n\n// src/theming/animation.ts\nvar qt = {\n rubber: \"cubic-bezier(0.175, 0.885, 0.335, 1.05)\"\n}, Ja = ve`\n\tfrom {\n\t\ttransform: rotate(0deg);\n\t}\n\tto {\n\t\ttransform: rotate(360deg);\n\t}\n`, Jt = ve`\n 0%, 100% { opacity: 1; }\n 50% { opacity: .4; }\n`, Ka = ve`\n 0% { transform: translateY(1px); }\n 25% { transform: translateY(0px); }\n 50% { transform: translateY(-3px); }\n 100% { transform: translateY(1px); }\n`, Xa = ve`\n 0%, 100% { transform:translate3d(0,0,0); }\n 12.5%, 62.5% { transform:translate3d(-4px,0,0); }\n 37.5%, 87.5% { transform: translate3d(4px,0,0); }\n`, Za = Ae`\n animation: ${Jt} 1.5s ease-in-out infinite;\n color: transparent;\n cursor: progress;\n`, Qa = Ae`\n transition: all 150ms ease-out;\n transform: translate3d(0, 0, 0);\n\n &:hover {\n transform: translate3d(0, -2px, 0);\n }\n\n &:active {\n transform: translate3d(0, 0, 0);\n }\n`, Kt = {\n rotate360: Ja,\n glow: Jt,\n float: Ka,\n jiggle: Xa,\n inlineGlow: Za,\n hoverable: Qa\n};\n\n// src/theming/modules/syntax.ts\nvar Xt = {\n BASE_FONT_FAMILY: \"Menlo, monospace\",\n BASE_FONT_SIZE: \"11px\",\n BASE_LINE_HEIGHT: 1.2,\n BASE_BACKGROUND_COLOR: \"rgb(36, 36, 36)\",\n BASE_COLOR: \"rgb(213, 213, 213)\",\n OBJECT_PREVIEW_ARRAY_MAX_PROPERTIES: 10,\n OBJECT_PREVIEW_OBJECT_MAX_PROPERTIES: 5,\n OBJECT_NAME_COLOR: \"rgb(227, 110, 236)\",\n OBJECT_VALUE_NULL_COLOR: \"rgb(127, 127, 127)\",\n OBJECT_VALUE_UNDEFINED_COLOR: \"rgb(127, 127, 127)\",\n OBJECT_VALUE_REGEXP_COLOR: \"rgb(233, 63, 59)\",\n OBJECT_VALUE_STRING_COLOR: \"rgb(233, 63, 59)\",\n OBJECT_VALUE_SYMBOL_COLOR: \"rgb(233, 63, 59)\",\n OBJECT_VALUE_NUMBER_COLOR: \"hsl(252, 100%, 75%)\",\n OBJECT_VALUE_BOOLEAN_COLOR: \"hsl(252, 100%, 75%)\",\n OBJECT_VALUE_FUNCTION_PREFIX_COLOR: \"rgb(85, 106, 242)\",\n HTML_TAG_COLOR: \"rgb(93, 176, 215)\",\n HTML_TAGNAME_COLOR: \"rgb(93, 176, 215)\",\n HTML_TAGNAME_TEXT_TRANSFORM: \"lowercase\",\n HTML_ATTRIBUTE_NAME_COLOR: \"rgb(155, 187, 220)\",\n HTML_ATTRIBUTE_VALUE_COLOR: \"rgb(242, 151, 102)\",\n HTML_COMMENT_COLOR: \"rgb(137, 137, 137)\",\n HTML_DOCTYPE_COLOR: \"rgb(192, 192, 192)\",\n ARROW_COLOR: \"rgb(145, 145, 145)\",\n ARROW_MARGIN_RIGHT: 3,\n ARROW_FONT_SIZE: 12,\n ARROW_ANIMATION_DURATION: \"0\",\n TREENODE_FONT_FAMILY: \"Menlo, monospace\",\n TREENODE_FONT_SIZE: \"11px\",\n TREENODE_LINE_HEIGHT: 1.2,\n TREENODE_PADDING_LEFT: 12,\n TABLE_BORDER_COLOR: \"rgb(85, 85, 85)\",\n TABLE_TH_BACKGROUND_COLOR: \"rgb(44, 44, 44)\",\n TABLE_TH_HOVER_COLOR: \"rgb(48, 48, 48)\",\n TABLE_SORT_ICON_COLOR: \"black\",\n // 'rgb(48, 57, 66)',\n 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(\\\n51, 139, 255, 0.0980392))\",\n TABLE_DATA_BACKGROUND_SIZE: \"128px 32px\"\n}, Zt = {\n BASE_FONT_FAMILY: \"Menlo, monospace\",\n BASE_FONT_SIZE: \"11px\",\n BASE_LINE_HEIGHT: 1.2,\n BASE_BACKGROUND_COLOR: \"white\",\n BASE_COLOR: \"black\",\n OBJECT_PREVIEW_ARRAY_MAX_PROPERTIES: 10,\n OBJECT_PREVIEW_OBJECT_MAX_PROPERTIES: 5,\n OBJECT_NAME_COLOR: \"rgb(136, 19, 145)\",\n OBJECT_VALUE_NULL_COLOR: \"rgb(128, 128, 128)\",\n OBJECT_VALUE_UNDEFINED_COLOR: \"rgb(128, 128, 128)\",\n OBJECT_VALUE_REGEXP_COLOR: \"rgb(196, 26, 22)\",\n OBJECT_VALUE_STRING_COLOR: \"rgb(196, 26, 22)\",\n OBJECT_VALUE_SYMBOL_COLOR: \"rgb(196, 26, 22)\",\n OBJECT_VALUE_NUMBER_COLOR: \"rgb(28, 0, 207)\",\n OBJECT_VALUE_BOOLEAN_COLOR: \"rgb(28, 0, 207)\",\n OBJECT_VALUE_FUNCTION_PREFIX_COLOR: \"rgb(13, 34, 170)\",\n HTML_TAG_COLOR: \"rgb(168, 148, 166)\",\n HTML_TAGNAME_COLOR: \"rgb(136, 18, 128)\",\n HTML_TAGNAME_TEXT_TRANSFORM: \"lowercase\",\n HTML_ATTRIBUTE_NAME_COLOR: \"rgb(153, 69, 0)\",\n HTML_ATTRIBUTE_VALUE_COLOR: \"rgb(26, 26, 166)\",\n HTML_COMMENT_COLOR: \"rgb(35, 110, 37)\",\n HTML_DOCTYPE_COLOR: \"rgb(192, 192, 192)\",\n ARROW_COLOR: \"#6e6e6e\",\n ARROW_MARGIN_RIGHT: 3,\n ARROW_FONT_SIZE: 12,\n ARROW_ANIMATION_DURATION: \"0\",\n TREENODE_FONT_FAMILY: \"Menlo, monospace\",\n TREENODE_FONT_SIZE: \"11px\",\n TREENODE_LINE_HEIGHT: 1.2,\n TREENODE_PADDING_LEFT: 12,\n TABLE_BORDER_COLOR: \"#aaa\",\n TABLE_TH_BACKGROUND_COLOR: \"#eee\",\n TABLE_TH_HOVER_COLOR: \"hsla(0, 0%, 90%, 1)\",\n TABLE_SORT_ICON_COLOR: \"#6e6e6e\",\n TABLE_DATA_BACKGROUND_IMAGE: \"linear-gradient(to bottom, white, white 50%, rgb(234, 243, 255) 50%, rgb(234, 243, 255))\",\n TABLE_DATA_BACKGROUND_SIZE: \"128px 32px\"\n}, eo = /* @__PURE__ */ o((e) => Object.entries(e).reduce((r, [t, n]) => ({ ...r, [t]: Gt(n) }), {}), \"convertColors\"), Qt = /* @__PURE__ */ o(\n({ colors: e, mono: r }) => {\n let t = eo(e);\n return {\n token: {\n fontFamily: r,\n WebkitFontSmoothing: \"antialiased\",\n \"&.tag\": t.red3,\n \"&.comment\": { ...t.green1, fontStyle: \"italic\" },\n \"&.prolog\": { ...t.green1, fontStyle: \"italic\" },\n \"&.doctype\": { ...t.green1, fontStyle: \"italic\" },\n \"&.cdata\": { ...t.green1, fontStyle: \"italic\" },\n \"&.string\": t.red1,\n \"&.url\": t.cyan1,\n \"&.symbol\": t.cyan1,\n \"&.number\": t.cyan1,\n \"&.boolean\": t.cyan1,\n \"&.variable\": t.cyan1,\n \"&.constant\": t.cyan1,\n \"&.inserted\": t.cyan1,\n \"&.atrule\": t.blue1,\n \"&.keyword\": t.blue1,\n \"&.attr-value\": t.blue1,\n \"&.punctuation\": t.gray1,\n \"&.operator\": t.gray1,\n \"&.function\": t.gray1,\n \"&.deleted\": t.red2,\n \"&.important\": {\n fontWeight: \"bold\"\n },\n \"&.bold\": {\n fontWeight: \"bold\"\n },\n \"&.italic\": {\n fontStyle: \"italic\"\n },\n \"&.class-name\": t.cyan2,\n \"&.selector\": t.red3,\n \"&.attr-name\": t.red4,\n \"&.property\": t.red4,\n \"&.regex\": t.red4,\n \"&.entity\": t.red4,\n \"&.directive.tag .tag\": {\n background: \"#ffff00\",\n ...t.gray1\n }\n },\n \"language-json .token.boolean\": t.blue1,\n \"language-json .token.number\": t.blue1,\n \"language-json .token.property\": t.cyan2,\n namespace: {\n opacity: 0.7\n }\n };\n}, \"create\");\n\n// src/theming/convert.ts\nvar ro = {\n green1: \"#008000\",\n red1: \"#A31515\",\n red2: \"#9a050f\",\n red3: \"#800000\",\n red4: \"#ff0000\",\n gray1: \"#393A34\",\n cyan1: \"#36acaa\",\n cyan2: \"#2B91AF\",\n blue1: \"#0000ff\",\n blue2: \"#00009f\"\n}, to = {\n green1: \"#7C7C7C\",\n red1: \"#92C379\",\n red2: \"#9a050f\",\n red3: \"#A8FF60\",\n red4: \"#96CBFE\",\n gray1: \"#EDEDED\",\n cyan1: \"#C6C5FE\",\n cyan2: \"#FFFFB6\",\n blue1: \"#B474DD\",\n blue2: \"#00009f\"\n}, no = /* @__PURE__ */ o((e) => ({\n // Changeable colors\n primary: e.colorPrimary,\n secondary: e.colorSecondary,\n tertiary: h.tertiary,\n ancillary: h.ancillary,\n // Complimentary\n orange: h.orange,\n gold: h.gold,\n green: h.green,\n seafoam: h.seafoam,\n purple: h.purple,\n ultraviolet: h.ultraviolet,\n // Monochrome\n lightest: h.lightest,\n lighter: h.lighter,\n light: h.light,\n mediumlight: h.mediumlight,\n medium: h.medium,\n mediumdark: h.mediumdark,\n dark: h.dark,\n darker: h.darker,\n darkest: h.darkest,\n // For borders\n border: h.border,\n // Status\n positive: h.positive,\n negative: h.negative,\n warning: h.warning,\n critical: h.critical,\n defaultText: e.textColor || h.darkest,\n inverseText: e.textInverseColor || h.lightest,\n positiveText: h.positiveText,\n negativeText: h.negativeText,\n warningText: h.warningText\n}), \"createColors\"), Fr = /* @__PURE__ */ o((e = _e[Xe()]) => {\n let {\n base: r,\n colorPrimary: t,\n colorSecondary: n,\n appBg: a,\n appContentBg: i,\n appPreviewBg: s,\n appBorderColor: u,\n appBorderRadius: f,\n fontBase: l,\n fontCode: c,\n textColor: p,\n textInverseColor: m,\n barTextColor: w,\n barHoverColor: b,\n barSelectedColor: d,\n barBg: v,\n buttonBg: y,\n buttonBorder: x,\n booleanBg: A,\n booleanSelectedBg: S,\n inputBg: R,\n inputBorder: F,\n inputTextColor: T,\n inputBorderRadius: ae,\n brandTitle: oe,\n brandUrl: V,\n brandImage: G,\n brandTarget: Qe,\n gridCellSize: er,\n ...rr\n } = e;\n return {\n ...rr,\n base: r,\n color: no(e),\n background: {\n app: a,\n bar: v,\n content: i,\n preview: s,\n gridCellSize: er || U.gridCellSize,\n hoverable: U.hoverable,\n positive: U.positive,\n negative: U.negative,\n warning: U.warning,\n critical: U.critical\n },\n typography: {\n fonts: {\n base: l,\n mono: c\n },\n weight: j.weight,\n size: j.size\n },\n animation: Kt,\n easing: qt,\n input: {\n background: R,\n border: F,\n borderRadius: ae,\n color: T\n },\n button: {\n background: y || R,\n border: x || F\n },\n boolean: {\n background: A || F,\n selectedBackground: S || R\n },\n // UI\n layoutMargin: 10,\n appBorderColor: u,\n appBorderRadius: f,\n // Toolbar default/active colors\n barTextColor: w,\n barHoverColor: b || n,\n barSelectedColor: d || n,\n barBg: v,\n // Brand logo/text\n brand: {\n title: oe,\n url: V,\n image: G || (oe ? null : void 0),\n target: Qe\n },\n code: Qt({\n colors: r === \"light\" ? ro : to,\n mono: c\n }),\n // Addon actions theme\n // API example https://github.com/storybookjs/react-inspector/blob/master/src/styles/themes/chromeLight.tsx\n addonActionsTheme: {\n ...r === \"light\" ? Zt : Xt,\n BASE_FONT_FAMILY: c,\n BASE_FONT_SIZE: j.size.s2 - 1,\n BASE_LINE_HEIGHT: \"18px\",\n BASE_BACKGROUND_COLOR: \"transparent\",\n BASE_COLOR: p,\n ARROW_COLOR: Dt(0.2, u),\n ARROW_MARGIN_RIGHT: 4,\n ARROW_FONT_SIZE: 8,\n TREENODE_FONT_FAMILY: c,\n TREENODE_FONT_SIZE: j.size.s2 - 1,\n TREENODE_LINE_HEIGHT: \"18px\",\n TREENODE_PADDING_LEFT: 12\n }\n };\n}, \"convert\");\n\n// src/theming/ensure.ts\nimport { logger as uo } from \"@storybook/core/client-logger\";\n\n// ../node_modules/deep-object-diff/mjs/utils.js\nvar _r = /* @__PURE__ */ o((e) => Object.keys(e).length === 0, \"isEmpty\"), ne = /* @__PURE__ */ o((e) => e != null && typeof e == \"object\", \"\\\nisObject\"), Ie = /* @__PURE__ */ o((e, ...r) => Object.prototype.hasOwnProperty.call(e, ...r), \"hasOwnProperty\");\nvar Pe = /* @__PURE__ */ o(() => /* @__PURE__ */ Object.create(null), \"makeObjectWithoutPrototype\");\n\n// ../node_modules/deep-object-diff/mjs/deleted.js\nvar en = /* @__PURE__ */ o((e, r) => e === r || !ne(e) || !ne(r) ? {} : Object.keys(e).reduce((t, n) => {\n if (Ie(r, n)) {\n let a = en(e[n], r[n]);\n return ne(a) && _r(a) || (t[n] = a), t;\n }\n return t[n] = void 0, t;\n}, Pe()), \"deletedDiff\"), Ze = en;\n\n// ../node_modules/ts-dedent/esm/index.js\nfunction rn(e) {\n for (var r = [], t = 1; t < arguments.length; t++)\n r[t - 1] = arguments[t];\n var n = Array.from(typeof e == \"string\" ? [e] : e);\n n[n.length - 1] = n[n.length - 1].replace(/\\r?\\n([\\t ]*)$/, \"\");\n var a = n.reduce(function(u, f) {\n var l = f.match(/\\n([\\t ]+|(?!\\s).)/g);\n return l ? u.concat(l.map(function(c) {\n var p, m;\n return (m = (p = c.match(/[\\t ]/g)) === null || p === void 0 ? void 0 : p.length) !== null && m !== void 0 ? m : 0;\n })) : u;\n }, []);\n if (a.length) {\n var i = new RegExp(`\n[\t ]{` + Math.min.apply(Math, a) + \"}\", \"g\");\n n = n.map(function(u) {\n return u.replace(i, `\n`);\n });\n }\n n[0] = n[0].replace(/^\\r?\\n/, \"\");\n var s = n[0];\n return r.forEach(function(u, f) {\n var l = s.match(/(?:^|\\n)( *)$/), c = l ? l[1] : \"\", p = u;\n typeof u == \"string\" && u.includes(`\n`) && (p = String(u).split(`\n`).map(function(m, w) {\n return w === 0 ? m : \"\" + c + m;\n }).join(`\n`)), s += p + n[f + 1];\n }), s;\n}\no(rn, \"dedent\");\n\n// src/theming/ensure.ts\nvar $u = /* @__PURE__ */ o((e) => {\n if (!e)\n return Fr(xe);\n let r = Ze(xe, e);\n return Object.keys(r).length && uo.warn(\n rn`\n Your theme is missing properties, you should update your theme!\n\n theme-data missing:\n `,\n r\n ), Fr(e);\n}, \"ensure\");\n\n// src/theming/index.ts\nvar Wu = \"/* emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason */\";\nexport {\n xt as CacheProvider,\n oa as ClassNames,\n ra as Global,\n Et as ThemeProvider,\n U as background,\n h as color,\n Fr as convert,\n Us as create,\n fr as createCache,\n $a as createGlobal,\n Wt as createReset,\n Ae as css,\n qa as darken,\n $u as ensure,\n Wu as ignoreSsrWarning,\n br as isPropValid,\n gr as jsx,\n ve as keyframes,\n Ya as lighten,\n vr as styled,\n _e as themes,\n j as typography,\n wt as useTheme,\n St as withTheme\n};\n"],"names":[],"sourceRoot":""}
|