pgo-ui 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (178) hide show
  1. package/README.md +195 -0
  2. package/dist/InputSearch-CHSoQ7GH.js +155 -0
  3. package/dist/favicon.ico +0 -0
  4. package/dist/index-B7ko30VS.js +5899 -0
  5. package/dist/index-BKsLeoKP.js +4781 -0
  6. package/dist/index-BeW0KHDT.js +34237 -0
  7. package/dist/index-DjwGqWIf.js +5086 -0
  8. package/dist/index-jnIKSPXM.js +4949 -0
  9. package/dist/index.es.js +58 -0
  10. package/dist/index.umd.js +111 -0
  11. package/dist/pgo-ui.css +1 -0
  12. package/package.json +99 -0
  13. package/src/App.vue +369 -0
  14. package/src/assets/fonts/Faruma.ttf +0 -0
  15. package/src/assets/logo.png +0 -0
  16. package/src/components/examples/AppBarExample.vue +100 -0
  17. package/src/components/examples/AvatarExample.vue +47 -0
  18. package/src/components/examples/BannerExample.vue +287 -0
  19. package/src/components/examples/BaseInputExample.vue +25 -0
  20. package/src/components/examples/BreadcrumbExample.vue +53 -0
  21. package/src/components/examples/CardExample.vue +77 -0
  22. package/src/components/examples/ChipExample.vue +225 -0
  23. package/src/components/examples/DatePickerExample.vue +31 -0
  24. package/src/components/examples/DropdownExample.vue +84 -0
  25. package/src/components/examples/EditorExample.vue +200 -0
  26. package/src/components/examples/ExpansionPanelExample.vue +42 -0
  27. package/src/components/examples/FileUploadExample.vue +40 -0
  28. package/src/components/examples/FormExample.vue +121 -0
  29. package/src/components/examples/HugeTest.vue +8 -0
  30. package/src/components/examples/LayoutContainerExample.vue +80 -0
  31. package/src/components/examples/ModalExample.vue +82 -0
  32. package/src/components/examples/NavDrawerExample.vue +171 -0
  33. package/src/components/examples/NumberFieldExample.vue +145 -0
  34. package/src/components/examples/RadioButtonExample.vue +161 -0
  35. package/src/components/examples/SearchExample.vue +322 -0
  36. package/src/components/examples/SelectExample.vue +121 -0
  37. package/src/components/examples/StackedTableViewExample.vue +53 -0
  38. package/src/components/examples/TabExample.vue +336 -0
  39. package/src/components/examples/TableExample.vue +228 -0
  40. package/src/components/examples/TextFieldExample.vue +181 -0
  41. package/src/components/examples/TextareaExample.vue +173 -0
  42. package/src/components/examples/ThemeToggle.vue +50 -0
  43. package/src/components/examples/TimelineExample.vue +66 -0
  44. package/src/components/examples/TipTapEditorExample.vue +20 -0
  45. package/src/components/examples/TooltipExample.vue +53 -0
  46. package/src/components/examples/VueDatePickerShowcase.vue +214 -0
  47. package/src/components/examples/_DatePickerExample.vue +33 -0
  48. package/src/components/examples/__FormExample.vue +77 -0
  49. package/src/components/index.ts +25 -0
  50. package/src/components/pgo/AppBar.vue +348 -0
  51. package/src/components/pgo/Avatar.vue +139 -0
  52. package/src/components/pgo/Banner.vue +300 -0
  53. package/src/components/pgo/Breadcrumb.vue +103 -0
  54. package/src/components/pgo/Button.vue +171 -0
  55. package/src/components/pgo/Card.vue +179 -0
  56. package/src/components/pgo/ConfirmationModel.vue +32 -0
  57. package/src/components/pgo/DataTable.vue +845 -0
  58. package/src/components/pgo/DatePicker/CalendarPanel.vue +43 -0
  59. package/src/components/pgo/DatePicker/__DatePicker.vue +122 -0
  60. package/src/components/pgo/DatePicker/types.ts +11 -0
  61. package/src/components/pgo/DatePicker/useCalendar.ts +39 -0
  62. package/src/components/pgo/DatePicker/useDatePicker.ts +31 -0
  63. package/src/components/pgo/Deprecated/ToastContainer.vue +51 -0
  64. package/src/components/pgo/Deprecated/ToastItem.vue +55 -0
  65. package/src/components/pgo/Dropdown.vue +296 -0
  66. package/src/components/pgo/DropdownItem.vue +40 -0
  67. package/src/components/pgo/Editor.vue +511 -0
  68. package/src/components/pgo/ExpansionPanel.vue +185 -0
  69. package/src/components/pgo/Footer.vue +39 -0
  70. package/src/components/pgo/HeroIcon.vue +124 -0
  71. package/src/components/pgo/LayoutContainer.vue +104 -0
  72. package/src/components/pgo/Main.vue +37 -0
  73. package/src/components/pgo/Modal.vue +261 -0
  74. package/src/components/pgo/NavDrawer.vue +127 -0
  75. package/src/components/pgo/NavDrawerItem.vue +161 -0
  76. package/src/components/pgo/NavigationDrawer.vue +850 -0
  77. package/src/components/pgo/OLDNavDrawer.vue +661 -0
  78. package/src/components/pgo/OldAppBar.vue +223 -0
  79. package/src/components/pgo/PApp.vue +102 -0
  80. package/src/components/pgo/Pagination.vue +242 -0
  81. package/src/components/pgo/Search copy.vue +310 -0
  82. package/src/components/pgo/Search.vue +411 -0
  83. package/src/components/pgo/StackedTableView.vue +167 -0
  84. package/src/components/pgo/Tab.vue +617 -0
  85. package/src/components/pgo/TestInput.vue +395 -0
  86. package/src/components/pgo/Timeline.vue +367 -0
  87. package/src/components/pgo/TimelineItem.vue +80 -0
  88. package/src/components/pgo/TipTapEditor.vue +315 -0
  89. package/src/components/pgo/Tooltip.NOTES.md +12 -0
  90. package/src/components/pgo/Tooltip.PROPS.md +21 -0
  91. package/src/components/pgo/Tooltip.vue +281 -0
  92. package/src/components/pgo/base/Base.vue +444 -0
  93. package/src/components/pgo/buttons/Chip.vue +324 -0
  94. package/src/components/pgo/buttons/ChipGroup.vue +224 -0
  95. package/src/components/pgo/buttons/Radio.vue +424 -0
  96. package/src/components/pgo/filters/FilterSection.vue +188 -0
  97. package/src/components/pgo/filters/Searchbar.vue +216 -0
  98. package/src/components/pgo/forms/DynamicForm.vue +45 -0
  99. package/src/components/pgo/forms/Form.vue +132 -0
  100. package/src/components/pgo/index.ts +89 -0
  101. package/src/components/pgo/inputs/Checkbox.vue +320 -0
  102. package/src/components/pgo/inputs/DatePicker.vue +395 -0
  103. package/src/components/pgo/inputs/FileUpload.vue +326 -0
  104. package/src/components/pgo/inputs/InputSearch.vue +194 -0
  105. package/src/components/pgo/inputs/NumberField.vue +243 -0
  106. package/src/components/pgo/inputs/Radio.vue +162 -0
  107. package/src/components/pgo/inputs/RadioGroup.vue +188 -0
  108. package/src/components/pgo/inputs/Select.vue +535 -0
  109. package/src/components/pgo/inputs/TextField.vue +194 -0
  110. package/src/components/pgo/inputs/Textarea.vue +181 -0
  111. package/src/index.js +81 -0
  112. package/src/main.js +12 -0
  113. package/src/pgo-components/__index.js +104 -0
  114. package/src/pgo-components/_index.js +31 -0
  115. package/src/pgo-components/assets/fonts/Faruma.ttf +0 -0
  116. package/src/pgo-components/assets/fonts/logo.png +0 -0
  117. package/src/pgo-components/composables/useTheme.js +10 -0
  118. package/src/pgo-components/directives/tooltip-directive.ts +393 -0
  119. package/src/pgo-components/lib/componentConfig.js +147 -0
  120. package/src/pgo-components/lib/core/composables/_useCalendar.ts +127 -0
  121. package/src/pgo-components/lib/core/composables/useDefaults.ts +15 -0
  122. package/src/pgo-components/lib/core/composables/useLanguageSelect.js +0 -0
  123. package/src/pgo-components/lib/core/composables/useRtl.ts +12 -0
  124. package/src/pgo-components/lib/core/defaults/createDefaults.ts +5 -0
  125. package/src/pgo-components/lib/core/defaults/defaults.ts +7 -0
  126. package/src/pgo-components/lib/core/rtl/rtl.ts +3 -0
  127. package/src/pgo-components/lib/core/rtl/setRtl.ts +19 -0
  128. package/src/pgo-components/lib/drawerState.ts +3 -0
  129. package/src/pgo-components/lib/i18n/defaultLables.js +71 -0
  130. package/src/pgo-components/lib/i18n/i18nPlugin.js +52 -0
  131. package/src/pgo-components/lib/i18n/useI18n.js +35 -0
  132. package/src/pgo-components/lib/index.ts +38 -0
  133. package/src/pgo-components/pages/Component.vue +7 -0
  134. package/src/pgo-components/pages/ComponentRenderer.vue +99 -0
  135. package/src/pgo-components/pages/Home.vue +125 -0
  136. package/src/pgo-components/pages/ListView.vue +372 -0
  137. package/src/pgo-components/pages/Page1.vue +296 -0
  138. package/src/pgo-components/pages/_Page1.vue +180 -0
  139. package/src/pgo-components/plugins/SnackBar.vue +251 -0
  140. package/src/pgo-components/plugins/SnackBarContainer.vue +53 -0
  141. package/src/pgo-components/plugins/SnackBarPlugin.ts +136 -0
  142. package/src/pgo-components/plugins/theme-plugin.js +114 -0
  143. package/src/pgo-components/plugins/types.ts +46 -0
  144. package/src/pgo-components/plugins/useSnackBar.js +11 -0
  145. package/src/pgo-components/plugins/useSnackBar.ts +21 -0
  146. package/src/pgo-components/plugins/validation-plugin.js +11 -0
  147. package/src/pgo-components/services/Entry.json +813 -0
  148. package/src/pgo-components/services/axios.js +54 -0
  149. package/src/pgo-components/services/data.json +90 -0
  150. package/src/pgo-components/services/person.json +260 -0
  151. package/src/pgo-components/services/toast.ts +44 -0
  152. package/src/pgo-components/styles/global.css +234 -0
  153. package/src/pgo-components/styles/reset.css +96 -0
  154. package/src/pgo-components/styles/tokens.css +18 -0
  155. package/src/pgo-components/styles/utilities/border-radius.css +57 -0
  156. package/src/pgo-components/styles/utilities/borders.css +85 -0
  157. package/src/pgo-components/styles/utilities/colors.css +38 -0
  158. package/src/pgo-components/styles/utilities/cursor.css +19 -0
  159. package/src/pgo-components/styles/utilities/display.css +78 -0
  160. package/src/pgo-components/styles/utilities/elevation.css +33 -0
  161. package/src/pgo-components/styles/utilities/flex.css +403 -0
  162. package/src/pgo-components/styles/utilities/float.css +41 -0
  163. package/src/pgo-components/styles/utilities/hover.css +9 -0
  164. package/src/pgo-components/styles/utilities/index.css +18 -0
  165. package/src/pgo-components/styles/utilities/opacity.css +27 -0
  166. package/src/pgo-components/styles/utilities/overflow.css +26 -0
  167. package/src/pgo-components/styles/utilities/palette.css +515 -0
  168. package/src/pgo-components/styles/utilities/position.css +14 -0
  169. package/src/pgo-components/styles/utilities/sizing.css +70 -0
  170. package/src/pgo-components/styles/utilities/spacing.css +578 -0
  171. package/src/pgo-components/styles/utilities/transitions.css +58 -0
  172. package/src/pgo-components/styles/utilities/typography.css +91 -0
  173. package/src/pgo-components/styles/utilities/z-index.css +11 -0
  174. package/src/pgo-components/tokens/index.js +337 -0
  175. package/src/router/index.js +88 -0
  176. package/src/shims-vue.d.ts +14 -0
  177. package/src/validations/validationRules.js +50 -0
  178. package/tailwind.config.js +73 -0
@@ -0,0 +1,111 @@
1
+ (function(fe,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue"),require("vue-router")):typeof define=="function"&&define.amd?define(["exports","vue","vue-router"],e):(fe=typeof globalThis<"u"?globalThis:fe||self,e(fe.PgoUi={},fe.Vue,fe.VueRouter))})(this,(function(fe,e,ti){"use strict";const so={default:{light:{color:{text:"#0b0b0b",textSecondary:"#6b7280",background:"#ffffff",surface:"#f7f7f8",surfaceElevated:"#f9fafb",primary:"#950050",primaryText:"#ffffff",secondary:"#64748b",secondaryText:"#ffffff",muted:"#6b7280",border:"rgba(0,0,0,0.06)",borderLight:"rgba(0,0,0,0.04)",borderHeavy:"rgba(0,0,0,0.12)",divider:"rgba(0,0,0,0.08)",overlay:"rgba(0,0,0,0.5)",success:"#10b981",warning:"#f59e0b",error:"#ef4444",info:"#3b82f6",focus:"#950050",shadow:"#000000",disable:"#9ca3af"},radius:{sm:"4px",md:"8px",lg:"12px",xl:"16px",full:"9999px"},shadow:{sm:"0 1px 3px rgba(2,6,23,0.06)",md:"0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24)",lg:"0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06)",xl:"0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05)"},elevation:{0:"none",1:"0 1px 3px rgba(2,6,23,0.06)",2:"0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24)",3:"0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06)",4:"0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05)"}},dark:{color:{text:"#e6eef8",textSecondary:"#9aa4b2",background:"#0b1220",surface:"#0f1724",surfaceElevated:"#1a2332",primary:"#3b82f6",primaryText:"#061225",secondary:"#64748b",secondaryText:"#f1f5f9",muted:"#9aa4b2",border:"rgba(255,255,255,0.08)",borderLight:"rgba(255,255,255,0.05)",borderHeavy:"rgba(255,255,255,0.12)",divider:"rgba(255,255,255,0.1)",overlay:"rgba(0,0,0,0.7)",success:"#10b981",warning:"#f59e0b",error:"#ef4444",info:"#3b82f6",focus:"#3b82f6",shadow:"#000000",disable:"#4b5563"},radius:{sm:"4px",md:"8px",lg:"12px",xl:"16px",full:"9999px"},shadow:{sm:"0 1px 4px rgba(2,6,23,0.6)",md:"0 4px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1)",lg:"0 10px 15px rgba(0, 0, 0, 0.3), 0 4px 6px rgba(0, 0, 0, 0.2)",xl:"0 20px 25px rgba(0, 0, 0, 0.4), 0 10px 10px rgba(0, 0, 0, 0.3)"},elevation:{0:"none",1:"0 1px 4px rgba(2,6,23,0.6)",2:"0 4px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1)",3:"0 10px 15px rgba(0, 0, 0, 0.3), 0 4px 6px rgba(0, 0, 0, 0.2)",4:"0 20px 25px rgba(0, 0, 0, 0.4), 0 10px 10px rgba(0, 0, 0, 0.3)"}}},classic:{light:{color:{text:"#1b1b18",textSecondary:"#7a6e6e",background:"#fffdf6",surface:"#fff7e6",surfaceElevated:"#fffdf6",primary:"#9b4dca",primaryText:"#ffffff",secondary:"#8b7355",secondaryText:"#ffffff",muted:"#7a6e6e",border:"rgba(27,27,24,0.08)",borderLight:"rgba(27,27,24,0.05)",borderHeavy:"rgba(27,27,24,0.12)",divider:"rgba(27,27,24,0.1)",overlay:"rgba(27,27,24,0.4)",success:"#10b981",warning:"#f59e0b",error:"#ef4444",info:"#3b82f6",focus:"#950050"},radius:{sm:"3px",md:"6px",lg:"10px",xl:"14px",full:"9999px"},shadow:{sm:"0 1px 2px rgba(0,0,0,0.04)",md:"0 2px 4px rgba(0,0,0,0.06)",lg:"0 4px 6px rgba(0,0,0,0.08)",xl:"0 10px 15px rgba(0,0,0,0.1)"},elevation:{0:"none",1:"0 1px 2px rgba(0,0,0,0.04)",2:"0 2px 4px rgba(0,0,0,0.06)",3:"0 4px 6px rgba(0,0,0,0.08)",4:"0 10px 15px rgba(0,0,0,0.1)"}},dark:{color:{text:"#f6f3ee",textSecondary:"#a8a09a",background:"#11100f",surface:"#191817",surfaceElevated:"#242220",primary:"#b083e8",primaryText:"#0f0b10",secondary:"#9b8b7d",secondaryText:"#f6f3ee",muted:"#a8a09a",border:"rgba(246,243,238,0.08)",borderLight:"rgba(246,243,238,0.05)",borderHeavy:"rgba(246,243,238,0.12)",divider:"rgba(246,243,238,0.1)",overlay:"rgba(17,16,15,0.7)",success:"#10b981",warning:"#f59e0b",error:"#ef4444",info:"#3b82f6",focus:"#9b4dca"},radius:{sm:"3px",md:"6px",lg:"10px",xl:"14px",full:"9999px"},shadow:{sm:"0 1px 3px rgba(0,0,0,0.6)",md:"0 2px 6px rgba(0,0,0,0.7)",lg:"0 4px 10px rgba(0,0,0,0.8)",xl:"0 10px 20px rgba(0,0,0,0.9)"},elevation:{0:"none",1:"0 1px 3px rgba(0,0,0,0.6)",2:"0 2px 6px rgba(0,0,0,0.7)",3:"0 4px 10px rgba(0,0,0,0.8)",4:"0 10px 20px rgba(0,0,0,0.9)"}}},sap:{light:{color:{text:"#1d1d1f",background:"#f4f7f6",surface:"#ffffff",primary:"#006c8e",primaryText:"#ffffff",secondary:"#7d8a91",muted:"#7d8a91",success:"#4CAF50",error:"#F44336",warning:"#FF9800",info:"#2196F3"},radius:{sm:"4px",md:"8px",lg:"12px"},shadow:{sm:"0 1px 4px rgba(0, 0, 0, 0.1)",md:"0 4px 6px rgba(0, 0, 0, 0.1)",lg:"0 10px 20px rgba(0, 0, 0, 0.15)"}}}},ni="vts:theme",uo=typeof window<"u"&&window.matchMedia?window.matchMedia("(prefers-color-scheme: dark)"):null;function ri(n,t=""){const r={};for(const o in n){const a=n[o],l=t?`${t}-${o}`:o;a&&typeof a=="object"?Object.assign(r,ri(a,l)):r[l]=a}return r}function oi({themes:n=so,defaultTheme:t="default",defaultVariant:r="system"}={}){const o=e.reactive({theme:t,variant:r});function a(c){return c==="system"?uo&&uo.matches?"dark":"light":c}function l(c,s){const d=n?.[c]?.[s];if(!d){console.warn(`[vts] No tokens for ${c}/${s}`);return}document.documentElement.setAttribute("data-theme",`${c}--${s}`);const u=ri(d);Object.entries(u).forEach(([h,f])=>{if(f==null)return;const p=`--vts-${h}`;if(document.documentElement.style.setProperty(p,String(f)),/^[a-z][a-zA-Z0-9]+-/.test(h)){const m=h.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase();document.documentElement.style.setProperty(`--${m}`,`var(--vts-${h})`)}})}function i(c,s=r,{persist:d=!0}={}){if(!n[c])throw new Error(`[vts] Unknown theme "${c}"`);o.theme=c,o.variant=s;const u=a(s);if(l(c,u),d)try{localStorage.setItem(ni,JSON.stringify({theme:c,variant:s}))}catch{}}return(function(){try{const s=JSON.parse(localStorage.getItem(ni)||"null");s?.theme?i(s.theme,s.variant??r,{persist:!1}):i(t,r,{persist:!1})}catch{i(t,r,{persist:!1})}uo&&uo.addEventListener("change",()=>{if(o.variant==="system"){const s=a("system");l(o.theme,s)}})})(),{install(c){c.provide("vts-theme",e.readonly(o)),c.config.globalProperties.$vts={get theme(){return o.theme},get variant(){return o.variant},setTheme:i}},setTheme:i,state:e.readonly(o),themes:n,resolveVariant:a}}function i3(){const n=e.inject("vts-theme");if(!n)throw new Error("[vts] theme plugin not installed. Did you call app.use(plugin)?");return n}const c3={class:"flex-1"},s3=["innerHTML"],d3={key:0,class:"mt-2 flex gap-2"},u3=["onClick"],h3=e.defineComponent({__name:"SnackBar",props:{item:{}},emits:["close"],setup(n,{emit:t}){const r=n,o=t,a=r.item,l=e.ref(!0),i=e.ref(!1),c=e.ref(null);let s=null,d=0,u=a.timeout,h=!1,f=0,p=0,m=0;a.icon,a.icon||K(a.variant);function w(){a.timeout!==0&&(g(),d=Date.now(),s=window.setTimeout(()=>{C()},u))}function g(){s&&(clearTimeout(s),s=null)}function k(){if(a.pauseOnHover&&(i.value=!0,s)){g();const T=Date.now()-d;u=Math.max(0,u-T)}}function x(){a.pauseOnHover&&i.value&&(i.value=!1,w())}function v(){a.closeOnClick&&C()}function b(T){if(T.onClick)try{T.onClick(a.meta)}catch(E){console.warn(E)}}function C(){l.value=!1,setTimeout(()=>{o("close",a.id),a.onClose&&a.onClose()},180)}function A(T){h=!0,c.value?.setPointerCapture(T.pointerId),f=T.clientX}function y(T){h&&(p=T.clientX,m=p-f,c.value&&(c.value.style.transform=`translateX(${m}px)`))}function B(T){h&&(h=!1,c.value?.releasePointerCapture(T.pointerId),Math.abs(m)>80?(c.value&&(c.value.style.transition="transform .16s ease, opacity .16s ease"),c.value.style.transform=`translateX(${m>0?1e3:-1e3}px)`,c.value.style.opacity="0",setTimeout(()=>C(),160)):c.value&&(c.value.style.transition="transform .12s ease",c.value.style.transform=""),m=0)}function V(){h=!1,m=0}const S=e.ref("ltr"),Z=e.computed(()=>S.value==="ltr"?"fixed left-4 top-4":"fixed right-4 top-4");function D(){const T=window?.globalrtl;if(typeof T=="string"){const N=T.toLowerCase();if(N==="ltr"||N==="rtl")return N}return(document.documentElement.getAttribute("dir")||"ltr").toLowerCase()==="rtl"?"rtl":"ltr"}let R=null;e.onMounted(()=>{u=a.timeout,a.timeout>0&&w(),S.value=D(),R=new MutationObserver(()=>{S.value=D()}),R.observe(document.documentElement,{attributes:!0,attributeFilter:["dir"]})}),e.onBeforeUnmount(()=>{g(),R&&(R.disconnect(),R=null)});function K(T){const E={success:`
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5">
3
+ <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 00-1.414-1.414L8 11.172 5.707 8.879a1 1 0 00-1.414 1.414l3 3a1 1 0 001.414 0l8-8z" clip-rule="evenodd"/>
4
+ </svg>
5
+ `,error:`
6
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5">
7
+ <path fill-rule="evenodd" d="M8.257 3.099c.366-.446.957-.699 1.57-.699h.346c.613 0 1.204.253 1.57.699l6.518 7.944c.36.438.39 1.07.073 1.53a1.5 1.5 0 01-1.2.642H3.068a1.5 1.5 0 01-1.2-.642c-.317-.46-.287-1.092.073-1.53L8.257 3.1zM9 9a1 1 0 100 2 1 1 0 000-2zm1 4a1 1 0 10-2 0 1 1 0 002 0z" clip-rule="evenodd"/>
8
+ </svg>
9
+ `,info:`
10
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5">
11
+ <path d="M18 10A8 8 0 1110 2a8 8 0 018 8zM9 8a1 1 0 112 0 1 1 0 01-2 0zm0 2h2v4H9v-4z"/>
12
+ </svg>
13
+ `,warning:`
14
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5">
15
+ <path d="M8.257 3.099c.366-.446.957-.699 1.57-.699h.346c.613 0 1.204.253 1.57.699l6.518 7.944c.36.438.39 1.07.073 1.53a1.5 1.5 0 01-1.2.642H3.068a1.5 1.5 0 01-1.2-.642c-.317-.46-.287-1.092.073-1.53L8.257 3.1z"/>
16
+ </svg>
17
+ `,default:`
18
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5">
19
+ <path d="M2 5a2 2 0 012-2h12a2 2 0 012 2v8a2 2 0 01-2 2H4a2 2 0 01-2-2V5z"/>
20
+ </svg>
21
+ `};return E[T]||E.default}const _=(()=>{switch(a.variant){case"success":return"bg-green-50 text-green-800 border border-green-100";case"error":return"bg-red-50 text-red-800 border border-red-100";case"warning":return"bg-yellow-50 text-yellow-800 border border-yellow-100";case"info":return"bg-blue-50 text-blue-800 border border-blue-100";default:return"bg-white text-slate-800 border border-slate-100"}})();return(T,E)=>e.withDirectives((e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["max-w-lg min-w-[200px] shadow-lg rounded-md px-4 py-3 flex items-start gap-3 cursor-pointer select-none",[e.unref(_),Z.value]]),role:"status",onMouseenter:k,onMouseleave:x,onClick:v,ref_key:"root",ref:c,onPointerdownPassive:A,onPointermovePassive:y,onPointerupPassive:B,onPointercancelPassive:V},[e.createElementVNode("div",c3,[e.createElementVNode("div",{class:"text-sm leading-tight",innerHTML:e.unref(a).message},null,8,s3),e.unref(a).actions?.length?(e.openBlock(),e.createElementBlock("div",d3,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(a).actions,(N,F)=>(e.openBlock(),e.createElementBlock("button",{key:F,onClick:e.withModifiers(P=>b(N),["stop"]),class:"text-sm font-medium underline"},e.toDisplayString(N.label),9,u3))),128))])):e.createCommentVNode("",!0)]),(e.openBlock(),e.createElementBlock("button",{key:0,onClick:e.withModifiers(C,["stop"]),class:"ml-3 flex-none"},[...E[0]||(E[0]=[e.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",class:"w-4 h-4",viewBox:"0 0 20 20",fill:"currentColor"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z","clip-rule":"evenodd"})],-1)])]))],34)),[[e.vShow,l.value]])}}),p3={"aria-hidden":"false"},f3=e.defineComponent({__name:"SnackBarContainer",props:{state:{},config:{}},setup(n){const t=n,r=["top-left","top-center","top-right","bottom-left","bottom-center","bottom-right"];function o(i){const c={"top-left":"fixed top-4 left-4 z-50 flex flex-col items-start space-y-2","top-center":"fixed top-4 left-1/2 transform -translate-x-1/2 z-50 flex flex-col items-center space-y-2","top-right":"fixed top-4 right-4 z-50 flex flex-col items-end space-y-2","bottom-left":"fixed bottom-4 left-4 z-50 flex flex-col-reverse items-start space-y-2","bottom-center":"fixed bottom-4 left-1/2 transform -translate-x-1/2 z-50 flex flex-col-reverse items-center space-y-2","bottom-right":"fixed bottom-4 right-4 z-50 flex flex-col-reverse items-end space-y-2"};return c[i]||c["bottom-left"]}function a(i){return t.state.active.filter(c=>c.position===i)}function l(i){const c=new CustomEvent("snackbar-close",{detail:{id:i}});window.dispatchEvent(c)}return(i,c)=>(e.openBlock(),e.createElementBlock("div",p3,[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(r,s=>e.createElementVNode("div",{key:s,class:e.normalizeClass(o(s))},[e.createVNode(e.TransitionGroup,{name:"snack-list",tag:"div"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a(s),d=>(e.openBlock(),e.createBlock(h3,{key:d.id,item:d,onClose:l},null,8,["item"]))),128))]),_:2},1024)],2)),64))]))}}),m3={position:"bottom-center",timeout:4e3,transition:"slide-up",mode:"stack",pauseOnHover:!0,closeOnClick:!0,rtl:!1};function w3(n,t={}){const r={...m3,...t},o=e.reactive({active:[],queue:[]});function a(){return Math.random().toString(36).slice(2,9)}function l(w){const g=w.id??a(),k={id:g,message:w.message||"",variant:w.variant||"default",timeout:typeof w.timeout=="number"?w.timeout:r.timeout,actions:w.actions||[],position:w.position||r.position,transition:w.transition||r.transition,closeOnClick:w.closeOnClick??r.closeOnClick,pauseOnHover:w.pauseOnHover??r.pauseOnHover,mode:w.mode||r.mode,onClose:w.onClose??(()=>{}),color:w.color,icon:w.icon,rtl:w.rtl??r.rtl,meta:w.meta??null};return k.mode==="queue"&&o.active.length>0?o.queue.push(k):o.active.push(k),g}function i(w){if(!w)return;const g=o.active.findIndex(k=>k.id===w);if(g>=0)if(o.active.splice(g,1),o.queue.length>0){const k=o.queue.shift();o.active.push(k)}else{const k=o.queue.findIndex(x=>x.id===w);k>=0&&o.queue.splice(k,1)}}function c(){o.active.splice(0),o.queue.splice(0)}function s(w,g={}){const k=typeof w=="string"?{message:w,...g}:w;return l({...k,variant:"success"})}function d(w,g={}){const k=typeof w=="string"?{message:w,...g}:w;return l({...k,variant:"error"})}function u(w,g={}){const k=typeof w=="string"?{message:w,...g}:w;return l({...k,variant:"info"})}function h(w,g={}){const k=typeof w=="string"?{message:w,...g}:w;return l({...k,variant:"warning"})}const f={state:e.readonly(o),show:l,success:s,error:d,info:u,warning:h,close:i,clear:c,config:r};n.provide("snackbar",f),n.config.globalProperties.$snackbar=f,window.__snackbar_api__=f,window.addEventListener("snackbar-close",w=>{const g=w.detail?.id;g&&f.close(g)});const p=document.createElement("div");document.body.appendChild(p),e.createApp(f3,{state:o,config:r}).mount(p)}const et=e.ref(!0),ai={en:{buttons:{submit:"Submit",cancel:"Cancel",save:"Save",add:"Add",ok:"OK",print:"Print",download:"Download",yes:"Yes",no:"No",delete:"Delete",edit:"Edit",close:"Close",search:"Search"},placeholders:{search:"Search...",select:"Select an option"},labels:{name:"Name",email:"Email",password:"Password"},pagination:{itemsPerPage:"Items per page:",jumpToPage:"Jump to page:",of:"of",next:"Next",previous:"Previous",page:"Page"}},dv:{buttons:{submit:"ސަބްމިޓް",cancel:"ކެންސަލް",add:"އެޑް",save:"ސޭވް",ok:"އޯކޭ",print:"ޕްރިންޓް",download:"ޑައިންލޯޑް",yes:"ރަގަނޅު",no:"ނޫން",delete:"ޑިލިޓް",edit:"އެޑިޓް",close:"ކްލޯސް",search:"ހޯދާ"},placeholders:{search:"ހޯދާ...",select:"އޮޕްޝަން"},labels:{name:"ނަން",email:"އީމެއިލް",password:"ޕާސްވަޑް"},pagination:{itemsPerPage:"ކޮންމެ ސަފުހާއަކަށް:",jumpToPage:"ސަފުހާއަށް ދާން:",of:"ގެ",next:"ކުރިޔަން",previous:"ފަހަތަށް",page:"ސަފުހާ"}}},fl=e.ref(localStorage.getItem("language")||"en"),lr=()=>{const n=(o,a="")=>{const l=a||fl.value,i=o.split(".");let c=ai[l];for(const s of i)c=c?.[s];return c||o},t=o=>{ai[o]&&(fl.value=o,localStorage.setItem("language",o),document.documentElement.lang=o)},r=e.computed(()=>fl.value);return{t:n,setLanguage:t,language:r}},ml={xs:"vts-text-caption vts-pl-2 vts-pr-2 vts-pt-1 vts-pb-1",sm:"vts-text-body-2 vts-pl-3 vts-pr-3 vts-pt-2 vts-pb-2",md:"vts-text-body-1 vts-pl-4 vts-pr-4 vts-pt-2 vts-pb-2",lg:"vts-text-body-1 vts-pl-5 vts-pr-5 vts-pt-3 vts-pb-3",xl:"vts-text-body-1 vts-pl-6 vts-pr-6 vts-pt-4 vts-pb-4"},V0={xs:15,sm:15,md:18,lg:20,xl:24},En={none:"vts-rounded-none",sm:"vts-rounded-sm",md:"vts-rounded-md",lg:"vts-rounded-lg",xl:"vts-rounded-xl","2xl":"vts-rounded-2xl","3xl":"vts-rounded-3xl",full:"vts-rounded-full"},A0={primary:{contained:"vts-bg-primary vts-text-on-primary vts-transition-colors vts-hover-bg-primary",outlined:"border vts-border-primary vts-text-primary bg-transparent transition-colors vts-hover-bg-surface",text:"vts-text-primary vts-bg-transparent vts-transition-colors vts-hover-bg-surface",tonal:"vts-bg-surface vts-text-primary vts-transition-colors vts-hover-bg-surface"},success:{contained:"vts-bg-success vts-text-on-success vts-transition-colors vts-hover-bg-success",outlined:"vts-border vts-border-color vts-text-success vts-bg-transparent vts-transition-colors vts-hover-bg-surface",text:"vts-text-success vts-bg-transparent vts-transition-colors vts-hover-bg-surface",tonal:"vts-bg-surface vts-text-success vts-transition-colors vts-hover-bg-surface"},danger:{contained:"vts-bg-error vts-text-on-error vts-transition-colors vts-hover-bg-error",outlined:"vts-border vts-border-color vts-text-error vts-bg-transparent vts-transition-colors vts-hover-bg-surface",text:"vts-text-error vts-bg-transparent vts-transition-colors vts-hover-bg-surface",tonal:"vts-bg-surface vts-text-error vts-transition-colors vts-hover-bg-surface"},warning:{contained:"vts-bg-warning vts-text-on-warning vts-transition-colors vts-hover-bg-warning",outlined:"vts-border vts-border-color vts-text-warning vts-bg-transparent vts-transition-colors vts-hover-bg-surface",text:"vts-text-warning vts-bg-transparent vts-transition-colors vts-hover-bg-surface",tonal:"vts-bg-surface vts-text-warning vts-transition-colors vts-hover-bg-surface"},info:{contained:"vts-bg-info vts-text-on-info vts-transition-colors vts-hover-bg-info",outlined:"vts-border vts-border-color vts-text-info vts-bg-transparent vts-transition-colors vts-hover-bg-surface",text:"vts-text-info vts-bg-transparent vts-transition-colors vts-hover-bg-surface",tonal:"vts-bg-surface vts-text-info vts-transition-colors vts-hover-bg-surface"},gray:{contained:"vts-bg-surface-elevated vts-text vts-transition-colors vts-hover-bg-surface",outlined:"vts-border vts-border-color vts-text-secondary vts-bg-transparent vts-transition-colors vts-hover-bg-surface",text:"vts-text-secondary vts-bg-transparent vts-transition-colors vts-hover-bg-surface",tonal:"vts-bg-surface vts-text-secondary vts-transition-colors vts-hover-bg-surface"},disable:{contained:"vts-bg-disabled vts-text-on-disabled vts-transition-colors",outlined:"vts-border vts-border-color vts-text-disabled vts-bg-transparent vts-transition-colors",text:"vts-text-disabled vts-bg-transparent vts-transition-colors",tonal:"vts-bg-surface vts-text-disabled vts-transition-colors"},none:{contained:"",outlined:"",text:"",tonal:""}},g3={none:"",xs:"vts-h-6",sm:"vts-h-8",md:"vts-h-10",lg:"vts-h-12",xl:"vts-h-14"},ho=(n,t,r=null)=>{const{language:o}=lr();console.log("useLanguageSelected called with item:",n.en);const a=e.computed(()=>{let i="";return t!=""?i=t:i=o.value,i==="dv"?"dv":"en"});if(typeof n=="string"&&n!=="")return n;if(!n||typeof n!="object")return"";const l=a.value==="dv"?"dv":"en";return r?n[l]?.[r]??n.en?.[r]??"":n[l]??n.en??""};function li(n){const t=n.value,o=typeof t=="object"&&t!==null&&("text"in t||"placement"in t||"arrow"in t||"openOnHover"in t||"showDelay"in t||"hideDelay"in t||"disabled"in t);return{text:typeof t=="string"?t:o&&"text"in t?t.text:o?"default tooltip":t,placement:o&&t.placement?t.placement:"top",arrow:o&&t.arrow!==void 0?!!t.arrow:!0,openOnHover:o&&t.openOnHover!==void 0?!!t.openOnHover:!0,openOnFocus:o&&t.openOnFocus!==void 0?!!t.openOnFocus:!0,openOnClick:o&&t.openOnClick!==void 0?!!t.openOnClick:!1,showDelay:o&&t.showDelay!==void 0?Number(t.showDelay):80,hideDelay:o&&t.hideDelay!==void 0?Number(t.hideDelay):80,offset:o&&t.offset?t.offset:{x:0,y:0},disabled:o&&t.disabled!==void 0?!!t.disabled:!1}}function ii(n,t){return!(t?.hover||t?.click||t?.focus)?n:{...n,openOnHover:!!t.hover,openOnClick:!!t.click,openOnFocus:!!t.focus}}function ci(n,t){if(!t)return n;const o=["top","bottom","left","right"].find(a=>t[a]);return o?{...n,placement:o}:n}function si(n){const t=["faruma"],r=[];if(!n)return r;for(const o of t)n[o]&&r.push(o);return r}function di(n){if(!n.tooltipEl)return;const t=["faruma"];for(const r of t)n.classModifiers.includes(r)?n.tooltipEl.classList.add(r):n.tooltipEl.classList.remove(r)}function k3(n){return!et.value?n:n==="left"?"right":n==="right"?"left":n}function ui(n){return n&&ho(n,"")||"empty-tooltip"}function x3(n){if(n.tooltipEl)return;const t=document.createElement("div");t.className="vts-tooltip",t.setAttribute("role","tooltip"),t.style.position="absolute",t.style.top="-9999px",t.style.left="-9999px",t.style.visibility="hidden",t.style.zIndex="var(--vts-z-tooltip, 1000)";const r=document.createElement("div");r.className="vts-tooltip-content";const{language:o}=lr();if((o.value==="dv"||n.classModifiers.includes("faruma"))&&r.classList.add("faruma"),r.textContent=ui(n.options.text),t.appendChild(r),n.options.arrow){const a=document.createElement("div");a.className="vts-tooltip-arrow",t.appendChild(a),n.arrowEl=a}document.body.appendChild(t),n.tooltipEl=t,di(n)}function hi(n){if(!n.tooltipEl)return;const t=n.tooltipEl.querySelector(".vts-tooltip-content");if(t){t.textContent=ui(n.options.text);const{language:r}=lr();r.value==="dv"||n.classModifiers.includes("faruma")?t.classList.add("faruma"):t.classList.remove("faruma")}}function wl(n,t){if(!t.tooltipEl)return;const r=t.tooltipEl,o=n.getBoundingClientRect(),a=r.getBoundingClientRect(),l=window.scrollX||window.pageXOffset,i=window.scrollY||window.pageYOffset,c=k3(t.options.placement||"top"),s=t.options.offset?.x??0,d=t.options.offset?.y??0,u=t.options.arrow?8:0;let h=0,f=0;switch(c){case"top":h=o.top+i-a.height-u-d,f=o.left+l+o.width/2-a.width/2+s;break;case"bottom":h=o.bottom+i+u+d,f=o.left+l+o.width/2-a.width/2+s;break;case"left":h=o.top+i+o.height/2-a.height/2+d,f=o.left+l-a.width-u-s;break;case"right":h=o.top+i+o.height/2-a.height/2+d,f=o.right+l+u+s;break}if(r.style.top=`${h}px`,r.style.left=`${f}px`,r.style.visibility="",t.options.arrow&&t.arrowEl){const m=t.arrowEl;switch(m.style.width="8px",m.style.height="8px",c){case"top":m.style.bottom="-4px",m.style.left="50%",m.style.top="",m.style.right="",m.style.transform="translateX(-50%) rotate(225deg)";break;case"bottom":m.style.top="-4px",m.style.left="50%",m.style.bottom="",m.style.right="",m.style.transform="translateX(-50%) rotate(45deg)";break;case"left":m.style.right="-4px",m.style.top="50%",m.style.left="",m.style.bottom="",m.style.transform="translateY(-50%) rotate(135deg)";break;case"right":m.style.left="-4px",m.style.top="50%",m.style.right="",m.style.bottom="",m.style.transform="translateY(-50%) rotate(315deg)";break}}}function gl(n,t,r=null){t.options.disabled||(t.showTimer&&window.clearTimeout(t.showTimer),t.hideTimer&&window.clearTimeout(t.hideTimer),t.showTimer=window.setTimeout(()=>{t.lastTrigger=r,x3(t),t.open=!0,wl(n,t)},t.options.showDelay??80))}function ir(n){n.showTimer&&window.clearTimeout(n.showTimer),n.hideTimer&&window.clearTimeout(n.hideTimer),n.hideTimer=window.setTimeout(()=>{n.open=!1,n.tooltipEl&&(n.tooltipEl.style.visibility="hidden"),n.lastTrigger=null},n.options.hideDelay??80)}function v3(n,t){n.removeEventListener("mouseover",t.handlers.mouseover),n.removeEventListener("mouseout",t.handlers.mouseout),n.removeEventListener("focusin",t.handlers.focusin),n.removeEventListener("focusout",t.handlers.focusout),n.removeEventListener("click",t.handlers.click),document.removeEventListener("click",t.handlers.docClick),document.removeEventListener("keydown",t.handlers.keydown),t.unwatchLanguage&&t.unwatchLanguage(),t.tooltipEl&&t.tooltipEl.parentNode&&t.tooltipEl.parentNode.removeChild(t.tooltipEl),t.showTimer&&window.clearTimeout(t.showTimer),t.hideTimer&&window.clearTimeout(t.hideTimer),n.__tooltipState=void 0}const y3={mounted(n,t){const o={options:ci(ii(li(t),t.modifiers||{}),t.modifiers||{}),tooltipEl:null,arrowEl:null,showTimer:null,hideTimer:null,open:!1,handlers:{},lastTrigger:null,classModifiers:si(t.modifiers)},{language:a}=lr(),l=e.watch(a,()=>{hi(o),o.open&&wl(n,o)});o.unwatchLanguage=l,o.handlers.mouseover=i=>{o.options.openOnHover&&gl(n,o,"hover")},o.handlers.mouseout=i=>{if(!o.options.openOnHover)return;const c=i.relatedTarget;c&&n.contains(c)||ir(o)},o.handlers.focusin=()=>o.options.openOnFocus&&gl(n,o,"focus"),o.handlers.focusout=()=>o.options.openOnFocus&&ir(o),o.handlers.click=()=>{o.options.openOnClick&&(o.open?ir(o):gl(n,o,"click"))},o.handlers.docClick=i=>{if(!o.open)return;const c=i.target;o.tooltipEl&&o.tooltipEl.contains(c)||n.contains(c)||ir(o)},o.handlers.keydown=i=>{i.key==="Escape"&&ir(o)},n.addEventListener("mouseover",o.handlers.mouseover),n.addEventListener("mouseout",o.handlers.mouseout),n.addEventListener("focusin",o.handlers.focusin),n.addEventListener("focusout",o.handlers.focusout),n.addEventListener("click",o.handlers.click),document.addEventListener("click",o.handlers.docClick,{passive:!0}),document.addEventListener("keydown",o.handlers.keydown),n.__tooltipState=o},updated(n,t){const r=n.__tooltipState;r&&(r.options=ci(ii(li(t),t.modifiers||{}),t.modifiers||{}),r.classModifiers=si(t.modifiers),hi(r),di(r),r.open&&wl(n,r))},unmounted(n){const t=n.__tooltipState;t&&v3(n,t)}};function _0(n){et.value=n,localStorage.setItem("rtlSetting",JSON.stringify(n)),typeof document<"u"&&(document.documentElement.setAttribute("dir",n?"rtl":"ltr"),document.documentElement.setAttribute("lang",n==!0?"dv":"en"),n?document.documentElement.classList.add("rtl-font"):document.documentElement.classList.remove("rtl-font"))}const pi={install(n){const{t,setLanguage:r,language:o}=lr();e.watch(o,a=>{_0(a==="dv")}),n.provide("i18n",{t,setLanguage:r,language:o}),n.config.globalProperties.$t=t,n.config.globalProperties.$setLanguage=r,n.config.globalProperties.$language=o}};function fi(n,t){return function(){return n.apply(t,arguments)}}const{toString:B3}=Object.prototype,{getPrototypeOf:kl}=Object,{iterator:po,toStringTag:mi}=Symbol,fo=(n=>t=>{const r=B3.call(t);return n[r]||(n[r]=r.slice(8,-1).toLowerCase())})(Object.create(null)),Lt=n=>(n=n.toLowerCase(),t=>fo(t)===n),mo=n=>t=>typeof t===n,{isArray:N0}=Array,Z0=mo("undefined");function cr(n){return n!==null&&!Z0(n)&&n.constructor!==null&&!Z0(n.constructor)&&xt(n.constructor.isBuffer)&&n.constructor.isBuffer(n)}const wi=Lt("ArrayBuffer");function E3(n){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(n):t=n&&n.buffer&&wi(n.buffer),t}const b3=mo("string"),xt=mo("function"),gi=mo("number"),sr=n=>n!==null&&typeof n=="object",C3=n=>n===!0||n===!1,wo=n=>{if(fo(n)!=="object")return!1;const t=kl(n);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(mi in n)&&!(po in n)},M3=n=>{if(!sr(n)||cr(n))return!1;try{return Object.keys(n).length===0&&Object.getPrototypeOf(n)===Object.prototype}catch{return!1}},V3=Lt("Date"),A3=Lt("File"),_3=Lt("Blob"),N3=Lt("FileList"),Z3=n=>sr(n)&&xt(n.pipe),S3=n=>{let t;return n&&(typeof FormData=="function"&&n instanceof FormData||xt(n.append)&&((t=fo(n))==="formdata"||t==="object"&&xt(n.toString)&&n.toString()==="[object FormData]"))},$3=Lt("URLSearchParams"),[I3,H3,T3,L3]=["ReadableStream","Request","Response","Headers"].map(Lt),D3=n=>n.trim?n.trim():n.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function dr(n,t,{allOwnKeys:r=!1}={}){if(n===null||typeof n>"u")return;let o,a;if(typeof n!="object"&&(n=[n]),N0(n))for(o=0,a=n.length;o<a;o++)t.call(null,n[o],o,n);else{if(cr(n))return;const l=r?Object.getOwnPropertyNames(n):Object.keys(n),i=l.length;let c;for(o=0;o<i;o++)c=l[o],t.call(null,n[c],c,n)}}function ki(n,t){if(cr(n))return null;t=t.toLowerCase();const r=Object.keys(n);let o=r.length,a;for(;o-- >0;)if(a=r[o],t===a.toLowerCase())return a;return null}const Wn=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,xi=n=>!Z0(n)&&n!==Wn;function xl(){const{caseless:n,skipUndefined:t}=xi(this)&&this||{},r={},o=(a,l)=>{const i=n&&ki(r,l)||l;wo(r[i])&&wo(a)?r[i]=xl(r[i],a):wo(a)?r[i]=xl({},a):N0(a)?r[i]=a.slice():(!t||!Z0(a))&&(r[i]=a)};for(let a=0,l=arguments.length;a<l;a++)arguments[a]&&dr(arguments[a],o);return r}const P3=(n,t,r,{allOwnKeys:o}={})=>(dr(t,(a,l)=>{r&&xt(a)?Object.defineProperty(n,l,{value:fi(a,r),writable:!0,enumerable:!0,configurable:!0}):Object.defineProperty(n,l,{value:a,writable:!0,enumerable:!0,configurable:!0})},{allOwnKeys:o}),n),O3=n=>(n.charCodeAt(0)===65279&&(n=n.slice(1)),n),R3=(n,t,r,o)=>{n.prototype=Object.create(t.prototype,o),Object.defineProperty(n.prototype,"constructor",{value:n,writable:!0,enumerable:!1,configurable:!0}),Object.defineProperty(n,"super",{value:t.prototype}),r&&Object.assign(n.prototype,r)},z3=(n,t,r,o)=>{let a,l,i;const c={};if(t=t||{},n==null)return t;do{for(a=Object.getOwnPropertyNames(n),l=a.length;l-- >0;)i=a[l],(!o||o(i,n,t))&&!c[i]&&(t[i]=n[i],c[i]=!0);n=r!==!1&&kl(n)}while(n&&(!r||r(n,t))&&n!==Object.prototype);return t},j3=(n,t,r)=>{n=String(n),(r===void 0||r>n.length)&&(r=n.length),r-=t.length;const o=n.indexOf(t,r);return o!==-1&&o===r},F3=n=>{if(!n)return null;if(N0(n))return n;let t=n.length;if(!gi(t))return null;const r=new Array(t);for(;t-- >0;)r[t]=n[t];return r},U3=(n=>t=>n&&t instanceof n)(typeof Uint8Array<"u"&&kl(Uint8Array)),W3=(n,t)=>{const o=(n&&n[po]).call(n);let a;for(;(a=o.next())&&!a.done;){const l=a.value;t.call(n,l[0],l[1])}},q3=(n,t)=>{let r;const o=[];for(;(r=n.exec(t))!==null;)o.push(r);return o},Y3=Lt("HTMLFormElement"),K3=n=>n.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(r,o,a){return o.toUpperCase()+a}),vi=(({hasOwnProperty:n})=>(t,r)=>n.call(t,r))(Object.prototype),G3=Lt("RegExp"),yi=(n,t)=>{const r=Object.getOwnPropertyDescriptors(n),o={};dr(r,(a,l)=>{let i;(i=t(a,l,n))!==!1&&(o[l]=i||a)}),Object.defineProperties(n,o)},J3=n=>{yi(n,(t,r)=>{if(xt(n)&&["arguments","caller","callee"].indexOf(r)!==-1)return!1;const o=n[r];if(xt(o)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+r+"'")})}})},X3=(n,t)=>{const r={},o=a=>{a.forEach(l=>{r[l]=!0})};return N0(n)?o(n):o(String(n).split(t)),r},Q3=()=>{},eu=(n,t)=>n!=null&&Number.isFinite(n=+n)?n:t;function tu(n){return!!(n&&xt(n.append)&&n[mi]==="FormData"&&n[po])}const nu=n=>{const t=new Array(10),r=(o,a)=>{if(sr(o)){if(t.indexOf(o)>=0)return;if(cr(o))return o;if(!("toJSON"in o)){t[a]=o;const l=N0(o)?[]:{};return dr(o,(i,c)=>{const s=r(i,a+1);!Z0(s)&&(l[c]=s)}),t[a]=void 0,l}}return o};return r(n,0)},ru=Lt("AsyncFunction"),ou=n=>n&&(sr(n)||xt(n))&&xt(n.then)&&xt(n.catch),Bi=((n,t)=>n?setImmediate:t?((r,o)=>(Wn.addEventListener("message",({source:a,data:l})=>{a===Wn&&l===r&&o.length&&o.shift()()},!1),a=>{o.push(a),Wn.postMessage(r,"*")}))(`axios@${Math.random()}`,[]):r=>setTimeout(r))(typeof setImmediate=="function",xt(Wn.postMessage)),au=typeof queueMicrotask<"u"?queueMicrotask.bind(Wn):typeof process<"u"&&process.nextTick||Bi,G={isArray:N0,isArrayBuffer:wi,isBuffer:cr,isFormData:S3,isArrayBufferView:E3,isString:b3,isNumber:gi,isBoolean:C3,isObject:sr,isPlainObject:wo,isEmptyObject:M3,isReadableStream:I3,isRequest:H3,isResponse:T3,isHeaders:L3,isUndefined:Z0,isDate:V3,isFile:A3,isBlob:_3,isRegExp:G3,isFunction:xt,isStream:Z3,isURLSearchParams:$3,isTypedArray:U3,isFileList:N3,forEach:dr,merge:xl,extend:P3,trim:D3,stripBOM:O3,inherits:R3,toFlatObject:z3,kindOf:fo,kindOfTest:Lt,endsWith:j3,toArray:F3,forEachEntry:W3,matchAll:q3,isHTMLForm:Y3,hasOwnProperty:vi,hasOwnProp:vi,reduceDescriptors:yi,freezeMethods:J3,toObjectSet:X3,toCamelCase:K3,noop:Q3,toFiniteNumber:eu,findKey:ki,global:Wn,isContextDefined:xi,isSpecCompliantForm:tu,toJSONObject:nu,isAsyncFn:ru,isThenable:ou,setImmediate:Bi,asap:au,isIterable:n=>n!=null&&xt(n[po])};let ye=class e3 extends Error{static from(t,r,o,a,l,i){const c=new e3(t.message,r||t.code,o,a,l);return c.cause=t,c.name=t.name,i&&Object.assign(c,i),c}constructor(t,r,o,a,l){super(t),this.name="AxiosError",this.isAxiosError=!0,r&&(this.code=r),o&&(this.config=o),a&&(this.request=a),l&&(this.response=l,this.status=l.status)}toJSON(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:G.toJSONObject(this.config),code:this.code,status:this.status}}};ye.ERR_BAD_OPTION_VALUE="ERR_BAD_OPTION_VALUE",ye.ERR_BAD_OPTION="ERR_BAD_OPTION",ye.ECONNABORTED="ECONNABORTED",ye.ETIMEDOUT="ETIMEDOUT",ye.ERR_NETWORK="ERR_NETWORK",ye.ERR_FR_TOO_MANY_REDIRECTS="ERR_FR_TOO_MANY_REDIRECTS",ye.ERR_DEPRECATED="ERR_DEPRECATED",ye.ERR_BAD_RESPONSE="ERR_BAD_RESPONSE",ye.ERR_BAD_REQUEST="ERR_BAD_REQUEST",ye.ERR_CANCELED="ERR_CANCELED",ye.ERR_NOT_SUPPORT="ERR_NOT_SUPPORT",ye.ERR_INVALID_URL="ERR_INVALID_URL";const lu=null;function vl(n){return G.isPlainObject(n)||G.isArray(n)}function Ei(n){return G.endsWith(n,"[]")?n.slice(0,-2):n}function bi(n,t,r){return n?n.concat(t).map(function(a,l){return a=Ei(a),!r&&l?"["+a+"]":a}).join(r?".":""):t}function iu(n){return G.isArray(n)&&!n.some(vl)}const cu=G.toFlatObject(G,{},null,function(t){return/^is[A-Z]/.test(t)});function go(n,t,r){if(!G.isObject(n))throw new TypeError("target must be an object");t=t||new FormData,r=G.toFlatObject(r,{metaTokens:!0,dots:!1,indexes:!1},!1,function(w,g){return!G.isUndefined(g[w])});const o=r.metaTokens,a=r.visitor||u,l=r.dots,i=r.indexes,s=(r.Blob||typeof Blob<"u"&&Blob)&&G.isSpecCompliantForm(t);if(!G.isFunction(a))throw new TypeError("visitor must be a function");function d(m){if(m===null)return"";if(G.isDate(m))return m.toISOString();if(G.isBoolean(m))return m.toString();if(!s&&G.isBlob(m))throw new ye("Blob is not supported. Use a Buffer instead.");return G.isArrayBuffer(m)||G.isTypedArray(m)?s&&typeof Blob=="function"?new Blob([m]):Buffer.from(m):m}function u(m,w,g){let k=m;if(m&&!g&&typeof m=="object"){if(G.endsWith(w,"{}"))w=o?w:w.slice(0,-2),m=JSON.stringify(m);else if(G.isArray(m)&&iu(m)||(G.isFileList(m)||G.endsWith(w,"[]"))&&(k=G.toArray(m)))return w=Ei(w),k.forEach(function(v,b){!(G.isUndefined(v)||v===null)&&t.append(i===!0?bi([w],b,l):i===null?w:w+"[]",d(v))}),!1}return vl(m)?!0:(t.append(bi(g,w,l),d(m)),!1)}const h=[],f=Object.assign(cu,{defaultVisitor:u,convertValue:d,isVisitable:vl});function p(m,w){if(!G.isUndefined(m)){if(h.indexOf(m)!==-1)throw Error("Circular reference detected in "+w.join("."));h.push(m),G.forEach(m,function(k,x){(!(G.isUndefined(k)||k===null)&&a.call(t,k,G.isString(x)?x.trim():x,w,f))===!0&&p(k,w?w.concat(x):[x])}),h.pop()}}if(!G.isObject(n))throw new TypeError("data must be an object");return p(n),t}function Ci(n){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(n).replace(/[!'()~]|%20|%00/g,function(o){return t[o]})}function yl(n,t){this._pairs=[],n&&go(n,this,t)}const Mi=yl.prototype;Mi.append=function(t,r){this._pairs.push([t,r])},Mi.toString=function(t){const r=t?function(o){return t.call(this,o,Ci)}:Ci;return this._pairs.map(function(a){return r(a[0])+"="+r(a[1])},"").join("&")};function su(n){return encodeURIComponent(n).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+")}function Vi(n,t,r){if(!t)return n;const o=r&&r.encode||su,a=G.isFunction(r)?{serialize:r}:r,l=a&&a.serialize;let i;if(l?i=l(t,a):i=G.isURLSearchParams(t)?t.toString():new yl(t,a).toString(o),i){const c=n.indexOf("#");c!==-1&&(n=n.slice(0,c)),n+=(n.indexOf("?")===-1?"?":"&")+i}return n}class Ai{constructor(){this.handlers=[]}use(t,r,o){return this.handlers.push({fulfilled:t,rejected:r,synchronous:o?o.synchronous:!1,runWhen:o?o.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){G.forEach(this.handlers,function(o){o!==null&&t(o)})}}const _i={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},du={isBrowser:!0,classes:{URLSearchParams:typeof URLSearchParams<"u"?URLSearchParams:yl,FormData:typeof FormData<"u"?FormData:null,Blob:typeof Blob<"u"?Blob:null},protocols:["http","https","file","blob","url","data"]},Bl=typeof window<"u"&&typeof document<"u",El=typeof navigator=="object"&&navigator||void 0,uu=Bl&&(!El||["ReactNative","NativeScript","NS"].indexOf(El.product)<0),hu=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",pu=Bl&&window.location.href||"http://localhost",ut={...Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Bl,hasStandardBrowserEnv:uu,hasStandardBrowserWebWorkerEnv:hu,navigator:El,origin:pu},Symbol.toStringTag,{value:"Module"})),...du};function fu(n,t){return go(n,new ut.classes.URLSearchParams,{visitor:function(r,o,a,l){return ut.isNode&&G.isBuffer(r)?(this.append(o,r.toString("base64")),!1):l.defaultVisitor.apply(this,arguments)},...t})}function mu(n){return G.matchAll(/\w+|\[(\w*)]/g,n).map(t=>t[0]==="[]"?"":t[1]||t[0])}function wu(n){const t={},r=Object.keys(n);let o;const a=r.length;let l;for(o=0;o<a;o++)l=r[o],t[l]=n[l];return t}function Ni(n){function t(r,o,a,l){let i=r[l++];if(i==="__proto__")return!0;const c=Number.isFinite(+i),s=l>=r.length;return i=!i&&G.isArray(a)?a.length:i,s?(G.hasOwnProp(a,i)?a[i]=[a[i],o]:a[i]=o,!c):((!a[i]||!G.isObject(a[i]))&&(a[i]=[]),t(r,o,a[i],l)&&G.isArray(a[i])&&(a[i]=wu(a[i])),!c)}if(G.isFormData(n)&&G.isFunction(n.entries)){const r={};return G.forEachEntry(n,(o,a)=>{t(mu(o),a,r,0)}),r}return null}function gu(n,t,r){if(G.isString(n))try{return(t||JSON.parse)(n),G.trim(n)}catch(o){if(o.name!=="SyntaxError")throw o}return(r||JSON.stringify)(n)}const ur={transitional:_i,adapter:["xhr","http","fetch"],transformRequest:[function(t,r){const o=r.getContentType()||"",a=o.indexOf("application/json")>-1,l=G.isObject(t);if(l&&G.isHTMLForm(t)&&(t=new FormData(t)),G.isFormData(t))return a?JSON.stringify(Ni(t)):t;if(G.isArrayBuffer(t)||G.isBuffer(t)||G.isStream(t)||G.isFile(t)||G.isBlob(t)||G.isReadableStream(t))return t;if(G.isArrayBufferView(t))return t.buffer;if(G.isURLSearchParams(t))return r.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let c;if(l){if(o.indexOf("application/x-www-form-urlencoded")>-1)return fu(t,this.formSerializer).toString();if((c=G.isFileList(t))||o.indexOf("multipart/form-data")>-1){const s=this.env&&this.env.FormData;return go(c?{"files[]":t}:t,s&&new s,this.formSerializer)}}return l||a?(r.setContentType("application/json",!1),gu(t)):t}],transformResponse:[function(t){const r=this.transitional||ur.transitional,o=r&&r.forcedJSONParsing,a=this.responseType==="json";if(G.isResponse(t)||G.isReadableStream(t))return t;if(t&&G.isString(t)&&(o&&!this.responseType||a)){const i=!(r&&r.silentJSONParsing)&&a;try{return JSON.parse(t,this.parseReviver)}catch(c){if(i)throw c.name==="SyntaxError"?ye.from(c,ye.ERR_BAD_RESPONSE,this,null,this.response):c}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:ut.classes.FormData,Blob:ut.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};G.forEach(["delete","get","head","post","put","patch"],n=>{ur.headers[n]={}});const ku=G.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),xu=n=>{const t={};let r,o,a;return n&&n.split(`
22
+ `).forEach(function(i){a=i.indexOf(":"),r=i.substring(0,a).trim().toLowerCase(),o=i.substring(a+1).trim(),!(!r||t[r]&&ku[r])&&(r==="set-cookie"?t[r]?t[r].push(o):t[r]=[o]:t[r]=t[r]?t[r]+", "+o:o)}),t},Zi=Symbol("internals");function hr(n){return n&&String(n).trim().toLowerCase()}function ko(n){return n===!1||n==null?n:G.isArray(n)?n.map(ko):String(n)}function vu(n){const t=Object.create(null),r=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let o;for(;o=r.exec(n);)t[o[1]]=o[2];return t}const yu=n=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(n.trim());function bl(n,t,r,o,a){if(G.isFunction(o))return o.call(this,t,r);if(a&&(t=r),!!G.isString(t)){if(G.isString(o))return t.indexOf(o)!==-1;if(G.isRegExp(o))return o.test(t)}}function Bu(n){return n.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,r,o)=>r.toUpperCase()+o)}function Eu(n,t){const r=G.toCamelCase(" "+t);["get","set","has"].forEach(o=>{Object.defineProperty(n,o+r,{value:function(a,l,i){return this[o].call(this,t,a,l,i)},configurable:!0})})}let vt=class{constructor(t){t&&this.set(t)}set(t,r,o){const a=this;function l(c,s,d){const u=hr(s);if(!u)throw new Error("header name must be a non-empty string");const h=G.findKey(a,u);(!h||a[h]===void 0||d===!0||d===void 0&&a[h]!==!1)&&(a[h||s]=ko(c))}const i=(c,s)=>G.forEach(c,(d,u)=>l(d,u,s));if(G.isPlainObject(t)||t instanceof this.constructor)i(t,r);else if(G.isString(t)&&(t=t.trim())&&!yu(t))i(xu(t),r);else if(G.isObject(t)&&G.isIterable(t)){let c={},s,d;for(const u of t){if(!G.isArray(u))throw TypeError("Object iterator must return a key-value pair");c[d=u[0]]=(s=c[d])?G.isArray(s)?[...s,u[1]]:[s,u[1]]:u[1]}i(c,r)}else t!=null&&l(r,t,o);return this}get(t,r){if(t=hr(t),t){const o=G.findKey(this,t);if(o){const a=this[o];if(!r)return a;if(r===!0)return vu(a);if(G.isFunction(r))return r.call(this,a,o);if(G.isRegExp(r))return r.exec(a);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,r){if(t=hr(t),t){const o=G.findKey(this,t);return!!(o&&this[o]!==void 0&&(!r||bl(this,this[o],o,r)))}return!1}delete(t,r){const o=this;let a=!1;function l(i){if(i=hr(i),i){const c=G.findKey(o,i);c&&(!r||bl(o,o[c],c,r))&&(delete o[c],a=!0)}}return G.isArray(t)?t.forEach(l):l(t),a}clear(t){const r=Object.keys(this);let o=r.length,a=!1;for(;o--;){const l=r[o];(!t||bl(this,this[l],l,t,!0))&&(delete this[l],a=!0)}return a}normalize(t){const r=this,o={};return G.forEach(this,(a,l)=>{const i=G.findKey(o,l);if(i){r[i]=ko(a),delete r[l];return}const c=t?Bu(l):String(l).trim();c!==l&&delete r[l],r[c]=ko(a),o[c]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const r=Object.create(null);return G.forEach(this,(o,a)=>{o!=null&&o!==!1&&(r[a]=t&&G.isArray(o)?o.join(", "):o)}),r}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,r])=>t+": "+r).join(`
23
+ `)}getSetCookie(){return this.get("set-cookie")||[]}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...r){const o=new this(t);return r.forEach(a=>o.set(a)),o}static accessor(t){const o=(this[Zi]=this[Zi]={accessors:{}}).accessors,a=this.prototype;function l(i){const c=hr(i);o[c]||(Eu(a,i),o[c]=!0)}return G.isArray(t)?t.forEach(l):l(t),this}};vt.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),G.reduceDescriptors(vt.prototype,({value:n},t)=>{let r=t[0].toUpperCase()+t.slice(1);return{get:()=>n,set(o){this[r]=o}}}),G.freezeMethods(vt);function Cl(n,t){const r=this||ur,o=t||r,a=vt.from(o.headers);let l=o.data;return G.forEach(n,function(c){l=c.call(r,l,a.normalize(),t?t.status:void 0)}),a.normalize(),l}function Si(n){return!!(n&&n.__CANCEL__)}let pr=class extends ye{constructor(t,r,o){super(t??"canceled",ye.ERR_CANCELED,r,o),this.name="CanceledError",this.__CANCEL__=!0}};function $i(n,t,r){const o=r.config.validateStatus;!r.status||!o||o(r.status)?n(r):t(new ye("Request failed with status code "+r.status,[ye.ERR_BAD_REQUEST,ye.ERR_BAD_RESPONSE][Math.floor(r.status/100)-4],r.config,r.request,r))}function bu(n){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(n);return t&&t[1]||""}function Cu(n,t){n=n||10;const r=new Array(n),o=new Array(n);let a=0,l=0,i;return t=t!==void 0?t:1e3,function(s){const d=Date.now(),u=o[l];i||(i=d),r[a]=s,o[a]=d;let h=l,f=0;for(;h!==a;)f+=r[h++],h=h%n;if(a=(a+1)%n,a===l&&(l=(l+1)%n),d-i<t)return;const p=u&&d-u;return p?Math.round(f*1e3/p):void 0}}function Mu(n,t){let r=0,o=1e3/t,a,l;const i=(d,u=Date.now())=>{r=u,a=null,l&&(clearTimeout(l),l=null),n(...d)};return[(...d)=>{const u=Date.now(),h=u-r;h>=o?i(d,u):(a=d,l||(l=setTimeout(()=>{l=null,i(a)},o-h)))},()=>a&&i(a)]}const xo=(n,t,r=3)=>{let o=0;const a=Cu(50,250);return Mu(l=>{const i=l.loaded,c=l.lengthComputable?l.total:void 0,s=i-o,d=a(s),u=i<=c;o=i;const h={loaded:i,total:c,progress:c?i/c:void 0,bytes:s,rate:d||void 0,estimated:d&&c&&u?(c-i)/d:void 0,event:l,lengthComputable:c!=null,[t?"download":"upload"]:!0};n(h)},r)},Ii=(n,t)=>{const r=n!=null;return[o=>t[0]({lengthComputable:r,total:n,loaded:o}),t[1]]},Hi=n=>(...t)=>G.asap(()=>n(...t)),Vu=ut.hasStandardBrowserEnv?((n,t)=>r=>(r=new URL(r,ut.origin),n.protocol===r.protocol&&n.host===r.host&&(t||n.port===r.port)))(new URL(ut.origin),ut.navigator&&/(msie|trident)/i.test(ut.navigator.userAgent)):()=>!0,Au=ut.hasStandardBrowserEnv?{write(n,t,r,o,a,l,i){if(typeof document>"u")return;const c=[`${n}=${encodeURIComponent(t)}`];G.isNumber(r)&&c.push(`expires=${new Date(r).toUTCString()}`),G.isString(o)&&c.push(`path=${o}`),G.isString(a)&&c.push(`domain=${a}`),l===!0&&c.push("secure"),G.isString(i)&&c.push(`SameSite=${i}`),document.cookie=c.join("; ")},read(n){if(typeof document>"u")return null;const t=document.cookie.match(new RegExp("(?:^|; )"+n+"=([^;]*)"));return t?decodeURIComponent(t[1]):null},remove(n){this.write(n,"",Date.now()-864e5,"/")}}:{write(){},read(){return null},remove(){}};function _u(n){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(n)}function Nu(n,t){return t?n.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):n}function Ti(n,t,r){let o=!_u(t);return n&&(o||r==!1)?Nu(n,t):t}const Li=n=>n instanceof vt?{...n}:n;function qn(n,t){t=t||{};const r={};function o(d,u,h,f){return G.isPlainObject(d)&&G.isPlainObject(u)?G.merge.call({caseless:f},d,u):G.isPlainObject(u)?G.merge({},u):G.isArray(u)?u.slice():u}function a(d,u,h,f){if(G.isUndefined(u)){if(!G.isUndefined(d))return o(void 0,d,h,f)}else return o(d,u,h,f)}function l(d,u){if(!G.isUndefined(u))return o(void 0,u)}function i(d,u){if(G.isUndefined(u)){if(!G.isUndefined(d))return o(void 0,d)}else return o(void 0,u)}function c(d,u,h){if(h in t)return o(d,u);if(h in n)return o(void 0,d)}const s={url:l,method:l,data:l,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,withXSRFToken:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,responseEncoding:i,validateStatus:c,headers:(d,u,h)=>a(Li(d),Li(u),h,!0)};return G.forEach(Object.keys({...n,...t}),function(u){const h=s[u]||a,f=h(n[u],t[u],u);G.isUndefined(f)&&h!==c||(r[u]=f)}),r}const Di=n=>{const t=qn({},n);let{data:r,withXSRFToken:o,xsrfHeaderName:a,xsrfCookieName:l,headers:i,auth:c}=t;if(t.headers=i=vt.from(i),t.url=Vi(Ti(t.baseURL,t.url,t.allowAbsoluteUrls),n.params,n.paramsSerializer),c&&i.set("Authorization","Basic "+btoa((c.username||"")+":"+(c.password?unescape(encodeURIComponent(c.password)):""))),G.isFormData(r)){if(ut.hasStandardBrowserEnv||ut.hasStandardBrowserWebWorkerEnv)i.setContentType(void 0);else if(G.isFunction(r.getHeaders)){const s=r.getHeaders(),d=["content-type","content-length"];Object.entries(s).forEach(([u,h])=>{d.includes(u.toLowerCase())&&i.set(u,h)})}}if(ut.hasStandardBrowserEnv&&(o&&G.isFunction(o)&&(o=o(t)),o||o!==!1&&Vu(t.url))){const s=a&&l&&Au.read(l);s&&i.set(a,s)}return t},Zu=typeof XMLHttpRequest<"u"&&function(n){return new Promise(function(r,o){const a=Di(n);let l=a.data;const i=vt.from(a.headers).normalize();let{responseType:c,onUploadProgress:s,onDownloadProgress:d}=a,u,h,f,p,m;function w(){p&&p(),m&&m(),a.cancelToken&&a.cancelToken.unsubscribe(u),a.signal&&a.signal.removeEventListener("abort",u)}let g=new XMLHttpRequest;g.open(a.method.toUpperCase(),a.url,!0),g.timeout=a.timeout;function k(){if(!g)return;const v=vt.from("getAllResponseHeaders"in g&&g.getAllResponseHeaders()),C={data:!c||c==="text"||c==="json"?g.responseText:g.response,status:g.status,statusText:g.statusText,headers:v,config:n,request:g};$i(function(y){r(y),w()},function(y){o(y),w()},C),g=null}"onloadend"in g?g.onloadend=k:g.onreadystatechange=function(){!g||g.readyState!==4||g.status===0&&!(g.responseURL&&g.responseURL.indexOf("file:")===0)||setTimeout(k)},g.onabort=function(){g&&(o(new ye("Request aborted",ye.ECONNABORTED,n,g)),g=null)},g.onerror=function(b){const C=b&&b.message?b.message:"Network Error",A=new ye(C,ye.ERR_NETWORK,n,g);A.event=b||null,o(A),g=null},g.ontimeout=function(){let b=a.timeout?"timeout of "+a.timeout+"ms exceeded":"timeout exceeded";const C=a.transitional||_i;a.timeoutErrorMessage&&(b=a.timeoutErrorMessage),o(new ye(b,C.clarifyTimeoutError?ye.ETIMEDOUT:ye.ECONNABORTED,n,g)),g=null},l===void 0&&i.setContentType(null),"setRequestHeader"in g&&G.forEach(i.toJSON(),function(b,C){g.setRequestHeader(C,b)}),G.isUndefined(a.withCredentials)||(g.withCredentials=!!a.withCredentials),c&&c!=="json"&&(g.responseType=a.responseType),d&&([f,m]=xo(d,!0),g.addEventListener("progress",f)),s&&g.upload&&([h,p]=xo(s),g.upload.addEventListener("progress",h),g.upload.addEventListener("loadend",p)),(a.cancelToken||a.signal)&&(u=v=>{g&&(o(!v||v.type?new pr(null,n,g):v),g.abort(),g=null)},a.cancelToken&&a.cancelToken.subscribe(u),a.signal&&(a.signal.aborted?u():a.signal.addEventListener("abort",u)));const x=bu(a.url);if(x&&ut.protocols.indexOf(x)===-1){o(new ye("Unsupported protocol "+x+":",ye.ERR_BAD_REQUEST,n));return}g.send(l||null)})},Su=(n,t)=>{const{length:r}=n=n?n.filter(Boolean):[];if(t||r){let o=new AbortController,a;const l=function(d){if(!a){a=!0,c();const u=d instanceof Error?d:this.reason;o.abort(u instanceof ye?u:new pr(u instanceof Error?u.message:u))}};let i=t&&setTimeout(()=>{i=null,l(new ye(`timeout of ${t}ms exceeded`,ye.ETIMEDOUT))},t);const c=()=>{n&&(i&&clearTimeout(i),i=null,n.forEach(d=>{d.unsubscribe?d.unsubscribe(l):d.removeEventListener("abort",l)}),n=null)};n.forEach(d=>d.addEventListener("abort",l));const{signal:s}=o;return s.unsubscribe=()=>G.asap(c),s}},$u=function*(n,t){let r=n.byteLength;if(r<t){yield n;return}let o=0,a;for(;o<r;)a=o+t,yield n.slice(o,a),o=a},Iu=async function*(n,t){for await(const r of Hu(n))yield*$u(r,t)},Hu=async function*(n){if(n[Symbol.asyncIterator]){yield*n;return}const t=n.getReader();try{for(;;){const{done:r,value:o}=await t.read();if(r)break;yield o}}finally{await t.cancel()}},Pi=(n,t,r,o)=>{const a=Iu(n,t);let l=0,i,c=s=>{i||(i=!0,o&&o(s))};return new ReadableStream({async pull(s){try{const{done:d,value:u}=await a.next();if(d){c(),s.close();return}let h=u.byteLength;if(r){let f=l+=h;r(f)}s.enqueue(new Uint8Array(u))}catch(d){throw c(d),d}},cancel(s){return c(s),a.return()}},{highWaterMark:2})},Oi=64*1024,{isFunction:vo}=G,Tu=(({Request:n,Response:t})=>({Request:n,Response:t}))(G.global),{ReadableStream:Ri,TextEncoder:zi}=G.global,ji=(n,...t)=>{try{return!!n(...t)}catch{return!1}},Lu=n=>{n=G.merge.call({skipUndefined:!0},Tu,n);const{fetch:t,Request:r,Response:o}=n,a=t?vo(t):typeof fetch=="function",l=vo(r),i=vo(o);if(!a)return!1;const c=a&&vo(Ri),s=a&&(typeof zi=="function"?(m=>w=>m.encode(w))(new zi):async m=>new Uint8Array(await new r(m).arrayBuffer())),d=l&&c&&ji(()=>{let m=!1;const w=new r(ut.origin,{body:new Ri,method:"POST",get duplex(){return m=!0,"half"}}).headers.has("Content-Type");return m&&!w}),u=i&&c&&ji(()=>G.isReadableStream(new o("").body)),h={stream:u&&(m=>m.body)};a&&["text","arrayBuffer","blob","formData","stream"].forEach(m=>{!h[m]&&(h[m]=(w,g)=>{let k=w&&w[m];if(k)return k.call(w);throw new ye(`Response type '${m}' is not supported`,ye.ERR_NOT_SUPPORT,g)})});const f=async m=>{if(m==null)return 0;if(G.isBlob(m))return m.size;if(G.isSpecCompliantForm(m))return(await new r(ut.origin,{method:"POST",body:m}).arrayBuffer()).byteLength;if(G.isArrayBufferView(m)||G.isArrayBuffer(m))return m.byteLength;if(G.isURLSearchParams(m)&&(m=m+""),G.isString(m))return(await s(m)).byteLength},p=async(m,w)=>{const g=G.toFiniteNumber(m.getContentLength());return g??f(w)};return async m=>{let{url:w,method:g,data:k,signal:x,cancelToken:v,timeout:b,onDownloadProgress:C,onUploadProgress:A,responseType:y,headers:B,withCredentials:V="same-origin",fetchOptions:S}=Di(m),Z=t||fetch;y=y?(y+"").toLowerCase():"text";let D=Su([x,v&&v.toAbortSignal()],b),R=null;const K=D&&D.unsubscribe&&(()=>{D.unsubscribe()});let _;try{if(A&&d&&g!=="get"&&g!=="head"&&(_=await p(B,k))!==0){let U=new r(w,{method:"POST",body:k,duplex:"half"}),ce;if(G.isFormData(k)&&(ce=U.headers.get("content-type"))&&B.setContentType(ce),U.body){const[he,j]=Ii(_,xo(Hi(A)));k=Pi(U.body,Oi,he,j)}}G.isString(V)||(V=V?"include":"omit");const T=l&&"credentials"in r.prototype,E={...S,signal:D,method:g.toUpperCase(),headers:B.normalize().toJSON(),body:k,duplex:"half",credentials:T?V:void 0};R=l&&new r(w,E);let N=await(l?Z(R,S):Z(w,E));const F=u&&(y==="stream"||y==="response");if(u&&(C||F&&K)){const U={};["status","statusText","headers"].forEach(ee=>{U[ee]=N[ee]});const ce=G.toFiniteNumber(N.headers.get("content-length")),[he,j]=C&&Ii(ce,xo(Hi(C),!0))||[];N=new o(Pi(N.body,Oi,he,()=>{j&&j(),K&&K()}),U)}y=y||"text";let P=await h[G.findKey(h,y)||"text"](N,m);return!F&&K&&K(),await new Promise((U,ce)=>{$i(U,ce,{data:P,headers:vt.from(N.headers),status:N.status,statusText:N.statusText,config:m,request:R})})}catch(T){throw K&&K(),T&&T.name==="TypeError"&&/Load failed|fetch/i.test(T.message)?Object.assign(new ye("Network Error",ye.ERR_NETWORK,m,R),{cause:T.cause||T}):ye.from(T,T&&T.code,m,R)}}},Du=new Map,Fi=n=>{let t=n&&n.env||{};const{fetch:r,Request:o,Response:a}=t,l=[o,a,r];let i=l.length,c=i,s,d,u=Du;for(;c--;)s=l[c],d=u.get(s),d===void 0&&u.set(s,d=c?new Map:Lu(t)),u=d;return d};Fi();const Ml={http:lu,xhr:Zu,fetch:{get:Fi}};G.forEach(Ml,(n,t)=>{if(n){try{Object.defineProperty(n,"name",{value:t})}catch{}Object.defineProperty(n,"adapterName",{value:t})}});const Ui=n=>`- ${n}`,Pu=n=>G.isFunction(n)||n===null||n===!1;function Ou(n,t){n=G.isArray(n)?n:[n];const{length:r}=n;let o,a;const l={};for(let i=0;i<r;i++){o=n[i];let c;if(a=o,!Pu(o)&&(a=Ml[(c=String(o)).toLowerCase()],a===void 0))throw new ye(`Unknown adapter '${c}'`);if(a&&(G.isFunction(a)||(a=a.get(t))))break;l[c||"#"+i]=a}if(!a){const i=Object.entries(l).map(([s,d])=>`adapter ${s} `+(d===!1?"is not supported by the environment":"is not available in the build"));let c=r?i.length>1?`since :
24
+ `+i.map(Ui).join(`
25
+ `):" "+Ui(i[0]):"as no adapter specified";throw new ye("There is no suitable adapter to dispatch the request "+c,"ERR_NOT_SUPPORT")}return a}const Wi={getAdapter:Ou,adapters:Ml};function Vl(n){if(n.cancelToken&&n.cancelToken.throwIfRequested(),n.signal&&n.signal.aborted)throw new pr(null,n)}function qi(n){return Vl(n),n.headers=vt.from(n.headers),n.data=Cl.call(n,n.transformRequest),["post","put","patch"].indexOf(n.method)!==-1&&n.headers.setContentType("application/x-www-form-urlencoded",!1),Wi.getAdapter(n.adapter||ur.adapter,n)(n).then(function(o){return Vl(n),o.data=Cl.call(n,n.transformResponse,o),o.headers=vt.from(o.headers),o},function(o){return Si(o)||(Vl(n),o&&o.response&&(o.response.data=Cl.call(n,n.transformResponse,o.response),o.response.headers=vt.from(o.response.headers))),Promise.reject(o)})}const Yi="1.13.3",yo={};["object","boolean","number","function","string","symbol"].forEach((n,t)=>{yo[n]=function(o){return typeof o===n||"a"+(t<1?"n ":" ")+n}});const Ki={};yo.transitional=function(t,r,o){function a(l,i){return"[Axios v"+Yi+"] Transitional option '"+l+"'"+i+(o?". "+o:"")}return(l,i,c)=>{if(t===!1)throw new ye(a(i," has been removed"+(r?" in "+r:"")),ye.ERR_DEPRECATED);return r&&!Ki[i]&&(Ki[i]=!0,console.warn(a(i," has been deprecated since v"+r+" and will be removed in the near future"))),t?t(l,i,c):!0}},yo.spelling=function(t){return(r,o)=>(console.warn(`${o} is likely a misspelling of ${t}`),!0)};function Ru(n,t,r){if(typeof n!="object")throw new ye("options must be an object",ye.ERR_BAD_OPTION_VALUE);const o=Object.keys(n);let a=o.length;for(;a-- >0;){const l=o[a],i=t[l];if(i){const c=n[l],s=c===void 0||i(c,l,n);if(s!==!0)throw new ye("option "+l+" must be "+s,ye.ERR_BAD_OPTION_VALUE);continue}if(r!==!0)throw new ye("Unknown option "+l,ye.ERR_BAD_OPTION)}}const Bo={assertOptions:Ru,validators:yo},Gt=Bo.validators;let Yn=class{constructor(t){this.defaults=t||{},this.interceptors={request:new Ai,response:new Ai}}async request(t,r){try{return await this._request(t,r)}catch(o){if(o instanceof Error){let a={};Error.captureStackTrace?Error.captureStackTrace(a):a=new Error;const l=a.stack?a.stack.replace(/^.+\n/,""):"";try{o.stack?l&&!String(o.stack).endsWith(l.replace(/^.+\n.+\n/,""))&&(o.stack+=`
26
+ `+l):o.stack=l}catch{}}throw o}}_request(t,r){typeof t=="string"?(r=r||{},r.url=t):r=t||{},r=qn(this.defaults,r);const{transitional:o,paramsSerializer:a,headers:l}=r;o!==void 0&&Bo.assertOptions(o,{silentJSONParsing:Gt.transitional(Gt.boolean),forcedJSONParsing:Gt.transitional(Gt.boolean),clarifyTimeoutError:Gt.transitional(Gt.boolean)},!1),a!=null&&(G.isFunction(a)?r.paramsSerializer={serialize:a}:Bo.assertOptions(a,{encode:Gt.function,serialize:Gt.function},!0)),r.allowAbsoluteUrls!==void 0||(this.defaults.allowAbsoluteUrls!==void 0?r.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:r.allowAbsoluteUrls=!0),Bo.assertOptions(r,{baseUrl:Gt.spelling("baseURL"),withXsrfToken:Gt.spelling("withXSRFToken")},!0),r.method=(r.method||this.defaults.method||"get").toLowerCase();let i=l&&G.merge(l.common,l[r.method]);l&&G.forEach(["delete","get","head","post","put","patch","common"],m=>{delete l[m]}),r.headers=vt.concat(i,l);const c=[];let s=!0;this.interceptors.request.forEach(function(w){typeof w.runWhen=="function"&&w.runWhen(r)===!1||(s=s&&w.synchronous,c.unshift(w.fulfilled,w.rejected))});const d=[];this.interceptors.response.forEach(function(w){d.push(w.fulfilled,w.rejected)});let u,h=0,f;if(!s){const m=[qi.bind(this),void 0];m.unshift(...c),m.push(...d),f=m.length,u=Promise.resolve(r);let w=r;for(;h<f;)u=u.then(m[h++]).then(g=>{w=g!==void 0?g:w}).catch(m[h++]).then(()=>w);return u}f=c.length;let p=r;for(;h<f;){const m=c[h++],w=c[h++];try{p=m(p)}catch(g){w.call(this,g);break}}try{u=qi.call(this,p)}catch(m){return Promise.reject(m)}for(h=0,f=d.length;h<f;)u=u.then(d[h++]).catch(d[h++]);return u}getUri(t){t=qn(this.defaults,t);const r=Ti(t.baseURL,t.url,t.allowAbsoluteUrls);return Vi(r,t.params,t.paramsSerializer)}};G.forEach(["delete","get","head","options"],function(t){Yn.prototype[t]=function(r,o){return this.request(qn(o||{},{method:t,url:r,data:(o||{}).data}))}}),G.forEach(["post","put","patch"],function(t){function r(o){return function(l,i,c){return this.request(qn(c||{},{method:t,headers:o?{"Content-Type":"multipart/form-data"}:{},url:l,data:i}))}}Yn.prototype[t]=r(),Yn.prototype[t+"Form"]=r(!0)});let zu=class t3{constructor(t){if(typeof t!="function")throw new TypeError("executor must be a function.");let r;this.promise=new Promise(function(l){r=l});const o=this;this.promise.then(a=>{if(!o._listeners)return;let l=o._listeners.length;for(;l-- >0;)o._listeners[l](a);o._listeners=null}),this.promise.then=a=>{let l;const i=new Promise(c=>{o.subscribe(c),l=c}).then(a);return i.cancel=function(){o.unsubscribe(l)},i},t(function(l,i,c){o.reason||(o.reason=new pr(l,i,c),r(o.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const r=this._listeners.indexOf(t);r!==-1&&this._listeners.splice(r,1)}toAbortSignal(){const t=new AbortController,r=o=>{t.abort(o)};return this.subscribe(r),t.signal.unsubscribe=()=>this.unsubscribe(r),t.signal}static source(){let t;return{token:new t3(function(a){t=a}),cancel:t}}};function ju(n){return function(r){return n.apply(null,r)}}function Fu(n){return G.isObject(n)&&n.isAxiosError===!0}const Al={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511,WebServerIsDown:521,ConnectionTimedOut:522,OriginIsUnreachable:523,TimeoutOccurred:524,SslHandshakeFailed:525,InvalidSslCertificate:526};Object.entries(Al).forEach(([n,t])=>{Al[t]=n});function Gi(n){const t=new Yn(n),r=fi(Yn.prototype.request,t);return G.extend(r,Yn.prototype,t,{allOwnKeys:!0}),G.extend(r,t,null,{allOwnKeys:!0}),r.create=function(a){return Gi(qn(n,a))},r}const Ge=Gi(ur);Ge.Axios=Yn,Ge.CanceledError=pr,Ge.CancelToken=zu,Ge.isCancel=Si,Ge.VERSION=Yi,Ge.toFormData=go,Ge.AxiosError=ye,Ge.Cancel=Ge.CanceledError,Ge.all=function(t){return Promise.all(t)},Ge.spread=ju,Ge.isAxiosError=Fu,Ge.mergeConfig=qn,Ge.AxiosHeaders=vt,Ge.formToJSON=n=>Ni(G.isHTMLForm(n)?new FormData(n):n),Ge.getAdapter=Wi.getAdapter,Ge.HttpStatusCode=Al,Ge.default=Ge;const{Axios:hK,AxiosError:pK,CanceledError:fK,isCancel:mK,CancelToken:wK,VERSION:gK,all:kK,Cancel:xK,isAxiosError:vK,spread:yK,toFormData:BK,AxiosHeaders:EK,HttpStatusCode:bK,formToJSON:CK,getAdapter:MK,mergeConfig:VK}=Ge,_l=Ge.create({baseURL:"https://uiapi.pgo.mv/api",timeout:1e4,headers:{"Content-Type":"application/json"}});_l.interceptors.request.use(n=>{const t=localStorage.getItem("token");return t&&(n.headers.Authorization=`Bearer ${t}`),n},n=>Promise.reject(n)),_l.interceptors.response.use(n=>n.data,n=>(n.response?(console.error("API Error:",n.response.data),n.response.status===401&&localStorage.removeItem("token")):n.request?console.error("Network Error:",n.request):console.error("Error:",n.message),Promise.reject(n)));const Ji=e.ref(!0),De=(n,t)=>{const r=n.__vccOpts||n;for(const[o,a]of t)r[o]=a;return r},Uu=["disabled"],Wu={key:0,class:"loader vts-mr-2"},qu={key:1,class:""},Yu={key:2},Ku={key:1},Gu={key:3,class:""},tt=De({__name:"Button",props:{variant:{type:String,default:"contained"},color:{type:String,default:"primary"},size:{type:String,default:"md"},rounded:{type:String,default:"sm"},block:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},label:{type:String,default:""},icon:{type:String,default:""},prependIcon:{type:String,default:""},appendIcon:{type:String,default:""},iconType:{type:String,default:"outline"},padding:{type:Boolean,default:!1},lang:{type:String,default:""}},emits:["click"],setup(n,{emit:t}){const{t:r,setLanguage:o}=e.inject("i18n"),a=t,l=e.inject("parentLang",""),i=e.computed(()=>c.lang?c.lang:l),c=n,s=e.computed(()=>A0[c.color]?A0[c.color][c.variant]:A0.primary[c.variant]),d=e.computed(()=>["inline-flex items-center gap-2 justify-center font-medium transition-all select-none",c.icon&&!c.padding?"":ml[c.size],En[c.rounded],s.value,c.block?"w-full":"",i.value==="dv"?"faruma":"",c.disabled||c.loading?"opacity-50 cursor-not-allowed":"cursor-pointer"]),u=f=>{!c.disabled&&!c.loading&&a("click",f)},h=e.computed(()=>{if(!c.label)return r("buttons.submit",i.value);if(c.label.startsWith("buttons.")){const f=r(c.label,i.value);if(f!==c.label)return f}return c.label});return(f,p)=>{const m=e.resolveComponent("HeroIcon");return e.openBlock(),e.createElementBlock("button",{class:e.normalizeClass(d.value),disabled:n.disabled||n.loading,onClick:u},[n.loading?(e.openBlock(),e.createElementBlock("span",Wu)):e.createCommentVNode("",!0),(f.$slots.prepend||n.prependIcon)&&!n.loading?(e.openBlock(),e.createElementBlock("span",qu,[e.renderSlot(f.$slots,"prepend",{},()=>[n.prependIcon?(e.openBlock(),e.createBlock(m,{key:0,name:n.prependIcon,type:n.iconType||"outline",size:e.unref(V0)[c.size],color:"text-current"},null,8,["name","type","size"])):e.createCommentVNode("",!0)],!0)])):e.createCommentVNode("",!0),n.loading?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("span",Yu,[e.renderSlot(f.$slots,"default",{},()=>[n.icon?(e.openBlock(),e.createBlock(m,{key:0,name:n.icon,type:n.iconType||"outline",size:e.unref(V0)[c.size],color:"text-current"},null,8,["name","type","size"])):e.createCommentVNode("",!0),n.icon?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",Ku,e.toDisplayString(h.value),1))],!0)])),(f.$slots.append||n.appendIcon)&&!n.loading?(e.openBlock(),e.createElementBlock("span",Gu,[e.renderSlot(f.$slots,"append",{},()=>[n.appendIcon?(e.openBlock(),e.createBlock(m,{key:0,name:n.appendIcon,type:n.iconType||"outline",size:e.unref(V0)[c.size],stroke:"currentColor",color:"text-current"},null,8,["name","type","size"])):e.createCommentVNode("",!0)],!0)])):e.createCommentVNode("",!0)],10,Uu)}}},[["__scopeId","data-v-3c177a8e"]]),Ju=["dir"],Xu={key:0,class:"overflow-clip"},Eo={__name:"Card",props:{lang:{type:String,default:""},labels:{type:[String,Object],default:()=>({en:{title:"",body:"",footer:""},dv:{title:"",body:"",footer:""}})},id:{type:String,default:""},width:{type:String,default:""},height:{type:String,default:""},title:{type:[String,Object],default:""},cardClass:{type:String,default:""},overflow:{type:String},bg:{type:String,default:"bg-background-color"},border:{type:String,default:"border border-input-border"},rounded:{type:String,default:""},shadow:{type:String,default:""},dir:{type:String,default:""},item:{type:Object,default:null},bodyClass:{type:String,default:""},margin:{type:String,default:"mx-0 my-6"},padding:{type:String,default:"px-6 py-4"},textColor:{type:String,default:"text-input-text"},textSize:{type:String,default:"text-base"},headerClass:{type:String,default:""},titleClass:{type:String,default:""},headerBg:{type:String,default:""},headerText:{type:String,default:"text-input-text"},headerTextSize:{type:String,default:"text-lg font-semibold"},headerBd:{type:String,default:""},headerMargin:{type:String,default:""},headerPadding:{type:String,default:"px-6 pt-4"},footerClass:{type:String,default:""},footerBg:{type:String,default:""},footerText:{type:String,default:"text-input-text"},footerTextSize:{type:String,default:""},footerBd:{type:String,default:""},footerMargin:{type:String,default:""},footerPadding:{type:String,default:"px-6 py-4"}},setup(n){const{language:t}=e.inject("i18n"),r=n,o=e.computed(()=>{let u="";return r.dir=="rtl"||r.lang=="dv"?u="rtl":r.dir=="ltr"||r.lang=="en"?u="ltr":u="",u}),a=e.computed(()=>{let u="";return r.lang!=""?u=r.lang:r.dir=="rtl"?u="dv":r.dir=="ltr"?u="en":u=t.value,console.log("selectLanguage in Card222:",u),u==="dv"?"dv":"en"});e.provide("parentDir",o.value),e.provide("parentLang",a.value);const l=e.computed(()=>({id:r.id,dir:o.value,lang:a.value})),i=e.computed(()=>a.value=="dv"?"faruma":""),c=e.computed(()=>ho(r.labels,a.value,"")),s=e.computed(()=>{switch(r.rounded){case"sm":return"rounded-t-sm";case"md":return"rounded-t-md";case"lg":return"rounded-t-lg";case"xl":return"rounded-t-xl";case"2xl":return"rounded-t-2xl";case"3xl":return"rounded-t-3xl";case"full":return"rounded-t-full";default:return"rounded-t-lg"}}),d=e.computed(()=>{switch(r.rounded){case"sm":return"rounded-b-sm";case"md":return"rounded-b-md";case"lg":return"rounded-b-lg";case"xl":return"rounded-b-xl";case"2xl":return"rounded-b-2xl";case"3xl":return"rounded-b-3xl";case"full":return"rounded-b-full";default:return"rounded-b-lg"}});return(u,h)=>(e.openBlock(),e.createElementBlock("div",{dir:o.value!==""?o.value:"",class:e.normalizeClass([i.value,n.margin,n.border,n.rounded?`rounded-${n.rounded}`:"",n.shadow,n.cardClass,n.width,n.height,n.bg,"relative"])},[u.$slots.header||n.title||c.value.title?(e.openBlock(),e.createElementBlock("div",Xu,[e.renderSlot(u.$slots,"header",{},()=>[e.createElementVNode("div",{class:e.normalizeClass([n.headerClass,n.headerBg,n.headerPadding,s.value,n.headerBd,n.headerText,"overflow-hidden"])},[e.createElementVNode("h3",{class:e.normalizeClass([n.titleClass,n.headerTextSize])},e.toDisplayString(c.value.title?c.value.title:r.title),3)],2)])])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass([n.bodyClass,n.padding,n.textColor,n.textSize,n.overflow,""])},[e.renderSlot(u.$slots,"default",{attrs:l.value},()=>[e.createTextVNode(e.toDisplayString(c.value.body?c.value.body:""),1)])],2),u.$slots.footer?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass([n.footerClass,n.footerBg,n.footerText,n.footerTextSize,n.footerBd,n.footerMargin,n.footerPadding,d.value])},[e.renderSlot(u.$slots,"footer",{},()=>[e.createTextVNode(e.toDisplayString(c.value.footer?c.value.footer:""),1)])],2)):e.createCommentVNode("",!0)],10,Ju))}},Xi=e.defineComponent({__name:"HeroIcon",props:{name:{},type:{default:"outline"},size:{default:24},color:{default:"currentColor"}},setup(n){const t=n,r=e.useAttrs(),o=u=>u.replace(/-([a-z])/g,(h,f)=>f.toUpperCase()).replace(/(?:^|_|\s|-)(\w)/g,(h,f)=>f.toUpperCase()).replace(/Icon$/,"")+"Icon",a=e.computed(()=>o(t.name)),l=e.computed(()=>e.defineAsyncComponent({loader:async()=>{let u;t.type==="solid"?u=await Promise.resolve().then(()=>eL):t.type==="outline"?u=await Promise.resolve().then(()=>cl):t.type==="mini"?u=await Promise.resolve().then(()=>tj):t.type==="micro"?u=await Promise.resolve().then(()=>YY):u=await Promise.resolve().then(()=>cl);const h=u[a.value];if(!h)throw new Error(`Icon "${a.value}" not found in ${t.type} icons`);return h},loadingComponent:e.defineAsyncComponent(async()=>(await Promise.resolve().then(()=>cl)).ArrowPathIcon),errorComponent:e.defineAsyncComponent(async()=>(await Promise.resolve().then(()=>cl)).ExclamationTriangleIcon),delay:200,timeout:5e3})),i=u=>u?/(?:^|\s)(?:text-|fill-|stroke-|bg-|ring-|border-)/.test(u):!1,c=e.computed(()=>i(t.color)?String(t.color):""),s=e.computed(()=>{const u=["hero-icon"];return r.class&&u.push(String(r.class)),c.value&&u.push(c.value),u.filter(Boolean).join(" ")}),d=e.computed(()=>{const u=typeof r.style=="object"?{...r.style}:{},h=typeof t.size=="number"?`${t.size}px`:t.size;return u.width=h,u.height=h,i(t.color)||(u.color=t.color),u});return(u,h)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(l.value),e.mergeProps(e.unref(r),{class:s.value,style:d.value}),null,16,["class","style"]))}}),Qu=["dir"],eh={key:0,class:"relative"},th=["onClick"],nh={key:0,class:"vts-mr-2"},rh=["onClick"],oh={class:"md:hidden vts-border-sm",style:{backgroundColor:"var(--vts-color-surfaceElevated)",borderColor:"var(--vts-color-divider)"}},ah={class:"vts-px-2 vts-pt-2 vts-pb-3 vts-space-y-1"},Qi=e.defineComponent({__name:"AppBar",props:{id:{type:String,default:()=>`appbar-${Math.random().toString(36).slice(2,9)}`},title:String,titleAlign:{type:String,default:"left"},titleClass:String,fixed:Boolean,floating:Boolean,elevation:[String,Number],shadow:String,color:String,border:String,p:String,m:String,hidden:Boolean,customClass:String,customStyle:[String,Object],zIndex:{type:[String,Number],default:void 0},drawer:Boolean,menu:Boolean,overflowActions:{type:Array,default:()=>[]},languages:{type:Array,default:()=>["en","dv"]},rtl:{type:Boolean},dense:Boolean,collapseOnScroll:Boolean},setup(n){const t=e.computed(()=>({backgroundColor:"var(--vts-color-surfaceElevated)",color:"var(--vts-color-text)",boxShadow:r.elevation?`var(--vts-elevation-${r.elevation})`:r.shadow?"var(--vts-shadow-md)":void 0,borderBottom:"1px solid var(--vts-color-border)"})),r=n,o=e.inject("globalRtl",e.ref(!1)),a=e.computed(()=>r.rtl!==void 0?r.rtl:o.value),l=e.inject("layout",null),i=e.ref(null),c=e.ref(0);function s(){i.value&&(c.value=i.value.getBoundingClientRect().height,l&&l.register("appBar",r.id,{height:c.value,dense:r.dense}))}e.onMounted(()=>{s();const P=new ResizeObserver(s);i.value&&P.observe(i.value),r.collapseOnScroll&&window.addEventListener("scroll",h,{passive:!0}),document.addEventListener("click",K,{capture:!0}),e.onBeforeUnmount(()=>{P.disconnect(),r.collapseOnScroll&&window.removeEventListener("scroll",h),document.removeEventListener("click",K,{capture:!0}),l&&l.unregister("appBar",r.id)})});let d=0;const u=e.ref("");function h(){const P=window.scrollY,U=P-d;d=P,P>0&&U>0?u.value="-translate-y-12 opacity-95":u.value=""}const f=e.computed(()=>a?["actions","nav","prepend"]:["prepend","nav","actions"]),p=e.computed(()=>a?"flex-row-reverse":"flex-row"),m=e.computed(()=>a?"mr-2":""),w=e.computed(()=>a?"mr-2":"ml-2"),g=e.computed(()=>{const P=r.titleAlign;return a?{center:"justify-center text-center w-full",left:"justify-end text-right w-full",right:""}[P]:{center:"justify-center text-center w-full",right:"justify-end text-right w-full",left:""}[P]}),k=e.computed(()=>a?"hidden md:flex md:mr-6 md:space-x-4 items-center":"hidden md:flex md:ml-6 md:space-x-4 items-center"),x=e.computed(()=>a?"space-x-2 space-x-reverse":"space-x-2"),v=e.computed(()=>a?"left-0":"right-0"),b=e.ref(!1),C=()=>b.value=!b.value,{setLanguage:A,language:y}=e.inject("i18n"),B=e.ref(!1),V=()=>B.value=!B.value,S=e.ref(null),Z=e.computed(()=>Array.isArray(r.languages)&&r.languages.length?r.languages:["en","dv"]),D=e.computed(()=>{const U=(y&&(y.value??y)||"").slice(0,2);return U==="dv"?"ދިވެހި":(U||"en").toUpperCase()});function R(P){typeof A=="function"&&A(P),window.location.reload(),B.value=!1}function K(P){B.value&&(B.value=!1)}function _(P){if((y&&(y.value??y)||"").slice(0,2)==="dv"){if(P==="en")return"އިނގިރޭސި";if(P==="dv")return"ދިވެހި"}return(P||"").toUpperCase()}const T=e.computed(()=>r.shadow?r.shadow:r.elevation?`shadow-${r.elevation}`:""),E=e.computed(()=>typeof r.zIndex=="string"&&r.zIndex.startsWith("z-")?r.zIndex:"z-30"),N=e.computed(()=>r.dense?"py-1":""),F=e.ref(!1);return(P,U)=>{const ce=e.resolveComponent("HeroIcon");return e.openBlock(),e.createElementBlock("header",{ref_key:"el",ref:i,"data-component":"appbar",dir:a.value?"rtl":"ltr",class:e.normalizeClass(["w-full flex transition-transform duration-300",E.value,n.fixed?"fixed top-0 left-0":n.floating?"absolute top-0 left-1/2 -translate-x-1/2 rounded-xl shadow-lg":"relative",T.value,n.hidden?"hidden":"",n.color,n.border,n.p,n.m,n.customClass,N.value,u.value]),style:e.normalizeStyle([t.value,n.customStyle])},[e.createElementVNode("div",{class:e.normalizeClass(["max-w-7xl mx-auto w-full flex items-center justify-between",p.value,n.dense?"h-12":"h-16"])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(f.value,he=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:he},[he==="prepend"?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["flex items-center",m.value])},[e.renderSlot(P.$slots,"prepend"),n.drawer||n.menu?(e.openBlock(),e.createElementBlock("button",{key:0,onClick:U[0]||(U[0]=j=>P.$emit("toggle-drawer")),class:"md:hidden inline-flex items-center justify-center .vts-pa-2 rounded-md"},[e.renderSlot(P.$slots,"drawer-icon",{},()=>[e.createVNode(ce,{name:"bars-3",size:"24",color:"text-gray-600"})])])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["shrink-0 flex items-center",w.value,g.value])},[e.renderSlot(P.$slots,"title",{},()=>[e.createElementVNode("span",{class:e.normalizeClass(["font-semibold",n.titleClass])},e.toDisplayString(n.title),3)])],2)],2)):e.createCommentVNode("",!0),he==="nav"?(e.openBlock(),e.createElementBlock("nav",{key:1,class:e.normalizeClass(k.value)},[e.renderSlot(P.$slots,"nav")],2)):e.createCommentVNode("",!0),he==="actions"?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(["flex items-center",x.value])},[e.renderSlot(P.$slots,"actions"),n.overflowActions.length?(e.openBlock(),e.createElementBlock("div",eh,[e.createElementVNode("button",{onClick:C,class:"p-2 rounded-md hover:bg-black/5 dark:hover:bg-white/10"},[...U[1]||(U[1]=[e.createElementVNode("svg",{class:"h-5 w-5",fill:"none",stroke:"currentColor"},[e.createElementVNode("circle",{cx:"12",cy:"12",r:"2"}),e.createElementVNode("circle",{cx:"19",cy:"12",r:"2"}),e.createElementVNode("circle",{cx:"5",cy:"12",r:"2"})],-1)])]),b.value?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["absolute vts-mt-2 w-40 rounded shadow-lg z-50",v.value])},[e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.overflowActions,(j,ee)=>(e.openBlock(),e.createElementBlock("li",{key:ee},[e.createElementVNode("button",{onClick:j.onClick,class:"w-full text-left vts-px-4 vts-py-2 hover:bg-black/5 dark:hover:bg-white/10"},[j.icon?(e.openBlock(),e.createElementBlock("span",nh,[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(j.icon)))])):e.createCommentVNode("",!0),e.createTextVNode(" "+e.toDisplayString(j.label),1)],8,th)]))),128))])],2)):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:"relative",ref_for:!0,ref_key:"langMenuRef",ref:S},[e.createElementVNode("button",{onClick:V,class:"px-2 py-1 rounded-md hover:bg-black/5 dark:hover:bg-white/10"},e.toDisplayString(D.value),1),B.value?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["absolute vts-mt-2 w-28 rounded shadow-lg z-50",v.value]),style:{backgroundColor:"var(--vts-color-surfaceElevated)",borderColor:"var(--vts-color-divider)"}},[e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Z.value,(j,ee)=>(e.openBlock(),e.createElementBlock("li",{key:ee},[e.createElementVNode("button",{onClick:se=>R(j),class:"w-full text-left vts-px-3 vts-py-2 hover:bg-black/5 dark:hover:bg-white/10"},e.toDisplayString(_(j)),9,rh)]))),128))])],2)):e.createCommentVNode("",!0)],512),e.renderSlot(P.$slots,"append")],2)):e.createCommentVNode("",!0)],64))),128))],2),e.withDirectives(e.createElementVNode("div",oh,[e.createElementVNode("div",ah,[e.renderSlot(P.$slots,"mobile-nav")])],512),[[e.vShow,F.value]])],14,Qu)}}}),lh=["aria-label"],ih=["src","alt"],ch={key:1,class:"avatar-fallback","aria-hidden":"true"},sh=De(e.defineComponent({__name:"Avatar",props:{src:{},alt:{},text:{},size:{},shape:{},bordered:{type:Boolean},status:{},disabled:{type:Boolean},ariaLabel:{}},setup(n){const t=n,r=e.ref(!1),o=e.computed(()=>!!t.src&&!r.value);function a(){r.value=!0}function l(u){if(!u)return"?";const h=u.trim();if(!h)return"?";const f=h.split(/\s+/).filter(Boolean),p=f[0]?.[0]||"",m=f.length>1?f[f.length-1]?.[0]:"";return(p+m).toUpperCase()}const i=e.computed(()=>l(t.text)),c=e.computed(()=>`avatar--${t.size||"md"}`),s=e.computed(()=>`avatar-shape--${t.shape||"circular"}`),d=e.computed(()=>t.ariaLabel||t.alt||t.text||"Avatar");return(u,h)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["avatar",[c.value,s.value,n.bordered?"vts-border-sm vts-border-solid vts-border-color":"vts-border-0",n.disabled?"avatar--disabled":""]]),"aria-label":d.value},[o.value?(e.openBlock(),e.createElementBlock("img",{key:0,src:n.src,alt:n.alt||d.value,class:"avatar-img",onError:a},null,40,ih)):(e.openBlock(),e.createElementBlock("div",ch,e.toDisplayString(i.value),1)),n.status?(e.openBlock(),e.createElementBlock("span",{key:2,class:e.normalizeClass(["avatar-status vts-border-md vts-border-solid",`status--${n.status}`]),"aria-hidden":"true"},null,2)):e.createCommentVNode("",!0),e.renderSlot(u.$slots,"default",{},void 0,!0)],10,lh))}}),[["__scopeId","data-v-e86e22de"]]),dh={key:0,class:"flex-shrink-0"},uh={class:"flex-1 min-w-0"},hh={key:1,class:"flex items-center gap-2"},ph=De({__name:"Banner",props:{modelValue:{type:Boolean,default:!0},title:{type:String,default:""},message:{type:String,default:""},color:{type:String,default:"primary"},variant:{type:String,default:"contained"},icon:{type:String,default:""},closeable:{type:Boolean,default:!0},sticky:{type:Boolean,default:!1},position:{type:String,default:"top"},timeout:{type:Number,default:0},showProgress:{type:Boolean,default:!1},rounded:{type:String,default:"none"},elevation:{type:Boolean,default:!0},outlined:{type:Boolean,default:!1},dense:{type:Boolean,default:!1}},emits:["update:modelValue","close","dismiss"],setup(n,{expose:t,emit:r}){const o=n,a=r,l=e.ref(o.modelValue),i=e.ref(100);let c=null,s=null;e.watch(()=>o.modelValue,B=>{l.value=B,B&&o.timeout&&x()});const d=e.computed(()=>({info:b,success:C,warning:A,error:y})[o.icon]||null),u=e.computed(()=>{const B=["w-full relative",o.sticky?"sticky z-45":"relative"];o.sticky&&B.push(o.position==="bottom"?"bottom-0":"top-0"),B.push(A0[o.color][o.variant]),o.outlined&&B.push("border-t-4"),o.elevation&&B.push("shadow-md");const V={none:"",sm:"rounded-sm",md:"rounded-md",lg:"rounded-lg"};return B.push(V[o.rounded]),B}),h=e.computed(()=>["flex items-start gap-3",o.dense?"p-3 px-6":"p-4"]),f=e.computed(()=>["font-semibold",o.dense?"text-sm":"text-base"]),p=e.computed(()=>[o.dense?"text-xs":"text-sm",o.title?"mt-1":""]),m=e.computed(()=>["flex-shrink-0 rounded-md p-1.5","hover:bg-black/5 dark:hover:bg-white/10","focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2","transition-colors"]),w=e.computed(()=>["absolute bottom-0 left-0 h-1 transition-all duration-100",{default:"bg-gray-400",info:"bg-blue-400",success:"bg-green-400",warning:"bg-yellow-400",error:"bg-red-400"}[o.variant]]),g=e.computed(()=>({width:`${i.value}%`})),k=()=>{l.value=!1,a("update:modelValue",!1),a("close"),v()},x=()=>{if(!o.timeout)return;v();const B=Date.now(),V=o.timeout;o.showProgress&&(s=setInterval(()=>{const S=Date.now()-B;i.value=Math.max(0,100-S/V*100)},10)),c=setTimeout(()=>{k(),a("dismiss")},o.timeout)},v=()=>{c&&(clearTimeout(c),c=null),s&&(clearInterval(s),s=null),i.value=100};e.onMounted(()=>{l.value&&o.timeout&&x()}),e.onBeforeUnmount(()=>{v()}),t({close:k});const b={template:`
27
+ <svg fill="currentColor" viewBox="0 0 20 20" class="h-5 w-5">
28
+ <path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z" clip-rule="evenodd" />
29
+ </svg>
30
+ `},C={template:`
31
+ <svg fill="currentColor" viewBox="0 0 20 20" class="h-5 w-5">
32
+ <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
33
+ </svg>
34
+ `},A={template:`
35
+ <svg fill="currentColor" viewBox="0 0 20 20" class="h-5 w-5">
36
+ <path fill-rule="evenodd" d="M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z" clip-rule="evenodd" />
37
+ </svg>
38
+ `},y={template:`
39
+ <svg fill="currentColor" viewBox="0 0 20 20" class="h-5 w-5">
40
+ <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clip-rule="evenodd" />
41
+ </svg>
42
+ `};return(B,V)=>(e.openBlock(),e.createBlock(e.Transition,{"enter-active-class":"transition ease-out duration-300","enter-from-class":"transform translate-y-[-100%] opacity-0","enter-to-class":"transform translate-y-0 opacity-100","leave-active-class":"transition ease-in duration-200","leave-from-class":"transform translate-y-0 opacity-100","leave-to-class":"transform translate-y-[-100%] opacity-0"},{default:e.withCtx(()=>[l.value?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(u.value),role:"alert"},[e.createElementVNode("div",{class:e.normalizeClass(h.value)},[B.$slots.prepend||n.icon?(e.openBlock(),e.createElementBlock("div",dh,[e.renderSlot(B.$slots,"prepend",{},()=>[n.icon?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(d.value),{key:0,class:"h-5 w-5"})):e.createCommentVNode("",!0)],!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",uh,[n.title||B.$slots.title?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(f.value)},[e.renderSlot(B.$slots,"title",{},()=>[e.createTextVNode(e.toDisplayString(n.title),1)],!0)],2)):e.createCommentVNode("",!0),n.message||B.$slots.default?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(p.value)},[e.renderSlot(B.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(n.message),1)],!0)],2)):e.createCommentVNode("",!0)]),B.$slots.actions||n.closeable?(e.openBlock(),e.createElementBlock("div",hh,[e.renderSlot(B.$slots,"actions",{},void 0,!0),n.closeable?(e.openBlock(),e.createElementBlock("button",{key:0,onClick:k,class:e.normalizeClass(m.value),"aria-label":"Close banner"},[...V[0]||(V[0]=[e.createElementVNode("svg",{class:"h-4 w-4",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"})],-1)])],2)):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0)],2),n.timeout&&n.showProgress?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(w.value),style:e.normalizeStyle(g.value)},null,6)):e.createCommentVNode("",!0)],2)):e.createCommentVNode("",!0)]),_:3}))}},[["__scopeId","data-v-38dd771e"]]),fh={class:"flex items-center"},fr=Object.assign({name:"PgoBreadcrumb"},{__name:"Breadcrumb",props:{items:{type:Array,default:()=>[]},containerClass:{type:String,default:""},itemClass:{type:String,default:""},activeClass:{type:String,default:""},dividerClass:{type:String,default:""}},setup(n){const t=n,r=e.computed(()=>typeof window>"u"?!1:document.documentElement.dir==="rtl"||document.documentElement.lang==="dv"),o=ti.useRoute(),a=e.computed(()=>{const i=o.matched||[],c=[];return i.forEach((s,d)=>{const u=s.meta&&s.meta.breadcrumb,h=typeof u=="function"?u(o):u;if(Array.isArray(h))h.forEach(f=>{typeof f=="string"?c.push({label:f}):f&&typeof f=="object"&&c.push({label:f.label,to:f.to,href:f.href,disabled:!!f.disabled})});else{const f=h||s.meta?.title||s.name||s.path,p=d<i.length-1?s.path:void 0;c.push({label:f,to:p})}}),c}),l=e.computed(()=>t.items&&t.items.length?t.items:a.value);return(i,c)=>(e.openBlock(),e.createElementBlock("nav",{"aria-label":"Breadcrumb",class:e.normalizeClass(["flex items-center text-sm text-[var(--vts-color-textSecondary)]",n.containerClass])},[e.renderSlot(i.$slots,"prepend"),e.createElementVNode("ol",fh,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.value,(s,d)=>(e.openBlock(),e.createElementBlock("li",{key:d,class:"flex items-center"},[d!==0?(e.openBlock(),e.createElementBlock("span",{key:0,class:e.normalizeClass(["vts-mx-2 select-none text-[var(--vts-color-textSecondary)]",n.dividerClass])},[e.renderSlot(i.$slots,"divider",{},()=>[e.createTextVNode(e.toDisplayString(r.value?"‹":"›"),1)])],2)):e.createCommentVNode("",!0),e.createElementVNode("span",{class:e.normalizeClass(["flex items-center",n.itemClass,d===l.value.length-1&&"font-medium text-[var(--vts-color-text)]",d===l.value.length-1&&n.activeClass,s.disabled&&"opacity-50 cursor-not-allowed"])},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(s.to&&!s.disabled?"RouterLink":s.href&&!s.disabled?"a":"span"),{to:s.to,href:s.href,class:"hover:underline"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(s.label),1)]),_:2},1032,["to","href"]))],2)]))),128))])],2))}});function mh(n,t){return e.getCurrentScope()?(e.onScopeDispose(n,t),!0):!1}const wh=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const gh=Object.prototype.toString,kh=n=>gh.call(n)==="[object Object]",mr=()=>{};function xh(...n){if(n.length!==1)return e.toRef(...n);const t=n[0];return typeof t=="function"?e.readonly(e.customRef(()=>({get:t,set:mr}))):e.ref(t)}function Nl(n){return Array.isArray(n)?n:[n]}function vh(n,t,r){return e.watch(n,t,{...r,immediate:!0})}const ec=wh?window:void 0;function Et(n){var t;const r=e.toValue(n);return(t=r?.$el)!==null&&t!==void 0?t:r}function S0(...n){const t=(o,a,l,i)=>(o.addEventListener(a,l,i),()=>o.removeEventListener(a,l,i)),r=e.computed(()=>{const o=Nl(e.toValue(n[0])).filter(a=>a!=null);return o.every(a=>typeof a!="string")?o:void 0});return vh(()=>{var o,a;return[(o=(a=r.value)===null||a===void 0?void 0:a.map(l=>Et(l)))!==null&&o!==void 0?o:[ec].filter(l=>l!=null),Nl(e.toValue(r.value?n[1]:n[0])),Nl(e.unref(r.value?n[2]:n[1])),e.toValue(r.value?n[3]:n[2])]},([o,a,l,i],c,s)=>{if(!o?.length||!a?.length||!l?.length)return;const d=kh(i)?{...i}:i,u=o.flatMap(h=>a.flatMap(f=>l.map(p=>t(h,f,p,d))));s(()=>{u.forEach(h=>h())})},{flush:"post"})}function Zl(n,t,r={}){const{window:o=ec,ignore:a=[],capture:l=!0,detectIframe:i=!1,controls:c=!1}=r;if(!o)return c?{stop:mr,cancel:mr,trigger:mr}:mr;let s=!0;const d=g=>e.toValue(a).some(k=>{if(typeof k=="string")return Array.from(o.document.querySelectorAll(k)).some(x=>x===g.target||g.composedPath().includes(x));{const x=Et(k);return x&&(g.target===x||g.composedPath().includes(x))}});function u(g){const k=e.toValue(g);return k&&k.$.subTree.shapeFlag===16}function h(g,k){const x=e.toValue(g),v=x.$.subTree&&x.$.subTree.children;return v==null||!Array.isArray(v)?!1:v.some(b=>b.el===k.target||k.composedPath().includes(b.el))}const f=g=>{const k=Et(n);if(g.target!=null&&!(!(k instanceof Element)&&u(n)&&h(n,g))&&!(!k||k===g.target||g.composedPath().includes(k))){if("detail"in g&&g.detail===0&&(s=!d(g)),!s){s=!0;return}t(g)}};let p=!1;const m=[S0(o,"click",g=>{p||(p=!0,setTimeout(()=>{p=!1},0),f(g))},{passive:!0,capture:l}),S0(o,"pointerdown",g=>{const k=Et(n);s=!d(g)&&!!(k&&!g.composedPath().includes(k))},{passive:!0}),i&&S0(o,"blur",g=>{setTimeout(()=>{var k;const x=Et(n);((k=o.document.activeElement)===null||k===void 0?void 0:k.tagName)==="IFRAME"&&!x?.contains(o.document.activeElement)&&t(g)},0)},{passive:!0})].filter(Boolean),w=()=>m.forEach(g=>g());return c?{stop:w,cancel:()=>{s=!1},trigger:g=>{s=!0,f(g),s=!1}}:w}function Sl(n){return typeof Window<"u"&&n instanceof Window?n.document.documentElement:typeof Document<"u"&&n instanceof Document?n.documentElement:n}const $l=new WeakMap;function yh(n,t=!1){const r=e.shallowRef(t);let o="";e.watch(xh(n),i=>{const c=Sl(e.toValue(i));if(c){const s=c;if($l.get(s)||$l.set(s,s.style.overflow),s.style.overflow!=="hidden"&&(o=s.style.overflow),s.style.overflow==="hidden")return r.value=!0;if(r.value)return s.style.overflow="hidden"}},{immediate:!0});const a=()=>{const i=Sl(e.toValue(n));!i||r.value||(i.style.overflow="hidden",r.value=!0)},l=()=>{const i=Sl(e.toValue(n));!i||!r.value||(i.style.overflow=o,$l.delete(i),r.value=!1)};return mh(l),e.computed({get(){return r.value},set(i){i?a():l()}})}function Bh(n,t={}){const{threshold:r=50,onSwipe:o,onSwipeEnd:a,onSwipeStart:l,passive:i=!0}=t,c=e.reactive({x:0,y:0}),s=e.reactive({x:0,y:0}),d=e.computed(()=>c.x-s.x),u=e.computed(()=>c.y-s.y),{max:h,abs:f}=Math,p=e.computed(()=>h(f(d.value),f(u.value))>=r),m=e.shallowRef(!1),w=e.computed(()=>p.value?f(d.value)>f(u.value)?d.value>0?"left":"right":u.value>0?"up":"down":"none"),g=y=>[y.touches[0].clientX,y.touches[0].clientY],k=(y,B)=>{c.x=y,c.y=B},x=(y,B)=>{s.x=y,s.y=B},v={passive:i,capture:!i},b=y=>{m.value&&a?.(y,w.value),m.value=!1},C=[S0(n,"touchstart",y=>{if(y.touches.length!==1)return;const[B,V]=g(y);k(B,V),x(B,V),l?.(y)},v),S0(n,"touchmove",y=>{if(y.touches.length!==1)return;const[B,V]=g(y);x(B,V),v.capture&&!v.passive&&Math.abs(d.value)>Math.abs(u.value)&&y.preventDefault(),!m.value&&p.value&&(m.value=!0),m.value&&o?.(y)},v),S0(n,["touchend","touchcancel"],b,v)];return{isSwiping:m,direction:w,coordsStart:c,coordsEnd:s,lengthX:d,lengthY:u,stop:()=>C.forEach(y=>y())}}const Il=new WeakMap,Hl={mounted(n,t){const r=!t.modifiers.bubble;let o;if(typeof t.value=="function")o=Zl(n,t.value,{capture:r});else{const[a,l]=t.value;o=Zl(n,a,Object.assign({capture:r},l))}Il.set(n,o)},unmounted(n){const t=Il.get(n);t&&typeof t=="function"?t():t?.stop(),Il.delete(n)}};function Eh(){let n=!1;const t=e.shallowRef(!1);return(r,o)=>{if(t.value=o.value,n)return;n=!0;const a=yh(r,o.value);e.watch(t,l=>a.value=l)}}Eh();const bh=["dir"],Ch={class:"flex items-center w-full gap-2"},Mh={key:0,class:""},Vh={class:"flex-1 w-full"},Ah={class:"flex items-center gap-2"},_h={key:1,class:""},pn={__name:"Base",props:{modelValue:[String,Number,Boolean,Object,Array,null],label:{type:[Object,String],default:""},items:{type:Array,default:()=>[]},itemText:{type:String,default:"text"},itemValue:{type:String,default:"value"},disabled:{type:Boolean,default:!1},required:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},dir:{type:String,default:""},lang:{type:String,default:""},error:{type:Boolean,default:!1},errorMessage:{type:[String,Array],default:""},errorMessages:{type:Array,default:()=>[]},rules:{type:Array,default:()=>[]},messages:{type:[String,Array],default:""},hint:{type:String,default:""},persistentHint:{type:Boolean,default:!1},hideDetails:{type:Boolean,default:!1},isOpen:{type:Boolean,default:!1},prepend:{type:String,default:""},append:{type:String,default:""},size:{type:String,default:"md"},id:{type:String,default:""},width:{type:String,default:"w-full"},border:{type:String,default:" border-input-border"},textColor:{type:String,default:"text-input-text"},margin:{type:String,default:""},bg:{type:String,default:"bg-surface-elevated"},hover:{type:String,default:"hover:border-input-hover-border"},focus:{type:String,default:"focus:border-input-focus-border"},rounded:{type:String,default:"sm"},multiple:{type:Boolean,default:!1},searchable:{type:Boolean,default:!1},bgColorVariant:{type:String,default:""},borderColorVariant:{type:String,default:""},textColorVariant:{type:String,default:""},labelTextSize:{type:String,default:"text-base"},iconType:{type:String,default:"outline"},labelTextColor:{type:String,default:"text-input-border"},height:{type:String,default:""}},emits:["update:modelValue","focus","blur","change","click:prepend","click:append","click:clear"],setup(n,{emit:t}){const{language:r}=e.inject("i18n"),o=t,a=n,l=e.inject("formContext",null),c=e.getCurrentInstance()?.uid,s=e.ref(!1),d=e.ref(!1),u=e.ref([]),h=e.ref(!1),f=e.computed(()=>{if(a.error===!0||a.errorMessages&&Array.isArray(a.errorMessages)&&a.errorMessages.length>0)return!0;if(a.errorMessage&&a.errorMessage!==""){if(Array.isArray(a.errorMessage))return a.errorMessage.length>0;if(typeof a.errorMessage=="string")return a.errorMessage.trim()!==""}return!!(h.value&&u.value&&u.value.length>0)}),p=e.computed(()=>a.modelValue===null||a.modelValue===void 0||a.modelValue===""?!1:Array.isArray(a.modelValue)?a.modelValue.length>0:(typeof a.modelValue=="boolean",!0)),m=e.computed(()=>{const _=[];return a.errorMessages&&Array.isArray(a.errorMessages)&&a.errorMessages.length>0&&_.push(...a.errorMessages),a.errorMessage&&(Array.isArray(a.errorMessage)&&a.errorMessage.length>0?_.push(...a.errorMessage):typeof a.errorMessage=="string"&&a.errorMessage.trim()!==""&&_.push(a.errorMessage)),h.value&&u.value&&u.value.length>0&&_.push(...u.value),_});function w(){if(u.value=[],!a.rules||a.rules.length===0)return!0;for(const _ of a.rules){const T=_(a.modelValue);T!==!0&&u.value.push(T)}return u.value.length===0}const g=e.computed(()=>{let _="";return a.dir=="rtl"||a.lang=="dv"?_="rtl":a.dir=="ltr"||a.lang=="en"?_="ltr":_="",_}),k=e.computed(()=>{let _="";return a.lang!=""?_=a.lang:a.dir=="rtl"?_="dv":a.dir=="ltr"?_="en":_=r.value,_==="dv"?"dv":"en"}),x=e.computed(()=>k.value=="dv"?"faruma":""),v=e.computed(()=>{let _=ho(a.label,k.value,"");return(typeof _=="object"||Array.isArray(_))&&_!==null?_:_!==""&&_!==null?(console.log("selectedlabels in Base:",_),_):null}),b=e.computed(()=>({id:a.id,disabled:a.disabled,readonly:a.readonly,value:a.modelValue,required:a.required,"aria-invalid":f.value,dir:g.value})),C={input:_=>D(_.target.value),focus:S,blur:Z,change:_=>o("change",_.target.value)},A=e.computed(()=>s.value||p.value||a.isOpen?"-top-[1px]":"top-[48%]"),y=e.computed(()=>{let _="",T="";return a.size==="xs"?(T="text-xs",_=a.prepend?"inset-4":"inset-3"):a.size==="sm"?(T="text-sm",_=a.prepend?"inset-8":"inset-3"):a.size==="md"?(T="text-md",_=a.prepend?"inset-10":"inset-3"):a.size==="lg"?(T="text-lg",_=a.prepend?"inset-12":"inset-3"):a.size==="xl"?(T="text-lg",_=a.prepend?"inset-14":"inset-3"):(T="text-sm",_=a.prepend?"inset-8":"inset-3"),(s.value||p.value||a.isOpen)&&(k.value==="dv"?_="right-8":_="left-8",T="text-xs"),_+" "+T}),B=e.computed(()=>{const _=["absolute flex px-2 items-center transition-all pointer-events-none h-[1px]",y.value,A.value];return s.value||p.value||a.isOpen?_.push("bg-inherit"):_.push("bg-transparent"),f.value?_.push("text-error"):s.value?_.push("border-input-focus-border"):_.push("text-input-text"),_}),V=e.computed(()=>{if(a.hideDetails)return[];if(f.value)return m.value;if(a.messages){if(Array.isArray(a.messages))return a.messages.filter(_=>_&&_.trim&&_.trim()!=="");if(typeof a.messages=="string"&&a.messages.trim()!=="")return[a.messages]}return a.hint&&a.hint.trim()!==""&&(a.persistentHint||s.value)?[a.hint]:[]});function S(_){s.value=!0,o("focus",_)}function Z(_){if(s.value=!1,h.value=!0,l?.validateOn?.value){const T=l.validateOn.value;if(T==="blur"||Array.isArray(T)&&T.includes("blur")){const N=w();l.validate&&l.validate(c,N,u.value)}}else w();o("blur",_)}function D(_){o("update:modelValue",_)}function R(){u.value=[],d.value=!1,h.value=!1}const K=()=>{const _=a.multiple?[]:"";o("update:modelValue",_),o("change",_),o("click:clear")};return e.onMounted(()=>{l&&l.register(c,{validate:()=>{const _=w(),T=_?[]:u.value;return l.validate&&l.validate(c,_,T),_},reset:()=>{o("update:modelValue",a.multiple?[]:""),R()},resetValidation:()=>{u.value=[],d.value=!1}})}),e.watch(()=>a.isOpen,(_,T)=>{if(T===!0&&_===!1&&l){h.value=!0;const E=w();l.validate&&l.validate(c,E,u.value)}}),e.onBeforeUnmount(()=>{l&&l.unregister(c)}),(_,T)=>{const E=e.resolveComponent("HeroIcon");return e.openBlock(),e.createElementBlock("div",{dir:g.value!==""?g.value:"",class:e.normalizeClass([x.value,n.margin,n.width,"group/select overflow-visible "])},[e.createElementVNode("div",{class:e.normalizeClass(["relative vts-border focus:outline-none transition cursor-pointer flex items-center justify-between gap-2 ",n.width,a.height||e.unref(g3)[n.size],e.unref(ml)[n.size],f.value?"vts-border-color-error":"vts-border-color",n.disabled?"bg-input-hover cursor-not-allowed":`${n.bg}`,n.isOpen&&!f.value?"vts-border-color-heavy":"",!n.isOpen&&!f.value?"vts-border-color-light":"",n.rounded?e.unref(En)[n.rounded]:"",n.textColor])},[n.label?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(B.value),"aria-hidden":"true"},e.toDisplayString(v.value?v.value??v.value.label:n.label),3)):e.createCommentVNode("",!0),e.createElementVNode("div",Ch,[_.$slots.prepend||n.prepend?(e.openBlock(),e.createElementBlock("div",Mh,[e.renderSlot(_.$slots,"prepend",{},()=>[e.createVNode(E,{size:e.unref(V0)[n.size],name:n.prepend,type:n.iconType=="outline"?"outline":"solid"},null,8,["size","name","type"])])])):e.createCommentVNode("",!0),e.createElementVNode("div",Vh,[e.renderSlot(_.$slots,"control",{attrs:b.value,events:C})])]),e.createElementVNode("div",Ah,[n.clearable&&p.value&&!n.disabled?(e.openBlock(),e.createElementBlock("button",{key:0,class:"hover:text-input-focus-border text-input-text flex items-center invisible group-hover/select:visible transition-all cursor-pointer",title:"Clear selection",type:"button",onClick:e.withModifiers(K,["stop"])},[...T[0]||(T[0]=[e.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor",class:"size-4"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6 18 18 6M6 6l12 12"})],-1)])])):e.createCommentVNode("",!0),_.$slots.append||n.append?(e.openBlock(),e.createElementBlock("div",_h,[e.renderSlot(_.$slots,"append",{},()=>[e.createVNode(E,{size:e.unref(V0)[n.size],name:n.append,type:n.iconType=="outline"?"outline":"solid"},null,8,["size","name","type"])])])):e.createCommentVNode("",!0)])],2),V.value.length?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass([".vts-mt-1 text-xs",k.value==="dv"?"text-right":"text-left","text-input-text"])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(V.value,(N,F)=>(e.openBlock(),e.createElementBlock("div",{key:F,class:e.normalizeClass(f.value?"text-error":"")},e.toDisplayString(e.unref(ho)(N,k.value,"")),3))),128))],2)):e.createCommentVNode("",!0)],10,bh)}}},Nh=["tabindex","onKeydown"],Zh={key:0,class:"flex items-center"},Sh=["src","alt"],$h={class:"flex items-center min-w-0 leading-none"},Ih={key:1,class:"flex items-center"},Hh=["disabled","onKeydown"],Tl=De({__name:"Chip",props:{label:{type:String,default:""},clickable:{type:Boolean,default:!1},closable:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},variant:{type:String,default:"default",validator:n=>["default","outlined","filled","tonal"].includes(n)},color:{type:String,default:"primary"},size:{type:String,default:"default",validator:n=>["small","default","large"].includes(n)},rounded:{type:String,default:"full"},prependIcon:{type:[String,Object],default:null},appendIcon:{type:[String,Object],default:null},avatar:{type:String,default:null},avatarAlt:{type:String,default:"Avatar"},chipClass:{type:String,default:""},textClass:{type:String,default:""},bgColor:{type:String,default:""},textColor:{type:String,default:""},borderColor:{type:String,default:""}},emits:["click","close"],setup(n,{emit:t}){const r=n,o=t,a=e.computed(()=>{const m={small:"px-2 py-1 text-xs min-h-6",default:"px-3 py-1.5 text-sm min-h-8",large:"px-4 py-2 text-base min-h-10"};return m[r.size]||m.default}),l=e.computed(()=>r.rounded==="none"?"rounded-none":r.rounded==="sm"?"rounded-sm":r.rounded==="md"?"rounded-md":r.rounded==="lg"?"rounded-lg":r.rounded==="xl"?"rounded-xl":"rounded-full"),i=e.computed(()=>{if(r.bgColor||r.textColor||r.borderColor){const g=r.bgColor||"bg-gray-100",k=r.textColor||"text-gray-800",x=r.borderColor?`border ${r.borderColor}`:"";return r.variant==="outlined"?`bg-transparent ${k} border ${x||"border-gray-300"}`:`${g} ${k} ${x}`}const m={primary:{default:"bg-blue-100 text-blue-800 hover:bg-blue-200",outlined:"bg-transparent text-blue-600 border border-blue-300 hover:bg-blue-50",filled:"bg-blue-600 text-white hover:bg-blue-700",tonal:"bg-blue-50 text-blue-700 hover:bg-blue-100"},secondary:{default:"bg-gray-100 text-gray-800 hover:bg-gray-200",outlined:"bg-transparent text-gray-600 border border-gray-300 hover:bg-gray-50",filled:"bg-gray-600 text-white hover:bg-gray-700",tonal:"bg-gray-50 text-gray-700 hover:bg-gray-100"},success:{default:"bg-green-100 text-green-800 hover:bg-green-200",outlined:"bg-transparent text-green-600 border border-green-300 hover:bg-green-50",filled:"bg-green-600 text-white hover:bg-green-700",tonal:"bg-green-50 text-green-700 hover:bg-green-100"},warning:{default:"bg-yellow-100 text-yellow-800 hover:bg-yellow-200",outlined:"bg-transparent text-yellow-600 border border-yellow-300 hover:bg-yellow-50",filled:"bg-yellow-600 text-white hover:bg-yellow-700",tonal:"bg-yellow-50 text-yellow-700 hover:bg-yellow-100"},error:{default:"bg-red-100 text-red-800 hover:bg-red-200",outlined:"bg-transparent text-red-600 border border-red-300 hover:bg-red-50",filled:"bg-red-600 text-white hover:bg-red-700",tonal:"bg-red-50 text-red-700 hover:bg-red-100"},info:{default:"bg-cyan-100 text-cyan-800 hover:bg-cyan-200",outlined:"bg-transparent text-cyan-600 border border-cyan-300 hover:bg-cyan-50",filled:"bg-cyan-600 text-white hover:bg-cyan-700",tonal:"bg-cyan-50 text-cyan-700 hover:bg-cyan-100"}},w=m[r.color]||m.primary;return w[r.variant]||w.default}),c=e.computed(()=>{const m="font-medium";return r.textClass?`${m} ${r.textClass}`:m}),s=e.computed(()=>{const m={small:"w-3 h-3",default:"w-4 h-4",large:"w-5 h-5"};return m[r.size]||m.default}),d=e.computed(()=>{const m={small:"w-4 h-4",default:"w-5 h-5",large:"w-6 h-6"};return`${m[r.size]||m.default} rounded-full object-cover`}),u=e.computed(()=>{const m={small:"w-4 h-4",default:"w-5 h-5",large:"w-6 h-6"};return m[r.size]||m.default}),h=e.computed(()=>{const m={small:"w-2.5 h-2.5",default:"w-3 h-3",large:"w-3.5 h-3.5"};return m[r.size]||m.default}),f=()=>{!r.disabled&&r.clickable&&o("click")},p=()=>{r.disabled||o("close")};return(m,w)=>{const g=e.resolveComponent("HeroIcon");return e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["inline-flex items-center gap-2 transition-all duration-200 ease-in-out select-none","leading-none",a.value,i.value,l.value,{"cursor-pointer hover:shadow-md":n.clickable,"opacity-60":n.disabled,"cursor-not-allowed":n.disabled},n.chipClass]),tabindex:n.clickable&&!n.disabled?0:-1,onClick:f,onKeydown:[e.withKeys(f,["enter"]),e.withKeys(e.withModifiers(f,["prevent"]),["space"])]},[m.$slots.prepend||n.avatar||n.prependIcon?(e.openBlock(),e.createElementBlock("div",Zh,[e.renderSlot(m.$slots,"prepend",{},()=>[n.avatar?(e.openBlock(),e.createElementBlock("img",{key:0,src:n.avatar,alt:n.avatarAlt,class:e.normalizeClass(d.value)},null,10,Sh)):e.createCommentVNode("",!0),n.prependIcon?(e.openBlock(),e.createBlock(g,{key:1,name:n.prependIcon,type:"outline",size:e.unref(V0).sm,color:"text-current"},null,8,["name","size"])):(e.openBlock(),e.createElementBlock("svg",{key:2,class:e.normalizeClass(s.value),fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[...w[0]||(w[0]=[e.createElementVNode("circle",{cx:"12",cy:"12",r:"10"},null,-1),e.createElementVNode("path",{d:"M12 6v6l4 2"},null,-1)])],2))],!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",$h,[e.createElementVNode("span",{class:e.normalizeClass(["truncate leading-none",c.value])},[e.renderSlot(m.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)],!0)],2)]),m.$slots.append||n.appendIcon||n.closable?(e.openBlock(),e.createElementBlock("div",Ih,[e.renderSlot(m.$slots,"append",{},()=>[n.closable?(e.openBlock(),e.createElementBlock("button",{key:0,type:"button",class:e.normalizeClass(["inline-flex items-center justify-center rounded-full transition-colors duration-200 hover:bg-black/10 focus:outline-none focus:ring-2 focus:ring-offset-1",u.value]),disabled:n.disabled,onClick:e.withModifiers(p,["stop"]),onKeydown:[e.withKeys(e.withModifiers(p,["stop"]),["enter"]),e.withKeys(e.withModifiers(p,["stop","prevent"]),["space"])]},[(e.openBlock(),e.createElementBlock("svg",{class:e.normalizeClass(h.value),fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[...w[1]||(w[1]=[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"},null,-1)])],2))],42,Hh)):n.appendIcon?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(n.appendIcon),{key:1,class:e.normalizeClass(s.value)},null,8,["class"])):e.createCommentVNode("",!0)],!0)])):e.createCommentVNode("",!0)],42,Nh)}}},[["__scopeId","data-v-7c123d2b"]]),Th={key:0,class:"flex flex-col"},Lh={key:0,class:"text-red-500 ml-0.5"},Dh={key:0,class:"mt-1 text-sm text-red-500"},Ph={key:1,class:"mt-1 text-sm ui-text-secondary"},Ll=De({__name:"Checkbox",props:{modelValue:{type:[Boolean,Array],default:!1},value:{type:[String,Number,Boolean,Object],default:!0},label:{type:String,default:""},description:{type:String,default:""},labelPosition:{type:String,default:"right",validator:n=>["left","right"].includes(n)},disabled:{type:Boolean,default:!1},required:{type:Boolean,default:!1},indeterminate:{type:Boolean,default:!1},error:{type:[String,Boolean],default:!1},hint:{type:String,default:""},size:{type:String,default:"md",validator:n=>["xs","sm","md","lg","xl"].includes(n)},rounded:{type:String,default:"md",validator:n=>["none","sm","md","lg","full"].includes(n)},color:{type:String,default:"primary"},margin:{type:String,default:""}},emits:["update:modelValue","change"],setup(n,{emit:t}){const r=n,o=t,a=e.computed(()=>Array.isArray(r.modelValue)?r.modelValue.includes(r.value):r.modelValue===!0||r.modelValue===r.value),l=()=>{if(r.disabled)return;let p;if(Array.isArray(r.modelValue)){p=[...r.modelValue];const m=p.indexOf(r.value);m===-1?p.push(r.value):p.splice(m,1)}else p=!r.modelValue;o("update:modelValue",p),o("change",p)},i=e.computed(()=>{const p={xs:"w-3.5 h-3.5",sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6",xl:"w-7 h-7"};return p[r.size]||p.md}),c=e.computed(()=>{const p={xs:"w-2.5 h-2.5",sm:"w-3 h-3",md:"w-3.5 h-3.5",lg:"w-4 h-4",xl:"w-5 h-5"};return p[r.size]||p.md}),s=e.computed(()=>{const p={xs:"text-xs",sm:"text-sm",md:"text-sm",lg:"text-base",xl:"text-lg"};return p[r.size]||p.md}),d=e.computed(()=>{const p={xs:"text-xs",sm:"text-xs",md:"text-xs",lg:"text-sm",xl:"text-base"};return p[r.size]||p.md}),u=e.computed(()=>{const p={none:"rounded-none",sm:"rounded-sm",md:"rounded",lg:"rounded-lg",full:"rounded-full"};return p[r.rounded]||p.md}),h=e.computed(()=>{const p={primary:{checked:"bg-primary border-primary",unchecked:"border-primary/20 hover:border-primary"},success:{checked:"bg-green-500 border-green-500",unchecked:"border-green-100 hover:border-green-500"},warning:{checked:"bg-yellow-500 border-yellow-500",unchecked:"border-yellow-100 hover:border-yellow-500"},danger:{checked:"bg-red-500 border-red-500",unchecked:"border-red-100 hover:border-red-500"},info:{checked:"bg-blue-500 border-blue-500",unchecked:"border-blue-100 hover:border-blue-500"}};return p[r.color]||p.primary}),f=e.computed(()=>r.error?a.value||r.indeterminate?"bg-red-500 border-red-500":"border-red-500 hover:border-red-600":a.value||r.indeterminate?h.value.checked:r.disabled?"border-color-3 bg-color-2":h.value.unchecked);return(p,m)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["relative",n.margin])},[e.createElementVNode("label",{class:e.normalizeClass(["inline-flex items-start gap-3 cursor-pointer select-none",n.disabled?"opacity-50 cursor-not-allowed":"",n.labelPosition==="left"?"flex-row-reverse":""]),onClick:e.withModifiers(l,["prevent"])},[e.createElementVNode("div",{class:e.normalizeClass(["flex-shrink-0 flex items-center justify-center border-2 transition-all duration-200",i.value,u.value,f.value,n.disabled?"cursor-not-allowed":"cursor-pointer"])},[e.createVNode(e.Transition,{name:"scale"},{default:e.withCtx(()=>[a.value&&!n.indeterminate?(e.openBlock(),e.createElementBlock("svg",{key:0,class:e.normalizeClass(["text-white",c.value]),fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[...m[0]||(m[0]=[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"3",d:"M5 13l4 4L19 7"},null,-1)])],2)):e.createCommentVNode("",!0)]),_:1}),e.createVNode(e.Transition,{name:"scale"},{default:e.withCtx(()=>[n.indeterminate?(e.openBlock(),e.createElementBlock("svg",{key:0,class:e.normalizeClass(["text-white",c.value]),fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[...m[1]||(m[1]=[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"3",d:"M5 12h14"},null,-1)])],2)):e.createCommentVNode("",!0)]),_:1})],2),n.label||n.description||p.$slots.default?(e.openBlock(),e.createElementBlock("div",Th,[n.label||p.$slots.default?(e.openBlock(),e.createElementBlock("span",{key:0,class:e.normalizeClass(["ui-text-primary leading-tight",s.value])},[e.renderSlot(p.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)],!0),n.required?(e.openBlock(),e.createElementBlock("span",Lh,"*")):e.createCommentVNode("",!0)],2)):e.createCommentVNode("",!0),n.description?(e.openBlock(),e.createElementBlock("span",{key:1,class:e.normalizeClass(["ui-text-secondary mt-0.5",d.value])},e.toDisplayString(n.description),3)):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0)],2),n.error?(e.openBlock(),e.createElementBlock("p",Dh,e.toDisplayString(typeof n.error=="string"?n.error:""),1)):e.createCommentVNode("",!0),n.hint&&!n.error?(e.openBlock(),e.createElementBlock("p",Ph,e.toDisplayString(n.hint),1)):e.createCommentVNode("",!0)],2))}},[["__scopeId","data-v-b5e2fc08"]]),Oh={class:"flex items-center"},Rh=["aria-label"],tc=De({__name:"ChipGroup",props:{chips:{type:Array,default:()=>[]},variant:{type:String,default:"default"},color:{type:String,default:"primary"},size:{type:String,default:"default"},rounded:{type:String,default:"full"},clickable:{type:Boolean,default:!1},closable:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},gap:{type:String,default:"md"},justify:{type:String,default:"start"},containerClass:{type:String,default:""},chipClass:{type:String,default:""},textClass:{type:String,default:""},bgColor:{type:String,default:""},textColor:{type:String,default:""},borderColor:{type:String,default:""},ariaLabel:{type:String,default:"Chip group"},itemKey:{type:String,default:"id"},itemText:{type:String,default:"text"},groupName:{type:String,default:""}},emits:["chip-click","chip-close","update:chips","update:modelValue"],setup(n,{emit:t}){const r=n,o=t,a=e.computed(()=>{const u={none:"gap-0",sm:"gap-1",md:"gap-2",lg:"gap-3",xl:"gap-4"};return u[r.gap]||u.md}),l=e.computed(()=>{const u={start:"justify-start",center:"justify-center",end:"justify-end",between:"justify-between",around:"justify-around",evenly:"justify-evenly"};return u[r.justify]||u.start}),i=(u,h)=>typeof u=="object"&&u[r.itemKey]?u[r.itemKey]:typeof u=="object"&&u.id?u.id:h,c=u=>typeof u=="string"?u:typeof u=="object"?u[r.itemText]||u.text||u.label||u.name||"":String(u),s=u=>{o("chip-click",u),o("update:modelValue",u.value)},d=(u,h)=>{const f=[...r.chips];f.splice(h,1),o("chip-close",{chip:u,index:h}),o("update:chips",f)};return(u,h)=>(e.openBlock(),e.createElementBlock("div",Oh,[e.createElementVNode("div",{class:e.normalizeClass(["inline-flex ",a.value,l.value,n.containerClass]),role:"group","aria-label":n.ariaLabel},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.chips,(f,p)=>(e.openBlock(),e.createBlock(Tl,{key:i(f,p),label:c(f),variant:f.variant||n.variant,color:f.color||n.color,size:f.size||n.size,rounded:f.rounded||n.rounded,clickable:f.clickable!==void 0?f.clickable:n.clickable,closable:f.closable!==void 0?f.closable:n.closable,disabled:f.disabled||n.disabled,avatar:f.avatar,"avatar-alt":f.avatarAlt,"prepend-icon":f.prependIcon,"append-icon":f.appendIcon,"chip-class":f.chipClass||n.chipClass,"text-class":f.textClass||n.textClass,"bg-color":f.bgColor||n.bgColor,"text-color":f.textColor||n.textColor,"border-color":f.borderColor||n.borderColor,onClick:m=>s(f),onClose:m=>d(f,p)},e.createSlots({_:2},[u.$slots.chip?{name:"default",fn:e.withCtx(m=>[e.renderSlot(u.$slots,"chip",e.mergeProps({ref_for:!0},{...m,chip:f,index:p}),void 0,!0)]),key:"0"}:void 0,u.$slots.prepend?{name:"prepend",fn:e.withCtx(m=>[e.renderSlot(u.$slots,"prepend",e.mergeProps({ref_for:!0},{...m,chip:f,index:p}),void 0,!0)]),key:"1"}:void 0,u.$slots.append?{name:"append",fn:e.withCtx(m=>[e.renderSlot(u.$slots,"append",e.mergeProps({ref_for:!0},{...m,chip:f,index:p}),void 0,!0)]),key:"2"}:void 0]),1032,["label","variant","color","size","rounded","clickable","closable","disabled","avatar","avatar-alt","prepend-icon","append-icon","chip-class","text-class","bg-color","text-color","border-color","onClick","onClose"]))),128))],10,Rh)]))}},[["__scopeId","data-v-afa93294"]]),zh=Object.freeze(Object.defineProperty({__proto__:null,default:tc},Symbol.toStringTag,{value:"Module"})),jh={key:0,class:e.normalizeClass(["fixed inset-0 z-50 flex items-center justify-center overflow-hidden"])},bn=De(e.defineComponent({__name:"Modal",props:{modelValue:{type:Boolean,required:!0},persistent:{type:Boolean,default:!1},fullscreen:{type:Boolean,default:!1},transition:{type:String,default:"center"},overlayClass:{type:String,default:""},modalClass:{type:String,default:""},lang:{type:String,default:""},labels:{type:[String,Object],default:()=>({en:{title:"",body:"",footer:""},dv:{title:"",body:"",footer:""}})},width:{type:String,default:""},height:{type:String,default:""},title:{type:[String,Object],default:""},cardClass:{type:String,default:""},overflow:{type:String,default:"max-h-[calc(100vh-150px)] overflow-auto"},bg:{type:String,default:"bg-background-color"},border:{type:String,default:"border border-input-border"},rounded:{type:String,default:""},shadow:{type:String,default:""},dir:{type:String,default:""},bodyClass:{type:String,default:""},margin:{type:String,default:"mx-0 my-6"},padding:{type:String,default:"px-6 py-4"},textColor:{type:String,default:"text-input-text"},textSize:{type:String,default:"text-base"},headerClass:{type:String,default:""},titleClass:{type:String,default:""},headerBg:{type:String,default:""},headerText:{type:String,default:"text-input-text"},headerTextSize:{type:String,default:"text-lg font-semibold"},headerBd:{type:String,default:""},headerMargin:{type:String,default:""},headerPadding:{type:String,default:"px-6 pt-4"},footerClass:{type:String,default:""},footerBg:{type:String,default:""},footerText:{type:String,default:"text-input-text"},footerTextSize:{type:String,default:""},footerBd:{type:String,default:""},footerMargin:{type:String,default:""},footerPadding:{type:String,default:"px-6 py-4"}},emits:["update:modelValue"],setup(n,{emit:t}){const r=n,o=t;e.computed(()=>({backgroundColor:"var(--vts-color-surfaceElevated)",color:"var(--vts-color-text)",borderRadius:"var(--vts-radius-lg)",boxShadow:"var(--vts-elevation-4)"}));const a=e.computed(()=>({}));e.computed(()=>({backgroundColor:"var(--vts-color-surfaceElevated)",borderTopColor:"var(--vts-color-border)"})),e.computed(()=>({backgroundColor:"var(--vts-color-surfaceElevated)",borderBottomColor:"var(--vts-color-border)"}));const l=e.computed({get:()=>r.modelValue,set:u=>o("update:modelValue",u)}),i=e.ref(!1);function c(){if(r.persistent){i.value=!0,setTimeout(()=>i.value=!1,400);return}l.value=!1}function s(u){u.key==="Escape"&&l.value&&c()}e.onMounted(()=>{document.addEventListener("keydown",s)}),e.onBeforeUnmount(()=>{document.removeEventListener("keydown",s)});const d=e.computed(()=>`${r.transition??"center"}`);return(u,h)=>{const f=e.resolveComponent("Card");return e.openBlock(),e.createBlock(e.Teleport,{to:"body"},[e.createVNode(e.Transition,{name:d.value},{default:e.withCtx(()=>[l.value?(e.openBlock(),e.createElementBlock("div",jh,[e.createElementVNode("div",{class:e.normalizeClass(["absolute inset-0 overflow-hidden",[n.overlayClass,"vts-bg-overlay"]]),style:e.normalizeStyle(a.value),onClick:c},null,6),e.createVNode(e.Transition,{name:d.value},{default:e.withCtx(()=>[l.value?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["relative max-h-fit flex flex-col overflow-y-auto",[n.fullscreen?"h-screen w-full rounded-none":"mx-4 sm:max-w-lg",n.modalClass,i.value&&"animate-shake"]]),onClick:h[0]||(h[0]=e.withModifiers(()=>{},["stop"]))},[e.createVNode(f,{lang:n.lang,labels:n.labels,width:n.width,title:n.title,cardClass:n.cardClass,overflow:n.overflow,bg:n.bg,border:n.border,rounded:n.rounded,shadow:n.shadow,dir:n.dir,height:n.fullscreen?"h-screen":n.height,margin:n.fullscreen?"m-0":n.margin},{header:e.withCtx(()=>[e.renderSlot(u.$slots,"header",{},void 0,!0)]),footer:e.withCtx(()=>[e.renderSlot(u.$slots,"footer",{},void 0,!0)]),default:e.withCtx(()=>[e.renderSlot(u.$slots,"default",{},void 0,!0)]),_:3},8,["lang","labels","width","title","cardClass","overflow","bg","border","rounded","shadow","dir","height","margin"])],2)):e.createCommentVNode("",!0)]),_:3},8,["name"])])):e.createCommentVNode("",!0)]),_:3},8,["name"])])}}}),[["__scopeId","data-v-2a8dcdce"]]),Fh={class:"flex justify-end gap-2"},Uh={__name:"ConfirmationModel",setup(n){return(t,r)=>{const o=e.resolveComponent("v-slot"),a=e.resolveComponent("Button");return e.openBlock(),e.createBlock(bn,{modelValue:t.showConfirmation,"onUpdate:modelValue":r[0]||(r[0]=l=>t.showConfirmation=l),persistent:"",lang:"en",title:"Confirm Update"},{footer:e.withCtx(()=>[e.createElementVNode("div",Fh,[e.createVNode(a,{label:"Cancel",color:"secondary",variant:"outlined",onClick:t.cancelUpdate},null,8,["onClick"]),e.createVNode(a,{label:"Confirm",color:"primary",loading:t.updateLoading,onClick:t.confirmUpdate},null,8,["loading","onClick"])])]),default:e.withCtx(()=>[e.createVNode(o)]),_:1},8,["modelValue"])}}},Wh={class:"flex items-center"},qh={class:"flex items-center gap-2"},Yh=["value"],Kh=["value"],Gh={class:"flex items-center gap-1"},Jh=["disabled","title"],Xh=["disabled","title"],Qh={class:"flex items-center gap-1"},e4=["disabled","onClick","title"],t4=["disabled","title"],n4=["disabled","title"],nc={__name:"Pagination",props:{page:{type:Number,required:!0},itemsPerPage:{type:Number,required:!0},itemsLength:{type:Number,required:!0},itemsPerPageOptions:{type:Array,default:()=>[10,20,30,40,50]},bg:{type:String,default:"bg-background"},border:{type:String,default:"border-t border-input-border"},textColor:{type:String,default:"text-textcolor"},inputBorder:{type:String,default:"border-input-border focus:none"},buttonPrimary:{type:String,default:"bg-primary hover:bg-primary/90"},buttonSecondary:{type:String,default:"border border-input-border bg-background hover:bg-accent hover:text-accent-foreground"},rounded:{type:String,default:"rounded-none"}},emits:["update:page","update:itemsPerPage","change"],setup(n,{emit:t}){const{t:r,language:o}=e.inject("i18n"),a=n,l=t,i=e.computed(()=>Math.ceil(a.itemsLength/a.itemsPerPage)||1),c=e.computed(()=>a.itemsLength===0?0:(a.page-1)*a.itemsPerPage+1),s=e.computed(()=>{const f=a.page*a.itemsPerPage;return Math.min(f,a.itemsLength)}),d=e.computed(()=>{const f=a.page,p=i.value,m=1,w=[];for(let g=Math.max(2,f-m);g<=Math.min(p-1,f+m);g++)w.push(g);return f-m>2&&w.unshift("..."),f+m<p-1&&w.push("..."),w.unshift(1),p>1&&w.push(p),w.filter((g,k,x)=>x.indexOf(g)===k)}),u=f=>{f>=1&&f<=i.value&&f!==a.page&&(l("update:page",f),l("change",{page:f,itemsPerPage:a.itemsPerPage}))},h=f=>{const p=parseInt(f.target.value);l("update:itemsPerPage",p),l("update:page",1),l("change",{page:1,itemsPerPage:p})};return(f,p)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([n.bg,"flex items-center justify-between px-2"])},[e.createElementVNode("bdi",Wh,[e.createElementVNode("div",qh,[e.createElementVNode("p",{class:e.normalizeClass(["text-sm font-medium",n.textColor])},e.toDisplayString(e.unref(r)("pagination.itemsPerPage")),3),e.createElementVNode("select",{value:n.itemsPerPage,class:e.normalizeClass(["h-8 w-[70px] border bg-transparent px-2 py-1 text-sm","focus:outline-none focus:ring-2 focus:ring-offset-2",n.inputBorder,n.rounded]),onChange:h},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.itemsPerPageOptions,m=>(e.openBlock(),e.createElementBlock("option",{key:m,value:m},e.toDisplayString(m),9,Kh))),128))],42,Yh)])]),e.createElementVNode("div",{class:e.normalizeClass(["flex items-center gap-2 text-base font-medium",n.textColor])},[e.createElementVNode("bdi",{class:e.normalizeClass(e.unref(o)=="dv"?"text-right faruma":"text-left")},e.toDisplayString(c.value)+"-"+e.toDisplayString(s.value)+" "+e.toDisplayString(e.unref(r)("pagination.of"))+" "+e.toDisplayString(n.itemsLength),3)],2),e.createElementVNode("bdi",Gh,[e.createElementVNode("button",{disabled:n.page<=1,class:e.normalizeClass(["inline-flex items-center justify-center h-8 w-8 text-sm font-medium transition-colors","focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2","disabled:pointer-events-none disabled:opacity-50",n.buttonSecondary,n.rounded]),onClick:p[0]||(p[0]=m=>u(1)),title:e.unref(r)("pagination.page")+" 1"},[...p[4]||(p[4]=[e.createElementVNode("svg",{class:"h-4 w-4",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M11 19l-7-7 7-7m8 14l-7-7 7-7"})],-1)])],10,Jh),e.createElementVNode("button",{disabled:n.page<=1,class:e.normalizeClass(["inline-flex items-center justify-center h-8 w-8 text-sm font-medium transition-colors","focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2","disabled:pointer-events-none disabled:opacity-50",n.buttonSecondary,n.rounded]),onClick:p[1]||(p[1]=m=>u(n.page-1)),title:e.unref(r)("pagination.previous")},[...p[5]||(p[5]=[e.createElementVNode("svg",{class:"h-4 w-4",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M15 19l-7-7 7-7"})],-1)])],10,Xh),e.createElementVNode("div",Qh,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(d.value,m=>(e.openBlock(),e.createElementBlock("button",{key:m,disabled:m==="...",class:e.normalizeClass(["inline-flex items-center justify-center text-[#fff] h-8 min-w-8 px-3 text-sm font-medium transition-colors","focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2",m==="..."?"cursor-default pointer-events-none":"",m===n.page?n.buttonPrimary:n.buttonSecondary,n.rounded]),onClick:w=>m!=="..."&&u(m),title:m!=="..."?e.unref(r)("pagination.page")+" "+m:""},e.toDisplayString(m),11,e4))),128))]),e.createElementVNode("button",{disabled:n.page>=i.value,class:e.normalizeClass(["inline-flex items-center justify-center h-8 w-8 text-sm font-medium transition-colors","focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2","disabled:pointer-events-none disabled:opacity-50",n.buttonSecondary,n.rounded]),onClick:p[2]||(p[2]=m=>u(n.page+1)),title:e.unref(r)("pagination.next")},[...p[6]||(p[6]=[e.createElementVNode("svg",{class:"h-4 w-4",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M9 5l7 7-7 7"})],-1)])],10,t4),e.createElementVNode("button",{disabled:n.page>=i.value,class:e.normalizeClass(["inline-flex items-center justify-center h-8 w-8 text-sm font-medium transition-colors","focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2","disabled:pointer-events-none disabled:opacity-50",n.buttonSecondary,n.rounded]),onClick:p[3]||(p[3]=m=>u(i.value)),title:e.unref(r)("pagination.page")+" "+i.value},[...p[7]||(p[7]=[e.createElementVNode("svg",{class:"h-4 w-4",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M13 5l7 7-7 7M5 5l7 7-7 7"})],-1)])],10,n4)])],2))}},r4={class:e.normalizeClass(["flex","items-center","vts-ga-2","justify-between","w-full","h-full"])},o4=["id","disabled","required","dir","placeholder"],a4={key:1,class:"absolute right-8 group-hover/select:right-14 flex vts-ga-2 items-center flex-wrap"},l4={class:""},i4={class:""},c4={key:1,class:"animate-spin h-4 w-4 text-input-border",xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},s4={class:"max-h-60 overflow-auto vts-py-1"},d4={key:0,class:e.normalizeClass(["vts-px-4 vts-py-2 text-input-text text-center text-sm"])},u4={key:1,class:e.normalizeClass(["vts-px-4 vts-py-2 text-error text-center text-sm"])},h4={key:2,class:e.normalizeClass(["vts-px-4 vts-py-2 text-input-text text-center text-sm"])},p4=["onMousedown"],f4={class:"flex items-center vts-ga-2 w-full"},m4={class:"flex-1"},w4={key:1,xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"2",stroke:"text-input-text",class:"w-4 h-4"},Dl=De({__name:"Select",props:{modelValue:{type:[String,Number,Array],default:""},label:{type:[Object,String],default:""},dir:{type:String,default:""},placeholder:{type:String,default:"Search..."},prepend:{type:String,default:""},append:{type:String,default:""},items:{type:Array,default:()=>[]},url:{type:String,default:""},itemTitle:{type:[String],default:"title"},itemValue:{type:String,default:"value"},multiple:{type:Boolean,default:!1},searchable:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},errorMessages:{type:Array,default:()=>[]},rounded:{type:String,default:"sm"},size:{type:String},border:{type:String},textColor:{type:String},menuClass:{type:String,default:""},menuStyle:{type:Object,default:()=>({})},itemClass:{type:String,default:""},itemHoverClass:{type:String,default:""},selectedItemClass:{type:String,default:""},bg:{type:String},returnObject:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},required:{type:Boolean,default:!1},width:{type:String,default:"w-full"},margin:{type:String,default:""},hint:{type:String,default:""},lang:{type:String},rules:{type:Array,default:()=>[]},eager:{type:Boolean,default:!1},cacheItems:{type:Boolean,default:!0}},emits:["update:modelValue","change","select","clear","open","close","focus","blur","enter","search"],setup(n,{expose:t,emit:r}){const{language:o}=e.inject("i18n"),a=r,l=e.ref(""),i=e.ref(null);e.ref("");const c=e.ref(!1),s=e.ref(!1),d=e.ref(null),u=e.ref([]),h=n,f=e.inject("parentDir",""),p=e.inject("parentLang",""),m=e.inject("formContext",null),w=e.inject("api",null),g=e.computed(()=>h.dir||f),k=e.computed(()=>h.lang||p),x=e.ref(!1),v=e.computed(()=>h.url&&u.value.length>0?u.value:h.items),b=async()=>{if(h.url&&!(h.cacheItems&&u.value.length>0)){s.value=!0,d.value=null;try{let j;if(w)j=await w.get(h.url);else{const pe=await fetch(h.url);if(!pe.ok)throw new Error(`HTTP error! status: ${pe.status}`);j={data:await pe.json()}}const ee=j.data;let se=null;if(Array.isArray(ee))se=ee;else if(ee.data&&Array.isArray(ee.data))se=ee.data;else if(ee.items&&Array.isArray(ee.items))se=ee.items;else if(ee.results&&Array.isArray(ee.results))se=ee.results;else for(const pe in ee)if(Array.isArray(ee[pe])){se=ee[pe];break}if(!se)throw new Error("No array found in response");u.value=se}catch(j){console.error("Error fetching items:",j),d.value=j.message||"Failed to load items"}finally{s.value=!1}}};e.onMounted(()=>{h.eager&&h.url&&b()});const C=j=>{c.value=!0,a("focus",j)},A=j=>{c.value=!1,a("blur",j)},y=j=>{a("update:modelValue",j)},B=j=>{a("enter",h.modelValue),a("search",h.modelValue)},V=()=>{a("update:modelValue",""),a("clear"),i.value?.focus()},S=e.computed(()=>["bg-transparent outline-none border-none flex-1 min-w-0 max-w-auto","placeholder:text-gray-400","focus:outline-none",h.multiple&&Z.value.length>0?"flex-1 min-w-0":"",h.searchable?"":"no-caret invisible w-px",h.searchable?"cursor-text":"cursor-pointer"]),Z=e.computed(()=>h.multiple?Array.isArray(h.modelValue)?h.modelValue:[]:h.modelValue?[h.modelValue]:[]),D=e.computed(()=>{const j=v.value.find(ee=>String(_(ee))===String(h.modelValue));return j?K(j):""});e.computed(()=>h.multiple?Z.value.length>0?`${Z.value.length} selected`:"":D.value);const R=e.computed(()=>l.value?v.value.filter(j=>K(j).toLowerCase().includes(l.value.toLowerCase())):v.value),K=j=>j?typeof j=="string"||typeof j=="number"?j.toString():typeof h.itemTitle=="function"?h.itemTitle(j):j[h.itemTitle]||"":"",_=j=>j?typeof j=="string"||typeof j=="number"?j:typeof h.itemValue=="function"?h.itemValue(j):j[h.itemValue]||j:"",T=j=>{const ee=v.value.find(se=>String(_(se))===String(j));return ee?K(ee):j.toString()},E=j=>Z.value.some(ee=>String(ee)===String(j)),N=j=>{const ee=h.returnObject?j:_(j);if(h.multiple){let se=[...Z.value];const pe=_(j),me=se.findIndex(be=>String(be)===String(pe));me>-1?se.splice(me,1):se.push(pe),a("update:modelValue",se)}else a("update:modelValue",ee),a("change",ee),a("select",j),x.value=!1,l.value=""},F=j=>{if(!h.multiple){he();return}he()},P=j=>{if(h.multiple){const ee=Z.value.filter(se=>String(se)!==String(j));a("update:modelValue",ee),a("change",ee)}},U=()=>{const j=h.multiple?[]:"";a("update:modelValue",j),a("change",j),a("clear")},ce=async()=>{h.disabled||(x.value=!0,x.value?(h.url&&!h.eager&&await b(),a("open"),h.searchable&&e.nextTick(()=>{i.value?.focus()})):(a("close"),l.value=""))},he=()=>{if(x.value=!1,l.value="",m?.validateOn?.value){const j=m.validateOn.value;(j==="blur"||Array.isArray(j)&&j.includes("blur"))&&e.nextTick(()=>{})}a("close")};return e.watch(x,j=>{j||(l.value="")}),t({close:he,open:()=>ce(),clear:U,refresh:b,focus:()=>{h.searchable&&x.value&&i.value?.focus()}}),(j,ee)=>{const se=e.resolveComponent("HeroIcon");return e.withDirectives((e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["relative",n.width,n.margin])},[e.createVNode(pn,e.mergeProps(j.$props,{"model-value":n.modelValue,"onUpdate:modelValue":y},e.toHandlers(j.$attrs),{dir:g.value,lang:k.value,label:n.label,prepend:n.prepend,append:n.append,isOpen:x.value,size:n.size,onClick:ce,disabled:n.disabled,readonly:n.readonly,required:n.required,bg:n.bg,border:n.border,"text-color":n.textColor,rounded:n.rounded,width:n.width,hint:n.hint,"persistent-hint":!!n.hint,rules:n.rules,"onClick:clear":V}),{control:e.withCtx(({attrs:pe,events:me})=>[e.createElementVNode("div",r4,[e.withDirectives(e.createElementVNode("input",{"onUpdate:modelValue":ee[0]||(ee[0]=be=>l.value=be),id:pe.id,disabled:pe.disabled,required:pe.required,dir:pe.dir,type:"text",placeholder:c.value&&!l.value?n.placeholder:"",class:e.normalizeClass(S.value),onFocus:C,onBlur:A,onKeydown:e.withKeys(B,["enter"])},null,42,o4),[[e.vModelText,l.value]]),D.value&&!n.multiple?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["absolute",k.value||e.unref(o)==="dv"?"right-0":"left-0"," px-3 truncate pointer-events-none"])},e.toDisplayString(D.value),3)):e.createCommentVNode("",!0),n.multiple&&Z.value.length>0?(e.openBlock(),e.createElementBlock("div",a4,[Z.value.length<2?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:0},e.renderList(Z.value,be=>(e.openBlock(),e.createElementBlock("div",{key:be},[e.createElementVNode("div",{class:e.normalizeClass(["vts-px-2 vts-py-0.5 text-xs flex items-center vts-ga-1 border vts-border-dashed",n.textColor,n.border,n.rounded?e.unref(En)[n.rounded]:""])},[e.createElementVNode("div",l4,e.toDisplayString(T(be)),1),e.createVNode(se,{onClick:e.withModifiers(I=>P(be),["stop"]),name:"x-mark",type:"outline",size:"10",color:"text-current"},null,8,["onClick"])],2)]))),128)):(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["vts-px-2 vts-py-1 text-xs flex items-center vts-ga-1 border vts-border-dashed",n.textColor,n.border,n.rounded?e.unref(En)[n.rounded]:""])},[e.createElementVNode("div",i4,e.toDisplayString(Z.value.length)+" selected",1)],2))])):e.createCommentVNode("",!0)])]),append:e.withCtx(()=>[!n.append&&!s.value?(e.openBlock(),e.createBlock(se,{key:0,name:"chevron-down",type:"outline",size:"16",class:e.normalizeClass(["transition-transform duration-200",x.value?"rotate-180":"","text-input-border"])},null,8,["class"])):s.value?(e.openBlock(),e.createElementBlock("svg",c4,[...ee[2]||(ee[2]=[e.createElementVNode("circle",{class:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor","stroke-width":"4"},null,-1),e.createElementVNode("path",{class:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"},null,-1)])])):(e.openBlock(),e.createBlock(se,{key:2,name:n.append,type:"outline",size:"16",class:"text-input-border"},null,8,["name"]))]),_:1},16,["model-value","dir","lang","label","prepend","append","isOpen","size","disabled","readonly","required","bg","border","text-color","rounded","width","hint","persistent-hint","rules"]),e.createVNode(e.Transition,{name:"fade"},{default:e.withCtx(()=>[x.value?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["absolute left-0 right-0 mt-1 shadow-lg z-50",n.bg??"bg-white",n.border?"border "+n.border:"border border-input-border",n.rounded?e.unref(En)[n.rounded]:"",n.menuClass]),style:e.normalizeStyle(n.menuStyle)},[e.createElementVNode("ul",s4,[s.value?(e.openBlock(),e.createElementBlock("li",d4,[e.renderSlot(j.$slots,"loading",{},()=>[ee[3]||(ee[3]=e.createTextVNode("Loading...",-1))],!0)])):d.value?(e.openBlock(),e.createElementBlock("li",u4,[e.renderSlot(j.$slots,"error",{error:d.value},()=>[e.createTextVNode(e.toDisplayString(d.value),1)],!0)])):R.value.length===0?(e.openBlock(),e.createElementBlock("li",h4,[e.renderSlot(j.$slots,"no-data",{},()=>[ee[4]||(ee[4]=e.createTextVNode("No items found",-1))],!0)])):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(R.value,(pe,me)=>(e.openBlock(),e.createElementBlock("li",{key:_(pe),onMousedown:be=>{be.preventDefault(),N(pe)},class:e.normalizeClass(["vts-px-4 vts-py-2 cursor-pointer transition flex items-center text-sm",E(_(pe))?n.selectedItemClass||"bg-input-focus-border":n.itemClass||"hover:bg-input-hover",n.itemHoverClass])},[e.renderSlot(j.$slots,"item",{item:pe,index:me,selected:E(_(pe))},()=>[e.createElementVNode("div",f4,[n.multiple?(e.openBlock(),e.createBlock(Ll,{key:0,"model-value":E(_(pe)),value:me,label:K(pe),required:!1,error:!1,onClick:ee[1]||(ee[1]=e.withModifiers(()=>{},["stop"]))},null,8,["model-value","value","label"])):e.createCommentVNode("",!0),e.createElementVNode("span",m4,e.toDisplayString(K(pe)),1),!n.multiple&&E(_(pe))?(e.openBlock(),e.createElementBlock("svg",w4,[...ee[5]||(ee[5]=[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M4.5 12.75l6 6 9-13.5"},null,-1)])])):e.createCommentVNode("",!0)])],!0)],42,p4))),128))])],6)):e.createCommentVNode("",!0)]),_:3})],2)),[[e.unref(Hl),F]])}}},[["__scopeId","data-v-4e413fe7"]]),rc=Object.freeze(Object.defineProperty({__proto__:null,default:Dl},Symbol.toStringTag,{value:"Module"})),g4={key:0,class:"data-table-header mb-6"},k4={class:"flex justify-between items-center"},x4={class:"flex items-center gap-3"},v4={key:0,class:"search-container"},y4={class:"relative"},B4=["placeholder"],E4={class:"absolute top-0 left-0 right-0 z-10 h-1 overflow-hidden"},b4={key:0,class:"bg-gray-200 w-full"},C4={class:"w-full caption-bottom text-sm"},M4={class:"flex items-center justify-center"},V4=["checked",".indeterminate"],A4=["onClick"],_4={class:"flex items-center space-x-2"},N4={class:"whitespace-nowrap"},Z4={key:0,class:"flex h-4 w-4 items-center justify-center"},S4={key:0,class:"h-4 w-4 text-gray-400",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},$4={key:1,class:"h-4 w-4 text-blue-600",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},I4={key:2,class:"h-4 w-4 text-blue-600",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},H4={key:0},T4=["colspan"],L4={class:"flex flex-col items-center"},D4={class:"text-sm text-gray-500"},P4=["onClick"],O4={key:0,class:"px-6 py-4"},R4={class:"flex items-center justify-center"},z4=["checked","onChange"],j4=["value","onInput"],F4={key:1,class:"px-6 py-4"},U4={class:"flex items-center justify-end space-x-2"},W4={key:1,class:"mt-4"},q4={class:"text-sm text-gray-600 mb-6"},Y4={class:"flex justify-end gap-2"},oc=De({__name:"DataTable",props:{items:{type:Array,default:()=>[]},headers:{type:Array,required:!0},serverSideOptions:{type:Object,default:()=>({page:1,itemsPerPage:10,sortBy:[],sortDesc:[],itemsLength:0})},title:{type:String,default:""},loading:{type:Boolean,default:!1},loadingText:{type:String,default:"Loading..."},noDataText:{type:String,default:"No data available"},showActions:{type:Boolean,default:!0},searchable:{type:Boolean,default:!1},searchPlaceholder:{type:String,default:"Search..."},showView:{type:Boolean,default:!0},showEdit:{type:Boolean,default:!0},showDelete:{type:Boolean,default:!0},inlineEdit:{type:Boolean,default:!1},updateUrl:{type:String,default:""},tableClass:{type:String,default:""},headerClass:{type:String,default:""},bg:{type:String,default:"bg-background"},border:{type:String,default:"border-0"},rounded:{type:String,default:"rounded-sm"},shadow:{type:String,default:"shadow-none"},headerBg:{type:String,default:"bg-surface-elevated"},headerBorder:{type:String,default:"border-b border-input-border"},headerText:{type:String,default:"text-textcolor"},rowBorder:{type:String,default:"divide-y divide-input-border"},rowHover:{type:String,default:"hover:bg-input-hover-border"},rowSelected:{type:String,default:"bg-surface-elevated"},cellText:{type:String,default:"text-textcolor"},inputBorder:{type:String,default:"border-input-border focus:border-input-focus-border focus:ring-input-focus-ring"},buttonPrimary:{type:String,default:"bg-primary hover:bg-secondary text-white"},buttonSecondary:{type:String,default:"bg-surface hover:bg-input-hover-border text-textcolor border border-input-border"},paginationBg:{type:String,default:"bg-background"},paginationBorder:{type:String,default:"border-t border-input-border"},selectable:{type:Boolean,default:!1},hidePagination:{type:Boolean,default:!1},itemsPerPageOptions:{type:Array,default:()=>[5,10,25,50,100]},itemKey:{type:String,default:"id"}},emits:["update:options","update:cell","inline-update","row-click","selection-change","search","view","edit","delete"],setup(n,{emit:t}){const r=n,o=t,a=e.ref(""),l=e.ref([]),i=e.ref(null),c=e.ref(!1),s=e.ref(!1),d=e.ref(!1),u=e.ref({item:null,key:"",newValue:null,oldValue:null,header:"",index:null}),h=e.ref({page:1,itemsPerPage:10,sortBy:[],sortDesc:[],itemsLength:0,search:"",...r.serverSideOptions}),f=({page:E,itemsPerPage:N})=>{h.value.page=E,h.value.itemsPerPage=N,D()},p=e.computed(()=>{let E=r.headers.length;return r.selectable&&E++,r.$slots?.["item-actions"]&&E++,E}),m=e.computed(()=>r.items.length>0&&l.value.length===r.items.length),w=e.computed(()=>l.value.length>0&&!m.value),g=(E,N)=>E[r.itemKey]??N,k=(E,N)=>N?N.split(".").reduce((F,P)=>F?.[P],E):"",x=(E,N)=>N.format&&typeof N.format=="function"?N.format(E):E??"",v=E=>{const N=r.headers.find(ce=>ce.key===E);if(N&&N.sortable===!1){console.log("Column is not sortable:",E);return}const F=[...h.value.sortBy],P=[...h.value.sortDesc],U=F.findIndex(ce=>ce===E);U===-1?(F.push(E),P.push(!1),console.log("Adding new sort - ASC")):P[U]?(F.splice(U,1),P.splice(U,1),console.log("Removing sort")):(P[U]=!0,console.log("Changing to DESC")),h.value.sortBy=F,h.value.sortDesc=P,h.value.page=1,D()},b=E=>h.value.sortBy.includes(E),C=E=>{const N=h.value.sortBy.findIndex(F=>F===E);return N===-1?null:h.value.sortDesc[N]?"desc":"asc"},A=E=>E&&{en:"font-inter",dv:"faruma"}[E]||"",y=()=>{i.value&&clearTimeout(i.value),i.value=setTimeout(()=>{h.value.search=a.value,h.value.page=1,D(),o("search",a.value)},500)},B=(E,N)=>{o("row-click",E,N)},V=(E,N)=>{const F=g(E,N),P=l.value.indexOf(F);P===-1?l.value.push(F):l.value.splice(P,1),o("selection-change",l.value,Z())},S=()=>{m.value?l.value=[]:l.value=r.items.map((E,N)=>g(E,N)),o("selection-change",l.value,Z())},Z=()=>r.items.filter((E,N)=>l.value.includes(g(E,N))),D=()=>{o("update:options",{...h.value})},R=()=>{c.value=!c.value,c.value||(s.value=!1)},K=(E,N,F,P)=>{const U=r.headers.find(he=>he.key===N),ce=k(E,N);ce!==F&&(u.value={item:E,key:N,newValue:F,oldValue:ce,header:U?.title||N,index:P},s.value=!0)},_=async()=>{d.value=!0;try{const{item:E,key:N,newValue:F,index:P}=u.value,U={[r.itemKey]:E[r.itemKey],[N]:F};if(o("inline-update",{item:E,key:N,value:F,index:P,updateData:U}),r.updateUrl){const ce=e.inject("api",null);if(ce){const he=`${r.updateUrl}/${E[r.itemKey]}`;await ce.patch(he,U)}}E[N]=F,s.value=!1,d.value=!1,u.value={item:null,key:"",newValue:null,oldValue:null,header:"",index:null}}catch(E){console.error("Update failed:",E),d.value=!1}},T=()=>{s.value=!1,u.value={item:null,key:"",newValue:null,oldValue:null,header:"",index:null}};return e.watch(()=>r.serverSideOptions,E=>{h.value={...h.value,...E}},{deep:!0}),e.watch(()=>r.items,()=>{l.value=[]},{deep:!0}),e.onMounted(()=>{r.serverSideOptions&&(h.value={...h.value,...r.serverSideOptions})}),(E,N)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["data-table-container",n.loading?"opacity-50 pointer-events-none relative":""])},[n.title||E.$slots.header?(e.openBlock(),e.createElementBlock("div",g4,[e.createElementVNode("div",k4,[e.createElementVNode("div",null,[n.title?(e.openBlock(),e.createElementBlock("h2",{key:0,class:e.normalizeClass([n.headerClass||"text-2xl font-semibold text-gray-800"])},e.toDisplayString(n.title),3)):e.createCommentVNode("",!0),e.renderSlot(E.$slots,"header",{},void 0,!0)]),e.createElementVNode("div",x4,[n.searchable?(e.openBlock(),e.createElementBlock("div",v4,[e.createElementVNode("div",y4,[e.withDirectives(e.createElementVNode("input",{"onUpdate:modelValue":N[0]||(N[0]=F=>a.value=F),type:"text",placeholder:n.searchPlaceholder,class:e.normalizeClass(["pl-10 pr-4 py-2 rounded-lg w-64 text-sm transition-colors focus:outline-none focus:ring-2 focus:ring-offset-0",n.inputBorder]),onInput:y},null,42,B4),[[e.vModelText,a.value]]),N[6]||(N[6]=e.createElementVNode("div",{class:"absolute left-3 top-1/2 transform -translate-y-1/2"},[e.createElementVNode("svg",{class:"w-4 h-4 text-gray-400",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"})])],-1))])])):e.createCommentVNode("",!0),e.renderSlot(E.$slots,"header-actions",{},void 0,!0)])])])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["w-full",n.tableClass])},[e.createElementVNode("div",{class:e.normalizeClass([n.rounded,n.border,n.shadow,n.bg,"overflow-hidden","relative"])},[e.createElementVNode("div",E4,[n.loading?(e.openBlock(),e.createElementBlock("div",b4,[...N[7]||(N[7]=[e.createElementVNode("div",{class:"h-full bg-primary animate-loading-bar"},null,-1)])])):e.createCommentVNode("",!0)]),e.createElementVNode("table",C4,[e.createElementVNode("thead",{class:e.normalizeClass([n.headerBg])},[e.createElementVNode("tr",{class:e.normalizeClass([n.headerBorder,"transition-colors"])},[n.selectable?(e.openBlock(),e.createElementBlock("th",{key:0,class:e.normalizeClass(["h-10 px-3 text-left align-middle font-medium",n.headerText,"w-12"])},[e.createElementVNode("div",M4,[e.createElementVNode("input",{type:"checkbox",checked:m.value,".indeterminate":w.value,class:"h-4 w-4 rounded border border-gray-200 text-primary focus:ring-2 focus:ring-primary-500 focus:ring-offset-0",onChange:S},null,40,V4)])],2)):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.headers,F=>(e.openBlock(),e.createElementBlock("th",{key:F.value,class:e.normalizeClass(["h-10 px-3 text-left align-middle font-medium cursor-pointer select-none transition-colors",n.headerText,A(F.lang),"hover:bg-input-hover-border",{"bg-surface":b(F.value)}]),onClick:P=>F.sortable!==!1?v(F.value):null},[e.createElementVNode("div",_4,[e.createElementVNode("span",N4,e.toDisplayString(F.title),1),F.sortable!==!1?(e.openBlock(),e.createElementBlock("div",Z4,[b(F.value)?C(F.value)==="asc"?(e.openBlock(),e.createElementBlock("svg",$4,[...N[9]||(N[9]=[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M5 15l7-7 7 7"},null,-1)])])):(e.openBlock(),e.createElementBlock("svg",I4,[...N[10]||(N[10]=[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M19 9l-7 7-7-7"},null,-1)])])):(e.openBlock(),e.createElementBlock("svg",S4,[...N[8]||(N[8]=[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M7 16V4m0 0L3 8m4-4l4 4m6 0v12m0 0l4-4m-4 4l-4-4"},null,-1)])]))])):e.createCommentVNode("",!0)])],10,A4))),128)),E.$slots["item-actions"]||n.showActions?(e.openBlock(),e.createElementBlock("th",{key:1,class:e.normalizeClass(["h-10 px-3 text-end align-middle font-medium",n.headerText])},[n.inlineEdit?(e.openBlock(),e.createBlock(tt,{key:0,label:c.value?"Cancel Edit":"Inline Edit",color:c.value?"danger":"primary",size:"xs",onClick:R},null,8,["label","color"])):e.createCommentVNode("",!0)],2)):e.createCommentVNode("",!0)],2)],2),e.createElementVNode("tbody",{class:e.normalizeClass([n.rowBorder,n.loading?"opacity-50 pointer-events-none":""])},[!n.items||n.items.length===0?(e.openBlock(),e.createElementBlock("tr",H4,[e.createElementVNode("td",{colspan:p.value,class:"px-6 py-12 text-center"},[e.createElementVNode("div",L4,[N[11]||(N[11]=e.createElementVNode("svg",{class:"w-12 h-12 text-gray-300 mb-2",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"})],-1)),e.createElementVNode("span",D4,e.toDisplayString(n.noDataText),1)])],8,T4)])):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(n.items,(F,P)=>(e.openBlock(),e.createElementBlock("tr",{key:g(F,P),class:e.normalizeClass(["transition-colors cursor-pointer",n.rowHover,l.value.includes(g(F,P))?n.rowSelected:""]),onClick:U=>B(F,P)},[n.selectable?(e.openBlock(),e.createElementBlock("td",O4,[e.createElementVNode("div",R4,[e.createElementVNode("input",{type:"checkbox",checked:l.value.includes(g(F,P)),class:"h-4 w-4 rounded border-2 border-gray-300 text-blue-600 focus:ring-2 focus:ring-blue-500 focus:ring-offset-0",onClick:N[1]||(N[1]=e.withModifiers(()=>{},["stop"])),onChange:U=>V(F,P)},null,40,z4)])])):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.headers,U=>(e.openBlock(),e.createElementBlock("td",{key:U.value,class:e.normalizeClass(["px-6 py-4 whitespace-nowrap",U.displayType=="englishText"?"eng-font":"faruma ",A(U.lang)]),onClick:N[2]||(N[2]=e.withModifiers(()=>{},["stop"]))},[e.renderSlot(E.$slots,`item.${U.value}`,{item:F,value:k(F,U.value),header:U,index:P},()=>[U.displayType=="chip"?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["align-middle leading-none",A(U.lang)])},[e.createVNode(Tl,e.mergeProps({size:"small"},{ref_for:!0},U.displayProps?.[k(F,U.value)]),null,16)],2)):U.displayType=="checkbox"?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["align-middle leading-none",A(U.lang)])},[e.createVNode(Ll,e.mergeProps({"model-value":!!k(F,U.value)},{ref_for:!0},U.displayProps,{disabled:!c.value||!U.inlineEditable,"onUpdate:modelValue":ce=>K(F,U.value,ce,P)}),null,16,["model-value","disabled","onUpdate:modelValue"])],2)):U.displayType=="select"?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(["align-middle leading-none",A(U.lang)])},[c.value&&U.inlineEditable?(e.openBlock(),e.createBlock(Dl,e.mergeProps({key:0,"model-value":k(F,U.value)},{ref_for:!0},U.displayProps,{"onUpdate:modelValue":ce=>K(F,U.value,ce,P)}),null,16,["model-value","onUpdate:modelValue"])):(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["text-sm",n.cellText])},e.toDisplayString(x(k(F,U.value),U)),3))],2)):U.displayType=="input"?(e.openBlock(),e.createElementBlock("div",{key:3,class:e.normalizeClass(["align-middle leading-none",A(U.lang)])},[c.value&&U.inlineEditable?(e.openBlock(),e.createElementBlock("input",{key:0,value:k(F,U.value),type:"text",class:"w-full px-2 py-1 text-sm border rounded focus:outline-none focus:ring-2 focus:ring-primary",onInput:ce=>K(F,U.value,ce.target.value,P)},null,40,j4)):(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["text-sm",n.cellText])},e.toDisplayString(x(k(F,U.value),U)),3))],2)):(e.openBlock(),e.createElementBlock("div",{key:4,class:e.normalizeClass(["text-sm",n.cellText])},e.toDisplayString(x(k(F,U.value),U)),3))],!0)],2))),128)),E.$slots["item-actions"]||n.showActions?(e.openBlock(),e.createElementBlock("td",F4,[e.renderSlot(E.$slots,"item-actions",{item:F,index:P},()=>[e.createElementVNode("div",U4,[n.showView?(e.openBlock(),e.createBlock(tt,{key:0,onClick:e.withModifiers(U=>o("view",F),["stop"]),size:"md",color:"info",variant:"text",icon:"eye","icon-type":"outline",label:""},null,8,["onClick"])):e.createCommentVNode("",!0),n.showEdit?(e.openBlock(),e.createBlock(tt,{key:1,onClick:e.withModifiers(U=>o("edit",F),["stop"]),size:"md",icon:"pencil-square",color:"warning",variant:"text",label:""},null,8,["onClick"])):e.createCommentVNode("",!0),n.showDelete?(e.openBlock(),e.createBlock(tt,{key:2,onClick:e.withModifiers(U=>o("delete",F),["stop"]),size:"md",color:"danger",variant:"text",icon:"trash",label:""},null,8,["onClick"])):e.createCommentVNode("",!0)])],!0)])):e.createCommentVNode("",!0)],10,P4))),128))],2)])],2),!n.hidePagination&&!n.loading?(e.openBlock(),e.createBlock(nc,{key:0,page:h.value.page,"onUpdate:page":N[3]||(N[3]=F=>h.value.page=F),"items-per-page":h.value.itemsPerPage,"onUpdate:itemsPerPage":N[4]||(N[4]=F=>h.value.itemsPerPage=F),"items-length":h.value.itemsLength,"items-per-page-options":n.itemsPerPageOptions,bg:n.paginationBg,border:n.paginationBorder,"text-color":"text-textsecondary","input-border":n.inputBorder,"button-primary":n.buttonPrimary,"button-secondary":n.buttonSecondary,onChange:f},null,8,["page","items-per-page","items-length","items-per-page-options","bg","border","input-border","button-primary","button-secondary"])):e.createCommentVNode("",!0)],2),E.$slots.footer?(e.openBlock(),e.createElementBlock("div",W4,[e.renderSlot(E.$slots,"footer",{},void 0,!0)])):e.createCommentVNode("",!0),e.createVNode(bn,{modelValue:s.value,"onUpdate:modelValue":N[5]||(N[5]=F=>s.value=F),persistent:"",lang:"en",title:"Confirm Update"},{footer:e.withCtx(()=>[e.createElementVNode("div",Y4,[e.createVNode(tt,{label:"Cancel",color:"secondary",variant:"outlined",onClick:T}),e.createVNode(tt,{label:"Confirm",color:"primary",loading:d.value,onClick:_},null,8,["loading"])])]),default:e.withCtx(()=>[e.createElementVNode("p",q4,[N[12]||(N[12]=e.createTextVNode(" Are you sure you want to update ",-1)),e.createElementVNode("strong",null,e.toDisplayString(u.value.header),1),N[13]||(N[13]=e.createTextVNode(" from ",-1)),e.createElementVNode("strong",null,e.toDisplayString(u.value.oldValue),1),N[14]||(N[14]=e.createTextVNode(" to ",-1)),e.createElementVNode("strong",null,e.toDisplayString(u.value.newValue),1),N[15]||(N[15]=e.createTextVNode("? ",-1))])]),_:1},8,["modelValue"])],2))}},[["__scopeId","data-v-dc128843"]]),$0=Math.min,Kn=Math.max,bo=Math.round,Co=Math.floor,Jt=n=>({x:n,y:n}),K4={left:"right",right:"left",bottom:"top",top:"bottom"},G4={start:"end",end:"start"};function Pl(n,t,r){return Kn(n,$0(t,r))}function wr(n,t){return typeof n=="function"?n(t):n}function Gn(n){return n.split("-")[0]}function gr(n){return n.split("-")[1]}function ac(n){return n==="x"?"y":"x"}function Ol(n){return n==="y"?"height":"width"}const J4=new Set(["top","bottom"]);function Cn(n){return J4.has(Gn(n))?"y":"x"}function Rl(n){return ac(Cn(n))}function X4(n,t,r){r===void 0&&(r=!1);const o=gr(n),a=Rl(n),l=Ol(a);let i=a==="x"?o===(r?"end":"start")?"right":"left":o==="start"?"bottom":"top";return t.reference[l]>t.floating[l]&&(i=Mo(i)),[i,Mo(i)]}function Q4(n){const t=Mo(n);return[zl(n),t,zl(t)]}function zl(n){return n.replace(/start|end/g,t=>G4[t])}const lc=["left","right"],ic=["right","left"],ep=["top","bottom"],tp=["bottom","top"];function np(n,t,r){switch(n){case"top":case"bottom":return r?t?ic:lc:t?lc:ic;case"left":case"right":return t?ep:tp;default:return[]}}function rp(n,t,r,o){const a=gr(n);let l=np(Gn(n),r==="start",o);return a&&(l=l.map(i=>i+"-"+a),t&&(l=l.concat(l.map(zl)))),l}function Mo(n){return n.replace(/left|right|bottom|top/g,t=>K4[t])}function op(n){return{top:0,right:0,bottom:0,left:0,...n}}function cc(n){return typeof n!="number"?op(n):{top:n,right:n,bottom:n,left:n}}function Vo(n){const{x:t,y:r,width:o,height:a}=n;return{width:o,height:a,top:r,left:t,right:t+o,bottom:r+a,x:t,y:r}}function sc(n,t,r){let{reference:o,floating:a}=n;const l=Cn(t),i=Rl(t),c=Ol(i),s=Gn(t),d=l==="y",u=o.x+o.width/2-a.width/2,h=o.y+o.height/2-a.height/2,f=o[c]/2-a[c]/2;let p;switch(s){case"top":p={x:u,y:o.y-a.height};break;case"bottom":p={x:u,y:o.y+o.height};break;case"right":p={x:o.x+o.width,y:h};break;case"left":p={x:o.x-a.width,y:h};break;default:p={x:o.x,y:o.y}}switch(gr(t)){case"start":p[i]-=f*(r&&d?-1:1);break;case"end":p[i]+=f*(r&&d?-1:1);break}return p}const ap=async(n,t,r)=>{const{placement:o="bottom",strategy:a="absolute",middleware:l=[],platform:i}=r,c=l.filter(Boolean),s=await(i.isRTL==null?void 0:i.isRTL(t));let d=await i.getElementRects({reference:n,floating:t,strategy:a}),{x:u,y:h}=sc(d,o,s),f=o,p={},m=0;for(let w=0;w<c.length;w++){const{name:g,fn:k}=c[w],{x,y:v,data:b,reset:C}=await k({x:u,y:h,initialPlacement:o,placement:f,strategy:a,middlewareData:p,rects:d,platform:i,elements:{reference:n,floating:t}});u=x??u,h=v??h,p={...p,[g]:{...p[g],...b}},C&&m<=50&&(m++,typeof C=="object"&&(C.placement&&(f=C.placement),C.rects&&(d=C.rects===!0?await i.getElementRects({reference:n,floating:t,strategy:a}):C.rects),{x:u,y:h}=sc(d,f,s)),w=-1)}return{x:u,y:h,placement:f,strategy:a,middlewareData:p}};async function dc(n,t){var r;t===void 0&&(t={});const{x:o,y:a,platform:l,rects:i,elements:c,strategy:s}=n,{boundary:d="clippingAncestors",rootBoundary:u="viewport",elementContext:h="floating",altBoundary:f=!1,padding:p=0}=wr(t,n),m=cc(p),g=c[f?h==="floating"?"reference":"floating":h],k=Vo(await l.getClippingRect({element:(r=await(l.isElement==null?void 0:l.isElement(g)))==null||r?g:g.contextElement||await(l.getDocumentElement==null?void 0:l.getDocumentElement(c.floating)),boundary:d,rootBoundary:u,strategy:s})),x=h==="floating"?{x:o,y:a,width:i.floating.width,height:i.floating.height}:i.reference,v=await(l.getOffsetParent==null?void 0:l.getOffsetParent(c.floating)),b=await(l.isElement==null?void 0:l.isElement(v))?await(l.getScale==null?void 0:l.getScale(v))||{x:1,y:1}:{x:1,y:1},C=Vo(l.convertOffsetParentRelativeRectToViewportRelativeRect?await l.convertOffsetParentRelativeRectToViewportRelativeRect({elements:c,rect:x,offsetParent:v,strategy:s}):x);return{top:(k.top-C.top+m.top)/b.y,bottom:(C.bottom-k.bottom+m.bottom)/b.y,left:(k.left-C.left+m.left)/b.x,right:(C.right-k.right+m.right)/b.x}}const lp=n=>({name:"arrow",options:n,async fn(t){const{x:r,y:o,placement:a,rects:l,platform:i,elements:c,middlewareData:s}=t,{element:d,padding:u=0}=wr(n,t)||{};if(d==null)return{};const h=cc(u),f={x:r,y:o},p=Rl(a),m=Ol(p),w=await i.getDimensions(d),g=p==="y",k=g?"top":"left",x=g?"bottom":"right",v=g?"clientHeight":"clientWidth",b=l.reference[m]+l.reference[p]-f[p]-l.floating[m],C=f[p]-l.reference[p],A=await(i.getOffsetParent==null?void 0:i.getOffsetParent(d));let y=A?A[v]:0;(!y||!await(i.isElement==null?void 0:i.isElement(A)))&&(y=c.floating[v]||l.floating[m]);const B=b/2-C/2,V=y/2-w[m]/2-1,S=$0(h[k],V),Z=$0(h[x],V),D=S,R=y-w[m]-Z,K=y/2-w[m]/2+B,_=Pl(D,K,R),T=!s.arrow&&gr(a)!=null&&K!==_&&l.reference[m]/2-(K<D?S:Z)-w[m]/2<0,E=T?K<D?K-D:K-R:0;return{[p]:f[p]+E,data:{[p]:_,centerOffset:K-_-E,...T&&{alignmentOffset:E}},reset:T}}}),ip=function(n){return n===void 0&&(n={}),{name:"flip",options:n,async fn(t){var r,o;const{placement:a,middlewareData:l,rects:i,initialPlacement:c,platform:s,elements:d}=t,{mainAxis:u=!0,crossAxis:h=!0,fallbackPlacements:f,fallbackStrategy:p="bestFit",fallbackAxisSideDirection:m="none",flipAlignment:w=!0,...g}=wr(n,t);if((r=l.arrow)!=null&&r.alignmentOffset)return{};const k=Gn(a),x=Cn(c),v=Gn(c)===c,b=await(s.isRTL==null?void 0:s.isRTL(d.floating)),C=f||(v||!w?[Mo(c)]:Q4(c)),A=m!=="none";!f&&A&&C.push(...rp(c,w,m,b));const y=[c,...C],B=await dc(t,g),V=[];let S=((o=l.flip)==null?void 0:o.overflows)||[];if(u&&V.push(B[k]),h){const K=X4(a,i,b);V.push(B[K[0]],B[K[1]])}if(S=[...S,{placement:a,overflows:V}],!V.every(K=>K<=0)){var Z,D;const K=(((Z=l.flip)==null?void 0:Z.index)||0)+1,_=y[K];if(_&&(!(h==="alignment"?x!==Cn(_):!1)||S.every(N=>Cn(N.placement)===x?N.overflows[0]>0:!0)))return{data:{index:K,overflows:S},reset:{placement:_}};let T=(D=S.filter(E=>E.overflows[0]<=0).sort((E,N)=>E.overflows[1]-N.overflows[1])[0])==null?void 0:D.placement;if(!T)switch(p){case"bestFit":{var R;const E=(R=S.filter(N=>{if(A){const F=Cn(N.placement);return F===x||F==="y"}return!0}).map(N=>[N.placement,N.overflows.filter(F=>F>0).reduce((F,P)=>F+P,0)]).sort((N,F)=>N[1]-F[1])[0])==null?void 0:R[0];E&&(T=E);break}case"initialPlacement":T=c;break}if(a!==T)return{reset:{placement:T}}}return{}}}},cp=new Set(["left","top"]);async function sp(n,t){const{placement:r,platform:o,elements:a}=n,l=await(o.isRTL==null?void 0:o.isRTL(a.floating)),i=Gn(r),c=gr(r),s=Cn(r)==="y",d=cp.has(i)?-1:1,u=l&&s?-1:1,h=wr(t,n);let{mainAxis:f,crossAxis:p,alignmentAxis:m}=typeof h=="number"?{mainAxis:h,crossAxis:0,alignmentAxis:null}:{mainAxis:h.mainAxis||0,crossAxis:h.crossAxis||0,alignmentAxis:h.alignmentAxis};return c&&typeof m=="number"&&(p=c==="end"?m*-1:m),s?{x:p*u,y:f*d}:{x:f*d,y:p*u}}const dp=function(n){return n===void 0&&(n=0),{name:"offset",options:n,async fn(t){var r,o;const{x:a,y:l,placement:i,middlewareData:c}=t,s=await sp(t,n);return i===((r=c.offset)==null?void 0:r.placement)&&(o=c.arrow)!=null&&o.alignmentOffset?{}:{x:a+s.x,y:l+s.y,data:{...s,placement:i}}}}},up=function(n){return n===void 0&&(n={}),{name:"shift",options:n,async fn(t){const{x:r,y:o,placement:a}=t,{mainAxis:l=!0,crossAxis:i=!1,limiter:c={fn:g=>{let{x:k,y:x}=g;return{x:k,y:x}}},...s}=wr(n,t),d={x:r,y:o},u=await dc(t,s),h=Cn(Gn(a)),f=ac(h);let p=d[f],m=d[h];if(l){const g=f==="y"?"top":"left",k=f==="y"?"bottom":"right",x=p+u[g],v=p-u[k];p=Pl(x,p,v)}if(i){const g=h==="y"?"top":"left",k=h==="y"?"bottom":"right",x=m+u[g],v=m-u[k];m=Pl(x,m,v)}const w=c.fn({...t,[f]:p,[h]:m});return{...w,data:{x:w.x-r,y:w.y-o,enabled:{[f]:l,[h]:i}}}}}};function Ao(){return typeof window<"u"}function Jn(n){return jl(n)?(n.nodeName||"").toLowerCase():"#document"}function bt(n){var t;return(n==null||(t=n.ownerDocument)==null?void 0:t.defaultView)||window}function Xt(n){var t;return(t=(jl(n)?n.ownerDocument:n.document)||window.document)==null?void 0:t.documentElement}function jl(n){return Ao()?n instanceof Node||n instanceof bt(n).Node:!1}function Dt(n){return Ao()?n instanceof Element||n instanceof bt(n).Element:!1}function Qt(n){return Ao()?n instanceof HTMLElement||n instanceof bt(n).HTMLElement:!1}function uc(n){return!Ao()||typeof ShadowRoot>"u"?!1:n instanceof ShadowRoot||n instanceof bt(n).ShadowRoot}const hp=new Set(["inline","contents"]);function kr(n){const{overflow:t,overflowX:r,overflowY:o,display:a}=Pt(n);return/auto|scroll|overlay|hidden|clip/.test(t+o+r)&&!hp.has(a)}const pp=new Set(["table","td","th"]);function fp(n){return pp.has(Jn(n))}const mp=[":popover-open",":modal"];function _o(n){return mp.some(t=>{try{return n.matches(t)}catch{return!1}})}const wp=["transform","translate","scale","rotate","perspective"],gp=["transform","translate","scale","rotate","perspective","filter"],kp=["paint","layout","strict","content"];function Fl(n){const t=Ul(),r=Dt(n)?Pt(n):n;return wp.some(o=>r[o]?r[o]!=="none":!1)||(r.containerType?r.containerType!=="normal":!1)||!t&&(r.backdropFilter?r.backdropFilter!=="none":!1)||!t&&(r.filter?r.filter!=="none":!1)||gp.some(o=>(r.willChange||"").includes(o))||kp.some(o=>(r.contain||"").includes(o))}function xp(n){let t=Mn(n);for(;Qt(t)&&!I0(t);){if(Fl(t))return t;if(_o(t))return null;t=Mn(t)}return null}function Ul(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}const vp=new Set(["html","body","#document"]);function I0(n){return vp.has(Jn(n))}function Pt(n){return bt(n).getComputedStyle(n)}function No(n){return Dt(n)?{scrollLeft:n.scrollLeft,scrollTop:n.scrollTop}:{scrollLeft:n.scrollX,scrollTop:n.scrollY}}function Mn(n){if(Jn(n)==="html")return n;const t=n.assignedSlot||n.parentNode||uc(n)&&n.host||Xt(n);return uc(t)?t.host:t}function hc(n){const t=Mn(n);return I0(t)?n.ownerDocument?n.ownerDocument.body:n.body:Qt(t)&&kr(t)?t:hc(t)}function xr(n,t,r){var o;t===void 0&&(t=[]),r===void 0&&(r=!0);const a=hc(n),l=a===((o=n.ownerDocument)==null?void 0:o.body),i=bt(a);if(l){const c=Wl(i);return t.concat(i,i.visualViewport||[],kr(a)?a:[],c&&r?xr(c):[])}return t.concat(a,xr(a,[],r))}function Wl(n){return n.parent&&Object.getPrototypeOf(n.parent)?n.frameElement:null}function pc(n){const t=Pt(n);let r=parseFloat(t.width)||0,o=parseFloat(t.height)||0;const a=Qt(n),l=a?n.offsetWidth:r,i=a?n.offsetHeight:o,c=bo(r)!==l||bo(o)!==i;return c&&(r=l,o=i),{width:r,height:o,$:c}}function ql(n){return Dt(n)?n:n.contextElement}function H0(n){const t=ql(n);if(!Qt(t))return Jt(1);const r=t.getBoundingClientRect(),{width:o,height:a,$:l}=pc(t);let i=(l?bo(r.width):r.width)/o,c=(l?bo(r.height):r.height)/a;return(!i||!Number.isFinite(i))&&(i=1),(!c||!Number.isFinite(c))&&(c=1),{x:i,y:c}}const yp=Jt(0);function fc(n){const t=bt(n);return!Ul()||!t.visualViewport?yp:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function Bp(n,t,r){return t===void 0&&(t=!1),!r||t&&r!==bt(n)?!1:t}function Xn(n,t,r,o){t===void 0&&(t=!1),r===void 0&&(r=!1);const a=n.getBoundingClientRect(),l=ql(n);let i=Jt(1);t&&(o?Dt(o)&&(i=H0(o)):i=H0(n));const c=Bp(l,r,o)?fc(l):Jt(0);let s=(a.left+c.x)/i.x,d=(a.top+c.y)/i.y,u=a.width/i.x,h=a.height/i.y;if(l){const f=bt(l),p=o&&Dt(o)?bt(o):o;let m=f,w=Wl(m);for(;w&&o&&p!==m;){const g=H0(w),k=w.getBoundingClientRect(),x=Pt(w),v=k.left+(w.clientLeft+parseFloat(x.paddingLeft))*g.x,b=k.top+(w.clientTop+parseFloat(x.paddingTop))*g.y;s*=g.x,d*=g.y,u*=g.x,h*=g.y,s+=v,d+=b,m=bt(w),w=Wl(m)}}return Vo({width:u,height:h,x:s,y:d})}function Zo(n,t){const r=No(n).scrollLeft;return t?t.left+r:Xn(Xt(n)).left+r}function mc(n,t){const r=n.getBoundingClientRect(),o=r.left+t.scrollLeft-Zo(n,r),a=r.top+t.scrollTop;return{x:o,y:a}}function Ep(n){let{elements:t,rect:r,offsetParent:o,strategy:a}=n;const l=a==="fixed",i=Xt(o),c=t?_o(t.floating):!1;if(o===i||c&&l)return r;let s={scrollLeft:0,scrollTop:0},d=Jt(1);const u=Jt(0),h=Qt(o);if((h||!h&&!l)&&((Jn(o)!=="body"||kr(i))&&(s=No(o)),Qt(o))){const p=Xn(o);d=H0(o),u.x=p.x+o.clientLeft,u.y=p.y+o.clientTop}const f=i&&!h&&!l?mc(i,s):Jt(0);return{width:r.width*d.x,height:r.height*d.y,x:r.x*d.x-s.scrollLeft*d.x+u.x+f.x,y:r.y*d.y-s.scrollTop*d.y+u.y+f.y}}function bp(n){return Array.from(n.getClientRects())}function Cp(n){const t=Xt(n),r=No(n),o=n.ownerDocument.body,a=Kn(t.scrollWidth,t.clientWidth,o.scrollWidth,o.clientWidth),l=Kn(t.scrollHeight,t.clientHeight,o.scrollHeight,o.clientHeight);let i=-r.scrollLeft+Zo(n);const c=-r.scrollTop;return Pt(o).direction==="rtl"&&(i+=Kn(t.clientWidth,o.clientWidth)-a),{width:a,height:l,x:i,y:c}}const wc=25;function Mp(n,t){const r=bt(n),o=Xt(n),a=r.visualViewport;let l=o.clientWidth,i=o.clientHeight,c=0,s=0;if(a){l=a.width,i=a.height;const u=Ul();(!u||u&&t==="fixed")&&(c=a.offsetLeft,s=a.offsetTop)}const d=Zo(o);if(d<=0){const u=o.ownerDocument,h=u.body,f=getComputedStyle(h),p=u.compatMode==="CSS1Compat"&&parseFloat(f.marginLeft)+parseFloat(f.marginRight)||0,m=Math.abs(o.clientWidth-h.clientWidth-p);m<=wc&&(l-=m)}else d<=wc&&(l+=d);return{width:l,height:i,x:c,y:s}}const Vp=new Set(["absolute","fixed"]);function Ap(n,t){const r=Xn(n,!0,t==="fixed"),o=r.top+n.clientTop,a=r.left+n.clientLeft,l=Qt(n)?H0(n):Jt(1),i=n.clientWidth*l.x,c=n.clientHeight*l.y,s=a*l.x,d=o*l.y;return{width:i,height:c,x:s,y:d}}function gc(n,t,r){let o;if(t==="viewport")o=Mp(n,r);else if(t==="document")o=Cp(Xt(n));else if(Dt(t))o=Ap(t,r);else{const a=fc(n);o={x:t.x-a.x,y:t.y-a.y,width:t.width,height:t.height}}return Vo(o)}function kc(n,t){const r=Mn(n);return r===t||!Dt(r)||I0(r)?!1:Pt(r).position==="fixed"||kc(r,t)}function _p(n,t){const r=t.get(n);if(r)return r;let o=xr(n,[],!1).filter(c=>Dt(c)&&Jn(c)!=="body"),a=null;const l=Pt(n).position==="fixed";let i=l?Mn(n):n;for(;Dt(i)&&!I0(i);){const c=Pt(i),s=Fl(i);!s&&c.position==="fixed"&&(a=null),(l?!s&&!a:!s&&c.position==="static"&&!!a&&Vp.has(a.position)||kr(i)&&!s&&kc(n,i))?o=o.filter(u=>u!==i):a=c,i=Mn(i)}return t.set(n,o),o}function Np(n){let{element:t,boundary:r,rootBoundary:o,strategy:a}=n;const i=[...r==="clippingAncestors"?_o(t)?[]:_p(t,this._c):[].concat(r),o],c=i[0],s=i.reduce((d,u)=>{const h=gc(t,u,a);return d.top=Kn(h.top,d.top),d.right=$0(h.right,d.right),d.bottom=$0(h.bottom,d.bottom),d.left=Kn(h.left,d.left),d},gc(t,c,a));return{width:s.right-s.left,height:s.bottom-s.top,x:s.left,y:s.top}}function Zp(n){const{width:t,height:r}=pc(n);return{width:t,height:r}}function Sp(n,t,r){const o=Qt(t),a=Xt(t),l=r==="fixed",i=Xn(n,!0,l,t);let c={scrollLeft:0,scrollTop:0};const s=Jt(0);function d(){s.x=Zo(a)}if(o||!o&&!l)if((Jn(t)!=="body"||kr(a))&&(c=No(t)),o){const p=Xn(t,!0,l,t);s.x=p.x+t.clientLeft,s.y=p.y+t.clientTop}else a&&d();l&&!o&&a&&d();const u=a&&!o&&!l?mc(a,c):Jt(0),h=i.left+c.scrollLeft-s.x-u.x,f=i.top+c.scrollTop-s.y-u.y;return{x:h,y:f,width:i.width,height:i.height}}function Yl(n){return Pt(n).position==="static"}function xc(n,t){if(!Qt(n)||Pt(n).position==="fixed")return null;if(t)return t(n);let r=n.offsetParent;return Xt(n)===r&&(r=r.ownerDocument.body),r}function vc(n,t){const r=bt(n);if(_o(n))return r;if(!Qt(n)){let a=Mn(n);for(;a&&!I0(a);){if(Dt(a)&&!Yl(a))return a;a=Mn(a)}return r}let o=xc(n,t);for(;o&&fp(o)&&Yl(o);)o=xc(o,t);return o&&I0(o)&&Yl(o)&&!Fl(o)?r:o||xp(n)||r}const $p=async function(n){const t=this.getOffsetParent||vc,r=this.getDimensions,o=await r(n.floating);return{reference:Sp(n.reference,await t(n.floating),n.strategy),floating:{x:0,y:0,width:o.width,height:o.height}}};function Ip(n){return Pt(n).direction==="rtl"}const Hp={convertOffsetParentRelativeRectToViewportRelativeRect:Ep,getDocumentElement:Xt,getClippingRect:Np,getOffsetParent:vc,getElementRects:$p,getClientRects:bp,getDimensions:Zp,getScale:H0,isElement:Dt,isRTL:Ip};function yc(n,t){return n.x===t.x&&n.y===t.y&&n.width===t.width&&n.height===t.height}function Tp(n,t){let r=null,o;const a=Xt(n);function l(){var c;clearTimeout(o),(c=r)==null||c.disconnect(),r=null}function i(c,s){c===void 0&&(c=!1),s===void 0&&(s=1),l();const d=n.getBoundingClientRect(),{left:u,top:h,width:f,height:p}=d;if(c||t(),!f||!p)return;const m=Co(h),w=Co(a.clientWidth-(u+f)),g=Co(a.clientHeight-(h+p)),k=Co(u),v={rootMargin:-m+"px "+-w+"px "+-g+"px "+-k+"px",threshold:Kn(0,$0(1,s))||1};let b=!0;function C(A){const y=A[0].intersectionRatio;if(y!==s){if(!b)return i();y?i(!1,y):o=setTimeout(()=>{i(!1,1e-7)},1e3)}y===1&&!yc(d,n.getBoundingClientRect())&&i(),b=!1}try{r=new IntersectionObserver(C,{...v,root:a.ownerDocument})}catch{r=new IntersectionObserver(C,v)}r.observe(n)}return i(!0),l}function Lp(n,t,r,o){o===void 0&&(o={});const{ancestorScroll:a=!0,ancestorResize:l=!0,elementResize:i=typeof ResizeObserver=="function",layoutShift:c=typeof IntersectionObserver=="function",animationFrame:s=!1}=o,d=ql(n),u=a||l?[...d?xr(d):[],...xr(t)]:[];u.forEach(k=>{a&&k.addEventListener("scroll",r,{passive:!0}),l&&k.addEventListener("resize",r)});const h=d&&c?Tp(d,r):null;let f=-1,p=null;i&&(p=new ResizeObserver(k=>{let[x]=k;x&&x.target===d&&p&&(p.unobserve(t),cancelAnimationFrame(f),f=requestAnimationFrame(()=>{var v;(v=p)==null||v.observe(t)})),r()}),d&&!s&&p.observe(d),p.observe(t));let m,w=s?Xn(n):null;s&&g();function g(){const k=Xn(n);w&&!yc(w,k)&&r(),w=k,m=requestAnimationFrame(g)}return r(),()=>{var k;u.forEach(x=>{a&&x.removeEventListener("scroll",r),l&&x.removeEventListener("resize",r)}),h?.(),(k=p)==null||k.disconnect(),p=null,s&&cancelAnimationFrame(m)}}const Dp=dp,Pp=up,Op=ip,Rp=lp,zp=(n,t,r)=>{const o=new Map,a={platform:Hp,...r},l={...a.platform,_c:o};return ap(n,t,{...a,platform:l})};function jp(n){return n!=null&&typeof n=="object"&&"$el"in n}function Kl(n){if(jp(n)){const t=n.$el;return jl(t)&&Jn(t)==="#comment"?null:t}return n}function T0(n){return typeof n=="function"?n():e.unref(n)}function Fp(n){return{name:"arrow",options:n,fn(t){const r=Kl(T0(n.element));return r==null?{}:Rp({element:r,padding:n.padding}).fn(t)}}}function Bc(n){return typeof window>"u"?1:(n.ownerDocument.defaultView||window).devicePixelRatio||1}function Ec(n,t){const r=Bc(n);return Math.round(t*r)/r}function Up(n,t,r){r===void 0&&(r={});const o=r.whileElementsMounted,a=e.computed(()=>{var y;return(y=T0(r.open))!=null?y:!0}),l=e.computed(()=>T0(r.middleware)),i=e.computed(()=>{var y;return(y=T0(r.placement))!=null?y:"bottom"}),c=e.computed(()=>{var y;return(y=T0(r.strategy))!=null?y:"absolute"}),s=e.computed(()=>{var y;return(y=T0(r.transform))!=null?y:!0}),d=e.computed(()=>Kl(n.value)),u=e.computed(()=>Kl(t.value)),h=e.ref(0),f=e.ref(0),p=e.ref(c.value),m=e.ref(i.value),w=e.shallowRef({}),g=e.ref(!1),k=e.computed(()=>{const y={position:p.value,left:"0",top:"0"};if(!u.value)return y;const B=Ec(u.value,h.value),V=Ec(u.value,f.value);return s.value?{...y,transform:"translate("+B+"px, "+V+"px)",...Bc(u.value)>=1.5&&{willChange:"transform"}}:{position:p.value,left:B+"px",top:V+"px"}});let x;function v(){if(d.value==null||u.value==null)return;const y=a.value;zp(d.value,u.value,{middleware:l.value,placement:i.value,strategy:c.value}).then(B=>{h.value=B.x,f.value=B.y,p.value=B.strategy,m.value=B.placement,w.value=B.middlewareData,g.value=y!==!1})}function b(){typeof x=="function"&&(x(),x=void 0)}function C(){if(b(),o===void 0){v();return}if(d.value!=null&&u.value!=null){x=o(d.value,u.value,v);return}}function A(){a.value||(g.value=!1)}return e.watch([l,i,c,a],v,{flush:"sync"}),e.watch([d,u],C,{flush:"sync"}),e.watch(a,A,{flush:"sync"}),e.getCurrentScope()&&e.onScopeDispose(b),{x:e.shallowReadonly(h),y:e.shallowReadonly(f),strategy:e.shallowReadonly(p),placement:e.shallowReadonly(m),middlewareData:e.shallowReadonly(w),isPositioned:e.shallowReadonly(g),floatingStyles:k,update:v}}const bc=6048e5,Wp=864e5,qp=6e4,Yp=36e5,Kp=1e3,Cc=Symbol.for("constructDateFrom");function Se(n,t){return typeof n=="function"?n(t):n&&typeof n=="object"&&Cc in n?n[Cc](t):n instanceof Date?new n.constructor(t):new Date(t)}function ve(n,t){return Se(t||n,n)}function _t(n,t,r){const o=ve(n,r?.in);return isNaN(t)?Se(r?.in||n,NaN):(t&&o.setDate(o.getDate()+t),o)}function Ot(n,t,r){const o=ve(n,r?.in);if(isNaN(t))return Se(n,NaN);if(!t)return o;const a=o.getDate(),l=Se(n,o.getTime());l.setMonth(o.getMonth()+t+1,0);const i=l.getDate();return a>=i?l:(o.setFullYear(l.getFullYear(),l.getMonth(),a),o)}function Mc(n,t,r){const{years:o=0,months:a=0,weeks:l=0,days:i=0,hours:c=0,minutes:s=0,seconds:d=0}=t,u=ve(n,r?.in),h=a||o?Ot(u,a+o*12):u,f=i||l?_t(h,i+l*7):h,p=s+c*60,w=(d+p*60)*1e3;return Se(n,+f+w)}let Gp={};function Qn(){return Gp}function Nt(n,t){const r=Qn(),o=t?.weekStartsOn??t?.locale?.options?.weekStartsOn??r.weekStartsOn??r.locale?.options?.weekStartsOn??0,a=ve(n,t?.in),l=a.getDay(),i=(l<o?7:0)+l-o;return a.setDate(a.getDate()-i),a.setHours(0,0,0,0),a}function L0(n,t){return Nt(n,{...t,weekStartsOn:1})}function Vc(n,t){const r=ve(n,t?.in),o=r.getFullYear(),a=Se(r,0);a.setFullYear(o+1,0,4),a.setHours(0,0,0,0);const l=L0(a),i=Se(r,0);i.setFullYear(o,0,4),i.setHours(0,0,0,0);const c=L0(i);return r.getTime()>=l.getTime()?o+1:r.getTime()>=c.getTime()?o:o-1}function So(n){const t=ve(n),r=new Date(Date.UTC(t.getFullYear(),t.getMonth(),t.getDate(),t.getHours(),t.getMinutes(),t.getSeconds(),t.getMilliseconds()));return r.setUTCFullYear(t.getFullYear()),+n-+r}function vr(n,...t){const r=Se.bind(null,t.find(o=>typeof o=="object"));return t.map(r)}function Ac(n,t){const r=ve(n,t?.in);return r.setHours(0,0,0,0),r}function _c(n,t,r){const[o,a]=vr(r?.in,n,t),l=Ac(o),i=Ac(a),c=+l-So(l),s=+i-So(i);return Math.round((c-s)/Wp)}function Jp(n,t){const r=Vc(n,t),o=Se(n,0);return o.setFullYear(r,0,4),o.setHours(0,0,0,0),L0(o)}function Xp(n,t,r){return Ot(n,t*3,r)}function Gl(n,t,r){return Ot(n,t*12,r)}function Nc(n,t){const r=+ve(n)-+ve(t);return r<0?-1:r>0?1:r}function Zc(n){return n instanceof Date||typeof n=="object"&&Object.prototype.toString.call(n)==="[object Date]"}function yr(n){return!(!Zc(n)&&typeof n!="number"||isNaN(+ve(n)))}function Sc(n,t){const r=ve(n,t?.in);return Math.trunc(r.getMonth()/3)+1}function Qp(n,t,r){const[o,a]=vr(r?.in,n,t);return o.getFullYear()-a.getFullYear()}function ef(n){return t=>{const o=(n?Math[n]:Math.trunc)(t);return o===0?0:o}}function tf(n,t,r){const[o,a]=vr(r?.in,n,t),l=Nc(o,a),i=Math.abs(Qp(o,a));o.setFullYear(1584),a.setFullYear(1584);const c=Nc(o,a)===-l,s=l*(i-+c);return s===0?0:s}function $c(n,t){const[r,o]=vr(n,t.start,t.end);return{start:r,end:o}}function Jl(n,t){const{start:r,end:o}=$c(t?.in,n);let a=+r>+o;const l=a?+r:+o,i=a?o:r;i.setHours(0,0,0,0);let c=1;const s=[];for(;+i<=l;)s.push(Se(r,i)),i.setDate(i.getDate()+c),i.setHours(0,0,0,0);return a?s.reverse():s}function e0(n,t){const r=ve(n,t?.in),o=r.getMonth(),a=o-o%3;return r.setMonth(a,1),r.setHours(0,0,0,0),r}function nf(n,t){const{start:r,end:o}=$c(t?.in,n);let a=+r>+o;const l=a?+e0(r):+e0(o);let i=e0(a?o:r),c=1;const s=[];for(;+i<=l;)s.push(Se(r,i)),i=Xp(i,c);return a?s.reverse():s}function rf(n,t){const r=ve(n,t?.in);return r.setDate(1),r.setHours(0,0,0,0),r}function Ic(n,t){const r=ve(n,t?.in),o=r.getFullYear();return r.setFullYear(o+1,0,0),r.setHours(23,59,59,999),r}function D0(n,t){const r=ve(n,t?.in);return r.setFullYear(r.getFullYear(),0,1),r.setHours(0,0,0,0),r}function Xl(n,t){const r=Qn(),o=t?.weekStartsOn??t?.locale?.options?.weekStartsOn??r.weekStartsOn??r.locale?.options?.weekStartsOn??0,a=ve(n,t?.in),l=a.getDay(),i=(l<o?-7:0)+6-(l-o);return a.setDate(a.getDate()+i),a.setHours(23,59,59,999),a}function Hc(n,t){const r=ve(n,t?.in),o=r.getMonth(),a=o-o%3+3;return r.setMonth(a,0),r.setHours(23,59,59,999),r}const of={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}},af=(n,t,r)=>{let o;const a=of[n];return typeof a=="string"?o=a:t===1?o=a.one:o=a.other.replace("{{count}}",t.toString()),r?.addSuffix?r.comparison&&r.comparison>0?"in "+o:o+" ago":o};function Ql(n){return(t={})=>{const r=t.width?String(t.width):n.defaultWidth;return n.formats[r]||n.formats[n.defaultWidth]}}const lf={full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},cf={full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},sf={full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},df={date:Ql({formats:lf,defaultWidth:"full"}),time:Ql({formats:cf,defaultWidth:"full"}),dateTime:Ql({formats:sf,defaultWidth:"full"})},uf={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"},hf=(n,t,r,o)=>uf[n];function Br(n){return(t,r)=>{const o=r?.context?String(r.context):"standalone";let a;if(o==="formatting"&&n.formattingValues){const i=n.defaultFormattingWidth||n.defaultWidth,c=r?.width?String(r.width):i;a=n.formattingValues[c]||n.formattingValues[i]}else{const i=n.defaultWidth,c=r?.width?String(r.width):n.defaultWidth;a=n.values[c]||n.values[i]}const l=n.argumentCallback?n.argumentCallback(t):t;return a[l]}}const pf={narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},ff={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},mf={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},wf={narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},gf={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},kf={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},xf={ordinalNumber:(n,t)=>{const r=Number(n),o=r%100;if(o>20||o<10)switch(o%10){case 1:return r+"st";case 2:return r+"nd";case 3:return r+"rd"}return r+"th"},era:Br({values:pf,defaultWidth:"wide"}),quarter:Br({values:ff,defaultWidth:"wide",argumentCallback:n=>n-1}),month:Br({values:mf,defaultWidth:"wide"}),day:Br({values:wf,defaultWidth:"wide"}),dayPeriod:Br({values:gf,defaultWidth:"wide",formattingValues:kf,defaultFormattingWidth:"wide"})};function Er(n){return(t,r={})=>{const o=r.width,a=o&&n.matchPatterns[o]||n.matchPatterns[n.defaultMatchWidth],l=t.match(a);if(!l)return null;const i=l[0],c=o&&n.parsePatterns[o]||n.parsePatterns[n.defaultParseWidth],s=Array.isArray(c)?yf(c,h=>h.test(i)):vf(c,h=>h.test(i));let d;d=n.valueCallback?n.valueCallback(s):s,d=r.valueCallback?r.valueCallback(d):d;const u=t.slice(i.length);return{value:d,rest:u}}}function vf(n,t){for(const r in n)if(Object.prototype.hasOwnProperty.call(n,r)&&t(n[r]))return r}function yf(n,t){for(let r=0;r<n.length;r++)if(t(n[r]))return r}function Bf(n){return(t,r={})=>{const o=t.match(n.matchPattern);if(!o)return null;const a=o[0],l=t.match(n.parsePattern);if(!l)return null;let i=n.valueCallback?n.valueCallback(l[0]):l[0];i=r.valueCallback?r.valueCallback(i):i;const c=t.slice(a.length);return{value:i,rest:c}}}const Ef=/^(\d+)(th|st|nd|rd)?/i,bf=/\d+/i,Cf={narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},Mf={any:[/^b/i,/^(a|c)/i]},Vf={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},Af={any:[/1/i,/2/i,/3/i,/4/i]},_f={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},Nf={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},Zf={narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},Sf={narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},$f={narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},If={any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},Hf={ordinalNumber:Bf({matchPattern:Ef,parsePattern:bf,valueCallback:n=>parseInt(n,10)}),era:Er({matchPatterns:Cf,defaultMatchWidth:"wide",parsePatterns:Mf,defaultParseWidth:"any"}),quarter:Er({matchPatterns:Vf,defaultMatchWidth:"wide",parsePatterns:Af,defaultParseWidth:"any",valueCallback:n=>n+1}),month:Er({matchPatterns:_f,defaultMatchWidth:"wide",parsePatterns:Nf,defaultParseWidth:"any"}),day:Er({matchPatterns:Zf,defaultMatchWidth:"wide",parsePatterns:Sf,defaultParseWidth:"any"}),dayPeriod:Er({matchPatterns:$f,defaultMatchWidth:"any",parsePatterns:If,defaultParseWidth:"any"})},Tc={code:"en-US",formatDistance:af,formatLong:df,formatRelative:hf,localize:xf,match:Hf,options:{weekStartsOn:0,firstWeekContainsDate:1}};function Tf(n,t){const r=ve(n,t?.in);return _c(r,D0(r))+1}function e5(n,t){const r=ve(n,t?.in),o=+L0(r)-+Jp(r);return Math.round(o/bc)+1}function t5(n,t){const r=ve(n,t?.in),o=r.getFullYear(),a=Qn(),l=t?.firstWeekContainsDate??t?.locale?.options?.firstWeekContainsDate??a.firstWeekContainsDate??a.locale?.options?.firstWeekContainsDate??1,i=Se(t?.in||n,0);i.setFullYear(o+1,0,l),i.setHours(0,0,0,0);const c=Nt(i,t),s=Se(t?.in||n,0);s.setFullYear(o,0,l),s.setHours(0,0,0,0);const d=Nt(s,t);return+r>=+c?o+1:+r>=+d?o:o-1}function Lf(n,t){const r=Qn(),o=t?.firstWeekContainsDate??t?.locale?.options?.firstWeekContainsDate??r.firstWeekContainsDate??r.locale?.options?.firstWeekContainsDate??1,a=t5(n,t),l=Se(t?.in||n,0);return l.setFullYear(a,0,o),l.setHours(0,0,0,0),Nt(l,t)}function n5(n,t){const r=ve(n,t?.in),o=+Nt(r,t)-+Lf(r,t);return Math.round(o/bc)+1}function $e(n,t){const r=n<0?"-":"",o=Math.abs(n).toString().padStart(t,"0");return r+o}const Vn={y(n,t){const r=n.getFullYear(),o=r>0?r:1-r;return $e(t==="yy"?o%100:o,t.length)},M(n,t){const r=n.getMonth();return t==="M"?String(r+1):$e(r+1,2)},d(n,t){return $e(n.getDate(),t.length)},a(n,t){const r=n.getHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return r.toUpperCase();case"aaa":return r;case"aaaaa":return r[0];default:return r==="am"?"a.m.":"p.m."}},h(n,t){return $e(n.getHours()%12||12,t.length)},H(n,t){return $e(n.getHours(),t.length)},m(n,t){return $e(n.getMinutes(),t.length)},s(n,t){return $e(n.getSeconds(),t.length)},S(n,t){const r=t.length,o=n.getMilliseconds(),a=Math.trunc(o*Math.pow(10,r-3));return $e(a,t.length)}},P0={midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},Lc={G:function(n,t,r){const o=n.getFullYear()>0?1:0;switch(t){case"G":case"GG":case"GGG":return r.era(o,{width:"abbreviated"});case"GGGGG":return r.era(o,{width:"narrow"});default:return r.era(o,{width:"wide"})}},y:function(n,t,r){if(t==="yo"){const o=n.getFullYear(),a=o>0?o:1-o;return r.ordinalNumber(a,{unit:"year"})}return Vn.y(n,t)},Y:function(n,t,r,o){const a=t5(n,o),l=a>0?a:1-a;if(t==="YY"){const i=l%100;return $e(i,2)}return t==="Yo"?r.ordinalNumber(l,{unit:"year"}):$e(l,t.length)},R:function(n,t){const r=Vc(n);return $e(r,t.length)},u:function(n,t){const r=n.getFullYear();return $e(r,t.length)},Q:function(n,t,r){const o=Math.ceil((n.getMonth()+1)/3);switch(t){case"Q":return String(o);case"QQ":return $e(o,2);case"Qo":return r.ordinalNumber(o,{unit:"quarter"});case"QQQ":return r.quarter(o,{width:"abbreviated",context:"formatting"});case"QQQQQ":return r.quarter(o,{width:"narrow",context:"formatting"});default:return r.quarter(o,{width:"wide",context:"formatting"})}},q:function(n,t,r){const o=Math.ceil((n.getMonth()+1)/3);switch(t){case"q":return String(o);case"qq":return $e(o,2);case"qo":return r.ordinalNumber(o,{unit:"quarter"});case"qqq":return r.quarter(o,{width:"abbreviated",context:"standalone"});case"qqqqq":return r.quarter(o,{width:"narrow",context:"standalone"});default:return r.quarter(o,{width:"wide",context:"standalone"})}},M:function(n,t,r){const o=n.getMonth();switch(t){case"M":case"MM":return Vn.M(n,t);case"Mo":return r.ordinalNumber(o+1,{unit:"month"});case"MMM":return r.month(o,{width:"abbreviated",context:"formatting"});case"MMMMM":return r.month(o,{width:"narrow",context:"formatting"});default:return r.month(o,{width:"wide",context:"formatting"})}},L:function(n,t,r){const o=n.getMonth();switch(t){case"L":return String(o+1);case"LL":return $e(o+1,2);case"Lo":return r.ordinalNumber(o+1,{unit:"month"});case"LLL":return r.month(o,{width:"abbreviated",context:"standalone"});case"LLLLL":return r.month(o,{width:"narrow",context:"standalone"});default:return r.month(o,{width:"wide",context:"standalone"})}},w:function(n,t,r,o){const a=n5(n,o);return t==="wo"?r.ordinalNumber(a,{unit:"week"}):$e(a,t.length)},I:function(n,t,r){const o=e5(n);return t==="Io"?r.ordinalNumber(o,{unit:"week"}):$e(o,t.length)},d:function(n,t,r){return t==="do"?r.ordinalNumber(n.getDate(),{unit:"date"}):Vn.d(n,t)},D:function(n,t,r){const o=Tf(n);return t==="Do"?r.ordinalNumber(o,{unit:"dayOfYear"}):$e(o,t.length)},E:function(n,t,r){const o=n.getDay();switch(t){case"E":case"EE":case"EEE":return r.day(o,{width:"abbreviated",context:"formatting"});case"EEEEE":return r.day(o,{width:"narrow",context:"formatting"});case"EEEEEE":return r.day(o,{width:"short",context:"formatting"});default:return r.day(o,{width:"wide",context:"formatting"})}},e:function(n,t,r,o){const a=n.getDay(),l=(a-o.weekStartsOn+8)%7||7;switch(t){case"e":return String(l);case"ee":return $e(l,2);case"eo":return r.ordinalNumber(l,{unit:"day"});case"eee":return r.day(a,{width:"abbreviated",context:"formatting"});case"eeeee":return r.day(a,{width:"narrow",context:"formatting"});case"eeeeee":return r.day(a,{width:"short",context:"formatting"});default:return r.day(a,{width:"wide",context:"formatting"})}},c:function(n,t,r,o){const a=n.getDay(),l=(a-o.weekStartsOn+8)%7||7;switch(t){case"c":return String(l);case"cc":return $e(l,t.length);case"co":return r.ordinalNumber(l,{unit:"day"});case"ccc":return r.day(a,{width:"abbreviated",context:"standalone"});case"ccccc":return r.day(a,{width:"narrow",context:"standalone"});case"cccccc":return r.day(a,{width:"short",context:"standalone"});default:return r.day(a,{width:"wide",context:"standalone"})}},i:function(n,t,r){const o=n.getDay(),a=o===0?7:o;switch(t){case"i":return String(a);case"ii":return $e(a,t.length);case"io":return r.ordinalNumber(a,{unit:"day"});case"iii":return r.day(o,{width:"abbreviated",context:"formatting"});case"iiiii":return r.day(o,{width:"narrow",context:"formatting"});case"iiiiii":return r.day(o,{width:"short",context:"formatting"});default:return r.day(o,{width:"wide",context:"formatting"})}},a:function(n,t,r){const a=n.getHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return r.dayPeriod(a,{width:"abbreviated",context:"formatting"});case"aaa":return r.dayPeriod(a,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return r.dayPeriod(a,{width:"narrow",context:"formatting"});default:return r.dayPeriod(a,{width:"wide",context:"formatting"})}},b:function(n,t,r){const o=n.getHours();let a;switch(o===12?a=P0.noon:o===0?a=P0.midnight:a=o/12>=1?"pm":"am",t){case"b":case"bb":return r.dayPeriod(a,{width:"abbreviated",context:"formatting"});case"bbb":return r.dayPeriod(a,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return r.dayPeriod(a,{width:"narrow",context:"formatting"});default:return r.dayPeriod(a,{width:"wide",context:"formatting"})}},B:function(n,t,r){const o=n.getHours();let a;switch(o>=17?a=P0.evening:o>=12?a=P0.afternoon:o>=4?a=P0.morning:a=P0.night,t){case"B":case"BB":case"BBB":return r.dayPeriod(a,{width:"abbreviated",context:"formatting"});case"BBBBB":return r.dayPeriod(a,{width:"narrow",context:"formatting"});default:return r.dayPeriod(a,{width:"wide",context:"formatting"})}},h:function(n,t,r){if(t==="ho"){let o=n.getHours()%12;return o===0&&(o=12),r.ordinalNumber(o,{unit:"hour"})}return Vn.h(n,t)},H:function(n,t,r){return t==="Ho"?r.ordinalNumber(n.getHours(),{unit:"hour"}):Vn.H(n,t)},K:function(n,t,r){const o=n.getHours()%12;return t==="Ko"?r.ordinalNumber(o,{unit:"hour"}):$e(o,t.length)},k:function(n,t,r){let o=n.getHours();return o===0&&(o=24),t==="ko"?r.ordinalNumber(o,{unit:"hour"}):$e(o,t.length)},m:function(n,t,r){return t==="mo"?r.ordinalNumber(n.getMinutes(),{unit:"minute"}):Vn.m(n,t)},s:function(n,t,r){return t==="so"?r.ordinalNumber(n.getSeconds(),{unit:"second"}):Vn.s(n,t)},S:function(n,t){return Vn.S(n,t)},X:function(n,t,r){const o=n.getTimezoneOffset();if(o===0)return"Z";switch(t){case"X":return Pc(o);case"XXXX":case"XX":return t0(o);default:return t0(o,":")}},x:function(n,t,r){const o=n.getTimezoneOffset();switch(t){case"x":return Pc(o);case"xxxx":case"xx":return t0(o);default:return t0(o,":")}},O:function(n,t,r){const o=n.getTimezoneOffset();switch(t){case"O":case"OO":case"OOO":return"GMT"+Dc(o,":");default:return"GMT"+t0(o,":")}},z:function(n,t,r){const o=n.getTimezoneOffset();switch(t){case"z":case"zz":case"zzz":return"GMT"+Dc(o,":");default:return"GMT"+t0(o,":")}},t:function(n,t,r){const o=Math.trunc(+n/1e3);return $e(o,t.length)},T:function(n,t,r){return $e(+n,t.length)}};function Dc(n,t=""){const r=n>0?"-":"+",o=Math.abs(n),a=Math.trunc(o/60),l=o%60;return l===0?r+String(a):r+String(a)+t+$e(l,2)}function Pc(n,t){return n%60===0?(n>0?"-":"+")+$e(Math.abs(n)/60,2):t0(n,t)}function t0(n,t=""){const r=n>0?"-":"+",o=Math.abs(n),a=$e(Math.trunc(o/60),2),l=$e(o%60,2);return r+a+t+l}const Oc=(n,t)=>{switch(n){case"P":return t.date({width:"short"});case"PP":return t.date({width:"medium"});case"PPP":return t.date({width:"long"});default:return t.date({width:"full"})}},Rc=(n,t)=>{switch(n){case"p":return t.time({width:"short"});case"pp":return t.time({width:"medium"});case"ppp":return t.time({width:"long"});default:return t.time({width:"full"})}},r5={p:Rc,P:(n,t)=>{const r=n.match(/(P+)(p+)?/)||[],o=r[1],a=r[2];if(!a)return Oc(n,t);let l;switch(o){case"P":l=t.dateTime({width:"short"});break;case"PP":l=t.dateTime({width:"medium"});break;case"PPP":l=t.dateTime({width:"long"});break;default:l=t.dateTime({width:"full"});break}return l.replace("{{date}}",Oc(o,t)).replace("{{time}}",Rc(a,t))}},Df=/^D+$/,Pf=/^Y+$/,Of=["D","DD","YY","YYYY"];function zc(n){return Df.test(n)}function jc(n){return Pf.test(n)}function o5(n,t,r){const o=Rf(n,t,r);if(console.warn(o),Of.includes(n))throw new RangeError(o)}function Rf(n,t,r){const o=n[0]==="Y"?"years":"days of the month";return`Use \`${n.toLowerCase()}\` instead of \`${n}\` (in \`${t}\`) for formatting ${o} to the input \`${r}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`}const zf=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,jf=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,Ff=/^'([^]*?)'?$/,Uf=/''/g,Wf=/[a-zA-Z]/;function Zt(n,t,r){const o=Qn(),a=r?.locale??o.locale??Tc,l=r?.firstWeekContainsDate??r?.locale?.options?.firstWeekContainsDate??o.firstWeekContainsDate??o.locale?.options?.firstWeekContainsDate??1,i=r?.weekStartsOn??r?.locale?.options?.weekStartsOn??o.weekStartsOn??o.locale?.options?.weekStartsOn??0,c=ve(n,r?.in);if(!yr(c))throw new RangeError("Invalid time value");let s=t.match(jf).map(u=>{const h=u[0];if(h==="p"||h==="P"){const f=r5[h];return f(u,a.formatLong)}return u}).join("").match(zf).map(u=>{if(u==="''")return{isToken:!1,value:"'"};const h=u[0];if(h==="'")return{isToken:!1,value:qf(u)};if(Lc[h])return{isToken:!0,value:u};if(h.match(Wf))throw new RangeError("Format string contains an unescaped latin alphabet character `"+h+"`");return{isToken:!1,value:u}});a.localize.preprocessor&&(s=a.localize.preprocessor(c,s));const d={firstWeekContainsDate:l,weekStartsOn:i,locale:a};return s.map(u=>{if(!u.isToken)return u.value;const h=u.value;(!r?.useAdditionalWeekYearTokens&&jc(h)||!r?.useAdditionalDayOfYearTokens&&zc(h))&&o5(h,t,String(n));const f=Lc[h[0]];return f(c,h,a.localize,d)}).join("")}function qf(n){const t=n.match(Ff);return t?t[1].replace(Uf,"'"):n}function Yf(n,t){return ve(n,t?.in).getDay()}function Kf(n,t){const r=ve(n,t?.in),o=r.getFullYear(),a=r.getMonth(),l=Se(r,0);return l.setFullYear(o,a+1,0),l.setHours(0,0,0,0),l.getDate()}function Gf(){return Object.assign({},Qn())}function en(n,t){return ve(n,t?.in).getHours()}function Jf(n,t){const r=ve(n,t?.in).getDay();return r===0?7:r}function fn(n,t){return ve(n,t?.in).getMinutes()}function Ne(n,t){return ve(n,t?.in).getMonth()}function An(n){return ve(n).getSeconds()}function Be(n,t){return ve(n,t?.in).getFullYear()}function tn(n,t){return+ve(n)>+ve(t)}function mn(n,t){return+ve(n)<+ve(t)}function O0(n,t){return+ve(n)==+ve(t)}function Xf(n,t){const r=Qf(t)?new t(0):Se(t,0);return r.setFullYear(n.getFullYear(),n.getMonth(),n.getDate()),r.setHours(n.getHours(),n.getMinutes(),n.getSeconds(),n.getMilliseconds()),r}function Qf(n){return typeof n=="function"&&n.prototype?.constructor===n}const em=10;class Fc{subPriority=0;validate(t,r){return!0}}class tm extends Fc{constructor(t,r,o,a,l){super(),this.value=t,this.validateValue=r,this.setValue=o,this.priority=a,l&&(this.subPriority=l)}validate(t,r){return this.validateValue(t,this.value,r)}set(t,r,o){return this.setValue(t,r,this.value,o)}}class nm extends Fc{priority=em;subPriority=-1;constructor(t,r){super(),this.context=t||(o=>Se(r,o))}set(t,r){return r.timestampIsSet?t:Se(t,Xf(t,this.context))}}class Ze{run(t,r,o,a){const l=this.parse(t,r,o,a);return l?{setter:new tm(l.value,this.validate,this.set,this.priority,this.subPriority),rest:l.rest}:null}validate(t,r,o){return!0}}class rm extends Ze{priority=140;parse(t,r,o){switch(r){case"G":case"GG":case"GGG":return o.era(t,{width:"abbreviated"})||o.era(t,{width:"narrow"});case"GGGGG":return o.era(t,{width:"narrow"});default:return o.era(t,{width:"wide"})||o.era(t,{width:"abbreviated"})||o.era(t,{width:"narrow"})}}set(t,r,o){return r.era=o,t.setFullYear(o,0,1),t.setHours(0,0,0,0),t}incompatibleTokens=["R","u","t","T"]}const Je={month:/^(1[0-2]|0?\d)/,date:/^(3[0-1]|[0-2]?\d)/,dayOfYear:/^(36[0-6]|3[0-5]\d|[0-2]?\d?\d)/,week:/^(5[0-3]|[0-4]?\d)/,hour23h:/^(2[0-3]|[0-1]?\d)/,hour24h:/^(2[0-4]|[0-1]?\d)/,hour11h:/^(1[0-1]|0?\d)/,hour12h:/^(1[0-2]|0?\d)/,minute:/^[0-5]?\d/,second:/^[0-5]?\d/,singleDigit:/^\d/,twoDigits:/^\d{1,2}/,threeDigits:/^\d{1,3}/,fourDigits:/^\d{1,4}/,anyDigitsSigned:/^-?\d+/,singleDigitSigned:/^-?\d/,twoDigitsSigned:/^-?\d{1,2}/,threeDigitsSigned:/^-?\d{1,3}/,fourDigitsSigned:/^-?\d{1,4}/},nn={basicOptionalMinutes:/^([+-])(\d{2})(\d{2})?|Z/,basic:/^([+-])(\d{2})(\d{2})|Z/,basicOptionalSeconds:/^([+-])(\d{2})(\d{2})((\d{2}))?|Z/,extended:/^([+-])(\d{2}):(\d{2})|Z/,extendedOptionalSeconds:/^([+-])(\d{2}):(\d{2})(:(\d{2}))?|Z/};function Xe(n,t){return n&&{value:t(n.value),rest:n.rest}}function Re(n,t){const r=t.match(n);return r?{value:parseInt(r[0],10),rest:t.slice(r[0].length)}:null}function rn(n,t){const r=t.match(n);if(!r)return null;if(r[0]==="Z")return{value:0,rest:t.slice(1)};const o=r[1]==="+"?1:-1,a=r[2]?parseInt(r[2],10):0,l=r[3]?parseInt(r[3],10):0,i=r[5]?parseInt(r[5],10):0;return{value:o*(a*Yp+l*qp+i*Kp),rest:t.slice(r[0].length)}}function Uc(n){return Re(Je.anyDigitsSigned,n)}function je(n,t){switch(n){case 1:return Re(Je.singleDigit,t);case 2:return Re(Je.twoDigits,t);case 3:return Re(Je.threeDigits,t);case 4:return Re(Je.fourDigits,t);default:return Re(new RegExp("^\\d{1,"+n+"}"),t)}}function $o(n,t){switch(n){case 1:return Re(Je.singleDigitSigned,t);case 2:return Re(Je.twoDigitsSigned,t);case 3:return Re(Je.threeDigitsSigned,t);case 4:return Re(Je.fourDigitsSigned,t);default:return Re(new RegExp("^-?\\d{1,"+n+"}"),t)}}function a5(n){switch(n){case"morning":return 4;case"evening":return 17;case"pm":case"noon":case"afternoon":return 12;default:return 0}}function Wc(n,t){const r=t>0,o=r?t:1-t;let a;if(o<=50)a=n||100;else{const l=o+50,i=Math.trunc(l/100)*100,c=n>=l%100;a=n+i-(c?100:0)}return r?a:1-a}function qc(n){return n%400===0||n%4===0&&n%100!==0}class om extends Ze{priority=130;incompatibleTokens=["Y","R","u","w","I","i","e","c","t","T"];parse(t,r,o){const a=l=>({year:l,isTwoDigitYear:r==="yy"});switch(r){case"y":return Xe(je(4,t),a);case"yo":return Xe(o.ordinalNumber(t,{unit:"year"}),a);default:return Xe(je(r.length,t),a)}}validate(t,r){return r.isTwoDigitYear||r.year>0}set(t,r,o){const a=t.getFullYear();if(o.isTwoDigitYear){const i=Wc(o.year,a);return t.setFullYear(i,0,1),t.setHours(0,0,0,0),t}const l=!("era"in r)||r.era===1?o.year:1-o.year;return t.setFullYear(l,0,1),t.setHours(0,0,0,0),t}}class am extends Ze{priority=130;parse(t,r,o){const a=l=>({year:l,isTwoDigitYear:r==="YY"});switch(r){case"Y":return Xe(je(4,t),a);case"Yo":return Xe(o.ordinalNumber(t,{unit:"year"}),a);default:return Xe(je(r.length,t),a)}}validate(t,r){return r.isTwoDigitYear||r.year>0}set(t,r,o,a){const l=t5(t,a);if(o.isTwoDigitYear){const c=Wc(o.year,l);return t.setFullYear(c,0,a.firstWeekContainsDate),t.setHours(0,0,0,0),Nt(t,a)}const i=!("era"in r)||r.era===1?o.year:1-o.year;return t.setFullYear(i,0,a.firstWeekContainsDate),t.setHours(0,0,0,0),Nt(t,a)}incompatibleTokens=["y","R","u","Q","q","M","L","I","d","D","i","t","T"]}class lm extends Ze{priority=130;parse(t,r){return $o(r==="R"?4:r.length,t)}set(t,r,o){const a=Se(t,0);return a.setFullYear(o,0,4),a.setHours(0,0,0,0),L0(a)}incompatibleTokens=["G","y","Y","u","Q","q","M","L","w","d","D","e","c","t","T"]}class im extends Ze{priority=130;parse(t,r){return $o(r==="u"?4:r.length,t)}set(t,r,o){return t.setFullYear(o,0,1),t.setHours(0,0,0,0),t}incompatibleTokens=["G","y","Y","R","w","I","i","e","c","t","T"]}class cm extends Ze{priority=120;parse(t,r,o){switch(r){case"Q":case"QQ":return je(r.length,t);case"Qo":return o.ordinalNumber(t,{unit:"quarter"});case"QQQ":return o.quarter(t,{width:"abbreviated",context:"formatting"})||o.quarter(t,{width:"narrow",context:"formatting"});case"QQQQQ":return o.quarter(t,{width:"narrow",context:"formatting"});default:return o.quarter(t,{width:"wide",context:"formatting"})||o.quarter(t,{width:"abbreviated",context:"formatting"})||o.quarter(t,{width:"narrow",context:"formatting"})}}validate(t,r){return r>=1&&r<=4}set(t,r,o){return t.setMonth((o-1)*3,1),t.setHours(0,0,0,0),t}incompatibleTokens=["Y","R","q","M","L","w","I","d","D","i","e","c","t","T"]}class sm extends Ze{priority=120;parse(t,r,o){switch(r){case"q":case"qq":return je(r.length,t);case"qo":return o.ordinalNumber(t,{unit:"quarter"});case"qqq":return o.quarter(t,{width:"abbreviated",context:"standalone"})||o.quarter(t,{width:"narrow",context:"standalone"});case"qqqqq":return o.quarter(t,{width:"narrow",context:"standalone"});default:return o.quarter(t,{width:"wide",context:"standalone"})||o.quarter(t,{width:"abbreviated",context:"standalone"})||o.quarter(t,{width:"narrow",context:"standalone"})}}validate(t,r){return r>=1&&r<=4}set(t,r,o){return t.setMonth((o-1)*3,1),t.setHours(0,0,0,0),t}incompatibleTokens=["Y","R","Q","M","L","w","I","d","D","i","e","c","t","T"]}class dm extends Ze{incompatibleTokens=["Y","R","q","Q","L","w","I","D","i","e","c","t","T"];priority=110;parse(t,r,o){const a=l=>l-1;switch(r){case"M":return Xe(Re(Je.month,t),a);case"MM":return Xe(je(2,t),a);case"Mo":return Xe(o.ordinalNumber(t,{unit:"month"}),a);case"MMM":return o.month(t,{width:"abbreviated",context:"formatting"})||o.month(t,{width:"narrow",context:"formatting"});case"MMMMM":return o.month(t,{width:"narrow",context:"formatting"});default:return o.month(t,{width:"wide",context:"formatting"})||o.month(t,{width:"abbreviated",context:"formatting"})||o.month(t,{width:"narrow",context:"formatting"})}}validate(t,r){return r>=0&&r<=11}set(t,r,o){return t.setMonth(o,1),t.setHours(0,0,0,0),t}}class um extends Ze{priority=110;parse(t,r,o){const a=l=>l-1;switch(r){case"L":return Xe(Re(Je.month,t),a);case"LL":return Xe(je(2,t),a);case"Lo":return Xe(o.ordinalNumber(t,{unit:"month"}),a);case"LLL":return o.month(t,{width:"abbreviated",context:"standalone"})||o.month(t,{width:"narrow",context:"standalone"});case"LLLLL":return o.month(t,{width:"narrow",context:"standalone"});default:return o.month(t,{width:"wide",context:"standalone"})||o.month(t,{width:"abbreviated",context:"standalone"})||o.month(t,{width:"narrow",context:"standalone"})}}validate(t,r){return r>=0&&r<=11}set(t,r,o){return t.setMonth(o,1),t.setHours(0,0,0,0),t}incompatibleTokens=["Y","R","q","Q","M","w","I","D","i","e","c","t","T"]}function hm(n,t,r){const o=ve(n,r?.in),a=n5(o,r)-t;return o.setDate(o.getDate()-a*7),ve(o,r?.in)}class pm extends Ze{priority=100;parse(t,r,o){switch(r){case"w":return Re(Je.week,t);case"wo":return o.ordinalNumber(t,{unit:"week"});default:return je(r.length,t)}}validate(t,r){return r>=1&&r<=53}set(t,r,o,a){return Nt(hm(t,o,a),a)}incompatibleTokens=["y","R","u","q","Q","M","L","I","d","D","i","t","T"]}function fm(n,t,r){const o=ve(n,r?.in),a=e5(o,r)-t;return o.setDate(o.getDate()-a*7),o}class mm extends Ze{priority=100;parse(t,r,o){switch(r){case"I":return Re(Je.week,t);case"Io":return o.ordinalNumber(t,{unit:"week"});default:return je(r.length,t)}}validate(t,r){return r>=1&&r<=53}set(t,r,o){return L0(fm(t,o))}incompatibleTokens=["y","Y","u","q","Q","M","L","w","d","D","e","c","t","T"]}const wm=[31,28,31,30,31,30,31,31,30,31,30,31],gm=[31,29,31,30,31,30,31,31,30,31,30,31];class km extends Ze{priority=90;subPriority=1;parse(t,r,o){switch(r){case"d":return Re(Je.date,t);case"do":return o.ordinalNumber(t,{unit:"date"});default:return je(r.length,t)}}validate(t,r){const o=t.getFullYear(),a=qc(o),l=t.getMonth();return a?r>=1&&r<=gm[l]:r>=1&&r<=wm[l]}set(t,r,o){return t.setDate(o),t.setHours(0,0,0,0),t}incompatibleTokens=["Y","R","q","Q","w","I","D","i","e","c","t","T"]}class xm extends Ze{priority=90;subpriority=1;parse(t,r,o){switch(r){case"D":case"DD":return Re(Je.dayOfYear,t);case"Do":return o.ordinalNumber(t,{unit:"date"});default:return je(r.length,t)}}validate(t,r){const o=t.getFullYear();return qc(o)?r>=1&&r<=366:r>=1&&r<=365}set(t,r,o){return t.setMonth(0,o),t.setHours(0,0,0,0),t}incompatibleTokens=["Y","R","q","Q","M","L","w","I","d","E","i","e","c","t","T"]}function l5(n,t,r){const o=Qn(),a=r?.weekStartsOn??r?.locale?.options?.weekStartsOn??o.weekStartsOn??o.locale?.options?.weekStartsOn??0,l=ve(n,r?.in),i=l.getDay(),s=(t%7+7)%7,d=7-a,u=t<0||t>6?t-(i+d)%7:(s+d)%7-(i+d)%7;return _t(l,u,r)}class vm extends Ze{priority=90;parse(t,r,o){switch(r){case"E":case"EE":case"EEE":return o.day(t,{width:"abbreviated",context:"formatting"})||o.day(t,{width:"short",context:"formatting"})||o.day(t,{width:"narrow",context:"formatting"});case"EEEEE":return o.day(t,{width:"narrow",context:"formatting"});case"EEEEEE":return o.day(t,{width:"short",context:"formatting"})||o.day(t,{width:"narrow",context:"formatting"});default:return o.day(t,{width:"wide",context:"formatting"})||o.day(t,{width:"abbreviated",context:"formatting"})||o.day(t,{width:"short",context:"formatting"})||o.day(t,{width:"narrow",context:"formatting"})}}validate(t,r){return r>=0&&r<=6}set(t,r,o,a){return t=l5(t,o,a),t.setHours(0,0,0,0),t}incompatibleTokens=["D","i","e","c","t","T"]}class ym extends Ze{priority=90;parse(t,r,o,a){const l=i=>{const c=Math.floor((i-1)/7)*7;return(i+a.weekStartsOn+6)%7+c};switch(r){case"e":case"ee":return Xe(je(r.length,t),l);case"eo":return Xe(o.ordinalNumber(t,{unit:"day"}),l);case"eee":return o.day(t,{width:"abbreviated",context:"formatting"})||o.day(t,{width:"short",context:"formatting"})||o.day(t,{width:"narrow",context:"formatting"});case"eeeee":return o.day(t,{width:"narrow",context:"formatting"});case"eeeeee":return o.day(t,{width:"short",context:"formatting"})||o.day(t,{width:"narrow",context:"formatting"});default:return o.day(t,{width:"wide",context:"formatting"})||o.day(t,{width:"abbreviated",context:"formatting"})||o.day(t,{width:"short",context:"formatting"})||o.day(t,{width:"narrow",context:"formatting"})}}validate(t,r){return r>=0&&r<=6}set(t,r,o,a){return t=l5(t,o,a),t.setHours(0,0,0,0),t}incompatibleTokens=["y","R","u","q","Q","M","L","I","d","D","E","i","c","t","T"]}class Bm extends Ze{priority=90;parse(t,r,o,a){const l=i=>{const c=Math.floor((i-1)/7)*7;return(i+a.weekStartsOn+6)%7+c};switch(r){case"c":case"cc":return Xe(je(r.length,t),l);case"co":return Xe(o.ordinalNumber(t,{unit:"day"}),l);case"ccc":return o.day(t,{width:"abbreviated",context:"standalone"})||o.day(t,{width:"short",context:"standalone"})||o.day(t,{width:"narrow",context:"standalone"});case"ccccc":return o.day(t,{width:"narrow",context:"standalone"});case"cccccc":return o.day(t,{width:"short",context:"standalone"})||o.day(t,{width:"narrow",context:"standalone"});default:return o.day(t,{width:"wide",context:"standalone"})||o.day(t,{width:"abbreviated",context:"standalone"})||o.day(t,{width:"short",context:"standalone"})||o.day(t,{width:"narrow",context:"standalone"})}}validate(t,r){return r>=0&&r<=6}set(t,r,o,a){return t=l5(t,o,a),t.setHours(0,0,0,0),t}incompatibleTokens=["y","R","u","q","Q","M","L","I","d","D","E","i","e","t","T"]}function Em(n,t,r){const o=ve(n,r?.in),a=Jf(o,r),l=t-a;return _t(o,l,r)}class bm extends Ze{priority=90;parse(t,r,o){const a=l=>l===0?7:l;switch(r){case"i":case"ii":return je(r.length,t);case"io":return o.ordinalNumber(t,{unit:"day"});case"iii":return Xe(o.day(t,{width:"abbreviated",context:"formatting"})||o.day(t,{width:"short",context:"formatting"})||o.day(t,{width:"narrow",context:"formatting"}),a);case"iiiii":return Xe(o.day(t,{width:"narrow",context:"formatting"}),a);case"iiiiii":return Xe(o.day(t,{width:"short",context:"formatting"})||o.day(t,{width:"narrow",context:"formatting"}),a);default:return Xe(o.day(t,{width:"wide",context:"formatting"})||o.day(t,{width:"abbreviated",context:"formatting"})||o.day(t,{width:"short",context:"formatting"})||o.day(t,{width:"narrow",context:"formatting"}),a)}}validate(t,r){return r>=1&&r<=7}set(t,r,o){return t=Em(t,o),t.setHours(0,0,0,0),t}incompatibleTokens=["y","Y","u","q","Q","M","L","w","d","D","E","e","c","t","T"]}class Cm extends Ze{priority=80;parse(t,r,o){switch(r){case"a":case"aa":case"aaa":return o.dayPeriod(t,{width:"abbreviated",context:"formatting"})||o.dayPeriod(t,{width:"narrow",context:"formatting"});case"aaaaa":return o.dayPeriod(t,{width:"narrow",context:"formatting"});default:return o.dayPeriod(t,{width:"wide",context:"formatting"})||o.dayPeriod(t,{width:"abbreviated",context:"formatting"})||o.dayPeriod(t,{width:"narrow",context:"formatting"})}}set(t,r,o){return t.setHours(a5(o),0,0,0),t}incompatibleTokens=["b","B","H","k","t","T"]}class Mm extends Ze{priority=80;parse(t,r,o){switch(r){case"b":case"bb":case"bbb":return o.dayPeriod(t,{width:"abbreviated",context:"formatting"})||o.dayPeriod(t,{width:"narrow",context:"formatting"});case"bbbbb":return o.dayPeriod(t,{width:"narrow",context:"formatting"});default:return o.dayPeriod(t,{width:"wide",context:"formatting"})||o.dayPeriod(t,{width:"abbreviated",context:"formatting"})||o.dayPeriod(t,{width:"narrow",context:"formatting"})}}set(t,r,o){return t.setHours(a5(o),0,0,0),t}incompatibleTokens=["a","B","H","k","t","T"]}class Vm extends Ze{priority=80;parse(t,r,o){switch(r){case"B":case"BB":case"BBB":return o.dayPeriod(t,{width:"abbreviated",context:"formatting"})||o.dayPeriod(t,{width:"narrow",context:"formatting"});case"BBBBB":return o.dayPeriod(t,{width:"narrow",context:"formatting"});default:return o.dayPeriod(t,{width:"wide",context:"formatting"})||o.dayPeriod(t,{width:"abbreviated",context:"formatting"})||o.dayPeriod(t,{width:"narrow",context:"formatting"})}}set(t,r,o){return t.setHours(a5(o),0,0,0),t}incompatibleTokens=["a","b","t","T"]}class Am extends Ze{priority=70;parse(t,r,o){switch(r){case"h":return Re(Je.hour12h,t);case"ho":return o.ordinalNumber(t,{unit:"hour"});default:return je(r.length,t)}}validate(t,r){return r>=1&&r<=12}set(t,r,o){const a=t.getHours()>=12;return a&&o<12?t.setHours(o+12,0,0,0):!a&&o===12?t.setHours(0,0,0,0):t.setHours(o,0,0,0),t}incompatibleTokens=["H","K","k","t","T"]}class _m extends Ze{priority=70;parse(t,r,o){switch(r){case"H":return Re(Je.hour23h,t);case"Ho":return o.ordinalNumber(t,{unit:"hour"});default:return je(r.length,t)}}validate(t,r){return r>=0&&r<=23}set(t,r,o){return t.setHours(o,0,0,0),t}incompatibleTokens=["a","b","h","K","k","t","T"]}class Nm extends Ze{priority=70;parse(t,r,o){switch(r){case"K":return Re(Je.hour11h,t);case"Ko":return o.ordinalNumber(t,{unit:"hour"});default:return je(r.length,t)}}validate(t,r){return r>=0&&r<=11}set(t,r,o){return t.getHours()>=12&&o<12?t.setHours(o+12,0,0,0):t.setHours(o,0,0,0),t}incompatibleTokens=["h","H","k","t","T"]}class Zm extends Ze{priority=70;parse(t,r,o){switch(r){case"k":return Re(Je.hour24h,t);case"ko":return o.ordinalNumber(t,{unit:"hour"});default:return je(r.length,t)}}validate(t,r){return r>=1&&r<=24}set(t,r,o){const a=o<=24?o%24:o;return t.setHours(a,0,0,0),t}incompatibleTokens=["a","b","h","H","K","t","T"]}class Sm extends Ze{priority=60;parse(t,r,o){switch(r){case"m":return Re(Je.minute,t);case"mo":return o.ordinalNumber(t,{unit:"minute"});default:return je(r.length,t)}}validate(t,r){return r>=0&&r<=59}set(t,r,o){return t.setMinutes(o,0,0),t}incompatibleTokens=["t","T"]}class $m extends Ze{priority=50;parse(t,r,o){switch(r){case"s":return Re(Je.second,t);case"so":return o.ordinalNumber(t,{unit:"second"});default:return je(r.length,t)}}validate(t,r){return r>=0&&r<=59}set(t,r,o){return t.setSeconds(o,0),t}incompatibleTokens=["t","T"]}class Im extends Ze{priority=30;parse(t,r){const o=a=>Math.trunc(a*Math.pow(10,-r.length+3));return Xe(je(r.length,t),o)}set(t,r,o){return t.setMilliseconds(o),t}incompatibleTokens=["t","T"]}class Hm extends Ze{priority=10;parse(t,r){switch(r){case"X":return rn(nn.basicOptionalMinutes,t);case"XX":return rn(nn.basic,t);case"XXXX":return rn(nn.basicOptionalSeconds,t);case"XXXXX":return rn(nn.extendedOptionalSeconds,t);default:return rn(nn.extended,t)}}set(t,r,o){return r.timestampIsSet?t:Se(t,t.getTime()-So(t)-o)}incompatibleTokens=["t","T","x"]}class Tm extends Ze{priority=10;parse(t,r){switch(r){case"x":return rn(nn.basicOptionalMinutes,t);case"xx":return rn(nn.basic,t);case"xxxx":return rn(nn.basicOptionalSeconds,t);case"xxxxx":return rn(nn.extendedOptionalSeconds,t);default:return rn(nn.extended,t)}}set(t,r,o){return r.timestampIsSet?t:Se(t,t.getTime()-So(t)-o)}incompatibleTokens=["t","T","X"]}class Lm extends Ze{priority=40;parse(t){return Uc(t)}set(t,r,o){return[Se(t,o*1e3),{timestampIsSet:!0}]}incompatibleTokens="*"}class Dm extends Ze{priority=20;parse(t){return Uc(t)}set(t,r,o){return[Se(t,o),{timestampIsSet:!0}]}incompatibleTokens="*"}const Pm={G:new rm,y:new om,Y:new am,R:new lm,u:new im,Q:new cm,q:new sm,M:new dm,L:new um,w:new pm,I:new mm,d:new km,D:new xm,E:new vm,e:new ym,c:new Bm,i:new bm,a:new Cm,b:new Mm,B:new Vm,h:new Am,H:new _m,K:new Nm,k:new Zm,m:new Sm,s:new $m,S:new Im,X:new Hm,x:new Tm,t:new Lm,T:new Dm},Om=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,Rm=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,zm=/^'([^]*?)'?$/,jm=/''/g,Fm=/\S/,Um=/[a-zA-Z]/;function i5(n,t,r,o){const a=()=>Se(o?.in||r,NaN),l=Gf(),i=o?.locale??l.locale??Tc,c=o?.firstWeekContainsDate??o?.locale?.options?.firstWeekContainsDate??l.firstWeekContainsDate??l.locale?.options?.firstWeekContainsDate??1,s=o?.weekStartsOn??o?.locale?.options?.weekStartsOn??l.weekStartsOn??l.locale?.options?.weekStartsOn??0;if(!t)return n?a():ve(r,o?.in);const d={firstWeekContainsDate:c,weekStartsOn:s,locale:i},u=[new nm(o?.in,r)],h=t.match(Rm).map(g=>{const k=g[0];if(k in r5){const x=r5[k];return x(g,i.formatLong)}return g}).join("").match(Om),f=[];for(let g of h){!o?.useAdditionalWeekYearTokens&&jc(g)&&o5(g,t,n),!o?.useAdditionalDayOfYearTokens&&zc(g)&&o5(g,t,n);const k=g[0],x=Pm[k];if(x){const{incompatibleTokens:v}=x;if(Array.isArray(v)){const C=f.find(A=>v.includes(A.token)||A.token===k);if(C)throw new RangeError(`The format string mustn't contain \`${C.fullToken}\` and \`${g}\` at the same time`)}else if(x.incompatibleTokens==="*"&&f.length>0)throw new RangeError(`The format string mustn't contain \`${g}\` and any other token at the same time`);f.push({token:k,fullToken:g});const b=x.run(n,g,i.match,d);if(!b)return a();u.push(b.setter),n=b.rest}else{if(k.match(Um))throw new RangeError("Format string contains an unescaped latin alphabet character `"+k+"`");if(g==="''"?g="'":k==="'"&&(g=Wm(g)),n.indexOf(g)===0)n=n.slice(g.length);else return a()}}if(n.length>0&&Fm.test(n))return a();const p=u.map(g=>g.priority).sort((g,k)=>k-g).filter((g,k,x)=>x.indexOf(g)===k).map(g=>u.filter(k=>k.priority===g).sort((k,x)=>x.subPriority-k.subPriority)).map(g=>g[0]);let m=ve(r,o?.in);if(isNaN(+m))return a();const w={};for(const g of p){if(!g.validate(m,d))return a();const k=g.set(m,w,d);Array.isArray(k)?(m=k[0],Object.assign(w,k[1])):m=k}return m}function Wm(n){return n.match(zm)[1].replace(jm,"'")}function Yc(n,t,r){const[o,a]=vr(r?.in,n,t);return+e0(o)==+e0(a)}function Kc(n,t,r){return _t(n,-t,r)}function qm(n,t){const r=t?.nearestTo??1;if(r<1||r>30)return Se(n,NaN);const o=ve(n,t?.in),a=o.getSeconds()/60,l=o.getMilliseconds()/1e3/60,i=o.getMinutes()+a+l,c=t?.roundingMethod??"round",d=ef(c)(i/r)*r;return o.setMinutes(d,0,0),o}function Gc(n,t,r){const o=ve(n,r?.in),a=o.getFullYear(),l=o.getDate(),i=Se(n,0);i.setFullYear(a,t,15),i.setHours(0,0,0,0);const c=Kf(i);return o.setMonth(t,Math.min(l,c)),o}function Ve(n,t,r){let o=ve(n,r?.in);return isNaN(+o)?Se(n,NaN):(t.year!=null&&o.setFullYear(t.year),t.month!=null&&(o=Gc(o,t.month)),t.date!=null&&o.setDate(t.date),t.hours!=null&&o.setHours(t.hours),t.minutes!=null&&o.setMinutes(t.minutes),t.seconds!=null&&o.setSeconds(t.seconds),t.milliseconds!=null&&o.setMilliseconds(t.milliseconds),o)}function Ym(n,t,r){const o=ve(n,r?.in);return o.setMilliseconds(t),o}function Km(n,t,r){const o=ve(n,r?.in);return o.setSeconds(t),o}function Rt(n,t,r){const o=ve(n,r?.in);return isNaN(+o)?Se(n,NaN):(o.setFullYear(t),o)}function R0(n,t,r){return Ot(n,-t,r)}function Gm(n,t,r){const{years:o=0,months:a=0,weeks:l=0,days:i=0,hours:c=0,minutes:s=0,seconds:d=0}=t,u=R0(n,a+o*12,r),h=Kc(u,i+l*7,r),f=s+c*60,m=(d+f*60)*1e3;return Se(n,+h-m)}function Jc(n,t,r){return Gl(n,-t,r)}function Jm(n,t,r="long"){return new Intl.DateTimeFormat("en-US",{hour:"numeric",timeZone:n,timeZoneName:r}).format(t).split(/\s/g).slice(2).join(" ")}const Xm={},br={};function n0(n,t){try{const o=(Xm[n]||=new Intl.DateTimeFormat("en-US",{timeZone:n,timeZoneName:"longOffset"}).format)(t).split("GMT")[1];return o in br?br[o]:Xc(o,o.split(":"))}catch{if(n in br)return br[n];const r=n?.match(Qm);return r?Xc(n,r.slice(1)):NaN}}const Qm=/([+-]\d\d):?(\d\d)?/;function Xc(n,t){const r=+(t[0]||0),o=+(t[1]||0),a=+(t[2]||0)/60;return br[n]=r*60+o>0?r*60+o+a:r*60-o-a}class on extends Date{constructor(...t){super(),t.length>1&&typeof t[t.length-1]=="string"&&(this.timeZone=t.pop()),this.internal=new Date,isNaN(n0(this.timeZone,this))?this.setTime(NaN):t.length?typeof t[0]=="number"&&(t.length===1||t.length===2&&typeof t[1]!="number")?this.setTime(t[0]):typeof t[0]=="string"?this.setTime(+new Date(t[0])):t[0]instanceof Date?this.setTime(+t[0]):(this.setTime(+new Date(...t)),es(this),c5(this)):this.setTime(Date.now())}static tz(t,...r){return r.length?new on(...r,t):new on(Date.now(),t)}withTimeZone(t){return new on(+this,t)}getTimezoneOffset(){const t=-n0(this.timeZone,this);return t>0?Math.floor(t):Math.ceil(t)}setTime(t){return Date.prototype.setTime.apply(this,arguments),c5(this),+this}[Symbol.for("constructDateFrom")](t){return new on(+new Date(t),this.timeZone)}}const Qc=/^(get|set)(?!UTC)/;Object.getOwnPropertyNames(Date.prototype).forEach(n=>{if(!Qc.test(n))return;const t=n.replace(Qc,"$1UTC");on.prototype[t]&&(n.startsWith("get")?on.prototype[n]=function(){return this.internal[t]()}:(on.prototype[n]=function(){return Date.prototype[t].apply(this.internal,arguments),e6(this),+this},on.prototype[t]=function(){return Date.prototype[t].apply(this,arguments),c5(this),+this}))});function c5(n){n.internal.setTime(+n),n.internal.setUTCSeconds(n.internal.getUTCSeconds()-Math.round(-n0(n.timeZone,n)*60))}function e6(n){Date.prototype.setFullYear.call(n,n.internal.getUTCFullYear(),n.internal.getUTCMonth(),n.internal.getUTCDate()),Date.prototype.setHours.call(n,n.internal.getUTCHours(),n.internal.getUTCMinutes(),n.internal.getUTCSeconds(),n.internal.getUTCMilliseconds()),es(n)}function es(n){const t=n0(n.timeZone,n),r=t>0?Math.floor(t):Math.ceil(t),o=new Date(+n);o.setUTCHours(o.getUTCHours()-1);const a=-new Date(+n).getTimezoneOffset(),l=-new Date(+o).getTimezoneOffset(),i=a-l,c=Date.prototype.getHours.apply(n)!==n.internal.getUTCHours();i&&c&&n.internal.setUTCMinutes(n.internal.getUTCMinutes()+i);const s=a-r;s&&Date.prototype.setUTCMinutes.call(n,Date.prototype.getUTCMinutes.call(n)+s);const d=new Date(+n);d.setUTCSeconds(0);const u=a>0?d.getSeconds():(d.getSeconds()-60)%60,h=Math.round(-(n0(n.timeZone,n)*60))%60;(h||u)&&(n.internal.setUTCSeconds(n.internal.getUTCSeconds()+h),Date.prototype.setUTCSeconds.call(n,Date.prototype.getUTCSeconds.call(n)+h+u));const f=n0(n.timeZone,n),p=f>0?Math.floor(f):Math.ceil(f),w=-new Date(+n).getTimezoneOffset()-p,g=p!==r,k=w-s;if(g&&k){Date.prototype.setUTCMinutes.call(n,Date.prototype.getUTCMinutes.call(n)+k);const x=n0(n.timeZone,n),v=x>0?Math.floor(x):Math.ceil(x),b=p-v;b&&(n.internal.setUTCMinutes(n.internal.getUTCMinutes()+b),Date.prototype.setUTCMinutes.call(n,Date.prototype.getUTCMinutes.call(n)+b))}}class z0 extends on{static tz(t,...r){return r.length?new z0(...r,t):new z0(Date.now(),t)}toISOString(){const[t,r,o]=this.tzComponents(),a=`${t}${r}:${o}`;return this.internal.toISOString().slice(0,-1)+a}toString(){return`${this.toDateString()} ${this.toTimeString()}`}toDateString(){const[t,r,o,a]=this.internal.toUTCString().split(" ");return`${t?.slice(0,-1)} ${o} ${r} ${a}`}toTimeString(){const t=this.internal.toUTCString().split(" ")[4],[r,o,a]=this.tzComponents();return`${t} GMT${r}${o}${a} (${Jm(this.timeZone,this)})`}toLocaleString(t,r){return Date.prototype.toLocaleString.call(this,t,{...r,timeZone:r?.timeZone||this.timeZone})}toLocaleDateString(t,r){return Date.prototype.toLocaleDateString.call(this,t,{...r,timeZone:r?.timeZone||this.timeZone})}toLocaleTimeString(t,r){return Date.prototype.toLocaleTimeString.call(this,t,{...r,timeZone:r?.timeZone||this.timeZone})}tzComponents(){const t=this.getTimezoneOffset(),r=t>0?"-":"+",o=String(Math.floor(Math.abs(t)/60)).padStart(2,"0"),a=String(Math.abs(t)%60).padStart(2,"0");return[r,o,a]}withTimeZone(t){return new z0(+this,t)}[Symbol.for("constructDateFrom")](t){return new z0(+new Date(t),this.timeZone)}}function Cr(){return e.h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.h("path",{d:"M29.333 8c0-2.208-1.792-4-4-4h-18.667c-2.208 0-4 1.792-4 4v18.667c0 2.208 1.792 4 4 4h18.667c2.208 0 4-1.792 4-4v-18.667zM26.667 8v18.667c0 0.736-0.597 1.333-1.333 1.333 0 0-18.667 0-18.667 0-0.736 0-1.333-0.597-1.333-1.333 0 0 0-18.667 0-18.667 0-0.736 0.597-1.333 1.333-1.333 0 0 18.667 0 18.667 0 0.736 0 1.333 0.597 1.333 1.333z"}),e.h("path",{d:"M20 2.667v5.333c0 0.736 0.597 1.333 1.333 1.333s1.333-0.597 1.333-1.333v-5.333c0-0.736-0.597-1.333-1.333-1.333s-1.333 0.597-1.333 1.333z"}),e.h("path",{d:"M9.333 2.667v5.333c0 0.736 0.597 1.333 1.333 1.333s1.333-0.597 1.333-1.333v-5.333c0-0.736-0.597-1.333-1.333-1.333s-1.333 0.597-1.333 1.333z"}),e.h("path",{d:"M4 14.667h24c0.736 0 1.333-0.597 1.333-1.333s-0.597-1.333-1.333-1.333h-24c-0.736 0-1.333 0.597-1.333 1.333s0.597 1.333 1.333 1.333z"})])}function t6(){return e.h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.h("path",{d:"M23.057 7.057l-16 16c-0.52 0.52-0.52 1.365 0 1.885s1.365 0.52 1.885 0l16-16c0.52-0.52 0.52-1.365 0-1.885s-1.365-0.52-1.885 0z"}),e.h("path",{d:"M7.057 8.943l16 16c0.52 0.52 1.365 0.52 1.885 0s0.52-1.365 0-1.885l-16-16c-0.52-0.52-1.365-0.52-1.885 0s-0.52 1.365 0 1.885z"})])}function ts(){return e.h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.h("path",{d:"M20.943 23.057l-7.057-7.057c0 0 7.057-7.057 7.057-7.057 0.52-0.52 0.52-1.365 0-1.885s-1.365-0.52-1.885 0l-8 8c-0.521 0.521-0.521 1.365 0 1.885l8 8c0.52 0.52 1.365 0.52 1.885 0s0.52-1.365 0-1.885z"})])}function ns(){return e.h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.h("path",{d:"M12.943 24.943l8-8c0.521-0.521 0.521-1.365 0-1.885l-8-8c-0.52-0.52-1.365-0.52-1.885 0s-0.52 1.365 0 1.885l7.057 7.057c0 0-7.057 7.057-7.057 7.057-0.52 0.52-0.52 1.365 0 1.885s1.365 0.52 1.885 0z"})])}function rs(){return e.h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.h("path",{d:"M16 1.333c-8.095 0-14.667 6.572-14.667 14.667s6.572 14.667 14.667 14.667c8.095 0 14.667-6.572 14.667-14.667s-6.572-14.667-14.667-14.667zM16 4c6.623 0 12 5.377 12 12s-5.377 12-12 12c-6.623 0-12-5.377-12-12s5.377-12 12-12z"}),e.h("path",{d:"M14.667 8v8c0 0.505 0.285 0.967 0.737 1.193l5.333 2.667c0.658 0.329 1.46 0.062 1.789-0.596s0.062-1.46-0.596-1.789l-4.596-2.298c0 0 0-7.176 0-7.176 0-0.736-0.597-1.333-1.333-1.333s-1.333 0.597-1.333 1.333z"})])}function as(){return e.h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.h("path",{d:"M24.943 19.057l-8-8c-0.521-0.521-1.365-0.521-1.885 0l-8 8c-0.52 0.52-0.52 1.365 0 1.885s1.365 0.52 1.885 0l7.057-7.057c0 0 7.057 7.057 7.057 7.057 0.52 0.52 1.365 0.52 1.885 0s0.52-1.365 0-1.885z"})])}function ls(){return e.h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.h("path",{d:"M7.057 12.943l8 8c0.521 0.521 1.365 0.521 1.885 0l8-8c0.52-0.52 0.52-1.365 0-1.885s-1.365-0.52-1.885 0l-7.057 7.057c0 0-7.057-7.057-7.057-7.057-0.52-0.52-1.365-0.52-1.885 0s-0.52 1.365 0 1.885z"})])}const is=Symbol("ContextKey"),n6=(n,t)=>{const{setTimeModelValue:r}=nt(),o=K6(n),a=e.ref(null),l=e.reactive({menuFocused:!1,shiftKeyInMenu:!1,isInputFocused:!1,isTextInputDate:!1,arrowNavigationLevel:0}),i=o.getDate(new Date),c=e.ref(""),s=e.ref([{month:Ne(i),year:Be(i)}]),d=e.reactive({hours:0,minutes:0,seconds:0});r(d,null,i,o.range.value.enabled);const u=e.computed({get:()=>a.value,set:w=>{a.value=w}}),h=e.computed(()=>w=>s.value[w]?s.value[w].month:0),f=e.computed(()=>w=>s.value[w]?s.value[w].year:0),p=(w,g)=>{l[w]=g},m=()=>{r(d,u.value,i,o.range.value.enabled)};e.provide(is,{rootProps:n,defaults:o,modelValue:u,state:e.readonly(l),rootEmit:t,calendars:s,month:h,year:f,time:d,today:i,inputValue:c,setState:p,updateTime:m,getDate:o.getDate})},_e=()=>{const n=e.inject(is);if(!n)throw new Error("Can't use context");return n};var zt=(n=>(n.month="month",n.year="year",n))(zt||{}),r0=(n=>(n.header="header",n.calendar="calendar",n.timePicker="timePicker",n))(r0||{}),wt=(n=>(n.month="month",n.year="year",n.calendar="calendar",n.time="time",n.minutes="minutes",n.hours="hours",n.seconds="seconds",n))(wt||{});const r6=["timestamp","date","iso"];var jt=(n=>(n.up="up",n.down="down",n.left="left",n.right="right",n))(jt||{}),Ie=(n=>(n.arrowUp="ArrowUp",n.arrowDown="ArrowDown",n.arrowLeft="ArrowLeft",n.arrowRight="ArrowRight",n.enter="Enter",n.space=" ",n.esc="Escape",n.tab="Tab",n.home="Home",n.end="End",n.pageUp="PageUp",n.pageDown="PageDown",n))(Ie||{}),j0=(n=>(n.MONTH_AND_YEAR="MM-yyyy",n.YEAR="yyyy",n.DATE="dd-MM-yyyy",n))(j0||{}),cs=(n=>(n[n.Sunday=0]="Sunday",n[n.Monday=1]="Monday",n[n.Tuesday=2]="Tuesday",n[n.Wednesday=3]="Wednesday",n[n.Thursday=4]="Thursday",n[n.Friday=5]="Friday",n[n.Saturday=6]="Saturday",n))(cs||{});const o6=()=>{const{rootProps:n,state:t}=_e(),r=e.computed(()=>t.arrowNavigationLevel),o=e.ref(-1),a=e.ref(-1);e.watch(r,(x,v)=>{k(x===0&&v>0)});const l=e.ref([]),i=e.ref(new Map),c=()=>{const x=Array.from(document.querySelectorAll(`[data-dp-action-element="${r.value}"]`)),v=new Map,b=new Map;for(const C of x){const A=C.getBoundingClientRect(),y=A.top,B=A.left;v.has(y)||v.set(y,[]),v.get(y).push(C),b.set(C,{row:y,col:B})}l.value=Array.from(v.entries()).sort((C,A)=>C[0]-A[0]).map(([C,A])=>s(A,b)),i.value=b},s=(x,v)=>x.sort((b,C)=>{const A=v.get(b),y=v.get(C);return A.col-y.col}),d=(x,v)=>{r.value===0&&(o.value=x,a.value=v)},u=x=>{if(![Ie.arrowUp,Ie.arrowDown,Ie.arrowLeft,Ie.arrowRight].includes(x.key))return;c(),x.preventDefault();const v=document.activeElement;if(!v?.hasAttribute("data-dp-action-element"))return;let b=-1,C=-1;for(let A=0;A<l.value.length;A++){const y=l.value[A].indexOf(v);if(y!==-1){b=A,C=y;break}}if(b!==-1)switch(x.key){case Ie.arrowLeft:return h(b,C);case Ie.arrowRight:return f(b,C);case Ie.arrowUp:return p(b,C);case Ie.arrowDown:return m(b,C);default:return}},h=(x,v)=>{if(v>0){const b=l.value[x][v-1];d(x,v-1),b&&b.focus()}},f=(x,v)=>{if(v<l.value[x].length-1){const b=l.value[x][v+1];d(x,v+1),b&&b.focus()}},p=(x,v)=>{if(x>0){const b=l.value[x-1],C=Math.min(v,b.length-1),A=b[C];d(x-1,C),A&&A.focus()}},m=(x,v)=>{if(x<l.value.length-1){const b=l.value[x+1],C=Math.min(v,b.length-1),A=b[C];d(x+1,C),A&&A.focus()}},w=()=>{e.nextTick().then(()=>{c();const x=l.value[o.value]?.[a.value];x&&g(x)})},g=x=>{requestAnimationFrame(()=>{requestAnimationFrame(()=>{x.focus({preventScroll:!0})})})},k=x=>{if(x)return w();const v=document.querySelector(`[data-dp-element-active="${r.value}"]`);if(v&&!x)g(v);else{const b=document.querySelector(`[data-dp-action-element="${r.value}"]`);b&&g(b)}};e.onMounted(()=>{n.arrowNavigation&&(k(!1),document.addEventListener("keydown",u))}),e.onUnmounted(()=>{n.arrowNavigation&&document.removeEventListener("keydown",u)})},a6=()=>{const{checkPartialRangeValue:n,checkRangeEnabled:t,isValidDate:r}=St(),{convertType:o,errorMapper:a}=nt(),{getDate:l,rootEmit:i,state:c,rootProps:s,inputValue:d,defaults:{textInput:u,range:h,multiDates:f,timeConfig:p,formats:m},modelValue:w,updateTime:g}=_e(),{setTime:k,getWeekFromDate:x}=ht(),{formatSelectedDate:v,formatForTextInput:b}=_n();e.watch(w,(I,Y)=>{i("internal-model-change",w.value),JSON.stringify(Y??{})!==JSON.stringify(I??{})&&g()},{deep:!0}),e.watch(h,(I,Y)=>{I.enabled!==Y.enabled&&(w.value=null)}),e.watch(()=>m.value.input,()=>{ce()});const C=I=>I?s.modelType?j(I):{hours:en(I),minutes:fn(I),seconds:p.value.enableSeconds?An(I):0}:null,A=I=>s.modelType?j(I):{month:Ne(I),year:Be(I)},y=I=>Array.isArray(I)?f.value.enabled?I.map(Y=>B(Y,Rt(l(),Y))):t(()=>[Rt(l(),I[0]),I[1]?Rt(l(),I[1]):n(h.value.partialRange)],h.value.enabled):Rt(l(),+I),B=(I,Y)=>(typeof I=="string"||typeof I=="number")&&s.modelType?he(I):Y,V=I=>Array.isArray(I)?[B(I[0],k(I[0])),B(I[1],k(I[1]))]:B(I,k(I)),S=I=>{const Y=Ve(l(),{date:1});return Array.isArray(I)?f.value.enabled?I.map(le=>B(le,Ve(Y,{month:+le.month,year:+le.year}))):t(()=>[B(I[0],Ve(Y,{month:+I[0].month,year:+I[0].year})),B(I[1],I[1]?Ve(Y,{month:+I[1].month,year:+I[1].year}):n(h.value.partialRange))],h.value.enabled):B(I,Ve(Y,{month:+I.month,year:+I.year}))},Z=I=>{if(Array.isArray(I))return I.map(Y=>he(Y));throw new Error(a.dateArr("multi-dates"))},D=I=>{if(Array.isArray(I)&&h.value.enabled){const Y=I[0],le=I[1];return[l(Array.isArray(Y)?Y[0]:null),Array.isArray(le)&&le.length?l(le[0]):null]}return l(I[0])},R=I=>s.modelAuto?Array.isArray(I)?[he(I[0]),he(I[1])]:s.autoApply?[he(I)]:[he(I),null]:Array.isArray(I)?t(()=>I[1]?[he(I[0]),I[1]?he(I[1]):n(h.value.partialRange)]:[he(I[0])],h.value.enabled):he(I),K=()=>{Array.isArray(w.value)&&h.value.enabled&&w.value.length===1&&w.value.push(n(h.value.partialRange))},_=()=>{const I=w.value;return[j(I[0]),I[1]?j(I[1]):n(h.value.partialRange)]},T=()=>Array.isArray(w.value)?w.value[1]?_():j(o(w.value[0])):[],E=()=>(w.value||[]).map(I=>j(I)),N=(I=!1)=>(I||K(),s.modelAuto?T():f.value.enabled?E():Array.isArray(w.value)?t(()=>_(),h.value.enabled):j(o(w.value))),F=I=>!I||Array.isArray(I)&&!I.length?null:s.timePicker?V(o(I)):s.monthPicker?S(o(I)):s.yearPicker?y(o(I)):f.value.enabled?Z(o(I)):s.weekPicker?D(o(I)):R(o(I)),P=I=>{if(c.isTextInputDate)return;const Y=F(I);r(o(Y))?(w.value=o(Y),ce()):(w.value=null,d.value="")},U=()=>w.value?f.value.enabled?w.value.map(I=>v(I)).join("; "):u.value.enabled?b():v(w.value):"",ce=()=>{d.value=U()},he=I=>s.modelType?r6.includes(s.modelType)?l(I):s.modelType==="format"&&typeof m.value.input=="string"?i5(I,m.value.input,l(),{locale:s.locale}):i5(I,s.modelType,l(),{locale:s.locale}):l(I),j=I=>I?s.modelType?s.modelType==="timestamp"?+I:s.modelType==="iso"?I.toISOString():s.modelType==="format"&&typeof m.value.input=="string"?v(I):v(I,s.modelType):I:null,ee=I=>{i("update:model-value",I)},se=I=>Array.isArray(w.value)?f.value.enabled?w.value.map(Y=>I(Y)):[I(w.value[0]),w.value[1]?I(w.value[1]):null]:I(o(w.value)),pe=()=>{if(Array.isArray(w.value)){const I=x(w.value[0],s.weekStart),Y=w.value[1]?x(w.value[1],s.weekStart):[];return[I.map(le=>l(le)),Y.map(le=>l(le))]}return x(w.value,s.weekStart).map(I=>l(I))},me=I=>ee(o(se(I))),be=()=>i("update:model-value",pe());return{checkBeforeEmit:()=>w.value?h.value.enabled?h.value.partialRange?w.value.length>=1:w.value.length===2:!!w.value:!1,parseExternalModelValue:P,formatInputValue:ce,emitModelValue:()=>(ce(),s.monthPicker?me(A):s.timePicker?me(C):s.yearPicker?me(Be):s.weekPicker?be():ee(N()))}},Mr=()=>{const{defaults:{transitions:n}}=_e(),t=e.computed(()=>o=>n.value?o?n.value.open:n.value.close:""),r=e.computed(()=>o=>n.value?o?n.value.menuAppearTop:n.value.menuAppearBottom:"");return{transitionName:t,showTransition:!!n.value,menuTransition:r}},Vr=n=>{const{today:t,time:r,modelValue:o,defaults:{range:a}}=_e(),{setTimeModelValue:l}=nt();e.watch(a,(i,c)=>{i.enabled!==c.enabled&&l(r,o.value,t,a.value.enabled)},{deep:!0}),e.watch(o,(i,c)=>{n&&JSON.stringify(i??{})!==JSON.stringify(c??{})&&n()},{deep:!0})},St=()=>{const{defaults:{safeDates:n,range:t,multiDates:r,filters:o,timeConfig:a},rootProps:l,getDate:i}=_e(),{getMapKeyType:c,getMapDate:s,errorMapper:d,convertType:u}=nt(),{isDateBefore:h,isDateAfter:f,isDateEqual:p,resetDate:m,getDaysInBetween:w,setTimeValue:g,getTimeObj:k,setTime:x}=ht(),v=H=>n.value.disabledDates?typeof n.value.disabledDates=="function"?n.value.disabledDates(i(H)):!!s(H,n.value.disabledDates):!1,b=H=>n.value.maxDate?l.yearPicker?Be(H)>Be(n.value.maxDate):f(H,n.value.maxDate):!1,C=H=>n.value.minDate?l.yearPicker?Be(H)<Be(n.value.minDate):h(H,n.value.minDate):!1,A=H=>{if(!H)return!1;const X=b(H),ie=C(H),O=v(H),te=o.value.months.map(L=>+L).includes(Ne(H)),M=o.value.weekDays?.length?o.value.weekDays.some(L=>+L===Yf(H)):!1,W=Z(H),$=Be(H),ne=$<+l.yearRange[0]||$>+l.yearRange[1];return!(X||ie||O||te||ne||M||W)},y=(H,X)=>h(...be(n.value.minDate,H,X))||p(...be(n.value.minDate,H,X)),B=(H,X)=>f(...be(n.value.maxDate,H,X))||p(...be(n.value.maxDate,H,X)),V=(H,X,ie)=>{let O=!1;return n.value.maxDate&&ie&&B(H,X)&&(O=!0),n.value.minDate&&!ie&&y(H,X)&&(O=!0),O},S=(H,X,ie,O)=>{let te=!1;return O&&(n.value.minDate||n.value.maxDate)?n.value.minDate&&n.value.maxDate?te=V(H,X,ie):(n.value.minDate&&y(H,X)||n.value.maxDate&&B(H,X))&&(te=!0):te=!0,te},Z=H=>Array.isArray(n.value.allowedDates)&&!n.value.allowedDates.length?!0:n.value.allowedDates?!s(H,n.value.allowedDates,c(l.monthPicker,l.yearPicker)):!1,D=H=>!A(H),R=H=>t.value.noDisabledRange?!Jl({start:H[0],end:H[1]}).some(X=>D(X)):!0,K=H=>{if(H){const X=Be(H);return X>=+l.yearRange[0]&&X<=l.yearRange[1]}return!0},_=(H,X)=>!!(Array.isArray(H)&&H[X]&&(t.value.maxRange||t.value.minRange)&&K(H[X])),T=(H,X,ie=0)=>{if(_(X,ie)&&K(H)){const O=_c(H,X[ie]),te=w(X[ie],H),M=te.length===1?0:te.filter($=>D($)).length,W=Math.abs(O)-(t.value.minMaxRawRange?0:M);if(t.value.minRange&&t.value.maxRange)return W>=+t.value.minRange&&W<=+t.value.maxRange;if(t.value.minRange)return W>=+t.value.minRange;if(t.value.maxRange)return W<=+t.value.maxRange}return!0},E=()=>!a.value.enableTimePicker||l.monthPicker||l.yearPicker||a.value.ignoreTimeValidation,N=H=>Array.isArray(H)?[H[0]?g(H[0]):null,H[1]?g(H[1]):null]:g(H),F=(H,X,ie)=>X?H.find(O=>+O.hours===en(X)&&O.minutes==="*"?!0:+O.minutes===fn(X)&&+O.hours===en(X))&&ie:!1,P=(H,X,ie)=>{const[O,te]=H,[M,W]=X;return!F(O,M,ie)&&!F(te,W,ie)&&ie},U=(H,X)=>{const ie=Array.isArray(X)?X:[X];return Array.isArray(l.disabledTimes)?Array.isArray(l.disabledTimes[0])?P(l.disabledTimes,ie,H):!ie.some(O=>F(l.disabledTimes,O,H)):H},ce=(H,X)=>{const ie=Array.isArray(X)?[k(X[0]),X[1]?k(X[1]):void 0]:k(X),O=!l.disabledTimes(ie);return H&&O},he=(H,X)=>l.disabledTimes?Array.isArray(l.disabledTimes)?U(X,H):ce(X,H):X,j=H=>{let X=!0;if(!H||E())return!0;const ie=!n.value.minDate&&!n.value.maxDate?N(H):H;return(l.maxTime||n.value.maxDate)&&(X=Y(l.maxTime,n.value.maxDate,"max",u(ie),X)),(l.minTime||n.value.minDate)&&(X=Y(l.minTime,n.value.minDate,"min",u(ie),X)),he(H,X)},ee=H=>{if(!l.monthPicker)return!0;let X=!0;const ie=i(m(H));if(n.value.minDate&&n.value.maxDate){const O=i(m(n.value.minDate)),te=i(m(n.value.maxDate));return f(ie,O)&&h(ie,te)||p(ie,O)||p(ie,te)}if(n.value.minDate){const O=i(m(n.value.minDate));X=f(ie,O)||p(ie,O)}if(n.value.maxDate){const O=i(m(n.value.maxDate));X=h(ie,O)||p(ie,O)}return X},se=e.computed(()=>H=>!a.value.enableTimePicker||a.value.ignoreTimeValidation?!0:j(H)),pe=e.computed(()=>H=>l.monthPicker?Array.isArray(H)&&(t.value.enabled||r.value.enabled)?!H.filter(X=>!ee(X)).length:ee(H):!0),me=(H,X,ie)=>{if(!X||ie&&!n.value.maxDate||!ie&&!n.value.minDate)return!1;const O=ie?Ot(H,1):R0(H,1),te=[Ne(O),Be(O)];return ie?!B(...te):!y(...te)},be=(H,X,ie)=>[Ve(i(H),{date:1}),Ve(i(),{month:X,year:ie,date:1})],I=(H,X,ie,O)=>{if(!H)return!0;if(O){const te=ie==="max"?mn(H,X):tn(H,X),M={seconds:0,milliseconds:0};return te||O0(Ve(H,M),Ve(X,M))}return ie==="max"?H.getTime()<=X.getTime():H.getTime()>=X.getTime()},Y=(H,X,ie,O,te)=>{if(Array.isArray(O)){const W=le(H,O[0],X),$=le(H,O[1],X);return I(O[0],W,ie,!!X)&&I(O[1],$,ie,!!X)&&te}const M=le(H,O,X);return I(O,M,ie,!!X)&&te},le=(H,X,ie)=>H?x(H,X):i(ie??X);return{isDisabled:D,validateDate:A,validateMonthYearInRange:S,isDateRangeAllowed:R,checkMinMaxRange:T,isValidTime:j,validateMonthYear:me,validateMinDate:y,validateMaxDate:B,isValidDate:H=>Array.isArray(H)?yr(H[0])&&(H[1]?yr(H[1]):!0):H?yr(H):!1,checkPartialRangeValue:H=>{if(H)return null;throw new Error(d.prop("partial-range"))},checkRangeEnabled:(H,X)=>{if(X)return H();throw new Error(d.prop("range"))},checkMinMaxValue:(H,X,ie)=>{const O=ie!=null,te=X!=null;if(!O&&!te)return!1;const M=+ie,W=+X;return O&&te?+H>M||+H<W:O?+H>M:te?+H<W:!1},isTimeValid:se,isMonthValid:pe}},l6=n=>{const{rootEmit:t,rootProps:r,defaults:{timeConfig:o,flow:a}}=_e(),l=e.ref(0),i=e.reactive({[r0.timePicker]:!o.value.enableTimePicker||r.timePicker||r.monthPicker,[r0.calendar]:!1,[r0.header]:!1}),c=e.computed(()=>r.monthPicker||r.timePicker),s=p=>{if(a.value?.steps?.length){if(!p&&c.value)return f();i[p]=!0,Object.keys(i).filter(m=>!i[m]).length||f()}},d=()=>{a.value?.steps?.length&&l.value!==-1&&(l.value+=1,t("flow-step",l.value),f()),a.value?.steps?.length===l.value&&e.nextTick().then(()=>u())},u=()=>{l.value=-1},h=(p,m,...w)=>{a.value?.steps[l.value]===p&&n.value&&n.value[m]?.(...w)},f=(p=0)=>{p&&(l.value+=p),h(wt.month,"toggleMonthPicker",!0),h(wt.year,"toggleYearPicker",!0),h(wt.calendar,"toggleTimePicker",!1,!0),h(wt.time,"toggleTimePicker",!0,!0);const m=a.value?.steps[l.value];(m===wt.hours||m===wt.minutes||m===wt.seconds)&&h(m,"toggleTimePicker",!0,!0,m)};return{childMount:s,updateFlowStep:d,resetFlow:u,handleFlow:f,flowStep:l}};function s5(n){return(t={})=>{const r=t.width?String(t.width):n.defaultWidth;return n.formats[r]||n.formats[n.defaultWidth]}}function Ar(n){return(t,r)=>{const o=r?.context?String(r.context):"standalone";let a;if(o==="formatting"&&n.formattingValues){const i=n.defaultFormattingWidth||n.defaultWidth,c=r?.width?String(r.width):i;a=n.formattingValues[c]||n.formattingValues[i]}else{const i=n.defaultWidth,c=r?.width?String(r.width):n.defaultWidth;a=n.values[c]||n.values[i]}const l=n.argumentCallback?n.argumentCallback(t):t;return a[l]}}function _r(n){return(t,r={})=>{const o=r.width,a=o&&n.matchPatterns[o]||n.matchPatterns[n.defaultMatchWidth],l=t.match(a);if(!l)return null;const i=l[0],c=o&&n.parsePatterns[o]||n.parsePatterns[n.defaultParseWidth],s=Array.isArray(c)?c6(c,h=>h.test(i)):i6(c,h=>h.test(i));let d;d=n.valueCallback?n.valueCallback(s):s,d=r.valueCallback?r.valueCallback(d):d;const u=t.slice(i.length);return{value:d,rest:u}}}function i6(n,t){for(const r in n)if(Object.prototype.hasOwnProperty.call(n,r)&&t(n[r]))return r}function c6(n,t){for(let r=0;r<n.length;r++)if(t(n[r]))return r}function s6(n){return(t,r={})=>{const o=t.match(n.matchPattern);if(!o)return null;const a=o[0],l=t.match(n.parsePattern);if(!l)return null;let i=n.valueCallback?n.valueCallback(l[0]):l[0];i=r.valueCallback?r.valueCallback(i):i;const c=t.slice(a.length);return{value:i,rest:c}}}const d6={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}},u6=(n,t,r)=>{let o;const a=d6[n];return typeof a=="string"?o=a:t===1?o=a.one:o=a.other.replace("{{count}}",t.toString()),r?.addSuffix?r.comparison&&r.comparison>0?"in "+o:o+" ago":o},h6={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"},p6=(n,t,r,o)=>h6[n],f6={narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},m6={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},w6={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},g6={narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},k6={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},x6={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},v6=(n,t)=>{const r=Number(n),o=r%100;if(o>20||o<10)switch(o%10){case 1:return r+"st";case 2:return r+"nd";case 3:return r+"rd"}return r+"th"},y6={ordinalNumber:v6,era:Ar({values:f6,defaultWidth:"wide"}),quarter:Ar({values:m6,defaultWidth:"wide",argumentCallback:n=>n-1}),month:Ar({values:w6,defaultWidth:"wide"}),day:Ar({values:g6,defaultWidth:"wide"}),dayPeriod:Ar({values:k6,defaultWidth:"wide",formattingValues:x6,defaultFormattingWidth:"wide"})},B6=/^(\d+)(th|st|nd|rd)?/i,E6=/\d+/i,b6={narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},C6={any:[/^b/i,/^(a|c)/i]},M6={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},V6={any:[/1/i,/2/i,/3/i,/4/i]},A6={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},_6={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},N6={narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},Z6={narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},S6={narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},$6={any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},I6={ordinalNumber:s6({matchPattern:B6,parsePattern:E6,valueCallback:n=>parseInt(n,10)}),era:_r({matchPatterns:b6,defaultMatchWidth:"wide",parsePatterns:C6,defaultParseWidth:"any"}),quarter:_r({matchPatterns:M6,defaultMatchWidth:"wide",parsePatterns:V6,defaultParseWidth:"any",valueCallback:n=>n+1}),month:_r({matchPatterns:A6,defaultMatchWidth:"wide",parsePatterns:_6,defaultParseWidth:"any"}),day:_r({matchPatterns:N6,defaultMatchWidth:"wide",parsePatterns:Z6,defaultParseWidth:"any"}),dayPeriod:_r({matchPatterns:S6,defaultMatchWidth:"any",parsePatterns:$6,defaultParseWidth:"any"})},H6={full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},T6={full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},L6={full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},D6={date:s5({formats:H6,defaultWidth:"full"}),time:s5({formats:T6,defaultWidth:"full"}),dateTime:s5({formats:L6,defaultWidth:"full"})},P6={code:"en-US",formatDistance:u6,formatLong:D6,formatRelative:p6,localize:y6,match:I6,options:{weekStartsOn:0,firstWeekContainsDate:1}},ss={noDisabledRange:!1,showLastInRange:!0,minMaxRawRange:!1,partialRange:!0,disableTimeRangeValidation:!1,maxRange:void 0,minRange:void 0,autoRange:void 0,fixedStart:!1,fixedEnd:!1,autoSwitchStartEnd:!0},O6={allowStopPropagation:!0,closeOnScroll:!1,modeHeight:255,allowPreventDefault:!1,closeOnClearValue:!0,closeOnAutoApply:!0,noSwipe:!1,keepActionRow:!1,onClickOutside:void 0,tabOutClosesMenu:!0,arrowLeft:void 0,keepViewOnOffsetClick:!1,timeArrowHoldThreshold:0,shadowDom:!1,mobileBreakpoint:600,setDateOnMenuClose:!1,escClose:!0,spaceConfirm:!0,monthChangeOnArrows:!0,monthChangeOnScroll:!0},ds={enterSubmit:!0,tabSubmit:!0,openMenu:"open",selectOnFocus:!1,rangeSeparator:" - ",escClose:!0,format:void 0,maskFormat:void 0,applyOnBlur:!1,separators:void 0},R6={dates:[],years:[],months:[],quarters:[],weeks:[],weekdays:[],options:{highlightDisabled:!1}},z6={showSelect:!0,showCancel:!0,showNow:!1,showPreview:!0,selectBtnLabel:"Select",cancelBtnLabel:"Cancel",nowBtnLabel:"Now",nowBtnRound:void 0},j6={toggleOverlay:"Toggle overlay",menu:"Datepicker menu",input:"Datepicker input",openTimePicker:"Open time picker",closeTimePicker:"Close time Picker",incrementValue:n=>`Increment ${n}`,decrementValue:n=>`Decrement ${n}`,openTpOverlay:n=>`Open ${n} overlay`,amPmButton:"Switch AM/PM mode",openYearsOverlay:"Open years overlay",openMonthsOverlay:"Open months overlay",nextMonth:"Next month",prevMonth:"Previous month",nextYear:"Next year",prevYear:"Previous year",day:void 0,weekDay:void 0,clearInput:"Clear value",calendarIcon:"Calendar icon",timePicker:"Time picker",monthPicker:n=>`Month picker${n?" overlay":""}`,yearPicker:n=>`Year picker${n?" overlay":""}`,timeOverlay:n=>`${n} overlay`},us={menuAppearTop:"dp-menu-appear-top",menuAppearBottom:"dp-menu-appear-bottom",open:"dp-slide-down",close:"dp-slide-up",next:"calendar-next",previous:"calendar-prev",vNext:"dp-slide-up",vPrevious:"dp-slide-down"},F6={weekDays:[],months:[],years:[],times:{hours:[],minutes:[],seconds:[]}},U6={month:"LLL",year:"yyyy",weekDay:"EEEEEE",quarter:"MMMM",day:"d",input:void 0,preview:void 0},W6={enableTimePicker:!0,ignoreTimeValidation:!1,enableSeconds:!1,enableMinutes:!0,is24:!0,noHoursOverlay:!1,noMinutesOverlay:!1,noSecondsOverlay:!1,hoursGridIncrement:1,minutesGridIncrement:5,secondsGridIncrement:5,hoursIncrement:1,minutesIncrement:1,secondsIncrement:1,timePickerInline:!1,startTime:void 0},q6={flowStep:0,menuWrapRef:null,collapse:!1},Y6={weekStart:cs.Monday,yearRange:()=>[1900,2100],ui:()=>({}),locale:()=>P6,dark:!1,transitions:!0,hideNavigation:()=>[],vertical:!1,hideMonthYearSelect:!1,disableYearSelect:!1,autoApply:!1,disabledDates:()=>[],hideOffsetDates:!1,noToday:!1,markers:()=>[],presetDates:()=>[],preventMinMaxNavigation:!1,reverseYears:!1,weekPicker:!1,arrowNavigation:!1,monthPicker:!1,yearPicker:!1,quarterPicker:!1,timePicker:!1,modelAuto:!1,multiDates:!1,range:!1,inline:!1,sixWeeks:!1,focusStartDate:!1,yearFirst:!1,loading:!1,centered:!1},hs={name:void 0,required:!1,autocomplete:"off",state:void 0,clearable:!0,alwaysClearable:!1,hideInputIcon:!1,id:void 0,inputmode:"none"},Io={type:"local",hideOnOffsetDates:!1,label:"W"},K6=n=>{const{getMapKey:t,getMapKeyType:r,getTimeObjFromCurrent:o}=nt();function a(E,N){let F;return n.timezone?F=new z0(E??new Date,n.timezone):F=E?new Date(E):new Date,N?Ve(F,{hours:0,minutes:0,seconds:0,milliseconds:0}):F}const l=()=>{const E=R.value.enableSeconds?":ss":"",N=R.value.enableMinutes?":mm":"";return R.value.is24?`HH${N}${E}`:`hh${N}${E} aa`},i=()=>n.monthPicker?"MM/yyyy":n.timePicker?l():n.weekPicker?`${A.value?.type==="iso"?"II":"ww"}-RR`:n.yearPicker?"yyyy":n.quarterPicker?"QQQ/yyyy":R.value.enableTimePicker?`MM/dd/yyyy, ${l()}`:"MM/dd/yyyy",c=E=>o(a(),E,R.value.enableSeconds),s=()=>V.value.enabled?R.value.startTime&&Array.isArray(R.value.startTime)?[c(R.value.startTime[0]),c(R.value.startTime[1])]:null:R.value.startTime&&!Array.isArray(R.value.startTime)?c(R.value.startTime):null,d=E=>E?typeof E=="boolean"?E?2:0:Math.max(+E,2):0,u=E=>{const N=r(n.monthPicker,n.yearPicker);return new Map(E.map(F=>{const P=a(F,h.value);return[t(P,N),P]}))},h=e.computed(()=>n.monthPicker||n.yearPicker||n.quarterPicker),f=e.computed(()=>{const E=typeof n.multiCalendars=="object"&&n.multiCalendars,N={static:!0,solo:!1};if(!n.multiCalendars)return{...N,count:d(!1)};const F=E?n.multiCalendars:{},P=E?F.count??!0:n.multiCalendars,U=d(P);return Object.assign(N,F,{count:U})}),p=e.computed(()=>s()),m=e.computed(()=>({...j6,...n.ariaLabels})),w=e.computed(()=>({...F6,...n.filters})),g=e.computed(()=>typeof n.transitions=="boolean"?n.transitions?us:!1:{...us,...n.transitions}),k=e.computed(()=>({...z6,...n.actionRow})),x=e.computed(()=>typeof n.textInput=="object"?{...ds,...n.textInput,format:typeof n.textInput.format=="string"?n.textInput.format:Z.value.input,pattern:n.textInput.format??Z.value.input,enabled:!0}:{...ds,format:Z.value.input,pattern:Z.value.input,enabled:n.textInput}),v=e.computed(()=>{const E={input:!1};return typeof n.inline=="object"?{...E,...n.inline,enabled:!0}:{enabled:n.inline,...E}}),b=e.computed(()=>({...O6,...n.config})),C=e.computed(()=>typeof n.highlight=="function"?n.highlight:{...R6,...n.highlight}),A=e.computed(()=>typeof n.weekNumbers=="object"?{type:n.weekNumbers?.type??Io.type,hideOnOffsetDates:n.weekNumbers?.hideOnOffsetDates??Io.hideOnOffsetDates,label:n.weekNumbers.label??Io.label}:n.weekNumbers?Io:void 0),y=e.computed(()=>typeof n.multiDates=="boolean"?{enabled:n.multiDates,dragSelect:!0,limit:null}:{enabled:!!n.multiDates,limit:n.multiDates?.limit?+n.multiDates.limit:null,dragSelect:n.multiDates?.dragSelect??!0}),B=e.computed(()=>({minDate:n.minDate?a(n.minDate):null,maxDate:n.maxDate?a(n.maxDate):null,disabledDates:Array.isArray(n.disabledDates)?u(n.disabledDates):n.disabledDates,allowedDates:Array.isArray(n.allowedDates)?u(n.allowedDates):null,highlight:typeof C.value=="object"&&Array.isArray(C.value.dates)?u(C.value.dates):C.value,markers:n.markers?.length?new Map(n.markers.map(E=>{const N=a(E.date);return[t(N,j0.DATE),E]})):null})),V=e.computed(()=>typeof n.range=="object"?{enabled:!0,...ss,...n.range}:{enabled:n.range,...ss}),S=e.computed(()=>({...Object.fromEntries(Object.keys(n.ui).map(E=>{const N=E,F=n.ui[N];if(N==="dayClass")return[N,n.ui[N]];const P=typeof n.ui[N]=="string"?{[F]:!0}:Object.fromEntries(F.map(U=>[U,!0]));return[E,P]}))})),Z=e.computed(()=>({...U6,...n.formats,input:n.formats?.input??i(),preview:n.formats?.preview??i()})),D=e.computed(()=>{if(n.teleport)return typeof n.teleport=="string"?n.teleport:typeof n.teleport=="boolean"?"body":n.teleport}),R=e.computed(()=>({...W6,...n.timeConfig})),K=e.computed(()=>{if(n.flow)return{steps:[],partial:!1,...n.flow}}),_=e.computed(()=>{const E=x.value.enabled?"text":"none";return n.inputAttrs?{...hs,inputmode:E,...n.inputAttrs}:{...hs,inputmode:E}}),T=e.computed(()=>({offset:n.floating?.offset??10,arrow:n.floating?.arrow??!0,strategy:n.floating?.strategy??void 0,placement:n.floating?.placement??void 0,flip:n.floating?.flip??!0,shift:n.floating?.shift??!0}));return{transitions:g,multiCalendars:f,startTime:p,ariaLabels:m,filters:w,actionRow:k,textInput:x,inline:v,config:b,highlight:C,weekNumbers:A,range:V,safeDates:B,multiDates:y,ui:S,formats:Z,teleport:D,timeConfig:R,flow:K,inputAttrs:_,floatingConfig:T,getDate:a}},nt=()=>{const n=(x,v)=>Zt(x,v??j0.DATE),t=(x,v)=>x?j0.MONTH_AND_YEAR:v?j0.YEAR:j0.DATE,r=(x,v,b)=>v.get(n(x,b)),o=x=>x,a=x=>x===0?x:!x||Number.isNaN(+x)?null:+x,l=()=>["a[href]","area[href]","input:not([disabled]):not([type='hidden'])","select:not([disabled])","textarea:not([disabled])","button:not([disabled])","[tabindex]:not([tabindex='-1'])","[data-datepicker-instance]"].join(", "),i=(x,v)=>{let b=[...document.querySelectorAll(l())];b=b.filter(A=>!x.contains(A)||"datepicker-instance"in A.dataset);const C=b.indexOf(x);if(C>=0&&(v?C-1>=0:C+1<=b.length))return b[C+(v?-1:1)]},c=x=>String(x).padStart(2,"0"),s=(x,v)=>x?.querySelector(`[data-dp-element="${v}"]`),d=(x,v,b=!1)=>{x&&v.allowStopPropagation&&(b&&x.stopImmediatePropagation(),x.stopPropagation())},u=(x,v,b=!1,C)=>{if(x.key===Ie.enter||x.key===Ie.space)return b&&x.preventDefault(),v();if(C)return C(x)},h=(x,v)=>{v.allowStopPropagation&&x.stopPropagation(),v.allowPreventDefault&&x.preventDefault()},f=x=>{if(x)return[...x.querySelectorAll("input, button, select, textarea, a[href]")][0]},p=()=>"ontouchstart"in globalThis||navigator.maxTouchPoints>0,m=x=>[12,1,2,3,4,5,6,7,8,9,10,11,12,1,2,3,4,5,6,7,8,9,10,11][x],w=x=>{const v=[],b=C=>C.filter(A=>!!A);for(let C=0;C<x.length;C+=3){const A=[x[C],x[C+1],x[C+2]];v.push(b(A))}return v},g={prop:x=>`"${x}" prop must be enabled!`,dateArr:x=>`You need to use array as "model-value" binding in order to support "${x}"`},k=(x,v,b,C,A)=>{const y={hours:en,minutes:fn,seconds:An};if(!v)return C?[y[x](b),y[x](b)]:y[x](b);if(Array.isArray(v)&&C){const B=v[0]??b,V=v[1];return[y[x](B),V?y[x](V):A[x][1]??y[x](b)]}return Array.isArray(v)&&!C?y[x](v[v.length-1]??b):y[x](v)};return{getMapKey:n,getMapKeyType:t,getMapDate:r,convertType:o,getNumVal:a,findNextFocusableElement:i,padZero:c,getElWithin:s,checkStopPropagation:d,checkKeyDown:u,handleEventPropagation:h,findFocusableEl:f,isTouchDevice:p,hoursToAmPmHours:m,getGroupedList:w,setTimeModelValue:(x,v,b,C)=>{x.hours=k("hours",v,b,C,x),x.minutes=k("minutes",v,b,C,x),x.seconds=k("seconds",v,b,C,x)},getTimeObjFromCurrent:(x,v,b)=>{const C={hours:en(x),minutes:fn(x),seconds:b?An(x):0};return Object.assign(C,v)},errorMapper:g}},ht=()=>{const{getDate:n}=_e(),{getMapDate:t,getGroupedList:r}=nt(),o=(k,x)=>{if(!k)return n();const v=n(k),b=Ve(v,{hours:0,minutes:0,seconds:0,milliseconds:0});return x?rf(b):b},a=(k,x)=>{const v=n(x);return Ve(v,{hours:+(k.hours??en(v)),minutes:+(k.minutes??fn(v)),seconds:+(k.seconds??An(v)),milliseconds:0})},l=(k,x)=>{const v=Nt(k,{weekStartsOn:+x}),b=Xl(k,{weekStartsOn:+x});return[v,b]},i=(k,x)=>!k||!x?!1:mn(o(k),o(x)),c=(k,x)=>!k||!x?!1:O0(o(k),o(x)),s=(k,x)=>!k||!x?!1:tn(o(k),o(x)),d=(k,x,v)=>k?.[0]&&k?.[1]?s(v,k[0])&&i(v,k[1]):k?.[0]&&x?s(v,k[0])&&i(v,x)||i(v,k[0])&&s(v,x):!1,u=(k,x)=>{const v=s(k,x)?x:k,b=s(x,k)?x:k;return Jl({start:v,end:b})},h=k=>`dp-${Zt(k,"yyyy-MM-dd")}`,f=k=>o(Ve(n(k),{date:1})),p=(k,x)=>{if(x){const v=Be(n(x));if(v>k)return 12;if(v===k)return Ne(n(x))}},m=(k,x)=>{if(x){const v=Be(n(x));return v<k?-1:v===k?Ne(n(x)):void 0}},w=k=>{if(k)return Be(n(k))},g=k=>({hours:en(k),minutes:fn(k),seconds:An(k)});return{resetDateTime:o,groupListAndMap:(k,x)=>r(k).map(v=>v.map(b=>{const{active:C,disabled:A,isBetween:y,highlighted:B}=x(b);return{...b,active:C,disabled:A,className:{dp__overlay_cell_active:C,dp__overlay_cell:!C,dp__overlay_cell_disabled:A,dp__overlay_cell_pad:!0,dp__overlay_cell_active_disabled:A&&C,dp__cell_in_between:y,"dp--highlighted":B}}})),setTime:a,getWeekFromDate:l,isDateAfter:s,isDateBefore:i,isDateBetween:d,isDateEqual:c,getDaysInBetween:u,getCellId:h,resetDate:f,getMinMonth:p,getMaxMonth:m,getYearFromDate:w,getTimeObj:g,setTimeValue:k=>Ve(n(),g(k)),sanitizeTime:(k,x,v)=>x&&(v||v===0)?Object.fromEntries(["hours","minutes","seconds"].map(b=>b===x?[b,v]:[b,Number.isNaN(+k[b])?void 0:+k[b]])):{hours:Number.isNaN(+k.hours)?void 0:+k.hours,minutes:Number.isNaN(+k.minutes)?void 0:+k.minutes,seconds:Number.isNaN(+(k.seconds??""))?void 0:+k.seconds},getBeforeAndAfterInRange:(k,x)=>{const v=Kc(o(x),k),b=_t(o(x),k);return{before:v,after:b}},isModelAuto:k=>Array.isArray(k)?!!k[0]&&!!k[1]:!1,matchDate:(k,x)=>k?x?x instanceof Map?!!t(k,x):x(n(k)):!1:!0,checkHighlightMonth:(k,x,v)=>typeof k=="function"?k({month:x,year:v}):k.months.some(b=>b.month===x&&b.year===v),checkHighlightYear:(k,x)=>typeof k=="function"?k(x):k.years.includes(x)}},Ho=()=>{const{defaults:{config:n}}=_e(),t=e.ref(0);e.onMounted(()=>{r(),globalThis.addEventListener("resize",r,{passive:!0})}),e.onUnmounted(()=>{globalThis.removeEventListener("resize",r)});const r=()=>{t.value=globalThis.document.documentElement.clientWidth};return{isMobile:e.computed(()=>t.value<=n.value.mobileBreakpoint?!0:void 0)}},_n=()=>{const{getDate:n,state:t,modelValue:r,rootProps:o,defaults:{formats:a,textInput:l}}=_e(),i=m=>Zt(Rt(n(),m),a.value.year,{locale:o.locale}),c=m=>Zt(Gc(n(),m),a.value.month,{locale:o.locale}),s=m=>Zt(m,a.value.weekDay,{locale:o.locale}),d=m=>Zt(m,a.value.quarter,{locale:o.locale}),u=(m,w)=>[m,w].map(g=>d(g)).join("-"),h=m=>Zt(m,a.value.day,{locale:o.locale}),f=(m,w,g)=>{const k=g?a.value.preview:a.value.input;if(!m)return"";if(typeof k=="function")return k(m);const x=w??k,v={locale:o.locale};return Array.isArray(m)?`${Zt(m[0],x,v)}${o.modelAuto&&!m[1]?"":l.value.rangeSeparator}${m[1]?Zt(m[1],x,v):""}`:Zt(m,x,v)},p=()=>{const m=w=>Zt(w,l.value.format);return Array.isArray(r.value)?`${m(r.value[0])} ${l.value.rangeSeparator} ${r.value[1]?m(r.value[1]):""}`:""};return{formatYear:i,formatMonth:c,formatWeekDay:s,formatQuarter:d,formatSelectedDate:f,formatForTextInput:()=>t.isInputFocused&&r.value?Array.isArray(r.value)?p():Zt(r.value,l.value.format):f(r.value),formatPreview:m=>f(m,void 0,!0),formatQuarterText:u,formatDay:h}},To=()=>{const{rootProps:n}=_e(),{formatYear:t,formatMonth:r}=_n();return{getMonths:()=>[0,1,2,3,4,5,6,7,8,9,10,11].map(o=>({text:r(o),value:o})),getYears:()=>{const o=[];for(let a=+n.yearRange[0];a<=+n.yearRange[1];a++)o.push({value:+a,text:t(a)});return n.reverseYears?o.reverse():o},isOutOfYearRange:o=>o<+n.yearRange[0]||o>+n.yearRange[1]}},G6=n=>({openMenu:()=>n.value?.openMenu(),closeMenu:()=>n.value?.closeMenu(),selectDate:()=>n.value?.selectDate(),clearValue:()=>n.value?.clearValue(),formatInputValue:()=>n.value?.formatInputValue(),updateInternalModelValue:t=>n.value?.updateInternalModelValue(t),setMonthYear:(t,r)=>n.value?.setMonthYear(t,r),parseModel:()=>n.value?.parseModel(),switchView:(t,r)=>n.value?.switchView(t,r),handleFlow:()=>n.value?.handleFlow(),toggleMenu:()=>n.value?.toggleMenu(),dpMenuRef:()=>n.value?.dpMenuRef(),dpWrapMenuRef:()=>n.value?.dpWrapMenuRef(),inputRef:()=>n.value?.inputRef()}),F0=()=>({boolHtmlAttribute:n=>n?!0:void 0}),J6=()=>{const{getDate:n,rootProps:t,defaults:{textInput:r,startTime:o,timeConfig:a}}=_e(),{getTimeObjFromCurrent:l}=nt(),i=e.ref(!1),c=e.computed(()=>Array.isArray(o.value)?o.value[0]:o.value??l(n(),{},a.value.enableSeconds)),s=(u,h)=>{const f=/[^a-zA-Z]+/g,p=/\D+/g,m=h.split(p),w=u.split(f),g=u.match(f)||[],k=h.match(p)||[];let x="";for(let v=0;v<m.length&&v<w.length;v++){v>0&&k[v-1]&&(x+=g[v-1]||k[v-1]);const b=m[v]?.length;x+=w[v]?.slice(0,b)}return x},d=(u,h,f)=>{const p=i5(u,s(h,u),n(),{locale:t.locale});return yr(p)&&Zc(p)?f||i.value?p:Ve(p,{hours:+c.value.hours,minutes:+c.value.minutes,seconds:+(c.value.seconds??0),milliseconds:0}):null};return{textPasted:i,parseFreeInput:(u,h)=>{if(typeof r.value.pattern=="string")return d(u,r.value.pattern,h);if(Array.isArray(r.value.pattern)){let f=null;for(const p of r.value.pattern)if(f=d(u,p,h),f)break;return f}return typeof r.value.pattern=="function"?r.value.pattern(u):null},applyMaxValues:(u,h)=>{const f={MM:12,DD:31,hh:23,mm:59,ss:59};let p="",m=0;for(let w=0;w<h.length;w++){const g=h[w],k=g.length,x=u.slice(m,m+k);if(!x)break;if(x.length<k)p+=x;else{let v=Number.parseInt(x,10);f[g]&&v>f[g]&&(v=f[g]),p+=v.toString().padStart(k,"0").slice(0,k)}m+=k}return p},createMaskedValue:(u,h)=>{const f=/(YYYY|MM|DD|hh|mm|ss)/g,p=[...h.matchAll(f)].map(x=>x[0]),m=h.replace(f,"|").split("|").filter(Boolean),w=p.map(x=>x.length);let g="",k=0;for(let x=0;x<p.length;x++){const v=w[x],b=u.slice(k,k+v);if(!b)break;g+=b,b.length===v&&m[x]&&(g+=m[x]),k+=v}return g}}};var Ft=(n=>(n.Input="input",n.DatePicker="date-picker",n.Calendar="calendar",n.DatePickerHeader="date-picker-header",n.Menu="menu",n.ActionRow="action-row",n.TimePicker="time-picker",n.TimeInput="time-input",n.PassTrough="pass-trough",n.MonthPicker="month-picker",n.YearMode="year-mode",n.QuarterPicker="quarter-picker",n.YearPicker="year-picker",n))(Ft||{});const U0=["time-input","time-picker","pass-trough"],ps=[{name:"trigger",use:["input"]},{name:"input-icon",use:["input"]},{name:"clear-icon",use:["input"]},{name:"dp-input",use:["input"]},{name:"clock-icon",use:["time-picker","time-input","pass-trough"]},{name:"arrow-left",use:["date-picker-header","pass-trough","year-mode"]},{name:"arrow-right",use:["date-picker-header","pass-trough","year-mode"]},{name:"arrow-up",use:["time-picker","time-input","date-picker-header","pass-trough"]},{name:"arrow-down",use:["time-picker","time-input","date-picker-header","pass-trough"]},{name:"calendar-icon",use:["date-picker-header","time-picker","pass-trough","year-mode"]},{name:"day",use:["calendar","pass-trough"]},{name:"month-overlay-value",use:["date-picker-header","pass-trough","month-picker"]},{name:"year-overlay-value",use:["date-picker-header","pass-trough","year-mode","year-picker"]},{name:"year-overlay",use:["date-picker-header","pass-trough"]},{name:"month-overlay",use:["date-picker-header","pass-trough"]},{name:"month-overlay-header",use:["date-picker-header","pass-trough"]},{name:"year-overlay-header",use:["date-picker-header","pass-trough"]},{name:"hours-overlay-value",use:U0},{name:"hours-overlay-header",use:U0},{name:"minutes-overlay-value",use:U0},{name:"minutes-overlay-header",use:U0},{name:"seconds-overlay-value",use:U0},{name:"seconds-overlay-header",use:U0},{name:"hours",use:["time-input","time-picker","pass-trough"]},{name:"minutes",use:["time-input","time-picker","pass-trough"]},{name:"seconds",use:["time-input","time-picker","pass-trough"]},{name:"month",use:["date-picker-header","time-picker","pass-trough"]},{name:"year",use:["date-picker-header","time-picker","pass-trough","year-mode"]},{name:"action-buttons",use:["action-row"]},{name:"action-preview",use:["action-row"]},{name:"calendar-header",use:["calendar","pass-trough"]},{name:"marker-tooltip",use:["calendar","pass-trough"]},{name:"action-extra",use:["menu"]},{name:"time-picker-overlay",use:["time-picker","time-picker","pass-trough"]},{name:"am-pm-button",use:["time-picker","time-input","pass-trough"]},{name:"left-sidebar",use:["menu"]},{name:"right-sidebar",use:["menu"]},{name:"month-year",use:["date-picker-header","pass-trough","month-picker","year-picker"]},{name:"time-picker",use:["date-picker","pass-trough"]},{name:"action-row",use:["action-row"]},{name:"marker",use:["calendar","pass-trough"]},{name:"quarter",use:["quarter-picker","pass-trough"]},{name:"top-extra",use:["date-picker-header","pass-trough","month-picker","quarter-picker","year-picker"]},{name:"tp-inline-arrow-up",use:["date-picker","time-input","time-picker","pass-trough"]},{name:"tp-inline-arrow-down",use:["date-picker","time-input","time-picker","pass-trough"]},{name:"arrow",use:["menu"]},{name:"menu-header",use:["menu"]}],an=(n,t)=>ps.filter(r=>n[r.name]&&r.use.includes(t)).map(r=>r.name),fs=(n,t)=>ps.map(r=>r.name).concat(t?.filter(r=>r.slot).map(r=>r.slot)??[]).filter(r=>!!n[r]),X6={key:1,class:"dp__input_wrap"},Q6=["id","name","inputmode","placeholder","disabled","readonly","required","value","autocomplete","aria-label","aria-disabled","aria-invalid"],e8={key:1,class:"dp--clear-btn"},t8=["aria-label"],n8=e.defineComponent({__name:"DatepickerInput",props:{isMenuOpen:{type:Boolean,default:!1}},emits:["clear","open","set-input-date","close","select-date","set-empty-date","toggle","focus","blur","real-blur"],setup(n,{expose:t,emit:r}){const o=r,a=n,{rootEmit:l,inputValue:i,rootProps:c,defaults:{textInput:s,ariaLabels:d,inline:u,config:h,range:f,multiDates:p,ui:m,inputAttrs:w}}=_e(),{checkMinMaxRange:g,isValidDate:k}=St(),{parseFreeInput:x,textPasted:v,createMaskedValue:b,applyMaxValues:C}=J6(),{checkKeyDown:A,checkStopPropagation:y}=nt(),{boolHtmlAttribute:B}=F0(),V=e.useTemplateRef("dp-input"),S=e.ref(null),Z=e.ref(!1),D=e.computed(()=>({dp__pointer:!c.disabled&&!c.readonly&&!s.value.enabled,dp__disabled:c.disabled,dp__input_readonly:!s.value.enabled,dp__input:!0,dp__input_not_clearable:!w.value.clearable,dp__input_icon_pad:!w.value.hideInputIcon,dp__input_valid:typeof w.value.state=="boolean"?w.value.state:!1,dp__input_invalid:typeof w.value.state=="boolean"?!w.value.state:!1,dp__input_focus:Z.value||a.isMenuOpen,dp__input_reg:!s.value.enabled,...m.value.input})),R=()=>{o("set-input-date",null),w&&c.autoApply&&(o("set-empty-date"),S.value=null)},K=I=>{if(s.value.separators?.length){const Y=new RegExp(s.value.separators.map(le=>le.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")).join("|"));return I.split(Y)}return I.split(s.value.rangeSeparator)},_=I=>{const[Y,le]=K(I);if(Y){const H=x(Y.trim(),i.value),X=le?x(le.trim(),i.value):void 0;if(tn(H,X))return;const ie=H&&X?[H,X]:[H];g(X,ie,0)&&(S.value=H?ie:null)}},T=()=>{v.value=!0},E=I=>{if(f.value.enabled)_(I);else if(p.value.enabled){const Y=I.split(";");S.value=Y.map(le=>x(le.trim())).filter(le=>!!le)}else S.value=x(I,i.value)},N=I=>{const Y=typeof I=="string"?I:I.target?.value,le=s?.value?.maskFormat;let H=Y;if(typeof le=="string"){const X=/(YYYY|MM|DD|hh|mm|ss)/g,ie=[...le.matchAll(X)].map(M=>M[0]),O=Y.replace(/\D/g,""),te=C(O,ie);H=b(te,le)}H===""?R():(s.value.openMenu&&!a.isMenuOpen&&o("open"),E(H),o("set-input-date",S.value)),v.value=!1,i.value=H,l("text-input",I,S.value)},F=I=>{s.value.enabled?(E(I.target.value),s.value.enterSubmit&&k(S.value)&&i.value!==""?(o("set-input-date",S.value,!0),S.value=null):s.value.enterSubmit&&i.value===""&&(S.value=null,o("clear"))):ce(I)},P=(I,Y)=>{s.value.enabled&&s.value.tabSubmit&&!Y&&E(I.target.value),s.value.tabSubmit&&k(S.value)&&i.value!==""?(o("set-input-date",S.value,!0,!0),S.value=null):s.value.tabSubmit&&i.value===""&&(S.value=null,o("clear"))},U=()=>{Z.value=!0,o("focus"),e.nextTick().then(()=>{s.value.enabled&&s.value.selectOnFocus&&V.value?.select()})},ce=I=>{if(y(I,h.value,!0),s.value.enabled&&s.value.openMenu&&!u.value.input){if(s.value.openMenu==="open"&&!a.isMenuOpen)return o("open");if(s.value.openMenu==="toggle")return o("toggle")}else s.value.enabled||o("toggle")},he=()=>{o("real-blur"),Z.value=!1,(!a.isMenuOpen||u.value.enabled&&u.value.input)&&o("blur"),(c.autoApply&&s.value.enabled&&S.value&&!a.isMenuOpen||s.value.applyOnBlur)&&(o("set-input-date",S.value),o("select-date"),S.value=null)},j=I=>{y(I,h.value,!0),o("clear")},ee=()=>{o("close")},se=I=>{if(I.key==="Tab"&&P(I),I.key==="Enter"&&F(I),I.key==="Escape"&&s.value.escClose&&ee(),!s.value.enabled){if(I.code==="Tab")return;I.preventDefault()}},pe=()=>{V.value?.focus({preventScroll:!0})},me=I=>{S.value=I},be=I=>{I.key===Ie.tab&&P(I,!0)};return t({focusInput:pe,setParsedDate:me}),(I,Y)=>(e.openBlock(),e.createElementBlock("div",{onClick:ce},[!I.$slots["dp-input"]&&!e.unref(u).enabled?e.renderSlot(I.$slots,"trigger",{key:0}):e.createCommentVNode("",!0),!I.$slots.trigger&&(!e.unref(u).enabled||e.unref(u).input)?(e.openBlock(),e.createElementBlock("div",X6,[!I.$slots.trigger&&(!e.unref(u).enabled||e.unref(u).enabled&&e.unref(u).input)?e.renderSlot(I.$slots,"dp-input",{key:0,value:e.unref(i),isMenuOpen:n.isMenuOpen,onInput:N,onEnter:F,onTab:P,onClear:j,onBlur:he,onKeypress:se,onPaste:T,onFocus:U,openMenu:()=>I.$emit("open"),closeMenu:()=>I.$emit("close"),toggleMenu:()=>I.$emit("toggle")},()=>[e.createElementVNode("input",{id:e.unref(w).id,ref:"dp-input","data-test-id":"dp-input",name:e.unref(w).name,class:e.normalizeClass(D.value),inputmode:e.unref(w).inputmode,placeholder:e.unref(c).placeholder,disabled:e.unref(B)(e.unref(c).disabled),readonly:e.unref(B)(e.unref(c).readonly),required:e.unref(B)(e.unref(w).required),value:e.unref(i),autocomplete:e.unref(w).autocomplete,"aria-label":e.unref(d).input,"aria-disabled":e.unref(c).disabled||void 0,"aria-invalid":e.unref(w).state===!1?!0:void 0,onInput:N,onBlur:he,onFocus:U,onKeypress:se,onKeydown:Y[0]||(Y[0]=le=>se(le)),onPaste:T,onInvalid:Y[1]||(Y[1]=le=>e.unref(l)("invalid",le))},null,42,Q6)]):e.createCommentVNode("",!0),e.createElementVNode("div",{onClick:Y[4]||(Y[4]=le=>o("toggle"))},[I.$slots["input-icon"]&&!e.unref(w).hideInputIcon?(e.openBlock(),e.createElementBlock("span",{key:0,class:"dp__input_icon",onClick:Y[2]||(Y[2]=le=>o("toggle"))},[e.renderSlot(I.$slots,"input-icon")])):e.createCommentVNode("",!0),!I.$slots["input-icon"]&&!e.unref(w).hideInputIcon&&!I.$slots["dp-input"]?(e.openBlock(),e.createBlock(e.unref(Cr),{key:1,"aria-label":e.unref(d)?.calendarIcon,class:"dp__input_icon dp__input_icons",onClick:Y[3]||(Y[3]=le=>o("toggle"))},null,8,["aria-label"])):e.createCommentVNode("",!0)]),I.$slots["clear-icon"]&&(e.unref(w).alwaysClearable||e.unref(i)&&e.unref(w).clearable&&!e.unref(c).disabled&&!e.unref(c).readonly)?(e.openBlock(),e.createElementBlock("span",e8,[e.renderSlot(I.$slots,"clear-icon",{clear:j})])):e.createCommentVNode("",!0),!I.$slots["clear-icon"]&&(e.unref(w).alwaysClearable||e.unref(w).clearable&&e.unref(i)&&!e.unref(c).disabled&&!e.unref(c).readonly)?(e.openBlock(),e.createElementBlock("button",{key:2,"aria-label":e.unref(d)?.clearInput,class:"dp--clear-btn",type:"button","data-test-id":"clear-input-value-btn",onKeydown:Y[5]||(Y[5]=le=>e.unref(A)(le,()=>j(le),!0,be)),onClick:Y[6]||(Y[6]=e.withModifiers(le=>j(le),["prevent"]))},[e.createVNode(e.unref(t6),{class:"dp__input_icons"})],40,t8)):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0)]))}}),r8={ref:"action-row",class:"dp__action_row"},o8=["title"],a8={ref:"action-buttons-container",class:"dp__action_buttons","data-dp-element":"action-row"},l8=["disabled"],i8=e.defineComponent({__name:"ActionRow",props:{menuMount:{type:Boolean,default:!1},calendarWidth:{default:0}},emits:["close-picker","select-date","select-now"],setup(n,{emit:t}){const r=t,o=n,{rootEmit:a,rootProps:l,modelValue:i,defaults:{actionRow:c,multiCalendars:s,inline:d,range:u,multiDates:h,formats:f}}=_e(),{isTimeValid:p,isMonthValid:m}=St(),{formatPreview:w}=_n(),{checkKeyDown:g,convertType:k}=nt(),{boolHtmlAttribute:x}=F0(),v=e.useTemplateRef("action-buttons-container"),b=e.useTemplateRef("action-row"),C=e.ref(!1),A=e.ref({});e.onMounted(()=>{y(),globalThis.addEventListener("resize",y)}),e.onUnmounted(()=>{globalThis.removeEventListener("resize",y)});const y=()=>{C.value=!1,setTimeout(()=>{const T=v.value?.getBoundingClientRect(),E=b.value?.getBoundingClientRect();T&&E&&(A.value.maxWidth=`${E.width-T.width-20}px`),C.value=!0},0)},B=e.computed(()=>u.value.enabled&&!u.value.partialRange&&i.value?i.value.length===2:!0),V=e.computed(()=>!p.value(i.value)||!m.value(i.value)||!B.value),S=()=>{const T=f.value.preview;return l.timePicker||l.monthPicker,T(k(i.value))},Z=()=>{const T=i.value;return s.value.count>0?`${w(T[0])} - ${w(T[1])}`:[w(T[0]),w(T[1])]},D=e.computed(()=>!i.value||!o.menuMount?"":typeof f.value.preview=="string"?Array.isArray(i.value)?i.value.length===2&&i.value[1]?Z():h.value.enabled?i.value.map(T=>`${w(T)}`):l.modelAuto?`${w(i.value[0])}`:`${w(i.value[0])} -`:w(i.value):S()),R=()=>h.value.enabled?"; ":" - ",K=e.computed(()=>Array.isArray(D.value)?D.value.join(R()):D.value),_=()=>{p.value(i.value)&&m.value(i.value)&&B.value?r("select-date"):a("invalid-select")};return(T,E)=>(e.openBlock(),e.createElementBlock("div",r8,[T.$slots["action-row"]?e.renderSlot(T.$slots,"action-row",e.normalizeProps(e.mergeProps({key:0},{modelValue:e.unref(i),disabled:V.value,selectDate:()=>T.$emit("select-date"),closePicker:()=>T.$emit("close-picker")}))):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.unref(c).showPreview?(e.openBlock(),e.createElementBlock("div",{key:0,class:"dp__selection_preview",title:K.value||void 0,style:e.normalizeStyle(A.value)},[T.$slots["action-preview"]&&C.value?e.renderSlot(T.$slots,"action-preview",{key:0,value:e.unref(i),formatValue:K.value}):e.createCommentVNode("",!0),!T.$slots["action-preview"]&&C.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(K.value),1)],64)):e.createCommentVNode("",!0)],12,o8)):e.createCommentVNode("",!0),e.createElementVNode("div",a8,[T.$slots["action-buttons"]?e.renderSlot(T.$slots,"action-buttons",{key:0,value:e.unref(i),selectDate:_,selectionDisabled:V.value}):e.createCommentVNode("",!0),T.$slots["action-buttons"]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[!e.unref(d).enabled&&e.unref(c).showCancel?(e.openBlock(),e.createElementBlock("button",{key:0,ref:"cancel-btn",type:"button","data-dp-action-element":"0",class:"dp__action_button dp__action_cancel",onClick:E[0]||(E[0]=N=>T.$emit("close-picker")),onKeydown:E[1]||(E[1]=N=>e.unref(g)(N,()=>T.$emit("close-picker")))},e.toDisplayString(e.unref(c).cancelBtnLabel),545)):e.createCommentVNode("",!0),e.unref(c).showNow?(e.openBlock(),e.createElementBlock("button",{key:1,type:"button","data-dp-action-element":"0",class:"dp__action_button dp__action_cancel",onClick:E[2]||(E[2]=N=>T.$emit("select-now")),onKeydown:E[3]||(E[3]=N=>e.unref(g)(N,()=>T.$emit("select-now")))},e.toDisplayString(e.unref(c).nowBtnLabel),33)):e.createCommentVNode("",!0),e.unref(c).showSelect?(e.openBlock(),e.createElementBlock("button",{key:2,ref:"select-btn",type:"button","data-dp-action-element":"0",class:"dp__action_button dp__action_select",disabled:e.unref(x)(V.value),"data-test-id":"select-button",onKeydown:E[4]||(E[4]=N=>e.unref(g)(N,()=>_())),onClick:_},e.toDisplayString(e.unref(c).selectBtnLabel),41,l8)):e.createCommentVNode("",!0)],64))],512)],64))],512))}}),Lo=()=>{const{rootProps:n,defaults:{multiCalendars:t}}=_e(),r=e.computed(()=>l=>n.hideNavigation?.includes(l)),o=e.computed(()=>l=>t.value.count?t.value.solo?!0:l===0:!0),a=e.computed(()=>l=>t.value.count?t.value.solo?!0:l===t.value.count-1:!0);return{hideNavigationButtons:r,showLeftIcon:o,showRightIcon:a}},c8=["role","aria-label","tabindex"],s8={class:"dp__selection_grid_header"},d8=["aria-selected","aria-disabled","data-dp-action-element","data-dp-element-active","data-test-id","onClick","onKeydown","onMouseover"],u8=["aria-label","data-dp-action-element"],Nr=e.defineComponent({__name:"SelectionOverlay",props:{items:{},type:{},useRelative:{type:Boolean},height:{},overlayLabel:{},isLast:{type:Boolean},level:{}},emits:["selected","toggle","reset-flow","hover-value"],setup(n,{emit:t}){const r=t,o=n,{setState:a,defaults:{ariaLabels:l,config:i}}=_e(),{hideNavigationButtons:c}=Lo(),{handleEventPropagation:s,checkKeyDown:d}=nt(),u=e.useTemplateRef("toggle-button"),h=e.useTemplateRef("overlay-container"),f=e.useTemplateRef("grid-wrap"),p=e.ref(!1),m=e.ref(null),w=e.ref(),g=e.ref(0);e.onBeforeUpdate(()=>{m.value=null}),e.onMounted(async()=>{await e.nextTick(),A(),a("arrowNavigationLevel",o.level??1)}),e.onUnmounted(()=>{a("arrowNavigationLevel",(o.level??1)-1)});const k=e.computed(()=>({dp__overlay:!0,"dp--overlay-absolute":!o.useRelative,"dp--overlay-relative":o.useRelative})),x=e.computed(()=>o.useRelative?{height:`${o.height}px`,width:"var(--dp-menu-min-width)"}:void 0),v=e.computed(()=>({dp__overlay_col:!0})),b=e.computed(()=>({dp__btn:!0,dp__button:!0,dp__overlay_action:!0,dp__over_action_scroll:p.value,dp__button_bottom:o.isLast})),C=e.computed(()=>({dp__overlay_container:!0,dp__container_flex:o.items?.length<=6,dp__container_block:o.items?.length>6}));e.watch(()=>o.items,()=>A(!1),{deep:!0});const A=(R=!0)=>{e.nextTick().then(()=>{const K=document.querySelector(`[data-dp-element-active="${o.level??1}"]`),_=Et(f),T=Et(u),E=Et(h),N=T?T.getBoundingClientRect().height:0;_&&(_.getBoundingClientRect().height?g.value=_.getBoundingClientRect().height-N:g.value=i.value.modeHeight-N),K&&E&&R&&(E.scrollTop=K.offsetTop-E.offsetTop-(g.value/2-K.getBoundingClientRect().height)-N)})},y=R=>{R.disabled||r("selected",R.value)},B=()=>{r("toggle"),r("reset-flow")},V=R=>{i.value.escClose&&(B(),s(R,i.value))},S=R=>{w.value=R,r("hover-value",R)},Z=R=>{if(R.key===Ie.esc)return V(R)},D=R=>{if(R.key===Ie.enter)return B()};return(R,K)=>(e.openBlock(),e.createElementBlock("div",{ref:"grid-wrap",class:e.normalizeClass(k.value),style:e.normalizeStyle(x.value),role:n.useRelative?void 0:"dialog","aria-label":n.overlayLabel,tabindex:n.useRelative?void 0:"0",onKeydown:Z,onClick:K[0]||(K[0]=e.withModifiers(()=>{},["prevent"]))},[e.createElementVNode("div",{ref:"overlay-container",class:e.normalizeClass(C.value),style:e.normalizeStyle({"--dp-overlay-height":`${g.value}px`}),role:"grid"},[e.createElementVNode("div",s8,[e.renderSlot(R.$slots,"header")]),e.renderSlot(R.$slots,"overlay",{},()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.items,(_,T)=>(e.openBlock(),e.createElementBlock("div",{key:T,class:e.normalizeClass(["dp__overlay_row",{dp__flex_row:n.items.length>=3}]),role:"row"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(_,E=>(e.openBlock(),e.createElementBlock("div",{key:E.value,role:"gridcell",class:e.normalizeClass(v.value),"aria-selected":E.active||void 0,"aria-disabled":E.disabled||void 0,"data-dp-action-element":n.level??1,"data-dp-element-active":E.active?n.level??1:void 0,tabindex:"0","data-test-id":E.text,onClick:e.withModifiers(N=>y(E),["prevent"]),onKeydown:N=>e.unref(d)(N,()=>y(E),!0),onMouseover:N=>S(E.value)},[e.createElementVNode("div",{class:e.normalizeClass(E.className)},[e.renderSlot(R.$slots,"item",{item:E},()=>[e.createTextVNode(e.toDisplayString(E.text),1)])],2)],42,d8))),128))],2))),128))])],6),R.$slots["button-icon"]?e.withDirectives((e.openBlock(),e.createElementBlock("button",{key:0,ref:"toggle-button",type:"button","aria-label":e.unref(l)?.toggleOverlay,class:e.normalizeClass(b.value),tabindex:"0","data-dp-action-element":n.level??1,onClick:B,onKeydown:D},[e.renderSlot(R.$slots,"button-icon")],42,u8)),[[e.vShow,!e.unref(c)(n.type)]]):e.createCommentVNode("",!0)],46,c8))}}),h8=["data-dp-mobile"],Do=e.defineComponent({__name:"InstanceWrap",props:{stretch:{type:Boolean},collapse:{type:Boolean}},setup(n){const{defaults:{multiCalendars:t}}=_e(),{isMobile:r}=Ho(),o=e.computed(()=>t.value.count>0?[...new Array(t.value.count).keys()]:[0]);return(a,l)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass({dp__menu_inner:!n.stretch,"dp--menu--inner-stretched":n.stretch,dp__flex_display:e.unref(t).count>0,"dp--flex-display-collapsed":n.collapse}),"data-dp-mobile":e.unref(r)},[e.renderSlot(a.$slots,"default",{instances:o.value,wrapClass:{dp__instance_calendar:e.unref(t).count>0}})],10,h8))}}),p8=["data-dp-element","aria-label","aria-disabled"],Zr=e.defineComponent({__name:"ArrowBtn",props:{ariaLabel:{},elName:{},disabled:{type:Boolean}},emits:["activate","set-ref"],setup(n,{emit:t}){const{checkKeyDown:r}=nt(),o=t;return(a,l)=>(e.openBlock(),e.createElementBlock("button",{ref:"arrow-btn",type:"button","data-dp-element":n.elName,"data-dp-action-element":"0",class:"dp__btn dp--arrow-btn-nav",tabindex:"0","aria-label":n.ariaLabel,"aria-disabled":n.disabled||void 0,onClick:l[0]||(l[0]=i=>o("activate")),onKeydown:l[1]||(l[1]=i=>e.unref(r)(i,()=>o("activate"),!0))},[e.createElementVNode("span",{class:e.normalizeClass(["dp__inner_nav",{dp__inner_nav_disabled:n.disabled}])},[e.renderSlot(a.$slots,"default")],2)],40,p8))}}),f8=["aria-label","data-test-id"],ms=e.defineComponent({__name:"YearModePicker",props:{items:{},instance:{},year:{},showYearPicker:{type:Boolean,default:!1},isDisabled:{}},emits:["handle-year","year-select","toggle-year-picker"],setup(n,{emit:t}){const r=t,o=n,{showRightIcon:a,showLeftIcon:l}=Lo(),{rootProps:i,defaults:{config:c,ariaLabels:s,ui:d}}=_e(),{showTransition:u,transitionName:h}=Mr(),{formatYear:f}=_n(),{boolHtmlAttribute:p}=F0(),m=e.ref(!1),w=e.computed(()=>f(o.year)),g=(v=!1,b)=>{m.value=!m.value,r("toggle-year-picker",{flow:v,show:b})},k=v=>{m.value=!1,r("year-select",v)},x=(v=!1)=>{r("handle-year",v)};return(v,b)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("div",{class:e.normalizeClass(["dp--year-mode-picker",{"dp--hidden-el":m.value}])},[e.unref(l)(n.instance)?(e.openBlock(),e.createBlock(Zr,{key:0,ref:"mpPrevIconRef","aria-label":e.unref(s)?.prevYear,disabled:e.unref(p)(n.isDisabled(!1)),class:e.normalizeClass(e.unref(d)?.navBtnPrev),onActivate:b[0]||(b[0]=C=>x(!1))},{default:e.withCtx(()=>[v.$slots["arrow-left"]?e.renderSlot(v.$slots,"arrow-left",{key:0}):e.createCommentVNode("",!0),v.$slots["arrow-left"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(ts),{key:1}))]),_:3},8,["aria-label","disabled","class"])):e.createCommentVNode("",!0),e.createElementVNode("button",{ref:"mpYearButtonRef",class:"dp__btn dp--year-select",type:"button","aria-label":`${n.year}-${e.unref(s)?.openYearsOverlay}`,"data-test-id":`year-mode-btn-${n.instance}`,"data-dp-action-element":"0",onClick:b[1]||(b[1]=()=>g(!1)),onKeydown:b[2]||(b[2]=e.withKeys(e.withModifiers(()=>g(!1),["prevent"]),["enter"]))},[v.$slots.year?e.renderSlot(v.$slots,"year",{key:0,text:w.value,value:n.year}):e.createCommentVNode("",!0),v.$slots.year?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(n.year),1)],64))],40,f8),e.unref(a)(n.instance)?(e.openBlock(),e.createBlock(Zr,{key:1,ref:"mpNextIconRef","aria-label":e.unref(s)?.nextYear,disabled:e.unref(p)(n.isDisabled(!0)),class:e.normalizeClass(e.unref(d)?.navBtnNext),onActivate:b[3]||(b[3]=C=>x(!0))},{default:e.withCtx(()=>[v.$slots["arrow-right"]?e.renderSlot(v.$slots,"arrow-right",{key:0}):e.createCommentVNode("",!0),v.$slots["arrow-right"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(ns),{key:1}))]),_:3},8,["aria-label","disabled","class"])):e.createCommentVNode("",!0)],2),e.createVNode(e.Transition,{name:e.unref(h)(n.showYearPicker),css:e.unref(u)},{default:e.withCtx(()=>[n.showYearPicker?(e.openBlock(),e.createBlock(Nr,{key:0,items:n.items,config:e.unref(c),"is-last":e.unref(i).autoApply&&!e.unref(c).keepActionRow,"overlay-label":e.unref(s)?.yearPicker?.(!0),type:"year",onToggle:g,onSelected:b[4]||(b[4]=C=>k(C))},e.createSlots({"button-icon":e.withCtx(()=>[v.$slots["calendar-icon"]?e.renderSlot(v.$slots,"calendar-icon",{key:0}):e.createCommentVNode("",!0),v.$slots["calendar-icon"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(Cr),{key:1}))]),_:2},[v.$slots["year-overlay-value"]?{name:"item",fn:e.withCtx(({item:C})=>[e.renderSlot(v.$slots,"year-overlay-value",{text:C.text,value:C.value})]),key:"0"}:void 0]),1032,["items","config","is-last","overlay-label"])):e.createCommentVNode("",!0)]),_:3},8,["name","css"])],64))}}),ws=n=>{const{getDate:t,rootEmit:r,state:o,month:a,year:l,modelValue:i,calendars:c,rootProps:s,defaults:{multiCalendars:d,range:u,safeDates:h,filters:f,highlight:p}}=_e(),{resetDate:m,getYearFromDate:w,checkHighlightYear:g,groupListAndMap:k}=ht(),{getYears:x}=To(),{validateMonthYear:v,checkMinMaxValue:b}=St(),C=e.ref([!1]),A=e.computed(()=>x()),y=e.computed(()=>(P,U)=>{const ce=Ve(m(t()),{month:a.value(P),year:l.value(P)}),he=U?Ic(ce):D0(ce);return v(he,s.preventMinMaxNavigation,U)}),B=()=>Array.isArray(i.value)&&d.value.solo&&i.value[1],V=()=>{for(let P=0;P<d.value.count;P++)if(P===0)c.value[P]=c.value[0];else if(P===d.value.count-1&&B())c.value[P]={month:Ne(i.value[1]),year:Be(i.value[1])};else{const U=Ve(t(),c.value[P-1]);c.value[P]={month:Ne(U),year:Be(Gl(U,1))}}},S=P=>{if(!P)return V();const U=Ve(t(),c.value[P]);return c.value[0].year=Be(Jc(U,d.value.count-1)),V()},Z=(P,U)=>{const ce=tf(U,P);return u.value.showLastInRange&&ce>1?U:P},D=P=>s.focusStartDate||d.value.solo?P[0]:P[1]?Z(P[0],P[1]):P[0],R=()=>{if(i.value){const P=Array.isArray(i.value)?D(i.value):i.value;c.value[0]={month:Ne(P),year:Be(P)}}},K=()=>{R(),d.value.count&&V()};e.watch(i,(P,U)=>{o.isTextInputDate&&JSON.stringify(P??{})!==JSON.stringify(U??{})&&K()}),e.onMounted(()=>{K()});const _=(P,U)=>{c.value[U].year=P,r("update-month-year",{instance:U,year:P,month:c.value[U].month}),d.value.count&&!d.value.solo&&S(U)},T=e.computed(()=>P=>k(A.value,U=>{const ce=l.value(P)===U.value,he=b(U.value,w(h.value.minDate),w(h.value.maxDate))||f.value.years?.includes(l.value(P)),j=g(p.value,U.value);return{active:ce,disabled:he,highlighted:j}})),E=(P,U)=>{_(P,U),F(U)},N=(P,U=!1)=>{if(!y.value(P,U)){const ce=U?l.value(P)+1:l.value(P)-1;_(ce,P)}},F=(P,U=!1,ce)=>{U||n("reset-flow"),ce===void 0?C.value[P]=!C.value[P]:C.value[P]=ce,C.value[P]?r("overlay-toggle",{open:!0,overlay:wt.year}):r("overlay-toggle",{open:!1,overlay:wt.year})};return{isDisabled:y,groupedYears:T,showYearPicker:C,selectYear:_,setStartDate:()=>{s.startDate&&(i.value&&s.focusStartDate||!i.value)&&_(Be(t(s.startDate)),0)},toggleYearPicker:F,handleYearSelect:E,handleYear:N}},Po=()=>{const{isDateAfter:n,isDateBefore:t,isDateEqual:r}=ht(),{getDate:o,rootEmit:a,rootProps:l,modelValue:i,defaults:{range:c}}=_e();return{getRangeWithFixedDate:s=>Array.isArray(i.value)&&(i.value.length===2||i.value.length===1&&c.value.partialRange)?c.value.fixedStart&&(n(s,i.value[0])||r(s,i.value[0]))?[i.value[0],s]:c.value.fixedEnd&&(t(s,i.value[1])||r(s,i.value[1]))?[s,i.value[1]]:(a("invalid-fixed-range",s),i.value):[],setPresetDate:s=>{Array.isArray(s.value)&&s.value.length<=2&&c.value.enabled?i.value=s.value.map(d=>o(d)):Array.isArray(s.value)||(i.value=o(s.value))},checkRangeAutoApply:(s,d,u)=>{c&&(s[0]&&s[1]&&l.autoApply&&d("auto-apply",u),s[0]&&!s[1]&&(l.modelAuto||c.value.partialRange)&&l.autoApply&&d("auto-apply",u))},setMonthOrYearRange:s=>{let d=i.value?i.value.slice():[];return d.length===2&&d[1]!==null&&(d=[]),d.length?(t(s,d[0])?d.unshift(s):d[1]=s,a("range-end",s)):(d=[s],a("range-start",s)),d},handleMultiDatesSelect:(s,d)=>{if(i.value&&Array.isArray(i.value))if(i.value.some(u=>r(s,u))){const u=i.value.filter(h=>!r(h,s));i.value=u.length?u:null}else(d&&+d>i.value.length||!d)&&i.value.push(s);else i.value=[s]}}},m8=(n,t)=>{const{getDate:r,rootEmit:o,state:a,calendars:l,year:i,modelValue:c,rootProps:s,defaults:{range:d,highlight:u,safeDates:h,filters:f,multiDates:p}}=_e();Vr(()=>{a.isTextInputDate&&E(Be(r(s.startDate)),0)});const{checkMinMaxRange:m,checkMinMaxValue:w}=St(),{isDateBetween:g,resetDateTime:k,resetDate:x,getMinMonth:v,getMaxMonth:b,checkHighlightMonth:C,groupListAndMap:A}=ht(),{checkRangeAutoApply:y,getRangeWithFixedDate:B,handleMultiDatesSelect:V,setMonthOrYearRange:S,setPresetDate:Z}=Po(),{padZero:D}=nt(),{getMonths:R,isOutOfYearRange:K}=To(),_=e.computed(()=>R()),T=e.ref(null),{selectYear:E,groupedYears:N,showYearPicker:F,toggleYearPicker:P,handleYearSelect:U,handleYear:ce,isDisabled:he,setStartDate:j}=ws(t);e.onMounted(()=>{j()});const ee=L=>L?{month:Ne(L),year:Be(L)}:{month:null,year:null},se=()=>c.value?Array.isArray(c.value)?c.value.map(L=>ee(L)):ee(c.value):ee(),pe=(L,z)=>{const J=l.value[L],ue=se();return Array.isArray(ue)?ue.some(re=>re.year===J?.year&&re.month===z):J?.year===ue.year&&z===ue.month},me=(L,z,J)=>{const ue=se();return Array.isArray(ue)?i.value(z)===ue[J]?.year&&L===ue[J]?.month:!1},be=(L,z)=>{if(d.value.enabled){const J=se();if(Array.isArray(c.value)&&Array.isArray(J)){const ue=me(L,z,0)||me(L,z,1),re=Ve(x(r()),{month:L,year:i.value(z)});return g(c.value,T.value,re)&&!ue}return!1}return!1},I=e.computed(()=>L=>A(_.value,z=>{const J=pe(L,z.value),ue=w(z.value,v(i.value(L),h.value.minDate),b(i.value(L),h.value.maxDate))||$(h.value.disabledDates,i.value(L),z.value)||f.value.months?.includes(z.value)||!ne(h.value.allowedDates,i.value(L),z.value)||K(i.value(L)),re=be(z.value,L),Ce=C(u.value,z.value,i.value(L));return{active:J,disabled:ue,isBetween:re,highlighted:Ce}})),Y=(L,z)=>Ve(x(r()),{month:L,year:i.value(z)}),le=(L,z)=>{const J=c.value?c.value:x(r());c.value=Ve(J,{month:L,year:i.value(z)}),t("auto-apply"),t("update-flow-step")},H=(L,z)=>{const J=Y(L,z);d.value.fixedEnd||d.value.fixedStart?c.value=B(J):c.value?m(J,c.value)&&(c.value=S(Y(L,z))):c.value=[Y(L,z)],e.nextTick().then(()=>{y(c.value,t,c.value.length<2)})},X=(L,z)=>{V(Y(L,z),p.value.limit),t("auto-apply",!0)},ie=(L,z)=>(l.value[z].month=L,te(z,l.value[z].year,L),p.value.enabled?X(L,z):d.value.enabled?H(L,z):le(L,z)),O=(L,z)=>{E(L,z),te(z,L,null)},te=(L,z,J)=>{let ue=J;if(!ue&&ue!==0){const re=se();ue=Array.isArray(re)?re[L].month:re.month}o("update-month-year",{instance:L,year:z,month:ue})},M=(L,z)=>{T.value=Y(L,z)},W=L=>{Z({value:L}),t("auto-apply")},$=(L,z,J)=>{if(L instanceof Map){const ue=`${D(J+1)}-${z}`;return L.size?L.has(ue):!1}return typeof L=="function"?L(k(Ve(r(),{month:J,year:z}),!0)):!1},ne=(L,z,J)=>{if(L instanceof Map){const ue=`${D(J+1)}-${z}`;return L.size?L.has(ue):!0}return!0};return{groupedMonths:I,groupedYears:N,year:i,isDisabled:he,showYearPicker:F,modelValue:c,toggleYearPicker:P,handleYearSelect:U,handleYear:ce,presetDate:W,setHoverDate:M,selectMonth:ie,selectYear:O,getModelMonthYear:se}},w8=e.defineComponent({__name:"MonthPicker",props:{flowStep:{},collapse:{type:Boolean},menuWrapRef:{},noOverlayFocus:{type:Boolean}},emits:["reset-flow","auto-apply","update-flow-step","mount"],setup(n,{expose:t,emit:r}){const o=r,a=n,l=e.useSlots(),{rootProps:i,defaults:{config:c}}=_e(),s=an(l,Ft.YearMode);e.onMounted(()=>{o("mount")});const{groupedMonths:d,groupedYears:u,year:h,isDisabled:f,showYearPicker:p,modelValue:m,presetDate:w,setHoverDate:g,selectMonth:k,selectYear:x,toggleYearPicker:v,handleYearSelect:b,handleYear:C,getModelMonthYear:A}=m8(a,o);return t({getSidebarProps:()=>({modelValue:m,year:h,getModelMonthYear:A,selectMonth:k,selectYear:x,handleYear:C}),presetDate:w,toggleYearPicker:y=>v(0,y)}),(y,B)=>(e.openBlock(),e.createBlock(Do,{collapse:n.collapse,stretch:""},{default:e.withCtx(({instances:V,wrapClass:S})=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(V,Z=>(e.openBlock(),e.createElementBlock("div",{key:Z,class:e.normalizeClass(S)},[y.$slots["top-extra"]?e.renderSlot(y.$slots,"top-extra",{key:0,value:e.unref(m)}):e.createCommentVNode("",!0),e.renderSlot(y.$slots,"month-year",e.mergeProps({ref_for:!0},{year:e.unref(h),months:e.unref(d)(Z),years:e.unref(u)(Z),selectMonth:e.unref(k),selectYear:e.unref(x),instance:Z}),()=>[e.createVNode(Nr,{items:e.unref(d)(Z),"is-last":e.unref(i).autoApply&&!e.unref(c).keepActionRow,height:e.unref(c).modeHeight,"no-overlay-focus":!!(n.noOverlayFocus||e.unref(i).textInput),"use-relative":"",level:0,type:"month",onSelected:D=>e.unref(k)(D,Z),onHoverValue:D=>e.unref(g)(D,Z)},e.createSlots({header:e.withCtx(()=>[e.createVNode(ms,{items:e.unref(u)(Z),instance:Z,"show-year-picker":e.unref(p)[Z],year:e.unref(h)(Z),"is-disabled":D=>e.unref(f)(Z,D),onHandleYear:D=>e.unref(C)(Z,D),onYearSelect:D=>e.unref(b)(D,Z),onToggleYearPicker:D=>e.unref(v)(Z,D?.flow,D?.show)},e.createSlots({_:2},[e.renderList(e.unref(s),(D,R)=>({name:D,fn:e.withCtx(K=>[e.renderSlot(y.$slots,D,e.mergeProps({ref_for:!0},K))])}))]),1032,["items","instance","show-year-picker","year","is-disabled","onHandleYear","onYearSelect","onToggleYearPicker"])]),_:2},[y.$slots["month-overlay-value"]?{name:"item",fn:e.withCtx(({item:D})=>[e.renderSlot(y.$slots,"month-overlay-value",{text:D.text,value:D.value})]),key:"0"}:void 0]),1032,["items","is-last","height","no-overlay-focus","onSelected","onHoverValue"])])],2))),128))]),_:3},8,["collapse"]))}}),g8=(n,t)=>{const{rootEmit:r,getDate:o,state:a,modelValue:l,rootProps:i,defaults:{highlight:c,multiDates:s,filters:d,range:u,safeDates:h}}=_e(),{getYears:f}=To(),{isDateBetween:p,resetDate:m,resetDateTime:w,getYearFromDate:g,checkHighlightYear:k,groupListAndMap:x}=ht(),{checkRangeAutoApply:v,setMonthOrYearRange:b}=Po(),{checkMinMaxValue:C,checkMinMaxRange:A}=St();Vr(()=>{a.isTextInputDate&&(B.value=Be(o(i.startDate)))});const y=e.ref(null),B=e.ref();e.onMounted(()=>{i.startDate&&(l.value&&i.focusStartDate||!l.value)&&(B.value=Be(o(i.startDate)))});const V=_=>Array.isArray(l.value)?l.value.some(T=>Be(T)===_):l.value?Be(l.value)===_:!1,S=_=>u.value.enabled&&Array.isArray(l.value)?p(l.value,y.value,K(_)):!1,Z=_=>h.value.allowedDates?.size?h.value.allowedDates.has(`${_}`):!0,D=_=>h.value.disabledDates instanceof Map?h.value.disabledDates.size?h.value.disabledDates.has(`${_}`):!1:typeof h.value.disabledDates=="function"?h.value.disabledDates(Rt(w(D0(o())),_)):!0,R=e.computed(()=>x(f(),_=>{const T=V(_.value),E=C(_.value,g(h.value.minDate),g(h.value.maxDate))||d.value.years.includes(_.value)||!Z(_.value)||D(_.value),N=S(_.value)&&!T,F=k(c.value,_.value);return{active:T,disabled:E,isBetween:N,highlighted:F}})),K=_=>Rt(m(D0(o())),_);return{groupedYears:R,focusYear:B,setHoverValue:_=>{y.value=Rt(m(o()),_)},selectYear:_=>{if(r("update-month-year",{instance:0,year:_,month:Number.NaN}),s.value.enabled)return l.value?Array.isArray(l.value)&&((l.value?.map(T=>Be(T))).includes(_)?l.value=l.value.filter(T=>Be(T)!==_):l.value.push(Rt(w(o()),_))):l.value=[Rt(w(D0(o())),_)],t("auto-apply",!0);u.value.enabled?A(K(_),l.value)&&(l.value=b(K(_)),e.nextTick().then(()=>{v(l.value,t,l.value.length<2)})):(l.value=K(_),t("auto-apply"))}}},k8=e.defineComponent({__name:"YearPicker",props:{flowStep:{},collapse:{type:Boolean},menuWrapRef:{},noOverlayFocus:{type:Boolean}},emits:["reset-flow","auto-apply"],setup(n,{expose:t,emit:r}){const o=r,a=n,{modelValue:l,defaults:{config:i},rootProps:c}=_e(),{groupedYears:s,focusYear:d,selectYear:u,setHoverValue:h}=g8(a,o);return t({getSidebarProps:()=>({modelValue:l,selectYear:u})}),(f,p)=>(e.openBlock(),e.createElementBlock("div",null,[f.$slots["top-extra"]?e.renderSlot(f.$slots,"top-extra",{key:0,value:e.unref(l)}):e.createCommentVNode("",!0),f.$slots["month-year"]?e.renderSlot(f.$slots,"month-year",e.normalizeProps(e.mergeProps({key:1},{years:e.unref(s),selectYear:e.unref(u)}))):(e.openBlock(),e.createBlock(Nr,{key:2,items:e.unref(s),"is-last":e.unref(c).autoApply&&!e.unref(i).keepActionRow,height:e.unref(i).modeHeight,"no-overlay-focus":!!(n.noOverlayFocus||e.unref(c).textInput),"focus-value":e.unref(d),type:"year","use-relative":"",onSelected:e.unref(u),onHoverValue:e.unref(h)},e.createSlots({_:2},[f.$slots["year-overlay-value"]?{name:"item",fn:e.withCtx(({item:m})=>[e.renderSlot(f.$slots,"year-overlay-value",{text:m.text,value:m.value})]),key:"0"}:void 0]),1032,["items","is-last","height","no-overlay-focus","focus-value","onSelected","onHoverValue"]))]))}}),x8={key:0,class:"dp__time_input"},v8=["data-compact","data-collapsed"],y8=["data-test-id","aria-label","data-dp-action-element","onKeydown","onClick","onMousedown"],B8=["aria-label","disabled","data-dp-action-element","data-test-id","onKeydown","onClick"],E8=["data-test-id","aria-label","data-dp-action-element","onKeydown","onClick","onMousedown"],b8={key:0},C8=["aria-label","data-dp-action-element","data-compact"],M8=e.defineComponent({__name:"TimeInput",props:{hours:{},minutes:{},seconds:{},order:{},closeTimePickerBtn:{},disabledTimesConfig:{},validateTime:{}},emits:["update:hours","update:minutes","update:seconds","overlay-opened","overlay-closed","set-hours","set-minutes","reset-flow","mounted"],setup(n,{expose:t,emit:r}){const o=r,a=n,{getDate:l,rootEmit:i,rootProps:c,defaults:{ariaLabels:s,filters:d,config:u,range:h,multiCalendars:f,timeConfig:p}}=_e(),{checkKeyDown:m,hoursToAmPmHours:w}=nt(),{boolHtmlAttribute:g}=F0(),{sanitizeTime:k,groupListAndMap:x}=ht(),{transitionName:v,showTransition:b}=Mr(),C=e.reactive({hours:!1,minutes:!1,seconds:!1}),A=e.ref("AM"),y=e.ref(null),B=e.ref(),V=e.ref(!1);e.onMounted(()=>{o("mounted")});const S=$=>Ve(l(),{hours:$.hours,minutes:$.minutes,seconds:p.value.enableSeconds?$.seconds:0,milliseconds:0}),Z=e.computed(()=>c.timePicker||p.value.timePickerInline?0:1),D=e.computed(()=>$=>ee($,a[$])||K($,a[$])),R=e.computed(()=>({hours:a.hours,minutes:a.minutes,seconds:a.seconds})),K=($,ne)=>h.value.enabled&&!h.value.disableTimeRangeValidation?!a.validateTime($,ne):!1,_=($,ne)=>{if(h.value.enabled&&!h.value.disableTimeRangeValidation){const L=ne?+p.value[`${$}Increment`]:-+p.value[`${$}Increment`],z=a[$]+L;return!a.validateTime($,z)}return!1},T=e.computed(()=>$=>!I(+a[$]+ +p.value[`${$}Increment`],$)||_($,!0)),E=e.computed(()=>$=>!I(+a[$]-+p.value[`${$}Increment`],$)||_($,!1)),N=($,ne)=>Mc(Ve(l(),$),ne),F=($,ne)=>Gm(Ve(l(),$),ne),P=e.computed(()=>({dp__time_col:!0,dp__time_col_block:!p.value.timePickerInline,dp__time_col_reg_block:!p.value.enableSeconds&&p.value.is24&&!p.value.timePickerInline,dp__time_col_reg_inline:!p.value.enableSeconds&&p.value.is24&&p.value.timePickerInline,dp__time_col_reg_with_button:!p.value.enableSeconds&&!p.value.is24,dp__time_col_sec:p.value.enableSeconds&&p.value.is24,dp__time_col_sec_with_button:p.value.enableSeconds&&!p.value.is24})),U=e.computed(()=>p.value.timePickerInline&&h.value.enabled&&!f.value.count),ce=e.computed(()=>{const $=[{type:"hours"}];return p.value.enableMinutes&&$.push({type:"",separator:!0},{type:"minutes"}),p.value.enableSeconds&&$.push({type:"",separator:!0},{type:"seconds"}),$}),he=e.computed(()=>ce.value.filter($=>!$.separator)),j=e.computed(()=>$=>{if($==="hours"){const ne=O(+a.hours);return{text:ne<10?`0${ne}`:`${ne}`,value:ne}}return{text:a[$]<10?`0${a[$]}`:`${a[$]}`,value:a[$]}}),ee=($,ne)=>{if(!a.disabledTimesConfig)return!1;const L=a.disabledTimesConfig(a.order,$==="hours"?ne:void 0);return L[$]?!!L[$]?.includes(ne):!0},se=($,ne)=>ne!=="hours"||A.value==="AM"?$:$+12,pe=$=>{const ne=p.value.is24?24:12,L=$==="hours"?ne:60,z=+p.value[`${$}GridIncrement`],J=$==="hours"&&!p.value.is24?z:0,ue=[];for(let re=J;re<L;re+=z)ue.push({value:p.value.is24?re:se(re,$),text:re<10?`0${re}`:`${re}`});return $==="hours"&&!p.value.is24&&ue.unshift({value:A.value==="PM"?12:0,text:"12"}),x(ue,re=>({active:!1,disabled:d.value.times[$].includes(re.value)||!I(re.value,$)||ee($,re.value)||K($,re.value)}))},me=$=>$>=0?$:59,be=$=>$>=0?$:23,I=($,ne)=>{const L=c.minTime?S(k(c.minTime)):null,z=c.maxTime?S(k(c.maxTime)):null,J=S(k(R.value,ne,ne==="minutes"||ne==="seconds"?me($):be($)));return L&&z?(mn(J,z)||O0(J,z))&&(tn(J,L)||O0(J,L)):L?tn(J,L)||O0(J,L):z?mn(J,z)||O0(J,z):!0},Y=$=>p.value[`no${$[0].toUpperCase()+$.slice(1)}Overlay`],le=$=>{Y($)||(C[$]=!C[$],C[$]?(V.value=!0,o("overlay-opened",$)):(V.value=!1,o("overlay-closed",$)))},H=$=>$==="hours"?en:$==="minutes"?fn:An,X=()=>{B.value&&clearTimeout(B.value)},ie=($,ne=!0,L)=>{const z=ne?N:F,J=ne?+p.value[`${$}Increment`]:-+p.value[`${$}Increment`];I(+a[$]+J,$)&&o(`update:${$}`,H($)(z({[$]:+a[$]},{[$]:+p.value[`${$}Increment`]}))),!L?.keyboard&&u.value.timeArrowHoldThreshold&&(B.value=setTimeout(()=>{ie($,ne)},u.value.timeArrowHoldThreshold))},O=$=>p.value.is24?$:($>=12?A.value="PM":A.value="AM",w($)),te=()=>{A.value==="PM"?(A.value="AM",o("update:hours",a.hours-12)):(A.value="PM",o("update:hours",a.hours+12)),i("am-pm-change",A.value)},M=$=>{C[$]=!0},W=($,ne)=>(le($),o(`update:${$}`,ne));return t({openChildCmp:M}),($,ne)=>e.unref(c).disabled?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",x8,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(ce.value,(L,z)=>(e.openBlock(),e.createElementBlock("div",{key:z,class:e.normalizeClass(P.value),"data-compact":U.value&&!e.unref(p).enableSeconds,"data-collapsed":U.value&&e.unref(p).enableSeconds},[L.separator?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[V.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(":")],64))],64)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createElementVNode("button",{type:"button",class:e.normalizeClass({dp__btn:!0,dp__inc_dec_button:!e.unref(p).timePickerInline,dp__inc_dec_button_inline:e.unref(p).timePickerInline,dp__tp_inline_btn_top:e.unref(p).timePickerInline,dp__inc_dec_button_disabled:T.value(L.type),"dp--hidden-el":V.value}),"data-test-id":`${L.type}-time-inc-btn-${a.order}`,"aria-label":e.unref(s)?.incrementValue(L.type),tabindex:"0","data-dp-action-element":Z.value,onKeydown:J=>e.unref(m)(J,()=>ie(L.type,!0,{keyboard:!0}),!0),onClick:J=>e.unref(u).timeArrowHoldThreshold?void 0:ie(L.type,!0),onMousedown:J=>e.unref(u).timeArrowHoldThreshold?ie(L.type,!0):void 0,onMouseup:X},[e.unref(p).timePickerInline?e.renderSlot($.$slots,"tp-inline-arrow-up",{key:1},()=>[ne[2]||(ne[2]=e.createElementVNode("span",{class:"dp__tp_inline_btn_bar dp__tp_btn_in_l"},null,-1)),ne[3]||(ne[3]=e.createElementVNode("span",{class:"dp__tp_inline_btn_bar dp__tp_btn_in_r"},null,-1))]):e.renderSlot($.$slots,"arrow-up",{key:0},()=>[e.createVNode(e.unref(as))])],42,y8),e.createElementVNode("button",{type:"button","aria-label":`${j.value(L.type).text}-${e.unref(s)?.openTpOverlay(L.type)}`,class:e.normalizeClass({dp__time_display:!0,dp__time_display_block:!e.unref(p).timePickerInline,dp__time_display_inline:e.unref(p).timePickerInline,"dp--time-invalid":D.value(L.type),"dp--time-overlay-btn":!D.value(L.type),"dp--hidden-el":V.value}),disabled:e.unref(g)(Y(L.type)),tabindex:"0","data-dp-action-element":Z.value,"data-test-id":`${L.type}-toggle-overlay-btn-${a.order}`,onKeydown:J=>e.unref(m)(J,()=>le(L.type),!0),onClick:J=>le(L.type)},[e.renderSlot($.$slots,L.type,{text:j.value(L.type).text,value:j.value(L.type).value},()=>[e.createTextVNode(e.toDisplayString(j.value(L.type).text),1)])],42,B8),e.createElementVNode("button",{type:"button",class:e.normalizeClass({dp__btn:!0,dp__inc_dec_button:!e.unref(p).timePickerInline,dp__inc_dec_button_inline:e.unref(p).timePickerInline,dp__tp_inline_btn_bottom:e.unref(p).timePickerInline,dp__inc_dec_button_disabled:E.value(L.type),"dp--hidden-el":V.value}),"data-test-id":`${L.type}-time-dec-btn-${a.order}`,"aria-label":e.unref(s)?.decrementValue(L.type),tabindex:"0","data-dp-action-element":Z.value,onKeydown:J=>e.unref(m)(J,()=>ie(L.type,!1,{keyboard:!0}),!0),onClick:J=>e.unref(u).timeArrowHoldThreshold?void 0:ie(L.type,!1),onMousedown:J=>e.unref(u).timeArrowHoldThreshold?ie(L.type,!1):void 0,onMouseup:X},[e.unref(p).timePickerInline?e.renderSlot($.$slots,"tp-inline-arrow-down",{key:1},()=>[ne[4]||(ne[4]=e.createElementVNode("span",{class:"dp__tp_inline_btn_bar dp__tp_btn_in_l"},null,-1)),ne[5]||(ne[5]=e.createElementVNode("span",{class:"dp__tp_inline_btn_bar dp__tp_btn_in_r"},null,-1))]):e.renderSlot($.$slots,"arrow-down",{key:0},()=>[e.createVNode(e.unref(ls))])],42,E8)],64))],10,v8))),128)),e.unref(p).is24?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",b8,[e.renderSlot($.$slots,"am-pm-button",{toggle:te,value:A.value},()=>[e.createElementVNode("button",{ref_key:"amPmButton",ref:y,type:"button",class:"dp__pm_am_button",role:"button","aria-label":e.unref(s)?.amPmButton,tabindex:"0","data-dp-action-element":Z.value,"data-compact":U.value,onClick:te,onKeydown:ne[0]||(ne[0]=L=>e.unref(m)(L,()=>te(),!0))},e.toDisplayString(A.value),41,C8)])])),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(he.value,(L,z)=>(e.openBlock(),e.createBlock(e.Transition,{key:z,name:e.unref(v)(C[L.type]),css:e.unref(b)},{default:e.withCtx(()=>[C[L.type]?(e.openBlock(),e.createBlock(Nr,{key:0,items:pe(L.type),"is-last":e.unref(c).autoApply&&!e.unref(u).keepActionRow,type:L.type,"aria-labels":e.unref(s),level:e.unref(p).timePickerInline||e.unref(c).timePicker?1:2,"overlay-label":e.unref(s).timeOverlay?.(L.type),onSelected:J=>W(L.type,J),onToggle:J=>le(L.type),onResetFlow:ne[1]||(ne[1]=J=>$.$emit("reset-flow"))},e.createSlots({"button-icon":e.withCtx(()=>[e.renderSlot($.$slots,"clock-icon",{},()=>[$.$slots["clock-icon"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.resolveDynamicComponent(e.unref(p).timePickerInline?e.unref(Cr):e.unref(rs)),{key:0}))])]),_:2},[$.$slots[`${L.type}-overlay-value`]?{name:"item",fn:e.withCtx(({item:J})=>[e.renderSlot($.$slots,`${L.type}-overlay-value`,{text:J.text,value:J.value})]),key:"0"}:void 0,$.$slots[`${L.type}-overlay-header`]?{name:"header",fn:e.withCtx(()=>[e.renderSlot($.$slots,`${L.type}-overlay-header`,{toggle:()=>le(L.type)})]),key:"1"}:void 0]),1032,["items","is-last","type","aria-labels","level","overlay-label","onSelected","onToggle"])):e.createCommentVNode("",!0)]),_:2},1032,["name","css"]))),128))]))}}),V8=["data-dp-mobile"],A8=["aria-label","tabindex"],_8=["role","aria-label","tabindex"],N8=["aria-label"],gs=e.defineComponent({__name:"TimePicker",props:{hours:{},minutes:{},seconds:{},disabledTimesConfig:{type:[Function,null]},noOverlayFocus:{type:Boolean},validateTime:{type:Function}},emits:["update:hours","update:minutes","update:seconds","mount","reset-flow"],setup(n,{expose:t,emit:r}){const o=r,a=n,{rootEmit:l,setState:i,modelValue:c,rootProps:s,defaults:{ariaLabels:d,textInput:u,config:h,range:f,timeConfig:p}}=_e(),{isModelAuto:m}=ht(),{checkKeyDown:w,findFocusableEl:g}=nt(),{transitionName:k,showTransition:x}=Mr(),{hideNavigationButtons:v}=Lo(),{isMobile:b}=Ho(),C=e.useSlots(),A=e.useTemplateRef("overlay"),y=e.useTemplateRef("close-tp-btn"),B=e.useTemplateRef("tp-input"),V=e.ref(!1);e.onMounted(()=>{o("mount")});const S=e.computed(()=>f.value.enabled&&s.modelAuto?m(c.value):!0),Z=e.ref(!1),D=j=>({hours:Array.isArray(a.hours)?a.hours[j]:a.hours,minutes:Array.isArray(a.minutes)?a.minutes[j]:a.minutes,seconds:Array.isArray(a.seconds)?a.seconds[j]:a.seconds}),R=e.computed(()=>{const j=[];if(f.value.enabled)for(let ee=0;ee<2;ee++)j.push(D(ee));else j.push(D(0));return j}),K=(j,ee=!1,se="")=>{ee||o("reset-flow"),Z.value=j,i("arrowNavigationLevel",j?1:0),l("overlay-toggle",{open:j,overlay:wt.time}),e.nextTick(()=>{se!==""&&B.value?.[0]&&B.value[0].openChildCmp(se)})},_=e.computed(()=>({dp__btn:!0,dp__button:!0,dp__button_bottom:s.autoApply&&!h.value.keepActionRow})),T=an(C,Ft.TimeInput),E=(j,ee,se)=>f.value.enabled?ee===0?[j,R.value[1][se]]:[R.value[0][se],j]:j,N=j=>{o("update:hours",j)},F=j=>{o("update:minutes",j)},P=j=>{o("update:seconds",j)},U=()=>{if(A.value&&!u.value.enabled&&!a.noOverlayFocus){const j=g(A.value);j&&j.focus({preventScroll:!0})}},ce=j=>{V.value=!1,l("overlay-toggle",{open:!1,overlay:j})},he=j=>{V.value=!0,l("overlay-toggle",{open:!0,overlay:j})};return t({toggleTimePicker:K}),(j,ee)=>(e.openBlock(),e.createElementBlock("div",{class:"dp--tp-wrap","data-dp-mobile":e.unref(b)},[!e.unref(s).timePicker&&!e.unref(p).timePickerInline?e.withDirectives((e.openBlock(),e.createElementBlock("button",{key:0,ref:"open-tp-btn",type:"button","data-dp-action-element":"0",class:e.normalizeClass({..._.value,"dp--hidden-el":Z.value}),"aria-label":e.unref(d)?.openTimePicker,tabindex:n.noOverlayFocus?void 0:0,"data-test-id":"open-time-picker-btn",onKeydown:ee[0]||(ee[0]=se=>e.unref(w)(se,()=>K(!0))),onClick:ee[1]||(ee[1]=se=>K(!0))},[e.renderSlot(j.$slots,"clock-icon",{},()=>[e.createVNode(e.unref(rs))])],42,A8)),[[e.vShow,!e.unref(v)("time")]]):e.createCommentVNode("",!0),e.createVNode(e.Transition,{name:e.unref(k)(Z.value),css:e.unref(x)&&!e.unref(p).timePickerInline},{default:e.withCtx(()=>[Z.value||e.unref(s).timePicker||e.unref(p).timePickerInline?(e.openBlock(),e.createElementBlock("div",{key:0,ref:"overlay",role:e.unref(p).timePickerInline?void 0:"dialog",class:e.normalizeClass({dp__overlay:!e.unref(p).timePickerInline,"dp--overlay-absolute":!e.unref(s).timePicker&&!e.unref(p).timePickerInline,"dp--overlay-relative":e.unref(s).timePicker}),style:e.normalizeStyle(e.unref(s).timePicker?{height:`${e.unref(h).modeHeight}px`}:void 0),"aria-label":e.unref(d)?.timePicker,tabindex:e.unref(p).timePickerInline?void 0:0},[e.createElementVNode("div",{class:e.normalizeClass(e.unref(p).timePickerInline?"dp__time_picker_inline_container":"dp__overlay_container dp__container_flex dp__time_picker_overlay_container"),style:{display:"flex"}},[e.renderSlot(j.$slots,"time-picker-overlay",{hours:n.hours,minutes:n.minutes,seconds:n.seconds,setHours:N,setMinutes:F,setSeconds:P},()=>[e.createElementVNode("div",{class:e.normalizeClass(e.unref(p).timePickerInline?"dp__flex":"dp__overlay_row dp__flex_row")},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(R.value,(se,pe)=>e.withDirectives((e.openBlock(),e.createBlock(M8,e.mergeProps({key:pe},{ref_for:!0},{order:pe,hours:se.hours,minutes:se.minutes,seconds:se.seconds,closeTimePickerBtn:y.value,disabledTimesConfig:n.disabledTimesConfig,disabled:pe===0?e.unref(f).fixedStart:e.unref(f).fixedEnd},{ref_for:!0,ref:"tp-input","validate-time":(me,be)=>n.validateTime(me,E(be,pe,me)),"onUpdate:hours":me=>N(E(me,pe,"hours")),"onUpdate:minutes":me=>F(E(me,pe,"minutes")),"onUpdate:seconds":me=>P(E(me,pe,"seconds")),onMounted:U,onOverlayClosed:ce,onOverlayOpened:he}),e.createSlots({_:2},[e.renderList(e.unref(T),(me,be)=>({name:me,fn:e.withCtx(I=>[e.renderSlot(j.$slots,me,e.mergeProps({ref_for:!0},I))])}))]),1040,["validate-time","onUpdate:hours","onUpdate:minutes","onUpdate:seconds"])),[[e.vShow,pe===0?!0:S.value]])),128))],2)]),!e.unref(s).timePicker&&!e.unref(p).timePickerInline?e.withDirectives((e.openBlock(),e.createElementBlock("button",{key:0,ref:"close-tp-btn","data-dp-action-element":"1",type:"button",class:e.normalizeClass({..._.value,"dp--hidden-el":V.value}),"aria-label":e.unref(d)?.closeTimePicker,tabindex:"0",onKeydown:ee[2]||(ee[2]=se=>e.unref(w)(se,()=>K(!1))),onClick:ee[3]||(ee[3]=se=>K(!1))},[e.renderSlot(j.$slots,"calendar-icon",{},()=>[e.createVNode(e.unref(Cr))])],42,N8)),[[e.vShow,!e.unref(v)("time")]]):e.createCommentVNode("",!0)],2)],14,_8)):e.createCommentVNode("",!0)]),_:3},8,["name","css"])],8,V8))}}),ks=n=>{const{getDate:t,modelValue:r,time:o,rootProps:a,defaults:{range:l,timeConfig:i}}=_e(),{isDateEqual:c,setTime:s}=ht(),d=(y,B)=>Array.isArray(o[y])?o[y][B]:o[y],u=y=>i.value.enableSeconds?Array.isArray(o.seconds)?o.seconds[y]:o.seconds:0,h=(y,B)=>y?s(B!==void 0?{hours:d("hours",B),minutes:d("minutes",B),seconds:u(B)}:{hours:o.hours,minutes:o.minutes,seconds:u()},y):Km(t(),u(B)),f=(y,B)=>{o[y]=B},p=e.computed(()=>a.modelAuto&&l.value.enabled?Array.isArray(r.value)?r.value.length>1:!1:l.value.enabled),m=(y,B)=>{const V=Object.fromEntries(Object.keys(o).map(S=>S===y?[S,B]:[S,o[S]].slice()));if(p.value&&!l.value.disableTimeRangeValidation){const S=D=>r.value?s({hours:V.hours[D],minutes:V.minutes[D],seconds:V.seconds[D]},r.value[D]):null,Z=D=>Ym(r.value[D],0);return!(c(S(0),S(1))&&(tn(S(0),Z(1))||mn(S(1),Z(0))))}return!0},w=(y,B)=>{m(y,B)&&(f(y,B),n&&n())},g=y=>{w("hours",y)},k=y=>{w("minutes",y)},x=y=>{w("seconds",y)},v=(y,B)=>{g(y.hours),k(y.minutes),x(y.seconds),r.value&&B(r.value)},b=y=>{if(y){const B=Array.isArray(y),V=B?[+y[0].hours,+y[1].hours]:+y.hours,S=B?[+y[0].minutes,+y[1].minutes]:+y.minutes,Z=B?[+(y[0].seconds??0),+(y[1].seconds??0)]:+(y.seconds??0);f("hours",V),f("minutes",S),i.value.enableSeconds&&f("seconds",Z)}},C=(y,B)=>{const V={hours:Array.isArray(o.hours)?o.hours[y]:o.hours,disabledArr:[]};return(B||B===0)&&(V.hours=B),Array.isArray(a.disabledTimes)&&(V.disabledArr=l.value.enabled&&Array.isArray(a.disabledTimes[y])?a.disabledTimes[y]:a.disabledTimes),V},A=e.computed(()=>(y,B)=>{if(Array.isArray(a.disabledTimes)){const{disabledArr:V,hours:S}=C(y,B),Z=V.filter(D=>+D.hours===S);return Z[0]?.minutes==="*"?{hours:[S],minutes:void 0,seconds:void 0}:{hours:[],minutes:Z?.map(D=>+D.minutes)??[],seconds:Z?.map(D=>D.seconds?+D.seconds:void 0)??[]}}return{hours:[],minutes:[],seconds:[]}});return{assignTime:f,updateHours:g,updateMinutes:k,updateSeconds:x,getSetDateTime:h,updateTimeValues:v,getSecondsValue:u,assignStartTime:b,validateTime:m,disabledTimesConfig:A}},Z8=n=>{const{getDate:t,time:r,modelValue:o,state:a,defaults:{startTime:l,range:i,timeConfig:c}}=_e(),{getTimeObj:s}=ht();Vr(()=>{a.isTextInputDate&&C()});const{updateTimeValues:d,getSetDateTime:u,assignTime:h,assignStartTime:f,disabledTimesConfig:p,validateTime:m}=ks(w);function w(){n("update-flow-step")}const g=y=>{const{hours:B,minutes:V,seconds:S}=y;return{hours:+B,minutes:+V,seconds:S?+S:0}},k=()=>{if(c.value.startTime){if(Array.isArray(c.value.startTime)){const B=g(c.value.startTime[0]),V=g(c.value.startTime[1]);return[Ve(t(),B),Ve(t(),V)]}const y=g(c.value.startTime);return Ve(t(),y)}return i.value.enabled?[null,null]:null},x=()=>{if(i.value.enabled){const[y,B]=k();o.value=[u(y,0),u(B,1)]}else o.value=u(k())},v=y=>Array.isArray(y)?[s(t(y[0])),s(t(y[1]))]:[s(y??t())],b=(y,B,V)=>{h("hours",y),h("minutes",B),h("seconds",c.value.enableSeconds?V:0)},C=()=>{const[y,B]=v(o.value);return i.value.enabled?b([y.hours,B.hours],[y.minutes,B.minutes],[y.seconds,B.seconds]):b(y.hours,y.minutes,y.seconds)};e.onMounted(()=>(f(l.value),o.value?C():x()));const A=()=>{Array.isArray(o.value)?o.value=o.value.map((y,B)=>y&&u(y,B)):o.value=u(o.value),n("time-update")};return{modelValue:o,time:r,disabledTimesConfig:p,validateTime:m,updateTime:y=>{d(y,A)}}},S8=e.defineComponent({__name:"TimePickerSolo",props:{flowStep:{},collapse:{type:Boolean},menuWrapRef:{},noOverlayFocus:{type:Boolean}},emits:["time-update","mount","reset-flow","update-flow-step"],setup(n,{expose:t,emit:r}){const o=r,a=e.useSlots(),l=an(a,Ft.TimePicker),i=e.useTemplateRef("time-input"),{time:c,modelValue:s,disabledTimesConfig:d,updateTime:u,validateTime:h}=Z8(o);return e.onMounted(()=>{o("mount")}),t({getSidebarProps:()=>({modelValue:s,time:c,updateTime:u}),toggleTimePicker:(f,p=!1,m="")=>{i.value?.toggleTimePicker(f,p,m)}}),(f,p)=>(e.openBlock(),e.createBlock(Do,{"multi-calendars":0,stretch:""},{default:e.withCtx(({wrapClass:m})=>[e.createElementVNode("div",{class:e.normalizeClass(m)},[e.createVNode(gs,e.mergeProps({ref:"time-input"},f.$props,{hours:e.unref(c).hours,minutes:e.unref(c).minutes,seconds:e.unref(c).seconds,"disabled-times-config":e.unref(d),"validate-time":e.unref(h),"onUpdate:hours":p[0]||(p[0]=w=>e.unref(u)({hours:w,minutes:e.unref(c).minutes,seconds:e.unref(c).seconds})),"onUpdate:minutes":p[1]||(p[1]=w=>e.unref(u)({hours:e.unref(c).hours,minutes:w,seconds:e.unref(c).seconds})),"onUpdate:seconds":p[2]||(p[2]=w=>e.unref(u)({hours:e.unref(c).hours,minutes:e.unref(c).minutes,seconds:w})),onResetFlow:p[3]||(p[3]=w=>f.$emit("reset-flow"))}),e.createSlots({_:2},[e.renderList(e.unref(l),(w,g)=>({name:w,fn:e.withCtx(k=>[e.renderSlot(f.$slots,w,e.normalizeProps(e.guardReactiveProps(k)))])}))]),1040,["hours","minutes","seconds","disabled-times-config","validate-time"])],2)]),_:3}))}}),$8=(n,t)=>{const{getDate:r,rootProps:o,defaults:{filters:a}}=_e(),{validateMonthYearInRange:l,validateMonthYear:i}=St(),c=(f,p)=>{let m=f;return a.value.months.includes(Ne(m))?(m=p?Ot(f,1):R0(f,1),c(m,p)):m},s=(f,p)=>{let m=f;return a.value.years.includes(Be(m))?(m=p?Gl(f,1):Jc(f,1),s(m,p)):m},d=(f,p=!1)=>{const m=Ve(r(),{month:n.month,year:n.year});let w=f?Ot(m,1):R0(m,1);o.disableYearSelect&&(w=Rt(w,n.year));let g=Ne(w),k=Be(w);a.value.months.includes(g)&&(w=c(w,f),g=Ne(w),k=Be(w)),a.value.years.includes(k)&&(w=s(w,f),k=Be(w)),l(g,k,f,o.preventMinMaxNavigation)&&u(g,k,p)},u=(f,p,m=!1)=>{t("update-month-year",{month:f,year:p,fromNav:m})},h=e.computed(()=>f=>i(Ve(r(),{month:n.month,year:n.year}),o.preventMinMaxNavigation,f));return{handleMonthYearChange:d,isDisabled:h,updateMonthYear:u}},I8={class:"dp--header-wrap"},H8={key:0,class:"dp__month_year_wrap"},T8={key:0},L8={class:"dp__month_year_wrap"},D8=["data-dp-element","aria-label","data-test-id","onClick","onKeydown"],P8=e.defineComponent({__name:"DpHeader",props:{month:{},year:{},instance:{},years:{},months:{},menuWrapRef:{}},emits:["mount","reset-flow","update-month-year"],setup(n,{expose:t,emit:r}){const o=r,a=n,{rootEmit:l,rootProps:i,modelValue:c,defaults:{ariaLabels:s,filters:d,config:u,highlight:h,safeDates:f,ui:p}}=_e(),{transitionName:m,showTransition:w}=Mr(),{showLeftIcon:g,showRightIcon:k}=Lo(),{handleMonthYearChange:x,isDisabled:v,updateMonthYear:b}=$8(a,o),{getMaxMonth:C,getMinMonth:A,getYearFromDate:y,groupListAndMap:B,checkHighlightYear:V,checkHighlightMonth:S}=ht(),{checkKeyDown:Z}=nt(),{formatYear:D}=_n(),{checkMinMaxValue:R}=St(),{boolHtmlAttribute:K}=F0(),_=e.ref(!1),T=e.ref(!1),E=e.ref(!1);e.onMounted(()=>{o("mount")});const N=Y=>({get:()=>a[Y],set:le=>{const H=Y===zt.month?zt.year:zt.month;o("update-month-year",{[Y]:le,[H]:a[H]}),Y===zt.month?se(!0):pe(!0)}}),F=e.computed(N(zt.month)),P=e.computed(N(zt.year)),U=e.computed(()=>Y=>({month:a.month,year:a.year,items:Y===zt.month?a.months:a.years,instance:a.instance,updateMonthYear:b,toggle:Y===zt.month?se:pe})),ce=e.computed(()=>a.months.find(le=>le.value===a.month)||{text:"",value:0}),he=e.computed(()=>B(a.months,Y=>{const le=a.month===Y.value,H=R(Y.value,A(a.year,f.value.minDate),C(a.year,f.value.maxDate))||d.value.months.includes(Y.value),X=S(h.value,Y.value,a.year);return{active:le,disabled:H,highlighted:X}})),j=e.computed(()=>B(a.years,Y=>{const le=a.year===Y.value,H=R(Y.value,y(f.value.minDate),y(f.value.maxDate))||d.value.years.includes(Y.value),X=V(h.value,Y.value);return{active:le,disabled:H,highlighted:X}})),ee=(Y,le,H)=>{H===void 0?Y.value=!Y.value:Y.value=H,Y.value?(E.value=!0,l("overlay-toggle",{open:!0,overlay:le})):(E.value=!1,l("overlay-toggle",{open:!1,overlay:le}))},se=(Y=!1,le)=>{me(Y),ee(_,wt.month,le)},pe=(Y=!1,le)=>{me(Y),ee(T,wt.year,le)},me=Y=>{Y||o("reset-flow")},be=e.computed(()=>[{type:zt.month,index:1,toggle:se,modelValue:F.value,updateModelValue:Y=>F.value=Y,text:ce.value.text,showSelectionGrid:_.value,items:he.value,ariaLabel:s.value?.openMonthsOverlay,overlayLabel:s.value.monthPicker?.(!0)??void 0},{type:zt.year,index:2,toggle:pe,modelValue:P.value,updateModelValue:Y=>P.value=Y,text:D(a.year),showSelectionGrid:T.value,items:j.value,ariaLabel:s.value?.openYearsOverlay,overlayLabel:s.value.yearPicker?.(!0)??void 0}]),I=e.computed(()=>i.disableYearSelect?[be.value[0]]:i.yearFirst?[...be.value].reverse():be.value);return t({toggleMonthPicker:se,toggleYearPicker:pe,handleMonthYearChange:x}),(Y,le)=>(e.openBlock(),e.createElementBlock("div",I8,[Y.$slots["month-year"]?(e.openBlock(),e.createElementBlock("div",H8,[e.renderSlot(Y.$slots,"month-year",e.normalizeProps(e.guardReactiveProps({month:n.month,year:n.year,months:n.months,years:n.years,updateMonthYear:e.unref(b),handleMonthYearChange:e.unref(x),instance:n.instance,isDisabled:e.unref(v)})))])):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[Y.$slots["top-extra"]?(e.openBlock(),e.createElementBlock("div",T8,[e.renderSlot(Y.$slots,"top-extra",{value:e.unref(c)})])):e.createCommentVNode("",!0),e.createElementVNode("div",L8,[e.unref(g)(n.instance)&&!e.unref(i).vertical?(e.openBlock(),e.createBlock(Zr,{key:0,"aria-label":e.unref(s)?.prevMonth,disabled:e.unref(K)(e.unref(v)(!1)),class:e.normalizeClass(e.unref(p)?.navBtnPrev),"el-name":"action-prev",onActivate:le[0]||(le[0]=H=>e.unref(x)(!1,!0))},{default:e.withCtx(()=>[Y.$slots["arrow-left"]?e.renderSlot(Y.$slots,"arrow-left",{key:0}):e.createCommentVNode("",!0),Y.$slots["arrow-left"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(ts),{key:1}))]),_:3},8,["aria-label","disabled","class"])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["dp__month_year_wrap",{dp__year_disable_select:e.unref(i).disableYearSelect}])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(I.value,H=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:H.type},[e.createElementVNode("button",{type:"button","data-dp-element":`overlay-${H.type}`,class:e.normalizeClass(["dp__btn dp__month_year_select",{"dp--hidden-el":E.value}]),"aria-label":`${H.text}-${H.ariaLabel}`,"data-test-id":`${H.type}-toggle-overlay-${n.instance}`,tabindex:"0","data-dp-action-element":"0",onClick:X=>H.toggle(!1),onKeydown:X=>e.unref(Z)(X,()=>H.toggle(),!0)},[Y.$slots[H.type]?e.renderSlot(Y.$slots,H.type,{key:0,text:H.text,value:a[H.type]}):e.createCommentVNode("",!0),Y.$slots[H.type]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(H.text),1)],64))],42,D8),e.createVNode(e.Transition,{name:e.unref(m)(H.showSelectionGrid),css:e.unref(w)},{default:e.withCtx(()=>[H.showSelectionGrid?(e.openBlock(),e.createBlock(Nr,{key:0,items:H.items,"is-last":e.unref(i).autoApply&&!e.unref(u).keepActionRow,"skip-button-ref":!1,type:H.type,"header-refs":[],"menu-wrap-ref":n.menuWrapRef,"overlay-label":H.overlayLabel,onSelected:H.updateModelValue,onToggle:H.toggle},e.createSlots({"button-icon":e.withCtx(()=>[Y.$slots["calendar-icon"]?e.renderSlot(Y.$slots,"calendar-icon",{key:0}):e.createCommentVNode("",!0),Y.$slots["calendar-icon"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(Cr),{key:1}))]),_:2},[Y.$slots[`${H.type}-overlay-value`]?{name:"item",fn:e.withCtx(({item:X})=>[e.renderSlot(Y.$slots,`${H.type}-overlay-value`,{text:X.text,value:X.value})]),key:"0"}:void 0,Y.$slots[`${H.type}-overlay`]?{name:"overlay",fn:e.withCtx(()=>[e.renderSlot(Y.$slots,`${H.type}-overlay`,e.mergeProps({ref_for:!0},U.value(H.type)))]),key:"1"}:void 0,Y.$slots[`${H.type}-overlay-header`]?{name:"header",fn:e.withCtx(()=>[e.renderSlot(Y.$slots,`${H.type}-overlay-header`,{toggle:H.toggle})]),key:"2"}:void 0]),1032,["items","is-last","type","menu-wrap-ref","overlay-label","onSelected","onToggle"])):e.createCommentVNode("",!0)]),_:2},1032,["name","css"])],64))),128))],2),e.unref(g)(n.instance)&&e.unref(i).vertical?(e.openBlock(),e.createBlock(Zr,{key:1,"aria-label":e.unref(s)?.prevMonth,"el-name":"action-prev",disabled:e.unref(K)(e.unref(v)(!1)),class:e.normalizeClass(e.unref(p)?.navBtnPrev),onActivate:le[1]||(le[1]=H=>e.unref(x)(!1,!0))},{default:e.withCtx(()=>[Y.$slots["arrow-up"]?e.renderSlot(Y.$slots,"arrow-up",{key:0}):e.createCommentVNode("",!0),Y.$slots["arrow-up"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(as),{key:1}))]),_:3},8,["aria-label","disabled","class"])):e.createCommentVNode("",!0),e.unref(k)(n.instance)?(e.openBlock(),e.createBlock(Zr,{key:2,ref:"rightIcon","el-name":"action-next",disabled:e.unref(K)(e.unref(v)(!0)),"aria-label":e.unref(s)?.nextMonth,class:e.normalizeClass(e.unref(p)?.navBtnNext),onActivate:le[2]||(le[2]=H=>e.unref(x)(!0,!0))},{default:e.withCtx(()=>[Y.$slots[e.unref(i).vertical?"arrow-down":"arrow-right"]?e.renderSlot(Y.$slots,e.unref(i).vertical?"arrow-down":"arrow-right",{key:0}):e.createCommentVNode("",!0),Y.$slots[e.unref(i).vertical?"arrow-down":"arrow-right"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.resolveDynamicComponent(e.unref(i).vertical?e.unref(ls):e.unref(ns)),{key:1}))]),_:3},8,["disabled","aria-label","class"])):e.createCommentVNode("",!0)])],64))]))}}),O8={class:"dp__calendar_header",role:"row"},R8={key:0,class:"dp__calendar_header_item",role:"gridcell"},z8=["aria-label"],j8={key:0,class:"dp__calendar_item dp__week_num",role:"gridcell"},F8={class:"dp__cell_inner"},U8=["id","aria-selected","aria-disabled","aria-label","tabindex","data-test-id","data-dp-element-active","onClick","onTouchend","onKeydown","onMouseenter","onMouseleave","onMousedown"],W8=e.defineComponent({__name:"DpCalendar",props:{instance:{},mappedDates:{},month:{},year:{}},emits:["mount","select-date","set-hover-date","handle-scroll","handle-swipe"],setup(n,{expose:t,emit:r}){const o=r,a=n,{getDate:l,rootEmit:i,rootProps:c,defaults:{transitions:s,config:d,ariaLabels:u,multiCalendars:h,weekNumbers:f,multiDates:p,ui:m}}=_e(),{isDateAfter:w,isDateEqual:g,resetDateTime:k,getCellId:x}=ht(),{checkKeyDown:v,checkStopPropagation:b,isTouchDevice:C}=nt(),{formatWeekDay:A}=_n(),y=e.useTemplateRef("calendar-wrap"),B=e.useTemplateRef("active-tooltip"),V=e.ref([]),S=e.ref(null),Z=e.ref(!0),D=e.ref(!1),R=e.ref(""),K=e.ref({bottom:"",left:"",transform:""}),_=e.ref({left:"50%"});Bh(y,{onSwipeEnd:(M,W)=>{d.value.noSwipe||(c.vertical?(W==="up"||W==="down")&&o("handle-swipe",W==="up"?"left":"right"):(W==="left"||W==="right")&&o("handle-swipe",W==="right"?"left":"right"))}});const T=e.computed(()=>c.calendar?c.calendar(a.mappedDates):a.mappedDates),E=e.computed(()=>c.dayNames?Array.isArray(c.dayNames)?c.dayNames:c.dayNames():te());e.onMounted(()=>{o("mount",{cmp:"calendar",dayRefs:V.value}),d.value.monthChangeOnScroll&&y.value&&y.value.addEventListener("wheel",Y,{passive:!1})}),e.onUnmounted(()=>{d.value.monthChangeOnScroll&&y.value&&y.value.removeEventListener("wheel",Y)});const N=M=>M?c.vertical?"vNext":"next":c.vertical?"vPrevious":"previous",F=(M,W)=>{if(c.transitions){const $=k(Ve(l(),{month:a.month,year:a.year}));R.value=w(k(Ve(l(),{month:M,year:W})),$)?s.value[N(!0)]:s.value[N(!1)],Z.value=!1,e.nextTick(()=>{Z.value=!0})}},P=e.computed(()=>({...m.value.calendar})),U=M=>({type:"dot",...M}),ce=e.computed(()=>M=>{const W=U(M);return{dp__marker_dot:W.type==="dot",dp__marker_line:W.type==="line"}}),he=e.computed(()=>M=>g(M,S.value)),j=e.computed(()=>({dp__calendar:!0,dp__calendar_next:h.value.count>0&&a.instance!==0})),ee=e.computed(()=>M=>c.hideOffsetDates?M.current:!0),se=async(M,W)=>{const{width:$,height:ne}=M.getBoundingClientRect();S.value=W.value;let L={left:`${$/2}px`},z=-50;if(await e.nextTick(),B.value?.[0]){const{left:J,width:ue}=B.value[0].getBoundingClientRect();J<0&&(L={left:"0"},z=0,_.value.left=`${$/2}px`),globalThis.innerWidth<J+ue&&(L={right:"0"},z=0,_.value.left=`${ue-$/2}px`)}K.value={bottom:`${ne}px`,...L,transform:`translateX(${z}%)`}},pe=async(M,W,$)=>{const ne=Et(V.value?.[W]?.[$]);ne&&(M.marker?.customPosition&&M.marker?.tooltip?.length?K.value=M.marker.customPosition(ne):await se(ne,M),i("tooltip-open",M.marker))},me=async(M,W,$)=>{if(D.value&&p.value.enabled&&p.value.dragSelect)return o("select-date",M);if(o("set-hover-date",M),M.marker?.tooltip?.length){if(c.hideOffsetDates&&!M.current)return;await pe(M,W,$)}},be=M=>{S.value&&(S.value=null,K.value=structuredClone({bottom:"",left:"",transform:""}),i("tooltip-close",M.marker))},I=(M,W,$)=>{M&&(Array.isArray(V.value[W])?V.value[W][$]=M:V.value[W]=[M])},Y=M=>{d.value.monthChangeOnScroll&&(M.preventDefault(),o("handle-scroll",M))},le=M=>f.value?f.value.type==="local"?n5(M.value,{weekStartsOn:+c.weekStart,locale:c.locale}):f.value.type==="iso"?e5(M.value):typeof f.value.type=="function"?f.value.type(M.value):"":"",H=M=>{const W=M[0];return f.value?.hideOnOffsetDates?M.some($=>$.current)?le(W):"":le(W)},X=(M,W,$=!0)=>{!$&&C()||(!p.value.enabled||d.value.allowPreventDefault)&&(b(M,d.value),o("select-date",W))},ie=M=>{b(M,d.value)},O=M=>{p.value.enabled&&p.value.dragSelect?(D.value=!0,o("select-date",M)):p.value.enabled&&o("select-date",M)},te=()=>{const M=l(),W=Nt(M,{locale:c.locale,weekStartsOn:+c.weekStart}),$=Xl(M,{locale:c.locale,weekStartsOn:+c.weekStart});return Jl({start:W,end:$}).map(ne=>A(ne))};return t({triggerTransition:F}),(M,W)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(j.value)},[e.createElementVNode("div",{ref:"calendar-wrap",class:e.normalizeClass(P.value),role:"grid"},[e.createElementVNode("div",O8,[e.unref(f)?(e.openBlock(),e.createElementBlock("div",R8,e.toDisplayString(e.unref(f).label),1)):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.value,($,ne)=>(e.openBlock(),e.createElementBlock("div",{key:ne,class:"dp__calendar_header_item",role:"gridcell","data-test-id":"calendar-header","aria-label":e.unref(u)?.weekDay?.(ne)},[e.renderSlot(M.$slots,"calendar-header",{day:$,index:ne},()=>[e.createTextVNode(e.toDisplayString($),1)])],8,z8))),128))]),W[2]||(W[2]=e.createElementVNode("div",{class:"dp__calendar_header_separator"},null,-1)),e.createVNode(e.Transition,{name:R.value,css:!!e.unref(s)},{default:e.withCtx(()=>[Z.value?(e.openBlock(),e.createElementBlock("div",{key:0,class:"dp__calendar",role:"rowgroup",onMouseleave:W[1]||(W[1]=$=>D.value=!1)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(T.value,($,ne)=>(e.openBlock(),e.createElementBlock("div",{key:ne,class:"dp__calendar_row",role:"row"},[e.unref(f)?(e.openBlock(),e.createElementBlock("div",j8,[e.createElementVNode("div",F8,e.toDisplayString(H($.days)),1)])):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($.days,(L,z)=>(e.openBlock(),e.createElementBlock("div",{id:e.unref(x)(L.value),ref_for:!0,ref:J=>I(J,ne,z),key:z+ne,role:"gridcell",class:"dp__calendar_item","aria-selected":(L.classData.dp__active_date||L.classData.dp__range_start||L.classData.dp__range_end)??void 0,"aria-disabled":L.classData.dp__cell_disabled||void 0,"aria-label":e.unref(u)?.day?.(L),tabindex:!L.current&&e.unref(c).hideOffsetDates?void 0:0,"data-test-id":e.unref(x)(L.value),"data-dp-element-active":L.classData.dp__active_date?0:void 0,"data-dp-action-element":"0",onClick:e.withModifiers(J=>X(J,L),["prevent"]),onTouchend:J=>X(J,L,!1),onKeydown:J=>e.unref(v)(J,()=>M.$emit("select-date",L)),onMouseenter:J=>me(L,ne,z),onMouseleave:J=>be(L),onMousedown:J=>O(L),onMouseup:W[0]||(W[0]=J=>D.value=!1)},[e.createElementVNode("div",{class:e.normalizeClass(["dp__cell_inner",L.classData])},[M.$slots.day&&ee.value(L)?e.renderSlot(M.$slots,"day",{key:0,day:+L.text,date:L.value}):e.createCommentVNode("",!0),M.$slots.day?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(L.text),1)],64)),L.marker&&ee.value(L)?e.renderSlot(M.$slots,"marker",{key:2,marker:L.marker,day:+L.text,date:L.value},()=>[e.createElementVNode("div",{class:e.normalizeClass(ce.value(L.marker)),style:e.normalizeStyle(L.marker.color?{backgroundColor:L.marker.color}:{})},null,6)]):e.createCommentVNode("",!0),he.value(L.value)?(e.openBlock(),e.createElementBlock("div",{key:3,ref_for:!0,ref:"active-tooltip",class:"dp__marker_tooltip",style:e.normalizeStyle(K.value)},[L.marker?.tooltip?(e.openBlock(),e.createElementBlock("div",{key:0,class:"dp__tooltip_content",onClick:ie},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(L.marker.tooltip,(J,ue)=>(e.openBlock(),e.createElementBlock("div",{key:ue,class:"dp__tooltip_text"},[e.renderSlot(M.$slots,"marker-tooltip",{tooltip:J,day:L.value},()=>[e.createElementVNode("div",{class:"dp__tooltip_mark",style:e.normalizeStyle(J.color?{backgroundColor:J.color}:{})},null,4),e.createElementVNode("div",null,e.toDisplayString(J.text),1)])]))),128)),e.createElementVNode("div",{class:"dp__arrow_bottom_tp",style:e.normalizeStyle(_.value)},null,4)])):e.createCommentVNode("",!0)],4)):e.createCommentVNode("",!0)],2)],40,U8))),128))]))),128))],32)):e.createCommentVNode("",!0)]),_:3},8,["name","css"])],2)],2))}}),q8=(n,t,r,o)=>{const a=e.ref([]),l=e.ref(new Date),i=e.ref(),{getDate:c,rootEmit:s,calendars:d,month:u,year:h,time:f,modelValue:p,rootProps:m,today:w,state:g,defaults:{multiCalendars:k,startTime:x,range:v,config:b,safeDates:C,multiDates:A,timeConfig:y,flow:B}}=_e(),{validateMonthYearInRange:V,isDisabled:S,isDateRangeAllowed:Z,checkMinMaxRange:D}=St(),{updateTimeValues:R,getSetDateTime:K,assignTime:_,assignStartTime:T,validateTime:E,disabledTimesConfig:N}=ks(o),{formatDay:F}=_n(),{resetDateTime:P,setTime:U,isDateBefore:ce,isDateEqual:he,getDaysInBetween:j}=ht(),{checkRangeAutoApply:ee,getRangeWithFixedDate:se,handleMultiDatesSelect:pe,setPresetDate:me}=Po(),{getMapDate:be}=nt();Vr(()=>O(g.isTextInputDate));const I=q=>!b.value.keepViewOnOffsetClick||q?!0:!i.value,Y=(q,ae,xe,Ae=!1)=>{I(Ae)&&(d.value[q]??=d.value[q]={month:0,year:0},d.value[q].month=ae??d.value[q]?.month,d.value[q].year=xe??d.value[q]?.year)},le=()=>{m.autoApply&&t("select-date")},H=()=>{x.value&&T(x.value)};e.onMounted(()=>{p.value||(ot(),H()),O(!0),m.focusStartDate&&m.startDate&&ot()});const X=e.computed(()=>B.value?.steps?.length&&!B.value?.partial?n.flowStep===B.value.steps.length:!0),ie=()=>{m.autoApply&&X.value&&t("auto-apply",B.value?.partial?n.flowStep!==B.value?.steps?.length:!1)},O=(q=!1)=>{if(p.value)return Array.isArray(p.value)?(a.value=p.value,J(q)):$(p.value,q);if(k.value.count&&q&&!m.startDate)return W(c(),q)},te=()=>Array.isArray(p.value)&&v.value.enabled?Ne(p.value[0])===Ne(p.value[1]??p.value[0]):!1,M=q=>{const ae=Ot(q,1);return{month:Ne(ae),year:Be(ae)}},W=(q=c(),ae=!1)=>{if((!k.value.count||!k.value.static||ae)&&Y(0,Ne(q),Be(q)),k.value.count&&(!p.value||te()||!k.value.solo)&&(!k.value.solo||ae))for(let xe=1;xe<k.value.count;xe++){const Ae=Ve(c(),{month:u.value(xe-1),year:h.value(xe-1)}),Ke=Mc(Ae,{months:1});d.value[xe]={month:Ne(Ke),year:Be(Ke)}}},$=(q,ae)=>{W(q),_("hours",en(q)),_("minutes",fn(q)),_("seconds",An(q)),k.value.count&&ae&&Ce()},ne=q=>{if(k.value.count){if(k.value.solo)return 0;const ae=Ne(q[0]),xe=Ne(q[1]);return Math.abs(xe-ae)<k.value.count?0:1}return 1},L=(q,ae)=>{q[1]&&v.value.showLastInRange?W(q[ne(q)],ae):W(q[0],ae);const xe=(Ae,Ke)=>[Ae(q[0]),q?.[1]?Ae(q[1]):f[Ke][1]];_("hours",xe(en,"hours")),_("minutes",xe(fn,"minutes")),_("seconds",xe(An,"seconds"))},z=(q,ae)=>{if((v.value.enabled||m.weekPicker)&&!A.value.enabled)return L(q,ae);if(A.value.enabled&&ae){const xe=q[q.length-1];return $(xe,ae)}},J=q=>{const ae=p.value;z(ae,q),k.value.count&&k.value.solo&&Ce()},ue=(q,ae)=>{const xe=Ve(c(),{month:u.value(ae),year:h.value(ae)}),Ae=q<0?Ot(xe,1):R0(xe,1);V(Ne(Ae),Be(Ae),q<0,m.preventMinMaxNavigation)&&(Y(ae,Ne(Ae),Be(Ae)),s("update-month-year",{instance:ae,month:Ne(Ae),year:Be(Ae)}),k.value.count&&!k.value.solo&&re(ae),r())},re=q=>{for(let ae=q-1;ae>=0;ae--){const xe=R0(Ve(c(),{month:u.value(ae+1),year:h.value(ae+1)}),1);Y(ae,Ne(xe),Be(xe))}for(let ae=q+1;ae<=k.value.count-1;ae++){const xe=Ot(Ve(c(),{month:u.value(ae-1),year:h.value(ae-1)}),1);Y(ae,Ne(xe),Be(xe))}},Ce=()=>{if(Array.isArray(p.value)&&p.value.length===2){const q=c(c(p.value[1]??Ot(p.value[0],1))),[ae,xe]=[Ne(p.value[0]),Be(p.value[0])],[Ae,Ke]=[Ne(p.value[1]),Be(p.value[1])];(ae!==Ae||ae===Ae&&xe!==Ke)&&k.value.solo&&Y(1,Ne(q),Be(q))}else p.value&&!Array.isArray(p.value)&&(Y(0,Ne(p.value),Be(p.value)),W(c()))},ot=()=>{m.startDate&&(Y(0,Ne(c(m.startDate)),Be(c(m.startDate))),k.value.count&&re(0))},kt=(q,ae)=>{if(b.value.monthChangeOnScroll){const xe=Date.now()-l.value.getTime(),Ae=Math.abs(q.deltaY);let Ke=500;Ae>1&&(Ke=100),Ae>100&&(Ke=0),xe>Ke&&(l.value=new Date,ue(b.value.monthChangeOnScroll==="inverse"?q.deltaY:-q.deltaY,ae))}},Tt=(q,ae,xe=!1)=>{b.value.monthChangeOnArrows&&m.vertical===xe&&yn(q,ae)},yn=(q,ae)=>{ue(q==="right"?-1:1,ae)},E0=q=>{if(C.value.markers)return be(q.value,C.value.markers)},b0=(q,ae)=>{switch(m.sixWeeks===!0?"append":m.sixWeeks){case"prepend":return[!0,!1];case"center":return[q==0,!0];case"fair":return[q==0||ae>q,!0];case"append":return[!1,!1];default:return[!1,!1]}},C0=(q,ae,xe,Ae)=>{if(m.sixWeeks&&q.length<6){const Ke=6-q.length,Fn=(ae.getDay()+7-Ae)%7,ar=6-(xe.getDay()+7-Ae)%7,[io,hl]=b0(Fn,ar);for(let co=1;co<=Ke;co++)if(hl?!!(co%2)==io:io){const Un=q[0].days[0],X1=ao(_t(Un.value,-7),Ne(ae));q.unshift({days:X1})}else{const Un=q[q.length-1],X1=Un.days[Un.days.length-1],aK=ao(_t(X1.value,1),Ne(ae));q.push({days:aK})}}return q},ao=(q,ae)=>{const xe=c(q),Ae=[];for(let Ke=0;Ke<7;Ke++){const Fn=_t(xe,Ke),ar=Ne(Fn)!==ae;Ae.push({text:m.hideOffsetDates&&ar?"":F(Fn),value:Fn,current:!ar,classData:{}})}return Ae},K1=(q,ae)=>{const xe=[],Ae=c(new Date(ae,q)),Ke=c(new Date(ae,q+1,0)),Fn=m.weekStart,ar=Nt(Ae,{weekStartsOn:Fn}),io=hl=>{const co=ao(hl,q);if(xe.push({days:co}),!xe[xe.length-1].days.some(Un=>he(c(Un.value),P(Ke)))){const Un=_t(hl,7);io(Un)}};return io(ar),C0(xe,Ae,Ke,Fn)},G1=q=>{const ae=U({hours:f.hours,minutes:f.minutes,seconds:ul()},c(q.value));s("date-click",ae),A.value.enabled?pe(ae,A.value.limit):p.value=ae,o(),e.nextTick().then(()=>{ie()})},dl=q=>v.value.noDisabledRange?j(a.value[0],q).some(ae=>S(ae)):!1,we=()=>{a.value=p.value?p.value.slice().filter(q=>!!q):[],a.value.length===2&&!(v.value.fixedStart||v.value.fixedEnd)&&(a.value=[])},Bt=(q,ae)=>{const xe=[c(q.value),_t(c(q.value),+v.value.autoRange)];Z(xe)?(ae&&Kt(q.value),a.value=xe):s("invalid-date",q.value)},Kt=q=>{const ae=Ne(c(q)),xe=Be(c(q));if(Y(0,ae,xe),k.value.count>0)for(let Ae=1;Ae<k.value.count;Ae++){const Ke=M(Ve(c(q),{year:h.value(Ae-1),month:u.value(Ae-1)}));Y(Ae,Ke.month,Ke.year)}},lo=q=>{if(dl(q.value)||!D(q.value,p.value,v.value.fixedStart?0:1))return s("invalid-date",q.value);a.value=se(c(q.value))},M0=(q,ae)=>{if(we(),v.value.autoRange)return Bt(q,ae);if(v.value.fixedStart||v.value.fixedEnd)return lo(q);a.value[0]?D(c(q.value),p.value)&&!dl(q.value)?ce(c(q.value),c(a.value[0]))?v.value.autoSwitchStartEnd?(a.value.unshift(c(q.value)),s("range-end",a.value[0])):(a.value[0]=c(q.value),s("range-start",a.value[0])):(a.value[1]=c(q.value),s("range-end",a.value[1])):s("invalid-date",q.value):(a.value[0]=c(q.value),s("range-start",a.value[0]))},ul=(q=!0)=>y.value.enableSeconds?Array.isArray(f.seconds)?q?f.seconds[0]:f.seconds[1]:f.seconds:0,J1=q=>{a.value[q]=U({hours:f.hours[q],minutes:f.minutes[q],seconds:ul(q!==1)},a.value[q])},KY=()=>{a.value[0]&&a.value[1]&&+a.value?.[0]>+a.value?.[1]&&(a.value.reverse(),s("range-start",a.value[0]),s("range-end",a.value[1]))},GY=()=>{a.value.length&&(a.value[0]&&!a.value[1]?J1(0):(J1(0),J1(1),o()),KY(),p.value=a.value.slice(),ee(a.value,t,a.value.length<2||B.value?.steps.length?n.flowStep!==B.value?.steps?.length:!1))},JY=(q,ae=!1)=>{if(S(q.value)||!q.current&&m.hideOffsetDates)return s("invalid-date",q.value);if(i.value=structuredClone(q),!v.value.enabled)return G1(q);Array.isArray(f.hours)&&Array.isArray(f.minutes)&&!A.value.enabled&&(M0(q,ae),GY())},XY=(q,ae)=>{Y(q,ae.month,ae.year,!0),k.value.count&&!k.value.solo&&re(q),s("update-month-year",{instance:q,month:ae.month,year:ae.year}),r(k.value.solo?q:void 0);const xe=B.value?.steps?.length?B.value.steps[n.flowStep]:void 0;!ae.fromNav&&(xe===wt.month||xe===wt.year)&&o()},QY=q=>{me({value:q}),le(),m.multiCalendars&&e.nextTick().then(()=>O(!0))},eK=()=>{let q=c();return m.actionRow?.nowBtnRound&&(q=qm(q,{roundingMethod:m.actionRow.nowBtnRound.rounding??"ceil",nearestTo:m.actionRow.nowBtnRound.roundTo??15})),q},tK=()=>{const q=eK();!v.value.enabled&&!A.value.enabled?p.value=q:p.value&&Array.isArray(p.value)&&p.value[0]?A.value.enabled?p.value=[...p.value,q]:p.value=ce(q,p.value[0])?[q,p.value[0]]:[p.value[0],q]:p.value=[q],le()},nK=()=>{if(Array.isArray(p.value))if(A.value.enabled){const q=rK();p.value[p.value.length-1]=K(q)}else p.value=p.value.map((q,ae)=>q&&K(q,ae));else p.value=K(p.value);t("time-update")},rK=()=>Array.isArray(p.value)&&p.value.length?p.value[p.value.length-1]:null,oK=q=>{let ae="";if(v.value.enabled&&Array.isArray(p.value))for(const xe of Object.keys(q)){const Ae=q[xe];Array.isArray(Ae)&&(f[xe][0]!==Ae[0]&&(ae="range-start"),f[xe][1]!==Ae[1]&&(ae="range-start"))}return ae};return{calendars:d,modelValue:p,month:u,year:h,time:f,disabledTimesConfig:N,today:w,validateTime:E,getCalendarDays:K1,getMarker:E0,handleScroll:kt,handleSwipe:yn,handleArrow:Tt,selectDate:JY,updateMonthYear:XY,presetDate:QY,selectCurrentDate:tK,updateTime:q=>{const ae=oK(q);R(q,nK),ae&&s(ae,p.value[ae==="range-start"?0:1])},assignMonthAndYear:W,setStartTime:H}},Y8=()=>{const{isModelAuto:n,matchDate:t,isDateAfter:r,isDateBefore:o,isDateBetween:a,isDateEqual:l,getWeekFromDate:i,getBeforeAndAfterInRange:c}=ht(),{getDate:s,today:d,rootProps:u,defaults:{multiCalendars:h,multiDates:f,ui:p,highlight:m,safeDates:w,range:g},modelValue:k}=_e(),{isDisabled:x}=St(),v=e.ref(null),b=M=>{!M.current&&u.hideOffsetDates||(v.value=M.value)},C=()=>{v.value=null},A=M=>Array.isArray(k.value)&&g.value.enabled&&k.value[0]&&v.value?M?r(v.value,k.value[0]):o(v.value,k.value[0]):!0,y=(M,W)=>{const $=()=>k.value?W?k.value[0]||null:k.value[1]:null,ne=k.value&&Array.isArray(k.value)?$():null;return l(s(M.value),ne)},B=M=>{const W=Array.isArray(k.value)?k.value[0]:null;return M?!o(v.value,W):!0},V=(M,W=!0)=>(g.value.enabled||u.weekPicker)&&Array.isArray(k.value)&&k.value.length===2?u.hideOffsetDates&&!M.current?!1:l(s(M.value),k.value[W?0:1]):g.value.enabled?y(M,W)&&B(W)||l(M.value,Array.isArray(k.value)?k.value[0]:null)&&A(W):!1,S=(M,W)=>{if(Array.isArray(k.value)&&k.value[0]&&k.value.length===1){const $=l(M.value,v.value);return W?r(k.value[0],M.value)&&$:o(k.value[0],M.value)&&$}return!1},Z=M=>!k.value||u.hideOffsetDates&&!M.current?!1:g.value.enabled?u.modelAuto&&Array.isArray(k.value)?l(M.value,k.value[0]??d):!1:f.value.enabled&&Array.isArray(k.value)?k.value.some(W=>l(W,M.value)):l(M.value,k.value?k.value:d),D=M=>{if(g.value.autoRange||u.weekPicker){if(v.value){if(u.hideOffsetDates&&!M.current)return!1;const W=_t(v.value,+g.value.autoRange),$=i(s(v.value),u.weekStart);return u.weekPicker?l($[1],s(M.value)):l(W,s(M.value))}return!1}return!1},R=M=>{if(g.value.autoRange||u.weekPicker){if(v.value){const W=_t(v.value,+g.value.autoRange);if(u.hideOffsetDates&&!M.current)return!1;const $=i(s(v.value),u.weekStart);return u.weekPicker?r(M.value,$[0])&&o(M.value,$[1]):r(M.value,v.value)&&o(M.value,W)}return!1}return!1},K=M=>{if(g.value.autoRange||u.weekPicker){if(v.value){if(u.hideOffsetDates&&!M.current)return!1;const W=i(s(v.value),u.weekStart);return u.weekPicker?l(W[0],M.value):l(v.value,M.value)}return!1}return!1},_=M=>a(k.value,v.value,M.value),T=()=>u.modelAuto&&Array.isArray(k.value)?!!k.value[0]:!1,E=()=>u.modelAuto?n(k.value):!0,N=M=>{if(u.weekPicker)return!1;const W=g.value.enabled?!V(M)&&!V(M,!1):!0;return!x(M.value)&&!Z(M)&&!(!M.current&&u.hideOffsetDates)&&W},F=M=>g.value.enabled?u.modelAuto?T()&&Z(M):!1:Z(M),P=M=>m.value?t(M.value,w.value.highlight):!1,U=M=>{const W=x(M.value);return W&&(typeof m.value=="function"?!m.value(M.value,W):!m.value.options.highlightDisabled)},ce=M=>typeof m.value=="function"?m.value(M.value):m.value.weekdays?.includes(M.value.getDay()),he=M=>(g.value.enabled||u.weekPicker)&&(!(h.value.count>0)||M.current)&&E()&&!(!M.current&&u.hideOffsetDates)&&!Z(M)?_(M):!1,j=M=>{if(Array.isArray(k.value)&&k.value.length===1){const{before:W,after:$}=c(+g.value.maxRange,k.value[0]);return mn(M.value,W)||tn(M.value,$)}return!1},ee=M=>{if(Array.isArray(k.value)&&k.value.length===1){const{before:W,after:$}=c(+g.value.minRange,k.value[0]);return a([W,$],k.value[0],M.value)}return!1},se=M=>g.value.enabled&&(g.value.maxRange||g.value.minRange)?g.value.maxRange&&g.value.minRange?j(M)||ee(M):g.value.maxRange?j(M):ee(M):!1,pe=M=>{const{isRangeStart:W,isRangeEnd:$}=Y(M),ne=g.value.enabled?W||$:!1;return{dp__cell_offset:!M.current,dp__pointer:!u.disabled&&!(!M.current&&u.hideOffsetDates)&&!x(M.value)&&!se(M),dp__cell_disabled:x(M.value)||se(M),dp__cell_highlight:!U(M)&&(P(M)||ce(M))&&!F(M)&&!ne&&!K(M)&&!(he(M)&&u.weekPicker)&&!$,dp__cell_highlight_active:!U(M)&&(P(M)||ce(M))&&F(M),dp__today:!u.noToday&&l(M.value,d)&&M.current,"dp--past":o(M.value,d),"dp--future":r(M.value,d)}},me=M=>({dp__active_date:F(M),dp__date_hover:N(M)}),be=M=>{if(k.value&&!Array.isArray(k.value)){const W=i(k.value,u.weekStart);return{...O(M),dp__range_start:l(W[0],M.value),dp__range_end:l(W[1],M.value),dp__range_between_week:r(M.value,W[0])&&o(M.value,W[1])}}return{...O(M)}},I=M=>{if(k.value&&Array.isArray(k.value)){const W=i(k.value[0],u.weekStart),$=k.value[1]?i(k.value[1],u.weekStart):[];return{...O(M),dp__range_start:l(W[0],M.value)||l($[0],M.value),dp__range_end:l(W[1],M.value)||l($[1],M.value),dp__range_between_week:r(M.value,W[0])&&o(M.value,W[1])||r(M.value,$[0])&&o(M.value,$[1]),dp__range_between:r(M.value,W[1])&&o(M.value,$[0])}}return{...O(M)}},Y=M=>{const W=h.value.count>0?M.current&&V(M)&&E():V(M)&&E(),$=h.value.count>0?M.current&&V(M,!1)&&E():V(M,!1)&&E();return{isRangeStart:W,isRangeEnd:$}},le=M=>g.value.enabled&&(g.value.fixedStart||g.value.fixedEnd)&&Array.isArray(k.value)&&k.value.length===2,H=(M,W,$,ne)=>!le(k.value)||!v.value?!1:W?g.value.fixedEnd&&l(M.value,v.value)&&mn(M.value,k.value[0])&&!$:g.value.fixedStart&&l(M.value,v.value)&&tn(M.value,k.value[1])&&!ne,X=(M,W)=>!le(k.value)||!v.value?!1:W?g.value.fixedEnd&&tn(M.value,v.value)&&mn(M.value,k.value[0]):g.value.fixedStart&&mn(M.value,v.value)&&tn(M.value,k.value[1]),ie=M=>{const{isRangeStart:W,isRangeEnd:$}=Y(M);return{dp__range_start:W,dp__range_end:$,dp__range_between:he(M),dp__date_hover:l(M.value,v.value)&&!W&&!$&&!u.weekPicker,dp__date_hover_start:S(M,!0)||H(M,!0,W,$),dp__date_hover_end:S(M,!1)||H(M,!1,W,$),"dp--extended-fixed-start":X(M,!0),"dp--extended-fixed-end":X(M,!1)}},O=M=>({...ie(M),dp__cell_auto_range:R(M),dp__cell_auto_range_start:K(M),dp__cell_auto_range_end:D(M)}),te=M=>g.value.enabled?g.value.autoRange?O(M):u.modelAuto?{...me(M),...ie(M)}:u.weekPicker?I(M):ie(M):u.weekPicker?be(M):me(M);return{setHoverDate:b,clearHoverDate:C,getDayClassData:M=>u.hideOffsetDates&&!M.current?{}:{...pe(M),...te(M),[p.value.dayClass?p.value.dayClass(M.value,k.value):""]:!0,...p.value.calendarCell}}},K8={key:0},G8=e.defineComponent({__name:"DatePicker",props:e.mergeDefaults({flowStep:{},collapse:{type:Boolean},menuWrapRef:{},noOverlayFocus:{type:Boolean}},q6),emits:["mount","update-flow-step","reset-flow","focus-menu","select-date","time-update","auto-apply"],setup(n,{expose:t,emit:r}){const o=r,a=n,{month:l,year:i,modelValue:c,time:s,disabledTimesConfig:d,today:u,validateTime:h,getCalendarDays:f,getMarker:p,handleArrow:m,handleScroll:w,handleSwipe:g,selectDate:k,updateMonthYear:x,presetDate:v,selectCurrentDate:b,updateTime:C,assignMonthAndYear:A,setStartTime:y}=q8(a,o,me,be),B=e.useSlots(),{setHoverDate:V,getDayClassData:S,clearHoverDate:Z}=Y8(),{getDate:D,rootEmit:R,rootProps:K,defaults:{multiCalendars:_,timeConfig:T}}=_e(),{getYears:E,getMonths:N}=To(),{getCellId:F}=ht(),P=e.useTemplateRef("calendar-header"),U=e.useTemplateRef("calendar"),ce=e.useTemplateRef("time-picker"),he=an(B,Ft.Calendar),j=an(B,Ft.DatePickerHeader),ee=an(B,Ft.TimePicker),se=te=>{o("mount",te)};e.watch(_,(te,M)=>{te.count-M.count>0&&A()},{deep:!0});const pe=e.computed(()=>te=>f(l.value(te),i.value(te)).map(M=>({...M,days:M.days.map(W=>(W.marker=p(W),W.classData=S(W),W))})));function me(te){te||te===0?U.value?.[te]?.triggerTransition(l.value(te),i.value(te)):U.value?.forEach((M,W)=>M?.triggerTransition(l.value(W),i.value(W)))}function be(){o("update-flow-step")}const I=(te,M,W=0)=>{P.value?.[W]?.toggleMonthPicker(te,M)},Y=(te,M,W=0)=>{P.value?.[W]?.toggleYearPicker(te,M)},le=(te,M,W)=>{ce.value?.toggleTimePicker(te,M,W)},H=(te,M)=>{if(!K.range){const W=c.value?c.value:u,$=M?D(M):W,ne=te?Nt($,{weekStartsOn:1}):Xl($,{weekStartsOn:1});k({value:ne,current:Ne($)===l.value(0),text:"",classData:{}}),document.getElementById(F(ne))?.focus()}},X=te=>{P.value?.[0]?.handleMonthYearChange(te,!0)},ie=te=>{x(0,{month:l.value(0),year:i.value(0)+(te?1:-1),fromNav:!0})},O=te=>{R("overlay-toggle",{open:!1,overlay:te}),o("focus-menu")};return t({clearHoverDate:Z,presetDate:v,selectCurrentDate:b,handleArrow:m,updateMonthYear:x,setStartTime:y,toggleMonthPicker:I,toggleYearPicker:Y,toggleTimePicker:le,getSidebarProps:()=>({modelValue:c,month:l,year:i,time:s,updateTime:C,updateMonthYear:x,selectDate:k,presetDate:v}),changeMonth:X,changeYear:ie,selectWeekDate:H}),(te,M)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createVNode(Do,{collapse:n.collapse},{default:e.withCtx(({instances:W,wrapClass:$})=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(W,ne=>(e.openBlock(),e.createElementBlock("div",{key:ne,class:e.normalizeClass($)},[e.unref(K).hideMonthYearSelect?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(P8,{key:0,ref_for:!0,ref:"calendar-header",months:e.unref(N)(),years:e.unref(E)(),month:e.unref(l)(ne),year:e.unref(i)(ne),instance:ne,"menu-wrap-ref":n.menuWrapRef,onMount:M[0]||(M[0]=L=>se(e.unref(r0).header)),onResetFlow:M[1]||(M[1]=L=>te.$emit("reset-flow")),onUpdateMonthYear:L=>e.unref(x)(ne,L),onOverlayClosed:O},e.createSlots({_:2},[e.renderList(e.unref(j),(L,z)=>({name:L,fn:e.withCtx(J=>[e.renderSlot(te.$slots,L,e.mergeProps({ref_for:!0},J))])}))]),1032,["months","years","month","year","instance","menu-wrap-ref","onUpdateMonthYear"])),e.createVNode(W8,{ref_for:!0,ref:"calendar","mapped-dates":pe.value(ne),instance:ne,month:e.unref(l)(ne),year:e.unref(i)(ne),onSelectDate:L=>e.unref(k)(L,ne!==1),onSetHoverDate:M[2]||(M[2]=L=>e.unref(V)(L)),onHandleScroll:L=>e.unref(w)(L,ne),onHandleSwipe:L=>e.unref(g)(L,ne),onMount:M[3]||(M[3]=L=>se(e.unref(r0).calendar))},e.createSlots({_:2},[e.renderList(e.unref(he),(L,z)=>({name:L,fn:e.withCtx(J=>[e.renderSlot(te.$slots,L,e.mergeProps({ref_for:!0},J))])}))]),1032,["mapped-dates","instance","month","year","onSelectDate","onHandleScroll","onHandleSwipe"])],2))),128))]),_:3},8,["collapse"]),e.unref(T).enableTimePicker?(e.openBlock(),e.createElementBlock("div",K8,[e.renderSlot(te.$slots,"time-picker",e.normalizeProps(e.guardReactiveProps({time:e.unref(s),updateTime:e.unref(C)})),()=>[e.createVNode(gs,{ref:"time-picker",hours:e.unref(s).hours,minutes:e.unref(s).minutes,seconds:e.unref(s).seconds,"disabled-times-config":e.unref(d),"validate-time":e.unref(h),"no-overlay-focus":n.noOverlayFocus,onMount:M[4]||(M[4]=W=>se(e.unref(r0).timePicker)),"onUpdate:hours":M[5]||(M[5]=W=>e.unref(C)({hours:W,minutes:e.unref(s).minutes,seconds:e.unref(s).seconds})),"onUpdate:minutes":M[6]||(M[6]=W=>e.unref(C)({hours:e.unref(s).hours,minutes:W,seconds:e.unref(s).seconds})),"onUpdate:seconds":M[7]||(M[7]=W=>e.unref(C)({hours:e.unref(s).hours,minutes:e.unref(s).minutes,seconds:W})),onResetFlow:M[8]||(M[8]=W=>te.$emit("reset-flow"))},e.createSlots({_:2},[e.renderList(e.unref(ee),(W,$)=>({name:W,fn:e.withCtx(ne=>[e.renderSlot(te.$slots,W,e.normalizeProps(e.guardReactiveProps(ne)))])}))]),1032,["hours","minutes","seconds","disabled-times-config","validate-time","no-overlay-focus"])])])):e.createCommentVNode("",!0)],64))}}),J8=(n,t)=>{const{getDate:r,modelValue:o,year:a,calendars:l,defaults:{highlight:i,range:c,multiDates:s}}=_e(),{isDateBetween:d,isDateEqual:u}=ht(),{checkRangeAutoApply:h,handleMultiDatesSelect:f,setMonthOrYearRange:p}=Po();Vr();const{isDisabled:m}=St(),{formatQuarterText:w}=_n(),{selectYear:g,groupedYears:k,showYearPicker:x,isDisabled:v,toggleYearPicker:b,handleYearSelect:C,handleYear:A,setStartDate:y}=ws(t),B=e.ref();e.onMounted(()=>{y()});const V=e.computed(()=>E=>o.value?Array.isArray(o.value)?o.value.some(N=>Yc(E,N)):Yc(o.value,E):!1),S=E=>{if(c.value.enabled){if(Array.isArray(o.value)){const N=u(E,o.value[0])||u(E,o.value[1]);return d(o.value,B.value,E)&&!N}return!1}return!1},Z=(E,N)=>E.quarter===Sc(N)&&E.year===Be(N),D=E=>typeof i.value=="function"?i.value({quarter:Sc(E),year:Be(E)}):i.value.quarters.some(N=>Z(N,E)),R=e.computed(()=>E=>{const N=Ve(r(),{year:a.value(E)});return nf({start:D0(N),end:Ic(N)}).map(F=>{const P=e0(F),U=Hc(F),ce=m(F),he=S(P),j=D(P);return{text:w(P,U),value:P,active:V.value(P),highlighted:j,disabled:ce,isBetween:he}})}),K=E=>{f(E,s.value.limit),t("auto-apply",!0)},_=E=>{o.value=p(E),h(o.value,t,o.value.length<2)},T=E=>{o.value=E,t("auto-apply")};return{groupedYears:k,year:a,isDisabled:v,quarters:R,showYearPicker:x,modelValue:o,selectYear:g,toggleYearPicker:b,handleYearSelect:C,handleYear:A,setHoverDate:E=>{B.value=E},selectQuarter:(E,N,F)=>{if(!F)return l.value[N].month=Ne(Hc(E)),s.value.enabled?K(E):c.value.enabled?_(E):T(E)}}},X8={class:"dp--quarter-items"},Q8=["data-test-id","disabled","onClick","onMouseover"],e9=e.defineComponent({__name:"QuarterPicker",props:{flowStep:{},collapse:{type:Boolean},menuWrapRef:{},noOverlayFocus:{type:Boolean}},emits:["reset-flow","auto-apply"],setup(n,{expose:t,emit:r}){const o=r,a=n,{defaults:{config:l}}=_e(),i=e.useSlots(),{boolHtmlAttribute:c}=F0(),s=an(i,Ft.YearMode),{groupedYears:d,year:u,isDisabled:h,quarters:f,modelValue:p,showYearPicker:m,setHoverDate:w,selectQuarter:g,toggleYearPicker:k,handleYearSelect:x,handleYear:v}=J8(a,o);return t({getSidebarProps:()=>({modelValue:p,year:u,selectQuarter:g,handleYearSelect:x,handleYear:v})}),(b,C)=>(e.openBlock(),e.createBlock(Do,{collapse:n.collapse,stretch:""},{default:e.withCtx(({instances:A,wrapClass:y})=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(A,B=>(e.openBlock(),e.createElementBlock("div",{key:B,class:e.normalizeClass(y)},[e.createElementVNode("div",{class:"dp-quarter-picker-wrap",style:e.normalizeStyle({minHeight:`${e.unref(l).modeHeight}px`})},[b.$slots["top-extra"]?e.renderSlot(b.$slots,"top-extra",{key:0,value:e.unref(p)}):e.createCommentVNode("",!0),e.createElementVNode("div",null,[e.createVNode(ms,{items:e.unref(d)(B),instance:B,"show-year-picker":e.unref(m)[B],year:e.unref(u)(B),"is-disabled":V=>e.unref(h)(B,V),onHandleYear:V=>e.unref(v)(B,V),onYearSelect:V=>e.unref(x)(V,B),onToggleYearPicker:V=>e.unref(k)(B,V?.flow,V?.show)},e.createSlots({_:2},[e.renderList(e.unref(s),(V,S)=>({name:V,fn:e.withCtx(Z=>[e.renderSlot(b.$slots,V,e.mergeProps({ref_for:!0},Z))])}))]),1032,["items","instance","show-year-picker","year","is-disabled","onHandleYear","onYearSelect","onToggleYearPicker"])]),e.createElementVNode("div",X8,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(f)(B),(V,S)=>(e.openBlock(),e.createElementBlock("div",{key:S},[e.createElementVNode("button",{type:"button",class:e.normalizeClass(["dp--qr-btn",{"dp--qr-btn-active":V.active,"dp--qr-btn-between":V.isBetween,"dp--qr-btn-disabled":V.disabled,"dp--highlighted":V.highlighted}]),"data-dp-action-element":"0","data-test-id":V.value,disabled:e.unref(c)(V.disabled),onClick:Z=>e.unref(g)(V.value,B,V.disabled),onMouseover:Z=>e.unref(w)(V.value)},[e.renderSlot(b.$slots,"quarter",{value:V.value,text:V.text},()=>[e.createTextVNode(e.toDisplayString(V.text),1)])],42,Q8)]))),128))])],4)],2))),128))]),_:3},8,["collapse"]))}}),t9=["id","tabindex","role","aria-label"],n9={key:0,class:"dp--menu-load-container"},r9={key:1,class:"dp--menu-header"},o9=["data-dp-mobile"],a9={key:0,class:"dp__sidebar_left"},l9=["data-dp-mobile"],i9=["data-test-id","data-dp-mobile","onClick","onKeydown"],c9={class:"dp__instance_calendar"},s9={key:2,class:"dp__sidebar_right"},d9={key:2,class:"dp__action_extra"},u9=e.defineComponent({__name:"DatepickerMenu",props:{collapse:{type:Boolean},noOverlayFocus:{type:Boolean},getInputRect:{type:Function}},emits:["close-picker","select-date","auto-apply","time-update","menu-blur"],setup(n,{expose:t,emit:r}){const o=r,a=e.useSlots(),{state:l,rootProps:i,defaults:{textInput:c,inline:s,config:d,ui:u,ariaLabels:h},setState:f}=_e(),{isMobile:p}=Ho(),{handleEventPropagation:m,getElWithin:w,checkStopPropagation:g,checkKeyDown:k}=nt();o6();const x=e.useTemplateRef("inner-menu"),v=e.useTemplateRef("dp-menu"),b=e.useTemplateRef("dyn-cmp"),C=e.ref(0),A=e.ref(!1),y=e.ref(!1),{flowStep:B,updateFlowStep:V,childMount:S,resetFlow:Z,handleFlow:D}=l6(b),R=O=>{y.value=!0,d.value.allowPreventDefault&&O.preventDefault(),g(O,d.value,!0)};e.onMounted(()=>{A.value=!0,K(),globalThis.addEventListener("resize",K);const O=Et(v);O&&!c.value.enabled&&!s.value.enabled&&f("menuFocused",!0),O&&(O.addEventListener("pointerdown",R),O.addEventListener("mousedown",R)),document.addEventListener("mousedown",ie)}),e.onUnmounted(()=>{globalThis.removeEventListener("resize",K),document.removeEventListener("mousedown",ie);const O=Et(v);O&&(O.removeEventListener("pointerdown",R),O.removeEventListener("mousedown",R))});const K=()=>{const O=Et(x);O&&(C.value=O.getBoundingClientRect().width)},_=e.computed(()=>i.monthPicker?w8:i.yearPicker?k8:i.timePicker?S8:i.quarterPicker?e9:G8),T=()=>{const O=Et(v);O&&O.focus({preventScroll:!0})},E=e.computed(()=>b.value?.getSidebarProps()||{}),N=an(a,Ft.ActionRow),F=an(a,Ft.PassTrough),P=e.computed(()=>({dp__menu_disabled:i.disabled,dp__menu_readonly:i.readonly,"dp-menu-loading":i.loading})),U=e.computed(()=>({dp__menu:!0,dp__menu_index:!s.value.enabled,dp__relative:s.value.enabled,...u.value.menu})),ce=O=>{g(O,d.value,!0)},he=O=>{d.value.escClose&&(o("close-picker"),m(O,d.value))},j=O=>{i.arrowNavigation||(O===jt.left||O===jt.up?me("handleArrow",jt.left,0,O===jt.up):me("handleArrow",jt.right,0,O===jt.down))},ee=O=>{f("shiftKeyInMenu",O.shiftKey),!i.hideMonthYearSelect&&O.code===Ie.tab&&O.target.classList.contains("dp__menu")&&l.shiftKeyInMenu&&(O.preventDefault(),g(O,d.value,!0),o("close-picker"))},se=O=>{b.value?.toggleTimePicker(!1,!1),b.value?.toggleMonthPicker(!1,!1,O),b.value?.toggleYearPicker(!1,!1,O)},pe=(O,te=0)=>O==="month"?b.value?.toggleMonthPicker(!1,!0,te):O==="year"?b.value?.toggleYearPicker(!1,!0,te):O==="time"?b.value?.toggleTimePicker(!0,!1):se(te),me=(O,...te)=>{b.value?.[O]&&b.value?.[O](...te)},be=()=>{me("selectCurrentDate")},I=O=>{me("presetDate",e.toValue(O))},Y=()=>{me("clearHoverDate")},le=(O,te)=>{me("updateMonthYear",O,te)},H=(O,te)=>{O.preventDefault(),j(te)},X=O=>{if(ee(O),O.key===Ie.home||O.key===Ie.end)return me("selectWeekDate",O.key===Ie.home,O.target.getAttribute("id"));switch((O.key===Ie.pageUp||O.key===Ie.pageDown)&&(O.shiftKey?(me("changeYear",O.key===Ie.pageUp),w(v.value,"overlay-year")?.focus()):(me("changeMonth",O.key===Ie.pageUp),w(v.value,O.key===Ie.pageUp?"action-prev":"action-next")?.focus()),O.target.getAttribute("id")&&v.value?.focus({preventScroll:!0})),O.key){case Ie.esc:return he(O);case Ie.arrowLeft:return H(O,jt.left);case Ie.arrowRight:return H(O,jt.right);case Ie.arrowUp:return H(O,jt.up);case Ie.arrowDown:return H(O,jt.down);default:return}},ie=O=>{s.value.enabled&&!s.value.input&&!v.value?.contains(O.target)&&y.value&&(y.value=!1,o("menu-blur"))};return t({updateMonthYear:le,switchView:pe,onValueCleared:()=>{b.value?.setStartTime?.()},handleFlow:D}),(O,te)=>(e.openBlock(),e.createElementBlock("div",{id:e.unref(i).menuId,ref:"dp-menu",tabindex:e.unref(s).enabled?void 0:"0",role:e.unref(s).enabled?void 0:"dialog","aria-label":e.unref(h)?.menu,class:e.normalizeClass(U.value),onMouseleave:Y,onClick:ce,onKeydown:X},[(e.unref(i).disabled||e.unref(i).readonly)&&e.unref(s).enabled||e.unref(i).loading?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(P.value)},[e.unref(i).loading?(e.openBlock(),e.createElementBlock("div",n9,[...te[5]||(te[5]=[e.createElementVNode("span",{class:"dp--menu-loader"},null,-1)])])):e.createCommentVNode("",!0)],2)):e.createCommentVNode("",!0),O.$slots["menu-header"]?(e.openBlock(),e.createElementBlock("div",r9,[e.renderSlot(O.$slots,"menu-header")])):e.createCommentVNode("",!0),e.renderSlot(O.$slots,"arrow"),e.createElementVNode("div",{ref:"inner-menu",class:e.normalizeClass({dp__menu_content_wrapper:e.unref(i).presetDates?.length||!!O.$slots["left-sidebar"]||!!O.$slots["right-sidebar"],"dp--menu-content-wrapper-collapsed":n.collapse&&(e.unref(i).presetDates?.length||!!O.$slots["left-sidebar"]||!!O.$slots["right-sidebar"])}),"data-dp-mobile":e.unref(p),style:e.normalizeStyle({"--dp-menu-width":`${C.value}px`})},[O.$slots["left-sidebar"]?(e.openBlock(),e.createElementBlock("div",a9,[e.renderSlot(O.$slots,"left-sidebar",e.normalizeProps(e.guardReactiveProps(E.value)))])):e.createCommentVNode("",!0),e.unref(i).presetDates.length?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass({"dp--preset-dates-collapsed":n.collapse,"dp--preset-dates":!0}),"data-dp-mobile":e.unref(p)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(i).presetDates,(M,W)=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:W},[M.slot?e.renderSlot(O.$slots,M.slot,{key:0,presetDate:I,label:M.label,value:M.value}):(e.openBlock(),e.createElementBlock("button",{key:1,type:"button",style:e.normalizeStyle(M.style||{}),class:e.normalizeClass(["dp__btn dp--preset-range",{"dp--preset-range-collapsed":n.collapse}]),"data-test-id":M.testId??void 0,"data-dp-mobile":e.unref(p),onClick:e.withModifiers($=>I(M.value),["prevent"]),onKeydown:$=>e.unref(k)($,()=>I(M.value),!0)},e.toDisplayString(M.label),47,i9))],64))),128))],10,l9)):e.createCommentVNode("",!0),e.createElementVNode("div",c9,[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(_.value),{ref:"dyn-cmp","flow-step":e.unref(B),collapse:n.collapse,"no-overlay-focus":n.noOverlayFocus,"menu-wrap-ref":v.value,onMount:e.unref(S),onUpdateFlowStep:e.unref(V),onResetFlow:e.unref(Z),onFocusMenu:T,onSelectDate:te[0]||(te[0]=M=>O.$emit("select-date")),onAutoApply:te[1]||(te[1]=M=>O.$emit("auto-apply",M)),onTimeUpdate:te[2]||(te[2]=M=>O.$emit("time-update"))},e.createSlots({_:2},[e.renderList(e.unref(F),(M,W)=>({name:M,fn:e.withCtx($=>[e.renderSlot(O.$slots,M,e.normalizeProps(e.guardReactiveProps({...$})))])}))]),1064,["flow-step","collapse","no-overlay-focus","menu-wrap-ref","onMount","onUpdateFlowStep","onResetFlow"]))]),O.$slots["right-sidebar"]?(e.openBlock(),e.createElementBlock("div",s9,[e.renderSlot(O.$slots,"right-sidebar",e.normalizeProps(e.guardReactiveProps(E.value)))])):e.createCommentVNode("",!0)],14,o9),O.$slots["action-extra"]?(e.openBlock(),e.createElementBlock("div",d9,[O.$slots["action-extra"]?e.renderSlot(O.$slots,"action-extra",{key:0,selectCurrentDate:be}):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0),!e.unref(i).autoApply||e.unref(d).keepActionRow?(e.openBlock(),e.createBlock(i8,{key:3,"menu-mount":A.value,"calendar-width":C.value,onClosePicker:te[3]||(te[3]=M=>O.$emit("close-picker")),onSelectDate:te[4]||(te[4]=M=>O.$emit("select-date")),onSelectNow:be},e.createSlots({_:2},[e.renderList(e.unref(N),(M,W)=>({name:M,fn:e.withCtx($=>[e.renderSlot(O.$slots,M,e.normalizeProps(e.guardReactiveProps($)))])}))]),1032,["menu-mount","calendar-width"])):e.createCommentVNode("",!0)],42,t9))}}),h9=["data-dp-mobile"],p9=e.defineComponent({__name:"VueDatePicker",setup(n,{expose:t}){const{rootEmit:r,setState:o,inputValue:a,modelValue:l,rootProps:i,defaults:{inline:c,config:s,textInput:d,range:u,multiDates:h,teleport:f,floatingConfig:p}}=_e(),{validateDate:m,isValidTime:w}=St(),{menuTransition:g,showTransition:k}=Mr(),{isMobile:x}=Ho(),{findNextFocusableElement:v,getNumVal:b}=nt(),C=e.useSlots(),A=e.ref(!1),y=e.ref(c.value.enabled||i.centered),B=e.toRef(i,"modelValue"),V=e.toRef(i,"timezone"),S=e.useTemplateRef("dp-menu-wrap"),Z=e.useTemplateRef("dp-menu"),D=e.useTemplateRef("input-cmp"),R=e.useTemplateRef("picker-wrapper"),K=e.useTemplateRef("menu-arrow"),_=e.ref(!1),T=e.ref(!1),E=e.ref(!1),N=e.ref(!0),F=we=>(p.value.arrow&&we.push(Fp({element:p.value.arrow===!0?K:p.value.arrow})),p.value.flip&&we.push(Op(typeof p.value.flip=="object"?p.value.flip:{})),p.value.shift&&we.push(Pp(typeof p.value.shift=="object"?p.value.shift:{})),we),{floatingStyles:P,middlewareData:U,placement:ce,y:he}=Up(D,S,{strategy:p.value.strategy,placement:p.value.placement,middleware:F([Dp(p.value.offset)]),whileElementsMounted:Lp});e.onMounted(()=>{se(i.modelValue),e.nextTick().then(()=>{c.value.enabled||globalThis.addEventListener("resize",ie)}),c.value.enabled&&(A.value=!0),globalThis.addEventListener("keyup",O),globalThis.addEventListener("keydown",te)}),e.onUnmounted(()=>{c.value.enabled||globalThis.removeEventListener("resize",ie),globalThis.removeEventListener("keyup",O),globalThis.removeEventListener("keydown",te)});const j=fs(C,i.presetDates),ee=an(C,Ft.Input);e.watch([B,V],()=>{se(B.value)},{deep:!0}),e.watch([ce,he],()=>{!c.value.enabled&&!i.centered&&N.value&&(y.value=!1,e.nextTick().then(()=>{N.value=!1,y.value=!0}))});const{parseExternalModelValue:se,emitModelValue:pe,formatInputValue:me,checkBeforeEmit:be}=a6(),I=e.computed(()=>({dp__main:!0,dp__theme_dark:i.dark,dp__theme_light:!i.dark,dp__flex_display:c.value.enabled,"dp--flex-display-collapsed":E.value,dp__flex_display_with_input:c.value.input})),Y=e.computed(()=>i.dark?"dp__theme_dark":"dp__theme_light"),le=e.computed(()=>c.value.enabled&&(i.timePicker||i.monthPicker||i.yearPicker||i.quarterPicker)),H=()=>D.value?.$el?.getBoundingClientRect()??{width:0,left:0,right:0},X=()=>{A.value&&s.value.closeOnScroll&&re()},ie=()=>{const we=Z.value?.$el.getBoundingClientRect().width??0;E.value=document.body.offsetWidth<=we},O=we=>{we.key==="Tab"&&!c.value.enabled&&!i.teleport&&s.value.tabOutClosesMenu&&(R.value.contains(document.activeElement)||re()),T.value=we.shiftKey},te=we=>{T.value=we.shiftKey},M=()=>{!i.disabled&&!i.readonly&&(N.value=!0,A.value=!0,A.value&&r("open"),A.value||ue(),se(i.modelValue))},W=()=>{a.value="",ue(),Z.value?.onValueCleared(),D.value?.setParsedDate(null),r("update:model-value",null),r("cleared"),s.value.closeOnClearValue&&re()},$=()=>{const we=l.value;return!we||!Array.isArray(we)&&m(we)?!0:Array.isArray(we)?h.value.enabled||we.length===2&&m(we[0])&&m(we[1])?!0:u.value.partialRange&&!i.timePicker?m(we[0]):!1:!1},ne=()=>{be()&&$()?(pe(),re()):r("invalid-select")},L=we=>{z(),pe(),s.value.closeOnAutoApply&&!we&&re()},z=()=>{D.value&&d.value.enabled&&D.value.setParsedDate(l.value)},J=(we=!1)=>{i.autoApply&&w(l.value)&&$()&&(u.value.enabled&&Array.isArray(l.value)?(u.value.partialRange||l.value.length===2)&&L(we):L(we))},ue=()=>{d.value.enabled||(l.value=null)},re=(we=!1)=>{N.value=!0,we&&l.value&&s.value.setDateOnMenuClose&&ne(),c.value.enabled||(A.value&&(A.value=!1,o("menuFocused",!1),o("shiftKeyInMenu",!1),r("closed"),a.value&&se(B.value)),ue(),r("blur"))},Ce=(we,Bt,Kt=!1)=>{if(!we){l.value=null;return}const lo=Array.isArray(we)?we.every(ul=>m(ul)):m(we),M0=w(we);lo&&M0?(o("isTextInputDate",!0),l.value=we,Bt?(_.value=Kt,ne(),r("text-submit")):i.autoApply&&J(!0),e.nextTick().then(()=>{o("isTextInputDate",!1)})):r("invalid-date",we)},ot=()=>{i.autoApply&&w(l.value)&&pe(),z()},kt=()=>A.value?re():M(),Tt=we=>{l.value=we},yn=()=>{d.value.enabled&&(o("isInputFocused",!0),me()),r("focus")},E0=()=>{d.value.enabled&&(o("isInputFocused",!1),se(i.modelValue),_.value&&v(R.value,T.value)?.focus()),r("blur")},b0=(we,Bt)=>{Z.value&&Z.value.updateMonthYear(Bt??0,{month:b(we.month),year:b(we.year)})},C0=we=>{se(we??i.modelValue)},ao=(we,Bt)=>{Z.value?.switchView(we,Bt)},K1=(we,Bt)=>{if(A.value)return s.value.onClickOutside?s.value.onClickOutside(we,Bt):re(!0)},G1=(we=0)=>{Z.value?.handleFlow(we)},dl=()=>S;return Zl(S,we=>K1($,we),{ignore:[D]}),t({closeMenu:re,selectDate:ne,clearValue:W,openMenu:M,onScroll:X,formatInputValue:me,updateInternalModelValue:Tt,setMonthYear:b0,parseModel:C0,switchView:ao,toggleMenu:kt,handleFlow:G1,getDpWrapMenuRef:dl,dpMenuRef:()=>Z,dpWrapMenuRef:()=>S,inputRef:()=>D}),(we,Bt)=>(e.openBlock(),e.createElementBlock("div",{ref:"picker-wrapper",class:e.normalizeClass(I.value),"data-datepicker-instance":"","data-dp-mobile":e.unref(x)},[e.createVNode(n8,{ref:"input-cmp","is-menu-open":A.value,onClear:W,onOpen:M,onSetInputDate:Ce,onSetEmptyDate:e.unref(pe),onSelectDate:ne,onToggle:kt,onClose:re,onFocus:yn,onBlur:E0,onRealBlur:Bt[0]||(Bt[0]=Kt=>e.unref(o)("isInputFocused",!1))},e.createSlots({_:2},[e.renderList(e.unref(ee),(Kt,lo)=>({name:Kt,fn:e.withCtx(M0=>[e.renderSlot(we.$slots,Kt,e.normalizeProps(e.guardReactiveProps(M0)))])}))]),1032,["is-menu-open","onSetEmptyDate"]),e.createVNode(e.Teleport,{to:e.unref(f),disabled:!e.unref(f)},{default:e.withCtx(()=>[e.createElementVNode("div",{ref:"dp-menu-wrap",class:e.normalizeClass({"dp--menu-wrapper":!e.unref(c).enabled,dp__outer_menu_wrap:!0,"dp--centered":e.unref(i).centered}),style:e.normalizeStyle(!e.unref(c).enabled&&!e.unref(i).centered?e.unref(P):void 0)},[e.createVNode(e.Transition,{name:e.unref(g)(e.unref(ce).startsWith("top")),css:e.unref(k)&&!e.unref(c).enabled&&!e.unref(i).centered&&y.value},{default:e.withCtx(()=>[A.value&&y.value?(e.openBlock(),e.createBlock(u9,{key:0,ref:"dp-menu",class:e.normalizeClass({[Y.value]:!0}),"no-overlay-focus":le.value,collapse:E.value,"get-input-rect":H,onClosePicker:re,onSelectDate:ne,onAutoApply:J,onTimeUpdate:ot,onMenuBlur:Bt[1]||(Bt[1]=Kt=>e.unref(r)("blur"))},e.createSlots({_:2},[e.renderList(e.unref(j),(Kt,lo)=>({name:Kt,fn:e.withCtx(M0=>[e.renderSlot(we.$slots,Kt,e.normalizeProps(e.guardReactiveProps({...M0})))])})),!e.unref(c).enabled&&!e.unref(i).centered&&e.unref(p).arrow===!0?{name:"arrow",fn:e.withCtx(()=>[e.createElementVNode("div",{ref:"menu-arrow",class:e.normalizeClass({dp__arrow_top:e.unref(ce)==="bottom",dp__arrow_bottom:e.unref(ce)==="top"}),style:e.normalizeStyle({left:e.unref(U).arrow?.x!=null?`${e.unref(U).arrow.x}px`:"",top:e.unref(U).arrow?.y!=null?`${e.unref(U).arrow.y}px`:""})},null,6)]),key:"0"}:void 0]),1032,["class","no-overlay-focus","collapse"])):e.createCommentVNode("",!0)]),_:3},8,["name","css"])],6)]),_:3},8,["to","disabled"])],10,h9))}}),f9=e.defineComponent({__name:"VueDatePickerRoot",props:e.mergeDefaults({multiCalendars:{type:[Boolean,Number,String,Object]},modelValue:{},modelType:{},dark:{type:Boolean},transitions:{type:[Boolean,Object]},ariaLabels:{},hideNavigation:{},timezone:{},vertical:{type:Boolean},hideMonthYearSelect:{type:Boolean},disableYearSelect:{type:Boolean},yearRange:{},autoApply:{type:Boolean},disabledDates:{type:[Array,Function]},startDate:{},hideOffsetDates:{type:Boolean},noToday:{type:Boolean},allowedDates:{},markers:{},presetDates:{},flow:{},preventMinMaxNavigation:{type:Boolean},reverseYears:{type:Boolean},weekPicker:{type:Boolean},filters:{},arrowNavigation:{type:Boolean},highlight:{type:[Function,Object]},teleport:{type:[String,Boolean]},centered:{type:Boolean},locale:{},weekStart:{},weekNumbers:{type:[Boolean,Object]},dayNames:{type:[Function,Array]},monthPicker:{type:Boolean},yearPicker:{type:Boolean},modelAuto:{type:Boolean},formats:{},multiDates:{type:[Boolean,Object]},minDate:{},maxDate:{},minTime:{},maxTime:{},inputAttrs:{},timeConfig:{},placeholder:{},timePicker:{type:Boolean},range:{type:[Boolean,Object]},menuId:{},disabled:{type:Boolean},readonly:{type:Boolean},inline:{type:[Boolean,Object]},textInput:{type:[Boolean,Object]},sixWeeks:{type:[Boolean,String]},actionRow:{},focusStartDate:{type:Boolean},disabledTimes:{type:[Function,Array]},calendar:{type:Function},config:{},quarterPicker:{type:Boolean},yearFirst:{type:Boolean},loading:{type:Boolean},ui:{},floating:{}},Y6),emits:["update:model-value","internal-model-change","text-submit","text-input","open","closed","focus","blur","cleared","flow-step","update-month-year","invalid-select","invalid-fixed-range","invalid-date","tooltip-open","tooltip-close","am-pm-change","range-start","range-end","date-click","overlay-toggle","invalid"],setup(n,{expose:t,emit:r}){const o=r,a=n;n6(a,o);const l=e.useSlots(),i=fs(l,a.presetDates),c=e.useTemplateRef("date-picker");return t(G6(c)),(s,d)=>(e.openBlock(),e.createBlock(p9,{ref:"date-picker"},e.createSlots({_:2},[e.renderList(e.unref(i),(u,h)=>({name:u,fn:e.withCtx(f=>[e.renderSlot(s.$slots,u,e.normalizeProps(e.guardReactiveProps(f)))])}))]),1536))}}),m9={class:e.normalizeClass(["flex-1","flex","items-center","gap-2","justify-between","w-full","h-full"])},w9=["placeholder","disabled","onBlur"],xs=De({__name:"DatePicker",props:{modelValue:{type:[String,Date,Number,Array],default:null},label:{type:[Object,String],default:""},dir:{type:String,default:""},placeholder:{type:String,default:""},prepend:{type:String,default:""},append:{type:String,default:""},disabled:{type:Boolean,default:!1},errorMessages:{type:Array,default:()=>[]},rounded:{type:String,default:"sm"},size:{type:String},border:{type:String},textColor:{type:String},menuClass:{type:String,default:""},menuStyle:{type:Object,default:()=>({})},bg:{type:String},readonly:{type:Boolean,default:!1},required:{type:Boolean,default:!1},width:{type:String,default:""},hint:{type:String,default:""},lang:{type:String},rules:{type:Array,default:()=>[]},format:{type:String,default:"dd/MM/yyyy"},range:{type:Boolean,default:!1},autoApply:{type:Boolean,default:!0},multiCalendars:{type:Number},enableTimePicker:{type:Boolean,default:!0},weekPicker:{type:Boolean,default:!1},monthPicker:{type:Boolean,default:!1},yearPicker:{type:Boolean,default:!1},minDate:{type:Date,default:null},maxDate:{type:Date,default:null},disabledDates:{default:void 0},multiDates:{type:Boolean,default:!1},textInput:{type:Boolean,default:!0}},emits:["update:modelValue","change","clear","open","close"],setup(n,{expose:t,emit:r}){const o=r,a=n,l=e.inject("parentDir",""),i=e.inject("parentLang","");e.inject("formContext",null),e.ref(!1);const c=e.computed(()=>a.dir||l),s=e.computed(()=>a.lang||i),d=e.ref(!1),u=e.ref(a.modelValue),h=e.ref(""),f=e.ref(null),p=e.ref(!1),m=(V,S)=>{if(!V)return"";const Z=new Date(V);if(isNaN(Z.getTime()))return"";const D=Z.getFullYear(),R=String(Z.getMonth()+1).padStart(2,"0"),K=String(Z.getDate()).padStart(2,"0"),_=String(Z.getHours()).padStart(2,"0"),T=String(Z.getMinutes()).padStart(2,"0");String(Z.getSeconds()).padStart(2,"0");let E=S.replace("yyyy",D).replace("MM",R).replace("dd",K);return a.enableTimePicker&&(E+=` ${_}:${T}`),E},w=(V,S)=>{if(!V)return null;const Z=V.split(" "),D=Z[0],R=Z[1];let K=null;const _=S.includes("/")?"/":S.includes("-")?"-":"/",T=D.split(_);if(S.startsWith("dd")?T.length>=3&&(K=new Date(T[2],T[1]-1,T[0])):S.startsWith("MM")?T.length>=3&&(K=new Date(T[2],T[0]-1,T[1])):S.startsWith("yyyy")&&T.length>=3&&(K=new Date(T[0],T[1]-1,T[2])),K&&R&&a.enableTimePicker){const E=R.split(":");E.length>=2&&(K.setHours(parseInt(E[0],10)||0),K.setMinutes(parseInt(E[1],10)||0),E.length===3&&K.setSeconds(parseInt(E[2],10)||0))}return K},g=e.computed(()=>{if(!a.modelValue)return"";if(a.range){if(!Array.isArray(a.modelValue))return"";const[V,S]=a.modelValue;return!V||!S?"":`${m(V,a.format)} - ${m(S,a.format)}`}return m(a.modelValue,a.format)});e.watch(()=>a.modelValue,V=>{p.value||(u.value=V,h.value=g.value)},{immediate:!0}),e.watch(u,V=>{V&&!isNaN(new Date(V).getTime())&&!p.value&&e.nextTick(()=>{h.value=m(V,a.format)})});const k=V=>{},x=V=>{p.value=!0,h.value=V.target.value;const S=a.format.includes("/")?"/":a.format.includes("-")?"-":"/",Z=h.value.split(" ")[0].split(S);if(Z.length===3&&Z.every(D=>D.length>0)){let D;if(a.format.startsWith("dd")||a.format.startsWith("MM")?D=Z[2]:a.format.startsWith("yyyy")&&(D=Z[0]),D&&D.length===4){const R=w(h.value,a.format);R&&!isNaN(R.getTime())&&(u.value=new Date(R.getTime()))}}},v=()=>{d.value||(d.value=!0,o("open"))},b=()=>{if(p.value=!1,!h.value){B();return}const V=w(h.value,a.format);V&&!isNaN(V.getTime())?(h.value=m(V,a.format),o("update:modelValue",V),o("change",V),u.value=V):h.value=g.value},C=V=>{u.value=V,o("update:modelValue",V),o("change",V),a.range?Array.isArray(V)&&V[0]&&V[1]&&(h.value=`${m(V[0],a.format)} - ${m(V[1],a.format)}`,d.value=!1):(h.value=m(V,a.format),d.value=!1)},A=()=>{a.disabled||(d.value=!d.value,d.value?o("open"):o("close"))},y=()=>{d.value=!1,o("close")},B=()=>{u.value=null,h.value="",p.value=!1,o("update:modelValue",null),o("change",null),o("clear")};return t({close:y,open:()=>A(),clear:B}),(V,S)=>e.withDirectives((e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["relative",n.width])},[e.createVNode(pn,e.mergeProps(V.$props,{"model-value":g.value,"onUpdate:modelValue":k,"onClick:clear":B},e.toHandlers(V.$attrs),{dir:c.value,lang:s.value,label:n.label,prepend:n.prepend||"calendar",append:n.append,isOpen:d.value,size:n.size,disabled:n.disabled,readonly:!1,required:n.required,bg:n.bg,border:n.border,"text-color":n.textColor,rounded:n.rounded,width:n.width,hint:n.hint,"persistent-hint":!!n.hint,rules:n.rules,clearable:!0}),{control:e.withCtx(({attrs:Z,events:D})=>[e.createElementVNode("div",m9,[e.withDirectives(e.createElementVNode("input",{ref_key:"inputRef",ref:f,"onUpdate:modelValue":S[0]||(S[0]=R=>h.value=R),type:"text",placeholder:n.placeholder||"",disabled:n.disabled,class:e.normalizeClass(["w-full bg-transparent outline-none border-none","placeholder:text-gray-400","focus:outline-none","cursor-text"]),onClick:S[1]||(S[1]=e.withModifiers(()=>{},["stop"])),onInput:x,onFocus:v,onBlur:R=>{b(),D.blur(R)}},null,40,w9),[[e.vModelText,h.value]])])]),prepend:e.withCtx(()=>[...S[3]||(S[3]=[])]),_:1},16,["model-value","dir","lang","label","prepend","append","isOpen","size","disabled","required","bg","border","text-color","rounded","width","hint","persistent-hint","rules"]),e.createVNode(e.Transition,{name:"fade"},{default:e.withCtx(()=>[d.value?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["absolute left-0 right-0 mt-1 z-100 w-fit",n.menuClass]),style:e.normalizeStyle(n.menuStyle)},[e.createVNode(e.unref(f9),{modelValue:u.value,"onUpdate:modelValue":[S[2]||(S[2]=Z=>u.value=Z),C],inline:"",placeholder:n.placeholder,range:n.range,"auto-apply":n.range?!1:n.autoApply,"multi-calendars":n.multiCalendars,"enable-time-picker":n.enableTimePicker,format:n.format,"week-picker":n.weekPicker,"month-picker":n.monthPicker,"year-picker":n.yearPicker,"min-date":n.minDate,"max-date":n.maxDate,"disabled-dates":n.disabledDates,"multi-dates":n.multiDates,"text-input":n.textInput},null,8,["modelValue","placeholder","range","auto-apply","multi-calendars","enable-time-picker","format","week-picker","month-picker","year-picker","min-date","max-date","disabled-dates","multi-dates","text-input"])],6)):e.createCommentVNode("",!0)]),_:1})],2)),[[e.unref(Hl),y]])}},[["__scopeId","data-v-ca7db07d"]]),Oo=Object.freeze(Object.defineProperty({__proto__:null,default:xs},Symbol.toStringTag,{value:"Module"})),g9=["onClick"],k9=De({__name:"Dropdown",props:{modelValue:{type:Boolean,default:!1},label:{type:String,default:"Menu"},items:{type:Array,default:()=>[]},width:{type:[String,Number],default:"auto"},minWidth:{type:[String,Number],default:"200"},maxHeight:{type:[String,Number],default:"400"},align:{type:String,default:"left"},offsetX:{type:Number,default:0},offsetY:{type:Number,default:8},openOnHover:{type:Boolean,default:!1},closeOnContentClick:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},elevation:{type:Number,default:8},rounded:{type:String,default:"md"},dense:{type:Boolean,default:!1},color:{type:String,default:"primary"},variant:{type:String,default:"contained"},size:{type:String,default:"md"},icon:{type:String,default:""}},emits:["update:modelValue","select","opened","closed"],setup(n,{expose:t,emit:r}){const o=n,a=r,l=e.ref(o.modelValue),i=e.ref(null),c=e.ref(null),s=e.ref({}),d=e.computed(()=>{const C=A0[o.color]||A0.gray;return C[o.variant]||C.contained}),u=e.computed(()=>["inline-flex items-center justify-center font-medium transition-all cursor-pointer select-none",o.icon?"":ml[o.size],En[o.rounded],"focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2","disabled:pointer-events-none disabled:opacity-50",d.value,`rounded-${o.rounded}`,o.disabled?"opacity-50 cursor-not-allowed":"cursor-pointer"]),h=e.computed(()=>["fixed z-50 bg-white text-gray-700","border border-gray-200 shadow-lg","animate-in fade-in-0 zoom-in-95",`rounded-${o.rounded}`,o.dense?"p-1":"p-2","overflow-auto"]),f=e.computed(()=>["relative flex cursor-pointer select-none items-center","rounded-sm px-2 outline-none transition-colors","hover:bg-gray-100 hover:text-accent-foreground","focus:bg-accent focus:text-accent-foreground","data-[disabled]:pointer-events-none data-[disabled]:opacity-50",o.dense?"py-1 text-sm":"py-2 text-sm"]);e.watch(()=>o.modelValue,C=>{l.value=C,C&&e.nextTick(()=>k())});const p=()=>{o.disabled||(l.value=!l.value,a("update:modelValue",l.value),l.value?(a("opened"),e.nextTick(()=>k())):a("closed"))},m=()=>{o.disabled||l.value||(l.value=!0,a("update:modelValue",!0),a("opened"),e.nextTick(()=>k()))},w=()=>{l.value&&(l.value=!1,a("update:modelValue",!1),a("closed"))},g=C=>{a("select",C),o.closeOnContentClick&&w()},k=()=>{if(!i.value||!c.value)return;const C=i.value.getBoundingClientRect(),A=c.value.getBoundingClientRect(),y={width:window.innerWidth,height:window.innerHeight};let B=C.bottom+o.offsetY,V=C.left+o.offsetX;const S=B+A.height>y.height,Z=V+A.width>y.width;S&&(B=C.top-A.height-o.offsetY),o.align==="right"?V=C.right-A.width+o.offsetX:o.align==="center"&&(V=C.left+C.width/2-A.width/2+o.offsetX),Z&&(V=y.width-A.width-8),V<8&&(V=8);const D=o.width==="auto"?`${Math.max(C.width,parseInt(o.minWidth))}px`:typeof o.width=="number"?`${o.width}px`:o.width;s.value={position:"fixed",top:`${B}px`,left:`${V}px`,width:D,minWidth:`${o.minWidth}px`,maxHeight:`${o.maxHeight}px`,zIndex:50+o.elevation}},x=C=>{i.value&&!i.value.contains(C.target)&&c.value&&!c.value.contains(C.target)&&w()},v=()=>{o.openOnHover&&m()},b=()=>{o.openOnHover&&w()};return e.onMounted(()=>{document.addEventListener("click",x),window.addEventListener("scroll",k,!0),window.addEventListener("resize",k),o.openOnHover&&i.value&&(i.value.addEventListener("mouseenter",v),i.value.addEventListener("mouseleave",b))}),e.onBeforeUnmount(()=>{document.removeEventListener("click",x),window.removeEventListener("scroll",k,!0),window.removeEventListener("resize",k),o.openOnHover&&i.value&&(i.value.removeEventListener("mouseenter",v),i.value.removeEventListener("mouseleave",b))}),t({open:m,close:w,toggle:p}),(C,A)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("div",{ref_key:"triggerRef",ref:i,onClick:p,class:"inline-block"},[e.renderSlot(C.$slots,"trigger",{},()=>[e.createElementVNode("button",{class:e.normalizeClass(u.value)},[e.renderSlot(C.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)],!0),(e.openBlock(),e.createElementBlock("svg",{class:e.normalizeClass(["ml-2 h-4 w-4 transition-transform",{"rotate-180":l.value}]),fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[...A[0]||(A[0]=[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M19 9l-7 7-7-7"},null,-1)])],2))],2)],!0)],512),(e.openBlock(),e.createBlock(e.Teleport,{to:"body"},[e.createVNode(e.Transition,{"enter-active-class":"transition ease-out duration-100","enter-from-class":"transform opacity-0 scale-95","enter-to-class":"transform opacity-100 scale-100","leave-active-class":"transition ease-in duration-75","leave-from-class":"transform opacity-100 scale-100","leave-to-class":"transform opacity-0 scale-95"},{default:e.withCtx(()=>[l.value?(e.openBlock(),e.createElementBlock("div",{key:0,ref_key:"menuRef",ref:c,style:e.normalizeStyle(s.value),class:e.normalizeClass(h.value)},[e.renderSlot(C.$slots,"default",{},()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.items,(y,B)=>(e.openBlock(),e.createElementBlock("div",{key:B,onClick:V=>g(y),class:e.normalizeClass(f.value)},e.toDisplayString(y.label||y),11,g9))),128))],!0)],6)):e.createCommentVNode("",!0)]),_:3})]))],64))}},[["__scopeId","data-v-79e0863a"]]),x9=["tabindex"],v9={class:"flex-1"},y9={__name:"DropdownItem",props:{disabled:{type:Boolean,default:!1},active:{type:Boolean,default:!1},dense:{type:Boolean,default:!1}},emits:["select"],setup(n,{emit:t}){const r=n,o=t,a=e.computed(()=>["relative flex cursor-pointer select-none items-center gap-2","rounded-sm px-2 outline-none transition-colors",r.disabled?"pointer-events-none opacity-50":"hover:bg-gray-100 hover:text-gray-900 focus:bg-gray-100 focus:text-gray-900",r.active?"bg-accent text-accent-foreground":"",r.dense?"py-1 text-sm":"py-2 text-sm"]),l=()=>{r.disabled||o("select")};return(i,c)=>(e.openBlock(),e.createElementBlock("div",{onClick:l,class:e.normalizeClass(a.value),role:"menuitem",tabindex:n.disabled?-1:0},[e.renderSlot(i.$slots,"prepend"),e.createElementVNode("span",v9,[e.renderSlot(i.$slots,"default")]),e.renderSlot(i.$slots,"append")],10,x9))}},d5={__name:"Form",props:{modelValue:{type:Boolean,default:null},validateOn:{type:String,default:"blur"}},emits:["update:modelValue","submit"],setup(n,{expose:t,emit:r}){const o=n,a=r,l=e.reactive(new Map),i=e.reactive({}),c=e.reactive({}),s=(k,x)=>{l.set(k,x),c[k]=!1},d=k=>{l.delete(k),delete i[k],delete c[k],w()},u=async()=>{let k=!0;Object.keys(i).forEach(x=>delete i[x]);for(const[x,v]of l.entries())v?.validate&&(c[x]=!0,await v.validate()||(k=!1));return w(),{valid:k,errors:{...i}}},h=()=>{for(const[k,x]of l.entries())x?.reset&&x.reset();f()},f=()=>{for(const[k,x]of l.entries())x?.resetValidation&&x.resetValidation();Object.keys(i).forEach(k=>delete i[k]),Object.keys(c).forEach(k=>c[k]=!1),w()},p=(k,x,v)=>{c[k]=!0,x?delete i[k]:i[k]=v,w()},m=e.computed(()=>Array.from(l.keys()).every(x=>c[x]===!0)&&Object.keys(i).length===0),w=()=>{e.nextTick(()=>{o.modelValue!==null&&a("update:modelValue",m.value)})},g=async()=>{const k=await u();a("submit",k)};return e.provide("formContext",{register:s,unregister:d,validate:p,validateOn:e.computed(()=>o.validateOn)}),t({validate:u,reset:h,resetValidation:f,isValid:m}),(k,x)=>(e.openBlock(),e.createElementBlock("form",{onSubmit:e.withModifiers(g,["prevent"])},[e.renderSlot(k.$slots,"default",{isValid:m.value,validate:u,reset:h,resetValidation:f})],32))}},B9={class:"flex justify-end"},E9={__name:"DynamicForm",props:{modelValue:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(n,{emit:t}){const r=e.ref(!0),o=e.ref(!0),a=t,l=n;return e.watch(()=>l.modelValue,i=>{o.value=i}),e.watch(o,i=>{a("update:modelValue",i)}),(i,c)=>(e.openBlock(),e.createBlock(bn,{modelValue:o.value,"onUpdate:modelValue":c[2]||(c[2]=s=>o.value=s),persistent:""},{header:e.withCtx(()=>[...c[3]||(c[3]=[e.createElementVNode("div",null,[e.createElementVNode("h1",{class:"text-lg font-semibold"}," create")],-1)])]),footer:e.withCtx(()=>[e.createElementVNode("div",B9,[e.createVNode(tt,{label:"Close",color:"primary",onClick:c[1]||(c[1]=s=>o.value=!1)})])]),default:e.withCtx(()=>[e.createVNode(d5,{modelValue:r.value,"onUpdate:modelValue":c[0]||(c[0]=s=>r.value=s)},null,8,["modelValue"])]),_:1},8,["modelValue"]))}},b9=e.defineComponent({name:"ExpansionPanel",props:{panelsData:{type:Array,default:()=>[]},allowMultiple:{type:Boolean,default:!1},readOnly:{type:Boolean,default:!1},disable:{type:Boolean,default:!1}},setup(n){const t=e.ref(n.panelsData.map(u=>({...u,collapsed:!0,readonly:n.readOnly||u.readonly,disabled:n.disable||u.disabled})));return{panels:t,togglePanel:u=>{t.value[u].disabled||t.value[u].readonly||(n.allowMultiple?t.value[u].collapsed=!t.value[u].collapsed:t.value.forEach((h,f)=>{f===u?h.collapsed=!h.collapsed:h.collapsed=!0}))},collapseAll:u=>{t.value.forEach(h=>{h.collapsed=u})},beforeEnter:u=>{const h=u;h.style.height="0px",h.style.opacity="0",h.style.overflow="hidden"},enter:u=>{const h=u;requestAnimationFrame(()=>{h.style.height=`${h.scrollHeight}px`,h.style.opacity="1"})},afterEnter:u=>{const h=u;h.style.height="auto",h.style.opacity="",h.style.overflow=""},beforeLeave:u=>{const h=u;h.style.height=`${h.scrollHeight}px`,h.style.opacity="1",h.style.overflow="hidden"},leave:u=>{const h=u;requestAnimationFrame(()=>{h.style.height="0px",h.style.opacity="0"})},afterLeave:u=>{const h=u;h.style.height="",h.style.opacity="",h.style.overflow=""}}}}),C9={class:"expansion-panels vts-d-flex vts-flex-column vts-ga-2"},M9=["onClick"],V9={key:0,class:"vts-text-h6"},A9={class:"panel-body vts-pa-3 vts-bg-surface-elevated vts-text vts-overflow-hidden vts-transition vts-transition-size-opacity vts-will-change-size-opacity vts-duration-2 vts-ease-standard"},_9={class:"control-buttons vts-d-flex vts-ga-3 vts-mt-3 vts-justify-start"};function N9(n,t,r,o,a,l){return e.openBlock(),e.createElementBlock("div",C9,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.panels,(i,c)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["expansion-panel vts-overflow-hidden vts-elevation-0 vts-border vts-border-thin vts-bg-surface vts-transition vts-transition-all vts-duration-3 vts-ease-standard",{"is-collapsed":i.collapsed,"is-disabled":i.disabled,"is-readonly":i.readonly}]),key:c},[e.createElementVNode("div",{class:e.normalizeClass(["panel-header vts-d-flex vts-justify-space-between vts-align-center vts-pa-3 vts-font-weight-bold vts-bg-surface vts-text vts-transition vts-transition-colors vts-duration-2 vts-ease-standard",{"vts-bg-border-light":i.disabled,"vts-text-secondary":i.disabled||i.readonly,"vts-cursor-not-allowed":i.disabled||i.readonly,"vts-cursor-pointer":!i.disabled&&!i.readonly}]),onClick:s=>n.togglePanel(c)},[e.createElementVNode("span",null,e.toDisplayString(i.title),1),i.icon?(e.openBlock(),e.createElementBlock("span",V9,e.toDisplayString(i.icon),1)):e.createCommentVNode("",!0)],10,M9),e.createVNode(e.Transition,{onBeforeEnter:n.beforeEnter,onEnter:n.enter,onAfterEnter:n.afterEnter,onBeforeLeave:n.beforeLeave,onLeave:n.leave,onAfterLeave:n.afterLeave},{default:e.withCtx(()=>[e.withDirectives(e.createElementVNode("div",A9,[e.renderSlot(n.$slots,"panel-"+c,{},()=>[e.createTextVNode(e.toDisplayString(i.content),1)])],512),[[e.vShow,!i.collapsed]])]),_:2},1032,["onBeforeEnter","onEnter","onAfterEnter","onBeforeLeave","onLeave","onAfterLeave"])],2))),128)),e.createElementVNode("div",_9,[e.createElementVNode("button",{class:"vts-rounded vts-pt-2 vts-pb-2 vts-pl-3 vts-pr-3 vts-cursor-pointer vts-border vts-bg-primary vts-on-primary vts-transition vts-transition-colors vts-duration-2 vts-ease-standard",onClick:t[0]||(t[0]=i=>n.collapseAll(!0))},"Collapse All"),e.createElementVNode("button",{class:"vts-rounded vts-pt-2 vts-pb-2 vts-pl-3 vts-pr-3 vts-cursor-pointer vts-border vts-bg-primary vts-on-primary vts-transition vts-transition-colors vts-duration-2 vts-ease-standard",onClick:t[1]||(t[1]=i=>n.collapseAll(!1))},"Expand All")])])}const Z9=De(b9,[["render",N9]]),S9=["aria-disabled","onKeydown"],$9=["id","accept","multiple","disabled","readonly","required"],I9={class:"w-full flex items-center vts-ga-2 sm:gap-3 flex-wrap"},H9={class:""},T9={class:"text-xs text-input-text vts-mt-1 hidden sm:block"},L9={key:0,class:"vts-mt-2 vts-space-y-2"},D9={key:0,class:"w-10 h-10 overflow-hidden vts-rounded-md vts-border border-input-border"},P9=["src"],O9={class:"min-w-0"},R9={class:"text-sm text-input-text truncate"},z9={class:"text-xs text-input-text opacity-80"},j9=["onClick"],F9={__name:"FileUpload",props:{modelValue:{type:Array,default:()=>[]},label:{type:[String,Object]},hint:{type:String,default:""},disabled:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},required:{type:Boolean,default:!1},errorMessages:{type:Array,default:()=>[]},prepend:{type:String,default:""},append:{type:String,default:""},size:{type:String},rounded:{type:String},border:{type:String,default:"border-input-border"},textColor:{type:String,default:"text-input-text"},bg:{type:String,default:"bg-input-bg"},width:{type:String,default:"w-full"},multiple:{type:Boolean,default:!0},accept:{type:String,default:""},maxSizeMB:{type:Number,default:2},showPreview:{type:Boolean,default:!0}},emits:["update:modelValue","change","error","select","drop","remove"],setup(n,{emit:t}){const r=n,o=t,a=e.ref(null),l=e.ref(!0),i=e.ref(""),c=e.ref([]),s=e.ref([]),d=e.computed(()=>{const Z=Array.isArray(r.errorMessages)?r.errorMessages:[],D=Array.isArray(s.value)?s.value:[];return[...Z,...D]});e.watch(()=>r.modelValue,Z=>{c.value=u(Z)},{immediate:!0});function u(Z){return(Array.isArray(Z)?Z:[]).map(R=>({file:R.file??R,preview:R.preview??null,_id:h()}))}function h(){return Math.random().toString(36).slice(2)}const f=e.computed(()=>["w-full h-full flex items-center justify-between","vts-ga-2 sm:vts-gap-3 vts-px-2 sm:vts-px-3","cursor-pointer select-none transition","bg-input-background"]),p=e.computed(()=>{const Z=r.accept&&r.accept.length?r.accept:"any file";return`${r.multiple?"Upload multiple ":"Upload "}(${Z}) • Max ${r.maxSizeMB}MB each`});function m(){r.disabled||r.readonly||a.value?.click()}function w(Z){if(!Z.target.files)return;const D=Array.from(Z.target.files);b(D),Z.target.value=""}function g(){r.disabled||(l.value=!0)}function k(){r.disabled||(l.value=!0)}function x(){l.value=!1}function v(Z){if(l.value=!1,r.disabled)return;const D=Z.dataTransfer,R=D?Array.from(D.files||[]):[];o("drop",R),b(R)}function b(Z){s.value=[];const D=[],R=r.maxSizeMB*1024*1024,K=B(r.accept);for(const E of Z){if(E.size>R){s.value.push(`${E.name} exceeds ${r.maxSizeMB}MB`),o("error",{type:"size",file:E});continue}if(K.size&&!V(E,K)){s.value.push(`${E.name} type not allowed`),o("error",{type:"type",file:E});continue}D.push(E)}if(!D.length)return;const _=D.map(E=>({file:E,preview:C(E),_id:h()})),T=r.multiple?c.value.concat(_):_.slice(0,1);c.value=T,o("select",D),o("update:modelValue",T.map(E=>({file:E.file,preview:E.preview}))),o("change",T.map(E=>E.file))}function C(Z){if(!A(Z))return null;try{return URL.createObjectURL(Z)}catch{return null}}function A(Z){return/^image\//.test(Z.type)}function y(Z){const D=c.value.splice(Z,1);o("remove",D[0]?.file),o("update:modelValue",c.value.map(R=>({file:R.file,preview:R.preview}))),o("change",c.value.map(R=>R.file))}function B(Z){const D=new Set;return Z&&Z.split(",").map(R=>R.trim()).filter(Boolean).forEach(R=>D.add(R.toLowerCase())),D}function V(Z,D){if(!D||!D.size)return!0;const R=Z.type.toLowerCase(),K=Z.name.toLowerCase().split(".").pop();for(const _ of D)if(_.includes("/")){const[T,E]=_.split("/"),[N,F]=R.split("/");if(E==="*"){if(T===N)return!0}else if(_===R)return!0}else if(_.startsWith(".")&&K&&_.slice(1)===K)return!0;return!1}function S(Z){if(Z<1024)return`${Z} B`;const D=Z/1024;return D<1024?`${D.toFixed(1)} KB`:`${(D/1024).toFixed(2)} MB`}return(Z,D)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([i.value,n.width])},[e.createVNode(pn,e.mergeProps(Z.$props,{"persistent-hint":!!n.hint,error:d.value.length>0,"is-open":l.value,clearable:!1}),{control:e.withCtx(({attrs:R})=>[e.createElementVNode("div",{class:e.normalizeClass(f.value),"aria-disabled":n.disabled,role:"button",tabindex:"0",onClick:m,onKeydown:[e.withKeys(e.withModifiers(m,["prevent"]),["enter"]),e.withKeys(e.withModifiers(m,["prevent"]),["space"])],onDragenter:e.withModifiers(g,["prevent"]),onDragover:e.withModifiers(k,["prevent"]),onDragleave:e.withModifiers(x,["prevent"]),onDrop:e.withModifiers(v,["prevent"])},[e.createElementVNode("input",{id:R.id,ref_key:"inputRef",ref:a,type:"file",accept:n.accept,multiple:n.multiple,class:"hidden",disabled:n.disabled,readonly:R.readonly,required:R.required,onChange:w},null,40,$9),e.createElementVNode("div",I9,[D[1]||(D[1]=e.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",class:"w-5 h-5 text-input-text flex-shrink-0"},[e.createElementVNode("path",{d:"M3 15a4 4 0 014-4h3v2H7a2 2 0 000 4h10a2 2 0 100-4h-3v-2h3a4 4 0 110 8H7a4 4 0 01-4-4z"}),e.createElementVNode("path",{d:"M12 4a1 1 0 011 1v8a1 1 0 11-2 0V5a1 1 0 011-1z"}),e.createElementVNode("path",{d:"M8.293 8.293a1 1 0 011.414 0L12 10.586l2.293-2.293a1 1 0 011.414 1.414l-3 3a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z"})],-1)),e.createElementVNode("div",H9,[D[0]||(D[0]=e.createElementVNode("div",{class:"text-sm text-input-text truncate"},[e.createElementVNode("span",{class:"font-medium"},"Click to upload"),e.createTextVNode(" or drag and drop ")],-1)),e.createElementVNode("div",T9,e.toDisplayString(p.value),1)])]),e.createVNode(tt,{type:"button",size:"xs",disabled:n.disabled,rounded:n.rounded,class:"vts-px-3 py-1.5 text-sm text-primaryText"},{default:e.withCtx(()=>[...D[2]||(D[2]=[e.createTextVNode(" Browse ",-1)])]),_:1},8,["disabled","rounded"])],42,S9)]),_:1},16,["persistent-hint","error","is-open"]),c.value.length?(e.openBlock(),e.createElementBlock("div",L9,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,(R,K)=>(e.openBlock(),e.createElementBlock("div",{key:R._id,class:e.normalizeClass(["flex items-center vts-ga-3 vts-pa-2 vts-border bg-input-background",n.border,n.rounded?e.unref(En)[n.rounded]:"vts-rounded-md"])},[n.showPreview&&A(R.file)?(e.openBlock(),e.createElementBlock("div",D9,[e.createElementVNode("img",{src:R.preview,alt:"preview",class:"w-full h-full object-cover",loading:"lazy"},null,8,P9)])):e.createCommentVNode("",!0),e.createElementVNode("div",O9,[e.createElementVNode("div",R9,e.toDisplayString(R.file.name),1),e.createElementVNode("div",z9,e.toDisplayString(S(R.file.size)),1)]),e.createElementVNode("button",{type:"button",class:"text-input-text hover:text-input-focus",onClick:_=>y(K)},[...D[3]||(D[3]=[e.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor",class:"size-5"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6 18 18 6M6 6l12 12"})],-1)])],8,j9)],2))),128))])):e.createCommentVNode("",!0)],2))}},U9={class:""},vs={__name:"FilterSection",props:{modelValue:{type:Object,default:()=>({})},filters:{type:Array,default:()=>[]},dir:{type:String,default:""},lang:{type:String,default:""},rounded:{type:String,default:""},labels:{type:[String,Object],default:""},items:{type:[String,Object],default:""},grid:{type:Boolean,default:!1},gridColumns:{type:Number,default:1},buttons:{type:Array,default:()=>[{type:"search",icon:"magnifying-glass",color:"primary",variant:"contained"}]}},emits:["update:modelValue","search","submit","clear","close"],setup(n,{emit:t}){const r=t,o=n,a=e.computed(()=>{const f={},p=new Set(o.filters.map(m=>m.type?.toLowerCase()));return(p.has("search")||p.has("inputsearch"))&&(f.search=e.defineAsyncComponent(()=>Promise.resolve().then(()=>sl)),f.inputsearch=e.defineAsyncComponent(()=>Promise.resolve().then(()=>sl))),p.has("select")&&(f.select=e.defineAsyncComponent(()=>Promise.resolve().then(()=>rc))),(p.has("textfield")||p.has("text"))&&(f.textfield=e.defineAsyncComponent(()=>Promise.resolve().then(()=>zo)),f.text=e.defineAsyncComponent(()=>Promise.resolve().then(()=>zo))),p.has("textarea")&&(f.textarea=e.defineAsyncComponent(()=>Promise.resolve().then(()=>kg))),(p.has("datepicker")||p.has("date")||p.has("Date"))&&(f.datepicker=e.defineAsyncComponent(()=>Promise.resolve().then(()=>Oo)),f.date=e.defineAsyncComponent(()=>Promise.resolve().then(()=>Oo))),f}),l=f=>{const p=f?.toLowerCase()||"search";return a.value[p]||a.value.search},i=f=>{const{type:p,key:m,...w}=f,g=Object.fromEntries(Object.entries(w).filter(([k,x])=>x!==""&&x!==null&&x!==void 0));return g.itemText&&(g["item-text"]=g.itemText,delete g.itemText),g.itemValue&&(g["item-value"]=g.itemValue,delete g.itemValue),g.itemTitle&&(g["item-title"]=g.itemTitle,delete g.itemTitle),g},c=e.computed(()=>o.lang?o.lang:o.dir=="rtl"?"dv":o.dir=="ltr"?"en":""),s=e.computed(()=>o.buttons.filter(f=>f.show!==!1)),d=(f,p)=>{r("update:modelValue",{...o.modelValue,[f]:p})},u=f=>{const p=f.toLowerCase();switch(p){case"search":case"submit":r(p,o.modelValue);break;case"clear":h();break;case"close":r("close");break;default:r(p,o.modelValue)}},h=()=>{const f={};o.filters.forEach(p=>{f[p.key]=Array.isArray(o.modelValue[p.key])?[]:""}),r("update:modelValue",f),r("clear")};return(f,p)=>(e.openBlock(),e.createElementBlock("div",U9,[e.createVNode(d5,null,{default:e.withCtx(()=>[e.createElementVNode("div",{class:e.normalizeClass(`my-2 w-full flex gap-4 items-center ${n.grid?"flex-wrap":""}`)},[e.createElementVNode("div",{class:e.normalizeClass(["w-full",n.grid?"grid grid-cols-2 gap-4":"flex gap-4"])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.filters,(m,w)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(l(m.type)),e.mergeProps({key:m.key||w,"model-value":n.modelValue[m.key]},{ref_for:!0},i(m),{"onUpdate:modelValue":g=>d(m.key,g)}),null,16,["model-value","onUpdate:modelValue"]))),128))],2),e.createElementVNode("div",{class:e.normalizeClass(["w-full flex gap-4",n.grid?"justify-end":"flex-wrap"])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,(m,w)=>(e.openBlock(),e.createBlock(tt,{key:w,lang:c.value,rounded:m.rounded||"sm",icon:m.icon,"icon-type":"micro",prependIcon:m.prependIcon,size:m.size||"sm",color:m.color||"primary",variant:m.variant||"contained",padding:m.padding!==void 0?m.padding:!0,label:m.label||"",onClick:g=>u(m.type)},null,8,["lang","rounded","icon","prependIcon","size","color","variant","padding","label","onClick"]))),128))],2)],2)]),_:1})]))}},W9=e.defineComponent({__name:"Footer",props:{id:{type:String,default:()=>`footer-${Math.random().toString(36).slice(2,9)}`},dense:{type:Boolean,default:!1}},setup(n){const t=n,r=e.inject("layout",null),o=e.ref(null),a=e.ref(0);function l(){o.value&&(a.value=o.value.getBoundingClientRect().height,r&&r.register("footer",t.id,{height:a.value}))}e.onMounted(()=>{l();const s=new ResizeObserver(l);o.value&&s.observe(o.value),e.onBeforeUnmount(()=>{s.disconnect(),r&&r.unregister("footer",t.id)})});const i=e.computed(()=>t.dense?"h-10":"h-14"),c=e.computed(()=>({}));return(s,d)=>(e.openBlock(),e.createElementBlock("footer",{ref_key:"el",ref:o,class:e.normalizeClass(["w-full",i.value]),style:e.normalizeStyle(c.value)},[e.renderSlot(s.$slots,"default")],6))}}),q9={class:"h-full flex flex-col overflow-hidden"},ys=e.defineComponent({__name:"NavDrawer",props:{id:{type:String,default:()=>`drawer-${Math.random().toString(36).slice(2,9)}`},mode:{type:String,default:"permanent"},width:{type:Number,default:256},railWidth:{type:Number,default:72},modelValue:{type:Boolean,default:!0},expandOnHover:{type:Boolean,default:!1},right:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(n,{emit:t}){const r=n,o=e.inject("layout",null),a=e.ref(null),l=e.ref(!1);function i(){if(!a.value)return;const w=r.mode==="rail"?r.railWidth:r.width;o&&o.register("drawer",r.id,{width:w,mode:r.mode,expanded:l.value,right:r.right})}e.onMounted(()=>{i();const w=new ResizeObserver(i);a.value&&w.observe(a.value),e.onBeforeUnmount(()=>{w.disconnect(),o&&o.unregister("drawer",r.id)})}),e.watch([()=>r.mode,l],i);const c=e.computed(()=>r.mode==="temporary"?r.modelValue:(r.mode==="permanent"||r.mode==="rail",!0));function s(){r.mode==="rail"&&r.expandOnHover&&(l.value=!0,i())}function d(){r.mode==="rail"&&r.expandOnHover&&(l.value=!1,i())}const u=e.computed(()=>r.right?et.value?"left-0":"right-0":et.value?"right-0":"left-0"),h=e.computed(()=>r.mode==="temporary"?c.value?"translate-x-0":r.right?"translate-x-full":"-translate-x-full":r.mode==="permanent"||r.mode==="rail"?"translate-x-0":""),f=e.computed(()=>(r.mode==="temporary","pointer-events-auto")),p=e.computed(()=>(r.mode==="rail"&&(l.value?`${r.width}`:`${r.railWidth}`),"")),m=e.computed(()=>r.mode==="rail"?{width:`${l.value?r.width:r.railWidth}px`}:r.mode==="permanent"?{width:`${r.width}px`}:r.mode==="temporary"?{width:`${r.width}px`}:{});return(w,g)=>(e.openBlock(),e.createElementBlock("aside",{ref_key:"el",ref:a,class:e.normalizeClass(["fixed top-0 h-full z-30 transition-transform duration-300 bg-white dark:bg-slate-800",u.value,h.value,f.value,p.value]),style:e.normalizeStyle(m.value),onMouseenter:s,onMouseleave:d},[e.createElementVNode("div",q9,[e.renderSlot(w.$slots,"default")])],38))}}),Y9={class:"flex h-screen overflow-hidden"},K9={class:"flex-1 flex flex-col overflow-hidden"},G9={class:"flex-1 overflow-auto bg-gray-50 vts-p-4"},J9={key:0,class:"flex-shrink-0 vts-p-4 bg-white shadow-inner"},X9=768,Q9=De(e.defineComponent({__name:"LayoutContainer",setup(n){const t=e.ref(!1),r=e.ref(!1),o=e.ref(window.innerWidth),a=e.computed(()=>o.value<X9),l=e.computed(()=>t.value?"w-16":"w-64"),i=e.computed(()=>a.value?r.value?"translate-x-0":"-translate-x-full":"");function c(){t.value=!t.value}function s(){r.value=!r.value}function d(){r.value=!1}function u(){o.value=window.innerWidth}return e.onMounted(()=>{window.addEventListener("resize",u)}),e.onUnmounted(()=>{window.removeEventListener("resize",u)}),(h,f)=>(e.openBlock(),e.createElementBlock("div",Y9,[e.createVNode(ys,{collapsed:t.value,class:e.normalizeClass(["flex-shrink-0 bg-white shadow-lg z-30",a.value?"fixed inset-y-0 left-0 transform transition-transform duration-300 ease-in-out":"",l.value,i.value]),onClose:d,onToggleCollapse:c},null,8,["collapsed","class"]),a.value&&r.value?(e.openBlock(),e.createElementBlock("div",{key:0,class:"fixed inset-0 bg-black bg-opacity-40 z-20",onClick:d})):e.createCommentVNode("",!0),e.createElementVNode("div",K9,[e.createVNode(Qi,{title:"This is APP",class:e.normalizeClass(["flex-shrink-0"]),onToggleDrawer:s}),e.createElementVNode("main",G9,[e.renderSlot(h.$slots,"default",{},()=>[f[0]||(f[0]=e.createTextVNode(" sadf ",-1))],!0)]),h.$slots.footer?(e.openBlock(),e.createElementBlock("footer",J9,[e.renderSlot(h.$slots,"footer",{},void 0,!0)])):e.createCommentVNode("",!0)])]))}}),[["__scopeId","data-v-c887b932"]]),ew=e.defineComponent({__name:"Main",setup(n){const t=e.inject("layout",null),r=e.ref(null),o=e.computed(()=>""),a=e.computed(()=>{const l=t?.topOffset?.value||0,i=t?.bottomOffset?.value||0,{left:c,right:s}=t?.horizontalOffset?.value||{left:0,right:0};return{paddingTop:`${l}px`,paddingBottom:`${i}px`,paddingLeft:c?`${c}px`:void 0,paddingRight:s?`${s}px`:void 0,minHeight:`calc(100vh - ${i}px)`}});return e.onMounted(()=>{}),(l,i)=>(e.openBlock(),e.createElementBlock("main",{class:e.normalizeClass(["flex-1 w-full transition-padding duration-200",o.value]),ref_key:"el",ref:r,style:e.normalizeStyle(a.value)},[e.renderSlot(l.$slots,"default")],6))}}),tw={class:"relative"},nw=["aria-hidden"],rw={class:"flex h-full flex-col",style:{minHeight:"100vh"}},ow={class:"flex items-center justify-between vts-px-4 vts-py-3"},aw={class:"flex items-center vts-ga-2"},lw={class:"flex-1 overflow-auto"},iw={key:0},cw={key:0,class:"vts-px-3 vts-py-2"},sw=["placeholder"],dw=["tabindex","onClick","onKeydown","aria-expanded"],uw={class:"flex items-center vts-ga-2"},hw={key:0,class:"vts-mr-2"},pw={key:1,class:"vts-mr-2"},fw={key:0,class:"vts-mr-2"},mw=["onClick","onKeydown","aria-expanded"],ww={class:"vts-py-1"},gw={class:"rail-label"},kw={key:1},xw={class:"vts-px-4 vts-py-3"},Bs="hover:bg-[var(--vts-color-surface)]",Ro="text-[var(--vts-color-textSecondary)]",vw=De(e.defineComponent({__name:"NavigationDrawer",props:{id:{type:String,default:()=>`drawer-${Math.random().toString(36).slice(2,9)}`},modelValue:{type:Boolean,default:!1},permanent:{type:Boolean,default:!0},temporary:{type:Boolean,default:!1},persistent:{type:Boolean,default:!1},rail:{type:Boolean,default:!1},hoverExpand:{type:Boolean,default:!1},isStuck:{type:Boolean,default:!1},belowAppbar:{type:Boolean,default:!1},location:{type:String,default:"left"},color:{type:String},width:{type:[String,Number],default:"w-64"},railWidth:{type:[String,Number],default:"w-16"},closeOnScrimClick:{type:Boolean,default:!0},expandOnHover:{type:Boolean,default:!1},overlayAppBar:{type:Boolean,default:!0},zIndex:{type:[String,Number],default:void 0},appBarOffset:{type:Boolean,default:!1},appBarHeight:{type:[String,Number],default:void 0},items:{type:Array,default:void 0},filterable:{type:Boolean,default:!1},searchPlaceholder:{type:String,default:"Search"},draggable:{type:Boolean,default:!1},groupBy:{type:[String,Function],default:void 0},allowCrossGroupReorder:{type:Boolean,default:!1},collapsibleGroups:{type:Boolean,default:!0},groupDefaultOpen:{type:Boolean,default:!0},groupIcons:{type:Object,default:void 0},renderGroupParent:{type:Boolean,default:!1},groupParents:{type:Object,default:void 0}},emits:["update:modelValue","open","close","update:items","reorder","group-toggle"],setup(n,{emit:t}){const r=e.computed(()=>({backgroundColor:"var(--vts-color-surface)",color:"var(--vts-color-text)",borderRight:"1px solid var(--vts-color-border)",boxShadow:"var(--vts-elevation-2)"})),o=e.computed(()=>({backgroundColor:"var(--vts-color-overlay)"})),a=e.computed(()=>({backgroundColor:"var(--vts-color-surface)",color:"var(--vts-color-text)",border:"1px solid var(--vts-color-border)",borderRadius:"var(--vts-radius-sm)"})),l=n;e.computed(()=>{const z=l.location==="left";return l.rail&&!l.modelValue&&!N.value||l.rail&&l.modelValue&&!N.value?z?"chevron-right":"chevron-left":z?"chevron-left":"chevron-right"});const i=t,c=e.ref(!!l.modelValue),s=e.ref(null),d=e.ref(l.items?[...l.items]:[]),u=e.ref("");e.watch(()=>l.items,z=>{d.value=l.items?[...l.items]:[]}),e.watch(()=>l.overlayAppBar,z=>{ie()});const h=e.computed(()=>{if(!l.items)return[];if(!u.value||u.value.trim().length===0)return d.value;const z=u.value.toLowerCase();return d.value.filter(J=>String(J.label||J.name||"").toLowerCase().includes(z)||J.tags&&String(J.tags).toLowerCase().includes(z))}),f=e.computed(()=>{if(!l.items)return[];if(!l.groupBy)return[{group:null,items:h.value}];const z={},J=typeof l.groupBy=="function"?l.groupBy:ue=>ue[l.groupBy];return h.value.forEach(ue=>{const re=J(ue)||"Ungrouped";z[re]||(z[re]=[]),z[re].push(ue)}),Object.keys(z).map(ue=>({group:ue,items:z[ue]}))}),p=e.ref({});e.watch(f,z=>{z.forEach(J=>{const ue=String(J.group||"Ungrouped");p.value[ue]===void 0&&(p.value[ue]=!!l.groupDefaultOpen)})});function m(z){if(!l.collapsibleGroups)return!0;const J=String(z||"Ungrouped");return!!p.value[J]}function w(z){if(!l.collapsibleGroups)return;const J=String(z||"Ungrouped");p.value[J]=!p.value[J],i("group-toggle",{group:z,open:p.value[J]})}function g(z,J){const ue=l.groupParents&&J?l.groupParents[J]:void 0;(!ue||!ue.href)&&(z.preventDefault(),w(J))}function k(z,J){if(!J)return;const ue=l.groupParents&&J?l.groupParents[J]:void 0;(z.key==="Enter"||z.key===" ")&&(!ue||!ue.href)&&(z.preventDefault(),z.stopPropagation(),w(J))}function x(){const z=s.value;if(!z)return;z.querySelectorAll("li").forEach(re=>{const Ce=re.querySelector("svg");Ce&&!Ce.classList.contains("rail-icon")&&Ce.classList.add("rail-icon"),Array.from(re.childNodes).forEach(kt=>{if(kt.nodeType===Node.TEXT_NODE){const Tt=kt.textContent?.trim();if(Tt&&Tt.length){const yn=document.createElement("span");yn.className="rail-label",yn.textContent=Tt,re.replaceChild(yn,kt)}}else if(kt.nodeType===Node.ELEMENT_NODE){const Tt=kt;if(Tt.classList.contains("rail-label")||Tt.classList.contains("rail-icon"))return;Array.from(Tt.childNodes).forEach(E0=>{if(E0.nodeType===Node.TEXT_NODE){const b0=E0.textContent?.trim();if(b0&&b0.length){const C0=document.createElement("span");C0.className="rail-label",C0.textContent=b0,Tt.replaceChild(C0,E0)}}})}})}),z.querySelectorAll(":scope > a, :scope > button").forEach(re=>{re.classList.contains("nav-drawer-link")||re.classList.add("nav-drawer-link");const Ce=re.parentElement;if(Ce&&Ce.tagName.toLowerCase()!=="li"){const ot=document.createElement("li");ot.className="nav-drawer-item",Ce.replaceChild(ot,re),ot.appendChild(re)}})}let v=null,b=null,C=null;function A(z,J=d.value){return z==null?-1:J.findIndex(ue=>String(ue.id)===String(z))}function y(z){v=z.id}function B(z){if(b=z.id,z.event&&z.event.clientY!==void 0){const J=document.querySelector(`[data-drawer-item-id='${z.id}']`);if(J){const ue=J.getBoundingClientRect(),re=ue.top+ue.height/2;C=z.event.clientY<re?"before":"after"}}else C="after"}function V(z){if(!l.items||!l.draggable)return;const J=z.sourceId!==void 0?z.sourceId:v,ue=z.id;if(!J||!ue||String(J)===String(ue))return;const re=A(J),Ce=A(ue);if(re===-1||Ce===-1)return;const ot=[...d.value],[kt]=ot.splice(re,1);ot.splice(Ce,0,kt),d.value=ot,i("update:items",ot),i("reorder",{items:ot}),v=null,b=null,C=null}function S(z){s.value&&(s.value.contains(z.target)||ce())}e.watch(()=>l.modelValue,z=>{c.value=!!z,L()}),e.watch(()=>l.permanent,z=>{L()}),e.watch(c,z=>{i("update:modelValue",z),i(z?"open":"close")});const Z=e.computed(()=>l.permanent?!0:c.value),D=()=>{l.permanent||(c.value=!c.value)},R=()=>{l.permanent||(c.value=!1)},K=()=>{l.closeOnScrimClick&&R()},_=z=>{z.key==="Escape"&&(l.temporary||l.persistent)&&R()};e.onMounted(()=>{document.addEventListener("keydown",_),document.addEventListener("click",S),x()}),e.onUpdated(()=>{x()}),e.onBeforeUnmount(()=>{document.removeEventListener("keydown",_),document.removeEventListener("click",S),window.removeEventListener("resize",te)});let T=null;function E(z){return Array.from(z.querySelectorAll('a[href], button:not([disabled]), textarea, input, select, [tabindex]:not([tabindex="-1"])'))}e.watch(Z,z=>{if(z&&(l.temporary||l.persistent)){const J=s.value;if(!J)return;const ue=E(J);ue.length?ue[0].focus():(J.setAttribute("tabindex","-1"),J.focus()),T=re=>{if(re.key!=="Tab")return;const Ce=E(J);if(!Ce.length)return;const ot=Ce[0],kt=Ce[Ce.length-1];re.shiftKey&&document.activeElement===ot?(re.preventDefault(),kt.focus()):!re.shiftKey&&document.activeElement===kt&&(re.preventDefault(),ot.focus())},document.addEventListener("keydown",T)}else T&&(document.removeEventListener("keydown",T),T=null);x()});const N=e.ref(!1),F=e.computed(()=>l.rail?!0:!!(l.hoverExpand||l.expandOnHover));let P;const U=()=>{F.value&&(P&&window.clearTimeout(P),N.value=!0)},ce=()=>{F.value&&(P=window.setTimeout(()=>{N.value=!1},150))},he=e.computed(()=>l.rail&&!N.value),j=e.computed(()=>l.location==="right"?"right-0":"left-0"),ee=e.computed(()=>he.value?typeof l.railWidth=="number"?`w-[${l.railWidth}px]`:String(l.railWidth):typeof l.width=="number"?`w-[${l.width}px]`:String(l.width)),se=e.computed(()=>{const z=["fixed","h-full","overflow-hidden","flex","flex-col"];return l.isStuck&&z.push("top-0"),l.location==="right"?z.push("right-0"):z.push("left-0"),l.rail&&z.push("transition-all"),e.watch(()=>l.rail,J=>{x()}),z.join(" ")}),pe=e.computed(()=>l.rail?"drawer-rail":""),me=e.computed(()=>l.rail&&!he.value?"drawer-expanded":""),be=e.computed(()=>!(l.rail&&he.value)),I=e.computed(()=>l.location==="right"?"translate-x-full":"-translate-x-full"),Y=e.computed(()=>l.zIndex!==void 0&&typeof l.zIndex=="string"&&l.zIndex.startsWith("z-")?l.zIndex:l.overlayAppBar?"z-50":"z-10"),le=e.computed(()=>{if(l.zIndex!==void 0&&typeof l.zIndex=="number")return{zIndex:l.zIndex}}),H=e.computed(()=>{if(l.zIndex!==void 0&&typeof l.zIndex=="number")return{zIndex:l.zIndex-1}}),X=e.ref(0),ie=()=>{if(!l.appBarOffset&&l.overlayAppBar){X.value=0;return}if(l.appBarHeight!==void 0&&l.appBarHeight!==null){if(typeof l.appBarHeight=="number")X.value=l.appBarHeight;else if(typeof l.appBarHeight=="string"){const z=Number(String(l.appBarHeight).replace(/px$/i,""));X.value=Number.isFinite(z)?z:0}console.log("Using provided appBarHeight for top padding:",X.value);return}if(typeof document<"u"){const z=document.querySelector('[data-component="appbar"]');if(!z){X.value=0;return}const J=z.getBoundingClientRect();X.value=Math.round(J.height),console.log("Computed top padding for drawer:",X.value)}};ie();let O;const te=()=>{O&&window.clearTimeout(O),O=window.setTimeout(()=>{ie()},100)};e.onMounted(()=>{window.addEventListener("resize",te)}),e.onBeforeUnmount(()=>{window.removeEventListener("resize",te)});const M=e.computed(()=>l.zIndex!==void 0&&typeof l.zIndex=="number"?"":l.overlayAppBar?"z-40":"z-0"),W=e.inject("layout",null),$=e.ref(null),ne=e.ref(0);function L(){$.value&&(ne.value=$.value.getBoundingClientRect().width,W&&!l.rail&&W.register("drawer",l.id,{mode:l.modelValue||l.permanent?"permanent":"rail",right:l.location==="right",width:ne.value}))}return e.onMounted(()=>{$.value=s.value,L();const z=new ResizeObserver(L);$.value&&z.observe($.value),e.onBeforeUnmount(()=>{z.disconnect(),W&&W.unregister("drawer",l.id)})}),(z,J)=>{const ue=e.resolveComponent("HeroIcon");return e.openBlock(),e.createElementBlock("div",tw,[Z.value&&n.temporary?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["fixed inset-0",M.value]),style:e.normalizeStyle([H.value,o.value]),onClick:K},null,6)):e.createCommentVNode("",!0),e.createElementVNode("nav",{ref_key:"navRef",ref:s,class:e.normalizeClass([Y.value,"transform transition-transform duration-200 ease-in-out",se.value,j.value,pe.value,me.value,n.color,ee.value,!Z.value&&!n.permanent?I.value:"translate-x-0",l.location==="right"?"rounded-l-lg":"rounded-r-lg"]),style:e.normalizeStyle([le.value,r.value,X.value?{paddingTop:X.value+"px"}:void 0]),"aria-hidden":!Z.value&&!n.permanent,onClick:U},[e.createElementVNode("div",rw,[e.createElementVNode("div",ow,[be.value?e.renderSlot(z.$slots,"prepend",{key:0},()=>[J[1]||(J[1]=e.createElementVNode("span",{class:"font-semibold"},"Menu",-1))],!0):e.createCommentVNode("",!0),e.createElementVNode("div",aw,[e.renderSlot(z.$slots,"append",{},void 0,!0),!n.permanent&&!n.temporary?(e.openBlock(),e.createElementBlock("button",{key:0,onClick:D,class:e.normalizeClass(["vts-pa-2",Bs]),"aria-label":"Toggle drawer"},[l.location==="left"&&!e.unref(et)&&l.rail&&he.value?(e.openBlock(),e.createBlock(ue,{key:0,name:"chevron-right",size:"20"})):e.createCommentVNode("",!0),l.location==="left"&&!e.unref(et)&&l.rail&&!he.value?(e.openBlock(),e.createBlock(ue,{key:1,name:"chevron-left",size:"20"})):e.createCommentVNode("",!0),l.location==="right"&&e.unref(et)&&l.rail&&he.value?(e.openBlock(),e.createBlock(ue,{key:2,name:"chevron-left",size:"20"})):e.createCommentVNode("",!0),l.location==="right"&&e.unref(et)&&l.rail&&!he.value?(e.openBlock(),e.createBlock(ue,{key:3,name:"chevron-right",size:"20"})):e.createCommentVNode("",!0)],2)):e.createCommentVNode("",!0),n.temporary?(e.openBlock(),e.createElementBlock("button",{key:1,onClick:R,class:e.normalizeClass(["ml-2 rounded p-2",Bs]),"aria-label":"Close drawer"},[...J[2]||(J[2]=[e.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",class:"h-5 w-5",viewBox:"0 0 20 20",fill:"currentColor"},[e.createElementVNode("path",{d:"M6 6a1 1 0 100-2 1 1 0 000 2zm0 6a1 1 0 110-2 1 1 0 010 2zm0 6a1 1 0 110-2 1 1 0 010 2z"})],-1)])],2)):e.createCommentVNode("",!0)])]),e.createElementVNode("div",lw,[l.items?(e.openBlock(),e.createElementBlock("div",iw,[l.filterable&&!(l.rail&&he.value)?(e.openBlock(),e.createElementBlock("div",cw,[e.withDirectives(e.createElementVNode("input",{"onUpdate:modelValue":J[0]||(J[0]=re=>u.value=re),placeholder:l.searchPlaceholder,class:"w-full vts-px-4 vts-py-2",style:e.normalizeStyle(a.value)},null,12,sw),[[e.vModelText,u.value]])])):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(f.value,re=>(e.openBlock(),e.createElementBlock("div",{key:re.group,class:"vts-py-2"},[re.group?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["group-header vts-px-3 vts-pt-3 vts-pb-1 text-lg uppercase flex items-center justify-between",Ro]),role:"button",tabindex:l.collapsibleGroups?0:-1,onClick:e.withModifiers(Ce=>w(re.group),["prevent"]),onKeydown:[e.withKeys(e.withModifiers(Ce=>w(re.group),["prevent"]),["enter"]),e.withKeys(e.withModifiers(Ce=>w(re.group),["prevent"]),["space"])],"aria-expanded":m(re.group)},[e.createElementVNode("span",uw,[l.renderGroupParent?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(l.groupParents&&l.groupParents[re.group]&&l.groupParents[re.group].href?"a":"button"),{key:0,href:l.groupParents&&l.groupParents[re.group]&&l.groupParents[re.group].href||void 0,class:"group-parent flex items-center vts-ga-3 vts-px-0 vts-py-0 w-full text-left",onClick:e.withModifiers(Ce=>g(Ce,re.group),["stop"]),onKeydown:Ce=>k(Ce,re.group)},{default:e.withCtx(()=>[l.groupParents&&l.groupParents[re.group]&&l.groupParents[re.group].icon?(e.openBlock(),e.createElementBlock("span",hw,[e.createVNode(ue,{name:l.groupParents[re.group].icon,size:"18"},null,8,["name"])])):l.groupIcons&&l.groupIcons[re.group]?(e.openBlock(),e.createElementBlock("span",pw,[e.createVNode(ue,{name:l.groupIcons[re.group],size:"18"},null,8,["name"])])):e.createCommentVNode("",!0),!l.rail||!he.value?(e.openBlock(),e.createElementBlock("span",{key:2,class:e.normalizeClass(["text-lg uppercase",Ro])},e.toDisplayString(l.groupParents&&l.groupParents[re.group]&&l.groupParents[re.group].label||re.group),3)):e.createCommentVNode("",!0)]),_:2},1064,["href","onClick","onKeydown"])):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[l.groupIcons&&l.groupIcons[re.group]?(e.openBlock(),e.createElementBlock("span",fw,[e.createVNode(ue,{name:l.groupIcons[re.group],size:"18"},null,8,["name"])])):e.createCommentVNode("",!0),!l.rail||!he.value?(e.openBlock(),e.createElementBlock("span",{key:1,class:e.normalizeClass(["text-lg uppercase",Ro])},e.toDisplayString(re.group),3)):e.createCommentVNode("",!0)],64))]),l.collapsibleGroups&&(!l.rail||!he.value)?(e.openBlock(),e.createElementBlock("button",{key:0,onClick:e.withModifiers(Ce=>w(re.group),["stop","prevent"]),onKeydown:[e.withKeys(e.withModifiers(Ce=>w(re.group),["stop","prevent"]),["enter"]),e.withKeys(e.withModifiers(Ce=>w(re.group),["stop","prevent"]),["space"])],class:e.normalizeClass(["vts-px-2 vts-py-1 rounded focus:outline-none",Ro]),style:{opacity:.7},"aria-expanded":m(re.group)},[e.createVNode(ue,{name:"chevron-down",size:"16",class:e.normalizeClass({"rotate-180":m(re.group)})},null,8,["class"])],42,mw)):e.createCommentVNode("",!0)],42,dw)):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("ul",ww,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(re.items,Ce=>(e.openBlock(),e.createBlock(e.unref(Es),{key:Ce.id,id:Ce.id,href:Ce.href,draggable:l.draggable&&!Ce.disabled,dragging:String(e.unref(v))===String(Ce.id),"is-drag-over":String(e.unref(b))===String(Ce.id),"drag-pos":e.unref(C),onDragstart:y,onDragover:B,onDragleave:ot=>{String(e.unref(b))===String(Ce.id)&&(e.isRef(b)?b.value=null:b=null,e.isRef(C)?C.value=null:C=null)},onDrop:V},{default:e.withCtx(()=>[Ce.icon?(e.openBlock(),e.createBlock(ue,{key:0,name:Ce.icon,size:"20",class:"rail-icon mr-2"},null,8,["name"])):e.createCommentVNode("",!0),e.createElementVNode("span",gw,e.toDisplayString(Ce.label),1)]),_:2},1032,["id","href","draggable","dragging","is-drag-over","drag-pos","onDragleave"]))),128))],512),[[e.vShow,m(re.group)]])]))),128))])):(e.openBlock(),e.createElementBlock("div",kw,[e.renderSlot(z.$slots,"default",{},void 0,!0)]))]),e.createElementVNode("div",xw,[e.renderSlot(z.$slots,"footer",{},void 0,!0)])])],14,nw)])}}}),[["__scopeId","data-v-a6d0abfe"]]),yw=["data-drawer-item-id","draggable"],Es=De(e.defineComponent({__name:"NavDrawerItem",props:{href:{type:String,default:void 0},to:{type:[String,Object],default:void 0},tag:{type:String,default:void 0},disabled:{type:Boolean,default:!1},active:{type:Boolean,default:!1},icon:{type:[String,Object],default:void 0},extraClass:{type:[String],default:""},id:{type:[String,Number],default:void 0},draggable:{type:Boolean,default:!1},dragging:{type:Boolean,default:!1},isDragOver:{type:Boolean,default:!1},dragPos:{type:String,default:null}},emits:["click","dragstart","dragover","drop","dragleave"],setup(n,{emit:t}){const r=n,o=t,a=e.useAttrs(),l=e.useSlots(),i=e.computed(()=>r.tag?r.tag:r.to||r.href?"a":"div"),c=e.computed(()=>{const w={};return r.href&&(w.href=r.href),r.to&&(w["data-router-link"]=r.to),w}),s=e.computed(()=>({...c.value,...a}));l.default&&l.default();function d(w){r.draggable&&(w.dataTransfer&&r.id!==void 0&&(w.dataTransfer.setData("text/plain",String(r.id)),w.dataTransfer.effectAllowed="move"),o("dragstart",{id:r.id,event:w}))}function u(w){r.draggable&&o("dragover",{id:r.id,event:w})}function h(w){r.draggable&&o("dragleave",{id:r.id,event:w})}function f(w){if(!r.draggable)return;const g=w.dataTransfer?.getData("text/plain");o("drop",{id:r.id,sourceId:g,event:w})}function p(w){if(r.disabled){w.preventDefault();return}o("click",w)}const m=e.computed(()=>[r.active?"bg-blue-50 dark:bg-blue-900/20":"",r.extraClass||""].join(" "));return(w,g)=>(e.openBlock(),e.createElementBlock("li",{class:e.normalizeClass(["nav-drawer-item",m.value,{"is-dragging":n.dragging,"is-drag-over":n.isDragOver,"drag-pos-before":n.isDragOver&&n.dragPos==="before","drag-pos-after":n.isDragOver&&n.dragPos==="after"}]),"data-drawer-item-id":r.id,draggable:n.draggable,onDragstart:d,onDragover:e.withModifiers(u,["prevent"]),onDragleave:e.withModifiers(h,["prevent"]),onDrop:e.withModifiers(f,["prevent"])},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(i.value),e.mergeProps(s.value,{class:["flex items-center vts-ga-3 vts-px-12 vts-py-2 hover:brightness-110",{"opacity-50 cursor-not-allowed":n.disabled}],role:"menuitem",tabindex:n.disabled?-1:0,onClick:p}),{default:e.withCtx(()=>[e.renderSlot(w.$slots,"default",{},void 0,!0)]),_:3},16,["class","tabindex"]))],42,yw))}}),[["__scopeId","data-v-06c04292"]]),Bw=["value","placeholder","min","max","step"],Ew=De(e.defineComponent({__name:"NumberField",props:{modelValue:{type:[String,Number,null],default:""},label:{type:[String,Object],default:""},placeholder:{type:String,default:"0"},hint:{type:String,default:""},error:{type:String,default:""},errorMessages:{type:Array,default:()=>[]},disabled:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},required:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},loading:{type:Boolean,default:!1},prepend:{type:String,default:""},append:{type:String,default:""},rules:{type:Array,default:()=>[]},min:{type:[Number,String],default:void 0},max:{type:[Number,String],default:void 0},step:{type:[Number,String],default:"1"},allowDecimal:{type:Boolean,default:!0},size:{type:String},rounded:{type:String},border:{type:String},textColor:{type:String},bg:{type:String},containerClass:{type:String,default:""},id:{type:String,default:""},width:{type:String,default:"w-full"},dir:{type:String,default:""},lang:{type:String,default:""},items:{type:Array,default:()=>[]},itemText:{type:String,default:"text"},itemValue:{type:String,default:"value"}},emits:["update:modelValue","input","change","focus","blur","clear","enter"],setup(n,{expose:t,emit:r}){const o=n,a=r,l=e.inject("parentDir",""),i=e.inject("parentLang",""),c=e.computed(()=>o.dir||l),s=e.computed(()=>o.lang||i),d=e.ref(null),u=e.ref(null),h=e.ref(!1),f=e.computed(()=>o.id||`input-${Math.random().toString(36).substr(2,9)}`),p=e.computed(()=>["w-full bg-transparent outline-none border-none","placeholder:text-gray-400","focus:outline-none"]),m=e.computed(()=>o.modelValue===null||o.modelValue===void 0||o.modelValue===""?"":String(o.modelValue)),w=y=>{if(y==="")return"";const B=String(y).trim();if(B==="")return"";if(!o.allowDecimal){const S=parseInt(B,10);return Number.isNaN(S)?B:S}const V=parseFloat(B);return Number.isNaN(V)?B:V},g=y=>{let B=y;if(o.min!==void 0&&o.min!==null&&o.min!==""){const V=Number(o.min);Number.isNaN(V)||(B=Math.max(B,V))}if(o.max!==void 0&&o.max!==null&&o.max!==""){const V=Number(o.max);Number.isNaN(V)||(B=Math.min(B,V))}return B},k=y=>{const V=y.target.value;a("input",V);const S=w(V);if(typeof S=="number"){const Z=g(S);a("update:modelValue",Z),a("change",Z)}else a("update:modelValue",S)},x=y=>{h.value=!0,a("focus",y)},v=y=>{h.value=!1;const B=o.modelValue;if(typeof B=="string"&&B.trim()!==""){const V=w(B);if(typeof V=="number"){const S=g(V);a("update:modelValue",S),a("change",S)}}a("blur",y)},b=y=>{a("enter",o.modelValue)},C=()=>{a("update:modelValue",""),a("clear"),d.value?.focus()};return t({focus:()=>{d.value?.focus()},clear:C}),(y,B)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"containerRef",ref:u,class:e.normalizeClass(["relative",n.containerClass,n.width])},[e.createVNode(pn,{"model-value":n.modelValue,label:n.label,hint:n.hint,"persistent-hint":!!n.hint,disabled:n.disabled,readonly:n.readonly,required:n.required,error:!!n.error||n.errorMessages.length>0,"error-messages":n.errorMessages,clearable:n.clearable&&!n.loading,size:n.size,id:f.value,prepend:n.prepend,append:n.append,"is-open":h.value,"onClick:clear":C,bg:n.bg,border:n.border,"text-color":n.textColor,rounded:n.rounded,dir:c.value,lang:s.value,width:n.width,rules:n.rules},e.createSlots({control:e.withCtx(({attrs:V,events:S})=>[e.createElementVNode("input",e.mergeProps({ref_key:"inputRef",ref:d},V,e.toHandlers(S,!0),{type:"number",value:m.value,placeholder:h.value&&(n.modelValue===""||n.modelValue===null)?n.placeholder:"",class:p.value,min:n.min,max:n.max,step:n.step,onInput:k,onKeydown:e.withKeys(b,["enter"]),onFocus:x,onBlur:v}),null,16,Bw)]),_:2},[n.loading?{name:"append",fn:e.withCtx(()=>[B[0]||(B[0]=e.createElementVNode("svg",{class:"animate-spin h-4 w-4",fill:"none",viewBox:"0 0 24 24"},[e.createElementVNode("circle",{class:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor","stroke-width":"4"}),e.createElementVNode("path",{class:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 714 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})],-1))]),key:"0"}:void 0]),1032,["model-value","label","hint","persistent-hint","disabled","readonly","required","error","error-messages","clearable","size","id","prepend","append","is-open","bg","border","text-color","rounded","dir","lang","width","rules"])],2))}}),[["__scopeId","data-v-9f9fe62d"]]),bw=e.defineComponent({__name:"PApp",setup(n){const t=e.reactive({appBars:new Map,footers:new Map,drawers:new Map});function r(d,u,h){d==="appBar"&&t.appBars.set(u,h),d==="footer"&&t.footers.set(u,h),d==="drawer"&&t.drawers.set(u,h)}function o(d,u){d==="appBar"&&t.appBars.delete(u),d==="footer"&&t.footers.delete(u),d==="drawer"&&t.drawers.delete(u)}const a=e.ref(null),l=e.computed(()=>{let d=0;for(const[,u]of t.appBars)u.dense,d+=u.height||0;return d}),i=e.computed(()=>{let d=0;for(const[,u]of t.footers)d+=u.height||0;return d}),c=e.computed(()=>{let d=0,u=0;for(const[,h]of t.drawers)h.mode==="permanent"&&(h.right?u+=h.width||0:d+=h.width||0),h.mode==="rail"&&h.expanded&&(h.right?u+=h.width||0:d+=h.width||0);return{left:d,right:u}});e.provide("layout",{register:r,unregister:o,topOffset:l,bottomOffset:i,horizontalOffset:c,app:t});const s=e.computed(()=>et.value?"direction-rtl":"direction-ltr");return(d,u)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["min-h-screen flex flex-col w-full",s.value]),ref_key:"root",ref:a},[e.renderSlot(d.$slots,"default")],2))}}),Cw=["value","placeholder"],Mw={class:"max-h-60 overflow-auto py-1"},Vw={key:0,class:"px-4 py-2 text-input-text text-center text-sm"},Aw={key:1,class:"px-4 py-2 text-input-text text-center text-sm"},_w=["onClick","onMouseenter","aria-selected"],Nw={class:"flex-1"},Zw=De({__name:"Search",props:{modelValue:{type:[String,Number,Object],default:""},label:{type:[String,Object],default:""},placeholder:{type:String,default:"Search..."},hint:{type:String,default:""},error:{type:String,default:""},errorMessages:{type:Array,default:()=>[]},disabled:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},required:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},loading:{type:Boolean,default:!1},prepend:{type:String,default:""},append:{type:String,default:""},items:{type:Array,default:()=>[]},itemText:{type:[String,Function],default:"text"},itemValue:{type:[String,Function],default:"value"},returnObject:{type:Boolean,default:!1},searchInput:{type:String,default:""},filterKeys:{type:Array,default:()=>[]},customFilter:{type:Function,default:null},minSearchLength:{type:Number,default:0},debounce:{type:Number,default:300},size:{type:String,default:"md"},rounded:{type:String,default:""},border:{type:String,default:"border-input-border"},textColor:{type:String,default:"text-input-text"},bg:{type:String,default:"bg-input-background"},containerClass:{type:String,default:""},menuClass:{type:String,default:""},menuStyle:{type:Object,default:()=>({})},itemClass:{type:String,default:""},itemHoverClass:{type:String,default:""},id:{type:String,default:""},width:{type:String,default:"w-full"},dir:{type:String,default:""},lang:{type:String,default:""}},emits:["update:modelValue","update:searchInput","input","change","focus","blur","select","clear","search"],setup(n,{expose:t,emit:r}){const o=n,a=e.inject("parentDir",""),l=e.inject("parentLang",""),i=e.computed(()=>o.dir||a),c=e.computed(()=>o.lang||l),s=r,d=e.ref(null),u=e.ref(null),h=e.ref(null),f=e.ref(""),p=e.ref(!1),m=e.ref(!1),w=e.ref(-1);let g=null;const k=e.computed(()=>o.id||`search-${Math.random().toString(36).substr(2,9)}`);e.watch(()=>o.modelValue,E=>{if(!E){f.value="";return}if(o.returnObject)f.value=v(E);else{const N=o.items.find(F=>b(F)===E);f.value=N?v(N):E.toString()}},{immediate:!0}),e.watch(()=>o.searchInput,E=>{f.value=E});const x=e.computed(()=>{const E=f.value?.toString().toLowerCase()||"";return E.length<o.minSearchLength?[]:!E&&o.items.length>0?o.items:o.customFilter?o.customFilter(o.items,E):o.items.filter(N=>(o.filterKeys.length>0?o.filterKeys:[o.itemText]).some(P=>(typeof P=="function"?P(N):N[P])?.toString().toLowerCase().includes(E)))}),v=E=>E?typeof E=="string"||typeof E=="number"?E.toString():typeof o.itemText=="function"?o.itemText(E):E[o.itemText]||"":"",b=E=>E?typeof E=="string"||typeof E=="number"?E:typeof o.itemValue=="function"?o.itemValue(E):E[o.itemValue]||E:"",C=e.computed(()=>["w-full bg-transparent outline-none border-none","placeholder:text-gray-400","focus:outline-none"]),A=E=>{const N=E.target.value;f.value=N,clearTimeout(g),g=setTimeout(()=>{s("update:searchInput",N),s("input",N),s("search",N),s("update:modelValue",N),N.length>=o.minSearchLength?m.value=!0:m.value=!1},o.debounce)},y=E=>{p.value=!0,s("focus",E),f.value.length>=o.minSearchLength&&(m.value=!0)},B=E=>{setTimeout(()=>{p.value=!1,s("blur",E)},200)},V=()=>{m.value=!1},S=E=>{w.value>=0&&w.value<x.value.length&&(E.preventDefault(),K(x.value[w.value]))},Z=()=>{m.value=!1,u.value?.blur()},D=E=>{E.preventDefault(),w.value<x.value.length-1&&w.value++},R=E=>{E.preventDefault(),w.value>0&&w.value--},K=E=>{const N=o.returnObject?E:b(E),F=v(E);f.value=F,s("update:modelValue",N),s("update:searchInput",F),s("select",E),m.value=!1,w.value=-1},_=()=>{f.value="",s("update:modelValue",""),s("update:searchInput",""),s("clear"),u.value?.focus()},T=()=>{u.value?.focus()};return e.onMounted(()=>{}),e.onBeforeUnmount(()=>{clearTimeout(g)}),t({focus:T,clear:_}),(E,N)=>e.withDirectives((e.openBlock(),e.createElementBlock("div",{ref_key:"containerRef",ref:d,class:e.normalizeClass(["relative",n.containerClass,n.width])},[e.createVNode(pn,e.mergeProps({"model-value":f.value,label:n.label},e.toHandlers(E.$attrs),{hint:n.hint,"persistent-hint":!!n.hint,disabled:n.disabled,readonly:n.readonly,required:n.required,error:!!n.error||n.errorMessages.length>0,"error-messages":n.errorMessages,clearable:n.clearable&&!n.loading,size:n.size,id:k.value,prepend:n.prepend,append:n.append,"is-open":m.value,"onClick:clear":_,bg:n.bg,border:n.border,"text-color":n.textColor,rounded:n.rounded,dir:i.value,lang:c.value,width:n.width}),e.createSlots({control:e.withCtx(({attrs:F,events:P})=>[e.createElementVNode("input",e.mergeProps({ref_key:"inputRef",ref:u},F,{type:"search",value:f.value,placeholder:p.value&&!f.value?n.placeholder:"",class:C.value,onInput:A,onFocus:y,onBlur:B,onKeydown:[e.withKeys(S,["enter"]),e.withKeys(Z,["esc"]),e.withKeys(D,["down"]),e.withKeys(R,["up"])]}),null,16,Cw)]),_:2},[n.loading?{name:"append",fn:e.withCtx(()=>[N[0]||(N[0]=e.createElementVNode("svg",{class:"animate-spin h-4 w-4",fill:"none",viewBox:"0 0 24 24"},[e.createElementVNode("circle",{class:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor","stroke-width":"4"}),e.createElementVNode("path",{class:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})],-1))]),key:"0"}:void 0]),1040,["model-value","label","hint","persistent-hint","disabled","readonly","required","error","error-messages","clearable","size","id","prepend","append","is-open","bg","border","text-color","rounded","dir","lang","width"]),e.createVNode(e.Transition,{name:"fade"},{default:e.withCtx(()=>[m.value?(e.openBlock(),e.createElementBlock("div",{key:0,ref_key:"menuRef",ref:h,class:e.normalizeClass(["absolute left-0 right-0 mt-1 shadow-lg z-50",n.bg,n.border?"border "+n.border:"",n.rounded?e.unref(En)[n.rounded]:"",n.menuClass]),style:e.normalizeStyle(n.menuStyle)},[e.createElementVNode("ul",Mw,[n.loading?(e.openBlock(),e.createElementBlock("li",Vw,[e.renderSlot(E.$slots,"loading",{},()=>[N[1]||(N[1]=e.createElementVNode("div",{class:"flex items-center gap-2 justify-center"},[e.createElementVNode("svg",{class:"animate-spin h-4 w-4",fill:"none",viewBox:"0 0 24 24"},[e.createElementVNode("circle",{class:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor","stroke-width":"4"}),e.createElementVNode("path",{class:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})]),e.createTextVNode(" Searching... ")],-1))],!0)])):x.value.length===0?(e.openBlock(),e.createElementBlock("li",Aw,[e.renderSlot(E.$slots,"noData",{},()=>[N[2]||(N[2]=e.createTextVNode("No results found",-1))],!0)])):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:2},e.renderList(x.value,(F,P)=>(e.openBlock(),e.createElementBlock("li",{key:b(F),onClick:U=>K(F),onMouseenter:U=>w.value=P,class:e.normalizeClass(["px-4 py-2 cursor-pointer transition flex items-center text-sm",w.value===P?"bg-gray-100 text-gray-900":"hover:bg-input-hover",n.itemClass,n.itemHoverClass]),role:"option","aria-selected":w.value===P},[e.renderSlot(E.$slots,"item",{item:F,index:P},()=>[e.createElementVNode("span",Nw,e.toDisplayString(v(F)),1)],!0)],42,_w))),128))])],6)):e.createCommentVNode("",!0)]),_:3})],2)),[[e.unref(Hl),V]])}},[["__scopeId","data-v-cd664bc3"]]),Sw={class:"w-full flex gap-4 justify-between items-center"},$w={class:"flex gap-2 font-semibold text-lg"},Iw={class:"flex gap-2 items-center"},Hw={class:"flex gap-2"},Tw={key:1,class:"flex gap-2"},Lw={class:"flex gap-2"},bs={__name:"Searchbar",props:{modelValue:{type:Boolean,default:!0},title:{type:String,default:""},margin:{type:String,default:""},bg:{type:String,default:"primary"},position:{type:String,default:"top"},border:{type:String,default:""},closeable:{type:Boolean,default:!1},sticky:{type:Boolean,default:!1},timeout:{type:Number,default:0},showProgress:{type:Boolean,default:!1},rounded:{type:String,default:"none"},elevation:{type:Boolean,default:!0},outlined:{type:Boolean,default:!1},dense:{type:Boolean,default:!0},filterSection:{type:Boolean,default:!0},createButton:{type:Boolean,default:!0},quickFilters:{type:Array,default:()=>[]},filterValues:{type:Object,default:()=>({})}},emits:["update:modelValue","update:filterValues","createButton","close","dismiss","showFilterSection","search","refresh"],setup(n,{emit:t}){const r=n,o=t,a=e.ref(!1),l=()=>{a.value=!a.value,o("showFilterSection",a.value)},i=e.computed({get:()=>r.filterValues,set:f=>o("update:filterValues",f)}),c=e.computed(()=>{const f={},p=new Set(r.quickFilters.map(m=>m.type?.toLowerCase()));return(p.has("search")||p.has("inputsearch"))&&(f.search=e.defineAsyncComponent(()=>Promise.resolve().then(()=>sl)),f.inputsearch=e.defineAsyncComponent(()=>Promise.resolve().then(()=>sl))),p.has("select")&&(f.select=e.defineAsyncComponent(()=>Promise.resolve().then(()=>rc))),(p.has("textfield")||p.has("text"))&&(f.textfield=e.defineAsyncComponent(()=>Promise.resolve().then(()=>zo)),f.text=e.defineAsyncComponent(()=>Promise.resolve().then(()=>zo))),(p.has("datepicker")||p.has("date"))&&(f.datepicker=e.defineAsyncComponent(()=>Promise.resolve().then(()=>Oo)),f.date=e.defineAsyncComponent(()=>Promise.resolve().then(()=>Oo))),p.has("chipgroup")&&(f.chipgroup=e.defineAsyncComponent(()=>Promise.resolve().then(()=>zh))),f}),s=f=>{const p=f?.toLowerCase()||"search";return c.value[p]||c.value.search},d=f=>{const{type:p,key:m,...w}=f,g=Object.fromEntries(Object.entries(w).filter(([k,x])=>x!==""&&x!==null&&x!==void 0));return g.itemText&&(g["item-text"]=g.itemText,delete g.itemText),g.itemValue&&(g["item-value"]=g.itemValue,delete g.itemValue),g.itemTitle&&(g["item-title"]=g.itemTitle,delete g.itemTitle),g},u=(f,p)=>{const m=typeof p=="object"&&p!==null?p.value:p;o("update:filterValues",{...r.filterValues,[f]:m}),o("search",{...r.filterValues,[f]:m})},h=e.computed(()=>{if(r.message)return r.message;const f=Object.values(r.filterValues).filter(p=>Array.isArray(p)?p.length>0:p!==""&&p!==null&&p!==void 0).length;return f>0?`${f} filter${f>1?"s":""} selected`:""});return(f,p)=>{const m=e.resolveComponent("Button"),w=e.resolveComponent("Card"),g=e.resolveDirective("tooltip");return n.modelValue?(e.openBlock(),e.createBlock(w,{key:0,"model-value":n.modelValue,bg:"",border:"",margin:"m-0",padding:"py-0 px-2","onUpdate:modelValue":p[2]||(p[2]=k=>o("update:modelValue",k))},{default:e.withCtx(()=>[e.createElementVNode("div",Sw,[e.createElementVNode("div",$w,[e.createElementVNode("h1",null,e.toDisplayString(n.title),1)]),e.createElementVNode("div",Iw,[n.createButton?(e.openBlock(),e.createBlock(m,{key:0,label:"Create",color:"primary","prepend-icon":"plus",variant:"outlined",size:"xs",class:"stroke-2",onClick:p[0]||(p[0]=k=>f.$emit("createButton"))})):e.createCommentVNode("",!0),e.createElementVNode("div",Hw,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.quickFilters,(k,x)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(s(k.type)),e.mergeProps({key:k.key||x,"model-value":i.value[k.key]},{ref_for:!0},d(k),{"onUpdate:modelValue":v=>u(k.key,v)}),null,16,["model-value","onUpdate:modelValue"]))),128))]),n.filterSection?(e.openBlock(),e.createElementBlock("div",Tw,[h.value?(e.openBlock(),e.createBlock(e.unref(Qd),{key:0,label:h.value,variant:"outlined",color:"gray",size:"small",closable:!1,disabled:!0},null,8,["label"])):e.createCommentVNode("",!0),e.withDirectives(e.createVNode(m,{label:"",color:"secondary",icon:"funnel",variant:"text",size:"md",onClick:l},null,512),[[g,a.value?"Hide Filters":"Show Filters"]])])):e.createCommentVNode("",!0),e.createElementVNode("div",Lw,[e.withDirectives(e.createVNode(m,{label:"",color:"gray",icon:"arrow-path",variant:"text",size:"md",onClick:p[1]||(p[1]=k=>f.$emit("refresh"))},null,512),[[g,"Refresh"]])])])])]),_:1},8,["model-value"])):e.createCommentVNode("",!0)}}},Dw={class:"w-full space-y-4"},Pw={class:"flex flex-col md:flex-row md:items-center md:justify-between gap-3"},Ow={class:"flex flex-wrap gap-2 items-center"},Rw={class:"text-sm font-medium"},zw=["onUpdate:modelValue"],jw=["value"],Fw={class:"hidden md:block border border-gray-200 overflow-hidden"},Uw={class:"w-full text-left"},Ww={class:"bg-gray-100"},qw=["onClick"],Yw={class:"flex items-center gap-1"},Kw={key:0},Gw={class:"px-4 py-3"},Jw=["onClick"],Xw={class:"md:hidden space-y-4"},Qw={class:"text-sm font-medium"},eg={class:"text-sm"},tg={class:"pt-2 border-t mt-2"},ng=["onClick"],rg={class:"flex items-center justify-between pt-4"},og=["disabled"],ag=["disabled"],u5=10,lg={__name:"StackedTableView",props:{data:{type:Array,required:!0},columns:{type:Array,required:!0},filters:{type:Array,default:()=>[]}},emits:["view"],setup(n,{emit:t}){const r=n,o=t,a=e.ref(""),l=e.ref({});r.filters.forEach(p=>l.value[p.key]="");const i=e.ref(null),c=e.ref("asc");function s(p){i.value===p?c.value=c.value==="asc"?"desc":"asc":(i.value=p,c.value="asc")}const d=e.ref(1),u=e.computed(()=>{let p=[...r.data];if(a.value){const m=a.value.toLowerCase();p=p.filter(w=>Object.values(w).some(g=>String(g).toLowerCase().includes(m)))}return r.filters.forEach(m=>{const w=l.value[m.key];w&&(p=p.filter(g=>g[m.key]===w))}),i.value&&p.sort((m,w)=>{const g=m[i.value],k=w[i.value];return g===k?0:c.value==="asc"?g>k?1:-1:g<k?1:-1}),p}),h=e.computed(()=>Math.ceil(u.value.length/u5)),f=e.computed(()=>{const p=(d.value-1)*u5;return u.value.slice(p,p+u5)});return e.watch([a,l,i,c],()=>{d.value=1}),(p,m)=>(e.openBlock(),e.createElementBlock("div",Dw,[e.createElementVNode("div",Pw,[e.withDirectives(e.createElementVNode("input",{"onUpdate:modelValue":m[0]||(m[0]=w=>a.value=w),type:"text",placeholder:"Search...",class:"border border-gray-200 px-4 py-2 w-full md:w-64"},null,512),[[e.vModelText,a.value]]),e.createElementVNode("div",Ow,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.filters,w=>(e.openBlock(),e.createElementBlock("div",{key:w.key,class:"flex items-center gap-2"},[e.createElementVNode("label",Rw,e.toDisplayString(w.label),1),e.withDirectives(e.createElementVNode("select",{"onUpdate:modelValue":g=>l.value[w.key]=g,class:"border border-gray-200 px-3 py-2"},[m[3]||(m[3]=e.createElementVNode("option",{value:""},"All",-1)),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.options,g=>(e.openBlock(),e.createElementBlock("option",{key:g.value,value:g.value},e.toDisplayString(g.label),9,jw))),128))],8,zw),[[e.vModelSelect,l.value[w.key]]])]))),128))])]),e.createElementVNode("div",Fw,[e.createElementVNode("table",Uw,[e.createElementVNode("thead",Ww,[e.createElementVNode("tr",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.columns,w=>(e.openBlock(),e.createElementBlock("th",{key:w.key,class:"px-4 py-3 cursor-pointer select-none",onClick:g=>s(w.key)},[e.createElementVNode("div",Yw,[e.createElementVNode("span",null,e.toDisplayString(w.label),1),i.value===w.key?(e.openBlock(),e.createElementBlock("span",Kw,e.toDisplayString(c.value==="asc"?"▲":"▼"),1)):e.createCommentVNode("",!0)])],8,qw))),128)),m[4]||(m[4]=e.createElementVNode("th",{class:"px-4 py-3"},"Actions",-1))])]),e.createElementVNode("tbody",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(f.value,w=>(e.openBlock(),e.createElementBlock("tr",{key:w.id,class:"border-t border-gray-200"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.columns,g=>(e.openBlock(),e.createElementBlock("td",{key:g.key,class:"px-4 py-3"},e.toDisplayString(w[g.key]),1))),128)),e.createElementVNode("td",Gw,[e.createElementVNode("button",{class:"text-blue-600 hover:underline",onClick:g=>o("view",w)},"View",8,Jw)])]))),128))])])]),e.createElementVNode("div",Xw,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(f.value,w=>(e.openBlock(),e.createElementBlock("div",{key:w.id,class:"border border-gray-200 p-4 shadow-sm space-y-2"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.columns,g=>(e.openBlock(),e.createElementBlock("div",{key:g.key,class:"flex justify-between"},[e.createElementVNode("span",Qw,e.toDisplayString(g.label),1),e.createElementVNode("span",eg,e.toDisplayString(w[g.key]),1)]))),128)),e.createElementVNode("div",tg,[e.createElementVNode("button",{class:"text-blue-600 hover:underline",onClick:g=>o("view",w)},"View",8,ng)])]))),128))]),e.createElementVNode("div",rg,[e.createElementVNode("button",{class:"px-3 py-2 border border-gray-200",disabled:d.value===1,onClick:m[1]||(m[1]=w=>d.value--)},"Prev",8,og),e.createElementVNode("span",null,"Page "+e.toDisplayString(d.value)+" / "+e.toDisplayString(h.value),1),e.createElementVNode("button",{class:"px-3 py-2 border border-gray-200",disabled:d.value===h.value,onClick:m[2]||(m[2]=w=>d.value++)},"Next",8,ag)])]))}},ig=["id","dir"],cg=["aria-orientation"],sg=["id","aria-selected","aria-controls","tabindex","disabled","onClick","onKeydown"],dg={key:0,class:"tabs-item-icon"},ug={class:"tabs-item-label"},hg=["aria-label","onClick"],pg={key:0,class:"tabs-scroll-buttons absolute top-0 right-0 flex vts-ga-1 vts-pa-1"},fg={class:"tabs-panels"},mg=["id","aria-labelledby","hidden"],wg=De({__name:"Tab",props:{tabs:{type:Array,required:!0},modelValue:{type:Number,default:0},variant:{type:String,default:"line"},size:{type:String,default:"md"},color:{type:String,default:"primary"},vertical:{type:Boolean,default:!1},closable:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},lazy:{type:Boolean,default:!1},showScrollButtons:{type:Boolean,default:!0},centered:{type:Boolean,default:!1},justified:{type:Boolean,default:!1},ariaLabel:{type:String,default:""}},emits:["update:modelValue","change","close","keydown"],setup(n,{emit:t}){const r=n,o=t,a=B=>{const V=String(B?.badgeVariant||"").toLowerCase();return V.includes("error")||V.includes("red")?"badge--error":(V.includes("primary")||V.includes("blue"),"badge--primary")},l=e.computed(()=>r.tabs),i=e.ref(`tabs-${Math.random().toString(36).substr(2,9)}`),c=e.ref(r.modelValue),s=e.ref(null),d=e.ref(!1),u=e.ref(!1),h=e.computed(()=>et.value),f=e.computed(()=>{const B={line:"variant-line",pills:"variant-pills",enclosed:"variant-enclosed",card:"variant-card"};return B[r.variant]||B.line}),p=e.computed(()=>{const B={sm:"size-sm",md:"size-md",lg:"size-lg"};return B[r.size]||B.md}),m=e.computed(()=>{const B=["whitespace-nowrap inline-flex items-center vts-ga-2 transition-colors",`text-${r.size==="sm"?"sm":r.size==="lg"?"lg":"base"}`];return r.centered&&B.push("justify-center"),r.justified&&B.push("flex-1"),r.vertical&&B.push("w-full justify-start"),B.join(" ")}),w=e.computed(()=>{const B=[];return r.variant==="enclosed"&&B.push("vts-border","vts-rounded-md"),r.variant==="card"&&B.push("vts-ga-4"),B.join(" ")}),g=e.computed(()=>r.vertical?"vts-border-e-sm vts-border-solid vts-border-color":"vts-border-b-sm vts-border-solid vts-border-color"),k=B=>{const V=[],S={sm:["vts-py-2","vts-px-3"],md:["vts-py-3","vts-px-4"],lg:["vts-py-4","vts-px-5"]};if(r.variant==="pills"&&r.size==="md")V.push("vts-py-2","vts-px-4");else{const Z=S[r.size]||S.md;V.push(...Z)}return r.variant==="line"&&(V.push("vts-border-b-md","vts-border-solid","vts-border-color-transparent","vts-mb-n1"),r.vertical&&V.push("vts-border-b-0")),r.variant==="enclosed"&&(V.push("vts-border-e-sm","vts-border-solid","vts-border-color"),B===l.value.length-1&&V.push("vts-border-e-0")),r.variant==="card"&&V.push("vts-border-sm","vts-border-solid","vts-border-color","vts-rounded-md"),r.vertical&&V.push("w-full","justify-start"),V.join(" ")},x=e.computed(()=>{if(r.vertical)return"vts-py-4 vts-px-6";const B={sm:"vts-pa-4",md:"vts-pa-6",lg:"vts-pa-8"};return B[r.size]||B.md}),v=B=>{l.value[B]?.disabled||r.disabled||(c.value=B,o("update:modelValue",B),o("change",B))},b=B=>{o("close",B)},C=(B,V)=>{o("keydown",B,V);const S=l.value.length;switch(B.key){case"ArrowDown":if(r.vertical){B.preventDefault(),v((V+1)%S);return}break;case"ArrowUp":if(r.vertical){B.preventDefault(),v((V-1+S)%S);return}break;case"ArrowRight":h.value?(B.preventDefault(),v((V-1+S)%S)):(B.preventDefault(),v((V+1)%S));break;case"ArrowLeft":h.value?(B.preventDefault(),v((V+1)%S)):(B.preventDefault(),v((V-1+S)%S));break;case"Home":B.preventDefault(),v(0);break;case"End":B.preventDefault(),v(S-1);break}},A=B=>{if(!s.value)return;const S=s.value.scrollLeft+B*200;s.value.scrollLeft=S,y()},y=()=>{if(!s.value||r.vertical){d.value=!1,u.value=!1;return}const{scrollLeft:B,scrollWidth:V,clientWidth:S}=s.value;d.value=B>0,u.value=B<V-S-10};return e.watch(()=>r.modelValue,B=>{c.value=B}),e.onMounted(()=>{s.value=document.querySelector(`#${i.value} .tabs-list`),y()}),(B,V)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["tabs-container",[f.value,p.value,w.value,{"tabs-container--vertical":n.vertical}]]),id:i.value,dir:h.value?"rtl":"ltr"},[e.createElementVNode("div",{class:e.normalizeClass(["tabs-list relative overflow-x-auto",g.value]),role:"tablist","aria-orientation":n.vertical?"vertical":"horizontal"},[e.createElementVNode("div",{class:e.normalizeClass(["tabs-header flex vts-ga-1 vts-pa-1",{"flex-col":n.vertical,"flex-row":!n.vertical}])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.value,(S,Z)=>(e.openBlock(),e.createElementBlock("button",{id:`tab-${i.value}-${Z}`,key:Z,role:"tab","aria-selected":c.value===Z,"aria-controls":`panel-${i.value}-${Z}`,tabindex:c.value===Z?0:-1,disabled:S.disabled||n.disabled,class:e.normalizeClass(["tabs-item",c.value===Z?"tabs-item--active":"",S.disabled?"tabs-item--disabled":"",m.value,"vts-rounded-sm",k(Z)]),onClick:D=>v(Z),onKeydown:D=>C(D,Z)},[S.icon?(e.openBlock(),e.createElementBlock("span",dg,[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(S.icon),{class:"w-5 h-5"}))])):e.createCommentVNode("",!0),e.createElementVNode("span",ug,e.toDisplayString(S.label),1),S.badge?(e.openBlock(),e.createElementBlock("span",{key:1,class:e.normalizeClass(["tabs-item-badge",a(S)])},e.toDisplayString(S.badge),3)):e.createCommentVNode("",!0),n.closable&&!S.disabled?(e.openBlock(),e.createElementBlock("button",{key:2,type:"button",class:"tabs-item-close vts-ms-1 vts-pa-0","aria-label":`Close ${S.label}`,onClick:e.withModifiers(D=>b(Z),["stop"])},[...V[2]||(V[2]=[e.createElementVNode("svg",{class:"w-4 h-4",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"})],-1)])],8,hg)):e.createCommentVNode("",!0)],42,sg))),128))],2),!n.vertical&&n.showScrollButtons?(e.openBlock(),e.createElementBlock("div",pg,[d.value?(e.openBlock(),e.createElementBlock("button",{key:0,type:"button",class:"tabs-scroll-btn vts-pa-2 vts-rounded-md",onClick:V[0]||(V[0]=S=>A(-1))},[...V[3]||(V[3]=[e.createElementVNode("svg",{class:"w-5 h-5",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M15 19l-7-7 7-7"})],-1)])])):e.createCommentVNode("",!0),u.value?(e.openBlock(),e.createElementBlock("button",{key:1,type:"button",class:"tabs-scroll-btn vts-pa-2 vts-rounded-md",onClick:V[1]||(V[1]=S=>A(1))},[...V[4]||(V[4]=[e.createElementVNode("svg",{class:"w-5 h-5",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M9 5l7 7-7 7"})],-1)])])):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0)],10,cg),e.createElementVNode("div",fg,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.value,(S,Z)=>(e.openBlock(),e.createElementBlock("div",{key:Z,id:`panel-${i.value}-${Z}`,role:"tabpanel","aria-labelledby":`tab-${i.value}-${Z}`,hidden:c.value!==Z,class:e.normalizeClass(["tabs-panel",{hidden:c.value!==Z}])},[e.createElementVNode("div",{class:e.normalizeClass(["tabs-panel-content",x.value])},[e.renderSlot(B.$slots,`content-${Z}`,{tab:S},()=>[e.createTextVNode(e.toDisplayString(S.content),1)],!0)],2)],10,mg))),128))])],10,ig))}},[["__scopeId","data-v-db318afa"]]),gg=["value","placeholder","rows","maxlength"],Cs=De({__name:"Textarea",props:{modelValue:{type:[String,Number],default:""},label:{type:[String,Object],default:""},placeholder:{type:String,default:"text ..."},hint:{type:String,default:""},error:{type:String,default:""},errorMessages:{type:Array,default:()=>[]},disabled:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},required:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},loading:{type:Boolean,default:!1},prepend:{type:String,default:""},append:{type:String,default:""},rules:{type:Array,default:()=>[]},rows:{type:[Number,String],default:3},maxlength:{type:[Number,String],default:null},size:{type:String},rounded:{type:String},border:{type:String},textColor:{type:String},bg:{type:String},containerClass:{type:String,default:""},id:{type:String,default:""},width:{type:String,default:"w-full"},dir:{type:String,default:""},lang:{type:String,default:""},items:{type:Array,default:()=>[]},itemText:{type:String,default:"text"},itemValue:{type:String,default:"value"},height:{type:String,default:"h-auto"}},emits:["update:modelValue","input","change","focus","blur","clear","enter"],setup(n,{expose:t,emit:r}){const o=n,a=e.inject("parentDir",""),l=e.inject("parentLang",""),i=e.computed(()=>o.dir||a),c=e.computed(()=>o.lang||l),s=r,d=e.ref(null),u=e.ref(null),h=e.ref(!1),f=e.computed(()=>o.id||`input-${Math.random().toString(36).substr(2,9)}`),p=e.computed(()=>["w-full bg-transparent outline-none border-none","placeholder:text-gray-400","focus:outline-none"]),m=b=>{const C=b.target.value;s("update:modelValue",C)},w=b=>{h.value=!0,s("focus",b)},g=b=>{h.value=!1,s("blur",b)},k=b=>{s("enter",o.modelValue)},x=()=>{s("update:modelValue",""),s("clear"),d.value?.focus()};return t({focus:()=>{d.value?.focus()},clear:x}),(b,C)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"containerRef",ref:u,class:e.normalizeClass(["relative",n.containerClass,n.width])},[e.createVNode(pn,e.mergeProps(b.$props,{"model-value":n.modelValue,error:!!n.error||n.errorMessages.length>0,clearable:n.clearable&&!n.loading,id:f.value,"is-open":h.value,"onClick:clear":x,dir:i.value,lang:c.value,rules:n.rules}),e.createSlots({control:e.withCtx(({attrs:A,events:y})=>[e.createElementVNode("textarea",e.mergeProps({ref_key:"inputRef",ref:d},A,e.toHandlers(y,!0),{type:"text",value:n.modelValue,placeholder:h.value&&!n.modelValue?n.placeholder:"",class:p.value,rows:n.rows,maxlength:n.maxlength,onInput:m,onKeydown:e.withKeys(k,["enter"]),onFocus:w,onBlur:g}),null,16,gg)]),_:2},[n.loading?{name:"append",fn:e.withCtx(()=>[C[0]||(C[0]=e.createElementVNode("svg",{class:"animate-spin h-4 w-4",fill:"none",viewBox:"0 0 24 24"},[e.createElementVNode("circle",{class:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor","stroke-width":"4"}),e.createElementVNode("path",{class:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 714 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})],-1))]),key:"0"}:void 0]),1040,["model-value","error","clearable","id","is-open","dir","lang","rules"])],2))}},[["__scopeId","data-v-77e6f8cb"]]),kg=Object.freeze(Object.defineProperty({__proto__:null,default:Cs},Symbol.toStringTag,{value:"Module"})),xg=["value","placeholder"],Ms=De({__name:"TextField",props:{modelValue:{type:[String,Number],default:""},label:{type:[String,Object],default:""},placeholder:{type:String,default:"text ..."},hint:{type:String,default:""},error:{type:String,default:""},errorMessages:{type:Array,default:()=>[]},disabled:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},required:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},loading:{type:Boolean,default:!1},prepend:{type:String,default:""},append:{type:String,default:""},rules:{type:Array,default:()=>[]},size:{type:String},rounded:{type:String},border:{type:String},textColor:{type:String},bg:{type:String},containerClass:{type:String,default:""},id:{type:String,default:""},width:{type:String,default:"w-full"},dir:{type:String,default:""},lang:{type:String,default:""},items:{type:Array,default:()=>[]},itemText:{type:String,default:"text"},itemValue:{type:String,default:"value"}},emits:["update:modelValue","input","change","focus","blur","clear","enter"],setup(n,{expose:t,emit:r}){const o=n,a=e.inject("parentDir",""),l=e.inject("parentLang",""),i=e.computed(()=>o.dir||a),c=e.computed(()=>o.lang||l),s=r,d=e.ref(null),u=e.ref(null),h=e.ref(!1),f=e.computed(()=>o.id||`input-${Math.random().toString(36).substr(2,9)}`),p=e.computed(()=>["w-full bg-transparent outline-none border-none","placeholder:text-gray-400","focus:outline-none"]),m=b=>{const C=b.target.value;s("update:modelValue",C)},w=b=>{h.value=!0,s("focus",b)},g=b=>{h.value=!1,s("blur",b)},k=b=>{s("enter",o.modelValue)},x=()=>{s("update:modelValue",""),s("clear"),d.value?.focus()};return t({focus:()=>{d.value?.focus()},clear:x}),(b,C)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"containerRef",ref:u,class:e.normalizeClass(["relative",n.containerClass,n.width])},[e.createVNode(pn,{"model-value":n.modelValue,label:n.label,hint:n.hint,"persistent-hint":!!n.hint,disabled:n.disabled,readonly:n.readonly,required:n.required,error:!!n.error||n.errorMessages.length>0,"error-messages":n.errorMessages,clearable:n.clearable&&!n.loading,size:n.size,id:f.value,prepend:n.prepend,append:n.append,"is-open":h.value,"onClick:clear":x,bg:n.bg,border:n.border,"text-color":n.textColor,rounded:n.rounded,dir:i.value,lang:c.value,width:n.width,rules:n.rules},e.createSlots({control:e.withCtx(({attrs:A,events:y})=>[e.createElementVNode("input",e.mergeProps({ref_key:"inputRef",ref:d},A,e.toHandlers(y,!0),{type:"text",value:n.modelValue,placeholder:h.value&&!n.modelValue?n.placeholder:"",class:p.value,onInput:m,onKeydown:e.withKeys(k,["enter"]),onFocus:w,onBlur:g}),null,16,xg)]),_:2},[n.loading?{name:"append",fn:e.withCtx(()=>[C[0]||(C[0]=e.createElementVNode("svg",{class:"animate-spin h-4 w-4",fill:"none",viewBox:"0 0 24 24"},[e.createElementVNode("circle",{class:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor","stroke-width":"4"}),e.createElementVNode("path",{class:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 714 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})],-1))]),key:"0"}:void 0]),1032,["model-value","label","hint","persistent-hint","disabled","readonly","required","error","error-messages","clearable","size","id","prepend","append","is-open","bg","border","text-color","rounded","dir","lang","width","rules"])],2))}},[["__scopeId","data-v-f0de44bc"]]),zo=Object.freeze(Object.defineProperty({__proto__:null,default:Ms},Symbol.toStringTag,{value:"Module"})),vg={key:0,class:"timeline-items"},yg=["onClick","onKeydown"],Bg={key:0,class:"timeline-title vts-mb-1"},Eg={key:1,class:"timeline-time vts-mb-2"},bg={key:2,class:"timeline-content"},Cg=["onClick","onKeydown"],Mg={key:0,class:"timeline-title vts-mb-1"},Vg={key:1,class:"timeline-time vts-mb-2"},Ag={key:2,class:"timeline-content"},_g=De(e.defineComponent({__name:"Timeline",props:{items:{},direction:{default:"vertical"},side:{default:"both"},align:{default:"start"},alternate:{type:Boolean,default:!0},rtl:{type:Boolean},lineStyle:{default:"solid"},dotShape:{default:"circle"},dotSize:{default:"lg"},clickable:{type:Boolean,default:!1},condensed:{type:Boolean,default:!1},elevation:{default:1},equalizeCards:{type:Boolean,default:!0},gap:{default:30}},emits:["item-click"],setup(n,{emit:t}){const r=n,o=e.computed(()=>r.rtl??et.value),a=e.useSlots(),l=e.computed(()=>!!a.item),i=e.computed(()=>!!a.default),c=e.computed(()=>r.dotSize==="sm"?10:r.dotSize==="lg"?16:12),s=e.computed(()=>r.gap??16);function d(p){if(r.direction==="horizontal")return"bottom";if(r.side==="one")return o.value?"right":"left";const w=(r.alternate?p%2===0:!0)?"left":"right";return o.value?w==="left"?"right":"left":w}function u(p){return r.direction==="horizontal"?{}:r.side==="one"?{maxWidth:"100%",marginLeft:"0",marginRight:"0",marginInlineStart:s.value+"px",marginInlineEnd:"0"}:d(p)==="left"?{maxWidth:"45%",marginLeft:"0",marginRight:"calc(50% + 16px)"}:{maxWidth:"45%",marginRight:"0",marginLeft:"calc(50% + 16px)"}}function h(p){switch(p.status??"default"){case"primary":return"var(--vts-color-primary)";case"success":return"var(--vts-color-success, #16a34a)";case"warning":return"var(--vts-color-warning, #f59e0b)";case"error":return"var(--vts-color-error, #dc2626)";case"info":return"var(--vts-color-info, #0ea5e9)";default:return"var(--vts-color-borderHeavy)"}}const f=t;return(p,m)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["timeline",[n.direction==="vertical"?"timeline--vertical vts-py-2":"timeline--horizontal vts-py-6 vts-px-2",n.direction==="vertical"&&n.side==="one"?"timeline--one":"",n.direction==="vertical"&&n.side==="both"?"timeline--both":"",n.condensed?"timeline--condensed":""]]),style:e.normalizeStyle({"--timeline-dot-size":c.value+"px","--timeline-gap":s.value+"px"})},[e.createElementVNode("div",{class:e.normalizeClass(["timeline-line",{"is-dashed":n.lineStyle==="dashed"}])},null,2),n.direction==="vertical"?(e.openBlock(),e.createElementBlock("div",vg,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.items,(w,g)=>(e.openBlock(),e.createElementBlock("div",{key:w.id??g,class:e.normalizeClass(["timeline-item",["timeline-item--"+d(g),n.condensed?"vts-mb-3":"vts-mb-6"]])},[e.createElementVNode("div",{class:"timeline-dot vts-border-md vts-border-solid vts-rounded-circle",style:e.normalizeStyle({width:c.value+"px",height:c.value+"px",background:h(w),borderColor:"var(--vts-color-surface)"})},null,4),e.createElementVNode("div",{class:e.normalizeClass(["timeline-card",["align-"+n.align,n.clickable?"is-clickable":"",n.elevation?"elevation-"+n.elevation:"","vts-border-sm vts-border-solid vts-border-color vts-rounded-md vts-py-3 vts-px-4"]]),style:e.normalizeStyle(u(g)),role:"group",tabindex:"0",onClick:k=>f("item-click",{item:w,index:g}),onKeydown:[e.withKeys(e.withModifiers(k=>f("item-click",{item:w,index:g}),["prevent"]),["enter"]),e.withKeys(e.withModifiers(k=>f("item-click",{item:w,index:g}),["prevent"]),["space"])]},[l.value?e.renderSlot(p.$slots,"item",{key:0,item:w,index:g},void 0,!0):i.value?e.renderSlot(p.$slots,"default",{key:1,item:w,index:g},void 0,!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:2},[w.title?(e.openBlock(),e.createElementBlock("div",Bg,e.toDisplayString(w.title),1)):e.createCommentVNode("",!0),w.time?(e.openBlock(),e.createElementBlock("div",Eg,e.toDisplayString(w.time),1)):e.createCommentVNode("",!0),w.content?(e.openBlock(),e.createElementBlock("div",bg,e.toDisplayString(w.content),1)):e.createCommentVNode("",!0)],64))],46,yg)],2))),128))])):(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["timeline-items timeline-items--horizontal vts-ga-6",[n.equalizeCards?"equalize":""]])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.items,(w,g)=>(e.openBlock(),e.createElementBlock("div",{key:w.id??g,class:"timeline-item-h vts-pt-6"},[e.createElementVNode("div",{class:"timeline-dot vts-border-md vts-border-solid vts-rounded-circle",style:e.normalizeStyle({width:c.value+"px",height:c.value+"px",background:h(w),borderColor:"var(--vts-color-surface)"})},null,4),e.createElementVNode("div",{class:e.normalizeClass(["timeline-card",["align-"+n.align,n.elevation?"elevation-"+n.elevation:"","vts-border-sm vts-border-solid vts-border-color vts-rounded-md vts-py-3 vts-px-4 vts-mt-4"]]),role:"group",tabindex:"0",onClick:k=>f("item-click",{item:w,index:g}),onKeydown:[e.withKeys(e.withModifiers(k=>f("item-click",{item:w,index:g}),["prevent"]),["enter"]),e.withKeys(e.withModifiers(k=>f("item-click",{item:w,index:g}),["prevent"]),["space"])]},[l.value?e.renderSlot(p.$slots,"item",{key:0,item:w,index:g},void 0,!0):i.value?e.renderSlot(p.$slots,"default",{key:1,item:w,index:g},void 0,!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:2},[w.title?(e.openBlock(),e.createElementBlock("div",Mg,e.toDisplayString(w.title),1)):e.createCommentVNode("",!0),w.time?(e.openBlock(),e.createElementBlock("div",Vg,e.toDisplayString(w.time),1)):e.createCommentVNode("",!0),w.content?(e.openBlock(),e.createElementBlock("div",Ag,e.toDisplayString(w.content),1)):e.createCommentVNode("",!0)],64))],42,Cg)]))),128))],2))],6))}}),[["__scopeId","data-v-73f88030"]]),Ng={class:"v-timeline-item"},Zg={class:"v-timeline-item__opposite vts-py-2 vts-px-4"},Sg={key:0,class:"v-timeline-item__icon"},$g={class:"v-timeline-item__content vts-py-2 vts-px-4 vts-rounded-md"},Ig=De(e.defineComponent({__name:"TimelineItem",props:{color:{default:"#1976D2"},icon:{},dot:{type:Boolean,default:!0},hideDot:{type:Boolean}},setup(n){const t=e.inject("timeline");return e.computed(()=>({"v-timeline-item":!0,"v-timeline-item--alternate":t?.align==="alternate"})),(r,o)=>(e.openBlock(),e.createElementBlock("div",Ng,[e.createElementVNode("div",Zg,[e.renderSlot(r.$slots,"opposite",{},void 0,!0)]),n.hideDot?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",{key:0,class:"v-timeline-item__dot vts-rounded-circle vts-mt-3",style:e.normalizeStyle({background:n.color})},[e.renderSlot(r.$slots,"icon",{},()=>[n.icon?(e.openBlock(),e.createElementBlock("span",Sg,e.toDisplayString(n.icon),1)):e.createCommentVNode("",!0)],!0)],4)),e.createElementVNode("div",$g,[e.renderSlot(r.$slots,"default",{},void 0,!0)])]))}}),[["__scopeId","data-v-04d81a09"]]),Hg=["aria-expanded","aria-disabled"],Tg=["onKeydown"],Lg={class:"vts-text-body-2"},Dg=e.defineComponent({__name:"Tooltip",props:{modelValue:{type:Boolean,default:void 0},openOnHover:{type:Boolean,default:!0},openOnFocus:{type:Boolean,default:!0},openOnClick:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},placement:{type:String,default:"top"},offset:{type:Object,default:()=>({x:0,y:0})},arrow:{type:Boolean,default:!0},showDelay:{type:Number,default:80},hideDelay:{type:Number,default:80},teleport:{type:String,default:"body"}},emits:["update:modelValue","open","close"],setup(n,{emit:t}){const r=n,o=t,a=e.computed(()=>r.modelValue!==void 0),l=e.ref(!1),i=e.computed({get:()=>a.value?!!r.modelValue:l.value,set:_=>{r.disabled||(a.value?o("update:modelValue",_):l.value=_)}}),c=e.ref(null),s=e.ref(null),d=`tooltip-${Math.random().toString(36).slice(2,10)}`,u=e.computed(()=>et.value),h=e.computed(()=>u.value?r.placement==="left"?"right":r.placement==="right"?"left":r.placement:r.placement),f=e.computed(()=>`placement-${h.value}`),p=e.ref({}),m=e.ref({}),w=e.ref(!1),g=e.ref(null);function k(){const _=c.value,T=s.value;if(!_||!T)return;w.value||(p.value={position:"absolute",top:"-9999px",left:"-9999px",visibility:"hidden",zIndex:"var(--vts-z-tooltip, 1000)"},T.offsetHeight);const E=_.getBoundingClientRect(),N=T.getBoundingClientRect(),F=window.scrollX||window.pageXOffset,P=window.scrollY||window.pageYOffset;let U=0,ce=0;const he=r.offset?.x??0,j=r.offset?.y??0,ee=r.arrow?8:0;switch(h.value){case"top":U=E.top+P-N.height-ee-j,ce=E.left+F+E.width/2-N.width/2+he;break;case"bottom":U=E.bottom+P+ee+j,ce=E.left+F+E.width/2-N.width/2+he;break;case"left":U=E.top+P+E.height/2-N.height/2+j,ce=E.left+F-N.width-ee-he;break;case"right":U=E.top+P+E.height/2-N.height/2+j,ce=E.right+F+ee+he;break}if(p.value={position:"absolute",top:`${U}px`,left:`${ce}px`,zIndex:"var(--vts-z-tooltip, 1000)",visibility:""},r.arrow){const pe={width:"8px",height:"8px"};switch(h.value){case"top":m.value={...pe,bottom:"-4px",left:"50%",transform:"translateX(-50%) rotate(45deg)"};break;case"bottom":m.value={...pe,top:"-4px",left:"50%",transform:"translateX(-50%) rotate(45deg)"};break;case"left":m.value={...pe,right:"-4px",top:"50%",transform:"translateY(-50%) rotate(45deg)"};break;case"right":m.value={...pe,left:"-4px",top:"50%",transform:"translateY(-50%) rotate(45deg)"};break}}w.value=!0}let x=null,v=null;function b(){x&&(window.clearTimeout(x),x=null),v&&(window.clearTimeout(v),v=null)}function C(_=null){r.disabled||(b(),x=window.setTimeout(async()=>{g.value=_,i.value=!0,await e.nextTick(),k(),o("open")},r.showDelay))}function A(){b(),v=window.setTimeout(()=>{i.value=!1,g.value=null,w.value=!1,o("close")},r.hideDelay)}const y=e.computed(()=>({open:_=>C(_??"manual"),close:A,isOpen:i.value}));function B(){r.openOnHover&&C("hover")}function V(){r.openOnHover&&A()}function S(){r.openOnFocus&&C("focus")}function Z(){r.openOnFocus&&g.value==="focus"&&A()}function D(){r.openOnClick&&(i.value?A():C("click"))}function R(_){if(!i.value)return;const T=_.target;s.value&&s.value.contains(T)||c.value&&c.value.contains(T)||A()}function K(_){_.key==="Escape"&&A()}return e.onMounted(()=>{k(),document.addEventListener("click",R,{passive:!0}),document.addEventListener("keydown",K)}),e.onBeforeUnmount(()=>{document.removeEventListener("click",R),document.removeEventListener("keydown",K)}),e.watch(i,_=>{_&&e.nextTick(k)}),(_,T)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("div",{ref_key:"activatorRef",ref:c,class:"vts-d-inline-block",onMouseenter:B,onMouseleave:V,onFocusin:S,onFocusout:Z,onClick:D,"aria-describedby":d,"aria-expanded":i.value,"aria-disabled":n.disabled?"true":"false"},[e.renderSlot(_.$slots,"activator",{props:y.value})],40,Hg),(e.openBlock(),e.createBlock(e.Teleport,{to:"body"},[e.withDirectives(e.createElementVNode("div",{id:d,ref_key:"tooltipRef",ref:s,class:e.normalizeClass(["vts-position-absolute vts-bg-surface-elevated vts-text vts-border vts-rounded-sm vts-elevation-2 vts-pt-2 vts-pb-2 vts-pl-3 vts-pr-3 vts-max-w-280",[f.value]]),role:"tooltip",style:e.normalizeStyle(p.value),onKeydown:e.withKeys(e.withModifiers(A,["stop","prevent"]),["esc"])},[n.arrow?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["vts-position-absolute vts-bg-surface-elevated vts-border-t vts-border-s vts-border-color",[f.value]]),style:e.normalizeStyle(m.value)},null,6)):e.createCommentVNode("",!0),e.createElementVNode("div",Lg,[e.renderSlot(_.$slots,"default")])],46,Tg),[[e.vShow,i.value]])]))],64))}}),jo=e.reactive({toasts:[]});let Pg=0;function Sr(n){jo.toasts.unshift({id:++Pg,message:n.message,type:n.type??"info",duration:n.duration??4e3,closable:n.closable??!0})}function Og(n){jo.toasts=jo.toasts.filter(t=>t.id!==n)}const Vs={show:Sr,success:(n,t={})=>Sr({message:n,type:"success",...t}),error:(n,t={})=>Sr({message:n,type:"error",...t}),warning:(n,t={})=>Sr({message:n,type:"warning",...t}),info:(n,t={})=>Sr({message:n,type:"info",...t}),remove:Og,state:jo},Rg={class:"flex-1 text-sm"},As=e.defineComponent({__name:"ToastItem",props:{toast:{}},emits:["close"],setup(n,{emit:t}){const r=n,o=t;let a,l=r.toast.duration,i=Date.now();const c=e.computed(()=>({info:"bg-blue-600",success:"bg-green-600",warning:"bg-yellow-500 text-black",error:"bg-red-600"})[r.toast.type]);function s(){i=Date.now(),a=window.setTimeout(()=>o("close"),l)}function d(){clearTimeout(a),l-=Date.now()-i}function u(){s()}return e.onMounted(s),e.onBeforeUnmount(()=>clearTimeout(a)),(h,f)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["min-w-[260px] max-w-sm rounded-lg px-4 py-3 shadow-lg text-white flex items-start gap-3",c.value]),onMouseenter:d,onMouseleave:u},[e.createElementVNode("div",Rg,e.toDisplayString(n.toast.message),1),n.toast.closable?(e.openBlock(),e.createElementBlock("button",{key:0,class:"text-white/70 hover:text-white",onClick:f[0]||(f[0]=p=>h.$emit("close"))},"✕")):e.createCommentVNode("",!0)],34))}}),zg=e.defineComponent({__name:"ToastContainer",props:{position:{}},setup(n){const t=n,r=Vs.state.toasts,o=e.computed(()=>{switch(t.position){case"top-left":return"top-4 left-4";case"bottom-left":return"bottom-4 left-4";case"bottom-right":return"bottom-4 right-4";default:return"top-4 right-4"}});function a(l){Vs.remove(l)}return(l,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([o.value,"fixed z-50 flex flex-col gap-2"])},[e.createVNode(e.TransitionGroup,{name:"toast",tag:"div"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(r),c=>(e.openBlock(),e.createBlock(As,{key:c.id,toast:c,onClose:s=>a(c.id)},null,8,["toast","onClose"]))),128))]),_:1})],2))}}),jg={key:1},Fg={__name:"ComponentRenderer",setup(n){const{language:t}=e.inject("i18n"),r=e.inject("api"),o=ti.useRoute(),a=e.computed(()=>o.params.modelName||""),l=e.computed(()=>o.params.componentName||""),i=e.ref({}),c=e.ref(!1),s=e.ref(null),d=async(f={})=>{try{c.value=!0;const p=new URLSearchParams({component:l.value,lang:t.value||"dv",...f}),m=await r.get(`/ccs/${a.value}?${p}`);i.value=m,s.value=m.component,console.log("DisplayComponent:",s.value),console.log("Fetchedd data:",i.value)}catch(p){console.error("Error fetching data:",p)}finally{c.value=!1}},u=e.computed(()=>{const f={},p=s.value;return(p=="listView"||p=="ListView"||p=="listView2")&&(f.listView=e.defineAsyncComponent(()=>Promise.resolve().then(()=>h5)),f.listView2=e.defineAsyncComponent(()=>Promise.resolve().then(()=>h5)),f.ListView=e.defineAsyncComponent(()=>Promise.resolve().then(()=>h5))),f}),h=f=>{console.log("Query params updated:",f),d(f)};return e.onMounted(()=>{d(),console.log("Model Name:",a.value),console.log("Component Name:",l.value),console.log("Route params:",o.params)}),e.watch([a,l],()=>{}),(f,p)=>(e.openBlock(),e.createElementBlock("div",null,[u.value[s.value]?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(u.value[s.value]),{key:0,items:i.value,loading:c.value,"onUpdate:queryParams":h},null,40,["items","loading"])):(e.openBlock(),e.createElementBlock("div",jg,[e.createElementVNode("p",null,"Component not found: "+e.toDisplayString(s.value),1)]))]))}},Ug={class:"mx-auto m-4"},Wg={key:1,class:"p-8"},qg={key:1,class:"flex items-center justify-center p-8"},_s={__name:"ListView",props:{items:{type:Object,required:!0},loading:{type:Boolean,default:!1}},emits:["update:queryParams"],setup(n,{emit:t}){const r=e.inject("api"),o=n,a=e.ref({title:"މީހުންގެ ލިސްޓް",quickFilters:[{type:"ChipGroup",key:"status",chips:[{value:"all",label:"All"},{value:"active",label:"Active"},{value:"pending",label:"Pending"},{value:"completed",label:"Completed"}],color:"primary",size:"small",clickable:!0},{type:"ChipGroup",key:"priority",chips:[{value:"all",label:"All Priority"},{value:"high",label:"High"},{value:"medium",label:"Medium"},{value:"low",label:"Low"}],color:"secondary",size:"small",clickable:!0},{type:"InputSearch",key:"search",placeholder:"Search...",size:"md"},{type:"DatePicker",key:"dob",placeholder:"DoB...",size:"md"}],buttons:[{type:"search",color:"primary",icon:"magnifying-glass",variant:"contained"},{type:"Clear",label:"Clear",color:"secondary"}]}),l=e.ref(o.loading),i=e.ref(!0),c=e.ref({}),s=e.ref({}),d=e.ref({}),u=e.ref(!1),h=e.ref({page:1,itemsPerPage:10,sortBy:[],sortDesc:[],itemsLength:0}),f=async(A={})=>{try{l.value=!0;const y=new URLSearchParams({...A});console.log("Table Fetching with params:",y.toString()),console.log("Data link:",o.items);const B=await r.get(`${o.items.componentSettings?.table.datalink}`+(y.toString()?"&"+y.toString():""));d.value=B,B?.pagination&&(h.value={...h.value,page:B.pagination.current_page,itemsPerPage:B.pagination.per_page,itemsLength:B?.pagination.total}),console.log("Table Fetched data:",d.value)}catch(y){console.error("Error fetching data:",y)}finally{l.value=!1}};e.watch(()=>o.items,A=>{A?.componentSettings?.table?.datalink&&(f(),A?.componentSettings?.table?.pagination&&(h.value={...h.value,page:A.componentSettings.table.pagination.current_page}))},{immediate:!0,deep:!0});const p=e.computed(()=>{const A=o.items?.componentSettings?.table?.headers,y=o.items?.componentSettings?.headers;console.log("Headers from table:",A),console.log("Headers from settings:",y),console.log("Full componentSettings:",o.items?.componentSettings);const B=A||y;return!B||!Array.isArray(B)?[]:B.filter(S=>!(!S.key&&!S.value)).map(S=>({value:S.key||S.value||"",title:S.title||"",sortable:S.sortable!==!1,lang:S.lang,displayType:S.displayType||"text",displayProps:S.displayProps||{},inlineEditable:S.inlineEditable||!1}))}),m=A=>{h.value={...h.value,...A};const y={page:A.page,per_page:A.itemsPerPage};if(A.sortBy&&A.sortBy.length>0){const B=A.sortBy.map((V,S)=>A.sortDesc[S]?`-${V}`:V);y.sort=B.join(",")}f(y)},w=async({item:A,key:y,value:B,updateData:V})=>{console.log("Inline update:",{item:A,key:y,value:B,updateData:V})},g=A=>{let y="";if(A&&typeof A=="object"){const V=[];Object.entries(A).forEach(([S,Z])=>{Z!=null&&Z!==""&&V.push(`${S}:${Z}`)}),V.length>0&&(y=V.join(","))}const B={page:1,per_page:h.value.itemsPerPage};y&&(B.filter=y),h.value={...h.value,page:1},f(B)},k=A=>{console.log("Quick search triggered:",A),A&&typeof A=="object"&&Object.entries(A).forEach(([B,V])=>{});const y={...h.value,...A,page:1};h.value=y,f(y)},x=()=>{console.log("Create button clicked"),u.value=!u.value},v=A=>{console.log("View item:",A)},b=A=>{console.log("Edit item:",A)},C=A=>{console.log("Delete item:",A)};return(A,y)=>(e.openBlock(),e.createElementBlock("div",Ug,[n.items?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createVNode(Eo,{"card-class":"border-none",bg:"vts-bg-surface-elevated",padding:"p-3",margin:"mb-4",shadow:"shadow-lg"},{default:e.withCtx(()=>[a.value?(e.openBlock(),e.createBlock(bs,{key:0,elevation:!1,color:"none",variant:"contained",title:a.value.title,"quick-filters":a.value.quickFilters,"filter-section":!!n.items.componentSettings?.FilterSection,"filter-values":s.value,"onUpdate:filterValues":y[0]||(y[0]=B=>s.value=B),onShowFilterSection:y[1]||(y[1]=B=>i.value=!i.value),onSearch:k,onRefresh:y[2]||(y[2]=()=>{}),onCreateButton:x},null,8,["title","quick-filters","filter-section","filter-values"])):e.createCommentVNode("",!0),e.createVNode(e.Transition,{"enter-active-class":"transition-all duration-300 ease-out","enter-from-class":"transform -translate-y-4 opacity-0","enter-to-class":"transform translate-y-0 opacity-100","leave-active-class":"transition-all duration-200 ease-in","leave-from-class":"transform translate-y-0 opacity-100","leave-to-class":"transform -translate-y-4 opacity-0"},{default:e.withCtx(()=>[n.items?.componentSettings?.FilterSection&&i.value?(e.openBlock(),e.createBlock(Eo,{key:0,"card-class":"border-dashed",rounded:"lg",bg:"",margin:"mt-2"},{default:e.withCtx(()=>[e.createVNode(vs,{dir:"",grid:"","grid-columns":2,modelValue:c.value,"onUpdate:modelValue":y[3]||(y[3]=B=>c.value=B),rounded:"",filters:n.items.componentSettings.FilterSection.filters,buttons:n.items.componentSettings.FilterSection.buttons,onSearch:g,onSubmit:g,onClose:y[4]||(y[4]=B=>i.value=!1)},null,8,["modelValue","filters","buttons"])]),_:1})):e.createCommentVNode("",!0)]),_:1})]),_:1}),p.value.length>0?(e.openBlock(),e.createBlock(oc,{key:0,dir:"",items:d.value.data,headers:p.value,"server-side-options":h.value,loading:l.value,title:"","onUpdate:options":m,showActions:!0,"inline-edit":!0,onInlineUpdate:w,onView:v,onEdit:b,onDelete:C},null,8,["items","headers","server-side-options","loading"])):(e.openBlock(),e.createElementBlock("div",Wg,[y[5]||(y[5]=e.createElementVNode("p",null,"No headers found",-1)),e.createElementVNode("pre",null,e.toDisplayString(JSON.stringify(n.items.componentSettings,null,2)),1)]))],64)):(e.openBlock(),e.createElementBlock("div",qg,[...y[6]||(y[6]=[e.createElementVNode("p",null,"No data",-1)])]))]))}},h5=Object.freeze(Object.defineProperty({__proto__:null,default:_s},Symbol.toStringTag,{value:"Module"}));function ct(n){this.content=n}ct.prototype={constructor:ct,find:function(n){for(var t=0;t<this.content.length;t+=2)if(this.content[t]===n)return t;return-1},get:function(n){var t=this.find(n);return t==-1?void 0:this.content[t+1]},update:function(n,t,r){var o=r&&r!=n?this.remove(r):this,a=o.find(n),l=o.content.slice();return a==-1?l.push(r||n,t):(l[a+1]=t,r&&(l[a]=r)),new ct(l)},remove:function(n){var t=this.find(n);if(t==-1)return this;var r=this.content.slice();return r.splice(t,2),new ct(r)},addToStart:function(n,t){return new ct([n,t].concat(this.remove(n).content))},addToEnd:function(n,t){var r=this.remove(n).content.slice();return r.push(n,t),new ct(r)},addBefore:function(n,t,r){var o=this.remove(t),a=o.content.slice(),l=o.find(n);return a.splice(l==-1?a.length:l,0,t,r),new ct(a)},forEach:function(n){for(var t=0;t<this.content.length;t+=2)n(this.content[t],this.content[t+1])},prepend:function(n){return n=ct.from(n),n.size?new ct(n.content.concat(this.subtract(n).content)):this},append:function(n){return n=ct.from(n),n.size?new ct(this.subtract(n).content.concat(n.content)):this},subtract:function(n){var t=this;n=ct.from(n);for(var r=0;r<n.content.length;r+=2)t=t.remove(n.content[r]);return t},toObject:function(){var n={};return this.forEach(function(t,r){n[t]=r}),n},get size(){return this.content.length>>1}},ct.from=function(n){if(n instanceof ct)return n;var t=[];if(n)for(var r in n)t.push(r,n[r]);return new ct(t)};function Ns(n,t,r){for(let o=0;;o++){if(o==n.childCount||o==t.childCount)return n.childCount==t.childCount?null:r;let a=n.child(o),l=t.child(o);if(a==l){r+=a.nodeSize;continue}if(!a.sameMarkup(l))return r;if(a.isText&&a.text!=l.text){for(let i=0;a.text[i]==l.text[i];i++)r++;return r}if(a.content.size||l.content.size){let i=Ns(a.content,l.content,r+1);if(i!=null)return i}r+=a.nodeSize}}function Zs(n,t,r,o){for(let a=n.childCount,l=t.childCount;;){if(a==0||l==0)return a==l?null:{a:r,b:o};let i=n.child(--a),c=t.child(--l),s=i.nodeSize;if(i==c){r-=s,o-=s;continue}if(!i.sameMarkup(c))return{a:r,b:o};if(i.isText&&i.text!=c.text){let d=0,u=Math.min(i.text.length,c.text.length);for(;d<u&&i.text[i.text.length-d-1]==c.text[c.text.length-d-1];)d++,r--,o--;return{a:r,b:o}}if(i.content.size||c.content.size){let d=Zs(i.content,c.content,r-1,o-1);if(d)return d}r-=s,o-=s}}class Q{constructor(t,r){if(this.content=t,this.size=r||0,r==null)for(let o=0;o<t.length;o++)this.size+=t[o].nodeSize}nodesBetween(t,r,o,a=0,l){for(let i=0,c=0;c<r;i++){let s=this.content[i],d=c+s.nodeSize;if(d>t&&o(s,a+c,l||null,i)!==!1&&s.content.size){let u=c+1;s.nodesBetween(Math.max(0,t-u),Math.min(s.content.size,r-u),o,a+u)}c=d}}descendants(t){this.nodesBetween(0,this.size,t)}textBetween(t,r,o,a){let l="",i=!0;return this.nodesBetween(t,r,(c,s)=>{let d=c.isText?c.text.slice(Math.max(t,s)-s,r-s):c.isLeaf?a?typeof a=="function"?a(c):a:c.type.spec.leafText?c.type.spec.leafText(c):"":"";c.isBlock&&(c.isLeaf&&d||c.isTextblock)&&o&&(i?i=!1:l+=o),l+=d},0),l}append(t){if(!t.size)return this;if(!this.size)return t;let r=this.lastChild,o=t.firstChild,a=this.content.slice(),l=0;for(r.isText&&r.sameMarkup(o)&&(a[a.length-1]=r.withText(r.text+o.text),l=1);l<t.content.length;l++)a.push(t.content[l]);return new Q(a,this.size+t.size)}cut(t,r=this.size){if(t==0&&r==this.size)return this;let o=[],a=0;if(r>t)for(let l=0,i=0;i<r;l++){let c=this.content[l],s=i+c.nodeSize;s>t&&((i<t||s>r)&&(c.isText?c=c.cut(Math.max(0,t-i),Math.min(c.text.length,r-i)):c=c.cut(Math.max(0,t-i-1),Math.min(c.content.size,r-i-1))),o.push(c),a+=c.nodeSize),i=s}return new Q(o,a)}cutByIndex(t,r){return t==r?Q.empty:t==0&&r==this.content.length?this:new Q(this.content.slice(t,r))}replaceChild(t,r){let o=this.content[t];if(o==r)return this;let a=this.content.slice(),l=this.size+r.nodeSize-o.nodeSize;return a[t]=r,new Q(a,l)}addToStart(t){return new Q([t].concat(this.content),this.size+t.nodeSize)}addToEnd(t){return new Q(this.content.concat(t),this.size+t.nodeSize)}eq(t){if(this.content.length!=t.content.length)return!1;for(let r=0;r<this.content.length;r++)if(!this.content[r].eq(t.content[r]))return!1;return!0}get firstChild(){return this.content.length?this.content[0]:null}get lastChild(){return this.content.length?this.content[this.content.length-1]:null}get childCount(){return this.content.length}child(t){let r=this.content[t];if(!r)throw new RangeError("Index "+t+" out of range for "+this);return r}maybeChild(t){return this.content[t]||null}forEach(t){for(let r=0,o=0;r<this.content.length;r++){let a=this.content[r];t(a,o,r),o+=a.nodeSize}}findDiffStart(t,r=0){return Ns(this,t,r)}findDiffEnd(t,r=this.size,o=t.size){return Zs(this,t,r,o)}findIndex(t){if(t==0)return Fo(0,t);if(t==this.size)return Fo(this.content.length,t);if(t>this.size||t<0)throw new RangeError(`Position ${t} outside of fragment (${this})`);for(let r=0,o=0;;r++){let a=this.child(r),l=o+a.nodeSize;if(l>=t)return l==t?Fo(r+1,l):Fo(r,o);o=l}}toString(){return"<"+this.toStringInner()+">"}toStringInner(){return this.content.join(", ")}toJSON(){return this.content.length?this.content.map(t=>t.toJSON()):null}static fromJSON(t,r){if(!r)return Q.empty;if(!Array.isArray(r))throw new RangeError("Invalid input for Fragment.fromJSON");return new Q(r.map(t.nodeFromJSON))}static fromArray(t){if(!t.length)return Q.empty;let r,o=0;for(let a=0;a<t.length;a++){let l=t[a];o+=l.nodeSize,a&&l.isText&&t[a-1].sameMarkup(l)?(r||(r=t.slice(0,a)),r[r.length-1]=l.withText(r[r.length-1].text+l.text)):r&&r.push(l)}return new Q(r||t,o)}static from(t){if(!t)return Q.empty;if(t instanceof Q)return t;if(Array.isArray(t))return this.fromArray(t);if(t.attrs)return new Q([t],t.nodeSize);throw new RangeError("Can not convert "+t+" to a Fragment"+(t.nodesBetween?" (looks like multiple versions of prosemirror-model were loaded)":""))}}Q.empty=new Q([],0);const p5={index:0,offset:0};function Fo(n,t){return p5.index=n,p5.offset=t,p5}function Uo(n,t){if(n===t)return!0;if(!(n&&typeof n=="object")||!(t&&typeof t=="object"))return!1;let r=Array.isArray(n);if(Array.isArray(t)!=r)return!1;if(r){if(n.length!=t.length)return!1;for(let o=0;o<n.length;o++)if(!Uo(n[o],t[o]))return!1}else{for(let o in n)if(!(o in t)||!Uo(n[o],t[o]))return!1;for(let o in t)if(!(o in n))return!1}return!0}let Pe=class Q1{constructor(t,r){this.type=t,this.attrs=r}addToSet(t){let r,o=!1;for(let a=0;a<t.length;a++){let l=t[a];if(this.eq(l))return t;if(this.type.excludes(l.type))r||(r=t.slice(0,a));else{if(l.type.excludes(this.type))return t;!o&&l.type.rank>this.type.rank&&(r||(r=t.slice(0,a)),r.push(this),o=!0),r&&r.push(l)}}return r||(r=t.slice()),o||r.push(this),r}removeFromSet(t){for(let r=0;r<t.length;r++)if(this.eq(t[r]))return t.slice(0,r).concat(t.slice(r+1));return t}isInSet(t){for(let r=0;r<t.length;r++)if(this.eq(t[r]))return!0;return!1}eq(t){return this==t||this.type==t.type&&Uo(this.attrs,t.attrs)}toJSON(){let t={type:this.type.name};for(let r in this.attrs){t.attrs=this.attrs;break}return t}static fromJSON(t,r){if(!r)throw new RangeError("Invalid input for Mark.fromJSON");let o=t.marks[r.type];if(!o)throw new RangeError(`There is no mark type ${r.type} in this schema`);let a=o.create(r.attrs);return o.checkAttrs(a.attrs),a}static sameSet(t,r){if(t==r)return!0;if(t.length!=r.length)return!1;for(let o=0;o<t.length;o++)if(!t[o].eq(r[o]))return!1;return!0}static setFrom(t){if(!t||Array.isArray(t)&&t.length==0)return Q1.none;if(t instanceof Q1)return[t];let r=t.slice();return r.sort((o,a)=>o.type.rank-a.type.rank),r}};Pe.none=[];class Wo extends Error{}class de{constructor(t,r,o){this.content=t,this.openStart=r,this.openEnd=o}get size(){return this.content.size-this.openStart-this.openEnd}insertAt(t,r){let o=$s(this.content,t+this.openStart,r);return o&&new de(o,this.openStart,this.openEnd)}removeBetween(t,r){return new de(Ss(this.content,t+this.openStart,r+this.openStart),this.openStart,this.openEnd)}eq(t){return this.content.eq(t.content)&&this.openStart==t.openStart&&this.openEnd==t.openEnd}toString(){return this.content+"("+this.openStart+","+this.openEnd+")"}toJSON(){if(!this.content.size)return null;let t={content:this.content.toJSON()};return this.openStart>0&&(t.openStart=this.openStart),this.openEnd>0&&(t.openEnd=this.openEnd),t}static fromJSON(t,r){if(!r)return de.empty;let o=r.openStart||0,a=r.openEnd||0;if(typeof o!="number"||typeof a!="number")throw new RangeError("Invalid input for Slice.fromJSON");return new de(Q.fromJSON(t,r.content),o,a)}static maxOpen(t,r=!0){let o=0,a=0;for(let l=t.firstChild;l&&!l.isLeaf&&(r||!l.type.spec.isolating);l=l.firstChild)o++;for(let l=t.lastChild;l&&!l.isLeaf&&(r||!l.type.spec.isolating);l=l.lastChild)a++;return new de(t,o,a)}}de.empty=new de(Q.empty,0,0);function Ss(n,t,r){let{index:o,offset:a}=n.findIndex(t),l=n.maybeChild(o),{index:i,offset:c}=n.findIndex(r);if(a==t||l.isText){if(c!=r&&!n.child(i).isText)throw new RangeError("Removing non-flat range");return n.cut(0,t).append(n.cut(r))}if(o!=i)throw new RangeError("Removing non-flat range");return n.replaceChild(o,l.copy(Ss(l.content,t-a-1,r-a-1)))}function $s(n,t,r,o){let{index:a,offset:l}=n.findIndex(t),i=n.maybeChild(a);if(l==t||i.isText)return o&&!o.canReplace(a,a,r)?null:n.cut(0,t).append(r).append(n.cut(t));let c=$s(i.content,t-l-1,r,i);return c&&n.replaceChild(a,i.copy(c))}function Yg(n,t,r){if(r.openStart>n.depth)throw new Wo("Inserted content deeper than insertion position");if(n.depth-r.openStart!=t.depth-r.openEnd)throw new Wo("Inconsistent open depths");return Is(n,t,r,0)}function Is(n,t,r,o){let a=n.index(o),l=n.node(o);if(a==t.index(o)&&o<n.depth-r.openStart){let i=Is(n,t,r,o+1);return l.copy(l.content.replaceChild(a,i))}else if(r.content.size)if(!r.openStart&&!r.openEnd&&n.depth==o&&t.depth==o){let i=n.parent,c=i.content;return a0(i,c.cut(0,n.parentOffset).append(r.content).append(c.cut(t.parentOffset)))}else{let{start:i,end:c}=Kg(r,n);return a0(l,Ts(n,i,c,t,o))}else return a0(l,qo(n,t,o))}function Hs(n,t){if(!t.type.compatibleContent(n.type))throw new Wo("Cannot join "+t.type.name+" onto "+n.type.name)}function f5(n,t,r){let o=n.node(r);return Hs(o,t.node(r)),o}function o0(n,t){let r=t.length-1;r>=0&&n.isText&&n.sameMarkup(t[r])?t[r]=n.withText(t[r].text+n.text):t.push(n)}function $r(n,t,r,o){let a=(t||n).node(r),l=0,i=t?t.index(r):a.childCount;n&&(l=n.index(r),n.depth>r?l++:n.textOffset&&(o0(n.nodeAfter,o),l++));for(let c=l;c<i;c++)o0(a.child(c),o);t&&t.depth==r&&t.textOffset&&o0(t.nodeBefore,o)}function a0(n,t){return n.type.checkContent(t),n.copy(t)}function Ts(n,t,r,o,a){let l=n.depth>a&&f5(n,t,a+1),i=o.depth>a&&f5(r,o,a+1),c=[];return $r(null,n,a,c),l&&i&&t.index(a)==r.index(a)?(Hs(l,i),o0(a0(l,Ts(n,t,r,o,a+1)),c)):(l&&o0(a0(l,qo(n,t,a+1)),c),$r(t,r,a,c),i&&o0(a0(i,qo(r,o,a+1)),c)),$r(o,null,a,c),new Q(c)}function qo(n,t,r){let o=[];if($r(null,n,r,o),n.depth>r){let a=f5(n,t,r+1);o0(a0(a,qo(n,t,r+1)),o)}return $r(t,null,r,o),new Q(o)}function Kg(n,t){let r=t.depth-n.openStart,a=t.node(r).copy(n.content);for(let l=r-1;l>=0;l--)a=t.node(l).copy(Q.from(a));return{start:a.resolveNoCache(n.openStart+r),end:a.resolveNoCache(a.content.size-n.openEnd-r)}}class Ir{constructor(t,r,o){this.pos=t,this.path=r,this.parentOffset=o,this.depth=r.length/3-1}resolveDepth(t){return t==null?this.depth:t<0?this.depth+t:t}get parent(){return this.node(this.depth)}get doc(){return this.node(0)}node(t){return this.path[this.resolveDepth(t)*3]}index(t){return this.path[this.resolveDepth(t)*3+1]}indexAfter(t){return t=this.resolveDepth(t),this.index(t)+(t==this.depth&&!this.textOffset?0:1)}start(t){return t=this.resolveDepth(t),t==0?0:this.path[t*3-1]+1}end(t){return t=this.resolveDepth(t),this.start(t)+this.node(t).content.size}before(t){if(t=this.resolveDepth(t),!t)throw new RangeError("There is no position before the top-level node");return t==this.depth+1?this.pos:this.path[t*3-1]}after(t){if(t=this.resolveDepth(t),!t)throw new RangeError("There is no position after the top-level node");return t==this.depth+1?this.pos:this.path[t*3-1]+this.path[t*3].nodeSize}get textOffset(){return this.pos-this.path[this.path.length-1]}get nodeAfter(){let t=this.parent,r=this.index(this.depth);if(r==t.childCount)return null;let o=this.pos-this.path[this.path.length-1],a=t.child(r);return o?t.child(r).cut(o):a}get nodeBefore(){let t=this.index(this.depth),r=this.pos-this.path[this.path.length-1];return r?this.parent.child(t).cut(0,r):t==0?null:this.parent.child(t-1)}posAtIndex(t,r){r=this.resolveDepth(r);let o=this.path[r*3],a=r==0?0:this.path[r*3-1]+1;for(let l=0;l<t;l++)a+=o.child(l).nodeSize;return a}marks(){let t=this.parent,r=this.index();if(t.content.size==0)return Pe.none;if(this.textOffset)return t.child(r).marks;let o=t.maybeChild(r-1),a=t.maybeChild(r);if(!o){let c=o;o=a,a=c}let l=o.marks;for(var i=0;i<l.length;i++)l[i].type.spec.inclusive===!1&&(!a||!l[i].isInSet(a.marks))&&(l=l[i--].removeFromSet(l));return l}marksAcross(t){let r=this.parent.maybeChild(this.index());if(!r||!r.isInline)return null;let o=r.marks,a=t.parent.maybeChild(t.index());for(var l=0;l<o.length;l++)o[l].type.spec.inclusive===!1&&(!a||!o[l].isInSet(a.marks))&&(o=o[l--].removeFromSet(o));return o}sharedDepth(t){for(let r=this.depth;r>0;r--)if(this.start(r)<=t&&this.end(r)>=t)return r;return 0}blockRange(t=this,r){if(t.pos<this.pos)return t.blockRange(this);for(let o=this.depth-(this.parent.inlineContent||this.pos==t.pos?1:0);o>=0;o--)if(t.pos<=this.end(o)&&(!r||r(this.node(o))))return new Yo(this,t,o);return null}sameParent(t){return this.pos-this.parentOffset==t.pos-t.parentOffset}max(t){return t.pos>this.pos?t:this}min(t){return t.pos<this.pos?t:this}toString(){let t="";for(let r=1;r<=this.depth;r++)t+=(t?"/":"")+this.node(r).type.name+"_"+this.index(r-1);return t+":"+this.parentOffset}static resolve(t,r){if(!(r>=0&&r<=t.content.size))throw new RangeError("Position "+r+" out of range");let o=[],a=0,l=r;for(let i=t;;){let{index:c,offset:s}=i.content.findIndex(l),d=l-s;if(o.push(i,c,a+s),!d||(i=i.child(c),i.isText))break;l=d-1,a+=s+1}return new Ir(r,o,l)}static resolveCached(t,r){let o=Ls.get(t);if(o)for(let l=0;l<o.elts.length;l++){let i=o.elts[l];if(i.pos==r)return i}else Ls.set(t,o=new Gg);let a=o.elts[o.i]=Ir.resolve(t,r);return o.i=(o.i+1)%Jg,a}}class Gg{constructor(){this.elts=[],this.i=0}}const Jg=12,Ls=new WeakMap;class Yo{constructor(t,r,o){this.$from=t,this.$to=r,this.depth=o}get start(){return this.$from.before(this.depth+1)}get end(){return this.$to.after(this.depth+1)}get parent(){return this.$from.node(this.depth)}get startIndex(){return this.$from.index(this.depth)}get endIndex(){return this.$to.indexAfter(this.depth)}}const Xg=Object.create(null);let l0=class ei{constructor(t,r,o,a=Pe.none){this.type=t,this.attrs=r,this.marks=a,this.content=o||Q.empty}get children(){return this.content.content}get nodeSize(){return this.isLeaf?1:2+this.content.size}get childCount(){return this.content.childCount}child(t){return this.content.child(t)}maybeChild(t){return this.content.maybeChild(t)}forEach(t){this.content.forEach(t)}nodesBetween(t,r,o,a=0){this.content.nodesBetween(t,r,o,a,this)}descendants(t){this.nodesBetween(0,this.content.size,t)}get textContent(){return this.isLeaf&&this.type.spec.leafText?this.type.spec.leafText(this):this.textBetween(0,this.content.size,"")}textBetween(t,r,o,a){return this.content.textBetween(t,r,o,a)}get firstChild(){return this.content.firstChild}get lastChild(){return this.content.lastChild}eq(t){return this==t||this.sameMarkup(t)&&this.content.eq(t.content)}sameMarkup(t){return this.hasMarkup(t.type,t.attrs,t.marks)}hasMarkup(t,r,o){return this.type==t&&Uo(this.attrs,r||t.defaultAttrs||Xg)&&Pe.sameSet(this.marks,o||Pe.none)}copy(t=null){return t==this.content?this:new ei(this.type,this.attrs,t,this.marks)}mark(t){return t==this.marks?this:new ei(this.type,this.attrs,this.content,t)}cut(t,r=this.content.size){return t==0&&r==this.content.size?this:this.copy(this.content.cut(t,r))}slice(t,r=this.content.size,o=!1){if(t==r)return de.empty;let a=this.resolve(t),l=this.resolve(r),i=o?0:a.sharedDepth(r),c=a.start(i),d=a.node(i).content.cut(a.pos-c,l.pos-c);return new de(d,a.depth-i,l.depth-i)}replace(t,r,o){return Yg(this.resolve(t),this.resolve(r),o)}nodeAt(t){for(let r=this;;){let{index:o,offset:a}=r.content.findIndex(t);if(r=r.maybeChild(o),!r)return null;if(a==t||r.isText)return r;t-=a+1}}childAfter(t){let{index:r,offset:o}=this.content.findIndex(t);return{node:this.content.maybeChild(r),index:r,offset:o}}childBefore(t){if(t==0)return{node:null,index:0,offset:0};let{index:r,offset:o}=this.content.findIndex(t);if(o<t)return{node:this.content.child(r),index:r,offset:o};let a=this.content.child(r-1);return{node:a,index:r-1,offset:o-a.nodeSize}}resolve(t){return Ir.resolveCached(this,t)}resolveNoCache(t){return Ir.resolve(this,t)}rangeHasMark(t,r,o){let a=!1;return r>t&&this.nodesBetween(t,r,l=>(o.isInSet(l.marks)&&(a=!0),!a)),a}get isBlock(){return this.type.isBlock}get isTextblock(){return this.type.isTextblock}get inlineContent(){return this.type.inlineContent}get isInline(){return this.type.isInline}get isText(){return this.type.isText}get isLeaf(){return this.type.isLeaf}get isAtom(){return this.type.isAtom}toString(){if(this.type.spec.toDebugString)return this.type.spec.toDebugString(this);let t=this.type.name;return this.content.size&&(t+="("+this.content.toStringInner()+")"),Ds(this.marks,t)}contentMatchAt(t){let r=this.type.contentMatch.matchFragment(this.content,0,t);if(!r)throw new Error("Called contentMatchAt on a node with invalid content");return r}canReplace(t,r,o=Q.empty,a=0,l=o.childCount){let i=this.contentMatchAt(t).matchFragment(o,a,l),c=i&&i.matchFragment(this.content,r);if(!c||!c.validEnd)return!1;for(let s=a;s<l;s++)if(!this.type.allowsMarks(o.child(s).marks))return!1;return!0}canReplaceWith(t,r,o,a){if(a&&!this.type.allowsMarks(a))return!1;let l=this.contentMatchAt(t).matchType(o),i=l&&l.matchFragment(this.content,r);return i?i.validEnd:!1}canAppend(t){return t.content.size?this.canReplace(this.childCount,this.childCount,t.content):this.type.compatibleContent(t.type)}check(){this.type.checkContent(this.content),this.type.checkAttrs(this.attrs);let t=Pe.none;for(let r=0;r<this.marks.length;r++){let o=this.marks[r];o.type.checkAttrs(o.attrs),t=o.addToSet(t)}if(!Pe.sameSet(t,this.marks))throw new RangeError(`Invalid collection of marks for node ${this.type.name}: ${this.marks.map(r=>r.type.name)}`);this.content.forEach(r=>r.check())}toJSON(){let t={type:this.type.name};for(let r in this.attrs){t.attrs=this.attrs;break}return this.content.size&&(t.content=this.content.toJSON()),this.marks.length&&(t.marks=this.marks.map(r=>r.toJSON())),t}static fromJSON(t,r){if(!r)throw new RangeError("Invalid input for Node.fromJSON");let o;if(r.marks){if(!Array.isArray(r.marks))throw new RangeError("Invalid mark data for Node.fromJSON");o=r.marks.map(t.markFromJSON)}if(r.type=="text"){if(typeof r.text!="string")throw new RangeError("Invalid text node in JSON");return t.text(r.text,o)}let a=Q.fromJSON(t,r.content),l=t.nodeType(r.type).create(r.attrs,a,o);return l.type.checkAttrs(l.attrs),l}};l0.prototype.text=void 0;class Ko extends l0{constructor(t,r,o,a){if(super(t,r,null,a),!o)throw new RangeError("Empty text nodes are not allowed");this.text=o}toString(){return this.type.spec.toDebugString?this.type.spec.toDebugString(this):Ds(this.marks,JSON.stringify(this.text))}get textContent(){return this.text}textBetween(t,r){return this.text.slice(t,r)}get nodeSize(){return this.text.length}mark(t){return t==this.marks?this:new Ko(this.type,this.attrs,this.text,t)}withText(t){return t==this.text?this:new Ko(this.type,this.attrs,t,this.marks)}cut(t=0,r=this.text.length){return t==0&&r==this.text.length?this:this.withText(this.text.slice(t,r))}eq(t){return this.sameMarkup(t)&&this.text==t.text}toJSON(){let t=super.toJSON();return t.text=this.text,t}}function Ds(n,t){for(let r=n.length-1;r>=0;r--)t=n[r].type.name+"("+t+")";return t}class i0{constructor(t){this.validEnd=t,this.next=[],this.wrapCache=[]}static parse(t,r){let o=new Qg(t,r);if(o.next==null)return i0.empty;let a=Ps(o);o.next&&o.err("Unexpected trailing text");let l=lk(ak(a));return ik(l,o),l}matchType(t){for(let r=0;r<this.next.length;r++)if(this.next[r].type==t)return this.next[r].next;return null}matchFragment(t,r=0,o=t.childCount){let a=this;for(let l=r;a&&l<o;l++)a=a.matchType(t.child(l).type);return a}get inlineContent(){return this.next.length!=0&&this.next[0].type.isInline}get defaultType(){for(let t=0;t<this.next.length;t++){let{type:r}=this.next[t];if(!(r.isText||r.hasRequiredAttrs()))return r}return null}compatible(t){for(let r=0;r<this.next.length;r++)for(let o=0;o<t.next.length;o++)if(this.next[r].type==t.next[o].type)return!0;return!1}fillBefore(t,r=!1,o=0){let a=[this];function l(i,c){let s=i.matchFragment(t,o);if(s&&(!r||s.validEnd))return Q.from(c.map(d=>d.createAndFill()));for(let d=0;d<i.next.length;d++){let{type:u,next:h}=i.next[d];if(!(u.isText||u.hasRequiredAttrs())&&a.indexOf(h)==-1){a.push(h);let f=l(h,c.concat(u));if(f)return f}}return null}return l(this,[])}findWrapping(t){for(let o=0;o<this.wrapCache.length;o+=2)if(this.wrapCache[o]==t)return this.wrapCache[o+1];let r=this.computeWrapping(t);return this.wrapCache.push(t,r),r}computeWrapping(t){let r=Object.create(null),o=[{match:this,type:null,via:null}];for(;o.length;){let a=o.shift(),l=a.match;if(l.matchType(t)){let i=[];for(let c=a;c.type;c=c.via)i.push(c.type);return i.reverse()}for(let i=0;i<l.next.length;i++){let{type:c,next:s}=l.next[i];!c.isLeaf&&!c.hasRequiredAttrs()&&!(c.name in r)&&(!a.type||s.validEnd)&&(o.push({match:c.contentMatch,type:c,via:a}),r[c.name]=!0)}}return null}get edgeCount(){return this.next.length}edge(t){if(t>=this.next.length)throw new RangeError(`There's no ${t}th edge in this content match`);return this.next[t]}toString(){let t=[];function r(o){t.push(o);for(let a=0;a<o.next.length;a++)t.indexOf(o.next[a].next)==-1&&r(o.next[a].next)}return r(this),t.map((o,a)=>{let l=a+(o.validEnd?"*":" ")+" ";for(let i=0;i<o.next.length;i++)l+=(i?", ":"")+o.next[i].type.name+"->"+t.indexOf(o.next[i].next);return l}).join(`
43
+ `)}}i0.empty=new i0(!0);class Qg{constructor(t,r){this.string=t,this.nodeTypes=r,this.inline=null,this.pos=0,this.tokens=t.split(/\s*(?=\b|\W|$)/),this.tokens[this.tokens.length-1]==""&&this.tokens.pop(),this.tokens[0]==""&&this.tokens.shift()}get next(){return this.tokens[this.pos]}eat(t){return this.next==t&&(this.pos++||!0)}err(t){throw new SyntaxError(t+" (in content expression '"+this.string+"')")}}function Ps(n){let t=[];do t.push(ek(n));while(n.eat("|"));return t.length==1?t[0]:{type:"choice",exprs:t}}function ek(n){let t=[];do t.push(tk(n));while(n.next&&n.next!=")"&&n.next!="|");return t.length==1?t[0]:{type:"seq",exprs:t}}function tk(n){let t=ok(n);for(;;)if(n.eat("+"))t={type:"plus",expr:t};else if(n.eat("*"))t={type:"star",expr:t};else if(n.eat("?"))t={type:"opt",expr:t};else if(n.eat("{"))t=nk(n,t);else break;return t}function Os(n){/\D/.test(n.next)&&n.err("Expected number, got '"+n.next+"'");let t=Number(n.next);return n.pos++,t}function nk(n,t){let r=Os(n),o=r;return n.eat(",")&&(n.next!="}"?o=Os(n):o=-1),n.eat("}")||n.err("Unclosed braced range"),{type:"range",min:r,max:o,expr:t}}function rk(n,t){let r=n.nodeTypes,o=r[t];if(o)return[o];let a=[];for(let l in r){let i=r[l];i.isInGroup(t)&&a.push(i)}return a.length==0&&n.err("No node type or group '"+t+"' found"),a}function ok(n){if(n.eat("(")){let t=Ps(n);return n.eat(")")||n.err("Missing closing paren"),t}else if(/\W/.test(n.next))n.err("Unexpected token '"+n.next+"'");else{let t=rk(n,n.next).map(r=>(n.inline==null?n.inline=r.isInline:n.inline!=r.isInline&&n.err("Mixing inline and block content"),{type:"name",value:r}));return n.pos++,t.length==1?t[0]:{type:"choice",exprs:t}}}function ak(n){let t=[[]];return a(l(n,0),r()),t;function r(){return t.push([])-1}function o(i,c,s){let d={term:s,to:c};return t[i].push(d),d}function a(i,c){i.forEach(s=>s.to=c)}function l(i,c){if(i.type=="choice")return i.exprs.reduce((s,d)=>s.concat(l(d,c)),[]);if(i.type=="seq")for(let s=0;;s++){let d=l(i.exprs[s],c);if(s==i.exprs.length-1)return d;a(d,c=r())}else if(i.type=="star"){let s=r();return o(c,s),a(l(i.expr,s),s),[o(s)]}else if(i.type=="plus"){let s=r();return a(l(i.expr,c),s),a(l(i.expr,s),s),[o(s)]}else{if(i.type=="opt")return[o(c)].concat(l(i.expr,c));if(i.type=="range"){let s=c;for(let d=0;d<i.min;d++){let u=r();a(l(i.expr,s),u),s=u}if(i.max==-1)a(l(i.expr,s),s);else for(let d=i.min;d<i.max;d++){let u=r();o(s,u),a(l(i.expr,s),u),s=u}return[o(s)]}else{if(i.type=="name")return[o(c,void 0,i.value)];throw new Error("Unknown expr type")}}}}function Rs(n,t){return t-n}function zs(n,t){let r=[];return o(t),r.sort(Rs);function o(a){let l=n[a];if(l.length==1&&!l[0].term)return o(l[0].to);r.push(a);for(let i=0;i<l.length;i++){let{term:c,to:s}=l[i];!c&&r.indexOf(s)==-1&&o(s)}}}function lk(n){let t=Object.create(null);return r(zs(n,0));function r(o){let a=[];o.forEach(i=>{n[i].forEach(({term:c,to:s})=>{if(!c)return;let d;for(let u=0;u<a.length;u++)a[u][0]==c&&(d=a[u][1]);zs(n,s).forEach(u=>{d||a.push([c,d=[]]),d.indexOf(u)==-1&&d.push(u)})})});let l=t[o.join(",")]=new i0(o.indexOf(n.length-1)>-1);for(let i=0;i<a.length;i++){let c=a[i][1].sort(Rs);l.next.push({type:a[i][0],next:t[c.join(",")]||r(c)})}return l}}function ik(n,t){for(let r=0,o=[n];r<o.length;r++){let a=o[r],l=!a.validEnd,i=[];for(let c=0;c<a.next.length;c++){let{type:s,next:d}=a.next[c];i.push(s.name),l&&!(s.isText||s.hasRequiredAttrs())&&(l=!1),o.indexOf(d)==-1&&o.push(d)}l&&t.err("Only non-generatable nodes ("+i.join(", ")+") in a required position (see https://prosemirror.net/docs/guide/#generatable)")}}function js(n){let t=Object.create(null);for(let r in n){let o=n[r];if(!o.hasDefault)return null;t[r]=o.default}return t}function Fs(n,t){let r=Object.create(null);for(let o in n){let a=t&&t[o];if(a===void 0){let l=n[o];if(l.hasDefault)a=l.default;else throw new RangeError("No value supplied for attribute "+o)}r[o]=a}return r}function Us(n,t,r,o){for(let a in t)if(!(a in n))throw new RangeError(`Unsupported attribute ${a} for ${r} of type ${a}`);for(let a in n){let l=n[a];l.validate&&l.validate(t[a])}}function Ws(n,t){let r=Object.create(null);if(t)for(let o in t)r[o]=new sk(n,o,t[o]);return r}let qs=class n3{constructor(t,r,o){this.name=t,this.schema=r,this.spec=o,this.markSet=null,this.groups=o.group?o.group.split(" "):[],this.attrs=Ws(t,o.attrs),this.defaultAttrs=js(this.attrs),this.contentMatch=null,this.inlineContent=null,this.isBlock=!(o.inline||t=="text"),this.isText=t=="text"}get isInline(){return!this.isBlock}get isTextblock(){return this.isBlock&&this.inlineContent}get isLeaf(){return this.contentMatch==i0.empty}get isAtom(){return this.isLeaf||!!this.spec.atom}isInGroup(t){return this.groups.indexOf(t)>-1}get whitespace(){return this.spec.whitespace||(this.spec.code?"pre":"normal")}hasRequiredAttrs(){for(let t in this.attrs)if(this.attrs[t].isRequired)return!0;return!1}compatibleContent(t){return this==t||this.contentMatch.compatible(t.contentMatch)}computeAttrs(t){return!t&&this.defaultAttrs?this.defaultAttrs:Fs(this.attrs,t)}create(t=null,r,o){if(this.isText)throw new Error("NodeType.create can't construct text nodes");return new l0(this,this.computeAttrs(t),Q.from(r),Pe.setFrom(o))}createChecked(t=null,r,o){return r=Q.from(r),this.checkContent(r),new l0(this,this.computeAttrs(t),r,Pe.setFrom(o))}createAndFill(t=null,r,o){if(t=this.computeAttrs(t),r=Q.from(r),r.size){let i=this.contentMatch.fillBefore(r);if(!i)return null;r=i.append(r)}let a=this.contentMatch.matchFragment(r),l=a&&a.fillBefore(Q.empty,!0);return l?new l0(this,t,r.append(l),Pe.setFrom(o)):null}validContent(t){let r=this.contentMatch.matchFragment(t);if(!r||!r.validEnd)return!1;for(let o=0;o<t.childCount;o++)if(!this.allowsMarks(t.child(o).marks))return!1;return!0}checkContent(t){if(!this.validContent(t))throw new RangeError(`Invalid content for node ${this.name}: ${t.toString().slice(0,50)}`)}checkAttrs(t){Us(this.attrs,t,"node",this.name)}allowsMarkType(t){return this.markSet==null||this.markSet.indexOf(t)>-1}allowsMarks(t){if(this.markSet==null)return!0;for(let r=0;r<t.length;r++)if(!this.allowsMarkType(t[r].type))return!1;return!0}allowedMarks(t){if(this.markSet==null)return t;let r;for(let o=0;o<t.length;o++)this.allowsMarkType(t[o].type)?r&&r.push(t[o]):r||(r=t.slice(0,o));return r?r.length?r:Pe.none:t}static compile(t,r){let o=Object.create(null);t.forEach((l,i)=>o[l]=new n3(l,r,i));let a=r.spec.topNode||"doc";if(!o[a])throw new RangeError("Schema is missing its top node type ('"+a+"')");if(!o.text)throw new RangeError("Every schema needs a 'text' type");for(let l in o.text.attrs)throw new RangeError("The text node type should not have attributes");return o}};function ck(n,t,r){let o=r.split("|");return a=>{let l=a===null?"null":typeof a;if(o.indexOf(l)<0)throw new RangeError(`Expected value of type ${o} for attribute ${t} on type ${n}, got ${l}`)}}class sk{constructor(t,r,o){this.hasDefault=Object.prototype.hasOwnProperty.call(o,"default"),this.default=o.default,this.validate=typeof o.validate=="string"?ck(t,r,o.validate):o.validate}get isRequired(){return!this.hasDefault}}class Go{constructor(t,r,o,a){this.name=t,this.rank=r,this.schema=o,this.spec=a,this.attrs=Ws(t,a.attrs),this.excluded=null;let l=js(this.attrs);this.instance=l?new Pe(this,l):null}create(t=null){return!t&&this.instance?this.instance:new Pe(this,Fs(this.attrs,t))}static compile(t,r){let o=Object.create(null),a=0;return t.forEach((l,i)=>o[l]=new Go(l,a++,r,i)),o}removeFromSet(t){for(var r=0;r<t.length;r++)t[r].type==this&&(t=t.slice(0,r).concat(t.slice(r+1)),r--);return t}isInSet(t){for(let r=0;r<t.length;r++)if(t[r].type==this)return t[r]}checkAttrs(t){Us(this.attrs,t,"mark",this.name)}excludes(t){return this.excluded.indexOf(t)>-1}}class dk{constructor(t){this.linebreakReplacement=null,this.cached=Object.create(null);let r=this.spec={};for(let a in t)r[a]=t[a];r.nodes=ct.from(t.nodes),r.marks=ct.from(t.marks||{}),this.nodes=qs.compile(this.spec.nodes,this),this.marks=Go.compile(this.spec.marks,this);let o=Object.create(null);for(let a in this.nodes){if(a in this.marks)throw new RangeError(a+" can not be both a node and a mark");let l=this.nodes[a],i=l.spec.content||"",c=l.spec.marks;if(l.contentMatch=o[i]||(o[i]=i0.parse(i,this.nodes)),l.inlineContent=l.contentMatch.inlineContent,l.spec.linebreakReplacement){if(this.linebreakReplacement)throw new RangeError("Multiple linebreak nodes defined");if(!l.isInline||!l.isLeaf)throw new RangeError("Linebreak replacement nodes must be inline leaf nodes");this.linebreakReplacement=l}l.markSet=c=="_"?null:c?Ys(this,c.split(" ")):c==""||!l.inlineContent?[]:null}for(let a in this.marks){let l=this.marks[a],i=l.spec.excludes;l.excluded=i==null?[l]:i==""?[]:Ys(this,i.split(" "))}this.nodeFromJSON=a=>l0.fromJSON(this,a),this.markFromJSON=a=>Pe.fromJSON(this,a),this.topNodeType=this.nodes[this.spec.topNode||"doc"],this.cached.wrappings=Object.create(null)}node(t,r=null,o,a){if(typeof t=="string")t=this.nodeType(t);else if(t instanceof qs){if(t.schema!=this)throw new RangeError("Node type from different schema used ("+t.name+")")}else throw new RangeError("Invalid node type: "+t);return t.createChecked(r,o,a)}text(t,r){let o=this.nodes.text;return new Ko(o,o.defaultAttrs,t,Pe.setFrom(r))}mark(t,r){return typeof t=="string"&&(t=this.marks[t]),t.create(r)}nodeType(t){let r=this.nodes[t];if(!r)throw new RangeError("Unknown node type: "+t);return r}}function Ys(n,t){let r=[];for(let o=0;o<t.length;o++){let a=t[o],l=n.marks[a],i=l;if(l)r.push(l);else for(let c in n.marks){let s=n.marks[c];(a=="_"||s.spec.group&&s.spec.group.split(" ").indexOf(a)>-1)&&r.push(i=s)}if(!i)throw new SyntaxError("Unknown mark type: '"+t[o]+"'")}return r}function uk(n){return n.tag!=null}function hk(n){return n.style!=null}class c0{constructor(t,r){this.schema=t,this.rules=r,this.tags=[],this.styles=[];let o=this.matchedStyles=[];r.forEach(a=>{if(uk(a))this.tags.push(a);else if(hk(a)){let l=/[^=]*/.exec(a.style)[0];o.indexOf(l)<0&&o.push(l),this.styles.push(a)}}),this.normalizeLists=!this.tags.some(a=>{if(!/^(ul|ol)\b/.test(a.tag)||!a.node)return!1;let l=t.nodes[a.node];return l.contentMatch.matchType(l)})}parse(t,r={}){let o=new Xs(this,r,!1);return o.addAll(t,Pe.none,r.from,r.to),o.finish()}parseSlice(t,r={}){let o=new Xs(this,r,!0);return o.addAll(t,Pe.none,r.from,r.to),de.maxOpen(o.finish())}matchTag(t,r,o){for(let a=o?this.tags.indexOf(o)+1:0;a<this.tags.length;a++){let l=this.tags[a];if(mk(t,l.tag)&&(l.namespace===void 0||t.namespaceURI==l.namespace)&&(!l.context||r.matchesContext(l.context))){if(l.getAttrs){let i=l.getAttrs(t);if(i===!1)continue;l.attrs=i||void 0}return l}}}matchStyle(t,r,o,a){for(let l=a?this.styles.indexOf(a)+1:0;l<this.styles.length;l++){let i=this.styles[l],c=i.style;if(!(c.indexOf(t)!=0||i.context&&!o.matchesContext(i.context)||c.length>t.length&&(c.charCodeAt(t.length)!=61||c.slice(t.length+1)!=r))){if(i.getAttrs){let s=i.getAttrs(r);if(s===!1)continue;i.attrs=s||void 0}return i}}}static schemaRules(t){let r=[];function o(a){let l=a.priority==null?50:a.priority,i=0;for(;i<r.length;i++){let c=r[i];if((c.priority==null?50:c.priority)<l)break}r.splice(i,0,a)}for(let a in t.marks){let l=t.marks[a].spec.parseDOM;l&&l.forEach(i=>{o(i=Qs(i)),i.mark||i.ignore||i.clearMark||(i.mark=a)})}for(let a in t.nodes){let l=t.nodes[a].spec.parseDOM;l&&l.forEach(i=>{o(i=Qs(i)),i.node||i.ignore||i.mark||(i.node=a)})}return r}static fromSchema(t){return t.cached.domParser||(t.cached.domParser=new c0(t,c0.schemaRules(t)))}}const Ks={address:!0,article:!0,aside:!0,blockquote:!0,canvas:!0,dd:!0,div:!0,dl:!0,fieldset:!0,figcaption:!0,figure:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,li:!0,noscript:!0,ol:!0,output:!0,p:!0,pre:!0,section:!0,table:!0,tfoot:!0,ul:!0},pk={head:!0,noscript:!0,object:!0,script:!0,style:!0,title:!0},Gs={ol:!0,ul:!0},Hr=1,m5=2,Tr=4;function Js(n,t,r){return t!=null?(t?Hr:0)|(t==="full"?m5:0):n&&n.whitespace=="pre"?Hr|m5:r&~Tr}class Jo{constructor(t,r,o,a,l,i){this.type=t,this.attrs=r,this.marks=o,this.solid=a,this.options=i,this.content=[],this.activeMarks=Pe.none,this.match=l||(i&Tr?null:t.contentMatch)}findWrapping(t){if(!this.match){if(!this.type)return[];let r=this.type.contentMatch.fillBefore(Q.from(t));if(r)this.match=this.type.contentMatch.matchFragment(r);else{let o=this.type.contentMatch,a;return(a=o.findWrapping(t.type))?(this.match=o,a):null}}return this.match.findWrapping(t.type)}finish(t){if(!(this.options&Hr)){let o=this.content[this.content.length-1],a;if(o&&o.isText&&(a=/[ \t\r\n\u000c]+$/.exec(o.text))){let l=o;o.text.length==a[0].length?this.content.pop():this.content[this.content.length-1]=l.withText(l.text.slice(0,l.text.length-a[0].length))}}let r=Q.from(this.content);return!t&&this.match&&(r=r.append(this.match.fillBefore(Q.empty,!0))),this.type?this.type.create(this.attrs,r,this.marks):r}inlineContext(t){return this.type?this.type.inlineContent:this.content.length?this.content[0].isInline:t.parentNode&&!Ks.hasOwnProperty(t.parentNode.nodeName.toLowerCase())}}class Xs{constructor(t,r,o){this.parser=t,this.options=r,this.isOpen=o,this.open=0,this.localPreserveWS=!1;let a=r.topNode,l,i=Js(null,r.preserveWhitespace,0)|(o?Tr:0);a?l=new Jo(a.type,a.attrs,Pe.none,!0,r.topMatch||a.type.contentMatch,i):o?l=new Jo(null,null,Pe.none,!0,null,i):l=new Jo(t.schema.topNodeType,null,Pe.none,!0,null,i),this.nodes=[l],this.find=r.findPositions,this.needsBlock=!1}get top(){return this.nodes[this.open]}addDOM(t,r){t.nodeType==3?this.addTextNode(t,r):t.nodeType==1&&this.addElement(t,r)}addTextNode(t,r){let o=t.nodeValue,a=this.top,l=a.options&m5?"full":this.localPreserveWS||(a.options&Hr)>0,{schema:i}=this.parser;if(l==="full"||a.inlineContext(t)||/[^ \t\r\n\u000c]/.test(o)){if(l)if(l==="full")o=o.replace(/\r\n?/g,`
44
+ `);else if(i.linebreakReplacement&&/[\r\n]/.test(o)&&this.top.findWrapping(i.linebreakReplacement.create())){let c=o.split(/\r?\n|\r/);for(let s=0;s<c.length;s++)s&&this.insertNode(i.linebreakReplacement.create(),r,!0),c[s]&&this.insertNode(i.text(c[s]),r,!/\S/.test(c[s]));o=""}else o=o.replace(/\r?\n|\r/g," ");else if(o=o.replace(/[ \t\r\n\u000c]+/g," "),/^[ \t\r\n\u000c]/.test(o)&&this.open==this.nodes.length-1){let c=a.content[a.content.length-1],s=t.previousSibling;(!c||s&&s.nodeName=="BR"||c.isText&&/[ \t\r\n\u000c]$/.test(c.text))&&(o=o.slice(1))}o&&this.insertNode(i.text(o),r,!/\S/.test(o)),this.findInText(t)}else this.findInside(t)}addElement(t,r,o){let a=this.localPreserveWS,l=this.top;(t.tagName=="PRE"||/pre/.test(t.style&&t.style.whiteSpace))&&(this.localPreserveWS=!0);let i=t.nodeName.toLowerCase(),c;Gs.hasOwnProperty(i)&&this.parser.normalizeLists&&fk(t);let s=this.options.ruleFromNode&&this.options.ruleFromNode(t)||(c=this.parser.matchTag(t,this,o));e:if(s?s.ignore:pk.hasOwnProperty(i))this.findInside(t),this.ignoreFallback(t,r);else if(!s||s.skip||s.closeParent){s&&s.closeParent?this.open=Math.max(0,this.open-1):s&&s.skip.nodeType&&(t=s.skip);let d,u=this.needsBlock;if(Ks.hasOwnProperty(i))l.content.length&&l.content[0].isInline&&this.open&&(this.open--,l=this.top),d=!0,l.type||(this.needsBlock=!0);else if(!t.firstChild){this.leafFallback(t,r);break e}let h=s&&s.skip?r:this.readStyles(t,r);h&&this.addAll(t,h),d&&this.sync(l),this.needsBlock=u}else{let d=this.readStyles(t,r);d&&this.addElementByRule(t,s,d,s.consuming===!1?c:void 0)}this.localPreserveWS=a}leafFallback(t,r){t.nodeName=="BR"&&this.top.type&&this.top.type.inlineContent&&this.addTextNode(t.ownerDocument.createTextNode(`
45
+ `),r)}ignoreFallback(t,r){t.nodeName=="BR"&&(!this.top.type||!this.top.type.inlineContent)&&this.findPlace(this.parser.schema.text("-"),r,!0)}readStyles(t,r){let o=t.style;if(o&&o.length)for(let a=0;a<this.parser.matchedStyles.length;a++){let l=this.parser.matchedStyles[a],i=o.getPropertyValue(l);if(i)for(let c=void 0;;){let s=this.parser.matchStyle(l,i,this,c);if(!s)break;if(s.ignore)return null;if(s.clearMark?r=r.filter(d=>!s.clearMark(d)):r=r.concat(this.parser.schema.marks[s.mark].create(s.attrs)),s.consuming===!1)c=s;else break}}return r}addElementByRule(t,r,o,a){let l,i;if(r.node)if(i=this.parser.schema.nodes[r.node],i.isLeaf)this.insertNode(i.create(r.attrs),o,t.nodeName=="BR")||this.leafFallback(t,o);else{let s=this.enter(i,r.attrs||null,o,r.preserveWhitespace);s&&(l=!0,o=s)}else{let s=this.parser.schema.marks[r.mark];o=o.concat(s.create(r.attrs))}let c=this.top;if(i&&i.isLeaf)this.findInside(t);else if(a)this.addElement(t,o,a);else if(r.getContent)this.findInside(t),r.getContent(t,this.parser.schema).forEach(s=>this.insertNode(s,o,!1));else{let s=t;typeof r.contentElement=="string"?s=t.querySelector(r.contentElement):typeof r.contentElement=="function"?s=r.contentElement(t):r.contentElement&&(s=r.contentElement),this.findAround(t,s,!0),this.addAll(s,o),this.findAround(t,s,!1)}l&&this.sync(c)&&this.open--}addAll(t,r,o,a){let l=o||0;for(let i=o?t.childNodes[o]:t.firstChild,c=a==null?null:t.childNodes[a];i!=c;i=i.nextSibling,++l)this.findAtPoint(t,l),this.addDOM(i,r);this.findAtPoint(t,l)}findPlace(t,r,o){let a,l;for(let i=this.open,c=0;i>=0;i--){let s=this.nodes[i],d=s.findWrapping(t);if(d&&(!a||a.length>d.length+c)&&(a=d,l=s,!d.length))break;if(s.solid){if(o)break;c+=2}}if(!a)return null;this.sync(l);for(let i=0;i<a.length;i++)r=this.enterInner(a[i],null,r,!1);return r}insertNode(t,r,o){if(t.isInline&&this.needsBlock&&!this.top.type){let l=this.textblockFromContext();l&&(r=this.enterInner(l,null,r))}let a=this.findPlace(t,r,o);if(a){this.closeExtra();let l=this.top;l.match&&(l.match=l.match.matchType(t.type));let i=Pe.none;for(let c of a.concat(t.marks))(l.type?l.type.allowsMarkType(c.type):e2(c.type,t.type))&&(i=c.addToSet(i));return l.content.push(t.mark(i)),!0}return!1}enter(t,r,o,a){let l=this.findPlace(t.create(r),o,!1);return l&&(l=this.enterInner(t,r,o,!0,a)),l}enterInner(t,r,o,a=!1,l){this.closeExtra();let i=this.top;i.match=i.match&&i.match.matchType(t);let c=Js(t,l,i.options);i.options&Tr&&i.content.length==0&&(c|=Tr);let s=Pe.none;return o=o.filter(d=>(i.type?i.type.allowsMarkType(d.type):e2(d.type,t))?(s=d.addToSet(s),!1):!0),this.nodes.push(new Jo(t,r,s,a,null,c)),this.open++,o}closeExtra(t=!1){let r=this.nodes.length-1;if(r>this.open){for(;r>this.open;r--)this.nodes[r-1].content.push(this.nodes[r].finish(t));this.nodes.length=this.open+1}}finish(){return this.open=0,this.closeExtra(this.isOpen),this.nodes[0].finish(!!(this.isOpen||this.options.topOpen))}sync(t){for(let r=this.open;r>=0;r--){if(this.nodes[r]==t)return this.open=r,!0;this.localPreserveWS&&(this.nodes[r].options|=Hr)}return!1}get currentPos(){this.closeExtra();let t=0;for(let r=this.open;r>=0;r--){let o=this.nodes[r].content;for(let a=o.length-1;a>=0;a--)t+=o[a].nodeSize;r&&t++}return t}findAtPoint(t,r){if(this.find)for(let o=0;o<this.find.length;o++)this.find[o].node==t&&this.find[o].offset==r&&(this.find[o].pos=this.currentPos)}findInside(t){if(this.find)for(let r=0;r<this.find.length;r++)this.find[r].pos==null&&t.nodeType==1&&t.contains(this.find[r].node)&&(this.find[r].pos=this.currentPos)}findAround(t,r,o){if(t!=r&&this.find)for(let a=0;a<this.find.length;a++)this.find[a].pos==null&&t.nodeType==1&&t.contains(this.find[a].node)&&r.compareDocumentPosition(this.find[a].node)&(o?2:4)&&(this.find[a].pos=this.currentPos)}findInText(t){if(this.find)for(let r=0;r<this.find.length;r++)this.find[r].node==t&&(this.find[r].pos=this.currentPos-(t.nodeValue.length-this.find[r].offset))}matchesContext(t){if(t.indexOf("|")>-1)return t.split(/\s*\|\s*/).some(this.matchesContext,this);let r=t.split("/"),o=this.options.context,a=!this.isOpen&&(!o||o.parent.type==this.nodes[0].type),l=-(o?o.depth+1:0)+(a?0:1),i=(c,s)=>{for(;c>=0;c--){let d=r[c];if(d==""){if(c==r.length-1||c==0)continue;for(;s>=l;s--)if(i(c-1,s))return!0;return!1}else{let u=s>0||s==0&&a?this.nodes[s].type:o&&s>=l?o.node(s-l).type:null;if(!u||u.name!=d&&!u.isInGroup(d))return!1;s--}}return!0};return i(r.length-1,this.open)}textblockFromContext(){let t=this.options.context;if(t)for(let r=t.depth;r>=0;r--){let o=t.node(r).contentMatchAt(t.indexAfter(r)).defaultType;if(o&&o.isTextblock&&o.defaultAttrs)return o}for(let r in this.parser.schema.nodes){let o=this.parser.schema.nodes[r];if(o.isTextblock&&o.defaultAttrs)return o}}}function fk(n){for(let t=n.firstChild,r=null;t;t=t.nextSibling){let o=t.nodeType==1?t.nodeName.toLowerCase():null;o&&Gs.hasOwnProperty(o)&&r?(r.appendChild(t),t=r):o=="li"?r=t:o&&(r=null)}}function mk(n,t){return(n.matches||n.msMatchesSelector||n.webkitMatchesSelector||n.mozMatchesSelector).call(n,t)}function Qs(n){let t={};for(let r in n)t[r]=n[r];return t}function e2(n,t){let r=t.schema.nodes;for(let o in r){let a=r[o];if(!a.allowsMarkType(n))continue;let l=[],i=c=>{l.push(c);for(let s=0;s<c.edgeCount;s++){let{type:d,next:u}=c.edge(s);if(d==t||l.indexOf(u)<0&&i(u))return!0}};if(i(a.contentMatch))return!0}}class Xo{constructor(t,r){this.nodes=t,this.marks=r}serializeFragment(t,r={},o){o||(o=w5(r).createDocumentFragment());let a=o,l=[];return t.forEach(i=>{if(l.length||i.marks.length){let c=0,s=0;for(;c<l.length&&s<i.marks.length;){let d=i.marks[s];if(!this.marks[d.type.name]){s++;continue}if(!d.eq(l[c][0])||d.type.spec.spanning===!1)break;c++,s++}for(;c<l.length;)a=l.pop()[1];for(;s<i.marks.length;){let d=i.marks[s++],u=this.serializeMark(d,i.isInline,r);u&&(l.push([d,a]),a.appendChild(u.dom),a=u.contentDOM||u.dom)}}a.appendChild(this.serializeNodeInner(i,r))}),o}serializeNodeInner(t,r){let{dom:o,contentDOM:a}=Qo(w5(r),this.nodes[t.type.name](t),null,t.attrs);if(a){if(t.isLeaf)throw new RangeError("Content hole not allowed in a leaf node spec");this.serializeFragment(t.content,r,a)}return o}serializeNode(t,r={}){let o=this.serializeNodeInner(t,r);for(let a=t.marks.length-1;a>=0;a--){let l=this.serializeMark(t.marks[a],t.isInline,r);l&&((l.contentDOM||l.dom).appendChild(o),o=l.dom)}return o}serializeMark(t,r,o={}){let a=this.marks[t.type.name];return a&&Qo(w5(o),a(t,r),null,t.attrs)}static renderSpec(t,r,o=null,a){return Qo(t,r,o,a)}static fromSchema(t){return t.cached.domSerializer||(t.cached.domSerializer=new Xo(this.nodesFromSchema(t),this.marksFromSchema(t)))}static nodesFromSchema(t){let r=t2(t.nodes);return r.text||(r.text=o=>o.text),r}static marksFromSchema(t){return t2(t.marks)}}function t2(n){let t={};for(let r in n){let o=n[r].spec.toDOM;o&&(t[r]=o)}return t}function w5(n){return n.document||window.document}const n2=new WeakMap;function wk(n){let t=n2.get(n);return t===void 0&&n2.set(n,t=gk(n)),t}function gk(n){let t=null;function r(o){if(o&&typeof o=="object")if(Array.isArray(o))if(typeof o[0]=="string")t||(t=[]),t.push(o);else for(let a=0;a<o.length;a++)r(o[a]);else for(let a in o)r(o[a])}return r(n),t}function Qo(n,t,r,o){if(typeof t=="string")return{dom:n.createTextNode(t)};if(t.nodeType!=null)return{dom:t};if(t.dom&&t.dom.nodeType!=null)return t;let a=t[0],l;if(typeof a!="string")throw new RangeError("Invalid array passed to renderSpec");if(o&&(l=wk(o))&&l.indexOf(t)>-1)throw new RangeError("Using an array from an attribute object as a DOM spec. This may be an attempted cross site scripting attack.");let i=a.indexOf(" ");i>0&&(r=a.slice(0,i),a=a.slice(i+1));let c,s=r?n.createElementNS(r,a):n.createElement(a),d=t[1],u=1;if(d&&typeof d=="object"&&d.nodeType==null&&!Array.isArray(d)){u=2;for(let h in d)if(d[h]!=null){let f=h.indexOf(" ");f>0?s.setAttributeNS(h.slice(0,f),h.slice(f+1),d[h]):h=="style"&&s.style?s.style.cssText=d[h]:s.setAttribute(h,d[h])}}for(let h=u;h<t.length;h++){let f=t[h];if(f===0){if(h<t.length-1||h>u)throw new RangeError("Content hole must be the only child of its parent node");return{dom:s,contentDOM:s}}else{let{dom:p,contentDOM:m}=Qo(n,f,r,o);if(s.appendChild(p),m){if(c)throw new RangeError("Multiple content holes");c=m}}}return{dom:s,contentDOM:c}}const r2=65535,o2=Math.pow(2,16);function kk(n,t){return n+t*o2}function a2(n){return n&r2}function xk(n){return(n-(n&r2))/o2}const l2=1,i2=2,ea=4,c2=8;class g5{constructor(t,r,o){this.pos=t,this.delInfo=r,this.recover=o}get deleted(){return(this.delInfo&c2)>0}get deletedBefore(){return(this.delInfo&(l2|ea))>0}get deletedAfter(){return(this.delInfo&(i2|ea))>0}get deletedAcross(){return(this.delInfo&ea)>0}}class Ct{constructor(t,r=!1){if(this.ranges=t,this.inverted=r,!t.length&&Ct.empty)return Ct.empty}recover(t){let r=0,o=a2(t);if(!this.inverted)for(let a=0;a<o;a++)r+=this.ranges[a*3+2]-this.ranges[a*3+1];return this.ranges[o*3]+r+xk(t)}mapResult(t,r=1){return this._map(t,r,!1)}map(t,r=1){return this._map(t,r,!0)}_map(t,r,o){let a=0,l=this.inverted?2:1,i=this.inverted?1:2;for(let c=0;c<this.ranges.length;c+=3){let s=this.ranges[c]-(this.inverted?a:0);if(s>t)break;let d=this.ranges[c+l],u=this.ranges[c+i],h=s+d;if(t<=h){let f=d?t==s?-1:t==h?1:r:r,p=s+a+(f<0?0:u);if(o)return p;let m=t==(r<0?s:h)?null:kk(c/3,t-s),w=t==s?i2:t==h?l2:ea;return(r<0?t!=s:t!=h)&&(w|=c2),new g5(p,w,m)}a+=u-d}return o?t+a:new g5(t+a,0,null)}touches(t,r){let o=0,a=a2(r),l=this.inverted?2:1,i=this.inverted?1:2;for(let c=0;c<this.ranges.length;c+=3){let s=this.ranges[c]-(this.inverted?o:0);if(s>t)break;let d=this.ranges[c+l],u=s+d;if(t<=u&&c==a*3)return!0;o+=this.ranges[c+i]-d}return!1}forEach(t){let r=this.inverted?2:1,o=this.inverted?1:2;for(let a=0,l=0;a<this.ranges.length;a+=3){let i=this.ranges[a],c=i-(this.inverted?l:0),s=i+(this.inverted?0:l),d=this.ranges[a+r],u=this.ranges[a+o];t(c,c+d,s,s+u),l+=u-d}}invert(){return new Ct(this.ranges,!this.inverted)}toString(){return(this.inverted?"-":"")+JSON.stringify(this.ranges)}static offset(t){return t==0?Ct.empty:new Ct(t<0?[0,-t,0]:[0,0,t])}}Ct.empty=new Ct([]);class Lr{constructor(t,r,o=0,a=t?t.length:0){this.mirror=r,this.from=o,this.to=a,this._maps=t||[],this.ownData=!(t||r)}get maps(){return this._maps}slice(t=0,r=this.maps.length){return new Lr(this._maps,this.mirror,t,r)}appendMap(t,r){this.ownData||(this._maps=this._maps.slice(),this.mirror=this.mirror&&this.mirror.slice(),this.ownData=!0),this.to=this._maps.push(t),r!=null&&this.setMirror(this._maps.length-1,r)}appendMapping(t){for(let r=0,o=this._maps.length;r<t._maps.length;r++){let a=t.getMirror(r);this.appendMap(t._maps[r],a!=null&&a<r?o+a:void 0)}}getMirror(t){if(this.mirror){for(let r=0;r<this.mirror.length;r++)if(this.mirror[r]==t)return this.mirror[r+(r%2?-1:1)]}}setMirror(t,r){this.mirror||(this.mirror=[]),this.mirror.push(t,r)}appendMappingInverted(t){for(let r=t.maps.length-1,o=this._maps.length+t._maps.length;r>=0;r--){let a=t.getMirror(r);this.appendMap(t._maps[r].invert(),a!=null&&a>r?o-a-1:void 0)}}invert(){let t=new Lr;return t.appendMappingInverted(this),t}map(t,r=1){if(this.mirror)return this._map(t,r,!0);for(let o=this.from;o<this.to;o++)t=this._maps[o].map(t,r);return t}mapResult(t,r=1){return this._map(t,r,!1)}_map(t,r,o){let a=0;for(let l=this.from;l<this.to;l++){let i=this._maps[l],c=i.mapResult(t,r);if(c.recover!=null){let s=this.getMirror(l);if(s!=null&&s>l&&s<this.to){l=s,t=this._maps[s].recover(c.recover);continue}}a|=c.delInfo,t=c.pos}return o?t:new g5(t,a,null)}}const k5=Object.create(null);class pt{getMap(){return Ct.empty}merge(t){return null}static fromJSON(t,r){if(!r||!r.stepType)throw new RangeError("Invalid input for Step.fromJSON");let o=k5[r.stepType];if(!o)throw new RangeError(`No step type ${r.stepType} defined`);return o.fromJSON(t,r)}static jsonID(t,r){if(t in k5)throw new RangeError("Duplicate use of step JSON ID "+t);return k5[t]=r,r.prototype.jsonID=t,r}}class Qe{constructor(t,r){this.doc=t,this.failed=r}static ok(t){return new Qe(t,null)}static fail(t){return new Qe(null,t)}static fromReplace(t,r,o,a){try{return Qe.ok(t.replace(r,o,a))}catch(l){if(l instanceof Wo)return Qe.fail(l.message);throw l}}}function x5(n,t,r){let o=[];for(let a=0;a<n.childCount;a++){let l=n.child(a);l.content.size&&(l=l.copy(x5(l.content,t,l))),l.isInline&&(l=t(l,r,a)),o.push(l)}return Q.fromArray(o)}class Nn extends pt{constructor(t,r,o){super(),this.from=t,this.to=r,this.mark=o}apply(t){let r=t.slice(this.from,this.to),o=t.resolve(this.from),a=o.node(o.sharedDepth(this.to)),l=new de(x5(r.content,(i,c)=>!i.isAtom||!c.type.allowsMarkType(this.mark.type)?i:i.mark(this.mark.addToSet(i.marks)),a),r.openStart,r.openEnd);return Qe.fromReplace(t,this.from,this.to,l)}invert(){return new Ut(this.from,this.to,this.mark)}map(t){let r=t.mapResult(this.from,1),o=t.mapResult(this.to,-1);return r.deleted&&o.deleted||r.pos>=o.pos?null:new Nn(r.pos,o.pos,this.mark)}merge(t){return t instanceof Nn&&t.mark.eq(this.mark)&&this.from<=t.to&&this.to>=t.from?new Nn(Math.min(this.from,t.from),Math.max(this.to,t.to),this.mark):null}toJSON(){return{stepType:"addMark",mark:this.mark.toJSON(),from:this.from,to:this.to}}static fromJSON(t,r){if(typeof r.from!="number"||typeof r.to!="number")throw new RangeError("Invalid input for AddMarkStep.fromJSON");return new Nn(r.from,r.to,t.markFromJSON(r.mark))}}pt.jsonID("addMark",Nn);class Ut extends pt{constructor(t,r,o){super(),this.from=t,this.to=r,this.mark=o}apply(t){let r=t.slice(this.from,this.to),o=new de(x5(r.content,a=>a.mark(this.mark.removeFromSet(a.marks)),t),r.openStart,r.openEnd);return Qe.fromReplace(t,this.from,this.to,o)}invert(){return new Nn(this.from,this.to,this.mark)}map(t){let r=t.mapResult(this.from,1),o=t.mapResult(this.to,-1);return r.deleted&&o.deleted||r.pos>=o.pos?null:new Ut(r.pos,o.pos,this.mark)}merge(t){return t instanceof Ut&&t.mark.eq(this.mark)&&this.from<=t.to&&this.to>=t.from?new Ut(Math.min(this.from,t.from),Math.max(this.to,t.to),this.mark):null}toJSON(){return{stepType:"removeMark",mark:this.mark.toJSON(),from:this.from,to:this.to}}static fromJSON(t,r){if(typeof r.from!="number"||typeof r.to!="number")throw new RangeError("Invalid input for RemoveMarkStep.fromJSON");return new Ut(r.from,r.to,t.markFromJSON(r.mark))}}pt.jsonID("removeMark",Ut);class Zn extends pt{constructor(t,r){super(),this.pos=t,this.mark=r}apply(t){let r=t.nodeAt(this.pos);if(!r)return Qe.fail("No node at mark step's position");let o=r.type.create(r.attrs,null,this.mark.addToSet(r.marks));return Qe.fromReplace(t,this.pos,this.pos+1,new de(Q.from(o),0,r.isLeaf?0:1))}invert(t){let r=t.nodeAt(this.pos);if(r){let o=this.mark.addToSet(r.marks);if(o.length==r.marks.length){for(let a=0;a<r.marks.length;a++)if(!r.marks[a].isInSet(o))return new Zn(this.pos,r.marks[a]);return new Zn(this.pos,this.mark)}}return new s0(this.pos,this.mark)}map(t){let r=t.mapResult(this.pos,1);return r.deletedAfter?null:new Zn(r.pos,this.mark)}toJSON(){return{stepType:"addNodeMark",pos:this.pos,mark:this.mark.toJSON()}}static fromJSON(t,r){if(typeof r.pos!="number")throw new RangeError("Invalid input for AddNodeMarkStep.fromJSON");return new Zn(r.pos,t.markFromJSON(r.mark))}}pt.jsonID("addNodeMark",Zn);class s0 extends pt{constructor(t,r){super(),this.pos=t,this.mark=r}apply(t){let r=t.nodeAt(this.pos);if(!r)return Qe.fail("No node at mark step's position");let o=r.type.create(r.attrs,null,this.mark.removeFromSet(r.marks));return Qe.fromReplace(t,this.pos,this.pos+1,new de(Q.from(o),0,r.isLeaf?0:1))}invert(t){let r=t.nodeAt(this.pos);return!r||!this.mark.isInSet(r.marks)?this:new Zn(this.pos,this.mark)}map(t){let r=t.mapResult(this.pos,1);return r.deletedAfter?null:new s0(r.pos,this.mark)}toJSON(){return{stepType:"removeNodeMark",pos:this.pos,mark:this.mark.toJSON()}}static fromJSON(t,r){if(typeof r.pos!="number")throw new RangeError("Invalid input for RemoveNodeMarkStep.fromJSON");return new s0(r.pos,t.markFromJSON(r.mark))}}pt.jsonID("removeNodeMark",s0);class at extends pt{constructor(t,r,o,a=!1){super(),this.from=t,this.to=r,this.slice=o,this.structure=a}apply(t){return this.structure&&v5(t,this.from,this.to)?Qe.fail("Structure replace would overwrite content"):Qe.fromReplace(t,this.from,this.to,this.slice)}getMap(){return new Ct([this.from,this.to-this.from,this.slice.size])}invert(t){return new at(this.from,this.from+this.slice.size,t.slice(this.from,this.to))}map(t){let r=t.mapResult(this.from,1),o=t.mapResult(this.to,-1);return r.deletedAcross&&o.deletedAcross?null:new at(r.pos,Math.max(r.pos,o.pos),this.slice,this.structure)}merge(t){if(!(t instanceof at)||t.structure||this.structure)return null;if(this.from+this.slice.size==t.from&&!this.slice.openEnd&&!t.slice.openStart){let r=this.slice.size+t.slice.size==0?de.empty:new de(this.slice.content.append(t.slice.content),this.slice.openStart,t.slice.openEnd);return new at(this.from,this.to+(t.to-t.from),r,this.structure)}else if(t.to==this.from&&!this.slice.openStart&&!t.slice.openEnd){let r=this.slice.size+t.slice.size==0?de.empty:new de(t.slice.content.append(this.slice.content),t.slice.openStart,this.slice.openEnd);return new at(t.from,this.to,r,this.structure)}else return null}toJSON(){let t={stepType:"replace",from:this.from,to:this.to};return this.slice.size&&(t.slice=this.slice.toJSON()),this.structure&&(t.structure=!0),t}static fromJSON(t,r){if(typeof r.from!="number"||typeof r.to!="number")throw new RangeError("Invalid input for ReplaceStep.fromJSON");return new at(r.from,r.to,de.fromJSON(t,r.slice),!!r.structure)}}pt.jsonID("replace",at);class lt extends pt{constructor(t,r,o,a,l,i,c=!1){super(),this.from=t,this.to=r,this.gapFrom=o,this.gapTo=a,this.slice=l,this.insert=i,this.structure=c}apply(t){if(this.structure&&(v5(t,this.from,this.gapFrom)||v5(t,this.gapTo,this.to)))return Qe.fail("Structure gap-replace would overwrite content");let r=t.slice(this.gapFrom,this.gapTo);if(r.openStart||r.openEnd)return Qe.fail("Gap is not a flat range");let o=this.slice.insertAt(this.insert,r.content);return o?Qe.fromReplace(t,this.from,this.to,o):Qe.fail("Content does not fit in gap")}getMap(){return new Ct([this.from,this.gapFrom-this.from,this.insert,this.gapTo,this.to-this.gapTo,this.slice.size-this.insert])}invert(t){let r=this.gapTo-this.gapFrom;return new lt(this.from,this.from+this.slice.size+r,this.from+this.insert,this.from+this.insert+r,t.slice(this.from,this.to).removeBetween(this.gapFrom-this.from,this.gapTo-this.from),this.gapFrom-this.from,this.structure)}map(t){let r=t.mapResult(this.from,1),o=t.mapResult(this.to,-1),a=this.from==this.gapFrom?r.pos:t.map(this.gapFrom,-1),l=this.to==this.gapTo?o.pos:t.map(this.gapTo,1);return r.deletedAcross&&o.deletedAcross||a<r.pos||l>o.pos?null:new lt(r.pos,o.pos,a,l,this.slice,this.insert,this.structure)}toJSON(){let t={stepType:"replaceAround",from:this.from,to:this.to,gapFrom:this.gapFrom,gapTo:this.gapTo,insert:this.insert};return this.slice.size&&(t.slice=this.slice.toJSON()),this.structure&&(t.structure=!0),t}static fromJSON(t,r){if(typeof r.from!="number"||typeof r.to!="number"||typeof r.gapFrom!="number"||typeof r.gapTo!="number"||typeof r.insert!="number")throw new RangeError("Invalid input for ReplaceAroundStep.fromJSON");return new lt(r.from,r.to,r.gapFrom,r.gapTo,de.fromJSON(t,r.slice),r.insert,!!r.structure)}}pt.jsonID("replaceAround",lt);function v5(n,t,r){let o=n.resolve(t),a=r-t,l=o.depth;for(;a>0&&l>0&&o.indexAfter(l)==o.node(l).childCount;)l--,a--;if(a>0){let i=o.node(l).maybeChild(o.indexAfter(l));for(;a>0;){if(!i||i.isLeaf)return!0;i=i.firstChild,a--}}return!1}function vk(n,t,r,o){let a=[],l=[],i,c;n.doc.nodesBetween(t,r,(s,d,u)=>{if(!s.isInline)return;let h=s.marks;if(!o.isInSet(h)&&u.type.allowsMarkType(o.type)){let f=Math.max(d,t),p=Math.min(d+s.nodeSize,r),m=o.addToSet(h);for(let w=0;w<h.length;w++)h[w].isInSet(m)||(i&&i.to==f&&i.mark.eq(h[w])?i.to=p:a.push(i=new Ut(f,p,h[w])));c&&c.to==f?c.to=p:l.push(c=new Nn(f,p,o))}}),a.forEach(s=>n.step(s)),l.forEach(s=>n.step(s))}function yk(n,t,r,o){let a=[],l=0;n.doc.nodesBetween(t,r,(i,c)=>{if(!i.isInline)return;l++;let s=null;if(o instanceof Go){let d=i.marks,u;for(;u=o.isInSet(d);)(s||(s=[])).push(u),d=u.removeFromSet(d)}else o?o.isInSet(i.marks)&&(s=[o]):s=i.marks;if(s&&s.length){let d=Math.min(c+i.nodeSize,r);for(let u=0;u<s.length;u++){let h=s[u],f;for(let p=0;p<a.length;p++){let m=a[p];m.step==l-1&&h.eq(a[p].style)&&(f=m)}f?(f.to=d,f.step=l):a.push({style:h,from:Math.max(c,t),to:d,step:l})}}}),a.forEach(i=>n.step(new Ut(i.from,i.to,i.style)))}function y5(n,t,r,o=r.contentMatch,a=!0){let l=n.doc.nodeAt(t),i=[],c=t+1;for(let s=0;s<l.childCount;s++){let d=l.child(s),u=c+d.nodeSize,h=o.matchType(d.type);if(!h)i.push(new at(c,u,de.empty));else{o=h;for(let f=0;f<d.marks.length;f++)r.allowsMarkType(d.marks[f].type)||n.step(new Ut(c,u,d.marks[f]));if(a&&d.isText&&r.whitespace!="pre"){let f,p=/\r?\n|\r/g,m;for(;f=p.exec(d.text);)m||(m=new de(Q.from(r.schema.text(" ",r.allowedMarks(d.marks))),0,0)),i.push(new at(c+f.index,c+f.index+f[0].length,m))}}c=u}if(!o.validEnd){let s=o.fillBefore(Q.empty,!0);n.replace(c,c,new de(s,0,0))}for(let s=i.length-1;s>=0;s--)n.step(i[s])}function Bk(n,t,r){return(t==0||n.canReplace(t,n.childCount))&&(r==n.childCount||n.canReplace(0,r))}function W0(n){let r=n.parent.content.cutByIndex(n.startIndex,n.endIndex);for(let o=n.depth,a=0,l=0;;--o){let i=n.$from.node(o),c=n.$from.index(o)+a,s=n.$to.indexAfter(o)-l;if(o<n.depth&&i.canReplace(c,s,r))return o;if(o==0||i.type.spec.isolating||!Bk(i,c,s))break;c&&(a=1),s<i.childCount&&(l=1)}return null}function Ek(n,t,r){let{$from:o,$to:a,depth:l}=t,i=o.before(l+1),c=a.after(l+1),s=i,d=c,u=Q.empty,h=0;for(let m=l,w=!1;m>r;m--)w||o.index(m)>0?(w=!0,u=Q.from(o.node(m).copy(u)),h++):s--;let f=Q.empty,p=0;for(let m=l,w=!1;m>r;m--)w||a.after(m+1)<a.end(m)?(w=!0,f=Q.from(a.node(m).copy(f)),p++):d++;n.step(new lt(s,d,i,c,new de(u.append(f),h,p),u.size-h,!0))}function B5(n,t,r=null,o=n){let a=bk(n,t),l=a&&Ck(o,t);return l?a.map(s2).concat({type:t,attrs:r}).concat(l.map(s2)):null}function s2(n){return{type:n,attrs:null}}function bk(n,t){let{parent:r,startIndex:o,endIndex:a}=n,l=r.contentMatchAt(o).findWrapping(t);if(!l)return null;let i=l.length?l[0]:t;return r.canReplaceWith(o,a,i)?l:null}function Ck(n,t){let{parent:r,startIndex:o,endIndex:a}=n,l=r.child(o),i=t.contentMatch.findWrapping(l.type);if(!i)return null;let s=(i.length?i[i.length-1]:t).contentMatch;for(let d=o;s&&d<a;d++)s=s.matchType(r.child(d).type);return!s||!s.validEnd?null:i}function Mk(n,t,r){let o=Q.empty;for(let i=r.length-1;i>=0;i--){if(o.size){let c=r[i].type.contentMatch.matchFragment(o);if(!c||!c.validEnd)throw new RangeError("Wrapper type given to Transform.wrap does not form valid content of its parent wrapper")}o=Q.from(r[i].type.create(r[i].attrs,o))}let a=t.start,l=t.end;n.step(new lt(a,l,a,l,new de(o,0,0),r.length,!0))}function Vk(n,t,r,o,a){if(!o.isTextblock)throw new RangeError("Type given to setBlockType should be a textblock");let l=n.steps.length;n.doc.nodesBetween(t,r,(i,c)=>{let s=typeof a=="function"?a(i):a;if(i.isTextblock&&!i.hasMarkup(o,s)&&Ak(n.doc,n.mapping.slice(l).map(c),o)){let d=null;if(o.schema.linebreakReplacement){let p=o.whitespace=="pre",m=!!o.contentMatch.matchType(o.schema.linebreakReplacement);p&&!m?d=!1:!p&&m&&(d=!0)}d===!1&&u2(n,i,c,l),y5(n,n.mapping.slice(l).map(c,1),o,void 0,d===null);let u=n.mapping.slice(l),h=u.map(c,1),f=u.map(c+i.nodeSize,1);return n.step(new lt(h,f,h+1,f-1,new de(Q.from(o.create(s,null,i.marks)),0,0),1,!0)),d===!0&&d2(n,i,c,l),!1}})}function d2(n,t,r,o){t.forEach((a,l)=>{if(a.isText){let i,c=/\r?\n|\r/g;for(;i=c.exec(a.text);){let s=n.mapping.slice(o).map(r+1+l+i.index);n.replaceWith(s,s+1,t.type.schema.linebreakReplacement.create())}}})}function u2(n,t,r,o){t.forEach((a,l)=>{if(a.type==a.type.schema.linebreakReplacement){let i=n.mapping.slice(o).map(r+1+l);n.replaceWith(i,i+1,t.type.schema.text(`
46
+ `))}})}function Ak(n,t,r){let o=n.resolve(t),a=o.index();return o.parent.canReplaceWith(a,a+1,r)}function _k(n,t,r,o,a){let l=n.doc.nodeAt(t);if(!l)throw new RangeError("No node at given position");r||(r=l.type);let i=r.create(o,null,a||l.marks);if(l.isLeaf)return n.replaceWith(t,t+l.nodeSize,i);if(!r.validContent(l.content))throw new RangeError("Invalid content for node type "+r.name);n.step(new lt(t,t+l.nodeSize,t+1,t+l.nodeSize-1,new de(Q.from(i),0,0),1,!0))}function wn(n,t,r=1,o){let a=n.resolve(t),l=a.depth-r,i=o&&o[o.length-1]||a.parent;if(l<0||a.parent.type.spec.isolating||!a.parent.canReplace(a.index(),a.parent.childCount)||!i.type.validContent(a.parent.content.cutByIndex(a.index(),a.parent.childCount)))return!1;for(let d=a.depth-1,u=r-2;d>l;d--,u--){let h=a.node(d),f=a.index(d);if(h.type.spec.isolating)return!1;let p=h.content.cutByIndex(f,h.childCount),m=o&&o[u+1];m&&(p=p.replaceChild(0,m.type.create(m.attrs)));let w=o&&o[u]||h;if(!h.canReplace(f+1,h.childCount)||!w.type.validContent(p))return!1}let c=a.indexAfter(l),s=o&&o[0];return a.node(l).canReplaceWith(c,c,s?s.type:a.node(l+1).type)}function Nk(n,t,r=1,o){let a=n.doc.resolve(t),l=Q.empty,i=Q.empty;for(let c=a.depth,s=a.depth-r,d=r-1;c>s;c--,d--){l=Q.from(a.node(c).copy(l));let u=o&&o[d];i=Q.from(u?u.type.create(u.attrs,i):a.node(c).copy(i))}n.step(new at(t,t,new de(l.append(i),r,r),!0))}function Sn(n,t){let r=n.resolve(t),o=r.index();return h2(r.nodeBefore,r.nodeAfter)&&r.parent.canReplace(o,o+1)}function Zk(n,t){t.content.size||n.type.compatibleContent(t.type);let r=n.contentMatchAt(n.childCount),{linebreakReplacement:o}=n.type.schema;for(let a=0;a<t.childCount;a++){let l=t.child(a),i=l.type==o?n.type.schema.nodes.text:l.type;if(r=r.matchType(i),!r||!n.type.allowsMarks(l.marks))return!1}return r.validEnd}function h2(n,t){return!!(n&&t&&!n.isLeaf&&Zk(n,t))}function ta(n,t,r=-1){let o=n.resolve(t);for(let a=o.depth;;a--){let l,i,c=o.index(a);if(a==o.depth?(l=o.nodeBefore,i=o.nodeAfter):r>0?(l=o.node(a+1),c++,i=o.node(a).maybeChild(c)):(l=o.node(a).maybeChild(c-1),i=o.node(a+1)),l&&!l.isTextblock&&h2(l,i)&&o.node(a).canReplace(c,c+1))return t;if(a==0)break;t=r<0?o.before(a):o.after(a)}}function Sk(n,t,r){let o=null,{linebreakReplacement:a}=n.doc.type.schema,l=n.doc.resolve(t-r),i=l.node().type;if(a&&i.inlineContent){let u=i.whitespace=="pre",h=!!i.contentMatch.matchType(a);u&&!h?o=!1:!u&&h&&(o=!0)}let c=n.steps.length;if(o===!1){let u=n.doc.resolve(t+r);u2(n,u.node(),u.before(),c)}i.inlineContent&&y5(n,t+r-1,i,l.node().contentMatchAt(l.index()),o==null);let s=n.mapping.slice(c),d=s.map(t-r);if(n.step(new at(d,s.map(t+r,-1),de.empty,!0)),o===!0){let u=n.doc.resolve(d);d2(n,u.node(),u.before(),n.steps.length)}return n}function $k(n,t,r){let o=n.resolve(t);if(o.parent.canReplaceWith(o.index(),o.index(),r))return t;if(o.parentOffset==0)for(let a=o.depth-1;a>=0;a--){let l=o.index(a);if(o.node(a).canReplaceWith(l,l,r))return o.before(a+1);if(l>0)return null}if(o.parentOffset==o.parent.content.size)for(let a=o.depth-1;a>=0;a--){let l=o.indexAfter(a);if(o.node(a).canReplaceWith(l,l,r))return o.after(a+1);if(l<o.node(a).childCount)return null}return null}function p2(n,t,r){let o=n.resolve(t);if(!r.content.size)return t;let a=r.content;for(let l=0;l<r.openStart;l++)a=a.firstChild.content;for(let l=1;l<=(r.openStart==0&&r.size?2:1);l++)for(let i=o.depth;i>=0;i--){let c=i==o.depth?0:o.pos<=(o.start(i+1)+o.end(i+1))/2?-1:1,s=o.index(i)+(c>0?1:0),d=o.node(i),u=!1;if(l==1)u=d.canReplace(s,s,a);else{let h=d.contentMatchAt(s).findWrapping(a.firstChild.type);u=h&&d.canReplaceWith(s,s,h[0])}if(u)return c==0?o.pos:c<0?o.before(i+1):o.after(i+1)}return null}function na(n,t,r=t,o=de.empty){if(t==r&&!o.size)return null;let a=n.resolve(t),l=n.resolve(r);return f2(a,l,o)?new at(t,r,o):new Ik(a,l,o).fit()}function f2(n,t,r){return!r.openStart&&!r.openEnd&&n.start()==t.start()&&n.parent.canReplace(n.index(),t.index(),r.content)}class Ik{constructor(t,r,o){this.$from=t,this.$to=r,this.unplaced=o,this.frontier=[],this.placed=Q.empty;for(let a=0;a<=t.depth;a++){let l=t.node(a);this.frontier.push({type:l.type,match:l.contentMatchAt(t.indexAfter(a))})}for(let a=t.depth;a>0;a--)this.placed=Q.from(t.node(a).copy(this.placed))}get depth(){return this.frontier.length-1}fit(){for(;this.unplaced.size;){let d=this.findFittable();d?this.placeNodes(d):this.openMore()||this.dropNode()}let t=this.mustMoveInline(),r=this.placed.size-this.depth-this.$from.depth,o=this.$from,a=this.close(t<0?this.$to:o.doc.resolve(t));if(!a)return null;let l=this.placed,i=o.depth,c=a.depth;for(;i&&c&&l.childCount==1;)l=l.firstChild.content,i--,c--;let s=new de(l,i,c);return t>-1?new lt(o.pos,t,this.$to.pos,this.$to.end(),s,r):s.size||o.pos!=this.$to.pos?new at(o.pos,a.pos,s):null}findFittable(){let t=this.unplaced.openStart;for(let r=this.unplaced.content,o=0,a=this.unplaced.openEnd;o<t;o++){let l=r.firstChild;if(r.childCount>1&&(a=0),l.type.spec.isolating&&a<=o){t=o;break}r=l.content}for(let r=1;r<=2;r++)for(let o=r==1?t:this.unplaced.openStart;o>=0;o--){let a,l=null;o?(l=E5(this.unplaced.content,o-1).firstChild,a=l.content):a=this.unplaced.content;let i=a.firstChild;for(let c=this.depth;c>=0;c--){let{type:s,match:d}=this.frontier[c],u,h=null;if(r==1&&(i?d.matchType(i.type)||(h=d.fillBefore(Q.from(i),!1)):l&&s.compatibleContent(l.type)))return{sliceDepth:o,frontierDepth:c,parent:l,inject:h};if(r==2&&i&&(u=d.findWrapping(i.type)))return{sliceDepth:o,frontierDepth:c,parent:l,wrap:u};if(l&&d.matchType(l.type))break}}}openMore(){let{content:t,openStart:r,openEnd:o}=this.unplaced,a=E5(t,r);return!a.childCount||a.firstChild.isLeaf?!1:(this.unplaced=new de(t,r+1,Math.max(o,a.size+r>=t.size-o?r+1:0)),!0)}dropNode(){let{content:t,openStart:r,openEnd:o}=this.unplaced,a=E5(t,r);if(a.childCount<=1&&r>0){let l=t.size-r<=r+a.size;this.unplaced=new de(Dr(t,r-1,1),r-1,l?r-1:o)}else this.unplaced=new de(Dr(t,r,1),r,o)}placeNodes({sliceDepth:t,frontierDepth:r,parent:o,inject:a,wrap:l}){for(;this.depth>r;)this.closeFrontierNode();if(l)for(let w=0;w<l.length;w++)this.openFrontierNode(l[w]);let i=this.unplaced,c=o?o.content:i.content,s=i.openStart-t,d=0,u=[],{match:h,type:f}=this.frontier[r];if(a){for(let w=0;w<a.childCount;w++)u.push(a.child(w));h=h.matchFragment(a)}let p=c.size+t-(i.content.size-i.openEnd);for(;d<c.childCount;){let w=c.child(d),g=h.matchType(w.type);if(!g)break;d++,(d>1||s==0||w.content.size)&&(h=g,u.push(m2(w.mark(f.allowedMarks(w.marks)),d==1?s:0,d==c.childCount?p:-1)))}let m=d==c.childCount;m||(p=-1),this.placed=Pr(this.placed,r,Q.from(u)),this.frontier[r].match=h,m&&p<0&&o&&o.type==this.frontier[this.depth].type&&this.frontier.length>1&&this.closeFrontierNode();for(let w=0,g=c;w<p;w++){let k=g.lastChild;this.frontier.push({type:k.type,match:k.contentMatchAt(k.childCount)}),g=k.content}this.unplaced=m?t==0?de.empty:new de(Dr(i.content,t-1,1),t-1,p<0?i.openEnd:t-1):new de(Dr(i.content,t,d),i.openStart,i.openEnd)}mustMoveInline(){if(!this.$to.parent.isTextblock)return-1;let t=this.frontier[this.depth],r;if(!t.type.isTextblock||!b5(this.$to,this.$to.depth,t.type,t.match,!1)||this.$to.depth==this.depth&&(r=this.findCloseLevel(this.$to))&&r.depth==this.depth)return-1;let{depth:o}=this.$to,a=this.$to.after(o);for(;o>1&&a==this.$to.end(--o);)++a;return a}findCloseLevel(t){e:for(let r=Math.min(this.depth,t.depth);r>=0;r--){let{match:o,type:a}=this.frontier[r],l=r<t.depth&&t.end(r+1)==t.pos+(t.depth-(r+1)),i=b5(t,r,a,o,l);if(i){for(let c=r-1;c>=0;c--){let{match:s,type:d}=this.frontier[c],u=b5(t,c,d,s,!0);if(!u||u.childCount)continue e}return{depth:r,fit:i,move:l?t.doc.resolve(t.after(r+1)):t}}}}close(t){let r=this.findCloseLevel(t);if(!r)return null;for(;this.depth>r.depth;)this.closeFrontierNode();r.fit.childCount&&(this.placed=Pr(this.placed,r.depth,r.fit)),t=r.move;for(let o=r.depth+1;o<=t.depth;o++){let a=t.node(o),l=a.type.contentMatch.fillBefore(a.content,!0,t.index(o));this.openFrontierNode(a.type,a.attrs,l)}return t}openFrontierNode(t,r=null,o){let a=this.frontier[this.depth];a.match=a.match.matchType(t),this.placed=Pr(this.placed,this.depth,Q.from(t.create(r,o))),this.frontier.push({type:t,match:t.contentMatch})}closeFrontierNode(){let r=this.frontier.pop().match.fillBefore(Q.empty,!0);r.childCount&&(this.placed=Pr(this.placed,this.frontier.length,r))}}function Dr(n,t,r){return t==0?n.cutByIndex(r,n.childCount):n.replaceChild(0,n.firstChild.copy(Dr(n.firstChild.content,t-1,r)))}function Pr(n,t,r){return t==0?n.append(r):n.replaceChild(n.childCount-1,n.lastChild.copy(Pr(n.lastChild.content,t-1,r)))}function E5(n,t){for(let r=0;r<t;r++)n=n.firstChild.content;return n}function m2(n,t,r){if(t<=0)return n;let o=n.content;return t>1&&(o=o.replaceChild(0,m2(o.firstChild,t-1,o.childCount==1?r-1:0))),t>0&&(o=n.type.contentMatch.fillBefore(o).append(o),r<=0&&(o=o.append(n.type.contentMatch.matchFragment(o).fillBefore(Q.empty,!0)))),n.copy(o)}function b5(n,t,r,o,a){let l=n.node(t),i=a?n.indexAfter(t):n.index(t);if(i==l.childCount&&!r.compatibleContent(l.type))return null;let c=o.fillBefore(l.content,!0,i);return c&&!Hk(r,l.content,i)?c:null}function Hk(n,t,r){for(let o=r;o<t.childCount;o++)if(!n.allowsMarks(t.child(o).marks))return!0;return!1}function Tk(n){return n.spec.defining||n.spec.definingForContent}function Lk(n,t,r,o){if(!o.size)return n.deleteRange(t,r);let a=n.doc.resolve(t),l=n.doc.resolve(r);if(f2(a,l,o))return n.step(new at(t,r,o));let i=g2(a,l);i[i.length-1]==0&&i.pop();let c=-(a.depth+1);i.unshift(c);for(let f=a.depth,p=a.pos-1;f>0;f--,p--){let m=a.node(f).type.spec;if(m.defining||m.definingAsContext||m.isolating)break;i.indexOf(f)>-1?c=f:a.before(f)==p&&i.splice(1,0,-f)}let s=i.indexOf(c),d=[],u=o.openStart;for(let f=o.content,p=0;;p++){let m=f.firstChild;if(d.push(m),p==o.openStart)break;f=m.content}for(let f=u-1;f>=0;f--){let p=d[f],m=Tk(p.type);if(m&&!p.sameMarkup(a.node(Math.abs(c)-1)))u=f;else if(m||!p.type.isTextblock)break}for(let f=o.openStart;f>=0;f--){let p=(f+u+1)%(o.openStart+1),m=d[p];if(m)for(let w=0;w<i.length;w++){let g=i[(w+s)%i.length],k=!0;g<0&&(k=!1,g=-g);let x=a.node(g-1),v=a.index(g-1);if(x.canReplaceWith(v,v,m.type,m.marks))return n.replace(a.before(g),k?l.after(g):r,new de(w2(o.content,0,o.openStart,p),p,o.openEnd))}}let h=n.steps.length;for(let f=i.length-1;f>=0&&(n.replace(t,r,o),!(n.steps.length>h));f--){let p=i[f];p<0||(t=a.before(p),r=l.after(p))}}function w2(n,t,r,o,a){if(t<r){let l=n.firstChild;n=n.replaceChild(0,l.copy(w2(l.content,t+1,r,o,l)))}if(t>o){let l=a.contentMatchAt(0),i=l.fillBefore(n).append(n);n=i.append(l.matchFragment(i).fillBefore(Q.empty,!0))}return n}function Dk(n,t,r,o){if(!o.isInline&&t==r&&n.doc.resolve(t).parent.content.size){let a=$k(n.doc,t,o.type);a!=null&&(t=r=a)}n.replaceRange(t,r,new de(Q.from(o),0,0))}function Pk(n,t,r){let o=n.doc.resolve(t),a=n.doc.resolve(r),l=g2(o,a);for(let i=0;i<l.length;i++){let c=l[i],s=i==l.length-1;if(s&&c==0||o.node(c).type.contentMatch.validEnd)return n.delete(o.start(c),a.end(c));if(c>0&&(s||o.node(c-1).canReplace(o.index(c-1),a.indexAfter(c-1))))return n.delete(o.before(c),a.after(c))}for(let i=1;i<=o.depth&&i<=a.depth;i++)if(t-o.start(i)==o.depth-i&&r>o.end(i)&&a.end(i)-r!=a.depth-i&&o.start(i-1)==a.start(i-1)&&o.node(i-1).canReplace(o.index(i-1),a.index(i-1)))return n.delete(o.before(i),r);n.delete(t,r)}function g2(n,t){let r=[],o=Math.min(n.depth,t.depth);for(let a=o;a>=0;a--){let l=n.start(a);if(l<n.pos-(n.depth-a)||t.end(a)>t.pos+(t.depth-a)||n.node(a).type.spec.isolating||t.node(a).type.spec.isolating)break;(l==t.start(a)||a==n.depth&&a==t.depth&&n.parent.inlineContent&&t.parent.inlineContent&&a&&t.start(a-1)==l-1)&&r.push(a)}return r}class q0 extends pt{constructor(t,r,o){super(),this.pos=t,this.attr=r,this.value=o}apply(t){let r=t.nodeAt(this.pos);if(!r)return Qe.fail("No node at attribute step's position");let o=Object.create(null);for(let l in r.attrs)o[l]=r.attrs[l];o[this.attr]=this.value;let a=r.type.create(o,null,r.marks);return Qe.fromReplace(t,this.pos,this.pos+1,new de(Q.from(a),0,r.isLeaf?0:1))}getMap(){return Ct.empty}invert(t){return new q0(this.pos,this.attr,t.nodeAt(this.pos).attrs[this.attr])}map(t){let r=t.mapResult(this.pos,1);return r.deletedAfter?null:new q0(r.pos,this.attr,this.value)}toJSON(){return{stepType:"attr",pos:this.pos,attr:this.attr,value:this.value}}static fromJSON(t,r){if(typeof r.pos!="number"||typeof r.attr!="string")throw new RangeError("Invalid input for AttrStep.fromJSON");return new q0(r.pos,r.attr,r.value)}}pt.jsonID("attr",q0);class Or extends pt{constructor(t,r){super(),this.attr=t,this.value=r}apply(t){let r=Object.create(null);for(let a in t.attrs)r[a]=t.attrs[a];r[this.attr]=this.value;let o=t.type.create(r,t.content,t.marks);return Qe.ok(o)}getMap(){return Ct.empty}invert(t){return new Or(this.attr,t.attrs[this.attr])}map(t){return this}toJSON(){return{stepType:"docAttr",attr:this.attr,value:this.value}}static fromJSON(t,r){if(typeof r.attr!="string")throw new RangeError("Invalid input for DocAttrStep.fromJSON");return new Or(r.attr,r.value)}}pt.jsonID("docAttr",Or);let Y0=class extends Error{};Y0=function n(t){let r=Error.call(this,t);return r.__proto__=n.prototype,r},Y0.prototype=Object.create(Error.prototype),Y0.prototype.constructor=Y0,Y0.prototype.name="TransformError";class k2{constructor(t){this.doc=t,this.steps=[],this.docs=[],this.mapping=new Lr}get before(){return this.docs.length?this.docs[0]:this.doc}step(t){let r=this.maybeStep(t);if(r.failed)throw new Y0(r.failed);return this}maybeStep(t){let r=t.apply(this.doc);return r.failed||this.addStep(t,r.doc),r}get docChanged(){return this.steps.length>0}changedRange(){let t=1e9,r=-1e9;for(let o=0;o<this.mapping.maps.length;o++){let a=this.mapping.maps[o];o&&(t=a.map(t,1),r=a.map(r,-1)),a.forEach((l,i,c,s)=>{t=Math.min(t,c),r=Math.max(r,s)})}return t==1e9?null:{from:t,to:r}}addStep(t,r){this.docs.push(this.doc),this.steps.push(t),this.mapping.appendMap(t.getMap()),this.doc=r}replace(t,r=t,o=de.empty){let a=na(this.doc,t,r,o);return a&&this.step(a),this}replaceWith(t,r,o){return this.replace(t,r,new de(Q.from(o),0,0))}delete(t,r){return this.replace(t,r,de.empty)}insert(t,r){return this.replaceWith(t,t,r)}replaceRange(t,r,o){return Lk(this,t,r,o),this}replaceRangeWith(t,r,o){return Dk(this,t,r,o),this}deleteRange(t,r){return Pk(this,t,r),this}lift(t,r){return Ek(this,t,r),this}join(t,r=1){return Sk(this,t,r),this}wrap(t,r){return Mk(this,t,r),this}setBlockType(t,r=t,o,a=null){return Vk(this,t,r,o,a),this}setNodeMarkup(t,r,o=null,a){return _k(this,t,r,o,a),this}setNodeAttribute(t,r,o){return this.step(new q0(t,r,o)),this}setDocAttribute(t,r){return this.step(new Or(t,r)),this}addNodeMark(t,r){return this.step(new Zn(t,r)),this}removeNodeMark(t,r){let o=this.doc.nodeAt(t);if(!o)throw new RangeError("No node at position "+t);if(r instanceof Pe)r.isInSet(o.marks)&&this.step(new s0(t,r));else{let a=o.marks,l,i=[];for(;l=r.isInSet(a);)i.push(new s0(t,l)),a=l.removeFromSet(a);for(let c=i.length-1;c>=0;c--)this.step(i[c])}return this}split(t,r=1,o){return Nk(this,t,r,o),this}addMark(t,r,o){return vk(this,t,r,o),this}removeMark(t,r,o){return yk(this,t,r,o),this}clearIncompatible(t,r,o){return y5(this,t,r,o),this}}const C5=Object.create(null);class Ee{constructor(t,r,o){this.$anchor=t,this.$head=r,this.ranges=o||[new x2(t.min(r),t.max(r))]}get anchor(){return this.$anchor.pos}get head(){return this.$head.pos}get from(){return this.$from.pos}get to(){return this.$to.pos}get $from(){return this.ranges[0].$from}get $to(){return this.ranges[0].$to}get empty(){let t=this.ranges;for(let r=0;r<t.length;r++)if(t[r].$from.pos!=t[r].$to.pos)return!1;return!0}content(){return this.$from.doc.slice(this.from,this.to,!0)}replace(t,r=de.empty){let o=r.content.lastChild,a=null;for(let c=0;c<r.openEnd;c++)a=o,o=o.lastChild;let l=t.steps.length,i=this.ranges;for(let c=0;c<i.length;c++){let{$from:s,$to:d}=i[c],u=t.mapping.slice(l);t.replaceRange(u.map(s.pos),u.map(d.pos),c?de.empty:r),c==0&&B2(t,l,(o?o.isInline:a&&a.isTextblock)?-1:1)}}replaceWith(t,r){let o=t.steps.length,a=this.ranges;for(let l=0;l<a.length;l++){let{$from:i,$to:c}=a[l],s=t.mapping.slice(o),d=s.map(i.pos),u=s.map(c.pos);l?t.deleteRange(d,u):(t.replaceRangeWith(d,u,r),B2(t,o,r.isInline?-1:1))}}static findFrom(t,r,o=!1){let a=t.parent.inlineContent?new ke(t):K0(t.node(0),t.parent,t.pos,t.index(),r,o);if(a)return a;for(let l=t.depth-1;l>=0;l--){let i=r<0?K0(t.node(0),t.node(l),t.before(l+1),t.index(l),r,o):K0(t.node(0),t.node(l),t.after(l+1),t.index(l)+1,r,o);if(i)return i}return null}static near(t,r=1){return this.findFrom(t,r)||this.findFrom(t,-r)||new Mt(t.node(0))}static atStart(t){return K0(t,t,0,0,1)||new Mt(t)}static atEnd(t){return K0(t,t,t.content.size,t.childCount,-1)||new Mt(t)}static fromJSON(t,r){if(!r||!r.type)throw new RangeError("Invalid input for Selection.fromJSON");let o=C5[r.type];if(!o)throw new RangeError(`No selection type ${r.type} defined`);return o.fromJSON(t,r)}static jsonID(t,r){if(t in C5)throw new RangeError("Duplicate use of selection JSON ID "+t);return C5[t]=r,r.prototype.jsonID=t,r}getBookmark(){return ke.between(this.$anchor,this.$head).getBookmark()}}Ee.prototype.visible=!0;class x2{constructor(t,r){this.$from=t,this.$to=r}}let v2=!1;function y2(n){!v2&&!n.parent.inlineContent&&(v2=!0,console.warn("TextSelection endpoint not pointing into a node with inline content ("+n.parent.type.name+")"))}class ke extends Ee{constructor(t,r=t){y2(t),y2(r),super(t,r)}get $cursor(){return this.$anchor.pos==this.$head.pos?this.$head:null}map(t,r){let o=t.resolve(r.map(this.head));if(!o.parent.inlineContent)return Ee.near(o);let a=t.resolve(r.map(this.anchor));return new ke(a.parent.inlineContent?a:o,o)}replace(t,r=de.empty){if(super.replace(t,r),r==de.empty){let o=this.$from.marksAcross(this.$to);o&&t.ensureMarks(o)}}eq(t){return t instanceof ke&&t.anchor==this.anchor&&t.head==this.head}getBookmark(){return new ra(this.anchor,this.head)}toJSON(){return{type:"text",anchor:this.anchor,head:this.head}}static fromJSON(t,r){if(typeof r.anchor!="number"||typeof r.head!="number")throw new RangeError("Invalid input for TextSelection.fromJSON");return new ke(t.resolve(r.anchor),t.resolve(r.head))}static create(t,r,o=r){let a=t.resolve(r);return new this(a,o==r?a:t.resolve(o))}static between(t,r,o){let a=t.pos-r.pos;if((!o||a)&&(o=a>=0?1:-1),!r.parent.inlineContent){let l=Ee.findFrom(r,o,!0)||Ee.findFrom(r,-o,!0);if(l)r=l.$head;else return Ee.near(r,o)}return t.parent.inlineContent||(a==0?t=r:(t=(Ee.findFrom(t,-o,!0)||Ee.findFrom(t,o,!0)).$anchor,t.pos<r.pos!=a<0&&(t=r))),new ke(t,r)}}Ee.jsonID("text",ke);class ra{constructor(t,r){this.anchor=t,this.head=r}map(t){return new ra(t.map(this.anchor),t.map(this.head))}resolve(t){return ke.between(t.resolve(this.anchor),t.resolve(this.head))}}class ge extends Ee{constructor(t){let r=t.nodeAfter,o=t.node(0).resolve(t.pos+r.nodeSize);super(t,o),this.node=r}map(t,r){let{deleted:o,pos:a}=r.mapResult(this.anchor),l=t.resolve(a);return o?Ee.near(l):new ge(l)}content(){return new de(Q.from(this.node),0,0)}eq(t){return t instanceof ge&&t.anchor==this.anchor}toJSON(){return{type:"node",anchor:this.anchor}}getBookmark(){return new M5(this.anchor)}static fromJSON(t,r){if(typeof r.anchor!="number")throw new RangeError("Invalid input for NodeSelection.fromJSON");return new ge(t.resolve(r.anchor))}static create(t,r){return new ge(t.resolve(r))}static isSelectable(t){return!t.isText&&t.type.spec.selectable!==!1}}ge.prototype.visible=!1,Ee.jsonID("node",ge);class M5{constructor(t){this.anchor=t}map(t){let{deleted:r,pos:o}=t.mapResult(this.anchor);return r?new ra(o,o):new M5(o)}resolve(t){let r=t.resolve(this.anchor),o=r.nodeAfter;return o&&ge.isSelectable(o)?new ge(r):Ee.near(r)}}class Mt extends Ee{constructor(t){super(t.resolve(0),t.resolve(t.content.size))}replace(t,r=de.empty){if(r==de.empty){t.delete(0,t.doc.content.size);let o=Ee.atStart(t.doc);o.eq(t.selection)||t.setSelection(o)}else super.replace(t,r)}toJSON(){return{type:"all"}}static fromJSON(t){return new Mt(t)}map(t){return new Mt(t)}eq(t){return t instanceof Mt}getBookmark(){return Ok}}Ee.jsonID("all",Mt);const Ok={map(){return this},resolve(n){return new Mt(n)}};function K0(n,t,r,o,a,l=!1){if(t.inlineContent)return ke.create(n,r);for(let i=o-(a>0?0:1);a>0?i<t.childCount:i>=0;i+=a){let c=t.child(i);if(c.isAtom){if(!l&&ge.isSelectable(c))return ge.create(n,r-(a<0?c.nodeSize:0))}else{let s=K0(n,c,r+a,a<0?c.childCount:0,a,l);if(s)return s}r+=c.nodeSize*a}return null}function B2(n,t,r){let o=n.steps.length-1;if(o<t)return;let a=n.steps[o];if(!(a instanceof at||a instanceof lt))return;let l=n.mapping.maps[o],i;l.forEach((c,s,d,u)=>{i==null&&(i=u)}),n.setSelection(Ee.near(n.doc.resolve(i),r))}function E2(n,t){return!t||!n?n:n.bind(t)}class oa{constructor(t,r,o){this.name=t,this.init=E2(r.init,o),this.apply=E2(r.apply,o)}}new oa("doc",{init(n){return n.doc||n.schema.topNodeType.createAndFill()},apply(n){return n.doc}}),new oa("selection",{init(n,t){return n.selection||Ee.atStart(t.doc)},apply(n){return n.selection}}),new oa("storedMarks",{init(n){return n.storedMarks||null},apply(n,t,r,o){return o.selection.$cursor?n.storedMarks:null}}),new oa("scrollToSelection",{init(){return 0},apply(n,t){return n.scrolledIntoView?t+1:t}});function b2(n,t,r){for(let o in n){let a=n[o];a instanceof Function?a=a.bind(t):o=="handleDOMEvents"&&(a=b2(a,t,{})),r[o]=a}return r}class Fe{constructor(t){this.spec=t,this.props={},t.props&&b2(t.props,this,this.props),this.key=t.key?t.key.key:C2("plugin")}getState(t){return t[this.key]}}const V5=Object.create(null);function C2(n){return n in V5?n+"$"+ ++V5[n]:(V5[n]=0,n+"$")}class Ue{constructor(t="key"){this.key=C2(t)}get(t){return t.config.pluginsByKey[this.key]}getState(t){return t[this.key]}}const A5=(n,t)=>n.selection.empty?!1:(t&&t(n.tr.deleteSelection().scrollIntoView()),!0);function M2(n,t){let{$cursor:r}=n.selection;return!r||(t?!t.endOfTextblock("backward",n):r.parentOffset>0)?null:r}const V2=(n,t,r)=>{let o=M2(n,r);if(!o)return!1;let a=_5(o);if(!a){let i=o.blockRange(),c=i&&W0(i);return c==null?!1:(t&&t(n.tr.lift(i,c).scrollIntoView()),!0)}let l=a.nodeBefore;if(T2(n,a,t,-1))return!0;if(o.parent.content.size==0&&(G0(l,"end")||ge.isSelectable(l)))for(let i=o.depth;;i--){let c=na(n.doc,o.before(i),o.after(i),de.empty);if(c&&c.slice.size<c.to-c.from){if(t){let s=n.tr.step(c);s.setSelection(G0(l,"end")?Ee.findFrom(s.doc.resolve(s.mapping.map(a.pos,-1)),-1):ge.create(s.doc,a.pos-l.nodeSize)),t(s.scrollIntoView())}return!0}if(i==1||o.node(i-1).childCount>1)break}return l.isAtom&&a.depth==o.depth-1?(t&&t(n.tr.delete(a.pos-l.nodeSize,a.pos).scrollIntoView()),!0):!1},Rk=(n,t,r)=>{let o=M2(n,r);if(!o)return!1;let a=_5(o);return a?A2(n,a,t):!1},zk=(n,t,r)=>{let o=N2(n,r);if(!o)return!1;let a=N5(o);return a?A2(n,a,t):!1};function A2(n,t,r){let o=t.nodeBefore,a=o,l=t.pos-1;for(;!a.isTextblock;l--){if(a.type.spec.isolating)return!1;let u=a.lastChild;if(!u)return!1;a=u}let i=t.nodeAfter,c=i,s=t.pos+1;for(;!c.isTextblock;s++){if(c.type.spec.isolating)return!1;let u=c.firstChild;if(!u)return!1;c=u}let d=na(n.doc,l,s,de.empty);if(!d||d.from!=l||d instanceof at&&d.slice.size>=s-l)return!1;if(r){let u=n.tr.step(d);u.setSelection(ke.create(u.doc,l)),r(u.scrollIntoView())}return!0}function G0(n,t,r=!1){for(let o=n;o;o=t=="start"?o.firstChild:o.lastChild){if(o.isTextblock)return!0;if(r&&o.childCount!=1)return!1}return!1}const _2=(n,t,r)=>{let{$head:o,empty:a}=n.selection,l=o;if(!a)return!1;if(o.parent.isTextblock){if(r?!r.endOfTextblock("backward",n):o.parentOffset>0)return!1;l=_5(o)}let i=l&&l.nodeBefore;return!i||!ge.isSelectable(i)?!1:(t&&t(n.tr.setSelection(ge.create(n.doc,l.pos-i.nodeSize)).scrollIntoView()),!0)};function _5(n){if(!n.parent.type.spec.isolating)for(let t=n.depth-1;t>=0;t--){if(n.index(t)>0)return n.doc.resolve(n.before(t+1));if(n.node(t).type.spec.isolating)break}return null}function N2(n,t){let{$cursor:r}=n.selection;return!r||(t?!t.endOfTextblock("forward",n):r.parentOffset<r.parent.content.size)?null:r}const Z2=(n,t,r)=>{let o=N2(n,r);if(!o)return!1;let a=N5(o);if(!a)return!1;let l=a.nodeAfter;if(T2(n,a,t,1))return!0;if(o.parent.content.size==0&&(G0(l,"start")||ge.isSelectable(l))){let i=na(n.doc,o.before(),o.after(),de.empty);if(i&&i.slice.size<i.to-i.from){if(t){let c=n.tr.step(i);c.setSelection(G0(l,"start")?Ee.findFrom(c.doc.resolve(c.mapping.map(a.pos)),1):ge.create(c.doc,c.mapping.map(a.pos))),t(c.scrollIntoView())}return!0}}return l.isAtom&&a.depth==o.depth-1?(t&&t(n.tr.delete(a.pos,a.pos+l.nodeSize).scrollIntoView()),!0):!1},S2=(n,t,r)=>{let{$head:o,empty:a}=n.selection,l=o;if(!a)return!1;if(o.parent.isTextblock){if(r?!r.endOfTextblock("forward",n):o.parentOffset<o.parent.content.size)return!1;l=N5(o)}let i=l&&l.nodeAfter;return!i||!ge.isSelectable(i)?!1:(t&&t(n.tr.setSelection(ge.create(n.doc,l.pos)).scrollIntoView()),!0)};function N5(n){if(!n.parent.type.spec.isolating)for(let t=n.depth-1;t>=0;t--){let r=n.node(t);if(n.index(t)+1<r.childCount)return n.doc.resolve(n.after(t+1));if(r.type.spec.isolating)break}return null}const jk=(n,t)=>{let r=n.selection,o=r instanceof ge,a;if(o){if(r.node.isTextblock||!Sn(n.doc,r.from))return!1;a=r.from}else if(a=ta(n.doc,r.from,-1),a==null)return!1;if(t){let l=n.tr.join(a);o&&l.setSelection(ge.create(l.doc,a-n.doc.resolve(a).nodeBefore.nodeSize)),t(l.scrollIntoView())}return!0},Fk=(n,t)=>{let r=n.selection,o;if(r instanceof ge){if(r.node.isTextblock||!Sn(n.doc,r.to))return!1;o=r.to}else if(o=ta(n.doc,r.to,1),o==null)return!1;return t&&t(n.tr.join(o).scrollIntoView()),!0},Uk=(n,t)=>{let{$from:r,$to:o}=n.selection,a=r.blockRange(o),l=a&&W0(a);return l==null?!1:(t&&t(n.tr.lift(a,l).scrollIntoView()),!0)},$2=(n,t)=>{let{$head:r,$anchor:o}=n.selection;return!r.parent.type.spec.code||!r.sameParent(o)?!1:(t&&t(n.tr.insertText(`
47
+ `).scrollIntoView()),!0)};function Z5(n){for(let t=0;t<n.edgeCount;t++){let{type:r}=n.edge(t);if(r.isTextblock&&!r.hasRequiredAttrs())return r}return null}const Wk=(n,t)=>{let{$head:r,$anchor:o}=n.selection;if(!r.parent.type.spec.code||!r.sameParent(o))return!1;let a=r.node(-1),l=r.indexAfter(-1),i=Z5(a.contentMatchAt(l));if(!i||!a.canReplaceWith(l,l,i))return!1;if(t){let c=r.after(),s=n.tr.replaceWith(c,c,i.createAndFill());s.setSelection(Ee.near(s.doc.resolve(c),1)),t(s.scrollIntoView())}return!0},I2=(n,t)=>{let r=n.selection,{$from:o,$to:a}=r;if(r instanceof Mt||o.parent.inlineContent||a.parent.inlineContent)return!1;let l=Z5(a.parent.contentMatchAt(a.indexAfter()));if(!l||!l.isTextblock)return!1;if(t){let i=(!o.parentOffset&&a.index()<a.parent.childCount?o:a).pos,c=n.tr.insert(i,l.createAndFill());c.setSelection(ke.create(c.doc,i+1)),t(c.scrollIntoView())}return!0},H2=(n,t)=>{let{$cursor:r}=n.selection;if(!r||r.parent.content.size)return!1;if(r.depth>1&&r.after()!=r.end(-1)){let l=r.before();if(wn(n.doc,l))return t&&t(n.tr.split(l).scrollIntoView()),!0}let o=r.blockRange(),a=o&&W0(o);return a==null?!1:(t&&t(n.tr.lift(o,a).scrollIntoView()),!0)};function qk(n){return(t,r)=>{let{$from:o,$to:a}=t.selection;if(t.selection instanceof ge&&t.selection.node.isBlock)return!o.parentOffset||!wn(t.doc,o.pos)?!1:(r&&r(t.tr.split(o.pos).scrollIntoView()),!0);if(!o.depth)return!1;let l=[],i,c,s=!1,d=!1;for(let p=o.depth;;p--)if(o.node(p).isBlock){s=o.end(p)==o.pos+(o.depth-p),d=o.start(p)==o.pos-(o.depth-p),c=Z5(o.node(p-1).contentMatchAt(o.indexAfter(p-1))),l.unshift(s&&c?{type:c}:null),i=p;break}else{if(p==1)return!1;l.unshift(null)}let u=t.tr;(t.selection instanceof ke||t.selection instanceof Mt)&&u.deleteSelection();let h=u.mapping.map(o.pos),f=wn(u.doc,h,l.length,l);if(f||(l[0]=c?{type:c}:null,f=wn(u.doc,h,l.length,l)),!f)return!1;if(u.split(h,l.length,l),!s&&d&&o.node(i).type!=c){let p=u.mapping.map(o.before(i)),m=u.doc.resolve(p);c&&o.node(i-1).canReplaceWith(m.index(),m.index()+1,c)&&u.setNodeMarkup(u.mapping.map(o.before(i)),c)}return r&&r(u.scrollIntoView()),!0}}const Yk=qk(),Kk=(n,t)=>{let{$from:r,to:o}=n.selection,a,l=r.sharedDepth(o);return l==0?!1:(a=r.before(l),t&&t(n.tr.setSelection(ge.create(n.doc,a))),!0)};function Gk(n,t,r){let o=t.nodeBefore,a=t.nodeAfter,l=t.index();return!o||!a||!o.type.compatibleContent(a.type)?!1:!o.content.size&&t.parent.canReplace(l-1,l)?(r&&r(n.tr.delete(t.pos-o.nodeSize,t.pos).scrollIntoView()),!0):!t.parent.canReplace(l,l+1)||!(a.isTextblock||Sn(n.doc,t.pos))?!1:(r&&r(n.tr.join(t.pos).scrollIntoView()),!0)}function T2(n,t,r,o){let a=t.nodeBefore,l=t.nodeAfter,i,c,s=a.type.spec.isolating||l.type.spec.isolating;if(!s&&Gk(n,t,r))return!0;let d=!s&&t.parent.canReplace(t.index(),t.index()+1);if(d&&(i=(c=a.contentMatchAt(a.childCount)).findWrapping(l.type))&&c.matchType(i[0]||l.type).validEnd){if(r){let p=t.pos+l.nodeSize,m=Q.empty;for(let k=i.length-1;k>=0;k--)m=Q.from(i[k].create(null,m));m=Q.from(a.copy(m));let w=n.tr.step(new lt(t.pos-1,p,t.pos,p,new de(m,1,0),i.length,!0)),g=w.doc.resolve(p+2*i.length);g.nodeAfter&&g.nodeAfter.type==a.type&&Sn(w.doc,g.pos)&&w.join(g.pos),r(w.scrollIntoView())}return!0}let u=l.type.spec.isolating||o>0&&s?null:Ee.findFrom(t,1),h=u&&u.$from.blockRange(u.$to),f=h&&W0(h);if(f!=null&&f>=t.depth)return r&&r(n.tr.lift(h,f).scrollIntoView()),!0;if(d&&G0(l,"start",!0)&&G0(a,"end")){let p=a,m=[];for(;m.push(p),!p.isTextblock;)p=p.lastChild;let w=l,g=1;for(;!w.isTextblock;w=w.firstChild)g++;if(p.canReplace(p.childCount,p.childCount,w.content)){if(r){let k=Q.empty;for(let v=m.length-1;v>=0;v--)k=Q.from(m[v].copy(k));let x=n.tr.step(new lt(t.pos-m.length,t.pos+l.nodeSize,t.pos+g,t.pos+l.nodeSize-g,new de(k,m.length,0),0,!0));r(x.scrollIntoView())}return!0}}return!1}function L2(n){return function(t,r){let o=t.selection,a=n<0?o.$from:o.$to,l=a.depth;for(;a.node(l).isInline;){if(!l)return!1;l--}return a.node(l).isTextblock?(r&&r(t.tr.setSelection(ke.create(t.doc,n<0?a.start(l):a.end(l)))),!0):!1}}const Jk=L2(-1),Xk=L2(1);function Qk(n,t=null){return function(r,o){let{$from:a,$to:l}=r.selection,i=a.blockRange(l),c=i&&B5(i,n,t);return c?(o&&o(r.tr.wrap(i,c).scrollIntoView()),!0):!1}}function D2(n,t=null){return function(r,o){let a=!1;for(let l=0;l<r.selection.ranges.length&&!a;l++){let{$from:{pos:i},$to:{pos:c}}=r.selection.ranges[l];r.doc.nodesBetween(i,c,(s,d)=>{if(a)return!1;if(!(!s.isTextblock||s.hasMarkup(n,t)))if(s.type==n)a=!0;else{let u=r.doc.resolve(d),h=u.index();a=u.parent.canReplaceWith(h,h+1,n)}})}if(!a)return!1;if(o){let l=r.tr;for(let i=0;i<r.selection.ranges.length;i++){let{$from:{pos:c},$to:{pos:s}}=r.selection.ranges[i];l.setBlockType(c,s,n,t)}o(l.scrollIntoView())}return!0}}function S5(...n){return function(t,r,o){for(let a=0;a<n.length;a++)if(n[a](t,r,o))return!0;return!1}}S5(A5,V2,_2),S5(A5,Z2,S2),S5($2,I2,H2,Yk),typeof navigator<"u"?/Mac|iP(hone|[oa]d)/.test(navigator.platform):typeof os<"u"&&os.platform&&os.platform()=="darwin";function ex(n,t=null){return function(r,o){let{$from:a,$to:l}=r.selection,i=a.blockRange(l);if(!i)return!1;let c=o?r.tr:null;return tx(c,i,n,t)?(o&&o(c.scrollIntoView()),!0):!1}}function tx(n,t,r,o=null){let a=!1,l=t,i=t.$from.doc;if(t.depth>=2&&t.$from.node(t.depth-1).type.compatibleContent(r)&&t.startIndex==0){if(t.$from.index(t.depth-1)==0)return!1;let s=i.resolve(t.start-2);l=new Yo(s,s,t.depth),t.endIndex<t.parent.childCount&&(t=new Yo(t.$from,i.resolve(t.$to.end(t.depth)),t.depth)),a=!0}let c=B5(l,r,o,t);return c?(n&&nx(n,t,c,a,r),!0):!1}function nx(n,t,r,o,a){let l=Q.empty;for(let u=r.length-1;u>=0;u--)l=Q.from(r[u].type.create(r[u].attrs,l));n.step(new lt(t.start-(o?2:0),t.end,t.start,t.end,new de(l,0,0),r.length,!0));let i=0;for(let u=0;u<r.length;u++)r[u].type==a&&(i=u+1);let c=r.length-i,s=t.start+r.length-(o?2:0),d=t.parent;for(let u=t.startIndex,h=t.endIndex,f=!0;u<h;u++,f=!1)!f&&wn(n.doc,s,c)&&(n.split(s,c),s+=2*c),s+=d.child(u).nodeSize;return n}function rx(n){return function(t,r){let{$from:o,$to:a}=t.selection,l=o.blockRange(a,i=>i.childCount>0&&i.firstChild.type==n);return l?r?o.node(l.depth-1).type==n?ox(t,r,n,l):ax(t,r,l):!0:!1}}function ox(n,t,r,o){let a=n.tr,l=o.end,i=o.$to.end(o.depth);l<i&&(a.step(new lt(l-1,i,l,i,new de(Q.from(r.create(null,o.parent.copy())),1,0),1,!0)),o=new Yo(a.doc.resolve(o.$from.pos),a.doc.resolve(i),o.depth));const c=W0(o);if(c==null)return!1;a.lift(o,c);let s=a.doc.resolve(a.mapping.map(l,-1)-1);return Sn(a.doc,s.pos)&&s.nodeBefore.type==s.nodeAfter.type&&a.join(s.pos),t(a.scrollIntoView()),!0}function ax(n,t,r){let o=n.tr,a=r.parent;for(let p=r.end,m=r.endIndex-1,w=r.startIndex;m>w;m--)p-=a.child(m).nodeSize,o.delete(p-1,p+1);let l=o.doc.resolve(r.start),i=l.nodeAfter;if(o.mapping.map(r.end)!=r.start+l.nodeAfter.nodeSize)return!1;let c=r.startIndex==0,s=r.endIndex==a.childCount,d=l.node(-1),u=l.index(-1);if(!d.canReplace(u+(c?0:1),u+1,i.content.append(s?Q.empty:Q.from(a))))return!1;let h=l.pos,f=h+i.nodeSize;return o.step(new lt(h-(c?1:0),f+(s?1:0),h+1,f-1,new de((c?Q.empty:Q.from(a.copy(Q.empty))).append(s?Q.empty:Q.from(a.copy(Q.empty))),c?0:1,s?0:1),c?0:1)),t(o.scrollIntoView()),!0}function lx(n){return function(t,r){let{$from:o,$to:a}=t.selection,l=o.blockRange(a,d=>d.childCount>0&&d.firstChild.type==n);if(!l)return!1;let i=l.startIndex;if(i==0)return!1;let c=l.parent,s=c.child(i-1);if(s.type!=n)return!1;if(r){let d=s.lastChild&&s.lastChild.type==c.type,u=Q.from(d?n.create():null),h=new de(Q.from(n.create(null,Q.from(c.type.create(null,u)))),d?3:1,0),f=l.start,p=l.end;r(t.tr.step(new lt(f-(d?3:1),p,f,p,h,1,!0)).scrollIntoView())}return!0}}const d0=function(n){for(var t=0;;t++)if(n=n.previousSibling,!n)return t},P2=function(n,t,r,o){return r&&(O2(n,t,r,o,-1)||O2(n,t,r,o,1))},ix=/^(img|br|input|textarea|hr)$/i;function O2(n,t,r,o,a){for(var l;;){if(n==r&&t==o)return!0;if(t==(a<0?0:aa(n))){let i=n.parentNode;if(!i||i.nodeType!=1||$5(n)||ix.test(n.nodeName)||n.contentEditable=="false")return!1;t=d0(n)+(a<0?0:1),n=i}else if(n.nodeType==1){let i=n.childNodes[t+(a<0?-1:0)];if(i.nodeType==1&&i.contentEditable=="false")if(!((l=i.pmViewDesc)===null||l===void 0)&&l.ignoreForSelection)t+=a;else return!1;else n=i,t=a<0?aa(n):0}else return!1}}function aa(n){return n.nodeType==3?n.nodeValue.length:n.childNodes.length}function cx(n,t,r){for(let o=t==0,a=t==aa(n);o||a;){if(n==r)return!0;let l=d0(n);if(n=n.parentNode,!n)return!1;o=o&&l==0,a=a&&l==aa(n)}}function $5(n){let t;for(let r=n;r&&!(t=r.pmViewDesc);r=r.parentNode);return t&&t.node&&t.node.isBlock&&(t.dom==n||t.contentDOM==n)}const R2=function(n){return n.focusNode&&P2(n.focusNode,n.focusOffset,n.anchorNode,n.anchorOffset)};function z2(n,t){let r=document.createEvent("Event");return r.initEvent("keydown",!0,!0),r.keyCode=n,r.key=r.code=t,r}const ln=typeof navigator<"u"?navigator:null,j2=typeof document<"u"?document:null,$n=ln&&ln.userAgent||"",I5=/Edge\/(\d+)/.exec($n),F2=/MSIE \d/.exec($n),H5=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec($n),Rr=!!(F2||H5||I5),U2=F2?document.documentMode:H5?+H5[1]:I5?+I5[1]:0,la=!Rr&&/gecko\/(\d+)/i.test($n);la&&+(/Firefox\/(\d+)/.exec($n)||[0,0])[1];const T5=!Rr&&/Chrome\/(\d+)/.exec($n),gn=!!T5,W2=T5?+T5[1]:0,u0=!Rr&&!!ln&&/Apple Computer/.test(ln.vendor),L5=u0&&(/Mobile\/\w+/.test($n)||!!ln&&ln.maxTouchPoints>2),$t=L5||(ln?/Mac/.test(ln.platform):!1),q2=ln?/Win/.test(ln.platform):!1,zr=/Android \d/.test($n),D5=!!j2&&"webkitFontSmoothing"in j2.documentElement.style,sx=D5?+(/\bAppleWebKit\/(\d+)/.exec(navigator.userAgent)||[0,0])[1]:0;function dx(n,t=null){let r=n.domSelectionRange(),o=n.state.doc;if(!r.focusNode)return null;let a=n.docView.nearestDesc(r.focusNode),l=a&&a.size==0,i=n.docView.posFromDOM(r.focusNode,r.focusOffset,1);if(i<0)return null;let c=o.resolve(i),s,d;if(R2(r)){for(s=i;a&&!a.node;)a=a.parent;let h=a.node;if(a&&h.isAtom&&ge.isSelectable(h)&&a.parent&&!(h.isInline&&cx(r.focusNode,r.focusOffset,a.dom))){let f=a.posBefore;d=new ge(i==f?c:o.resolve(f))}}else{if(r instanceof n.dom.ownerDocument.defaultView.Selection&&r.rangeCount>1){let h=i,f=i;for(let p=0;p<r.rangeCount;p++){let m=r.getRangeAt(p);h=Math.min(h,n.docView.posFromDOM(m.startContainer,m.startOffset,1)),f=Math.max(f,n.docView.posFromDOM(m.endContainer,m.endOffset,-1))}if(h<0)return null;[s,i]=f==n.state.selection.anchor?[f,h]:[h,f],c=o.resolve(i)}else s=n.docView.posFromDOM(r.anchorNode,r.anchorOffset,1);if(s<0)return null}let u=o.resolve(s);if(!d){let h=t=="pointer"||n.state.selection.head<c.pos&&!l?1:-1;d=Q2(n,u,c,h)}return d}function Y2(n){return n.editable?n.hasFocus():fx(n)&&document.activeElement&&document.activeElement.contains(n.dom)}function P5(n,t=!1){let r=n.state.selection;if(px(n,r),!!Y2(n)){if(!t&&n.input.mouseDown&&n.input.mouseDown.allowDefault&&gn){let o=n.domSelectionRange(),a=n.domObserver.currentSelection;if(o.anchorNode&&a.anchorNode&&P2(o.anchorNode,o.anchorOffset,a.anchorNode,a.anchorOffset)){n.input.mouseDown.delayedSelectionSync=!0,n.domObserver.setCurSelection();return}}if(n.domObserver.disconnectSelection(),n.cursorWrapper)hx(n);else{let{anchor:o,head:a}=r,l,i;K2&&!(r instanceof ke)&&(r.$from.parent.inlineContent||(l=G2(n,r.from)),!r.empty&&!r.$from.parent.inlineContent&&(i=G2(n,r.to))),n.docView.setSelection(o,a,n,t),K2&&(l&&J2(l),i&&J2(i)),r.visible?n.dom.classList.remove("ProseMirror-hideselection"):(n.dom.classList.add("ProseMirror-hideselection"),"onselectionchange"in document&&ux(n))}n.domObserver.setCurSelection(),n.domObserver.connectSelection()}}const K2=u0||gn&&W2<63;function G2(n,t){let{node:r,offset:o}=n.docView.domFromPos(t,0),a=o<r.childNodes.length?r.childNodes[o]:null,l=o?r.childNodes[o-1]:null;if(u0&&a&&a.contentEditable=="false")return O5(a);if((!a||a.contentEditable=="false")&&(!l||l.contentEditable=="false")){if(a)return O5(a);if(l)return O5(l)}}function O5(n){return n.contentEditable="true",u0&&n.draggable&&(n.draggable=!1,n.wasDraggable=!0),n}function J2(n){n.contentEditable="false",n.wasDraggable&&(n.draggable=!0,n.wasDraggable=null)}function ux(n){let t=n.dom.ownerDocument;t.removeEventListener("selectionchange",n.input.hideSelectionGuard);let r=n.domSelectionRange(),o=r.anchorNode,a=r.anchorOffset;t.addEventListener("selectionchange",n.input.hideSelectionGuard=()=>{(r.anchorNode!=o||r.anchorOffset!=a)&&(t.removeEventListener("selectionchange",n.input.hideSelectionGuard),setTimeout(()=>{(!Y2(n)||n.state.selection.visible)&&n.dom.classList.remove("ProseMirror-hideselection")},20))})}function hx(n){let t=n.domSelection();if(!t)return;let r=n.cursorWrapper.dom,o=r.nodeName=="IMG";o?t.collapse(r.parentNode,d0(r)+1):t.collapse(r,0),!o&&!n.state.selection.visible&&Rr&&U2<=11&&(r.disabled=!0,r.disabled=!1)}function px(n,t){if(t instanceof ge){let r=n.docView.descAt(t.from);r!=n.lastSelectedViewDesc&&(X2(n),r&&r.selectNode(),n.lastSelectedViewDesc=r)}else X2(n)}function X2(n){n.lastSelectedViewDesc&&(n.lastSelectedViewDesc.parent&&n.lastSelectedViewDesc.deselectNode(),n.lastSelectedViewDesc=void 0)}function Q2(n,t,r,o){return n.someProp("createSelectionBetween",a=>a(n,t,r))||ke.between(t,r,o)}function fx(n){let t=n.domSelectionRange();if(!t.anchorNode)return!1;try{return n.dom.contains(t.anchorNode.nodeType==3?t.anchorNode.parentNode:t.anchorNode)&&(n.editable||n.dom.contains(t.focusNode.nodeType==3?t.focusNode.parentNode:t.focusNode))}catch{return!1}}function R5(n,t){let{$anchor:r,$head:o}=n.selection,a=t>0?r.max(o):r.min(o),l=a.parent.inlineContent?a.depth?n.doc.resolve(t>0?a.after():a.before()):null:a;return l&&Ee.findFrom(l,t)}function In(n,t){return n.dispatch(n.state.tr.setSelection(t).scrollIntoView()),!0}function e7(n,t,r){let o=n.state.selection;if(o instanceof ke)if(r.indexOf("s")>-1){let{$head:a}=o,l=a.textOffset?null:t<0?a.nodeBefore:a.nodeAfter;if(!l||l.isText||!l.isLeaf)return!1;let i=n.state.doc.resolve(a.pos+l.nodeSize*(t<0?-1:1));return In(n,new ke(o.$anchor,i))}else if(o.empty){if(n.endOfTextblock(t>0?"forward":"backward")){let a=R5(n.state,t);return a&&a instanceof ge?In(n,a):!1}else if(!($t&&r.indexOf("m")>-1)){let a=o.$head,l=a.textOffset?null:t<0?a.nodeBefore:a.nodeAfter,i;if(!l||l.isText)return!1;let c=t<0?a.pos-l.nodeSize:a.pos;return l.isAtom||(i=n.docView.descAt(c))&&!i.contentDOM?ge.isSelectable(l)?In(n,new ge(t<0?n.state.doc.resolve(a.pos-l.nodeSize):a)):D5?In(n,new ke(n.state.doc.resolve(t<0?c:c+l.nodeSize))):!1:!1}}else return!1;else{if(o instanceof ge&&o.node.isInline)return In(n,new ke(t>0?o.$to:o.$from));{let a=R5(n.state,t);return a?In(n,a):!1}}}function ia(n){return n.nodeType==3?n.nodeValue.length:n.childNodes.length}function jr(n,t){let r=n.pmViewDesc;return r&&r.size==0&&(t<0||n.nextSibling||n.nodeName!="BR")}function J0(n,t){return t<0?mx(n):wx(n)}function mx(n){let t=n.domSelectionRange(),r=t.focusNode,o=t.focusOffset;if(!r)return;let a,l,i=!1;for(la&&r.nodeType==1&&o<ia(r)&&jr(r.childNodes[o],-1)&&(i=!0);;)if(o>0){if(r.nodeType!=1)break;{let c=r.childNodes[o-1];if(jr(c,-1))a=r,l=--o;else if(c.nodeType==3)r=c,o=r.nodeValue.length;else break}}else{if(t7(r))break;{let c=r.previousSibling;for(;c&&jr(c,-1);)a=r.parentNode,l=d0(c),c=c.previousSibling;if(c)r=c,o=ia(r);else{if(r=r.parentNode,r==n.dom)break;o=0}}}i?z5(n,r,o):a&&z5(n,a,l)}function wx(n){let t=n.domSelectionRange(),r=t.focusNode,o=t.focusOffset;if(!r)return;let a=ia(r),l,i;for(;;)if(o<a){if(r.nodeType!=1)break;let c=r.childNodes[o];if(jr(c,1))l=r,i=++o;else break}else{if(t7(r))break;{let c=r.nextSibling;for(;c&&jr(c,1);)l=c.parentNode,i=d0(c)+1,c=c.nextSibling;if(c)r=c,o=0,a=ia(r);else{if(r=r.parentNode,r==n.dom)break;o=a=0}}}l&&z5(n,l,i)}function t7(n){let t=n.pmViewDesc;return t&&t.node&&t.node.isBlock}function gx(n,t){for(;n&&t==n.childNodes.length&&!$5(n);)t=d0(n)+1,n=n.parentNode;for(;n&&t<n.childNodes.length;){let r=n.childNodes[t];if(r.nodeType==3)return r;if(r.nodeType==1&&r.contentEditable=="false")break;n=r,t=0}}function kx(n,t){for(;n&&!t&&!$5(n);)t=d0(n),n=n.parentNode;for(;n&&t;){let r=n.childNodes[t-1];if(r.nodeType==3)return r;if(r.nodeType==1&&r.contentEditable=="false")break;n=r,t=n.childNodes.length}}function z5(n,t,r){if(t.nodeType!=3){let l,i;(i=gx(t,r))?(t=i,r=0):(l=kx(t,r))&&(t=l,r=l.nodeValue.length)}let o=n.domSelection();if(!o)return;if(R2(o)){let l=document.createRange();l.setEnd(t,r),l.setStart(t,r),o.removeAllRanges(),o.addRange(l)}else o.extend&&o.extend(t,r);n.domObserver.setCurSelection();let{state:a}=n;setTimeout(()=>{n.state==a&&P5(n)},50)}function n7(n,t){let r=n.state.doc.resolve(t);if(!(gn||q2)&&r.parent.inlineContent){let a=n.coordsAtPos(t);if(t>r.start()){let l=n.coordsAtPos(t-1),i=(l.top+l.bottom)/2;if(i>a.top&&i<a.bottom&&Math.abs(l.left-a.left)>1)return l.left<a.left?"ltr":"rtl"}if(t<r.end()){let l=n.coordsAtPos(t+1),i=(l.top+l.bottom)/2;if(i>a.top&&i<a.bottom&&Math.abs(l.left-a.left)>1)return l.left>a.left?"ltr":"rtl"}}return getComputedStyle(n.dom).direction=="rtl"?"rtl":"ltr"}function r7(n,t,r){let o=n.state.selection;if(o instanceof ke&&!o.empty||r.indexOf("s")>-1||$t&&r.indexOf("m")>-1)return!1;let{$from:a,$to:l}=o;if(!a.parent.inlineContent||n.endOfTextblock(t<0?"up":"down")){let i=R5(n.state,t);if(i&&i instanceof ge)return In(n,i)}if(!a.parent.inlineContent){let i=t<0?a:l,c=o instanceof Mt?Ee.near(i,t):Ee.findFrom(i,t);return c?In(n,c):!1}return!1}function o7(n,t){if(!(n.state.selection instanceof ke))return!0;let{$head:r,$anchor:o,empty:a}=n.state.selection;if(!r.sameParent(o))return!0;if(!a)return!1;if(n.endOfTextblock(t>0?"forward":"backward"))return!0;let l=!r.textOffset&&(t<0?r.nodeBefore:r.nodeAfter);if(l&&!l.isText){let i=n.state.tr;return t<0?i.delete(r.pos-l.nodeSize,r.pos):i.delete(r.pos,r.pos+l.nodeSize),n.dispatch(i),!0}return!1}function a7(n,t,r){n.domObserver.stop(),t.contentEditable=r,n.domObserver.start()}function xx(n){if(!u0||n.state.selection.$head.parentOffset>0)return!1;let{focusNode:t,focusOffset:r}=n.domSelectionRange();if(t&&t.nodeType==1&&r==0&&t.firstChild&&t.firstChild.contentEditable=="false"){let o=t.firstChild;a7(n,o,"true"),setTimeout(()=>a7(n,o,"false"),20)}return!1}function vx(n){let t="";return n.ctrlKey&&(t+="c"),n.metaKey&&(t+="m"),n.altKey&&(t+="a"),n.shiftKey&&(t+="s"),t}function yx(n,t){let r=t.keyCode,o=vx(t);if(r==8||$t&&r==72&&o=="c")return o7(n,-1)||J0(n,-1);if(r==46&&!t.shiftKey||$t&&r==68&&o=="c")return o7(n,1)||J0(n,1);if(r==13||r==27)return!0;if(r==37||$t&&r==66&&o=="c"){let a=r==37?n7(n,n.state.selection.from)=="ltr"?-1:1:-1;return e7(n,a,o)||J0(n,a)}else if(r==39||$t&&r==70&&o=="c"){let a=r==39?n7(n,n.state.selection.from)=="ltr"?1:-1:1;return e7(n,a,o)||J0(n,a)}else{if(r==38||$t&&r==80&&o=="c")return r7(n,-1,o)||J0(n,-1);if(r==40||$t&&r==78&&o=="c")return xx(n)||r7(n,1,o)||J0(n,1);if(o==($t?"m":"c")&&(r==66||r==73||r==89||r==90))return!0}return!1}function l7(n,t){n.someProp("transformCopied",p=>{t=p(t,n)});let r=[],{content:o,openStart:a,openEnd:l}=t;for(;a>1&&l>1&&o.childCount==1&&o.firstChild.childCount==1;){a--,l--;let p=o.firstChild;r.push(p.type.name,p.attrs!=p.type.defaultAttrs?p.attrs:null),o=p.content}let i=n.someProp("clipboardSerializer")||Xo.fromSchema(n.state.schema),c=f7(),s=c.createElement("div");s.appendChild(i.serializeFragment(o,{document:c}));let d=s.firstChild,u,h=0;for(;d&&d.nodeType==1&&(u=h7[d.nodeName.toLowerCase()]);){for(let p=u.length-1;p>=0;p--){let m=c.createElement(u[p]);for(;s.firstChild;)m.appendChild(s.firstChild);s.appendChild(m),h++}d=s.firstChild}d&&d.nodeType==1&&d.setAttribute("data-pm-slice",`${a} ${l}${h?` -${h}`:""} ${JSON.stringify(r)}`);let f=n.someProp("clipboardTextSerializer",p=>p(t,n))||t.content.textBetween(0,t.content.size,`
48
+
49
+ `);return{dom:s,text:f,slice:t}}function i7(n,t,r,o,a){let l=a.parent.type.spec.code,i,c;if(!r&&!t)return null;let s=!!t&&(o||l||!r);if(s){if(n.someProp("transformPastedText",f=>{t=f(t,l||o,n)}),l)return c=new de(Q.from(n.state.schema.text(t.replace(/\r\n?/g,`
50
+ `))),0,0),n.someProp("transformPasted",f=>{c=f(c,n,!0)}),c;let h=n.someProp("clipboardTextParser",f=>f(t,a,o,n));if(h)c=h;else{let f=a.marks(),{schema:p}=n.state,m=Xo.fromSchema(p);i=document.createElement("div"),t.split(/(?:\r\n?|\n)+/).forEach(w=>{let g=i.appendChild(document.createElement("p"));w&&g.appendChild(m.serializeNode(p.text(w,f)))})}}else n.someProp("transformPastedHTML",h=>{r=h(r,n)}),i=Cx(r),D5&&Mx(i);let d=i&&i.querySelector("[data-pm-slice]"),u=d&&/^(\d+) (\d+)(?: -(\d+))? (.*)/.exec(d.getAttribute("data-pm-slice")||"");if(u&&u[3])for(let h=+u[3];h>0;h--){let f=i.firstChild;for(;f&&f.nodeType!=1;)f=f.nextSibling;if(!f)break;i=f}if(c||(c=(n.someProp("clipboardParser")||n.someProp("domParser")||c0.fromSchema(n.state.schema)).parseSlice(i,{preserveWhitespace:!!(s||u),context:a,ruleFromNode(f){return f.nodeName=="BR"&&!f.nextSibling&&f.parentNode&&!Bx.test(f.parentNode.nodeName)?{ignore:!0}:null}})),u)c=Vx(u7(c,+u[1],+u[2]),u[4]);else if(c=de.maxOpen(Ex(c.content,a),!0),c.openStart||c.openEnd){let h=0,f=0;for(let p=c.content.firstChild;h<c.openStart&&!p.type.spec.isolating;h++,p=p.firstChild);for(let p=c.content.lastChild;f<c.openEnd&&!p.type.spec.isolating;f++,p=p.lastChild);c=u7(c,h,f)}return n.someProp("transformPasted",h=>{c=h(c,n,s)}),c}const Bx=/^(a|abbr|acronym|b|cite|code|del|em|i|ins|kbd|label|output|q|ruby|s|samp|span|strong|sub|sup|time|u|tt|var)$/i;function Ex(n,t){if(n.childCount<2)return n;for(let r=t.depth;r>=0;r--){let a=t.node(r).contentMatchAt(t.index(r)),l,i=[];if(n.forEach(c=>{if(!i)return;let s=a.findWrapping(c.type),d;if(!s)return i=null;if(d=i.length&&l.length&&s7(s,l,c,i[i.length-1],0))i[i.length-1]=d;else{i.length&&(i[i.length-1]=d7(i[i.length-1],l.length));let u=c7(c,s);i.push(u),a=a.matchType(u.type),l=s}}),i)return Q.from(i)}return n}function c7(n,t,r=0){for(let o=t.length-1;o>=r;o--)n=t[o].create(null,Q.from(n));return n}function s7(n,t,r,o,a){if(a<n.length&&a<t.length&&n[a]==t[a]){let l=s7(n,t,r,o.lastChild,a+1);if(l)return o.copy(o.content.replaceChild(o.childCount-1,l));if(o.contentMatchAt(o.childCount).matchType(a==n.length-1?r.type:n[a+1]))return o.copy(o.content.append(Q.from(c7(r,n,a+1))))}}function d7(n,t){if(t==0)return n;let r=n.content.replaceChild(n.childCount-1,d7(n.lastChild,t-1)),o=n.contentMatchAt(n.childCount).fillBefore(Q.empty,!0);return n.copy(r.append(o))}function j5(n,t,r,o,a,l){let i=t<0?n.firstChild:n.lastChild,c=i.content;return n.childCount>1&&(l=0),a<o-1&&(c=j5(c,t,r,o,a+1,l)),a>=r&&(c=t<0?i.contentMatchAt(0).fillBefore(c,l<=a).append(c):c.append(i.contentMatchAt(i.childCount).fillBefore(Q.empty,!0))),n.replaceChild(t<0?0:n.childCount-1,i.copy(c))}function u7(n,t,r){return t<n.openStart&&(n=new de(j5(n.content,-1,t,n.openStart,0,n.openEnd),t,n.openEnd)),r<n.openEnd&&(n=new de(j5(n.content,1,r,n.openEnd,0,0),n.openStart,r)),n}const h7={thead:["table"],tbody:["table"],tfoot:["table"],caption:["table"],colgroup:["table"],col:["table","colgroup"],tr:["table","tbody"],td:["table","tbody","tr"],th:["table","tbody","tr"]};let p7=null;function f7(){return p7||(p7=document.implementation.createHTMLDocument("title"))}let F5=null;function bx(n){let t=window.trustedTypes;return t?(F5||(F5=t.defaultPolicy||t.createPolicy("ProseMirrorClipboard",{createHTML:r=>r})),F5.createHTML(n)):n}function Cx(n){let t=/^(\s*<meta [^>]*>)*/.exec(n);t&&(n=n.slice(t[0].length));let r=f7().createElement("div"),o=/<([a-z][^>\s]+)/i.exec(n),a;if((a=o&&h7[o[1].toLowerCase()])&&(n=a.map(l=>"<"+l+">").join("")+n+a.map(l=>"</"+l+">").reverse().join("")),r.innerHTML=bx(n),a)for(let l=0;l<a.length;l++)r=r.querySelector(a[l])||r;return r}function Mx(n){let t=n.querySelectorAll(gn?"span:not([class]):not([style])":"span.Apple-converted-space");for(let r=0;r<t.length;r++){let o=t[r];o.childNodes.length==1&&o.textContent==" "&&o.parentNode&&o.parentNode.replaceChild(n.ownerDocument.createTextNode(" "),o)}}function Vx(n,t){if(!n.size)return n;let r=n.content.firstChild.type.schema,o;try{o=JSON.parse(t)}catch{return n}let{content:a,openStart:l,openEnd:i}=n;for(let c=o.length-2;c>=0;c-=2){let s=r.nodes[o[c]];if(!s||s.hasRequiredAttrs())break;a=Q.from(s.create(o[c+1],a)),l++,i++}return new de(a,l,i)}const Wt={},Vt={};function Hn(n,t){n.input.lastSelectionOrigin=t,n.input.lastSelectionTime=Date.now()}Vt.keydown=(n,t)=>{let r=t;if(n.input.shiftKey=r.keyCode==16||r.shiftKey,!w7(n,r)&&(n.input.lastKeyCode=r.keyCode,n.input.lastKeyCodeTime=Date.now(),!(zr&&gn&&r.keyCode==13)))if(r.keyCode!=229&&n.domObserver.forceFlush(),L5&&r.keyCode==13&&!r.ctrlKey&&!r.altKey&&!r.metaKey){let o=Date.now();n.input.lastIOSEnter=o,n.input.lastIOSEnterFallbackTimeout=setTimeout(()=>{n.input.lastIOSEnter==o&&(n.someProp("handleKeyDown",a=>a(n,z2(13,"Enter"))),n.input.lastIOSEnter=0)},200)}else n.someProp("handleKeyDown",o=>o(n,r))||yx(n,r)?r.preventDefault():Hn(n,"key")},Vt.keyup=(n,t)=>{t.keyCode==16&&(n.input.shiftKey=!1)},Vt.keypress=(n,t)=>{let r=t;if(w7(n,r)||!r.charCode||r.ctrlKey&&!r.altKey||$t&&r.metaKey)return;if(n.someProp("handleKeyPress",a=>a(n,r))){r.preventDefault();return}let o=n.state.selection;if(!(o instanceof ke)||!o.$from.sameParent(o.$to)){let a=String.fromCharCode(r.charCode),l=()=>n.state.tr.insertText(a).scrollIntoView();!/[\r\n]/.test(a)&&!n.someProp("handleTextInput",i=>i(n,o.$from.pos,o.$to.pos,a,l))&&n.dispatch(l()),r.preventDefault()}};function ca(n){return{left:n.clientX,top:n.clientY}}function Ax(n,t){let r=t.x-n.clientX,o=t.y-n.clientY;return r*r+o*o<100}function U5(n,t,r,o,a){if(o==-1)return!1;let l=n.state.doc.resolve(o);for(let i=l.depth+1;i>0;i--)if(n.someProp(t,c=>i>l.depth?c(n,r,l.nodeAfter,l.before(i),a,!0):c(n,r,l.node(i),l.before(i),a,!1)))return!0;return!1}function X0(n,t,r){if(n.focused||n.focus(),n.state.selection.eq(t))return;let o=n.state.tr.setSelection(t);o.setMeta("pointer",!0),n.dispatch(o)}function _x(n,t){if(t==-1)return!1;let r=n.state.doc.resolve(t),o=r.nodeAfter;return o&&o.isAtom&&ge.isSelectable(o)?(X0(n,new ge(r)),!0):!1}function Nx(n,t){if(t==-1)return!1;let r=n.state.selection,o,a;r instanceof ge&&(o=r.node);let l=n.state.doc.resolve(t);for(let i=l.depth+1;i>0;i--){let c=i>l.depth?l.nodeAfter:l.node(i);if(ge.isSelectable(c)){o&&r.$from.depth>0&&i>=r.$from.depth&&l.before(r.$from.depth+1)==r.$from.pos?a=l.before(r.$from.depth):a=l.before(i);break}}return a!=null?(X0(n,ge.create(n.state.doc,a)),!0):!1}function Zx(n,t,r,o,a){return U5(n,"handleClickOn",t,r,o)||n.someProp("handleClick",l=>l(n,t,o))||(a?Nx(n,r):_x(n,r))}function Sx(n,t,r,o){return U5(n,"handleDoubleClickOn",t,r,o)||n.someProp("handleDoubleClick",a=>a(n,t,o))}function $x(n,t,r,o){return U5(n,"handleTripleClickOn",t,r,o)||n.someProp("handleTripleClick",a=>a(n,t,o))||Ix(n,r,o)}function Ix(n,t,r){if(r.button!=0)return!1;let o=n.state.doc;if(t==-1)return o.inlineContent?(X0(n,ke.create(o,0,o.content.size)),!0):!1;let a=o.resolve(t);for(let l=a.depth+1;l>0;l--){let i=l>a.depth?a.nodeAfter:a.node(l),c=a.before(l);if(i.inlineContent)X0(n,ke.create(o,c+1,c+1+i.content.size));else if(ge.isSelectable(i))X0(n,ge.create(o,c));else continue;return!0}}function W5(n){return sa(n)}const m7=$t?"metaKey":"ctrlKey";Wt.mousedown=(n,t)=>{let r=t;n.input.shiftKey=r.shiftKey;let o=W5(n),a=Date.now(),l="singleClick";a-n.input.lastClick.time<500&&Ax(r,n.input.lastClick)&&!r[m7]&&n.input.lastClick.button==r.button&&(n.input.lastClick.type=="singleClick"?l="doubleClick":n.input.lastClick.type=="doubleClick"&&(l="tripleClick")),n.input.lastClick={time:a,x:r.clientX,y:r.clientY,type:l,button:r.button};let i=n.posAtCoords(ca(r));i&&(l=="singleClick"?(n.input.mouseDown&&n.input.mouseDown.done(),n.input.mouseDown=new Hx(n,i,r,!!o)):(l=="doubleClick"?Sx:$x)(n,i.pos,i.inside,r)?r.preventDefault():Hn(n,"pointer"))};class Hx{constructor(t,r,o,a){this.view=t,this.pos=r,this.event=o,this.flushed=a,this.delayedSelectionSync=!1,this.mightDrag=null,this.startDoc=t.state.doc,this.selectNode=!!o[m7],this.allowDefault=o.shiftKey;let l,i;if(r.inside>-1)l=t.state.doc.nodeAt(r.inside),i=r.inside;else{let u=t.state.doc.resolve(r.pos);l=u.parent,i=u.depth?u.before():0}const c=a?null:o.target,s=c?t.docView.nearestDesc(c,!0):null;this.target=s&&s.nodeDOM.nodeType==1?s.nodeDOM:null;let{selection:d}=t.state;(o.button==0&&l.type.spec.draggable&&l.type.spec.selectable!==!1||d instanceof ge&&d.from<=i&&d.to>i)&&(this.mightDrag={node:l,pos:i,addAttr:!!(this.target&&!this.target.draggable),setUneditable:!!(this.target&&la&&!this.target.hasAttribute("contentEditable"))}),this.target&&this.mightDrag&&(this.mightDrag.addAttr||this.mightDrag.setUneditable)&&(this.view.domObserver.stop(),this.mightDrag.addAttr&&(this.target.draggable=!0),this.mightDrag.setUneditable&&setTimeout(()=>{this.view.input.mouseDown==this&&this.target.setAttribute("contentEditable","false")},20),this.view.domObserver.start()),t.root.addEventListener("mouseup",this.up=this.up.bind(this)),t.root.addEventListener("mousemove",this.move=this.move.bind(this)),Hn(t,"pointer")}done(){this.view.root.removeEventListener("mouseup",this.up),this.view.root.removeEventListener("mousemove",this.move),this.mightDrag&&this.target&&(this.view.domObserver.stop(),this.mightDrag.addAttr&&this.target.removeAttribute("draggable"),this.mightDrag.setUneditable&&this.target.removeAttribute("contentEditable"),this.view.domObserver.start()),this.delayedSelectionSync&&setTimeout(()=>P5(this.view)),this.view.input.mouseDown=null}up(t){if(this.done(),!this.view.dom.contains(t.target))return;let r=this.pos;this.view.state.doc!=this.startDoc&&(r=this.view.posAtCoords(ca(t))),this.updateAllowDefault(t),this.allowDefault||!r?Hn(this.view,"pointer"):Zx(this.view,r.pos,r.inside,t,this.selectNode)?t.preventDefault():t.button==0&&(this.flushed||u0&&this.mightDrag&&!this.mightDrag.node.isAtom||gn&&!this.view.state.selection.visible&&Math.min(Math.abs(r.pos-this.view.state.selection.from),Math.abs(r.pos-this.view.state.selection.to))<=2)?(X0(this.view,Ee.near(this.view.state.doc.resolve(r.pos))),t.preventDefault()):Hn(this.view,"pointer")}move(t){this.updateAllowDefault(t),Hn(this.view,"pointer"),t.buttons==0&&this.done()}updateAllowDefault(t){!this.allowDefault&&(Math.abs(this.event.x-t.clientX)>4||Math.abs(this.event.y-t.clientY)>4)&&(this.allowDefault=!0)}}Wt.touchstart=n=>{n.input.lastTouch=Date.now(),W5(n),Hn(n,"pointer")},Wt.touchmove=n=>{n.input.lastTouch=Date.now(),Hn(n,"pointer")},Wt.contextmenu=n=>W5(n);function w7(n,t){return n.composing?!0:u0&&Math.abs(t.timeStamp-n.input.compositionEndedAt)<500?(n.input.compositionEndedAt=-2e8,!0):!1}const Tx=zr?5e3:-1;Vt.compositionstart=Vt.compositionupdate=n=>{if(!n.composing){n.domObserver.flush();let{state:t}=n,r=t.selection.$to;if(t.selection instanceof ke&&(t.storedMarks||!r.textOffset&&r.parentOffset&&r.nodeBefore.marks.some(o=>o.type.spec.inclusive===!1)||gn&&q2&&Lx(n)))n.markCursor=n.state.storedMarks||r.marks(),sa(n,!0),n.markCursor=null;else if(sa(n,!t.selection.empty),la&&t.selection.empty&&r.parentOffset&&!r.textOffset&&r.nodeBefore.marks.length){let o=n.domSelectionRange();for(let a=o.focusNode,l=o.focusOffset;a&&a.nodeType==1&&l!=0;){let i=l<0?a.lastChild:a.childNodes[l-1];if(!i)break;if(i.nodeType==3){let c=n.domSelection();c&&c.collapse(i,i.nodeValue.length);break}else a=i,l=-1}}n.input.composing=!0}g7(n,Tx)};function Lx(n){let{focusNode:t,focusOffset:r}=n.domSelectionRange();if(!t||t.nodeType!=1||r>=t.childNodes.length)return!1;let o=t.childNodes[r];return o.nodeType==1&&o.contentEditable=="false"}Vt.compositionend=(n,t)=>{n.composing&&(n.input.composing=!1,n.input.compositionEndedAt=t.timeStamp,n.input.compositionPendingChanges=n.domObserver.pendingRecords().length?n.input.compositionID:0,n.input.compositionNode=null,n.input.badSafariComposition?n.domObserver.forceFlush():n.input.compositionPendingChanges&&Promise.resolve().then(()=>n.domObserver.flush()),n.input.compositionID++,g7(n,20))};function g7(n,t){clearTimeout(n.input.composingTimeout),t>-1&&(n.input.composingTimeout=setTimeout(()=>sa(n),t))}function Dx(n){for(n.composing&&(n.input.composing=!1,n.input.compositionEndedAt=Px());n.input.compositionNodes.length>0;)n.input.compositionNodes.pop().markParentsDirty()}function Px(){let n=document.createEvent("Event");return n.initEvent("event",!0,!0),n.timeStamp}function sa(n,t=!1){if(!(zr&&n.domObserver.flushingSoon>=0)){if(n.domObserver.forceFlush(),Dx(n),t||n.docView&&n.docView.dirty){let r=dx(n),o=n.state.selection;return r&&!r.eq(o)?n.dispatch(n.state.tr.setSelection(r)):(n.markCursor||t)&&!o.$from.node(o.$from.sharedDepth(o.to)).inlineContent?n.dispatch(n.state.tr.deleteSelection()):n.updateState(n.state),!0}return!1}}function Ox(n,t){if(!n.dom.parentNode)return;let r=n.dom.parentNode.appendChild(document.createElement("div"));r.appendChild(t),r.style.cssText="position: fixed; left: -10000px; top: 10px";let o=getSelection(),a=document.createRange();a.selectNodeContents(t),n.dom.blur(),o.removeAllRanges(),o.addRange(a),setTimeout(()=>{r.parentNode&&r.parentNode.removeChild(r),n.focus()},50)}const Fr=Rr&&U2<15||L5&&sx<604;Wt.copy=Vt.cut=(n,t)=>{let r=t,o=n.state.selection,a=r.type=="cut";if(o.empty)return;let l=Fr?null:r.clipboardData,i=o.content(),{dom:c,text:s}=l7(n,i);l?(r.preventDefault(),l.clearData(),l.setData("text/html",c.innerHTML),l.setData("text/plain",s)):Ox(n,c),a&&n.dispatch(n.state.tr.deleteSelection().scrollIntoView().setMeta("uiEvent","cut"))};function Rx(n){return n.openStart==0&&n.openEnd==0&&n.content.childCount==1?n.content.firstChild:null}function zx(n,t){if(!n.dom.parentNode)return;let r=n.input.shiftKey||n.state.selection.$from.parent.type.spec.code,o=n.dom.parentNode.appendChild(document.createElement(r?"textarea":"div"));r||(o.contentEditable="true"),o.style.cssText="position: fixed; left: -10000px; top: 10px",o.focus();let a=n.input.shiftKey&&n.input.lastKeyCode!=45;setTimeout(()=>{n.focus(),o.parentNode&&o.parentNode.removeChild(o),r?q5(n,o.value,null,a,t):q5(n,o.textContent,o.innerHTML,a,t)},50)}function q5(n,t,r,o,a){let l=i7(n,t,r,o,n.state.selection.$from);if(n.someProp("handlePaste",s=>s(n,a,l||de.empty)))return!0;if(!l)return!1;let i=Rx(l),c=i?n.state.tr.replaceSelectionWith(i,o):n.state.tr.replaceSelection(l);return n.dispatch(c.scrollIntoView().setMeta("paste",!0).setMeta("uiEvent","paste")),!0}function k7(n){let t=n.getData("text/plain")||n.getData("Text");if(t)return t;let r=n.getData("text/uri-list");return r?r.replace(/\r?\n/g," "):""}Vt.paste=(n,t)=>{let r=t;if(n.composing&&!zr)return;let o=Fr?null:r.clipboardData,a=n.input.shiftKey&&n.input.lastKeyCode!=45;o&&q5(n,k7(o),o.getData("text/html"),a,r)?r.preventDefault():zx(n,r)};class jx{constructor(t,r,o){this.slice=t,this.move=r,this.node=o}}const Fx=$t?"altKey":"ctrlKey";function x7(n,t){let r=n.someProp("dragCopies",o=>!o(t));return r??!t[Fx]}Wt.dragstart=(n,t)=>{let r=t,o=n.input.mouseDown;if(o&&o.done(),!r.dataTransfer)return;let a=n.state.selection,l=a.empty?null:n.posAtCoords(ca(r)),i;if(!(l&&l.pos>=a.from&&l.pos<=(a instanceof ge?a.to-1:a.to))){if(o&&o.mightDrag)i=ge.create(n.state.doc,o.mightDrag.pos);else if(r.target&&r.target.nodeType==1){let h=n.docView.nearestDesc(r.target,!0);h&&h.node.type.spec.draggable&&h!=n.docView&&(i=ge.create(n.state.doc,h.posBefore))}}let c=(i||n.state.selection).content(),{dom:s,text:d,slice:u}=l7(n,c);(!r.dataTransfer.files.length||!gn||W2>120)&&r.dataTransfer.clearData(),r.dataTransfer.setData(Fr?"Text":"text/html",s.innerHTML),r.dataTransfer.effectAllowed="copyMove",Fr||r.dataTransfer.setData("text/plain",d),n.dragging=new jx(u,x7(n,r),i)},Wt.dragend=n=>{let t=n.dragging;window.setTimeout(()=>{n.dragging==t&&(n.dragging=null)},50)},Vt.dragover=Vt.dragenter=(n,t)=>t.preventDefault(),Vt.drop=(n,t)=>{try{Ux(n,t,n.dragging)}finally{n.dragging=null}};function Ux(n,t,r){if(!t.dataTransfer)return;let o=n.posAtCoords(ca(t));if(!o)return;let a=n.state.doc.resolve(o.pos),l=r&&r.slice;l?n.someProp("transformPasted",p=>{l=p(l,n,!1)}):l=i7(n,k7(t.dataTransfer),Fr?null:t.dataTransfer.getData("text/html"),!1,a);let i=!!(r&&x7(n,t));if(n.someProp("handleDrop",p=>p(n,t,l||de.empty,i))){t.preventDefault();return}if(!l)return;t.preventDefault();let c=l?p2(n.state.doc,a.pos,l):a.pos;c==null&&(c=a.pos);let s=n.state.tr;if(i){let{node:p}=r;p?p.replace(s):s.deleteSelection()}let d=s.mapping.map(c),u=l.openStart==0&&l.openEnd==0&&l.content.childCount==1,h=s.doc;if(u?s.replaceRangeWith(d,d,l.content.firstChild):s.replaceRange(d,d,l),s.doc.eq(h))return;let f=s.doc.resolve(d);if(u&&ge.isSelectable(l.content.firstChild)&&f.nodeAfter&&f.nodeAfter.sameMarkup(l.content.firstChild))s.setSelection(new ge(f));else{let p=s.mapping.map(c);s.mapping.maps[s.mapping.maps.length-1].forEach((m,w,g,k)=>p=k),s.setSelection(Q2(n,f,s.doc.resolve(p)))}n.focus(),n.dispatch(s.setMeta("uiEvent","drop"))}Wt.focus=n=>{n.input.lastFocus=Date.now(),n.focused||(n.domObserver.stop(),n.dom.classList.add("ProseMirror-focused"),n.domObserver.start(),n.focused=!0,setTimeout(()=>{n.docView&&n.hasFocus()&&!n.domObserver.currentSelection.eq(n.domSelectionRange())&&P5(n)},20))},Wt.blur=(n,t)=>{let r=t;n.focused&&(n.domObserver.stop(),n.dom.classList.remove("ProseMirror-focused"),n.domObserver.start(),r.relatedTarget&&n.dom.contains(r.relatedTarget)&&n.domObserver.currentSelection.clear(),n.focused=!1)},Wt.beforeinput=(n,t)=>{if(gn&&zr&&t.inputType=="deleteContentBackward"){n.domObserver.flushSoon();let{domChangeCount:o}=n.input;setTimeout(()=>{if(n.input.domChangeCount!=o||(n.dom.blur(),n.focus(),n.someProp("handleKeyDown",l=>l(n,z2(8,"Backspace")))))return;let{$cursor:a}=n.state.selection;a&&a.pos>0&&n.dispatch(n.state.tr.delete(a.pos-1,a.pos).scrollIntoView())},50)}};for(let n in Vt)Wt[n]=Vt[n];function Ur(n,t){if(n==t)return!0;for(let r in n)if(n[r]!==t[r])return!1;for(let r in t)if(!(r in n))return!1;return!0}class da{constructor(t,r){this.toDOM=t,this.spec=r||h0,this.side=this.spec.side||0}map(t,r,o,a){let{pos:l,deleted:i}=t.mapResult(r.from+a,this.side<0?-1:1);return i?null:new ft(l-o,l-o,this)}valid(){return!0}eq(t){return this==t||t instanceof da&&(this.spec.key&&this.spec.key==t.spec.key||this.toDOM==t.toDOM&&Ur(this.spec,t.spec))}destroy(t){this.spec.destroy&&this.spec.destroy(t)}}class Tn{constructor(t,r){this.attrs=t,this.spec=r||h0}map(t,r,o,a){let l=t.map(r.from+a,this.spec.inclusiveStart?-1:1)-o,i=t.map(r.to+a,this.spec.inclusiveEnd?1:-1)-o;return l>=i?null:new ft(l,i,this)}valid(t,r){return r.from<r.to}eq(t){return this==t||t instanceof Tn&&Ur(this.attrs,t.attrs)&&Ur(this.spec,t.spec)}static is(t){return t.type instanceof Tn}destroy(){}}class Y5{constructor(t,r){this.attrs=t,this.spec=r||h0}map(t,r,o,a){let l=t.mapResult(r.from+a,1);if(l.deleted)return null;let i=t.mapResult(r.to+a,-1);return i.deleted||i.pos<=l.pos?null:new ft(l.pos-o,i.pos-o,this)}valid(t,r){let{index:o,offset:a}=t.content.findIndex(r.from),l;return a==r.from&&!(l=t.child(o)).isText&&a+l.nodeSize==r.to}eq(t){return this==t||t instanceof Y5&&Ur(this.attrs,t.attrs)&&Ur(this.spec,t.spec)}destroy(){}}class ft{constructor(t,r,o){this.from=t,this.to=r,this.type=o}copy(t,r){return new ft(t,r,this.type)}eq(t,r=0){return this.type.eq(t.type)&&this.from+r==t.from&&this.to+r==t.to}map(t,r,o){return this.type.map(t,this,r,o)}static widget(t,r,o){return new ft(t,t,new da(r,o))}static inline(t,r,o,a){return new ft(t,r,new Tn(o,a))}static node(t,r,o,a){return new ft(t,r,new Y5(o,a))}get spec(){return this.type.spec}get inline(){return this.type instanceof Tn}get widget(){return this.type instanceof da}}const Q0=[],h0={};class Te{constructor(t,r){this.local=t.length?t:Q0,this.children=r.length?r:Q0}static create(t,r){return r.length?ua(r,t,0,h0):gt}find(t,r,o){let a=[];return this.findInner(t??0,r??1e9,a,0,o),a}findInner(t,r,o,a,l){for(let i=0;i<this.local.length;i++){let c=this.local[i];c.from<=r&&c.to>=t&&(!l||l(c.spec))&&o.push(c.copy(c.from+a,c.to+a))}for(let i=0;i<this.children.length;i+=3)if(this.children[i]<r&&this.children[i+1]>t){let c=this.children[i]+1;this.children[i+2].findInner(t-c,r-c,o,a+c,l)}}map(t,r,o){return this==gt||t.maps.length==0?this:this.mapInner(t,r,0,0,o||h0)}mapInner(t,r,o,a,l){let i;for(let c=0;c<this.local.length;c++){let s=this.local[c].map(t,o,a);s&&s.type.valid(r,s)?(i||(i=[])).push(s):l.onRemove&&l.onRemove(this.local[c].spec)}return this.children.length?Wx(this.children,i||[],t,r,o,a,l):i?new Te(i.sort(f0),Q0):gt}add(t,r){return r.length?this==gt?Te.create(t,r):this.addInner(t,r,0):this}addInner(t,r,o){let a,l=0;t.forEach((c,s)=>{let d=s+o,u;if(u=y7(r,c,d)){for(a||(a=this.children.slice());l<a.length&&a[l]<s;)l+=3;a[l]==s?a[l+2]=a[l+2].addInner(c,u,d+1):a.splice(l,0,s,s+c.nodeSize,ua(u,c,d+1,h0)),l+=3}});let i=v7(l?B7(r):r,-o);for(let c=0;c<i.length;c++)i[c].type.valid(t,i[c])||i.splice(c--,1);return new Te(i.length?this.local.concat(i).sort(f0):this.local,a||this.children)}remove(t){return t.length==0||this==gt?this:this.removeInner(t,0)}removeInner(t,r){let o=this.children,a=this.local;for(let l=0;l<o.length;l+=3){let i,c=o[l]+r,s=o[l+1]+r;for(let u=0,h;u<t.length;u++)(h=t[u])&&h.from>c&&h.to<s&&(t[u]=null,(i||(i=[])).push(h));if(!i)continue;o==this.children&&(o=this.children.slice());let d=o[l+2].removeInner(i,c+1);d!=gt?o[l+2]=d:(o.splice(l,3),l-=3)}if(a.length){for(let l=0,i;l<t.length;l++)if(i=t[l])for(let c=0;c<a.length;c++)a[c].eq(i,r)&&(a==this.local&&(a=this.local.slice()),a.splice(c--,1))}return o==this.children&&a==this.local?this:a.length||o.length?new Te(a,o):gt}forChild(t,r){if(this==gt)return this;if(r.isLeaf)return Te.empty;let o,a;for(let c=0;c<this.children.length;c+=3)if(this.children[c]>=t){this.children[c]==t&&(o=this.children[c+2]);break}let l=t+1,i=l+r.content.size;for(let c=0;c<this.local.length;c++){let s=this.local[c];if(s.from<i&&s.to>l&&s.type instanceof Tn){let d=Math.max(l,s.from)-l,u=Math.min(i,s.to)-l;d<u&&(a||(a=[])).push(s.copy(d,u))}}if(a){let c=new Te(a.sort(f0),Q0);return o?new p0([c,o]):c}return o||gt}eq(t){if(this==t)return!0;if(!(t instanceof Te)||this.local.length!=t.local.length||this.children.length!=t.children.length)return!1;for(let r=0;r<this.local.length;r++)if(!this.local[r].eq(t.local[r]))return!1;for(let r=0;r<this.children.length;r+=3)if(this.children[r]!=t.children[r]||this.children[r+1]!=t.children[r+1]||!this.children[r+2].eq(t.children[r+2]))return!1;return!0}locals(t){return K5(this.localsInner(t))}localsInner(t){if(this==gt)return Q0;if(t.inlineContent||!this.local.some(Tn.is))return this.local;let r=[];for(let o=0;o<this.local.length;o++)this.local[o].type instanceof Tn||r.push(this.local[o]);return r}forEachSet(t){t(this)}}Te.empty=new Te([],[]),Te.removeOverlap=K5;const gt=Te.empty;class p0{constructor(t){this.members=t}map(t,r){const o=this.members.map(a=>a.map(t,r,h0));return p0.from(o)}forChild(t,r){if(r.isLeaf)return Te.empty;let o=[];for(let a=0;a<this.members.length;a++){let l=this.members[a].forChild(t,r);l!=gt&&(l instanceof p0?o=o.concat(l.members):o.push(l))}return p0.from(o)}eq(t){if(!(t instanceof p0)||t.members.length!=this.members.length)return!1;for(let r=0;r<this.members.length;r++)if(!this.members[r].eq(t.members[r]))return!1;return!0}locals(t){let r,o=!0;for(let a=0;a<this.members.length;a++){let l=this.members[a].localsInner(t);if(l.length)if(!r)r=l;else{o&&(r=r.slice(),o=!1);for(let i=0;i<l.length;i++)r.push(l[i])}}return r?K5(o?r:r.sort(f0)):Q0}static from(t){switch(t.length){case 0:return gt;case 1:return t[0];default:return new p0(t.every(r=>r instanceof Te)?t:t.reduce((r,o)=>r.concat(o instanceof Te?o:o.members),[]))}}forEachSet(t){for(let r=0;r<this.members.length;r++)this.members[r].forEachSet(t)}}function Wx(n,t,r,o,a,l,i){let c=n.slice();for(let d=0,u=l;d<r.maps.length;d++){let h=0;r.maps[d].forEach((f,p,m,w)=>{let g=w-m-(p-f);for(let k=0;k<c.length;k+=3){let x=c[k+1];if(x<0||f>x+u-h)continue;let v=c[k]+u-h;p>=v?c[k+1]=f<=v?-2:-1:f>=u&&g&&(c[k]+=g,c[k+1]+=g)}h+=g}),u=r.maps[d].map(u,-1)}let s=!1;for(let d=0;d<c.length;d+=3)if(c[d+1]<0){if(c[d+1]==-2){s=!0,c[d+1]=-1;continue}let u=r.map(n[d]+l),h=u-a;if(h<0||h>=o.content.size){s=!0;continue}let f=r.map(n[d+1]+l,-1),p=f-a,{index:m,offset:w}=o.content.findIndex(h),g=o.maybeChild(m);if(g&&w==h&&w+g.nodeSize==p){let k=c[d+2].mapInner(r,g,u+1,n[d]+l+1,i);k!=gt?(c[d]=h,c[d+1]=p,c[d+2]=k):(c[d+1]=-2,s=!0)}else s=!0}if(s){let d=qx(c,n,t,r,a,l,i),u=ua(d,o,0,i);t=u.local;for(let h=0;h<c.length;h+=3)c[h+1]<0&&(c.splice(h,3),h-=3);for(let h=0,f=0;h<u.children.length;h+=3){let p=u.children[h];for(;f<c.length&&c[f]<p;)f+=3;c.splice(f,0,u.children[h],u.children[h+1],u.children[h+2])}}return new Te(t.sort(f0),c)}function v7(n,t){if(!t||!n.length)return n;let r=[];for(let o=0;o<n.length;o++){let a=n[o];r.push(new ft(a.from+t,a.to+t,a.type))}return r}function qx(n,t,r,o,a,l,i){function c(s,d){for(let u=0;u<s.local.length;u++){let h=s.local[u].map(o,a,d);h?r.push(h):i.onRemove&&i.onRemove(s.local[u].spec)}for(let u=0;u<s.children.length;u+=3)c(s.children[u+2],s.children[u]+d+1)}for(let s=0;s<n.length;s+=3)n[s+1]==-1&&c(n[s+2],t[s]+l+1);return r}function y7(n,t,r){if(t.isLeaf)return null;let o=r+t.nodeSize,a=null;for(let l=0,i;l<n.length;l++)(i=n[l])&&i.from>r&&i.to<o&&((a||(a=[])).push(i),n[l]=null);return a}function B7(n){let t=[];for(let r=0;r<n.length;r++)n[r]!=null&&t.push(n[r]);return t}function ua(n,t,r,o){let a=[],l=!1;t.forEach((c,s)=>{let d=y7(n,c,s+r);if(d){l=!0;let u=ua(d,c,r+s+1,o);u!=gt&&a.push(s,s+c.nodeSize,u)}});let i=v7(l?B7(n):n,-r).sort(f0);for(let c=0;c<i.length;c++)i[c].type.valid(t,i[c])||(o.onRemove&&o.onRemove(i[c].spec),i.splice(c--,1));return i.length||a.length?new Te(i,a):gt}function f0(n,t){return n.from-t.from||n.to-t.to}function K5(n){let t=n;for(let r=0;r<t.length-1;r++){let o=t[r];if(o.from!=o.to)for(let a=r+1;a<t.length;a++){let l=t[a];if(l.from==o.from){l.to!=o.to&&(t==n&&(t=n.slice()),t[a]=l.copy(l.from,o.to),E7(t,a+1,l.copy(o.to,l.to)));continue}else{l.from<o.to&&(t==n&&(t=n.slice()),t[r]=o.copy(o.from,l.from),E7(t,a,o.copy(l.from,o.to)));break}}}return t}function E7(n,t,r){for(;t<n.length&&f0(r,n[t])>0;)t++;n.splice(t,0,r)}for(var Ln={8:"Backspace",9:"Tab",10:"Enter",12:"NumLock",13:"Enter",16:"Shift",17:"Control",18:"Alt",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",44:"PrintScreen",45:"Insert",46:"Delete",59:";",61:"=",91:"Meta",92:"Meta",106:"*",107:"+",108:",",109:"-",110:".",111:"/",144:"NumLock",145:"ScrollLock",160:"Shift",161:"Shift",162:"Control",163:"Control",164:"Alt",165:"Alt",173:"-",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"},ha={48:")",49:"!",50:"@",51:"#",52:"$",53:"%",54:"^",55:"&",56:"*",57:"(",59:":",61:"+",173:"_",186:":",187:"+",188:"<",189:"_",190:">",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"'},Yx=typeof navigator<"u"&&/Mac/.test(navigator.platform),Kx=typeof navigator<"u"&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent),st=0;st<10;st++)Ln[48+st]=Ln[96+st]=String(st);for(var st=1;st<=24;st++)Ln[st+111]="F"+st;for(var st=65;st<=90;st++)Ln[st]=String.fromCharCode(st+32),ha[st]=String.fromCharCode(st);for(var G5 in Ln)ha.hasOwnProperty(G5)||(ha[G5]=Ln[G5]);function Gx(n){var t=Yx&&n.metaKey&&n.shiftKey&&!n.ctrlKey&&!n.altKey||Kx&&n.shiftKey&&n.key&&n.key.length==1||n.key=="Unidentified",r=!t&&n.key||(n.shiftKey?ha:Ln)[n.keyCode]||n.key||"Unidentified";return r=="Esc"&&(r="Escape"),r=="Del"&&(r="Delete"),r=="Left"&&(r="ArrowLeft"),r=="Up"&&(r="ArrowUp"),r=="Right"&&(r="ArrowRight"),r=="Down"&&(r="ArrowDown"),r}const Jx=typeof navigator<"u"&&/Mac|iP(hone|[oa]d)/.test(navigator.platform),Xx=typeof navigator<"u"&&/Win/.test(navigator.platform);function Qx(n){let t=n.split(/-(?!$)/),r=t[t.length-1];r=="Space"&&(r=" ");let o,a,l,i;for(let c=0;c<t.length-1;c++){let s=t[c];if(/^(cmd|meta|m)$/i.test(s))i=!0;else if(/^a(lt)?$/i.test(s))o=!0;else if(/^(c|ctrl|control)$/i.test(s))a=!0;else if(/^s(hift)?$/i.test(s))l=!0;else if(/^mod$/i.test(s))Jx?i=!0:a=!0;else throw new Error("Unrecognized modifier name: "+s)}return o&&(r="Alt-"+r),a&&(r="Ctrl-"+r),i&&(r="Meta-"+r),l&&(r="Shift-"+r),r}function ev(n){let t=Object.create(null);for(let r in n)t[Qx(r)]=n[r];return t}function J5(n,t,r=!0){return t.altKey&&(n="Alt-"+n),t.ctrlKey&&(n="Ctrl-"+n),t.metaKey&&(n="Meta-"+n),r&&t.shiftKey&&(n="Shift-"+n),n}function b7(n){let t=ev(n);return function(r,o){let a=Gx(o),l,i=t[J5(a,o)];if(i&&i(r.state,r.dispatch,r))return!0;if(a.length==1&&a!=" "){if(o.shiftKey){let c=t[J5(a,o,!1)];if(c&&c(r.state,r.dispatch,r))return!0}if((o.altKey||o.metaKey||o.ctrlKey)&&!(Xx&&o.ctrlKey&&o.altKey)&&(l=Ln[o.keyCode])&&l!=a){let c=t[J5(l,o)];if(c&&c(r.state,r.dispatch,r))return!0}}return!1}}var tv=Object.defineProperty,X5=(n,t)=>{for(var r in t)tv(n,r,{get:t[r],enumerable:!0})};function C7(n){const{state:t,transaction:r}=n;let{selection:o}=r,{doc:a}=r,{storedMarks:l}=r;return{...t,apply:t.apply.bind(t),applyTransaction:t.applyTransaction.bind(t),plugins:t.plugins,schema:t.schema,reconfigure:t.reconfigure.bind(t),toJSON:t.toJSON.bind(t),get storedMarks(){return l},get selection(){return o},get doc(){return a},get tr(){return o=r.selection,a=r.doc,l=r.storedMarks,r}}}var nv=class{constructor(n){this.editor=n.editor,this.rawCommands=this.editor.extensionManager.commands,this.customState=n.state}get hasCustomState(){return!!this.customState}get state(){return this.customState||this.editor.state}get commands(){const{rawCommands:n,editor:t,state:r}=this,{view:o}=t,{tr:a}=r,l=this.buildProps(a);return Object.fromEntries(Object.entries(n).map(([i,c])=>[i,(...d)=>{const u=c(...d)(l);return!a.getMeta("preventDispatch")&&!this.hasCustomState&&o.dispatch(a),u}]))}get chain(){return()=>this.createChain()}get can(){return()=>this.createCan()}createChain(n,t=!0){const{rawCommands:r,editor:o,state:a}=this,{view:l}=o,i=[],c=!!n,s=n||a.tr,d=()=>(!c&&t&&!s.getMeta("preventDispatch")&&!this.hasCustomState&&l.dispatch(s),i.every(h=>h===!0)),u={...Object.fromEntries(Object.entries(r).map(([h,f])=>[h,(...m)=>{const w=this.buildProps(s,t),g=f(...m)(w);return i.push(g),u}])),run:d};return u}createCan(n){const{rawCommands:t,state:r}=this,o=!1,a=n||r.tr,l=this.buildProps(a,o);return{...Object.fromEntries(Object.entries(t).map(([c,s])=>[c,(...d)=>s(...d)({...l,dispatch:void 0})])),chain:()=>this.createChain(a,o)}}buildProps(n,t=!0){const{rawCommands:r,editor:o,state:a}=this,{view:l}=o,i={tr:n,editor:o,view:l,state:C7({state:a,transaction:n}),dispatch:t?()=>{}:void 0,chain:()=>this.createChain(n,t),can:()=>this.createCan(n),get commands(){return Object.fromEntries(Object.entries(r).map(([c,s])=>[c,(...d)=>s(...d)(i)]))}};return i}},M7={};X5(M7,{blur:()=>rv,clearContent:()=>ov,clearNodes:()=>av,command:()=>lv,createParagraphNear:()=>iv,cut:()=>cv,deleteCurrentNode:()=>sv,deleteNode:()=>dv,deleteRange:()=>uv,deleteSelection:()=>hv,enter:()=>pv,exitCode:()=>fv,extendMarkRange:()=>wv,first:()=>gv,focus:()=>vv,forEach:()=>yv,insertContent:()=>Bv,insertContentAt:()=>Cv,joinBackward:()=>Av,joinDown:()=>Vv,joinForward:()=>_v,joinItemBackward:()=>Nv,joinItemForward:()=>Zv,joinTextblockBackward:()=>Sv,joinTextblockForward:()=>$v,joinUp:()=>Mv,keyboardShortcut:()=>Hv,lift:()=>Tv,liftEmptyBlock:()=>Lv,liftListItem:()=>Dv,newlineInCode:()=>Pv,resetAttributes:()=>Ov,scrollIntoView:()=>Rv,selectAll:()=>zv,selectNodeBackward:()=>jv,selectNodeForward:()=>Fv,selectParentNode:()=>Uv,selectTextblockEnd:()=>Wv,selectTextblockStart:()=>qv,setContent:()=>Kv,setMark:()=>uy,setMeta:()=>hy,setNode:()=>py,setNodeSelection:()=>fy,setTextDirection:()=>my,setTextSelection:()=>wy,sinkListItem:()=>gy,splitBlock:()=>ky,splitListItem:()=>xy,toggleList:()=>vy,toggleMark:()=>yy,toggleNode:()=>By,toggleWrap:()=>Ey,undoInputRule:()=>by,unsetAllMarks:()=>Cy,unsetMark:()=>My,unsetTextDirection:()=>Vy,updateAttributes:()=>Ay,wrapIn:()=>_y,wrapInList:()=>Ny});var rv=()=>({editor:n,view:t})=>(requestAnimationFrame(()=>{var r;n.isDestroyed||(t.dom.blur(),(r=window?.getSelection())==null||r.removeAllRanges())}),!0),ov=(n=!0)=>({commands:t})=>t.setContent("",{emitUpdate:n}),av=()=>({state:n,tr:t,dispatch:r})=>{const{selection:o}=t,{ranges:a}=o;return r&&a.forEach(({$from:l,$to:i})=>{n.doc.nodesBetween(l.pos,i.pos,(c,s)=>{if(c.type.isText)return;const{doc:d,mapping:u}=t,h=d.resolve(u.map(s)),f=d.resolve(u.map(s+c.nodeSize)),p=h.blockRange(f);if(!p)return;const m=W0(p);if(c.type.isTextblock){const{defaultType:w}=h.parent.contentMatchAt(h.index());t.setNodeMarkup(p.start,w)}(m||m===0)&&t.lift(p,m)})}),!0},lv=n=>t=>n(t),iv=()=>({state:n,dispatch:t})=>I2(n,t),cv=(n,t)=>({editor:r,tr:o})=>{const{state:a}=r,l=a.doc.slice(n.from,n.to);o.deleteRange(n.from,n.to);const i=o.mapping.map(t);return o.insert(i,l.content),o.setSelection(new ke(o.doc.resolve(Math.max(i-1,0)))),!0},sv=()=>({tr:n,dispatch:t})=>{const{selection:r}=n,o=r.$anchor.node();if(o.content.size>0)return!1;const a=n.selection.$anchor;for(let l=a.depth;l>0;l-=1)if(a.node(l).type===o.type){if(t){const c=a.before(l),s=a.after(l);n.delete(c,s).scrollIntoView()}return!0}return!1};function rt(n,t){if(typeof n=="string"){if(!t.nodes[n])throw Error(`There is no node type named '${n}'. Maybe you forgot to add the extension?`);return t.nodes[n]}return n}var dv=n=>({tr:t,state:r,dispatch:o})=>{const a=rt(n,r.schema),l=t.selection.$anchor;for(let i=l.depth;i>0;i-=1)if(l.node(i).type===a){if(o){const s=l.before(i),d=l.after(i);t.delete(s,d).scrollIntoView()}return!0}return!1},uv=n=>({tr:t,dispatch:r})=>{const{from:o,to:a}=n;return r&&t.delete(o,a),!0},hv=()=>({state:n,dispatch:t})=>A5(n,t),pv=()=>({commands:n})=>n.keyboardShortcut("Enter"),fv=()=>({state:n,dispatch:t})=>Wk(n,t);function mv(n){return Object.prototype.toString.call(n)==="[object RegExp]"}function pa(n,t,r={strict:!0}){const o=Object.keys(t);return o.length?o.every(a=>r.strict?t[a]===n[a]:mv(t[a])?t[a].test(n[a]):t[a]===n[a]):!0}function V7(n,t,r={}){return n.find(o=>o.type===t&&pa(Object.fromEntries(Object.keys(r).map(a=>[a,o.attrs[a]])),r))}function A7(n,t,r={}){return!!V7(n,t,r)}function Q5(n,t,r){var o;if(!n||!t)return;let a=n.parent.childAfter(n.parentOffset);if((!a.node||!a.node.marks.some(u=>u.type===t))&&(a=n.parent.childBefore(n.parentOffset)),!a.node||!a.node.marks.some(u=>u.type===t)||(r=r||((o=a.node.marks[0])==null?void 0:o.attrs),!V7([...a.node.marks],t,r)))return;let i=a.index,c=n.start()+a.offset,s=i+1,d=c+a.node.nodeSize;for(;i>0&&A7([...n.parent.child(i-1).marks],t,r);)i-=1,c-=n.parent.child(i).nodeSize;for(;s<n.parent.childCount&&A7([...n.parent.child(s).marks],t,r);)d+=n.parent.child(s).nodeSize,s+=1;return{from:c,to:d}}function Dn(n,t){if(typeof n=="string"){if(!t.marks[n])throw Error(`There is no mark type named '${n}'. Maybe you forgot to add the extension?`);return t.marks[n]}return n}var wv=(n,t={})=>({tr:r,state:o,dispatch:a})=>{const l=Dn(n,o.schema),{doc:i,selection:c}=r,{$from:s,from:d,to:u}=c;if(a){const h=Q5(s,l,t);if(h&&h.from<=d&&h.to>=u){const f=ke.create(i,h.from,h.to);r.setSelection(f)}}return!0},gv=n=>t=>{const r=typeof n=="function"?n(t):n;for(let o=0;o<r.length;o+=1)if(r[o](t))return!0;return!1};function _7(n){return n instanceof ke}function m0(n=0,t=0,r=0){return Math.min(Math.max(n,t),r)}function kv(n,t=null){if(!t)return null;const r=Ee.atStart(n),o=Ee.atEnd(n);if(t==="start"||t===!0)return r;if(t==="end")return o;const a=r.from,l=o.to;return t==="all"?ke.create(n,m0(0,a,l),m0(n.content.size,a,l)):ke.create(n,m0(t,a,l),m0(t,a,l))}function N7(){return navigator.platform==="Android"||/android/i.test(navigator.userAgent)}function fa(){return["iPad Simulator","iPhone Simulator","iPod Simulator","iPad","iPhone","iPod"].includes(navigator.platform)||navigator.userAgent.includes("Mac")&&"ontouchend"in document}function xv(){return typeof navigator<"u"?/^((?!chrome|android).)*safari/i.test(navigator.userAgent):!1}var vv=(n=null,t={})=>({editor:r,view:o,tr:a,dispatch:l})=>{t={scrollIntoView:!0,...t};const i=()=>{(fa()||N7())&&o.dom.focus(),xv()&&!fa()&&!N7()&&o.dom.focus({preventScroll:!0}),requestAnimationFrame(()=>{r.isDestroyed||(o.focus(),t?.scrollIntoView&&r.commands.scrollIntoView())})};if(o.hasFocus()&&n===null||n===!1)return!0;if(l&&n===null&&!_7(r.state.selection))return i(),!0;const c=kv(a.doc,n)||r.state.selection,s=r.state.selection.eq(c);return l&&(s||a.setSelection(c),s&&a.storedMarks&&a.setStoredMarks(a.storedMarks),i()),!0},yv=(n,t)=>r=>n.every((o,a)=>t(o,{...r,index:a})),Bv=(n,t)=>({tr:r,commands:o})=>o.insertContentAt({from:r.selection.from,to:r.selection.to},n,t),Z7=n=>{const t=n.childNodes;for(let r=t.length-1;r>=0;r-=1){const o=t[r];o.nodeType===3&&o.nodeValue&&/^(\n\s\s|\n)$/.test(o.nodeValue)?n.removeChild(o):o.nodeType===1&&Z7(o)}return n};function ma(n){if(typeof window>"u")throw new Error("[tiptap error]: there is no window object available, so this function cannot be used");const t=`<body>${n}</body>`,r=new window.DOMParser().parseFromString(t,"text/html").body;return Z7(r)}function Wr(n,t,r){if(n instanceof l0||n instanceof Q)return n;r={slice:!0,parseOptions:{},...r};const o=typeof n=="object"&&n!==null,a=typeof n=="string";if(o)try{if(Array.isArray(n)&&n.length>0)return Q.fromArray(n.map(c=>t.nodeFromJSON(c)));const i=t.nodeFromJSON(n);return r.errorOnInvalidContent&&i.check(),i}catch(l){if(r.errorOnInvalidContent)throw new Error("[tiptap error]: Invalid JSON content",{cause:l});return console.warn("[tiptap warn]: Invalid content.","Passed value:",n,"Error:",l),Wr("",t,r)}if(a){if(r.errorOnInvalidContent){let i=!1,c="";const s=new dk({topNode:t.spec.topNode,marks:t.spec.marks,nodes:t.spec.nodes.append({__tiptap__private__unknown__catch__all__node:{content:"inline*",group:"block",parseDOM:[{tag:"*",getAttrs:d=>(i=!0,c=typeof d=="string"?d:d.outerHTML,null)}]}})});if(r.slice?c0.fromSchema(s).parseSlice(ma(n),r.parseOptions):c0.fromSchema(s).parse(ma(n),r.parseOptions),r.errorOnInvalidContent&&i)throw new Error("[tiptap error]: Invalid HTML content",{cause:new Error(`Invalid element found: ${c}`)})}const l=c0.fromSchema(t);return r.slice?l.parseSlice(ma(n),r.parseOptions).content:l.parse(ma(n),r.parseOptions)}return Wr("",t,r)}function Ev(n,t,r){const o=n.steps.length-1;if(o<t)return;const a=n.steps[o];if(!(a instanceof at||a instanceof lt))return;const l=n.mapping.maps[o];let i=0;l.forEach((c,s,d,u)=>{i===0&&(i=u)}),n.setSelection(Ee.near(n.doc.resolve(i),r))}var bv=n=>!("type"in n),Cv=(n,t,r)=>({tr:o,dispatch:a,editor:l})=>{var i;if(a){r={parseOptions:l.options.parseOptions,updateSelection:!0,applyInputRules:!1,applyPasteRules:!1,...r};let c;const s=g=>{l.emit("contentError",{editor:l,error:g,disableCollaboration:()=>{"collaboration"in l.storage&&typeof l.storage.collaboration=="object"&&l.storage.collaboration&&(l.storage.collaboration.isDisabled=!0)}})},d={preserveWhitespace:"full",...r.parseOptions};if(!r.errorOnInvalidContent&&!l.options.enableContentCheck&&l.options.emitContentError)try{Wr(t,l.schema,{parseOptions:d,errorOnInvalidContent:!0})}catch(g){s(g)}try{c=Wr(t,l.schema,{parseOptions:d,errorOnInvalidContent:(i=r.errorOnInvalidContent)!=null?i:l.options.enableContentCheck})}catch(g){return s(g),!1}let{from:u,to:h}=typeof n=="number"?{from:n,to:n}:{from:n.from,to:n.to},f=!0,p=!0;if((bv(c)?c:[c]).forEach(g=>{g.check(),f=f?g.isText&&g.marks.length===0:!1,p=p?g.isBlock:!1}),u===h&&p){const{parent:g}=o.doc.resolve(u);g.isTextblock&&!g.type.spec.code&&!g.childCount&&(u-=1,h+=1)}let w;if(f){if(Array.isArray(t))w=t.map(g=>g.text||"").join("");else if(t instanceof Q){let g="";t.forEach(k=>{k.text&&(g+=k.text)}),w=g}else typeof t=="object"&&t&&t.text?w=t.text:w=t;o.insertText(w,u,h)}else{w=c;const g=o.doc.resolve(u),k=g.node(),x=g.parentOffset===0,v=k.isText||k.isTextblock,b=k.content.size>0;x&&v&&b&&(u=Math.max(0,u-1)),o.replaceWith(u,h,w)}r.updateSelection&&Ev(o,o.steps.length-1,-1),r.applyInputRules&&o.setMeta("applyInputRules",{from:u,text:w}),r.applyPasteRules&&o.setMeta("applyPasteRules",{from:u,text:w})}return!0},Mv=()=>({state:n,dispatch:t})=>jk(n,t),Vv=()=>({state:n,dispatch:t})=>Fk(n,t),Av=()=>({state:n,dispatch:t})=>V2(n,t),_v=()=>({state:n,dispatch:t})=>Z2(n,t),Nv=()=>({state:n,dispatch:t,tr:r})=>{try{const o=ta(n.doc,n.selection.$from.pos,-1);return o==null?!1:(r.join(o,2),t&&t(r),!0)}catch{return!1}},Zv=()=>({state:n,dispatch:t,tr:r})=>{try{const o=ta(n.doc,n.selection.$from.pos,1);return o==null?!1:(r.join(o,2),t&&t(r),!0)}catch{return!1}},Sv=()=>({state:n,dispatch:t})=>Rk(n,t),$v=()=>({state:n,dispatch:t})=>zk(n,t);function S7(){return typeof navigator<"u"?/Mac/.test(navigator.platform):!1}function Iv(n){const t=n.split(/-(?!$)/);let r=t[t.length-1];r==="Space"&&(r=" ");let o,a,l,i;for(let c=0;c<t.length-1;c+=1){const s=t[c];if(/^(cmd|meta|m)$/i.test(s))i=!0;else if(/^a(lt)?$/i.test(s))o=!0;else if(/^(c|ctrl|control)$/i.test(s))a=!0;else if(/^s(hift)?$/i.test(s))l=!0;else if(/^mod$/i.test(s))fa()||S7()?i=!0:a=!0;else throw new Error(`Unrecognized modifier name: ${s}`)}return o&&(r=`Alt-${r}`),a&&(r=`Ctrl-${r}`),i&&(r=`Meta-${r}`),l&&(r=`Shift-${r}`),r}var Hv=n=>({editor:t,view:r,tr:o,dispatch:a})=>{const l=Iv(n).split(/-(?!$)/),i=l.find(d=>!["Alt","Ctrl","Meta","Shift"].includes(d)),c=new KeyboardEvent("keydown",{key:i==="Space"?" ":i,altKey:l.includes("Alt"),ctrlKey:l.includes("Ctrl"),metaKey:l.includes("Meta"),shiftKey:l.includes("Shift"),bubbles:!0,cancelable:!0}),s=t.captureTransaction(()=>{r.someProp("handleKeyDown",d=>d(r,c))});return s?.steps.forEach(d=>{const u=d.map(o.mapping);u&&a&&o.maybeStep(u)}),!0};function er(n,t,r={}){const{from:o,to:a,empty:l}=n.selection,i=t?rt(t,n.schema):null,c=[];n.doc.nodesBetween(o,a,(h,f)=>{if(h.isText)return;const p=Math.max(o,f),m=Math.min(a,f+h.nodeSize);c.push({node:h,from:p,to:m})});const s=a-o,d=c.filter(h=>i?i.name===h.node.type.name:!0).filter(h=>pa(h.node.attrs,r,{strict:!1}));return l?!!d.length:d.reduce((h,f)=>h+f.to-f.from,0)>=s}var Tv=(n,t={})=>({state:r,dispatch:o})=>{const a=rt(n,r.schema);return er(r,a,t)?Uk(r,o):!1},Lv=()=>({state:n,dispatch:t})=>H2(n,t),Dv=n=>({state:t,dispatch:r})=>{const o=rt(n,t.schema);return rx(o)(t,r)},Pv=()=>({state:n,dispatch:t})=>$2(n,t);function e1(n,t){return t.nodes[n]?"node":t.marks[n]?"mark":null}function $7(n,t){const r=typeof t=="string"?[t]:t;return Object.keys(n).reduce((o,a)=>(r.includes(a)||(o[a]=n[a]),o),{})}var Ov=(n,t)=>({tr:r,state:o,dispatch:a})=>{let l=null,i=null;const c=e1(typeof n=="string"?n:n.name,o.schema);if(!c)return!1;c==="node"&&(l=rt(n,o.schema)),c==="mark"&&(i=Dn(n,o.schema));let s=!1;return r.selection.ranges.forEach(d=>{o.doc.nodesBetween(d.$from.pos,d.$to.pos,(u,h)=>{l&&l===u.type&&(s=!0,a&&r.setNodeMarkup(h,void 0,$7(u.attrs,t))),i&&u.marks.length&&u.marks.forEach(f=>{i===f.type&&(s=!0,a&&r.addMark(h,h+u.nodeSize,i.create($7(f.attrs,t))))})})}),s},Rv=()=>({tr:n,dispatch:t})=>(t&&n.scrollIntoView(),!0),zv=()=>({tr:n,dispatch:t})=>{if(t){const r=new Mt(n.doc);n.setSelection(r)}return!0},jv=()=>({state:n,dispatch:t})=>_2(n,t),Fv=()=>({state:n,dispatch:t})=>S2(n,t),Uv=()=>({state:n,dispatch:t})=>Kk(n,t),Wv=()=>({state:n,dispatch:t})=>Xk(n,t),qv=()=>({state:n,dispatch:t})=>Jk(n,t);function Yv(n,t,r={},o={}){return Wr(n,t,{slice:!1,parseOptions:r,errorOnInvalidContent:o.errorOnInvalidContent})}var Kv=(n,{errorOnInvalidContent:t,emitUpdate:r=!0,parseOptions:o={}}={})=>({editor:a,tr:l,dispatch:i,commands:c})=>{const{doc:s}=l;if(o.preserveWhitespace!=="full"){const d=Yv(n,a.schema,o,{errorOnInvalidContent:t??a.options.enableContentCheck});return i&&l.replaceWith(0,s.content.size,d).setMeta("preventUpdate",!r),!0}return i&&l.setMeta("preventUpdate",!r),c.insertContentAt({from:0,to:s.content.size},n,{parseOptions:o,errorOnInvalidContent:t??a.options.enableContentCheck})};function I7(n,t){const r=Dn(t,n.schema),{from:o,to:a,empty:l}=n.selection,i=[];l?(n.storedMarks&&i.push(...n.storedMarks),i.push(...n.selection.$head.marks())):n.doc.nodesBetween(o,a,s=>{i.push(...s.marks)});const c=i.find(s=>s.type.name===r.name);return c?{...c.attrs}:{}}function H7(n,t){const r=new k2(n);return t.forEach(o=>{o.steps.forEach(a=>{r.step(a)})}),r}function Gv(n){for(let t=0;t<n.edgeCount;t+=1){const{type:r}=n.edge(t);if(r.isTextblock&&!r.hasRequiredAttrs())return r}return null}function Jv(n,t,r){const o=[];return n.nodesBetween(t.from,t.to,(a,l)=>{r(a)&&o.push({node:a,pos:l})}),o}function T7(n,t){for(let r=n.depth;r>0;r-=1){const o=n.node(r);if(t(o))return{pos:r>0?n.before(r):0,start:n.start(r),depth:r,node:o}}}function wa(n){return t=>T7(t.$from,n)}function w0(n,t,r){return n.config[t]===void 0&&n.parent?w0(n.parent,t,r):typeof n.config[t]=="function"?n.config[t].bind({...r,parent:n.parent?w0(n.parent,t,r):null}):n.config[t]}function Xv(n){return typeof n=="function"}function cn(n,t=void 0,...r){return Xv(n)?t?n.bind(t)(...r):n(...r):n}function L7(n){const t=n.filter(a=>a.type==="extension"),r=n.filter(a=>a.type==="node"),o=n.filter(a=>a.type==="mark");return{baseExtensions:t,nodeExtensions:r,markExtensions:o}}function Oe(...n){return n.filter(t=>!!t).reduce((t,r)=>{const o={...t};return Object.entries(r).forEach(([a,l])=>{if(!o[a]){o[a]=l;return}if(a==="class"){const c=l?String(l).split(" "):[],s=o[a]?o[a].split(" "):[],d=c.filter(u=>!s.includes(u));o[a]=[...s,...d].join(" ")}else if(a==="style"){const c=l?l.split(";").map(u=>u.trim()).filter(Boolean):[],s=o[a]?o[a].split(";").map(u=>u.trim()).filter(Boolean):[],d=new Map;s.forEach(u=>{const[h,f]=u.split(":").map(p=>p.trim());d.set(h,f)}),c.forEach(u=>{const[h,f]=u.split(":").map(p=>p.trim());d.set(h,f)}),o[a]=Array.from(d.entries()).map(([u,h])=>`${u}: ${h}`).join("; ")}else o[a]=l}),o},{})}function Qv(n,t){return t.filter(r=>r.type===n.type.name).filter(r=>r.attribute.rendered).map(r=>r.attribute.renderHTML?r.attribute.renderHTML(n.attrs)||{}:{[r.name]:n.attrs[r.name]}).reduce((r,o)=>Oe(r,o),{})}function ey(n,t,r){const{from:o,to:a}=t,{blockSeparator:l=`
51
+
52
+ `,textSerializers:i={}}=r||{};let c="";return n.nodesBetween(o,a,(s,d,u,h)=>{var f;s.isBlock&&d>o&&(c+=l);const p=i?.[s.type.name];if(p)return u&&(c+=p({node:s,pos:d,parent:u,index:h,range:t})),!1;s.isText&&(c+=(f=s?.text)==null?void 0:f.slice(Math.max(o,d)-d,a-d))}),c}function ty(n){return Object.fromEntries(Object.entries(n.nodes).filter(([,t])=>t.spec.toText).map(([t,r])=>[t,r.spec.toText]))}function ny(n,t){const r=rt(t,n.schema),{from:o,to:a}=n.selection,l=[];n.doc.nodesBetween(o,a,c=>{l.push(c)});const i=l.reverse().find(c=>c.type.name===r.name);return i?{...i.attrs}:{}}function ry(n,t){const r=e1(typeof t=="string"?t:t.name,n.schema);return r==="node"?ny(n,t):r==="mark"?I7(n,t):{}}function oy(n,t=JSON.stringify){const r={};return n.filter(o=>{const a=t(o);return Object.prototype.hasOwnProperty.call(r,a)?!1:r[a]=!0})}function ay(n){const t=oy(n);return t.length===1?t:t.filter((r,o)=>!t.filter((l,i)=>i!==o).some(l=>r.oldRange.from>=l.oldRange.from&&r.oldRange.to<=l.oldRange.to&&r.newRange.from>=l.newRange.from&&r.newRange.to<=l.newRange.to))}function D7(n){const{mapping:t,steps:r}=n,o=[];return t.maps.forEach((a,l)=>{const i=[];if(a.ranges.length)a.forEach((c,s)=>{i.push({from:c,to:s})});else{const{from:c,to:s}=r[l];if(c===void 0||s===void 0)return;i.push({from:c,to:s})}i.forEach(({from:c,to:s})=>{const d=t.slice(l).map(c,-1),u=t.slice(l).map(s),h=t.invert().map(d,-1),f=t.invert().map(u);o.push({oldRange:{from:h,to:f},newRange:{from:d,to:u}})})}),ay(o)}function t1(n,t,r){const o=[];return n===t?r.resolve(n).marks().forEach(a=>{const l=r.resolve(n),i=Q5(l,a.type);i&&o.push({mark:a,...i})}):r.nodesBetween(n,t,(a,l)=>{!a||a?.nodeSize===void 0||o.push(...a.marks.map(i=>({from:l,to:l+a.nodeSize,mark:i})))}),o}var ly=(n,t,r,o=20)=>{const a=n.doc.resolve(r);let l=o,i=null;for(;l>0&&i===null;){const c=a.node(l);c?.type.name===t?i=c:l-=1}return[i,l]};function ga(n,t,r){return Object.fromEntries(Object.entries(r).filter(([o])=>{const a=n.find(l=>l.type===t&&l.name===o);return a?a.attribute.keepOnSplit:!1}))}function iy(n,t,r={}){const{empty:o,ranges:a}=n.selection,l=t?Dn(t,n.schema):null;if(o)return!!(n.storedMarks||n.selection.$from.marks()).filter(h=>l?l.name===h.type.name:!0).find(h=>pa(h.attrs,r,{strict:!1}));let i=0;const c=[];if(a.forEach(({$from:h,$to:f})=>{const p=h.pos,m=f.pos;n.doc.nodesBetween(p,m,(w,g)=>{if(!w.isText&&!w.marks.length)return;const k=Math.max(p,g),x=Math.min(m,g+w.nodeSize),v=x-k;i+=v,c.push(...w.marks.map(b=>({mark:b,from:k,to:x})))})}),i===0)return!1;const s=c.filter(h=>l?l.name===h.mark.type.name:!0).filter(h=>pa(h.mark.attrs,r,{strict:!1})).reduce((h,f)=>h+f.to-f.from,0),d=c.filter(h=>l?h.mark.type!==l&&h.mark.type.excludes(l):!0).reduce((h,f)=>h+f.to-f.from,0);return(s>0?s+d:s)>=i}var cy=(n,t)=>{const{$from:r,$to:o,$anchor:a}=n.selection;if(t){const l=wa(c=>c.type.name===t)(n.selection);if(!l)return!1;const i=n.doc.resolve(l.pos+1);return a.pos+1===i.end()}return!(o.parentOffset<o.parent.nodeSize-2||r.pos!==o.pos)},sy=n=>{const{$from:t,$to:r}=n.selection;return!(t.parentOffset>0||t.pos!==r.pos)};function P7(n,t){const{nodeExtensions:r}=L7(t),o=r.find(i=>i.name===n);if(!o)return!1;const a={name:o.name,options:o.options,storage:o.storage},l=cn(w0(o,"group",a));return typeof l!="string"?!1:l.split(" ").includes("list")}function n1(n,{checkChildren:t=!0,ignoreWhitespace:r=!1}={}){var o;if(r){if(n.type.name==="hardBreak")return!0;if(n.isText)return/^\s*$/m.test((o=n.text)!=null?o:"")}if(n.isText)return!n.text;if(n.isAtom||n.isLeaf)return!1;if(n.content.childCount===0)return!0;if(t){let a=!0;return n.content.forEach(l=>{a!==!1&&(n1(l,{ignoreWhitespace:r,checkChildren:t})||(a=!1))}),a}return!1}function O7(n){return n instanceof ge}function dy(n,t,r){var o;const{selection:a}=t;let l=null;if(_7(a)&&(l=a.$cursor),l){const c=(o=n.storedMarks)!=null?o:l.marks();return l.parent.type.allowsMarkType(r)&&(!!r.isInSet(c)||!c.some(d=>d.type.excludes(r)))}const{ranges:i}=a;return i.some(({$from:c,$to:s})=>{let d=c.depth===0?n.doc.inlineContent&&n.doc.type.allowsMarkType(r):!1;return n.doc.nodesBetween(c.pos,s.pos,(u,h,f)=>{if(d)return!1;if(u.isInline){const p=!f||f.type.allowsMarkType(r),m=!!r.isInSet(u.marks)||!u.marks.some(w=>w.type.excludes(r));d=p&&m}return!d}),d})}var uy=(n,t={})=>({tr:r,state:o,dispatch:a})=>{const{selection:l}=r,{empty:i,ranges:c}=l,s=Dn(n,o.schema);if(a)if(i){const d=I7(o,s);r.addStoredMark(s.create({...d,...t}))}else c.forEach(d=>{const u=d.$from.pos,h=d.$to.pos;o.doc.nodesBetween(u,h,(f,p)=>{const m=Math.max(p,u),w=Math.min(p+f.nodeSize,h);f.marks.find(k=>k.type===s)?f.marks.forEach(k=>{s===k.type&&r.addMark(m,w,s.create({...k.attrs,...t}))}):r.addMark(m,w,s.create(t))})});return dy(o,r,s)},hy=(n,t)=>({tr:r})=>(r.setMeta(n,t),!0),py=(n,t={})=>({state:r,dispatch:o,chain:a})=>{const l=rt(n,r.schema);let i;return r.selection.$anchor.sameParent(r.selection.$head)&&(i=r.selection.$anchor.parent.attrs),l.isTextblock?a().command(({commands:c})=>D2(l,{...i,...t})(r)?!0:c.clearNodes()).command(({state:c})=>D2(l,{...i,...t})(c,o)).run():(console.warn('[tiptap warn]: Currently "setNode()" only supports text block nodes.'),!1)},fy=n=>({tr:t,dispatch:r})=>{if(r){const{doc:o}=t,a=m0(n,0,o.content.size),l=ge.create(o,a);t.setSelection(l)}return!0},my=(n,t)=>({tr:r,state:o,dispatch:a})=>{const{selection:l}=o;let i,c;return typeof t=="number"?(i=t,c=t):t&&"from"in t&&"to"in t?(i=t.from,c=t.to):(i=l.from,c=l.to),a&&r.doc.nodesBetween(i,c,(s,d)=>{s.isText||r.setNodeMarkup(d,void 0,{...s.attrs,dir:n})}),!0},wy=n=>({tr:t,dispatch:r})=>{if(r){const{doc:o}=t,{from:a,to:l}=typeof n=="number"?{from:n,to:n}:n,i=ke.atStart(o).from,c=ke.atEnd(o).to,s=m0(a,i,c),d=m0(l,i,c),u=ke.create(o,s,d);t.setSelection(u)}return!0},gy=n=>({state:t,dispatch:r})=>{const o=rt(n,t.schema);return lx(o)(t,r)};function R7(n,t){const r=n.storedMarks||n.selection.$to.parentOffset&&n.selection.$from.marks();if(r){const o=r.filter(a=>t?.includes(a.type.name));n.tr.ensureMarks(o)}}var ky=({keepMarks:n=!0}={})=>({tr:t,state:r,dispatch:o,editor:a})=>{const{selection:l,doc:i}=t,{$from:c,$to:s}=l,d=a.extensionManager.attributes,u=ga(d,c.node().type.name,c.node().attrs);if(l instanceof ge&&l.node.isBlock)return!c.parentOffset||!wn(i,c.pos)?!1:(o&&(n&&R7(r,a.extensionManager.splittableMarks),t.split(c.pos).scrollIntoView()),!0);if(!c.parent.isBlock)return!1;const h=s.parentOffset===s.parent.content.size,f=c.depth===0?void 0:Gv(c.node(-1).contentMatchAt(c.indexAfter(-1)));let p=h&&f?[{type:f,attrs:u}]:void 0,m=wn(t.doc,t.mapping.map(c.pos),1,p);if(!p&&!m&&wn(t.doc,t.mapping.map(c.pos),1,f?[{type:f}]:void 0)&&(m=!0,p=f?[{type:f,attrs:u}]:void 0),o){if(m&&(l instanceof ke&&t.deleteSelection(),t.split(t.mapping.map(c.pos),1,p),f&&!h&&!c.parentOffset&&c.parent.type!==f)){const w=t.mapping.map(c.before()),g=t.doc.resolve(w);c.node(-1).canReplaceWith(g.index(),g.index()+1,f)&&t.setNodeMarkup(t.mapping.map(c.before()),f)}n&&R7(r,a.extensionManager.splittableMarks),t.scrollIntoView()}return m},xy=(n,t={})=>({tr:r,state:o,dispatch:a,editor:l})=>{var i;const c=rt(n,o.schema),{$from:s,$to:d}=o.selection,u=o.selection.node;if(u&&u.isBlock||s.depth<2||!s.sameParent(d))return!1;const h=s.node(-1);if(h.type!==c)return!1;const f=l.extensionManager.attributes;if(s.parent.content.size===0&&s.node(-1).childCount===s.indexAfter(-1)){if(s.depth===2||s.node(-3).type!==c||s.index(-2)!==s.node(-2).childCount-1)return!1;if(a){let k=Q.empty;const x=s.index(-1)?1:s.index(-2)?2:3;for(let B=s.depth-x;B>=s.depth-3;B-=1)k=Q.from(s.node(B).copy(k));const v=s.indexAfter(-1)<s.node(-2).childCount?1:s.indexAfter(-2)<s.node(-3).childCount?2:3,b={...ga(f,s.node().type.name,s.node().attrs),...t},C=((i=c.contentMatch.defaultType)==null?void 0:i.createAndFill(b))||void 0;k=k.append(Q.from(c.createAndFill(null,C)||void 0));const A=s.before(s.depth-(x-1));r.replace(A,s.after(-v),new de(k,4-x,0));let y=-1;r.doc.nodesBetween(A,r.doc.content.size,(B,V)=>{if(y>-1)return!1;B.isTextblock&&B.content.size===0&&(y=V+1)}),y>-1&&r.setSelection(ke.near(r.doc.resolve(y))),r.scrollIntoView()}return!0}const p=d.pos===s.end()?h.contentMatchAt(0).defaultType:null,m={...ga(f,h.type.name,h.attrs),...t},w={...ga(f,s.node().type.name,s.node().attrs),...t};r.delete(s.pos,d.pos);const g=p?[{type:c,attrs:m},{type:p,attrs:w}]:[{type:c,attrs:m}];if(!wn(r.doc,s.pos,2))return!1;if(a){const{selection:k,storedMarks:x}=o,{splittableMarks:v}=l.extensionManager,b=x||k.$to.parentOffset&&k.$from.marks();if(r.split(s.pos,2,g).scrollIntoView(),!b||!a)return!0;const C=b.filter(A=>v.includes(A.type.name));r.ensureMarks(C)}return!0},r1=(n,t)=>{const r=wa(i=>i.type===t)(n.selection);if(!r)return!0;const o=n.doc.resolve(Math.max(0,r.pos-1)).before(r.depth);if(o===void 0)return!0;const a=n.doc.nodeAt(o);return r.node.type===a?.type&&Sn(n.doc,r.pos)&&n.join(r.pos),!0},o1=(n,t)=>{const r=wa(i=>i.type===t)(n.selection);if(!r)return!0;const o=n.doc.resolve(r.start).after(r.depth);if(o===void 0)return!0;const a=n.doc.nodeAt(o);return r.node.type===a?.type&&Sn(n.doc,o)&&n.join(o),!0},vy=(n,t,r,o={})=>({editor:a,tr:l,state:i,dispatch:c,chain:s,commands:d,can:u})=>{const{extensions:h,splittableMarks:f}=a.extensionManager,p=rt(n,i.schema),m=rt(t,i.schema),{selection:w,storedMarks:g}=i,{$from:k,$to:x}=w,v=k.blockRange(x),b=g||w.$to.parentOffset&&w.$from.marks();if(!v)return!1;const C=wa(A=>P7(A.type.name,h))(w);if(v.depth>=1&&C&&v.depth-C.depth<=1){if(C.node.type===p)return d.liftListItem(m);if(P7(C.node.type.name,h)&&p.validContent(C.node.content)&&c)return s().command(()=>(l.setNodeMarkup(C.pos,p),!0)).command(()=>r1(l,p)).command(()=>o1(l,p)).run()}return!r||!b||!c?s().command(()=>u().wrapInList(p,o)?!0:d.clearNodes()).wrapInList(p,o).command(()=>r1(l,p)).command(()=>o1(l,p)).run():s().command(()=>{const A=u().wrapInList(p,o),y=b.filter(B=>f.includes(B.type.name));return l.ensureMarks(y),A?!0:d.clearNodes()}).wrapInList(p,o).command(()=>r1(l,p)).command(()=>o1(l,p)).run()},yy=(n,t={},r={})=>({state:o,commands:a})=>{const{extendEmptyMarkRange:l=!1}=r,i=Dn(n,o.schema);return iy(o,i,t)?a.unsetMark(i,{extendEmptyMarkRange:l}):a.setMark(i,t)},By=(n,t,r={})=>({state:o,commands:a})=>{const l=rt(n,o.schema),i=rt(t,o.schema),c=er(o,l,r);let s;return o.selection.$anchor.sameParent(o.selection.$head)&&(s=o.selection.$anchor.parent.attrs),c?a.setNode(i,s):a.setNode(l,{...s,...r})},Ey=(n,t={})=>({state:r,commands:o})=>{const a=rt(n,r.schema);return er(r,a,t)?o.lift(a):o.wrapIn(a,t)},by=()=>({state:n,dispatch:t})=>{const r=n.plugins;for(let o=0;o<r.length;o+=1){const a=r[o];let l;if(a.spec.isInputRules&&(l=a.getState(n))){if(t){const i=n.tr,c=l.transform;for(let s=c.steps.length-1;s>=0;s-=1)i.step(c.steps[s].invert(c.docs[s]));if(l.text){const s=i.doc.resolve(l.from).marks();i.replaceWith(l.from,l.to,n.schema.text(l.text,s))}else i.delete(l.from,l.to)}return!0}}return!1},Cy=()=>({tr:n,dispatch:t})=>{const{selection:r}=n,{empty:o,ranges:a}=r;return o||t&&a.forEach(l=>{n.removeMark(l.$from.pos,l.$to.pos)}),!0},My=(n,t={})=>({tr:r,state:o,dispatch:a})=>{var l;const{extendEmptyMarkRange:i=!1}=t,{selection:c}=r,s=Dn(n,o.schema),{$from:d,empty:u,ranges:h}=c;if(!a)return!0;if(u&&i){let{from:f,to:p}=c;const m=(l=d.marks().find(g=>g.type===s))==null?void 0:l.attrs,w=Q5(d,s,m);w&&(f=w.from,p=w.to),r.removeMark(f,p,s)}else h.forEach(f=>{r.removeMark(f.$from.pos,f.$to.pos,s)});return r.removeStoredMark(s),!0},Vy=n=>({tr:t,state:r,dispatch:o})=>{const{selection:a}=r;let l,i;return typeof n=="number"?(l=n,i=n):n&&"from"in n&&"to"in n?(l=n.from,i=n.to):(l=a.from,i=a.to),o&&t.doc.nodesBetween(l,i,(c,s)=>{if(c.isText)return;const d={...c.attrs};delete d.dir,t.setNodeMarkup(s,void 0,d)}),!0},Ay=(n,t={})=>({tr:r,state:o,dispatch:a})=>{let l=null,i=null;const c=e1(typeof n=="string"?n:n.name,o.schema);if(!c)return!1;c==="node"&&(l=rt(n,o.schema)),c==="mark"&&(i=Dn(n,o.schema));let s=!1;return r.selection.ranges.forEach(d=>{const u=d.$from.pos,h=d.$to.pos;let f,p,m,w;r.selection.empty?o.doc.nodesBetween(u,h,(g,k)=>{l&&l===g.type&&(s=!0,m=Math.max(k,u),w=Math.min(k+g.nodeSize,h),f=k,p=g)}):o.doc.nodesBetween(u,h,(g,k)=>{k<u&&l&&l===g.type&&(s=!0,m=Math.max(k,u),w=Math.min(k+g.nodeSize,h),f=k,p=g),k>=u&&k<=h&&(l&&l===g.type&&(s=!0,a&&r.setNodeMarkup(k,void 0,{...g.attrs,...t})),i&&g.marks.length&&g.marks.forEach(x=>{if(i===x.type&&(s=!0,a)){const v=Math.max(k,u),b=Math.min(k+g.nodeSize,h);r.addMark(v,b,i.create({...x.attrs,...t}))}}))}),p&&(f!==void 0&&a&&r.setNodeMarkup(f,void 0,{...p.attrs,...t}),i&&p.marks.length&&p.marks.forEach(g=>{i===g.type&&a&&r.addMark(m,w,i.create({...g.attrs,...t}))}))}),s},_y=(n,t={})=>({state:r,dispatch:o})=>{const a=rt(n,r.schema);return Qk(a,t)(r,o)},Ny=(n,t={})=>({state:r,dispatch:o})=>{const a=rt(n,r.schema);return ex(a,t)(r,o)},ka=class{constructor(n){var t;this.find=n.find,this.handler=n.handler,this.undoable=(t=n.undoable)!=null?t:!0}};function Zy(n){return Object.prototype.toString.call(n).slice(8,-1)}function xa(n){return Zy(n)!=="Object"?!1:n.constructor===Object&&Object.getPrototypeOf(n)===Object.prototype}function z7(n,t){const r={...n};return xa(n)&&xa(t)&&Object.keys(t).forEach(o=>{xa(t[o])&&xa(n[o])?r[o]=z7(n[o],t[o]):r[o]=t[o]}),r}var a1=class{constructor(n={}){this.type="extendable",this.parent=null,this.child=null,this.name="",this.config={name:this.name},this.config={...this.config,...n},this.name=this.config.name}get options(){return{...cn(w0(this,"addOptions",{name:this.name}))||{}}}get storage(){return{...cn(w0(this,"addStorage",{name:this.name,options:this.options}))||{}}}configure(n={}){const t=this.extend({...this.config,addOptions:()=>z7(this.options,n)});return t.name=this.name,t.parent=this.parent,t}extend(n={}){const t=new this.constructor({...this.config,...n});return t.parent=this,this.child=t,t.name="name"in n?n.name:t.parent.name,t}},tr=class r3 extends a1{constructor(){super(...arguments),this.type="mark"}static create(t={}){const r=typeof t=="function"?t():t;return new r3(r)}static handleExit({editor:t,mark:r}){const{tr:o}=t.state,a=t.state.selection.$from;if(a.pos===a.end()){const i=a.marks();if(!!!i.find(d=>d?.type.name===r.name))return!1;const s=i.find(d=>d?.type.name===r.name);return s&&o.removeStoredMark(s),o.insertText(" ",a.pos),t.view.dispatch(o),!0}return!1}configure(t){return super.configure(t)}extend(t){const r=typeof t=="function"?t():t;return super.extend(r)}},Sy=class{constructor(n){this.find=n.find,this.handler=n.handler}},$y={};X5($y,{ClipboardTextSerializer:()=>Iy,Commands:()=>Hy,Delete:()=>Ty,Drop:()=>Ly,Editable:()=>Dy,FocusEvents:()=>Py,Keymap:()=>Oy,Paste:()=>Ry,Tabindex:()=>zy,TextDirection:()=>jy,focusEventsPluginKey:()=>j7});var ze=class o3 extends a1{constructor(){super(...arguments),this.type="extension"}static create(t={}){const r=typeof t=="function"?t():t;return new o3(r)}configure(t){return super.configure(t)}extend(t){const r=typeof t=="function"?t():t;return super.extend(r)}},Iy=ze.create({name:"clipboardTextSerializer",addOptions(){return{blockSeparator:void 0}},addProseMirrorPlugins(){return[new Fe({key:new Ue("clipboardTextSerializer"),props:{clipboardTextSerializer:()=>{const{editor:n}=this,{state:t,schema:r}=n,{doc:o,selection:a}=t,{ranges:l}=a,i=Math.min(...l.map(u=>u.$from.pos)),c=Math.max(...l.map(u=>u.$to.pos)),s=ty(r);return ey(o,{from:i,to:c},{...this.options.blockSeparator!==void 0?{blockSeparator:this.options.blockSeparator}:{},textSerializers:s})}}})]}}),Hy=ze.create({name:"commands",addCommands(){return{...M7}}}),Ty=ze.create({name:"delete",onUpdate({transaction:n,appendedTransactions:t}){var r,o,a;const l=()=>{var i,c,s,d;if((d=(s=(c=(i=this.editor.options.coreExtensionOptions)==null?void 0:i.delete)==null?void 0:c.filterTransaction)==null?void 0:s.call(c,n))!=null?d:n.getMeta("y-sync$"))return;const u=H7(n.before,[n,...t]);D7(u).forEach(p=>{u.mapping.mapResult(p.oldRange.from).deletedAfter&&u.mapping.mapResult(p.oldRange.to).deletedBefore&&u.before.nodesBetween(p.oldRange.from,p.oldRange.to,(m,w)=>{const g=w+m.nodeSize-2,k=p.oldRange.from<=w&&g<=p.oldRange.to;this.editor.emit("delete",{type:"node",node:m,from:w,to:g,newFrom:u.mapping.map(w),newTo:u.mapping.map(g),deletedRange:p.oldRange,newRange:p.newRange,partial:!k,editor:this.editor,transaction:n,combinedTransform:u})})});const f=u.mapping;u.steps.forEach((p,m)=>{var w,g;if(p instanceof Ut){const k=f.slice(m).map(p.from,-1),x=f.slice(m).map(p.to),v=f.invert().map(k,-1),b=f.invert().map(x),C=(w=u.doc.nodeAt(k-1))==null?void 0:w.marks.some(y=>y.eq(p.mark)),A=(g=u.doc.nodeAt(x))==null?void 0:g.marks.some(y=>y.eq(p.mark));this.editor.emit("delete",{type:"mark",mark:p.mark,from:p.from,to:p.to,deletedRange:{from:v,to:b},newRange:{from:k,to:x},partial:!!(A||C),editor:this.editor,transaction:n,combinedTransform:u})}})};(a=(o=(r=this.editor.options.coreExtensionOptions)==null?void 0:r.delete)==null?void 0:o.async)==null||a?setTimeout(l,0):l()}}),Ly=ze.create({name:"drop",addProseMirrorPlugins(){return[new Fe({key:new Ue("tiptapDrop"),props:{handleDrop:(n,t,r,o)=>{this.editor.emit("drop",{editor:this.editor,event:t,slice:r,moved:o})}}})]}}),Dy=ze.create({name:"editable",addProseMirrorPlugins(){return[new Fe({key:new Ue("editable"),props:{editable:()=>this.editor.options.editable}})]}}),j7=new Ue("focusEvents"),Py=ze.create({name:"focusEvents",addProseMirrorPlugins(){const{editor:n}=this;return[new Fe({key:j7,props:{handleDOMEvents:{focus:(t,r)=>{n.isFocused=!0;const o=n.state.tr.setMeta("focus",{event:r}).setMeta("addToHistory",!1);return t.dispatch(o),!1},blur:(t,r)=>{n.isFocused=!1;const o=n.state.tr.setMeta("blur",{event:r}).setMeta("addToHistory",!1);return t.dispatch(o),!1}}}})]}}),Oy=ze.create({name:"keymap",addKeyboardShortcuts(){const n=()=>this.editor.commands.first(({commands:i})=>[()=>i.undoInputRule(),()=>i.command(({tr:c})=>{const{selection:s,doc:d}=c,{empty:u,$anchor:h}=s,{pos:f,parent:p}=h,m=h.parent.isTextblock&&f>0?c.doc.resolve(f-1):h,w=m.parent.type.spec.isolating,g=h.pos-h.parentOffset,k=w&&m.parent.childCount===1?g===h.pos:Ee.atStart(d).from===f;return!u||!p.type.isTextblock||p.textContent.length||!k||k&&h.parent.type.name==="paragraph"?!1:i.clearNodes()}),()=>i.deleteSelection(),()=>i.joinBackward(),()=>i.selectNodeBackward()]),t=()=>this.editor.commands.first(({commands:i})=>[()=>i.deleteSelection(),()=>i.deleteCurrentNode(),()=>i.joinForward(),()=>i.selectNodeForward()]),o={Enter:()=>this.editor.commands.first(({commands:i})=>[()=>i.newlineInCode(),()=>i.createParagraphNear(),()=>i.liftEmptyBlock(),()=>i.splitBlock()]),"Mod-Enter":()=>this.editor.commands.exitCode(),Backspace:n,"Mod-Backspace":n,"Shift-Backspace":n,Delete:t,"Mod-Delete":t,"Mod-a":()=>this.editor.commands.selectAll()},a={...o},l={...o,"Ctrl-h":n,"Alt-Backspace":n,"Ctrl-d":t,"Ctrl-Alt-Backspace":t,"Alt-Delete":t,"Alt-d":t,"Ctrl-a":()=>this.editor.commands.selectTextblockStart(),"Ctrl-e":()=>this.editor.commands.selectTextblockEnd()};return fa()||S7()?l:a},addProseMirrorPlugins(){return[new Fe({key:new Ue("clearDocument"),appendTransaction:(n,t,r)=>{if(n.some(w=>w.getMeta("composition")))return;const o=n.some(w=>w.docChanged)&&!t.doc.eq(r.doc),a=n.some(w=>w.getMeta("preventClearDocument"));if(!o||a)return;const{empty:l,from:i,to:c}=t.selection,s=Ee.atStart(t.doc).from,d=Ee.atEnd(t.doc).to;if(l||!(i===s&&c===d)||!n1(r.doc))return;const f=r.tr,p=C7({state:r,transaction:f}),{commands:m}=new nv({editor:this.editor,state:p});if(m.clearNodes(),!!f.steps.length)return f}})]}}),Ry=ze.create({name:"paste",addProseMirrorPlugins(){return[new Fe({key:new Ue("tiptapPaste"),props:{handlePaste:(n,t,r)=>{this.editor.emit("paste",{editor:this.editor,event:t,slice:r})}}})]}}),zy=ze.create({name:"tabindex",addProseMirrorPlugins(){return[new Fe({key:new Ue("tabindex"),props:{attributes:()=>this.editor.isEditable?{tabindex:"0"}:{}}})]}}),jy=ze.create({name:"textDirection",addOptions(){return{direction:void 0}},addGlobalAttributes(){if(!this.options.direction)return[];const{nodeExtensions:n}=L7(this.extensions);return[{types:n.filter(t=>t.name!=="text").map(t=>t.name),attributes:{dir:{default:this.options.direction,parseHTML:t=>{const r=t.getAttribute("dir");return r&&(r==="ltr"||r==="rtl"||r==="auto")?r:this.options.direction},renderHTML:t=>t.dir?{dir:t.dir}:{}}}}]},addProseMirrorPlugins(){return[new Fe({key:new Ue("textDirection"),props:{attributes:()=>{const n=this.options.direction;return n?{dir:n}:{}}}})]}});function nr(n){return new ka({find:n.find,handler:({state:t,range:r,match:o})=>{const a=cn(n.getAttributes,void 0,o);if(a===!1||a===null)return null;const{tr:l}=t,i=o[o.length-1],c=o[0];if(i){const s=c.search(/\S/),d=r.from+c.indexOf(i),u=d+i.length;if(t1(r.from,r.to,t.doc).filter(p=>p.mark.type.excluded.find(w=>w===n.type&&w!==p.mark.type)).filter(p=>p.to>d).length)return null;u<r.to&&l.delete(u,r.to),d>r.from&&l.delete(r.from+s,d);const f=r.from+s+i.length;l.addMark(r.from+s,f,n.type.create(a||{})),l.removeStoredMark(n.type)}},undoable:n.undoable})}function Fy(n){return new ka({find:n.find,handler:({state:t,range:r,match:o})=>{const a=cn(n.getAttributes,void 0,o)||{},{tr:l}=t,i=r.from;let c=r.to;const s=n.type.create(a);if(o[1]){const d=o[0].lastIndexOf(o[1]);let u=i+d;u>c?u=c:c=u+o[1].length;const h=o[0][o[0].length-1];l.insertText(h,i+o[0].length-1),l.replaceWith(u,c,s)}else if(o[0]){const d=n.type.isInline?i:i-1;l.insert(d,n.type.create(a)).delete(l.mapping.map(i),l.mapping.map(c))}l.scrollIntoView()},undoable:n.undoable})}function l1(n){return new ka({find:n.find,handler:({state:t,range:r,match:o})=>{const a=t.doc.resolve(r.from),l=cn(n.getAttributes,void 0,o)||{};if(!a.node(-1).canReplaceWith(a.index(-1),a.indexAfter(-1),n.type))return null;t.tr.delete(r.from,r.to).setBlockType(r.from,r.from,n.type,l)},undoable:n.undoable})}function rr(n){return new ka({find:n.find,handler:({state:t,range:r,match:o,chain:a})=>{const l=cn(n.getAttributes,void 0,o)||{},i=t.tr.delete(r.from,r.to),s=i.doc.resolve(r.from).blockRange(),d=s&&B5(s,n.type,l);if(!d)return null;if(i.wrap(s,d),n.keepMarks&&n.editor){const{selection:h,storedMarks:f}=t,{splittableMarks:p}=n.editor.extensionManager,m=f||h.$to.parentOffset&&h.$from.marks();if(m){const w=m.filter(g=>p.includes(g.type.name));i.ensureMarks(w)}}if(n.keepAttributes){const h=n.type.name==="bulletList"||n.type.name==="orderedList"?"listItem":"taskList";a().updateAttributes(h,l).run()}const u=i.doc.resolve(r.from-1).nodeBefore;u&&u.type===n.type&&Sn(i.doc,r.from-1)&&(!n.joinPredicate||n.joinPredicate(o,u))&&i.join(r.from-1)},undoable:n.undoable})}function Uy(n,t){const{selection:r}=n,{$from:o}=r;if(r instanceof ge){const l=o.index();return o.parent.canReplaceWith(l,l+1,t)}let a=o.depth;for(;a>=0;){const l=o.index(a);if(o.node(a).contentMatchAt(l).matchType(t))return!0;a-=1}return!1}var Wy={};X5(Wy,{createAtomBlockMarkdownSpec:()=>qy,createBlockMarkdownSpec:()=>Yy,createInlineMarkdownSpec:()=>Jy,parseAttributes:()=>i1,parseIndentedBlocks:()=>s1,renderNestedMarkdownContent:()=>d1,serializeAttributes:()=>c1});function i1(n){if(!n?.trim())return{};const t={},r=[],o=n.replace(/["']([^"']*)["']/g,d=>(r.push(d),`__QUOTED_${r.length-1}__`)),a=o.match(/(?:^|\s)\.([a-zA-Z][\w-]*)/g);if(a){const d=a.map(u=>u.trim().slice(1));t.class=d.join(" ")}const l=o.match(/(?:^|\s)#([a-zA-Z][\w-]*)/);l&&(t.id=l[1]);const i=/([a-zA-Z][\w-]*)\s*=\s*(__QUOTED_\d+__)/g;Array.from(o.matchAll(i)).forEach(([,d,u])=>{var h;const f=parseInt(((h=u.match(/__QUOTED_(\d+)__/))==null?void 0:h[1])||"0",10),p=r[f];p&&(t[d]=p.slice(1,-1))});const s=o.replace(/(?:^|\s)\.([a-zA-Z][\w-]*)/g,"").replace(/(?:^|\s)#([a-zA-Z][\w-]*)/g,"").replace(/([a-zA-Z][\w-]*)\s*=\s*__QUOTED_\d+__/g,"").trim();return s&&s.split(/\s+/).filter(Boolean).forEach(u=>{u.match(/^[a-zA-Z][\w-]*$/)&&(t[u]=!0)}),t}function c1(n){if(!n||Object.keys(n).length===0)return"";const t=[];return n.class&&String(n.class).split(/\s+/).filter(Boolean).forEach(o=>t.push(`.${o}`)),n.id&&t.push(`#${n.id}`),Object.entries(n).forEach(([r,o])=>{r==="class"||r==="id"||(o===!0?t.push(r):o!==!1&&o!=null&&t.push(`${r}="${String(o)}"`))}),t.join(" ")}function qy(n){const{nodeName:t,name:r,parseAttributes:o=i1,serializeAttributes:a=c1,defaultAttributes:l={},requiredAttributes:i=[],allowedAttributes:c}=n,s=r||t,d=u=>{if(!c)return u;const h={};return c.forEach(f=>{f in u&&(h[f]=u[f])}),h};return{parseMarkdown:(u,h)=>{const f={...l,...u.attributes};return h.createNode(t,f,[])},markdownTokenizer:{name:t,level:"block",start(u){var h;const f=new RegExp(`^:::${s}(?:\\s|$)`,"m"),p=(h=u.match(f))==null?void 0:h.index;return p!==void 0?p:-1},tokenize(u,h,f){const p=new RegExp(`^:::${s}(?:\\s+\\{([^}]*)\\})?\\s*:::(?:\\n|$)`),m=u.match(p);if(!m)return;const w=m[1]||"",g=o(w);if(!i.find(x=>!(x in g)))return{type:t,raw:m[0],attributes:g}}},renderMarkdown:u=>{const h=d(u.attrs||{}),f=a(h),p=f?` {${f}}`:"";return`:::${s}${p} :::`}}}function Yy(n){const{nodeName:t,name:r,getContent:o,parseAttributes:a=i1,serializeAttributes:l=c1,defaultAttributes:i={},content:c="block",allowedAttributes:s}=n,d=r||t,u=h=>{if(!s)return h;const f={};return s.forEach(p=>{p in h&&(f[p]=h[p])}),f};return{parseMarkdown:(h,f)=>{let p;if(o){const w=o(h);p=typeof w=="string"?[{type:"text",text:w}]:w}else c==="block"?p=f.parseChildren(h.tokens||[]):p=f.parseInline(h.tokens||[]);const m={...i,...h.attributes};return f.createNode(t,m,p)},markdownTokenizer:{name:t,level:"block",start(h){var f;const p=new RegExp(`^:::${d}`,"m"),m=(f=h.match(p))==null?void 0:f.index;return m!==void 0?m:-1},tokenize(h,f,p){var m;const w=new RegExp(`^:::${d}(?:\\s+\\{([^}]*)\\})?\\s*\\n`),g=h.match(w);if(!g)return;const[k,x=""]=g,v=a(x);let b=1;const C=k.length;let A="";const y=/^:::([\w-]*)(\s.*)?/gm,B=h.slice(C);for(y.lastIndex=0;;){const V=y.exec(B);if(V===null)break;const S=V.index,Z=V[1];if(!((m=V[2])!=null&&m.endsWith(":::"))){if(Z)b+=1;else if(b-=1,b===0){const D=B.slice(0,S);A=D.trim();const R=h.slice(0,C+S+V[0].length);let K=[];if(A)if(c==="block")for(K=p.blockTokens(D),K.forEach(_=>{_.text&&(!_.tokens||_.tokens.length===0)&&(_.tokens=p.inlineTokens(_.text))});K.length>0;){const _=K[K.length-1];if(_.type==="paragraph"&&(!_.text||_.text.trim()===""))K.pop();else break}else K=p.inlineTokens(A);return{type:t,raw:R,attributes:v,content:A,tokens:K}}}}}},renderMarkdown:(h,f)=>{const p=u(h.attrs||{}),m=l(p),w=m?` {${m}}`:"",g=f.renderChildren(h.content||[],`
53
+
54
+ `);return`:::${d}${w}
55
+
56
+ ${g}
57
+
58
+ :::`}}}function Ky(n){if(!n.trim())return{};const t={},r=/(\w+)=(?:"([^"]*)"|'([^']*)')/g;let o=r.exec(n);for(;o!==null;){const[,a,l,i]=o;t[a]=l||i,o=r.exec(n)}return t}function Gy(n){return Object.entries(n).filter(([,t])=>t!=null).map(([t,r])=>`${t}="${r}"`).join(" ")}function Jy(n){const{nodeName:t,name:r,getContent:o,parseAttributes:a=Ky,serializeAttributes:l=Gy,defaultAttributes:i={},selfClosing:c=!1,allowedAttributes:s}=n,d=r||t,u=f=>{if(!s)return f;const p={};return s.forEach(m=>{const w=typeof m=="string"?m:m.name,g=typeof m=="string"?void 0:m.skipIfDefault;if(w in f){const k=f[w];if(g!==void 0&&k===g)return;p[w]=k}}),p},h=d.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");return{parseMarkdown:(f,p)=>{const m={...i,...f.attributes};if(c)return p.createNode(t,m);const w=o?o(f):f.content||"";return w?p.createNode(t,m,[p.createTextNode(w)]):p.createNode(t,m,[])},markdownTokenizer:{name:t,level:"inline",start(f){const p=c?new RegExp(`\\[${h}\\s*[^\\]]*\\]`):new RegExp(`\\[${h}\\s*[^\\]]*\\][\\s\\S]*?\\[\\/${h}\\]`),m=f.match(p),w=m?.index;return w!==void 0?w:-1},tokenize(f,p,m){const w=c?new RegExp(`^\\[${h}\\s*([^\\]]*)\\]`):new RegExp(`^\\[${h}\\s*([^\\]]*)\\]([\\s\\S]*?)\\[\\/${h}\\]`),g=f.match(w);if(!g)return;let k="",x="";if(c){const[,b]=g;x=b}else{const[,b,C]=g;x=b,k=C||""}const v=a(x.trim());return{type:t,raw:g[0],content:k.trim(),attributes:v}}},renderMarkdown:f=>{let p="";o?p=o(f):f.content&&f.content.length>0&&(p=f.content.filter(k=>k.type==="text").map(k=>k.text).join(""));const m=u(f.attrs||{}),w=l(m),g=w?` ${w}`:"";return c?`[${d}${g}]`:`[${d}${g}]${p}[/${d}]`}}}function s1(n,t,r){var o,a,l,i;const c=n.split(`
59
+ `),s=[];let d="",u=0;const h=t.baseIndentSize||2;for(;u<c.length;){const f=c[u],p=f.match(t.itemPattern);if(!p){if(s.length>0)break;if(f.trim()===""){u+=1,d=`${d}${f}
60
+ `;continue}else return}const m=t.extractItemData(p),{indentLevel:w,mainContent:g}=m;d=`${d}${f}
61
+ `;const k=[g];for(u+=1;u<c.length;){const C=c[u];if(C.trim()===""){const y=c.slice(u+1).findIndex(S=>S.trim()!=="");if(y===-1)break;if((((a=(o=c[u+1+y].match(/^(\s*)/))==null?void 0:o[1])==null?void 0:a.length)||0)>w){k.push(C),d=`${d}${C}
62
+ `,u+=1;continue}else break}if((((i=(l=C.match(/^(\s*)/))==null?void 0:l[1])==null?void 0:i.length)||0)>w)k.push(C),d=`${d}${C}
63
+ `,u+=1;else break}let x;const v=k.slice(1);if(v.length>0){const C=v.map(A=>A.slice(w+h)).join(`
64
+ `);C.trim()&&(t.customNestedParser?x=t.customNestedParser(C):x=r.blockTokens(C))}const b=t.createToken(m,x);s.push(b)}if(s.length!==0)return{items:s,raw:d}}function d1(n,t,r,o){if(!n||!Array.isArray(n.content))return"";const a=typeof r=="function"?r(o):r,[l,...i]=n.content,c=t.renderChildren([l]),s=[`${a}${c}`];return i&&i.length>0&&i.forEach(d=>{const u=t.renderChildren([d]);if(u){const h=u.split(`
65
+ `).map(f=>f?t.indent(f):"").join(`
66
+ `);s.push(h)}}),s.join(`
67
+ `)}var dt=class a3 extends a1{constructor(){super(...arguments),this.type="node"}static create(t={}){const r=typeof t=="function"?t():t;return new a3(r)}configure(t){return super.configure(t)}extend(t){const r=typeof t=="function"?t():t;return super.extend(r)}};function g0(n){return new Sy({find:n.find,handler:({state:t,range:r,match:o,pasteEvent:a})=>{const l=cn(n.getAttributes,void 0,o,a);if(l===!1||l===null)return null;const{tr:i}=t,c=o[o.length-1],s=o[0];let d=r.to;if(c){const u=s.search(/\S/),h=r.from+s.indexOf(c),f=h+c.length;if(t1(r.from,r.to,t.doc).filter(m=>m.mark.type.excluded.find(g=>g===n.type&&g!==m.mark.type)).filter(m=>m.to>h).length)return null;f<r.to&&i.delete(f,r.to),h>r.from&&i.delete(r.from+u,h),d=r.from+u+c.length,i.addMark(r.from+u,d,n.type.create(l||{})),i.removeStoredMark(n.type)}}})}var va=(n,t)=>{if(n==="slot")return 0;if(n instanceof Function)return n(t);const{children:r,...o}=t??{};if(n==="svg")throw new Error("SVG elements are not supported in the JSX syntax, use the array syntax instead");return[n,o,r]},Xy=/^\s*>\s$/,Qy=dt.create({name:"blockquote",addOptions(){return{HTMLAttributes:{}}},content:"block+",group:"block",defining:!0,parseHTML(){return[{tag:"blockquote"}]},renderHTML({HTMLAttributes:n}){return va("blockquote",{...Oe(this.options.HTMLAttributes,n),children:va("slot",{})})},parseMarkdown:(n,t)=>t.createNode("blockquote",void 0,t.parseChildren(n.tokens||[])),renderMarkdown:(n,t)=>{if(!n.content)return"";const r=">",o=[];return n.content.forEach(a=>{const c=t.renderChildren([a]).split(`
68
+ `).map(s=>s.trim()===""?r:`${r} ${s}`);o.push(c.join(`
69
+ `))}),o.join(`
70
+ ${r}
71
+ `)},addCommands(){return{setBlockquote:()=>({commands:n})=>n.wrapIn(this.name),toggleBlockquote:()=>({commands:n})=>n.toggleWrap(this.name),unsetBlockquote:()=>({commands:n})=>n.lift(this.name)}},addKeyboardShortcuts(){return{"Mod-Shift-b":()=>this.editor.commands.toggleBlockquote()}},addInputRules(){return[rr({find:Xy,type:this.type})]}}),eB=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))$/,tB=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))/g,nB=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))$/,rB=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))/g,oB=tr.create({name:"bold",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"strong"},{tag:"b",getAttrs:n=>n.style.fontWeight!=="normal"&&null},{style:"font-weight=400",clearMark:n=>n.type.name===this.name},{style:"font-weight",getAttrs:n=>/^(bold(er)?|[5-9]\d{2,})$/.test(n)&&null}]},renderHTML({HTMLAttributes:n}){return va("strong",{...Oe(this.options.HTMLAttributes,n),children:va("slot",{})})},markdownTokenName:"strong",parseMarkdown:(n,t)=>t.applyMark("bold",t.parseInline(n.tokens||[])),renderMarkdown:(n,t)=>`**${t.renderChildren(n)}**`,addCommands(){return{setBold:()=>({commands:n})=>n.setMark(this.name),toggleBold:()=>({commands:n})=>n.toggleMark(this.name),unsetBold:()=>({commands:n})=>n.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-b":()=>this.editor.commands.toggleBold(),"Mod-B":()=>this.editor.commands.toggleBold()}},addInputRules(){return[nr({find:eB,type:this.type}),nr({find:nB,type:this.type})]},addPasteRules(){return[g0({find:tB,type:this.type}),g0({find:rB,type:this.type})]}}),aB=/(^|[^`])`([^`]+)`(?!`)$/,lB=/(^|[^`])`([^`]+)`(?!`)/g,iB=tr.create({name:"code",addOptions(){return{HTMLAttributes:{}}},excludes:"_",code:!0,exitable:!0,parseHTML(){return[{tag:"code"}]},renderHTML({HTMLAttributes:n}){return["code",Oe(this.options.HTMLAttributes,n),0]},markdownTokenName:"codespan",parseMarkdown:(n,t)=>t.applyMark("code",[{type:"text",text:n.text||""}]),renderMarkdown:(n,t)=>n.content?`\`${t.renderChildren(n.content)}\``:"",addCommands(){return{setCode:()=>({commands:n})=>n.setMark(this.name),toggleCode:()=>({commands:n})=>n.toggleMark(this.name),unsetCode:()=>({commands:n})=>n.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-e":()=>this.editor.commands.toggleCode()}},addInputRules(){return[nr({find:aB,type:this.type})]},addPasteRules(){return[g0({find:lB,type:this.type})]}}),u1=4,cB=/^```([a-z]+)?[\s\n]$/,sB=/^~~~([a-z]+)?[\s\n]$/,dB=dt.create({name:"codeBlock",addOptions(){return{languageClassPrefix:"language-",exitOnTripleEnter:!0,exitOnArrowDown:!0,defaultLanguage:null,enableTabIndentation:!1,tabSize:u1,HTMLAttributes:{}}},content:"text*",marks:"",group:"block",code:!0,defining:!0,addAttributes(){return{language:{default:this.options.defaultLanguage,parseHTML:n=>{var t;const{languageClassPrefix:r}=this.options;if(!r)return null;const l=[...((t=n.firstElementChild)==null?void 0:t.classList)||[]].filter(i=>i.startsWith(r)).map(i=>i.replace(r,""))[0];return l||null},rendered:!1}}},parseHTML(){return[{tag:"pre",preserveWhitespace:"full"}]},renderHTML({node:n,HTMLAttributes:t}){return["pre",Oe(this.options.HTMLAttributes,t),["code",{class:n.attrs.language?this.options.languageClassPrefix+n.attrs.language:null},0]]},markdownTokenName:"code",parseMarkdown:(n,t)=>{var r;return((r=n.raw)==null?void 0:r.startsWith("```"))===!1&&n.codeBlockStyle!=="indented"?[]:t.createNode("codeBlock",{language:n.lang||null},n.text?[t.createTextNode(n.text)]:[])},renderMarkdown:(n,t)=>{var r;let o="";const a=((r=n.attrs)==null?void 0:r.language)||"";return n.content?o=[`\`\`\`${a}`,t.renderChildren(n.content),"```"].join(`
72
+ `):o=`\`\`\`${a}
73
+
74
+ \`\`\``,o},addCommands(){return{setCodeBlock:n=>({commands:t})=>t.setNode(this.name,n),toggleCodeBlock:n=>({commands:t})=>t.toggleNode(this.name,"paragraph",n)}},addKeyboardShortcuts(){return{"Mod-Alt-c":()=>this.editor.commands.toggleCodeBlock(),Backspace:()=>{const{empty:n,$anchor:t}=this.editor.state.selection,r=t.pos===1;return!n||t.parent.type.name!==this.name?!1:r||!t.parent.textContent.length?this.editor.commands.clearNodes():!1},Tab:({editor:n})=>{var t;if(!this.options.enableTabIndentation)return!1;const r=(t=this.options.tabSize)!=null?t:u1,{state:o}=n,{selection:a}=o,{$from:l,empty:i}=a;if(l.parent.type!==this.type)return!1;const c=" ".repeat(r);return i?n.commands.insertContent(c):n.commands.command(({tr:s})=>{const{from:d,to:u}=a,p=o.doc.textBetween(d,u,`
75
+ `,`
76
+ `).split(`
77
+ `).map(m=>c+m).join(`
78
+ `);return s.replaceWith(d,u,o.schema.text(p)),!0})},"Shift-Tab":({editor:n})=>{var t;if(!this.options.enableTabIndentation)return!1;const r=(t=this.options.tabSize)!=null?t:u1,{state:o}=n,{selection:a}=o,{$from:l,empty:i}=a;return l.parent.type!==this.type?!1:i?n.commands.command(({tr:c})=>{var s;const{pos:d}=l,u=l.start(),h=l.end(),p=o.doc.textBetween(u,h,`
79
+ `,`
80
+ `).split(`
81
+ `);let m=0,w=0;const g=d-u;for(let A=0;A<p.length;A+=1){if(w+p[A].length>=g){m=A;break}w+=p[A].length+1}const x=((s=p[m].match(/^ */))==null?void 0:s[0])||"",v=Math.min(x.length,r);if(v===0)return!0;let b=u;for(let A=0;A<m;A+=1)b+=p[A].length+1;return c.delete(b,b+v),d-b<=v&&c.setSelection(ke.create(c.doc,b)),!0}):n.commands.command(({tr:c})=>{const{from:s,to:d}=a,f=o.doc.textBetween(s,d,`
82
+ `,`
83
+ `).split(`
84
+ `).map(p=>{var m;const w=((m=p.match(/^ */))==null?void 0:m[0])||"",g=Math.min(w.length,r);return p.slice(g)}).join(`
85
+ `);return c.replaceWith(s,d,o.schema.text(f)),!0})},Enter:({editor:n})=>{if(!this.options.exitOnTripleEnter)return!1;const{state:t}=n,{selection:r}=t,{$from:o,empty:a}=r;if(!a||o.parent.type!==this.type)return!1;const l=o.parentOffset===o.parent.nodeSize-2,i=o.parent.textContent.endsWith(`
86
+
87
+ `);return!l||!i?!1:n.chain().command(({tr:c})=>(c.delete(o.pos-2,o.pos),!0)).exitCode().run()},ArrowDown:({editor:n})=>{if(!this.options.exitOnArrowDown)return!1;const{state:t}=n,{selection:r,doc:o}=t,{$from:a,empty:l}=r;if(!l||a.parent.type!==this.type||!(a.parentOffset===a.parent.nodeSize-2))return!1;const c=a.after();return c===void 0?!1:o.nodeAt(c)?n.commands.command(({tr:d})=>(d.setSelection(Ee.near(o.resolve(c))),!0)):n.commands.exitCode()}}},addInputRules(){return[l1({find:cB,type:this.type,getAttributes:n=>({language:n[1]})}),l1({find:sB,type:this.type,getAttributes:n=>({language:n[1]})})]},addProseMirrorPlugins(){return[new Fe({key:new Ue("codeBlockVSCodeHandler"),props:{handlePaste:(n,t)=>{if(!t.clipboardData||this.editor.isActive(this.type.name))return!1;const r=t.clipboardData.getData("text/plain"),o=t.clipboardData.getData("vscode-editor-data"),a=o?JSON.parse(o):void 0,l=a?.mode;if(!r||!l)return!1;const{tr:i,schema:c}=n.state,s=c.text(r.replace(/\r\n?/g,`
88
+ `));return i.replaceSelectionWith(this.type.create({language:l},s)),i.selection.$from.parent.type!==this.type&&i.setSelection(ke.near(i.doc.resolve(Math.max(0,i.selection.from-2)))),i.setMeta("paste",!0),n.dispatch(i),!0}}})]}}),uB=dt.create({name:"doc",topNode:!0,content:"block+",renderMarkdown:(n,t)=>n.content?t.renderChildren(n.content,`
89
+
90
+ `):""}),hB=dt.create({name:"hardBreak",markdownTokenName:"br",addOptions(){return{keepMarks:!0,HTMLAttributes:{}}},inline:!0,group:"inline",selectable:!1,linebreakReplacement:!0,parseHTML(){return[{tag:"br"}]},renderHTML({HTMLAttributes:n}){return["br",Oe(this.options.HTMLAttributes,n)]},renderText(){return`
91
+ `},renderMarkdown:()=>`
92
+ `,parseMarkdown:()=>({type:"hardBreak"}),addCommands(){return{setHardBreak:()=>({commands:n,chain:t,state:r,editor:o})=>n.first([()=>n.exitCode(),()=>n.command(()=>{const{selection:a,storedMarks:l}=r;if(a.$from.parent.type.spec.isolating)return!1;const{keepMarks:i}=this.options,{splittableMarks:c}=o.extensionManager,s=l||a.$to.parentOffset&&a.$from.marks();return t().insertContent({type:this.name}).command(({tr:d,dispatch:u})=>{if(u&&s&&i){const h=s.filter(f=>c.includes(f.type.name));d.ensureMarks(h)}return!0}).run()})])}},addKeyboardShortcuts(){return{"Mod-Enter":()=>this.editor.commands.setHardBreak(),"Shift-Enter":()=>this.editor.commands.setHardBreak()}}}),pB=dt.create({name:"heading",addOptions(){return{levels:[1,2,3,4,5,6],HTMLAttributes:{}}},content:"inline*",group:"block",defining:!0,addAttributes(){return{level:{default:1,rendered:!1}}},parseHTML(){return this.options.levels.map(n=>({tag:`h${n}`,attrs:{level:n}}))},renderHTML({node:n,HTMLAttributes:t}){return[`h${this.options.levels.includes(n.attrs.level)?n.attrs.level:this.options.levels[0]}`,Oe(this.options.HTMLAttributes,t),0]},parseMarkdown:(n,t)=>t.createNode("heading",{level:n.depth||1},t.parseInline(n.tokens||[])),renderMarkdown:(n,t)=>{var r;const o=(r=n.attrs)!=null&&r.level?parseInt(n.attrs.level,10):1,a="#".repeat(o);return n.content?`${a} ${t.renderChildren(n.content)}`:""},addCommands(){return{setHeading:n=>({commands:t})=>this.options.levels.includes(n.level)?t.setNode(this.name,n):!1,toggleHeading:n=>({commands:t})=>this.options.levels.includes(n.level)?t.toggleNode(this.name,"paragraph",n):!1}},addKeyboardShortcuts(){return this.options.levels.reduce((n,t)=>({...n,[`Mod-Alt-${t}`]:()=>this.editor.commands.toggleHeading({level:t})}),{})},addInputRules(){return this.options.levels.map(n=>l1({find:new RegExp(`^(#{${Math.min(...this.options.levels)},${n}})\\s$`),type:this.type,getAttributes:{level:n}}))}}),fB=dt.create({name:"horizontalRule",addOptions(){return{HTMLAttributes:{},nextNodeType:"paragraph"}},group:"block",parseHTML(){return[{tag:"hr"}]},renderHTML({HTMLAttributes:n}){return["hr",Oe(this.options.HTMLAttributes,n)]},markdownTokenName:"hr",parseMarkdown:(n,t)=>t.createNode("horizontalRule"),renderMarkdown:()=>"---",addCommands(){return{setHorizontalRule:()=>({chain:n,state:t})=>{if(!Uy(t,t.schema.nodes[this.name]))return!1;const{selection:r}=t,{$to:o}=r,a=n();return O7(r)?a.insertContentAt(o.pos,{type:this.name}):a.insertContent({type:this.name}),a.command(({state:l,tr:i,dispatch:c})=>{if(c){const{$to:s}=i.selection,d=s.end();if(s.nodeAfter)s.nodeAfter.isTextblock?i.setSelection(ke.create(i.doc,s.pos+1)):s.nodeAfter.isBlock?i.setSelection(ge.create(i.doc,s.pos)):i.setSelection(ke.create(i.doc,s.pos));else{const u=l.schema.nodes[this.options.nextNodeType]||s.parent.type.contentMatch.defaultType,h=u?.create();h&&(i.insert(d,h),i.setSelection(ke.create(i.doc,d+1)))}i.scrollIntoView()}return!0}).run()}}},addInputRules(){return[Fy({find:/^(?:---|—-|___\s|\*\*\*\s)$/,type:this.type})]}}),mB=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))$/,wB=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))/g,gB=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))$/,kB=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))/g,xB=tr.create({name:"italic",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"em"},{tag:"i",getAttrs:n=>n.style.fontStyle!=="normal"&&null},{style:"font-style=normal",clearMark:n=>n.type.name===this.name},{style:"font-style=italic"}]},renderHTML({HTMLAttributes:n}){return["em",Oe(this.options.HTMLAttributes,n),0]},addCommands(){return{setItalic:()=>({commands:n})=>n.setMark(this.name),toggleItalic:()=>({commands:n})=>n.toggleMark(this.name),unsetItalic:()=>({commands:n})=>n.unsetMark(this.name)}},markdownTokenName:"em",parseMarkdown:(n,t)=>t.applyMark("italic",t.parseInline(n.tokens||[])),renderMarkdown:(n,t)=>`*${t.renderChildren(n)}*`,addKeyboardShortcuts(){return{"Mod-i":()=>this.editor.commands.toggleItalic(),"Mod-I":()=>this.editor.commands.toggleItalic()}},addInputRules(){return[nr({find:mB,type:this.type}),nr({find:gB,type:this.type})]},addPasteRules(){return[g0({find:wB,type:this.type}),g0({find:kB,type:this.type})]}});const vB="aaa1rp3bb0ott3vie4c1le2ogado5udhabi7c0ademy5centure6ountant0s9o1tor4d0s1ult4e0g1ro2tna4f0l1rica5g0akhan5ency5i0g1rbus3force5tel5kdn3l0ibaba4pay4lfinanz6state5y2sace3tom5m0azon4ericanexpress7family11x2fam3ica3sterdam8nalytics7droid5quan4z2o0l2partments8p0le4q0uarelle8r0ab1mco4chi3my2pa2t0e3s0da2ia2sociates9t0hleta5torney7u0ction5di0ble3o3spost5thor3o0s4w0s2x0a2z0ure5ba0by2idu3namex4d1k2r0celona5laycard4s5efoot5gains6seball5ketball8uhaus5yern5b0c1t1va3cg1n2d1e0ats2uty4er2rlin4st0buy5t2f1g1h0arti5i0ble3d1ke2ng0o3o1z2j1lack0friday9ockbuster8g1omberg7ue3m0s1w2n0pparibas9o0ats3ehringer8fa2m1nd2o0k0ing5sch2tik2on4t1utique6x2r0adesco6idgestone9oadway5ker3ther5ussels7s1t1uild0ers6siness6y1zz3v1w1y1z0h3ca0b1fe2l0l1vinklein9m0era3p2non3petown5ital0one8r0avan4ds2e0er0s4s2sa1e1h1ino4t0ering5holic7ba1n1re3c1d1enter4o1rn3f0a1d2g1h0anel2nel4rity4se2t2eap3intai5ristmas6ome4urch5i0priani6rcle4sco3tadel4i0c2y3k1l0aims4eaning6ick2nic1que6othing5ud3ub0med6m1n1o0ach3des3ffee4llege4ogne5m0mbank4unity6pany2re3uter5sec4ndos3struction8ulting7tact3ractors9oking4l1p2rsica5untry4pon0s4rses6pa2r0edit0card4union9icket5own3s1uise0s6u0isinella9v1w1x1y0mru3ou3z2dad1nce3ta1e1ing3sun4y2clk3ds2e0al0er2s3gree4livery5l1oitte5ta3mocrat6ntal2ist5si0gn4v2hl2iamonds6et2gital5rect0ory7scount3ver5h2y2j1k1m1np2o0cs1tor4g1mains5t1wnload7rive4tv2ubai3nlop4pont4rban5vag2r2z2earth3t2c0o2deka3u0cation8e1g1mail3erck5nergy4gineer0ing9terprises10pson4quipment8r0icsson6ni3s0q1tate5t1u0rovision8s2vents5xchange6pert3osed4ress5traspace10fage2il1rwinds6th3mily4n0s2rm0ers5shion4t3edex3edback6rrari3ero6i0delity5o2lm2nal1nce1ial7re0stone6mdale6sh0ing5t0ness6j1k1lickr3ghts4r2orist4wers5y2m1o0o0d1tball6rd1ex2sale4um3undation8x2r0ee1senius7l1ogans4ntier7tr2ujitsu5n0d2rniture7tbol5yi3ga0l0lery3o1up4me0s3p1rden4y2b0iz3d0n2e0a1nt0ing5orge5f1g0ee3h1i0ft0s3ves2ing5l0ass3e1obal2o4m0ail3bh2o1x2n1odaddy5ld0point6f2o0dyear5g0le4p1t1v2p1q1r0ainger5phics5tis4een3ipe3ocery4up4s1t1u0cci3ge2ide2tars5ru3w1y2hair2mburg5ngout5us3bo2dfc0bank7ealth0care8lp1sinki6re1mes5iphop4samitsu7tachi5v2k0t2m1n1ockey4ldings5iday5medepot5goods5s0ense7nda3rse3spital5t0ing5t0els3mail5use3w2r1sbc3t1u0ghes5yatt3undai7ibm2cbc2e1u2d1e0ee3fm2kano4l1m0amat4db2mo0bilien9n0c1dustries8finiti5o2g1k1stitute6urance4e4t0ernational10uit4vestments10o1piranga7q1r0ish4s0maili5t0anbul7t0au2v3jaguar4va3cb2e0ep2tzt3welry6io2ll2m0p2nj2o0bs1urg4t1y2p0morgan6rs3uegos4niper7kaufen5ddi3e0rryhotels6properties14fh2g1h1i0a1ds2m1ndle4tchen5wi3m1n1oeln3matsu5sher5p0mg2n2r0d1ed3uokgroup8w1y0oto4z2la0caixa5mborghini8er3nd0rover6xess5salle5t0ino3robe5w0yer5b1c1ds2ease3clerc5frak4gal2o2xus4gbt3i0dl2fe0insurance9style7ghting6ke2lly3mited4o2ncoln4k2ve1ing5k1lc1p2oan0s3cker3us3l1ndon4tte1o3ve3pl0financial11r1s1t0d0a3u0ndbeck6xe1ury5v1y2ma0drid4if1son4keup4n0agement7go3p1rket0ing3s4riott5shalls7ttel5ba2c0kinsey7d1e0d0ia3et2lbourne7me1orial6n0u2rckmsd7g1h1iami3crosoft7l1ni1t2t0subishi9k1l0b1s2m0a2n1o0bi0le4da2e1i1m1nash3ey2ster5rmon3tgage6scow4to0rcycles9v0ie4p1q1r1s0d2t0n1r2u0seum3ic4v1w1x1y1z2na0b1goya4me2vy3ba2c1e0c1t0bank4flix4work5ustar5w0s2xt0direct7us4f0l2g0o2hk2i0co2ke1on3nja3ssan1y5l1o0kia3rton4w0ruz3tv4p1r0a1w2tt2u1yc2z2obi1server7ffice5kinawa6layan0group9lo3m0ega4ne1g1l0ine5oo2pen3racle3nge4g0anic5igins6saka4tsuka4t2vh3pa0ge2nasonic7ris2s1tners4s1y3y2ccw3e0t2f0izer5g1h0armacy6d1ilips5one2to0graphy6s4ysio5ics1tet2ures6d1n0g1k2oneer5zza4k1l0ace2y0station9umbing5s3m1n0c2ohl2ker3litie5rn2st3r0axi3ess3ime3o0d0uctions8f1gressive8mo2perties3y5tection8u0dential9s1t1ub2w0c2y2qa1pon3uebec3st5racing4dio4e0ad1lestate6tor2y4cipes5d0stone5umbrella9hab3ise0n3t2liance6n0t0als5pair3ort3ublican8st0aurant8view0s5xroth6ich0ardli6oh3l1o1p2o0cks3deo3gers4om3s0vp3u0gby3hr2n2w0e2yukyu6sa0arland6fe0ty4kura4le1on3msclub4ung5ndvik0coromant12ofi4p1rl2s1ve2xo3b0i1s2c0b1haeffler7midt4olarships8ol3ule3warz5ience5ot3d1e0arch3t2cure1ity6ek2lect4ner3rvices6ven3w1x0y3fr2g1h0angrila6rp3ell3ia1ksha5oes2p0ping5uji3w3i0lk2na1gles5te3j1k0i0n2y0pe4l0ing4m0art3ile4n0cf3o0ccer3ial4ftbank4ware6hu2lar2utions7ng1y2y2pa0ce3ort2t3r0l2s1t0ada2ples4r1tebank4farm7c0group6ockholm6rage3e3ream4udio2y3yle4u0cks3pplies3y2ort5rf1gery5zuki5v1watch4iss4x1y0dney4stems6z2tab1ipei4lk2obao4rget4tamotors6r2too4x0i3c0i2d0k2eam2ch0nology8l1masek5nnis4va3f1g1h0d1eater2re6iaa2ckets5enda4ps2res2ol4j0maxx4x2k0maxx5l1m0all4n1o0day3kyo3ols3p1ray3shiba5tal3urs3wn2yota3s3r0ade1ing4ining5vel0ers0insurance16ust3v2t1ube2i1nes3shu4v0s2w1z2ua1bank3s2g1k1nicom3versity8o2ol2ps2s1y1z2va0cations7na1guard7c1e0gas3ntures6risign5mögensberater2ung14sicherung10t2g1i0ajes4deo3g1king4llas4n1p1rgin4sa1ion4va1o3laanderen9n1odka3lvo3te1ing3o2yage5u2wales2mart4ter4ng0gou5tch0es6eather0channel12bcam3er2site5d0ding5ibo2r3f1hoswho6ien2ki2lliamhill9n0dows4e1ners6me2olterskluwer11odside6rk0s2ld3w2s1tc1f3xbox3erox4ihuan4n2xx2yz3yachts4hoo3maxun5ndex5e1odobashi7ga2kohama6u0tube6t1un3za0ppos4ra3ero3ip2m1one3uerich6w2",yB="ελ1υ2бг1ел3дети4ею2католик6ом3мкд2он1сква6онлайн5рг3рус2ф2сайт3рб3укр3қаз3հայ3ישראל5קום3ابوظبي5رامكو5لاردن4بحرين5جزائر5سعودية6عليان5مغرب5مارات5یران5بارت2زار4يتك3ھارت5تونس4سودان3رية5شبكة4عراق2ب2مان4فلسطين6قطر3كاثوليك6وم3مصر2ليسيا5وريتانيا7قع4همراه5پاکستان7ڀارت4कॉम3नेट3भारत0म्3ोत5संगठन5বাংলা5ভারত2ৰত4ਭਾਰਤ4ભારત4ଭାରତ4இந்தியா6லங்கை6சிங்கப்பூர்11భారత్5ಭಾರತ4ഭാരതം5ලංකා4คอม3ไทย3ລາວ3გე2みんな3アマゾン4クラウド4グーグル4コム2ストア3セール3ファッション6ポイント4世界2中信1国1國1文网3亚马逊3企业2佛山2信息2健康2八卦2公司1益2台湾1灣2商城1店1标2嘉里0大酒店5在线2大拿2天主教3娱乐2家電2广东2微博2慈善2我爱你3手机2招聘2政务1府2新加坡2闻2时尚2書籍2机构2淡马锡3游戏2澳門2点看2移动2组织机构4网址1店1站1络2联通2谷歌2购物2通販2集团2電訊盈科4飞利浦3食品2餐厅2香格里拉3港2닷넷1컴2삼성2한국2",h1="numeric",p1="ascii",f1="alpha",qr="asciinumeric",Yr="alphanumeric",m1="domain",F7="emoji",BB="scheme",EB="slashscheme",w1="whitespace";function bB(n,t){return n in t||(t[n]=[]),t[n]}function k0(n,t,r){t[h1]&&(t[qr]=!0,t[Yr]=!0),t[p1]&&(t[qr]=!0,t[f1]=!0),t[qr]&&(t[Yr]=!0),t[f1]&&(t[Yr]=!0),t[Yr]&&(t[m1]=!0),t[F7]&&(t[m1]=!0);for(const o in t){const a=bB(o,r);a.indexOf(n)<0&&a.push(n)}}function CB(n,t){const r={};for(const o in t)t[o].indexOf(n)>=0&&(r[o]=!0);return r}function yt(n=null){this.j={},this.jr=[],this.jd=null,this.t=n}yt.groups={},yt.prototype={accepts(){return!!this.t},go(n){const t=this,r=t.j[n];if(r)return r;for(let o=0;o<t.jr.length;o++){const a=t.jr[o][0],l=t.jr[o][1];if(l&&a.test(n))return l}return t.jd},has(n,t=!1){return t?n in this.j:!!this.go(n)},ta(n,t,r,o){for(let a=0;a<n.length;a++)this.tt(n[a],t,r,o)},tr(n,t,r,o){o=o||yt.groups;let a;return t&&t.j?a=t:(a=new yt(t),r&&o&&k0(t,r,o)),this.jr.push([n,a]),a},ts(n,t,r,o){let a=this;const l=n.length;if(!l)return a;for(let i=0;i<l-1;i++)a=a.tt(n[i]);return a.tt(n[l-1],t,r,o)},tt(n,t,r,o){o=o||yt.groups;const a=this;if(t&&t.j)return a.j[n]=t,t;const l=t;let i,c=a.go(n);if(c?(i=new yt,Object.assign(i.j,c.j),i.jr.push.apply(i.jr,c.jr),i.jd=c.jd,i.t=c.t):i=new yt,l){if(o)if(i.t&&typeof i.t=="string"){const s=Object.assign(CB(i.t,o),r);k0(l,s,o)}else r&&k0(l,r,o);i.t=l}return a.j[n]=i,i}};const Me=(n,t,r,o,a)=>n.ta(t,r,o,a),We=(n,t,r,o,a)=>n.tr(t,r,o,a),U7=(n,t,r,o,a)=>n.ts(t,r,o,a),oe=(n,t,r,o,a)=>n.tt(t,r,o,a),kn="WORD",g1="UWORD",W7="ASCIINUMERICAL",q7="ALPHANUMERICAL",Kr="LOCALHOST",k1="TLD",x1="UTLD",ya="SCHEME",or="SLASH_SCHEME",v1="NUM",y1="WS",B1="NL",Gr="OPENBRACE",Jr="CLOSEBRACE",Ba="OPENBRACKET",Ea="CLOSEBRACKET",ba="OPENPAREN",Ca="CLOSEPAREN",Ma="OPENANGLEBRACKET",Va="CLOSEANGLEBRACKET",Aa="FULLWIDTHLEFTPAREN",_a="FULLWIDTHRIGHTPAREN",Na="LEFTCORNERBRACKET",Za="RIGHTCORNERBRACKET",Sa="LEFTWHITECORNERBRACKET",$a="RIGHTWHITECORNERBRACKET",Ia="FULLWIDTHLESSTHAN",Ha="FULLWIDTHGREATERTHAN",Ta="AMPERSAND",La="APOSTROPHE",Da="ASTERISK",Pn="AT",Pa="BACKSLASH",Oa="BACKTICK",Ra="CARET",On="COLON",E1="COMMA",za="DOLLAR",sn="DOT",ja="EQUALS",b1="EXCLAMATION",It="HYPHEN",Xr="PERCENT",Fa="PIPE",Ua="PLUS",Wa="POUND",Qr="QUERY",C1="QUOTE",Y7="FULLWIDTHMIDDLEDOT",M1="SEMI",dn="SLASH",eo="TILDE",qa="UNDERSCORE",K7="EMOJI",Ya="SYM";var G7=Object.freeze({__proto__:null,ALPHANUMERICAL:q7,AMPERSAND:Ta,APOSTROPHE:La,ASCIINUMERICAL:W7,ASTERISK:Da,AT:Pn,BACKSLASH:Pa,BACKTICK:Oa,CARET:Ra,CLOSEANGLEBRACKET:Va,CLOSEBRACE:Jr,CLOSEBRACKET:Ea,CLOSEPAREN:Ca,COLON:On,COMMA:E1,DOLLAR:za,DOT:sn,EMOJI:K7,EQUALS:ja,EXCLAMATION:b1,FULLWIDTHGREATERTHAN:Ha,FULLWIDTHLEFTPAREN:Aa,FULLWIDTHLESSTHAN:Ia,FULLWIDTHMIDDLEDOT:Y7,FULLWIDTHRIGHTPAREN:_a,HYPHEN:It,LEFTCORNERBRACKET:Na,LEFTWHITECORNERBRACKET:Sa,LOCALHOST:Kr,NL:B1,NUM:v1,OPENANGLEBRACKET:Ma,OPENBRACE:Gr,OPENBRACKET:Ba,OPENPAREN:ba,PERCENT:Xr,PIPE:Fa,PLUS:Ua,POUND:Wa,QUERY:Qr,QUOTE:C1,RIGHTCORNERBRACKET:Za,RIGHTWHITECORNERBRACKET:$a,SCHEME:ya,SEMI:M1,SLASH:dn,SLASH_SCHEME:or,SYM:Ya,TILDE:eo,TLD:k1,UNDERSCORE:qa,UTLD:x1,UWORD:g1,WORD:kn,WS:y1});const xn=/[a-z]/,to=new RegExp("\\p{L}","u"),V1=new RegExp("\\p{Emoji}","u"),vn=/\d/,A1=/\s/,J7="\r",_1=`
93
+ `,MB="️",VB="‍",N1="";let Ka=null,Ga=null;function AB(n=[]){const t={};yt.groups=t;const r=new yt;Ka==null&&(Ka=Q7(vB)),Ga==null&&(Ga=Q7(yB)),oe(r,"'",La),oe(r,"{",Gr),oe(r,"}",Jr),oe(r,"[",Ba),oe(r,"]",Ea),oe(r,"(",ba),oe(r,")",Ca),oe(r,"<",Ma),oe(r,">",Va),oe(r,"(",Aa),oe(r,")",_a),oe(r,"「",Na),oe(r,"」",Za),oe(r,"『",Sa),oe(r,"』",$a),oe(r,"<",Ia),oe(r,">",Ha),oe(r,"&",Ta),oe(r,"*",Da),oe(r,"@",Pn),oe(r,"`",Oa),oe(r,"^",Ra),oe(r,":",On),oe(r,",",E1),oe(r,"$",za),oe(r,".",sn),oe(r,"=",ja),oe(r,"!",b1),oe(r,"-",It),oe(r,"%",Xr),oe(r,"|",Fa),oe(r,"+",Ua),oe(r,"#",Wa),oe(r,"?",Qr),oe(r,'"',C1),oe(r,"/",dn),oe(r,";",M1),oe(r,"~",eo),oe(r,"_",qa),oe(r,"\\",Pa),oe(r,"・",Y7);const o=We(r,vn,v1,{[h1]:!0});We(o,vn,o);const a=We(o,xn,W7,{[qr]:!0}),l=We(o,to,q7,{[Yr]:!0}),i=We(r,xn,kn,{[p1]:!0});We(i,vn,a),We(i,xn,i),We(a,vn,a),We(a,xn,a);const c=We(r,to,g1,{[f1]:!0});We(c,xn),We(c,vn,l),We(c,to,c),We(l,vn,l),We(l,xn),We(l,to,l);const s=oe(r,_1,B1,{[w1]:!0}),d=oe(r,J7,y1,{[w1]:!0}),u=We(r,A1,y1,{[w1]:!0});oe(r,N1,u),oe(d,_1,s),oe(d,N1,u),We(d,A1,u),oe(u,J7),oe(u,_1),We(u,A1,u),oe(u,N1,u);const h=We(r,V1,K7,{[F7]:!0});oe(h,"#"),We(h,V1,h),oe(h,MB,h);const f=oe(h,VB);oe(f,"#"),We(f,V1,h);const p=[[xn,i],[vn,a]],m=[[xn,null],[to,c],[vn,l]];for(let w=0;w<Ka.length;w++)Rn(r,Ka[w],k1,kn,p);for(let w=0;w<Ga.length;w++)Rn(r,Ga[w],x1,g1,m);k0(k1,{tld:!0,ascii:!0},t),k0(x1,{utld:!0,alpha:!0},t),Rn(r,"file",ya,kn,p),Rn(r,"mailto",ya,kn,p),Rn(r,"http",or,kn,p),Rn(r,"https",or,kn,p),Rn(r,"ftp",or,kn,p),Rn(r,"ftps",or,kn,p),k0(ya,{scheme:!0,ascii:!0},t),k0(or,{slashscheme:!0,ascii:!0},t),n=n.sort((w,g)=>w[0]>g[0]?1:-1);for(let w=0;w<n.length;w++){const g=n[w][0],x=n[w][1]?{[BB]:!0}:{[EB]:!0};g.indexOf("-")>=0?x[m1]=!0:xn.test(g)?vn.test(g)?x[qr]=!0:x[p1]=!0:x[h1]=!0,U7(r,g,g,x)}return U7(r,"localhost",Kr,{ascii:!0}),r.jd=new yt(Ya),{start:r,tokens:Object.assign({groups:t},G7)}}function X7(n,t){const r=_B(t.replace(/[A-Z]/g,c=>c.toLowerCase())),o=r.length,a=[];let l=0,i=0;for(;i<o;){let c=n,s=null,d=0,u=null,h=-1,f=-1;for(;i<o&&(s=c.go(r[i]));)c=s,c.accepts()?(h=0,f=0,u=c):h>=0&&(h+=r[i].length,f++),d+=r[i].length,l+=r[i].length,i++;l-=h,i-=f,d-=h,a.push({t:u.t,v:t.slice(l-d,l),s:l-d,e:l})}return a}function _B(n){const t=[],r=n.length;let o=0;for(;o<r;){let a=n.charCodeAt(o),l,i=a<55296||a>56319||o+1===r||(l=n.charCodeAt(o+1))<56320||l>57343?n[o]:n.slice(o,o+2);t.push(i),o+=i.length}return t}function Rn(n,t,r,o,a){let l;const i=t.length;for(let c=0;c<i-1;c++){const s=t[c];n.j[s]?l=n.j[s]:(l=new yt(o),l.jr=a.slice(),n.j[s]=l),n=l}return l=new yt(r),l.jr=a.slice(),n.j[t[i-1]]=l,l}function Q7(n){const t=[],r=[];let o=0,a="0123456789";for(;o<n.length;){let l=0;for(;a.indexOf(n[o+l])>=0;)l++;if(l>0){t.push(r.join(""));for(let i=parseInt(n.substring(o,o+l),10);i>0;i--)r.pop();o+=l}else r.push(n[o]),o++}return t}const no={defaultProtocol:"http",events:null,format:ed,formatHref:ed,nl2br:!1,tagName:"a",target:null,rel:null,validate:!0,truncate:1/0,className:null,attributes:null,ignoreTags:[],render:null};function Z1(n,t=null){let r=Object.assign({},no);n&&(r=Object.assign(r,n instanceof Z1?n.o:n));const o=r.ignoreTags,a=[];for(let l=0;l<o.length;l++)a.push(o[l].toUpperCase());this.o=r,t&&(this.defaultRender=t),this.ignoreTags=a}Z1.prototype={o:no,ignoreTags:[],defaultRender(n){return n},check(n){return this.get("validate",n.toString(),n)},get(n,t,r){const o=t!=null;let a=this.o[n];return a&&(typeof a=="object"?(a=r.t in a?a[r.t]:no[n],typeof a=="function"&&o&&(a=a(t,r))):typeof a=="function"&&o&&(a=a(t,r.t,r)),a)},getObj(n,t,r){let o=this.o[n];return typeof o=="function"&&t!=null&&(o=o(t,r.t,r)),o},render(n){const t=n.render(this);return(this.get("render",null,n)||this.defaultRender)(t,n.t,n)}};function ed(n){return n}function td(n,t){this.t="token",this.v=n,this.tk=t}td.prototype={isLink:!1,toString(){return this.v},toHref(n){return this.toString()},toFormattedString(n){const t=this.toString(),r=n.get("truncate",t,this),o=n.get("format",t,this);return r&&o.length>r?o.substring(0,r)+"…":o},toFormattedHref(n){return n.get("formatHref",this.toHref(n.get("defaultProtocol")),this)},startIndex(){return this.tk[0].s},endIndex(){return this.tk[this.tk.length-1].e},toObject(n=no.defaultProtocol){return{type:this.t,value:this.toString(),isLink:this.isLink,href:this.toHref(n),start:this.startIndex(),end:this.endIndex()}},toFormattedObject(n){return{type:this.t,value:this.toFormattedString(n),isLink:this.isLink,href:this.toFormattedHref(n),start:this.startIndex(),end:this.endIndex()}},validate(n){return n.get("validate",this.toString(),this)},render(n){const t=this,r=this.toHref(n.get("defaultProtocol")),o=n.get("formatHref",r,this),a=n.get("tagName",r,t),l=this.toFormattedString(n),i={},c=n.get("className",r,t),s=n.get("target",r,t),d=n.get("rel",r,t),u=n.getObj("attributes",r,t),h=n.getObj("events",r,t);return i.href=o,c&&(i.class=c),s&&(i.target=s),d&&(i.rel=d),u&&Object.assign(i,u),{tagName:a,attributes:i,content:l,eventListeners:h}}};function Ja(n,t){class r extends td{constructor(a,l){super(a,l),this.t=n}}for(const o in t)r.prototype[o]=t[o];return r.t=n,r}const nd=Ja("email",{isLink:!0,toHref(){return"mailto:"+this.toString()}}),rd=Ja("text"),NB=Ja("nl"),Xa=Ja("url",{isLink:!0,toHref(n=no.defaultProtocol){return this.hasProtocol()?this.v:`${n}://${this.v}`},hasProtocol(){const n=this.tk;return n.length>=2&&n[0].t!==Kr&&n[1].t===On}}),Ht=n=>new yt(n);function ZB({groups:n}){const t=n.domain.concat([Ta,Da,Pn,Pa,Oa,Ra,za,ja,It,v1,Xr,Fa,Ua,Wa,dn,Ya,eo,qa]),r=[La,On,E1,sn,b1,Xr,Qr,C1,M1,Ma,Va,Gr,Jr,Ea,Ba,ba,Ca,Aa,_a,Na,Za,Sa,$a,Ia,Ha],o=[Ta,La,Da,Pa,Oa,Ra,za,ja,It,Gr,Jr,Xr,Fa,Ua,Wa,Qr,dn,Ya,eo,qa],a=Ht(),l=oe(a,eo);Me(l,o,l),Me(l,n.domain,l);const i=Ht(),c=Ht(),s=Ht();Me(a,n.domain,i),Me(a,n.scheme,c),Me(a,n.slashscheme,s),Me(i,o,l),Me(i,n.domain,i);const d=oe(i,Pn);oe(l,Pn,d),oe(c,Pn,d),oe(s,Pn,d);const u=oe(l,sn);Me(u,o,l),Me(u,n.domain,l);const h=Ht();Me(d,n.domain,h),Me(h,n.domain,h);const f=oe(h,sn);Me(f,n.domain,h);const p=Ht(nd);Me(f,n.tld,p),Me(f,n.utld,p),oe(d,Kr,p);const m=oe(h,It);oe(m,It,m),Me(m,n.domain,h),Me(p,n.domain,h),oe(p,sn,f),oe(p,It,m);const w=oe(p,On);Me(w,n.numeric,nd);const g=oe(i,It),k=oe(i,sn);oe(g,It,g),Me(g,n.domain,i),Me(k,o,l),Me(k,n.domain,i);const x=Ht(Xa);Me(k,n.tld,x),Me(k,n.utld,x),Me(x,n.domain,i),Me(x,o,l),oe(x,sn,k),oe(x,It,g),oe(x,Pn,d);const v=oe(x,On),b=Ht(Xa);Me(v,n.numeric,b);const C=Ht(Xa),A=Ht();Me(C,t,C),Me(C,r,A),Me(A,t,C),Me(A,r,A),oe(x,dn,C),oe(b,dn,C);const y=oe(c,On),B=oe(s,On),V=oe(B,dn),S=oe(V,dn);Me(c,n.domain,i),oe(c,sn,k),oe(c,It,g),Me(s,n.domain,i),oe(s,sn,k),oe(s,It,g),Me(y,n.domain,C),oe(y,dn,C),oe(y,Qr,C),Me(S,n.domain,C),Me(S,t,C),oe(S,dn,C);const Z=[[Gr,Jr],[Ba,Ea],[ba,Ca],[Ma,Va],[Aa,_a],[Na,Za],[Sa,$a],[Ia,Ha]];for(let D=0;D<Z.length;D++){const[R,K]=Z[D],_=oe(C,R);oe(A,R,_),oe(_,K,C);const T=Ht(Xa);Me(_,t,T);const E=Ht();Me(_,r),Me(T,t,T),Me(T,r,E),Me(E,t,T),Me(E,r,E),oe(T,K,C),oe(E,K,C)}return oe(a,Kr,x),oe(a,B1,NB),{start:a,tokens:G7}}function SB(n,t,r){let o=r.length,a=0,l=[],i=[];for(;a<o;){let c=n,s=null,d=null,u=0,h=null,f=-1;for(;a<o&&!(s=c.go(r[a].t));)i.push(r[a++]);for(;a<o&&(d=s||c.go(r[a].t));)s=null,c=d,c.accepts()?(f=0,h=c):f>=0&&f++,a++,u++;if(f<0)a-=u,a<o&&(i.push(r[a]),a++);else{i.length>0&&(l.push(S1(rd,t,i)),i=[]),a-=f,u-=f;const p=h.t,m=r.slice(a-u,a);l.push(S1(p,t,m))}}return i.length>0&&l.push(S1(rd,t,i)),l}function S1(n,t,r){const o=r[0].s,a=r[r.length-1].e,l=t.slice(o,a);return new n(l,r)}const $B=typeof console<"u"&&console&&console.warn||(()=>{}),IB="until manual call of linkify.init(). Register all schemes and plugins before invoking linkify the first time.",Le={scanner:null,parser:null,tokenQueue:[],pluginQueue:[],customSchemes:[],initialized:!1};function HB(){return yt.groups={},Le.scanner=null,Le.parser=null,Le.tokenQueue=[],Le.pluginQueue=[],Le.customSchemes=[],Le.initialized=!1,Le}function od(n,t=!1){if(Le.initialized&&$B(`linkifyjs: already initialized - will not register custom scheme "${n}" ${IB}`),!/^[0-9a-z]+(-[0-9a-z]+)*$/.test(n))throw new Error(`linkifyjs: incorrect scheme format.
94
+ 1. Must only contain digits, lowercase ASCII letters or "-"
95
+ 2. Cannot start or end with "-"
96
+ 3. "-" cannot repeat`);Le.customSchemes.push([n,t])}function TB(){Le.scanner=AB(Le.customSchemes);for(let n=0;n<Le.tokenQueue.length;n++)Le.tokenQueue[n][1]({scanner:Le.scanner});Le.parser=ZB(Le.scanner.tokens);for(let n=0;n<Le.pluginQueue.length;n++)Le.pluginQueue[n][1]({scanner:Le.scanner,parser:Le.parser});return Le.initialized=!0,Le}function $1(n){return Le.initialized||TB(),SB(Le.parser.start,n,X7(Le.scanner.start,n))}$1.scan=X7;function ad(n,t=null,r=null){if(t&&typeof t=="object"){if(r)throw Error(`linkifyjs: Invalid link type ${t}; must be a string`);r=t,t=null}const o=new Z1(r),a=$1(n),l=[];for(let i=0;i<a.length;i++){const c=a[i];c.isLink&&(!t||c.t===t)&&o.check(c)&&l.push(c.toFormattedObject(o))}return l}var I1="[\0-   ᠎ -\u2029  ]",LB=new RegExp(I1),DB=new RegExp(`${I1}$`),PB=new RegExp(I1,"g");function OB(n){return n.length===1?n[0].isLink:n.length===3&&n[1].isLink?["()","[]"].includes(n[0].value+n[2].value):!1}function RB(n){return new Fe({key:new Ue("autolink"),appendTransaction:(t,r,o)=>{const a=t.some(d=>d.docChanged)&&!r.doc.eq(o.doc),l=t.some(d=>d.getMeta("preventAutolink"));if(!a||l)return;const{tr:i}=o,c=H7(r.doc,[...t]);if(D7(c).forEach(({newRange:d})=>{const u=Jv(o.doc,d,p=>p.isTextblock);let h,f;if(u.length>1)h=u[0],f=o.doc.textBetween(h.pos,h.pos+h.node.nodeSize,void 0," ");else if(u.length){const p=o.doc.textBetween(d.from,d.to," "," ");if(!DB.test(p))return;h=u[0],f=o.doc.textBetween(h.pos,d.to,void 0," ")}if(h&&f){const p=f.split(LB).filter(Boolean);if(p.length<=0)return!1;const m=p[p.length-1],w=h.pos+f.lastIndexOf(m);if(!m)return!1;const g=$1(m).map(k=>k.toObject(n.defaultProtocol));if(!OB(g))return!1;g.filter(k=>k.isLink).map(k=>({...k,from:w+k.start+1,to:w+k.end+1})).filter(k=>o.schema.marks.code?!o.doc.rangeHasMark(k.from,k.to,o.schema.marks.code):!0).filter(k=>n.validate(k.value)).filter(k=>n.shouldAutoLink(k.value)).forEach(k=>{t1(k.from,k.to,o.doc).some(x=>x.mark.type===n.type)||i.addMark(k.from,k.to,n.type.create({href:k.href}))})}}),!!i.steps.length)return i}})}function zB(n){return new Fe({key:new Ue("handleClickLink"),props:{handleClick:(t,r,o)=>{var a,l;if(o.button!==0||!t.editable)return!1;let i=null;if(o.target instanceof HTMLAnchorElement)i=o.target;else{const s=o.target;if(!s)return!1;const d=n.editor.view.dom;i=s.closest("a"),i&&!d.contains(i)&&(i=null)}if(!i)return!1;let c=!1;if(n.enableClickSelection&&(c=n.editor.commands.extendMarkRange(n.type.name)),n.openOnClick){const s=ry(t.state,n.type.name),d=(a=i.href)!=null?a:s.href,u=(l=i.target)!=null?l:s.target;d&&(window.open(d,u),c=!0)}return c}}})}function jB(n){return new Fe({key:new Ue("handlePasteLink"),props:{handlePaste:(t,r,o)=>{const{shouldAutoLink:a}=n,{state:l}=t,{selection:i}=l,{empty:c}=i;if(c)return!1;let s="";o.content.forEach(u=>{s+=u.textContent});const d=ad(s,{defaultProtocol:n.defaultProtocol}).find(u=>u.isLink&&u.value===s);return!s||!d||a!==void 0&&!a(d.value)?!1:n.editor.commands.setMark(n.type,{href:d.href})}}})}function x0(n,t){const r=["http","https","ftp","ftps","mailto","tel","callto","sms","cid","xmpp"];return t&&t.forEach(o=>{const a=typeof o=="string"?o:o.scheme;a&&r.push(a)}),!n||n.replace(PB,"").match(new RegExp(`^(?:(?:${r.join("|")}):|[^a-z]|[a-z0-9+.-]+(?:[^a-z+.-:]|$))`,"i"))}var FB=tr.create({name:"link",priority:1e3,keepOnSplit:!1,exitable:!0,onCreate(){this.options.validate&&!this.options.shouldAutoLink&&(this.options.shouldAutoLink=this.options.validate,console.warn("The `validate` option is deprecated. Rename to the `shouldAutoLink` option instead.")),this.options.protocols.forEach(n=>{if(typeof n=="string"){od(n);return}od(n.scheme,n.optionalSlashes)})},onDestroy(){HB()},inclusive(){return this.options.autolink},addOptions(){return{openOnClick:!0,enableClickSelection:!1,linkOnPaste:!0,autolink:!0,protocols:[],defaultProtocol:"http",HTMLAttributes:{target:"_blank",rel:"noopener noreferrer nofollow",class:null},isAllowedUri:(n,t)=>!!x0(n,t.protocols),validate:n=>!!n,shouldAutoLink:n=>{const t=/^[a-z][a-z0-9+.-]*:\/\//i.test(n),r=/^[a-z][a-z0-9+.-]*:/i.test(n);if(t||r&&!n.includes("@"))return!0;const a=(n.includes("@")?n.split("@").pop():n).split(/[/?#:]/)[0];return!(/^\d{1,3}(\.\d{1,3}){3}$/.test(a)||!/\./.test(a))}}},addAttributes(){return{href:{default:null,parseHTML(n){return n.getAttribute("href")}},target:{default:this.options.HTMLAttributes.target},rel:{default:this.options.HTMLAttributes.rel},class:{default:this.options.HTMLAttributes.class}}},parseHTML(){return[{tag:"a[href]",getAttrs:n=>{const t=n.getAttribute("href");return!t||!this.options.isAllowedUri(t,{defaultValidate:r=>!!x0(r,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?!1:null}}]},renderHTML({HTMLAttributes:n}){return this.options.isAllowedUri(n.href,{defaultValidate:t=>!!x0(t,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?["a",Oe(this.options.HTMLAttributes,n),0]:["a",Oe(this.options.HTMLAttributes,{...n,href:""}),0]},markdownTokenName:"link",parseMarkdown:(n,t)=>t.applyMark("link",t.parseInline(n.tokens||[]),{href:n.href,title:n.title||null}),renderMarkdown:(n,t)=>{var r;const o=((r=n.attrs)==null?void 0:r.href)||"";return`[${t.renderChildren(n)}](${o})`},addCommands(){return{setLink:n=>({chain:t})=>{const{href:r}=n;return this.options.isAllowedUri(r,{defaultValidate:o=>!!x0(o,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?t().setMark(this.name,n).setMeta("preventAutolink",!0).run():!1},toggleLink:n=>({chain:t})=>{const{href:r}=n||{};return r&&!this.options.isAllowedUri(r,{defaultValidate:o=>!!x0(o,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?!1:t().toggleMark(this.name,n,{extendEmptyMarkRange:!0}).setMeta("preventAutolink",!0).run()},unsetLink:()=>({chain:n})=>n().unsetMark(this.name,{extendEmptyMarkRange:!0}).setMeta("preventAutolink",!0).run()}},addPasteRules(){return[g0({find:n=>{const t=[];if(n){const{protocols:r,defaultProtocol:o}=this.options,a=ad(n).filter(l=>l.isLink&&this.options.isAllowedUri(l.value,{defaultValidate:i=>!!x0(i,r),protocols:r,defaultProtocol:o}));a.length&&a.forEach(l=>{this.options.shouldAutoLink(l.value)&&t.push({text:l.value,data:{href:l.href},index:l.start})})}return t},type:this.type,getAttributes:n=>{var t;return{href:(t=n.data)==null?void 0:t.href}}})]},addProseMirrorPlugins(){const n=[],{protocols:t,defaultProtocol:r}=this.options;return this.options.autolink&&n.push(RB({type:this.type,defaultProtocol:this.options.defaultProtocol,validate:o=>this.options.isAllowedUri(o,{defaultValidate:a=>!!x0(a,t),protocols:t,defaultProtocol:r}),shouldAutoLink:this.options.shouldAutoLink})),n.push(zB({type:this.type,editor:this.editor,openOnClick:this.options.openOnClick==="whenNotEditable"?!0:this.options.openOnClick,enableClickSelection:this.options.enableClickSelection})),this.options.linkOnPaste&&n.push(jB({editor:this.editor,defaultProtocol:this.options.defaultProtocol,type:this.type,shouldAutoLink:this.options.shouldAutoLink})),n}}),UB=Object.defineProperty,WB=(n,t)=>{for(var r in t)UB(n,r,{get:t[r],enumerable:!0})},qB="listItem",ld="textStyle",id=/^\s*([-+*])\s$/,cd=dt.create({name:"bulletList",addOptions(){return{itemTypeName:"listItem",HTMLAttributes:{},keepMarks:!1,keepAttributes:!1}},group:"block list",content(){return`${this.options.itemTypeName}+`},parseHTML(){return[{tag:"ul"}]},renderHTML({HTMLAttributes:n}){return["ul",Oe(this.options.HTMLAttributes,n),0]},markdownTokenName:"list",parseMarkdown:(n,t)=>n.type!=="list"||n.ordered?[]:{type:"bulletList",content:n.items?t.parseChildren(n.items):[]},renderMarkdown:(n,t)=>n.content?t.renderChildren(n.content,`
97
+ `):"",markdownOptions:{indentsContent:!0},addCommands(){return{toggleBulletList:()=>({commands:n,chain:t})=>this.options.keepAttributes?t().toggleList(this.name,this.options.itemTypeName,this.options.keepMarks).updateAttributes(qB,this.editor.getAttributes(ld)).run():n.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-8":()=>this.editor.commands.toggleBulletList()}},addInputRules(){let n=rr({find:id,type:this.type});return(this.options.keepMarks||this.options.keepAttributes)&&(n=rr({find:id,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:()=>this.editor.getAttributes(ld),editor:this.editor})),[n]}}),sd=dt.create({name:"listItem",addOptions(){return{HTMLAttributes:{},bulletListTypeName:"bulletList",orderedListTypeName:"orderedList"}},content:"paragraph block*",defining:!0,parseHTML(){return[{tag:"li"}]},renderHTML({HTMLAttributes:n}){return["li",Oe(this.options.HTMLAttributes,n),0]},markdownTokenName:"list_item",parseMarkdown:(n,t)=>{if(n.type!=="list_item")return[];let r=[];if(n.tokens&&n.tokens.length>0)if(n.tokens.some(a=>a.type==="paragraph"))r=t.parseChildren(n.tokens);else{const a=n.tokens[0];if(a&&a.type==="text"&&a.tokens&&a.tokens.length>0){if(r=[{type:"paragraph",content:t.parseInline(a.tokens)}],n.tokens.length>1){const i=n.tokens.slice(1),c=t.parseChildren(i);r.push(...c)}}else r=t.parseChildren(n.tokens)}return r.length===0&&(r=[{type:"paragraph",content:[]}]),{type:"listItem",content:r}},renderMarkdown:(n,t,r)=>d1(n,t,o=>{var a,l;return o.parentType==="bulletList"?"- ":o.parentType==="orderedList"?`${(((l=(a=o.meta)==null?void 0:a.parentAttrs)==null?void 0:l.start)||1)+o.index}. `:"- "},r),addKeyboardShortcuts(){return{Enter:()=>this.editor.commands.splitListItem(this.name),Tab:()=>this.editor.commands.sinkListItem(this.name),"Shift-Tab":()=>this.editor.commands.liftListItem(this.name)}}}),YB={};WB(YB,{findListItemPos:()=>ro,getNextListDepth:()=>H1,handleBackspace:()=>T1,handleDelete:()=>L1,hasListBefore:()=>dd,hasListItemAfter:()=>KB,hasListItemBefore:()=>ud,listItemHasSubList:()=>hd,nextListIsDeeper:()=>pd,nextListIsHigher:()=>fd});var ro=(n,t)=>{const{$from:r}=t.selection,o=rt(n,t.schema);let a=null,l=r.depth,i=r.pos,c=null;for(;l>0&&c===null;)a=r.node(l),a.type===o?c=l:(l-=1,i-=1);return c===null?null:{$pos:t.doc.resolve(i),depth:c}},H1=(n,t)=>{const r=ro(n,t);if(!r)return!1;const[,o]=ly(t,n,r.$pos.pos+4);return o},dd=(n,t,r)=>{const{$anchor:o}=n.selection,a=Math.max(0,o.pos-2),l=n.doc.resolve(a).node();return!(!l||!r.includes(l.type.name))},ud=(n,t)=>{var r;const{$anchor:o}=t.selection,a=t.doc.resolve(o.pos-2);return!(a.index()===0||((r=a.nodeBefore)==null?void 0:r.type.name)!==n)},hd=(n,t,r)=>{if(!r)return!1;const o=rt(n,t.schema);let a=!1;return r.descendants(l=>{l.type===o&&(a=!0)}),a},T1=(n,t,r)=>{if(n.commands.undoInputRule())return!0;if(n.state.selection.from!==n.state.selection.to)return!1;if(!er(n.state,t)&&dd(n.state,t,r)){const{$anchor:c}=n.state.selection,s=n.state.doc.resolve(c.before()-1),d=[];s.node().descendants((f,p)=>{f.type.name===t&&d.push({node:f,pos:p})});const u=d.at(-1);if(!u)return!1;const h=n.state.doc.resolve(s.start()+u.pos+1);return n.chain().cut({from:c.start()-1,to:c.end()+1},h.end()).joinForward().run()}if(!er(n.state,t)||!sy(n.state))return!1;const o=ro(t,n.state);if(!o)return!1;const l=n.state.doc.resolve(o.$pos.pos-2).node(o.depth),i=hd(t,n.state,l);return ud(t,n.state)&&!i?n.commands.joinItemBackward():n.chain().liftListItem(t).run()},pd=(n,t)=>{const r=H1(n,t),o=ro(n,t);return!o||!r?!1:r>o.depth},fd=(n,t)=>{const r=H1(n,t),o=ro(n,t);return!o||!r?!1:r<o.depth},L1=(n,t)=>{if(!er(n.state,t)||!cy(n.state,t))return!1;const{selection:r}=n.state,{$from:o,$to:a}=r;return!r.empty&&o.sameParent(a)?!1:pd(t,n.state)?n.chain().focus(n.state.selection.from+4).lift(t).joinBackward().run():fd(t,n.state)?n.chain().joinForward().joinBackward().run():n.commands.joinItemForward()},KB=(n,t)=>{var r;const{$anchor:o}=t.selection,a=t.doc.resolve(o.pos-o.parentOffset-2);return!(a.index()===a.parent.childCount-1||((r=a.nodeAfter)==null?void 0:r.type.name)!==n)},md=ze.create({name:"listKeymap",addOptions(){return{listTypes:[{itemName:"listItem",wrapperNames:["bulletList","orderedList"]},{itemName:"taskItem",wrapperNames:["taskList"]}]}},addKeyboardShortcuts(){return{Delete:({editor:n})=>{let t=!1;return this.options.listTypes.forEach(({itemName:r})=>{n.state.schema.nodes[r]!==void 0&&L1(n,r)&&(t=!0)}),t},"Mod-Delete":({editor:n})=>{let t=!1;return this.options.listTypes.forEach(({itemName:r})=>{n.state.schema.nodes[r]!==void 0&&L1(n,r)&&(t=!0)}),t},Backspace:({editor:n})=>{let t=!1;return this.options.listTypes.forEach(({itemName:r,wrapperNames:o})=>{n.state.schema.nodes[r]!==void 0&&T1(n,r,o)&&(t=!0)}),t},"Mod-Backspace":({editor:n})=>{let t=!1;return this.options.listTypes.forEach(({itemName:r,wrapperNames:o})=>{n.state.schema.nodes[r]!==void 0&&T1(n,r,o)&&(t=!0)}),t}}}}),wd=/^(\s*)(\d+)\.\s+(.*)$/,GB=/^\s/;function JB(n){const t=[];let r=0,o=0;for(;r<n.length;){const a=n[r],l=a.match(wd);if(!l)break;const[,i,c,s]=l,d=i.length;let u=s,h=r+1;const f=[a];for(;h<n.length;){const p=n[h];if(p.match(wd))break;if(p.trim()==="")f.push(p),u+=`
98
+ `,h+=1;else if(p.match(GB))f.push(p),u+=`
99
+ ${p.slice(d+2)}`,h+=1;else break}t.push({indent:d,number:parseInt(c,10),content:u.trim(),raw:f.join(`
100
+ `)}),o=h,r=h}return[t,o]}function gd(n,t,r){var o;const a=[];let l=0;for(;l<n.length;){const i=n[l];if(i.indent===t){const c=i.content.split(`
101
+ `),s=((o=c[0])==null?void 0:o.trim())||"",d=[];s&&d.push({type:"paragraph",raw:s,tokens:r.inlineTokens(s)});const u=c.slice(1).join(`
102
+ `).trim();if(u){const p=r.blockTokens(u);d.push(...p)}let h=l+1;const f=[];for(;h<n.length&&n[h].indent>t;)f.push(n[h]),h+=1;if(f.length>0){const p=Math.min(...f.map(w=>w.indent)),m=gd(f,p,r);d.push({type:"list",ordered:!0,start:f[0].number,items:m,raw:f.map(w=>w.raw).join(`
103
+ `)})}a.push({type:"list_item",raw:i.raw,tokens:d}),l=h}else l+=1}return a}function XB(n,t){return n.map(r=>{if(r.type!=="list_item")return t.parseChildren([r])[0];const o=[];return r.tokens&&r.tokens.length>0&&r.tokens.forEach(a=>{if(a.type==="paragraph"||a.type==="list"||a.type==="blockquote"||a.type==="code")o.push(...t.parseChildren([a]));else if(a.type==="text"&&a.tokens){const l=t.parseChildren([a]);o.push({type:"paragraph",content:l})}else{const l=t.parseChildren([a]);l.length>0&&o.push(...l)}}),{type:"listItem",content:o}})}var QB="listItem",kd="textStyle",xd=/^(\d+)\.\s$/,vd=dt.create({name:"orderedList",addOptions(){return{itemTypeName:"listItem",HTMLAttributes:{},keepMarks:!1,keepAttributes:!1}},group:"block list",content(){return`${this.options.itemTypeName}+`},addAttributes(){return{start:{default:1,parseHTML:n=>n.hasAttribute("start")?parseInt(n.getAttribute("start")||"",10):1},type:{default:null,parseHTML:n=>n.getAttribute("type")}}},parseHTML(){return[{tag:"ol"}]},renderHTML({HTMLAttributes:n}){const{start:t,...r}=n;return t===1?["ol",Oe(this.options.HTMLAttributes,r),0]:["ol",Oe(this.options.HTMLAttributes,n),0]},markdownTokenName:"list",parseMarkdown:(n,t)=>{if(n.type!=="list"||!n.ordered)return[];const r=n.start||1,o=n.items?XB(n.items,t):[];return r!==1?{type:"orderedList",attrs:{start:r},content:o}:{type:"orderedList",content:o}},renderMarkdown:(n,t)=>n.content?t.renderChildren(n.content,`
104
+ `):"",markdownTokenizer:{name:"orderedList",level:"block",start:n=>{const t=n.match(/^(\s*)(\d+)\.\s+/),r=t?.index;return r!==void 0?r:-1},tokenize:(n,t,r)=>{var o;const a=n.split(`
105
+ `),[l,i]=JB(a);if(l.length===0)return;const c=gd(l,0,r);return c.length===0?void 0:{type:"list",ordered:!0,start:((o=l[0])==null?void 0:o.number)||1,items:c,raw:a.slice(0,i).join(`
106
+ `)}}},markdownOptions:{indentsContent:!0},addCommands(){return{toggleOrderedList:()=>({commands:n,chain:t})=>this.options.keepAttributes?t().toggleList(this.name,this.options.itemTypeName,this.options.keepMarks).updateAttributes(QB,this.editor.getAttributes(kd)).run():n.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-7":()=>this.editor.commands.toggleOrderedList()}},addInputRules(){let n=rr({find:xd,type:this.type,getAttributes:t=>({start:+t[1]}),joinPredicate:(t,r)=>r.childCount+r.attrs.start===+t[1]});return(this.options.keepMarks||this.options.keepAttributes)&&(n=rr({find:xd,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:t=>({start:+t[1],...this.editor.getAttributes(kd)}),joinPredicate:(t,r)=>r.childCount+r.attrs.start===+t[1],editor:this.editor})),[n]}}),eE=/^\s*(\[([( |x])?\])\s$/,tE=dt.create({name:"taskItem",addOptions(){return{nested:!1,HTMLAttributes:{},taskListTypeName:"taskList",a11y:void 0}},content(){return this.options.nested?"paragraph block*":"paragraph+"},defining:!0,addAttributes(){return{checked:{default:!1,keepOnSplit:!1,parseHTML:n=>{const t=n.getAttribute("data-checked");return t===""||t==="true"},renderHTML:n=>({"data-checked":n.checked})}}},parseHTML(){return[{tag:`li[data-type="${this.name}"]`,priority:51}]},renderHTML({node:n,HTMLAttributes:t}){return["li",Oe(this.options.HTMLAttributes,t,{"data-type":this.name}),["label",["input",{type:"checkbox",checked:n.attrs.checked?"checked":null}],["span"]],["div",0]]},parseMarkdown:(n,t)=>{const r=[];if(n.tokens&&n.tokens.length>0?r.push(t.createNode("paragraph",{},t.parseInline(n.tokens))):n.text?r.push(t.createNode("paragraph",{},[t.createNode("text",{text:n.text})])):r.push(t.createNode("paragraph",{},[])),n.nestedTokens&&n.nestedTokens.length>0){const o=t.parseChildren(n.nestedTokens);r.push(...o)}return t.createNode("taskItem",{checked:n.checked||!1},r)},renderMarkdown:(n,t)=>{var r;const a=`- [${(r=n.attrs)!=null&&r.checked?"x":" "}] `;return d1(n,t,a)},addKeyboardShortcuts(){const n={Enter:()=>this.editor.commands.splitListItem(this.name),"Shift-Tab":()=>this.editor.commands.liftListItem(this.name)};return this.options.nested?{...n,Tab:()=>this.editor.commands.sinkListItem(this.name)}:n},addNodeView(){return({node:n,HTMLAttributes:t,getPos:r,editor:o})=>{const a=document.createElement("li"),l=document.createElement("label"),i=document.createElement("span"),c=document.createElement("input"),s=document.createElement("div"),d=h=>{var f,p;c.ariaLabel=((p=(f=this.options.a11y)==null?void 0:f.checkboxLabel)==null?void 0:p.call(f,h,c.checked))||`Task item checkbox for ${h.textContent||"empty task item"}`};d(n),l.contentEditable="false",c.type="checkbox",c.addEventListener("mousedown",h=>h.preventDefault()),c.addEventListener("change",h=>{if(!o.isEditable&&!this.options.onReadOnlyChecked){c.checked=!c.checked;return}const{checked:f}=h.target;o.isEditable&&typeof r=="function"&&o.chain().focus(void 0,{scrollIntoView:!1}).command(({tr:p})=>{const m=r();if(typeof m!="number")return!1;const w=p.doc.nodeAt(m);return p.setNodeMarkup(m,void 0,{...w?.attrs,checked:f}),!0}).run(),!o.isEditable&&this.options.onReadOnlyChecked&&(this.options.onReadOnlyChecked(n,f)||(c.checked=!c.checked))}),Object.entries(this.options.HTMLAttributes).forEach(([h,f])=>{a.setAttribute(h,f)}),a.dataset.checked=n.attrs.checked,c.checked=n.attrs.checked,l.append(c,i),a.append(l,s),Object.entries(t).forEach(([h,f])=>{a.setAttribute(h,f)});let u=new Set(Object.keys(t));return{dom:a,contentDOM:s,update:h=>{if(h.type!==this.type)return!1;a.dataset.checked=h.attrs.checked,c.checked=h.attrs.checked,d(h);const f=o.extensionManager.attributes,p=Qv(h,f),m=new Set(Object.keys(p)),w=this.options.HTMLAttributes;return u.forEach(g=>{m.has(g)||(g in w?a.setAttribute(g,w[g]):a.removeAttribute(g))}),Object.entries(p).forEach(([g,k])=>{k==null?g in w?a.setAttribute(g,w[g]):a.removeAttribute(g):a.setAttribute(g,k)}),u=m,!0}}}},addInputRules(){return[rr({find:eE,type:this.type,getAttributes:n=>({checked:n[n.length-1]==="x"})})]}}),nE=dt.create({name:"taskList",addOptions(){return{itemTypeName:"taskItem",HTMLAttributes:{}}},group:"block list",content(){return`${this.options.itemTypeName}+`},parseHTML(){return[{tag:`ul[data-type="${this.name}"]`,priority:51}]},renderHTML({HTMLAttributes:n}){return["ul",Oe(this.options.HTMLAttributes,n,{"data-type":this.name}),0]},parseMarkdown:(n,t)=>t.createNode("taskList",{},t.parseChildren(n.items||[])),renderMarkdown:(n,t)=>n.content?t.renderChildren(n.content,`
107
+ `):"",markdownTokenizer:{name:"taskList",level:"block",start(n){var t;const r=(t=n.match(/^\s*[-+*]\s+\[([ xX])\]\s+/))==null?void 0:t.index;return r!==void 0?r:-1},tokenize(n,t,r){const o=l=>{const i=s1(l,{itemPattern:/^(\s*)([-+*])\s+\[([ xX])\]\s+(.*)$/,extractItemData:c=>({indentLevel:c[1].length,mainContent:c[4],checked:c[3].toLowerCase()==="x"}),createToken:(c,s)=>({type:"taskItem",raw:"",mainContent:c.mainContent,indentLevel:c.indentLevel,checked:c.checked,text:c.mainContent,tokens:r.inlineTokens(c.mainContent),nestedTokens:s}),customNestedParser:o},r);return i?[{type:"taskList",raw:i.raw,items:i.items}]:r.blockTokens(l)},a=s1(n,{itemPattern:/^(\s*)([-+*])\s+\[([ xX])\]\s+(.*)$/,extractItemData:l=>({indentLevel:l[1].length,mainContent:l[4],checked:l[3].toLowerCase()==="x"}),createToken:(l,i)=>({type:"taskItem",raw:"",mainContent:l.mainContent,indentLevel:l.indentLevel,checked:l.checked,text:l.mainContent,tokens:r.inlineTokens(l.mainContent),nestedTokens:i}),customNestedParser:o},r);if(a)return{type:"taskList",raw:a.raw,items:a.items}}},markdownOptions:{indentsContent:!0},addCommands(){return{toggleTaskList:()=>({commands:n})=>n.toggleList(this.name,this.options.itemTypeName)}},addKeyboardShortcuts(){return{"Mod-Shift-9":()=>this.editor.commands.toggleTaskList()}}});ze.create({name:"listKit",addExtensions(){const n=[];return this.options.bulletList!==!1&&n.push(cd.configure(this.options.bulletList)),this.options.listItem!==!1&&n.push(sd.configure(this.options.listItem)),this.options.listKeymap!==!1&&n.push(md.configure(this.options.listKeymap)),this.options.orderedList!==!1&&n.push(vd.configure(this.options.orderedList)),this.options.taskItem!==!1&&n.push(tE.configure(this.options.taskItem)),this.options.taskList!==!1&&n.push(nE.configure(this.options.taskList)),n}});var yd="&nbsp;",rE=" ",oE=dt.create({name:"paragraph",priority:1e3,addOptions(){return{HTMLAttributes:{}}},group:"block",content:"inline*",parseHTML(){return[{tag:"p"}]},renderHTML({HTMLAttributes:n}){return["p",Oe(this.options.HTMLAttributes,n),0]},parseMarkdown:(n,t)=>{const r=n.tokens||[];if(r.length===1&&r[0].type==="image")return t.parseChildren([r[0]]);const o=t.parseInline(r);return o.length===1&&o[0].type==="text"&&(o[0].text===yd||o[0].text===rE)?t.createNode("paragraph",void 0,[]):t.createNode("paragraph",void 0,o)},renderMarkdown:(n,t)=>{if(!n)return"";const r=Array.isArray(n.content)?n.content:[];return r.length===0?yd:t.renderChildren(r)},addCommands(){return{setParagraph:()=>({commands:n})=>n.setNode(this.name)}},addKeyboardShortcuts(){return{"Mod-Alt-0":()=>this.editor.commands.setParagraph()}}}),aE=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))$/,lE=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))/g,iE=tr.create({name:"strike",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"s"},{tag:"del"},{tag:"strike"},{style:"text-decoration",consuming:!1,getAttrs:n=>n.includes("line-through")?{}:!1}]},renderHTML({HTMLAttributes:n}){return["s",Oe(this.options.HTMLAttributes,n),0]},markdownTokenName:"del",parseMarkdown:(n,t)=>t.applyMark("strike",t.parseInline(n.tokens||[])),renderMarkdown:(n,t)=>`~~${t.renderChildren(n)}~~`,addCommands(){return{setStrike:()=>({commands:n})=>n.setMark(this.name),toggleStrike:()=>({commands:n})=>n.toggleMark(this.name),unsetStrike:()=>({commands:n})=>n.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-Shift-s":()=>this.editor.commands.toggleStrike()}},addInputRules(){return[nr({find:aE,type:this.type})]},addPasteRules(){return[g0({find:lE,type:this.type})]}}),cE=dt.create({name:"text",group:"inline",parseMarkdown:n=>({type:"text",text:n.text||""}),renderMarkdown:n=>n.text||""}),sE=tr.create({name:"underline",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"u"},{style:"text-decoration",consuming:!1,getAttrs:n=>n.includes("underline")?{}:!1}]},renderHTML({HTMLAttributes:n}){return["u",Oe(this.options.HTMLAttributes,n),0]},parseMarkdown(n,t){return t.applyMark(this.name||"underline",t.parseInline(n.tokens||[]))},renderMarkdown(n,t){return`++${t.renderChildren(n)}++`},markdownTokenizer:{name:"underline",level:"inline",start(n){return n.indexOf("++")},tokenize(n,t,r){const a=/^(\+\+)([\s\S]+?)(\+\+)/.exec(n);if(!a)return;const l=a[2].trim();return{type:"underline",raw:a[0],text:l,tokens:r.inlineTokens(l)}}},addCommands(){return{setUnderline:()=>({commands:n})=>n.setMark(this.name),toggleUnderline:()=>({commands:n})=>n.toggleMark(this.name),unsetUnderline:()=>({commands:n})=>n.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-u":()=>this.editor.commands.toggleUnderline(),"Mod-U":()=>this.editor.commands.toggleUnderline()}}});function dE(n={}){return new Fe({view(t){return new uE(t,n)}})}class uE{constructor(t,r){var o;this.editorView=t,this.cursorPos=null,this.element=null,this.timeout=-1,this.width=(o=r.width)!==null&&o!==void 0?o:1,this.color=r.color===!1?void 0:r.color||"black",this.class=r.class,this.handlers=["dragover","dragend","drop","dragleave"].map(a=>{let l=i=>{this[a](i)};return t.dom.addEventListener(a,l),{name:a,handler:l}})}destroy(){this.handlers.forEach(({name:t,handler:r})=>this.editorView.dom.removeEventListener(t,r))}update(t,r){this.cursorPos!=null&&r.doc!=t.state.doc&&(this.cursorPos>t.state.doc.content.size?this.setCursor(null):this.updateOverlay())}setCursor(t){t!=this.cursorPos&&(this.cursorPos=t,t==null?(this.element.parentNode.removeChild(this.element),this.element=null):this.updateOverlay())}updateOverlay(){let t=this.editorView.state.doc.resolve(this.cursorPos),r=!t.parent.inlineContent,o,a=this.editorView.dom,l=a.getBoundingClientRect(),i=l.width/a.offsetWidth,c=l.height/a.offsetHeight;if(r){let h=t.nodeBefore,f=t.nodeAfter;if(h||f){let p=this.editorView.nodeDOM(this.cursorPos-(h?h.nodeSize:0));if(p){let m=p.getBoundingClientRect(),w=h?m.bottom:m.top;h&&f&&(w=(w+this.editorView.nodeDOM(this.cursorPos).getBoundingClientRect().top)/2);let g=this.width/2*c;o={left:m.left,right:m.right,top:w-g,bottom:w+g}}}}if(!o){let h=this.editorView.coordsAtPos(this.cursorPos),f=this.width/2*i;o={left:h.left-f,right:h.left+f,top:h.top,bottom:h.bottom}}let s=this.editorView.dom.offsetParent;this.element||(this.element=s.appendChild(document.createElement("div")),this.class&&(this.element.className=this.class),this.element.style.cssText="position: absolute; z-index: 50; pointer-events: none;",this.color&&(this.element.style.backgroundColor=this.color)),this.element.classList.toggle("prosemirror-dropcursor-block",r),this.element.classList.toggle("prosemirror-dropcursor-inline",!r);let d,u;if(!s||s==document.body&&getComputedStyle(s).position=="static")d=-pageXOffset,u=-pageYOffset;else{let h=s.getBoundingClientRect(),f=h.width/s.offsetWidth,p=h.height/s.offsetHeight;d=h.left-s.scrollLeft*f,u=h.top-s.scrollTop*p}this.element.style.left=(o.left-d)/i+"px",this.element.style.top=(o.top-u)/c+"px",this.element.style.width=(o.right-o.left)/i+"px",this.element.style.height=(o.bottom-o.top)/c+"px"}scheduleRemoval(t){clearTimeout(this.timeout),this.timeout=setTimeout(()=>this.setCursor(null),t)}dragover(t){if(!this.editorView.editable)return;let r=this.editorView.posAtCoords({left:t.clientX,top:t.clientY}),o=r&&r.inside>=0&&this.editorView.state.doc.nodeAt(r.inside),a=o&&o.type.spec.disableDropCursor,l=typeof a=="function"?a(this.editorView,r,t):a;if(r&&!l){let i=r.pos;if(this.editorView.dragging&&this.editorView.dragging.slice){let c=p2(this.editorView.state.doc,i,this.editorView.dragging.slice);c!=null&&(i=c)}this.setCursor(i),this.scheduleRemoval(5e3)}}dragend(){this.scheduleRemoval(20)}drop(){this.scheduleRemoval(20)}dragleave(t){this.editorView.dom.contains(t.relatedTarget)||this.setCursor(null)}}class qe extends Ee{constructor(t){super(t,t)}map(t,r){let o=t.resolve(r.map(this.head));return qe.valid(o)?new qe(o):Ee.near(o)}content(){return de.empty}eq(t){return t instanceof qe&&t.head==this.head}toJSON(){return{type:"gapcursor",pos:this.head}}static fromJSON(t,r){if(typeof r.pos!="number")throw new RangeError("Invalid input for GapCursor.fromJSON");return new qe(t.resolve(r.pos))}getBookmark(){return new D1(this.anchor)}static valid(t){let r=t.parent;if(r.isTextblock||!hE(t)||!pE(t))return!1;let o=r.type.spec.allowGapCursor;if(o!=null)return o;let a=r.contentMatchAt(t.index()).defaultType;return a&&a.isTextblock}static findGapCursorFrom(t,r,o=!1){e:for(;;){if(!o&&qe.valid(t))return t;let a=t.pos,l=null;for(let i=t.depth;;i--){let c=t.node(i);if(r>0?t.indexAfter(i)<c.childCount:t.index(i)>0){l=c.child(r>0?t.indexAfter(i):t.index(i)-1);break}else if(i==0)return null;a+=r;let s=t.doc.resolve(a);if(qe.valid(s))return s}for(;;){let i=r>0?l.firstChild:l.lastChild;if(!i){if(l.isAtom&&!l.isText&&!ge.isSelectable(l)){t=t.doc.resolve(a+l.nodeSize*r),o=!1;continue e}break}l=i,a+=r;let c=t.doc.resolve(a);if(qe.valid(c))return c}return null}}}qe.prototype.visible=!1,qe.findFrom=qe.findGapCursorFrom,Ee.jsonID("gapcursor",qe);class D1{constructor(t){this.pos=t}map(t){return new D1(t.map(this.pos))}resolve(t){let r=t.resolve(this.pos);return qe.valid(r)?new qe(r):Ee.near(r)}}function Bd(n){return n.isAtom||n.spec.isolating||n.spec.createGapCursor}function hE(n){for(let t=n.depth;t>=0;t--){let r=n.index(t),o=n.node(t);if(r==0){if(o.type.spec.isolating)return!0;continue}for(let a=o.child(r-1);;a=a.lastChild){if(a.childCount==0&&!a.inlineContent||Bd(a.type))return!0;if(a.inlineContent)return!1}}return!0}function pE(n){for(let t=n.depth;t>=0;t--){let r=n.indexAfter(t),o=n.node(t);if(r==o.childCount){if(o.type.spec.isolating)return!0;continue}for(let a=o.child(r);;a=a.firstChild){if(a.childCount==0&&!a.inlineContent||Bd(a.type))return!0;if(a.inlineContent)return!1}}return!0}function fE(){return new Fe({props:{decorations:kE,createSelectionBetween(n,t,r){return t.pos==r.pos&&qe.valid(r)?new qe(r):null},handleClick:wE,handleKeyDown:mE,handleDOMEvents:{beforeinput:gE}}})}const mE=b7({ArrowLeft:Qa("horiz",-1),ArrowRight:Qa("horiz",1),ArrowUp:Qa("vert",-1),ArrowDown:Qa("vert",1)});function Qa(n,t){const r=n=="vert"?t>0?"down":"up":t>0?"right":"left";return function(o,a,l){let i=o.selection,c=t>0?i.$to:i.$from,s=i.empty;if(i instanceof ke){if(!l.endOfTextblock(r)||c.depth==0)return!1;s=!1,c=o.doc.resolve(t>0?c.after():c.before())}let d=qe.findGapCursorFrom(c,t,s);return d?(a&&a(o.tr.setSelection(new qe(d))),!0):!1}}function wE(n,t,r){if(!n||!n.editable)return!1;let o=n.state.doc.resolve(t);if(!qe.valid(o))return!1;let a=n.posAtCoords({left:r.clientX,top:r.clientY});return a&&a.inside>-1&&ge.isSelectable(n.state.doc.nodeAt(a.inside))?!1:(n.dispatch(n.state.tr.setSelection(new qe(o))),!0)}function gE(n,t){if(t.inputType!="insertCompositionText"||!(n.state.selection instanceof qe))return!1;let{$from:r}=n.state.selection,o=r.parent.contentMatchAt(r.index()).findWrapping(n.state.schema.nodes.text);if(!o)return!1;let a=Q.empty;for(let i=o.length-1;i>=0;i--)a=Q.from(o[i].createAndFill(null,a));let l=n.state.tr.replace(r.pos,r.pos,new de(a,0,0));return l.setSelection(ke.near(l.doc.resolve(r.pos+1))),n.dispatch(l),!1}function kE(n){if(!(n.selection instanceof qe))return null;let t=document.createElement("div");return t.className="ProseMirror-gapcursor",Te.create(n.doc,[ft.widget(n.selection.head,t,{key:"gapcursor"})])}var el=200,it=function(){};it.prototype.append=function(t){return t.length?(t=it.from(t),!this.length&&t||t.length<el&&this.leafAppend(t)||this.length<el&&t.leafPrepend(this)||this.appendInner(t)):this},it.prototype.prepend=function(t){return t.length?it.from(t).append(this):this},it.prototype.appendInner=function(t){return new xE(this,t)},it.prototype.slice=function(t,r){return t===void 0&&(t=0),r===void 0&&(r=this.length),t>=r?it.empty:this.sliceInner(Math.max(0,t),Math.min(this.length,r))},it.prototype.get=function(t){if(!(t<0||t>=this.length))return this.getInner(t)},it.prototype.forEach=function(t,r,o){r===void 0&&(r=0),o===void 0&&(o=this.length),r<=o?this.forEachInner(t,r,o,0):this.forEachInvertedInner(t,r,o,0)},it.prototype.map=function(t,r,o){r===void 0&&(r=0),o===void 0&&(o=this.length);var a=[];return this.forEach(function(l,i){return a.push(t(l,i))},r,o),a},it.from=function(t){return t instanceof it?t:t&&t.length?new Ed(t):it.empty};var Ed=(function(n){function t(o){n.call(this),this.values=o}n&&(t.__proto__=n),t.prototype=Object.create(n&&n.prototype),t.prototype.constructor=t;var r={length:{configurable:!0},depth:{configurable:!0}};return t.prototype.flatten=function(){return this.values},t.prototype.sliceInner=function(a,l){return a==0&&l==this.length?this:new t(this.values.slice(a,l))},t.prototype.getInner=function(a){return this.values[a]},t.prototype.forEachInner=function(a,l,i,c){for(var s=l;s<i;s++)if(a(this.values[s],c+s)===!1)return!1},t.prototype.forEachInvertedInner=function(a,l,i,c){for(var s=l-1;s>=i;s--)if(a(this.values[s],c+s)===!1)return!1},t.prototype.leafAppend=function(a){if(this.length+a.length<=el)return new t(this.values.concat(a.flatten()))},t.prototype.leafPrepend=function(a){if(this.length+a.length<=el)return new t(a.flatten().concat(this.values))},r.length.get=function(){return this.values.length},r.depth.get=function(){return 0},Object.defineProperties(t.prototype,r),t})(it);it.empty=new Ed([]);var xE=(function(n){function t(r,o){n.call(this),this.left=r,this.right=o,this.length=r.length+o.length,this.depth=Math.max(r.depth,o.depth)+1}return n&&(t.__proto__=n),t.prototype=Object.create(n&&n.prototype),t.prototype.constructor=t,t.prototype.flatten=function(){return this.left.flatten().concat(this.right.flatten())},t.prototype.getInner=function(o){return o<this.left.length?this.left.get(o):this.right.get(o-this.left.length)},t.prototype.forEachInner=function(o,a,l,i){var c=this.left.length;if(a<c&&this.left.forEachInner(o,a,Math.min(l,c),i)===!1||l>c&&this.right.forEachInner(o,Math.max(a-c,0),Math.min(this.length,l)-c,i+c)===!1)return!1},t.prototype.forEachInvertedInner=function(o,a,l,i){var c=this.left.length;if(a>c&&this.right.forEachInvertedInner(o,a-c,Math.max(l,c)-c,i+c)===!1||l<c&&this.left.forEachInvertedInner(o,Math.min(a,c),l,i)===!1)return!1},t.prototype.sliceInner=function(o,a){if(o==0&&a==this.length)return this;var l=this.left.length;return a<=l?this.left.slice(o,a):o>=l?this.right.slice(o-l,a-l):this.left.slice(o,l).append(this.right.slice(0,a-l))},t.prototype.leafAppend=function(o){var a=this.right.leafAppend(o);if(a)return new t(this.left,a)},t.prototype.leafPrepend=function(o){var a=this.left.leafPrepend(o);if(a)return new t(a,this.right)},t.prototype.appendInner=function(o){return this.left.depth>=Math.max(this.right.depth,o.depth)+1?new t(this.left,new t(this.right,o)):new t(this,o)},t})(it);const vE=500;class qt{constructor(t,r){this.items=t,this.eventCount=r}popEvent(t,r){if(this.eventCount==0)return null;let o=this.items.length;for(;;o--)if(this.items.get(o-1).selection){--o;break}let a,l;r&&(a=this.remapping(o,this.items.length),l=a.maps.length);let i=t.tr,c,s,d=[],u=[];return this.items.forEach((h,f)=>{if(!h.step){a||(a=this.remapping(o,f+1),l=a.maps.length),l--,u.push(h);return}if(a){u.push(new un(h.map));let p=h.step.map(a.slice(l)),m;p&&i.maybeStep(p).doc&&(m=i.mapping.maps[i.mapping.maps.length-1],d.push(new un(m,void 0,void 0,d.length+u.length))),l--,m&&a.appendMap(m,l)}else i.maybeStep(h.step);if(h.selection)return c=a?h.selection.map(a.slice(l)):h.selection,s=new qt(this.items.slice(0,o).append(u.reverse().concat(d)),this.eventCount-1),!1},this.items.length,0),{remaining:s,transform:i,selection:c}}addTransform(t,r,o,a){let l=[],i=this.eventCount,c=this.items,s=!a&&c.length?c.get(c.length-1):null;for(let u=0;u<t.steps.length;u++){let h=t.steps[u].invert(t.docs[u]),f=new un(t.mapping.maps[u],h,r),p;(p=s&&s.merge(f))&&(f=p,u?l.pop():c=c.slice(0,c.length-1)),l.push(f),r&&(i++,r=void 0),a||(s=f)}let d=i-o.depth;return d>BE&&(c=yE(c,d),i-=d),new qt(c.append(l),i)}remapping(t,r){let o=new Lr;return this.items.forEach((a,l)=>{let i=a.mirrorOffset!=null&&l-a.mirrorOffset>=t?o.maps.length-a.mirrorOffset:void 0;o.appendMap(a.map,i)},t,r),o}addMaps(t){return this.eventCount==0?this:new qt(this.items.append(t.map(r=>new un(r))),this.eventCount)}rebased(t,r){if(!this.eventCount)return this;let o=[],a=Math.max(0,this.items.length-r),l=t.mapping,i=t.steps.length,c=this.eventCount;this.items.forEach(f=>{f.selection&&c--},a);let s=r;this.items.forEach(f=>{let p=l.getMirror(--s);if(p==null)return;i=Math.min(i,p);let m=l.maps[p];if(f.step){let w=t.steps[p].invert(t.docs[p]),g=f.selection&&f.selection.map(l.slice(s+1,p));g&&c++,o.push(new un(m,w,g))}else o.push(new un(m))},a);let d=[];for(let f=r;f<i;f++)d.push(new un(l.maps[f]));let u=this.items.slice(0,a).append(d).append(o),h=new qt(u,c);return h.emptyItemCount()>vE&&(h=h.compress(this.items.length-o.length)),h}emptyItemCount(){let t=0;return this.items.forEach(r=>{r.step||t++}),t}compress(t=this.items.length){let r=this.remapping(0,t),o=r.maps.length,a=[],l=0;return this.items.forEach((i,c)=>{if(c>=t)a.push(i),i.selection&&l++;else if(i.step){let s=i.step.map(r.slice(o)),d=s&&s.getMap();if(o--,d&&r.appendMap(d,o),s){let u=i.selection&&i.selection.map(r.slice(o));u&&l++;let h=new un(d.invert(),s,u),f,p=a.length-1;(f=a.length&&a[p].merge(h))?a[p]=f:a.push(h)}}else i.map&&o--},this.items.length,0),new qt(it.from(a.reverse()),l)}}qt.empty=new qt(it.empty,0);function yE(n,t){let r;return n.forEach((o,a)=>{if(o.selection&&t--==0)return r=a,!1}),n.slice(r)}class un{constructor(t,r,o,a){this.map=t,this.step=r,this.selection=o,this.mirrorOffset=a}merge(t){if(this.step&&t.step&&!t.selection){let r=t.step.merge(this.step);if(r)return new un(r.getMap().invert(),r,this.selection)}}}class zn{constructor(t,r,o,a,l){this.done=t,this.undone=r,this.prevRanges=o,this.prevTime=a,this.prevComposition=l}}const BE=20;function EE(n,t,r,o){let a=r.getMeta(v0),l;if(a)return a.historyState;r.getMeta(ME)&&(n=new zn(n.done,n.undone,null,0,-1));let i=r.getMeta("appendedTransaction");if(r.steps.length==0)return n;if(i&&i.getMeta(v0))return i.getMeta(v0).redo?new zn(n.done.addTransform(r,void 0,o,tl(t)),n.undone,bd(r.mapping.maps),n.prevTime,n.prevComposition):new zn(n.done,n.undone.addTransform(r,void 0,o,tl(t)),null,n.prevTime,n.prevComposition);if(r.getMeta("addToHistory")!==!1&&!(i&&i.getMeta("addToHistory")===!1)){let c=r.getMeta("composition"),s=n.prevTime==0||!i&&n.prevComposition!=c&&(n.prevTime<(r.time||0)-o.newGroupDelay||!bE(r,n.prevRanges)),d=i?P1(n.prevRanges,r.mapping):bd(r.mapping.maps);return new zn(n.done.addTransform(r,s?t.selection.getBookmark():void 0,o,tl(t)),qt.empty,d,r.time,c??n.prevComposition)}else return(l=r.getMeta("rebased"))?new zn(n.done.rebased(r,l),n.undone.rebased(r,l),P1(n.prevRanges,r.mapping),n.prevTime,n.prevComposition):new zn(n.done.addMaps(r.mapping.maps),n.undone.addMaps(r.mapping.maps),P1(n.prevRanges,r.mapping),n.prevTime,n.prevComposition)}function bE(n,t){if(!t)return!1;if(!n.docChanged)return!0;let r=!1;return n.mapping.maps[0].forEach((o,a)=>{for(let l=0;l<t.length;l+=2)o<=t[l+1]&&a>=t[l]&&(r=!0)}),r}function bd(n){let t=[];for(let r=n.length-1;r>=0&&t.length==0;r--)n[r].forEach((o,a,l,i)=>t.push(l,i));return t}function P1(n,t){if(!n)return null;let r=[];for(let o=0;o<n.length;o+=2){let a=t.map(n[o],1),l=t.map(n[o+1],-1);a<=l&&r.push(a,l)}return r}function CE(n,t,r){let o=tl(t),a=v0.get(t).spec.config,l=(r?n.undone:n.done).popEvent(t,o);if(!l)return null;let i=l.selection.resolve(l.transform.doc),c=(r?n.done:n.undone).addTransform(l.transform,t.selection.getBookmark(),a,o),s=new zn(r?c:l.remaining,r?l.remaining:c,null,0,-1);return l.transform.setSelection(i).setMeta(v0,{redo:r,historyState:s})}let O1=!1,Cd=null;function tl(n){let t=n.plugins;if(Cd!=t){O1=!1,Cd=t;for(let r=0;r<t.length;r++)if(t[r].spec.historyPreserveItems){O1=!0;break}}return O1}const v0=new Ue("history"),ME=new Ue("closeHistory");function VE(n={}){return n={depth:n.depth||100,newGroupDelay:n.newGroupDelay||500},new Fe({key:v0,state:{init(){return new zn(qt.empty,qt.empty,null,0,-1)},apply(t,r,o){return EE(r,o,t,n)}},config:n,props:{handleDOMEvents:{beforeinput(t,r){let o=r.inputType,a=o=="historyUndo"?Vd:o=="historyRedo"?Ad:null;return!a||!t.editable?!1:(r.preventDefault(),a(t.state,t.dispatch))}}}})}function Md(n,t){return(r,o)=>{let a=v0.getState(r);if(!a||(n?a.undone:a.done).eventCount==0)return!1;if(o){let l=CE(a,r,n);l&&o(t?l.scrollIntoView():l)}return!0}}const Vd=Md(!1,!0),Ad=Md(!0,!0);ze.create({name:"characterCount",addOptions(){return{limit:null,mode:"textSize",textCounter:n=>n.length,wordCounter:n=>n.split(" ").filter(t=>t!=="").length}},addStorage(){return{characters:()=>0,words:()=>0}},onBeforeCreate(){this.storage.characters=n=>{const t=n?.node||this.editor.state.doc;if((n?.mode||this.options.mode)==="textSize"){const o=t.textBetween(0,t.content.size,void 0," ");return this.options.textCounter(o)}return t.nodeSize},this.storage.words=n=>{const t=n?.node||this.editor.state.doc,r=t.textBetween(0,t.content.size," "," ");return this.options.wordCounter(r)}},addProseMirrorPlugins(){let n=!1;return[new Fe({key:new Ue("characterCount"),appendTransaction:(t,r,o)=>{if(n)return;const a=this.options.limit;if(a==null||a===0){n=!0;return}const l=this.storage.characters({node:o.doc});if(l>a){const i=l-a,c=0,s=i;console.warn(`[CharacterCount] Initial content exceeded limit of ${a} characters. Content was automatically trimmed.`);const d=o.tr.deleteRange(c,s);return n=!0,d}n=!0},filterTransaction:(t,r)=>{const o=this.options.limit;if(!t.docChanged||o===0||o===null||o===void 0)return!0;const a=this.storage.characters({node:r.doc}),l=this.storage.characters({node:t.doc});if(l<=o||a>o&&l>o&&l<=a)return!0;if(a>o&&l>o&&l>a||!t.getMeta("paste"))return!1;const c=t.selection.$head.pos,s=l-o,d=c-s,u=c;return t.deleteRange(d,u),!(this.storage.characters({node:t.doc})>o)}})]}});var AE=ze.create({name:"dropCursor",addOptions(){return{color:"currentColor",width:1,class:void 0}},addProseMirrorPlugins(){return[dE(this.options)]}});ze.create({name:"focus",addOptions(){return{className:"has-focus",mode:"all"}},addProseMirrorPlugins(){return[new Fe({key:new Ue("focus"),props:{decorations:({doc:n,selection:t})=>{const{isEditable:r,isFocused:o}=this.editor,{anchor:a}=t,l=[];if(!r||!o)return Te.create(n,[]);let i=0;this.options.mode==="deepest"&&n.descendants((s,d)=>{if(s.isText)return;if(!(a>=d&&a<=d+s.nodeSize-1))return!1;i+=1});let c=0;return n.descendants((s,d)=>{if(s.isText||!(a>=d&&a<=d+s.nodeSize-1))return!1;if(c+=1,this.options.mode==="deepest"&&i-c>0||this.options.mode==="shallowest"&&c>1)return this.options.mode==="deepest";l.push(ft.node(d,d+s.nodeSize,{class:this.options.className}))}),Te.create(n,l)}}})]}});var _E=ze.create({name:"gapCursor",addProseMirrorPlugins(){return[fE()]},extendNodeSchema(n){var t;const r={name:n.name,options:n.options,storage:n.storage};return{allowGapCursor:(t=cn(w0(n,"allowGapCursor",r)))!=null?t:null}}});ze.create({name:"placeholder",addOptions(){return{emptyEditorClass:"is-editor-empty",emptyNodeClass:"is-empty",placeholder:"Write something …",showOnlyWhenEditable:!0,showOnlyCurrent:!0,includeChildren:!1}},addProseMirrorPlugins(){return[new Fe({key:new Ue("placeholder"),props:{decorations:({doc:n,selection:t})=>{const r=this.editor.isEditable||!this.options.showOnlyWhenEditable,{anchor:o}=t,a=[];if(!r)return null;const l=this.editor.isEmpty;return n.descendants((i,c)=>{const s=o>=c&&o<=c+i.nodeSize,d=!i.isLeaf&&n1(i);if((s||!this.options.showOnlyCurrent)&&d){const u=[this.options.emptyNodeClass];l&&u.push(this.options.emptyEditorClass);const h=ft.node(c,c+i.nodeSize,{class:u.join(" "),"data-placeholder":typeof this.options.placeholder=="function"?this.options.placeholder({editor:this.editor,node:i,pos:c,hasAnchor:s}):this.options.placeholder});a.push(h)}return this.options.includeChildren}),Te.create(n,a)}}})]}}),ze.create({name:"selection",addOptions(){return{className:"selection"}},addProseMirrorPlugins(){const{editor:n,options:t}=this;return[new Fe({key:new Ue("selection"),props:{decorations(r){return r.selection.empty||n.isFocused||!n.isEditable||O7(r.selection)||n.view.dragging?null:Te.create(r.doc,[ft.inline(r.selection.from,r.selection.to,{class:t.className})])}}})]}});function _d({types:n,node:t}){return t&&Array.isArray(n)&&n.includes(t.type)||t?.type===n}var NE=ze.create({name:"trailingNode",addOptions(){return{node:void 0,notAfter:[]}},addProseMirrorPlugins(){var n;const t=new Ue(this.name),r=this.options.node||((n=this.editor.schema.topNodeType.contentMatch.defaultType)==null?void 0:n.name)||"paragraph",o=Object.entries(this.editor.schema.nodes).map(([,a])=>a).filter(a=>(this.options.notAfter||[]).concat(r).includes(a.name));return[new Fe({key:t,appendTransaction:(a,l,i)=>{const{doc:c,tr:s,schema:d}=i,u=t.getState(i),h=c.content.size,f=d.nodes[r];if(u)return s.insert(h,f.create())},state:{init:(a,l)=>{const i=l.tr.doc.lastChild;return!_d({node:i,types:o})},apply:(a,l)=>{if(!a.docChanged||a.getMeta("__uniqueIDTransaction"))return l;const i=a.doc.lastChild;return!_d({node:i,types:o})}}})]}}),ZE=ze.create({name:"undoRedo",addOptions(){return{depth:100,newGroupDelay:500}},addCommands(){return{undo:()=>({state:n,dispatch:t})=>Vd(n,t),redo:()=>({state:n,dispatch:t})=>Ad(n,t)}},addProseMirrorPlugins(){return[VE(this.options)]},addKeyboardShortcuts(){return{"Mod-z":()=>this.editor.commands.undo(),"Shift-Mod-z":()=>this.editor.commands.redo(),"Mod-y":()=>this.editor.commands.redo(),"Mod-я":()=>this.editor.commands.undo(),"Shift-Mod-я":()=>this.editor.commands.redo()}}});ze.create({name:"starterKit",addExtensions(){var n,t,r,o;const a=[];return this.options.bold!==!1&&a.push(oB.configure(this.options.bold)),this.options.blockquote!==!1&&a.push(Qy.configure(this.options.blockquote)),this.options.bulletList!==!1&&a.push(cd.configure(this.options.bulletList)),this.options.code!==!1&&a.push(iB.configure(this.options.code)),this.options.codeBlock!==!1&&a.push(dB.configure(this.options.codeBlock)),this.options.document!==!1&&a.push(uB.configure(this.options.document)),this.options.dropcursor!==!1&&a.push(AE.configure(this.options.dropcursor)),this.options.gapcursor!==!1&&a.push(_E.configure(this.options.gapcursor)),this.options.hardBreak!==!1&&a.push(hB.configure(this.options.hardBreak)),this.options.heading!==!1&&a.push(pB.configure(this.options.heading)),this.options.undoRedo!==!1&&a.push(ZE.configure(this.options.undoRedo)),this.options.horizontalRule!==!1&&a.push(fB.configure(this.options.horizontalRule)),this.options.italic!==!1&&a.push(xB.configure(this.options.italic)),this.options.listItem!==!1&&a.push(sd.configure(this.options.listItem)),this.options.listKeymap!==!1&&a.push(md.configure((n=this.options)==null?void 0:n.listKeymap)),this.options.link!==!1&&a.push(FB.configure((t=this.options)==null?void 0:t.link)),this.options.orderedList!==!1&&a.push(vd.configure(this.options.orderedList)),this.options.paragraph!==!1&&a.push(oE.configure(this.options.paragraph)),this.options.strike!==!1&&a.push(iE.configure(this.options.strike)),this.options.text!==!1&&a.push(cE.configure(this.options.text)),this.options.underline!==!1&&a.push(sE.configure((r=this.options)==null?void 0:r.underline)),this.options.trailingNode!==!1&&a.push(NE.configure((o=this.options)==null?void 0:o.trailingNode)),a}});let R1,z1;if(typeof WeakMap<"u"){let n=new WeakMap;R1=t=>n.get(t),z1=(t,r)=>(n.set(t,r),r)}else{const n=[];let r=0;R1=o=>{for(let a=0;a<n.length;a+=2)if(n[a]==o)return n[a+1]},z1=(o,a)=>(r==10&&(r=0),n[r++]=o,n[r++]=a)}var Ye=class{constructor(n,t,r,o){this.width=n,this.height=t,this.map=r,this.problems=o}findCell(n){for(let t=0;t<this.map.length;t++){const r=this.map[t];if(r!=n)continue;const o=t%this.width,a=t/this.width|0;let l=o+1,i=a+1;for(let c=1;l<this.width&&this.map[t+c]==r;c++)l++;for(let c=1;i<this.height&&this.map[t+this.width*c]==r;c++)i++;return{left:o,top:a,right:l,bottom:i}}throw new RangeError(`No cell with offset ${n} found`)}colCount(n){for(let t=0;t<this.map.length;t++)if(this.map[t]==n)return t%this.width;throw new RangeError(`No cell with offset ${n} found`)}nextCell(n,t,r){const{left:o,right:a,top:l,bottom:i}=this.findCell(n);return t=="horiz"?(r<0?o==0:a==this.width)?null:this.map[l*this.width+(r<0?o-1:a)]:(r<0?l==0:i==this.height)?null:this.map[o+this.width*(r<0?l-1:i)]}rectBetween(n,t){const{left:r,right:o,top:a,bottom:l}=this.findCell(n),{left:i,right:c,top:s,bottom:d}=this.findCell(t);return{left:Math.min(r,i),top:Math.min(a,s),right:Math.max(o,c),bottom:Math.max(l,d)}}cellsInRect(n){const t=[],r={};for(let o=n.top;o<n.bottom;o++)for(let a=n.left;a<n.right;a++){const l=o*this.width+a,i=this.map[l];r[i]||(r[i]=!0,!(a==n.left&&a&&this.map[l-1]==i||o==n.top&&o&&this.map[l-this.width]==i)&&t.push(i))}return t}positionAt(n,t,r){for(let o=0,a=0;;o++){const l=a+r.child(o).nodeSize;if(o==n){let i=t+n*this.width;const c=(n+1)*this.width;for(;i<c&&this.map[i]<a;)i++;return i==c?l-1:this.map[i]}a=l}}static get(n){return R1(n)||z1(n,SE(n))}};function SE(n){if(n.type.spec.tableRole!="table")throw new RangeError("Not a table node: "+n.type.name);const t=$E(n),r=n.childCount,o=[];let a=0,l=null;const i=[];for(let d=0,u=t*r;d<u;d++)o[d]=0;for(let d=0,u=0;d<r;d++){const h=n.child(d);u++;for(let m=0;;m++){for(;a<o.length&&o[a]!=0;)a++;if(m==h.childCount)break;const w=h.child(m),{colspan:g,rowspan:k,colwidth:x}=w.attrs;for(let v=0;v<k;v++){if(v+d>=r){(l||(l=[])).push({type:"overlong_rowspan",pos:u,n:k-v});break}const b=a+v*t;for(let C=0;C<g;C++){o[b+C]==0?o[b+C]=u:(l||(l=[])).push({type:"collision",row:d,pos:u,n:g-C});const A=x&&x[C];if(A){const y=(b+C)%t*2,B=i[y];B==null||B!=A&&i[y+1]==1?(i[y]=A,i[y+1]=1):B==A&&i[y+1]++}}}a+=g,u+=w.nodeSize}const f=(d+1)*t;let p=0;for(;a<f;)o[a++]==0&&p++;p&&(l||(l=[])).push({type:"missing",row:d,n:p}),u++}(t===0||r===0)&&(l||(l=[])).push({type:"zero_sized"});const c=new Ye(t,r,o,l);let s=!1;for(let d=0;!s&&d<i.length;d+=2)i[d]!=null&&i[d+1]<r&&(s=!0);return s&&IE(c,i,n),c}function $E(n){let t=-1,r=!1;for(let o=0;o<n.childCount;o++){const a=n.child(o);let l=0;if(r)for(let i=0;i<o;i++){const c=n.child(i);for(let s=0;s<c.childCount;s++){const d=c.child(s);i+d.attrs.rowspan>o&&(l+=d.attrs.colspan)}}for(let i=0;i<a.childCount;i++){const c=a.child(i);l+=c.attrs.colspan,c.attrs.rowspan>1&&(r=!0)}t==-1?t=l:t!=l&&(t=Math.max(t,l))}return t}function IE(n,t,r){n.problems||(n.problems=[]);const o={};for(let a=0;a<n.map.length;a++){const l=n.map[a];if(o[l])continue;o[l]=!0;const i=r.nodeAt(l);if(!i)throw new RangeError(`No cell with offset ${l} found`);let c=null;const s=i.attrs;for(let d=0;d<s.colspan;d++){const u=t[(a+d)%n.width*2];u!=null&&(!s.colwidth||s.colwidth[d]!=u)&&((c||(c=HE(s)))[d]=u)}c&&n.problems.unshift({type:"colwidth mismatch",pos:l,colwidth:c})}}function HE(n){if(n.colwidth)return n.colwidth.slice();const t=[];for(let r=0;r<n.colspan;r++)t.push(0);return t}function mt(n){let t=n.cached.tableNodeTypes;if(!t){t=n.cached.tableNodeTypes={};for(const r in n.nodes){const o=n.nodes[r],a=o.spec.tableRole;a&&(t[a]=o)}}return t}const jn=new Ue("selectingCells");function y0(n){for(let t=n.depth-1;t>0;t--)if(n.node(t).type.spec.tableRole=="row")return n.node(0).resolve(n.before(t+1));return null}function TE(n){for(let t=n.depth;t>0;t--){const r=n.node(t).type.spec.tableRole;if(r==="cell"||r==="header_cell")return n.node(t)}return null}function Yt(n){const t=n.selection.$head;for(let r=t.depth;r>0;r--)if(t.node(r).type.spec.tableRole=="row")return!0;return!1}function nl(n){const t=n.selection;if("$anchorCell"in t&&t.$anchorCell)return t.$anchorCell.pos>t.$headCell.pos?t.$anchorCell:t.$headCell;if("node"in t&&t.node&&t.node.type.spec.tableRole=="cell")return t.$anchor;const r=y0(t.$head)||LE(t.$head);if(r)return r;throw new RangeError(`No cell found around position ${t.head}`)}function LE(n){for(let t=n.nodeAfter,r=n.pos;t;t=t.firstChild,r++){const o=t.type.spec.tableRole;if(o=="cell"||o=="header_cell")return n.doc.resolve(r)}for(let t=n.nodeBefore,r=n.pos;t;t=t.lastChild,r--){const o=t.type.spec.tableRole;if(o=="cell"||o=="header_cell")return n.doc.resolve(r-t.nodeSize)}}function j1(n){return n.parent.type.spec.tableRole=="row"&&!!n.nodeAfter}function DE(n){return n.node(0).resolve(n.pos+n.nodeAfter.nodeSize)}function F1(n,t){return n.depth==t.depth&&n.pos>=t.start(-1)&&n.pos<=t.end(-1)}function Nd(n,t,r){const o=n.node(-1),a=Ye.get(o),l=n.start(-1),i=a.nextCell(n.pos-l,t,r);return i==null?null:n.node(0).resolve(l+i)}function B0(n,t,r=1){const o={...n,colspan:n.colspan-r};return o.colwidth&&(o.colwidth=o.colwidth.slice(),o.colwidth.splice(t,r),o.colwidth.some(a=>a>0)||(o.colwidth=null)),o}function Zd(n,t,r=1){const o={...n,colspan:n.colspan+r};if(o.colwidth){o.colwidth=o.colwidth.slice();for(let a=0;a<r;a++)o.colwidth.splice(t,0,0)}return o}function PE(n,t,r){const o=mt(t.type.schema).header_cell;for(let a=0;a<n.height;a++)if(t.nodeAt(n.map[r+a*n.width]).type!=o)return!1;return!0}var He=class Bn extends Ee{constructor(t,r=t){const o=t.node(-1),a=Ye.get(o),l=t.start(-1),i=a.rectBetween(t.pos-l,r.pos-l),c=t.node(0),s=a.cellsInRect(i).filter(u=>u!=r.pos-l);s.unshift(r.pos-l);const d=s.map(u=>{const h=o.nodeAt(u);if(!h)throw new RangeError(`No cell with offset ${u} found`);const f=l+u+1;return new x2(c.resolve(f),c.resolve(f+h.content.size))});super(d[0].$from,d[0].$to,d),this.$anchorCell=t,this.$headCell=r}map(t,r){const o=t.resolve(r.map(this.$anchorCell.pos)),a=t.resolve(r.map(this.$headCell.pos));if(j1(o)&&j1(a)&&F1(o,a)){const l=this.$anchorCell.node(-1)!=o.node(-1);return l&&this.isRowSelection()?Bn.rowSelection(o,a):l&&this.isColSelection()?Bn.colSelection(o,a):new Bn(o,a)}return ke.between(o,a)}content(){const t=this.$anchorCell.node(-1),r=Ye.get(t),o=this.$anchorCell.start(-1),a=r.rectBetween(this.$anchorCell.pos-o,this.$headCell.pos-o),l={},i=[];for(let s=a.top;s<a.bottom;s++){const d=[];for(let u=s*r.width+a.left,h=a.left;h<a.right;h++,u++){const f=r.map[u];if(l[f])continue;l[f]=!0;const p=r.findCell(f);let m=t.nodeAt(f);if(!m)throw new RangeError(`No cell with offset ${f} found`);const w=a.left-p.left,g=p.right-a.right;if(w>0||g>0){let k=m.attrs;if(w>0&&(k=B0(k,0,w)),g>0&&(k=B0(k,k.colspan-g,g)),p.left<a.left){if(m=m.type.createAndFill(k),!m)throw new RangeError(`Could not create cell with attrs ${JSON.stringify(k)}`)}else m=m.type.create(k,m.content)}if(p.top<a.top||p.bottom>a.bottom){const k={...m.attrs,rowspan:Math.min(p.bottom,a.bottom)-Math.max(p.top,a.top)};p.top<a.top?m=m.type.createAndFill(k):m=m.type.create(k,m.content)}d.push(m)}i.push(t.child(s).copy(Q.from(d)))}const c=this.isColSelection()&&this.isRowSelection()?t:i;return new de(Q.from(c),1,1)}replace(t,r=de.empty){const o=t.steps.length,a=this.ranges;for(let i=0;i<a.length;i++){const{$from:c,$to:s}=a[i],d=t.mapping.slice(o);t.replace(d.map(c.pos),d.map(s.pos),i?de.empty:r)}const l=Ee.findFrom(t.doc.resolve(t.mapping.slice(o).map(this.to)),-1);l&&t.setSelection(l)}replaceWith(t,r){this.replace(t,new de(Q.from(r),0,0))}forEachCell(t){const r=this.$anchorCell.node(-1),o=Ye.get(r),a=this.$anchorCell.start(-1),l=o.cellsInRect(o.rectBetween(this.$anchorCell.pos-a,this.$headCell.pos-a));for(let i=0;i<l.length;i++)t(r.nodeAt(l[i]),a+l[i])}isColSelection(){const t=this.$anchorCell.index(-1),r=this.$headCell.index(-1);if(Math.min(t,r)>0)return!1;const o=t+this.$anchorCell.nodeAfter.attrs.rowspan,a=r+this.$headCell.nodeAfter.attrs.rowspan;return Math.max(o,a)==this.$headCell.node(-1).childCount}static colSelection(t,r=t){const o=t.node(-1),a=Ye.get(o),l=t.start(-1),i=a.findCell(t.pos-l),c=a.findCell(r.pos-l),s=t.node(0);return i.top<=c.top?(i.top>0&&(t=s.resolve(l+a.map[i.left])),c.bottom<a.height&&(r=s.resolve(l+a.map[a.width*(a.height-1)+c.right-1]))):(c.top>0&&(r=s.resolve(l+a.map[c.left])),i.bottom<a.height&&(t=s.resolve(l+a.map[a.width*(a.height-1)+i.right-1]))),new Bn(t,r)}isRowSelection(){const t=this.$anchorCell.node(-1),r=Ye.get(t),o=this.$anchorCell.start(-1),a=r.colCount(this.$anchorCell.pos-o),l=r.colCount(this.$headCell.pos-o);if(Math.min(a,l)>0)return!1;const i=a+this.$anchorCell.nodeAfter.attrs.colspan,c=l+this.$headCell.nodeAfter.attrs.colspan;return Math.max(i,c)==r.width}eq(t){return t instanceof Bn&&t.$anchorCell.pos==this.$anchorCell.pos&&t.$headCell.pos==this.$headCell.pos}static rowSelection(t,r=t){const o=t.node(-1),a=Ye.get(o),l=t.start(-1),i=a.findCell(t.pos-l),c=a.findCell(r.pos-l),s=t.node(0);return i.left<=c.left?(i.left>0&&(t=s.resolve(l+a.map[i.top*a.width])),c.right<a.width&&(r=s.resolve(l+a.map[a.width*(c.top+1)-1]))):(c.left>0&&(r=s.resolve(l+a.map[c.top*a.width])),i.right<a.width&&(t=s.resolve(l+a.map[a.width*(i.top+1)-1]))),new Bn(t,r)}toJSON(){return{type:"cell",anchor:this.$anchorCell.pos,head:this.$headCell.pos}}static fromJSON(t,r){return new Bn(t.resolve(r.anchor),t.resolve(r.head))}static create(t,r,o=r){return new Bn(t.resolve(r),t.resolve(o))}getBookmark(){return new OE(this.$anchorCell.pos,this.$headCell.pos)}};He.prototype.visible=!1,Ee.jsonID("cell",He);var OE=class l3{constructor(t,r){this.anchor=t,this.head=r}map(t){return new l3(t.map(this.anchor),t.map(this.head))}resolve(t){const r=t.resolve(this.anchor),o=t.resolve(this.head);return r.parent.type.spec.tableRole=="row"&&o.parent.type.spec.tableRole=="row"&&r.index()<r.parent.childCount&&o.index()<o.parent.childCount&&F1(r,o)?new He(r,o):Ee.near(o,1)}};function RE(n){if(!(n.selection instanceof He))return null;const t=[];return n.selection.forEachCell((r,o)=>{t.push(ft.node(o,o+r.nodeSize,{class:"selectedCell"}))}),Te.create(n.doc,t)}function zE({$from:n,$to:t}){if(n.pos==t.pos||n.pos<t.pos-6)return!1;let r=n.pos,o=t.pos,a=n.depth;for(;a>=0&&!(n.after(a+1)<n.end(a));a--,r++);for(let l=t.depth;l>=0&&!(t.before(l+1)>t.start(l));l--,o--);return r==o&&/row|table/.test(n.node(a).type.spec.tableRole)}function jE({$from:n,$to:t}){let r,o;for(let a=n.depth;a>0;a--){const l=n.node(a);if(l.type.spec.tableRole==="cell"||l.type.spec.tableRole==="header_cell"){r=l;break}}for(let a=t.depth;a>0;a--){const l=t.node(a);if(l.type.spec.tableRole==="cell"||l.type.spec.tableRole==="header_cell"){o=l;break}}return r!==o&&t.parentOffset===0}function FE(n,t,r){const o=(t||n).selection,a=(t||n).doc;let l,i;if(o instanceof ge&&(i=o.node.type.spec.tableRole)){if(i=="cell"||i=="header_cell")l=He.create(a,o.from);else if(i=="row"){const c=a.resolve(o.from+1);l=He.rowSelection(c,c)}else if(!r){const c=Ye.get(o.node),s=o.from+1,d=s+c.map[c.width*c.height-1];l=He.create(a,s+1,d)}}else o instanceof ke&&zE(o)?l=ke.create(a,o.from):o instanceof ke&&jE(o)&&(l=ke.create(a,o.$from.start(),o.$from.end()));return l&&(t||(t=n.tr)).setSelection(l),t}const UE=new Ue("fix-tables");function Sd(n,t,r,o){const a=n.childCount,l=t.childCount;e:for(let i=0,c=0;i<l;i++){const s=t.child(i);for(let d=c,u=Math.min(a,i+3);d<u;d++)if(n.child(d)==s){c=d+1,r+=s.nodeSize;continue e}o(s,r),c<a&&n.child(c).sameMarkup(s)?Sd(n.child(c),s,r+1,o):s.nodesBetween(0,s.content.size,o,r+1),r+=s.nodeSize}}function $d(n,t){let r;const o=(a,l)=>{a.type.spec.tableRole=="table"&&(r=WE(n,a,l,r))};return t?t.doc!=n.doc&&Sd(t.doc,n.doc,0,o):n.doc.descendants(o),r}function WE(n,t,r,o){const a=Ye.get(t);if(!a.problems)return o;o||(o=n.tr);const l=[];for(let s=0;s<a.height;s++)l.push(0);for(let s=0;s<a.problems.length;s++){const d=a.problems[s];if(d.type=="collision"){const u=t.nodeAt(d.pos);if(!u)continue;const h=u.attrs;for(let f=0;f<h.rowspan;f++)l[d.row+f]+=d.n;o.setNodeMarkup(o.mapping.map(r+1+d.pos),null,B0(h,h.colspan-d.n,d.n))}else if(d.type=="missing")l[d.row]+=d.n;else if(d.type=="overlong_rowspan"){const u=t.nodeAt(d.pos);if(!u)continue;o.setNodeMarkup(o.mapping.map(r+1+d.pos),null,{...u.attrs,rowspan:u.attrs.rowspan-d.n})}else if(d.type=="colwidth mismatch"){const u=t.nodeAt(d.pos);if(!u)continue;o.setNodeMarkup(o.mapping.map(r+1+d.pos),null,{...u.attrs,colwidth:d.colwidth})}else if(d.type=="zero_sized"){const u=o.mapping.map(r);o.delete(u,u+t.nodeSize)}}let i,c;for(let s=0;s<l.length;s++)l[s]&&(i==null&&(i=s),c=s);for(let s=0,d=r+1;s<a.height;s++){const u=t.child(s),h=d+u.nodeSize,f=l[s];if(f>0){let p="cell";u.firstChild&&(p=u.firstChild.type.spec.tableRole);const m=[];for(let g=0;g<f;g++){const k=mt(n.schema)[p].createAndFill();k&&m.push(k)}const w=(s==0||i==s-1)&&c==s?d+1:h-1;o.insert(o.mapping.map(w),m)}d=h}return o.setMeta(UE,{fixTables:!0})}function hn(n){const t=n.selection,r=nl(n),o=r.node(-1),a=r.start(-1),l=Ye.get(o);return{...t instanceof He?l.rectBetween(t.$anchorCell.pos-a,t.$headCell.pos-a):l.findCell(r.pos-a),tableStart:a,map:l,table:o}}function Id(n,{map:t,tableStart:r,table:o},a){let l=a>0?-1:0;PE(t,o,a+l)&&(l=a==0||a==t.width?null:0);for(let i=0;i<t.height;i++){const c=i*t.width+a;if(a>0&&a<t.width&&t.map[c-1]==t.map[c]){const s=t.map[c],d=o.nodeAt(s);n.setNodeMarkup(n.mapping.map(r+s),null,Zd(d.attrs,a-t.colCount(s))),i+=d.attrs.rowspan-1}else{const s=l==null?mt(o.type.schema).cell:o.nodeAt(t.map[c+l]).type,d=t.positionAt(i,a,o);n.insert(n.mapping.map(r+d),s.createAndFill())}}return n}function qE(n,t){if(!Yt(n))return!1;if(t){const r=hn(n);t(Id(n.tr,r,r.left))}return!0}function YE(n,t){if(!Yt(n))return!1;if(t){const r=hn(n);t(Id(n.tr,r,r.right))}return!0}function KE(n,{map:t,table:r,tableStart:o},a){const l=n.mapping.maps.length;for(let i=0;i<t.height;){const c=i*t.width+a,s=t.map[c],d=r.nodeAt(s),u=d.attrs;if(a>0&&t.map[c-1]==s||a<t.width-1&&t.map[c+1]==s)n.setNodeMarkup(n.mapping.slice(l).map(o+s),null,B0(u,a-t.colCount(s)));else{const h=n.mapping.slice(l).map(o+s);n.delete(h,h+d.nodeSize)}i+=u.rowspan}}function GE(n,t){if(!Yt(n))return!1;if(t){const r=hn(n),o=n.tr;if(r.left==0&&r.right==r.map.width)return!1;for(let a=r.right-1;KE(o,r,a),a!=r.left;a--){const l=r.tableStart?o.doc.nodeAt(r.tableStart-1):o.doc;if(!l)throw new RangeError("No table found");r.table=l,r.map=Ye.get(l)}t(o)}return!0}function JE(n,t,r){var o;const a=mt(t.type.schema).header_cell;for(let l=0;l<n.width;l++)if(((o=t.nodeAt(n.map[l+r*n.width]))===null||o===void 0?void 0:o.type)!=a)return!1;return!0}function Hd(n,{map:t,tableStart:r,table:o},a){let l=r;for(let d=0;d<a;d++)l+=o.child(d).nodeSize;const i=[];let c=a>0?-1:0;JE(t,o,a+c)&&(c=a==0||a==t.height?null:0);for(let d=0,u=t.width*a;d<t.width;d++,u++)if(a>0&&a<t.height&&t.map[u]==t.map[u-t.width]){const h=t.map[u],f=o.nodeAt(h).attrs;n.setNodeMarkup(r+h,null,{...f,rowspan:f.rowspan+1}),d+=f.colspan-1}else{var s;const h=c==null?mt(o.type.schema).cell:(s=o.nodeAt(t.map[u+c*t.width]))===null||s===void 0?void 0:s.type,f=h?.createAndFill();f&&i.push(f)}return n.insert(l,mt(o.type.schema).row.create(null,i)),n}function XE(n,t){if(!Yt(n))return!1;if(t){const r=hn(n);t(Hd(n.tr,r,r.top))}return!0}function QE(n,t){if(!Yt(n))return!1;if(t){const r=hn(n);t(Hd(n.tr,r,r.bottom))}return!0}function eb(n,{map:t,table:r,tableStart:o},a){let l=0;for(let d=0;d<a;d++)l+=r.child(d).nodeSize;const i=l+r.child(a).nodeSize,c=n.mapping.maps.length;n.delete(l+o,i+o);const s=new Set;for(let d=0,u=a*t.width;d<t.width;d++,u++){const h=t.map[u];if(!s.has(h)){if(s.add(h),a>0&&h==t.map[u-t.width]){const f=r.nodeAt(h).attrs;n.setNodeMarkup(n.mapping.slice(c).map(h+o),null,{...f,rowspan:f.rowspan-1}),d+=f.colspan-1}else if(a<t.height&&h==t.map[u+t.width]){const f=r.nodeAt(h),p=f.attrs,m=f.type.create({...p,rowspan:f.attrs.rowspan-1},f.content),w=t.positionAt(a+1,d,r);n.insert(n.mapping.slice(c).map(o+w),m),d+=p.colspan-1}}}}function tb(n,t){if(!Yt(n))return!1;if(t){const r=hn(n),o=n.tr;if(r.top==0&&r.bottom==r.map.height)return!1;for(let a=r.bottom-1;eb(o,r,a),a!=r.top;a--){const l=r.tableStart?o.doc.nodeAt(r.tableStart-1):o.doc;if(!l)throw new RangeError("No table found");r.table=l,r.map=Ye.get(r.table)}t(o)}return!0}function Td(n){const t=n.content;return t.childCount==1&&t.child(0).isTextblock&&t.child(0).childCount==0}function nb({width:n,height:t,map:r},o){let a=o.top*n+o.left,l=a,i=(o.bottom-1)*n+o.left,c=a+(o.right-o.left-1);for(let s=o.top;s<o.bottom;s++){if(o.left>0&&r[l]==r[l-1]||o.right<n&&r[c]==r[c+1])return!0;l+=n,c+=n}for(let s=o.left;s<o.right;s++){if(o.top>0&&r[a]==r[a-n]||o.bottom<t&&r[i]==r[i+n])return!0;a++,i++}return!1}function Ld(n,t){const r=n.selection;if(!(r instanceof He)||r.$anchorCell.pos==r.$headCell.pos)return!1;const o=hn(n),{map:a}=o;if(nb(a,o))return!1;if(t){const l=n.tr,i={};let c=Q.empty,s,d;for(let u=o.top;u<o.bottom;u++)for(let h=o.left;h<o.right;h++){const f=a.map[u*a.width+h],p=o.table.nodeAt(f);if(!(i[f]||!p))if(i[f]=!0,s==null)s=f,d=p;else{Td(p)||(c=c.append(p.content));const m=l.mapping.map(f+o.tableStart);l.delete(m,m+p.nodeSize)}}if(s==null||d==null)return!0;if(l.setNodeMarkup(s+o.tableStart,null,{...Zd(d.attrs,d.attrs.colspan,o.right-o.left-d.attrs.colspan),rowspan:o.bottom-o.top}),c.size>0){const u=s+1+d.content.size,h=Td(d)?s+1:u;l.replaceWith(h+o.tableStart,u+o.tableStart,c)}l.setSelection(new He(l.doc.resolve(s+o.tableStart))),t(l)}return!0}function Dd(n,t){const r=mt(n.schema);return rb(({node:o})=>r[o.type.spec.tableRole])(n,t)}function rb(n){return(t,r)=>{const o=t.selection;let a,l;if(o instanceof He){if(o.$anchorCell.pos!=o.$headCell.pos)return!1;a=o.$anchorCell.nodeAfter,l=o.$anchorCell.pos}else{var i;if(a=TE(o.$from),!a)return!1;l=(i=y0(o.$from))===null||i===void 0?void 0:i.pos}if(a==null||l==null||a.attrs.colspan==1&&a.attrs.rowspan==1)return!1;if(r){let c=a.attrs;const s=[],d=c.colwidth;c.rowspan>1&&(c={...c,rowspan:1}),c.colspan>1&&(c={...c,colspan:1});const u=hn(t),h=t.tr;for(let p=0;p<u.right-u.left;p++)s.push(d?{...c,colwidth:d&&d[p]?[d[p]]:null}:c);let f;for(let p=u.top;p<u.bottom;p++){let m=u.map.positionAt(p,u.left,u.table);p==u.top&&(m+=a.nodeSize);for(let w=u.left,g=0;w<u.right;w++,g++)w==u.left&&p==u.top||h.insert(f=h.mapping.map(m+u.tableStart,1),n({node:a,row:p,col:w}).createAndFill(s[g]))}h.setNodeMarkup(l,n({node:a,row:u.top,col:u.left}),s[0]),o instanceof He&&h.setSelection(new He(h.doc.resolve(o.$anchorCell.pos),f?h.doc.resolve(f):void 0)),r(h)}return!0}}function ob(n,t){return function(r,o){if(!Yt(r))return!1;const a=nl(r);if(a.nodeAfter.attrs[n]===t)return!1;if(o){const l=r.tr;r.selection instanceof He?r.selection.forEachCell((i,c)=>{i.attrs[n]!==t&&l.setNodeMarkup(c,null,{...i.attrs,[n]:t})}):l.setNodeMarkup(a.pos,null,{...a.nodeAfter.attrs,[n]:t}),o(l)}return!0}}function ab(n){return function(t,r){if(!Yt(t))return!1;if(r){const o=mt(t.schema),a=hn(t),l=t.tr,i=a.map.cellsInRect(n=="column"?{left:a.left,top:0,right:a.right,bottom:a.map.height}:n=="row"?{left:0,top:a.top,right:a.map.width,bottom:a.bottom}:a),c=i.map(s=>a.table.nodeAt(s));for(let s=0;s<i.length;s++)c[s].type==o.header_cell&&l.setNodeMarkup(a.tableStart+i[s],o.cell,c[s].attrs);if(l.steps.length===0)for(let s=0;s<i.length;s++)l.setNodeMarkup(a.tableStart+i[s],o.header_cell,c[s].attrs);r(l)}return!0}}function Pd(n,t,r){const o=t.map.cellsInRect({left:0,top:0,right:n=="row"?t.map.width:1,bottom:n=="column"?t.map.height:1});for(let a=0;a<o.length;a++){const l=t.table.nodeAt(o[a]);if(l&&l.type!==r.header_cell)return!1}return!0}function oo(n,t){return t=t||{useDeprecatedLogic:!1},t.useDeprecatedLogic?ab(n):function(r,o){if(!Yt(r))return!1;if(o){const a=mt(r.schema),l=hn(r),i=r.tr,c=Pd("row",l,a),s=Pd("column",l,a),d=(n==="column"?c:n==="row"&&s)?1:0,u=n=="column"?{left:0,top:d,right:1,bottom:l.map.height}:n=="row"?{left:d,top:0,right:l.map.width,bottom:1}:l,h=n=="column"?s?a.cell:a.header_cell:n=="row"?c?a.cell:a.header_cell:a.cell;l.map.cellsInRect(u).forEach(f=>{const p=f+l.tableStart,m=i.doc.nodeAt(p);m&&i.setNodeMarkup(p,h,m.attrs)}),o(i)}return!0}}oo("row",{useDeprecatedLogic:!0}),oo("column",{useDeprecatedLogic:!0});const lb=oo("cell",{useDeprecatedLogic:!0});function ib(n,t){if(t<0){const r=n.nodeBefore;if(r)return n.pos-r.nodeSize;for(let o=n.index(-1)-1,a=n.before();o>=0;o--){const l=n.node(-1).child(o),i=l.lastChild;if(i)return a-1-i.nodeSize;a-=l.nodeSize}}else{if(n.index()<n.parent.childCount-1)return n.pos+n.nodeAfter.nodeSize;const r=n.node(-1);for(let o=n.indexAfter(-1),a=n.after();o<r.childCount;o++){const l=r.child(o);if(l.childCount)return a+1;a+=l.nodeSize}}return null}function Od(n){return function(t,r){if(!Yt(t))return!1;const o=ib(nl(t),n);if(o==null)return!1;if(r){const a=t.doc.resolve(o);r(t.tr.setSelection(ke.between(a,DE(a))).scrollIntoView())}return!0}}function cb(n,t){const r=n.selection.$anchor;for(let o=r.depth;o>0;o--)if(r.node(o).type.spec.tableRole=="table")return t&&t(n.tr.delete(r.before(o),r.after(o)).scrollIntoView()),!0;return!1}function rl(n,t){const r=n.selection;if(!(r instanceof He))return!1;if(t){const o=n.tr,a=mt(n.schema).cell.createAndFill().content;r.forEachCell((l,i)=>{l.content.eq(a)||o.replace(o.mapping.map(i+1),o.mapping.map(i+l.nodeSize-1),new de(a,0,0))}),o.docChanged&&t(o)}return!0}function sb(n){if(n.size===0)return null;let{content:t,openStart:r,openEnd:o}=n;for(;t.childCount==1&&(r>0&&o>0||t.child(0).type.spec.tableRole=="table");)r--,o--,t=t.child(0).content;const a=t.child(0),l=a.type.spec.tableRole,i=a.type.schema,c=[];if(l=="row")for(let s=0;s<t.childCount;s++){let d=t.child(s).content;const u=s?0:Math.max(0,r-1),h=s<t.childCount-1?0:Math.max(0,o-1);(u||h)&&(d=U1(mt(i).row,new de(d,u,h)).content),c.push(d)}else if(l=="cell"||l=="header_cell")c.push(r||o?U1(mt(i).row,new de(t,r,o)).content:t);else return null;return db(i,c)}function db(n,t){const r=[];for(let a=0;a<t.length;a++){const l=t[a];for(let i=l.childCount-1;i>=0;i--){const{rowspan:c,colspan:s}=l.child(i).attrs;for(let d=a;d<a+c;d++)r[d]=(r[d]||0)+s}}let o=0;for(let a=0;a<r.length;a++)o=Math.max(o,r[a]);for(let a=0;a<r.length;a++)if(a>=t.length&&t.push(Q.empty),r[a]<o){const l=mt(n).cell.createAndFill(),i=[];for(let c=r[a];c<o;c++)i.push(l);t[a]=t[a].append(Q.from(i))}return{height:t.length,width:o,rows:t}}function U1(n,t){const r=n.createAndFill();return new k2(r).replace(0,r.content.size,t).doc}function ub({width:n,height:t,rows:r},o,a){if(n!=o){const l=[],i=[];for(let c=0;c<r.length;c++){const s=r[c],d=[];for(let u=l[c]||0,h=0;u<o;h++){let f=s.child(h%s.childCount);u+f.attrs.colspan>o&&(f=f.type.createChecked(B0(f.attrs,f.attrs.colspan,u+f.attrs.colspan-o),f.content)),d.push(f),u+=f.attrs.colspan;for(let p=1;p<f.attrs.rowspan;p++)l[c+p]=(l[c+p]||0)+f.attrs.colspan}i.push(Q.from(d))}r=i,n=o}if(t!=a){const l=[];for(let i=0,c=0;i<a;i++,c++){const s=[],d=r[c%t];for(let u=0;u<d.childCount;u++){let h=d.child(u);i+h.attrs.rowspan>a&&(h=h.type.create({...h.attrs,rowspan:Math.max(1,a-h.attrs.rowspan)},h.content)),s.push(h)}l.push(Q.from(s))}r=l,t=a}return{width:n,height:t,rows:r}}function hb(n,t,r,o,a,l,i){const c=n.doc.type.schema,s=mt(c);let d,u;if(a>t.width)for(let h=0,f=0;h<t.height;h++){const p=r.child(h);f+=p.nodeSize;const m=[];let w;p.lastChild==null||p.lastChild.type==s.cell?w=d||(d=s.cell.createAndFill()):w=u||(u=s.header_cell.createAndFill());for(let g=t.width;g<a;g++)m.push(w);n.insert(n.mapping.slice(i).map(f-1+o),m)}if(l>t.height){const h=[];for(let m=0,w=(t.height-1)*t.width;m<Math.max(t.width,a);m++){const g=m>=t.width?!1:r.nodeAt(t.map[w+m]).type==s.header_cell;h.push(g?u||(u=s.header_cell.createAndFill()):d||(d=s.cell.createAndFill()))}const f=s.row.create(null,Q.from(h)),p=[];for(let m=t.height;m<l;m++)p.push(f);n.insert(n.mapping.slice(i).map(o+r.nodeSize-2),p)}return!!(d||u)}function Rd(n,t,r,o,a,l,i,c){if(i==0||i==t.height)return!1;let s=!1;for(let d=a;d<l;d++){const u=i*t.width+d,h=t.map[u];if(t.map[u-t.width]==h){s=!0;const f=r.nodeAt(h),{top:p,left:m}=t.findCell(h);n.setNodeMarkup(n.mapping.slice(c).map(h+o),null,{...f.attrs,rowspan:i-p}),n.insert(n.mapping.slice(c).map(t.positionAt(i,m,r)),f.type.createAndFill({...f.attrs,rowspan:p+f.attrs.rowspan-i})),d+=f.attrs.colspan-1}}return s}function zd(n,t,r,o,a,l,i,c){if(i==0||i==t.width)return!1;let s=!1;for(let d=a;d<l;d++){const u=d*t.width+i,h=t.map[u];if(t.map[u-1]==h){s=!0;const f=r.nodeAt(h),p=t.colCount(h),m=n.mapping.slice(c).map(h+o);n.setNodeMarkup(m,null,B0(f.attrs,i-p,f.attrs.colspan-(i-p))),n.insert(m+f.nodeSize,f.type.createAndFill(B0(f.attrs,0,i-p))),d+=f.attrs.rowspan-1}}return s}function jd(n,t,r,o,a){let l=r?n.doc.nodeAt(r-1):n.doc;if(!l)throw new Error("No table found");let i=Ye.get(l);const{top:c,left:s}=o,d=s+a.width,u=c+a.height,h=n.tr;let f=0;function p(){if(l=r?h.doc.nodeAt(r-1):h.doc,!l)throw new Error("No table found");i=Ye.get(l),f=h.mapping.maps.length}hb(h,i,l,r,d,u,f)&&p(),Rd(h,i,l,r,s,d,c,f)&&p(),Rd(h,i,l,r,s,d,u,f)&&p(),zd(h,i,l,r,c,u,s,f)&&p(),zd(h,i,l,r,c,u,d,f)&&p();for(let m=c;m<u;m++){const w=i.positionAt(m,s,l),g=i.positionAt(m,d,l);h.replace(h.mapping.slice(f).map(w+r),h.mapping.slice(f).map(g+r),new de(a.rows[m-c],0,0))}p(),h.setSelection(new He(h.doc.resolve(r+i.positionAt(c,s,l)),h.doc.resolve(r+i.positionAt(u-1,d-1,l)))),t(h)}const pb=b7({ArrowLeft:al("horiz",-1),ArrowRight:al("horiz",1),ArrowUp:al("vert",-1),ArrowDown:al("vert",1),"Shift-ArrowLeft":ll("horiz",-1),"Shift-ArrowRight":ll("horiz",1),"Shift-ArrowUp":ll("vert",-1),"Shift-ArrowDown":ll("vert",1),Backspace:rl,"Mod-Backspace":rl,Delete:rl,"Mod-Delete":rl});function ol(n,t,r){return r.eq(n.selection)?!1:(t&&t(n.tr.setSelection(r).scrollIntoView()),!0)}function al(n,t){return(r,o,a)=>{if(!a)return!1;const l=r.selection;if(l instanceof He)return ol(r,o,Ee.near(l.$headCell,t));if(n!="horiz"&&!l.empty)return!1;const i=Fd(a,n,t);if(i==null)return!1;if(n=="horiz")return ol(r,o,Ee.near(r.doc.resolve(l.head+t),t));{const c=r.doc.resolve(i),s=Nd(c,n,t);let d;return s?d=Ee.near(s,1):t<0?d=Ee.near(r.doc.resolve(c.before(-1)),-1):d=Ee.near(r.doc.resolve(c.after(-1)),1),ol(r,o,d)}}}function ll(n,t){return(r,o,a)=>{if(!a)return!1;const l=r.selection;let i;if(l instanceof He)i=l;else{const s=Fd(a,n,t);if(s==null)return!1;i=new He(r.doc.resolve(s))}const c=Nd(i.$headCell,n,t);return c?ol(r,o,new He(i.$anchorCell,c)):!1}}function fb(n,t){const r=n.state.doc,o=y0(r.resolve(t));return o?(n.dispatch(n.state.tr.setSelection(new He(o))),!0):!1}function mb(n,t,r){if(!Yt(n.state))return!1;let o=sb(r);const a=n.state.selection;if(a instanceof He){o||(o={width:1,height:1,rows:[Q.from(U1(mt(n.state.schema).cell,r))]});const l=a.$anchorCell.node(-1),i=a.$anchorCell.start(-1),c=Ye.get(l).rectBetween(a.$anchorCell.pos-i,a.$headCell.pos-i);return o=ub(o,c.right-c.left,c.bottom-c.top),jd(n.state,n.dispatch,i,c,o),!0}else if(o){const l=nl(n.state),i=l.start(-1);return jd(n.state,n.dispatch,i,Ye.get(l.node(-1)).findCell(l.pos-i),o),!0}else return!1}function wb(n,t){var r;if(t.button!=0||t.ctrlKey||t.metaKey)return;const o=Ud(n,t.target);let a;if(t.shiftKey&&n.state.selection instanceof He)l(n.state.selection.$anchorCell,t),t.preventDefault();else if(t.shiftKey&&o&&(a=y0(n.state.selection.$anchor))!=null&&((r=W1(n,t))===null||r===void 0?void 0:r.pos)!=a.pos)l(a,t),t.preventDefault();else if(!o)return;function l(s,d){let u=W1(n,d);const h=jn.getState(n.state)==null;if(!u||!F1(s,u))if(h)u=s;else return;const f=new He(s,u);if(h||!n.state.selection.eq(f)){const p=n.state.tr.setSelection(f);h&&p.setMeta(jn,s.pos),n.dispatch(p)}}function i(){n.root.removeEventListener("mouseup",i),n.root.removeEventListener("dragstart",i),n.root.removeEventListener("mousemove",c),jn.getState(n.state)!=null&&n.dispatch(n.state.tr.setMeta(jn,-1))}function c(s){const d=s,u=jn.getState(n.state);let h;if(u!=null)h=n.state.doc.resolve(u);else if(Ud(n,d.target)!=o&&(h=W1(n,t),!h))return i();h&&l(h,d)}n.root.addEventListener("mouseup",i),n.root.addEventListener("dragstart",i),n.root.addEventListener("mousemove",c)}function Fd(n,t,r){if(!(n.state.selection instanceof ke))return null;const{$head:o}=n.state.selection;for(let a=o.depth-1;a>=0;a--){const l=o.node(a);if((r<0?o.index(a):o.indexAfter(a))!=(r<0?0:l.childCount))return null;if(l.type.spec.tableRole=="cell"||l.type.spec.tableRole=="header_cell"){const i=o.before(a),c=t=="vert"?r>0?"down":"up":r>0?"right":"left";return n.endOfTextblock(c)?i:null}}return null}function Ud(n,t){for(;t&&t!=n.dom;t=t.parentNode)if(t.nodeName=="TD"||t.nodeName=="TH")return t;return null}function W1(n,t){const r=n.posAtCoords({left:t.clientX,top:t.clientY});if(!r)return null;let{inside:o,pos:a}=r;return o>=0&&y0(n.state.doc.resolve(o))||y0(n.state.doc.resolve(a))}var gb=class{constructor(t,r){this.node=t,this.defaultCellMinWidth=r,this.dom=document.createElement("div"),this.dom.className="tableWrapper",this.table=this.dom.appendChild(document.createElement("table")),this.table.style.setProperty("--default-cell-min-width",`${r}px`),this.colgroup=this.table.appendChild(document.createElement("colgroup")),q1(t,this.colgroup,this.table,r),this.contentDOM=this.table.appendChild(document.createElement("tbody"))}update(t){return t.type!=this.node.type?!1:(this.node=t,q1(t,this.colgroup,this.table,this.defaultCellMinWidth),!0)}ignoreMutation(t){return t.type=="attributes"&&(t.target==this.table||this.colgroup.contains(t.target))}};function q1(n,t,r,o,a,l){let i=0,c=!0,s=t.firstChild;const d=n.firstChild;if(d){for(let h=0,f=0;h<d.childCount;h++){const{colspan:p,colwidth:m}=d.child(h).attrs;for(let w=0;w<p;w++,f++){const g=a==f?l:m&&m[w],k=g?g+"px":"";if(i+=g||o,g||(c=!1),s)s.style.width!=k&&(s.style.width=k),s=s.nextSibling;else{const x=document.createElement("col");x.style.width=k,t.appendChild(x)}}}for(;s;){var u;const h=s.nextSibling;(u=s.parentNode)===null||u===void 0||u.removeChild(s),s=h}c?(r.style.width=i+"px",r.style.minWidth=""):(r.style.width="",r.style.minWidth=i+"px")}}const At=new Ue("tableColumnResizing");function kb({handleWidth:n=5,cellMinWidth:t=25,defaultCellMinWidth:r=100,View:o=gb,lastColumnResizable:a=!0}={}){const l=new Fe({key:At,state:{init(i,c){var s;const d=(s=l.spec)===null||s===void 0||(s=s.props)===null||s===void 0?void 0:s.nodeViews,u=mt(c.schema).table.name;return o&&d&&(d[u]=(h,f)=>new o(h,r,f)),new xb(-1,!1)},apply(i,c){return c.apply(i)}},props:{attributes:i=>{const c=At.getState(i);return c&&c.activeHandle>-1?{class:"resize-cursor"}:{}},handleDOMEvents:{mousemove:(i,c)=>{vb(i,c,n,a)},mouseleave:i=>{yb(i)},mousedown:(i,c)=>{Bb(i,c,t,r)}},decorations:i=>{const c=At.getState(i);if(c&&c.activeHandle>-1)return Vb(i,c.activeHandle)},nodeViews:{}}});return l}var xb=class pl{constructor(t,r){this.activeHandle=t,this.dragging=r}apply(t){const r=this,o=t.getMeta(At);if(o&&o.setHandle!=null)return new pl(o.setHandle,!1);if(o&&o.setDragging!==void 0)return new pl(r.activeHandle,o.setDragging);if(r.activeHandle>-1&&t.docChanged){let a=t.mapping.map(r.activeHandle,-1);return j1(t.doc.resolve(a))||(a=-1),new pl(a,r.dragging)}return r}};function vb(n,t,r,o){if(!n.editable)return;const a=At.getState(n.state);if(a&&!a.dragging){const l=bb(t.target);let i=-1;if(l){const{left:c,right:s}=l.getBoundingClientRect();t.clientX-c<=r?i=Wd(n,t,"left",r):s-t.clientX<=r&&(i=Wd(n,t,"right",r))}if(i!=a.activeHandle){if(!o&&i!==-1){const c=n.state.doc.resolve(i),s=c.node(-1),d=Ye.get(s),u=c.start(-1);if(d.colCount(c.pos-u)+c.nodeAfter.attrs.colspan-1==d.width-1)return}Yd(n,i)}}}function yb(n){if(!n.editable)return;const t=At.getState(n.state);t&&t.activeHandle>-1&&!t.dragging&&Yd(n,-1)}function Bb(n,t,r,o){var a;if(!n.editable)return!1;const l=(a=n.dom.ownerDocument.defaultView)!==null&&a!==void 0?a:window,i=At.getState(n.state);if(!i||i.activeHandle==-1||i.dragging)return!1;const c=n.state.doc.nodeAt(i.activeHandle),s=Eb(n,i.activeHandle,c.attrs);n.dispatch(n.state.tr.setMeta(At,{setDragging:{startX:t.clientX,startWidth:s}}));function d(h){l.removeEventListener("mouseup",d),l.removeEventListener("mousemove",u);const f=At.getState(n.state);f?.dragging&&(Cb(n,f.activeHandle,qd(f.dragging,h,r)),n.dispatch(n.state.tr.setMeta(At,{setDragging:null})))}function u(h){if(!h.which)return d(h);const f=At.getState(n.state);if(f&&f.dragging){const p=qd(f.dragging,h,r);Kd(n,f.activeHandle,p,o)}}return Kd(n,i.activeHandle,s,o),l.addEventListener("mouseup",d),l.addEventListener("mousemove",u),t.preventDefault(),!0}function Eb(n,t,{colspan:r,colwidth:o}){const a=o&&o[o.length-1];if(a)return a;const l=n.domAtPos(t);let i=l.node.childNodes[l.offset].offsetWidth,c=r;if(o)for(let s=0;s<r;s++)o[s]&&(i-=o[s],c--);return i/c}function bb(n){for(;n&&n.nodeName!="TD"&&n.nodeName!="TH";)n=n.classList&&n.classList.contains("ProseMirror")?null:n.parentNode;return n}function Wd(n,t,r,o){const a=r=="right"?-o:o,l=n.posAtCoords({left:t.clientX+a,top:t.clientY});if(!l)return-1;const{pos:i}=l,c=y0(n.state.doc.resolve(i));if(!c)return-1;if(r=="right")return c.pos;const s=Ye.get(c.node(-1)),d=c.start(-1),u=s.map.indexOf(c.pos-d);return u%s.width==0?-1:d+s.map[u-1]}function qd(n,t,r){const o=t.clientX-n.startX;return Math.max(r,n.startWidth+o)}function Yd(n,t){n.dispatch(n.state.tr.setMeta(At,{setHandle:t}))}function Cb(n,t,r){const o=n.state.doc.resolve(t),a=o.node(-1),l=Ye.get(a),i=o.start(-1),c=l.colCount(o.pos-i)+o.nodeAfter.attrs.colspan-1,s=n.state.tr;for(let d=0;d<l.height;d++){const u=d*l.width+c;if(d&&l.map[u]==l.map[u-l.width])continue;const h=l.map[u],f=a.nodeAt(h).attrs,p=f.colspan==1?0:c-l.colCount(h);if(f.colwidth&&f.colwidth[p]==r)continue;const m=f.colwidth?f.colwidth.slice():Mb(f.colspan);m[p]=r,s.setNodeMarkup(i+h,null,{...f,colwidth:m})}s.docChanged&&n.dispatch(s)}function Kd(n,t,r,o){const a=n.state.doc.resolve(t),l=a.node(-1),i=a.start(-1),c=Ye.get(l).colCount(a.pos-i)+a.nodeAfter.attrs.colspan-1;let s=n.domAtPos(a.start(-1)).node;for(;s&&s.nodeName!="TABLE";)s=s.parentNode;s&&q1(l,s.firstChild,s,o,c,r)}function Mb(n){return Array(n).fill(0)}function Vb(n,t){const r=[],o=n.doc.resolve(t),a=o.node(-1);if(!a)return Te.empty;const l=Ye.get(a),i=o.start(-1),c=l.colCount(o.pos-i)+o.nodeAfter.attrs.colspan-1;for(let d=0;d<l.height;d++){const u=c+d*l.width;if((c==l.width-1||l.map[u]!=l.map[u+1])&&(d==0||l.map[u]!=l.map[u-l.width])){var s;const h=l.map[u],f=i+h+a.nodeAt(h).nodeSize-1,p=document.createElement("div");p.className="column-resize-handle",!((s=At.getState(n))===null||s===void 0)&&s.dragging&&r.push(ft.node(i+h,i+h+a.nodeAt(h).nodeSize,{class:"column-resize-dragging"})),r.push(ft.widget(f,p))}}return Te.create(n.doc,r)}function Ab({allowTableNodeSelection:n=!1}={}){return new Fe({key:jn,state:{init(){return null},apply(t,r){const o=t.getMeta(jn);if(o!=null)return o==-1?null:o;if(r==null||!t.docChanged)return r;const{deleted:a,pos:l}=t.mapping.mapResult(r);return a?null:l}},props:{decorations:RE,handleDOMEvents:{mousedown:wb},createSelectionBetween(t){return jn.getState(t.state)!=null?t.state.selection:null},handleTripleClick:fb,handleKeyDown:pb,handlePaste:mb},appendTransaction(t,r,o){return FE(o,$d(o,r),n)}})}var _b=dt.create({name:"tableCell",addOptions(){return{HTMLAttributes:{}}},content:"block+",addAttributes(){return{colspan:{default:1},rowspan:{default:1},colwidth:{default:null,parseHTML:n=>{var t,r;const o=n.getAttribute("colwidth"),a=o?o.split(",").map(l=>parseInt(l,10)):null;if(!a){const l=(t=n.closest("table"))==null?void 0:t.querySelectorAll("colgroup > col"),i=Array.from(((r=n.parentElement)==null?void 0:r.children)||[]).indexOf(n);if(i&&i>-1&&l&&l[i]){const c=l[i].getAttribute("width");return c?[parseInt(c,10)]:null}}return a}}}},tableRole:"cell",isolating:!0,parseHTML(){return[{tag:"td"}]},renderHTML({HTMLAttributes:n}){return["td",Oe(this.options.HTMLAttributes,n),0]}}),Nb=dt.create({name:"tableHeader",addOptions(){return{HTMLAttributes:{}}},content:"block+",addAttributes(){return{colspan:{default:1},rowspan:{default:1},colwidth:{default:null,parseHTML:n=>{const t=n.getAttribute("colwidth");return t?t.split(",").map(o=>parseInt(o,10)):null}}}},tableRole:"header_cell",isolating:!0,parseHTML(){return[{tag:"th"}]},renderHTML({HTMLAttributes:n}){return["th",Oe(this.options.HTMLAttributes,n),0]}}),Zb=dt.create({name:"tableRow",addOptions(){return{HTMLAttributes:{}}},content:"(tableCell | tableHeader)*",tableRole:"row",parseHTML(){return[{tag:"tr"}]},renderHTML({HTMLAttributes:n}){return["tr",Oe(this.options.HTMLAttributes,n),0]}});function Y1(n,t){return t?["width",`${Math.max(t,n)}px`]:["min-width",`${n}px`]}function Gd(n,t,r,o,a,l){var i;let c=0,s=!0,d=t.firstChild;const u=n.firstChild;if(u!==null)for(let f=0,p=0;f<u.childCount;f+=1){const{colspan:m,colwidth:w}=u.child(f).attrs;for(let g=0;g<m;g+=1,p+=1){const k=a===p?l:w&&w[g],x=k?`${k}px`:"";if(c+=k||o,k||(s=!1),d){if(d.style.width!==x){const[v,b]=Y1(o,k);d.style.setProperty(v,b)}d=d.nextSibling}else{const v=document.createElement("col"),[b,C]=Y1(o,k);v.style.setProperty(b,C),t.appendChild(v)}}}for(;d;){const f=d.nextSibling;(i=d.parentNode)==null||i.removeChild(d),d=f}const h=n.attrs.style&&typeof n.attrs.style=="string"&&/\bwidth\s*:/i.test(n.attrs.style);s&&!h?(r.style.width=`${c}px`,r.style.minWidth=""):(r.style.width="",r.style.minWidth=`${c}px`)}var Sb=class{constructor(n,t){this.node=n,this.cellMinWidth=t,this.dom=document.createElement("div"),this.dom.className="tableWrapper",this.table=this.dom.appendChild(document.createElement("table")),n.attrs.style&&(this.table.style.cssText=n.attrs.style),this.colgroup=this.table.appendChild(document.createElement("colgroup")),Gd(n,this.colgroup,this.table,t),this.contentDOM=this.table.appendChild(document.createElement("tbody"))}update(n){return n.type!==this.node.type?!1:(this.node=n,Gd(n,this.colgroup,this.table,this.cellMinWidth),!0)}ignoreMutation(n){const t=n.target,r=this.dom.contains(t),o=this.contentDOM.contains(t);return!!(r&&!o&&(n.type==="attributes"||n.type==="childList"||n.type==="characterData"))}};function $b(n,t,r,o){let a=0,l=!0;const i=[],c=n.firstChild;if(!c)return{};for(let h=0,f=0;h<c.childCount;h+=1){const{colspan:p,colwidth:m}=c.child(h).attrs;for(let w=0;w<p;w+=1,f+=1){const g=r===f?o:m&&m[w];a+=g||t,g||(l=!1);const[k,x]=Y1(t,g);i.push(["col",{style:`${k}: ${x}`}])}}const s=l?`${a}px`:"",d=l?"":`${a}px`;return{colgroup:["colgroup",{},...i],tableWidth:s,tableMinWidth:d}}function Jd(n,t){return n.createAndFill()}function Ib(n){if(n.cached.tableNodeTypes)return n.cached.tableNodeTypes;const t={};return Object.keys(n.nodes).forEach(r=>{const o=n.nodes[r];o.spec.tableRole&&(t[o.spec.tableRole]=o)}),n.cached.tableNodeTypes=t,t}function Hb(n,t,r,o,a){const l=Ib(n),i=[],c=[];for(let d=0;d<r;d+=1){const u=Jd(l.cell);if(u&&c.push(u),o){const h=Jd(l.header_cell);h&&i.push(h)}}const s=[];for(let d=0;d<t;d+=1)s.push(l.row.createChecked(null,o&&d===0?i:c));return l.table.createChecked(null,s)}function Tb(n){return n instanceof He}var il=({editor:n})=>{const{selection:t}=n.state;if(!Tb(t))return!1;let r=0;const o=T7(t.ranges[0].$from,l=>l.type.name==="table");return o?.node.descendants(l=>{if(l.type.name==="table")return!1;["tableCell","tableHeader"].includes(l.type.name)&&(r+=1)}),r===t.ranges.length?(n.commands.deleteTable(),!0):!1},Lb="";function Db(n){return(n||"").replace(/\s+/g," ").trim()}function Pb(n,t,r={}){var o;const a=(o=r.cellLineSeparator)!=null?o:Lb;if(!n||!n.content||n.content.length===0)return"";const l=[];n.content.forEach(m=>{const w=[];m.content&&m.content.forEach(g=>{let k="";g.content&&Array.isArray(g.content)&&g.content.length>1?k=g.content.map(C=>t.renderChildren(C)).join(a):k=g.content?t.renderChildren(g.content):"";const x=Db(k),v=g.type==="tableHeader";w.push({text:x,isHeader:v})}),l.push(w)});const i=l.reduce((m,w)=>Math.max(m,w.length),0);if(i===0)return"";const c=new Array(i).fill(0);l.forEach(m=>{var w;for(let g=0;g<i;g+=1){const x=(((w=m[g])==null?void 0:w.text)||"").length;x>c[g]&&(c[g]=x),c[g]<3&&(c[g]=3)}});const s=(m,w)=>m+" ".repeat(Math.max(0,w-m.length)),d=l[0],u=d.some(m=>m.isHeader);let h=`
108
+ `;const f=new Array(i).fill(0).map((m,w)=>u&&d[w]&&d[w].text||"");return h+=`| ${f.map((m,w)=>s(m,c[w])).join(" | ")} |
109
+ `,h+=`| ${c.map(m=>"-".repeat(Math.max(3,m))).join(" | ")} |
110
+ `,(u?l.slice(1):l).forEach(m=>{h+=`| ${new Array(i).fill(0).map((w,g)=>s(m[g]&&m[g].text||"",c[g])).join(" | ")} |
111
+ `}),h}var Ob=Pb,Rb=dt.create({name:"table",addOptions(){return{HTMLAttributes:{},resizable:!1,renderWrapper:!1,handleWidth:5,cellMinWidth:25,View:Sb,lastColumnResizable:!0,allowTableNodeSelection:!1}},content:"tableRow+",tableRole:"table",isolating:!0,group:"block",parseHTML(){return[{tag:"table"}]},renderHTML({node:n,HTMLAttributes:t}){const{colgroup:r,tableWidth:o,tableMinWidth:a}=$b(n,this.options.cellMinWidth),l=t.style;function i(){return l||(o?`width: ${o}`:`min-width: ${a}`)}const c=["table",Oe(this.options.HTMLAttributes,t,{style:i()}),r,["tbody",0]];return this.options.renderWrapper?["div",{class:"tableWrapper"},c]:c},parseMarkdown:(n,t)=>{const r=[];if(n.header){const o=[];n.header.forEach(a=>{o.push(t.createNode("tableHeader",{},[{type:"paragraph",content:t.parseInline(a.tokens)}]))}),r.push(t.createNode("tableRow",{},o))}return n.rows&&n.rows.forEach(o=>{const a=[];o.forEach(l=>{a.push(t.createNode("tableCell",{},[{type:"paragraph",content:t.parseInline(l.tokens)}]))}),r.push(t.createNode("tableRow",{},a))}),t.createNode("table",void 0,r)},renderMarkdown:(n,t)=>Ob(n,t),addCommands(){return{insertTable:({rows:n=3,cols:t=3,withHeaderRow:r=!0}={})=>({tr:o,dispatch:a,editor:l})=>{const i=Hb(l.schema,n,t,r);if(a){const c=o.selection.from+1;o.replaceSelectionWith(i).scrollIntoView().setSelection(ke.near(o.doc.resolve(c)))}return!0},addColumnBefore:()=>({state:n,dispatch:t})=>qE(n,t),addColumnAfter:()=>({state:n,dispatch:t})=>YE(n,t),deleteColumn:()=>({state:n,dispatch:t})=>GE(n,t),addRowBefore:()=>({state:n,dispatch:t})=>XE(n,t),addRowAfter:()=>({state:n,dispatch:t})=>QE(n,t),deleteRow:()=>({state:n,dispatch:t})=>tb(n,t),deleteTable:()=>({state:n,dispatch:t})=>cb(n,t),mergeCells:()=>({state:n,dispatch:t})=>Ld(n,t),splitCell:()=>({state:n,dispatch:t})=>Dd(n,t),toggleHeaderColumn:()=>({state:n,dispatch:t})=>oo("column")(n,t),toggleHeaderRow:()=>({state:n,dispatch:t})=>oo("row")(n,t),toggleHeaderCell:()=>({state:n,dispatch:t})=>lb(n,t),mergeOrSplit:()=>({state:n,dispatch:t})=>Ld(n,t)?!0:Dd(n,t),setCellAttribute:(n,t)=>({state:r,dispatch:o})=>ob(n,t)(r,o),goToNextCell:()=>({state:n,dispatch:t})=>Od(1)(n,t),goToPreviousCell:()=>({state:n,dispatch:t})=>Od(-1)(n,t),fixTables:()=>({state:n,dispatch:t})=>(t&&$d(n),!0),setCellSelection:n=>({tr:t,dispatch:r})=>{if(r){const o=He.create(t.doc,n.anchorCell,n.headCell);t.setSelection(o)}return!0}}},addKeyboardShortcuts(){return{Tab:()=>this.editor.commands.goToNextCell()?!0:this.editor.can().addRowAfter()?this.editor.chain().addRowAfter().goToNextCell().run():!1,"Shift-Tab":()=>this.editor.commands.goToPreviousCell(),Backspace:il,"Mod-Backspace":il,Delete:il,"Mod-Delete":il}},addProseMirrorPlugins(){return[...this.options.resizable&&this.editor.isEditable?[kb({handleWidth:this.options.handleWidth,cellMinWidth:this.options.cellMinWidth,defaultCellMinWidth:this.options.cellMinWidth,View:this.options.View,lastColumnResizable:this.options.lastColumnResizable})]:[],Ab({allowTableNodeSelection:this.options.allowTableNodeSelection})]},extendNodeSchema(n){const t={name:n.name,options:n.options,storage:n.storage};return{tableRole:cn(w0(n,"tableRole",t))}}});ze.create({name:"tableKit",addExtensions(){const n=[];return this.options.table!==!1&&n.push(Rb.configure(this.options.table)),this.options.tableCell!==!1&&n.push(_b.configure(this.options.tableCell)),this.options.tableHeader!==!1&&n.push(Nb.configure(this.options.tableHeader)),this.options.tableRow!==!1&&n.push(Zb.configure(this.options.tableRow)),n}}),ze.create({name:"textAlign",addOptions(){return{types:[],alignments:["left","center","right","justify"],defaultAlignment:null}},addGlobalAttributes(){return[{types:this.options.types,attributes:{textAlign:{default:this.options.defaultAlignment,parseHTML:n=>{const t=n.style.textAlign;return this.options.alignments.includes(t)?t:this.options.defaultAlignment},renderHTML:n=>n.textAlign?{style:`text-align: ${n.textAlign}`}:{}}}}]},addCommands(){return{setTextAlign:n=>({commands:t})=>this.options.alignments.includes(n)?this.options.types.map(r=>t.updateAttributes(r,{textAlign:n})).some(r=>r):!1,unsetTextAlign:()=>({commands:n})=>this.options.types.map(t=>n.resetAttributes(t,"textAlign")).some(t=>t),toggleTextAlign:n=>({editor:t,commands:r})=>this.options.alignments.includes(n)?t.isActive({textAlign:n})?r.unsetTextAlign():r.setTextAlign(n):!1}},addKeyboardShortcuts(){return{"Mod-Shift-l":()=>this.editor.commands.setTextAlign("left"),"Mod-Shift-e":()=>this.editor.commands.setTextAlign("center"),"Mod-Shift-r":()=>this.editor.commands.setTextAlign("right"),"Mod-Shift-j":()=>this.editor.commands.setTextAlign("justify")}}});function zb(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M4.26 10.147a60.438 60.438 0 0 0-.491 6.347A48.62 48.62 0 0 1 12 20.904a48.62 48.62 0 0 1 8.232-4.41 60.46 60.46 0 0 0-.491-6.347m-15.482 0a50.636 50.636 0 0 0-2.658-.813A59.906 59.906 0 0 1 12 3.493a59.903 59.903 0 0 1 10.399 5.84c-.896.248-1.783.52-2.658.814m-15.482 0A50.717 50.717 0 0 1 12 13.489a50.702 50.702 0 0 1 7.74-3.342M6.75 15a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm0 0v-3.675A55.378 55.378 0 0 1 12 8.443m-7.007 11.55A5.981 5.981 0 0 0 6.75 15.75v-1.5"})])}function jb(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M10.5 6h9.75M10.5 6a1.5 1.5 0 1 1-3 0m3 0a1.5 1.5 0 1 0-3 0M3.75 6H7.5m3 12h9.75m-9.75 0a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m-3.75 0H7.5m9-6h3.75m-3.75 0a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m-9.75 0h9.75"})])}function Fb(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6 13.5V3.75m0 9.75a1.5 1.5 0 0 1 0 3m0-3a1.5 1.5 0 0 0 0 3m0 3.75V16.5m12-3V3.75m0 9.75a1.5 1.5 0 0 1 0 3m0-3a1.5 1.5 0 0 0 0 3m0 3.75V16.5m-6-9V3.75m0 3.75a1.5 1.5 0 0 1 0 3m0-3a1.5 1.5 0 0 0 0 3m0 9.75V10.5"})])}function Ub(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m20.25 7.5-.625 10.632a2.25 2.25 0 0 1-2.247 2.118H6.622a2.25 2.25 0 0 1-2.247-2.118L3.75 7.5m8.25 3v6.75m0 0-3-3m3 3 3-3M3.375 7.5h17.25c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125Z"})])}function Wb(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m20.25 7.5-.625 10.632a2.25 2.25 0 0 1-2.247 2.118H6.622a2.25 2.25 0 0 1-2.247-2.118L3.75 7.5m6 4.125 2.25 2.25m0 0 2.25 2.25M12 13.875l2.25-2.25M12 13.875l-2.25 2.25M3.375 7.5h17.25c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125Z"})])}function qb(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m20.25 7.5-.625 10.632a2.25 2.25 0 0 1-2.247 2.118H6.622a2.25 2.25 0 0 1-2.247-2.118L3.75 7.5M10 11.25h4M3.375 7.5h17.25c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125Z"})])}function Yb(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m9 12.75 3 3m0 0 3-3m-3 3v-7.5M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function Kb(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m19.5 4.5-15 15m0 0h11.25m-11.25 0V8.25"})])}function Gb(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M7.5 7.5h-.75A2.25 2.25 0 0 0 4.5 9.75v7.5a2.25 2.25 0 0 0 2.25 2.25h7.5a2.25 2.25 0 0 0 2.25-2.25v-7.5a2.25 2.25 0 0 0-2.25-2.25h-.75m-6 3.75 3 3m0 0 3-3m-3 3V1.5m6 9h.75a2.25 2.25 0 0 1 2.25 2.25v7.5a2.25 2.25 0 0 1-2.25 2.25h-7.5a2.25 2.25 0 0 1-2.25-2.25v-.75"})])}function Jb(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9 8.25H7.5a2.25 2.25 0 0 0-2.25 2.25v9a2.25 2.25 0 0 0 2.25 2.25h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25H15M9 12l3 3m0 0 3-3m-3 3V2.25"})])}function Xb(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m4.5 4.5 15 15m0 0V8.25m0 11.25H8.25"})])}function Qb(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5M16.5 12 12 16.5m0 0L7.5 12m4.5 4.5V3"})])}function eC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 13.5 12 21m0 0-7.5-7.5M12 21V3"})])}function tC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m11.25 9-3 3m0 0 3 3m-3-3h7.5M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function nC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15M12 9l-3 3m0 0 3 3m-3-3h12.75"})])}function rC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15M12 9l-3 3m0 0 3 3m-3-3h12.75"})])}function oC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M8.25 9V5.25A2.25 2.25 0 0 1 10.5 3h6a2.25 2.25 0 0 1 2.25 2.25v13.5A2.25 2.25 0 0 1 16.5 21h-6a2.25 2.25 0 0 1-2.25-2.25V15m-3 0-3-3m0 0 3-3m-3 3H15"})])}function aC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M10.5 19.5 3 12m0 0 7.5-7.5M3 12h18"})])}function lC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.75 17.25 12 21m0 0-3.75-3.75M12 21V3"})])}function iC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6.75 15.75 3 12m0 0 3.75-3.75M3 12h18"})])}function cC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M17.25 8.25 21 12m0 0-3.75 3.75M21 12H3"})])}function sC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M8.25 6.75 12 3m0 0 3.75 3.75M12 3v18"})])}function dC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 12c0-1.232-.046-2.453-.138-3.662a4.006 4.006 0 0 0-3.7-3.7 48.678 48.678 0 0 0-7.324 0 4.006 4.006 0 0 0-3.7 3.7c-.017.22-.032.441-.046.662M19.5 12l3-3m-3 3-3-3m-12 3c0 1.232.046 2.453.138 3.662a4.006 4.006 0 0 0 3.7 3.7 48.656 48.656 0 0 0 7.324 0 4.006 4.006 0 0 0 3.7-3.7c.017-.22.032-.441.046-.662M4.5 12l3 3m-3-3-3 3"})])}function uC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0 3.181 3.183a8.25 8.25 0 0 0 13.803-3.7M4.031 9.865a8.25 8.25 0 0 1 13.803-3.7l3.181 3.182m0-4.991v4.99"})])}function hC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m12.75 15 3-3m0 0-3-3m3 3h-7.5M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function pC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M8.25 9V5.25A2.25 2.25 0 0 1 10.5 3h6a2.25 2.25 0 0 1 2.25 2.25v13.5A2.25 2.25 0 0 1 16.5 21h-6a2.25 2.25 0 0 1-2.25-2.25V15M12 9l3 3m0 0-3 3m3-3H2.25"})])}function fC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15m3 0 3-3m0 0-3-3m3 3H9"})])}function mC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15m3 0 3-3m0 0-3-3m3 3H9"})])}function wC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M13.5 4.5 21 12m0 0-7.5 7.5M21 12H3"})])}function gC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 4.5v15m0 0 6.75-6.75M12 19.5l-6.75-6.75"})])}function kC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 12h-15m0 0 6.75 6.75M4.5 12l6.75-6.75"})])}function xC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M4.5 12h15m0 0-6.75-6.75M19.5 12l-6.75 6.75"})])}function vC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 19.5v-15m0 0-6.75 6.75M12 4.5l6.75 6.75"})])}function yC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25"})])}function BC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 6 9 12.75l4.286-4.286a11.948 11.948 0 0 1 4.306 6.43l.776 2.898m0 0 3.182-5.511m-3.182 5.51-5.511-3.181"})])}function EC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 18 9 11.25l4.306 4.306a11.95 11.95 0 0 1 5.814-5.518l2.74-1.22m0 0-5.94-2.281m5.94 2.28-2.28 5.941"})])}function bC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m7.49 12-3.75 3.75m0 0 3.75 3.75m-3.75-3.75h16.5V4.499"})])}function CC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m16.49 12 3.75 3.75m0 0-3.75 3.75m3.75-3.75H3.74V4.499"})])}function MC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m11.99 16.5-3.75 3.75m0 0L4.49 16.5m3.75 3.75V3.75h11.25"})])}function VC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M11.99 7.5 8.24 3.75m0 0L4.49 7.5m3.75-3.75v16.499h11.25"})])}function AC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m11.99 16.5 3.75 3.75m0 0 3.75-3.75m-3.75 3.75V3.75H4.49"})])}function _C(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m11.99 7.5 3.75-3.75m0 0 3.75 3.75m-3.75-3.75v16.499H4.49"})])}function NC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M7.49 12 3.74 8.248m0 0 3.75-3.75m-3.75 3.75h16.5V19.5"})])}function ZC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m16.49 12 3.75-3.751m0 0-3.75-3.75m3.75 3.75H3.74V19.5"})])}function SC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m15 11.25-3-3m0 0-3 3m3-3v7.5M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function $C(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m19.5 19.5-15-15m0 0v11.25m0-11.25h11.25"})])}function IC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M7.5 7.5h-.75A2.25 2.25 0 0 0 4.5 9.75v7.5a2.25 2.25 0 0 0 2.25 2.25h7.5a2.25 2.25 0 0 0 2.25-2.25v-7.5a2.25 2.25 0 0 0-2.25-2.25h-.75m0-3-3-3m0 0-3 3m3-3v11.25m6-2.25h.75a2.25 2.25 0 0 1 2.25 2.25v7.5a2.25 2.25 0 0 1-2.25 2.25h-7.5a2.25 2.25 0 0 1-2.25-2.25v-.75"})])}function HC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9 8.25H7.5a2.25 2.25 0 0 0-2.25 2.25v9a2.25 2.25 0 0 0 2.25 2.25h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25H15m0-3-3-3m0 0-3 3m3-3V15"})])}function TC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m4.5 19.5 15-15m0 0H8.25m11.25 0v11.25"})])}function LC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5m-13.5-9L12 3m0 0 4.5 4.5M12 3v13.5"})])}function DC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M4.5 10.5 12 3m0 0 7.5 7.5M12 3v18"})])}function PC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m15 15-6 6m0 0-6-6m6 6V9a6 6 0 0 1 12 0v3"})])}function OC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9 15 3 9m0 0 6-6M3 9h12a6 6 0 0 1 0 12h-3"})])}function RC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m15 15 6-6m0 0-6-6m6 6H9a6 6 0 0 0 0 12h3"})])}function zC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m9 9 6-6m0 0 6 6m-6-6v12a6 6 0 0 1-12 0v-3"})])}function jC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9 9V4.5M9 9H4.5M9 9 3.75 3.75M9 15v4.5M9 15H4.5M9 15l-5.25 5.25M15 9h4.5M15 9V4.5M15 9l5.25-5.25M15 15h4.5M15 15v4.5m0-4.5 5.25 5.25"})])}function FC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.75 3.75v4.5m0-4.5h4.5m-4.5 0L9 9M3.75 20.25v-4.5m0 4.5h4.5m-4.5 0L9 15M20.25 3.75h-4.5m4.5 0v4.5m0-4.5L15 9m5.25 11.25h-4.5m4.5 0v-4.5m0 4.5L15 15"})])}function UC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M7.5 21 3 16.5m0 0L7.5 12M3 16.5h13.5m0-13.5L21 7.5m0 0L16.5 12M21 7.5H7.5"})])}function WC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3 7.5 7.5 3m0 0L12 7.5M7.5 3v13.5m13.5 0L16.5 21m0 0L12 16.5m4.5 4.5V7.5"})])}function qC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M16.5 12a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm0 0c0 1.657 1.007 3 2.25 3S21 13.657 21 12a9 9 0 1 0-2.636 6.364M16.5 12V8.25"})])}function YC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 9.75 14.25 12m0 0 2.25 2.25M14.25 12l2.25-2.25M14.25 12 12 14.25m-2.58 4.92-6.374-6.375a1.125 1.125 0 0 1 0-1.59L9.42 4.83c.21-.211.497-.33.795-.33H19.5a2.25 2.25 0 0 1 2.25 2.25v10.5a2.25 2.25 0 0 1-2.25 2.25h-9.284c-.298 0-.585-.119-.795-.33Z"})])}function KC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21 16.811c0 .864-.933 1.406-1.683.977l-7.108-4.061a1.125 1.125 0 0 1 0-1.954l7.108-4.061A1.125 1.125 0 0 1 21 8.689v8.122ZM11.25 16.811c0 .864-.933 1.406-1.683.977l-7.108-4.061a1.125 1.125 0 0 1 0-1.954l7.108-4.061a1.125 1.125 0 0 1 1.683.977v8.122Z"})])}function GC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 18.75a60.07 60.07 0 0 1 15.797 2.101c.727.198 1.453-.342 1.453-1.096V18.75M3.75 4.5v.75A.75.75 0 0 1 3 6h-.75m0 0v-.375c0-.621.504-1.125 1.125-1.125H20.25M2.25 6v9m18-10.5v.75c0 .414.336.75.75.75h.75m-1.5-1.5h.375c.621 0 1.125.504 1.125 1.125v9.75c0 .621-.504 1.125-1.125 1.125h-.375m1.5-1.5H21a.75.75 0 0 0-.75.75v.75m0 0H3.75m0 0h-.375a1.125 1.125 0 0 1-1.125-1.125V15m1.5 1.5v-.75A.75.75 0 0 0 3 15h-.75M15 10.5a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm3 0h.008v.008H18V10.5Zm-12 0h.008v.008H6V10.5Z"})])}function JC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.75 9h16.5m-16.5 6.75h16.5"})])}function XC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25H12"})])}function QC(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.75 6.75h16.5M3.75 12h16.5M12 17.25h8.25"})])}function eM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.75 6.75h16.5M3.75 12H12m-8.25 5.25h16.5"})])}function tM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"})])}function nM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.75 5.25h16.5m-16.5 4.5h16.5m-16.5 4.5h16.5m-16.5 4.5h16.5"})])}function rM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3 4.5h14.25M3 9h9.75M3 13.5h9.75m4.5-4.5v12m0 0-3.75-3.75M17.25 21 21 17.25"})])}function oM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3 4.5h14.25M3 9h9.75M3 13.5h5.25m5.25-.75L17.25 9m0 0L21 12.75M17.25 9v12"})])}function aM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21 10.5h.375c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125H21M3.75 18h15A2.25 2.25 0 0 0 21 15.75v-6a2.25 2.25 0 0 0-2.25-2.25h-15A2.25 2.25 0 0 0 1.5 9.75v6A2.25 2.25 0 0 0 3.75 18Z"})])}function lM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21 10.5h.375c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125H21M4.5 10.5H18V15H4.5v-4.5ZM3.75 18h15A2.25 2.25 0 0 0 21 15.75v-6a2.25 2.25 0 0 0-2.25-2.25h-15A2.25 2.25 0 0 0 1.5 9.75v6A2.25 2.25 0 0 0 3.75 18Z"})])}function iM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21 10.5h.375c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125H21M4.5 10.5h6.75V15H4.5v-4.5ZM3.75 18h15A2.25 2.25 0 0 0 21 15.75v-6a2.25 2.25 0 0 0-2.25-2.25h-15A2.25 2.25 0 0 0 1.5 9.75v6A2.25 2.25 0 0 0 3.75 18Z"})])}function cM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9.75 3.104v5.714a2.25 2.25 0 0 1-.659 1.591L5 14.5M9.75 3.104c-.251.023-.501.05-.75.082m.75-.082a24.301 24.301 0 0 1 4.5 0m0 0v5.714c0 .597.237 1.17.659 1.591L19.8 15.3M14.25 3.104c.251.023.501.05.75.082M19.8 15.3l-1.57.393A9.065 9.065 0 0 1 12 15a9.065 9.065 0 0 0-6.23-.693L5 14.5m14.8.8 1.402 1.402c1.232 1.232.65 3.318-1.067 3.611A48.309 48.309 0 0 1 12 21c-2.773 0-5.491-.235-8.135-.687-1.718-.293-2.3-2.379-1.067-3.61L5 14.5"})])}function sM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0M3.124 7.5A8.969 8.969 0 0 1 5.292 3m13.416 0a8.969 8.969 0 0 1 2.168 4.5"})])}function dM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9.143 17.082a24.248 24.248 0 0 0 3.844.148m-3.844-.148a23.856 23.856 0 0 1-5.455-1.31 8.964 8.964 0 0 0 2.3-5.542m3.155 6.852a3 3 0 0 0 5.667 1.97m1.965-2.277L21 21m-4.225-4.225a23.81 23.81 0 0 0 3.536-1.003A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6.53 6.53m10.245 10.245L6.53 6.53M3 3l3.53 3.53"})])}function uM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0M10.5 8.25h3l-3 4.5h3"})])}function hM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0"})])}function pM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linejoin":"round",d:"M6.75 3.744h-.753v8.25h7.125a4.125 4.125 0 0 0 0-8.25H6.75Zm0 0v.38m0 16.122h6.747a4.5 4.5 0 0 0 0-9.001h-7.5v9h.753Zm0 0v-.37m0-15.751h6a3.75 3.75 0 1 1 0 7.5h-6m0-7.5v7.5m0 0v8.25m0-8.25h6.375a4.125 4.125 0 0 1 0 8.25H6.75m.747-15.38h4.875a3.375 3.375 0 0 1 0 6.75H7.497v-6.75Zm0 7.5h5.25a3.75 3.75 0 0 1 0 7.5h-5.25v-7.5Z"})])}function fM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M11.412 15.655 9.75 21.75l3.745-4.012M9.257 13.5H3.75l2.659-2.849m2.048-2.194L14.25 2.25 12 10.5h8.25l-4.707 5.043M8.457 8.457 3 3m5.457 5.457 7.086 7.086m0 0L21 21"})])}function mM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m3.75 13.5 10.5-11.25L12 10.5h8.25L9.75 21.75 12 13.5H3.75Z"})])}function wM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 6.042A8.967 8.967 0 0 0 6 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 0 1 6 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 0 1 6-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0 0 18 18a8.967 8.967 0 0 0-6 2.292m0-14.25v14.25"})])}function gM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m3 3 1.664 1.664M21 21l-1.5-1.5m-5.485-1.242L12 17.25 4.5 21V8.742m.164-4.078a2.15 2.15 0 0 1 1.743-1.342 48.507 48.507 0 0 1 11.186 0c1.1.128 1.907 1.077 1.907 2.185V19.5M4.664 4.664 19.5 19.5"})])}function kM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M16.5 3.75V16.5L12 14.25 7.5 16.5V3.75m9 0H18A2.25 2.25 0 0 1 20.25 6v12A2.25 2.25 0 0 1 18 20.25H6A2.25 2.25 0 0 1 3.75 18V6A2.25 2.25 0 0 1 6 3.75h1.5m9 0h-9"})])}function xM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M17.593 3.322c1.1.128 1.907 1.077 1.907 2.185V21L12 17.25 4.5 21V5.507c0-1.108.806-2.057 1.907-2.185a48.507 48.507 0 0 1 11.186 0Z"})])}function vM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M20.25 14.15v4.25c0 1.094-.787 2.036-1.872 2.18-2.087.277-4.216.42-6.378.42s-4.291-.143-6.378-.42c-1.085-.144-1.872-1.086-1.872-2.18v-4.25m16.5 0a2.18 2.18 0 0 0 .75-1.661V8.706c0-1.081-.768-2.015-1.837-2.175a48.114 48.114 0 0 0-3.413-.387m4.5 8.006c-.194.165-.42.295-.673.38A23.978 23.978 0 0 1 12 15.75c-2.648 0-5.195-.429-7.577-1.22a2.016 2.016 0 0 1-.673-.38m0 0A2.18 2.18 0 0 1 3 12.489V8.706c0-1.081.768-2.015 1.837-2.175a48.111 48.111 0 0 1 3.413-.387m7.5 0V5.25A2.25 2.25 0 0 0 13.5 3h-3a2.25 2.25 0 0 0-2.25 2.25v.894m7.5 0a48.667 48.667 0 0 0-7.5 0M12 12.75h.008v.008H12v-.008Z"})])}function yM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 12.75c1.148 0 2.278.08 3.383.237 1.037.146 1.866.966 1.866 2.013 0 3.728-2.35 6.75-5.25 6.75S6.75 18.728 6.75 15c0-1.046.83-1.867 1.866-2.013A24.204 24.204 0 0 1 12 12.75Zm0 0c2.883 0 5.647.508 8.207 1.44a23.91 23.91 0 0 1-1.152 6.06M12 12.75c-2.883 0-5.647.508-8.208 1.44.125 2.104.52 4.136 1.153 6.06M12 12.75a2.25 2.25 0 0 0 2.248-2.354M12 12.75a2.25 2.25 0 0 1-2.248-2.354M12 8.25c.995 0 1.971-.08 2.922-.236.403-.066.74-.358.795-.762a3.778 3.778 0 0 0-.399-2.25M12 8.25c-.995 0-1.97-.08-2.922-.236-.402-.066-.74-.358-.795-.762a3.734 3.734 0 0 1 .4-2.253M12 8.25a2.25 2.25 0 0 0-2.248 2.146M12 8.25a2.25 2.25 0 0 1 2.248 2.146M8.683 5a6.032 6.032 0 0 1-1.155-1.002c.07-.63.27-1.222.574-1.747m.581 2.749A3.75 3.75 0 0 1 15.318 5m0 0c.427-.283.815-.62 1.155-.999a4.471 4.471 0 0 0-.575-1.752M4.921 6a24.048 24.048 0 0 0-.392 3.314c1.668.546 3.416.914 5.223 1.082M19.08 6c.205 1.08.337 2.187.392 3.314a23.882 23.882 0 0 1-5.223 1.082"})])}function BM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 21v-8.25M15.75 21v-8.25M8.25 21v-8.25M3 9l9-6 9 6m-1.5 12V10.332A48.36 48.36 0 0 0 12 9.75c-2.551 0-5.056.2-7.5.582V21M3 21h18M12 6.75h.008v.008H12V6.75Z"})])}function EM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 21h19.5m-18-18v18m10.5-18v18m6-13.5V21M6.75 6.75h.75m-.75 3h.75m-.75 3h.75m3-6h.75m-.75 3h.75m-.75 3h.75M6.75 21v-3.375c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21M3 3h12m-.75 4.5H21m-3.75 3.75h.008v.008h-.008v-.008Zm0 3h.008v.008h-.008v-.008Zm0 3h.008v.008h-.008v-.008Z"})])}function bM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.75 21h16.5M4.5 3h15M5.25 3v18m13.5-18v18M9 6.75h1.5m-1.5 3h1.5m-1.5 3h1.5m3-6H15m-1.5 3H15m-1.5 3H15M9 21v-3.375c0-.621.504-1.125 1.125-1.125h3.75c.621 0 1.125.504 1.125 1.125V21"})])}function CM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M13.5 21v-7.5a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 .75.75V21m-4.5 0H2.36m11.14 0H18m0 0h3.64m-1.39 0V9.349M3.75 21V9.349m0 0a3.001 3.001 0 0 0 3.75-.615A2.993 2.993 0 0 0 9.75 9.75c.896 0 1.7-.393 2.25-1.016a2.993 2.993 0 0 0 2.25 1.016c.896 0 1.7-.393 2.25-1.015a3.001 3.001 0 0 0 3.75.614m-16.5 0a3.004 3.004 0 0 1-.621-4.72l1.189-1.19A1.5 1.5 0 0 1 5.378 3h13.243a1.5 1.5 0 0 1 1.06.44l1.19 1.189a3 3 0 0 1-.621 4.72M6.75 18h3.75a.75.75 0 0 0 .75-.75V13.5a.75.75 0 0 0-.75-.75H6.75a.75.75 0 0 0-.75.75v3.75c0 .414.336.75.75.75Z"})])}function MM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 8.25v-1.5m0 1.5c-1.355 0-2.697.056-4.024.166C6.845 8.51 6 9.473 6 10.608v2.513m6-4.871c1.355 0 2.697.056 4.024.166C17.155 8.51 18 9.473 18 10.608v2.513M15 8.25v-1.5m-6 1.5v-1.5m12 9.75-1.5.75a3.354 3.354 0 0 1-3 0 3.354 3.354 0 0 0-3 0 3.354 3.354 0 0 1-3 0 3.354 3.354 0 0 0-3 0 3.354 3.354 0 0 1-3 0L3 16.5m15-3.379a48.474 48.474 0 0 0-6-.371c-2.032 0-4.034.126-6 .371m12 0c.39.049.777.102 1.163.16 1.07.16 1.837 1.094 1.837 2.175v5.169c0 .621-.504 1.125-1.125 1.125H4.125A1.125 1.125 0 0 1 3 20.625v-5.17c0-1.08.768-2.014 1.837-2.174A47.78 47.78 0 0 1 6 13.12M12.265 3.11a.375.375 0 1 1-.53 0L12 2.845l.265.265Zm-3 0a.375.375 0 1 1-.53 0L9 2.845l.265.265Zm6 0a.375.375 0 1 1-.53 0L15 2.845l.265.265Z"})])}function VM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.75 15.75V18m-7.5-6.75h.008v.008H8.25v-.008Zm0 2.25h.008v.008H8.25V13.5Zm0 2.25h.008v.008H8.25v-.008Zm0 2.25h.008v.008H8.25V18Zm2.498-6.75h.007v.008h-.007v-.008Zm0 2.25h.007v.008h-.007V13.5Zm0 2.25h.007v.008h-.007v-.008Zm0 2.25h.007v.008h-.007V18Zm2.504-6.75h.008v.008h-.008v-.008Zm0 2.25h.008v.008h-.008V13.5Zm0 2.25h.008v.008h-.008v-.008Zm0 2.25h.008v.008h-.008V18Zm2.498-6.75h.008v.008h-.008v-.008Zm0 2.25h.008v.008h-.008V13.5ZM8.25 6h7.5v2.25h-7.5V6ZM12 2.25c-1.892 0-3.758.11-5.593.322C5.307 2.7 4.5 3.65 4.5 4.757V19.5a2.25 2.25 0 0 0 2.25 2.25h10.5a2.25 2.25 0 0 0 2.25-2.25V4.757c0-1.108-.806-2.057-1.907-2.185A48.507 48.507 0 0 0 12 2.25Z"})])}function AM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6.75 2.994v2.25m10.5-2.25v2.25m-14.252 13.5V7.491a2.25 2.25 0 0 1 2.25-2.25h13.5a2.25 2.25 0 0 1 2.25 2.25v11.251m-18 0a2.25 2.25 0 0 0 2.25 2.25h13.5a2.25 2.25 0 0 0 2.25-2.25m-18 0v-7.5a2.25 2.25 0 0 1 2.25-2.25h13.5a2.25 2.25 0 0 1 2.25 2.25v7.5m-6.75-6h2.25m-9 2.25h4.5m.002-2.25h.005v.006H12v-.006Zm-.001 4.5h.006v.006h-.006v-.005Zm-2.25.001h.005v.006H9.75v-.006Zm-2.25 0h.005v.005h-.006v-.005Zm6.75-2.247h.005v.005h-.005v-.005Zm0 2.247h.006v.006h-.006v-.006Zm2.25-2.248h.006V15H16.5v-.005Z"})])}function _M(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6.75 3v2.25M17.25 3v2.25M3 18.75V7.5a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 7.5v11.25m-18 0A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75m-18 0v-7.5A2.25 2.25 0 0 1 5.25 9h13.5A2.25 2.25 0 0 1 21 11.25v7.5m-9-6h.008v.008H12v-.008ZM12 15h.008v.008H12V15Zm0 2.25h.008v.008H12v-.008ZM9.75 15h.008v.008H9.75V15Zm0 2.25h.008v.008H9.75v-.008ZM7.5 15h.008v.008H7.5V15Zm0 2.25h.008v.008H7.5v-.008Zm6.75-4.5h.008v.008h-.008v-.008Zm0 2.25h.008v.008h-.008V15Zm0 2.25h.008v.008h-.008v-.008Zm2.25-4.5h.008v.008H16.5v-.008Zm0 2.25h.008v.008H16.5V15Z"})])}function NM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6.75 3v2.25M17.25 3v2.25M3 18.75V7.5a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 7.5v11.25m-18 0A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75m-18 0v-7.5A2.25 2.25 0 0 1 5.25 9h13.5A2.25 2.25 0 0 1 21 11.25v7.5"})])}function ZM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6.827 6.175A2.31 2.31 0 0 1 5.186 7.23c-.38.054-.757.112-1.134.175C2.999 7.58 2.25 8.507 2.25 9.574V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9.574c0-1.067-.75-1.994-1.802-2.169a47.865 47.865 0 0 0-1.134-.175 2.31 2.31 0 0 1-1.64-1.055l-.822-1.316a2.192 2.192 0 0 0-1.736-1.039 48.774 48.774 0 0 0-5.232 0 2.192 2.192 0 0 0-1.736 1.039l-.821 1.316Z"}),e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M16.5 12.75a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM18.75 10.5h.008v.008h-.008V10.5Z"})])}function SM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M7.5 14.25v2.25m3-4.5v4.5m3-6.75v6.75m3-9v9M6 20.25h12A2.25 2.25 0 0 0 20.25 18V6A2.25 2.25 0 0 0 18 3.75H6A2.25 2.25 0 0 0 3.75 6v12A2.25 2.25 0 0 0 6 20.25Z"})])}function $M(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3 13.125C3 12.504 3.504 12 4.125 12h2.25c.621 0 1.125.504 1.125 1.125v6.75C7.5 20.496 6.996 21 6.375 21h-2.25A1.125 1.125 0 0 1 3 19.875v-6.75ZM9.75 8.625c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125v11.25c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 0 1-1.125-1.125V8.625ZM16.5 4.125c0-.621.504-1.125 1.125-1.125h2.25C20.496 3 21 3.504 21 4.125v15.75c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 0 1-1.125-1.125V4.125Z"})])}function IM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M10.5 6a7.5 7.5 0 1 0 7.5 7.5h-7.5V6Z"}),e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M13.5 10.5H21A7.5 7.5 0 0 0 13.5 3v7.5Z"})])}function HM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M7.5 8.25h9m-9 3H12m-9.75 1.51c0 1.6 1.123 2.994 2.707 3.227 1.129.166 2.27.293 3.423.379.35.026.67.21.865.501L12 21l2.755-4.133a1.14 1.14 0 0 1 .865-.501 48.172 48.172 0 0 0 3.423-.379c1.584-.233 2.707-1.626 2.707-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.394 48.394 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741v6.018Z"})])}function TM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 12.76c0 1.6 1.123 2.994 2.707 3.227 1.068.157 2.148.279 3.238.364.466.037.893.281 1.153.671L12 21l2.652-3.978c.26-.39.687-.634 1.153-.67 1.09-.086 2.17-.208 3.238-.365 1.584-.233 2.707-1.626 2.707-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.394 48.394 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741v6.018Z"})])}function LM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M8.625 9.75a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0H8.25m4.125 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0H12m4.125 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0h-.375m-13.5 3.01c0 1.6 1.123 2.994 2.707 3.227 1.087.16 2.185.283 3.293.369V21l4.184-4.183a1.14 1.14 0 0 1 .778-.332 48.294 48.294 0 0 0 5.83-.498c1.585-.233 2.708-1.626 2.708-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.394 48.394 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741v6.018Z"})])}function DM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M20.25 8.511c.884.284 1.5 1.128 1.5 2.097v4.286c0 1.136-.847 2.1-1.98 2.193-.34.027-.68.052-1.02.072v3.091l-3-3c-1.354 0-2.694-.055-4.02-.163a2.115 2.115 0 0 1-.825-.242m9.345-8.334a2.126 2.126 0 0 0-.476-.095 48.64 48.64 0 0 0-8.048 0c-1.131.094-1.976 1.057-1.976 2.192v4.286c0 .837.46 1.58 1.155 1.951m9.345-8.334V6.637c0-1.621-1.152-3.026-2.76-3.235A48.455 48.455 0 0 0 11.25 3c-2.115 0-4.198.137-6.24.402-1.608.209-2.76 1.614-2.76 3.235v6.226c0 1.621 1.152 3.026 2.76 3.235.577.075 1.157.14 1.74.194V21l4.155-4.155"})])}function PM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 12.76c0 1.6 1.123 2.994 2.707 3.227 1.087.16 2.185.283 3.293.369V21l4.076-4.076a1.526 1.526 0 0 1 1.037-.443 48.282 48.282 0 0 0 5.68-.494c1.584-.233 2.707-1.626 2.707-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.394 48.394 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741v6.018Z"})])}function OM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M8.625 12a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0H8.25m4.125 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0H12m4.125 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0h-.375M21 12c0 4.556-4.03 8.25-9 8.25a9.764 9.764 0 0 1-2.555-.337A5.972 5.972 0 0 1 5.41 20.97a5.969 5.969 0 0 1-.474-.065 4.48 4.48 0 0 0 .978-2.025c.09-.457-.133-.901-.467-1.226C3.93 16.178 3 14.189 3 12c0-4.556 4.03-8.25 9-8.25s9 3.694 9 8.25Z"})])}function RM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 20.25c4.97 0 9-3.694 9-8.25s-4.03-8.25-9-8.25S3 7.444 3 12c0 2.104.859 4.023 2.273 5.48.432.447.74 1.04.586 1.641a4.483 4.483 0 0 1-.923 1.785A5.969 5.969 0 0 0 6 21c1.282 0 2.47-.402 3.445-1.087.81.22 1.668.337 2.555.337Z"})])}function zM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9 12.75 11.25 15 15 9.75M21 12c0 1.268-.63 2.39-1.593 3.068a3.745 3.745 0 0 1-1.043 3.296 3.745 3.745 0 0 1-3.296 1.043A3.745 3.745 0 0 1 12 21c-1.268 0-2.39-.63-3.068-1.593a3.746 3.746 0 0 1-3.296-1.043 3.745 3.745 0 0 1-1.043-3.296A3.745 3.745 0 0 1 3 12c0-1.268.63-2.39 1.593-3.068a3.745 3.745 0 0 1 1.043-3.296 3.746 3.746 0 0 1 3.296-1.043A3.746 3.746 0 0 1 12 3c1.268 0 2.39.63 3.068 1.593a3.746 3.746 0 0 1 3.296 1.043 3.746 3.746 0 0 1 1.043 3.296A3.745 3.745 0 0 1 21 12Z"})])}function jM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9 12.75 11.25 15 15 9.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function FM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m4.5 12.75 6 6 9-13.5"})])}function UM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m4.5 5.25 7.5 7.5 7.5-7.5m-15 6 7.5 7.5 7.5-7.5"})])}function WM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m18.75 4.5-7.5 7.5 7.5 7.5m-6-15L5.25 12l7.5 7.5"})])}function qM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m5.25 4.5 7.5 7.5-7.5 7.5m6-15 7.5 7.5-7.5 7.5"})])}function YM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m4.5 18.75 7.5-7.5 7.5 7.5"}),e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m4.5 12.75 7.5-7.5 7.5 7.5"})])}function KM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m19.5 8.25-7.5 7.5-7.5-7.5"})])}function GM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.75 19.5 8.25 12l7.5-7.5"})])}function JM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m8.25 4.5 7.5 7.5-7.5 7.5"})])}function XM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M8.25 15 12 18.75 15.75 15m-7.5-6L12 5.25 15.75 9"})])}function QM(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m4.5 15.75 7.5-7.5 7.5 7.5"})])}function eV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M20.25 6.375c0 2.278-3.694 4.125-8.25 4.125S3.75 8.653 3.75 6.375m16.5 0c0-2.278-3.694-4.125-8.25-4.125S3.75 4.097 3.75 6.375m16.5 0v11.25c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125V6.375m16.5 0v3.75m-16.5-3.75v3.75m16.5 0v3.75C20.25 16.153 16.556 18 12 18s-8.25-1.847-8.25-4.125v-3.75m16.5 0c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125"})])}function tV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M11.35 3.836c-.065.21-.1.433-.1.664 0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75 2.25 2.25 0 0 0-.1-.664m-5.8 0A2.251 2.251 0 0 1 13.5 2.25H15c1.012 0 1.867.668 2.15 1.586m-5.8 0c-.376.023-.75.05-1.124.08C9.095 4.01 8.25 4.973 8.25 6.108V8.25m8.9-4.414c.376.023.75.05 1.124.08 1.131.094 1.976 1.057 1.976 2.192V16.5A2.25 2.25 0 0 1 18 18.75h-2.25m-7.5-10.5H4.875c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V18.75m-7.5-10.5h6.375c.621 0 1.125.504 1.125 1.125v9.375m-8.25-3 1.5 1.5 3-3.75"})])}function nV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9 12h3.75M9 15h3.75M9 18h3.75m3 .75H18a2.25 2.25 0 0 0 2.25-2.25V6.108c0-1.135-.845-2.098-1.976-2.192a48.424 48.424 0 0 0-1.123-.08m-5.801 0c-.065.21-.1.433-.1.664 0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75 2.25 2.25 0 0 0-.1-.664m-5.8 0A2.251 2.251 0 0 1 13.5 2.25H15c1.012 0 1.867.668 2.15 1.586m-5.8 0c-.376.023-.75.05-1.124.08C9.095 4.01 8.25 4.973 8.25 6.108V8.25m0 0H4.875c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V9.375c0-.621-.504-1.125-1.125-1.125H8.25ZM6.75 12h.008v.008H6.75V12Zm0 3h.008v.008H6.75V15Zm0 3h.008v.008H6.75V18Z"})])}function rV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M8.25 7.5V6.108c0-1.135.845-2.098 1.976-2.192.373-.03.748-.057 1.123-.08M15.75 18H18a2.25 2.25 0 0 0 2.25-2.25V6.108c0-1.135-.845-2.098-1.976-2.192a48.424 48.424 0 0 0-1.123-.08M15.75 18.75v-1.875a3.375 3.375 0 0 0-3.375-3.375h-1.5a1.125 1.125 0 0 1-1.125-1.125v-1.5A3.375 3.375 0 0 0 6.375 7.5H5.25m11.9-3.664A2.251 2.251 0 0 0 15 2.25h-1.5a2.251 2.251 0 0 0-2.15 1.586m5.8 0c.065.21.1.433.1.664v.75h-6V4.5c0-.231.035-.454.1-.664M6.75 7.5H4.875c-.621 0-1.125.504-1.125 1.125v12c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V16.5a9 9 0 0 0-9-9Z"})])}function oV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.666 3.888A2.25 2.25 0 0 0 13.5 2.25h-3c-1.03 0-1.9.693-2.166 1.638m7.332 0c.055.194.084.4.084.612v0a.75.75 0 0 1-.75.75H9a.75.75 0 0 1-.75-.75v0c0-.212.03-.418.084-.612m7.332 0c.646.049 1.288.11 1.927.184 1.1.128 1.907 1.077 1.907 2.185V19.5a2.25 2.25 0 0 1-2.25 2.25H6.75A2.25 2.25 0 0 1 4.5 19.5V6.257c0-1.108.806-2.057 1.907-2.185a48.208 48.208 0 0 1 1.927-.184"})])}function aV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 6v6h4.5m4.5 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function lV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 9.75v6.75m0 0-3-3m3 3 3-3m-8.25 6a4.5 4.5 0 0 1-1.41-8.775 5.25 5.25 0 0 1 10.233-2.33 3 3 0 0 1 3.758 3.848A3.752 3.752 0 0 1 18 19.5H6.75Z"})])}function iV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 16.5V9.75m0 0 3 3m-3-3-3 3M6.75 19.5a4.5 4.5 0 0 1-1.41-8.775 5.25 5.25 0 0 1 10.233-2.33 3 3 0 0 1 3.758 3.848A3.752 3.752 0 0 1 18 19.5H6.75Z"})])}function cV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 15a4.5 4.5 0 0 0 4.5 4.5H18a3.75 3.75 0 0 0 1.332-7.257 3 3 0 0 0-3.758-3.848 5.25 5.25 0 0 0-10.233 2.33A4.502 4.502 0 0 0 2.25 15Z"})])}function sV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M14.25 9.75 16.5 12l-2.25 2.25m-4.5 0L7.5 12l2.25-2.25M6 20.25h12A2.25 2.25 0 0 0 20.25 18V6A2.25 2.25 0 0 0 18 3.75H6A2.25 2.25 0 0 0 3.75 6v12A2.25 2.25 0 0 0 6 20.25Z"})])}function dV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M17.25 6.75 22.5 12l-5.25 5.25m-10.5 0L1.5 12l5.25-5.25m7.5-3-4.5 16.5"})])}function uV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9.594 3.94c.09-.542.56-.94 1.11-.94h2.593c.55 0 1.02.398 1.11.94l.213 1.281c.063.374.313.686.645.87.074.04.147.083.22.127.325.196.72.257 1.075.124l1.217-.456a1.125 1.125 0 0 1 1.37.49l1.296 2.247a1.125 1.125 0 0 1-.26 1.431l-1.003.827c-.293.241-.438.613-.43.992a7.723 7.723 0 0 1 0 .255c-.008.378.137.75.43.991l1.004.827c.424.35.534.955.26 1.43l-1.298 2.247a1.125 1.125 0 0 1-1.369.491l-1.217-.456c-.355-.133-.75-.072-1.076.124a6.47 6.47 0 0 1-.22.128c-.331.183-.581.495-.644.869l-.213 1.281c-.09.543-.56.94-1.11.94h-2.594c-.55 0-1.019-.398-1.11-.94l-.213-1.281c-.062-.374-.312-.686-.644-.87a6.52 6.52 0 0 1-.22-.127c-.325-.196-.72-.257-1.076-.124l-1.217.456a1.125 1.125 0 0 1-1.369-.49l-1.297-2.247a1.125 1.125 0 0 1 .26-1.431l1.004-.827c.292-.24.437-.613.43-.991a6.932 6.932 0 0 1 0-.255c.007-.38-.138-.751-.43-.992l-1.004-.827a1.125 1.125 0 0 1-.26-1.43l1.297-2.247a1.125 1.125 0 0 1 1.37-.491l1.216.456c.356.133.751.072 1.076-.124.072-.044.146-.086.22-.128.332-.183.582-.495.644-.869l.214-1.28Z"}),e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"})])}function hV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M10.343 3.94c.09-.542.56-.94 1.11-.94h1.093c.55 0 1.02.398 1.11.94l.149.894c.07.424.384.764.78.93.398.164.855.142 1.205-.108l.737-.527a1.125 1.125 0 0 1 1.45.12l.773.774c.39.389.44 1.002.12 1.45l-.527.737c-.25.35-.272.806-.107 1.204.165.397.505.71.93.78l.893.15c.543.09.94.559.94 1.109v1.094c0 .55-.397 1.02-.94 1.11l-.894.149c-.424.07-.764.383-.929.78-.165.398-.143.854.107 1.204l.527.738c.32.447.269 1.06-.12 1.45l-.774.773a1.125 1.125 0 0 1-1.449.12l-.738-.527c-.35-.25-.806-.272-1.203-.107-.398.165-.71.505-.781.929l-.149.894c-.09.542-.56.94-1.11.94h-1.094c-.55 0-1.019-.398-1.11-.94l-.148-.894c-.071-.424-.384-.764-.781-.93-.398-.164-.854-.142-1.204.108l-.738.527c-.447.32-1.06.269-1.45-.12l-.773-.774a1.125 1.125 0 0 1-.12-1.45l.527-.737c.25-.35.272-.806.108-1.204-.165-.397-.506-.71-.93-.78l-.894-.15c-.542-.09-.94-.56-.94-1.109v-1.094c0-.55.398-1.02.94-1.11l.894-.149c.424-.07.765-.383.93-.78.165-.398.143-.854-.108-1.204l-.526-.738a1.125 1.125 0 0 1 .12-1.45l.773-.773a1.125 1.125 0 0 1 1.45-.12l.737.527c.35.25.807.272 1.204.107.397-.165.71-.505.78-.929l.15-.894Z"}),e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"})])}function pV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M4.5 12a7.5 7.5 0 0 0 15 0m-15 0a7.5 7.5 0 1 1 15 0m-15 0H3m16.5 0H21m-1.5 0H12m-8.457 3.077 1.41-.513m14.095-5.13 1.41-.513M5.106 17.785l1.15-.964m11.49-9.642 1.149-.964M7.501 19.795l.75-1.3m7.5-12.99.75-1.3m-6.063 16.658.26-1.477m2.605-14.772.26-1.477m0 17.726-.26-1.477M10.698 4.614l-.26-1.477M16.5 19.794l-.75-1.299M7.5 4.205 12 12m6.894 5.785-1.149-.964M6.256 7.178l-1.15-.964m15.352 8.864-1.41-.513M4.954 9.435l-1.41-.514M12.002 12l-3.75 6.495"})])}function fV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m6.75 7.5 3 2.25-3 2.25m4.5 0h3m-9 8.25h13.5A2.25 2.25 0 0 0 21 18V6a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 6v12a2.25 2.25 0 0 0 2.25 2.25Z"})])}function mV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9 17.25v1.007a3 3 0 0 1-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0 1 15 18.257V17.25m6-12V15a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 15V5.25m18 0A2.25 2.25 0 0 0 18.75 3H5.25A2.25 2.25 0 0 0 3 5.25m18 0V12a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 12V5.25"})])}function wV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M8.25 3v1.5M4.5 8.25H3m18 0h-1.5M4.5 12H3m18 0h-1.5m-15 3.75H3m18 0h-1.5M8.25 19.5V21M12 3v1.5m0 15V21m3.75-18v1.5m0 15V21m-9-1.5h10.5a2.25 2.25 0 0 0 2.25-2.25V6.75a2.25 2.25 0 0 0-2.25-2.25H6.75A2.25 2.25 0 0 0 4.5 6.75v10.5a2.25 2.25 0 0 0 2.25 2.25Zm.75-12h9v9h-9v-9Z"})])}function gV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 8.25h19.5M2.25 9h19.5m-16.5 5.25h6m-6 2.25h3m-3.75 3h15a2.25 2.25 0 0 0 2.25-2.25V6.75A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25v10.5A2.25 2.25 0 0 0 4.5 19.5Z"})])}function kV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m21 7.5-2.25-1.313M21 7.5v2.25m0-2.25-2.25 1.313M3 7.5l2.25-1.313M3 7.5l2.25 1.313M3 7.5v2.25m9 3 2.25-1.313M12 12.75l-2.25-1.313M12 12.75V15m0 6.75 2.25-1.313M12 21.75V19.5m0 2.25-2.25-1.313m0-16.875L12 2.25l2.25 1.313M21 14.25v2.25l-2.25 1.313m-13.5 0L3 16.5v-2.25"})])}function xV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m21 7.5-9-5.25L3 7.5m18 0-9 5.25m9-5.25v9l-9 5.25M3 7.5l9 5.25M3 7.5v9l9 5.25m0-9v9"})])}function vV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m8.25 7.5.415-.207a.75.75 0 0 1 1.085.67V10.5m0 0h6m-6 0h-1.5m1.5 0v5.438c0 .354.161.697.473.865a3.751 3.751 0 0 0 5.452-2.553c.083-.409-.263-.75-.68-.75h-.745M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function yV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 6v12m-3-2.818.879.659c1.171.879 3.07.879 4.242 0 1.172-.879 1.172-2.303 0-3.182C13.536 12.219 12.768 12 12 12c-.725 0-1.45-.22-2.003-.659-1.106-.879-1.106-2.303 0-3.182s2.9-.879 4.006 0l.415.33M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function BV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M14.25 7.756a4.5 4.5 0 1 0 0 8.488M7.5 10.5h5.25m-5.25 3h5.25M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function EV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M14.121 7.629A3 3 0 0 0 9.017 9.43c-.023.212-.002.425.028.636l.506 3.541a4.5 4.5 0 0 1-.43 2.65L9 16.5l1.539-.513a2.25 2.25 0 0 1 1.422 0l.655.218a2.25 2.25 0 0 0 1.718-.122L15 15.75M8.25 12H12m9 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function bV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15 8.25H9m6 3H9m3 6-3-3h1.5a3 3 0 1 0 0-6M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function CV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m9 7.5 3 4.5m0 0 3-4.5M12 12v5.25M15 12H9m6 3H9m12-3a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function MV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.042 21.672 13.684 16.6m0 0-2.51 2.225.569-9.47 5.227 7.917-3.286-.672ZM12 2.25V4.5m5.834.166-1.591 1.591M20.25 10.5H18M7.757 14.743l-1.59 1.59M6 10.5H3.75m4.007-4.243-1.59-1.59"})])}function VV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.042 21.672 13.684 16.6m0 0-2.51 2.225.569-9.47 5.227 7.917-3.286-.672Zm-7.518-.267A8.25 8.25 0 1 1 20.25 10.5M8.288 14.212A5.25 5.25 0 1 1 17.25 10.5"})])}function AV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M10.5 1.5H8.25A2.25 2.25 0 0 0 6 3.75v16.5a2.25 2.25 0 0 0 2.25 2.25h7.5A2.25 2.25 0 0 0 18 20.25V3.75a2.25 2.25 0 0 0-2.25-2.25H13.5m-3 0V3h3V1.5m-3 0h3m-3 18.75h3"})])}function _V(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M10.5 19.5h3m-6.75 2.25h10.5a2.25 2.25 0 0 0 2.25-2.25v-15a2.25 2.25 0 0 0-2.25-2.25H6.75A2.25 2.25 0 0 0 4.5 4.5v15a2.25 2.25 0 0 0 2.25 2.25Z"})])}function NV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M4.499 11.998h15m-7.5-6.75h.008v.008h-.008v-.008Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0ZM12 18.751h.007v.007H12v-.007Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z"})])}function ZV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m.75 12 3 3m0 0 3-3m-3 3v-6m-1.5-9H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"})])}function SV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m6.75 12-3-3m0 0-3 3m3-3v6m-1.5-15H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"})])}function $V(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25M9 16.5v.75m3-3v3M15 12v5.25m-4.5-15H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"})])}function IV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M10.125 2.25h-4.5c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125v-9M10.125 2.25h.375a9 9 0 0 1 9 9v.375M10.125 2.25A3.375 3.375 0 0 1 13.5 5.625v1.5c0 .621.504 1.125 1.125 1.125h1.5a3.375 3.375 0 0 1 3.375 3.375M9 15l2.25 2.25L15 12"})])}function HV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m0 8.25.22-.22a.75.75 0 0 1 1.28.53v6.441c0 .472.214.934.64 1.137a3.75 3.75 0 0 0 4.994-1.77c.205-.428-.152-.868-.627-.868h-.507m-6-2.25h7.5M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"})])}function TV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m3.75 9v7.5m2.25-6.466a9.016 9.016 0 0 0-3.461-.203c-.536.072-.974.478-1.021 1.017a4.559 4.559 0 0 0-.018.402c0 .464.336.844.775.994l2.95 1.012c.44.15.775.53.775.994 0 .136-.006.27-.018.402-.047.539-.485.945-1.021 1.017a9.077 9.077 0 0 1-3.461-.203M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"})])}function LV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m0 11.625h4.5m-4.5 2.25h4.5m2.121 1.527c-1.171 1.464-3.07 1.464-4.242 0-1.172-1.465-1.172-3.84 0-5.304 1.171-1.464 3.07-1.464 4.242 0M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"})])}function DV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m6.621 9.879a3 3 0 0 0-5.02 2.897l.164.609a4.5 4.5 0 0 1-.108 2.676l-.157.439.44-.22a2.863 2.863 0 0 1 2.185-.155c.72.24 1.507.184 2.186-.155L15 18M8.25 15.75H12m-1.5-13.5H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"})])}function PV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m2.25 9h3.75m-4.5 2.625h4.5M12 18.75 9.75 16.5h.375a2.625 2.625 0 0 0 0-5.25H9.75m.75-9H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"})])}function OV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m1.5 9 2.25 3m0 0 2.25-3m-2.25 3v4.5M9.75 15h4.5m-4.5 2.25h4.5m-3.75-15H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"})])}function RV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.75 17.25v3.375c0 .621-.504 1.125-1.125 1.125h-9.75a1.125 1.125 0 0 1-1.125-1.125V7.875c0-.621.504-1.125 1.125-1.125H6.75a9.06 9.06 0 0 1 1.5.124m7.5 10.376h3.375c.621 0 1.125-.504 1.125-1.125V11.25c0-4.46-3.243-8.161-7.5-8.876a9.06 9.06 0 0 0-1.5-.124H9.375c-.621 0-1.125.504-1.125 1.125v3.5m7.5 10.375H9.375a1.125 1.125 0 0 1-1.125-1.125v-9.25m12 6.625v-1.875a3.375 3.375 0 0 0-3.375-3.375h-1.5a1.125 1.125 0 0 1-1.125-1.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H9.75"})])}function zV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m5.231 13.481L15 17.25m-4.5-15H5.625c-.621 0-1.125.504-1.125 1.125v16.5c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Zm3.75 11.625a2.625 2.625 0 1 1-5.25 0 2.625 2.625 0 0 1 5.25 0Z"})])}function jV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m6.75 12H9m1.5-12H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"})])}function FV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m3.75 9v6m3-3H9m1.5-12H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"})])}function UV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m0 12.75h7.5m-7.5 3H12M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"})])}function WV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m2.25 0H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"})])}function qV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M8.625 12a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0H8.25m4.125 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0H12m4.125 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0h-.375M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function YV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6.75 12a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM12.75 12a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM18.75 12a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z"})])}function KV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 6.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5ZM12 12.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5ZM12 18.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Z"})])}function GV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21.75 9v.906a2.25 2.25 0 0 1-1.183 1.981l-6.478 3.488M2.25 9v.906a2.25 2.25 0 0 0 1.183 1.981l6.478 3.488m8.839 2.51-4.66-2.51m0 0-1.023-.55a2.25 2.25 0 0 0-2.134 0l-1.022.55m0 0-4.661 2.51m16.5 1.615a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V8.844a2.25 2.25 0 0 1 1.183-1.981l7.5-4.039a2.25 2.25 0 0 1 2.134 0l7.5 4.039a2.25 2.25 0 0 1 1.183 1.98V19.5Z"})])}function JV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21.75 6.75v10.5a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25m19.5 0v.243a2.25 2.25 0 0 1-1.07 1.916l-7.5 4.615a2.25 2.25 0 0 1-2.36 0L3.32 8.91a2.25 2.25 0 0 1-1.07-1.916V6.75"})])}function XV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M4.499 8.248h15m-15 7.501h15"})])}function QV(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 9v3.75m9-.75a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9 3.75h.008v.008H12v-.008Z"})])}function eA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0L2.697 16.126ZM12 15.75h.007v.008H12v-.008Z"})])}function tA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m15 11.25 1.5 1.5.75-.75V8.758l2.276-.61a3 3 0 1 0-3.675-3.675l-.61 2.277H12l-.75.75 1.5 1.5M15 11.25l-8.47 8.47c-.34.34-.8.53-1.28.53s-.94.19-1.28.53l-.97.97-.75-.75.97-.97c.34-.34.53-.8.53-1.28s.19-.94.53-1.28L12.75 9M15 11.25 12.75 9"})])}function nA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.98 8.223A10.477 10.477 0 0 0 1.934 12C3.226 16.338 7.244 19.5 12 19.5c.993 0 1.953-.138 2.863-.395M6.228 6.228A10.451 10.451 0 0 1 12 4.5c4.756 0 8.773 3.162 10.065 7.498a10.522 10.522 0 0 1-4.293 5.774M6.228 6.228 3 3m3.228 3.228 3.65 3.65m7.894 7.894L21 21m-3.228-3.228-3.65-3.65m0 0a3 3 0 1 0-4.243-4.243m4.242 4.242L9.88 9.88"})])}function rA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.036 12.322a1.012 1.012 0 0 1 0-.639C3.423 7.51 7.36 4.5 12 4.5c4.638 0 8.573 3.007 9.963 7.178.07.207.07.431 0 .639C20.577 16.49 16.64 19.5 12 19.5c-4.638 0-8.573-3.007-9.963-7.178Z"}),e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"})])}function oA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.182 16.318A4.486 4.486 0 0 0 12.016 15a4.486 4.486 0 0 0-3.198 1.318M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0ZM9.75 9.75c0 .414-.168.75-.375.75S9 10.164 9 9.75 9.168 9 9.375 9s.375.336.375.75Zm-.375 0h.008v.015h-.008V9.75Zm5.625 0c0 .414-.168.75-.375.75s-.375-.336-.375-.75.168-.75.375-.75.375.336.375.75Zm-.375 0h.008v.015h-.008V9.75Z"})])}function aA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.182 15.182a4.5 4.5 0 0 1-6.364 0M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0ZM9.75 9.75c0 .414-.168.75-.375.75S9 10.164 9 9.75 9.168 9 9.375 9s.375.336.375.75Zm-.375 0h.008v.015h-.008V9.75Zm5.625 0c0 .414-.168.75-.375.75s-.375-.336-.375-.75.168-.75.375-.75.375.336.375.75Zm-.375 0h.008v.015h-.008V9.75Z"})])}function lA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.375 19.5h17.25m-17.25 0a1.125 1.125 0 0 1-1.125-1.125M3.375 19.5h1.5C5.496 19.5 6 18.996 6 18.375m-3.75 0V5.625m0 12.75v-1.5c0-.621.504-1.125 1.125-1.125m18.375 2.625V5.625m0 12.75c0 .621-.504 1.125-1.125 1.125m1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125m0 3.75h-1.5A1.125 1.125 0 0 1 18 18.375M20.625 4.5H3.375m17.25 0c.621 0 1.125.504 1.125 1.125M20.625 4.5h-1.5C18.504 4.5 18 5.004 18 5.625m3.75 0v1.5c0 .621-.504 1.125-1.125 1.125M3.375 4.5c-.621 0-1.125.504-1.125 1.125M3.375 4.5h1.5C5.496 4.5 6 5.004 6 5.625m-3.75 0v1.5c0 .621.504 1.125 1.125 1.125m0 0h1.5m-1.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125m1.5-3.75C5.496 8.25 6 7.746 6 7.125v-1.5M4.875 8.25C5.496 8.25 6 8.754 6 9.375v1.5m0-5.25v5.25m0-5.25C6 5.004 6.504 4.5 7.125 4.5h9.75c.621 0 1.125.504 1.125 1.125m1.125 2.625h1.5m-1.5 0A1.125 1.125 0 0 1 18 7.125v-1.5m1.125 2.625c-.621 0-1.125.504-1.125 1.125v1.5m2.625-2.625c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125M18 5.625v5.25M7.125 12h9.75m-9.75 0A1.125 1.125 0 0 1 6 10.875M7.125 12C6.504 12 6 12.504 6 13.125m0-2.25C6 11.496 5.496 12 4.875 12M18 10.875c0 .621-.504 1.125-1.125 1.125M18 10.875c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125m-12 5.25v-5.25m0 5.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125m-12 0v-1.5c0-.621-.504-1.125-1.125-1.125M18 18.375v-5.25m0 5.25v-1.5c0-.621.504-1.125 1.125-1.125M18 13.125v1.5c0 .621.504 1.125 1.125 1.125M18 13.125c0-.621.504-1.125 1.125-1.125M6 13.125v1.5c0 .621-.504 1.125-1.125 1.125M6 13.125C6 12.504 5.496 12 4.875 12m-1.5 0h1.5m-1.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125M19.125 12h1.5m0 0c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h1.5m14.25 0h1.5"})])}function iA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M7.864 4.243A7.5 7.5 0 0 1 19.5 10.5c0 2.92-.556 5.709-1.568 8.268M5.742 6.364A7.465 7.465 0 0 0 4.5 10.5a7.464 7.464 0 0 1-1.15 3.993m1.989 3.559A11.209 11.209 0 0 0 8.25 10.5a3.75 3.75 0 1 1 7.5 0c0 .527-.021 1.049-.064 1.565M12 10.5a14.94 14.94 0 0 1-3.6 9.75m6.633-4.596a18.666 18.666 0 0 1-2.485 5.33"})])}function cA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.362 5.214A8.252 8.252 0 0 1 12 21 8.25 8.25 0 0 1 6.038 7.047 8.287 8.287 0 0 0 9 9.601a8.983 8.983 0 0 1 3.361-6.867 8.21 8.21 0 0 0 3 2.48Z"}),e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 18a3.75 3.75 0 0 0 .495-7.468 5.99 5.99 0 0 0-1.925 3.547 5.975 5.975 0 0 1-2.133-1.001A3.75 3.75 0 0 0 12 18Z"})])}function sA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3 3v1.5M3 21v-6m0 0 2.77-.693a9 9 0 0 1 6.208.682l.108.054a9 9 0 0 0 6.086.71l3.114-.732a48.524 48.524 0 0 1-.005-10.499l-3.11.732a9 9 0 0 1-6.085-.711l-.108-.054a9 9 0 0 0-6.208-.682L3 4.5M3 15V4.5"})])}function dA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m9 13.5 3 3m0 0 3-3m-3 3v-6m1.06-4.19-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44Z"})])}function uA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15 13.5H9m4.06-7.19-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44Z"})])}function hA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.75 9.776c.112-.017.227-.026.344-.026h15.812c.117 0 .232.009.344.026m-16.5 0a2.25 2.25 0 0 0-1.883 2.542l.857 6a2.25 2.25 0 0 0 2.227 1.932H19.05a2.25 2.25 0 0 0 2.227-1.932l.857-6a2.25 2.25 0 0 0-1.883-2.542m-16.5 0V6A2.25 2.25 0 0 1 6 3.75h3.879a1.5 1.5 0 0 1 1.06.44l2.122 2.12a1.5 1.5 0 0 0 1.06.44H18A2.25 2.25 0 0 1 20.25 9v.776"})])}function pA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 10.5v6m3-3H9m4.06-7.19-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44Z"})])}function fA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 12.75V12A2.25 2.25 0 0 1 4.5 9.75h15A2.25 2.25 0 0 1 21.75 12v.75m-8.69-6.44-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44Z"})])}function mA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3 8.689c0-.864.933-1.406 1.683-.977l7.108 4.061a1.125 1.125 0 0 1 0 1.954l-7.108 4.061A1.125 1.125 0 0 1 3 16.811V8.69ZM12.75 8.689c0-.864.933-1.406 1.683-.977l7.108 4.061a1.125 1.125 0 0 1 0 1.954l-7.108 4.061a1.125 1.125 0 0 1-1.683-.977V8.69Z"})])}function wA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 3c2.755 0 5.455.232 8.083.678.533.09.917.556.917 1.096v1.044a2.25 2.25 0 0 1-.659 1.591l-5.432 5.432a2.25 2.25 0 0 0-.659 1.591v2.927a2.25 2.25 0 0 1-1.244 2.013L9.75 21v-6.568a2.25 2.25 0 0 0-.659-1.591L3.659 7.409A2.25 2.25 0 0 1 3 5.818V4.774c0-.54.384-1.006.917-1.096A48.32 48.32 0 0 1 12 3Z"})])}function gA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12.75 8.25v7.5m6-7.5h-3V12m0 0v3.75m0-3.75H18M9.75 9.348c-1.03-1.464-2.698-1.464-3.728 0-1.03 1.465-1.03 3.84 0 5.304 1.03 1.464 2.699 1.464 3.728 0V12h-1.5M4.5 19.5h15a2.25 2.25 0 0 0 2.25-2.25V6.75A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25v10.5A2.25 2.25 0 0 0 4.5 19.5Z"})])}function kA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 3.75v16.5M2.25 12h19.5M6.375 17.25a4.875 4.875 0 0 0 4.875-4.875V12m6.375 5.25a4.875 4.875 0 0 1-4.875-4.875V12m-9 8.25h16.5a1.5 1.5 0 0 0 1.5-1.5V5.25a1.5 1.5 0 0 0-1.5-1.5H3.75a1.5 1.5 0 0 0-1.5 1.5v13.5a1.5 1.5 0 0 0 1.5 1.5Zm12.621-9.44c-1.409 1.41-4.242 1.061-4.242 1.061s-.349-2.833 1.06-4.242a2.25 2.25 0 0 1 3.182 3.182ZM10.773 7.63c1.409 1.409 1.06 4.242 1.06 4.242S9 12.22 7.592 10.811a2.25 2.25 0 1 1 3.182-3.182Z"})])}function xA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21 11.25v8.25a1.5 1.5 0 0 1-1.5 1.5H5.25a1.5 1.5 0 0 1-1.5-1.5v-8.25M12 4.875A2.625 2.625 0 1 0 9.375 7.5H12m0-2.625V7.5m0-2.625A2.625 2.625 0 1 1 14.625 7.5H12m0 0V21m-8.625-9.75h18c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125h-18c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125Z"})])}function vA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 21a9.004 9.004 0 0 0 8.716-6.747M12 21a9.004 9.004 0 0 1-8.716-6.747M12 21c2.485 0 4.5-4.03 4.5-9S14.485 3 12 3m0 18c-2.485 0-4.5-4.03-4.5-9S9.515 3 12 3m0 0a8.997 8.997 0 0 1 7.843 4.582M12 3a8.997 8.997 0 0 0-7.843 4.582m15.686 0A11.953 11.953 0 0 1 12 10.5c-2.998 0-5.74-1.1-7.843-2.918m15.686 0A8.959 8.959 0 0 1 21 12c0 .778-.099 1.533-.284 2.253m0 0A17.919 17.919 0 0 1 12 16.5c-3.162 0-6.133-.815-8.716-2.247m0 0A9.015 9.015 0 0 1 3 12c0-1.605.42-3.113 1.157-4.418"})])}function yA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m6.115 5.19.319 1.913A6 6 0 0 0 8.11 10.36L9.75 12l-.387.775c-.217.433-.132.956.21 1.298l1.348 1.348c.21.21.329.497.329.795v1.089c0 .426.24.815.622 1.006l.153.076c.433.217.956.132 1.298-.21l.723-.723a8.7 8.7 0 0 0 2.288-4.042 1.087 1.087 0 0 0-.358-1.099l-1.33-1.108c-.251-.21-.582-.299-.905-.245l-1.17.195a1.125 1.125 0 0 1-.98-.314l-.295-.295a1.125 1.125 0 0 1 0-1.591l.13-.132a1.125 1.125 0 0 1 1.3-.21l.603.302a.809.809 0 0 0 1.086-1.086L14.25 7.5l1.256-.837a4.5 4.5 0 0 0 1.528-1.732l.146-.292M6.115 5.19A9 9 0 1 0 17.18 4.64M6.115 5.19A8.965 8.965 0 0 1 12 3c1.929 0 3.716.607 5.18 1.64"})])}function BA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12.75 3.03v.568c0 .334.148.65.405.864l1.068.89c.442.369.535 1.01.216 1.49l-.51.766a2.25 2.25 0 0 1-1.161.886l-.143.048a1.107 1.107 0 0 0-.57 1.664c.369.555.169 1.307-.427 1.605L9 13.125l.423 1.059a.956.956 0 0 1-1.652.928l-.679-.906a1.125 1.125 0 0 0-1.906.172L4.5 15.75l-.612.153M12.75 3.031a9 9 0 0 0-8.862 12.872M12.75 3.031a9 9 0 0 1 6.69 14.036m0 0-.177-.529A2.25 2.25 0 0 0 17.128 15H16.5l-.324-.324a1.453 1.453 0 0 0-2.328.377l-.036.073a1.586 1.586 0 0 1-.982.816l-.99.282c-.55.157-.894.702-.8 1.267l.073.438c.08.474.49.821.97.821.846 0 1.598.542 1.865 1.345l.215.643m5.276-3.67a9.012 9.012 0 0 1-5.276 3.67m0 0a9 9 0 0 1-10.275-4.835M15.75 9c0 .896-.393 1.7-1.016 2.25"})])}function EA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m20.893 13.393-1.135-1.135a2.252 2.252 0 0 1-.421-.585l-1.08-2.16a.414.414 0 0 0-.663-.107.827.827 0 0 1-.812.21l-1.273-.363a.89.89 0 0 0-.738 1.595l.587.39c.59.395.674 1.23.172 1.732l-.2.2c-.212.212-.33.498-.33.796v.41c0 .409-.11.809-.32 1.158l-1.315 2.191a2.11 2.11 0 0 1-1.81 1.025 1.055 1.055 0 0 1-1.055-1.055v-1.172c0-.92-.56-1.747-1.414-2.089l-.655-.261a2.25 2.25 0 0 1-1.383-2.46l.007-.042a2.25 2.25 0 0 1 .29-.787l.09-.15a2.25 2.25 0 0 1 2.37-1.048l1.178.236a1.125 1.125 0 0 0 1.302-.795l.208-.73a1.125 1.125 0 0 0-.578-1.315l-.665-.332-.091.091a2.25 2.25 0 0 1-1.591.659h-.18c-.249 0-.487.1-.662.274a.931.931 0 0 1-1.458-1.137l1.411-2.353a2.25 2.25 0 0 0 .286-.76m11.928 9.869A9 9 0 0 0 8.965 3.525m11.928 9.868A9 9 0 1 1 8.965 3.525"})])}function bA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.243 4.493v7.5m0 0v7.502m0-7.501h10.5m0-7.5v7.5m0 0v7.501m4.501-8.627 2.25-1.5v10.126m0 0h-2.25m2.25 0h2.25"})])}function CA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21.75 19.5H16.5v-1.609a2.25 2.25 0 0 1 1.244-2.012l2.89-1.445c.651-.326 1.116-.955 1.116-1.683 0-.498-.04-.987-.118-1.463-.135-.825-.835-1.422-1.668-1.489a15.202 15.202 0 0 0-3.464.12M2.243 4.492v7.5m0 0v7.502m0-7.501h10.5m0-7.5v7.5m0 0v7.501"})])}function MA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M20.905 14.626a4.52 4.52 0 0 1 .738 3.603c-.154.695-.794 1.143-1.504 1.208a15.194 15.194 0 0 1-3.639-.104m4.405-4.707a4.52 4.52 0 0 0 .738-3.603c-.154-.696-.794-1.144-1.504-1.209a15.19 15.19 0 0 0-3.639.104m4.405 4.708H18M2.243 4.493v7.5m0 0v7.502m0-7.501h10.5m0-7.5v7.5m0 0v7.501"})])}function VA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M10.05 4.575a1.575 1.575 0 1 0-3.15 0v3m3.15-3v-1.5a1.575 1.575 0 0 1 3.15 0v1.5m-3.15 0 .075 5.925m3.075.75V4.575m0 0a1.575 1.575 0 0 1 3.15 0V15M6.9 7.575a1.575 1.575 0 1 0-3.15 0v8.175a6.75 6.75 0 0 0 6.75 6.75h2.018a5.25 5.25 0 0 0 3.712-1.538l1.732-1.732a5.25 5.25 0 0 0 1.538-3.712l.003-2.024a.668.668 0 0 1 .198-.471 1.575 1.575 0 1 0-2.228-2.228 3.818 3.818 0 0 0-1.12 2.687M6.9 7.575V12m6.27 4.318A4.49 4.49 0 0 1 16.35 15m.002 0h-.002"})])}function AA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M7.498 15.25H4.372c-1.026 0-1.945-.694-2.054-1.715a12.137 12.137 0 0 1-.068-1.285c0-2.848.992-5.464 2.649-7.521C5.287 4.247 5.886 4 6.504 4h4.016a4.5 4.5 0 0 1 1.423.23l3.114 1.04a4.5 4.5 0 0 0 1.423.23h1.294M7.498 15.25c.618 0 .991.724.725 1.282A7.471 7.471 0 0 0 7.5 19.75 2.25 2.25 0 0 0 9.75 22a.75.75 0 0 0 .75-.75v-.633c0-.573.11-1.14.322-1.672.304-.76.93-1.33 1.653-1.715a9.04 9.04 0 0 0 2.86-2.4c.498-.634 1.226-1.08 2.032-1.08h.384m-10.253 1.5H9.7m8.075-9.75c.01.05.027.1.05.148.593 1.2.925 2.55.925 3.977 0 1.487-.36 2.89-.999 4.125m.023-8.25c-.076-.365.183-.75.575-.75h.908c.889 0 1.713.518 1.972 1.368.339 1.11.521 2.287.521 3.507 0 1.553-.295 3.036-.831 4.398-.306.774-1.086 1.227-1.918 1.227h-1.053c-.472 0-.745-.556-.5-.96a8.95 8.95 0 0 0 .303-.54"})])}function _A(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6.633 10.25c.806 0 1.533-.446 2.031-1.08a9.041 9.041 0 0 1 2.861-2.4c.723-.384 1.35-.956 1.653-1.715a4.498 4.498 0 0 0 .322-1.672V2.75a.75.75 0 0 1 .75-.75 2.25 2.25 0 0 1 2.25 2.25c0 1.152-.26 2.243-.723 3.218-.266.558.107 1.282.725 1.282m0 0h3.126c1.026 0 1.945.694 2.054 1.715.045.422.068.85.068 1.285a11.95 11.95 0 0 1-2.649 7.521c-.388.482-.987.729-1.605.729H13.48c-.483 0-.964-.078-1.423-.23l-3.114-1.04a4.501 4.501 0 0 0-1.423-.23H5.904m10.598-9.75H14.25M5.904 18.5c.083.205.173.405.27.602.197.4-.078.898-.523.898h-.908c-.889 0-1.713-.518-1.972-1.368a12 12 0 0 1-.521-3.507c0-1.553.295-3.036.831-4.398C3.387 9.953 4.167 9.5 5 9.5h1.053c.472 0 .745.556.5.96a8.958 8.958 0 0 0-1.302 4.665c0 1.194.232 2.333.654 3.375Z"})])}function NA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M5.25 8.25h15m-16.5 7.5h15m-1.8-13.5-3.9 19.5m-2.1-19.5-3.9 19.5"})])}function ZA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21 8.25c0-2.485-2.099-4.5-4.688-4.5-1.935 0-3.597 1.126-4.312 2.733-.715-1.607-2.377-2.733-4.313-2.733C5.1 3.75 3 5.765 3 8.25c0 7.22 9 12 9 12s9-4.78 9-12Z"})])}function SA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M8.25 21v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21m0 0h4.5V3.545M12.75 21h7.5V10.75M2.25 21h1.5m18 0h-18M2.25 9l4.5-1.636M18.75 3l-1.5.545m0 6.205 3 1m1.5.5-1.5-.5M6.75 7.364V3h-3v18m3-13.636 10.5-3.819"})])}function $A(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m2.25 12 8.954-8.955c.44-.439 1.152-.439 1.591 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25"})])}function IA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15 9h3.75M15 12h3.75M15 15h3.75M4.5 19.5h15a2.25 2.25 0 0 0 2.25-2.25V6.75A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25v10.5A2.25 2.25 0 0 0 4.5 19.5Zm6-10.125a1.875 1.875 0 1 1-3.75 0 1.875 1.875 0 0 1 3.75 0Zm1.294 6.336a6.721 6.721 0 0 1-3.17.789 6.721 6.721 0 0 1-3.168-.789 3.376 3.376 0 0 1 6.338 0Z"})])}function HA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9 3.75H6.912a2.25 2.25 0 0 0-2.15 1.588L2.35 13.177a2.25 2.25 0 0 0-.1.661V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18v-4.162c0-.224-.034-.447-.1-.661L19.24 5.338a2.25 2.25 0 0 0-2.15-1.588H15M2.25 13.5h3.86a2.25 2.25 0 0 1 2.012 1.244l.256.512a2.25 2.25 0 0 0 2.013 1.244h3.218a2.25 2.25 0 0 0 2.013-1.244l.256-.512a2.25 2.25 0 0 1 2.013-1.244h3.859M12 3v8.25m0 0-3-3m3 3 3-3"})])}function TA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m7.875 14.25 1.214 1.942a2.25 2.25 0 0 0 1.908 1.058h2.006c.776 0 1.497-.4 1.908-1.058l1.214-1.942M2.41 9h4.636a2.25 2.25 0 0 1 1.872 1.002l.164.246a2.25 2.25 0 0 0 1.872 1.002h2.092a2.25 2.25 0 0 0 1.872-1.002l.164-.246A2.25 2.25 0 0 1 16.954 9h4.636M2.41 9a2.25 2.25 0 0 0-.16.832V12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 12V9.832c0-.287-.055-.57-.16-.832M2.41 9a2.25 2.25 0 0 1 .382-.632l3.285-3.832a2.25 2.25 0 0 1 1.708-.786h8.43c.657 0 1.281.287 1.709.786l3.284 3.832c.163.19.291.404.382.632M4.5 20.25h15A2.25 2.25 0 0 0 21.75 18v-2.625c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125V18a2.25 2.25 0 0 0 2.25 2.25Z"})])}function LA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 13.5h3.86a2.25 2.25 0 0 1 2.012 1.244l.256.512a2.25 2.25 0 0 0 2.013 1.244h3.218a2.25 2.25 0 0 0 2.013-1.244l.256-.512a2.25 2.25 0 0 1 2.013-1.244h3.859m-19.5.338V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18v-4.162c0-.224-.034-.447-.1-.661L19.24 5.338a2.25 2.25 0 0 0-2.15-1.588H6.911a2.25 2.25 0 0 0-2.15 1.588L2.35 13.177a2.25 2.25 0 0 0-.1.661Z"})])}function DA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m11.25 11.25.041-.02a.75.75 0 0 1 1.063.852l-.708 2.836a.75.75 0 0 0 1.063.853l.041-.021M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9-3.75h.008v.008H12V8.25Z"})])}function PA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M5.248 20.246H9.05m0 0h3.696m-3.696 0 5.893-16.502m0 0h-3.697m3.697 0h3.803"})])}function OA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.75 5.25a3 3 0 0 1 3 3m3 0a6 6 0 0 1-7.029 5.912c-.563-.097-1.159.026-1.563.43L10.5 17.25H8.25v2.25H6v2.25H2.25v-2.818c0-.597.237-1.17.659-1.591l6.499-6.499c.404-.404.527-1 .43-1.563A6 6 0 1 1 21.75 8.25Z"})])}function RA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m10.5 21 5.25-11.25L21 21m-9-3h7.5M3 5.621a48.474 48.474 0 0 1 6-.371m0 0c1.12 0 2.233.038 3.334.114M9 5.25V3m3.334 2.364C11.176 10.658 7.69 15.08 3 17.502m9.334-12.138c.896.061 1.785.147 2.666.257m-4.589 8.495a18.023 18.023 0 0 1-3.827-5.802"})])}function zA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M16.712 4.33a9.027 9.027 0 0 1 1.652 1.306c.51.51.944 1.064 1.306 1.652M16.712 4.33l-3.448 4.138m3.448-4.138a9.014 9.014 0 0 0-9.424 0M19.67 7.288l-4.138 3.448m4.138-3.448a9.014 9.014 0 0 1 0 9.424m-4.138-5.976a3.736 3.736 0 0 0-.88-1.388 3.737 3.737 0 0 0-1.388-.88m2.268 2.268a3.765 3.765 0 0 1 0 2.528m-2.268-4.796a3.765 3.765 0 0 0-2.528 0m4.796 4.796c-.181.506-.475.982-.88 1.388a3.736 3.736 0 0 1-1.388.88m2.268-2.268 4.138 3.448m0 0a9.027 9.027 0 0 1-1.306 1.652c-.51.51-1.064.944-1.652 1.306m0 0-3.448-4.138m3.448 4.138a9.014 9.014 0 0 1-9.424 0m5.976-4.138a3.765 3.765 0 0 1-2.528 0m0 0a3.736 3.736 0 0 1-1.388-.88 3.737 3.737 0 0 1-.88-1.388m2.268 2.268L7.288 19.67m0 0a9.024 9.024 0 0 1-1.652-1.306 9.027 9.027 0 0 1-1.306-1.652m0 0 4.138-3.448M4.33 16.712a9.014 9.014 0 0 1 0-9.424m4.138 5.976a3.765 3.765 0 0 1 0-2.528m0 0c.181-.506.475-.982.88-1.388a3.736 3.736 0 0 1 1.388-.88m-2.268 2.268L4.33 7.288m6.406 1.18L7.288 4.33m0 0a9.024 9.024 0 0 0-1.652 1.306A9.025 9.025 0 0 0 4.33 7.288"})])}function jA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 18v-5.25m0 0a6.01 6.01 0 0 0 1.5-.189m-1.5.189a6.01 6.01 0 0 1-1.5-.189m3.75 7.478a12.06 12.06 0 0 1-4.5 0m3.75 2.383a14.406 14.406 0 0 1-3 0M14.25 18v-.192c0-.983.658-1.823 1.508-2.316a7.5 7.5 0 1 0-7.517 0c.85.493 1.509 1.333 1.509 2.316V18"})])}function FA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M13.181 8.68a4.503 4.503 0 0 1 1.903 6.405m-9.768-2.782L3.56 14.06a4.5 4.5 0 0 0 6.364 6.365l3.129-3.129m5.614-5.615 1.757-1.757a4.5 4.5 0 0 0-6.364-6.365l-4.5 4.5c-.258.26-.479.541-.661.84m1.903 6.405a4.495 4.495 0 0 1-1.242-.88 4.483 4.483 0 0 1-1.062-1.683m6.587 2.345 5.907 5.907m-5.907-5.907L8.898 8.898M2.991 2.99 8.898 8.9"})])}function UA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M13.19 8.688a4.5 4.5 0 0 1 1.242 7.244l-4.5 4.5a4.5 4.5 0 0 1-6.364-6.364l1.757-1.757m13.35-.622 1.757-1.757a4.5 4.5 0 0 0-6.364-6.364l-4.5 4.5a4.5 4.5 0 0 0 1.242 7.244"})])}function WA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M8.25 6.75h12M8.25 12h12m-12 5.25h12M3.75 6.75h.007v.008H3.75V6.75Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0ZM3.75 12h.007v.008H3.75V12Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm-.375 5.25h.007v.008H3.75v-.008Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z"})])}function qA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M16.5 10.5V6.75a4.5 4.5 0 1 0-9 0v3.75m-.75 11.25h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H6.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25Z"})])}function YA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M13.5 10.5V6.75a4.5 4.5 0 1 1 9 0v3.75M3.75 21.75h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H3.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25Z"})])}function KA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m15.75 15.75-2.489-2.489m0 0a3.375 3.375 0 1 0-4.773-4.773 3.375 3.375 0 0 0 4.774 4.774ZM21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function GA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607ZM13.5 10.5h-6"})])}function JA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607ZM10.5 7.5v6m3-3h-6"})])}function XA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607Z"})])}function QA(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15 10.5a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"}),e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1 1 15 0Z"})])}function e_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9 6.75V15m6-6v8.25m.503 3.498 4.875-2.437c.381-.19.622-.58.622-1.006V4.82c0-.836-.88-1.38-1.628-1.006l-3.869 1.934c-.317.159-.69.159-1.006 0L9.503 3.252a1.125 1.125 0 0 0-1.006 0L3.622 5.689C3.24 5.88 3 6.27 3 6.695V19.18c0 .836.88 1.38 1.628 1.006l3.869-1.934c.317-.159.69-.159 1.006 0l4.994 2.497c.317.158.69.158 1.006 0Z"})])}function t_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M10.34 15.84c-.688-.06-1.386-.09-2.09-.09H7.5a4.5 4.5 0 1 1 0-9h.75c.704 0 1.402-.03 2.09-.09m0 9.18c.253.962.584 1.892.985 2.783.247.55.06 1.21-.463 1.511l-.657.38c-.551.318-1.26.117-1.527-.461a20.845 20.845 0 0 1-1.44-4.282m3.102.069a18.03 18.03 0 0 1-.59-4.59c0-1.586.205-3.124.59-4.59m0 9.18a23.848 23.848 0 0 1 8.835 2.535M10.34 6.66a23.847 23.847 0 0 0 8.835-2.535m0 0A23.74 23.74 0 0 0 18.795 3m.38 1.125a23.91 23.91 0 0 1 1.014 5.395m-1.014 8.855c-.118.38-.245.754-.38 1.125m.38-1.125a23.91 23.91 0 0 0 1.014-5.395m0-3.46c.495.413.811 1.035.811 1.73 0 .695-.316 1.317-.811 1.73m0-3.46a24.347 24.347 0 0 1 0 3.46"})])}function n_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 18.75a6 6 0 0 0 6-6v-1.5m-6 7.5a6 6 0 0 1-6-6v-1.5m6 7.5v3.75m-3.75 0h7.5M12 15.75a3 3 0 0 1-3-3V4.5a3 3 0 1 1 6 0v8.25a3 3 0 0 1-3 3Z"})])}function r_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15 12H9m12 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function o_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M18 12H6"})])}function a_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M5 12h14"})])}function l_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21.752 15.002A9.72 9.72 0 0 1 18 15.75c-5.385 0-9.75-4.365-9.75-9.75 0-1.33.266-2.597.748-3.752A9.753 9.753 0 0 0 3 11.25C3 16.635 7.365 21 12.75 21a9.753 9.753 0 0 0 9.002-5.998Z"})])}function i_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m9 9 10.5-3m0 6.553v3.75a2.25 2.25 0 0 1-1.632 2.163l-1.32.377a1.803 1.803 0 1 1-.99-3.467l2.31-.66a2.25 2.25 0 0 0 1.632-2.163Zm0 0V2.25L9 5.25v10.303m0 0v3.75a2.25 2.25 0 0 1-1.632 2.163l-1.32.377a1.803 1.803 0 0 1-.99-3.467l2.31-.66A2.25 2.25 0 0 0 9 15.553Z"})])}function c_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 7.5h1.5m-1.5 3h1.5m-7.5 3h7.5m-7.5 3h7.5m3-9h3.375c.621 0 1.125.504 1.125 1.125V18a2.25 2.25 0 0 1-2.25 2.25M16.5 7.5V18a2.25 2.25 0 0 0 2.25 2.25M16.5 7.5V4.875c0-.621-.504-1.125-1.125-1.125H4.125C3.504 3.75 3 4.254 3 4.875V18a2.25 2.25 0 0 0 2.25 2.25h13.5M6 7.5h3v3H6v-3Z"})])}function s_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M18.364 18.364A9 9 0 0 0 5.636 5.636m12.728 12.728A9 9 0 0 1 5.636 5.636m12.728 12.728L5.636 5.636"})])}function d_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M8.242 5.992h12m-12 6.003H20.24m-12 5.999h12M4.117 7.495v-3.75H2.99m1.125 3.75H2.99m1.125 0H5.24m-1.92 2.577a1.125 1.125 0 1 1 1.591 1.59l-1.83 1.83h2.16M2.99 15.745h1.125a1.125 1.125 0 0 1 0 2.25H3.74m0-.002h.375a1.125 1.125 0 0 1 0 2.25H2.99"})])}function u_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9.53 16.122a3 3 0 0 0-5.78 1.128 2.25 2.25 0 0 1-2.4 2.245 4.5 4.5 0 0 0 8.4-2.245c0-.399-.078-.78-.22-1.128Zm0 0a15.998 15.998 0 0 0 3.388-1.62m-5.043-.025a15.994 15.994 0 0 1 1.622-3.395m3.42 3.42a15.995 15.995 0 0 0 4.764-4.648l3.876-5.814a1.151 1.151 0 0 0-1.597-1.597L14.146 6.32a15.996 15.996 0 0 0-4.649 4.763m3.42 3.42a6.776 6.776 0 0 0-3.42-3.42"})])}function h_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6 12 3.269 3.125A59.769 59.769 0 0 1 21.485 12 59.768 59.768 0 0 1 3.27 20.875L5.999 12Zm0 0h7.5"})])}function p_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m18.375 12.739-7.693 7.693a4.5 4.5 0 0 1-6.364-6.364l10.94-10.94A3 3 0 1 1 19.5 7.372L8.552 18.32m.009-.01-.01.01m5.699-9.941-7.81 7.81a1.5 1.5 0 0 0 2.112 2.13"})])}function f_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M14.25 9v6m-4.5 0V9M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function m_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.75 5.25v13.5m-7.5-13.5v13.5"})])}function w_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m16.862 4.487 1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L10.582 16.07a4.5 4.5 0 0 1-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 0 1 1.13-1.897l8.932-8.931Zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0 1 15.75 21H5.25A2.25 2.25 0 0 1 3 18.75V8.25A2.25 2.25 0 0 1 5.25 6H10"})])}function g_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m16.862 4.487 1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L6.832 19.82a4.5 4.5 0 0 1-1.897 1.13l-2.685.8.8-2.685a4.5 4.5 0 0 1 1.13-1.897L16.863 4.487Zm0 0L19.5 7.125"})])}function k_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m8.99 14.993 6-6m6 3.001c0 1.268-.63 2.39-1.593 3.069a3.746 3.746 0 0 1-1.043 3.296 3.745 3.745 0 0 1-3.296 1.043 3.745 3.745 0 0 1-3.068 1.593c-1.268 0-2.39-.63-3.068-1.593a3.745 3.745 0 0 1-3.296-1.043 3.746 3.746 0 0 1-1.043-3.297 3.746 3.746 0 0 1-1.593-3.068c0-1.268.63-2.39 1.593-3.068a3.746 3.746 0 0 1 1.043-3.297 3.745 3.745 0 0 1 3.296-1.042 3.745 3.745 0 0 1 3.068-1.594c1.268 0 2.39.63 3.068 1.593a3.745 3.745 0 0 1 3.296 1.043 3.746 3.746 0 0 1 1.043 3.297 3.746 3.746 0 0 1 1.593 3.068ZM9.74 9.743h.008v.007H9.74v-.007Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm4.125 4.5h.008v.008h-.008v-.008Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z"})])}function x_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M14.25 9.75v-4.5m0 4.5h4.5m-4.5 0 6-6m-3 18c-8.284 0-15-6.716-15-15V4.5A2.25 2.25 0 0 1 4.5 2.25h1.372c.516 0 .966.351 1.091.852l1.106 4.423c.11.44-.054.902-.417 1.173l-1.293.97a1.062 1.062 0 0 0-.38 1.21 12.035 12.035 0 0 0 7.143 7.143c.441.162.928-.004 1.21-.38l.97-1.293a1.125 1.125 0 0 1 1.173-.417l4.423 1.106c.5.125.852.575.852 1.091V19.5a2.25 2.25 0 0 1-2.25 2.25h-2.25Z"})])}function v_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M20.25 3.75v4.5m0-4.5h-4.5m4.5 0-6 6m3 12c-8.284 0-15-6.716-15-15V4.5A2.25 2.25 0 0 1 4.5 2.25h1.372c.516 0 .966.351 1.091.852l1.106 4.423c.11.44-.054.902-.417 1.173l-1.293.97a1.062 1.062 0 0 0-.38 1.21 12.035 12.035 0 0 0 7.143 7.143c.441.162.928-.004 1.21-.38l.97-1.293a1.125 1.125 0 0 1 1.173-.417l4.423 1.106c.5.125.852.575.852 1.091V19.5a2.25 2.25 0 0 1-2.25 2.25h-2.25Z"})])}function y_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.75 3.75 18 6m0 0 2.25 2.25M18 6l2.25-2.25M18 6l-2.25 2.25m1.5 13.5c-8.284 0-15-6.716-15-15V4.5A2.25 2.25 0 0 1 4.5 2.25h1.372c.516 0 .966.351 1.091.852l1.106 4.423c.11.44-.054.902-.417 1.173l-1.293.97a1.062 1.062 0 0 0-.38 1.21 12.035 12.035 0 0 0 7.143 7.143c.441.162.928-.004 1.21-.38l.97-1.293a1.125 1.125 0 0 1 1.173-.417l4.423 1.106c.5.125.852.575.852 1.091V19.5a2.25 2.25 0 0 1-2.25 2.25h-2.25Z"})])}function B_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 0 0 2.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.97 1.293c-.282.376-.769.542-1.21.38a12.035 12.035 0 0 1-7.143-7.143c-.162-.441.004-.928.38-1.21l1.293-.97c.363-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 0 0-1.091-.852H4.5A2.25 2.25 0 0 0 2.25 4.5v2.25Z"})])}function E_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m2.25 15.75 5.159-5.159a2.25 2.25 0 0 1 3.182 0l5.159 5.159m-1.5-1.5 1.409-1.409a2.25 2.25 0 0 1 3.182 0l2.909 2.909m-18 3.75h16.5a1.5 1.5 0 0 0 1.5-1.5V6a1.5 1.5 0 0 0-1.5-1.5H3.75A1.5 1.5 0 0 0 2.25 6v12a1.5 1.5 0 0 0 1.5 1.5Zm10.5-11.25h.008v.008h-.008V8.25Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z"})])}function b_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"}),e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.91 11.672a.375.375 0 0 1 0 .656l-5.603 3.113a.375.375 0 0 1-.557-.328V8.887c0-.286.307-.466.557-.327l5.603 3.112Z"})])}function C_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21 7.5V18M15 7.5V18M3 16.811V8.69c0-.864.933-1.406 1.683-.977l7.108 4.061a1.125 1.125 0 0 1 0 1.954l-7.108 4.061A1.125 1.125 0 0 1 3 16.811Z"})])}function M_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M5.25 5.653c0-.856.917-1.398 1.667-.986l11.54 6.347a1.125 1.125 0 0 1 0 1.972l-11.54 6.347a1.125 1.125 0 0 1-1.667-.986V5.653Z"})])}function V_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 9v6m3-3H9m12 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function A_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 6v12m6-6H6"})])}function __(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 4.5v15m7.5-7.5h-15"})])}function N_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M5.636 5.636a9 9 0 1 0 12.728 0M12 3v9"})])}function Z_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.75 3v11.25A2.25 2.25 0 0 0 6 16.5h2.25M3.75 3h-1.5m1.5 0h16.5m0 0h1.5m-1.5 0v11.25A2.25 2.25 0 0 1 18 16.5h-2.25m-7.5 0h7.5m-7.5 0-1 3m8.5-3 1 3m0 0 .5 1.5m-.5-1.5h-9.5m0 0-.5 1.5M9 11.25v1.5M12 9v3.75m3-6v6"})])}function S_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.75 3v11.25A2.25 2.25 0 0 0 6 16.5h2.25M3.75 3h-1.5m1.5 0h16.5m0 0h1.5m-1.5 0v11.25A2.25 2.25 0 0 1 18 16.5h-2.25m-7.5 0h7.5m-7.5 0-1 3m8.5-3 1 3m0 0 .5 1.5m-.5-1.5h-9.5m0 0-.5 1.5m.75-9 3-3 2.148 2.148A12.061 12.061 0 0 1 16.5 7.605"})])}function $_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6.72 13.829c-.24.03-.48.062-.72.096m.72-.096a42.415 42.415 0 0 1 10.56 0m-10.56 0L6.34 18m10.94-4.171c.24.03.48.062.72.096m-.72-.096L17.66 18m0 0 .229 2.523a1.125 1.125 0 0 1-1.12 1.227H7.231c-.662 0-1.18-.568-1.12-1.227L6.34 18m11.318 0h1.091A2.25 2.25 0 0 0 21 15.75V9.456c0-1.081-.768-2.015-1.837-2.175a48.055 48.055 0 0 0-1.913-.247M6.34 18H5.25A2.25 2.25 0 0 1 3 15.75V9.456c0-1.081.768-2.015 1.837-2.175a48.041 48.041 0 0 1 1.913-.247m10.5 0a48.536 48.536 0 0 0-10.5 0m10.5 0V3.375c0-.621-.504-1.125-1.125-1.125h-8.25c-.621 0-1.125.504-1.125 1.125v3.659M18 10.5h.008v.008H18V10.5Zm-3 0h.008v.008H15V10.5Z"})])}function I_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M14.25 6.087c0-.355.186-.676.401-.959.221-.29.349-.634.349-1.003 0-1.036-1.007-1.875-2.25-1.875s-2.25.84-2.25 1.875c0 .369.128.713.349 1.003.215.283.401.604.401.959v0a.64.64 0 0 1-.657.643 48.39 48.39 0 0 1-4.163-.3c.186 1.613.293 3.25.315 4.907a.656.656 0 0 1-.658.663v0c-.355 0-.676-.186-.959-.401a1.647 1.647 0 0 0-1.003-.349c-1.036 0-1.875 1.007-1.875 2.25s.84 2.25 1.875 2.25c.369 0 .713-.128 1.003-.349.283-.215.604-.401.959-.401v0c.31 0 .555.26.532.57a48.039 48.039 0 0 1-.642 5.056c1.518.19 3.058.309 4.616.354a.64.64 0 0 0 .657-.643v0c0-.355-.186-.676-.401-.959a1.647 1.647 0 0 1-.349-1.003c0-1.035 1.008-1.875 2.25-1.875 1.243 0 2.25.84 2.25 1.875 0 .369-.128.713-.349 1.003-.215.283-.4.604-.4.959v0c0 .333.277.599.61.58a48.1 48.1 0 0 0 5.427-.63 48.05 48.05 0 0 0 .582-4.717.532.532 0 0 0-.533-.57v0c-.355 0-.676.186-.959.401-.29.221-.634.349-1.003.349-1.035 0-1.875-1.007-1.875-2.25s.84-2.25 1.875-2.25c.37 0 .713.128 1.003.349.283.215.604.401.96.401v0a.656.656 0 0 0 .658-.663 48.422 48.422 0 0 0-.37-5.36c-1.886.342-3.81.574-5.766.689a.578.578 0 0 1-.61-.58v0Z"})])}function H_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.75 4.875c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5A1.125 1.125 0 0 1 3.75 9.375v-4.5ZM3.75 14.625c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5a1.125 1.125 0 0 1-1.125-1.125v-4.5ZM13.5 4.875c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5A1.125 1.125 0 0 1 13.5 9.375v-4.5Z"}),e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6.75 6.75h.75v.75h-.75v-.75ZM6.75 16.5h.75v.75h-.75v-.75ZM16.5 6.75h.75v.75h-.75v-.75ZM13.5 13.5h.75v.75h-.75v-.75ZM13.5 19.5h.75v.75h-.75v-.75ZM19.5 13.5h.75v.75h-.75v-.75ZM19.5 19.5h.75v.75h-.75v-.75ZM16.5 16.5h.75v.75h-.75v-.75Z"})])}function T_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9.879 7.519c1.171-1.025 3.071-1.025 4.242 0 1.172 1.025 1.172 2.687 0 3.712-.203.179-.43.326-.67.442-.745.361-1.45.999-1.45 1.827v.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9 5.25h.008v.008H12v-.008Z"})])}function L_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.75 12h16.5m-16.5 3.75h16.5M3.75 19.5h16.5M5.625 4.5h12.75a1.875 1.875 0 0 1 0 3.75H5.625a1.875 1.875 0 0 1 0-3.75Z"})])}function D_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m3.75 7.5 16.5-4.125M12 6.75c-2.708 0-5.363.224-7.948.655C2.999 7.58 2.25 8.507 2.25 9.574v9.176A2.25 2.25 0 0 0 4.5 21h15a2.25 2.25 0 0 0 2.25-2.25V9.574c0-1.067-.75-1.994-1.802-2.169A48.329 48.329 0 0 0 12 6.75Zm-1.683 6.443-.005.005-.006-.005.006-.005.005.005Zm-.005 2.127-.005-.006.005-.005.005.005-.005.005Zm-2.116-.006-.005.006-.006-.006.005-.005.006.005Zm-.005-2.116-.006-.005.006-.005.005.005-.005.005ZM9.255 10.5v.008h-.008V10.5h.008Zm3.249 1.88-.007.004-.003-.007.006-.003.004.006Zm-1.38 5.126-.003-.006.006-.004.004.007-.006.003Zm.007-6.501-.003.006-.007-.003.004-.007.006.004Zm1.37 5.129-.007-.004.004-.006.006.003-.004.007Zm.504-1.877h-.008v-.007h.008v.007ZM9.255 18v.008h-.008V18h.008Zm-3.246-1.87-.007.004L6 16.127l.006-.003.004.006Zm1.366-5.119-.004-.006.006-.004.004.007-.006.003ZM7.38 17.5l-.003.006-.007-.003.004-.007.006.004Zm-1.376-5.116L6 12.38l.003-.007.007.004-.004.007Zm-.5 1.873h-.008v-.007h.008v.007ZM17.25 12.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Zm0 4.5a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Z"})])}function P_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m9 14.25 6-6m4.5-3.493V21.75l-3.75-1.5-3.75 1.5-3.75-1.5-3.75 1.5V4.757c0-1.108.806-2.057 1.907-2.185a48.507 48.507 0 0 1 11.186 0c1.1.128 1.907 1.077 1.907 2.185ZM9.75 9h.008v.008H9.75V9Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm4.125 4.5h.008v.008h-.008V13.5Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z"})])}function O_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M8.25 9.75h4.875a2.625 2.625 0 0 1 0 5.25H12M8.25 9.75 10.5 7.5M8.25 9.75 10.5 12m9-7.243V21.75l-3.75-1.5-3.75 1.5-3.75-1.5-3.75 1.5V4.757c0-1.108.806-2.057 1.907-2.185a48.507 48.507 0 0 1 11.186 0c1.1.128 1.907 1.077 1.907 2.185Z"})])}function R_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 7.125C2.25 6.504 2.754 6 3.375 6h6c.621 0 1.125.504 1.125 1.125v3.75c0 .621-.504 1.125-1.125 1.125h-6a1.125 1.125 0 0 1-1.125-1.125v-3.75ZM14.25 8.625c0-.621.504-1.125 1.125-1.125h5.25c.621 0 1.125.504 1.125 1.125v8.25c0 .621-.504 1.125-1.125 1.125h-5.25a1.125 1.125 0 0 1-1.125-1.125v-8.25ZM3.75 16.125c0-.621.504-1.125 1.125-1.125h5.25c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125h-5.25a1.125 1.125 0 0 1-1.125-1.125v-2.25Z"})])}function z_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6 6.878V6a2.25 2.25 0 0 1 2.25-2.25h7.5A2.25 2.25 0 0 1 18 6v.878m-12 0c.235-.083.487-.128.75-.128h10.5c.263 0 .515.045.75.128m-12 0A2.25 2.25 0 0 0 4.5 9v.878m13.5-3A2.25 2.25 0 0 1 19.5 9v.878m0 0a2.246 2.246 0 0 0-.75-.128H5.25c-.263 0-.515.045-.75.128m15 0A2.25 2.25 0 0 1 21 12v6a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 18v-6c0-.98.626-1.813 1.5-2.122"})])}function j_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.59 14.37a6 6 0 0 1-5.84 7.38v-4.8m5.84-2.58a14.98 14.98 0 0 0 6.16-12.12A14.98 14.98 0 0 0 9.631 8.41m5.96 5.96a14.926 14.926 0 0 1-5.841 2.58m-.119-8.54a6 6 0 0 0-7.381 5.84h4.8m2.581-5.84a14.927 14.927 0 0 0-2.58 5.84m2.699 2.7c-.103.021-.207.041-.311.06a15.09 15.09 0 0 1-2.448-2.448 14.9 14.9 0 0 1 .06-.312m-2.24 2.39a4.493 4.493 0 0 0-1.757 4.306 4.493 4.493 0 0 0 4.306-1.758M16.5 9a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"})])}function F_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12.75 19.5v-.75a7.5 7.5 0 0 0-7.5-7.5H4.5m0-6.75h.75c7.87 0 14.25 6.38 14.25 14.25v.75M6 18.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z"})])}function U_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 3v17.25m0 0c-1.472 0-2.882.265-4.185.75M12 20.25c1.472 0 2.882.265 4.185.75M18.75 4.97A48.416 48.416 0 0 0 12 4.5c-2.291 0-4.545.16-6.75.47m13.5 0c1.01.143 2.01.317 3 .52m-3-.52 2.62 10.726c.122.499-.106 1.028-.589 1.202a5.988 5.988 0 0 1-2.031.352 5.988 5.988 0 0 1-2.031-.352c-.483-.174-.711-.703-.59-1.202L18.75 4.971Zm-16.5.52c.99-.203 1.99-.377 3-.52m0 0 2.62 10.726c.122.499-.106 1.028-.589 1.202a5.989 5.989 0 0 1-2.031.352 5.989 5.989 0 0 1-2.031-.352c-.483-.174-.711-.703-.59-1.202L5.25 4.971Z"})])}function W_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m7.848 8.25 1.536.887M7.848 8.25a3 3 0 1 1-5.196-3 3 3 0 0 1 5.196 3Zm1.536.887a2.165 2.165 0 0 1 1.083 1.839c.005.351.054.695.14 1.024M9.384 9.137l2.077 1.199M7.848 15.75l1.536-.887m-1.536.887a3 3 0 1 1-5.196 3 3 3 0 0 1 5.196-3Zm1.536-.887a2.165 2.165 0 0 0 1.083-1.838c.005-.352.054-.695.14-1.025m-1.223 2.863 2.077-1.199m0-3.328a4.323 4.323 0 0 1 2.068-1.379l5.325-1.628a4.5 4.5 0 0 1 2.48-.044l.803.215-7.794 4.5m-2.882-1.664A4.33 4.33 0 0 0 10.607 12m3.736 0 7.794 4.5-.802.215a4.5 4.5 0 0 1-2.48-.043l-5.326-1.629a4.324 4.324 0 0 1-2.068-1.379M14.343 12l-2.882 1.664"})])}function q_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M5.25 14.25h13.5m-13.5 0a3 3 0 0 1-3-3m3 3a3 3 0 1 0 0 6h13.5a3 3 0 1 0 0-6m-16.5-3a3 3 0 0 1 3-3h13.5a3 3 0 0 1 3 3m-19.5 0a4.5 4.5 0 0 1 .9-2.7L5.737 5.1a3.375 3.375 0 0 1 2.7-1.35h7.126c1.062 0 2.062.5 2.7 1.35l2.587 3.45a4.5 4.5 0 0 1 .9 2.7m0 0a3 3 0 0 1-3 3m0 3h.008v.008h-.008v-.008Zm0-6h.008v.008h-.008v-.008Zm-3 6h.008v.008h-.008v-.008Zm0-6h.008v.008h-.008v-.008Z"})])}function Y_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21.75 17.25v-.228a4.5 4.5 0 0 0-.12-1.03l-2.268-9.64a3.375 3.375 0 0 0-3.285-2.602H7.923a3.375 3.375 0 0 0-3.285 2.602l-2.268 9.64a4.5 4.5 0 0 0-.12 1.03v.228m19.5 0a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3m19.5 0a3 3 0 0 0-3-3H5.25a3 3 0 0 0-3 3m16.5 0h.008v.008h-.008v-.008Zm-3 0h.008v.008h-.008v-.008Z"})])}function K_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M7.217 10.907a2.25 2.25 0 1 0 0 2.186m0-2.186c.18.324.283.696.283 1.093s-.103.77-.283 1.093m0-2.186 9.566-5.314m-9.566 7.5 9.566 5.314m0 0a2.25 2.25 0 1 0 3.935 2.186 2.25 2.25 0 0 0-3.935-2.186Zm0-12.814a2.25 2.25 0 1 0 3.933-2.185 2.25 2.25 0 0 0-3.933 2.185Z"})])}function G_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9 12.75 11.25 15 15 9.75m-3-7.036A11.959 11.959 0 0 1 3.598 6 11.99 11.99 0 0 0 3 9.749c0 5.592 3.824 10.29 9 11.623 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.285Z"})])}function J_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 9v3.75m0-10.036A11.959 11.959 0 0 1 3.598 6 11.99 11.99 0 0 0 3 9.75c0 5.592 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.57-.598-3.75h-.152c-3.196 0-6.1-1.25-8.25-3.286Zm0 13.036h.008v.008H12v-.008Z"})])}function X_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.75 10.5V6a3.75 3.75 0 1 0-7.5 0v4.5m11.356-1.993 1.263 12c.07.665-.45 1.243-1.119 1.243H4.25a1.125 1.125 0 0 1-1.12-1.243l1.264-12A1.125 1.125 0 0 1 5.513 7.5h12.974c.576 0 1.059.435 1.119 1.007ZM8.625 10.5a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm7.5 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z"})])}function Q_(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z"})])}function eN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m3 3 8.735 8.735m0 0a.374.374 0 1 1 .53.53m-.53-.53.53.53m0 0L21 21M14.652 9.348a3.75 3.75 0 0 1 0 5.304m2.121-7.425a6.75 6.75 0 0 1 0 9.546m2.121-11.667c3.808 3.807 3.808 9.98 0 13.788m-9.546-4.242a3.733 3.733 0 0 1-1.06-2.122m-1.061 4.243a6.75 6.75 0 0 1-1.625-6.929m-.496 9.05c-3.068-3.067-3.664-7.67-1.79-11.334M12 12h.008v.008H12V12Z"})])}function tN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9.348 14.652a3.75 3.75 0 0 1 0-5.304m5.304 0a3.75 3.75 0 0 1 0 5.304m-7.425 2.121a6.75 6.75 0 0 1 0-9.546m9.546 0a6.75 6.75 0 0 1 0 9.546M5.106 18.894c-3.808-3.807-3.808-9.98 0-13.788m13.788 0c3.808 3.807 3.808 9.98 0 13.788M12 12h.008v.008H12V12Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z"})])}function nN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m9 20.247 6-16.5"})])}function rN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9.813 15.904 9 18.75l-.813-2.846a4.5 4.5 0 0 0-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 0 0 3.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 0 0 3.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 0 0-3.09 3.09ZM18.259 8.715 18 9.75l-.259-1.035a3.375 3.375 0 0 0-2.455-2.456L14.25 6l1.036-.259a3.375 3.375 0 0 0 2.455-2.456L18 2.25l.259 1.035a3.375 3.375 0 0 0 2.456 2.456L21.75 6l-1.035.259a3.375 3.375 0 0 0-2.456 2.456ZM16.894 20.567 16.5 21.75l-.394-1.183a2.25 2.25 0 0 0-1.423-1.423L13.5 18.75l1.183-.394a2.25 2.25 0 0 0 1.423-1.423l.394-1.183.394 1.183a2.25 2.25 0 0 0 1.423 1.423l1.183.394-1.183.394a2.25 2.25 0 0 0-1.423 1.423Z"})])}function oN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.114 5.636a9 9 0 0 1 0 12.728M16.463 8.288a5.25 5.25 0 0 1 0 7.424M6.75 8.25l4.72-4.72a.75.75 0 0 1 1.28.53v15.88a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.507-1.938-1.354A9.009 9.009 0 0 1 2.25 12c0-.83.112-1.633.322-2.396C2.806 8.756 3.63 8.25 4.51 8.25H6.75Z"})])}function aN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M17.25 9.75 19.5 12m0 0 2.25 2.25M19.5 12l2.25-2.25M19.5 12l-2.25 2.25m-10.5-6 4.72-4.72a.75.75 0 0 1 1.28.53v15.88a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.507-1.938-1.354A9.009 9.009 0 0 1 2.25 12c0-.83.112-1.633.322-2.396C2.806 8.756 3.63 8.25 4.51 8.25H6.75Z"})])}function lN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M16.5 8.25V6a2.25 2.25 0 0 0-2.25-2.25H6A2.25 2.25 0 0 0 3.75 6v8.25A2.25 2.25 0 0 0 6 16.5h2.25m8.25-8.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-7.5A2.25 2.25 0 0 1 8.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 0 0-2.25 2.25v6"})])}function iN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6.429 9.75 2.25 12l4.179 2.25m0-4.5 5.571 3 5.571-3m-11.142 0L2.25 7.5 12 2.25l9.75 5.25-4.179 2.25m0 0L21.75 12l-4.179 2.25m0 0 4.179 2.25L12 21.75 2.25 16.5l4.179-2.25m11.142 0-5.571 3-5.571-3"})])}function cN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.75 6A2.25 2.25 0 0 1 6 3.75h2.25A2.25 2.25 0 0 1 10.5 6v2.25a2.25 2.25 0 0 1-2.25 2.25H6a2.25 2.25 0 0 1-2.25-2.25V6ZM3.75 15.75A2.25 2.25 0 0 1 6 13.5h2.25a2.25 2.25 0 0 1 2.25 2.25V18a2.25 2.25 0 0 1-2.25 2.25H6A2.25 2.25 0 0 1 3.75 18v-2.25ZM13.5 6a2.25 2.25 0 0 1 2.25-2.25H18A2.25 2.25 0 0 1 20.25 6v2.25A2.25 2.25 0 0 1 18 10.5h-2.25a2.25 2.25 0 0 1-2.25-2.25V6ZM13.5 15.75a2.25 2.25 0 0 1 2.25-2.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-2.25A2.25 2.25 0 0 1 13.5 18v-2.25Z"})])}function sN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M13.5 16.875h3.375m0 0h3.375m-3.375 0V13.5m0 3.375v3.375M6 10.5h2.25a2.25 2.25 0 0 0 2.25-2.25V6a2.25 2.25 0 0 0-2.25-2.25H6A2.25 2.25 0 0 0 3.75 6v2.25A2.25 2.25 0 0 0 6 10.5Zm0 9.75h2.25A2.25 2.25 0 0 0 10.5 18v-2.25a2.25 2.25 0 0 0-2.25-2.25H6a2.25 2.25 0 0 0-2.25 2.25V18A2.25 2.25 0 0 0 6 20.25Zm9.75-9.75H18a2.25 2.25 0 0 0 2.25-2.25V6A2.25 2.25 0 0 0 18 3.75h-2.25A2.25 2.25 0 0 0 13.5 6v2.25a2.25 2.25 0 0 0 2.25 2.25Z"})])}function dN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M11.48 3.499a.562.562 0 0 1 1.04 0l2.125 5.111a.563.563 0 0 0 .475.345l5.518.442c.499.04.701.663.321.988l-4.204 3.602a.563.563 0 0 0-.182.557l1.285 5.385a.562.562 0 0 1-.84.61l-4.725-2.885a.562.562 0 0 0-.586 0L6.982 20.54a.562.562 0 0 1-.84-.61l1.285-5.386a.562.562 0 0 0-.182-.557l-4.204-3.602a.562.562 0 0 1 .321-.988l5.518-.442a.563.563 0 0 0 .475-.345L11.48 3.5Z"})])}function uN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"}),e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9 9.563C9 9.252 9.252 9 9.563 9h4.874c.311 0 .563.252.563.563v4.874c0 .311-.252.563-.563.563H9.564A.562.562 0 0 1 9 14.437V9.564Z"})])}function hN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M5.25 7.5A2.25 2.25 0 0 1 7.5 5.25h9a2.25 2.25 0 0 1 2.25 2.25v9a2.25 2.25 0 0 1-2.25 2.25h-9a2.25 2.25 0 0 1-2.25-2.25v-9Z"})])}function pN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 12a8.912 8.912 0 0 1-.318-.079c-1.585-.424-2.904-1.247-3.76-2.236-.873-1.009-1.265-2.19-.968-3.301.59-2.2 3.663-3.29 6.863-2.432A8.186 8.186 0 0 1 16.5 5.21M6.42 17.81c.857.99 2.176 1.812 3.761 2.237 3.2.858 6.274-.23 6.863-2.431.233-.868.044-1.779-.465-2.617M3.75 12h16.5"})])}function fN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 3v2.25m6.364.386-1.591 1.591M21 12h-2.25m-.386 6.364-1.591-1.591M12 18.75V21m-4.773-4.227-1.591 1.591M5.25 12H3m4.227-4.773L5.636 5.636M15.75 12a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z"})])}function mN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M4.098 19.902a3.75 3.75 0 0 0 5.304 0l6.401-6.402M6.75 21A3.75 3.75 0 0 1 3 17.25V4.125C3 3.504 3.504 3 4.125 3h5.25c.621 0 1.125.504 1.125 1.125v4.072M6.75 21a3.75 3.75 0 0 0 3.75-3.75V8.197M6.75 21h13.125c.621 0 1.125-.504 1.125-1.125v-5.25c0-.621-.504-1.125-1.125-1.125h-4.072M10.5 8.197l2.88-2.88c.438-.439 1.15-.439 1.59 0l3.712 3.713c.44.44.44 1.152 0 1.59l-2.879 2.88M6.75 17.25h.008v.008H6.75v-.008Z"})])}function wN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.375 19.5h17.25m-17.25 0a1.125 1.125 0 0 1-1.125-1.125M3.375 19.5h7.5c.621 0 1.125-.504 1.125-1.125m-9.75 0V5.625m0 12.75v-1.5c0-.621.504-1.125 1.125-1.125m18.375 2.625V5.625m0 12.75c0 .621-.504 1.125-1.125 1.125m1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125m0 3.75h-7.5A1.125 1.125 0 0 1 12 18.375m9.75-12.75c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125m19.5 0v1.5c0 .621-.504 1.125-1.125 1.125M2.25 5.625v1.5c0 .621.504 1.125 1.125 1.125m0 0h17.25m-17.25 0h7.5c.621 0 1.125.504 1.125 1.125M3.375 8.25c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125m17.25-3.75h-7.5c-.621 0-1.125.504-1.125 1.125m8.625-1.125c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h7.5m-7.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125M12 10.875v-1.5m0 1.5c0 .621-.504 1.125-1.125 1.125M12 10.875c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125M13.125 12h7.5m-7.5 0c-.621 0-1.125.504-1.125 1.125M20.625 12c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h7.5M12 14.625v-1.5m0 1.5c0 .621-.504 1.125-1.125 1.125M12 14.625c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125m0 1.5v-1.5m0 0c0-.621.504-1.125 1.125-1.125m0 0h7.5"})])}function gN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9.568 3H5.25A2.25 2.25 0 0 0 3 5.25v4.318c0 .597.237 1.17.659 1.591l9.581 9.581c.699.699 1.78.872 2.607.33a18.095 18.095 0 0 0 5.223-5.223c.542-.827.369-1.908-.33-2.607L11.16 3.66A2.25 2.25 0 0 0 9.568 3Z"}),e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6 6h.008v.008H6V6Z"})])}function kN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M16.5 6v.75m0 3v.75m0 3v.75m0 3V18m-9-5.25h5.25M7.5 15h3M3.375 5.25c-.621 0-1.125.504-1.125 1.125v3.026a2.999 2.999 0 0 1 0 5.198v3.026c0 .621.504 1.125 1.125 1.125h17.25c.621 0 1.125-.504 1.125-1.125v-3.026a2.999 2.999 0 0 1 0-5.198V6.375c0-.621-.504-1.125-1.125-1.125H3.375Z"})])}function xN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m14.74 9-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 0 1-2.244 2.077H8.084a2.25 2.25 0 0 1-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 0 0-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 0 1 3.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 0 0-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 0 0-7.5 0"})])}function vN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M16.5 18.75h-9m9 0a3 3 0 0 1 3 3h-15a3 3 0 0 1 3-3m9 0v-3.375c0-.621-.503-1.125-1.125-1.125h-.871M7.5 18.75v-3.375c0-.621.504-1.125 1.125-1.125h.872m5.007 0H9.497m5.007 0a7.454 7.454 0 0 1-.982-3.172M9.497 14.25a7.454 7.454 0 0 0 .981-3.172M5.25 4.236c-.982.143-1.954.317-2.916.52A6.003 6.003 0 0 0 7.73 9.728M5.25 4.236V4.5c0 2.108.966 3.99 2.48 5.228M5.25 4.236V2.721C7.456 2.41 9.71 2.25 12 2.25c2.291 0 4.545.16 6.75.47v1.516M7.73 9.728a6.726 6.726 0 0 0 2.748 1.35m8.272-6.842V4.5c0 2.108-.966 3.99-2.48 5.228m2.48-5.492a46.32 46.32 0 0 1 2.916.52 6.003 6.003 0 0 1-5.395 4.972m0 0a6.726 6.726 0 0 1-2.749 1.35m0 0a6.772 6.772 0 0 1-3.044 0"})])}function yN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M8.25 18.75a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h6m-9 0H3.375a1.125 1.125 0 0 1-1.125-1.125V14.25m17.25 4.5a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h1.125c.621 0 1.129-.504 1.09-1.124a17.902 17.902 0 0 0-3.213-9.193 2.056 2.056 0 0 0-1.58-.86H14.25M16.5 18.75h-2.25m0-11.177v-.958c0-.568-.422-1.048-.987-1.106a48.554 48.554 0 0 0-10.026 0 1.106 1.106 0 0 0-.987 1.106v7.635m12-6.677v6.677m0 4.5v-4.5m0 0h-12"})])}function BN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6 20.25h12m-7.5-3v3m3-3v3m-10.125-3h17.25c.621 0 1.125-.504 1.125-1.125V4.875c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125Z"})])}function EN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M17.995 3.744v7.5a6 6 0 1 1-12 0v-7.5m-2.25 16.502h16.5"})])}function bN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M17.982 18.725A7.488 7.488 0 0 0 12 15.75a7.488 7.488 0 0 0-5.982 2.975m11.963 0a9 9 0 1 0-11.963 0m11.963 0A8.966 8.966 0 0 1 12 21a8.966 8.966 0 0 1-5.982-2.275M15 9.75a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"})])}function CN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M18 18.72a9.094 9.094 0 0 0 3.741-.479 3 3 0 0 0-4.682-2.72m.94 3.198.001.031c0 .225-.012.447-.037.666A11.944 11.944 0 0 1 12 21c-2.17 0-4.207-.576-5.963-1.584A6.062 6.062 0 0 1 6 18.719m12 0a5.971 5.971 0 0 0-.941-3.197m0 0A5.995 5.995 0 0 0 12 12.75a5.995 5.995 0 0 0-5.058 2.772m0 0a3 3 0 0 0-4.681 2.72 8.986 8.986 0 0 0 3.74.477m.94-3.197a5.971 5.971 0 0 0-.94 3.197M15 6.75a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm6 3a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0Zm-13.5 0a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0Z"})])}function MN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M22 10.5h-6m-2.25-4.125a3.375 3.375 0 1 1-6.75 0 3.375 3.375 0 0 1 6.75 0ZM4 19.235v-.11a6.375 6.375 0 0 1 12.75 0v.109A12.318 12.318 0 0 1 10.374 21c-2.331 0-4.512-.645-6.374-1.766Z"})])}function VN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M18 7.5v3m0 0v3m0-3h3m-3 0h-3m-2.25-4.125a3.375 3.375 0 1 1-6.75 0 3.375 3.375 0 0 1 6.75 0ZM3 19.235v-.11a6.375 6.375 0 0 1 12.75 0v.109A12.318 12.318 0 0 1 9.374 21c-2.331 0-4.512-.645-6.374-1.766Z"})])}function AN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15.75 6a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0ZM4.501 20.118a7.5 7.5 0 0 1 14.998 0A17.933 17.933 0 0 1 12 21.75c-2.676 0-5.216-.584-7.499-1.632Z"})])}function _N(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15 19.128a9.38 9.38 0 0 0 2.625.372 9.337 9.337 0 0 0 4.121-.952 4.125 4.125 0 0 0-7.533-2.493M15 19.128v-.003c0-1.113-.285-2.16-.786-3.07M15 19.128v.106A12.318 12.318 0 0 1 8.624 21c-2.331 0-4.512-.645-6.374-1.766l-.001-.109a6.375 6.375 0 0 1 11.964-3.07M12 6.375a3.375 3.375 0 1 1-6.75 0 3.375 3.375 0 0 1 6.75 0Zm8.25 2.25a2.625 2.625 0 1 1-5.25 0 2.625 2.625 0 0 1 5.25 0Z"})])}function NN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M4.745 3A23.933 23.933 0 0 0 3 12c0 3.183.62 6.22 1.745 9M19.5 3c.967 2.78 1.5 5.817 1.5 9s-.533 6.22-1.5 9M8.25 8.885l1.444-.89a.75.75 0 0 1 1.105.402l2.402 7.206a.75.75 0 0 0 1.104.401l1.445-.889m-8.25.75.213.09a1.687 1.687 0 0 0 2.062-.617l4.45-6.676a1.688 1.688 0 0 1 2.062-.618l.213.09"})])}function ZN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m15.75 10.5 4.72-4.72a.75.75 0 0 1 1.28.53v11.38a.75.75 0 0 1-1.28.53l-4.72-4.72M12 18.75H4.5a2.25 2.25 0 0 1-2.25-2.25V9m12.841 9.091L16.5 19.5m-1.409-1.409c.407-.407.659-.97.659-1.591v-9a2.25 2.25 0 0 0-2.25-2.25h-9c-.621 0-1.184.252-1.591.659m12.182 12.182L2.909 5.909M1.5 4.5l1.409 1.409"})])}function SN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m15.75 10.5 4.72-4.72a.75.75 0 0 1 1.28.53v11.38a.75.75 0 0 1-1.28.53l-4.72-4.72M4.5 18.75h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25h-9A2.25 2.25 0 0 0 2.25 7.5v9a2.25 2.25 0 0 0 2.25 2.25Z"})])}function $N(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9 4.5v15m6-15v15m-10.875 0h15.75c.621 0 1.125-.504 1.125-1.125V5.625c0-.621-.504-1.125-1.125-1.125H4.125C3.504 4.5 3 5.004 3 5.625v12.75c0 .621.504 1.125 1.125 1.125Z"})])}function IN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M7.5 3.75H6A2.25 2.25 0 0 0 3.75 6v1.5M16.5 3.75H18A2.25 2.25 0 0 1 20.25 6v1.5m0 9V18A2.25 2.25 0 0 1 18 20.25h-1.5m-9 0H6A2.25 2.25 0 0 1 3.75 18v-1.5M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"})])}function HN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21 12a2.25 2.25 0 0 0-2.25-2.25H15a3 3 0 1 1-6 0H5.25A2.25 2.25 0 0 0 3 12m18 0v6a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 18v-6m18 0V9M3 12V9m18 0a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 9m18 0V6a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 6v3"})])}function TN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M8.288 15.038a5.25 5.25 0 0 1 7.424 0M5.106 11.856c3.807-3.808 9.98-3.808 13.788 0M1.924 8.674c5.565-5.565 14.587-5.565 20.152 0M12.53 18.22l-.53.53-.53-.53a.75.75 0 0 1 1.06 0Z"})])}function LN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3 8.25V18a2.25 2.25 0 0 0 2.25 2.25h13.5A2.25 2.25 0 0 0 21 18V8.25m-18 0V6a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 6v2.25m-18 0h18M5.25 6h.008v.008H5.25V6ZM7.5 6h.008v.008H7.5V6Zm2.25 0h.008v.008H9.75V6Z"})])}function DN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M11.42 15.17 17.25 21A2.652 2.652 0 0 0 21 17.25l-5.877-5.877M11.42 15.17l2.496-3.03c.317-.384.74-.626 1.208-.766M11.42 15.17l-4.655 5.653a2.548 2.548 0 1 1-3.586-3.586l6.837-5.63m5.108-.233c.55-.164 1.163-.188 1.743-.14a4.5 4.5 0 0 0 4.486-6.336l-3.276 3.277a3.004 3.004 0 0 1-2.25-2.25l3.276-3.276a4.5 4.5 0 0 0-6.336 4.486c.091 1.076-.071 2.264-.904 2.95l-.102.085m-1.745 1.437L5.909 7.5H4.5L2.25 3.75l1.5-1.5L7.5 4.5v1.409l4.26 4.26m-1.745 1.437 1.745-1.437m6.615 8.206L15.75 15.75M4.867 19.125h.008v.008h-.008v-.008Z"})])}function PN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21.75 6.75a4.5 4.5 0 0 1-4.884 4.484c-1.076-.091-2.264.071-2.95.904l-7.152 8.684a2.548 2.548 0 1 1-3.586-3.586l8.684-7.152c.833-.686.995-1.874.904-2.95a4.5 4.5 0 0 1 6.336-4.486l-3.276 3.276a3.004 3.004 0 0 0 2.25 2.25l3.276-3.276c.256.565.398 1.192.398 1.852Z"}),e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M4.867 19.125h.008v.008h-.008v-.008Z"})])}function ON(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m9.75 9.75 4.5 4.5m0-4.5-4.5 4.5M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"})])}function RN(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6 18 18 6M6 6l12 12"})])}const cl=Object.freeze(Object.defineProperty({__proto__:null,AcademicCapIcon:zb,AdjustmentsHorizontalIcon:jb,AdjustmentsVerticalIcon:Fb,ArchiveBoxArrowDownIcon:Ub,ArchiveBoxIcon:qb,ArchiveBoxXMarkIcon:Wb,ArrowDownCircleIcon:Yb,ArrowDownIcon:eC,ArrowDownLeftIcon:Kb,ArrowDownOnSquareIcon:Jb,ArrowDownOnSquareStackIcon:Gb,ArrowDownRightIcon:Xb,ArrowDownTrayIcon:Qb,ArrowLeftCircleIcon:tC,ArrowLeftEndOnRectangleIcon:nC,ArrowLeftIcon:aC,ArrowLeftOnRectangleIcon:rC,ArrowLeftStartOnRectangleIcon:oC,ArrowLongDownIcon:lC,ArrowLongLeftIcon:iC,ArrowLongRightIcon:cC,ArrowLongUpIcon:sC,ArrowPathIcon:uC,ArrowPathRoundedSquareIcon:dC,ArrowRightCircleIcon:hC,ArrowRightEndOnRectangleIcon:pC,ArrowRightIcon:wC,ArrowRightOnRectangleIcon:fC,ArrowRightStartOnRectangleIcon:mC,ArrowSmallDownIcon:gC,ArrowSmallLeftIcon:kC,ArrowSmallRightIcon:xC,ArrowSmallUpIcon:vC,ArrowTopRightOnSquareIcon:yC,ArrowTrendingDownIcon:BC,ArrowTrendingUpIcon:EC,ArrowTurnDownLeftIcon:bC,ArrowTurnDownRightIcon:CC,ArrowTurnLeftDownIcon:MC,ArrowTurnLeftUpIcon:VC,ArrowTurnRightDownIcon:AC,ArrowTurnRightUpIcon:_C,ArrowTurnUpLeftIcon:NC,ArrowTurnUpRightIcon:ZC,ArrowUpCircleIcon:SC,ArrowUpIcon:DC,ArrowUpLeftIcon:$C,ArrowUpOnSquareIcon:HC,ArrowUpOnSquareStackIcon:IC,ArrowUpRightIcon:TC,ArrowUpTrayIcon:LC,ArrowUturnDownIcon:PC,ArrowUturnLeftIcon:OC,ArrowUturnRightIcon:RC,ArrowUturnUpIcon:zC,ArrowsPointingInIcon:jC,ArrowsPointingOutIcon:FC,ArrowsRightLeftIcon:UC,ArrowsUpDownIcon:WC,AtSymbolIcon:qC,BackspaceIcon:YC,BackwardIcon:KC,BanknotesIcon:GC,Bars2Icon:JC,Bars3BottomLeftIcon:XC,Bars3BottomRightIcon:QC,Bars3CenterLeftIcon:eM,Bars3Icon:tM,Bars4Icon:nM,BarsArrowDownIcon:rM,BarsArrowUpIcon:oM,Battery0Icon:aM,Battery100Icon:lM,Battery50Icon:iM,BeakerIcon:cM,BellAlertIcon:sM,BellIcon:hM,BellSlashIcon:dM,BellSnoozeIcon:uM,BoldIcon:pM,BoltIcon:mM,BoltSlashIcon:fM,BookOpenIcon:wM,BookmarkIcon:xM,BookmarkSlashIcon:gM,BookmarkSquareIcon:kM,BriefcaseIcon:vM,BugAntIcon:yM,BuildingLibraryIcon:BM,BuildingOffice2Icon:EM,BuildingOfficeIcon:bM,BuildingStorefrontIcon:CM,CakeIcon:MM,CalculatorIcon:VM,CalendarDateRangeIcon:AM,CalendarDaysIcon:_M,CalendarIcon:NM,CameraIcon:ZM,ChartBarIcon:$M,ChartBarSquareIcon:SM,ChartPieIcon:IM,ChatBubbleBottomCenterIcon:TM,ChatBubbleBottomCenterTextIcon:HM,ChatBubbleLeftEllipsisIcon:LM,ChatBubbleLeftIcon:PM,ChatBubbleLeftRightIcon:DM,ChatBubbleOvalLeftEllipsisIcon:OM,ChatBubbleOvalLeftIcon:RM,CheckBadgeIcon:zM,CheckCircleIcon:jM,CheckIcon:FM,ChevronDoubleDownIcon:UM,ChevronDoubleLeftIcon:WM,ChevronDoubleRightIcon:qM,ChevronDoubleUpIcon:YM,ChevronDownIcon:KM,ChevronLeftIcon:GM,ChevronRightIcon:JM,ChevronUpDownIcon:XM,ChevronUpIcon:QM,CircleStackIcon:eV,ClipboardDocumentCheckIcon:tV,ClipboardDocumentIcon:rV,ClipboardDocumentListIcon:nV,ClipboardIcon:oV,ClockIcon:aV,CloudArrowDownIcon:lV,CloudArrowUpIcon:iV,CloudIcon:cV,CodeBracketIcon:dV,CodeBracketSquareIcon:sV,Cog6ToothIcon:uV,Cog8ToothIcon:hV,CogIcon:pV,CommandLineIcon:fV,ComputerDesktopIcon:mV,CpuChipIcon:wV,CreditCardIcon:gV,CubeIcon:xV,CubeTransparentIcon:kV,CurrencyBangladeshiIcon:vV,CurrencyDollarIcon:yV,CurrencyEuroIcon:BV,CurrencyPoundIcon:EV,CurrencyRupeeIcon:bV,CurrencyYenIcon:CV,CursorArrowRaysIcon:MV,CursorArrowRippleIcon:VV,DevicePhoneMobileIcon:AV,DeviceTabletIcon:_V,DivideIcon:NV,DocumentArrowDownIcon:ZV,DocumentArrowUpIcon:SV,DocumentChartBarIcon:$V,DocumentCheckIcon:IV,DocumentCurrencyBangladeshiIcon:HV,DocumentCurrencyDollarIcon:TV,DocumentCurrencyEuroIcon:LV,DocumentCurrencyPoundIcon:DV,DocumentCurrencyRupeeIcon:PV,DocumentCurrencyYenIcon:OV,DocumentDuplicateIcon:RV,DocumentIcon:WV,DocumentMagnifyingGlassIcon:zV,DocumentMinusIcon:jV,DocumentPlusIcon:FV,DocumentTextIcon:UV,EllipsisHorizontalCircleIcon:qV,EllipsisHorizontalIcon:YV,EllipsisVerticalIcon:KV,EnvelopeIcon:JV,EnvelopeOpenIcon:GV,EqualsIcon:XV,ExclamationCircleIcon:QV,ExclamationTriangleIcon:eA,EyeDropperIcon:tA,EyeIcon:rA,EyeSlashIcon:nA,FaceFrownIcon:oA,FaceSmileIcon:aA,FilmIcon:lA,FingerPrintIcon:iA,FireIcon:cA,FlagIcon:sA,FolderArrowDownIcon:dA,FolderIcon:fA,FolderMinusIcon:uA,FolderOpenIcon:hA,FolderPlusIcon:pA,ForwardIcon:mA,FunnelIcon:wA,GifIcon:gA,GiftIcon:xA,GiftTopIcon:kA,GlobeAltIcon:vA,GlobeAmericasIcon:yA,GlobeAsiaAustraliaIcon:BA,GlobeEuropeAfricaIcon:EA,H1Icon:bA,H2Icon:CA,H3Icon:MA,HandRaisedIcon:VA,HandThumbDownIcon:AA,HandThumbUpIcon:_A,HashtagIcon:NA,HeartIcon:ZA,HomeIcon:$A,HomeModernIcon:SA,IdentificationIcon:IA,InboxArrowDownIcon:HA,InboxIcon:LA,InboxStackIcon:TA,InformationCircleIcon:DA,ItalicIcon:PA,KeyIcon:OA,LanguageIcon:RA,LifebuoyIcon:zA,LightBulbIcon:jA,LinkIcon:UA,LinkSlashIcon:FA,ListBulletIcon:WA,LockClosedIcon:qA,LockOpenIcon:YA,MagnifyingGlassCircleIcon:KA,MagnifyingGlassIcon:XA,MagnifyingGlassMinusIcon:GA,MagnifyingGlassPlusIcon:JA,MapIcon:e_,MapPinIcon:QA,MegaphoneIcon:t_,MicrophoneIcon:n_,MinusCircleIcon:r_,MinusIcon:a_,MinusSmallIcon:o_,MoonIcon:l_,MusicalNoteIcon:i_,NewspaperIcon:c_,NoSymbolIcon:s_,NumberedListIcon:d_,PaintBrushIcon:u_,PaperAirplaneIcon:h_,PaperClipIcon:p_,PauseCircleIcon:f_,PauseIcon:m_,PencilIcon:g_,PencilSquareIcon:w_,PercentBadgeIcon:k_,PhoneArrowDownLeftIcon:x_,PhoneArrowUpRightIcon:v_,PhoneIcon:B_,PhoneXMarkIcon:y_,PhotoIcon:E_,PlayCircleIcon:b_,PlayIcon:M_,PlayPauseIcon:C_,PlusCircleIcon:V_,PlusIcon:__,PlusSmallIcon:A_,PowerIcon:N_,PresentationChartBarIcon:Z_,PresentationChartLineIcon:S_,PrinterIcon:$_,PuzzlePieceIcon:I_,QrCodeIcon:H_,QuestionMarkCircleIcon:T_,QueueListIcon:L_,RadioIcon:D_,ReceiptPercentIcon:P_,ReceiptRefundIcon:O_,RectangleGroupIcon:R_,RectangleStackIcon:z_,RocketLaunchIcon:j_,RssIcon:F_,ScaleIcon:U_,ScissorsIcon:W_,ServerIcon:Y_,ServerStackIcon:q_,ShareIcon:K_,ShieldCheckIcon:G_,ShieldExclamationIcon:J_,ShoppingBagIcon:X_,ShoppingCartIcon:Q_,SignalIcon:tN,SignalSlashIcon:eN,SlashIcon:nN,SparklesIcon:rN,SpeakerWaveIcon:oN,SpeakerXMarkIcon:aN,Square2StackIcon:lN,Square3Stack3DIcon:iN,Squares2X2Icon:cN,SquaresPlusIcon:sN,StarIcon:dN,StopCircleIcon:uN,StopIcon:hN,StrikethroughIcon:pN,SunIcon:fN,SwatchIcon:mN,TableCellsIcon:wN,TagIcon:gN,TicketIcon:kN,TrashIcon:xN,TrophyIcon:vN,TruckIcon:yN,TvIcon:BN,UnderlineIcon:EN,UserCircleIcon:bN,UserGroupIcon:CN,UserIcon:AN,UserMinusIcon:MN,UserPlusIcon:VN,UsersIcon:_N,VariableIcon:NN,VideoCameraIcon:SN,VideoCameraSlashIcon:ZN,ViewColumnsIcon:$N,ViewfinderCircleIcon:IN,WalletIcon:HN,WifiIcon:TN,WindowIcon:LN,WrenchIcon:PN,WrenchScrewdriverIcon:DN,XCircleIcon:ON,XMarkIcon:RN},Symbol.toStringTag,{value:"Module"})),zN=["value","placeholder"],sl=Object.freeze(Object.defineProperty({__proto__:null,default:De({__name:"InputSearch",props:{modelValue:{type:[String,Number],default:""},label:{type:[String,Object],default:""},placeholder:{type:String,default:"Search..."},hint:{type:String,default:""},error:{type:String,default:""},errorMessages:{type:Array,default:()=>[]},disabled:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},required:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},loading:{type:Boolean,default:!1},prepend:{type:String,default:""},append:{type:String,default:""},rules:{type:Array,default:()=>[]},debounce:{type:Number,default:300},size:{type:String},rounded:{type:String},border:{type:String},textColor:{type:String},bg:{type:String},containerClass:{type:String,default:""},id:{type:String,default:""},width:{type:String,default:"w-full"},dir:{type:String,default:""},lang:{type:String,default:""},items:{type:Array,default:()=>[]},itemText:{type:String,default:"text"},itemValue:{type:String,default:"value"}},emits:["update:modelValue","input","change","focus","blur","clear","search","enter"],setup(n,{expose:t,emit:r}){const o=n,a=e.inject("parentDir",""),l=e.inject("parentLang",""),i=e.computed(()=>o.dir||a),c=e.computed(()=>o.lang||l),s=r,d=e.ref(null),u=e.ref(null),h=e.ref(!1);let f=null;const p=e.computed(()=>o.id||`search-${Math.random().toString(36).substr(2,9)}`),m=e.computed(()=>["w-full bg-transparent outline-none border-none","placeholder:text-gray-400","focus:outline-none"]),w=C=>{const A=C.target.value;s("update:modelValue",A),clearTimeout(f),f=setTimeout(()=>{s("input",A),s("search",A)},o.debounce)},g=C=>{h.value=!0,s("focus",C)},k=C=>{h.value=!1,s("blur",C)},x=C=>{s("enter",o.modelValue),s("search",o.modelValue)},v=()=>{s("update:modelValue",""),s("clear"),d.value?.focus()},b=()=>{d.value?.focus()};return e.onBeforeUnmount(()=>{clearTimeout(f)}),t({focus:b,clear:v}),(C,A)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"containerRef",ref:u,class:e.normalizeClass(["relative",n.containerClass,n.width])},[e.createVNode(e.unref(pn),{"model-value":n.modelValue,label:n.label,hint:n.hint,"persistent-hint":!!n.hint,disabled:n.disabled,readonly:n.readonly,required:n.required,error:!!n.error||n.errorMessages.length>0,"error-messages":n.errorMessages,clearable:n.clearable&&!n.loading,size:n.size,id:p.value,prepend:n.prepend,append:n.append,"is-open":h.value,"onClick:clear":v,bg:n.bg,border:n.border,"text-color":n.textColor,rounded:n.rounded,dir:i.value,lang:c.value,width:n.width,rules:n.rules},e.createSlots({control:e.withCtx(({attrs:y,events:B})=>[e.createElementVNode("input",e.mergeProps({ref_key:"inputRef",ref:d},y,e.toHandlers(B,!0),{type:"search",value:n.modelValue,placeholder:h.value&&!n.modelValue||!n.label&&!n.modelValue?n.placeholder:"",class:m.value,onInput:w,onKeydown:e.withKeys(x,["enter"]),onFocus:g,onBlur:k}),null,16,zN)]),_:2},[n.loading?{name:"append",fn:e.withCtx(()=>[A[0]||(A[0]=e.createElementVNode("svg",{class:"animate-spin h-4 w-4",fill:"none",viewBox:"0 0 24 24"},[e.createElementVNode("circle",{class:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor","stroke-width":"4"}),e.createElementVNode("path",{class:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 714 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})],-1))]),key:"0"}:void 0]),1032,["model-value","label","hint","persistent-hint","disabled","readonly","required","error","error-messages","clearable","size","id","prepend","append","is-open","bg","border","text-color","rounded","dir","lang","width","rules"])],2))}},[["__scopeId","data-v-eb472641"]])},Symbol.toStringTag,{value:"Module"})),jN={class:"p-6 space-y-6"},FN=e.defineComponent({__name:"BreadcrumbExample",setup(n){const t=[{label:"އުޅޭތަން",href:"/"},{label:"ޕްރޮޖެކްޓްސް",href:"/projects"},{label:"ކުދި ޕްރޮޖެކްޓްސް",disabled:!0}],r=[{label:"Home",href:"/"},{label:"Projects",href:"/projects"},{label:"Smaller projects",disabled:!0}];return(o,a)=>(e.openBlock(),e.createElementBlock("div",jN,[e.createElementVNode("section",null,[a[0]||(a[0]=e.createElementVNode("h3",{class:"mb-2 font-medium"}," From Router ",-1)),e.createVNode(fr)]),e.createVNode(fr,{items:t}),e.createVNode(fr,{items:t,"container-class":"text-[var(--vts-color-primary)]","item-class":"hover:underline","active-class":"text-[var(--vts-color-text)]"},{prepend:e.withCtx(()=>[...a[1]||(a[1]=[e.createElementVNode("span",{class:"text-[var(--vts-color-primary)]"},"📁 ",-1)])]),divider:e.withCtx(()=>[...a[2]||(a[2]=[e.createElementVNode("span",{class:"text-[var(--vts-color-textSecondary)]"},"/",-1)])]),_:1}),e.createElementVNode("div",null,[e.createVNode(fr,{items:r,"container-class":"text-[var(--vts-color-text)]"})])]))}}),UN={class:"flex gap-2"},WN={class:"flex items-center justify-between"},qN={class:"space-y-2"},YN={class:"flex items-center justify-between"},KN=De(e.defineComponent({__name:"ModalExample",setup(n){const t=e.ref(!1),r=e.ref(!1),o=e.ref(!1),a=e.ref(!1),l=e.computed(()=>({color:"var(--vts-color-text)"})),i=e.computed(()=>({color:"var(--vts-color-text)"}));return(c,s)=>(e.openBlock(),e.createElementBlock("div",UN,[e.createVNode(tt,{color:"primary",onClick:s[0]||(s[0]=d=>t.value=!0)},{default:e.withCtx(()=>[...s[12]||(s[12]=[e.createTextVNode("Open Basic Modal",-1)])]),_:1}),e.createVNode(tt,{color:"primary",onClick:s[1]||(s[1]=d=>r.value=!0)},{default:e.withCtx(()=>[...s[13]||(s[13]=[e.createTextVNode("Open Persistent Modal",-1)])]),_:1}),e.createVNode(tt,{color:"primary",onClick:s[2]||(s[2]=d=>o.value=!0)},{default:e.withCtx(()=>[...s[14]||(s[14]=[e.createTextVNode("Open Bottom Sheet",-1)])]),_:1}),e.createVNode(tt,{color:"primary",onClick:s[3]||(s[3]=d=>a.value=!0)},{default:e.withCtx(()=>[...s[15]||(s[15]=[e.createTextVNode("Open Fullscreen Modal",-1)])]),_:1}),e.createVNode(bn,{modelValue:t.value,"onUpdate:modelValue":s[5]||(s[5]=d=>t.value=d)},{header:e.withCtx(()=>[e.createElementVNode("div",WN,[e.createElementVNode("h2",{class:"text-lg font-semibold",style:e.normalizeStyle(l.value)},"Basic Modal",4),e.createVNode(tt,{color:"primary",onClick:s[4]||(s[4]=d=>t.value=!1)},{default:e.withCtx(()=>[...s[16]||(s[16]=[e.createTextVNode("Close",-1)])]),_:1})])]),default:e.withCtx(()=>[e.createElementVNode("p",{style:e.normalizeStyle(i.value)},"Click outside or press ESC to close.",4)]),_:1},8,["modelValue"]),e.createVNode(bn,{modelValue:r.value,"onUpdate:modelValue":s[7]||(s[7]=d=>r.value=d),persistent:""},{header:e.withCtx(()=>[e.createElementVNode("h2",{class:"text-lg font-semibold faruma",style:e.normalizeStyle(l.value)},"ތަޅުވާ މޮޑެލް",4)]),footer:e.withCtx(()=>[e.createVNode(tt,{class:"faruma",color:"primary",onClick:s[6]||(s[6]=d=>r.value=!1)},{default:e.withCtx(()=>[...s[17]||(s[17]=[e.createTextVNode("ފަހިމްތި",-1)])]),_:1})]),default:e.withCtx(()=>[e.createElementVNode("p",{class:"faruma",style:e.normalizeStyle(i.value)},"ތެޅެންޔާ ތަޅުވާނެ",4)]),_:1},8,["modelValue"]),e.createVNode(bn,{modelValue:o.value,"onUpdate:modelValue":s[8]||(s[8]=d=>o.value=d),transition:"bottom","modal-class":"rounded",title:"Header",rounded:"lg"},{footer:e.withCtx(()=>[e.createElementVNode("h2",{class:"text-lg font-semibold",style:e.normalizeStyle(l.value)},"Footer",4)]),default:e.withCtx(()=>[e.createElementVNode("p",{class:"mb-4 faruma",style:e.normalizeStyle(i.value)},"ސްކްރޯލް",4),e.createElementVNode("div",qN,[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(60,d=>e.createElementVNode("p",{key:d,class:"faruma",style:e.normalizeStyle(i.value)},"ވަރަށް ގިނަ ބައިވަރު އެކި އެކި ލިޔުންލިޔަން ހިތާ ހިތާ "+e.toDisplayString(d),5)),64))])]),_:1},8,["modelValue"]),e.createVNode(bn,{modelValue:a.value,"onUpdate:modelValue":s[11]||(s[11]=d=>a.value=d),fullscreen:"",transition:"right"},{header:e.withCtx(()=>[e.createElementVNode("div",YN,[e.createElementVNode("h2",{class:"text-lg font-semibold",style:e.normalizeStyle(l.value)},"Fullscreen Modal",4),e.createVNode(tt,{color:"primary",onClick:s[9]||(s[9]=d=>a.value=!1)},{default:e.withCtx(()=>[...s[18]||(s[18]=[e.createTextVNode("Close",-1)])]),_:1})])]),footer:e.withCtx(()=>[e.createVNode(tt,{color:"primary",onClick:s[10]||(s[10]=d=>a.value=!1)},{default:e.withCtx(()=>[...s[19]||(s[19]=[e.createTextVNode("Close",-1)])]),_:1})]),default:e.withCtx(()=>[e.createElementVNode("p",{style:e.normalizeStyle(i.value)},"Slides in from the right and occupies full viewport.",4)]),_:1},8,["modelValue"])]))}}),[["__scopeId","data-v-f78789d1"]]),GN={class:"max-w-5xl mx-auto p-4 mt-6 border space-y-3"},JN={class:"max-w-5xl mx-auto p-4 mt-6 border space-y-3"},XN={__name:"Home",setup(n){return e.ref(!1),e.ref(!0),e.ref(void 0),e.ref(!0),e.ref(et.value?"right":"left"),e.ref(!1),e.ref(!0),e.ref(!1),e.ref(!1),e.ref(!1),(t,r)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("div",GN,[e.createVNode(KN)]),e.createElementVNode("div",JN,[e.createVNode(FN)])],64))}},QN=oi({themes:so,defaultTheme:"default",defaultVariant:"light"});typeof window<"u"&&(window.__VTS_PLUGIN__=QN,window.__VTS_THEMES__=Object.keys(so));const Xd=localStorage.getItem("rtlSetting");Xd!==null?(et.value=JSON.parse(Xd),_0(et.value)):(et.value=!0,_0(et.value));const Qd={install(n){n.component("Button",tt),n.component("HeroIcon",Xi),n.component("Card",Eo),n.provide("api",_l),n.provide("globalRtl",et),n.provide("setRtl",_0),n.provide("drawerOpen",Ji),n.use(pi),n.use(w3,{position:"top-right",timeout:5e3}),n.directive("tooltip",y3)}};function eZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M11.7 2.805a.75.75 0 0 1 .6 0A60.65 60.65 0 0 1 22.83 8.72a.75.75 0 0 1-.231 1.337 49.948 49.948 0 0 0-9.902 3.912l-.003.002c-.114.06-.227.119-.34.18a.75.75 0 0 1-.707 0A50.88 50.88 0 0 0 7.5 12.173v-.224c0-.131.067-.248.172-.311a54.615 54.615 0 0 1 4.653-2.52.75.75 0 0 0-.65-1.352 56.123 56.123 0 0 0-4.78 2.589 1.858 1.858 0 0 0-.859 1.228 49.803 49.803 0 0 0-4.634-1.527.75.75 0 0 1-.231-1.337A60.653 60.653 0 0 1 11.7 2.805Z"}),e.createElementVNode("path",{d:"M13.06 15.473a48.45 48.45 0 0 1 7.666-3.282c.134 1.414.22 2.843.255 4.284a.75.75 0 0 1-.46.711 47.87 47.87 0 0 0-8.105 4.342.75.75 0 0 1-.832 0 47.87 47.87 0 0 0-8.104-4.342.75.75 0 0 1-.461-.71c.035-1.442.121-2.87.255-4.286.921.304 1.83.634 2.726.99v1.27a1.5 1.5 0 0 0-.14 2.508c-.09.38-.222.753-.397 1.11.452.213.901.434 1.346.66a6.727 6.727 0 0 0 .551-1.607 1.5 1.5 0 0 0 .14-2.67v-.645a48.549 48.549 0 0 1 3.44 1.667 2.25 2.25 0 0 0 2.12 0Z"}),e.createElementVNode("path",{d:"M4.462 19.462c.42-.419.753-.89 1-1.395.453.214.902.435 1.347.662a6.742 6.742 0 0 1-1.286 1.794.75.75 0 0 1-1.06-1.06Z"})])}function tZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M18.75 12.75h1.5a.75.75 0 0 0 0-1.5h-1.5a.75.75 0 0 0 0 1.5ZM12 6a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 12 6ZM12 18a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 12 18ZM3.75 6.75h1.5a.75.75 0 1 0 0-1.5h-1.5a.75.75 0 0 0 0 1.5ZM5.25 18.75h-1.5a.75.75 0 0 1 0-1.5h1.5a.75.75 0 0 1 0 1.5ZM3 12a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 3 12ZM9 3.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM12.75 12a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0ZM9 15.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Z"})])}function nZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6 12a.75.75 0 0 1-.75-.75v-7.5a.75.75 0 1 1 1.5 0v7.5A.75.75 0 0 1 6 12ZM18 12a.75.75 0 0 1-.75-.75v-7.5a.75.75 0 0 1 1.5 0v7.5A.75.75 0 0 1 18 12ZM6.75 20.25v-1.5a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0ZM18.75 18.75v1.5a.75.75 0 0 1-1.5 0v-1.5a.75.75 0 0 1 1.5 0ZM12.75 5.25v-1.5a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0ZM12 21a.75.75 0 0 1-.75-.75v-7.5a.75.75 0 0 1 1.5 0v7.5A.75.75 0 0 1 12 21ZM3.75 15a2.25 2.25 0 1 0 4.5 0 2.25 2.25 0 0 0-4.5 0ZM12 11.25a2.25 2.25 0 1 1 0-4.5 2.25 2.25 0 0 1 0 4.5ZM15.75 15a2.25 2.25 0 1 0 4.5 0 2.25 2.25 0 0 0-4.5 0Z"})])}function rZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.375 3C2.339 3 1.5 3.84 1.5 4.875v.75c0 1.036.84 1.875 1.875 1.875h17.25c1.035 0 1.875-.84 1.875-1.875v-.75C22.5 3.839 21.66 3 20.625 3H3.375Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"m3.087 9 .54 9.176A3 3 0 0 0 6.62 21h10.757a3 3 0 0 0 2.995-2.824L20.913 9H3.087ZM12 10.5a.75.75 0 0 1 .75.75v4.94l1.72-1.72a.75.75 0 1 1 1.06 1.06l-3 3a.75.75 0 0 1-1.06 0l-3-3a.75.75 0 1 1 1.06-1.06l1.72 1.72v-4.94a.75.75 0 0 1 .75-.75Z","clip-rule":"evenodd"})])}function oZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.375 3C2.339 3 1.5 3.84 1.5 4.875v.75c0 1.036.84 1.875 1.875 1.875h17.25c1.035 0 1.875-.84 1.875-1.875v-.75C22.5 3.839 21.66 3 20.625 3H3.375Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"m3.087 9 .54 9.176A3 3 0 0 0 6.62 21h10.757a3 3 0 0 0 2.995-2.824L20.913 9H3.087Zm6.133 2.845a.75.75 0 0 1 1.06 0l1.72 1.72 1.72-1.72a.75.75 0 1 1 1.06 1.06l-1.72 1.72 1.72 1.72a.75.75 0 1 1-1.06 1.06L12 15.685l-1.72 1.72a.75.75 0 1 1-1.06-1.06l1.72-1.72-1.72-1.72a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function aZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.375 3C2.339 3 1.5 3.84 1.5 4.875v.75c0 1.036.84 1.875 1.875 1.875h17.25c1.035 0 1.875-.84 1.875-1.875v-.75C22.5 3.839 21.66 3 20.625 3H3.375Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"m3.087 9 .54 9.176A3 3 0 0 0 6.62 21h10.757a3 3 0 0 0 2.995-2.824L20.913 9H3.087Zm6.163 3.75A.75.75 0 0 1 10 12h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function lZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25Zm-.53 14.03a.75.75 0 0 0 1.06 0l3-3a.75.75 0 1 0-1.06-1.06l-1.72 1.72V8.25a.75.75 0 0 0-1.5 0v5.69l-1.72-1.72a.75.75 0 0 0-1.06 1.06l3 3Z","clip-rule":"evenodd"})])}function iZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M20.03 3.97a.75.75 0 0 1 0 1.06L6.31 18.75h9.44a.75.75 0 0 1 0 1.5H4.5a.75.75 0 0 1-.75-.75V8.25a.75.75 0 0 1 1.5 0v9.44L18.97 3.97a.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function cZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.75 6.75h-3a3 3 0 0 0-3 3v7.5a3 3 0 0 0 3 3h7.5a3 3 0 0 0 3-3v-7.5a3 3 0 0 0-3-3h-3V1.5a.75.75 0 0 0-1.5 0v5.25Zm0 0h1.5v5.69l1.72-1.72a.75.75 0 1 1 1.06 1.06l-3 3a.75.75 0 0 1-1.06 0l-3-3a.75.75 0 1 1 1.06-1.06l1.72 1.72V6.75Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M7.151 21.75a2.999 2.999 0 0 0 2.599 1.5h7.5a3 3 0 0 0 3-3v-7.5c0-1.11-.603-2.08-1.5-2.599v7.099a4.5 4.5 0 0 1-4.5 4.5H7.151Z"})])}function sZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M12 1.5a.75.75 0 0 1 .75.75V7.5h-1.5V2.25A.75.75 0 0 1 12 1.5ZM11.25 7.5v5.69l-1.72-1.72a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0l3-3a.75.75 0 1 0-1.06-1.06l-1.72 1.72V7.5h3.75a3 3 0 0 1 3 3v9a3 3 0 0 1-3 3h-9a3 3 0 0 1-3-3v-9a3 3 0 0 1 3-3h3.75Z"})])}function dZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.97 3.97a.75.75 0 0 1 1.06 0l13.72 13.72V8.25a.75.75 0 0 1 1.5 0V19.5a.75.75 0 0 1-.75.75H8.25a.75.75 0 0 1 0-1.5h9.44L3.97 5.03a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function uZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25a.75.75 0 0 1 .75.75v11.69l3.22-3.22a.75.75 0 1 1 1.06 1.06l-4.5 4.5a.75.75 0 0 1-1.06 0l-4.5-4.5a.75.75 0 1 1 1.06-1.06l3.22 3.22V3a.75.75 0 0 1 .75-.75Zm-9 13.5a.75.75 0 0 1 .75.75v2.25a1.5 1.5 0 0 0 1.5 1.5h13.5a1.5 1.5 0 0 0 1.5-1.5V16.5a.75.75 0 0 1 1.5 0v2.25a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3V16.5a.75.75 0 0 1 .75-.75Z","clip-rule":"evenodd"})])}function hZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25a.75.75 0 0 1 .75.75v16.19l6.22-6.22a.75.75 0 1 1 1.06 1.06l-7.5 7.5a.75.75 0 0 1-1.06 0l-7.5-7.5a.75.75 0 1 1 1.06-1.06l6.22 6.22V3a.75.75 0 0 1 .75-.75Z","clip-rule":"evenodd"})])}function pZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25Zm-4.28 9.22a.75.75 0 0 0 0 1.06l3 3a.75.75 0 1 0 1.06-1.06l-1.72-1.72h5.69a.75.75 0 0 0 0-1.5h-5.69l1.72-1.72a.75.75 0 0 0-1.06-1.06l-3 3Z","clip-rule":"evenodd"})])}function fZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.5 3.75A1.5 1.5 0 0 0 6 5.25v13.5a1.5 1.5 0 0 0 1.5 1.5h6a1.5 1.5 0 0 0 1.5-1.5V15a.75.75 0 0 1 1.5 0v3.75a3 3 0 0 1-3 3h-6a3 3 0 0 1-3-3V5.25a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3V9A.75.75 0 0 1 15 9V5.25a1.5 1.5 0 0 0-1.5-1.5h-6Zm5.03 4.72a.75.75 0 0 1 0 1.06l-1.72 1.72h10.94a.75.75 0 0 1 0 1.5H10.81l1.72 1.72a.75.75 0 1 1-1.06 1.06l-3-3a.75.75 0 0 1 0-1.06l3-3a.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function mZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.5 3.75A1.5 1.5 0 0 0 6 5.25v13.5a1.5 1.5 0 0 0 1.5 1.5h6a1.5 1.5 0 0 0 1.5-1.5V15a.75.75 0 0 1 1.5 0v3.75a3 3 0 0 1-3 3h-6a3 3 0 0 1-3-3V5.25a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3V9A.75.75 0 0 1 15 9V5.25a1.5 1.5 0 0 0-1.5-1.5h-6Zm5.03 4.72a.75.75 0 0 1 0 1.06l-1.72 1.72h10.94a.75.75 0 0 1 0 1.5H10.81l1.72 1.72a.75.75 0 1 1-1.06 1.06l-3-3a.75.75 0 0 1 0-1.06l3-3a.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function wZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M16.5 3.75a1.5 1.5 0 0 1 1.5 1.5v13.5a1.5 1.5 0 0 1-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5V15a.75.75 0 0 0-1.5 0v3.75a3 3 0 0 0 3 3h6a3 3 0 0 0 3-3V5.25a3 3 0 0 0-3-3h-6a3 3 0 0 0-3 3V9A.75.75 0 1 0 9 9V5.25a1.5 1.5 0 0 1 1.5-1.5h6ZM5.78 8.47a.75.75 0 0 0-1.06 0l-3 3a.75.75 0 0 0 0 1.06l3 3a.75.75 0 0 0 1.06-1.06l-1.72-1.72H15a.75.75 0 0 0 0-1.5H4.06l1.72-1.72a.75.75 0 0 0 0-1.06Z","clip-rule":"evenodd"})])}function gZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.03 3.97a.75.75 0 0 1 0 1.06l-6.22 6.22H21a.75.75 0 0 1 0 1.5H4.81l6.22 6.22a.75.75 0 1 1-1.06 1.06l-7.5-7.5a.75.75 0 0 1 0-1.06l7.5-7.5a.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function kZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25a.75.75 0 0 1 .75.75v16.19l2.47-2.47a.75.75 0 1 1 1.06 1.06l-3.75 3.75a.75.75 0 0 1-1.06 0l-3.75-3.75a.75.75 0 1 1 1.06-1.06l2.47 2.47V3a.75.75 0 0 1 .75-.75Z","clip-rule":"evenodd"})])}function xZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.28 7.72a.75.75 0 0 1 0 1.06l-2.47 2.47H21a.75.75 0 0 1 0 1.5H4.81l2.47 2.47a.75.75 0 1 1-1.06 1.06l-3.75-3.75a.75.75 0 0 1 0-1.06l3.75-3.75a.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function vZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M16.72 7.72a.75.75 0 0 1 1.06 0l3.75 3.75a.75.75 0 0 1 0 1.06l-3.75 3.75a.75.75 0 1 1-1.06-1.06l2.47-2.47H3a.75.75 0 0 1 0-1.5h16.19l-2.47-2.47a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function yZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.47 2.47a.75.75 0 0 1 1.06 0l3.75 3.75a.75.75 0 0 1-1.06 1.06l-2.47-2.47V21a.75.75 0 0 1-1.5 0V4.81L8.78 7.28a.75.75 0 0 1-1.06-1.06l3.75-3.75Z","clip-rule":"evenodd"})])}function BZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 5.25c1.213 0 2.415.046 3.605.135a3.256 3.256 0 0 1 3.01 3.01c.044.583.077 1.17.1 1.759L17.03 8.47a.75.75 0 1 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0l3-3a.75.75 0 0 0-1.06-1.06l-1.752 1.751c-.023-.65-.06-1.296-.108-1.939a4.756 4.756 0 0 0-4.392-4.392 49.422 49.422 0 0 0-7.436 0A4.756 4.756 0 0 0 3.89 8.282c-.017.224-.033.447-.046.672a.75.75 0 1 0 1.497.092c.013-.217.028-.434.044-.651a3.256 3.256 0 0 1 3.01-3.01c1.19-.09 2.392-.135 3.605-.135Zm-6.97 6.22a.75.75 0 0 0-1.06 0l-3 3a.75.75 0 1 0 1.06 1.06l1.752-1.751c.023.65.06 1.296.108 1.939a4.756 4.756 0 0 0 4.392 4.392 49.413 49.413 0 0 0 7.436 0 4.756 4.756 0 0 0 4.392-4.392c.017-.223.032-.447.046-.672a.75.75 0 0 0-1.497-.092c-.013.217-.028.434-.044.651a3.256 3.256 0 0 1-3.01 3.01 47.953 47.953 0 0 1-7.21 0 3.256 3.256 0 0 1-3.01-3.01 47.759 47.759 0 0 1-.1-1.759L6.97 15.53a.75.75 0 0 0 1.06-1.06l-3-3Z","clip-rule":"evenodd"})])}function EZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.755 10.059a7.5 7.5 0 0 1 12.548-3.364l1.903 1.903h-3.183a.75.75 0 1 0 0 1.5h4.992a.75.75 0 0 0 .75-.75V4.356a.75.75 0 0 0-1.5 0v3.18l-1.9-1.9A9 9 0 0 0 3.306 9.67a.75.75 0 1 0 1.45.388Zm15.408 3.352a.75.75 0 0 0-.919.53 7.5 7.5 0 0 1-12.548 3.364l-1.902-1.903h3.183a.75.75 0 0 0 0-1.5H2.984a.75.75 0 0 0-.75.75v4.992a.75.75 0 0 0 1.5 0v-3.18l1.9 1.9a9 9 0 0 0 15.059-4.035.75.75 0 0 0-.53-.918Z","clip-rule":"evenodd"})])}function bZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25Zm4.28 10.28a.75.75 0 0 0 0-1.06l-3-3a.75.75 0 1 0-1.06 1.06l1.72 1.72H8.25a.75.75 0 0 0 0 1.5h5.69l-1.72 1.72a.75.75 0 1 0 1.06 1.06l3-3Z","clip-rule":"evenodd"})])}function CZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M16.5 3.75a1.5 1.5 0 0 1 1.5 1.5v13.5a1.5 1.5 0 0 1-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5V15a.75.75 0 0 0-1.5 0v3.75a3 3 0 0 0 3 3h6a3 3 0 0 0 3-3V5.25a3 3 0 0 0-3-3h-6a3 3 0 0 0-3 3V9A.75.75 0 1 0 9 9V5.25a1.5 1.5 0 0 1 1.5-1.5h6Zm-5.03 4.72a.75.75 0 0 0 0 1.06l1.72 1.72H2.25a.75.75 0 0 0 0 1.5h10.94l-1.72 1.72a.75.75 0 1 0 1.06 1.06l3-3a.75.75 0 0 0 0-1.06l-3-3a.75.75 0 0 0-1.06 0Z","clip-rule":"evenodd"})])}function MZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.5 3.75A1.5 1.5 0 0 0 6 5.25v13.5a1.5 1.5 0 0 0 1.5 1.5h6a1.5 1.5 0 0 0 1.5-1.5V15a.75.75 0 0 1 1.5 0v3.75a3 3 0 0 1-3 3h-6a3 3 0 0 1-3-3V5.25a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3V9A.75.75 0 0 1 15 9V5.25a1.5 1.5 0 0 0-1.5-1.5h-6Zm10.72 4.72a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1 0 1.06l-3 3a.75.75 0 1 1-1.06-1.06l1.72-1.72H9a.75.75 0 0 1 0-1.5h10.94l-1.72-1.72a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function VZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.5 3.75A1.5 1.5 0 0 0 6 5.25v13.5a1.5 1.5 0 0 0 1.5 1.5h6a1.5 1.5 0 0 0 1.5-1.5V15a.75.75 0 0 1 1.5 0v3.75a3 3 0 0 1-3 3h-6a3 3 0 0 1-3-3V5.25a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3V9A.75.75 0 0 1 15 9V5.25a1.5 1.5 0 0 0-1.5-1.5h-6Zm10.72 4.72a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1 0 1.06l-3 3a.75.75 0 1 1-1.06-1.06l1.72-1.72H9a.75.75 0 0 1 0-1.5h10.94l-1.72-1.72a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function AZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12.97 3.97a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 0 1 0 1.06l-7.5 7.5a.75.75 0 1 1-1.06-1.06l6.22-6.22H3a.75.75 0 0 1 0-1.5h16.19l-6.22-6.22a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function _Z(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 3.75a.75.75 0 0 1 .75.75v13.19l5.47-5.47a.75.75 0 1 1 1.06 1.06l-6.75 6.75a.75.75 0 0 1-1.06 0l-6.75-6.75a.75.75 0 1 1 1.06-1.06l5.47 5.47V4.5a.75.75 0 0 1 .75-.75Z","clip-rule":"evenodd"})])}function NZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M20.25 12a.75.75 0 0 1-.75.75H6.31l5.47 5.47a.75.75 0 1 1-1.06 1.06l-6.75-6.75a.75.75 0 0 1 0-1.06l6.75-6.75a.75.75 0 1 1 1.06 1.06l-5.47 5.47H19.5a.75.75 0 0 1 .75.75Z","clip-rule":"evenodd"})])}function ZZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.75 12a.75.75 0 0 1 .75-.75h13.19l-5.47-5.47a.75.75 0 0 1 1.06-1.06l6.75 6.75a.75.75 0 0 1 0 1.06l-6.75 6.75a.75.75 0 1 1-1.06-1.06l5.47-5.47H4.5a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function SZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 20.25a.75.75 0 0 1-.75-.75V6.31l-5.47 5.47a.75.75 0 0 1-1.06-1.06l6.75-6.75a.75.75 0 0 1 1.06 0l6.75 6.75a.75.75 0 1 1-1.06 1.06l-5.47-5.47V19.5a.75.75 0 0 1-.75.75Z","clip-rule":"evenodd"})])}function $Z(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15.75 2.25H21a.75.75 0 0 1 .75.75v5.25a.75.75 0 0 1-1.5 0V4.81L8.03 17.03a.75.75 0 0 1-1.06-1.06L19.19 3.75h-3.44a.75.75 0 0 1 0-1.5Zm-10.5 4.5a1.5 1.5 0 0 0-1.5 1.5v10.5a1.5 1.5 0 0 0 1.5 1.5h10.5a1.5 1.5 0 0 0 1.5-1.5V10.5a.75.75 0 0 1 1.5 0v8.25a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3V8.25a3 3 0 0 1 3-3h8.25a.75.75 0 0 1 0 1.5H5.25Z","clip-rule":"evenodd"})])}function IZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.72 5.47a.75.75 0 0 1 1.06 0L9 11.69l3.756-3.756a.75.75 0 0 1 .985-.066 12.698 12.698 0 0 1 4.575 6.832l.308 1.149 2.277-3.943a.75.75 0 1 1 1.299.75l-3.182 5.51a.75.75 0 0 1-1.025.275l-5.511-3.181a.75.75 0 0 1 .75-1.3l3.943 2.277-.308-1.149a11.194 11.194 0 0 0-3.528-5.617l-3.809 3.81a.75.75 0 0 1-1.06 0L1.72 6.53a.75.75 0 0 1 0-1.061Z","clip-rule":"evenodd"})])}function HZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15.22 6.268a.75.75 0 0 1 .968-.431l5.942 2.28a.75.75 0 0 1 .431.97l-2.28 5.94a.75.75 0 1 1-1.4-.537l1.63-4.251-1.086.484a11.2 11.2 0 0 0-5.45 5.173.75.75 0 0 1-1.199.19L9 12.312l-6.22 6.22a.75.75 0 0 1-1.06-1.061l6.75-6.75a.75.75 0 0 1 1.06 0l3.606 3.606a12.695 12.695 0 0 1 5.68-4.974l1.086-.483-4.251-1.632a.75.75 0 0 1-.432-.97Z","clip-rule":"evenodd"})])}function TZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M20.239 3.749a.75.75 0 0 0-.75.75V15H5.549l2.47-2.47a.75.75 0 0 0-1.06-1.06l-3.75 3.75a.75.75 0 0 0 0 1.06l3.75 3.75a.75.75 0 1 0 1.06-1.06L5.55 16.5h14.69a.75.75 0 0 0 .75-.75V4.5a.75.75 0 0 0-.75-.751Z","clip-rule":"evenodd"})])}function LZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.74 3.749a.75.75 0 0 1 .75.75V15h13.938l-2.47-2.47a.75.75 0 0 1 1.061-1.06l3.75 3.75a.75.75 0 0 1 0 1.06l-3.75 3.75a.75.75 0 0 1-1.06-1.06l2.47-2.47H3.738a.75.75 0 0 1-.75-.75V4.5a.75.75 0 0 1 .75-.751Z","clip-rule":"evenodd"})])}function DZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M20.24 3.75a.75.75 0 0 1-.75.75H8.989v13.939l2.47-2.47a.75.75 0 1 1 1.06 1.061l-3.75 3.75a.75.75 0 0 1-1.06 0l-3.751-3.75a.75.75 0 1 1 1.06-1.06l2.47 2.469V3.75a.75.75 0 0 1 .75-.75H19.49a.75.75 0 0 1 .75.75Z","clip-rule":"evenodd"})])}function PZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M20.24 20.249a.75.75 0 0 0-.75-.75H8.989V5.56l2.47 2.47a.75.75 0 0 0 1.06-1.061l-3.75-3.75a.75.75 0 0 0-1.06 0l-3.75 3.75a.75.75 0 1 0 1.06 1.06l2.47-2.469V20.25c0 .414.335.75.75.75h11.25a.75.75 0 0 0 .75-.75Z","clip-rule":"evenodd"})])}function OZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.738 3.75c0 .414.336.75.75.75H14.99v13.939l-2.47-2.47a.75.75 0 0 0-1.06 1.061l3.75 3.75a.75.75 0 0 0 1.06 0l3.751-3.75a.75.75 0 0 0-1.06-1.06l-2.47 2.469V3.75a.75.75 0 0 0-.75-.75H4.487a.75.75 0 0 0-.75.75Z","clip-rule":"evenodd"})])}function RZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.738 20.249a.75.75 0 0 1 .75-.75H14.99V5.56l-2.47 2.47a.75.75 0 0 1-1.06-1.061l3.75-3.75a.75.75 0 0 1 1.06 0l3.751 3.75a.75.75 0 0 1-1.06 1.06L16.49 5.56V20.25a.75.75 0 0 1-.75.75H4.487a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function zZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M20.239 20.25a.75.75 0 0 1-.75-.75V8.999H5.549l2.47 2.47a.75.75 0 0 1-1.06 1.06l-3.75-3.75a.75.75 0 0 1 0-1.06l3.75-3.75a.75.75 0 1 1 1.06 1.06l-2.47 2.47h14.69a.75.75 0 0 1 .75.75V19.5a.75.75 0 0 1-.75.75Z","clip-rule":"evenodd"})])}function jZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.74 20.25a.75.75 0 0 0 .75-.75V8.999h13.938l-2.47 2.47a.75.75 0 0 0 1.061 1.06l3.75-3.75a.75.75 0 0 0 0-1.06l-3.75-3.75a.75.75 0 0 0-1.06 1.06l2.47 2.47H3.738a.75.75 0 0 0-.75.75V19.5c0 .414.336.75.75.75Z","clip-rule":"evenodd"})])}function FZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25Zm.53 5.47a.75.75 0 0 0-1.06 0l-3 3a.75.75 0 1 0 1.06 1.06l1.72-1.72v5.69a.75.75 0 0 0 1.5 0v-5.69l1.72 1.72a.75.75 0 1 0 1.06-1.06l-3-3Z","clip-rule":"evenodd"})])}function UZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.25 6.31v9.44a.75.75 0 0 1-1.5 0V4.5a.75.75 0 0 1 .75-.75h11.25a.75.75 0 0 1 0 1.5H6.31l13.72 13.72a.75.75 0 1 1-1.06 1.06L5.25 6.31Z","clip-rule":"evenodd"})])}function WZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M9.97.97a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1-1.06 1.06l-1.72-1.72v3.44h-1.5V3.31L8.03 5.03a.75.75 0 0 1-1.06-1.06l3-3ZM9.75 6.75v6a.75.75 0 0 0 1.5 0v-6h3a3 3 0 0 1 3 3v7.5a3 3 0 0 1-3 3h-7.5a3 3 0 0 1-3-3v-7.5a3 3 0 0 1 3-3h3Z"}),e.createElementVNode("path",{d:"M7.151 21.75a2.999 2.999 0 0 0 2.599 1.5h7.5a3 3 0 0 0 3-3v-7.5c0-1.11-.603-2.08-1.5-2.599v7.099a4.5 4.5 0 0 1-4.5 4.5H7.151Z"})])}function qZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M11.47 1.72a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1-1.06 1.06l-1.72-1.72V7.5h-1.5V4.06L9.53 5.78a.75.75 0 0 1-1.06-1.06l3-3ZM11.25 7.5V15a.75.75 0 0 0 1.5 0V7.5h3.75a3 3 0 0 1 3 3v9a3 3 0 0 1-3 3h-9a3 3 0 0 1-3-3v-9a3 3 0 0 1 3-3h3.75Z"})])}function YZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.25 3.75H19.5a.75.75 0 0 1 .75.75v11.25a.75.75 0 0 1-1.5 0V6.31L5.03 20.03a.75.75 0 0 1-1.06-1.06L17.69 5.25H8.25a.75.75 0 0 1 0-1.5Z","clip-rule":"evenodd"})])}function KZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.47 2.47a.75.75 0 0 1 1.06 0l4.5 4.5a.75.75 0 0 1-1.06 1.06l-3.22-3.22V16.5a.75.75 0 0 1-1.5 0V4.81L8.03 8.03a.75.75 0 0 1-1.06-1.06l4.5-4.5ZM3 15.75a.75.75 0 0 1 .75.75v2.25a1.5 1.5 0 0 0 1.5 1.5h13.5a1.5 1.5 0 0 0 1.5-1.5V16.5a.75.75 0 0 1 1.5 0v2.25a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3V16.5a.75.75 0 0 1 .75-.75Z","clip-rule":"evenodd"})])}function GZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.47 2.47a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 1 1-1.06 1.06l-6.22-6.22V21a.75.75 0 0 1-1.5 0V4.81l-6.22 6.22a.75.75 0 1 1-1.06-1.06l7.5-7.5Z","clip-rule":"evenodd"})])}function JZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 3.75A5.25 5.25 0 0 0 9.75 9v10.19l4.72-4.72a.75.75 0 1 1 1.06 1.06l-6 6a.75.75 0 0 1-1.06 0l-6-6a.75.75 0 1 1 1.06-1.06l4.72 4.72V9a6.75 6.75 0 0 1 13.5 0v3a.75.75 0 0 1-1.5 0V9c0-2.9-2.35-5.25-5.25-5.25Z","clip-rule":"evenodd"})])}function XZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.53 2.47a.75.75 0 0 1 0 1.06L4.81 8.25H15a6.75 6.75 0 0 1 0 13.5h-3a.75.75 0 0 1 0-1.5h3a5.25 5.25 0 1 0 0-10.5H4.81l4.72 4.72a.75.75 0 1 1-1.06 1.06l-6-6a.75.75 0 0 1 0-1.06l6-6a.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function QZ(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M14.47 2.47a.75.75 0 0 1 1.06 0l6 6a.75.75 0 0 1 0 1.06l-6 6a.75.75 0 1 1-1.06-1.06l4.72-4.72H9a5.25 5.25 0 1 0 0 10.5h3a.75.75 0 0 1 0 1.5H9a6.75 6.75 0 0 1 0-13.5h10.19l-4.72-4.72a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function eS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M21.53 9.53a.75.75 0 0 1-1.06 0l-4.72-4.72V15a6.75 6.75 0 0 1-13.5 0v-3a.75.75 0 0 1 1.5 0v3a5.25 5.25 0 1 0 10.5 0V4.81L9.53 9.53a.75.75 0 0 1-1.06-1.06l6-6a.75.75 0 0 1 1.06 0l6 6a.75.75 0 0 1 0 1.06Z","clip-rule":"evenodd"})])}function tS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.22 3.22a.75.75 0 0 1 1.06 0l3.97 3.97V4.5a.75.75 0 0 1 1.5 0V9a.75.75 0 0 1-.75.75H4.5a.75.75 0 0 1 0-1.5h2.69L3.22 4.28a.75.75 0 0 1 0-1.06Zm17.56 0a.75.75 0 0 1 0 1.06l-3.97 3.97h2.69a.75.75 0 0 1 0 1.5H15a.75.75 0 0 1-.75-.75V4.5a.75.75 0 0 1 1.5 0v2.69l3.97-3.97a.75.75 0 0 1 1.06 0ZM3.75 15a.75.75 0 0 1 .75-.75H9a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0v-2.69l-3.97 3.97a.75.75 0 0 1-1.06-1.06l3.97-3.97H4.5a.75.75 0 0 1-.75-.75Zm10.5 0a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-2.69l3.97 3.97a.75.75 0 1 1-1.06 1.06l-3.97-3.97v2.69a.75.75 0 0 1-1.5 0V15Z","clip-rule":"evenodd"})])}function nS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 3.75a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0V5.56l-3.97 3.97a.75.75 0 1 1-1.06-1.06l3.97-3.97h-2.69a.75.75 0 0 1-.75-.75Zm-12 0A.75.75 0 0 1 3.75 3h4.5a.75.75 0 0 1 0 1.5H5.56l3.97 3.97a.75.75 0 0 1-1.06 1.06L4.5 5.56v2.69a.75.75 0 0 1-1.5 0v-4.5Zm11.47 11.78a.75.75 0 1 1 1.06-1.06l3.97 3.97v-2.69a.75.75 0 0 1 1.5 0v4.5a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1 0-1.5h2.69l-3.97-3.97Zm-4.94-1.06a.75.75 0 0 1 0 1.06L5.56 19.5h2.69a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 1 1.5 0v2.69l3.97-3.97a.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function rS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15.97 2.47a.75.75 0 0 1 1.06 0l4.5 4.5a.75.75 0 0 1 0 1.06l-4.5 4.5a.75.75 0 1 1-1.06-1.06l3.22-3.22H7.5a.75.75 0 0 1 0-1.5h11.69l-3.22-3.22a.75.75 0 0 1 0-1.06Zm-7.94 9a.75.75 0 0 1 0 1.06l-3.22 3.22H16.5a.75.75 0 0 1 0 1.5H4.81l3.22 3.22a.75.75 0 1 1-1.06 1.06l-4.5-4.5a.75.75 0 0 1 0-1.06l4.5-4.5a.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function oS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.97 2.47a.75.75 0 0 1 1.06 0l4.5 4.5a.75.75 0 0 1-1.06 1.06L8.25 4.81V16.5a.75.75 0 0 1-1.5 0V4.81L3.53 8.03a.75.75 0 0 1-1.06-1.06l4.5-4.5Zm9.53 4.28a.75.75 0 0 1 .75.75v11.69l3.22-3.22a.75.75 0 1 1 1.06 1.06l-4.5 4.5a.75.75 0 0 1-1.06 0l-4.5-4.5a.75.75 0 1 1 1.06-1.06l3.22 3.22V7.5a.75.75 0 0 1 .75-.75Z","clip-rule":"evenodd"})])}function aS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M17.834 6.166a8.25 8.25 0 1 0 0 11.668.75.75 0 0 1 1.06 1.06c-3.807 3.808-9.98 3.808-13.788 0-3.808-3.807-3.808-9.98 0-13.788 3.807-3.808 9.98-3.808 13.788 0A9.722 9.722 0 0 1 21.75 12c0 .975-.296 1.887-.809 2.571-.514.685-1.28 1.179-2.191 1.179-.904 0-1.666-.487-2.18-1.164a5.25 5.25 0 1 1-.82-6.26V8.25a.75.75 0 0 1 1.5 0V12c0 .682.208 1.27.509 1.671.3.401.659.579.991.579.332 0 .69-.178.991-.579.3-.4.509-.99.509-1.671a8.222 8.222 0 0 0-2.416-5.834ZM15.75 12a3.75 3.75 0 1 0-7.5 0 3.75 3.75 0 0 0 7.5 0Z","clip-rule":"evenodd"})])}function lS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.515 10.674a1.875 1.875 0 0 0 0 2.652L8.89 19.7c.352.351.829.549 1.326.549H19.5a3 3 0 0 0 3-3V6.75a3 3 0 0 0-3-3h-9.284c-.497 0-.974.198-1.326.55l-6.375 6.374ZM12.53 9.22a.75.75 0 1 0-1.06 1.06L13.19 12l-1.72 1.72a.75.75 0 1 0 1.06 1.06l1.72-1.72 1.72 1.72a.75.75 0 1 0 1.06-1.06L15.31 12l1.72-1.72a.75.75 0 1 0-1.06-1.06l-1.72 1.72-1.72-1.72Z","clip-rule":"evenodd"})])}function iS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M9.195 18.44c1.25.714 2.805-.189 2.805-1.629v-2.34l6.945 3.968c1.25.715 2.805-.188 2.805-1.628V8.69c0-1.44-1.555-2.343-2.805-1.628L12 11.029v-2.34c0-1.44-1.555-2.343-2.805-1.628l-7.108 4.061c-1.26.72-1.26 2.536 0 3.256l7.108 4.061Z"})])}function cS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M12 7.5a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.5 4.875C1.5 3.839 2.34 3 3.375 3h17.25c1.035 0 1.875.84 1.875 1.875v9.75c0 1.036-.84 1.875-1.875 1.875H3.375A1.875 1.875 0 0 1 1.5 14.625v-9.75ZM8.25 9.75a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0ZM18.75 9a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V9.75a.75.75 0 0 0-.75-.75h-.008ZM4.5 9.75A.75.75 0 0 1 5.25 9h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H5.25a.75.75 0 0 1-.75-.75V9.75Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M2.25 18a.75.75 0 0 0 0 1.5c5.4 0 10.63.722 15.6 2.075 1.19.324 2.4-.558 2.4-1.82V18.75a.75.75 0 0 0-.75-.75H2.25Z"})])}function sS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 9a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 9Zm0 6.75a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function dS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 6.75A.75.75 0 0 1 3.75 6h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 6.75ZM3 12a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 12Zm0 5.25a.75.75 0 0 1 .75-.75H12a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function uS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 6.75A.75.75 0 0 1 3.75 6h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 6.75ZM3 12a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 12Zm8.25 5.25a.75.75 0 0 1 .75-.75h8.25a.75.75 0 0 1 0 1.5H12a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function hS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 6.75A.75.75 0 0 1 3.75 6h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 6.75ZM3 12a.75.75 0 0 1 .75-.75H12a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 12Zm0 5.25a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function pS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 6.75A.75.75 0 0 1 3.75 6h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 6.75ZM3 12a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 12Zm0 5.25a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function fS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 5.25a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 5.25Zm0 4.5A.75.75 0 0 1 3.75 9h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 9.75Zm0 4.5a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75Zm0 4.5a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function mS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.25 4.5A.75.75 0 0 1 3 3.75h14.25a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1-.75-.75Zm0 4.5A.75.75 0 0 1 3 8.25h9.75a.75.75 0 0 1 0 1.5H3A.75.75 0 0 1 2.25 9Zm15-.75A.75.75 0 0 1 18 9v10.19l2.47-2.47a.75.75 0 1 1 1.06 1.06l-3.75 3.75a.75.75 0 0 1-1.06 0l-3.75-3.75a.75.75 0 1 1 1.06-1.06l2.47 2.47V9a.75.75 0 0 1 .75-.75Zm-15 5.25a.75.75 0 0 1 .75-.75h9.75a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function wS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.25 4.5A.75.75 0 0 1 3 3.75h14.25a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1-.75-.75Zm14.47 3.97a.75.75 0 0 1 1.06 0l3.75 3.75a.75.75 0 1 1-1.06 1.06L18 10.81V21a.75.75 0 0 1-1.5 0V10.81l-2.47 2.47a.75.75 0 1 1-1.06-1.06l3.75-3.75ZM2.25 9A.75.75 0 0 1 3 8.25h9.75a.75.75 0 0 1 0 1.5H3A.75.75 0 0 1 2.25 9Zm0 4.5a.75.75 0 0 1 .75-.75h5.25a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function gS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M.75 9.75a3 3 0 0 1 3-3h15a3 3 0 0 1 3 3v.038c.856.173 1.5.93 1.5 1.837v2.25c0 .907-.644 1.664-1.5 1.838v.037a3 3 0 0 1-3 3h-15a3 3 0 0 1-3-3v-6Zm19.5 0a1.5 1.5 0 0 0-1.5-1.5h-15a1.5 1.5 0 0 0-1.5 1.5v6a1.5 1.5 0 0 0 1.5 1.5h15a1.5 1.5 0 0 0 1.5-1.5v-6Z","clip-rule":"evenodd"})])}function kS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.75 6.75a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3v-.037c.856-.174 1.5-.93 1.5-1.838v-2.25c0-.907-.644-1.664-1.5-1.837V9.75a3 3 0 0 0-3-3h-15Zm15 1.5a1.5 1.5 0 0 1 1.5 1.5v6a1.5 1.5 0 0 1-1.5 1.5h-15a1.5 1.5 0 0 1-1.5-1.5v-6a1.5 1.5 0 0 1 1.5-1.5h15ZM4.5 9.75a.75.75 0 0 0-.75.75V15c0 .414.336.75.75.75H18a.75.75 0 0 0 .75-.75v-4.5a.75.75 0 0 0-.75-.75H4.5Z","clip-rule":"evenodd"})])}function xS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.5 9.75a.75.75 0 0 0-.75.75V15c0 .414.336.75.75.75h6.75A.75.75 0 0 0 12 15v-4.5a.75.75 0 0 0-.75-.75H4.5Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.75 6.75a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3v-.037c.856-.174 1.5-.93 1.5-1.838v-2.25c0-.907-.644-1.664-1.5-1.837V9.75a3 3 0 0 0-3-3h-15Zm15 1.5a1.5 1.5 0 0 1 1.5 1.5v6a1.5 1.5 0 0 1-1.5 1.5h-15a1.5 1.5 0 0 1-1.5-1.5v-6a1.5 1.5 0 0 1 1.5-1.5h15Z","clip-rule":"evenodd"})])}function vS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.5 3.798v5.02a3 3 0 0 1-.879 2.121l-2.377 2.377a9.845 9.845 0 0 1 5.091 1.013 8.315 8.315 0 0 0 5.713.636l.285-.071-3.954-3.955a3 3 0 0 1-.879-2.121v-5.02a23.614 23.614 0 0 0-3 0Zm4.5.138a.75.75 0 0 0 .093-1.495A24.837 24.837 0 0 0 12 2.25a25.048 25.048 0 0 0-3.093.191A.75.75 0 0 0 9 3.936v4.882a1.5 1.5 0 0 1-.44 1.06l-6.293 6.294c-1.62 1.621-.903 4.475 1.471 4.88 2.686.46 5.447.698 8.262.698 2.816 0 5.576-.239 8.262-.697 2.373-.406 3.092-3.26 1.47-4.881L15.44 9.879A1.5 1.5 0 0 1 15 8.818V3.936Z","clip-rule":"evenodd"})])}function yS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.85 3.5a.75.75 0 0 0-1.117-1 9.719 9.719 0 0 0-2.348 4.876.75.75 0 0 0 1.479.248A8.219 8.219 0 0 1 5.85 3.5ZM19.267 2.5a.75.75 0 1 0-1.118 1 8.22 8.22 0 0 1 1.987 4.124.75.75 0 0 0 1.48-.248A9.72 9.72 0 0 0 19.266 2.5Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25A6.75 6.75 0 0 0 5.25 9v.75a8.217 8.217 0 0 1-2.119 5.52.75.75 0 0 0 .298 1.206c1.544.57 3.16.99 4.831 1.243a3.75 3.75 0 1 0 7.48 0 24.583 24.583 0 0 0 4.83-1.244.75.75 0 0 0 .298-1.205 8.217 8.217 0 0 1-2.118-5.52V9A6.75 6.75 0 0 0 12 2.25ZM9.75 18c0-.034 0-.067.002-.1a25.05 25.05 0 0 0 4.496 0l.002.1a2.25 2.25 0 1 1-4.5 0Z","clip-rule":"evenodd"})])}function BS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.53 2.47a.75.75 0 0 0-1.06 1.06l18 18a.75.75 0 1 0 1.06-1.06l-18-18ZM20.57 16.476c-.223.082-.448.161-.674.238L7.319 4.137A6.75 6.75 0 0 1 18.75 9v.75c0 2.123.8 4.057 2.118 5.52a.75.75 0 0 1-.297 1.206Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.25 9c0-.184.007-.366.022-.546l10.384 10.384a3.751 3.751 0 0 1-7.396-1.119 24.585 24.585 0 0 1-4.831-1.244.75.75 0 0 1-.298-1.205A8.217 8.217 0 0 0 5.25 9.75V9Zm4.502 8.9a2.25 2.25 0 1 0 4.496 0 25.057 25.057 0 0 1-4.496 0Z","clip-rule":"evenodd"})])}function ES(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25A6.75 6.75 0 0 0 5.25 9v.75a8.217 8.217 0 0 1-2.119 5.52.75.75 0 0 0 .298 1.206c1.544.57 3.16.99 4.831 1.243a3.75 3.75 0 1 0 7.48 0 24.583 24.583 0 0 0 4.83-1.244.75.75 0 0 0 .298-1.205 8.217 8.217 0 0 1-2.118-5.52V9A6.75 6.75 0 0 0 12 2.25ZM9.75 18c0-.034 0-.067.002-.1a25.05 25.05 0 0 0 4.496 0l.002.1a2.25 2.25 0 1 1-4.5 0Zm.75-10.5a.75.75 0 0 0 0 1.5h1.599l-2.223 3.334A.75.75 0 0 0 10.5 13.5h3a.75.75 0 0 0 0-1.5h-1.599l2.223-3.334A.75.75 0 0 0 13.5 7.5h-3Z","clip-rule":"evenodd"})])}function bS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.25 9a6.75 6.75 0 0 1 13.5 0v.75c0 2.123.8 4.057 2.118 5.52a.75.75 0 0 1-.297 1.206c-1.544.57-3.16.99-4.831 1.243a3.75 3.75 0 1 1-7.48 0 24.585 24.585 0 0 1-4.831-1.244.75.75 0 0 1-.298-1.205A8.217 8.217 0 0 0 5.25 9.75V9Zm4.502 8.9a2.25 2.25 0 1 0 4.496 0 25.057 25.057 0 0 1-4.496 0Z","clip-rule":"evenodd"})])}function CS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.246 3.744a.75.75 0 0 1 .75-.75h7.125a4.875 4.875 0 0 1 3.346 8.422 5.25 5.25 0 0 1-2.97 9.58h-7.5a.75.75 0 0 1-.75-.75V3.744Zm7.125 6.75a2.625 2.625 0 0 0 0-5.25H8.246v5.25h4.125Zm-4.125 2.251v6h4.5a3 3 0 0 0 0-6h-4.5Z","clip-rule":"evenodd"})])}function MS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"m20.798 11.012-3.188 3.416L9.462 6.28l4.24-4.542a.75.75 0 0 1 1.272.71L12.982 9.75h7.268a.75.75 0 0 1 .548 1.262ZM3.202 12.988 6.39 9.572l8.148 8.148-4.24 4.542a.75.75 0 0 1-1.272-.71l1.992-7.302H3.75a.75.75 0 0 1-.548-1.262ZM3.53 2.47a.75.75 0 0 0-1.06 1.06l18 18a.75.75 0 1 0 1.06-1.06l-18-18Z"})])}function VS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M14.615 1.595a.75.75 0 0 1 .359.852L12.982 9.75h7.268a.75.75 0 0 1 .548 1.262l-10.5 11.25a.75.75 0 0 1-1.272-.71l1.992-7.302H3.75a.75.75 0 0 1-.548-1.262l10.5-11.25a.75.75 0 0 1 .913-.143Z","clip-rule":"evenodd"})])}function AS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M11.25 4.533A9.707 9.707 0 0 0 6 3a9.735 9.735 0 0 0-3.25.555.75.75 0 0 0-.5.707v14.25a.75.75 0 0 0 1 .707A8.237 8.237 0 0 1 6 18.75c1.995 0 3.823.707 5.25 1.886V4.533ZM12.75 20.636A8.214 8.214 0 0 1 18 18.75c.966 0 1.89.166 2.75.47a.75.75 0 0 0 1-.708V4.262a.75.75 0 0 0-.5-.707A9.735 9.735 0 0 0 18 3a9.707 9.707 0 0 0-5.25 1.533v16.103Z"})])}function _S(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.53 2.47a.75.75 0 0 0-1.06 1.06l18 18a.75.75 0 1 0 1.06-1.06l-18-18ZM20.25 5.507v11.561L5.853 2.671c.15-.043.306-.075.467-.094a49.255 49.255 0 0 1 11.36 0c1.497.174 2.57 1.46 2.57 2.93ZM3.75 21V6.932l14.063 14.063L12 18.088l-7.165 3.583A.75.75 0 0 1 3.75 21Z"})])}function NS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm1.5 1.5a.75.75 0 0 0-.75.75V16.5a.75.75 0 0 0 1.085.67L12 15.089l4.165 2.083a.75.75 0 0 0 1.085-.671V5.25a.75.75 0 0 0-.75-.75h-9Z","clip-rule":"evenodd"})])}function ZS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.32 2.577a49.255 49.255 0 0 1 11.36 0c1.497.174 2.57 1.46 2.57 2.93V21a.75.75 0 0 1-1.085.67L12 18.089l-7.165 3.583A.75.75 0 0 1 3.75 21V5.507c0-1.47 1.073-2.756 2.57-2.93Z","clip-rule":"evenodd"})])}function SS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.5 5.25a3 3 0 0 1 3-3h3a3 3 0 0 1 3 3v.205c.933.085 1.857.197 2.774.334 1.454.218 2.476 1.483 2.476 2.917v3.033c0 1.211-.734 2.352-1.936 2.752A24.726 24.726 0 0 1 12 15.75c-2.73 0-5.357-.442-7.814-1.259-1.202-.4-1.936-1.541-1.936-2.752V8.706c0-1.434 1.022-2.7 2.476-2.917A48.814 48.814 0 0 1 7.5 5.455V5.25Zm7.5 0v.09a49.488 49.488 0 0 0-6 0v-.09a1.5 1.5 0 0 1 1.5-1.5h3a1.5 1.5 0 0 1 1.5 1.5Zm-3 8.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M3 18.4v-2.796a4.3 4.3 0 0 0 .713.31A26.226 26.226 0 0 0 12 17.25c2.892 0 5.68-.468 8.287-1.335.252-.084.49-.189.713-.311V18.4c0 1.452-1.047 2.728-2.523 2.923-2.12.282-4.282.427-6.477.427a49.19 49.19 0 0 1-6.477-.427C4.047 21.128 3 19.852 3 18.4Z"})])}function $S(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.478 1.6a.75.75 0 0 1 .273 1.026 3.72 3.72 0 0 0-.425 1.121c.058.058.118.114.18.168A4.491 4.491 0 0 1 12 2.25c1.413 0 2.673.651 3.497 1.668.06-.054.12-.11.178-.167a3.717 3.717 0 0 0-.426-1.125.75.75 0 1 1 1.298-.752 5.22 5.22 0 0 1 .671 2.046.75.75 0 0 1-.187.582c-.241.27-.505.52-.787.749a4.494 4.494 0 0 1 .216 2.1c-.106.792-.753 1.295-1.417 1.403-.182.03-.364.057-.547.081.152.227.273.476.359.742a23.122 23.122 0 0 0 3.832-.803 23.241 23.241 0 0 0-.345-2.634.75.75 0 0 1 1.474-.28c.21 1.115.348 2.256.404 3.418a.75.75 0 0 1-.516.75c-1.527.499-3.119.854-4.76 1.049-.074.38-.22.735-.423 1.05 2.066.209 4.058.672 5.943 1.358a.75.75 0 0 1 .492.75 24.665 24.665 0 0 1-1.189 6.25.75.75 0 0 1-1.425-.47 23.14 23.14 0 0 0 1.077-5.306c-.5-.169-1.009-.32-1.524-.455.068.234.104.484.104.746 0 3.956-2.521 7.5-6 7.5-3.478 0-6-3.544-6-7.5 0-.262.037-.511.104-.746-.514.135-1.022.286-1.522.455.154 1.838.52 3.616 1.077 5.307a.75.75 0 1 1-1.425.468 24.662 24.662 0 0 1-1.19-6.25.75.75 0 0 1 .493-.749 24.586 24.586 0 0 1 4.964-1.24h.01c.321-.046.644-.085.969-.118a2.983 2.983 0 0 1-.424-1.05 24.614 24.614 0 0 1-4.76-1.05.75.75 0 0 1-.516-.75c.057-1.16.194-2.302.405-3.417a.75.75 0 0 1 1.474.28c-.164.862-.28 1.74-.345 2.634 1.237.371 2.517.642 3.832.803.085-.266.207-.515.359-.742a18.698 18.698 0 0 1-.547-.08c-.664-.11-1.311-.612-1.417-1.404a4.535 4.535 0 0 1 .217-2.103 6.788 6.788 0 0 1-.788-.751.75.75 0 0 1-.187-.583 5.22 5.22 0 0 1 .67-2.04.75.75 0 0 1 1.026-.273Z","clip-rule":"evenodd"})])}function IS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M11.584 2.376a.75.75 0 0 1 .832 0l9 6a.75.75 0 1 1-.832 1.248L12 3.901 3.416 9.624a.75.75 0 0 1-.832-1.248l9-6Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M20.25 10.332v9.918H21a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1 0-1.5h.75v-9.918a.75.75 0 0 1 .634-.74A49.109 49.109 0 0 1 12 9c2.59 0 5.134.202 7.616.592a.75.75 0 0 1 .634.74Zm-7.5 2.418a.75.75 0 0 0-1.5 0v6.75a.75.75 0 0 0 1.5 0v-6.75Zm3-.75a.75.75 0 0 1 .75.75v6.75a.75.75 0 0 1-1.5 0v-6.75a.75.75 0 0 1 .75-.75ZM9 12.75a.75.75 0 0 0-1.5 0v6.75a.75.75 0 0 0 1.5 0v-6.75Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M12 7.875a1.125 1.125 0 1 0 0-2.25 1.125 1.125 0 0 0 0 2.25Z"})])}function HS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 2.25a.75.75 0 0 0 0 1.5v16.5h-.75a.75.75 0 0 0 0 1.5H15v-18a.75.75 0 0 0 0-1.5H3ZM6.75 19.5v-2.25a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 .75.75v2.25a.75.75 0 0 1-.75.75h-3a.75.75 0 0 1-.75-.75ZM6 6.75A.75.75 0 0 1 6.75 6h.75a.75.75 0 0 1 0 1.5h-.75A.75.75 0 0 1 6 6.75ZM6.75 9a.75.75 0 0 0 0 1.5h.75a.75.75 0 0 0 0-1.5h-.75ZM6 12.75a.75.75 0 0 1 .75-.75h.75a.75.75 0 0 1 0 1.5h-.75a.75.75 0 0 1-.75-.75ZM10.5 6a.75.75 0 0 0 0 1.5h.75a.75.75 0 0 0 0-1.5h-.75Zm-.75 3.75A.75.75 0 0 1 10.5 9h.75a.75.75 0 0 1 0 1.5h-.75a.75.75 0 0 1-.75-.75ZM10.5 12a.75.75 0 0 0 0 1.5h.75a.75.75 0 0 0 0-1.5h-.75ZM16.5 6.75v15h5.25a.75.75 0 0 0 0-1.5H21v-12a.75.75 0 0 0 0-1.5h-4.5Zm1.5 4.5a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75v-.008Zm.75 2.25a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75v-.008a.75.75 0 0 0-.75-.75h-.008ZM18 17.25a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75v-.008Z","clip-rule":"evenodd"})])}function TS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 2.25a.75.75 0 0 0 0 1.5v16.5h-.75a.75.75 0 0 0 0 1.5h16.5a.75.75 0 0 0 0-1.5h-.75V3.75a.75.75 0 0 0 0-1.5h-15ZM9 6a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5H9Zm-.75 3.75A.75.75 0 0 1 9 9h1.5a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75ZM9 12a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5H9Zm3.75-5.25A.75.75 0 0 1 13.5 6H15a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75ZM13.5 9a.75.75 0 0 0 0 1.5H15A.75.75 0 0 0 15 9h-1.5Zm-.75 3.75a.75.75 0 0 1 .75-.75H15a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75ZM9 19.5v-2.25a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 .75.75v2.25a.75.75 0 0 1-.75.75h-4.5A.75.75 0 0 1 9 19.5Z","clip-rule":"evenodd"})])}function LS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.223 2.25c-.497 0-.974.198-1.325.55l-1.3 1.298A3.75 3.75 0 0 0 7.5 9.75c.627.47 1.406.75 2.25.75.844 0 1.624-.28 2.25-.75.626.47 1.406.75 2.25.75.844 0 1.623-.28 2.25-.75a3.75 3.75 0 0 0 4.902-5.652l-1.3-1.299a1.875 1.875 0 0 0-1.325-.549H5.223Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 20.25v-8.755c1.42.674 3.08.673 4.5 0A5.234 5.234 0 0 0 9.75 12c.804 0 1.568-.182 2.25-.506a5.234 5.234 0 0 0 2.25.506c.804 0 1.567-.182 2.25-.506 1.42.674 3.08.675 4.5.001v8.755h.75a.75.75 0 0 1 0 1.5H2.25a.75.75 0 0 1 0-1.5H3Zm3-6a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-.75.75h-3a.75.75 0 0 1-.75-.75v-3Zm8.25-.75a.75.75 0 0 0-.75.75v5.25c0 .414.336.75.75.75h3a.75.75 0 0 0 .75-.75v-5.25a.75.75 0 0 0-.75-.75h-3Z","clip-rule":"evenodd"})])}function DS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"m15 1.784-.796.795a1.125 1.125 0 1 0 1.591 0L15 1.784ZM12 1.784l-.796.795a1.125 1.125 0 1 0 1.591 0L12 1.784ZM9 1.784l-.796.795a1.125 1.125 0 1 0 1.591 0L9 1.784ZM9.75 7.547c.498-.021.998-.035 1.5-.042V6.75a.75.75 0 0 1 1.5 0v.755c.502.007 1.002.021 1.5.042V6.75a.75.75 0 0 1 1.5 0v.88l.307.022c1.55.117 2.693 1.427 2.693 2.946v1.018a62.182 62.182 0 0 0-13.5 0v-1.018c0-1.519 1.143-2.829 2.693-2.946l.307-.022v-.88a.75.75 0 0 1 1.5 0v.797ZM12 12.75c-2.472 0-4.9.184-7.274.54-1.454.217-2.476 1.482-2.476 2.916v.384a4.104 4.104 0 0 1 2.585.364 2.605 2.605 0 0 0 2.33 0 4.104 4.104 0 0 1 3.67 0 2.605 2.605 0 0 0 2.33 0 4.104 4.104 0 0 1 3.67 0 2.605 2.605 0 0 0 2.33 0 4.104 4.104 0 0 1 2.585-.364v-.384c0-1.434-1.022-2.7-2.476-2.917A49.138 49.138 0 0 0 12 12.75ZM21.75 18.131a2.604 2.604 0 0 0-1.915.165 4.104 4.104 0 0 1-3.67 0 2.605 2.605 0 0 0-2.33 0 4.104 4.104 0 0 1-3.67 0 2.605 2.605 0 0 0-2.33 0 4.104 4.104 0 0 1-3.67 0 2.604 2.604 0 0 0-1.915-.165v2.494c0 1.035.84 1.875 1.875 1.875h15.75c1.035 0 1.875-.84 1.875-1.875v-2.494Z"})])}function PS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.32 1.827a49.255 49.255 0 0 1 11.36 0c1.497.174 2.57 1.46 2.57 2.93V19.5a3 3 0 0 1-3 3H6.75a3 3 0 0 1-3-3V4.757c0-1.47 1.073-2.756 2.57-2.93ZM7.5 11.25a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H8.25a.75.75 0 0 1-.75-.75v-.008Zm.75 1.5a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V13.5a.75.75 0 0 0-.75-.75H8.25Zm-.75 3a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H8.25a.75.75 0 0 1-.75-.75v-.008Zm.75 1.5a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V18a.75.75 0 0 0-.75-.75H8.25Zm1.748-6a.75.75 0 0 1 .75-.75h.007a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.007a.75.75 0 0 1-.75-.75v-.008Zm.75 1.5a.75.75 0 0 0-.75.75v.008c0 .414.335.75.75.75h.007a.75.75 0 0 0 .75-.75V13.5a.75.75 0 0 0-.75-.75h-.007Zm-.75 3a.75.75 0 0 1 .75-.75h.007a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.007a.75.75 0 0 1-.75-.75v-.008Zm.75 1.5a.75.75 0 0 0-.75.75v.008c0 .414.335.75.75.75h.007a.75.75 0 0 0 .75-.75V18a.75.75 0 0 0-.75-.75h-.007Zm1.754-6a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75v-.008Zm.75 1.5a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V13.5a.75.75 0 0 0-.75-.75h-.008Zm-.75 3a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75v-.008Zm.75 1.5a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V18a.75.75 0 0 0-.75-.75h-.008Zm1.748-6a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75v-.008Zm.75 1.5a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V13.5a.75.75 0 0 0-.75-.75h-.008Zm-8.25-6A.75.75 0 0 1 8.25 6h7.5a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-7.5a.75.75 0 0 1-.75-.75v-.75Zm9 9a.75.75 0 0 0-1.5 0V18a.75.75 0 0 0 1.5 0v-2.25Z","clip-rule":"evenodd"})])}function OS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M12 11.993a.75.75 0 0 0-.75.75v.006c0 .414.336.75.75.75h.006a.75.75 0 0 0 .75-.75v-.006a.75.75 0 0 0-.75-.75H12ZM12 16.494a.75.75 0 0 0-.75.75v.005c0 .414.335.75.75.75h.005a.75.75 0 0 0 .75-.75v-.005a.75.75 0 0 0-.75-.75H12ZM8.999 17.244a.75.75 0 0 1 .75-.75h.006a.75.75 0 0 1 .75.75v.006a.75.75 0 0 1-.75.75h-.006a.75.75 0 0 1-.75-.75v-.006ZM7.499 16.494a.75.75 0 0 0-.75.75v.005c0 .414.336.75.75.75h.005a.75.75 0 0 0 .75-.75v-.005a.75.75 0 0 0-.75-.75H7.5ZM13.499 14.997a.75.75 0 0 1 .75-.75h.006a.75.75 0 0 1 .75.75v.005a.75.75 0 0 1-.75.75h-.006a.75.75 0 0 1-.75-.75v-.005ZM14.25 16.494a.75.75 0 0 0-.75.75v.006c0 .414.335.75.75.75h.005a.75.75 0 0 0 .75-.75v-.006a.75.75 0 0 0-.75-.75h-.005ZM15.75 14.995a.75.75 0 0 1 .75-.75h.005a.75.75 0 0 1 .75.75v.006a.75.75 0 0 1-.75.75H16.5a.75.75 0 0 1-.75-.75v-.006ZM13.498 12.743a.75.75 0 0 1 .75-.75h2.25a.75.75 0 1 1 0 1.5h-2.25a.75.75 0 0 1-.75-.75ZM6.748 14.993a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M18 2.993a.75.75 0 0 0-1.5 0v1.5h-9V2.994a.75.75 0 1 0-1.5 0v1.497h-.752a3 3 0 0 0-3 3v11.252a3 3 0 0 0 3 3h13.5a3 3 0 0 0 3-3V7.492a3 3 0 0 0-3-3H18V2.993ZM3.748 18.743v-7.5a1.5 1.5 0 0 1 1.5-1.5h13.5a1.5 1.5 0 0 1 1.5 1.5v7.5a1.5 1.5 0 0 1-1.5 1.5h-13.5a1.5 1.5 0 0 1-1.5-1.5Z","clip-rule":"evenodd"})])}function RS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M12.75 12.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM7.5 15.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM8.25 17.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM9.75 15.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM10.5 17.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM12 15.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM12.75 17.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM14.25 15.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM15 17.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM16.5 15.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM15 12.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM16.5 13.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.75 2.25A.75.75 0 0 1 7.5 3v1.5h9V3A.75.75 0 0 1 18 3v1.5h.75a3 3 0 0 1 3 3v11.25a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3V7.5a3 3 0 0 1 3-3H6V3a.75.75 0 0 1 .75-.75Zm13.5 9a1.5 1.5 0 0 0-1.5-1.5H5.25a1.5 1.5 0 0 0-1.5 1.5v7.5a1.5 1.5 0 0 0 1.5 1.5h13.5a1.5 1.5 0 0 0 1.5-1.5v-7.5Z","clip-rule":"evenodd"})])}function zS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.75 2.25A.75.75 0 0 1 7.5 3v1.5h9V3A.75.75 0 0 1 18 3v1.5h.75a3 3 0 0 1 3 3v11.25a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3V7.5a3 3 0 0 1 3-3H6V3a.75.75 0 0 1 .75-.75Zm13.5 9a1.5 1.5 0 0 0-1.5-1.5H5.25a1.5 1.5 0 0 0-1.5 1.5v7.5a1.5 1.5 0 0 0 1.5 1.5h13.5a1.5 1.5 0 0 0 1.5-1.5v-7.5Z","clip-rule":"evenodd"})])}function jS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M12 9a3.75 3.75 0 1 0 0 7.5A3.75 3.75 0 0 0 12 9Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.344 3.071a49.52 49.52 0 0 1 5.312 0c.967.052 1.83.585 2.332 1.39l.821 1.317c.24.383.645.643 1.11.71.386.054.77.113 1.152.177 1.432.239 2.429 1.493 2.429 2.909V18a3 3 0 0 1-3 3h-15a3 3 0 0 1-3-3V9.574c0-1.416.997-2.67 2.429-2.909.382-.064.766-.123 1.151-.178a1.56 1.56 0 0 0 1.11-.71l.822-1.315a2.942 2.942 0 0 1 2.332-1.39ZM6.75 12.75a5.25 5.25 0 1 1 10.5 0 5.25 5.25 0 0 1-10.5 0Zm12-1.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z","clip-rule":"evenodd"})])}function FS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm4.5 7.5a.75.75 0 0 1 .75.75v2.25a.75.75 0 0 1-1.5 0v-2.25a.75.75 0 0 1 .75-.75Zm3.75-1.5a.75.75 0 0 0-1.5 0v4.5a.75.75 0 0 0 1.5 0V12Zm2.25-3a.75.75 0 0 1 .75.75v6.75a.75.75 0 0 1-1.5 0V9.75A.75.75 0 0 1 13.5 9Zm3.75-1.5a.75.75 0 0 0-1.5 0v9a.75.75 0 0 0 1.5 0v-9Z","clip-rule":"evenodd"})])}function US(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M18.375 2.25c-1.035 0-1.875.84-1.875 1.875v15.75c0 1.035.84 1.875 1.875 1.875h.75c1.035 0 1.875-.84 1.875-1.875V4.125c0-1.036-.84-1.875-1.875-1.875h-.75ZM9.75 8.625c0-1.036.84-1.875 1.875-1.875h.75c1.036 0 1.875.84 1.875 1.875v11.25c0 1.035-.84 1.875-1.875 1.875h-.75a1.875 1.875 0 0 1-1.875-1.875V8.625ZM3 13.125c0-1.036.84-1.875 1.875-1.875h.75c1.036 0 1.875.84 1.875 1.875v6.75c0 1.035-.84 1.875-1.875 1.875h-.75A1.875 1.875 0 0 1 3 19.875v-6.75Z"})])}function WS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.25 13.5a8.25 8.25 0 0 1 8.25-8.25.75.75 0 0 1 .75.75v6.75H18a.75.75 0 0 1 .75.75 8.25 8.25 0 0 1-16.5 0Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12.75 3a.75.75 0 0 1 .75-.75 8.25 8.25 0 0 1 8.25 8.25.75.75 0 0 1-.75.75h-7.5a.75.75 0 0 1-.75-.75V3Z","clip-rule":"evenodd"})])}function qS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.848 2.771A49.144 49.144 0 0 1 12 2.25c2.43 0 4.817.178 7.152.52 1.978.292 3.348 2.024 3.348 3.97v6.02c0 1.946-1.37 3.678-3.348 3.97a48.901 48.901 0 0 1-3.476.383.39.39 0 0 0-.297.17l-2.755 4.133a.75.75 0 0 1-1.248 0l-2.755-4.133a.39.39 0 0 0-.297-.17 48.9 48.9 0 0 1-3.476-.384c-1.978-.29-3.348-2.024-3.348-3.97V6.741c0-1.946 1.37-3.68 3.348-3.97ZM6.75 8.25a.75.75 0 0 1 .75-.75h9a.75.75 0 0 1 0 1.5h-9a.75.75 0 0 1-.75-.75Zm.75 2.25a.75.75 0 0 0 0 1.5H12a.75.75 0 0 0 0-1.5H7.5Z","clip-rule":"evenodd"})])}function YS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.848 2.771A49.144 49.144 0 0 1 12 2.25c2.43 0 4.817.178 7.152.52 1.978.292 3.348 2.024 3.348 3.97v6.02c0 1.946-1.37 3.678-3.348 3.97a48.901 48.901 0 0 1-3.476.383.39.39 0 0 0-.297.17l-2.755 4.133a.75.75 0 0 1-1.248 0l-2.755-4.133a.39.39 0 0 0-.297-.17 48.9 48.9 0 0 1-3.476-.384c-1.978-.29-3.348-2.024-3.348-3.97V6.741c0-1.946 1.37-3.68 3.348-3.97Z","clip-rule":"evenodd"})])}function KS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-2.429 0-4.817.178-7.152.521C2.87 3.061 1.5 4.795 1.5 6.741v6.018c0 1.946 1.37 3.68 3.348 3.97.877.129 1.761.234 2.652.316V21a.75.75 0 0 0 1.28.53l4.184-4.183a.39.39 0 0 1 .266-.112c2.006-.05 3.982-.22 5.922-.506 1.978-.29 3.348-2.023 3.348-3.97V6.741c0-1.947-1.37-3.68-3.348-3.97A49.145 49.145 0 0 0 12 2.25ZM8.25 8.625a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25Zm2.625 1.125a1.125 1.125 0 1 1 2.25 0 1.125 1.125 0 0 1-2.25 0Zm4.875-1.125a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25Z","clip-rule":"evenodd"})])}function GS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.913 2.658c2.075-.27 4.19-.408 6.337-.408 2.147 0 4.262.139 6.337.408 1.922.25 3.291 1.861 3.405 3.727a4.403 4.403 0 0 0-1.032-.211 50.89 50.89 0 0 0-8.42 0c-2.358.196-4.04 2.19-4.04 4.434v4.286a4.47 4.47 0 0 0 2.433 3.984L7.28 21.53A.75.75 0 0 1 6 21v-4.03a48.527 48.527 0 0 1-1.087-.128C2.905 16.58 1.5 14.833 1.5 12.862V6.638c0-1.97 1.405-3.718 3.413-3.979Z"}),e.createElementVNode("path",{d:"M15.75 7.5c-1.376 0-2.739.057-4.086.169C10.124 7.797 9 9.103 9 10.609v4.285c0 1.507 1.128 2.814 2.67 2.94 1.243.102 2.5.157 3.768.165l2.782 2.781a.75.75 0 0 0 1.28-.53v-2.39l.33-.026c1.542-.125 2.67-1.433 2.67-2.94v-4.286c0-1.505-1.125-2.811-2.664-2.94A49.392 49.392 0 0 0 15.75 7.5Z"})])}function JS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.848 2.771A49.144 49.144 0 0 1 12 2.25c2.43 0 4.817.178 7.152.52 1.978.292 3.348 2.024 3.348 3.97v6.02c0 1.946-1.37 3.678-3.348 3.97-1.94.284-3.916.455-5.922.505a.39.39 0 0 0-.266.112L8.78 21.53A.75.75 0 0 1 7.5 21v-3.955a48.842 48.842 0 0 1-2.652-.316c-1.978-.29-3.348-2.024-3.348-3.97V6.741c0-1.946 1.37-3.68 3.348-3.97Z","clip-rule":"evenodd"})])}function XS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.804 21.644A6.707 6.707 0 0 0 6 21.75a6.721 6.721 0 0 0 3.583-1.029c.774.182 1.584.279 2.417.279 5.322 0 9.75-3.97 9.75-9 0-5.03-4.428-9-9.75-9s-9.75 3.97-9.75 9c0 2.409 1.025 4.587 2.674 6.192.232.226.277.428.254.543a3.73 3.73 0 0 1-.814 1.686.75.75 0 0 0 .44 1.223ZM8.25 10.875a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25ZM10.875 12a1.125 1.125 0 1 1 2.25 0 1.125 1.125 0 0 1-2.25 0Zm4.875-1.125a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25Z","clip-rule":"evenodd"})])}function QS(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.337 21.718a6.707 6.707 0 0 1-.533-.074.75.75 0 0 1-.44-1.223 3.73 3.73 0 0 0 .814-1.686c.023-.115-.022-.317-.254-.543C3.274 16.587 2.25 14.41 2.25 12c0-5.03 4.428-9 9.75-9s9.75 3.97 9.75 9c0 5.03-4.428 9-9.75 9-.833 0-1.643-.097-2.417-.279a6.721 6.721 0 0 1-4.246.997Z","clip-rule":"evenodd"})])}function e$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.603 3.799A4.49 4.49 0 0 1 12 2.25c1.357 0 2.573.6 3.397 1.549a4.49 4.49 0 0 1 3.498 1.307 4.491 4.491 0 0 1 1.307 3.497A4.49 4.49 0 0 1 21.75 12a4.49 4.49 0 0 1-1.549 3.397 4.491 4.491 0 0 1-1.307 3.497 4.491 4.491 0 0 1-3.497 1.307A4.49 4.49 0 0 1 12 21.75a4.49 4.49 0 0 1-3.397-1.549 4.49 4.49 0 0 1-3.498-1.306 4.491 4.491 0 0 1-1.307-3.498A4.49 4.49 0 0 1 2.25 12c0-1.357.6-2.573 1.549-3.397a4.49 4.49 0 0 1 1.307-3.497 4.49 4.49 0 0 1 3.497-1.307Zm7.007 6.387a.75.75 0 1 0-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.14-.094l3.75-5.25Z","clip-rule":"evenodd"})])}function t$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm13.36-1.814a.75.75 0 1 0-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.14-.094l3.75-5.25Z","clip-rule":"evenodd"})])}function n$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M19.916 4.626a.75.75 0 0 1 .208 1.04l-9 13.5a.75.75 0 0 1-1.154.114l-6-6a.75.75 0 0 1 1.06-1.06l5.353 5.353 8.493-12.74a.75.75 0 0 1 1.04-.207Z","clip-rule":"evenodd"})])}function r$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.47 13.28a.75.75 0 0 0 1.06 0l7.5-7.5a.75.75 0 0 0-1.06-1.06L12 11.69 5.03 4.72a.75.75 0 0 0-1.06 1.06l7.5 7.5Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.47 19.28a.75.75 0 0 0 1.06 0l7.5-7.5a.75.75 0 1 0-1.06-1.06L12 17.69l-6.97-6.97a.75.75 0 0 0-1.06 1.06l7.5 7.5Z","clip-rule":"evenodd"})])}function o$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.72 11.47a.75.75 0 0 0 0 1.06l7.5 7.5a.75.75 0 1 0 1.06-1.06L12.31 12l6.97-6.97a.75.75 0 0 0-1.06-1.06l-7.5 7.5Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.72 11.47a.75.75 0 0 0 0 1.06l7.5 7.5a.75.75 0 1 0 1.06-1.06L6.31 12l6.97-6.97a.75.75 0 0 0-1.06-1.06l-7.5 7.5Z","clip-rule":"evenodd"})])}function a$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M13.28 11.47a.75.75 0 0 1 0 1.06l-7.5 7.5a.75.75 0 0 1-1.06-1.06L11.69 12 4.72 5.03a.75.75 0 0 1 1.06-1.06l7.5 7.5Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M19.28 11.47a.75.75 0 0 1 0 1.06l-7.5 7.5a.75.75 0 1 1-1.06-1.06L17.69 12l-6.97-6.97a.75.75 0 0 1 1.06-1.06l7.5 7.5Z","clip-rule":"evenodd"})])}function l$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.47 10.72a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 1 1-1.06 1.06L12 12.31l-6.97 6.97a.75.75 0 0 1-1.06-1.06l7.5-7.5Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.47 4.72a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 1 1-1.06 1.06L12 6.31l-6.97 6.97a.75.75 0 0 1-1.06-1.06l7.5-7.5Z","clip-rule":"evenodd"})])}function i$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12.53 16.28a.75.75 0 0 1-1.06 0l-7.5-7.5a.75.75 0 0 1 1.06-1.06L12 14.69l6.97-6.97a.75.75 0 1 1 1.06 1.06l-7.5 7.5Z","clip-rule":"evenodd"})])}function c$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.72 12.53a.75.75 0 0 1 0-1.06l7.5-7.5a.75.75 0 1 1 1.06 1.06L9.31 12l6.97 6.97a.75.75 0 1 1-1.06 1.06l-7.5-7.5Z","clip-rule":"evenodd"})])}function s$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M16.28 11.47a.75.75 0 0 1 0 1.06l-7.5 7.5a.75.75 0 0 1-1.06-1.06L14.69 12 7.72 5.03a.75.75 0 0 1 1.06-1.06l7.5 7.5Z","clip-rule":"evenodd"})])}function d$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.47 4.72a.75.75 0 0 1 1.06 0l3.75 3.75a.75.75 0 0 1-1.06 1.06L12 6.31 8.78 9.53a.75.75 0 0 1-1.06-1.06l3.75-3.75Zm-3.75 9.75a.75.75 0 0 1 1.06 0L12 17.69l3.22-3.22a.75.75 0 1 1 1.06 1.06l-3.75 3.75a.75.75 0 0 1-1.06 0l-3.75-3.75a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function u$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.47 7.72a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 1 1-1.06 1.06L12 9.31l-6.97 6.97a.75.75 0 0 1-1.06-1.06l7.5-7.5Z","clip-rule":"evenodd"})])}function h$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M21 6.375c0 2.692-4.03 4.875-9 4.875S3 9.067 3 6.375 7.03 1.5 12 1.5s9 2.183 9 4.875Z"}),e.createElementVNode("path",{d:"M12 12.75c2.685 0 5.19-.586 7.078-1.609a8.283 8.283 0 0 0 1.897-1.384c.016.121.025.244.025.368C21 12.817 16.97 15 12 15s-9-2.183-9-4.875c0-.124.009-.247.025-.368a8.285 8.285 0 0 0 1.897 1.384C6.809 12.164 9.315 12.75 12 12.75Z"}),e.createElementVNode("path",{d:"M12 16.5c2.685 0 5.19-.586 7.078-1.609a8.282 8.282 0 0 0 1.897-1.384c.016.121.025.244.025.368 0 2.692-4.03 4.875-9 4.875s-9-2.183-9-4.875c0-.124.009-.247.025-.368a8.284 8.284 0 0 0 1.897 1.384C6.809 15.914 9.315 16.5 12 16.5Z"}),e.createElementVNode("path",{d:"M12 20.25c2.685 0 5.19-.586 7.078-1.609a8.282 8.282 0 0 0 1.897-1.384c.016.121.025.244.025.368 0 2.692-4.03 4.875-9 4.875s-9-2.183-9-4.875c0-.124.009-.247.025-.368a8.284 8.284 0 0 0 1.897 1.384C6.809 19.664 9.315 20.25 12 20.25Z"})])}function p$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.502 6h7.128A3.375 3.375 0 0 1 18 9.375v9.375a3 3 0 0 0 3-3V6.108c0-1.505-1.125-2.811-2.664-2.94a48.972 48.972 0 0 0-.673-.05A3 3 0 0 0 15 1.5h-1.5a3 3 0 0 0-2.663 1.618c-.225.015-.45.032-.673.05C8.662 3.295 7.554 4.542 7.502 6ZM13.5 3A1.5 1.5 0 0 0 12 4.5h4.5A1.5 1.5 0 0 0 15 3h-1.5Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 9.375C3 8.339 3.84 7.5 4.875 7.5h9.75c1.036 0 1.875.84 1.875 1.875v11.25c0 1.035-.84 1.875-1.875 1.875h-9.75A1.875 1.875 0 0 1 3 20.625V9.375Zm9.586 4.594a.75.75 0 0 0-1.172-.938l-2.476 3.096-.908-.907a.75.75 0 0 0-1.06 1.06l1.5 1.5a.75.75 0 0 0 1.116-.062l3-3.75Z","clip-rule":"evenodd"})])}function f$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.502 6h7.128A3.375 3.375 0 0 1 18 9.375v9.375a3 3 0 0 0 3-3V6.108c0-1.505-1.125-2.811-2.664-2.94a48.972 48.972 0 0 0-.673-.05A3 3 0 0 0 15 1.5h-1.5a3 3 0 0 0-2.663 1.618c-.225.015-.45.032-.673.05C8.662 3.295 7.554 4.542 7.502 6ZM13.5 3A1.5 1.5 0 0 0 12 4.5h4.5A1.5 1.5 0 0 0 15 3h-1.5Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 9.375C3 8.339 3.84 7.5 4.875 7.5h9.75c1.036 0 1.875.84 1.875 1.875v11.25c0 1.035-.84 1.875-1.875 1.875h-9.75A1.875 1.875 0 0 1 3 20.625V9.375ZM6 12a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H6.75a.75.75 0 0 1-.75-.75V12Zm2.25 0a.75.75 0 0 1 .75-.75h3.75a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75ZM6 15a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H6.75a.75.75 0 0 1-.75-.75V15Zm2.25 0a.75.75 0 0 1 .75-.75h3.75a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75ZM6 18a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H6.75a.75.75 0 0 1-.75-.75V18Zm2.25 0a.75.75 0 0 1 .75-.75h3.75a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function m$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M17.663 3.118c.225.015.45.032.673.05C19.876 3.298 21 4.604 21 6.109v9.642a3 3 0 0 1-3 3V16.5c0-5.922-4.576-10.775-10.384-11.217.324-1.132 1.3-2.01 2.548-2.114.224-.019.448-.036.673-.051A3 3 0 0 1 13.5 1.5H15a3 3 0 0 1 2.663 1.618ZM12 4.5A1.5 1.5 0 0 1 13.5 3H15a1.5 1.5 0 0 1 1.5 1.5H12Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M3 8.625c0-1.036.84-1.875 1.875-1.875h.375A3.75 3.75 0 0 1 9 10.5v1.875c0 1.036.84 1.875 1.875 1.875h1.875A3.75 3.75 0 0 1 16.5 18v2.625c0 1.035-.84 1.875-1.875 1.875h-9.75A1.875 1.875 0 0 1 3 20.625v-12Z"}),e.createElementVNode("path",{d:"M10.5 10.5a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963 5.23 5.23 0 0 0-3.434-1.279h-1.875a.375.375 0 0 1-.375-.375V10.5Z"})])}function w$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.5 3A1.501 1.501 0 0 0 9 4.5h6A1.5 1.5 0 0 0 13.5 3h-3Zm-2.693.178A3 3 0 0 1 10.5 1.5h3a3 3 0 0 1 2.694 1.678c.497.042.992.092 1.486.15 1.497.173 2.57 1.46 2.57 2.929V19.5a3 3 0 0 1-3 3H6.75a3 3 0 0 1-3-3V6.257c0-1.47 1.073-2.756 2.57-2.93.493-.057.989-.107 1.487-.15Z","clip-rule":"evenodd"})])}function g$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25ZM12.75 6a.75.75 0 0 0-1.5 0v6c0 .414.336.75.75.75h4.5a.75.75 0 0 0 0-1.5h-3.75V6Z","clip-rule":"evenodd"})])}function k$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.5 3.75a6 6 0 0 0-5.98 6.496A5.25 5.25 0 0 0 6.75 20.25H18a4.5 4.5 0 0 0 2.206-8.423 3.75 3.75 0 0 0-4.133-4.303A6.001 6.001 0 0 0 10.5 3.75Zm2.25 6a.75.75 0 0 0-1.5 0v4.94l-1.72-1.72a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0l3-3a.75.75 0 1 0-1.06-1.06l-1.72 1.72V9.75Z","clip-rule":"evenodd"})])}function x$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.5 3.75a6 6 0 0 0-5.98 6.496A5.25 5.25 0 0 0 6.75 20.25H18a4.5 4.5 0 0 0 2.206-8.423 3.75 3.75 0 0 0-4.133-4.303A6.001 6.001 0 0 0 10.5 3.75Zm2.03 5.47a.75.75 0 0 0-1.06 0l-3 3a.75.75 0 1 0 1.06 1.06l1.72-1.72v4.94a.75.75 0 0 0 1.5 0v-4.94l1.72 1.72a.75.75 0 1 0 1.06-1.06l-3-3Z","clip-rule":"evenodd"})])}function v$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 9.75a6 6 0 0 1 11.573-2.226 3.75 3.75 0 0 1 4.133 4.303A4.5 4.5 0 0 1 18 20.25H6.75a5.25 5.25 0 0 1-2.23-10.004 6.072 6.072 0 0 1-.02-.496Z","clip-rule":"evenodd"})])}function y$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm14.25 6a.75.75 0 0 1-.22.53l-2.25 2.25a.75.75 0 1 1-1.06-1.06L15.44 12l-1.72-1.72a.75.75 0 1 1 1.06-1.06l2.25 2.25c.141.14.22.331.22.53Zm-10.28-.53a.75.75 0 0 0 0 1.06l2.25 2.25a.75.75 0 1 0 1.06-1.06L8.56 12l1.72-1.72a.75.75 0 1 0-1.06-1.06l-2.25 2.25Z","clip-rule":"evenodd"})])}function B$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M14.447 3.026a.75.75 0 0 1 .527.921l-4.5 16.5a.75.75 0 0 1-1.448-.394l4.5-16.5a.75.75 0 0 1 .921-.527ZM16.72 6.22a.75.75 0 0 1 1.06 0l5.25 5.25a.75.75 0 0 1 0 1.06l-5.25 5.25a.75.75 0 1 1-1.06-1.06L21.44 12l-4.72-4.72a.75.75 0 0 1 0-1.06Zm-9.44 0a.75.75 0 0 1 0 1.06L2.56 12l4.72 4.72a.75.75 0 0 1-1.06 1.06L.97 12.53a.75.75 0 0 1 0-1.06l5.25-5.25a.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function E$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.078 2.25c-.917 0-1.699.663-1.85 1.567L9.05 4.889c-.02.12-.115.26-.297.348a7.493 7.493 0 0 0-.986.57c-.166.115-.334.126-.45.083L6.3 5.508a1.875 1.875 0 0 0-2.282.819l-.922 1.597a1.875 1.875 0 0 0 .432 2.385l.84.692c.095.078.17.229.154.43a7.598 7.598 0 0 0 0 1.139c.015.2-.059.352-.153.43l-.841.692a1.875 1.875 0 0 0-.432 2.385l.922 1.597a1.875 1.875 0 0 0 2.282.818l1.019-.382c.115-.043.283-.031.45.082.312.214.641.405.985.57.182.088.277.228.297.35l.178 1.071c.151.904.933 1.567 1.85 1.567h1.844c.916 0 1.699-.663 1.85-1.567l.178-1.072c.02-.12.114-.26.297-.349.344-.165.673-.356.985-.57.167-.114.335-.125.45-.082l1.02.382a1.875 1.875 0 0 0 2.28-.819l.923-1.597a1.875 1.875 0 0 0-.432-2.385l-.84-.692c-.095-.078-.17-.229-.154-.43a7.614 7.614 0 0 0 0-1.139c-.016-.2.059-.352.153-.43l.84-.692c.708-.582.891-1.59.433-2.385l-.922-1.597a1.875 1.875 0 0 0-2.282-.818l-1.02.382c-.114.043-.282.031-.449-.083a7.49 7.49 0 0 0-.985-.57c-.183-.087-.277-.227-.297-.348l-.179-1.072a1.875 1.875 0 0 0-1.85-1.567h-1.843ZM12 15.75a3.75 3.75 0 1 0 0-7.5 3.75 3.75 0 0 0 0 7.5Z","clip-rule":"evenodd"})])}function b$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.828 2.25c-.916 0-1.699.663-1.85 1.567l-.091.549a.798.798 0 0 1-.517.608 7.45 7.45 0 0 0-.478.198.798.798 0 0 1-.796-.064l-.453-.324a1.875 1.875 0 0 0-2.416.2l-.243.243a1.875 1.875 0 0 0-.2 2.416l.324.453a.798.798 0 0 1 .064.796 7.448 7.448 0 0 0-.198.478.798.798 0 0 1-.608.517l-.55.092a1.875 1.875 0 0 0-1.566 1.849v.344c0 .916.663 1.699 1.567 1.85l.549.091c.281.047.508.25.608.517.06.162.127.321.198.478a.798.798 0 0 1-.064.796l-.324.453a1.875 1.875 0 0 0 .2 2.416l.243.243c.648.648 1.67.733 2.416.2l.453-.324a.798.798 0 0 1 .796-.064c.157.071.316.137.478.198.267.1.47.327.517.608l.092.55c.15.903.932 1.566 1.849 1.566h.344c.916 0 1.699-.663 1.85-1.567l.091-.549a.798.798 0 0 1 .517-.608 7.52 7.52 0 0 0 .478-.198.798.798 0 0 1 .796.064l.453.324a1.875 1.875 0 0 0 2.416-.2l.243-.243c.648-.648.733-1.67.2-2.416l-.324-.453a.798.798 0 0 1-.064-.796c.071-.157.137-.316.198-.478.1-.267.327-.47.608-.517l.55-.091a1.875 1.875 0 0 0 1.566-1.85v-.344c0-.916-.663-1.699-1.567-1.85l-.549-.091a.798.798 0 0 1-.608-.517 7.507 7.507 0 0 0-.198-.478.798.798 0 0 1 .064-.796l.324-.453a1.875 1.875 0 0 0-.2-2.416l-.243-.243a1.875 1.875 0 0 0-2.416-.2l-.453.324a.798.798 0 0 1-.796.064 7.462 7.462 0 0 0-.478-.198.798.798 0 0 1-.517-.608l-.091-.55a1.875 1.875 0 0 0-1.85-1.566h-.344ZM12 15.75a3.75 3.75 0 1 0 0-7.5 3.75 3.75 0 0 0 0 7.5Z","clip-rule":"evenodd"})])}function C$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M17.004 10.407c.138.435-.216.842-.672.842h-3.465a.75.75 0 0 1-.65-.375l-1.732-3c-.229-.396-.053-.907.393-1.004a5.252 5.252 0 0 1 6.126 3.537ZM8.12 8.464c.307-.338.838-.235 1.066.16l1.732 3a.75.75 0 0 1 0 .75l-1.732 3c-.229.397-.76.5-1.067.161A5.23 5.23 0 0 1 6.75 12a5.23 5.23 0 0 1 1.37-3.536ZM10.878 17.13c-.447-.098-.623-.608-.394-1.004l1.733-3.002a.75.75 0 0 1 .65-.375h3.465c.457 0 .81.407.672.842a5.252 5.252 0 0 1-6.126 3.539Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M21 12.75a.75.75 0 1 0 0-1.5h-.783a8.22 8.22 0 0 0-.237-1.357l.734-.267a.75.75 0 1 0-.513-1.41l-.735.268a8.24 8.24 0 0 0-.689-1.192l.6-.503a.75.75 0 1 0-.964-1.149l-.6.504a8.3 8.3 0 0 0-1.054-.885l.391-.678a.75.75 0 1 0-1.299-.75l-.39.676a8.188 8.188 0 0 0-1.295-.47l.136-.77a.75.75 0 0 0-1.477-.26l-.136.77a8.36 8.36 0 0 0-1.377 0l-.136-.77a.75.75 0 1 0-1.477.26l.136.77c-.448.121-.88.28-1.294.47l-.39-.676a.75.75 0 0 0-1.3.75l.392.678a8.29 8.29 0 0 0-1.054.885l-.6-.504a.75.75 0 1 0-.965 1.149l.6.503a8.243 8.243 0 0 0-.689 1.192L3.8 8.216a.75.75 0 1 0-.513 1.41l.735.267a8.222 8.222 0 0 0-.238 1.356h-.783a.75.75 0 0 0 0 1.5h.783c.042.464.122.917.238 1.356l-.735.268a.75.75 0 0 0 .513 1.41l.735-.268c.197.417.428.816.69 1.191l-.6.504a.75.75 0 0 0 .963 1.15l.601-.505c.326.323.679.62 1.054.885l-.392.68a.75.75 0 0 0 1.3.75l.39-.679c.414.192.847.35 1.294.471l-.136.77a.75.75 0 0 0 1.477.261l.137-.772a8.332 8.332 0 0 0 1.376 0l.136.772a.75.75 0 1 0 1.477-.26l-.136-.771a8.19 8.19 0 0 0 1.294-.47l.391.677a.75.75 0 0 0 1.3-.75l-.393-.679a8.29 8.29 0 0 0 1.054-.885l.601.504a.75.75 0 0 0 .964-1.15l-.6-.503c.261-.375.492-.774.69-1.191l.735.267a.75.75 0 1 0 .512-1.41l-.734-.267c.115-.439.195-.892.237-1.356h.784Zm-2.657-3.06a6.744 6.744 0 0 0-1.19-2.053 6.784 6.784 0 0 0-1.82-1.51A6.705 6.705 0 0 0 12 5.25a6.8 6.8 0 0 0-1.225.11 6.7 6.7 0 0 0-2.15.793 6.784 6.784 0 0 0-2.952 3.489.76.76 0 0 1-.036.098A6.74 6.74 0 0 0 5.251 12a6.74 6.74 0 0 0 3.366 5.842l.009.005a6.704 6.704 0 0 0 2.18.798l.022.003a6.792 6.792 0 0 0 2.368-.004 6.704 6.704 0 0 0 2.205-.811 6.785 6.785 0 0 0 1.762-1.484l.009-.01.009-.01a6.743 6.743 0 0 0 1.18-2.066c.253-.707.39-1.469.39-2.263a6.74 6.74 0 0 0-.408-2.309Z","clip-rule":"evenodd"})])}function M$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.25 6a3 3 0 0 1 3-3h13.5a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3V6Zm3.97.97a.75.75 0 0 1 1.06 0l2.25 2.25a.75.75 0 0 1 0 1.06l-2.25 2.25a.75.75 0 0 1-1.06-1.06l1.72-1.72-1.72-1.72a.75.75 0 0 1 0-1.06Zm4.28 4.28a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-3Z","clip-rule":"evenodd"})])}function V$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.25 5.25a3 3 0 0 1 3-3h13.5a3 3 0 0 1 3 3V15a3 3 0 0 1-3 3h-3v.257c0 .597.237 1.17.659 1.591l.621.622a.75.75 0 0 1-.53 1.28h-9a.75.75 0 0 1-.53-1.28l.621-.622a2.25 2.25 0 0 0 .659-1.59V18h-3a3 3 0 0 1-3-3V5.25Zm1.5 0v7.5a1.5 1.5 0 0 0 1.5 1.5h13.5a1.5 1.5 0 0 0 1.5-1.5v-7.5a1.5 1.5 0 0 0-1.5-1.5H5.25a1.5 1.5 0 0 0-1.5 1.5Z","clip-rule":"evenodd"})])}function A$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M16.5 7.5h-9v9h9v-9Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.25 2.25A.75.75 0 0 1 9 3v.75h2.25V3a.75.75 0 0 1 1.5 0v.75H15V3a.75.75 0 0 1 1.5 0v.75h.75a3 3 0 0 1 3 3v.75H21A.75.75 0 0 1 21 9h-.75v2.25H21a.75.75 0 0 1 0 1.5h-.75V15H21a.75.75 0 0 1 0 1.5h-.75v.75a3 3 0 0 1-3 3h-.75V21a.75.75 0 0 1-1.5 0v-.75h-2.25V21a.75.75 0 0 1-1.5 0v-.75H9V21a.75.75 0 0 1-1.5 0v-.75h-.75a3 3 0 0 1-3-3v-.75H3A.75.75 0 0 1 3 15h.75v-2.25H3a.75.75 0 0 1 0-1.5h.75V9H3a.75.75 0 0 1 0-1.5h.75v-.75a3 3 0 0 1 3-3h.75V3a.75.75 0 0 1 .75-.75ZM6 6.75A.75.75 0 0 1 6.75 6h10.5a.75.75 0 0 1 .75.75v10.5a.75.75 0 0 1-.75.75H6.75a.75.75 0 0 1-.75-.75V6.75Z","clip-rule":"evenodd"})])}function _$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.5 3.75a3 3 0 0 0-3 3v.75h21v-.75a3 3 0 0 0-3-3h-15Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M22.5 9.75h-21v7.5a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3v-7.5Zm-18 3.75a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Zm.75 2.25a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-3Z","clip-rule":"evenodd"})])}function N$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.622 1.602a.75.75 0 0 1 .756 0l2.25 1.313a.75.75 0 0 1-.756 1.295L12 3.118 10.128 4.21a.75.75 0 1 1-.756-1.295l2.25-1.313ZM5.898 5.81a.75.75 0 0 1-.27 1.025l-1.14.665 1.14.665a.75.75 0 1 1-.756 1.295L3.75 8.806v.944a.75.75 0 0 1-1.5 0V7.5a.75.75 0 0 1 .372-.648l2.25-1.312a.75.75 0 0 1 1.026.27Zm12.204 0a.75.75 0 0 1 1.026-.27l2.25 1.312a.75.75 0 0 1 .372.648v2.25a.75.75 0 0 1-1.5 0v-.944l-1.122.654a.75.75 0 1 1-.756-1.295l1.14-.665-1.14-.665a.75.75 0 0 1-.27-1.025Zm-9 5.25a.75.75 0 0 1 1.026-.27L12 11.882l1.872-1.092a.75.75 0 1 1 .756 1.295l-1.878 1.096V15a.75.75 0 0 1-1.5 0v-1.82l-1.878-1.095a.75.75 0 0 1-.27-1.025ZM3 13.5a.75.75 0 0 1 .75.75v1.82l1.878 1.095a.75.75 0 1 1-.756 1.295l-2.25-1.312a.75.75 0 0 1-.372-.648v-2.25A.75.75 0 0 1 3 13.5Zm18 0a.75.75 0 0 1 .75.75v2.25a.75.75 0 0 1-.372.648l-2.25 1.312a.75.75 0 1 1-.756-1.295l1.878-1.096V14.25a.75.75 0 0 1 .75-.75Zm-9 5.25a.75.75 0 0 1 .75.75v.944l1.122-.654a.75.75 0 1 1 .756 1.295l-2.25 1.313a.75.75 0 0 1-.756 0l-2.25-1.313a.75.75 0 1 1 .756-1.295l1.122.654V19.5a.75.75 0 0 1 .75-.75Z","clip-rule":"evenodd"})])}function Z$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M12.378 1.602a.75.75 0 0 0-.756 0L3 6.632l9 5.25 9-5.25-8.622-5.03ZM21.75 7.93l-9 5.25v9l8.628-5.032a.75.75 0 0 0 .372-.648V7.93ZM11.25 22.18v-9l-9-5.25v8.57a.75.75 0 0 0 .372.648l8.628 5.033Z"})])}function S$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 21.75c5.385 0 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25 2.25 6.615 2.25 12s4.365 9.75 9.75 9.75ZM10.5 7.963a1.5 1.5 0 0 0-2.17-1.341l-.415.207a.75.75 0 0 0 .67 1.342L9 7.963V9.75h-.75a.75.75 0 1 0 0 1.5H9v4.688c0 .563.26 1.198.867 1.525A4.501 4.501 0 0 0 16.41 14.4c.199-.977-.636-1.649-1.415-1.649h-.745a.75.75 0 1 0 0 1.5h.656a3.002 3.002 0 0 1-4.327 1.893.113.113 0 0 1-.045-.051.336.336 0 0 1-.034-.154V11.25h5.25a.75.75 0 0 0 0-1.5H10.5V7.963Z","clip-rule":"evenodd"})])}function $$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10.464 8.746c.227-.18.497-.311.786-.394v2.795a2.252 2.252 0 0 1-.786-.393c-.394-.313-.546-.681-.546-1.004 0-.323.152-.691.546-1.004ZM12.75 15.662v-2.824c.347.085.664.228.921.421.427.32.579.686.579.991 0 .305-.152.671-.579.991a2.534 2.534 0 0 1-.921.42Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25ZM12.75 6a.75.75 0 0 0-1.5 0v.816a3.836 3.836 0 0 0-1.72.756c-.712.566-1.112 1.35-1.112 2.178 0 .829.4 1.612 1.113 2.178.502.4 1.102.647 1.719.756v2.978a2.536 2.536 0 0 1-.921-.421l-.879-.66a.75.75 0 0 0-.9 1.2l.879.66c.533.4 1.169.645 1.821.75V18a.75.75 0 0 0 1.5 0v-.81a4.124 4.124 0 0 0 1.821-.749c.745-.559 1.179-1.344 1.179-2.191 0-.847-.434-1.632-1.179-2.191a4.122 4.122 0 0 0-1.821-.75V8.354c.29.082.559.213.786.393l.415.33a.75.75 0 0 0 .933-1.175l-.415-.33a3.836 3.836 0 0 0-1.719-.755V6Z","clip-rule":"evenodd"})])}function I$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25Zm-1.902 7.098a3.75 3.75 0 0 1 3.903-.884.75.75 0 1 0 .498-1.415A5.25 5.25 0 0 0 8.005 9.75H7.5a.75.75 0 0 0 0 1.5h.054a5.281 5.281 0 0 0 0 1.5H7.5a.75.75 0 0 0 0 1.5h.505a5.25 5.25 0 0 0 6.494 2.701.75.75 0 1 0-.498-1.415 3.75 3.75 0 0 1-4.252-1.286h3.001a.75.75 0 0 0 0-1.5H9.075a3.77 3.77 0 0 1 0-1.5h3.675a.75.75 0 0 0 0-1.5h-3c.105-.14.221-.274.348-.402Z","clip-rule":"evenodd"})])}function H$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25ZM9.763 9.51a2.25 2.25 0 0 1 3.828-1.351.75.75 0 0 0 1.06-1.06 3.75 3.75 0 0 0-6.38 2.252c-.033.307 0 .595.032.822l.154 1.077H8.25a.75.75 0 0 0 0 1.5h.421l.138.964a3.75 3.75 0 0 1-.358 2.208l-.122.242a.75.75 0 0 0 .908 1.047l1.539-.512a1.5 1.5 0 0 1 .948 0l.655.218a3 3 0 0 0 2.29-.163l.666-.333a.75.75 0 1 0-.67-1.342l-.667.333a1.5 1.5 0 0 1-1.145.082l-.654-.218a3 3 0 0 0-1.898 0l-.06.02a5.25 5.25 0 0 0 .053-1.794l-.108-.752H12a.75.75 0 0 0 0-1.5H9.972l-.184-1.29a1.863 1.863 0 0 1-.025-.45Z","clip-rule":"evenodd"})])}function T$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25ZM9 7.5A.75.75 0 0 0 9 9h1.5c.98 0 1.813.626 2.122 1.5H9A.75.75 0 0 0 9 12h3.622a2.251 2.251 0 0 1-2.122 1.5H9a.75.75 0 0 0-.53 1.28l3 3a.75.75 0 1 0 1.06-1.06L10.8 14.988A3.752 3.752 0 0 0 14.175 12H15a.75.75 0 0 0 0-1.5h-.825A3.733 3.733 0 0 0 13.5 9H15a.75.75 0 0 0 0-1.5H9Z","clip-rule":"evenodd"})])}function L$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25ZM9.624 7.084a.75.75 0 0 0-1.248.832l2.223 3.334H9a.75.75 0 0 0 0 1.5h2.25v1.5H9a.75.75 0 0 0 0 1.5h2.25v1.5a.75.75 0 0 0 1.5 0v-1.5H15a.75.75 0 0 0 0-1.5h-2.25v-1.5H15a.75.75 0 0 0 0-1.5h-1.599l2.223-3.334a.75.75 0 1 0-1.248-.832L12 10.648 9.624 7.084Z","clip-rule":"evenodd"})])}function D$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 1.5a.75.75 0 0 1 .75.75V4.5a.75.75 0 0 1-1.5 0V2.25A.75.75 0 0 1 12 1.5ZM5.636 4.136a.75.75 0 0 1 1.06 0l1.592 1.591a.75.75 0 0 1-1.061 1.06l-1.591-1.59a.75.75 0 0 1 0-1.061Zm12.728 0a.75.75 0 0 1 0 1.06l-1.591 1.592a.75.75 0 0 1-1.06-1.061l1.59-1.591a.75.75 0 0 1 1.061 0Zm-6.816 4.496a.75.75 0 0 1 .82.311l5.228 7.917a.75.75 0 0 1-.777 1.148l-2.097-.43 1.045 3.9a.75.75 0 0 1-1.45.388l-1.044-3.899-1.601 1.42a.75.75 0 0 1-1.247-.606l.569-9.47a.75.75 0 0 1 .554-.68ZM3 10.5a.75.75 0 0 1 .75-.75H6a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 10.5Zm14.25 0a.75.75 0 0 1 .75-.75h2.25a.75.75 0 0 1 0 1.5H18a.75.75 0 0 1-.75-.75Zm-8.962 3.712a.75.75 0 0 1 0 1.061l-1.591 1.591a.75.75 0 1 1-1.061-1.06l1.591-1.592a.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function P$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M17.303 5.197A7.5 7.5 0 0 0 6.697 15.803a.75.75 0 0 1-1.061 1.061A9 9 0 1 1 21 10.5a.75.75 0 0 1-1.5 0c0-1.92-.732-3.839-2.197-5.303Zm-2.121 2.121a4.5 4.5 0 0 0-6.364 6.364.75.75 0 1 1-1.06 1.06A6 6 0 1 1 18 10.5a.75.75 0 0 1-1.5 0c0-1.153-.44-2.303-1.318-3.182Zm-3.634 1.314a.75.75 0 0 1 .82.311l5.228 7.917a.75.75 0 0 1-.777 1.148l-2.097-.43 1.045 3.9a.75.75 0 0 1-1.45.388l-1.044-3.899-1.601 1.42a.75.75 0 0 1-1.247-.606l.569-9.47a.75.75 0 0 1 .554-.68Z","clip-rule":"evenodd"})])}function O$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10.5 18.75a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-3Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.625.75A3.375 3.375 0 0 0 5.25 4.125v15.75a3.375 3.375 0 0 0 3.375 3.375h6.75a3.375 3.375 0 0 0 3.375-3.375V4.125A3.375 3.375 0 0 0 15.375.75h-6.75ZM7.5 4.125C7.5 3.504 8.004 3 8.625 3H9.75v.375c0 .621.504 1.125 1.125 1.125h2.25c.621 0 1.125-.504 1.125-1.125V3h1.125c.621 0 1.125.504 1.125 1.125v15.75c0 .621-.504 1.125-1.125 1.125h-6.75A1.125 1.125 0 0 1 7.5 19.875V4.125Z","clip-rule":"evenodd"})])}function R$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10.5 18a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-3Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.125 1.5A3.375 3.375 0 0 0 3.75 4.875v14.25A3.375 3.375 0 0 0 7.125 22.5h9.75a3.375 3.375 0 0 0 3.375-3.375V4.875A3.375 3.375 0 0 0 16.875 1.5h-9.75ZM6 4.875c0-.621.504-1.125 1.125-1.125h9.75c.621 0 1.125.504 1.125 1.125v14.25c0 .621-.504 1.125-1.125 1.125h-9.75A1.125 1.125 0 0 1 6 19.125V4.875Z","clip-rule":"evenodd"})])}function z$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.874 5.248a1.125 1.125 0 1 1 2.25 0 1.125 1.125 0 0 1-2.25 0Zm-7.125 6.75a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75Zm7.125 6.753a1.125 1.125 0 1 1 2.25 0 1.125 1.125 0 0 1-2.25 0Z","clip-rule":"evenodd"})])}function j$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875Zm5.845 17.03a.75.75 0 0 0 1.06 0l3-3a.75.75 0 1 0-1.06-1.06l-1.72 1.72V12a.75.75 0 0 0-1.5 0v4.19l-1.72-1.72a.75.75 0 0 0-1.06 1.06l3 3Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25Z"})])}function F$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875Zm6.905 9.97a.75.75 0 0 0-1.06 0l-3 3a.75.75 0 1 0 1.06 1.06l1.72-1.72V18a.75.75 0 0 0 1.5 0v-4.19l1.72 1.72a.75.75 0 1 0 1.06-1.06l-3-3Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25Z"})])}function U$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875ZM9.75 17.25a.75.75 0 0 0-1.5 0V18a.75.75 0 0 0 1.5 0v-.75Zm2.25-3a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 .75-.75Zm3.75-1.5a.75.75 0 0 0-1.5 0V18a.75.75 0 0 0 1.5 0v-5.25Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25Z"})])}function W$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9 1.5H5.625c-1.036 0-1.875.84-1.875 1.875v17.25c0 1.035.84 1.875 1.875 1.875h12.75c1.035 0 1.875-.84 1.875-1.875V12.75A3.75 3.75 0 0 0 16.5 9h-1.875a1.875 1.875 0 0 1-1.875-1.875V5.25A3.75 3.75 0 0 0 9 1.5Zm6.61 10.936a.75.75 0 1 0-1.22-.872l-3.236 4.53L9.53 14.47a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.14-.094l3.75-5.25Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M12.971 1.816A5.23 5.23 0 0 1 14.25 5.25v1.875c0 .207.168.375.375.375H16.5a5.23 5.23 0 0 1 3.434 1.279 9.768 9.768 0 0 0-6.963-6.963Z"})])}function q$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.75 3.375c0-1.036.84-1.875 1.875-1.875H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375Zm10.5 1.875a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25Zm-3.75 5.56c0-1.336-1.616-2.005-2.56-1.06l-.22.22a.75.75 0 0 0 1.06 1.06l.22-.22v1.94h-.75a.75.75 0 0 0 0 1.5H9v3c0 .671.307 1.453 1.068 1.815a4.5 4.5 0 0 0 5.993-2.123c.233-.487.14-1-.136-1.37A1.459 1.459 0 0 0 14.757 15h-.507a.75.75 0 0 0 0 1.5h.349a2.999 2.999 0 0 1-3.887 1.21c-.091-.043-.212-.186-.212-.46v-3h5.25a.75.75 0 1 0 0-1.5H10.5v-1.94Z","clip-rule":"evenodd"})])}function Y$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.75 3.375c0-1.036.84-1.875 1.875-1.875H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375Zm10.5 1.875a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25ZM12 10.5a.75.75 0 0 1 .75.75v.028a9.727 9.727 0 0 1 1.687.28.75.75 0 1 1-.374 1.452 8.207 8.207 0 0 0-1.313-.226v1.68l.969.332c.67.23 1.281.85 1.281 1.704 0 .158-.007.314-.02.468-.083.931-.83 1.582-1.669 1.695a9.776 9.776 0 0 1-.561.059v.028a.75.75 0 0 1-1.5 0v-.029a9.724 9.724 0 0 1-1.687-.278.75.75 0 0 1 .374-1.453c.425.11.864.186 1.313.226v-1.68l-.968-.332C9.612 14.974 9 14.354 9 13.5c0-.158.007-.314.02-.468.083-.931.831-1.582 1.67-1.694.185-.025.372-.045.56-.06v-.028a.75.75 0 0 1 .75-.75Zm-1.11 2.324c.119-.016.239-.03.36-.04v1.166l-.482-.165c-.208-.072-.268-.211-.268-.285 0-.113.005-.225.015-.336.013-.146.14-.309.374-.34Zm1.86 4.392V16.05l.482.165c.208.072.268.211.268.285 0 .113-.005.225-.015.336-.012.146-.14.309-.374.34-.12.016-.24.03-.361.04Z","clip-rule":"evenodd"})])}function K$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.75 3.375c0-1.036.84-1.875 1.875-1.875H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375Zm7.464 9.442c.459-.573 1.019-.817 1.536-.817.517 0 1.077.244 1.536.817a.75.75 0 1 0 1.171-.937c-.713-.892-1.689-1.38-2.707-1.38-1.018 0-1.994.488-2.707 1.38a4.61 4.61 0 0 0-.705 1.245H8.25a.75.75 0 0 0 0 1.5h.763c-.017.25-.017.5 0 .75H8.25a.75.75 0 0 0 0 1.5h1.088c.17.449.406.87.705 1.245.713.892 1.689 1.38 2.707 1.38 1.018 0 1.994-.488 2.707-1.38a.75.75 0 0 0-1.171-.937c-.459.573-1.019.817-1.536.817-.517 0-1.077-.244-1.536-.817-.078-.098-.15-.2-.215-.308h1.751a.75.75 0 0 0 0-1.5h-2.232a3.965 3.965 0 0 1 0-.75h2.232a.75.75 0 0 0 0-1.5H11c.065-.107.136-.21.214-.308Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25Z"})])}function G$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.75 3.375c0-1.036.84-1.875 1.875-1.875H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375Zm10.5 1.875a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25Zm-3.674 9.583a2.249 2.249 0 0 1 3.765-2.174.75.75 0 0 0 1.06-1.06A3.75 3.75 0 0 0 9.076 15H8.25a.75.75 0 0 0 0 1.5h1.156a3.75 3.75 0 0 1-.206 1.559l-.156.439a.75.75 0 0 0 1.042.923l.439-.22a2.113 2.113 0 0 1 1.613-.115 3.613 3.613 0 0 0 2.758-.196l.44-.22a.75.75 0 1 0-.671-1.341l-.44.22a2.113 2.113 0 0 1-1.613.114 3.612 3.612 0 0 0-1.745-.134c.048-.341.062-.686.042-1.029H12a.75.75 0 0 0 0-1.5h-1.379l-.045-.167Z","clip-rule":"evenodd"})])}function J$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.75 3.375c0-1.036.84-1.875 1.875-1.875H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375Zm10.5 1.875a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25Zm-4.5 5.25a.75.75 0 0 0 0 1.5h.375c.769 0 1.43.463 1.719 1.125H9.75a.75.75 0 0 0 0 1.5h2.094a1.875 1.875 0 0 1-1.719 1.125H9.75a.75.75 0 0 0-.53 1.28l2.25 2.25a.75.75 0 0 0 1.06-1.06l-1.193-1.194a3.382 3.382 0 0 0 2.08-2.401h.833a.75.75 0 0 0 0-1.5h-.834A3.357 3.357 0 0 0 12.932 12h1.318a.75.75 0 0 0 0-1.5H10.5c-.04 0-.08.003-.12.01a3.425 3.425 0 0 0-.255-.01H9.75Z","clip-rule":"evenodd"})])}function X$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.75 3.375c0-1.036.84-1.875 1.875-1.875H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375Zm10.5 1.875a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25Zm-3.9 5.55a.75.75 0 0 0-1.2.9l1.912 2.55H9.75a.75.75 0 0 0 0 1.5h1.5v.75h-1.5a.75.75 0 0 0 0 1.5h1.5v.75a.75.75 0 1 0 1.5 0V18h1.5a.75.75 0 1 0 0-1.5h-1.5v-.75h1.5a.75.75 0 1 0 0-1.5h-1.313l1.913-2.55a.75.75 0 1 0-1.2-.9L12 13l-1.65-2.2Z","clip-rule":"evenodd"})])}function Q$(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7.5 3.375c0-1.036.84-1.875 1.875-1.875h.375a3.75 3.75 0 0 1 3.75 3.75v1.875C13.5 8.161 14.34 9 15.375 9h1.875A3.75 3.75 0 0 1 21 12.75v3.375C21 17.16 20.16 18 19.125 18h-9.75A1.875 1.875 0 0 1 7.5 16.125V3.375Z"}),e.createElementVNode("path",{d:"M15 5.25a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 17.25 7.5h-1.875A.375.375 0 0 1 15 7.125V5.25ZM4.875 6H6v10.125A3.375 3.375 0 0 0 9.375 19.5H16.5v1.125c0 1.035-.84 1.875-1.875 1.875h-9.75A1.875 1.875 0 0 1 3 20.625V7.875C3 6.839 3.84 6 4.875 6Z"})])}function eI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M11.625 16.5a1.875 1.875 0 1 0 0-3.75 1.875 1.875 0 0 0 0 3.75Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875Zm6 16.5c.66 0 1.277-.19 1.797-.518l1.048 1.048a.75.75 0 0 0 1.06-1.06l-1.047-1.048A3.375 3.375 0 1 0 11.625 18Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25Z"})])}function tI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875ZM9.75 14.25a.75.75 0 0 0 0 1.5H15a.75.75 0 0 0 0-1.5H9.75Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25Z"})])}function nI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875ZM12.75 12a.75.75 0 0 0-1.5 0v2.25H9a.75.75 0 0 0 0 1.5h2.25V18a.75.75 0 0 0 1.5 0v-2.25H15a.75.75 0 0 0 0-1.5h-2.25V12Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25Z"})])}function rI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.625 1.5c-1.036 0-1.875.84-1.875 1.875v17.25c0 1.035.84 1.875 1.875 1.875h12.75c1.035 0 1.875-.84 1.875-1.875V12.75A3.75 3.75 0 0 0 16.5 9h-1.875a1.875 1.875 0 0 1-1.875-1.875V5.25A3.75 3.75 0 0 0 9 1.5H5.625ZM7.5 15a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 7.5 15Zm.75 2.25a.75.75 0 0 0 0 1.5H12a.75.75 0 0 0 0-1.5H8.25Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M12.971 1.816A5.23 5.23 0 0 1 14.25 5.25v1.875c0 .207.168.375.375.375H16.5a5.23 5.23 0 0 1 3.434 1.279 9.768 9.768 0 0 0-6.963-6.963Z"})])}function oI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.625 1.5c-1.036 0-1.875.84-1.875 1.875v17.25c0 1.035.84 1.875 1.875 1.875h12.75c1.035 0 1.875-.84 1.875-1.875V12.75A3.75 3.75 0 0 0 16.5 9h-1.875a1.875 1.875 0 0 1-1.875-1.875V5.25A3.75 3.75 0 0 0 9 1.5H5.625Z"}),e.createElementVNode("path",{d:"M12.971 1.816A5.23 5.23 0 0 1 14.25 5.25v1.875c0 .207.168.375.375.375H16.5a5.23 5.23 0 0 1 3.434 1.279 9.768 9.768 0 0 0-6.963-6.963Z"})])}function aI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25Zm0 8.625a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25ZM15.375 12a1.125 1.125 0 1 1 2.25 0 1.125 1.125 0 0 1-2.25 0ZM7.5 10.875a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25Z","clip-rule":"evenodd"})])}function lI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 12a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Zm6 0a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Zm6 0a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z","clip-rule":"evenodd"})])}function iI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.5 6a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Zm0 6a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Zm0 6a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z","clip-rule":"evenodd"})])}function cI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M19.5 22.5a3 3 0 0 0 3-3v-8.174l-6.879 4.022 3.485 1.876a.75.75 0 1 1-.712 1.321l-5.683-3.06a1.5 1.5 0 0 0-1.422 0l-5.683 3.06a.75.75 0 0 1-.712-1.32l3.485-1.877L1.5 11.326V19.5a3 3 0 0 0 3 3h15Z"}),e.createElementVNode("path",{d:"M1.5 9.589v-.745a3 3 0 0 1 1.578-2.642l7.5-4.038a3 3 0 0 1 2.844 0l7.5 4.038A3 3 0 0 1 22.5 8.844v.745l-8.426 4.926-.652-.351a3 3 0 0 0-2.844 0l-.652.351L1.5 9.589Z"})])}function sI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M1.5 8.67v8.58a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3V8.67l-8.928 5.493a3 3 0 0 1-3.144 0L1.5 8.67Z"}),e.createElementVNode("path",{d:"M22.5 6.908V6.75a3 3 0 0 0-3-3h-15a3 3 0 0 0-3 3v.158l9.714 5.978a1.5 1.5 0 0 0 1.572 0L22.5 6.908Z"})])}function dI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.748 8.248a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75ZM3.748 15.75a.75.75 0 0 1 .75-.751h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function uI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12ZM12 8.25a.75.75 0 0 1 .75.75v3.75a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75Zm0 8.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z","clip-rule":"evenodd"})])}function hI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.401 3.003c1.155-2 4.043-2 5.197 0l7.355 12.748c1.154 2-.29 4.5-2.599 4.5H4.645c-2.309 0-3.752-2.5-2.598-4.5L9.4 3.003ZM12 8.25a.75.75 0 0 1 .75.75v3.75a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75Zm0 8.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z","clip-rule":"evenodd"})])}function pI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M16.098 2.598a3.75 3.75 0 1 1 3.622 6.275l-1.72.46V12a.75.75 0 0 1-.22.53l-.75.75a.75.75 0 0 1-1.06 0l-.97-.97-7.94 7.94a2.56 2.56 0 0 1-1.81.75 1.06 1.06 0 0 0-.75.31l-.97.97a.75.75 0 0 1-1.06 0l-.75-.75a.75.75 0 0 1 0-1.06l.97-.97a1.06 1.06 0 0 0 .31-.75c0-.68.27-1.33.75-1.81L11.69 9l-.97-.97a.75.75 0 0 1 0-1.06l.75-.75A.75.75 0 0 1 12 6h2.666l.461-1.72c.165-.617.49-1.2.971-1.682Zm-3.348 7.463L4.81 18a1.06 1.06 0 0 0-.31.75c0 .318-.06.63-.172.922a2.56 2.56 0 0 1 .922-.172c.281 0 .551-.112.75-.31l7.94-7.94-1.19-1.19Z","clip-rule":"evenodd"})])}function fI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.53 2.47a.75.75 0 0 0-1.06 1.06l18 18a.75.75 0 1 0 1.06-1.06l-18-18ZM22.676 12.553a11.249 11.249 0 0 1-2.631 4.31l-3.099-3.099a5.25 5.25 0 0 0-6.71-6.71L7.759 4.577a11.217 11.217 0 0 1 4.242-.827c4.97 0 9.185 3.223 10.675 7.69.12.362.12.752 0 1.113Z"}),e.createElementVNode("path",{d:"M15.75 12c0 .18-.013.357-.037.53l-4.244-4.243A3.75 3.75 0 0 1 15.75 12ZM12.53 15.713l-4.243-4.244a3.75 3.75 0 0 0 4.244 4.243Z"}),e.createElementVNode("path",{d:"M6.75 12c0-.619.107-1.213.304-1.764l-3.1-3.1a11.25 11.25 0 0 0-2.63 4.31c-.12.362-.12.752 0 1.114 1.489 4.467 5.704 7.69 10.675 7.69 1.5 0 2.933-.294 4.242-.827l-2.477-2.477A5.25 5.25 0 0 1 6.75 12Z"})])}function mI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.323 11.447C2.811 6.976 7.028 3.75 12.001 3.75c4.97 0 9.185 3.223 10.675 7.69.12.362.12.752 0 1.113-1.487 4.471-5.705 7.697-10.677 7.697-4.97 0-9.186-3.223-10.675-7.69a1.762 1.762 0 0 1 0-1.113ZM17.25 12a5.25 5.25 0 1 1-10.5 0 5.25 5.25 0 0 1 10.5 0Z","clip-rule":"evenodd"})])}function wI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25Zm-2.625 6c-.54 0-.828.419-.936.634a1.96 1.96 0 0 0-.189.866c0 .298.059.605.189.866.108.215.395.634.936.634.54 0 .828-.419.936-.634.13-.26.189-.568.189-.866 0-.298-.059-.605-.189-.866-.108-.215-.395-.634-.936-.634Zm4.314.634c.108-.215.395-.634.936-.634.54 0 .828.419.936.634.13.26.189.568.189.866 0 .298-.059.605-.189.866-.108.215-.395.634-.936.634-.54 0-.828-.419-.936-.634a1.96 1.96 0 0 1-.189-.866c0-.298.059-.605.189-.866Zm-4.34 7.964a.75.75 0 0 1-1.061-1.06 5.236 5.236 0 0 1 3.73-1.538 5.236 5.236 0 0 1 3.695 1.538.75.75 0 1 1-1.061 1.06 3.736 3.736 0 0 0-2.639-1.098 3.736 3.736 0 0 0-2.664 1.098Z","clip-rule":"evenodd"})])}function gI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25Zm-2.625 6c-.54 0-.828.419-.936.634a1.96 1.96 0 0 0-.189.866c0 .298.059.605.189.866.108.215.395.634.936.634.54 0 .828-.419.936-.634.13-.26.189-.568.189-.866 0-.298-.059-.605-.189-.866-.108-.215-.395-.634-.936-.634Zm4.314.634c.108-.215.395-.634.936-.634.54 0 .828.419.936.634.13.26.189.568.189.866 0 .298-.059.605-.189.866-.108.215-.395.634-.936.634-.54 0-.828-.419-.936-.634a1.96 1.96 0 0 1-.189-.866c0-.298.059-.605.189-.866Zm2.023 6.828a.75.75 0 1 0-1.06-1.06 3.75 3.75 0 0 1-5.304 0 .75.75 0 0 0-1.06 1.06 5.25 5.25 0 0 0 7.424 0Z","clip-rule":"evenodd"})])}function kI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.5 5.625c0-1.036.84-1.875 1.875-1.875h17.25c1.035 0 1.875.84 1.875 1.875v12.75c0 1.035-.84 1.875-1.875 1.875H3.375A1.875 1.875 0 0 1 1.5 18.375V5.625Zm1.5 0v1.5c0 .207.168.375.375.375h1.5a.375.375 0 0 0 .375-.375v-1.5a.375.375 0 0 0-.375-.375h-1.5A.375.375 0 0 0 3 5.625Zm16.125-.375a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375h1.5A.375.375 0 0 0 21 7.125v-1.5a.375.375 0 0 0-.375-.375h-1.5ZM21 9.375A.375.375 0 0 0 20.625 9h-1.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375h1.5a.375.375 0 0 0 .375-.375v-1.5Zm0 3.75a.375.375 0 0 0-.375-.375h-1.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375h1.5a.375.375 0 0 0 .375-.375v-1.5Zm0 3.75a.375.375 0 0 0-.375-.375h-1.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375h1.5a.375.375 0 0 0 .375-.375v-1.5ZM4.875 18.75a.375.375 0 0 0 .375-.375v-1.5a.375.375 0 0 0-.375-.375h-1.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375h1.5ZM3.375 15h1.5a.375.375 0 0 0 .375-.375v-1.5a.375.375 0 0 0-.375-.375h-1.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375Zm0-3.75h1.5a.375.375 0 0 0 .375-.375v-1.5A.375.375 0 0 0 4.875 9h-1.5A.375.375 0 0 0 3 9.375v1.5c0 .207.168.375.375.375Zm4.125 0a.75.75 0 0 0 0 1.5h9a.75.75 0 0 0 0-1.5h-9Z","clip-rule":"evenodd"})])}function xI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 3.75a6.715 6.715 0 0 0-3.722 1.118.75.75 0 1 1-.828-1.25 8.25 8.25 0 0 1 12.8 6.883c0 3.014-.574 5.897-1.62 8.543a.75.75 0 0 1-1.395-.551A21.69 21.69 0 0 0 18.75 10.5 6.75 6.75 0 0 0 12 3.75ZM6.157 5.739a.75.75 0 0 1 .21 1.04A6.715 6.715 0 0 0 5.25 10.5c0 1.613-.463 3.12-1.265 4.393a.75.75 0 0 1-1.27-.8A6.715 6.715 0 0 0 3.75 10.5c0-1.68.503-3.246 1.367-4.55a.75.75 0 0 1 1.04-.211ZM12 7.5a3 3 0 0 0-3 3c0 3.1-1.176 5.927-3.105 8.056a.75.75 0 1 1-1.112-1.008A10.459 10.459 0 0 0 7.5 10.5a4.5 4.5 0 1 1 9 0c0 .547-.022 1.09-.067 1.626a.75.75 0 0 1-1.495-.123c.041-.495.062-.996.062-1.503a3 3 0 0 0-3-3Zm0 2.25a.75.75 0 0 1 .75.75c0 3.908-1.424 7.485-3.781 10.238a.75.75 0 0 1-1.14-.975A14.19 14.19 0 0 0 11.25 10.5a.75.75 0 0 1 .75-.75Zm3.239 5.183a.75.75 0 0 1 .515.927 19.417 19.417 0 0 1-2.585 5.544.75.75 0 0 1-1.243-.84 17.915 17.915 0 0 0 2.386-5.116.75.75 0 0 1 .927-.515Z","clip-rule":"evenodd"})])}function vI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12.963 2.286a.75.75 0 0 0-1.071-.136 9.742 9.742 0 0 0-3.539 6.176 7.547 7.547 0 0 1-1.705-1.715.75.75 0 0 0-1.152-.082A9 9 0 1 0 15.68 4.534a7.46 7.46 0 0 1-2.717-2.248ZM15.75 14.25a3.75 3.75 0 1 1-7.313-1.172c.628.465 1.35.81 2.133 1a5.99 5.99 0 0 1 1.925-3.546 3.75 3.75 0 0 1 3.255 3.718Z","clip-rule":"evenodd"})])}function yI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 2.25a.75.75 0 0 1 .75.75v.54l1.838-.46a9.75 9.75 0 0 1 6.725.738l.108.054A8.25 8.25 0 0 0 18 4.524l3.11-.732a.75.75 0 0 1 .917.81 47.784 47.784 0 0 0 .005 10.337.75.75 0 0 1-.574.812l-3.114.733a9.75 9.75 0 0 1-6.594-.77l-.108-.054a8.25 8.25 0 0 0-5.69-.625l-2.202.55V21a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 3 2.25Z","clip-rule":"evenodd"})])}function BI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M19.5 21a3 3 0 0 0 3-3V9a3 3 0 0 0-3-3h-5.379a.75.75 0 0 1-.53-.22L11.47 3.66A2.25 2.25 0 0 0 9.879 3H4.5a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h15Zm-6.75-10.5a.75.75 0 0 0-1.5 0v4.19l-1.72-1.72a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0l3-3a.75.75 0 1 0-1.06-1.06l-1.72 1.72V10.5Z","clip-rule":"evenodd"})])}function EI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M19.5 21a3 3 0 0 0 3-3V9a3 3 0 0 0-3-3h-5.379a.75.75 0 0 1-.53-.22L11.47 3.66A2.25 2.25 0 0 0 9.879 3H4.5a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h15ZM9 12.75a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5H9Z","clip-rule":"evenodd"})])}function bI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M19.906 9c.382 0 .749.057 1.094.162V9a3 3 0 0 0-3-3h-3.879a.75.75 0 0 1-.53-.22L11.47 3.66A2.25 2.25 0 0 0 9.879 3H6a3 3 0 0 0-3 3v3.162A3.756 3.756 0 0 1 4.094 9h15.812ZM4.094 10.5a2.25 2.25 0 0 0-2.227 2.568l.857 6A2.25 2.25 0 0 0 4.951 21H19.05a2.25 2.25 0 0 0 2.227-1.932l.857-6a2.25 2.25 0 0 0-2.227-2.568H4.094Z"})])}function CI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M19.5 21a3 3 0 0 0 3-3V9a3 3 0 0 0-3-3h-5.379a.75.75 0 0 1-.53-.22L11.47 3.66A2.25 2.25 0 0 0 9.879 3H4.5a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h15Zm-6.75-10.5a.75.75 0 0 0-1.5 0v2.25H9a.75.75 0 0 0 0 1.5h2.25v2.25a.75.75 0 0 0 1.5 0v-2.25H15a.75.75 0 0 0 0-1.5h-2.25V10.5Z","clip-rule":"evenodd"})])}function MI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M19.5 21a3 3 0 0 0 3-3v-4.5a3 3 0 0 0-3-3h-15a3 3 0 0 0-3 3V18a3 3 0 0 0 3 3h15ZM1.5 10.146V6a3 3 0 0 1 3-3h5.379a2.25 2.25 0 0 1 1.59.659l2.122 2.121c.14.141.331.22.53.22H19.5a3 3 0 0 1 3 3v1.146A4.483 4.483 0 0 0 19.5 9h-15a4.483 4.483 0 0 0-3 1.146Z"})])}function VI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.055 7.06C3.805 6.347 2.25 7.25 2.25 8.69v8.122c0 1.44 1.555 2.343 2.805 1.628L12 14.471v2.34c0 1.44 1.555 2.343 2.805 1.628l7.108-4.061c1.26-.72 1.26-2.536 0-3.256l-7.108-4.061C13.555 6.346 12 7.249 12 8.689v2.34L5.055 7.061Z"})])}function AI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.792 2.938A49.069 49.069 0 0 1 12 2.25c2.797 0 5.54.236 8.209.688a1.857 1.857 0 0 1 1.541 1.836v1.044a3 3 0 0 1-.879 2.121l-6.182 6.182a1.5 1.5 0 0 0-.439 1.061v2.927a3 3 0 0 1-1.658 2.684l-1.757.878A.75.75 0 0 1 9.75 21v-5.818a1.5 1.5 0 0 0-.44-1.06L3.13 7.938a3 3 0 0 1-.879-2.121V4.774c0-.897.64-1.683 1.542-1.836Z","clip-rule":"evenodd"})])}function _I(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 3.75a3 3 0 0 0-3 3v10.5a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3V6.75a3 3 0 0 0-3-3h-15Zm9 4.5a.75.75 0 0 0-1.5 0v7.5a.75.75 0 0 0 1.5 0v-7.5Zm1.5 0a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 0 1.5H16.5v2.25H18a.75.75 0 0 1 0 1.5h-1.5v3a.75.75 0 0 1-1.5 0v-7.5ZM6.636 9.78c.404-.575.867-.78 1.25-.78s.846.205 1.25.78a.75.75 0 0 0 1.228-.863C9.738 8.027 8.853 7.5 7.886 7.5c-.966 0-1.852.527-2.478 1.417-.62.882-.908 2-.908 3.083 0 1.083.288 2.201.909 3.083.625.89 1.51 1.417 2.477 1.417.967 0 1.852-.527 2.478-1.417a.75.75 0 0 0 .136-.431V12a.75.75 0 0 0-.75-.75h-1.5a.75.75 0 0 0 0 1.5H9v1.648c-.37.44-.774.602-1.114.602-.383 0-.846-.205-1.25-.78C6.226 13.638 6 12.837 6 12c0-.837.226-1.638.636-2.22Z","clip-rule":"evenodd"})])}function NI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M11.25 3v4.046a3 3 0 0 0-4.277 4.204H1.5v-6A2.25 2.25 0 0 1 3.75 3h7.5ZM12.75 3v4.011a3 3 0 0 1 4.239 4.239H22.5v-6A2.25 2.25 0 0 0 20.25 3h-7.5ZM22.5 12.75h-8.983a4.125 4.125 0 0 0 4.108 3.75.75.75 0 0 1 0 1.5 5.623 5.623 0 0 1-4.875-2.817V21h7.5a2.25 2.25 0 0 0 2.25-2.25v-6ZM11.25 21v-5.817A5.623 5.623 0 0 1 6.375 18a.75.75 0 0 1 0-1.5 4.126 4.126 0 0 0 4.108-3.75H1.5v6A2.25 2.25 0 0 0 3.75 21h7.5Z"}),e.createElementVNode("path",{d:"M11.085 10.354c.03.297.038.575.036.805a7.484 7.484 0 0 1-.805-.036c-.833-.084-1.677-.325-2.195-.843a1.5 1.5 0 0 1 2.122-2.12c.517.517.759 1.36.842 2.194ZM12.877 10.354c-.03.297-.038.575-.036.805.23.002.508-.006.805-.036.833-.084 1.677-.325 2.195-.843A1.5 1.5 0 0 0 13.72 8.16c-.518.518-.76 1.362-.843 2.194Z"})])}function ZI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M9.375 3a1.875 1.875 0 0 0 0 3.75h1.875v4.5H3.375A1.875 1.875 0 0 1 1.5 9.375v-.75c0-1.036.84-1.875 1.875-1.875h3.193A3.375 3.375 0 0 1 12 2.753a3.375 3.375 0 0 1 5.432 3.997h3.943c1.035 0 1.875.84 1.875 1.875v.75c0 1.036-.84 1.875-1.875 1.875H12.75v-4.5h1.875a1.875 1.875 0 1 0-1.875-1.875V6.75h-1.5V4.875C11.25 3.839 10.41 3 9.375 3ZM11.25 12.75H3v6.75a2.25 2.25 0 0 0 2.25 2.25h6v-9ZM12.75 12.75v9h6.75a2.25 2.25 0 0 0 2.25-2.25v-6.75h-9Z"})])}function SI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M21.721 12.752a9.711 9.711 0 0 0-.945-5.003 12.754 12.754 0 0 1-4.339 2.708 18.991 18.991 0 0 1-.214 4.772 17.165 17.165 0 0 0 5.498-2.477ZM14.634 15.55a17.324 17.324 0 0 0 .332-4.647c-.952.227-1.945.347-2.966.347-1.021 0-2.014-.12-2.966-.347a17.515 17.515 0 0 0 .332 4.647 17.385 17.385 0 0 0 5.268 0ZM9.772 17.119a18.963 18.963 0 0 0 4.456 0A17.182 17.182 0 0 1 12 21.724a17.18 17.18 0 0 1-2.228-4.605ZM7.777 15.23a18.87 18.87 0 0 1-.214-4.774 12.753 12.753 0 0 1-4.34-2.708 9.711 9.711 0 0 0-.944 5.004 17.165 17.165 0 0 0 5.498 2.477ZM21.356 14.752a9.765 9.765 0 0 1-7.478 6.817 18.64 18.64 0 0 0 1.988-4.718 18.627 18.627 0 0 0 5.49-2.098ZM2.644 14.752c1.682.971 3.53 1.688 5.49 2.099a18.64 18.64 0 0 0 1.988 4.718 9.765 9.765 0 0 1-7.478-6.816ZM13.878 2.43a9.755 9.755 0 0 1 6.116 3.986 11.267 11.267 0 0 1-3.746 2.504 18.63 18.63 0 0 0-2.37-6.49ZM12 2.276a17.152 17.152 0 0 1 2.805 7.121c-.897.23-1.837.353-2.805.353-.968 0-1.908-.122-2.805-.353A17.151 17.151 0 0 1 12 2.276ZM10.122 2.43a18.629 18.629 0 0 0-2.37 6.49 11.266 11.266 0 0 1-3.746-2.504 9.754 9.754 0 0 1 6.116-3.985Z"})])}function $I(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25ZM6.262 6.072a8.25 8.25 0 1 0 10.562-.766 4.5 4.5 0 0 1-1.318 1.357L14.25 7.5l.165.33a.809.809 0 0 1-1.086 1.085l-.604-.302a1.125 1.125 0 0 0-1.298.21l-.132.131c-.439.44-.439 1.152 0 1.591l.296.296c.256.257.622.374.98.314l1.17-.195c.323-.054.654.036.905.245l1.33 1.108c.32.267.46.694.358 1.1a8.7 8.7 0 0 1-2.288 4.04l-.723.724a1.125 1.125 0 0 1-1.298.21l-.153-.076a1.125 1.125 0 0 1-.622-1.006v-1.089c0-.298-.119-.585-.33-.796l-1.347-1.347a1.125 1.125 0 0 1-.21-1.298L9.75 12l-1.64-1.64a6 6 0 0 1-1.676-3.257l-.172-1.03Z","clip-rule":"evenodd"})])}function II(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M15.75 8.25a.75.75 0 0 1 .75.75c0 1.12-.492 2.126-1.27 2.812a.75.75 0 1 1-.992-1.124A2.243 2.243 0 0 0 15 9a.75.75 0 0 1 .75-.75Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25ZM4.575 15.6a8.25 8.25 0 0 0 9.348 4.425 1.966 1.966 0 0 0-1.84-1.275.983.983 0 0 1-.97-.822l-.073-.437c-.094-.565.25-1.11.8-1.267l.99-.282c.427-.123.783-.418.982-.816l.036-.073a1.453 1.453 0 0 1 2.328-.377L16.5 15h.628a2.25 2.25 0 0 1 1.983 1.186 8.25 8.25 0 0 0-6.345-12.4c.044.262.18.503.389.676l1.068.89c.442.369.535 1.01.216 1.49l-.51.766a2.25 2.25 0 0 1-1.161.886l-.143.048a1.107 1.107 0 0 0-.57 1.664c.369.555.169 1.307-.427 1.605L9 13.125l.423 1.059a.956.956 0 0 1-1.652.928l-.679-.906a1.125 1.125 0 0 0-1.906.172L4.575 15.6Z","clip-rule":"evenodd"})])}function HI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25ZM8.547 4.505a8.25 8.25 0 1 0 11.672 8.214l-.46-.46a2.252 2.252 0 0 1-.422-.586l-1.08-2.16a.414.414 0 0 0-.663-.107.827.827 0 0 1-.812.21l-1.273-.363a.89.89 0 0 0-.738 1.595l.587.39c.59.395.674 1.23.172 1.732l-.2.2c-.211.212-.33.498-.33.796v.41c0 .409-.11.809-.32 1.158l-1.315 2.191a2.11 2.11 0 0 1-1.81 1.025 1.055 1.055 0 0 1-1.055-1.055v-1.172c0-.92-.56-1.747-1.414-2.089l-.654-.261a2.25 2.25 0 0 1-1.384-2.46l.007-.042a2.25 2.25 0 0 1 .29-.787l.09-.15a2.25 2.25 0 0 1 2.37-1.048l1.178.236a1.125 1.125 0 0 0 1.302-.795l.208-.73a1.125 1.125 0 0 0-.578-1.315l-.665-.332-.091.091a2.25 2.25 0 0 1-1.591.659h-.18c-.249 0-.487.1-.662.274a.931.931 0 0 1-1.458-1.137l1.279-2.132Z","clip-rule":"evenodd"})])}function TI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.243 3.743a.75.75 0 0 1 .75.75v6.75h9v-6.75a.75.75 0 1 1 1.5 0v15.002a.75.75 0 1 1-1.5 0v-6.751h-9v6.75a.75.75 0 1 1-1.5 0v-15a.75.75 0 0 1 .75-.75Zm17.605 4.964a.75.75 0 0 1 .396.661v9.376h1.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5h1.5V10.77l-1.084.722a.75.75 0 1 1-.832-1.248l2.25-1.5a.75.75 0 0 1 .77-.037Z","clip-rule":"evenodd"})])}function LI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.246 3.743a.75.75 0 0 1 .75.75v6.75h9v-6.75a.75.75 0 0 1 1.5 0v15.002a.75.75 0 1 1-1.5 0v-6.751h-9v6.75a.75.75 0 1 1-1.5 0v-15a.75.75 0 0 1 .75-.75ZM18.75 10.5c-.727 0-1.441.054-2.138.16a.75.75 0 1 1-.223-1.484 15.867 15.867 0 0 1 3.635-.125c1.149.092 2.153.923 2.348 2.115.084.516.128 1.045.128 1.584 0 1.065-.676 1.927-1.531 2.354l-2.89 1.445a1.5 1.5 0 0 0-.829 1.342v.86h4.5a.75.75 0 1 1 0 1.5H16.5a.75.75 0 0 1-.75-.75v-1.61a3 3 0 0 1 1.659-2.684l2.89-1.445c.447-.223.701-.62.701-1.012a8.32 8.32 0 0 0-.108-1.342c-.075-.457-.47-.82-.987-.862a14.45 14.45 0 0 0-1.155-.046Z","clip-rule":"evenodd"})])}function DI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12.749 3.743a.75.75 0 0 1 .75.75v15.002a.75.75 0 1 1-1.5 0v-6.75H2.997v6.75a.75.75 0 0 1-1.5 0V4.494a.75.75 0 1 1 1.5 0v6.75H12v-6.75a.75.75 0 0 1 .75-.75ZM18.75 10.5c-.727 0-1.441.055-2.139.16a.75.75 0 1 1-.223-1.483 15.87 15.87 0 0 1 3.82-.11c.95.088 1.926.705 2.168 1.794a5.265 5.265 0 0 1-.579 3.765 5.265 5.265 0 0 1 .578 3.765c-.24 1.088-1.216 1.706-2.167 1.793a15.942 15.942 0 0 1-3.82-.109.75.75 0 0 1 .223-1.483 14.366 14.366 0 0 0 3.46.099c.467-.043.773-.322.84-.624a3.768 3.768 0 0 0-.413-2.691H18a.75.75 0 0 1 0-1.5h2.498a3.768 3.768 0 0 0 .413-2.69c-.067-.303-.373-.582-.84-.625-.435-.04-.876-.06-1.321-.06Z","clip-rule":"evenodd"})])}function PI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10.5 1.875a1.125 1.125 0 0 1 2.25 0v8.219c.517.162 1.02.382 1.5.659V3.375a1.125 1.125 0 0 1 2.25 0v10.937a4.505 4.505 0 0 0-3.25 2.373 8.963 8.963 0 0 1 4-.935A.75.75 0 0 0 18 15v-2.266a3.368 3.368 0 0 1 .988-2.37 1.125 1.125 0 0 1 1.591 1.59 1.118 1.118 0 0 0-.329.79v3.006h-.005a6 6 0 0 1-1.752 4.007l-1.736 1.736a6 6 0 0 1-4.242 1.757H10.5a7.5 7.5 0 0 1-7.5-7.5V6.375a1.125 1.125 0 0 1 2.25 0v5.519c.46-.452.965-.832 1.5-1.141V3.375a1.125 1.125 0 0 1 2.25 0v6.526c.495-.1.997-.151 1.5-.151V1.875Z"})])}function OI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M15.73 5.5h1.035A7.465 7.465 0 0 1 18 9.625a7.465 7.465 0 0 1-1.235 4.125h-.148c-.806 0-1.534.446-2.031 1.08a9.04 9.04 0 0 1-2.861 2.4c-.723.384-1.35.956-1.653 1.715a4.499 4.499 0 0 0-.322 1.672v.633A.75.75 0 0 1 9 22a2.25 2.25 0 0 1-2.25-2.25c0-1.152.26-2.243.723-3.218.266-.558-.107-1.282-.725-1.282H3.622c-1.026 0-1.945-.694-2.054-1.715A12.137 12.137 0 0 1 1.5 12.25c0-2.848.992-5.464 2.649-7.521C4.537 4.247 5.136 4 5.754 4H9.77a4.5 4.5 0 0 1 1.423.23l3.114 1.04a4.5 4.5 0 0 0 1.423.23ZM21.669 14.023c.536-1.362.831-2.845.831-4.398 0-1.22-.182-2.398-.52-3.507-.26-.85-1.084-1.368-1.973-1.368H19.1c-.445 0-.72.498-.523.898.591 1.2.924 2.55.924 3.977a8.958 8.958 0 0 1-1.302 4.666c-.245.403.028.959.5.959h1.053c.832 0 1.612-.453 1.918-1.227Z"})])}function RI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7.493 18.5c-.425 0-.82-.236-.975-.632A7.48 7.48 0 0 1 6 15.125c0-1.75.599-3.358 1.602-4.634.151-.192.373-.309.6-.397.473-.183.89-.514 1.212-.924a9.042 9.042 0 0 1 2.861-2.4c.723-.384 1.35-.956 1.653-1.715a4.498 4.498 0 0 0 .322-1.672V2.75A.75.75 0 0 1 15 2a2.25 2.25 0 0 1 2.25 2.25c0 1.152-.26 2.243-.723 3.218-.266.558.107 1.282.725 1.282h3.126c1.026 0 1.945.694 2.054 1.715.045.422.068.85.068 1.285a11.95 11.95 0 0 1-2.649 7.521c-.388.482-.987.729-1.605.729H14.23c-.483 0-.964-.078-1.423-.23l-3.114-1.04a4.501 4.501 0 0 0-1.423-.23h-.777ZM2.331 10.727a11.969 11.969 0 0 0-.831 4.398 12 12 0 0 0 .52 3.507C2.28 19.482 3.105 20 3.994 20H4.9c.445 0 .72-.498.523-.898a8.963 8.963 0 0 1-.924-3.977c0-1.708.476-3.305 1.302-4.666.245-.403-.028-.959-.5-.959H4.25c-.832 0-1.612.453-1.918 1.227Z"})])}function zI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.097 1.515a.75.75 0 0 1 .589.882L10.666 7.5h4.47l1.079-5.397a.75.75 0 1 1 1.47.294L16.665 7.5h3.585a.75.75 0 0 1 0 1.5h-3.885l-1.2 6h3.585a.75.75 0 0 1 0 1.5h-3.885l-1.08 5.397a.75.75 0 1 1-1.47-.294l1.02-5.103h-4.47l-1.08 5.397a.75.75 0 1 1-1.47-.294l1.02-5.103H3.75a.75.75 0 0 1 0-1.5h3.885l1.2-6H5.25a.75.75 0 0 1 0-1.5h3.885l1.08-5.397a.75.75 0 0 1 .882-.588ZM10.365 9l-1.2 6h4.47l1.2-6h-4.47Z","clip-rule":"evenodd"})])}function jI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"m11.645 20.91-.007-.003-.022-.012a15.247 15.247 0 0 1-.383-.218 25.18 25.18 0 0 1-4.244-3.17C4.688 15.36 2.25 12.174 2.25 8.25 2.25 5.322 4.714 3 7.688 3A5.5 5.5 0 0 1 12 5.052 5.5 5.5 0 0 1 16.313 3c2.973 0 5.437 2.322 5.437 5.25 0 3.925-2.438 7.111-4.739 9.256a25.175 25.175 0 0 1-4.244 3.17 15.247 15.247 0 0 1-.383.219l-.022.012-.007.004-.003.001a.752.752 0 0 1-.704 0l-.003-.001Z"})])}function FI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M19.006 3.705a.75.75 0 1 0-.512-1.41L6 6.838V3a.75.75 0 0 0-.75-.75h-1.5A.75.75 0 0 0 3 3v4.93l-1.006.365a.75.75 0 0 0 .512 1.41l16.5-6Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.019 11.114 18 5.667v3.421l4.006 1.457a.75.75 0 1 1-.512 1.41l-.494-.18v8.475h.75a.75.75 0 0 1 0 1.5H2.25a.75.75 0 0 1 0-1.5H3v-9.129l.019-.007ZM18 20.25v-9.566l1.5.546v9.02H18Zm-9-6a.75.75 0 0 0-.75.75v4.5c0 .414.336.75.75.75h3a.75.75 0 0 0 .75-.75V15a.75.75 0 0 0-.75-.75H9Z","clip-rule":"evenodd"})])}function UI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M11.47 3.841a.75.75 0 0 1 1.06 0l8.69 8.69a.75.75 0 1 0 1.06-1.061l-8.689-8.69a2.25 2.25 0 0 0-3.182 0l-8.69 8.69a.75.75 0 1 0 1.061 1.06l8.69-8.689Z"}),e.createElementVNode("path",{d:"m12 5.432 8.159 8.159c.03.03.06.058.091.086v6.198c0 1.035-.84 1.875-1.875 1.875H15a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0-.75.75V21a.75.75 0 0 1-.75.75H5.625a1.875 1.875 0 0 1-1.875-1.875v-6.198a2.29 2.29 0 0 0 .091-.086L12 5.432Z"})])}function WI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 3.75a3 3 0 0 0-3 3v10.5a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3V6.75a3 3 0 0 0-3-3h-15Zm4.125 3a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm-3.873 8.703a4.126 4.126 0 0 1 7.746 0 .75.75 0 0 1-.351.92 7.47 7.47 0 0 1-3.522.877 7.47 7.47 0 0 1-3.522-.877.75.75 0 0 1-.351-.92ZM15 8.25a.75.75 0 0 0 0 1.5h3.75a.75.75 0 0 0 0-1.5H15ZM14.25 12a.75.75 0 0 1 .75-.75h3.75a.75.75 0 0 1 0 1.5H15a.75.75 0 0 1-.75-.75Zm.75 2.25a.75.75 0 0 0 0 1.5h3.75a.75.75 0 0 0 0-1.5H15Z","clip-rule":"evenodd"})])}function qI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.478 5.559A1.5 1.5 0 0 1 6.912 4.5H9A.75.75 0 0 0 9 3H6.912a3 3 0 0 0-2.868 2.118l-2.411 7.838a3 3 0 0 0-.133.882V18a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3v-4.162c0-.299-.045-.596-.133-.882l-2.412-7.838A3 3 0 0 0 17.088 3H15a.75.75 0 0 0 0 1.5h2.088a1.5 1.5 0 0 1 1.434 1.059l2.213 7.191H17.89a3 3 0 0 0-2.684 1.658l-.256.513a1.5 1.5 0 0 1-1.342.829h-3.218a1.5 1.5 0 0 1-1.342-.83l-.256-.512a3 3 0 0 0-2.684-1.658H3.265l2.213-7.191Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25a.75.75 0 0 1 .75.75v6.44l1.72-1.72a.75.75 0 1 1 1.06 1.06l-3 3a.75.75 0 0 1-1.06 0l-3-3a.75.75 0 0 1 1.06-1.06l1.72 1.72V3a.75.75 0 0 1 .75-.75Z","clip-rule":"evenodd"})])}function YI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.5 9.832v1.793c0 1.036.84 1.875 1.875 1.875h17.25c1.035 0 1.875-.84 1.875-1.875V9.832a3 3 0 0 0-.722-1.952l-3.285-3.832A3 3 0 0 0 16.215 3h-8.43a3 3 0 0 0-2.278 1.048L2.222 7.88A3 3 0 0 0 1.5 9.832ZM7.785 4.5a1.5 1.5 0 0 0-1.139.524L3.881 8.25h3.165a3 3 0 0 1 2.496 1.336l.164.246a1.5 1.5 0 0 0 1.248.668h2.092a1.5 1.5 0 0 0 1.248-.668l.164-.246a3 3 0 0 1 2.496-1.336h3.165l-2.765-3.226a1.5 1.5 0 0 0-1.139-.524h-8.43Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M2.813 15c-.725 0-1.313.588-1.313 1.313V18a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3v-1.688c0-.724-.588-1.312-1.313-1.312h-4.233a3 3 0 0 0-2.496 1.336l-.164.246a1.5 1.5 0 0 1-1.248.668h-2.092a1.5 1.5 0 0 1-1.248-.668l-.164-.246A3 3 0 0 0 7.046 15H2.812Z"})])}function KI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.912 3a3 3 0 0 0-2.868 2.118l-2.411 7.838a3 3 0 0 0-.133.882V18a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3v-4.162c0-.299-.045-.596-.133-.882l-2.412-7.838A3 3 0 0 0 17.088 3H6.912Zm13.823 9.75-2.213-7.191A1.5 1.5 0 0 0 17.088 4.5H6.912a1.5 1.5 0 0 0-1.434 1.059L3.265 12.75H6.11a3 3 0 0 1 2.684 1.658l.256.513a1.5 1.5 0 0 0 1.342.829h3.218a1.5 1.5 0 0 0 1.342-.83l.256-.512a3 3 0 0 1 2.684-1.658h2.844Z","clip-rule":"evenodd"})])}function GI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm8.706-1.442c1.146-.573 2.437.463 2.126 1.706l-.709 2.836.042-.02a.75.75 0 0 1 .67 1.34l-.04.022c-1.147.573-2.438-.463-2.127-1.706l.71-2.836-.042.02a.75.75 0 1 1-.671-1.34l.041-.022ZM12 9a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z","clip-rule":"evenodd"})])}function JI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.497 3.744a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-3.275l-5.357 15.002h2.632a.75.75 0 1 1 0 1.5h-7.5a.75.75 0 1 1 0-1.5h3.275l5.357-15.002h-2.632a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function XI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15.75 1.5a6.75 6.75 0 0 0-6.651 7.906c.067.39-.032.717-.221.906l-6.5 6.499a3 3 0 0 0-.878 2.121v2.818c0 .414.336.75.75.75H6a.75.75 0 0 0 .75-.75v-1.5h1.5A.75.75 0 0 0 9 19.5V18h1.5a.75.75 0 0 0 .53-.22l2.658-2.658c.19-.189.517-.288.906-.22A6.75 6.75 0 1 0 15.75 1.5Zm0 3a.75.75 0 0 0 0 1.5A2.25 2.25 0 0 1 18 8.25a.75.75 0 0 0 1.5 0 3.75 3.75 0 0 0-3.75-3.75Z","clip-rule":"evenodd"})])}function QI(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9 2.25a.75.75 0 0 1 .75.75v1.506a49.384 49.384 0 0 1 5.343.371.75.75 0 1 1-.186 1.489c-.66-.083-1.323-.151-1.99-.206a18.67 18.67 0 0 1-2.97 6.323c.318.384.65.753 1 1.107a.75.75 0 0 1-1.07 1.052A18.902 18.902 0 0 1 9 13.687a18.823 18.823 0 0 1-5.656 4.482.75.75 0 0 1-.688-1.333 17.323 17.323 0 0 0 5.396-4.353A18.72 18.72 0 0 1 5.89 8.598a.75.75 0 0 1 1.388-.568A17.21 17.21 0 0 0 9 11.224a17.168 17.168 0 0 0 2.391-5.165 48.04 48.04 0 0 0-8.298.307.75.75 0 0 1-.186-1.489 49.159 49.159 0 0 1 5.343-.371V3A.75.75 0 0 1 9 2.25ZM15.75 9a.75.75 0 0 1 .68.433l5.25 11.25a.75.75 0 1 1-1.36.634l-1.198-2.567h-6.744l-1.198 2.567a.75.75 0 0 1-1.36-.634l5.25-11.25A.75.75 0 0 1 15.75 9Zm-2.672 8.25h5.344l-2.672-5.726-2.672 5.726Z","clip-rule":"evenodd"})])}function eH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M19.449 8.448 16.388 11a4.52 4.52 0 0 1 0 2.002l3.061 2.55a8.275 8.275 0 0 0 0-7.103ZM15.552 19.45 13 16.388a4.52 4.52 0 0 1-2.002 0l-2.55 3.061a8.275 8.275 0 0 0 7.103 0ZM4.55 15.552 7.612 13a4.52 4.52 0 0 1 0-2.002L4.551 8.45a8.275 8.275 0 0 0 0 7.103ZM8.448 4.55 11 7.612a4.52 4.52 0 0 1 2.002 0l2.55-3.061a8.275 8.275 0 0 0-7.103 0Zm8.657-.86a9.776 9.776 0 0 1 1.79 1.415 9.776 9.776 0 0 1 1.414 1.788 9.764 9.764 0 0 1 0 10.211 9.777 9.777 0 0 1-1.415 1.79 9.777 9.777 0 0 1-1.788 1.414 9.764 9.764 0 0 1-10.212 0 9.776 9.776 0 0 1-1.788-1.415 9.776 9.776 0 0 1-1.415-1.788 9.764 9.764 0 0 1 0-10.212 9.774 9.774 0 0 1 1.415-1.788A9.774 9.774 0 0 1 6.894 3.69a9.764 9.764 0 0 1 10.211 0ZM14.121 9.88a2.985 2.985 0 0 0-1.11-.704 3.015 3.015 0 0 0-2.022 0 2.985 2.985 0 0 0-1.11.704c-.326.325-.56.705-.704 1.11a3.015 3.015 0 0 0 0 2.022c.144.405.378.785.704 1.11.325.326.705.56 1.11.704.652.233 1.37.233 2.022 0a2.985 2.985 0 0 0 1.11-.704c.326-.325.56-.705.704-1.11a3.016 3.016 0 0 0 0-2.022 2.985 2.985 0 0 0-.704-1.11Z","clip-rule":"evenodd"})])}function tH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M12 .75a8.25 8.25 0 0 0-4.135 15.39c.686.398 1.115 1.008 1.134 1.623a.75.75 0 0 0 .577.706c.352.083.71.148 1.074.195.323.041.6-.218.6-.544v-4.661a6.714 6.714 0 0 1-.937-.171.75.75 0 1 1 .374-1.453 5.261 5.261 0 0 0 2.626 0 .75.75 0 1 1 .374 1.452 6.712 6.712 0 0 1-.937.172v4.66c0 .327.277.586.6.545.364-.047.722-.112 1.074-.195a.75.75 0 0 0 .577-.706c.02-.615.448-1.225 1.134-1.623A8.25 8.25 0 0 0 12 .75Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.013 19.9a.75.75 0 0 1 .877-.597 11.319 11.319 0 0 0 4.22 0 .75.75 0 1 1 .28 1.473 12.819 12.819 0 0 1-4.78 0 .75.75 0 0 1-.597-.876ZM9.754 22.344a.75.75 0 0 1 .824-.668 13.682 13.682 0 0 0 2.844 0 .75.75 0 1 1 .156 1.492 15.156 15.156 0 0 1-3.156 0 .75.75 0 0 1-.668-.824Z","clip-rule":"evenodd"})])}function nH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M19.892 4.09a3.75 3.75 0 0 0-5.303 0l-4.5 4.5c-.074.074-.144.15-.21.229l4.965 4.966a3.75 3.75 0 0 0-1.986-4.428.75.75 0 0 1 .646-1.353 5.253 5.253 0 0 1 2.502 6.944l5.515 5.515a.75.75 0 0 1-1.061 1.06l-18-18.001A.75.75 0 0 1 3.521 2.46l5.294 5.295a5.31 5.31 0 0 1 .213-.227l4.5-4.5a5.25 5.25 0 1 1 7.425 7.425l-1.757 1.757a.75.75 0 1 1-1.06-1.06l1.756-1.757a3.75 3.75 0 0 0 0-5.304ZM5.846 11.773a.75.75 0 0 1 0 1.06l-1.757 1.758a3.75 3.75 0 0 0 5.303 5.304l3.129-3.13a.75.75 0 1 1 1.06 1.061l-3.128 3.13a5.25 5.25 0 1 1-7.425-7.426l1.757-1.757a.75.75 0 0 1 1.061 0Zm2.401.26a.75.75 0 0 1 .957.458c.18.512.474.992.885 1.403.31.311.661.555 1.035.733a.75.75 0 0 1-.647 1.354 5.244 5.244 0 0 1-1.449-1.026 5.232 5.232 0 0 1-1.24-1.965.75.75 0 0 1 .46-.957Z","clip-rule":"evenodd"})])}function rH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M19.902 4.098a3.75 3.75 0 0 0-5.304 0l-4.5 4.5a3.75 3.75 0 0 0 1.035 6.037.75.75 0 0 1-.646 1.353 5.25 5.25 0 0 1-1.449-8.45l4.5-4.5a5.25 5.25 0 1 1 7.424 7.424l-1.757 1.757a.75.75 0 1 1-1.06-1.06l1.757-1.757a3.75 3.75 0 0 0 0-5.304Zm-7.389 4.267a.75.75 0 0 1 1-.353 5.25 5.25 0 0 1 1.449 8.45l-4.5 4.5a5.25 5.25 0 1 1-7.424-7.424l1.757-1.757a.75.75 0 1 1 1.06 1.06l-1.757 1.757a3.75 3.75 0 1 0 5.304 5.304l4.5-4.5a3.75 3.75 0 0 0-1.035-6.037.75.75 0 0 1-.354-1Z","clip-rule":"evenodd"})])}function oH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.625 6.75a1.125 1.125 0 1 1 2.25 0 1.125 1.125 0 0 1-2.25 0Zm4.875 0A.75.75 0 0 1 8.25 6h12a.75.75 0 0 1 0 1.5h-12a.75.75 0 0 1-.75-.75ZM2.625 12a1.125 1.125 0 1 1 2.25 0 1.125 1.125 0 0 1-2.25 0ZM7.5 12a.75.75 0 0 1 .75-.75h12a.75.75 0 0 1 0 1.5h-12A.75.75 0 0 1 7.5 12Zm-4.875 5.25a1.125 1.125 0 1 1 2.25 0 1.125 1.125 0 0 1-2.25 0Zm4.875 0a.75.75 0 0 1 .75-.75h12a.75.75 0 0 1 0 1.5h-12a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function aH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 1.5a5.25 5.25 0 0 0-5.25 5.25v3a3 3 0 0 0-3 3v6.75a3 3 0 0 0 3 3h10.5a3 3 0 0 0 3-3v-6.75a3 3 0 0 0-3-3v-3c0-2.9-2.35-5.25-5.25-5.25Zm3.75 8.25v-3a3.75 3.75 0 1 0-7.5 0v3h7.5Z","clip-rule":"evenodd"})])}function lH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M18 1.5c2.9 0 5.25 2.35 5.25 5.25v3.75a.75.75 0 0 1-1.5 0V6.75a3.75 3.75 0 1 0-7.5 0v3a3 3 0 0 1 3 3v6.75a3 3 0 0 1-3 3H3.75a3 3 0 0 1-3-3v-6.75a3 3 0 0 1 3-3h9v-3c0-2.9 2.35-5.25 5.25-5.25Z"})])}function iH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8.25 10.875a2.625 2.625 0 1 1 5.25 0 2.625 2.625 0 0 1-5.25 0Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25Zm-1.125 4.5a4.125 4.125 0 1 0 2.338 7.524l2.007 2.006a.75.75 0 1 0 1.06-1.06l-2.006-2.007a4.125 4.125 0 0 0-3.399-6.463Z","clip-rule":"evenodd"})])}function cH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.5 3.75a6.75 6.75 0 1 0 0 13.5 6.75 6.75 0 0 0 0-13.5ZM2.25 10.5a8.25 8.25 0 1 1 14.59 5.28l4.69 4.69a.75.75 0 1 1-1.06 1.06l-4.69-4.69A8.25 8.25 0 0 1 2.25 10.5Zm4.5 0a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function sH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.5 3.75a6.75 6.75 0 1 0 0 13.5 6.75 6.75 0 0 0 0-13.5ZM2.25 10.5a8.25 8.25 0 1 1 14.59 5.28l4.69 4.69a.75.75 0 1 1-1.06 1.06l-4.69-4.69A8.25 8.25 0 0 1 2.25 10.5Zm8.25-3.75a.75.75 0 0 1 .75.75v2.25h2.25a.75.75 0 0 1 0 1.5h-2.25v2.25a.75.75 0 0 1-1.5 0v-2.25H7.5a.75.75 0 0 1 0-1.5h2.25V7.5a.75.75 0 0 1 .75-.75Z","clip-rule":"evenodd"})])}function dH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.5 3.75a6.75 6.75 0 1 0 0 13.5 6.75 6.75 0 0 0 0-13.5ZM2.25 10.5a8.25 8.25 0 1 1 14.59 5.28l4.69 4.69a.75.75 0 1 1-1.06 1.06l-4.69-4.69A8.25 8.25 0 0 1 2.25 10.5Z","clip-rule":"evenodd"})])}function uH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"m11.54 22.351.07.04.028.016a.76.76 0 0 0 .723 0l.028-.015.071-.041a16.975 16.975 0 0 0 1.144-.742 19.58 19.58 0 0 0 2.683-2.282c1.944-1.99 3.963-4.98 3.963-8.827a8.25 8.25 0 0 0-16.5 0c0 3.846 2.02 6.837 3.963 8.827a19.58 19.58 0 0 0 2.682 2.282 16.975 16.975 0 0 0 1.145.742ZM12 13.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z","clip-rule":"evenodd"})])}function hH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.161 2.58a1.875 1.875 0 0 1 1.678 0l4.993 2.498c.106.052.23.052.336 0l3.869-1.935A1.875 1.875 0 0 1 21.75 4.82v12.485c0 .71-.401 1.36-1.037 1.677l-4.875 2.437a1.875 1.875 0 0 1-1.676 0l-4.994-2.497a.375.375 0 0 0-.336 0l-3.868 1.935A1.875 1.875 0 0 1 2.25 19.18V6.695c0-.71.401-1.36 1.036-1.677l4.875-2.437ZM9 6a.75.75 0 0 1 .75.75V15a.75.75 0 0 1-1.5 0V6.75A.75.75 0 0 1 9 6Zm6.75 3a.75.75 0 0 0-1.5 0v8.25a.75.75 0 0 0 1.5 0V9Z","clip-rule":"evenodd"})])}function pH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M16.881 4.345A23.112 23.112 0 0 1 8.25 6H7.5a5.25 5.25 0 0 0-.88 10.427 21.593 21.593 0 0 0 1.378 3.94c.464 1.004 1.674 1.32 2.582.796l.657-.379c.88-.508 1.165-1.593.772-2.468a17.116 17.116 0 0 1-.628-1.607c1.918.258 3.76.75 5.5 1.446A21.727 21.727 0 0 0 18 11.25c0-2.414-.393-4.735-1.119-6.905ZM18.26 3.74a23.22 23.22 0 0 1 1.24 7.51 23.22 23.22 0 0 1-1.41 7.992.75.75 0 1 0 1.409.516 24.555 24.555 0 0 0 1.415-6.43 2.992 2.992 0 0 0 .836-2.078c0-.807-.319-1.54-.836-2.078a24.65 24.65 0 0 0-1.415-6.43.75.75 0 1 0-1.409.516c.059.16.116.321.17.483Z"})])}function fH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8.25 4.5a3.75 3.75 0 1 1 7.5 0v8.25a3.75 3.75 0 1 1-7.5 0V4.5Z"}),e.createElementVNode("path",{d:"M6 10.5a.75.75 0 0 1 .75.75v1.5a5.25 5.25 0 1 0 10.5 0v-1.5a.75.75 0 0 1 1.5 0v1.5a6.751 6.751 0 0 1-6 6.709v2.291h3a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1 0-1.5h3v-2.291a6.751 6.751 0 0 1-6-6.709v-1.5A.75.75 0 0 1 6 10.5Z"})])}function mH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25Zm3 10.5a.75.75 0 0 0 0-1.5H9a.75.75 0 0 0 0 1.5h6Z","clip-rule":"evenodd"})])}function wH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.25 12a.75.75 0 0 1 .75-.75h12a.75.75 0 0 1 0 1.5H6a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function gH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.25 12a.75.75 0 0 1 .75-.75h14a.75.75 0 0 1 0 1.5H5a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function kH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.528 1.718a.75.75 0 0 1 .162.819A8.97 8.97 0 0 0 9 6a9 9 0 0 0 9 9 8.97 8.97 0 0 0 3.463-.69.75.75 0 0 1 .981.98 10.503 10.503 0 0 1-9.694 6.46c-5.799 0-10.5-4.7-10.5-10.5 0-4.368 2.667-8.112 6.46-9.694a.75.75 0 0 1 .818.162Z","clip-rule":"evenodd"})])}function xH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M19.952 1.651a.75.75 0 0 1 .298.599V16.303a3 3 0 0 1-2.176 2.884l-1.32.377a2.553 2.553 0 1 1-1.403-4.909l2.311-.66a1.5 1.5 0 0 0 1.088-1.442V6.994l-9 2.572v9.737a3 3 0 0 1-2.176 2.884l-1.32.377a2.553 2.553 0 1 1-1.402-4.909l2.31-.66a1.5 1.5 0 0 0 1.088-1.442V5.25a.75.75 0 0 1 .544-.721l10.5-3a.75.75 0 0 1 .658.122Z","clip-rule":"evenodd"})])}function vH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.125 3C3.089 3 2.25 3.84 2.25 4.875V18a3 3 0 0 0 3 3h15a3 3 0 0 1-3-3V4.875C17.25 3.839 16.41 3 15.375 3H4.125ZM12 9.75a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5H12Zm-.75-2.25a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5H12a.75.75 0 0 1-.75-.75ZM6 12.75a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5H6Zm-.75 3.75a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5H6a.75.75 0 0 1-.75-.75ZM6 6.75a.75.75 0 0 0-.75.75v3c0 .414.336.75.75.75h3a.75.75 0 0 0 .75-.75v-3A.75.75 0 0 0 9 6.75H6Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M18.75 6.75h1.875c.621 0 1.125.504 1.125 1.125V18a1.5 1.5 0 0 1-3 0V6.75Z"})])}function yH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"m6.72 5.66 11.62 11.62A8.25 8.25 0 0 0 6.72 5.66Zm10.56 12.68L5.66 6.72a8.25 8.25 0 0 0 11.62 11.62ZM5.105 5.106c3.807-3.808 9.98-3.808 13.788 0 3.808 3.807 3.808 9.98 0 13.788-3.807 3.808-9.98 3.808-13.788 0-3.808-3.807-3.808-9.98 0-13.788Z","clip-rule":"evenodd"})])}function BH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.491 5.992a.75.75 0 0 1 .75-.75h12a.75.75 0 1 1 0 1.5h-12a.75.75 0 0 1-.75-.75ZM7.49 11.995a.75.75 0 0 1 .75-.75h12a.75.75 0 0 1 0 1.5h-12a.75.75 0 0 1-.75-.75ZM7.491 17.994a.75.75 0 0 1 .75-.75h12a.75.75 0 1 1 0 1.5h-12a.75.75 0 0 1-.75-.75ZM2.24 3.745a.75.75 0 0 1 .75-.75h1.125a.75.75 0 0 1 .75.75v3h.375a.75.75 0 0 1 0 1.5H2.99a.75.75 0 0 1 0-1.5h.375v-2.25H2.99a.75.75 0 0 1-.75-.75ZM2.79 10.602a.75.75 0 0 1 0-1.06 1.875 1.875 0 1 1 2.652 2.651l-.55.55h.35a.75.75 0 0 1 0 1.5h-2.16a.75.75 0 0 1-.53-1.281l1.83-1.83a.375.375 0 0 0-.53-.53.75.75 0 0 1-1.062 0ZM2.24 15.745a.75.75 0 0 1 .75-.75h1.125a1.875 1.875 0 0 1 1.501 2.999 1.875 1.875 0 0 1-1.501 3H2.99a.75.75 0 0 1 0-1.501h1.125a.375.375 0 0 0 .036-.748H3.74a.75.75 0 0 1-.75-.75v-.002a.75.75 0 0 1 .75-.75h.411a.375.375 0 0 0-.036-.748H2.99a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function EH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M20.599 1.5c-.376 0-.743.111-1.055.32l-5.08 3.385a18.747 18.747 0 0 0-3.471 2.987 10.04 10.04 0 0 1 4.815 4.815 18.748 18.748 0 0 0 2.987-3.472l3.386-5.079A1.902 1.902 0 0 0 20.599 1.5Zm-8.3 14.025a18.76 18.76 0 0 0 1.896-1.207 8.026 8.026 0 0 0-4.513-4.513A18.75 18.75 0 0 0 8.475 11.7l-.278.5a5.26 5.26 0 0 1 3.601 3.602l.502-.278ZM6.75 13.5A3.75 3.75 0 0 0 3 17.25a1.5 1.5 0 0 1-1.601 1.497.75.75 0 0 0-.7 1.123 5.25 5.25 0 0 0 9.8-2.62 3.75 3.75 0 0 0-3.75-3.75Z","clip-rule":"evenodd"})])}function bH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.478 2.404a.75.75 0 0 0-.926.941l2.432 7.905H13.5a.75.75 0 0 1 0 1.5H4.984l-2.432 7.905a.75.75 0 0 0 .926.94 60.519 60.519 0 0 0 18.445-8.986.75.75 0 0 0 0-1.218A60.517 60.517 0 0 0 3.478 2.404Z"})])}function CH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M18.97 3.659a2.25 2.25 0 0 0-3.182 0l-10.94 10.94a3.75 3.75 0 1 0 5.304 5.303l7.693-7.693a.75.75 0 0 1 1.06 1.06l-7.693 7.693a5.25 5.25 0 1 1-7.424-7.424l10.939-10.94a3.75 3.75 0 1 1 5.303 5.304L9.097 18.835l-.008.008-.007.007-.002.002-.003.002A2.25 2.25 0 0 1 5.91 15.66l7.81-7.81a.75.75 0 0 1 1.061 1.06l-7.81 7.81a.75.75 0 0 0 1.054 1.068L18.97 6.84a2.25 2.25 0 0 0 0-3.182Z","clip-rule":"evenodd"})])}function MH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12ZM9 8.25a.75.75 0 0 0-.75.75v6c0 .414.336.75.75.75h.75a.75.75 0 0 0 .75-.75V9a.75.75 0 0 0-.75-.75H9Zm5.25 0a.75.75 0 0 0-.75.75v6c0 .414.336.75.75.75H15a.75.75 0 0 0 .75-.75V9a.75.75 0 0 0-.75-.75h-.75Z","clip-rule":"evenodd"})])}function VH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.75 5.25a.75.75 0 0 1 .75-.75H9a.75.75 0 0 1 .75.75v13.5a.75.75 0 0 1-.75.75H7.5a.75.75 0 0 1-.75-.75V5.25Zm7.5 0A.75.75 0 0 1 15 4.5h1.5a.75.75 0 0 1 .75.75v13.5a.75.75 0 0 1-.75.75H15a.75.75 0 0 1-.75-.75V5.25Z","clip-rule":"evenodd"})])}function AH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M21.731 2.269a2.625 2.625 0 0 0-3.712 0l-1.157 1.157 3.712 3.712 1.157-1.157a2.625 2.625 0 0 0 0-3.712ZM19.513 8.199l-3.712-3.712-8.4 8.4a5.25 5.25 0 0 0-1.32 2.214l-.8 2.685a.75.75 0 0 0 .933.933l2.685-.8a5.25 5.25 0 0 0 2.214-1.32l8.4-8.4Z"}),e.createElementVNode("path",{d:"M5.25 5.25a3 3 0 0 0-3 3v10.5a3 3 0 0 0 3 3h10.5a3 3 0 0 0 3-3V13.5a.75.75 0 0 0-1.5 0v5.25a1.5 1.5 0 0 1-1.5 1.5H5.25a1.5 1.5 0 0 1-1.5-1.5V8.25a1.5 1.5 0 0 1 1.5-1.5h5.25a.75.75 0 0 0 0-1.5H5.25Z"})])}function _H(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M21.731 2.269a2.625 2.625 0 0 0-3.712 0l-1.157 1.157 3.712 3.712 1.157-1.157a2.625 2.625 0 0 0 0-3.712ZM19.513 8.199l-3.712-3.712-12.15 12.15a5.25 5.25 0 0 0-1.32 2.214l-.8 2.685a.75.75 0 0 0 .933.933l2.685-.8a5.25 5.25 0 0 0 2.214-1.32L19.513 8.2Z"})])}function NH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.99 2.243a4.49 4.49 0 0 0-3.398 1.55 4.49 4.49 0 0 0-3.497 1.306 4.491 4.491 0 0 0-1.307 3.498 4.491 4.491 0 0 0-1.548 3.397c0 1.357.6 2.573 1.548 3.397a4.491 4.491 0 0 0 1.307 3.498 4.49 4.49 0 0 0 3.498 1.307 4.49 4.49 0 0 0 3.397 1.549 4.49 4.49 0 0 0 3.397-1.549 4.49 4.49 0 0 0 3.497-1.307 4.491 4.491 0 0 0 1.306-3.497 4.491 4.491 0 0 0 1.55-3.398c0-1.357-.601-2.573-1.549-3.397a4.491 4.491 0 0 0-1.307-3.498 4.49 4.49 0 0 0-3.498-1.307 4.49 4.49 0 0 0-3.396-1.549Zm3.53 7.28a.75.75 0 0 0-1.06-1.06l-6 6a.75.75 0 1 0 1.06 1.06l6-6Zm-5.78-.905a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25Zm4.5 4.5a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25Z","clip-rule":"evenodd"})])}function ZH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M19.5 9.75a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 1 1.5 0v2.69l4.72-4.72a.75.75 0 1 1 1.06 1.06L16.06 9h2.69a.75.75 0 0 1 .75.75Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.5 4.5a3 3 0 0 1 3-3h1.372c.86 0 1.61.586 1.819 1.42l1.105 4.423a1.875 1.875 0 0 1-.694 1.955l-1.293.97c-.135.101-.164.249-.126.352a11.285 11.285 0 0 0 6.697 6.697c.103.038.25.009.352-.126l.97-1.293a1.875 1.875 0 0 1 1.955-.694l4.423 1.105c.834.209 1.42.959 1.42 1.82V19.5a3 3 0 0 1-3 3h-2.25C8.552 22.5 1.5 15.448 1.5 6.75V4.5Z","clip-rule":"evenodd"})])}function SH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 3.75a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0V5.56l-4.72 4.72a.75.75 0 1 1-1.06-1.06l4.72-4.72h-2.69a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.5 4.5a3 3 0 0 1 3-3h1.372c.86 0 1.61.586 1.819 1.42l1.105 4.423a1.875 1.875 0 0 1-.694 1.955l-1.293.97c-.135.101-.164.249-.126.352a11.285 11.285 0 0 0 6.697 6.697c.103.038.25.009.352-.126l.97-1.293a1.875 1.875 0 0 1 1.955-.694l4.423 1.105c.834.209 1.42.959 1.42 1.82V19.5a3 3 0 0 1-3 3h-2.25C8.552 22.5 1.5 15.448 1.5 6.75V4.5Z","clip-rule":"evenodd"})])}function $H(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15.22 3.22a.75.75 0 0 1 1.06 0L18 4.94l1.72-1.72a.75.75 0 1 1 1.06 1.06L19.06 6l1.72 1.72a.75.75 0 0 1-1.06 1.06L18 7.06l-1.72 1.72a.75.75 0 1 1-1.06-1.06L16.94 6l-1.72-1.72a.75.75 0 0 1 0-1.06ZM1.5 4.5a3 3 0 0 1 3-3h1.372c.86 0 1.61.586 1.819 1.42l1.105 4.423a1.875 1.875 0 0 1-.694 1.955l-1.293.97c-.135.101-.164.249-.126.352a11.285 11.285 0 0 0 6.697 6.697c.103.038.25.009.352-.126l.97-1.293a1.875 1.875 0 0 1 1.955-.694l4.423 1.105c.834.209 1.42.959 1.42 1.82V19.5a3 3 0 0 1-3 3h-2.25C8.552 22.5 1.5 15.448 1.5 6.75V4.5Z","clip-rule":"evenodd"})])}function IH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.5 4.5a3 3 0 0 1 3-3h1.372c.86 0 1.61.586 1.819 1.42l1.105 4.423a1.875 1.875 0 0 1-.694 1.955l-1.293.97c-.135.101-.164.249-.126.352a11.285 11.285 0 0 0 6.697 6.697c.103.038.25.009.352-.126l.97-1.293a1.875 1.875 0 0 1 1.955-.694l4.423 1.105c.834.209 1.42.959 1.42 1.82V19.5a3 3 0 0 1-3 3h-2.25C8.552 22.5 1.5 15.448 1.5 6.75V4.5Z","clip-rule":"evenodd"})])}function HH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.5 6a2.25 2.25 0 0 1 2.25-2.25h16.5A2.25 2.25 0 0 1 22.5 6v12a2.25 2.25 0 0 1-2.25 2.25H3.75A2.25 2.25 0 0 1 1.5 18V6ZM3 16.06V18c0 .414.336.75.75.75h16.5A.75.75 0 0 0 21 18v-1.94l-2.69-2.689a1.5 1.5 0 0 0-2.12 0l-.88.879.97.97a.75.75 0 1 1-1.06 1.06l-5.16-5.159a1.5 1.5 0 0 0-2.12 0L3 16.061Zm10.125-7.81a1.125 1.125 0 1 1 2.25 0 1.125 1.125 0 0 1-2.25 0Z","clip-rule":"evenodd"})])}function TH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm14.024-.983a1.125 1.125 0 0 1 0 1.966l-5.603 3.113A1.125 1.125 0 0 1 9 15.113V8.887c0-.857.921-1.4 1.671-.983l5.603 3.113Z","clip-rule":"evenodd"})])}function LH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M15 6.75a.75.75 0 0 0-.75.75V18a.75.75 0 0 0 .75.75h.75a.75.75 0 0 0 .75-.75V7.5a.75.75 0 0 0-.75-.75H15ZM20.25 6.75a.75.75 0 0 0-.75.75V18c0 .414.336.75.75.75H21a.75.75 0 0 0 .75-.75V7.5a.75.75 0 0 0-.75-.75h-.75ZM5.055 7.06C3.805 6.347 2.25 7.25 2.25 8.69v8.122c0 1.44 1.555 2.343 2.805 1.628l7.108-4.061c1.26-.72 1.26-2.536 0-3.256L5.055 7.061Z"})])}function DH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 5.653c0-1.427 1.529-2.33 2.779-1.643l11.54 6.347c1.295.712 1.295 2.573 0 3.286L7.28 19.99c-1.25.687-2.779-.217-2.779-1.643V5.653Z","clip-rule":"evenodd"})])}function PH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25ZM12.75 9a.75.75 0 0 0-1.5 0v2.25H9a.75.75 0 0 0 0 1.5h2.25V15a.75.75 0 0 0 1.5 0v-2.25H15a.75.75 0 0 0 0-1.5h-2.25V9Z","clip-rule":"evenodd"})])}function OH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 5.25a.75.75 0 0 1 .75.75v5.25H18a.75.75 0 0 1 0 1.5h-5.25V18a.75.75 0 0 1-1.5 0v-5.25H6a.75.75 0 0 1 0-1.5h5.25V6a.75.75 0 0 1 .75-.75Z","clip-rule":"evenodd"})])}function RH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 3.75a.75.75 0 0 1 .75.75v6.75h6.75a.75.75 0 0 1 0 1.5h-6.75v6.75a.75.75 0 0 1-1.5 0v-6.75H4.5a.75.75 0 0 1 0-1.5h6.75V4.5a.75.75 0 0 1 .75-.75Z","clip-rule":"evenodd"})])}function zH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25a.75.75 0 0 1 .75.75v9a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75ZM6.166 5.106a.75.75 0 0 1 0 1.06 8.25 8.25 0 1 0 11.668 0 .75.75 0 1 1 1.06-1.06c3.808 3.807 3.808 9.98 0 13.788-3.807 3.808-9.98 3.808-13.788 0-3.808-3.807-3.808-9.98 0-13.788a.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function jH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.25 2.25a.75.75 0 0 0 0 1.5H3v10.5a3 3 0 0 0 3 3h1.21l-1.172 3.513a.75.75 0 0 0 1.424.474l.329-.987h8.418l.33.987a.75.75 0 0 0 1.422-.474l-1.17-3.513H18a3 3 0 0 0 3-3V3.75h.75a.75.75 0 0 0 0-1.5H2.25Zm6.04 16.5.5-1.5h6.42l.5 1.5H8.29Zm7.46-12a.75.75 0 0 0-1.5 0v6a.75.75 0 0 0 1.5 0v-6Zm-3 2.25a.75.75 0 0 0-1.5 0v3.75a.75.75 0 0 0 1.5 0V9Zm-3 2.25a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0v-1.5Z","clip-rule":"evenodd"})])}function FH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.25 2.25a.75.75 0 0 0 0 1.5H3v10.5a3 3 0 0 0 3 3h1.21l-1.172 3.513a.75.75 0 0 0 1.424.474l.329-.987h8.418l.33.987a.75.75 0 0 0 1.422-.474l-1.17-3.513H18a3 3 0 0 0 3-3V3.75h.75a.75.75 0 0 0 0-1.5H2.25Zm6.54 15h6.42l.5 1.5H8.29l.5-1.5Zm8.085-8.995a.75.75 0 1 0-.75-1.299 12.81 12.81 0 0 0-3.558 3.05L11.03 8.47a.75.75 0 0 0-1.06 0l-3 3a.75.75 0 1 0 1.06 1.06l2.47-2.47 1.617 1.618a.75.75 0 0 0 1.146-.102 11.312 11.312 0 0 1 3.612-3.321Z","clip-rule":"evenodd"})])}function UH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.875 1.5C6.839 1.5 6 2.34 6 3.375v2.99c-.426.053-.851.11-1.274.174-1.454.218-2.476 1.483-2.476 2.917v6.294a3 3 0 0 0 3 3h.27l-.155 1.705A1.875 1.875 0 0 0 7.232 22.5h9.536a1.875 1.875 0 0 0 1.867-2.045l-.155-1.705h.27a3 3 0 0 0 3-3V9.456c0-1.434-1.022-2.7-2.476-2.917A48.716 48.716 0 0 0 18 6.366V3.375c0-1.036-.84-1.875-1.875-1.875h-8.25ZM16.5 6.205v-2.83A.375.375 0 0 0 16.125 3h-8.25a.375.375 0 0 0-.375.375v2.83a49.353 49.353 0 0 1 9 0Zm-.217 8.265c.178.018.317.16.333.337l.526 5.784a.375.375 0 0 1-.374.409H7.232a.375.375 0 0 1-.374-.409l.526-5.784a.373.373 0 0 1 .333-.337 41.741 41.741 0 0 1 8.566 0Zm.967-3.97a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H18a.75.75 0 0 1-.75-.75V10.5ZM15 9.75a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V10.5a.75.75 0 0 0-.75-.75H15Z","clip-rule":"evenodd"})])}function WH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M11.25 5.337c0-.355-.186-.676-.401-.959a1.647 1.647 0 0 1-.349-1.003c0-1.036 1.007-1.875 2.25-1.875S15 2.34 15 3.375c0 .369-.128.713-.349 1.003-.215.283-.401.604-.401.959 0 .332.278.598.61.578 1.91-.114 3.79-.342 5.632-.676a.75.75 0 0 1 .878.645 49.17 49.17 0 0 1 .376 5.452.657.657 0 0 1-.66.664c-.354 0-.675-.186-.958-.401a1.647 1.647 0 0 0-1.003-.349c-1.035 0-1.875 1.007-1.875 2.25s.84 2.25 1.875 2.25c.369 0 .713-.128 1.003-.349.283-.215.604-.401.959-.401.31 0 .557.262.534.571a48.774 48.774 0 0 1-.595 4.845.75.75 0 0 1-.61.61c-1.82.317-3.673.533-5.555.642a.58.58 0 0 1-.611-.581c0-.355.186-.676.401-.959.221-.29.349-.634.349-1.003 0-1.035-1.007-1.875-2.25-1.875s-2.25.84-2.25 1.875c0 .369.128.713.349 1.003.215.283.401.604.401.959a.641.641 0 0 1-.658.643 49.118 49.118 0 0 1-4.708-.36.75.75 0 0 1-.645-.878c.293-1.614.504-3.257.629-4.924A.53.53 0 0 0 5.337 15c-.355 0-.676.186-.959.401-.29.221-.634.349-1.003.349-1.036 0-1.875-1.007-1.875-2.25s.84-2.25 1.875-2.25c.369 0 .713.128 1.003.349.283.215.604.401.959.401a.656.656 0 0 0 .659-.663 47.703 47.703 0 0 0-.31-4.82.75.75 0 0 1 .83-.832c1.343.155 2.703.254 4.077.294a.64.64 0 0 0 .657-.642Z"})])}function qH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 4.875C3 3.839 3.84 3 4.875 3h4.5c1.036 0 1.875.84 1.875 1.875v4.5c0 1.036-.84 1.875-1.875 1.875h-4.5A1.875 1.875 0 0 1 3 9.375v-4.5ZM4.875 4.5a.375.375 0 0 0-.375.375v4.5c0 .207.168.375.375.375h4.5a.375.375 0 0 0 .375-.375v-4.5a.375.375 0 0 0-.375-.375h-4.5Zm7.875.375c0-1.036.84-1.875 1.875-1.875h4.5C20.16 3 21 3.84 21 4.875v4.5c0 1.036-.84 1.875-1.875 1.875h-4.5a1.875 1.875 0 0 1-1.875-1.875v-4.5Zm1.875-.375a.375.375 0 0 0-.375.375v4.5c0 .207.168.375.375.375h4.5a.375.375 0 0 0 .375-.375v-4.5a.375.375 0 0 0-.375-.375h-4.5ZM6 6.75A.75.75 0 0 1 6.75 6h.75a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-.75A.75.75 0 0 1 6 7.5v-.75Zm9.75 0A.75.75 0 0 1 16.5 6h.75a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-.75a.75.75 0 0 1-.75-.75v-.75ZM3 14.625c0-1.036.84-1.875 1.875-1.875h4.5c1.036 0 1.875.84 1.875 1.875v4.5c0 1.035-.84 1.875-1.875 1.875h-4.5A1.875 1.875 0 0 1 3 19.125v-4.5Zm1.875-.375a.375.375 0 0 0-.375.375v4.5c0 .207.168.375.375.375h4.5a.375.375 0 0 0 .375-.375v-4.5a.375.375 0 0 0-.375-.375h-4.5Zm7.875-.75a.75.75 0 0 1 .75-.75h.75a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-.75a.75.75 0 0 1-.75-.75v-.75Zm6 0a.75.75 0 0 1 .75-.75h.75a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-.75a.75.75 0 0 1-.75-.75v-.75ZM6 16.5a.75.75 0 0 1 .75-.75h.75a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-.75a.75.75 0 0 1-.75-.75v-.75Zm9.75 0a.75.75 0 0 1 .75-.75h.75a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-.75a.75.75 0 0 1-.75-.75v-.75Zm-3 3a.75.75 0 0 1 .75-.75h.75a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-.75a.75.75 0 0 1-.75-.75v-.75Zm6 0a.75.75 0 0 1 .75-.75h.75a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-.75a.75.75 0 0 1-.75-.75v-.75Z","clip-rule":"evenodd"})])}function YH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm11.378-3.917c-.89-.777-2.366-.777-3.255 0a.75.75 0 0 1-.988-1.129c1.454-1.272 3.776-1.272 5.23 0 1.513 1.324 1.513 3.518 0 4.842a3.75 3.75 0 0 1-.837.552c-.676.328-1.028.774-1.028 1.152v.75a.75.75 0 0 1-1.5 0v-.75c0-1.279 1.06-2.107 1.875-2.502.182-.088.351-.199.503-.331.83-.727.83-1.857 0-2.584ZM12 18a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z","clip-rule":"evenodd"})])}function KH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.625 3.75a2.625 2.625 0 1 0 0 5.25h12.75a2.625 2.625 0 0 0 0-5.25H5.625ZM3.75 11.25a.75.75 0 0 0 0 1.5h16.5a.75.75 0 0 0 0-1.5H3.75ZM3 15.75a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75ZM3.75 18.75a.75.75 0 0 0 0 1.5h16.5a.75.75 0 0 0 0-1.5H3.75Z"})])}function GH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M20.432 4.103a.75.75 0 0 0-.364-1.456L4.128 6.632l-.2.033C2.498 6.904 1.5 8.158 1.5 9.574v9.176a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3V9.574c0-1.416-.997-2.67-2.429-2.909a49.017 49.017 0 0 0-7.255-.658l7.616-1.904Zm-9.585 8.56a.75.75 0 0 1 0 1.06l-.005.006a.75.75 0 0 1-1.06 0l-.006-.006a.75.75 0 0 1 0-1.06l.005-.005a.75.75 0 0 1 1.06 0l.006.005ZM9.781 15.85a.75.75 0 0 0 1.061 0l.005-.005a.75.75 0 0 0 0-1.061l-.005-.005a.75.75 0 0 0-1.06 0l-.006.005a.75.75 0 0 0 0 1.06l.005.006Zm-1.055-1.066a.75.75 0 0 1 0 1.06l-.005.006a.75.75 0 0 1-1.061 0l-.005-.005a.75.75 0 0 1 0-1.06l.005-.006a.75.75 0 0 1 1.06 0l.006.005ZM7.66 13.73a.75.75 0 0 0 1.061 0l.005-.006a.75.75 0 0 0 0-1.06l-.005-.006a.75.75 0 0 0-1.06 0l-.006.006a.75.75 0 0 0 0 1.06l.005.006ZM9.255 9.75a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75V10.5a.75.75 0 0 1 .75-.75h.008Zm3.624 3.28a.75.75 0 0 0 .275-1.025L13.15 12a.75.75 0 0 0-1.025-.275l-.006.004a.75.75 0 0 0-.275 1.024l.004.007a.75.75 0 0 0 1.025.274l.006-.003Zm-1.38 5.126a.75.75 0 0 1-1.024-.275l-.004-.006a.75.75 0 0 1 .275-1.025l.006-.004a.75.75 0 0 1 1.025.275l.004.007a.75.75 0 0 1-.275 1.024l-.006.004Zm.282-6.776a.75.75 0 0 0-.274-1.025l-.007-.003a.75.75 0 0 0-1.024.274l-.004.007a.75.75 0 0 0 .274 1.024l.007.004a.75.75 0 0 0 1.024-.275l.004-.006Zm1.369 5.129a.75.75 0 0 1-1.025.274l-.006-.004a.75.75 0 0 1-.275-1.024l.004-.007a.75.75 0 0 1 1.025-.274l.006.004a.75.75 0 0 1 .275 1.024l-.004.007Zm-.145-1.502a.75.75 0 0 0 .75-.75v-.007a.75.75 0 0 0-.75-.75h-.008a.75.75 0 0 0-.75.75v.007c0 .415.336.75.75.75h.008Zm-3.75 2.243a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75V18a.75.75 0 0 1 .75-.75h.008Zm-2.871-.47a.75.75 0 0 0 .274-1.025l-.003-.006a.75.75 0 0 0-1.025-.275l-.006.004a.75.75 0 0 0-.275 1.024l.004.007a.75.75 0 0 0 1.024.274l.007-.003Zm1.366-5.12a.75.75 0 0 1-1.025-.274l-.004-.006a.75.75 0 0 1 .275-1.025l.006-.004a.75.75 0 0 1 1.025.275l.004.006a.75.75 0 0 1-.275 1.025l-.006.004Zm.281 6.215a.75.75 0 0 0-.275-1.024l-.006-.004a.75.75 0 0 0-1.025.274l-.003.007a.75.75 0 0 0 .274 1.024l.007.004a.75.75 0 0 0 1.024-.274l.004-.007Zm-1.376-5.116a.75.75 0 0 1-1.025.274l-.006-.003a.75.75 0 0 1-.275-1.025l.004-.007a.75.75 0 0 1 1.025-.274l.006.004a.75.75 0 0 1 .275 1.024l-.004.007Zm-1.15 2.248a.75.75 0 0 0 .75-.75v-.007a.75.75 0 0 0-.75-.75h-.008a.75.75 0 0 0-.75.75v.007c0 .415.336.75.75.75h.008ZM17.25 10.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm1.5 6a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Z","clip-rule":"evenodd"})])}function JH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 1.5c-1.921 0-3.816.111-5.68.327-1.497.174-2.57 1.46-2.57 2.93V21.75a.75.75 0 0 0 1.029.696l3.471-1.388 3.472 1.388a.75.75 0 0 0 .556 0l3.472-1.388 3.471 1.388a.75.75 0 0 0 1.029-.696V4.757c0-1.47-1.073-2.756-2.57-2.93A49.255 49.255 0 0 0 12 1.5Zm3.53 7.28a.75.75 0 0 0-1.06-1.06l-6 6a.75.75 0 1 0 1.06 1.06l6-6ZM8.625 9a1.125 1.125 0 1 1 2.25 0 1.125 1.125 0 0 1-2.25 0Zm5.625 3.375a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25Z","clip-rule":"evenodd"})])}function XH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 1.5c-1.921 0-3.816.111-5.68.327-1.497.174-2.57 1.46-2.57 2.93V21.75a.75.75 0 0 0 1.029.696l3.471-1.388 3.472 1.388a.75.75 0 0 0 .556 0l3.472-1.388 3.471 1.388a.75.75 0 0 0 1.029-.696V4.757c0-1.47-1.073-2.756-2.57-2.93A49.255 49.255 0 0 0 12 1.5Zm-.97 6.53a.75.75 0 1 0-1.06-1.06L7.72 9.22a.75.75 0 0 0 0 1.06l2.25 2.25a.75.75 0 1 0 1.06-1.06l-.97-.97h3.065a1.875 1.875 0 0 1 0 3.75H12a.75.75 0 0 0 0 1.5h1.125a3.375 3.375 0 1 0 0-6.75h-3.064l.97-.97Z","clip-rule":"evenodd"})])}function QH(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.5 7.125c0-1.036.84-1.875 1.875-1.875h6c1.036 0 1.875.84 1.875 1.875v3.75c0 1.036-.84 1.875-1.875 1.875h-6A1.875 1.875 0 0 1 1.5 10.875v-3.75Zm12 1.5c0-1.036.84-1.875 1.875-1.875h5.25c1.035 0 1.875.84 1.875 1.875v8.25c0 1.035-.84 1.875-1.875 1.875h-5.25a1.875 1.875 0 0 1-1.875-1.875v-8.25ZM3 16.125c0-1.036.84-1.875 1.875-1.875h5.25c1.036 0 1.875.84 1.875 1.875v2.25c0 1.035-.84 1.875-1.875 1.875h-5.25A1.875 1.875 0 0 1 3 18.375v-2.25Z","clip-rule":"evenodd"})])}function eT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.566 4.657A4.505 4.505 0 0 1 6.75 4.5h10.5c.41 0 .806.055 1.183.157A3 3 0 0 0 15.75 3h-7.5a3 3 0 0 0-2.684 1.657ZM2.25 12a3 3 0 0 1 3-3h13.5a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3v-6ZM5.25 7.5c-.41 0-.806.055-1.184.157A3 3 0 0 1 6.75 6h10.5a3 3 0 0 1 2.683 1.657A4.505 4.505 0 0 0 18.75 7.5H5.25Z"})])}function tT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.315 7.584C12.195 3.883 16.695 1.5 21.75 1.5a.75.75 0 0 1 .75.75c0 5.056-2.383 9.555-6.084 12.436A6.75 6.75 0 0 1 9.75 22.5a.75.75 0 0 1-.75-.75v-4.131A15.838 15.838 0 0 1 6.382 15H2.25a.75.75 0 0 1-.75-.75 6.75 6.75 0 0 1 7.815-6.666ZM15 6.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M5.26 17.242a.75.75 0 1 0-.897-1.203 5.243 5.243 0 0 0-2.05 5.022.75.75 0 0 0 .625.627 5.243 5.243 0 0 0 5.022-2.051.75.75 0 1 0-1.202-.897 3.744 3.744 0 0 1-3.008 1.51c0-1.23.592-2.323 1.51-3.008Z"})])}function nT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.75 4.5a.75.75 0 0 1 .75-.75h.75c8.284 0 15 6.716 15 15v.75a.75.75 0 0 1-.75.75h-.75a.75.75 0 0 1-.75-.75v-.75C18 11.708 12.292 6 5.25 6H4.5a.75.75 0 0 1-.75-.75V4.5Zm0 6.75a.75.75 0 0 1 .75-.75h.75a8.25 8.25 0 0 1 8.25 8.25v.75a.75.75 0 0 1-.75.75H12a.75.75 0 0 1-.75-.75v-.75a6 6 0 0 0-6-6H4.5a.75.75 0 0 1-.75-.75v-.75Zm0 7.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z","clip-rule":"evenodd"})])}function rT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25a.75.75 0 0 1 .75.75v.756a49.106 49.106 0 0 1 9.152 1 .75.75 0 0 1-.152 1.485h-1.918l2.474 10.124a.75.75 0 0 1-.375.84A6.723 6.723 0 0 1 18.75 18a6.723 6.723 0 0 1-3.181-.795.75.75 0 0 1-.375-.84l2.474-10.124H12.75v13.28c1.293.076 2.534.343 3.697.776a.75.75 0 0 1-.262 1.453h-8.37a.75.75 0 0 1-.262-1.453c1.162-.433 2.404-.7 3.697-.775V6.24H6.332l2.474 10.124a.75.75 0 0 1-.375.84A6.723 6.723 0 0 1 5.25 18a6.723 6.723 0 0 1-3.181-.795.75.75 0 0 1-.375-.84L4.168 6.241H2.25a.75.75 0 0 1-.152-1.485 49.105 49.105 0 0 1 9.152-1V3a.75.75 0 0 1 .75-.75Zm4.878 13.543 1.872-7.662 1.872 7.662h-3.744Zm-9.756 0L5.25 8.131l-1.872 7.662h3.744Z","clip-rule":"evenodd"})])}function oT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.128 9.155a3.751 3.751 0 1 1 .713-1.321l1.136.656a.75.75 0 0 1 .222 1.104l-.006.007a.75.75 0 0 1-1.032.157 1.421 1.421 0 0 0-.113-.072l-.92-.531Zm-4.827-3.53a2.25 2.25 0 0 1 3.994 2.063.756.756 0 0 0-.122.23 2.25 2.25 0 0 1-3.872-2.293ZM13.348 8.272a5.073 5.073 0 0 0-3.428 3.57 5.08 5.08 0 0 0-.165 1.202 1.415 1.415 0 0 1-.707 1.201l-.96.554a3.751 3.751 0 1 0 .734 1.309l13.729-7.926a.75.75 0 0 0-.181-1.374l-.803-.215a5.25 5.25 0 0 0-2.894.05l-5.325 1.629Zm-9.223 7.03a2.25 2.25 0 1 0 2.25 3.897 2.25 2.25 0 0 0-2.25-3.897ZM12 12.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M16.372 12.615a.75.75 0 0 1 .75 0l5.43 3.135a.75.75 0 0 1-.182 1.374l-.802.215a5.25 5.25 0 0 1-2.894-.051l-5.147-1.574a.75.75 0 0 1-.156-1.367l3-1.732Z"})])}function aT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.507 4.048A3 3 0 0 1 7.785 3h8.43a3 3 0 0 1 2.278 1.048l1.722 2.008A4.533 4.533 0 0 0 19.5 6h-15c-.243 0-.482.02-.715.056l1.722-2.008Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.5 10.5a3 3 0 0 1 3-3h15a3 3 0 1 1 0 6h-15a3 3 0 0 1-3-3Zm15 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm2.25.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM4.5 15a3 3 0 1 0 0 6h15a3 3 0 1 0 0-6h-15Zm11.25 3.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM19.5 18a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z","clip-rule":"evenodd"})])}function lT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.08 5.227A3 3 0 0 1 6.979 3H17.02a3 3 0 0 1 2.9 2.227l2.113 7.926A5.228 5.228 0 0 0 18.75 12H5.25a5.228 5.228 0 0 0-3.284 1.153L4.08 5.227Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.25 13.5a3.75 3.75 0 1 0 0 7.5h13.5a3.75 3.75 0 1 0 0-7.5H5.25Zm10.5 4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm3.75-.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z","clip-rule":"evenodd"})])}function iT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15.75 4.5a3 3 0 1 1 .825 2.066l-8.421 4.679a3.002 3.002 0 0 1 0 1.51l8.421 4.679a3 3 0 1 1-.729 1.31l-8.421-4.678a3 3 0 1 1 0-4.132l8.421-4.679a3 3 0 0 1-.096-.755Z","clip-rule":"evenodd"})])}function cT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12.516 2.17a.75.75 0 0 0-1.032 0 11.209 11.209 0 0 1-7.877 3.08.75.75 0 0 0-.722.515A12.74 12.74 0 0 0 2.25 9.75c0 5.942 4.064 10.933 9.563 12.348a.749.749 0 0 0 .374 0c5.499-1.415 9.563-6.406 9.563-12.348 0-1.39-.223-2.73-.635-3.985a.75.75 0 0 0-.722-.516l-.143.001c-2.996 0-5.717-1.17-7.734-3.08Zm3.094 8.016a.75.75 0 1 0-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.14-.094l3.75-5.25Z","clip-rule":"evenodd"})])}function sT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.484 2.17a.75.75 0 0 1 1.032 0 11.209 11.209 0 0 0 7.877 3.08.75.75 0 0 1 .722.515 12.74 12.74 0 0 1 .635 3.985c0 5.942-4.064 10.933-9.563 12.348a.749.749 0 0 1-.374 0C6.314 20.683 2.25 15.692 2.25 9.75c0-1.39.223-2.73.635-3.985a.75.75 0 0 1 .722-.516l.143.001c2.996 0 5.718-1.17 7.734-3.08ZM12 8.25a.75.75 0 0 1 .75.75v3.75a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75ZM12 15a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75v-.008a.75.75 0 0 0-.75-.75H12Z","clip-rule":"evenodd"})])}function dT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.5 6v.75H5.513c-.96 0-1.764.724-1.865 1.679l-1.263 12A1.875 1.875 0 0 0 4.25 22.5h15.5a1.875 1.875 0 0 0 1.865-2.071l-1.263-12a1.875 1.875 0 0 0-1.865-1.679H16.5V6a4.5 4.5 0 1 0-9 0ZM12 3a3 3 0 0 0-3 3v.75h6V6a3 3 0 0 0-3-3Zm-3 8.25a3 3 0 1 0 6 0v-.75a.75.75 0 0 1 1.5 0v.75a4.5 4.5 0 1 1-9 0v-.75a.75.75 0 0 1 1.5 0v.75Z","clip-rule":"evenodd"})])}function uT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2.25 2.25a.75.75 0 0 0 0 1.5h1.386c.17 0 .318.114.362.278l2.558 9.592a3.752 3.752 0 0 0-2.806 3.63c0 .414.336.75.75.75h15.75a.75.75 0 0 0 0-1.5H5.378A2.25 2.25 0 0 1 7.5 15h11.218a.75.75 0 0 0 .674-.421 60.358 60.358 0 0 0 2.96-7.228.75.75 0 0 0-.525-.965A60.864 60.864 0 0 0 5.68 4.509l-.232-.867A1.875 1.875 0 0 0 3.636 2.25H2.25ZM3.75 20.25a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM16.5 20.25a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z"})])}function hT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.47 2.47a.75.75 0 0 1 1.06 0l8.407 8.407a1.125 1.125 0 0 1 1.186 1.186l1.462 1.461a3.001 3.001 0 0 0-.464-3.645.75.75 0 1 1 1.061-1.061 4.501 4.501 0 0 1 .486 5.79l1.072 1.072a6.001 6.001 0 0 0-.497-7.923.75.75 0 0 1 1.06-1.06 7.501 7.501 0 0 1 .505 10.05l1.064 1.065a9 9 0 0 0-.508-12.176.75.75 0 0 1 1.06-1.06c3.923 3.922 4.093 10.175.512 14.3l1.594 1.594a.75.75 0 1 1-1.06 1.06l-2.106-2.105-2.121-2.122h-.001l-4.705-4.706a.747.747 0 0 1-.127-.126L2.47 3.53a.75.75 0 0 1 0-1.061Zm1.189 4.422a.75.75 0 0 1 .326 1.01 9.004 9.004 0 0 0 1.651 10.462.75.75 0 1 1-1.06 1.06C1.27 16.12.63 11.165 2.648 7.219a.75.75 0 0 1 1.01-.326ZM5.84 9.134a.75.75 0 0 1 .472.95 6 6 0 0 0 1.444 6.159.75.75 0 0 1-1.06 1.06A7.5 7.5 0 0 1 4.89 9.606a.75.75 0 0 1 .95-.472Zm2.341 2.653a.75.75 0 0 1 .848.638c.088.62.37 1.218.849 1.696a.75.75 0 0 1-1.061 1.061 4.483 4.483 0 0 1-1.273-2.546.75.75 0 0 1 .637-.848Z","clip-rule":"evenodd"})])}function pT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.636 4.575a.75.75 0 0 1 0 1.061 9 9 0 0 0 0 12.728.75.75 0 1 1-1.06 1.06c-4.101-4.1-4.101-10.748 0-14.849a.75.75 0 0 1 1.06 0Zm12.728 0a.75.75 0 0 1 1.06 0c4.101 4.1 4.101 10.75 0 14.85a.75.75 0 1 1-1.06-1.061 9 9 0 0 0 0-12.728.75.75 0 0 1 0-1.06ZM7.757 6.697a.75.75 0 0 1 0 1.06 6 6 0 0 0 0 8.486.75.75 0 0 1-1.06 1.06 7.5 7.5 0 0 1 0-10.606.75.75 0 0 1 1.06 0Zm8.486 0a.75.75 0 0 1 1.06 0 7.5 7.5 0 0 1 0 10.606.75.75 0 0 1-1.06-1.06 6 6 0 0 0 0-8.486.75.75 0 0 1 0-1.06ZM9.879 8.818a.75.75 0 0 1 0 1.06 3 3 0 0 0 0 4.243.75.75 0 1 1-1.061 1.061 4.5 4.5 0 0 1 0-6.364.75.75 0 0 1 1.06 0Zm4.242 0a.75.75 0 0 1 1.061 0 4.5 4.5 0 0 1 0 6.364.75.75 0 0 1-1.06-1.06 3 3 0 0 0 0-4.243.75.75 0 0 1 0-1.061ZM10.875 12a1.125 1.125 0 1 1 2.25 0 1.125 1.125 0 0 1-2.25 0Z","clip-rule":"evenodd"})])}function fT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15.256 3.042a.75.75 0 0 1 .449.962l-6 16.5a.75.75 0 1 1-1.41-.513l6-16.5a.75.75 0 0 1 .961-.449Z","clip-rule":"evenodd"})])}function mT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9 4.5a.75.75 0 0 1 .721.544l.813 2.846a3.75 3.75 0 0 0 2.576 2.576l2.846.813a.75.75 0 0 1 0 1.442l-2.846.813a3.75 3.75 0 0 0-2.576 2.576l-.813 2.846a.75.75 0 0 1-1.442 0l-.813-2.846a3.75 3.75 0 0 0-2.576-2.576l-2.846-.813a.75.75 0 0 1 0-1.442l2.846-.813A3.75 3.75 0 0 0 7.466 7.89l.813-2.846A.75.75 0 0 1 9 4.5ZM18 1.5a.75.75 0 0 1 .728.568l.258 1.036c.236.94.97 1.674 1.91 1.91l1.036.258a.75.75 0 0 1 0 1.456l-1.036.258c-.94.236-1.674.97-1.91 1.91l-.258 1.036a.75.75 0 0 1-1.456 0l-.258-1.036a2.625 2.625 0 0 0-1.91-1.91l-1.036-.258a.75.75 0 0 1 0-1.456l1.036-.258a2.625 2.625 0 0 0 1.91-1.91l.258-1.036A.75.75 0 0 1 18 1.5ZM16.5 15a.75.75 0 0 1 .712.513l.394 1.183c.15.447.5.799.948.948l1.183.395a.75.75 0 0 1 0 1.422l-1.183.395c-.447.15-.799.5-.948.948l-.395 1.183a.75.75 0 0 1-1.422 0l-.395-1.183a1.5 1.5 0 0 0-.948-.948l-1.183-.395a.75.75 0 0 1 0-1.422l1.183-.395c.447-.15.799-.5.948-.948l.395-1.183A.75.75 0 0 1 16.5 15Z","clip-rule":"evenodd"})])}function wT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M13.5 4.06c0-1.336-1.616-2.005-2.56-1.06l-4.5 4.5H4.508c-1.141 0-2.318.664-2.66 1.905A9.76 9.76 0 0 0 1.5 12c0 .898.121 1.768.35 2.595.341 1.24 1.518 1.905 2.659 1.905h1.93l4.5 4.5c.945.945 2.561.276 2.561-1.06V4.06ZM18.584 5.106a.75.75 0 0 1 1.06 0c3.808 3.807 3.808 9.98 0 13.788a.75.75 0 0 1-1.06-1.06 8.25 8.25 0 0 0 0-11.668.75.75 0 0 1 0-1.06Z"}),e.createElementVNode("path",{d:"M15.932 7.757a.75.75 0 0 1 1.061 0 6 6 0 0 1 0 8.486.75.75 0 0 1-1.06-1.061 4.5 4.5 0 0 0 0-6.364.75.75 0 0 1 0-1.06Z"})])}function gT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M13.5 4.06c0-1.336-1.616-2.005-2.56-1.06l-4.5 4.5H4.508c-1.141 0-2.318.664-2.66 1.905A9.76 9.76 0 0 0 1.5 12c0 .898.121 1.768.35 2.595.341 1.24 1.518 1.905 2.659 1.905h1.93l4.5 4.5c.945.945 2.561.276 2.561-1.06V4.06ZM17.78 9.22a.75.75 0 1 0-1.06 1.06L18.44 12l-1.72 1.72a.75.75 0 1 0 1.06 1.06l1.72-1.72 1.72 1.72a.75.75 0 1 0 1.06-1.06L20.56 12l1.72-1.72a.75.75 0 1 0-1.06-1.06l-1.72 1.72-1.72-1.72Z"})])}function kT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M16.5 6a3 3 0 0 0-3-3H6a3 3 0 0 0-3 3v7.5a3 3 0 0 0 3 3v-6A4.5 4.5 0 0 1 10.5 6h6Z"}),e.createElementVNode("path",{d:"M18 7.5a3 3 0 0 1 3 3V18a3 3 0 0 1-3 3h-7.5a3 3 0 0 1-3-3v-7.5a3 3 0 0 1 3-3H18Z"})])}function xT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M11.644 1.59a.75.75 0 0 1 .712 0l9.75 5.25a.75.75 0 0 1 0 1.32l-9.75 5.25a.75.75 0 0 1-.712 0l-9.75-5.25a.75.75 0 0 1 0-1.32l9.75-5.25Z"}),e.createElementVNode("path",{d:"m3.265 10.602 7.668 4.129a2.25 2.25 0 0 0 2.134 0l7.668-4.13 1.37.739a.75.75 0 0 1 0 1.32l-9.75 5.25a.75.75 0 0 1-.71 0l-9.75-5.25a.75.75 0 0 1 0-1.32l1.37-.738Z"}),e.createElementVNode("path",{d:"m10.933 19.231-7.668-4.13-1.37.739a.75.75 0 0 0 0 1.32l9.75 5.25c.221.12.489.12.71 0l9.75-5.25a.75.75 0 0 0 0-1.32l-1.37-.738-7.668 4.13a2.25 2.25 0 0 1-2.134-.001Z"})])}function vT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 6a3 3 0 0 1 3-3h2.25a3 3 0 0 1 3 3v2.25a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm9.75 0a3 3 0 0 1 3-3H18a3 3 0 0 1 3 3v2.25a3 3 0 0 1-3 3h-2.25a3 3 0 0 1-3-3V6ZM3 15.75a3 3 0 0 1 3-3h2.25a3 3 0 0 1 3 3V18a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3v-2.25Zm9.75 0a3 3 0 0 1 3-3H18a3 3 0 0 1 3 3V18a3 3 0 0 1-3 3h-2.25a3 3 0 0 1-3-3v-2.25Z","clip-rule":"evenodd"})])}function yT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6 3a3 3 0 0 0-3 3v2.25a3 3 0 0 0 3 3h2.25a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM15.75 3a3 3 0 0 0-3 3v2.25a3 3 0 0 0 3 3H18a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3h-2.25ZM6 12.75a3 3 0 0 0-3 3V18a3 3 0 0 0 3 3h2.25a3 3 0 0 0 3-3v-2.25a3 3 0 0 0-3-3H6ZM17.625 13.5a.75.75 0 0 0-1.5 0v2.625H13.5a.75.75 0 0 0 0 1.5h2.625v2.625a.75.75 0 0 0 1.5 0v-2.625h2.625a.75.75 0 0 0 0-1.5h-2.625V13.5Z"})])}function BT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.788 3.21c.448-1.077 1.976-1.077 2.424 0l2.082 5.006 5.404.434c1.164.093 1.636 1.545.749 2.305l-4.117 3.527 1.257 5.273c.271 1.136-.964 2.033-1.96 1.425L12 18.354 7.373 21.18c-.996.608-2.231-.29-1.96-1.425l1.257-5.273-4.117-3.527c-.887-.76-.415-2.212.749-2.305l5.404-.434 2.082-5.005Z","clip-rule":"evenodd"})])}function ET(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm6-2.438c0-.724.588-1.312 1.313-1.312h4.874c.725 0 1.313.588 1.313 1.313v4.874c0 .725-.588 1.313-1.313 1.313H9.564a1.312 1.312 0 0 1-1.313-1.313V9.564Z","clip-rule":"evenodd"})])}function bT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 7.5a3 3 0 0 1 3-3h9a3 3 0 0 1 3 3v9a3 3 0 0 1-3 3h-9a3 3 0 0 1-3-3v-9Z","clip-rule":"evenodd"})])}function CT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.657 4.728c-1.086.385-1.766 1.057-1.979 1.85-.214.8.046 1.733.81 2.616.746.862 1.93 1.612 3.388 2.003.07.019.14.037.21.053h8.163a.75.75 0 0 1 0 1.5h-8.24a.66.66 0 0 1-.02 0H3.75a.75.75 0 0 1 0-1.5h4.78a7.108 7.108 0 0 1-1.175-1.074C6.372 9.042 5.849 7.61 6.229 6.19c.377-1.408 1.528-2.38 2.927-2.876 1.402-.497 3.127-.55 4.855-.086A8.937 8.937 0 0 1 16.94 4.6a.75.75 0 0 1-.881 1.215 7.437 7.437 0 0 0-2.436-1.14c-1.473-.394-2.885-.331-3.966.052Zm6.533 9.632a.75.75 0 0 1 1.03.25c.592.974.846 2.094.55 3.2-.378 1.408-1.529 2.38-2.927 2.876-1.402.497-3.127.55-4.855.087-1.712-.46-3.168-1.354-4.134-2.47a.75.75 0 0 1 1.134-.982c.746.862 1.93 1.612 3.388 2.003 1.473.394 2.884.331 3.966-.052 1.085-.384 1.766-1.056 1.978-1.85.169-.628.046-1.33-.381-2.032a.75.75 0 0 1 .25-1.03Z","clip-rule":"evenodd"})])}function MT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M12 2.25a.75.75 0 0 1 .75.75v2.25a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75ZM7.5 12a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0ZM18.894 6.166a.75.75 0 0 0-1.06-1.06l-1.591 1.59a.75.75 0 1 0 1.06 1.061l1.591-1.59ZM21.75 12a.75.75 0 0 1-.75.75h-2.25a.75.75 0 0 1 0-1.5H21a.75.75 0 0 1 .75.75ZM17.834 18.894a.75.75 0 0 0 1.06-1.06l-1.59-1.591a.75.75 0 1 0-1.061 1.06l1.59 1.591ZM12 18a.75.75 0 0 1 .75.75V21a.75.75 0 0 1-1.5 0v-2.25A.75.75 0 0 1 12 18ZM7.758 17.303a.75.75 0 0 0-1.061-1.06l-1.591 1.59a.75.75 0 0 0 1.06 1.061l1.591-1.59ZM6 12a.75.75 0 0 1-.75.75H3a.75.75 0 0 1 0-1.5h2.25A.75.75 0 0 1 6 12ZM6.697 7.757a.75.75 0 0 0 1.06-1.06l-1.59-1.591a.75.75 0 0 0-1.061 1.06l1.59 1.591Z"})])}function VT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.25 4.125c0-1.036.84-1.875 1.875-1.875h5.25c1.036 0 1.875.84 1.875 1.875V17.25a4.5 4.5 0 1 1-9 0V4.125Zm4.5 14.25a1.125 1.125 0 1 0 0-2.25 1.125 1.125 0 0 0 0 2.25Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M10.719 21.75h9.156c1.036 0 1.875-.84 1.875-1.875v-5.25c0-1.036-.84-1.875-1.875-1.875h-.14l-8.742 8.743c-.09.089-.18.175-.274.257ZM12.738 17.625l6.474-6.474a1.875 1.875 0 0 0 0-2.651L15.5 4.787a1.875 1.875 0 0 0-2.651 0l-.1.099V17.25c0 .126-.003.251-.01.375Z"})])}function AT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.5 5.625c0-1.036.84-1.875 1.875-1.875h17.25c1.035 0 1.875.84 1.875 1.875v12.75c0 1.035-.84 1.875-1.875 1.875H3.375A1.875 1.875 0 0 1 1.5 18.375V5.625ZM21 9.375A.375.375 0 0 0 20.625 9h-7.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375h7.5a.375.375 0 0 0 .375-.375v-1.5Zm0 3.75a.375.375 0 0 0-.375-.375h-7.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375h7.5a.375.375 0 0 0 .375-.375v-1.5Zm0 3.75a.375.375 0 0 0-.375-.375h-7.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375h7.5a.375.375 0 0 0 .375-.375v-1.5ZM10.875 18.75a.375.375 0 0 0 .375-.375v-1.5a.375.375 0 0 0-.375-.375h-7.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375h7.5ZM3.375 15h7.5a.375.375 0 0 0 .375-.375v-1.5a.375.375 0 0 0-.375-.375h-7.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375Zm0-3.75h7.5a.375.375 0 0 0 .375-.375v-1.5A.375.375 0 0 0 10.875 9h-7.5A.375.375 0 0 0 3 9.375v1.5c0 .207.168.375.375.375Z","clip-rule":"evenodd"})])}function _T(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.25 2.25a3 3 0 0 0-3 3v4.318a3 3 0 0 0 .879 2.121l9.58 9.581c.92.92 2.39 1.186 3.548.428a18.849 18.849 0 0 0 5.441-5.44c.758-1.16.492-2.629-.428-3.548l-9.58-9.581a3 3 0 0 0-2.122-.879H5.25ZM6.375 7.5a1.125 1.125 0 1 0 0-2.25 1.125 1.125 0 0 0 0 2.25Z","clip-rule":"evenodd"})])}function NT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.5 6.375c0-1.036.84-1.875 1.875-1.875h17.25c1.035 0 1.875.84 1.875 1.875v3.026a.75.75 0 0 1-.375.65 2.249 2.249 0 0 0 0 3.898.75.75 0 0 1 .375.65v3.026c0 1.035-.84 1.875-1.875 1.875H3.375A1.875 1.875 0 0 1 1.5 17.625v-3.026a.75.75 0 0 1 .374-.65 2.249 2.249 0 0 0 0-3.898.75.75 0 0 1-.374-.65V6.375Zm15-1.125a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-1.5 0V6a.75.75 0 0 1 .75-.75Zm.75 4.5a.75.75 0 0 0-1.5 0v.75a.75.75 0 0 0 1.5 0v-.75Zm-.75 3a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-1.5 0v-.75a.75.75 0 0 1 .75-.75Zm.75 4.5a.75.75 0 0 0-1.5 0V18a.75.75 0 0 0 1.5 0v-.75ZM6 12a.75.75 0 0 1 .75-.75H12a.75.75 0 0 1 0 1.5H6.75A.75.75 0 0 1 6 12Zm.75 2.25a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-3Z","clip-rule":"evenodd"})])}function ZT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M16.5 4.478v.227a48.816 48.816 0 0 1 3.878.512.75.75 0 1 1-.256 1.478l-.209-.035-1.005 13.07a3 3 0 0 1-2.991 2.77H8.084a3 3 0 0 1-2.991-2.77L4.087 6.66l-.209.035a.75.75 0 0 1-.256-1.478A48.567 48.567 0 0 1 7.5 4.705v-.227c0-1.564 1.213-2.9 2.816-2.951a52.662 52.662 0 0 1 3.369 0c1.603.051 2.815 1.387 2.815 2.951Zm-6.136-1.452a51.196 51.196 0 0 1 3.273 0C14.39 3.05 15 3.684 15 4.478v.113a49.488 49.488 0 0 0-6 0v-.113c0-.794.609-1.428 1.364-1.452Zm-.355 5.945a.75.75 0 1 0-1.5.058l.347 9a.75.75 0 1 0 1.499-.058l-.346-9Zm5.48.058a.75.75 0 1 0-1.498-.058l-.347 9a.75.75 0 0 0 1.5.058l.345-9Z","clip-rule":"evenodd"})])}function ST(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.166 2.621v.858c-1.035.148-2.059.33-3.071.543a.75.75 0 0 0-.584.859 6.753 6.753 0 0 0 6.138 5.6 6.73 6.73 0 0 0 2.743 1.346A6.707 6.707 0 0 1 9.279 15H8.54c-1.036 0-1.875.84-1.875 1.875V19.5h-.75a2.25 2.25 0 0 0-2.25 2.25c0 .414.336.75.75.75h15a.75.75 0 0 0 .75-.75 2.25 2.25 0 0 0-2.25-2.25h-.75v-2.625c0-1.036-.84-1.875-1.875-1.875h-.739a6.706 6.706 0 0 1-1.112-3.173 6.73 6.73 0 0 0 2.743-1.347 6.753 6.753 0 0 0 6.139-5.6.75.75 0 0 0-.585-.858 47.077 47.077 0 0 0-3.07-.543V2.62a.75.75 0 0 0-.658-.744 49.22 49.22 0 0 0-6.093-.377c-2.063 0-4.096.128-6.093.377a.75.75 0 0 0-.657.744Zm0 2.629c0 1.196.312 2.32.857 3.294A5.266 5.266 0 0 1 3.16 5.337a45.6 45.6 0 0 1 2.006-.343v.256Zm13.5 0v-.256c.674.1 1.343.214 2.006.343a5.265 5.265 0 0 1-2.863 3.207 6.72 6.72 0 0 0 .857-3.294Z","clip-rule":"evenodd"})])}function $T(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.375 4.5C2.339 4.5 1.5 5.34 1.5 6.375V13.5h12V6.375c0-1.036-.84-1.875-1.875-1.875h-8.25ZM13.5 15h-12v2.625c0 1.035.84 1.875 1.875 1.875h.375a3 3 0 1 1 6 0h3a.75.75 0 0 0 .75-.75V15Z"}),e.createElementVNode("path",{d:"M8.25 19.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0ZM15.75 6.75a.75.75 0 0 0-.75.75v11.25c0 .087.015.17.042.248a3 3 0 0 1 5.958.464c.853-.175 1.522-.935 1.464-1.883a18.659 18.659 0 0 0-3.732-10.104 1.837 1.837 0 0 0-1.47-.725H15.75Z"}),e.createElementVNode("path",{d:"M19.5 19.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Z"})])}function IT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M19.5 6h-15v9h15V6Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.375 3C2.339 3 1.5 3.84 1.5 4.875v11.25C1.5 17.16 2.34 18 3.375 18H9.75v1.5H6A.75.75 0 0 0 6 21h12a.75.75 0 0 0 0-1.5h-3.75V18h6.375c1.035 0 1.875-.84 1.875-1.875V4.875C22.5 3.839 21.66 3 20.625 3H3.375Zm0 13.5h17.25a.375.375 0 0 0 .375-.375V4.875a.375.375 0 0 0-.375-.375H3.375A.375.375 0 0 0 3 4.875v11.25c0 .207.168.375.375.375Z","clip-rule":"evenodd"})])}function HT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.995 2.994a.75.75 0 0 1 .75.75v7.5a5.25 5.25 0 1 0 10.5 0v-7.5a.75.75 0 0 1 1.5 0v7.5a6.75 6.75 0 1 1-13.5 0v-7.5a.75.75 0 0 1 .75-.75Zm-3 17.252a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5h-16.5a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function TT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M18.685 19.097A9.723 9.723 0 0 0 21.75 12c0-5.385-4.365-9.75-9.75-9.75S2.25 6.615 2.25 12a9.723 9.723 0 0 0 3.065 7.097A9.716 9.716 0 0 0 12 21.75a9.716 9.716 0 0 0 6.685-2.653Zm-12.54-1.285A7.486 7.486 0 0 1 12 15a7.486 7.486 0 0 1 5.855 2.812A8.224 8.224 0 0 1 12 20.25a8.224 8.224 0 0 1-5.855-2.438ZM15.75 9a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z","clip-rule":"evenodd"})])}function LT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.25 6.75a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0ZM15.75 9.75a3 3 0 1 1 6 0 3 3 0 0 1-6 0ZM2.25 9.75a3 3 0 1 1 6 0 3 3 0 0 1-6 0ZM6.31 15.117A6.745 6.745 0 0 1 12 12a6.745 6.745 0 0 1 6.709 7.498.75.75 0 0 1-.372.568A12.696 12.696 0 0 1 12 21.75c-2.305 0-4.47-.612-6.337-1.684a.75.75 0 0 1-.372-.568 6.787 6.787 0 0 1 1.019-4.38Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M5.082 14.254a8.287 8.287 0 0 0-1.308 5.135 9.687 9.687 0 0 1-1.764-.44l-.115-.04a.563.563 0 0 1-.373-.487l-.01-.121a3.75 3.75 0 0 1 3.57-4.047ZM20.226 19.389a8.287 8.287 0 0 0-1.308-5.135 3.75 3.75 0 0 1 3.57 4.047l-.01.121a.563.563 0 0 1-.373.486l-.115.04c-.567.2-1.156.349-1.764.441Z"})])}function DT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10.375 2.25a4.125 4.125 0 1 0 0 8.25 4.125 4.125 0 0 0 0-8.25ZM10.375 12a7.125 7.125 0 0 0-7.124 7.247.75.75 0 0 0 .363.63 13.067 13.067 0 0 0 6.761 1.873c2.472 0 4.786-.684 6.76-1.873a.75.75 0 0 0 .364-.63l.001-.12v-.002A7.125 7.125 0 0 0 10.375 12ZM16 9.75a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5h-6Z"})])}function PT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.25 6.375a4.125 4.125 0 1 1 8.25 0 4.125 4.125 0 0 1-8.25 0ZM2.25 19.125a7.125 7.125 0 0 1 14.25 0v.003l-.001.119a.75.75 0 0 1-.363.63 13.067 13.067 0 0 1-6.761 1.873c-2.472 0-4.786-.684-6.76-1.873a.75.75 0 0 1-.364-.63l-.001-.122ZM18.75 7.5a.75.75 0 0 0-1.5 0v2.25H15a.75.75 0 0 0 0 1.5h2.25v2.25a.75.75 0 0 0 1.5 0v-2.25H21a.75.75 0 0 0 0-1.5h-2.25V7.5Z"})])}function OT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.5 6a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0ZM3.751 20.105a8.25 8.25 0 0 1 16.498 0 .75.75 0 0 1-.437.695A18.683 18.683 0 0 1 12 22.5c-2.786 0-5.433-.608-7.812-1.7a.75.75 0 0 1-.437-.695Z","clip-rule":"evenodd"})])}function RT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.5 6.375a4.125 4.125 0 1 1 8.25 0 4.125 4.125 0 0 1-8.25 0ZM14.25 8.625a3.375 3.375 0 1 1 6.75 0 3.375 3.375 0 0 1-6.75 0ZM1.5 19.125a7.125 7.125 0 0 1 14.25 0v.003l-.001.119a.75.75 0 0 1-.363.63 13.067 13.067 0 0 1-6.761 1.873c-2.472 0-4.786-.684-6.76-1.873a.75.75 0 0 1-.364-.63l-.001-.122ZM17.25 19.128l-.001.144a2.25 2.25 0 0 1-.233.96 10.088 10.088 0 0 0 5.06-1.01.75.75 0 0 0 .42-.643 4.875 4.875 0 0 0-6.957-4.611 8.586 8.586 0 0 1 1.71 5.157v.003Z"})])}function zT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M19.253 2.292a.75.75 0 0 1 .955.461A28.123 28.123 0 0 1 21.75 12c0 3.266-.547 6.388-1.542 9.247a.75.75 0 1 1-1.416-.494c.94-2.7 1.458-5.654 1.458-8.753s-.519-6.054-1.458-8.754a.75.75 0 0 1 .461-.954Zm-14.227.013a.75.75 0 0 1 .414.976A23.183 23.183 0 0 0 3.75 12c0 3.085.6 6.027 1.69 8.718a.75.75 0 0 1-1.39.563c-1.161-2.867-1.8-6-1.8-9.281 0-3.28.639-6.414 1.8-9.281a.75.75 0 0 1 .976-.414Zm4.275 5.052a1.5 1.5 0 0 1 2.21.803l.716 2.148L13.6 8.246a2.438 2.438 0 0 1 2.978-.892l.213.09a.75.75 0 1 1-.584 1.381l-.214-.09a.937.937 0 0 0-1.145.343l-2.021 3.033 1.084 3.255 1.445-.89a.75.75 0 1 1 .786 1.278l-1.444.889a1.5 1.5 0 0 1-2.21-.803l-.716-2.148-1.374 2.062a2.437 2.437 0 0 1-2.978.892l-.213-.09a.75.75 0 0 1 .584-1.381l.214.09a.938.938 0 0 0 1.145-.344l2.021-3.032-1.084-3.255-1.445.89a.75.75 0 1 1-.786-1.278l1.444-.89Z","clip-rule":"evenodd"})])}function jT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M.97 3.97a.75.75 0 0 1 1.06 0l15 15a.75.75 0 1 1-1.06 1.06l-15-15a.75.75 0 0 1 0-1.06ZM17.25 16.06l2.69 2.69c.944.945 2.56.276 2.56-1.06V6.31c0-1.336-1.616-2.005-2.56-1.06l-2.69 2.69v8.12ZM15.75 7.5v8.068L4.682 4.5h8.068a3 3 0 0 1 3 3ZM1.5 16.5V7.682l11.773 11.773c-.17.03-.345.045-.523.045H4.5a3 3 0 0 1-3-3Z"})])}function FT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.5 4.5a3 3 0 0 0-3 3v9a3 3 0 0 0 3 3h8.25a3 3 0 0 0 3-3v-9a3 3 0 0 0-3-3H4.5ZM19.94 18.75l-2.69-2.69V7.94l2.69-2.69c.944-.945 2.56-.276 2.56 1.06v11.38c0 1.336-1.616 2.005-2.56 1.06Z"})])}function UT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M15 3.75H9v16.5h6V3.75ZM16.5 20.25h3.375c1.035 0 1.875-.84 1.875-1.875V5.625c0-1.036-.84-1.875-1.875-1.875H16.5v16.5ZM4.125 3.75H7.5v16.5H4.125a1.875 1.875 0 0 1-1.875-1.875V5.625c0-1.036.84-1.875 1.875-1.875Z"})])}function WT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6 3a3 3 0 0 0-3 3v1.5a.75.75 0 0 0 1.5 0V6A1.5 1.5 0 0 1 6 4.5h1.5a.75.75 0 0 0 0-1.5H6ZM16.5 3a.75.75 0 0 0 0 1.5H18A1.5 1.5 0 0 1 19.5 6v1.5a.75.75 0 0 0 1.5 0V6a3 3 0 0 0-3-3h-1.5ZM12 8.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5ZM4.5 16.5a.75.75 0 0 0-1.5 0V18a3 3 0 0 0 3 3h1.5a.75.75 0 0 0 0-1.5H6A1.5 1.5 0 0 1 4.5 18v-1.5ZM21 16.5a.75.75 0 0 0-1.5 0V18a1.5 1.5 0 0 1-1.5 1.5h-1.5a.75.75 0 0 0 0 1.5H18a3 3 0 0 0 3-3v-1.5Z"})])}function qT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2.273 5.625A4.483 4.483 0 0 1 5.25 4.5h13.5c1.141 0 2.183.425 2.977 1.125A3 3 0 0 0 18.75 3H5.25a3 3 0 0 0-2.977 2.625ZM2.273 8.625A4.483 4.483 0 0 1 5.25 7.5h13.5c1.141 0 2.183.425 2.977 1.125A3 3 0 0 0 18.75 6H5.25a3 3 0 0 0-2.977 2.625ZM5.25 9a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h13.5a3 3 0 0 0 3-3v-6a3 3 0 0 0-3-3H15a.75.75 0 0 0-.75.75 2.25 2.25 0 0 1-4.5 0A.75.75 0 0 0 9 9H5.25Z"})])}function YT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.371 8.143c5.858-5.857 15.356-5.857 21.213 0a.75.75 0 0 1 0 1.061l-.53.53a.75.75 0 0 1-1.06 0c-4.98-4.979-13.053-4.979-18.032 0a.75.75 0 0 1-1.06 0l-.53-.53a.75.75 0 0 1 0-1.06Zm3.182 3.182c4.1-4.1 10.749-4.1 14.85 0a.75.75 0 0 1 0 1.061l-.53.53a.75.75 0 0 1-1.062 0 8.25 8.25 0 0 0-11.667 0 .75.75 0 0 1-1.06 0l-.53-.53a.75.75 0 0 1 0-1.06Zm3.204 3.182a6 6 0 0 1 8.486 0 .75.75 0 0 1 0 1.061l-.53.53a.75.75 0 0 1-1.061 0 3.75 3.75 0 0 0-5.304 0 .75.75 0 0 1-1.06 0l-.53-.53a.75.75 0 0 1 0-1.06Zm3.182 3.182a1.5 1.5 0 0 1 2.122 0 .75.75 0 0 1 0 1.061l-.53.53a.75.75 0 0 1-1.061 0l-.53-.53a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function KT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.25 6a3 3 0 0 1 3-3h13.5a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3V6Zm18 3H3.75v9a1.5 1.5 0 0 0 1.5 1.5h13.5a1.5 1.5 0 0 0 1.5-1.5V9Zm-15-3.75A.75.75 0 0 0 4.5 6v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V6a.75.75 0 0 0-.75-.75H5.25Zm1.5.75a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H7.5a.75.75 0 0 1-.75-.75V6Zm3-.75A.75.75 0 0 0 9 6v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V6a.75.75 0 0 0-.75-.75H9.75Z","clip-rule":"evenodd"})])}function GT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 6.75a5.25 5.25 0 0 1 6.775-5.025.75.75 0 0 1 .313 1.248l-3.32 3.319c.063.475.276.934.641 1.299.365.365.824.578 1.3.64l3.318-3.319a.75.75 0 0 1 1.248.313 5.25 5.25 0 0 1-5.472 6.756c-1.018-.086-1.87.1-2.309.634L7.344 21.3A3.298 3.298 0 1 1 2.7 16.657l8.684-7.151c.533-.44.72-1.291.634-2.309A5.342 5.342 0 0 1 12 6.75ZM4.117 19.125a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75v-.008Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"m10.076 8.64-2.201-2.2V4.874a.75.75 0 0 0-.364-.643l-3.75-2.25a.75.75 0 0 0-.916.113l-.75.75a.75.75 0 0 0-.113.916l2.25 3.75a.75.75 0 0 0 .643.364h1.564l2.062 2.062 1.575-1.297Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"m12.556 17.329 4.183 4.182a3.375 3.375 0 0 0 4.773-4.773l-3.306-3.305a6.803 6.803 0 0 1-1.53.043c-.394-.034-.682-.006-.867.042a.589.589 0 0 0-.167.063l-3.086 3.748Zm3.414-1.36a.75.75 0 0 1 1.06 0l1.875 1.876a.75.75 0 1 1-1.06 1.06L15.97 17.03a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function JT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 6.75a5.25 5.25 0 0 1 6.775-5.025.75.75 0 0 1 .313 1.248l-3.32 3.319c.063.475.276.934.641 1.299.365.365.824.578 1.3.64l3.318-3.319a.75.75 0 0 1 1.248.313 5.25 5.25 0 0 1-5.472 6.756c-1.018-.086-1.87.1-2.309.634L7.344 21.3A3.298 3.298 0 1 1 2.7 16.657l8.684-7.151c.533-.44.72-1.291.634-2.309A5.342 5.342 0 0 1 12 6.75ZM4.117 19.125a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75v-.008Z","clip-rule":"evenodd"})])}function XT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25Zm-1.72 6.97a.75.75 0 1 0-1.06 1.06L10.94 12l-1.72 1.72a.75.75 0 1 0 1.06 1.06L12 13.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L13.06 12l1.72-1.72a.75.75 0 1 0-1.06-1.06L12 10.94l-1.72-1.72Z","clip-rule":"evenodd"})])}function QT(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.47 5.47a.75.75 0 0 1 1.06 0L12 10.94l5.47-5.47a.75.75 0 1 1 1.06 1.06L13.06 12l5.47 5.47a.75.75 0 1 1-1.06 1.06L12 13.06l-5.47 5.47a.75.75 0 0 1-1.06-1.06L10.94 12 5.47 6.53a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}const eL=Object.freeze(Object.defineProperty({__proto__:null,AcademicCapIcon:eZ,AdjustmentsHorizontalIcon:tZ,AdjustmentsVerticalIcon:nZ,ArchiveBoxArrowDownIcon:rZ,ArchiveBoxIcon:aZ,ArchiveBoxXMarkIcon:oZ,ArrowDownCircleIcon:lZ,ArrowDownIcon:hZ,ArrowDownLeftIcon:iZ,ArrowDownOnSquareIcon:sZ,ArrowDownOnSquareStackIcon:cZ,ArrowDownRightIcon:dZ,ArrowDownTrayIcon:uZ,ArrowLeftCircleIcon:pZ,ArrowLeftEndOnRectangleIcon:fZ,ArrowLeftIcon:gZ,ArrowLeftOnRectangleIcon:mZ,ArrowLeftStartOnRectangleIcon:wZ,ArrowLongDownIcon:kZ,ArrowLongLeftIcon:xZ,ArrowLongRightIcon:vZ,ArrowLongUpIcon:yZ,ArrowPathIcon:EZ,ArrowPathRoundedSquareIcon:BZ,ArrowRightCircleIcon:bZ,ArrowRightEndOnRectangleIcon:CZ,ArrowRightIcon:AZ,ArrowRightOnRectangleIcon:MZ,ArrowRightStartOnRectangleIcon:VZ,ArrowSmallDownIcon:_Z,ArrowSmallLeftIcon:NZ,ArrowSmallRightIcon:ZZ,ArrowSmallUpIcon:SZ,ArrowTopRightOnSquareIcon:$Z,ArrowTrendingDownIcon:IZ,ArrowTrendingUpIcon:HZ,ArrowTurnDownLeftIcon:TZ,ArrowTurnDownRightIcon:LZ,ArrowTurnLeftDownIcon:DZ,ArrowTurnLeftUpIcon:PZ,ArrowTurnRightDownIcon:OZ,ArrowTurnRightUpIcon:RZ,ArrowTurnUpLeftIcon:zZ,ArrowTurnUpRightIcon:jZ,ArrowUpCircleIcon:FZ,ArrowUpIcon:GZ,ArrowUpLeftIcon:UZ,ArrowUpOnSquareIcon:qZ,ArrowUpOnSquareStackIcon:WZ,ArrowUpRightIcon:YZ,ArrowUpTrayIcon:KZ,ArrowUturnDownIcon:JZ,ArrowUturnLeftIcon:XZ,ArrowUturnRightIcon:QZ,ArrowUturnUpIcon:eS,ArrowsPointingInIcon:tS,ArrowsPointingOutIcon:nS,ArrowsRightLeftIcon:rS,ArrowsUpDownIcon:oS,AtSymbolIcon:aS,BackspaceIcon:lS,BackwardIcon:iS,BanknotesIcon:cS,Bars2Icon:sS,Bars3BottomLeftIcon:dS,Bars3BottomRightIcon:uS,Bars3CenterLeftIcon:hS,Bars3Icon:pS,Bars4Icon:fS,BarsArrowDownIcon:mS,BarsArrowUpIcon:wS,Battery0Icon:gS,Battery100Icon:kS,Battery50Icon:xS,BeakerIcon:vS,BellAlertIcon:yS,BellIcon:bS,BellSlashIcon:BS,BellSnoozeIcon:ES,BoldIcon:CS,BoltIcon:VS,BoltSlashIcon:MS,BookOpenIcon:AS,BookmarkIcon:ZS,BookmarkSlashIcon:_S,BookmarkSquareIcon:NS,BriefcaseIcon:SS,BugAntIcon:$S,BuildingLibraryIcon:IS,BuildingOffice2Icon:HS,BuildingOfficeIcon:TS,BuildingStorefrontIcon:LS,CakeIcon:DS,CalculatorIcon:PS,CalendarDateRangeIcon:OS,CalendarDaysIcon:RS,CalendarIcon:zS,CameraIcon:jS,ChartBarIcon:US,ChartBarSquareIcon:FS,ChartPieIcon:WS,ChatBubbleBottomCenterIcon:YS,ChatBubbleBottomCenterTextIcon:qS,ChatBubbleLeftEllipsisIcon:KS,ChatBubbleLeftIcon:JS,ChatBubbleLeftRightIcon:GS,ChatBubbleOvalLeftEllipsisIcon:XS,ChatBubbleOvalLeftIcon:QS,CheckBadgeIcon:e$,CheckCircleIcon:t$,CheckIcon:n$,ChevronDoubleDownIcon:r$,ChevronDoubleLeftIcon:o$,ChevronDoubleRightIcon:a$,ChevronDoubleUpIcon:l$,ChevronDownIcon:i$,ChevronLeftIcon:c$,ChevronRightIcon:s$,ChevronUpDownIcon:d$,ChevronUpIcon:u$,CircleStackIcon:h$,ClipboardDocumentCheckIcon:p$,ClipboardDocumentIcon:m$,ClipboardDocumentListIcon:f$,ClipboardIcon:w$,ClockIcon:g$,CloudArrowDownIcon:k$,CloudArrowUpIcon:x$,CloudIcon:v$,CodeBracketIcon:B$,CodeBracketSquareIcon:y$,Cog6ToothIcon:E$,Cog8ToothIcon:b$,CogIcon:C$,CommandLineIcon:M$,ComputerDesktopIcon:V$,CpuChipIcon:A$,CreditCardIcon:_$,CubeIcon:Z$,CubeTransparentIcon:N$,CurrencyBangladeshiIcon:S$,CurrencyDollarIcon:$$,CurrencyEuroIcon:I$,CurrencyPoundIcon:H$,CurrencyRupeeIcon:T$,CurrencyYenIcon:L$,CursorArrowRaysIcon:D$,CursorArrowRippleIcon:P$,DevicePhoneMobileIcon:O$,DeviceTabletIcon:R$,DivideIcon:z$,DocumentArrowDownIcon:j$,DocumentArrowUpIcon:F$,DocumentChartBarIcon:U$,DocumentCheckIcon:W$,DocumentCurrencyBangladeshiIcon:q$,DocumentCurrencyDollarIcon:Y$,DocumentCurrencyEuroIcon:K$,DocumentCurrencyPoundIcon:G$,DocumentCurrencyRupeeIcon:J$,DocumentCurrencyYenIcon:X$,DocumentDuplicateIcon:Q$,DocumentIcon:oI,DocumentMagnifyingGlassIcon:eI,DocumentMinusIcon:tI,DocumentPlusIcon:nI,DocumentTextIcon:rI,EllipsisHorizontalCircleIcon:aI,EllipsisHorizontalIcon:lI,EllipsisVerticalIcon:iI,EnvelopeIcon:sI,EnvelopeOpenIcon:cI,EqualsIcon:dI,ExclamationCircleIcon:uI,ExclamationTriangleIcon:hI,EyeDropperIcon:pI,EyeIcon:mI,EyeSlashIcon:fI,FaceFrownIcon:wI,FaceSmileIcon:gI,FilmIcon:kI,FingerPrintIcon:xI,FireIcon:vI,FlagIcon:yI,FolderArrowDownIcon:BI,FolderIcon:MI,FolderMinusIcon:EI,FolderOpenIcon:bI,FolderPlusIcon:CI,ForwardIcon:VI,FunnelIcon:AI,GifIcon:_I,GiftIcon:ZI,GiftTopIcon:NI,GlobeAltIcon:SI,GlobeAmericasIcon:$I,GlobeAsiaAustraliaIcon:II,GlobeEuropeAfricaIcon:HI,H1Icon:TI,H2Icon:LI,H3Icon:DI,HandRaisedIcon:PI,HandThumbDownIcon:OI,HandThumbUpIcon:RI,HashtagIcon:zI,HeartIcon:jI,HomeIcon:UI,HomeModernIcon:FI,IdentificationIcon:WI,InboxArrowDownIcon:qI,InboxIcon:KI,InboxStackIcon:YI,InformationCircleIcon:GI,ItalicIcon:JI,KeyIcon:XI,LanguageIcon:QI,LifebuoyIcon:eH,LightBulbIcon:tH,LinkIcon:rH,LinkSlashIcon:nH,ListBulletIcon:oH,LockClosedIcon:aH,LockOpenIcon:lH,MagnifyingGlassCircleIcon:iH,MagnifyingGlassIcon:dH,MagnifyingGlassMinusIcon:cH,MagnifyingGlassPlusIcon:sH,MapIcon:hH,MapPinIcon:uH,MegaphoneIcon:pH,MicrophoneIcon:fH,MinusCircleIcon:mH,MinusIcon:gH,MinusSmallIcon:wH,MoonIcon:kH,MusicalNoteIcon:xH,NewspaperIcon:vH,NoSymbolIcon:yH,NumberedListIcon:BH,PaintBrushIcon:EH,PaperAirplaneIcon:bH,PaperClipIcon:CH,PauseCircleIcon:MH,PauseIcon:VH,PencilIcon:_H,PencilSquareIcon:AH,PercentBadgeIcon:NH,PhoneArrowDownLeftIcon:ZH,PhoneArrowUpRightIcon:SH,PhoneIcon:IH,PhoneXMarkIcon:$H,PhotoIcon:HH,PlayCircleIcon:TH,PlayIcon:DH,PlayPauseIcon:LH,PlusCircleIcon:PH,PlusIcon:RH,PlusSmallIcon:OH,PowerIcon:zH,PresentationChartBarIcon:jH,PresentationChartLineIcon:FH,PrinterIcon:UH,PuzzlePieceIcon:WH,QrCodeIcon:qH,QuestionMarkCircleIcon:YH,QueueListIcon:KH,RadioIcon:GH,ReceiptPercentIcon:JH,ReceiptRefundIcon:XH,RectangleGroupIcon:QH,RectangleStackIcon:eT,RocketLaunchIcon:tT,RssIcon:nT,ScaleIcon:rT,ScissorsIcon:oT,ServerIcon:lT,ServerStackIcon:aT,ShareIcon:iT,ShieldCheckIcon:cT,ShieldExclamationIcon:sT,ShoppingBagIcon:dT,ShoppingCartIcon:uT,SignalIcon:pT,SignalSlashIcon:hT,SlashIcon:fT,SparklesIcon:mT,SpeakerWaveIcon:wT,SpeakerXMarkIcon:gT,Square2StackIcon:kT,Square3Stack3DIcon:xT,Squares2X2Icon:vT,SquaresPlusIcon:yT,StarIcon:BT,StopCircleIcon:ET,StopIcon:bT,StrikethroughIcon:CT,SunIcon:MT,SwatchIcon:VT,TableCellsIcon:AT,TagIcon:_T,TicketIcon:NT,TrashIcon:ZT,TrophyIcon:ST,TruckIcon:$T,TvIcon:IT,UnderlineIcon:HT,UserCircleIcon:TT,UserGroupIcon:LT,UserIcon:OT,UserMinusIcon:DT,UserPlusIcon:PT,UsersIcon:RT,VariableIcon:zT,VideoCameraIcon:FT,VideoCameraSlashIcon:jT,ViewColumnsIcon:UT,ViewfinderCircleIcon:WT,WalletIcon:qT,WifiIcon:YT,WindowIcon:KT,WrenchIcon:JT,WrenchScrewdriverIcon:GT,XCircleIcon:XT,XMarkIcon:QT},Symbol.toStringTag,{value:"Module"}));function tL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.664 1.319a.75.75 0 0 1 .672 0 41.059 41.059 0 0 1 8.198 5.424.75.75 0 0 1-.254 1.285 31.372 31.372 0 0 0-7.86 3.83.75.75 0 0 1-.84 0 31.508 31.508 0 0 0-2.08-1.287V9.394c0-.244.116-.463.302-.592a35.504 35.504 0 0 1 3.305-2.033.75.75 0 0 0-.714-1.319 37 37 0 0 0-3.446 2.12A2.216 2.216 0 0 0 6 9.393v.38a31.293 31.293 0 0 0-4.28-1.746.75.75 0 0 1-.254-1.285 41.059 41.059 0 0 1 8.198-5.424ZM6 11.459a29.848 29.848 0 0 0-2.455-1.158 41.029 41.029 0 0 0-.39 3.114.75.75 0 0 0 .419.74c.528.256 1.046.53 1.554.82-.21.324-.455.63-.739.914a.75.75 0 1 0 1.06 1.06c.37-.369.69-.77.96-1.193a26.61 26.61 0 0 1 3.095 2.348.75.75 0 0 0 .992 0 26.547 26.547 0 0 1 5.93-3.95.75.75 0 0 0 .42-.739 41.053 41.053 0 0 0-.39-3.114 29.925 29.925 0 0 0-5.199 2.801 2.25 2.25 0 0 1-2.514 0c-.41-.275-.826-.541-1.25-.797a6.985 6.985 0 0 1-1.084 3.45 26.503 26.503 0 0 0-1.281-.78A5.487 5.487 0 0 0 6 12v-.54Z","clip-rule":"evenodd"})])}function nL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10 3.75a2 2 0 1 0-4 0 2 2 0 0 0 4 0ZM17.25 4.5a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0 0 1.5h5.5ZM5 3.75a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1 0-1.5h1.5a.75.75 0 0 1 .75.75ZM4.25 17a.75.75 0 0 0 0-1.5h-1.5a.75.75 0 0 0 0 1.5h1.5ZM17.25 17a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0 0 1.5h5.5ZM9 10a.75.75 0 0 1-.75.75h-5.5a.75.75 0 0 1 0-1.5h5.5A.75.75 0 0 1 9 10ZM17.25 10.75a.75.75 0 0 0 0-1.5h-1.5a.75.75 0 0 0 0 1.5h1.5ZM14 10a2 2 0 1 0-4 0 2 2 0 0 0 4 0ZM10 16.25a2 2 0 1 0-4 0 2 2 0 0 0 4 0Z"})])}function rL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M17 2.75a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0v-5.5ZM17 15.75a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0v-1.5ZM3.75 15a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5a.75.75 0 0 1 .75-.75ZM4.5 2.75a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0v-5.5ZM10 11a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0v-5.5A.75.75 0 0 1 10 11ZM10.75 2.75a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0v-1.5ZM10 6a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM3.75 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM16.25 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z"})])}function oL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 3a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H2Zm0 4.5h16l-.811 7.71a2 2 0 0 1-1.99 1.79H4.802a2 2 0 0 1-1.99-1.79L2 7.5ZM10 9a.75.75 0 0 1 .75.75v2.546l.943-1.048a.75.75 0 1 1 1.114 1.004l-2.25 2.5a.75.75 0 0 1-1.114 0l-2.25-2.5a.75.75 0 1 1 1.114-1.004l.943 1.048V9.75A.75.75 0 0 1 10 9Z","clip-rule":"evenodd"})])}function aL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2 3a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H2Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 7.5h16l-.811 7.71a2 2 0 0 1-1.99 1.79H4.802a2 2 0 0 1-1.99-1.79L2 7.5Zm5.22 1.72a.75.75 0 0 1 1.06 0L10 10.94l1.72-1.72a.75.75 0 1 1 1.06 1.06L11.06 12l1.72 1.72a.75.75 0 1 1-1.06 1.06L10 13.06l-1.72 1.72a.75.75 0 0 1-1.06-1.06L8.94 12l-1.72-1.72a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function lL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2 3a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H2Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 7.5h16l-.811 7.71a2 2 0 0 1-1.99 1.79H4.802a2 2 0 0 1-1.99-1.79L2 7.5ZM7 11a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1Z","clip-rule":"evenodd"})])}function iL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm.75-11.25a.75.75 0 0 0-1.5 0v4.59L7.3 9.24a.75.75 0 0 0-1.1 1.02l3.25 3.5a.75.75 0 0 0 1.1 0l3.25-3.5a.75.75 0 1 0-1.1-1.02l-1.95 2.1V6.75Z","clip-rule":"evenodd"})])}function cL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M14.78 5.22a.75.75 0 0 0-1.06 0L6.5 12.44V6.75a.75.75 0 0 0-1.5 0v7.5c0 .414.336.75.75.75h7.5a.75.75 0 0 0 0-1.5H7.56l7.22-7.22a.75.75 0 0 0 0-1.06Z","clip-rule":"evenodd"})])}function sL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 1a.75.75 0 0 1 .75.75V6h-1.5V1.75A.75.75 0 0 1 8 1Zm-.75 5v3.296l-.943-1.048a.75.75 0 1 0-1.114 1.004l2.25 2.5a.75.75 0 0 0 1.114 0l2.25-2.5a.75.75 0 0 0-1.114-1.004L8.75 9.296V6h2A2.25 2.25 0 0 1 13 8.25v4.5A2.25 2.25 0 0 1 10.75 15h-5.5A2.25 2.25 0 0 1 3 12.75v-4.5A2.25 2.25 0 0 1 5.25 6h2ZM7 16.75v-.25h3.75a3.75 3.75 0 0 0 3.75-3.75V10h.25A2.25 2.25 0 0 1 17 12.25v4.5A2.25 2.25 0 0 1 14.75 19h-5.5A2.25 2.25 0 0 1 7 16.75Z","clip-rule":"evenodd"})])}function dL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M13.75 7h-3v5.296l1.943-2.048a.75.75 0 0 1 1.114 1.004l-3.25 3.5a.75.75 0 0 1-1.114 0l-3.25-3.5a.75.75 0 1 1 1.114-1.004l1.943 2.048V7h1.5V1.75a.75.75 0 0 0-1.5 0V7h-3A2.25 2.25 0 0 0 4 9.25v7.5A2.25 2.25 0 0 0 6.25 19h7.5A2.25 2.25 0 0 0 16 16.75v-7.5A2.25 2.25 0 0 0 13.75 7Z"})])}function uL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6.28 5.22a.75.75 0 0 0-1.06 1.06l7.22 7.22H6.75a.75.75 0 0 0 0 1.5h7.5a.747.747 0 0 0 .75-.75v-7.5a.75.75 0 0 0-1.5 0v5.69L6.28 5.22Z"})])}function hL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10.75 2.75a.75.75 0 0 0-1.5 0v8.614L6.295 8.235a.75.75 0 1 0-1.09 1.03l4.25 4.5a.75.75 0 0 0 1.09 0l4.25-4.5a.75.75 0 0 0-1.09-1.03l-2.955 3.129V2.75Z"}),e.createElementVNode("path",{d:"M3.5 12.75a.75.75 0 0 0-1.5 0v2.5A2.75 2.75 0 0 0 4.75 18h10.5A2.75 2.75 0 0 0 18 15.25v-2.5a.75.75 0 0 0-1.5 0v2.5c0 .69-.56 1.25-1.25 1.25H4.75c-.69 0-1.25-.56-1.25-1.25v-2.5Z"})])}function pL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 3a.75.75 0 0 1 .75.75v10.638l3.96-4.158a.75.75 0 1 1 1.08 1.04l-5.25 5.5a.75.75 0 0 1-1.08 0l-5.25-5.5a.75.75 0 1 1 1.08-1.04l3.96 4.158V3.75A.75.75 0 0 1 10 3Z","clip-rule":"evenodd"})])}function fL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm3.25-7.25a.75.75 0 0 0 0-1.5H8.66l2.1-1.95a.75.75 0 1 0-1.02-1.1l-3.5 3.25a.75.75 0 0 0 0 1.1l3.5 3.25a.75.75 0 0 0 1.02-1.1l-2.1-1.95h4.59Z","clip-rule":"evenodd"})])}function mL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 4.25A2.25 2.25 0 0 1 5.25 2h5.5A2.25 2.25 0 0 1 13 4.25v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 0-.75-.75h-5.5a.75.75 0 0 0-.75.75v11.5c0 .414.336.75.75.75h5.5a.75.75 0 0 0 .75-.75v-2a.75.75 0 0 1 1.5 0v2A2.25 2.25 0 0 1 10.75 18h-5.5A2.25 2.25 0 0 1 3 15.75V4.25Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M19 10a.75.75 0 0 0-.75-.75H8.704l1.048-.943a.75.75 0 1 0-1.004-1.114l-2.5 2.25a.75.75 0 0 0 0 1.114l2.5 2.25a.75.75 0 1 0 1.004-1.114l-1.048-.943h9.546A.75.75 0 0 0 19 10Z","clip-rule":"evenodd"})])}function wL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 4.25A2.25 2.25 0 0 1 5.25 2h5.5A2.25 2.25 0 0 1 13 4.25v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 0-.75-.75h-5.5a.75.75 0 0 0-.75.75v11.5c0 .414.336.75.75.75h5.5a.75.75 0 0 0 .75-.75v-2a.75.75 0 0 1 1.5 0v2A2.25 2.25 0 0 1 10.75 18h-5.5A2.25 2.25 0 0 1 3 15.75V4.25Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M19 10a.75.75 0 0 0-.75-.75H8.704l1.048-.943a.75.75 0 1 0-1.004-1.114l-2.5 2.25a.75.75 0 0 0 0 1.114l2.5 2.25a.75.75 0 1 0 1.004-1.114l-1.048-.943h9.546A.75.75 0 0 0 19 10Z","clip-rule":"evenodd"})])}function gL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M17 4.25A2.25 2.25 0 0 0 14.75 2h-5.5A2.25 2.25 0 0 0 7 4.25v2a.75.75 0 0 0 1.5 0v-2a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 .75.75v11.5a.75.75 0 0 1-.75.75h-5.5a.75.75 0 0 1-.75-.75v-2a.75.75 0 0 0-1.5 0v2A2.25 2.25 0 0 0 9.25 18h5.5A2.25 2.25 0 0 0 17 15.75V4.25Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M14 10a.75.75 0 0 0-.75-.75H3.704l1.048-.943a.75.75 0 1 0-1.004-1.114l-2.5 2.25a.75.75 0 0 0 0 1.114l2.5 2.25a.75.75 0 1 0 1.004-1.114l-1.048-.943h9.546A.75.75 0 0 0 14 10Z","clip-rule":"evenodd"})])}function kL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M17 10a.75.75 0 0 1-.75.75H5.612l4.158 3.96a.75.75 0 1 1-1.04 1.08l-5.5-5.25a.75.75 0 0 1 0-1.08l5.5-5.25a.75.75 0 1 1 1.04 1.08L5.612 9.25H16.25A.75.75 0 0 1 17 10Z","clip-rule":"evenodd"})])}function xL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 2a.75.75 0 0 1 .75.75v12.59l1.95-2.1a.75.75 0 1 1 1.1 1.02l-3.25 3.5a.75.75 0 0 1-1.1 0l-3.25-3.5a.75.75 0 1 1 1.1-1.02l1.95 2.1V2.75A.75.75 0 0 1 10 2Z","clip-rule":"evenodd"})])}function vL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M18 10a.75.75 0 0 1-.75.75H4.66l2.1 1.95a.75.75 0 1 1-1.02 1.1l-3.5-3.25a.75.75 0 0 1 0-1.1l3.5-3.25a.75.75 0 1 1 1.02 1.1l-2.1 1.95h12.59A.75.75 0 0 1 18 10Z","clip-rule":"evenodd"})])}function yL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 10a.75.75 0 0 1 .75-.75h12.59l-2.1-1.95a.75.75 0 1 1 1.02-1.1l3.5 3.25a.75.75 0 0 1 0 1.1l-3.5 3.25a.75.75 0 1 1-1.02-1.1l2.1-1.95H2.75A.75.75 0 0 1 2 10Z","clip-rule":"evenodd"})])}function BL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 18a.75.75 0 0 1-.75-.75V4.66L7.3 6.76a.75.75 0 0 1-1.1-1.02l3.25-3.5a.75.75 0 0 1 1.1 0l3.25 3.5a.75.75 0 1 1-1.1 1.02l-1.95-2.1v12.59A.75.75 0 0 1 10 18Z","clip-rule":"evenodd"})])}function EL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 4.5c1.215 0 2.417.055 3.604.162a.68.68 0 0 1 .615.597c.124 1.038.208 2.088.25 3.15l-1.689-1.69a.75.75 0 0 0-1.06 1.061l2.999 3a.75.75 0 0 0 1.06 0l3.001-3a.75.75 0 1 0-1.06-1.06l-1.748 1.747a41.31 41.31 0 0 0-.264-3.386 2.18 2.18 0 0 0-1.97-1.913 41.512 41.512 0 0 0-7.477 0 2.18 2.18 0 0 0-1.969 1.913 41.16 41.16 0 0 0-.16 1.61.75.75 0 1 0 1.495.12c.041-.52.093-1.038.154-1.552a.68.68 0 0 1 .615-.597A40.012 40.012 0 0 1 10 4.5ZM5.281 9.22a.75.75 0 0 0-1.06 0l-3.001 3a.75.75 0 1 0 1.06 1.06l1.748-1.747c.042 1.141.13 2.27.264 3.386a2.18 2.18 0 0 0 1.97 1.913 41.533 41.533 0 0 0 7.477 0 2.18 2.18 0 0 0 1.969-1.913c.064-.534.117-1.071.16-1.61a.75.75 0 1 0-1.495-.12c-.041.52-.093 1.037-.154 1.552a.68.68 0 0 1-.615.597 40.013 40.013 0 0 1-7.208 0 .68.68 0 0 1-.615-.597 39.785 39.785 0 0 1-.25-3.15l1.689 1.69a.75.75 0 0 0 1.06-1.061l-2.999-3Z","clip-rule":"evenodd"})])}function bL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15.312 11.424a5.5 5.5 0 0 1-9.201 2.466l-.312-.311h2.433a.75.75 0 0 0 0-1.5H3.989a.75.75 0 0 0-.75.75v4.242a.75.75 0 0 0 1.5 0v-2.43l.31.31a7 7 0 0 0 11.712-3.138.75.75 0 0 0-1.449-.39Zm1.23-3.723a.75.75 0 0 0 .219-.53V2.929a.75.75 0 0 0-1.5 0V5.36l-.31-.31A7 7 0 0 0 3.239 8.188a.75.75 0 1 0 1.448.389A5.5 5.5 0 0 1 13.89 6.11l.311.31h-2.432a.75.75 0 0 0 0 1.5h4.243a.75.75 0 0 0 .53-.219Z","clip-rule":"evenodd"})])}function CL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM6.75 9.25a.75.75 0 0 0 0 1.5h4.59l-2.1 1.95a.75.75 0 0 0 1.02 1.1l3.5-3.25a.75.75 0 0 0 0-1.1l-3.5-3.25a.75.75 0 1 0-1.02 1.1l2.1 1.95H6.75Z","clip-rule":"evenodd"})])}function ML(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M17 4.25A2.25 2.25 0 0 0 14.75 2h-5.5A2.25 2.25 0 0 0 7 4.25v2a.75.75 0 0 0 1.5 0v-2a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 .75.75v11.5a.75.75 0 0 1-.75.75h-5.5a.75.75 0 0 1-.75-.75v-2a.75.75 0 0 0-1.5 0v2A2.25 2.25 0 0 0 9.25 18h5.5A2.25 2.25 0 0 0 17 15.75V4.25Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 10a.75.75 0 0 1 .75-.75h9.546l-1.048-.943a.75.75 0 1 1 1.004-1.114l2.5 2.25a.75.75 0 0 1 0 1.114l-2.5 2.25a.75.75 0 1 1-1.004-1.114l1.048-.943H1.75A.75.75 0 0 1 1 10Z","clip-rule":"evenodd"})])}function VL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 4.25A2.25 2.25 0 0 1 5.25 2h5.5A2.25 2.25 0 0 1 13 4.25v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 0-.75-.75h-5.5a.75.75 0 0 0-.75.75v11.5c0 .414.336.75.75.75h5.5a.75.75 0 0 0 .75-.75v-2a.75.75 0 0 1 1.5 0v2A2.25 2.25 0 0 1 10.75 18h-5.5A2.25 2.25 0 0 1 3 15.75V4.25Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6 10a.75.75 0 0 1 .75-.75h9.546l-1.048-.943a.75.75 0 1 1 1.004-1.114l2.5 2.25a.75.75 0 0 1 0 1.114l-2.5 2.25a.75.75 0 1 1-1.004-1.114l1.048-.943H6.75A.75.75 0 0 1 6 10Z","clip-rule":"evenodd"})])}function AL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 4.25A2.25 2.25 0 0 1 5.25 2h5.5A2.25 2.25 0 0 1 13 4.25v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 0-.75-.75h-5.5a.75.75 0 0 0-.75.75v11.5c0 .414.336.75.75.75h5.5a.75.75 0 0 0 .75-.75v-2a.75.75 0 0 1 1.5 0v2A2.25 2.25 0 0 1 10.75 18h-5.5A2.25 2.25 0 0 1 3 15.75V4.25Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6 10a.75.75 0 0 1 .75-.75h9.546l-1.048-.943a.75.75 0 1 1 1.004-1.114l2.5 2.25a.75.75 0 0 1 0 1.114l-2.5 2.25a.75.75 0 1 1-1.004-1.114l1.048-.943H6.75A.75.75 0 0 1 6 10Z","clip-rule":"evenodd"})])}function _L(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 10a.75.75 0 0 1 .75-.75h10.638L10.23 5.29a.75.75 0 1 1 1.04-1.08l5.5 5.25a.75.75 0 0 1 0 1.08l-5.5 5.25a.75.75 0 1 1-1.04-1.08l4.158-3.96H3.75A.75.75 0 0 1 3 10Z","clip-rule":"evenodd"})])}function NL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 5a.75.75 0 0 1 .75.75v6.638l1.96-2.158a.75.75 0 1 1 1.08 1.04l-3.25 3.5a.75.75 0 0 1-1.08 0l-3.25-3.5a.75.75 0 1 1 1.08-1.04l1.96 2.158V5.75A.75.75 0 0 1 10 5Z","clip-rule":"evenodd"})])}function ZL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 10a.75.75 0 0 1-.75.75H7.612l2.158 1.96a.75.75 0 1 1-1.04 1.08l-3.5-3.25a.75.75 0 0 1 0-1.08l3.5-3.25a.75.75 0 1 1 1.04 1.08L7.612 9.25h6.638A.75.75 0 0 1 15 10Z","clip-rule":"evenodd"})])}function SL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5 10a.75.75 0 0 1 .75-.75h6.638L10.23 7.29a.75.75 0 1 1 1.04-1.08l3.5 3.25a.75.75 0 0 1 0 1.08l-3.5 3.25a.75.75 0 1 1-1.04-1.08l2.158-1.96H5.75A.75.75 0 0 1 5 10Z","clip-rule":"evenodd"})])}function $L(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 15a.75.75 0 0 1-.75-.75V7.612L7.29 9.77a.75.75 0 0 1-1.08-1.04l3.25-3.5a.75.75 0 0 1 1.08 0l3.25 3.5a.75.75 0 1 1-1.08 1.04l-1.96-2.158v6.638A.75.75 0 0 1 10 15Z","clip-rule":"evenodd"})])}function IL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.25 5.5a.75.75 0 0 0-.75.75v8.5c0 .414.336.75.75.75h8.5a.75.75 0 0 0 .75-.75v-4a.75.75 0 0 1 1.5 0v4A2.25 2.25 0 0 1 12.75 17h-8.5A2.25 2.25 0 0 1 2 14.75v-8.5A2.25 2.25 0 0 1 4.25 4h5a.75.75 0 0 1 0 1.5h-5Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.194 12.753a.75.75 0 0 0 1.06.053L16.5 4.44v2.81a.75.75 0 0 0 1.5 0v-4.5a.75.75 0 0 0-.75-.75h-4.5a.75.75 0 0 0 0 1.5h2.553l-9.056 8.194a.75.75 0 0 0-.053 1.06Z","clip-rule":"evenodd"})])}function HL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.22 5.222a.75.75 0 0 1 1.06 0L7 9.942l3.768-3.769a.75.75 0 0 1 1.113.058 20.908 20.908 0 0 1 3.813 7.254l1.574-2.727a.75.75 0 0 1 1.3.75l-2.475 4.286a.75.75 0 0 1-1.025.275l-4.287-2.475a.75.75 0 0 1 .75-1.3l2.71 1.565a19.422 19.422 0 0 0-3.013-6.024L7.53 11.533a.75.75 0 0 1-1.06 0l-5.25-5.25a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function TL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12.577 4.878a.75.75 0 0 1 .919-.53l4.78 1.281a.75.75 0 0 1 .531.919l-1.281 4.78a.75.75 0 0 1-1.449-.387l.81-3.022a19.407 19.407 0 0 0-5.594 5.203.75.75 0 0 1-1.139.093L7 10.06l-4.72 4.72a.75.75 0 0 1-1.06-1.061l5.25-5.25a.75.75 0 0 1 1.06 0l3.074 3.073a20.923 20.923 0 0 1 5.545-4.931l-3.042-.815a.75.75 0 0 1-.53-.919Z","clip-rule":"evenodd"})])}function LL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M16.25 3a.75.75 0 0 0-.75.75v7.5H4.56l1.97-1.97a.75.75 0 0 0-1.06-1.06l-3.25 3.25a.75.75 0 0 0 0 1.06l3.25 3.25a.75.75 0 0 0 1.06-1.06l-1.97-1.97h11.69A.75.75 0 0 0 17 12V3.75a.75.75 0 0 0-.75-.75Z","clip-rule":"evenodd"})])}function DL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.75 3a.75.75 0 0 1 .75.75v7.5h10.94l-1.97-1.97a.75.75 0 0 1 1.06-1.06l3.25 3.25a.75.75 0 0 1 0 1.06l-3.25 3.25a.75.75 0 1 1-1.06-1.06l1.97-1.97H3.75A.75.75 0 0 1 3 12V3.75A.75.75 0 0 1 3.75 3Z","clip-rule":"evenodd"})])}function PL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M16 3.75a.75.75 0 0 1-.75.75h-7.5v10.94l1.97-1.97a.75.75 0 1 1 1.06 1.06l-3.25 3.25a.75.75 0 0 1-1.06 0l-3.25-3.25a.75.75 0 1 1 1.06-1.06l1.97 1.97V3.75A.75.75 0 0 1 7 3h8.25a.75.75 0 0 1 .75.75Z","clip-rule":"evenodd"})])}function OL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M16 16.25a.75.75 0 0 0-.75-.75h-7.5V4.56l1.97 1.97a.75.75 0 1 0 1.06-1.06L7.53 2.22a.75.75 0 0 0-1.06 0L3.22 5.47a.75.75 0 0 0 1.06 1.06l1.97-1.97v11.69c0 .414.336.75.75.75h8.25a.75.75 0 0 0 .75-.75Z","clip-rule":"evenodd"})])}function RL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 3.75c0 .414.336.75.75.75h7.5v10.94l-1.97-1.97a.75.75 0 0 0-1.06 1.06l3.25 3.25a.75.75 0 0 0 1.06 0l3.25-3.25a.75.75 0 1 0-1.06-1.06l-1.97 1.97V3.75A.75.75 0 0 0 12 3H3.75a.75.75 0 0 0-.75.75Z","clip-rule":"evenodd"})])}function zL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 16.25a.75.75 0 0 1 .75-.75h7.5V4.56L9.28 6.53a.75.75 0 0 1-1.06-1.06l3.25-3.25a.75.75 0 0 1 1.06 0l3.25 3.25a.75.75 0 0 1-1.06 1.06l-1.97-1.97v11.69A.75.75 0 0 1 12 17H3.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function jL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M16.25 17a.75.75 0 0 1-.75-.75v-7.5H4.56l1.97 1.97a.75.75 0 1 1-1.06 1.06L2.22 8.53a.75.75 0 0 1 0-1.06l3.25-3.25a.75.75 0 0 1 1.06 1.06L4.56 7.25h11.69A.75.75 0 0 1 17 8v8.25a.75.75 0 0 1-.75.75Z","clip-rule":"evenodd"})])}function FL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.75 17a.75.75 0 0 0 .75-.75v-7.5h10.94l-1.97 1.97a.75.75 0 1 0 1.06 1.06l3.25-3.25a.75.75 0 0 0 0-1.06l-3.25-3.25a.75.75 0 1 0-1.06 1.06l1.97 1.97H3.75A.75.75 0 0 0 3 8v8.25c0 .414.336.75.75.75Z","clip-rule":"evenodd"})])}function UL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm-.75-4.75a.75.75 0 0 0 1.5 0V8.66l1.95 2.1a.75.75 0 1 0 1.1-1.02l-3.25-3.5a.75.75 0 0 0-1.1 0L6.2 9.74a.75.75 0 1 0 1.1 1.02l1.95-2.1v4.59Z","clip-rule":"evenodd"})])}function WL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M14.78 14.78a.75.75 0 0 1-1.06 0L6.5 7.56v5.69a.75.75 0 0 1-1.5 0v-7.5A.75.75 0 0 1 5.75 5h7.5a.75.75 0 0 1 0 1.5H7.56l7.22 7.22a.75.75 0 0 1 0 1.06Z","clip-rule":"evenodd"})])}function qL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.75 6h-2v4.25a.75.75 0 0 1-1.5 0V6h1.5V3.704l.943 1.048a.75.75 0 0 0 1.114-1.004l-2.25-2.5a.75.75 0 0 0-1.114 0l-2.25 2.5a.75.75 0 0 0 1.114 1.004l.943-1.048V6h-2A2.25 2.25 0 0 0 3 8.25v4.5A2.25 2.25 0 0 0 5.25 15h5.5A2.25 2.25 0 0 0 13 12.75v-4.5A2.25 2.25 0 0 0 10.75 6ZM7 16.75v-.25h3.75a3.75 3.75 0 0 0 3.75-3.75V10h.25A2.25 2.25 0 0 1 17 12.25v4.5A2.25 2.25 0 0 1 14.75 19h-5.5A2.25 2.25 0 0 1 7 16.75Z","clip-rule":"evenodd"})])}function YL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M13.75 7h-3V3.66l1.95 2.1a.75.75 0 1 0 1.1-1.02l-3.25-3.5a.75.75 0 0 0-1.1 0L6.2 4.74a.75.75 0 0 0 1.1 1.02l1.95-2.1V7h-3A2.25 2.25 0 0 0 4 9.25v7.5A2.25 2.25 0 0 0 6.25 19h7.5A2.25 2.25 0 0 0 16 16.75v-7.5A2.25 2.25 0 0 0 13.75 7Zm-3 0h-1.5v5.25a.75.75 0 0 0 1.5 0V7Z","clip-rule":"evenodd"})])}function KL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.22 14.78a.75.75 0 0 0 1.06 0l7.22-7.22v5.69a.75.75 0 0 0 1.5 0v-7.5a.75.75 0 0 0-.75-.75h-7.5a.75.75 0 0 0 0 1.5h5.69l-7.22 7.22a.75.75 0 0 0 0 1.06Z","clip-rule":"evenodd"})])}function GL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M9.25 13.25a.75.75 0 0 0 1.5 0V4.636l2.955 3.129a.75.75 0 0 0 1.09-1.03l-4.25-4.5a.75.75 0 0 0-1.09 0l-4.25 4.5a.75.75 0 1 0 1.09 1.03L9.25 4.636v8.614Z"}),e.createElementVNode("path",{d:"M3.5 12.75a.75.75 0 0 0-1.5 0v2.5A2.75 2.75 0 0 0 4.75 18h10.5A2.75 2.75 0 0 0 18 15.25v-2.5a.75.75 0 0 0-1.5 0v2.5c0 .69-.56 1.25-1.25 1.25H4.75c-.69 0-1.25-.56-1.25-1.25v-2.5Z"})])}function JL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 17a.75.75 0 0 1-.75-.75V5.612L5.29 9.77a.75.75 0 0 1-1.08-1.04l5.25-5.5a.75.75 0 0 1 1.08 0l5.25 5.5a.75.75 0 1 1-1.08 1.04l-3.96-4.158V16.25A.75.75 0 0 1 10 17Z","clip-rule":"evenodd"})])}function XL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.232 12.207a.75.75 0 0 1 1.06.025l3.958 4.146V6.375a5.375 5.375 0 0 1 10.75 0V9.25a.75.75 0 0 1-1.5 0V6.375a3.875 3.875 0 0 0-7.75 0v10.003l3.957-4.146a.75.75 0 0 1 1.085 1.036l-5.25 5.5a.75.75 0 0 1-1.085 0l-5.25-5.5a.75.75 0 0 1 .025-1.06Z","clip-rule":"evenodd"})])}function QL(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.793 2.232a.75.75 0 0 1-.025 1.06L3.622 7.25h10.003a5.375 5.375 0 0 1 0 10.75H10.75a.75.75 0 0 1 0-1.5h2.875a3.875 3.875 0 0 0 0-7.75H3.622l4.146 3.957a.75.75 0 0 1-1.036 1.085l-5.5-5.25a.75.75 0 0 1 0-1.085l5.5-5.25a.75.75 0 0 1 1.06.025Z","clip-rule":"evenodd"})])}function eD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12.207 2.232a.75.75 0 0 0 .025 1.06l4.146 3.958H6.375a5.375 5.375 0 0 0 0 10.75H9.25a.75.75 0 0 0 0-1.5H6.375a3.875 3.875 0 0 1 0-7.75h10.003l-4.146 3.957a.75.75 0 0 0 1.036 1.085l5.5-5.25a.75.75 0 0 0 0-1.085l-5.5-5.25a.75.75 0 0 0-1.06.025Z","clip-rule":"evenodd"})])}function tD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M17.768 7.793a.75.75 0 0 1-1.06-.025L12.75 3.622v10.003a5.375 5.375 0 0 1-10.75 0V10.75a.75.75 0 0 1 1.5 0v2.875a3.875 3.875 0 0 0 7.75 0V3.622L7.293 7.768a.75.75 0 0 1-1.086-1.036l5.25-5.5a.75.75 0 0 1 1.085 0l5.25 5.5a.75.75 0 0 1-.024 1.06Z","clip-rule":"evenodd"})])}function nD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.28 2.22a.75.75 0 0 0-1.06 1.06L5.44 6.5H2.75a.75.75 0 0 0 0 1.5h4.5A.75.75 0 0 0 8 7.25v-4.5a.75.75 0 0 0-1.5 0v2.69L3.28 2.22ZM13.5 2.75a.75.75 0 0 0-1.5 0v4.5c0 .414.336.75.75.75h4.5a.75.75 0 0 0 0-1.5h-2.69l3.22-3.22a.75.75 0 0 0-1.06-1.06L13.5 5.44V2.75ZM3.28 17.78l3.22-3.22v2.69a.75.75 0 0 0 1.5 0v-4.5a.75.75 0 0 0-.75-.75h-4.5a.75.75 0 0 0 0 1.5h2.69l-3.22 3.22a.75.75 0 1 0 1.06 1.06ZM13.5 14.56l3.22 3.22a.75.75 0 1 0 1.06-1.06l-3.22-3.22h2.69a.75.75 0 0 0 0-1.5h-4.5a.75.75 0 0 0-.75.75v4.5a.75.75 0 0 0 1.5 0v-2.69Z"})])}function rD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"m13.28 7.78 3.22-3.22v2.69a.75.75 0 0 0 1.5 0v-4.5a.75.75 0 0 0-.75-.75h-4.5a.75.75 0 0 0 0 1.5h2.69l-3.22 3.22a.75.75 0 0 0 1.06 1.06ZM2 17.25v-4.5a.75.75 0 0 1 1.5 0v2.69l3.22-3.22a.75.75 0 0 1 1.06 1.06L4.56 16.5h2.69a.75.75 0 0 1 0 1.5h-4.5a.747.747 0 0 1-.75-.75ZM12.22 13.28l3.22 3.22h-2.69a.75.75 0 0 0 0 1.5h4.5a.747.747 0 0 0 .75-.75v-4.5a.75.75 0 0 0-1.5 0v2.69l-3.22-3.22a.75.75 0 1 0-1.06 1.06ZM3.5 4.56l3.22 3.22a.75.75 0 0 0 1.06-1.06L4.56 3.5h2.69a.75.75 0 0 0 0-1.5h-4.5a.75.75 0 0 0-.75.75v4.5a.75.75 0 0 0 1.5 0V4.56Z"})])}function oD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M13.2 2.24a.75.75 0 0 0 .04 1.06l2.1 1.95H6.75a.75.75 0 0 0 0 1.5h8.59l-2.1 1.95a.75.75 0 1 0 1.02 1.1l3.5-3.25a.75.75 0 0 0 0-1.1l-3.5-3.25a.75.75 0 0 0-1.06.04Zm-6.4 8a.75.75 0 0 0-1.06-.04l-3.5 3.25a.75.75 0 0 0 0 1.1l3.5 3.25a.75.75 0 1 0 1.02-1.1l-2.1-1.95h8.59a.75.75 0 0 0 0-1.5H4.66l2.1-1.95a.75.75 0 0 0 .04-1.06Z","clip-rule":"evenodd"})])}function aD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.24 6.8a.75.75 0 0 0 1.06-.04l1.95-2.1v8.59a.75.75 0 0 0 1.5 0V4.66l1.95 2.1a.75.75 0 1 0 1.1-1.02l-3.25-3.5a.75.75 0 0 0-1.1 0L2.2 5.74a.75.75 0 0 0 .04 1.06Zm8 6.4a.75.75 0 0 0-.04 1.06l3.25 3.5a.75.75 0 0 0 1.1 0l3.25-3.5a.75.75 0 1 0-1.1-1.02l-1.95 2.1V6.75a.75.75 0 0 0-1.5 0v8.59l-1.95-2.1a.75.75 0 0 0-1.06-.04Z","clip-rule":"evenodd"})])}function lD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.404 14.596A6.5 6.5 0 1 1 16.5 10a1.25 1.25 0 0 1-2.5 0 4 4 0 1 0-.571 2.06A2.75 2.75 0 0 0 18 10a8 8 0 1 0-2.343 5.657.75.75 0 0 0-1.06-1.06 6.5 6.5 0 0 1-9.193 0ZM10 7.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Z","clip-rule":"evenodd"})])}function iD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.22 3.22A.75.75 0 0 1 7.75 3h9A2.25 2.25 0 0 1 19 5.25v9.5A2.25 2.25 0 0 1 16.75 17h-9a.75.75 0 0 1-.53-.22L.97 10.53a.75.75 0 0 1 0-1.06l6.25-6.25Zm3.06 4a.75.75 0 1 0-1.06 1.06L10.94 10l-1.72 1.72a.75.75 0 1 0 1.06 1.06L12 11.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L13.06 10l1.72-1.72a.75.75 0 0 0-1.06-1.06L12 8.94l-1.72-1.72Z","clip-rule":"evenodd"})])}function cD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7.712 4.818A1.5 1.5 0 0 1 10 6.095v2.972c.104-.13.234-.248.389-.343l6.323-3.906A1.5 1.5 0 0 1 19 6.095v7.81a1.5 1.5 0 0 1-2.288 1.276l-6.323-3.905a1.505 1.505 0 0 1-.389-.344v2.973a1.5 1.5 0 0 1-2.288 1.276l-6.323-3.905a1.5 1.5 0 0 1 0-2.552l6.323-3.906Z"})])}function sD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 4a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4Zm12 4a3 3 0 1 1-6 0 3 3 0 0 1 6 0ZM4 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm13-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM1.75 14.5a.75.75 0 0 0 0 1.5c4.417 0 8.693.603 12.749 1.73 1.111.309 2.251-.512 2.251-1.696v-.784a.75.75 0 0 0-1.5 0v.784a.272.272 0 0 1-.35.25A49.043 49.043 0 0 0 1.75 14.5Z","clip-rule":"evenodd"})])}function dD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 6.75A.75.75 0 0 1 2.75 6h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 6.75Zm0 6.5a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function uD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 4.75A.75.75 0 0 1 2.75 4h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 4.75Zm0 10.5a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1-.75-.75ZM2 10a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 10Z","clip-rule":"evenodd"})])}function hD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 4.75A.75.75 0 0 1 2.75 4h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 4.75Zm7 10.5a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1-.75-.75ZM2 10a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 10Z","clip-rule":"evenodd"})])}function pD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 4.75A.75.75 0 0 1 2.75 4h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 4.75Zm0 10.5a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75ZM2 10a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 2 10Z","clip-rule":"evenodd"})])}function fD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 4.75A.75.75 0 0 1 2.75 4h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 4.75ZM2 10a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 10Zm0 5.25a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function mD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 3.75A.75.75 0 0 1 2.75 3h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 3.75Zm0 4.167a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Zm0 4.166a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Zm0 4.167a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function wD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 3.75A.75.75 0 0 1 2.75 3h11.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 3.75ZM2 7.5a.75.75 0 0 1 .75-.75h7.508a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 7.5ZM14 7a.75.75 0 0 1 .75.75v6.59l1.95-2.1a.75.75 0 1 1 1.1 1.02l-3.25 3.5a.75.75 0 0 1-1.1 0l-3.25-3.5a.75.75 0 1 1 1.1-1.02l1.95 2.1V7.75A.75.75 0 0 1 14 7ZM2 11.25a.75.75 0 0 1 .75-.75h4.562a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function gD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 3.75A.75.75 0 0 1 2.75 3h11.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 3.75ZM2 7.5a.75.75 0 0 1 .75-.75h6.365a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 7.5ZM14 7a.75.75 0 0 1 .55.24l3.25 3.5a.75.75 0 1 1-1.1 1.02l-1.95-2.1v6.59a.75.75 0 0 1-1.5 0V9.66l-1.95 2.1a.75.75 0 1 1-1.1-1.02l3.25-3.5A.75.75 0 0 1 14 7ZM2 11.25a.75.75 0 0 1 .75-.75H7A.75.75 0 0 1 7 12H2.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function kD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 7.25A2.25 2.25 0 0 1 3.25 5h12.5A2.25 2.25 0 0 1 18 7.25v1.085a1.5 1.5 0 0 1 1 1.415v.5a1.5 1.5 0 0 1-1 1.415v1.085A2.25 2.25 0 0 1 15.75 15H3.25A2.25 2.25 0 0 1 1 12.75v-5.5Zm2.25-.75a.75.75 0 0 0-.75.75v5.5c0 .414.336.75.75.75h12.5a.75.75 0 0 0 .75-.75v-5.5a.75.75 0 0 0-.75-.75H3.25Z","clip-rule":"evenodd"})])}function xD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.75 8a.75.75 0 0 0-.75.75v2.5c0 .414.336.75.75.75h9.5a.75.75 0 0 0 .75-.75v-2.5a.75.75 0 0 0-.75-.75h-9.5Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 7.25A2.25 2.25 0 0 1 3.25 5h12.5A2.25 2.25 0 0 1 18 7.25v1.085a1.5 1.5 0 0 1 1 1.415v.5a1.5 1.5 0 0 1-1 1.415v1.085A2.25 2.25 0 0 1 15.75 15H3.25A2.25 2.25 0 0 1 1 12.75v-5.5Zm2.25-.75a.75.75 0 0 0-.75.75v5.5c0 .414.336.75.75.75h12.5a.75.75 0 0 0 .75-.75v-5.5a.75.75 0 0 0-.75-.75H3.25Z","clip-rule":"evenodd"})])}function vD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.75 8a.75.75 0 0 0-.75.75v2.5c0 .414.336.75.75.75H9.5a.75.75 0 0 0 .75-.75v-2.5A.75.75 0 0 0 9.5 8H4.75Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.25 5A2.25 2.25 0 0 0 1 7.25v5.5A2.25 2.25 0 0 0 3.25 15h12.5A2.25 2.25 0 0 0 18 12.75v-1.085a1.5 1.5 0 0 0 1-1.415v-.5a1.5 1.5 0 0 0-1-1.415V7.25A2.25 2.25 0 0 0 15.75 5H3.25ZM2.5 7.25a.75.75 0 0 1 .75-.75h12.5a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-.75.75H3.25a.75.75 0 0 1-.75-.75v-5.5Z","clip-rule":"evenodd"})])}function yD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.5 3.528v4.644c0 .729-.29 1.428-.805 1.944l-1.217 1.216a8.75 8.75 0 0 1 3.55.621l.502.201a7.25 7.25 0 0 0 4.178.365l-2.403-2.403a2.75 2.75 0 0 1-.805-1.944V3.528a40.205 40.205 0 0 0-3 0Zm4.5.084.19.015a.75.75 0 1 0 .12-1.495 41.364 41.364 0 0 0-6.62 0 .75.75 0 0 0 .12 1.495L7 3.612v4.56c0 .331-.132.649-.366.883L2.6 13.09c-1.496 1.496-.817 4.15 1.403 4.475C5.961 17.852 7.963 18 10 18s4.039-.148 5.997-.436c2.22-.325 2.9-2.979 1.403-4.475l-4.034-4.034A1.25 1.25 0 0 1 13 8.172v-4.56Z","clip-rule":"evenodd"})])}function BD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.214 3.227a.75.75 0 0 0-1.156-.955 8.97 8.97 0 0 0-1.856 3.825.75.75 0 0 0 1.466.316 7.47 7.47 0 0 1 1.546-3.186ZM16.942 2.272a.75.75 0 0 0-1.157.955 7.47 7.47 0 0 1 1.547 3.186.75.75 0 0 0 1.466-.316 8.971 8.971 0 0 0-1.856-3.825Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 2a6 6 0 0 0-6 6c0 1.887-.454 3.665-1.257 5.234a.75.75 0 0 0 .515 1.076 32.91 32.91 0 0 0 3.256.508 3.5 3.5 0 0 0 6.972 0 32.903 32.903 0 0 0 3.256-.508.75.75 0 0 0 .515-1.076A11.448 11.448 0 0 1 16 8a6 6 0 0 0-6-6Zm0 14.5a2 2 0 0 1-1.95-1.557 33.54 33.54 0 0 0 3.9 0A2 2 0 0 1 10 16.5Z","clip-rule":"evenodd"})])}function ED(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4 8c0-.26.017-.517.049-.77l7.722 7.723a33.56 33.56 0 0 1-3.722-.01 2 2 0 0 0 3.862.15l1.134 1.134a3.5 3.5 0 0 1-6.53-1.409 32.91 32.91 0 0 1-3.257-.508.75.75 0 0 1-.515-1.076A11.448 11.448 0 0 0 4 8ZM17.266 13.9a.756.756 0 0 1-.068.116L6.389 3.207A6 6 0 0 1 16 8c.001 1.887.455 3.665 1.258 5.234a.75.75 0 0 1 .01.666ZM3.28 2.22a.75.75 0 0 0-1.06 1.06l14.5 14.5a.75.75 0 1 0 1.06-1.06L3.28 2.22Z"})])}function bD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 8a6 6 0 1 1 12 0c0 1.887.454 3.665 1.257 5.234a.75.75 0 0 1-.515 1.076 32.903 32.903 0 0 1-3.256.508 3.5 3.5 0 0 1-6.972 0 32.91 32.91 0 0 1-3.256-.508.75.75 0 0 1-.515-1.076A11.448 11.448 0 0 0 4 8Zm6 7c-.655 0-1.305-.02-1.95-.057a2 2 0 0 0 3.9 0c-.645.038-1.295.057-1.95.057ZM8.75 6a.75.75 0 0 0 0 1.5h1.043L8.14 9.814A.75.75 0 0 0 8.75 11h2.5a.75.75 0 0 0 0-1.5h-1.043l1.653-2.314A.75.75 0 0 0 11.25 6h-2.5Z","clip-rule":"evenodd"})])}function CD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 2a6 6 0 0 0-6 6c0 1.887-.454 3.665-1.257 5.234a.75.75 0 0 0 .515 1.076 32.91 32.91 0 0 0 3.256.508 3.5 3.5 0 0 0 6.972 0 32.903 32.903 0 0 0 3.256-.508.75.75 0 0 0 .515-1.076A11.448 11.448 0 0 1 16 8a6 6 0 0 0-6-6ZM8.05 14.943a33.54 33.54 0 0 0 3.9 0 2 2 0 0 1-3.9 0Z","clip-rule":"evenodd"})])}function MD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 3a1 1 0 0 1 1-1h6a4.5 4.5 0 0 1 3.274 7.587A4.75 4.75 0 0 1 11.25 18H5a1 1 0 0 1-1-1V3Zm2.5 5.5v-4H11a2 2 0 1 1 0 4H6.5Zm0 2.5v4.5h4.75a2.25 2.25 0 0 0 0-4.5H6.5Z","clip-rule":"evenodd"})])}function VD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.22 2.22a.75.75 0 0 1 1.06 0l14.5 14.5a.75.75 0 1 1-1.06 1.06L2.22 3.28a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M4.73 7.912 2.191 10.75A.75.75 0 0 0 2.75 12h6.068L4.73 7.912ZM9.233 12.415l-1.216 5.678a.75.75 0 0 0 1.292.657l2.956-3.303-3.032-3.032ZM15.27 12.088l2.539-2.838A.75.75 0 0 0 17.25 8h-6.068l4.088 4.088ZM10.767 7.585l1.216-5.678a.75.75 0 0 0-1.292-.657L7.735 4.553l3.032 3.032Z"})])}function AD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M11.983 1.907a.75.75 0 0 0-1.292-.657l-8.5 9.5A.75.75 0 0 0 2.75 12h6.572l-1.305 6.093a.75.75 0 0 0 1.292.657l8.5-9.5A.75.75 0 0 0 17.25 8h-6.572l1.305-6.093Z"})])}function _D(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10.75 16.82A7.462 7.462 0 0 1 15 15.5c.71 0 1.396.098 2.046.282A.75.75 0 0 0 18 15.06v-11a.75.75 0 0 0-.546-.721A9.006 9.006 0 0 0 15 3a8.963 8.963 0 0 0-4.25 1.065V16.82ZM9.25 4.065A8.963 8.963 0 0 0 5 3c-.85 0-1.673.118-2.454.339A.75.75 0 0 0 2 4.06v11a.75.75 0 0 0 .954.721A7.506 7.506 0 0 1 5 15.5c1.579 0 3.042.487 4.25 1.32V4.065Z"})])}function ND(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M17 4.517v9.301L5.433 2.252a41.44 41.44 0 0 1 9.637.058C16.194 2.45 17 3.414 17 4.517ZM3 17.25V6.182l10.654 10.654L10 15.082l-5.925 2.844A.75.75 0 0 1 3 17.25ZM3.28 2.22a.75.75 0 0 0-1.06 1.06l14.5 14.5a.75.75 0 1 0 1.06-1.06L3.28 2.22Z"})])}function ZD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.25 2A2.25 2.25 0 0 0 2 4.25v11.5A2.25 2.25 0 0 0 4.25 18h11.5A2.25 2.25 0 0 0 18 15.75V4.25A2.25 2.25 0 0 0 15.75 2H4.25ZM6 13.25V3.5h8v9.75a.75.75 0 0 1-1.064.681L10 12.576l-2.936 1.355A.75.75 0 0 1 6 13.25Z","clip-rule":"evenodd"})])}function SD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 2c-1.716 0-3.408.106-5.07.31C3.806 2.45 3 3.414 3 4.517V17.25a.75.75 0 0 0 1.075.676L10 15.082l5.925 2.844A.75.75 0 0 0 17 17.25V4.517c0-1.103-.806-2.068-1.93-2.207A41.403 41.403 0 0 0 10 2Z","clip-rule":"evenodd"})])}function $D(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6 3.75A2.75 2.75 0 0 1 8.75 1h2.5A2.75 2.75 0 0 1 14 3.75v.443c.572.055 1.14.122 1.706.2C17.053 4.582 18 5.75 18 7.07v3.469c0 1.126-.694 2.191-1.83 2.54-1.952.599-4.024.921-6.17.921s-4.219-.322-6.17-.921C2.694 12.73 2 11.665 2 10.539V7.07c0-1.321.947-2.489 2.294-2.676A41.047 41.047 0 0 1 6 4.193V3.75Zm6.5 0v.325a41.622 41.622 0 0 0-5 0V3.75c0-.69.56-1.25 1.25-1.25h2.5c.69 0 1.25.56 1.25 1.25ZM10 10a1 1 0 0 0-1 1v.01a1 1 0 0 0 1 1h.01a1 1 0 0 0 1-1V11a1 1 0 0 0-1-1H10Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M3 15.055v-.684c.126.053.255.1.39.142 2.092.642 4.313.987 6.61.987 2.297 0 4.518-.345 6.61-.987.135-.041.264-.089.39-.142v.684c0 1.347-.985 2.53-2.363 2.686a41.454 41.454 0 0 1-9.274 0C3.985 17.585 3 16.402 3 15.055Z"})])}function ID(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.56 1.14a.75.75 0 0 1 .177 1.045 3.989 3.989 0 0 0-.464.86c.185.17.382.329.59.473A3.993 3.993 0 0 1 10 2c1.272 0 2.405.594 3.137 1.518.208-.144.405-.302.59-.473a3.989 3.989 0 0 0-.464-.86.75.75 0 0 1 1.222-.869c.369.519.65 1.105.822 1.736a.75.75 0 0 1-.174.707 7.03 7.03 0 0 1-1.299 1.098A4 4 0 0 1 14 6c0 .52-.301.963-.723 1.187a6.961 6.961 0 0 1-1.158.486c.13.208.231.436.296.679 1.413-.174 2.779-.5 4.081-.96a19.655 19.655 0 0 0-.09-2.319.75.75 0 1 1 1.493-.146 21.239 21.239 0 0 1 .08 3.028.75.75 0 0 1-.482.667 20.873 20.873 0 0 1-5.153 1.249 2.521 2.521 0 0 1-.107.247 20.945 20.945 0 0 1 5.252 1.257.75.75 0 0 1 .482.74 20.945 20.945 0 0 1-.908 5.107.75.75 0 0 1-1.433-.444c.415-1.34.69-2.743.806-4.191-.495-.173-1-.327-1.512-.46.05.284.076.575.076.873 0 1.814-.517 3.312-1.426 4.37A4.639 4.639 0 0 1 10 19a4.639 4.639 0 0 1-3.574-1.63C5.516 16.311 5 14.813 5 13c0-.298.026-.59.076-.873-.513.133-1.017.287-1.512.46.116 1.448.39 2.85.806 4.191a.75.75 0 1 1-1.433.444 20.94 20.94 0 0 1-.908-5.107.75.75 0 0 1 .482-.74 20.838 20.838 0 0 1 5.252-1.257 2.493 2.493 0 0 1-.107-.247 20.874 20.874 0 0 1-5.153-1.249.75.75 0 0 1-.482-.667 21.342 21.342 0 0 1 .08-3.028.75.75 0 1 1 1.493.146 19.745 19.745 0 0 0-.09 2.319c1.302.46 2.668.786 4.08.96.066-.243.166-.471.297-.679a6.962 6.962 0 0 1-1.158-.486A1.348 1.348 0 0 1 6 6a4 4 0 0 1 .166-1.143 7.032 7.032 0 0 1-1.3-1.098.75.75 0 0 1-.173-.707 5.48 5.48 0 0 1 .822-1.736.75.75 0 0 1 1.046-.177Z","clip-rule":"evenodd"})])}function HD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.674 2.075a.75.75 0 0 1 .652 0l7.25 3.5A.75.75 0 0 1 17 6.957V16.5h.25a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5H3V6.957a.75.75 0 0 1-.576-1.382l7.25-3.5ZM11 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM7.5 9.75a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0v-5.5Zm3.25 0a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0v-5.5Zm3.25 0a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0v-5.5Z","clip-rule":"evenodd"})])}function TD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 2.75A.75.75 0 0 1 1.75 2h10.5a.75.75 0 0 1 0 1.5H12v13.75a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1-.75-.75v-2.5a.75.75 0 0 0-.75-.75h-2.5a.75.75 0 0 0-.75.75v2.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5H2v-13h-.25A.75.75 0 0 1 1 2.75ZM4 5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1ZM4.5 9a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1ZM8 5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1ZM8.5 9a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1ZM14.25 6a.75.75 0 0 0-.75.75V17a1 1 0 0 0 1 1h3.75a.75.75 0 0 0 0-1.5H18v-9h.25a.75.75 0 0 0 0-1.5h-4Zm.5 3.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1Zm.5 3.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1Z","clip-rule":"evenodd"})])}function LD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 16.5v-13h-.25a.75.75 0 0 1 0-1.5h12.5a.75.75 0 0 1 0 1.5H16v13h.25a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75v-2.5a.75.75 0 0 0-.75-.75h-2.5a.75.75 0 0 0-.75.75v2.5a.75.75 0 0 1-.75.75h-3.5a.75.75 0 0 1 0-1.5H4Zm3-11a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1ZM7.5 9a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1ZM11 5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1Zm.5 3.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1Z","clip-rule":"evenodd"})])}function DD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2.879 7.121A3 3 0 0 0 7.5 6.66a2.997 2.997 0 0 0 2.5 1.34 2.997 2.997 0 0 0 2.5-1.34 3 3 0 1 0 4.622-3.78l-.293-.293A2 2 0 0 0 15.415 2H4.585a2 2 0 0 0-1.414.586l-.292.292a3 3 0 0 0 0 4.243ZM3 9.032a4.507 4.507 0 0 0 4.5-.29A4.48 4.48 0 0 0 10 9.5a4.48 4.48 0 0 0 2.5-.758 4.507 4.507 0 0 0 4.5.29V16.5h.25a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75v-3.5a.75.75 0 0 0-.75-.75h-2.5a.75.75 0 0 0-.75.75v3.5a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1 0-1.5H3V9.032Z"})])}function PD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"m6.75.98-.884.883a1.25 1.25 0 1 0 1.768 0L6.75.98ZM13.25.98l-.884.883a1.25 1.25 0 1 0 1.768 0L13.25.98ZM10 .98l.884.883a1.25 1.25 0 1 1-1.768 0L10 .98ZM7.5 5.75a.75.75 0 0 0-1.5 0v.464c-1.179.304-2 1.39-2 2.622v.094c.1-.02.202-.038.306-.052A42.867 42.867 0 0 1 10 8.5c1.93 0 3.83.129 5.694.378.104.014.206.032.306.052v-.094c0-1.232-.821-2.317-2-2.622V5.75a.75.75 0 0 0-1.5 0v.318a45.645 45.645 0 0 0-1.75-.062V5.75a.75.75 0 0 0-1.5 0v.256c-.586.01-1.17.03-1.75.062V5.75ZM4.505 10.365A41.36 41.36 0 0 1 10 10c1.863 0 3.697.124 5.495.365C16.967 10.562 18 11.838 18 13.28v.693a3.72 3.72 0 0 1-1.665-.393 5.222 5.222 0 0 0-4.67 0 3.722 3.722 0 0 1-3.33 0 5.222 5.222 0 0 0-4.67 0A3.72 3.72 0 0 1 2 13.972v-.693c0-1.441 1.033-2.717 2.505-2.914ZM15.665 14.92a5.22 5.22 0 0 0 2.335.552V16.5a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 2 16.5v-1.028c.8 0 1.6-.184 2.335-.551a3.722 3.722 0 0 1 3.33 0c1.47.735 3.2.735 4.67 0a3.722 3.722 0 0 1 3.33 0Z"})])}function OD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 1c-1.716 0-3.408.106-5.07.31C3.806 1.45 3 2.414 3 3.517V16.75A2.25 2.25 0 0 0 5.25 19h9.5A2.25 2.25 0 0 0 17 16.75V3.517c0-1.103-.806-2.068-1.93-2.207A41.403 41.403 0 0 0 10 1ZM5.99 8.75A.75.75 0 0 1 6.74 8h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75v-.01Zm.75 1.417a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75v-.01a.75.75 0 0 0-.75-.75h-.01Zm-.75 2.916a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75v-.01Zm.75 1.417a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75v-.01a.75.75 0 0 0-.75-.75h-.01Zm1.417-5.75a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75v-.01Zm.75 1.417a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75v-.01a.75.75 0 0 0-.75-.75h-.01Zm-.75 2.916a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75v-.01Zm.75 1.417a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75v-.01a.75.75 0 0 0-.75-.75h-.01Zm1.42-5.75a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75v-.01Zm.75 1.417a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75v-.01a.75.75 0 0 0-.75-.75h-.01Zm-.75 2.916a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75v-.01Zm.75 1.417a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75v-.01a.75.75 0 0 0-.75-.75h-.01ZM12.5 8.75a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75v-.01Zm.75 1.417a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75v-.01a.75.75 0 0 0-.75-.75h-.01Zm0 2.166a.75.75 0 0 1 .75.75v2.167a.75.75 0 1 1-1.5 0v-2.167a.75.75 0 0 1 .75-.75ZM6.75 4a.75.75 0 0 0-.75.75v.5c0 .414.336.75.75.75h6.5a.75.75 0 0 0 .75-.75v-.5a.75.75 0 0 0-.75-.75h-6.5Z","clip-rule":"evenodd"})])}function RD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10 9.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V10a.75.75 0 0 0-.75-.75H10ZM6 13.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V14a.75.75 0 0 0-.75-.75H6ZM8 13.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V14a.75.75 0 0 0-.75-.75H8ZM9.25 14a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H10a.75.75 0 0 1-.75-.75V14ZM12 11.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V12a.75.75 0 0 0-.75-.75H12ZM12 13.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V14a.75.75 0 0 0-.75-.75H12ZM13.25 12a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H14a.75.75 0 0 1-.75-.75V12ZM11.25 10.005c0-.417.338-.755.755-.755h2a.755.755 0 1 1 0 1.51h-2a.755.755 0 0 1-.755-.755ZM6.005 11.25a.755.755 0 1 0 0 1.51h4a.755.755 0 1 0 0-1.51h-4Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.75 2a.75.75 0 0 1 .75.75V4h7V2.75a.75.75 0 0 1 1.5 0V4h.25A2.75 2.75 0 0 1 18 6.75v8.5A2.75 2.75 0 0 1 15.25 18H4.75A2.75 2.75 0 0 1 2 15.25v-8.5A2.75 2.75 0 0 1 4.75 4H5V2.75A.75.75 0 0 1 5.75 2Zm-1 5.5c-.69 0-1.25.56-1.25 1.25v6.5c0 .69.56 1.25 1.25 1.25h10.5c.69 0 1.25-.56 1.25-1.25v-6.5c0-.69-.56-1.25-1.25-1.25H4.75Z","clip-rule":"evenodd"})])}function zD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.25 12a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H6a.75.75 0 0 1-.75-.75V12ZM6 13.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V14a.75.75 0 0 0-.75-.75H6ZM7.25 12a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H8a.75.75 0 0 1-.75-.75V12ZM8 13.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V14a.75.75 0 0 0-.75-.75H8ZM9.25 10a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H10a.75.75 0 0 1-.75-.75V10ZM10 11.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V12a.75.75 0 0 0-.75-.75H10ZM9.25 14a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H10a.75.75 0 0 1-.75-.75V14ZM12 9.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V10a.75.75 0 0 0-.75-.75H12ZM11.25 12a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H12a.75.75 0 0 1-.75-.75V12ZM12 13.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V14a.75.75 0 0 0-.75-.75H12ZM13.25 10a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H14a.75.75 0 0 1-.75-.75V10ZM14 11.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V12a.75.75 0 0 0-.75-.75H14Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.75 2a.75.75 0 0 1 .75.75V4h7V2.75a.75.75 0 0 1 1.5 0V4h.25A2.75 2.75 0 0 1 18 6.75v8.5A2.75 2.75 0 0 1 15.25 18H4.75A2.75 2.75 0 0 1 2 15.25v-8.5A2.75 2.75 0 0 1 4.75 4H5V2.75A.75.75 0 0 1 5.75 2Zm-1 5.5c-.69 0-1.25.56-1.25 1.25v6.5c0 .69.56 1.25 1.25 1.25h10.5c.69 0 1.25-.56 1.25-1.25v-6.5c0-.69-.56-1.25-1.25-1.25H4.75Z","clip-rule":"evenodd"})])}function jD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.75 2a.75.75 0 0 1 .75.75V4h7V2.75a.75.75 0 0 1 1.5 0V4h.25A2.75 2.75 0 0 1 18 6.75v8.5A2.75 2.75 0 0 1 15.25 18H4.75A2.75 2.75 0 0 1 2 15.25v-8.5A2.75 2.75 0 0 1 4.75 4H5V2.75A.75.75 0 0 1 5.75 2Zm-1 5.5c-.69 0-1.25.56-1.25 1.25v6.5c0 .69.56 1.25 1.25 1.25h10.5c.69 0 1.25-.56 1.25-1.25v-6.5c0-.69-.56-1.25-1.25-1.25H4.75Z","clip-rule":"evenodd"})])}function FD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 8a2 2 0 0 1 2-2h.93a2 2 0 0 0 1.664-.89l.812-1.22A2 2 0 0 1 8.07 3h3.86a2 2 0 0 1 1.664.89l.812 1.22A2 2 0 0 0 16.07 6H17a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8Zm13.5 3a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM10 14a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z","clip-rule":"evenodd"})])}function UD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.25 2A2.25 2.25 0 0 0 2 4.25v11.5A2.25 2.25 0 0 0 4.25 18h11.5A2.25 2.25 0 0 0 18 15.75V4.25A2.25 2.25 0 0 0 15.75 2H4.25ZM15 5.75a.75.75 0 0 0-1.5 0v8.5a.75.75 0 0 0 1.5 0v-8.5Zm-8.5 6a.75.75 0 0 0-1.5 0v2.5a.75.75 0 0 0 1.5 0v-2.5ZM8.584 9a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0v-4.5a.75.75 0 0 1 .75-.75Zm3.58-1.25a.75.75 0 0 0-1.5 0v6.5a.75.75 0 0 0 1.5 0v-6.5Z","clip-rule":"evenodd"})])}function WD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M15.5 2A1.5 1.5 0 0 0 14 3.5v13a1.5 1.5 0 0 0 1.5 1.5h1a1.5 1.5 0 0 0 1.5-1.5v-13A1.5 1.5 0 0 0 16.5 2h-1ZM9.5 6A1.5 1.5 0 0 0 8 7.5v9A1.5 1.5 0 0 0 9.5 18h1a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 10.5 6h-1ZM3.5 10A1.5 1.5 0 0 0 2 11.5v5A1.5 1.5 0 0 0 3.5 18h1A1.5 1.5 0 0 0 6 16.5v-5A1.5 1.5 0 0 0 4.5 10h-1Z"})])}function qD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M12 9a1 1 0 0 1-1-1V3c0-.552.45-1.007.997-.93a7.004 7.004 0 0 1 5.933 5.933c.078.547-.378.997-.93.997h-5Z"}),e.createElementVNode("path",{d:"M8.003 4.07C8.55 3.994 9 4.449 9 5v5a1 1 0 0 0 1 1h5c.552 0 1.008.45.93.997A7.001 7.001 0 0 1 2 11a7.002 7.002 0 0 1 6.003-6.93Z"})])}function YD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 2c-2.236 0-4.43.18-6.57.524C1.993 2.755 1 4.014 1 5.426v5.148c0 1.413.993 2.67 2.43 2.902 1.168.188 2.352.327 3.55.414.28.02.521.18.642.413l1.713 3.293a.75.75 0 0 0 1.33 0l1.713-3.293a.783.783 0 0 1 .642-.413 41.102 41.102 0 0 0 3.55-.414c1.437-.231 2.43-1.49 2.43-2.902V5.426c0-1.413-.993-2.67-2.43-2.902A41.289 41.289 0 0 0 10 2ZM6.75 6a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Zm0 2.5a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Z","clip-rule":"evenodd"})])}function KD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.43 2.524A41.29 41.29 0 0 1 10 2c2.236 0 4.43.18 6.57.524 1.437.231 2.43 1.49 2.43 2.902v5.148c0 1.413-.993 2.67-2.43 2.902a41.102 41.102 0 0 1-3.55.414c-.28.02-.521.18-.643.413l-1.712 3.293a.75.75 0 0 1-1.33 0l-1.713-3.293a.783.783 0 0 0-.642-.413 41.108 41.108 0 0 1-3.55-.414C1.993 13.245 1 11.986 1 10.574V5.426c0-1.413.993-2.67 2.43-2.902Z","clip-rule":"evenodd"})])}function GD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 2c-2.236 0-4.43.18-6.57.524C1.993 2.755 1 4.014 1 5.426v5.148c0 1.413.993 2.67 2.43 2.902.848.137 1.705.248 2.57.331v3.443a.75.75 0 0 0 1.28.53l3.58-3.579a.78.78 0 0 1 .527-.224 41.202 41.202 0 0 0 5.183-.5c1.437-.232 2.43-1.49 2.43-2.903V5.426c0-1.413-.993-2.67-2.43-2.902A41.289 41.289 0 0 0 10 2Zm0 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM8 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm5 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function JD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.505 2.365A41.369 41.369 0 0 1 9 2c1.863 0 3.697.124 5.495.365 1.247.167 2.18 1.108 2.435 2.268a4.45 4.45 0 0 0-.577-.069 43.141 43.141 0 0 0-4.706 0C9.229 4.696 7.5 6.727 7.5 8.998v2.24c0 1.413.67 2.735 1.76 3.562l-2.98 2.98A.75.75 0 0 1 5 17.25v-3.443c-.501-.048-1-.106-1.495-.172C2.033 13.438 1 12.162 1 10.72V5.28c0-1.441 1.033-2.717 2.505-2.914Z"}),e.createElementVNode("path",{d:"M14 6c-.762 0-1.52.02-2.271.062C10.157 6.148 9 7.472 9 8.998v2.24c0 1.519 1.147 2.839 2.71 2.935.214.013.428.024.642.034.2.009.385.09.518.224l2.35 2.35a.75.75 0 0 0 1.28-.531v-2.07c1.453-.195 2.5-1.463 2.5-2.915V8.998c0-1.526-1.157-2.85-2.729-2.936A41.645 41.645 0 0 0 14 6Z"})])}function XD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.43 2.524A41.29 41.29 0 0 1 10 2c2.236 0 4.43.18 6.57.524 1.437.231 2.43 1.49 2.43 2.902v5.148c0 1.413-.993 2.67-2.43 2.902a41.202 41.202 0 0 1-5.183.501.78.78 0 0 0-.528.224l-3.579 3.58A.75.75 0 0 1 6 17.25v-3.443a41.033 41.033 0 0 1-2.57-.33C1.993 13.244 1 11.986 1 10.573V5.426c0-1.413.993-2.67 2.43-2.902Z","clip-rule":"evenodd"})])}function QD(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 3c-4.31 0-8 3.033-8 7 0 2.024.978 3.825 2.499 5.085a3.478 3.478 0 0 1-.522 1.756.75.75 0 0 0 .584 1.143 5.976 5.976 0 0 0 3.936-1.108c.487.082.99.124 1.503.124 4.31 0 8-3.033 8-7s-3.69-7-8-7Zm0 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-2-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm5 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function eP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 10c0-3.967 3.69-7 8-7 4.31 0 8 3.033 8 7s-3.69 7-8 7a9.165 9.165 0 0 1-1.504-.123 5.976 5.976 0 0 1-3.935 1.107.75.75 0 0 1-.584-1.143 3.478 3.478 0 0 0 .522-1.756C2.979 13.825 2 12.025 2 10Z","clip-rule":"evenodd"})])}function tP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M16.403 12.652a3 3 0 0 0 0-5.304 3 3 0 0 0-3.75-3.751 3 3 0 0 0-5.305 0 3 3 0 0 0-3.751 3.75 3 3 0 0 0 0 5.305 3 3 0 0 0 3.75 3.751 3 3 0 0 0 5.305 0 3 3 0 0 0 3.751-3.75Zm-2.546-4.46a.75.75 0 0 0-1.214-.883l-3.483 4.79-1.88-1.88a.75.75 0 1 0-1.06 1.061l2.5 2.5a.75.75 0 0 0 1.137-.089l4-5.5Z","clip-rule":"evenodd"})])}function nP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm3.857-9.809a.75.75 0 0 0-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 1 0-1.06 1.061l2.5 2.5a.75.75 0 0 0 1.137-.089l4-5.5Z","clip-rule":"evenodd"})])}function rP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M16.704 4.153a.75.75 0 0 1 .143 1.052l-8 10.5a.75.75 0 0 1-1.127.075l-4.5-4.5a.75.75 0 0 1 1.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 0 1 1.05-.143Z","clip-rule":"evenodd"})])}function oP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.47 15.28a.75.75 0 0 0 1.06 0l4.25-4.25a.75.75 0 1 0-1.06-1.06L10 13.69 6.28 9.97a.75.75 0 0 0-1.06 1.06l4.25 4.25ZM5.22 6.03l4.25 4.25a.75.75 0 0 0 1.06 0l4.25-4.25a.75.75 0 0 0-1.06-1.06L10 8.69 6.28 4.97a.75.75 0 0 0-1.06 1.06Z","clip-rule":"evenodd"})])}function aP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.72 9.47a.75.75 0 0 0 0 1.06l4.25 4.25a.75.75 0 1 0 1.06-1.06L6.31 10l3.72-3.72a.75.75 0 1 0-1.06-1.06L4.72 9.47Zm9.25-4.25L9.72 9.47a.75.75 0 0 0 0 1.06l4.25 4.25a.75.75 0 1 0 1.06-1.06L11.31 10l3.72-3.72a.75.75 0 0 0-1.06-1.06Z","clip-rule":"evenodd"})])}function lP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15.28 9.47a.75.75 0 0 1 0 1.06l-4.25 4.25a.75.75 0 1 1-1.06-1.06L13.69 10 9.97 6.28a.75.75 0 0 1 1.06-1.06l4.25 4.25ZM6.03 5.22l4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.75.75 0 0 1-1.06-1.06L8.69 10 4.97 6.28a.75.75 0 0 1 1.06-1.06Z","clip-rule":"evenodd"})])}function iP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.47 4.72a.75.75 0 0 1 1.06 0l4.25 4.25a.75.75 0 1 1-1.06 1.06L10 6.31l-3.72 3.72a.75.75 0 1 1-1.06-1.06l4.25-4.25Zm-4.25 9.25 4.25-4.25a.75.75 0 0 1 1.06 0l4.25 4.25a.75.75 0 1 1-1.06 1.06L10 11.31l-3.72 3.72a.75.75 0 0 1-1.06-1.06Z","clip-rule":"evenodd"})])}function cP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.22 8.22a.75.75 0 0 1 1.06 0L10 11.94l3.72-3.72a.75.75 0 1 1 1.06 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0L5.22 9.28a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function sP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.78 5.22a.75.75 0 0 1 0 1.06L8.06 10l3.72 3.72a.75.75 0 1 1-1.06 1.06l-4.25-4.25a.75.75 0 0 1 0-1.06l4.25-4.25a.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function dP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.22 5.22a.75.75 0 0 1 1.06 0l4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.75.75 0 0 1-1.06-1.06L11.94 10 8.22 6.28a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function uP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.53 3.47a.75.75 0 0 0-1.06 0L6.22 6.72a.75.75 0 0 0 1.06 1.06L10 5.06l2.72 2.72a.75.75 0 1 0 1.06-1.06l-3.25-3.25Zm-4.31 9.81 3.25 3.25a.75.75 0 0 0 1.06 0l3.25-3.25a.75.75 0 1 0-1.06-1.06L10 14.94l-2.72-2.72a.75.75 0 0 0-1.06 1.06Z","clip-rule":"evenodd"})])}function hP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.47 6.47a.75.75 0 0 1 1.06 0l4.25 4.25a.75.75 0 1 1-1.06 1.06L10 8.06l-3.72 3.72a.75.75 0 0 1-1.06-1.06l4.25-4.25Z","clip-rule":"evenodd"})])}function pP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 1c3.866 0 7 1.79 7 4s-3.134 4-7 4-7-1.79-7-4 3.134-4 7-4Zm5.694 8.13c.464-.264.91-.583 1.306-.952V10c0 2.21-3.134 4-7 4s-7-1.79-7-4V8.178c.396.37.842.688 1.306.953C5.838 10.006 7.854 10.5 10 10.5s4.162-.494 5.694-1.37ZM3 13.179V15c0 2.21 3.134 4 7 4s7-1.79 7-4v-1.822c-.396.37-.842.688-1.306.953-1.532.875-3.548 1.369-5.694 1.369s-4.162-.494-5.694-1.37A7.009 7.009 0 0 1 3 13.179Z","clip-rule":"evenodd"})])}function fP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M18 5.25a2.25 2.25 0 0 0-2.012-2.238A2.25 2.25 0 0 0 13.75 1h-1.5a2.25 2.25 0 0 0-2.238 2.012c-.875.092-1.6.686-1.884 1.488H11A2.5 2.5 0 0 1 13.5 7v7h2.25A2.25 2.25 0 0 0 18 11.75v-6.5ZM12.25 2.5a.75.75 0 0 0-.75.75v.25h3v-.25a.75.75 0 0 0-.75-.75h-1.5Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 6a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H3Zm6.874 4.166a.75.75 0 1 0-1.248-.832l-2.493 3.739-.853-.853a.75.75 0 0 0-1.06 1.06l1.5 1.5a.75.75 0 0 0 1.154-.114l3-4.5Z","clip-rule":"evenodd"})])}function mP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15.988 3.012A2.25 2.25 0 0 1 18 5.25v6.5A2.25 2.25 0 0 1 15.75 14H13.5V7A2.5 2.5 0 0 0 11 4.5H8.128a2.252 2.252 0 0 1 1.884-1.488A2.25 2.25 0 0 1 12.25 1h1.5a2.25 2.25 0 0 1 2.238 2.012ZM11.5 3.25a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 .75.75v.25h-3v-.25Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 7a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V7Zm2 3.25a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Zm0 3.5a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function wP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15.988 3.012A2.25 2.25 0 0 1 18 5.25v6.5A2.25 2.25 0 0 1 15.75 14H13.5v-3.379a3 3 0 0 0-.879-2.121l-3.12-3.121a3 3 0 0 0-1.402-.791 2.252 2.252 0 0 1 1.913-1.576A2.25 2.25 0 0 1 12.25 1h1.5a2.25 2.25 0 0 1 2.238 2.012ZM11.5 3.25a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 .75.75v.25h-3v-.25Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M3.5 6A1.5 1.5 0 0 0 2 7.5v9A1.5 1.5 0 0 0 3.5 18h7a1.5 1.5 0 0 0 1.5-1.5v-5.879a1.5 1.5 0 0 0-.44-1.06L8.44 6.439A1.5 1.5 0 0 0 7.378 6H3.5Z"})])}function gP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M13.887 3.182c.396.037.79.08 1.183.128C16.194 3.45 17 4.414 17 5.517V16.75A2.25 2.25 0 0 1 14.75 19h-9.5A2.25 2.25 0 0 1 3 16.75V5.517c0-1.103.806-2.068 1.93-2.207.393-.048.787-.09 1.183-.128A3.001 3.001 0 0 1 9 1h2c1.373 0 2.531.923 2.887 2.182ZM7.5 4A1.5 1.5 0 0 1 9 2.5h2A1.5 1.5 0 0 1 12.5 4v.5h-5V4Z","clip-rule":"evenodd"})])}function kP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm.75-13a.75.75 0 0 0-1.5 0v5c0 .414.336.75.75.75h4a.75.75 0 0 0 0-1.5h-3.25V5Z","clip-rule":"evenodd"})])}function xP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.5 17a4.5 4.5 0 0 1-1.44-8.765 4.5 4.5 0 0 1 8.302-3.046 3.5 3.5 0 0 1 4.504 4.272A4 4 0 0 1 15 17H5.5Zm5.25-9.25a.75.75 0 0 0-1.5 0v4.59l-1.95-2.1a.75.75 0 1 0-1.1 1.02l3.25 3.5a.75.75 0 0 0 1.1 0l3.25-3.5a.75.75 0 1 0-1.1-1.02l-1.95 2.1V7.75Z","clip-rule":"evenodd"})])}function vP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.5 17a4.5 4.5 0 0 1-1.44-8.765 4.5 4.5 0 0 1 8.302-3.046 3.5 3.5 0 0 1 4.504 4.272A4 4 0 0 1 15 17H5.5Zm3.75-2.75a.75.75 0 0 0 1.5 0V9.66l1.95 2.1a.75.75 0 1 0 1.1-1.02l-3.25-3.5a.75.75 0 0 0-1.1 0l-3.25 3.5a.75.75 0 1 0 1.1 1.02l1.95-2.1v4.59Z","clip-rule":"evenodd"})])}function yP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M1 12.5A4.5 4.5 0 0 0 5.5 17H15a4 4 0 0 0 1.866-7.539 3.504 3.504 0 0 0-4.504-4.272A4.5 4.5 0 0 0 4.06 8.235 4.502 4.502 0 0 0 1 12.5Z"})])}function BP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.25 2A2.25 2.25 0 0 0 2 4.25v11.5A2.25 2.25 0 0 0 4.25 18h11.5A2.25 2.25 0 0 0 18 15.75V4.25A2.25 2.25 0 0 0 15.75 2H4.25Zm4.03 6.28a.75.75 0 0 0-1.06-1.06L4.97 9.47a.75.75 0 0 0 0 1.06l2.25 2.25a.75.75 0 0 0 1.06-1.06L6.56 10l1.72-1.72Zm4.5-1.06a.75.75 0 1 0-1.06 1.06L13.44 10l-1.72 1.72a.75.75 0 1 0 1.06 1.06l2.25-2.25a.75.75 0 0 0 0-1.06l-2.25-2.25Z","clip-rule":"evenodd"})])}function EP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.28 5.22a.75.75 0 0 1 0 1.06L2.56 10l3.72 3.72a.75.75 0 0 1-1.06 1.06L.97 10.53a.75.75 0 0 1 0-1.06l4.25-4.25a.75.75 0 0 1 1.06 0Zm7.44 0a.75.75 0 0 1 1.06 0l4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.75.75 0 0 1-1.06-1.06L17.44 10l-3.72-3.72a.75.75 0 0 1 0-1.06ZM11.377 2.011a.75.75 0 0 1 .612.867l-2.5 14.5a.75.75 0 0 1-1.478-.255l2.5-14.5a.75.75 0 0 1 .866-.612Z","clip-rule":"evenodd"})])}function bP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.84 1.804A1 1 0 0 1 8.82 1h2.36a1 1 0 0 1 .98.804l.331 1.652a6.993 6.993 0 0 1 1.929 1.115l1.598-.54a1 1 0 0 1 1.186.447l1.18 2.044a1 1 0 0 1-.205 1.251l-1.267 1.113a7.047 7.047 0 0 1 0 2.228l1.267 1.113a1 1 0 0 1 .206 1.25l-1.18 2.045a1 1 0 0 1-1.187.447l-1.598-.54a6.993 6.993 0 0 1-1.929 1.115l-.33 1.652a1 1 0 0 1-.98.804H8.82a1 1 0 0 1-.98-.804l-.331-1.652a6.993 6.993 0 0 1-1.929-1.115l-1.598.54a1 1 0 0 1-1.186-.447l-1.18-2.044a1 1 0 0 1 .205-1.251l1.267-1.114a7.05 7.05 0 0 1 0-2.227L1.821 7.773a1 1 0 0 1-.206-1.25l1.18-2.045a1 1 0 0 1 1.187-.447l1.598.54A6.992 6.992 0 0 1 7.51 3.456l.33-1.652ZM10 13a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z","clip-rule":"evenodd"})])}function CP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.34 1.804A1 1 0 0 1 9.32 1h1.36a1 1 0 0 1 .98.804l.295 1.473c.497.144.971.342 1.416.587l1.25-.834a1 1 0 0 1 1.262.125l.962.962a1 1 0 0 1 .125 1.262l-.834 1.25c.245.445.443.919.587 1.416l1.473.294a1 1 0 0 1 .804.98v1.361a1 1 0 0 1-.804.98l-1.473.295a6.95 6.95 0 0 1-.587 1.416l.834 1.25a1 1 0 0 1-.125 1.262l-.962.962a1 1 0 0 1-1.262.125l-1.25-.834a6.953 6.953 0 0 1-1.416.587l-.294 1.473a1 1 0 0 1-.98.804H9.32a1 1 0 0 1-.98-.804l-.295-1.473a6.957 6.957 0 0 1-1.416-.587l-1.25.834a1 1 0 0 1-1.262-.125l-.962-.962a1 1 0 0 1-.125-1.262l.834-1.25a6.957 6.957 0 0 1-.587-1.416l-1.473-.294A1 1 0 0 1 1 10.68V9.32a1 1 0 0 1 .804-.98l1.473-.295c.144-.497.342-.971.587-1.416l-.834-1.25a1 1 0 0 1 .125-1.262l.962-.962A1 1 0 0 1 5.38 3.03l1.25.834a6.957 6.957 0 0 1 1.416-.587l.294-1.473ZM13 10a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z","clip-rule":"evenodd"})])}function MP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M13.024 9.25c.47 0 .827-.433.637-.863a4 4 0 0 0-4.094-2.364c-.468.05-.665.576-.43.984l1.08 1.868a.75.75 0 0 0 .649.375h2.158ZM7.84 7.758c-.236-.408-.79-.5-1.068-.12A3.982 3.982 0 0 0 6 10c0 .884.287 1.7.772 2.363.278.38.832.287 1.068-.12l1.078-1.868a.75.75 0 0 0 0-.75L7.839 7.758ZM9.138 12.993c-.235.408-.039.934.43.984a4 4 0 0 0 4.094-2.364c.19-.43-.168-.863-.638-.863h-2.158a.75.75 0 0 0-.65.375l-1.078 1.868Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"m14.13 4.347.644-1.117a.75.75 0 0 0-1.299-.75l-.644 1.116a6.954 6.954 0 0 0-2.081-.556V1.75a.75.75 0 0 0-1.5 0v1.29a6.954 6.954 0 0 0-2.081.556L6.525 2.48a.75.75 0 1 0-1.3.75l.645 1.117A7.04 7.04 0 0 0 4.347 5.87L3.23 5.225a.75.75 0 1 0-.75 1.3l1.116.644A6.954 6.954 0 0 0 3.04 9.25H1.75a.75.75 0 0 0 0 1.5h1.29c.078.733.27 1.433.556 2.081l-1.116.645a.75.75 0 1 0 .75 1.298l1.117-.644a7.04 7.04 0 0 0 1.523 1.523l-.645 1.117a.75.75 0 1 0 1.3.75l.644-1.116a6.954 6.954 0 0 0 2.081.556v1.29a.75.75 0 0 0 1.5 0v-1.29a6.954 6.954 0 0 0 2.081-.556l.645 1.116a.75.75 0 0 0 1.299-.75l-.645-1.117a7.042 7.042 0 0 0 1.523-1.523l1.117.644a.75.75 0 0 0 .75-1.298l-1.116-.645a6.954 6.954 0 0 0 .556-2.081h1.29a.75.75 0 0 0 0-1.5h-1.29a6.954 6.954 0 0 0-.556-2.081l1.116-.644a.75.75 0 0 0-.75-1.3l-1.117.645a7.04 7.04 0 0 0-1.524-1.523ZM10 4.5a5.475 5.475 0 0 0-2.781.754A5.527 5.527 0 0 0 5.22 7.277 5.475 5.475 0 0 0 4.5 10a5.475 5.475 0 0 0 .752 2.777 5.527 5.527 0 0 0 2.028 2.004c.802.458 1.73.719 2.72.719a5.474 5.474 0 0 0 2.78-.753 5.527 5.527 0 0 0 2.001-2.027c.458-.802.719-1.73.719-2.72a5.475 5.475 0 0 0-.753-2.78 5.528 5.528 0 0 0-2.028-2.002A5.475 5.475 0 0 0 10 4.5Z","clip-rule":"evenodd"})])}function VP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.25 3A2.25 2.25 0 0 0 1 5.25v9.5A2.25 2.25 0 0 0 3.25 17h13.5A2.25 2.25 0 0 0 19 14.75v-9.5A2.25 2.25 0 0 0 16.75 3H3.25Zm.943 8.752a.75.75 0 0 1 .055-1.06L6.128 9l-1.88-1.693a.75.75 0 1 1 1.004-1.114l2.5 2.25a.75.75 0 0 1 0 1.114l-2.5 2.25a.75.75 0 0 1-1.06-.055ZM9.75 10.25a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Z","clip-rule":"evenodd"})])}function AP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 4.25A2.25 2.25 0 0 1 4.25 2h11.5A2.25 2.25 0 0 1 18 4.25v8.5A2.25 2.25 0 0 1 15.75 15h-3.105a3.501 3.501 0 0 0 1.1 1.677A.75.75 0 0 1 13.26 18H6.74a.75.75 0 0 1-.484-1.323A3.501 3.501 0 0 0 7.355 15H4.25A2.25 2.25 0 0 1 2 12.75v-8.5Zm1.5 0a.75.75 0 0 1 .75-.75h11.5a.75.75 0 0 1 .75.75v7.5a.75.75 0 0 1-.75.75H4.25a.75.75 0 0 1-.75-.75v-7.5Z","clip-rule":"evenodd"})])}function _P(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M14 6H6v8h8V6Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.25 3V1.75a.75.75 0 0 1 1.5 0V3h1.5V1.75a.75.75 0 0 1 1.5 0V3h.5A2.75 2.75 0 0 1 17 5.75v.5h1.25a.75.75 0 0 1 0 1.5H17v1.5h1.25a.75.75 0 0 1 0 1.5H17v1.5h1.25a.75.75 0 0 1 0 1.5H17v.5A2.75 2.75 0 0 1 14.25 17h-.5v1.25a.75.75 0 0 1-1.5 0V17h-1.5v1.25a.75.75 0 0 1-1.5 0V17h-1.5v1.25a.75.75 0 0 1-1.5 0V17h-.5A2.75 2.75 0 0 1 3 14.25v-.5H1.75a.75.75 0 0 1 0-1.5H3v-1.5H1.75a.75.75 0 0 1 0-1.5H3v-1.5H1.75a.75.75 0 0 1 0-1.5H3v-.5A2.75 2.75 0 0 1 5.75 3h.5V1.75a.75.75 0 0 1 1.5 0V3h1.5ZM4.5 5.75c0-.69.56-1.25 1.25-1.25h8.5c.69 0 1.25.56 1.25 1.25v8.5c0 .69-.56 1.25-1.25 1.25h-8.5c-.69 0-1.25-.56-1.25-1.25v-8.5Z","clip-rule":"evenodd"})])}function NP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.5 4A1.5 1.5 0 0 0 1 5.5V6h18v-.5A1.5 1.5 0 0 0 17.5 4h-15ZM19 8.5H1v6A1.5 1.5 0 0 0 2.5 16h15a1.5 1.5 0 0 0 1.5-1.5v-6ZM3 13.25a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75Zm4.75-.75a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Z","clip-rule":"evenodd"})])}function ZP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.638 1.093a.75.75 0 0 1 .724 0l2 1.104a.75.75 0 1 1-.724 1.313L10 2.607l-1.638.903a.75.75 0 1 1-.724-1.313l2-1.104ZM5.403 4.287a.75.75 0 0 1-.295 1.019l-.805.444.805.444a.75.75 0 0 1-.724 1.314L3.5 7.02v.73a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .388-.657l1.996-1.1a.75.75 0 0 1 1.019.294Zm9.194 0a.75.75 0 0 1 1.02-.295l1.995 1.101A.75.75 0 0 1 18 5.75v2a.75.75 0 0 1-1.5 0v-.73l-.884.488a.75.75 0 1 1-.724-1.314l.806-.444-.806-.444a.75.75 0 0 1-.295-1.02ZM7.343 8.284a.75.75 0 0 1 1.02-.294L10 8.893l1.638-.903a.75.75 0 1 1 .724 1.313l-1.612.89v1.557a.75.75 0 0 1-1.5 0v-1.557l-1.612-.89a.75.75 0 0 1-.295-1.019ZM2.75 11.5a.75.75 0 0 1 .75.75v1.557l1.608.887a.75.75 0 0 1-.724 1.314l-1.996-1.101A.75.75 0 0 1 2 14.25v-2a.75.75 0 0 1 .75-.75Zm14.5 0a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-.388.657l-1.996 1.1a.75.75 0 1 1-.724-1.313l1.608-.887V12.25a.75.75 0 0 1 .75-.75Zm-7.25 4a.75.75 0 0 1 .75.75v.73l.888-.49a.75.75 0 0 1 .724 1.313l-2 1.104a.75.75 0 0 1-.724 0l-2-1.104a.75.75 0 1 1 .724-1.313l.888.49v-.73a.75.75 0 0 1 .75-.75Z","clip-rule":"evenodd"})])}function SP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10.362 1.093a.75.75 0 0 0-.724 0L2.523 5.018 10 9.143l7.477-4.125-7.115-3.925ZM18 6.443l-7.25 4v8.25l6.862-3.786A.75.75 0 0 0 18 14.25V6.443ZM9.25 18.693v-8.25l-7.25-4v7.807a.75.75 0 0 0 .388.657l6.862 3.786Z"})])}function $P(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM5.94 5.5c.944-.945 2.56-.276 2.56 1.06V8h5.75a.75.75 0 0 1 0 1.5H8.5v4.275c0 .296.144.455.26.499a3.5 3.5 0 0 0 4.402-1.77h-.412a.75.75 0 0 1 0-1.5h.537c.462 0 .887.21 1.156.556.278.355.383.852.184 1.337a5.001 5.001 0 0 1-6.4 2.78C7.376 15.353 7 14.512 7 13.774V9.5H5.75a.75.75 0 0 1 0-1.5H7V6.56l-.22.22a.75.75 0 1 1-1.06-1.06l.22-.22Z","clip-rule":"evenodd"})])}function IP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10.75 10.818v2.614A3.13 3.13 0 0 0 11.888 13c.482-.315.612-.648.612-.875 0-.227-.13-.56-.612-.875a3.13 3.13 0 0 0-1.138-.432ZM8.33 8.62c.053.055.115.11.184.164.208.16.46.284.736.363V6.603a2.45 2.45 0 0 0-.35.13c-.14.065-.27.143-.386.233-.377.292-.514.627-.514.909 0 .184.058.39.202.592.037.051.08.102.128.152Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M18 10a8 8 0 1 1-16 0 8 8 0 0 1 16 0Zm-8-6a.75.75 0 0 1 .75.75v.316a3.78 3.78 0 0 1 1.653.713c.426.33.744.74.925 1.2a.75.75 0 0 1-1.395.55 1.35 1.35 0 0 0-.447-.563 2.187 2.187 0 0 0-.736-.363V9.3c.698.093 1.383.32 1.959.696.787.514 1.29 1.27 1.29 2.13 0 .86-.504 1.616-1.29 2.13-.576.377-1.261.603-1.96.696v.299a.75.75 0 1 1-1.5 0v-.3c-.697-.092-1.382-.318-1.958-.695-.482-.315-.857-.717-1.078-1.188a.75.75 0 1 1 1.359-.636c.08.173.245.376.54.569.313.205.706.353 1.138.432v-2.748a3.782 3.782 0 0 1-1.653-.713C6.9 9.433 6.5 8.681 6.5 7.875c0-.805.4-1.558 1.097-2.096a3.78 3.78 0 0 1 1.653-.713V4.75A.75.75 0 0 1 10 4Z","clip-rule":"evenodd"})])}function HP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM8.798 7.45c.512-.67 1.135-.95 1.702-.95s1.19.28 1.702.95a.75.75 0 0 0 1.192-.91C12.637 5.55 11.596 5 10.5 5s-2.137.55-2.894 1.54A5.205 5.205 0 0 0 6.83 8H5.75a.75.75 0 0 0 0 1.5h.77a6.333 6.333 0 0 0 0 1h-.77a.75.75 0 0 0 0 1.5h1.08c.183.528.442 1.023.776 1.46.757.99 1.798 1.54 2.894 1.54s2.137-.55 2.894-1.54a.75.75 0 0 0-1.192-.91c-.512.67-1.135.95-1.702.95s-1.19-.28-1.702-.95a3.505 3.505 0 0 1-.343-.55h1.795a.75.75 0 0 0 0-1.5H8.026a4.835 4.835 0 0 1 0-1h2.224a.75.75 0 0 0 0-1.5H8.455c.098-.195.212-.38.343-.55Z","clip-rule":"evenodd"})])}function TP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM8.732 6.232a2.5 2.5 0 0 1 3.536 0 .75.75 0 1 0 1.06-1.06A4 4 0 0 0 6.5 8v.165c0 .364.034.728.1 1.085h-.35a.75.75 0 0 0 0 1.5h.737a5.25 5.25 0 0 1-.367 3.072l-.055.123a.75.75 0 0 0 .848 1.037l1.272-.283a3.493 3.493 0 0 1 1.604.021 4.992 4.992 0 0 0 2.422 0l.97-.242a.75.75 0 0 0-.363-1.456l-.971.243a3.491 3.491 0 0 1-1.694 0 4.992 4.992 0 0 0-2.258-.038c.19-.811.227-1.651.111-2.477H9.75a.75.75 0 0 0 0-1.5H8.136A4.397 4.397 0 0 1 8 8.165V8c0-.641.244-1.28.732-1.768Z","clip-rule":"evenodd"})])}function LP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM6 5.75A.75.75 0 0 1 6.75 5h6.5a.75.75 0 0 1 0 1.5h-2.127c.4.5.683 1.096.807 1.75h1.32a.75.75 0 0 1 0 1.5h-1.32a4.003 4.003 0 0 1-3.404 3.216l1.754 1.754a.75.75 0 0 1-1.06 1.06l-3-3a.75.75 0 0 1 .53-1.28H8c1.12 0 2.067-.736 2.386-1.75H6.75a.75.75 0 0 1 0-1.5h3.636A2.501 2.501 0 0 0 8 6.5H6.75A.75.75 0 0 1 6 5.75Z","clip-rule":"evenodd"})])}function DP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM7.346 5.294a.75.75 0 0 0-1.192.912L9.056 10H6.75a.75.75 0 0 0 0 1.5h2.5v1h-2.5a.75.75 0 0 0 0 1.5h2.5v1.25a.75.75 0 0 0 1.5 0V14h2.5a.75.75 0 1 0 0-1.5h-2.5v-1h2.5a.75.75 0 1 0 0-1.5h-2.306l2.902-3.794a.75.75 0 1 0-1.192-.912L10 8.765l-2.654-3.47Z","clip-rule":"evenodd"})])}function PP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10 1a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5A.75.75 0 0 1 10 1ZM5.05 3.05a.75.75 0 0 1 1.06 0l1.062 1.06A.75.75 0 1 1 6.11 5.173L5.05 4.11a.75.75 0 0 1 0-1.06ZM14.95 3.05a.75.75 0 0 1 0 1.06l-1.06 1.062a.75.75 0 0 1-1.062-1.061l1.061-1.06a.75.75 0 0 1 1.06 0ZM3 8a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5A.75.75 0 0 1 3 8ZM14 8a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5A.75.75 0 0 1 14 8ZM7.172 10.828a.75.75 0 0 1 0 1.061L6.11 12.95a.75.75 0 0 1-1.06-1.06l1.06-1.06a.75.75 0 0 1 1.06 0ZM10.766 7.51a.75.75 0 0 0-1.37.365l-.492 6.861a.75.75 0 0 0 1.204.65l1.043-.799.985 3.678a.75.75 0 0 0 1.45-.388l-.978-3.646 1.292.204a.75.75 0 0 0 .74-1.16l-3.874-5.764Z"})])}function OP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6.111 11.89A5.5 5.5 0 1 1 15.501 8 .75.75 0 0 0 17 8a7 7 0 1 0-11.95 4.95.75.75 0 0 0 1.06-1.06Z"}),e.createElementVNode("path",{d:"M8.232 6.232a2.5 2.5 0 0 0 0 3.536.75.75 0 1 1-1.06 1.06A4 4 0 1 1 14 8a.75.75 0 0 1-1.5 0 2.5 2.5 0 0 0-4.268-1.768Z"}),e.createElementVNode("path",{d:"M10.766 7.51a.75.75 0 0 0-1.37.365l-.492 6.861a.75.75 0 0 0 1.204.65l1.043-.799.985 3.678a.75.75 0 0 0 1.45-.388l-.978-3.646 1.292.204a.75.75 0 0 0 .74-1.16l-3.874-5.764Z"})])}function RP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8 16.25a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 4a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V4Zm4-1.5v.75c0 .414.336.75.75.75h2.5a.75.75 0 0 0 .75-.75V2.5h1A1.5 1.5 0 0 1 14.5 4v12a1.5 1.5 0 0 1-1.5 1.5H7A1.5 1.5 0 0 1 5.5 16V4A1.5 1.5 0 0 1 7 2.5h1Z","clip-rule":"evenodd"})])}function zP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5 1a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V4a3 3 0 0 0-3-3H5ZM3.5 4A1.5 1.5 0 0 1 5 2.5h10A1.5 1.5 0 0 1 16.5 4v12a1.5 1.5 0 0 1-1.5 1.5H5A1.5 1.5 0 0 1 3.5 16V4Zm5.25 11.5a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Z","clip-rule":"evenodd"})])}function jP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M11.25 4a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM3 10a.75.75 0 0 1 .75-.75h12.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 10ZM10 17.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z"})])}function FP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2H4.5Zm4.75 6.75a.75.75 0 0 1 1.5 0v2.546l.943-1.048a.75.75 0 0 1 1.114 1.004l-2.25 2.5a.75.75 0 0 1-1.114 0l-2.25-2.5a.75.75 0 1 1 1.114-1.004l.943 1.048V8.75Z","clip-rule":"evenodd"})])}function UP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2H4.5Zm4.75 11.25a.75.75 0 0 0 1.5 0v-2.546l.943 1.048a.75.75 0 1 0 1.114-1.004l-2.25-2.5a.75.75 0 0 0-1.114 0l-2.25 2.5a.75.75 0 1 0 1.114 1.004l.943-1.048v2.546Z","clip-rule":"evenodd"})])}function WP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 3.5A1.5 1.5 0 0 1 4.5 2h6.879a1.5 1.5 0 0 1 1.06.44l4.122 4.12A1.5 1.5 0 0 1 17 7.622V16.5a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 3 16.5v-13ZM13.25 9a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0v-4.5a.75.75 0 0 1 .75-.75Zm-6.5 4a.75.75 0 0 1 .75.75v.5a.75.75 0 0 1-1.5 0v-.5a.75.75 0 0 1 .75-.75Zm4-1.25a.75.75 0 0 0-1.5 0v2.5a.75.75 0 0 0 1.5 0v-2.5Z","clip-rule":"evenodd"})])}function qP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 3.5A1.5 1.5 0 0 1 4.5 2h6.879a1.5 1.5 0 0 1 1.06.44l4.122 4.12A1.5 1.5 0 0 1 17 7.622V16.5a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 3 16.5v-13Zm10.857 5.691a.75.75 0 0 0-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 0 0-1.06 1.061l2.5 2.5a.75.75 0 0 0 1.137-.089l4-5.5Z","clip-rule":"evenodd"})])}function YP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2H4.5Zm1.97 4.53a.75.75 0 0 0 .78.178V8h-1.5a.75.75 0 1 0 0 1.5h1.5v3.098c0 .98.571 2.18 1.837 2.356a4.751 4.751 0 0 0 5.066-2.92.75.75 0 0 0-.695-1.031H11.75a.75.75 0 0 0 0 1.5h.343a3.241 3.241 0 0 1-2.798.966c-.25-.035-.545-.322-.545-.87V9.5h5.5a.75.75 0 0 0 0-1.5h-5.5V6.415c0-1.19-1.439-1.786-2.28-.945a.75.75 0 0 0 0 1.06Z","clip-rule":"evenodd"})])}function KP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2H4.5Zm6.25 3.75a.75.75 0 0 0-1.5 0v.272c-.418.024-.831.069-1.238.132-.962.15-1.807.882-1.95 1.928-.04.3-.062.607-.062.918 0 1.044.83 1.759 1.708 1.898l1.542.243v2.334a11.214 11.214 0 0 1-2.297-.392.75.75 0 0 0-.405 1.444c.867.243 1.772.397 2.702.451v.272a.75.75 0 0 0 1.5 0v-.272c.419-.024.832-.069 1.239-.132.961-.15 1.807-.882 1.95-1.928.04-.3.061-.607.061-.918 0-1.044-.83-1.759-1.708-1.898L10.75 9.86V7.525c.792.052 1.56.185 2.297.392a.75.75 0 0 0 .406-1.444 12.723 12.723 0 0 0-2.703-.451V5.75ZM8.244 7.636c.33-.052.666-.09 1.006-.111v2.097l-1.308-.206C7.635 9.367 7.5 9.156 7.5 9c0-.243.017-.482.049-.716.042-.309.305-.587.695-.648Zm2.506 5.84v-2.098l1.308.206c.307.049.442.26.442.416 0 .243-.016.482-.048.716-.042.309-.306.587-.695.648-.331.052-.667.09-1.007.111Z","clip-rule":"evenodd"})])}function GP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2H4.5Zm4.298 6.45c.512-.67 1.135-.95 1.702-.95s1.19.28 1.702.95a.75.75 0 0 0 1.192-.91C12.637 6.55 11.596 6 10.5 6s-2.137.55-2.894 1.54A5.205 5.205 0 0 0 6.83 9H5.75a.75.75 0 0 0 0 1.5h.77a6.333 6.333 0 0 0 0 1h-.77a.75.75 0 0 0 0 1.5h1.08c.183.528.442 1.023.776 1.46.757.99 1.798 1.54 2.894 1.54s2.137-.55 2.894-1.54a.75.75 0 0 0-1.192-.91c-.512.67-1.135.95-1.702.95s-1.19-.28-1.702-.95a3.505 3.505 0 0 1-.343-.55h1.795a.75.75 0 0 0 0-1.5H8.026a4.835 4.835 0 0 1 0-1h2.224a.75.75 0 0 0 0-1.5H8.455c.098-.195.212-.38.343-.55Z","clip-rule":"evenodd"})])}function JP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2H4.5Zm5 7a1.5 1.5 0 0 1 2.56-1.06.75.75 0 1 0 1.062-1.061A3 3 0 0 0 8 9v1.25H6.75a.75.75 0 0 0 0 1.5H8v1a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 0 0 1.5h6.5a.75.75 0 1 0 0-1.5H9.372c.083-.235.128-.487.128-.75v-1h1.25a.75.75 0 0 0 0-1.5H9.5V9Z","clip-rule":"evenodd"})])}function XP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2H4.5ZM6 5.75A.75.75 0 0 1 6.75 5h6.5a.75.75 0 0 1 0 1.5h-2.127c.4.5.683 1.096.807 1.75h1.32a.75.75 0 0 1 0 1.5h-1.32a4.003 4.003 0 0 1-3.404 3.216l1.754 1.754a.75.75 0 0 1-1.06 1.06l-3-3a.75.75 0 0 1 .53-1.28H8c1.12 0 2.067-.736 2.386-1.75H6.75a.75.75 0 0 1 0-1.5h3.636A2.501 2.501 0 0 0 8 6.5H6.75A.75.75 0 0 1 6 5.75Z","clip-rule":"evenodd"})])}function QP(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2H4.5Zm3.846 4.294a.75.75 0 0 0-1.192.912L9.056 10H6.75a.75.75 0 0 0 0 1.5h2.5v1h-2.5a.75.75 0 0 0 0 1.5h2.5v1.25a.75.75 0 1 0 1.5 0V14h2.5a.75.75 0 1 0 0-1.5h-2.5v-1h2.5a.75.75 0 1 0 0-1.5h-2.306l1.902-2.794a.75.75 0 0 0-1.192-.912L10 8.765l-1.654-2.47Z","clip-rule":"evenodd"})])}function eO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7 3.5A1.5 1.5 0 0 1 8.5 2h3.879a1.5 1.5 0 0 1 1.06.44l3.122 3.12A1.5 1.5 0 0 1 17 6.622V12.5a1.5 1.5 0 0 1-1.5 1.5h-1v-3.379a3 3 0 0 0-.879-2.121L10.5 5.379A3 3 0 0 0 8.379 4.5H7v-1Z"}),e.createElementVNode("path",{d:"M4.5 6A1.5 1.5 0 0 0 3 7.5v9A1.5 1.5 0 0 0 4.5 18h7a1.5 1.5 0 0 0 1.5-1.5v-5.879a1.5 1.5 0 0 0-.44-1.06L9.44 6.439A1.5 1.5 0 0 0 8.378 6H4.5Z"})])}function tO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8 10a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2H4.5Zm5 5a3 3 0 1 0 1.524 5.585l1.196 1.195a.75.75 0 1 0 1.06-1.06l-1.195-1.196A3 3 0 0 0 9.5 7Z","clip-rule":"evenodd"})])}function nO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2H4.5Zm7.75 9.75a.75.75 0 0 0 0-1.5h-4.5a.75.75 0 0 0 0 1.5h4.5Z","clip-rule":"evenodd"})])}function rO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2H4.5ZM10 8a.75.75 0 0 1 .75.75v1.5h1.5a.75.75 0 0 1 0 1.5h-1.5v1.5a.75.75 0 0 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5A.75.75 0 0 1 10 8Z","clip-rule":"evenodd"})])}function oO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2H4.5Zm2.25 8.5a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Zm0 3a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Z","clip-rule":"evenodd"})])}function aO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3 3.5A1.5 1.5 0 0 1 4.5 2h6.879a1.5 1.5 0 0 1 1.06.44l4.122 4.12A1.5 1.5 0 0 1 17 7.622V16.5a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 3 16.5v-13Z"})])}function lO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-3-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm7 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function iO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3 10a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM8.5 10a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM15.5 8.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z"})])}function cO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10 3a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3ZM10 8.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3ZM11.5 15.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Z"})])}function sO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.106 6.447A2 2 0 0 0 1 8.237V16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.236a2 2 0 0 0-1.106-1.789l-7-3.5a2 2 0 0 0-1.788 0l-7 3.5Zm1.48 4.007a.75.75 0 0 0-.671 1.342l5.855 2.928a2.75 2.75 0 0 0 2.46 0l5.852-2.927a.75.75 0 1 0-.67-1.341l-5.853 2.926a1.25 1.25 0 0 1-1.118 0l-5.856-2.928Z","clip-rule":"evenodd"})])}function dO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3 4a2 2 0 0 0-2 2v1.161l8.441 4.221a1.25 1.25 0 0 0 1.118 0L19 7.162V6a2 2 0 0 0-2-2H3Z"}),e.createElementVNode("path",{d:"m19 8.839-7.77 3.885a2.75 2.75 0 0 1-2.46 0L1 8.839V14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.839Z"})])}function uO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.75 6a.75.75 0 0 0 0 1.5h12.5a.75.75 0 0 0 0-1.5H3.75ZM3.75 13.5a.75.75 0 0 0 0 1.5h12.5a.75.75 0 0 0 0-1.5H3.75Z"})])}function hO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M18 10a8 8 0 1 1-16 0 8 8 0 0 1 16 0Zm-8-5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0v-4.5A.75.75 0 0 1 10 5Zm0 10a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function pO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.485 2.495c.673-1.167 2.357-1.167 3.03 0l6.28 10.875c.673 1.167-.17 2.625-1.516 2.625H3.72c-1.347 0-2.189-1.458-1.515-2.625L8.485 2.495ZM10 5a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 10 5Zm0 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function fO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12.1 3.667a3.502 3.502 0 1 1 6.782 1.738 3.487 3.487 0 0 1-.907 1.57 3.495 3.495 0 0 1-1.617.919L16 7.99V10a.75.75 0 0 1-.22.53l-.25.25a.75.75 0 0 1-1.06 0l-.845-.844L7.22 16.34A2.25 2.25 0 0 1 5.629 17H5.12a.75.75 0 0 0-.53.22l-1.56 1.56a.75.75 0 0 1-1.061 0l-.75-.75a.75.75 0 0 1 0-1.06l1.56-1.561a.75.75 0 0 0 .22-.53v-.508c0-.596.237-1.169.659-1.59l6.405-6.406-.844-.845a.75.75 0 0 1 0-1.06l.25-.25A.75.75 0 0 1 10 4h2.01l.09-.333ZM4.72 13.84l6.405-6.405 1.44 1.439-6.406 6.405a.75.75 0 0 1-.53.22H5.12c-.258 0-.511.044-.75.129a2.25 2.25 0 0 0 .129-.75v-.508a.75.75 0 0 1 .22-.53Z","clip-rule":"evenodd"})])}function mO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.28 2.22a.75.75 0 0 0-1.06 1.06l14.5 14.5a.75.75 0 1 0 1.06-1.06l-1.745-1.745a10.029 10.029 0 0 0 3.3-4.38 1.651 1.651 0 0 0 0-1.185A10.004 10.004 0 0 0 9.999 3a9.956 9.956 0 0 0-4.744 1.194L3.28 2.22ZM7.752 6.69l1.092 1.092a2.5 2.5 0 0 1 3.374 3.373l1.091 1.092a4 4 0 0 0-5.557-5.557Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"m10.748 13.93 2.523 2.523a9.987 9.987 0 0 1-3.27.547c-4.258 0-7.894-2.66-9.337-6.41a1.651 1.651 0 0 1 0-1.186A10.007 10.007 0 0 1 2.839 6.02L6.07 9.252a4 4 0 0 0 4.678 4.678Z"})])}function wO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10 12.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M.664 10.59a1.651 1.651 0 0 1 0-1.186A10.004 10.004 0 0 1 10 3c4.257 0 7.893 2.66 9.336 6.41.147.381.146.804 0 1.186A10.004 10.004 0 0 1 10 17c-4.257 0-7.893-2.66-9.336-6.41ZM14 10a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z","clip-rule":"evenodd"})])}function gO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm-3.536-3.475a.75.75 0 0 0 1.061 0 3.5 3.5 0 0 1 4.95 0 .75.75 0 1 0 1.06-1.06 5 5 0 0 0-7.07 0 .75.75 0 0 0 0 1.06ZM9 8.5c0 .828-.448 1.5-1 1.5s-1-.672-1-1.5S7.448 7 8 7s1 .672 1 1.5Zm3 1.5c.552 0 1-.672 1-1.5S12.552 7 12 7s-1 .672-1 1.5.448 1.5 1 1.5Z","clip-rule":"evenodd"})])}function kO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm3.536-4.464a.75.75 0 1 0-1.061-1.061 3.5 3.5 0 0 1-4.95 0 .75.75 0 0 0-1.06 1.06 5 5 0 0 0 7.07 0ZM9 8.5c0 .828-.448 1.5-1 1.5s-1-.672-1-1.5S7.448 7 8 7s1 .672 1 1.5Zm3 1.5c.552 0 1-.672 1-1.5S12.552 7 12 7s-1 .672-1 1.5.448 1.5 1 1.5Z","clip-rule":"evenodd"})])}function xO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 4.75C1 3.784 1.784 3 2.75 3h14.5c.966 0 1.75.784 1.75 1.75v10.515a1.75 1.75 0 0 1-1.75 1.75h-1.5c-.078 0-.155-.005-.23-.015H4.48c-.075.01-.152.015-.23.015h-1.5A1.75 1.75 0 0 1 1 15.265V4.75Zm16.5 7.385V11.01a.25.25 0 0 0-.25-.25h-1.5a.25.25 0 0 0-.25.25v1.125c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25Zm0 2.005a.25.25 0 0 0-.25-.25h-1.5a.25.25 0 0 0-.25.25v1.125c0 .108.069.2.165.235h1.585a.25.25 0 0 0 .25-.25v-1.11Zm-15 1.11v-1.11a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 .25.25v1.125a.25.25 0 0 1-.164.235H2.75a.25.25 0 0 1-.25-.25Zm2-4.24v1.125a.25.25 0 0 1-.25.25h-1.5a.25.25 0 0 1-.25-.25V11.01a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 .25.25Zm13-2.005V7.88a.25.25 0 0 0-.25-.25h-1.5a.25.25 0 0 0-.25.25v1.125c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25ZM4.25 7.63a.25.25 0 0 1 .25.25v1.125a.25.25 0 0 1-.25.25h-1.5a.25.25 0 0 1-.25-.25V7.88a.25.25 0 0 1 .25-.25h1.5Zm0-3.13a.25.25 0 0 1 .25.25v1.125a.25.25 0 0 1-.25.25h-1.5a.25.25 0 0 1-.25-.25V4.75a.25.25 0 0 1 .25-.25h1.5Zm11.5 1.625a.25.25 0 0 1-.25-.25V4.75a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 .25.25v1.125a.25.25 0 0 1-.25.25h-1.5Zm-9 3.125a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Z","clip-rule":"evenodd"})])}function vO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 2.5c-1.31 0-2.526.386-3.546 1.051a.75.75 0 0 1-.82-1.256A8 8 0 0 1 18 9a22.47 22.47 0 0 1-1.228 7.351.75.75 0 1 1-1.417-.49A20.97 20.97 0 0 0 16.5 9 6.5 6.5 0 0 0 10 2.5ZM4.333 4.416a.75.75 0 0 1 .218 1.038A6.466 6.466 0 0 0 3.5 9a7.966 7.966 0 0 1-1.293 4.362.75.75 0 0 1-1.257-.819A6.466 6.466 0 0 0 2 9c0-1.61.476-3.11 1.295-4.365a.75.75 0 0 1 1.038-.219ZM10 6.12a3 3 0 0 0-3.001 3.041 11.455 11.455 0 0 1-2.697 7.24.75.75 0 0 1-1.148-.965A9.957 9.957 0 0 0 5.5 9c0-.028.002-.055.004-.082a4.5 4.5 0 0 1 8.996.084V9.15l-.005.297a.75.75 0 1 1-1.5-.034c.003-.11.004-.219.005-.328a3 3 0 0 0-3-2.965Zm0 2.13a.75.75 0 0 1 .75.75c0 3.51-1.187 6.745-3.181 9.323a.75.75 0 1 1-1.186-.918A13.687 13.687 0 0 0 9.25 9a.75.75 0 0 1 .75-.75Zm3.529 3.698a.75.75 0 0 1 .584.885 18.883 18.883 0 0 1-2.257 5.84.75.75 0 1 1-1.29-.764 17.386 17.386 0 0 0 2.078-5.377.75.75 0 0 1 .885-.584Z","clip-rule":"evenodd"})])}function yO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M13.5 4.938a7 7 0 1 1-9.006 1.737c.202-.257.59-.218.793.039.278.352.594.672.943.954.332.269.786-.049.773-.476a5.977 5.977 0 0 1 .572-2.759 6.026 6.026 0 0 1 2.486-2.665c.247-.14.55-.016.677.238A6.967 6.967 0 0 0 13.5 4.938ZM14 12a4 4 0 0 1-4 4c-1.913 0-3.52-1.398-3.91-3.182-.093-.429.44-.643.814-.413a4.043 4.043 0 0 0 1.601.564c.303.038.531-.24.51-.544a5.975 5.975 0 0 1 1.315-4.192.447.447 0 0 1 .431-.16A4.001 4.001 0 0 1 14 12Z","clip-rule":"evenodd"})])}function BO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.5 2.75a.75.75 0 0 0-1.5 0v14.5a.75.75 0 0 0 1.5 0v-4.392l1.657-.348a6.449 6.449 0 0 1 4.271.572 7.948 7.948 0 0 0 5.965.524l2.078-.64A.75.75 0 0 0 18 12.25v-8.5a.75.75 0 0 0-.904-.734l-2.38.501a7.25 7.25 0 0 1-4.186-.363l-.502-.2a8.75 8.75 0 0 0-5.053-.439l-1.475.31V2.75Z"})])}function EO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 4.75C2 3.784 2.784 3 3.75 3h4.836c.464 0 .909.184 1.237.513l1.414 1.414a.25.25 0 0 0 .177.073h4.836c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 16.25 17H3.75A1.75 1.75 0 0 1 2 15.25V4.75Zm8.75 4a.75.75 0 0 0-1.5 0v2.546l-.943-1.048a.75.75 0 1 0-1.114 1.004l2.25 2.5a.75.75 0 0 0 1.114 0l2.25-2.5a.75.75 0 1 0-1.114-1.004l-.943 1.048V8.75Z","clip-rule":"evenodd"})])}function bO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 4.75C2 3.784 2.784 3 3.75 3h4.836c.464 0 .909.184 1.237.513l1.414 1.414a.25.25 0 0 0 .177.073h4.836c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 16.25 17H3.75A1.75 1.75 0 0 1 2 15.25V4.75Zm10.25 7a.75.75 0 0 0 0-1.5h-4.5a.75.75 0 0 0 0 1.5h4.5Z","clip-rule":"evenodd"})])}function CO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.75 3A1.75 1.75 0 0 0 3 4.75v2.752l.104-.002h13.792c.035 0 .07 0 .104.002V6.75A1.75 1.75 0 0 0 15.25 5h-3.836a.25.25 0 0 1-.177-.073L9.823 3.513A1.75 1.75 0 0 0 8.586 3H4.75ZM3.104 9a1.75 1.75 0 0 0-1.673 2.265l1.385 4.5A1.75 1.75 0 0 0 4.488 17h11.023a1.75 1.75 0 0 0 1.673-1.235l1.384-4.5A1.75 1.75 0 0 0 16.896 9H3.104Z"})])}function MO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.75 3A1.75 1.75 0 0 0 2 4.75v10.5c0 .966.784 1.75 1.75 1.75h12.5A1.75 1.75 0 0 0 18 15.25v-8.5A1.75 1.75 0 0 0 16.25 5h-4.836a.25.25 0 0 1-.177-.073L9.823 3.513A1.75 1.75 0 0 0 8.586 3H3.75ZM10 8a.75.75 0 0 1 .75.75v1.5h1.5a.75.75 0 0 1 0 1.5h-1.5v1.5a.75.75 0 0 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5A.75.75 0 0 1 10 8Z","clip-rule":"evenodd"})])}function VO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.75 3A1.75 1.75 0 0 0 2 4.75v3.26a3.235 3.235 0 0 1 1.75-.51h12.5c.644 0 1.245.188 1.75.51V6.75A1.75 1.75 0 0 0 16.25 5h-4.836a.25.25 0 0 1-.177-.073L9.823 3.513A1.75 1.75 0 0 0 8.586 3H3.75ZM3.75 9A1.75 1.75 0 0 0 2 10.75v4.5c0 .966.784 1.75 1.75 1.75h12.5A1.75 1.75 0 0 0 18 15.25v-4.5A1.75 1.75 0 0 0 16.25 9H3.75Z"})])}function AO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.288 4.818A1.5 1.5 0 0 0 1 6.095v7.81a1.5 1.5 0 0 0 2.288 1.276l6.323-3.905c.155-.096.285-.213.389-.344v2.973a1.5 1.5 0 0 0 2.288 1.276l6.323-3.905a1.5 1.5 0 0 0 0-2.552l-6.323-3.906A1.5 1.5 0 0 0 10 6.095v2.972a1.506 1.506 0 0 0-.389-.343L3.288 4.818Z"})])}function _O(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.628 1.601C5.028 1.206 7.49 1 10 1s4.973.206 7.372.601a.75.75 0 0 1 .628.74v2.288a2.25 2.25 0 0 1-.659 1.59l-4.682 4.683a2.25 2.25 0 0 0-.659 1.59v3.037c0 .684-.31 1.33-.844 1.757l-1.937 1.55A.75.75 0 0 1 8 18.25v-5.757a2.25 2.25 0 0 0-.659-1.591L2.659 6.22A2.25 2.25 0 0 1 2 4.629V2.34a.75.75 0 0 1 .628-.74Z","clip-rule":"evenodd"})])}function NO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 5.25A2.25 2.25 0 0 1 3.25 3h13.5A2.25 2.25 0 0 1 19 5.25v9.5A2.25 2.25 0 0 1 16.75 17H3.25A2.25 2.25 0 0 1 1 14.75v-9.5Zm4.026 2.879C5.356 7.65 5.72 7.5 6 7.5s.643.15.974.629a.75.75 0 0 0 1.234-.854C7.66 6.484 6.873 6 6 6c-.873 0-1.66.484-2.208 1.275C3.25 8.059 3 9.048 3 10c0 .952.25 1.941.792 2.725C4.34 13.516 5.127 14 6 14c.873 0 1.66-.484 2.208-1.275a.75.75 0 0 0 .133-.427V10a.75.75 0 0 0-.75-.75H6.25a.75.75 0 0 0 0 1.5h.591v1.295c-.293.342-.6.455-.841.455-.279 0-.643-.15-.974-.629C4.69 11.386 4.5 10.711 4.5 10c0-.711.19-1.386.526-1.871ZM10.75 6a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-1.5 0v-6.5a.75.75 0 0 1 .75-.75Zm3 0h2.5a.75.75 0 0 1 0 1.5H14.5v1.75h.75a.75.75 0 0 1 0 1.5h-.75v2.5a.75.75 0 0 1-1.5 0v-6.5a.75.75 0 0 1 .75-.75Z","clip-rule":"evenodd"})])}function ZO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.25 3H3.5A1.5 1.5 0 0 0 2 4.5v4.75h3.365A2.75 2.75 0 0 1 9.25 5.362V3ZM2 10.75v4.75A1.5 1.5 0 0 0 3.5 17h5.75v-4.876A4.75 4.75 0 0 1 5 14.75a.75.75 0 0 1 0-1.5 3.251 3.251 0 0 0 3.163-2.5H2ZM10.75 17h5.75a1.5 1.5 0 0 0 1.5-1.5v-4.75h-6.163A3.251 3.251 0 0 0 15 13.25a.75.75 0 0 1 0 1.5 4.75 4.75 0 0 1-4.25-2.626V17ZM18 9.25V4.5A1.5 1.5 0 0 0 16.5 3h-5.75v2.362a2.75 2.75 0 0 1 3.885 3.888H18Zm-4.496-2.755a1.25 1.25 0 0 0-1.768 0c-.36.359-.526.999-.559 1.697-.01.228-.006.443.004.626.183.01.398.014.626.003.698-.033 1.338-.2 1.697-.559a1.25 1.25 0 0 0 0-1.767Zm-5.24 0a1.25 1.25 0 0 0-1.768 1.767c.36.36 1 .526 1.697.56.228.01.443.006.626-.004.01-.183.015-.398.004-.626-.033-.698-.2-1.338-.56-1.697Z","clip-rule":"evenodd"})])}function SO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M14 6a2.5 2.5 0 0 0-4-3 2.5 2.5 0 0 0-4 3H3.25C2.56 6 2 6.56 2 7.25v.5C2 8.44 2.56 9 3.25 9h6V6h1.5v3h6C17.44 9 18 8.44 18 7.75v-.5C18 6.56 17.44 6 16.75 6H14Zm-1-1.5a1 1 0 0 1-1 1h-1v-1a1 1 0 1 1 2 0Zm-6 0a1 1 0 0 0 1 1h1v-1a1 1 0 0 0-2 0Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M9.25 10.5H3v4.75A2.75 2.75 0 0 0 5.75 18h3.5v-7.5ZM10.75 18v-7.5H17v4.75A2.75 2.75 0 0 1 14.25 18h-3.5Z"})])}function $O(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M16.555 5.412a8.028 8.028 0 0 0-3.503-2.81 14.899 14.899 0 0 1 1.663 4.472 8.547 8.547 0 0 0 1.84-1.662ZM13.326 7.825a13.43 13.43 0 0 0-2.413-5.773 8.087 8.087 0 0 0-1.826 0 13.43 13.43 0 0 0-2.413 5.773A8.473 8.473 0 0 0 10 8.5c1.18 0 2.304-.24 3.326-.675ZM6.514 9.376A9.98 9.98 0 0 0 10 10c1.226 0 2.4-.22 3.486-.624a13.54 13.54 0 0 1-.351 3.759A13.54 13.54 0 0 1 10 13.5c-1.079 0-2.128-.127-3.134-.366a13.538 13.538 0 0 1-.352-3.758ZM5.285 7.074a14.9 14.9 0 0 1 1.663-4.471 8.028 8.028 0 0 0-3.503 2.81c.529.638 1.149 1.199 1.84 1.66ZM17.334 6.798a7.973 7.973 0 0 1 .614 4.115 13.47 13.47 0 0 1-3.178 1.72 15.093 15.093 0 0 0 .174-3.939 10.043 10.043 0 0 0 2.39-1.896ZM2.666 6.798a10.042 10.042 0 0 0 2.39 1.896 15.196 15.196 0 0 0 .174 3.94 13.472 13.472 0 0 1-3.178-1.72 7.973 7.973 0 0 1 .615-4.115ZM10 15c.898 0 1.778-.079 2.633-.23a13.473 13.473 0 0 1-1.72 3.178 8.099 8.099 0 0 1-1.826 0 13.47 13.47 0 0 1-1.72-3.178c.855.151 1.735.23 2.633.23ZM14.357 14.357a14.912 14.912 0 0 1-1.305 3.04 8.027 8.027 0 0 0 4.345-4.345c-.953.542-1.971.981-3.04 1.305ZM6.948 17.397a8.027 8.027 0 0 1-4.345-4.345c.953.542 1.971.981 3.04 1.305a14.912 14.912 0 0 0 1.305 3.04Z"})])}function IO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M18 10a8 8 0 1 1-16 0 8 8 0 0 1 16 0Zm-1.5 0a6.5 6.5 0 1 1-11-4.69v.447a3.5 3.5 0 0 0 1.025 2.475L8.293 10 8 10.293a1 1 0 0 0 0 1.414l1.06 1.06a1.5 1.5 0 0 1 .44 1.061v.363a1 1 0 0 0 .553.894l.276.139a1 1 0 0 0 1.342-.448l1.454-2.908a1.5 1.5 0 0 0-.281-1.731l-.772-.772a1 1 0 0 0-1.023-.242l-.384.128a.5.5 0 0 1-.606-.25l-.296-.592a.481.481 0 0 1 .646-.646l.262.131a1 1 0 0 0 .447.106h.188a1 1 0 0 0 .949-1.316l-.068-.204a.5.5 0 0 1 .149-.538l1.44-1.234A6.492 6.492 0 0 1 16.5 10Z","clip-rule":"evenodd"})])}function HO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M18 10a8 8 0 1 1-16 0 8 8 0 0 1 16 0Zm-6.5 6.326a6.52 6.52 0 0 1-1.5.174 6.487 6.487 0 0 1-5.011-2.36l.49-.98a.423.423 0 0 1 .614-.164l.294.196a.992.992 0 0 0 1.491-1.139l-.197-.593a.252.252 0 0 1 .126-.304l1.973-.987a.938.938 0 0 0 .361-1.359.375.375 0 0 1 .239-.576l.125-.025A2.421 2.421 0 0 0 12.327 6.6l.05-.149a1 1 0 0 0-.242-1.023l-1.489-1.489a.5.5 0 0 1-.146-.353v-.067a6.5 6.5 0 0 1 5.392 9.23 1.398 1.398 0 0 0-.68-.244l-.566-.566a1.5 1.5 0 0 0-1.06-.439h-.172a1.5 1.5 0 0 0-1.06.44l-.593.592a.501.501 0 0 1-.13.093l-1.578.79a1 1 0 0 0-.553.894v.191a1 1 0 0 0 1 1h.5a.5.5 0 0 1 .5.5v.326Z","clip-rule":"evenodd"})])}function TO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M18 10a8 8 0 1 1-16 0 8 8 0 0 1 16 0Zm-1.503.204A6.5 6.5 0 1 1 7.95 3.83L6.927 5.62a1.453 1.453 0 0 0 1.91 2.02l.175-.087a.5.5 0 0 1 .224-.053h.146a.5.5 0 0 1 .447.724l-.028.055a.4.4 0 0 1-.357.221h-.502a2.26 2.26 0 0 0-1.88 1.006l-.044.066a2.099 2.099 0 0 0 1.085 3.156.58.58 0 0 1 .397.547v1.05a1.175 1.175 0 0 0 2.093.734l1.611-2.014c.192-.24.296-.536.296-.842 0-.316.128-.624.353-.85a1.363 1.363 0 0 0 .173-1.716l-.464-.696a.369.369 0 0 1 .527-.499l.343.257c.316.237.738.275 1.091.098a.586.586 0 0 1 .677.11l1.297 1.297Z","clip-rule":"evenodd"})])}function LO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.75 4a.75.75 0 0 1 .75.75v4.5h5v-4.5a.75.75 0 0 1 1.5 0v10.5a.75.75 0 0 1-1.5 0v-4.5h-5v4.5a.75.75 0 0 1-1.5 0V4.75A.75.75 0 0 1 2.75 4ZM13 8.75a.75.75 0 0 1 .75-.75h1.75a.75.75 0 0 1 .75.75v5.75h1a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1 0-1.5h1v-5h-1a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function DO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.75 4a.75.75 0 0 1 .75.75v4.5h5v-4.5a.75.75 0 0 1 1.5 0v10.5a.75.75 0 0 1-1.5 0v-4.5h-5v4.5a.75.75 0 0 1-1.5 0V4.75A.75.75 0 0 1 2.75 4ZM15 9.5c-.729 0-1.445.051-2.146.15a.75.75 0 0 1-.208-1.486 16.887 16.887 0 0 1 3.824-.1c.855.074 1.512.78 1.527 1.637a17.476 17.476 0 0 1-.009.931 1.713 1.713 0 0 1-1.18 1.556l-2.453.818a1.25 1.25 0 0 0-.855 1.185v.309h3.75a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75v-1.059a2.75 2.75 0 0 1 1.88-2.608l2.454-.818c.102-.034.153-.117.155-.188a15.556 15.556 0 0 0 .009-.85.171.171 0 0 0-.158-.169A15.458 15.458 0 0 0 15 9.5Z","clip-rule":"evenodd"})])}function PO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.75 4a.75.75 0 0 1 .75.75v4.5h5v-4.5a.75.75 0 0 1 1.5 0v10.5a.75.75 0 0 1-1.5 0v-4.5h-5v4.5a.75.75 0 0 1-1.5 0V4.75A.75.75 0 0 1 2.75 4ZM15 9.5c-.73 0-1.448.051-2.15.15a.75.75 0 1 1-.209-1.485 16.886 16.886 0 0 1 3.476-.128c.985.065 1.878.837 1.883 1.932V10a6.75 6.75 0 0 1-.301 2A6.75 6.75 0 0 1 18 14v.031c-.005 1.095-.898 1.867-1.883 1.932a17.018 17.018 0 0 1-3.467-.127.75.75 0 0 1 .209-1.485 15.377 15.377 0 0 0 3.16.115c.308-.02.48-.24.48-.441L16.5 14c0-.431-.052-.85-.15-1.25h-2.6a.75.75 0 0 1 0-1.5h2.6c.098-.4.15-.818.15-1.25v-.024c-.001-.201-.173-.422-.481-.443A15.485 15.485 0 0 0 15 9.5Z","clip-rule":"evenodd"})])}function OO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11 2a1 1 0 1 0-2 0v6.5a.5.5 0 0 1-1 0V3a1 1 0 1 0-2 0v5.5a.5.5 0 0 1-1 0V5a1 1 0 1 0-2 0v7a7 7 0 1 0 14 0V8a1 1 0 1 0-2 0v3.5a.5.5 0 0 1-1 0V3a1 1 0 1 0-2 0v5.5a.5.5 0 0 1-1 0V2Z","clip-rule":"evenodd"})])}function RO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M18.905 12.75a1.25 1.25 0 1 1-2.5 0v-7.5a1.25 1.25 0 0 1 2.5 0v7.5ZM8.905 17v1.3c0 .268-.14.526-.395.607A2 2 0 0 1 5.905 17c0-.995.182-1.948.514-2.826.204-.54-.166-1.174-.744-1.174h-2.52c-1.243 0-2.261-1.01-2.146-2.247.193-2.08.651-4.082 1.341-5.974C2.752 3.678 3.833 3 5.005 3h3.192a3 3 0 0 1 1.341.317l2.734 1.366A3 3 0 0 0 13.613 5h1.292v7h-.963c-.685 0-1.258.482-1.612 1.068a4.01 4.01 0 0 1-2.166 1.73c-.432.143-.853.386-1.011.814-.16.432-.248.9-.248 1.388Z"})])}function zO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M1 8.25a1.25 1.25 0 1 1 2.5 0v7.5a1.25 1.25 0 1 1-2.5 0v-7.5ZM11 3V1.7c0-.268.14-.526.395-.607A2 2 0 0 1 14 3c0 .995-.182 1.948-.514 2.826-.204.54.166 1.174.744 1.174h2.52c1.243 0 2.261 1.01 2.146 2.247a23.864 23.864 0 0 1-1.341 5.974C17.153 16.323 16.072 17 14.9 17h-3.192a3 3 0 0 1-1.341-.317l-2.734-1.366A3 3 0 0 0 6.292 15H5V8h.963c.685 0 1.258-.483 1.612-1.068a4.011 4.011 0 0 1 2.166-1.73c.432-.143.853-.386 1.011-.814.16-.432.248-.9.248-1.388Z"})])}function jO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.493 2.852a.75.75 0 0 0-1.486-.204L7.545 6H4.198a.75.75 0 0 0 0 1.5h3.14l-.69 5H3.302a.75.75 0 0 0 0 1.5h3.14l-.435 3.148a.75.75 0 0 0 1.486.204L7.955 14h2.986l-.434 3.148a.75.75 0 0 0 1.486.204L12.456 14h3.346a.75.75 0 0 0 0-1.5h-3.14l.69-5h3.346a.75.75 0 0 0 0-1.5h-3.14l.435-3.148a.75.75 0 0 0-1.486-.204L12.045 6H9.059l.434-3.148ZM8.852 7.5l-.69 5h2.986l.69-5H8.852Z","clip-rule":"evenodd"})])}function FO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"m9.653 16.915-.005-.003-.019-.01a20.759 20.759 0 0 1-1.162-.682 22.045 22.045 0 0 1-2.582-1.9C4.045 12.733 2 10.352 2 7.5a4.5 4.5 0 0 1 8-2.828A4.5 4.5 0 0 1 18 7.5c0 2.852-2.044 5.233-3.885 6.82a22.049 22.049 0 0 1-3.744 2.582l-.019.01-.005.003h-.002a.739.739 0 0 1-.69.001l-.002-.001Z"})])}function UO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M14.916 2.404a.75.75 0 0 1-.32 1.011l-.596.31V17a1 1 0 0 1-1 1h-2.26a.75.75 0 0 1-.75-.75v-3.5a.75.75 0 0 0-.75-.75H6.75a.75.75 0 0 0-.75.75v3.5a.75.75 0 0 1-.75.75h-3.5a.75.75 0 0 1 0-1.5H2V9.957a.75.75 0 0 1-.596-1.372L2 8.275V5.75a.75.75 0 0 1 1.5 0v1.745l10.404-5.41a.75.75 0 0 1 1.012.319ZM15.861 8.57a.75.75 0 0 1 .736-.025l1.999 1.04A.75.75 0 0 1 18 10.957V16.5h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75V9.21a.75.75 0 0 1 .361-.64Z"})])}function WO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.293 2.293a1 1 0 0 1 1.414 0l7 7A1 1 0 0 1 17 11h-1v6a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-6H3a1 1 0 0 1-.707-1.707l7-7Z","clip-rule":"evenodd"})])}function qO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V6Zm4 1.5a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm2 3a4 4 0 0 0-3.665 2.395.75.75 0 0 0 .416 1A8.98 8.98 0 0 0 7 14.5a8.98 8.98 0 0 0 3.249-.604.75.75 0 0 0 .416-1.001A4.001 4.001 0 0 0 7 10.5Zm5-3.75a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Zm0 6.5a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Zm.75-4a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Z","clip-rule":"evenodd"})])}function YO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10 2a.75.75 0 0 1 .75.75v5.59l1.95-2.1a.75.75 0 1 1 1.1 1.02l-3.25 3.5a.75.75 0 0 1-1.1 0L6.2 7.26a.75.75 0 1 1 1.1-1.02l1.95 2.1V2.75A.75.75 0 0 1 10 2Z"}),e.createElementVNode("path",{d:"M5.273 4.5a1.25 1.25 0 0 0-1.205.918l-1.523 5.52c-.006.02-.01.041-.015.062H6a1 1 0 0 1 .894.553l.448.894a1 1 0 0 0 .894.553h3.438a1 1 0 0 0 .86-.49l.606-1.02A1 1 0 0 1 14 11h3.47a1.318 1.318 0 0 0-.015-.062l-1.523-5.52a1.25 1.25 0 0 0-1.205-.918h-.977a.75.75 0 0 1 0-1.5h.977a2.75 2.75 0 0 1 2.651 2.019l1.523 5.52c.066.239.099.485.099.732V15a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-3.73c0-.246.033-.492.099-.73l1.523-5.521A2.75 2.75 0 0 1 5.273 3h.977a.75.75 0 0 1 0 1.5h-.977Z"})])}function KO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.045 6.954a2.75 2.75 0 0 1 .217-.678L2.53 3.58A2.75 2.75 0 0 1 5.019 2h9.962a2.75 2.75 0 0 1 2.488 1.58l1.27 2.696c.101.216.174.444.216.678A1 1 0 0 1 19 7.25v1.5a2.75 2.75 0 0 1-2.75 2.75H3.75A2.75 2.75 0 0 1 1 8.75v-1.5a1 1 0 0 1 .045-.296Zm2.843-2.736A1.25 1.25 0 0 1 5.02 3.5h9.962c.484 0 .925.28 1.13.718l.957 2.032H14a1 1 0 0 0-.86.49l-.606 1.02a1 1 0 0 1-.86.49H8.236a1 1 0 0 1-.894-.553l-.448-.894A1 1 0 0 0 6 6.25H2.932l.956-2.032Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M1 14a1 1 0 0 1 1-1h4a1 1 0 0 1 .894.553l.448.894a1 1 0 0 0 .894.553h3.438a1 1 0 0 0 .86-.49l.606-1.02A1 1 0 0 1 14 13h4a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-2Z"})])}function GO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 11.27c0-.246.033-.492.099-.73l1.523-5.521A2.75 2.75 0 0 1 5.273 3h9.454a2.75 2.75 0 0 1 2.651 2.019l1.523 5.52c.066.239.099.485.099.732V15a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-3.73Zm3.068-5.852A1.25 1.25 0 0 1 5.273 4.5h9.454a1.25 1.25 0 0 1 1.205.918l1.523 5.52c.006.02.01.041.015.062H14a1 1 0 0 0-.86.49l-.606 1.02a1 1 0 0 1-.86.49H8.236a1 1 0 0 1-.894-.553l-.448-.894A1 1 0 0 0 6 11H2.53l.015-.062 1.523-5.52Z","clip-rule":"evenodd"})])}function JO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M18 10a8 8 0 1 1-16 0 8 8 0 0 1 16 0Zm-7-4a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM9 9a.75.75 0 0 0 0 1.5h.253a.25.25 0 0 1 .244.304l-.459 2.066A1.75 1.75 0 0 0 10.747 15H11a.75.75 0 0 0 0-1.5h-.253a.25.25 0 0 1-.244-.304l.459-2.066A1.75 1.75 0 0 0 9.253 9H9Z","clip-rule":"evenodd"})])}function XO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 2.75A.75.75 0 0 1 8.75 2h7.5a.75.75 0 0 1 0 1.5h-3.215l-4.483 13h2.698a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1 0-1.5h3.215l4.483-13H8.75A.75.75 0 0 1 8 2.75Z","clip-rule":"evenodd"})])}function QO(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 7a5 5 0 1 1 3.61 4.804l-1.903 1.903A1 1 0 0 1 9 14H8v1a1 1 0 0 1-1 1H6v1a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-2a1 1 0 0 1 .293-.707L8.196 8.39A5.002 5.002 0 0 1 8 7Zm5-3a.75.75 0 0 0 0 1.5A1.5 1.5 0 0 1 14.5 7 .75.75 0 0 0 16 7a3 3 0 0 0-3-3Z","clip-rule":"evenodd"})])}function eR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7.75 2.75a.75.75 0 0 0-1.5 0v1.258a32.987 32.987 0 0 0-3.599.278.75.75 0 1 0 .198 1.487A31.545 31.545 0 0 1 8.7 5.545 19.381 19.381 0 0 1 7 9.56a19.418 19.418 0 0 1-1.002-2.05.75.75 0 0 0-1.384.577 20.935 20.935 0 0 0 1.492 2.91 19.613 19.613 0 0 1-3.828 4.154.75.75 0 1 0 .945 1.164A21.116 21.116 0 0 0 7 12.331c.095.132.192.262.29.391a.75.75 0 0 0 1.194-.91c-.204-.266-.4-.538-.59-.815a20.888 20.888 0 0 0 2.333-5.332c.31.031.618.068.924.108a.75.75 0 0 0 .198-1.487 32.832 32.832 0 0 0-3.599-.278V2.75Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M13 8a.75.75 0 0 1 .671.415l4.25 8.5a.75.75 0 1 1-1.342.67L15.787 16h-5.573l-.793 1.585a.75.75 0 1 1-1.342-.67l4.25-8.5A.75.75 0 0 1 13 8Zm2.037 6.5L13 10.427 10.964 14.5h4.073Z","clip-rule":"evenodd"})])}function tR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"m7.171 4.146 1.947 2.466a3.514 3.514 0 0 1 1.764 0l1.947-2.466a6.52 6.52 0 0 0-5.658 0Zm8.683 3.025-2.466 1.947c.15.578.15 1.186 0 1.764l2.466 1.947a6.52 6.52 0 0 0 0-5.658Zm-3.025 8.683-1.947-2.466c-.578.15-1.186.15-1.764 0l-1.947 2.466a6.52 6.52 0 0 0 5.658 0ZM4.146 12.83l2.466-1.947a3.514 3.514 0 0 1 0-1.764L4.146 7.171a6.52 6.52 0 0 0 0 5.658ZM5.63 3.297a8.01 8.01 0 0 1 8.738 0 8.031 8.031 0 0 1 2.334 2.334 8.01 8.01 0 0 1 0 8.738 8.033 8.033 0 0 1-2.334 2.334 8.01 8.01 0 0 1-8.738 0 8.032 8.032 0 0 1-2.334-2.334 8.01 8.01 0 0 1 0-8.738A8.03 8.03 0 0 1 5.63 3.297Zm5.198 4.882a2.008 2.008 0 0 0-2.243.407 1.994 1.994 0 0 0-.407 2.243 1.993 1.993 0 0 0 .992.992 2.008 2.008 0 0 0 2.243-.407c.176-.175.31-.374.407-.585a2.008 2.008 0 0 0-.407-2.243 1.993 1.993 0 0 0-.585-.407Z","clip-rule":"evenodd"})])}function nR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10 1a6 6 0 0 0-3.815 10.631C7.237 12.5 8 13.443 8 14.456v.644a.75.75 0 0 0 .572.729 6.016 6.016 0 0 0 2.856 0A.75.75 0 0 0 12 15.1v-.644c0-1.013.762-1.957 1.815-2.825A6 6 0 0 0 10 1ZM8.863 17.414a.75.75 0 0 0-.226 1.483 9.066 9.066 0 0 0 2.726 0 .75.75 0 0 0-.226-1.483 7.553 7.553 0 0 1-2.274 0Z"})])}function rR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.22 2.22a.75.75 0 0 1 1.06 0l4.46 4.46c.128-.178.272-.349.432-.508l3-3a4 4 0 0 1 5.657 5.656l-1.225 1.225a.75.75 0 1 1-1.06-1.06l1.224-1.225a2.5 2.5 0 0 0-3.536-3.536l-3 3a2.504 2.504 0 0 0-.406.533l2.59 2.59a2.49 2.49 0 0 0-.79-1.254.75.75 0 1 1 .977-1.138 3.997 3.997 0 0 1 1.306 3.886l4.871 4.87a.75.75 0 1 1-1.06 1.061l-5.177-5.177-.006-.005-4.134-4.134a.65.65 0 0 1-.005-.006L2.22 3.28a.75.75 0 0 1 0-1.06Zm3.237 7.727a.75.75 0 0 1 0 1.06l-1.225 1.225a2.5 2.5 0 0 0 3.536 3.536l1.879-1.879a.75.75 0 1 1 1.06 1.06L8.83 16.83a4 4 0 0 1-5.657-5.657l1.224-1.225a.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function oR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M12.232 4.232a2.5 2.5 0 0 1 3.536 3.536l-1.225 1.224a.75.75 0 0 0 1.061 1.06l1.224-1.224a4 4 0 0 0-5.656-5.656l-3 3a4 4 0 0 0 .225 5.865.75.75 0 0 0 .977-1.138 2.5 2.5 0 0 1-.142-3.667l3-3Z"}),e.createElementVNode("path",{d:"M11.603 7.963a.75.75 0 0 0-.977 1.138 2.5 2.5 0 0 1 .142 3.667l-3 3a2.5 2.5 0 0 1-3.536-3.536l1.225-1.224a.75.75 0 0 0-1.061-1.06l-1.224 1.224a4 4 0 1 0 5.656 5.656l3-3a4 4 0 0 0-.225-5.865Z"})])}function aR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6 4.75A.75.75 0 0 1 6.75 4h10.5a.75.75 0 0 1 0 1.5H6.75A.75.75 0 0 1 6 4.75ZM6 10a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H6.75A.75.75 0 0 1 6 10Zm0 5.25a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H6.75a.75.75 0 0 1-.75-.75ZM1.99 4.75a1 1 0 0 1 1-1H3a1 1 0 0 1 1 1v.01a1 1 0 0 1-1 1h-.01a1 1 0 0 1-1-1v-.01ZM1.99 15.25a1 1 0 0 1 1-1H3a1 1 0 0 1 1 1v.01a1 1 0 0 1-1 1h-.01a1 1 0 0 1-1-1v-.01ZM1.99 10a1 1 0 0 1 1-1H3a1 1 0 0 1 1 1v.01a1 1 0 0 1-1 1h-.01a1 1 0 0 1-1-1V10Z","clip-rule":"evenodd"})])}function lR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 1a4.5 4.5 0 0 0-4.5 4.5V9H5a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2h-.5V5.5A4.5 4.5 0 0 0 10 1Zm3 8V5.5a3 3 0 1 0-6 0V9h6Z","clip-rule":"evenodd"})])}function iR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M14.5 1A4.5 4.5 0 0 0 10 5.5V9H3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2h-1.5V5.5a3 3 0 1 1 6 0v2.75a.75.75 0 0 0 1.5 0V5.5A4.5 4.5 0 0 0 14.5 1Z","clip-rule":"evenodd"})])}function cR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6.5 9a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM9 5a4 4 0 1 0 2.248 7.309l1.472 1.471a.75.75 0 1 0 1.06-1.06l-1.471-1.472A4 4 0 0 0 9 5Z","clip-rule":"evenodd"})])}function sR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6.75 8.25a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9 2a7 7 0 1 0 4.391 12.452l3.329 3.328a.75.75 0 1 0 1.06-1.06l-3.328-3.329A7 7 0 0 0 9 2ZM3.5 9a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0Z","clip-rule":"evenodd"})])}function dR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M9 6a.75.75 0 0 1 .75.75v1.5h1.5a.75.75 0 0 1 0 1.5h-1.5v1.5a.75.75 0 0 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5A.75.75 0 0 1 9 6Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 9a7 7 0 1 1 12.452 4.391l3.328 3.329a.75.75 0 1 1-1.06 1.06l-3.329-3.328A7 7 0 0 1 2 9Zm7-5.5a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Z","clip-rule":"evenodd"})])}function uR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9 3.5a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11ZM2 9a7 7 0 1 1 12.452 4.391l3.328 3.329a.75.75 0 1 1-1.06 1.06l-3.329-3.328A7 7 0 0 1 2 9Z","clip-rule":"evenodd"})])}function hR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"m9.69 18.933.003.001C9.89 19.02 10 19 10 19s.11.02.308-.066l.002-.001.006-.003.018-.008a5.741 5.741 0 0 0 .281-.14c.186-.096.446-.24.757-.433.62-.384 1.445-.966 2.274-1.765C15.302 14.988 17 12.493 17 9A7 7 0 1 0 3 9c0 3.492 1.698 5.988 3.355 7.584a13.731 13.731 0 0 0 2.273 1.765 11.842 11.842 0 0 0 .976.544l.062.029.018.008.006.003ZM10 11.25a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5Z","clip-rule":"evenodd"})])}function pR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.157 2.176a1.5 1.5 0 0 0-1.147 0l-4.084 1.69A1.5 1.5 0 0 0 2 5.25v10.877a1.5 1.5 0 0 0 2.074 1.386l3.51-1.452 4.26 1.762a1.5 1.5 0 0 0 1.146 0l4.083-1.69A1.5 1.5 0 0 0 18 14.75V3.872a1.5 1.5 0 0 0-2.073-1.386l-3.51 1.452-4.26-1.762ZM7.58 5a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-1.5 0v-6.5A.75.75 0 0 1 7.58 5Zm5.59 2.75a.75.75 0 0 0-1.5 0v6.5a.75.75 0 0 0 1.5 0v-6.5Z","clip-rule":"evenodd"})])}function fR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M13.92 3.845a19.362 19.362 0 0 1-6.3 1.98C6.765 5.942 5.89 6 5 6a4 4 0 0 0-.504 7.969 15.97 15.97 0 0 0 1.271 3.34c.397.771 1.342 1 2.05.59l.867-.5c.726-.419.94-1.32.588-2.02-.166-.331-.315-.666-.448-1.004 1.8.357 3.511.963 5.096 1.78A17.964 17.964 0 0 0 15 10c0-2.162-.381-4.235-1.08-6.155ZM15.243 3.097A19.456 19.456 0 0 1 16.5 10c0 2.43-.445 4.758-1.257 6.904l-.03.077a.75.75 0 0 0 1.401.537 20.903 20.903 0 0 0 1.312-5.745 2 2 0 0 0 0-3.546 20.902 20.902 0 0 0-1.312-5.745.75.75 0 0 0-1.4.537l.029.078Z"})])}function mR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7 4a3 3 0 0 1 6 0v6a3 3 0 1 1-6 0V4Z"}),e.createElementVNode("path",{d:"M5.5 9.643a.75.75 0 0 0-1.5 0V10c0 3.06 2.29 5.585 5.25 5.954V17.5h-1.5a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-1.5v-1.546A6.001 6.001 0 0 0 16 10v-.357a.75.75 0 0 0-1.5 0V10a4.5 4.5 0 0 1-9 0v-.357Z"})])}function wR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM6.75 9.25a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Z","clip-rule":"evenodd"})])}function gR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6.75 9.25a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Z"})])}function kR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 10a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H4.75A.75.75 0 0 1 4 10Z","clip-rule":"evenodd"})])}function xR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.455 2.004a.75.75 0 0 1 .26.77 7 7 0 0 0 9.958 7.967.75.75 0 0 1 1.067.853A8.5 8.5 0 1 1 6.647 1.921a.75.75 0 0 1 .808.083Z","clip-rule":"evenodd"})])}function vR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M17.721 1.599a.75.75 0 0 1 .279.583v11.29a2.25 2.25 0 0 1-1.774 2.2l-2.041.44a2.216 2.216 0 0 1-.938-4.332l2.662-.577a.75.75 0 0 0 .591-.733V6.112l-8 1.73v7.684a2.25 2.25 0 0 1-1.774 2.2l-2.042.44a2.216 2.216 0 1 1-.935-4.331l2.659-.573A.75.75 0 0 0 7 12.529V4.236a.75.75 0 0 1 .591-.733l9.5-2.054a.75.75 0 0 1 .63.15Z","clip-rule":"evenodd"})])}function yR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 3.5A1.5 1.5 0 0 1 3.5 2h9A1.5 1.5 0 0 1 14 3.5v11.75A2.75 2.75 0 0 0 16.75 18h-12A2.75 2.75 0 0 1 2 15.25V3.5Zm3.75 7a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Zm0 3a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5ZM5 5.75A.75.75 0 0 1 5.75 5h4.5a.75.75 0 0 1 .75.75v2.5a.75.75 0 0 1-.75.75h-4.5A.75.75 0 0 1 5 8.25v-2.5Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M16.5 6.5h-1v8.75a1.25 1.25 0 1 0 2.5 0V8a1.5 1.5 0 0 0-1.5-1.5Z"})])}function BR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"m5.965 4.904 9.131 9.131a6.5 6.5 0 0 0-9.131-9.131Zm8.07 10.192L4.904 5.965a6.5 6.5 0 0 0 9.131 9.131ZM4.343 4.343a8 8 0 1 1 11.314 11.314A8 8 0 0 1 4.343 4.343Z","clip-rule":"evenodd"})])}function ER(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3 1.25a.75.75 0 0 0 0 1.5h.25v2.5a.75.75 0 0 0 1.5 0V2A.75.75 0 0 0 4 1.25H3ZM2.97 8.654a3.5 3.5 0 0 1 1.524-.12.034.034 0 0 1-.012.012L2.415 9.579A.75.75 0 0 0 2 10.25v1c0 .414.336.75.75.75h2.5a.75.75 0 0 0 0-1.5H3.927l1.225-.613c.52-.26.848-.79.848-1.371 0-.647-.429-1.327-1.193-1.451a5.03 5.03 0 0 0-2.277.155.75.75 0 0 0 .44 1.434ZM7.75 3a.75.75 0 0 0 0 1.5h9.5a.75.75 0 0 0 0-1.5h-9.5ZM7.75 9.25a.75.75 0 0 0 0 1.5h9.5a.75.75 0 0 0 0-1.5h-9.5ZM7.75 15.5a.75.75 0 0 0 0 1.5h9.5a.75.75 0 0 0 0-1.5h-9.5ZM2.625 13.875a.75.75 0 0 0 0 1.5h1.5a.125.125 0 0 1 0 .25H3.5a.75.75 0 0 0 0 1.5h.625a.125.125 0 0 1 0 .25h-1.5a.75.75 0 0 0 0 1.5h1.5a1.625 1.625 0 0 0 1.37-2.5 1.625 1.625 0 0 0-1.37-2.5h-1.5Z"})])}function bR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M15.993 1.385a1.87 1.87 0 0 1 2.623 2.622l-4.03 5.27a12.749 12.749 0 0 1-4.237 3.562 4.508 4.508 0 0 0-3.188-3.188 12.75 12.75 0 0 1 3.562-4.236l5.27-4.03ZM6 11a3 3 0 0 0-3 3 .5.5 0 0 1-.72.45.75.75 0 0 0-1.035.931A4.001 4.001 0 0 0 9 14.004V14a3.01 3.01 0 0 0-1.66-2.685A2.99 2.99 0 0 0 6 11Z"})])}function CR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.105 2.288a.75.75 0 0 0-.826.95l1.414 4.926A1.5 1.5 0 0 0 5.135 9.25h6.115a.75.75 0 0 1 0 1.5H5.135a1.5 1.5 0 0 0-1.442 1.086l-1.414 4.926a.75.75 0 0 0 .826.95 28.897 28.897 0 0 0 15.293-7.155.75.75 0 0 0 0-1.114A28.897 28.897 0 0 0 3.105 2.288Z"})])}function MR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15.621 4.379a3 3 0 0 0-4.242 0l-7 7a3 3 0 0 0 4.241 4.243h.001l.497-.5a.75.75 0 0 1 1.064 1.057l-.498.501-.002.002a4.5 4.5 0 0 1-6.364-6.364l7-7a4.5 4.5 0 0 1 6.368 6.36l-3.455 3.553A2.625 2.625 0 1 1 9.52 9.52l3.45-3.451a.75.75 0 1 1 1.061 1.06l-3.45 3.451a1.125 1.125 0 0 0 1.587 1.595l3.454-3.553a3 3 0 0 0 0-4.242Z","clip-rule":"evenodd"})])}function VR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm5-2.25A.75.75 0 0 1 7.75 7h.5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1-.75-.75v-4.5Zm4 0a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1-.75-.75v-4.5Z","clip-rule":"evenodd"})])}function AR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.75 3a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75h1.5a.75.75 0 0 0 .75-.75V3.75A.75.75 0 0 0 7.25 3h-1.5ZM12.75 3a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75h1.5a.75.75 0 0 0 .75-.75V3.75a.75.75 0 0 0-.75-.75h-1.5Z"})])}function _R(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"m5.433 13.917 1.262-3.155A4 4 0 0 1 7.58 9.42l6.92-6.918a2.121 2.121 0 0 1 3 3l-6.92 6.918c-.383.383-.84.685-1.343.886l-3.154 1.262a.5.5 0 0 1-.65-.65Z"}),e.createElementVNode("path",{d:"M3.5 5.75c0-.69.56-1.25 1.25-1.25H10A.75.75 0 0 0 10 3H4.75A2.75 2.75 0 0 0 2 5.75v9.5A2.75 2.75 0 0 0 4.75 18h9.5A2.75 2.75 0 0 0 17 15.25V10a.75.75 0 0 0-1.5 0v5.25c0 .69-.56 1.25-1.25 1.25h-9.5c-.69 0-1.25-.56-1.25-1.25v-9.5Z"})])}function NR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"m2.695 14.762-1.262 3.155a.5.5 0 0 0 .65.65l3.155-1.262a4 4 0 0 0 1.343-.886L17.5 5.501a2.121 2.121 0 0 0-3-3L3.58 13.419a4 4 0 0 0-.885 1.343Z"})])}function ZR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.597 7.348a3 3 0 0 0 0 5.304 3 3 0 0 0 3.75 3.751 3 3 0 0 0 5.305 0 3 3 0 0 0 3.751-3.75 3 3 0 0 0 0-5.305 3 3 0 0 0-3.75-3.751 3 3 0 0 0-5.305 0 3 3 0 0 0-3.751 3.75Zm9.933.182a.75.75 0 0 0-1.06-1.06l-6 6a.75.75 0 1 0 1.06 1.06l6-6Zm.47 5.22a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM7.25 8.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z","clip-rule":"evenodd"})])}function SR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.5 2A1.5 1.5 0 0 0 2 3.5V5c0 1.149.15 2.263.43 3.326a13.022 13.022 0 0 0 9.244 9.244c1.063.28 2.177.43 3.326.43h1.5a1.5 1.5 0 0 0 1.5-1.5v-1.148a1.5 1.5 0 0 0-1.175-1.465l-3.223-.716a1.5 1.5 0 0 0-1.767 1.052l-.267.933c-.117.41-.555.643-.95.48a11.542 11.542 0 0 1-6.254-6.254c-.163-.395.07-.833.48-.95l.933-.267a1.5 1.5 0 0 0 1.052-1.767l-.716-3.223A1.5 1.5 0 0 0 4.648 2H3.5ZM16.72 2.22a.75.75 0 1 1 1.06 1.06L14.56 6.5h2.69a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 1 1.5 0v2.69l3.22-3.22Z"})])}function $R(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.5 2A1.5 1.5 0 0 0 2 3.5V5c0 1.149.15 2.263.43 3.326a13.022 13.022 0 0 0 9.244 9.244c1.063.28 2.177.43 3.326.43h1.5a1.5 1.5 0 0 0 1.5-1.5v-1.148a1.5 1.5 0 0 0-1.175-1.465l-3.223-.716a1.5 1.5 0 0 0-1.767 1.052l-.267.933c-.117.41-.555.643-.95.48a11.542 11.542 0 0 1-6.254-6.254c-.163-.395.07-.833.48-.95l.933-.267a1.5 1.5 0 0 0 1.052-1.767l-.716-3.223A1.5 1.5 0 0 0 4.648 2H3.5ZM16.5 4.56l-3.22 3.22a.75.75 0 1 1-1.06-1.06l3.22-3.22h-2.69a.75.75 0 0 1 0-1.5h4.5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0V4.56Z"})])}function IR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.5 2A1.5 1.5 0 0 0 2 3.5V5c0 1.149.15 2.263.43 3.326a13.022 13.022 0 0 0 9.244 9.244c1.063.28 2.177.43 3.326.43h1.5a1.5 1.5 0 0 0 1.5-1.5v-1.148a1.5 1.5 0 0 0-1.175-1.465l-3.223-.716a1.5 1.5 0 0 0-1.767 1.052l-.267.933c-.117.41-.555.643-.95.48a11.542 11.542 0 0 1-6.254-6.254c-.163-.395.07-.833.48-.95l.933-.267a1.5 1.5 0 0 0 1.052-1.767l-.716-3.223A1.5 1.5 0 0 0 4.648 2H3.5Zm9.78.22a.75.75 0 1 0-1.06 1.06L13.94 5l-1.72 1.72a.75.75 0 0 0 1.06 1.06L15 6.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L16.06 5l1.72-1.72a.75.75 0 0 0-1.06-1.06L15 3.94l-1.72-1.72Z","clip-rule":"evenodd"})])}function HR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 3.5A1.5 1.5 0 0 1 3.5 2h1.148a1.5 1.5 0 0 1 1.465 1.175l.716 3.223a1.5 1.5 0 0 1-1.052 1.767l-.933.267c-.41.117-.643.555-.48.95a11.542 11.542 0 0 0 6.254 6.254c.395.163.833-.07.95-.48l.267-.933a1.5 1.5 0 0 1 1.767-1.052l3.223.716A1.5 1.5 0 0 1 18 15.352V16.5a1.5 1.5 0 0 1-1.5 1.5H15c-1.149 0-2.263-.15-3.326-.43A13.022 13.022 0 0 1 2.43 8.326 13.019 13.019 0 0 1 2 5V3.5Z","clip-rule":"evenodd"})])}function TR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 5.25A2.25 2.25 0 0 1 3.25 3h13.5A2.25 2.25 0 0 1 19 5.25v9.5A2.25 2.25 0 0 1 16.75 17H3.25A2.25 2.25 0 0 1 1 14.75v-9.5Zm1.5 5.81v3.69c0 .414.336.75.75.75h13.5a.75.75 0 0 0 .75-.75v-2.69l-2.22-2.219a.75.75 0 0 0-1.06 0l-1.91 1.909.47.47a.75.75 0 1 1-1.06 1.06L6.53 8.091a.75.75 0 0 0-1.06 0l-2.97 2.97ZM12 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z","clip-rule":"evenodd"})])}function LR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm6.39-2.908a.75.75 0 0 1 .766.027l3.5 2.25a.75.75 0 0 1 0 1.262l-3.5 2.25A.75.75 0 0 1 8 12.25v-4.5a.75.75 0 0 1 .39-.658Z","clip-rule":"evenodd"})])}function DR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M12.75 4a.75.75 0 0 0-.75.75v10.5c0 .414.336.75.75.75h.5a.75.75 0 0 0 .75-.75V4.75a.75.75 0 0 0-.75-.75h-.5ZM17.75 4a.75.75 0 0 0-.75.75v10.5c0 .414.336.75.75.75h.5a.75.75 0 0 0 .75-.75V4.75a.75.75 0 0 0-.75-.75h-.5ZM3.288 4.819A1.5 1.5 0 0 0 1 6.095v7.81a1.5 1.5 0 0 0 2.288 1.277l6.323-3.906a1.5 1.5 0 0 0 0-2.552L3.288 4.819Z"})])}function PR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6.3 2.84A1.5 1.5 0 0 0 4 4.11v11.78a1.5 1.5 0 0 0 2.3 1.27l9.344-5.891a1.5 1.5 0 0 0 0-2.538L6.3 2.841Z"})])}function OR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm.75-11.25a.75.75 0 0 0-1.5 0v2.5h-2.5a.75.75 0 0 0 0 1.5h2.5v2.5a.75.75 0 0 0 1.5 0v-2.5h2.5a.75.75 0 0 0 0-1.5h-2.5v-2.5Z","clip-rule":"evenodd"})])}function RR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10.75 6.75a.75.75 0 0 0-1.5 0v2.5h-2.5a.75.75 0 0 0 0 1.5h2.5v2.5a.75.75 0 0 0 1.5 0v-2.5h2.5a.75.75 0 0 0 0-1.5h-2.5v-2.5Z"})])}function zR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10.75 4.75a.75.75 0 0 0-1.5 0v4.5h-4.5a.75.75 0 0 0 0 1.5h4.5v4.5a.75.75 0 0 0 1.5 0v-4.5h4.5a.75.75 0 0 0 0-1.5h-4.5v-4.5Z"})])}function jR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 2a.75.75 0 0 1 .75.75v7.5a.75.75 0 0 1-1.5 0v-7.5A.75.75 0 0 1 10 2ZM5.404 4.343a.75.75 0 0 1 0 1.06 6.5 6.5 0 1 0 9.192 0 .75.75 0 1 1 1.06-1.06 8 8 0 1 1-11.313 0 .75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function FR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 2.75A.75.75 0 0 1 1.75 2h16.5a.75.75 0 0 1 0 1.5H18v8.75A2.75 2.75 0 0 1 15.25 15h-1.072l.798 3.06a.75.75 0 0 1-1.452.38L13.41 18H6.59l-.114.44a.75.75 0 0 1-1.452-.38L5.823 15H4.75A2.75 2.75 0 0 1 2 12.25V3.5h-.25A.75.75 0 0 1 1 2.75ZM7.373 15l-.391 1.5h6.037l-.392-1.5H7.373ZM13.25 5a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0v-5.5a.75.75 0 0 1 .75-.75Zm-6.5 4a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5A.75.75 0 0 1 6.75 9Zm4-1.25a.75.75 0 0 0-1.5 0v3.5a.75.75 0 0 0 1.5 0v-3.5Z","clip-rule":"evenodd"})])}function UR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 2.75A.75.75 0 0 1 1.75 2h16.5a.75.75 0 0 1 0 1.5H18v8.75A2.75 2.75 0 0 1 15.25 15h-1.072l.798 3.06a.75.75 0 0 1-1.452.38L13.41 18H6.59l-.114.44a.75.75 0 0 1-1.452-.38L5.823 15H4.75A2.75 2.75 0 0 1 2 12.25V3.5h-.25A.75.75 0 0 1 1 2.75ZM7.373 15l-.391 1.5h6.037l-.392-1.5H7.373Zm7.49-8.931a.75.75 0 0 1-.175 1.046 19.326 19.326 0 0 0-3.398 3.098.75.75 0 0 1-1.097.04L8.5 8.561l-2.22 2.22A.75.75 0 1 1 5.22 9.72l2.75-2.75a.75.75 0 0 1 1.06 0l1.664 1.663a20.786 20.786 0 0 1 3.122-2.74.75.75 0 0 1 1.046.176Z","clip-rule":"evenodd"})])}function WR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5 2.75C5 1.784 5.784 1 6.75 1h6.5c.966 0 1.75.784 1.75 1.75v3.552c.377.046.752.097 1.126.153A2.212 2.212 0 0 1 18 8.653v4.097A2.25 2.25 0 0 1 15.75 15h-.241l.305 1.984A1.75 1.75 0 0 1 14.084 19H5.915a1.75 1.75 0 0 1-1.73-2.016L4.492 15H4.25A2.25 2.25 0 0 1 2 12.75V8.653c0-1.082.775-2.034 1.874-2.198.374-.056.75-.107 1.127-.153L5 6.25v-3.5Zm8.5 3.397a41.533 41.533 0 0 0-7 0V2.75a.25.25 0 0 1 .25-.25h6.5a.25.25 0 0 1 .25.25v3.397ZM6.608 12.5a.25.25 0 0 0-.247.212l-.693 4.5a.25.25 0 0 0 .247.288h8.17a.25.25 0 0 0 .246-.288l-.692-4.5a.25.25 0 0 0-.247-.212H6.608Z","clip-rule":"evenodd"})])}function qR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M12 4.467c0-.405.262-.75.559-1.027.276-.257.441-.584.441-.94 0-.828-.895-1.5-2-1.5s-2 .672-2 1.5c0 .362.171.694.456.953.29.265.544.6.544.994a.968.968 0 0 1-1.024.974 39.655 39.655 0 0 1-3.014-.306.75.75 0 0 0-.847.847c.14.993.242 1.999.306 3.014A.968.968 0 0 1 4.447 10c-.393 0-.729-.253-.994-.544C3.194 9.17 2.862 9 2.5 9 1.672 9 1 9.895 1 11s.672 2 1.5 2c.356 0 .683-.165.94-.441.276-.297.622-.559 1.027-.559a.997.997 0 0 1 1.004 1.03 39.747 39.747 0 0 1-.319 3.734.75.75 0 0 0 .64.842c1.05.146 2.111.252 3.184.318A.97.97 0 0 0 10 16.948c0-.394-.254-.73-.545-.995C9.171 15.693 9 15.362 9 15c0-.828.895-1.5 2-1.5s2 .672 2 1.5c0 .356-.165.683-.441.94-.297.276-.559.622-.559 1.027a.998.998 0 0 0 1.03 1.005c1.337-.05 2.659-.162 3.961-.337a.75.75 0 0 0 .644-.644c.175-1.302.288-2.624.337-3.961A.998.998 0 0 0 16.967 12c-.405 0-.75.262-1.027.559-.257.276-.584.441-.94.441-.828 0-1.5-.895-1.5-2s.672-2 1.5-2c.362 0 .694.17.953.455.265.291.601.545.995.545a.97.97 0 0 0 .976-1.024 41.159 41.159 0 0 0-.318-3.184.75.75 0 0 0-.842-.64c-1.228.164-2.473.271-3.734.319A.997.997 0 0 1 12 4.467Z"})])}function YR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.75 2A1.75 1.75 0 0 0 2 3.75v3.5C2 8.216 2.784 9 3.75 9h3.5A1.75 1.75 0 0 0 9 7.25v-3.5A1.75 1.75 0 0 0 7.25 2h-3.5ZM3.5 3.75a.25.25 0 0 1 .25-.25h3.5a.25.25 0 0 1 .25.25v3.5a.25.25 0 0 1-.25.25h-3.5a.25.25 0 0 1-.25-.25v-3.5ZM3.75 11A1.75 1.75 0 0 0 2 12.75v3.5c0 .966.784 1.75 1.75 1.75h3.5A1.75 1.75 0 0 0 9 16.25v-3.5A1.75 1.75 0 0 0 7.25 11h-3.5Zm-.25 1.75a.25.25 0 0 1 .25-.25h3.5a.25.25 0 0 1 .25.25v3.5a.25.25 0 0 1-.25.25h-3.5a.25.25 0 0 1-.25-.25v-3.5Zm7.5-9c0-.966.784-1.75 1.75-1.75h3.5c.966 0 1.75.784 1.75 1.75v3.5A1.75 1.75 0 0 1 16.25 9h-3.5A1.75 1.75 0 0 1 11 7.25v-3.5Zm1.75-.25a.25.25 0 0 0-.25.25v3.5c0 .138.112.25.25.25h3.5a.25.25 0 0 0 .25-.25v-3.5a.25.25 0 0 0-.25-.25h-3.5Zm-7.26 1a1 1 0 0 0-1 1v.01a1 1 0 0 0 1 1h.01a1 1 0 0 0 1-1V5.5a1 1 0 0 0-1-1h-.01Zm9 0a1 1 0 0 0-1 1v.01a1 1 0 0 0 1 1h.01a1 1 0 0 0 1-1V5.5a1 1 0 0 0-1-1h-.01Zm-9 9a1 1 0 0 0-1 1v.01a1 1 0 0 0 1 1h.01a1 1 0 0 0 1-1v-.01a1 1 0 0 0-1-1h-.01Zm9 0a1 1 0 0 0-1 1v.01a1 1 0 0 0 1 1h.01a1 1 0 0 0 1-1v-.01a1 1 0 0 0-1-1h-.01Zm-3.5-1.5a1 1 0 0 1 1-1H12a1 1 0 0 1 1 1v.01a1 1 0 0 1-1 1h-.01a1 1 0 0 1-1-1V12Zm6-1a1 1 0 0 0-1 1v.01a1 1 0 0 0 1 1H17a1 1 0 0 0 1-1V12a1 1 0 0 0-1-1h-.01Zm-1 6a1 1 0 0 1 1-1H17a1 1 0 0 1 1 1v.01a1 1 0 0 1-1 1h-.01a1 1 0 0 1-1-1V17Zm-4-1a1 1 0 0 0-1 1v.01a1 1 0 0 0 1 1H12a1 1 0 0 0 1-1V17a1 1 0 0 0-1-1h-.01Z","clip-rule":"evenodd"})])}function KR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M18 10a8 8 0 1 1-16 0 8 8 0 0 1 16 0ZM8.94 6.94a.75.75 0 1 1-1.061-1.061 3 3 0 1 1 2.871 5.026v.345a.75.75 0 0 1-1.5 0v-.5c0-.72.57-1.172 1.081-1.287A1.5 1.5 0 1 0 8.94 6.94ZM10 15a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function GR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2 4.5A2.5 2.5 0 0 1 4.5 2h11a2.5 2.5 0 0 1 0 5h-11A2.5 2.5 0 0 1 2 4.5ZM2.75 9.083a.75.75 0 0 0 0 1.5h14.5a.75.75 0 0 0 0-1.5H2.75ZM2.75 12.663a.75.75 0 0 0 0 1.5h14.5a.75.75 0 0 0 0-1.5H2.75ZM2.75 16.25a.75.75 0 0 0 0 1.5h14.5a.75.75 0 1 0 0-1.5H2.75Z"})])}function JR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M17.45 3.473a.75.75 0 1 0-.4-1.446L5.313 5.265c-.84.096-1.671.217-2.495.362A2.212 2.212 0 0 0 1 7.816v7.934A2.25 2.25 0 0 0 3.25 18h13.5A2.25 2.25 0 0 0 19 15.75V7.816c0-1.06-.745-2-1.817-2.189a41.12 41.12 0 0 0-5.406-.59l5.673-1.564ZM16 9.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM14.5 16a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm-9.26-5a.75.75 0 0 1 .75-.75H6a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75V11Zm2.75-.75a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75H8a.75.75 0 0 0 .75-.75V11a.75.75 0 0 0-.75-.75h-.01Zm-1.75-1.5A.75.75 0 0 1 6.99 8H7a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75v-.01Zm3.583.42a.75.75 0 0 0-1.06 0l-.007.007a.75.75 0 0 0 0 1.06l.007.007a.75.75 0 0 0 1.06 0l.007-.007a.75.75 0 0 0 0-1.06l-.007-.008Zm.427 2.08A.75.75 0 0 1 11 12v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75V12a.75.75 0 0 1 .75-.75h.01Zm-.42 3.583a.75.75 0 0 0 0-1.06l-.007-.007a.75.75 0 0 0-1.06 0l-.007.007a.75.75 0 0 0 0 1.06l.007.008a.75.75 0 0 0 1.06 0l.008-.008Zm-3.59.417a.75.75 0 0 1 .75-.75H7a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75v-.01Zm-1.013-1.484a.75.75 0 0 0-1.06 0l-.008.007a.75.75 0 0 0 0 1.06l.007.008a.75.75 0 0 0 1.061 0l.007-.008a.75.75 0 0 0 0-1.06l-.007-.007ZM3.75 11.25a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75V12a.75.75 0 0 1 .75-.75h.01Zm1.484-1.013a.75.75 0 0 0 0-1.06l-.007-.007a.75.75 0 0 0-1.06 0l-.007.007a.75.75 0 0 0 0 1.06l.007.007a.75.75 0 0 0 1.06 0l.007-.007ZM7.24 13a.75.75 0 0 1 .75-.75H8a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75V13Zm-1.25-.75a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75H6a.75.75 0 0 0 .75-.75V13a.75.75 0 0 0-.75-.75h-.01Z","clip-rule":"evenodd"})])}function XR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.93 2.31a41.401 41.401 0 0 1 10.14 0C16.194 2.45 17 3.414 17 4.517V17.25a.75.75 0 0 1-1.075.676l-2.8-1.344-2.8 1.344a.75.75 0 0 1-.65 0l-2.8-1.344-2.8 1.344A.75.75 0 0 1 3 17.25V4.517c0-1.103.806-2.068 1.93-2.207Zm8.85 4.97a.75.75 0 0 0-1.06-1.06l-6.5 6.5a.75.75 0 1 0 1.06 1.06l6.5-6.5ZM9 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm3 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function QR(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.93 2.31a41.401 41.401 0 0 1 10.14 0C16.194 2.45 17 3.414 17 4.517V17.25a.75.75 0 0 1-1.075.676l-2.8-1.344-2.8 1.344a.75.75 0 0 1-.65 0l-2.8-1.344-2.8 1.344A.75.75 0 0 1 3 17.25V4.517c0-1.103.806-2.068 1.93-2.207Zm4.822 3.997a.75.75 0 1 0-1.004-1.114l-2.5 2.25a.75.75 0 0 0 0 1.114l2.5 2.25a.75.75 0 0 0 1.004-1.114L8.704 8.75h1.921a1.875 1.875 0 0 1 0 3.75.75.75 0 0 0 0 1.5 3.375 3.375 0 1 0 0-6.75h-1.92l1.047-.943Z","clip-rule":"evenodd"})])}function ez(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.5 3A1.5 1.5 0 0 0 1 4.5v4A1.5 1.5 0 0 0 2.5 10h6A1.5 1.5 0 0 0 10 8.5v-4A1.5 1.5 0 0 0 8.5 3h-6Zm11 2A1.5 1.5 0 0 0 12 6.5v7a1.5 1.5 0 0 0 1.5 1.5h4a1.5 1.5 0 0 0 1.5-1.5v-7A1.5 1.5 0 0 0 17.5 5h-4Zm-10 7A1.5 1.5 0 0 0 2 13.5v2A1.5 1.5 0 0 0 3.5 17h6a1.5 1.5 0 0 0 1.5-1.5v-2A1.5 1.5 0 0 0 9.5 12h-6Z","clip-rule":"evenodd"})])}function tz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.127 3.502 5.25 3.5h9.5c.041 0 .082 0 .123.002A2.251 2.251 0 0 0 12.75 2h-5.5a2.25 2.25 0 0 0-2.123 1.502ZM1 10.25A2.25 2.25 0 0 1 3.25 8h13.5A2.25 2.25 0 0 1 19 10.25v5.5A2.25 2.25 0 0 1 16.75 18H3.25A2.25 2.25 0 0 1 1 15.75v-5.5ZM3.25 6.5c-.04 0-.082 0-.123.002A2.25 2.25 0 0 1 5.25 5h9.5c.98 0 1.814.627 2.123 1.502a3.819 3.819 0 0 0-.123-.002H3.25Z"})])}function nz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.606 12.97a.75.75 0 0 1-.134 1.051 2.494 2.494 0 0 0-.93 2.437 2.494 2.494 0 0 0 2.437-.93.75.75 0 1 1 1.186.918 3.995 3.995 0 0 1-4.482 1.332.75.75 0 0 1-.461-.461 3.994 3.994 0 0 1 1.332-4.482.75.75 0 0 1 1.052.134Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.752 12A13.07 13.07 0 0 0 8 14.248v4.002c0 .414.336.75.75.75a5 5 0 0 0 4.797-6.414 12.984 12.984 0 0 0 5.45-10.848.75.75 0 0 0-.735-.735 12.984 12.984 0 0 0-10.849 5.45A5 5 0 0 0 1 11.25c.001.414.337.75.751.75h4.002ZM13 9a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z","clip-rule":"evenodd"})])}function rz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.75 3a.75.75 0 0 0-.75.75v.5c0 .414.336.75.75.75H4c6.075 0 11 4.925 11 11v.25c0 .414.336.75.75.75h.5a.75.75 0 0 0 .75-.75V16C17 8.82 11.18 3 4 3h-.25Z"}),e.createElementVNode("path",{d:"M3 8.75A.75.75 0 0 1 3.75 8H4a8 8 0 0 1 8 8v.25a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1-.75-.75V16a6 6 0 0 0-6-6h-.25A.75.75 0 0 1 3 9.25v-.5ZM7 15a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"})])}function oz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 2a.75.75 0 0 1 .75.75v.258a33.186 33.186 0 0 1 6.668.83.75.75 0 0 1-.336 1.461 31.28 31.28 0 0 0-1.103-.232l1.702 7.545a.75.75 0 0 1-.387.832A4.981 4.981 0 0 1 15 14c-.825 0-1.606-.2-2.294-.556a.75.75 0 0 1-.387-.832l1.77-7.849a31.743 31.743 0 0 0-3.339-.254v11.505a20.01 20.01 0 0 1 3.78.501.75.75 0 1 1-.339 1.462A18.558 18.558 0 0 0 10 17.5c-1.442 0-2.845.165-4.191.477a.75.75 0 0 1-.338-1.462 20.01 20.01 0 0 1 3.779-.501V4.509c-1.129.026-2.243.112-3.34.254l1.771 7.85a.75.75 0 0 1-.387.83A4.98 4.98 0 0 1 5 14a4.98 4.98 0 0 1-2.294-.556.75.75 0 0 1-.387-.832L4.02 5.067c-.37.07-.738.148-1.103.232a.75.75 0 0 1-.336-1.462 32.845 32.845 0 0 1 6.668-.829V2.75A.75.75 0 0 1 10 2ZM5 7.543 3.92 12.33a3.499 3.499 0 0 0 2.16 0L5 7.543Zm10 0-1.08 4.787a3.498 3.498 0 0 0 2.16 0L15 7.543Z","clip-rule":"evenodd"})])}function az(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.469 3.75a3.5 3.5 0 0 0 5.617 4.11l.883.51c.025.092.147.116.21.043.15-.176.318-.338.5-.484.286-.23.3-.709-.018-.892l-.825-.477A3.501 3.501 0 0 0 1.47 3.75Zm2.03 3.482a2 2 0 1 1 2-3.464 2 2 0 0 1-2 3.464ZM9.956 8.322a2.75 2.75 0 0 0-1.588 1.822L7.97 11.63l-.884.51A3.501 3.501 0 0 0 1.47 16.25a3.5 3.5 0 0 0 6.367-2.81l10.68-6.166a.75.75 0 0 0-.182-1.373l-.703-.189a2.75 2.75 0 0 0-1.78.123L9.955 8.322ZM2.768 15.5a2 2 0 1 1 3.464-2 2 2 0 0 1-3.464 2Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M12.52 11.89a.5.5 0 0 0 .056.894l3.274 1.381a2.75 2.75 0 0 0 1.78.123l.704-.189a.75.75 0 0 0 .18-1.373l-3.47-2.004a.5.5 0 0 0-.5 0L12.52 11.89Z"})])}function lz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.464 3.162A2 2 0 0 1 6.28 2h7.44a2 2 0 0 1 1.816 1.162l1.154 2.5c.067.145.115.291.145.438A3.508 3.508 0 0 0 16 6H4c-.288 0-.568.035-.835.1.03-.147.078-.293.145-.438l1.154-2.5Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 9.5a2 2 0 0 1 2-2h12a2 2 0 1 1 0 4H4a2 2 0 0 1-2-2Zm13.24 0a.75.75 0 0 1 .75-.75H16a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75V9.5Zm-2.25-.75a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75H13a.75.75 0 0 0 .75-.75V9.5a.75.75 0 0 0-.75-.75h-.01ZM2 15a2 2 0 0 1 2-2h12a2 2 0 1 1 0 4H4a2 2 0 0 1-2-2Zm13.24 0a.75.75 0 0 1 .75-.75H16a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75V15Zm-2.25-.75a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75H13a.75.75 0 0 0 .75-.75V15a.75.75 0 0 0-.75-.75h-.01Z","clip-rule":"evenodd"})])}function iz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.632 3.533A2 2 0 0 1 6.577 2h6.846a2 2 0 0 1 1.945 1.533l1.976 8.234A3.489 3.489 0 0 0 16 11.5H4c-.476 0-.93.095-1.344.267l1.976-8.234Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 13a2 2 0 1 0 0 4h12a2 2 0 1 0 0-4H4Zm11.24 2a.75.75 0 0 1 .75-.75H16a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75V15Zm-2.25-.75a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75H13a.75.75 0 0 0 .75-.75V15a.75.75 0 0 0-.75-.75h-.01Z","clip-rule":"evenodd"})])}function cz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M13 4.5a2.5 2.5 0 1 1 .702 1.737L6.97 9.604a2.518 2.518 0 0 1 0 .792l6.733 3.367a2.5 2.5 0 1 1-.671 1.341l-6.733-3.367a2.5 2.5 0 1 1 0-3.475l6.733-3.366A2.52 2.52 0 0 1 13 4.5Z"})])}function sz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.661 2.237a.531.531 0 0 1 .678 0 11.947 11.947 0 0 0 7.078 2.749.5.5 0 0 1 .479.425c.069.52.104 1.05.104 1.59 0 5.162-3.26 9.563-7.834 11.256a.48.48 0 0 1-.332 0C5.26 16.564 2 12.163 2 7c0-.538.035-1.069.104-1.589a.5.5 0 0 1 .48-.425 11.947 11.947 0 0 0 7.077-2.75Zm4.196 5.954a.75.75 0 0 0-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 1 0-1.06 1.061l2.5 2.5a.75.75 0 0 0 1.137-.089l4-5.5Z","clip-rule":"evenodd"})])}function dz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.339 2.237a.531.531 0 0 0-.678 0 11.947 11.947 0 0 1-7.078 2.75.5.5 0 0 0-.479.425A12.11 12.11 0 0 0 2 7c0 5.163 3.26 9.564 7.834 11.257a.48.48 0 0 0 .332 0C14.74 16.564 18 12.163 18 7c0-.538-.035-1.069-.104-1.589a.5.5 0 0 0-.48-.425 11.947 11.947 0 0 1-7.077-2.75ZM10 6a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 10 6Zm0 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function uz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6 5v1H4.667a1.75 1.75 0 0 0-1.743 1.598l-.826 9.5A1.75 1.75 0 0 0 3.84 19H16.16a1.75 1.75 0 0 0 1.743-1.902l-.826-9.5A1.75 1.75 0 0 0 15.333 6H14V5a4 4 0 0 0-8 0Zm4-2.5A2.5 2.5 0 0 0 7.5 5v1h5V5A2.5 2.5 0 0 0 10 2.5ZM7.5 10a2.5 2.5 0 0 0 5 0V8.75a.75.75 0 0 1 1.5 0V10a4 4 0 0 1-8 0V8.75a.75.75 0 0 1 1.5 0V10Z","clip-rule":"evenodd"})])}function hz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M1 1.75A.75.75 0 0 1 1.75 1h1.628a1.75 1.75 0 0 1 1.734 1.51L5.18 3a65.25 65.25 0 0 1 13.36 1.412.75.75 0 0 1 .58.875 48.645 48.645 0 0 1-1.618 6.2.75.75 0 0 1-.712.513H6a2.503 2.503 0 0 0-2.292 1.5H17.25a.75.75 0 0 1 0 1.5H2.76a.75.75 0 0 1-.748-.807 4.002 4.002 0 0 1 2.716-3.486L3.626 2.716a.25.25 0 0 0-.248-.216H1.75A.75.75 0 0 1 1 1.75ZM6 17.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM15.5 19a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"})])}function pz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2.22 2.22a.75.75 0 0 1 1.06 0l6.783 6.782a1 1 0 0 1 .935.935l6.782 6.783a.75.75 0 1 1-1.06 1.06l-6.783-6.782a1 1 0 0 1-.935-.935L2.22 3.28a.75.75 0 0 1 0-1.06ZM3.636 16.364a9.004 9.004 0 0 1-1.39-10.936L3.349 6.53a7.503 7.503 0 0 0 1.348 8.773.75.75 0 0 1-1.061 1.061ZM6.464 13.536a5 5 0 0 1-1.213-5.103l1.262 1.262a3.493 3.493 0 0 0 1.012 2.78.75.75 0 0 1-1.06 1.06ZM16.364 3.636a9.004 9.004 0 0 1 1.39 10.937l-1.103-1.104a7.503 7.503 0 0 0-1.348-8.772.75.75 0 1 1 1.061-1.061ZM13.536 6.464a5 5 0 0 1 1.213 5.103l-1.262-1.262a3.493 3.493 0 0 0-1.012-2.78.75.75 0 0 1 1.06-1.06Z"})])}function fz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M16.364 3.636a.75.75 0 0 0-1.06 1.06 7.5 7.5 0 0 1 0 10.607.75.75 0 0 0 1.06 1.061 9 9 0 0 0 0-12.728ZM4.697 4.697a.75.75 0 0 0-1.061-1.061 9 9 0 0 0 0 12.728.75.75 0 1 0 1.06-1.06 7.5 7.5 0 0 1 0-10.607Z"}),e.createElementVNode("path",{d:"M12.475 6.464a.75.75 0 0 1 1.06 0 5 5 0 0 1 0 7.072.75.75 0 0 1-1.06-1.061 3.5 3.5 0 0 0 0-4.95.75.75 0 0 1 0-1.06ZM7.525 6.464a.75.75 0 0 1 0 1.061 3.5 3.5 0 0 0 0 4.95.75.75 0 0 1-1.06 1.06 5 5 0 0 1 0-7.07.75.75 0 0 1 1.06 0ZM11 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"})])}function mz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12.528 3.047a.75.75 0 0 1 .449.961L8.433 16.504a.75.75 0 1 1-1.41-.512l4.544-12.496a.75.75 0 0 1 .961-.449Z","clip-rule":"evenodd"})])}function wz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M15.98 1.804a1 1 0 0 0-1.96 0l-.24 1.192a1 1 0 0 1-.784.785l-1.192.238a1 1 0 0 0 0 1.962l1.192.238a1 1 0 0 1 .785.785l.238 1.192a1 1 0 0 0 1.962 0l.238-1.192a1 1 0 0 1 .785-.785l1.192-.238a1 1 0 0 0 0-1.962l-1.192-.238a1 1 0 0 1-.785-.785l-.238-1.192ZM6.949 5.684a1 1 0 0 0-1.898 0l-.683 2.051a1 1 0 0 1-.633.633l-2.051.683a1 1 0 0 0 0 1.898l2.051.684a1 1 0 0 1 .633.632l.683 2.051a1 1 0 0 0 1.898 0l.683-2.051a1 1 0 0 1 .633-.633l2.051-.683a1 1 0 0 0 0-1.898l-2.051-.683a1 1 0 0 1-.633-.633L6.95 5.684ZM13.949 13.684a1 1 0 0 0-1.898 0l-.184.551a1 1 0 0 1-.632.633l-.551.183a1 1 0 0 0 0 1.898l.551.183a1 1 0 0 1 .633.633l.183.551a1 1 0 0 0 1.898 0l.184-.551a1 1 0 0 1 .632-.633l.551-.183a1 1 0 0 0 0-1.898l-.551-.184a1 1 0 0 1-.633-.632l-.183-.551Z"})])}function gz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10.5 3.75a.75.75 0 0 0-1.264-.546L5.203 7H2.667a.75.75 0 0 0-.7.48A6.985 6.985 0 0 0 1.5 10c0 .887.165 1.737.468 2.52.111.29.39.48.7.48h2.535l4.033 3.796a.75.75 0 0 0 1.264-.546V3.75ZM16.45 5.05a.75.75 0 0 0-1.06 1.061 5.5 5.5 0 0 1 0 7.778.75.75 0 0 0 1.06 1.06 7 7 0 0 0 0-9.899Z"}),e.createElementVNode("path",{d:"M14.329 7.172a.75.75 0 0 0-1.061 1.06 2.5 2.5 0 0 1 0 3.536.75.75 0 0 0 1.06 1.06 4 4 0 0 0 0-5.656Z"})])}function kz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10.047 3.062a.75.75 0 0 1 .453.688v12.5a.75.75 0 0 1-1.264.546L5.203 13H2.667a.75.75 0 0 1-.7-.48A6.985 6.985 0 0 1 1.5 10c0-.887.165-1.737.468-2.52a.75.75 0 0 1 .7-.48h2.535l4.033-3.796a.75.75 0 0 1 .811-.142ZM13.78 7.22a.75.75 0 1 0-1.06 1.06L14.44 10l-1.72 1.72a.75.75 0 0 0 1.06 1.06l1.72-1.72 1.72 1.72a.75.75 0 1 0 1.06-1.06L16.56 10l1.72-1.72a.75.75 0 0 0-1.06-1.06L15.5 8.94l-1.72-1.72Z"})])}function xz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2 4.25A2.25 2.25 0 0 1 4.25 2h6.5A2.25 2.25 0 0 1 13 4.25V5.5H9.25A3.75 3.75 0 0 0 5.5 9.25V13H4.25A2.25 2.25 0 0 1 2 10.75v-6.5Z"}),e.createElementVNode("path",{d:"M9.25 7A2.25 2.25 0 0 0 7 9.25v6.5A2.25 2.25 0 0 0 9.25 18h6.5A2.25 2.25 0 0 0 18 15.75v-6.5A2.25 2.25 0 0 0 15.75 7h-6.5Z"})])}function vz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"m3.196 12.87-.825.483a.75.75 0 0 0 0 1.294l7.25 4.25a.75.75 0 0 0 .758 0l7.25-4.25a.75.75 0 0 0 0-1.294l-.825-.484-5.666 3.322a2.25 2.25 0 0 1-2.276 0L3.196 12.87Z"}),e.createElementVNode("path",{d:"m3.196 8.87-.825.483a.75.75 0 0 0 0 1.294l7.25 4.25a.75.75 0 0 0 .758 0l7.25-4.25a.75.75 0 0 0 0-1.294l-.825-.484-5.666 3.322a2.25 2.25 0 0 1-2.276 0L3.196 8.87Z"}),e.createElementVNode("path",{d:"M10.38 1.103a.75.75 0 0 0-.76 0l-7.25 4.25a.75.75 0 0 0 0 1.294l7.25 4.25a.75.75 0 0 0 .76 0l7.25-4.25a.75.75 0 0 0 0-1.294l-7.25-4.25Z"})])}function yz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.25 2A2.25 2.25 0 0 0 2 4.25v2.5A2.25 2.25 0 0 0 4.25 9h2.5A2.25 2.25 0 0 0 9 6.75v-2.5A2.25 2.25 0 0 0 6.75 2h-2.5Zm0 9A2.25 2.25 0 0 0 2 13.25v2.5A2.25 2.25 0 0 0 4.25 18h2.5A2.25 2.25 0 0 0 9 15.75v-2.5A2.25 2.25 0 0 0 6.75 11h-2.5Zm9-9A2.25 2.25 0 0 0 11 4.25v2.5A2.25 2.25 0 0 0 13.25 9h2.5A2.25 2.25 0 0 0 18 6.75v-2.5A2.25 2.25 0 0 0 15.75 2h-2.5Zm0 9A2.25 2.25 0 0 0 11 13.25v2.5A2.25 2.25 0 0 0 13.25 18h2.5A2.25 2.25 0 0 0 18 15.75v-2.5A2.25 2.25 0 0 0 15.75 11h-2.5Z","clip-rule":"evenodd"})])}function Bz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2 4.25A2.25 2.25 0 0 1 4.25 2h2.5A2.25 2.25 0 0 1 9 4.25v2.5A2.25 2.25 0 0 1 6.75 9h-2.5A2.25 2.25 0 0 1 2 6.75v-2.5ZM2 13.25A2.25 2.25 0 0 1 4.25 11h2.5A2.25 2.25 0 0 1 9 13.25v2.5A2.25 2.25 0 0 1 6.75 18h-2.5A2.25 2.25 0 0 1 2 15.75v-2.5ZM11 4.25A2.25 2.25 0 0 1 13.25 2h2.5A2.25 2.25 0 0 1 18 4.25v2.5A2.25 2.25 0 0 1 15.75 9h-2.5A2.25 2.25 0 0 1 11 6.75v-2.5ZM15.25 11.75a.75.75 0 0 0-1.5 0v2h-2a.75.75 0 0 0 0 1.5h2v2a.75.75 0 0 0 1.5 0v-2h2a.75.75 0 0 0 0-1.5h-2v-2Z"})])}function Ez(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.868 2.884c-.321-.772-1.415-.772-1.736 0l-1.83 4.401-4.753.381c-.833.067-1.171 1.107-.536 1.651l3.62 3.102-1.106 4.637c-.194.813.691 1.456 1.405 1.02L10 15.591l4.069 2.485c.713.436 1.598-.207 1.404-1.02l-1.106-4.637 3.62-3.102c.635-.544.297-1.584-.536-1.65l-4.752-.382-1.831-4.401Z","clip-rule":"evenodd"})])}function bz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm5-2.25A.75.75 0 0 1 7.75 7h4.5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1-.75-.75v-4.5Z","clip-rule":"evenodd"})])}function Cz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.25 3A2.25 2.25 0 0 0 3 5.25v9.5A2.25 2.25 0 0 0 5.25 17h9.5A2.25 2.25 0 0 0 17 14.75v-9.5A2.25 2.25 0 0 0 14.75 3h-9.5Z"})])}function Mz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.617 3.963c-1.186-.318-2.418-.323-3.416.015-.992.336-1.49.91-1.642 1.476-.152.566-.007 1.313.684 2.1.528.6 1.273 1.1 2.128 1.446h7.879a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5h3.813a5.976 5.976 0 0 1-.447-.456C5.18 7.479 4.798 6.231 5.11 5.066c.312-1.164 1.268-2.055 2.61-2.509 1.336-.451 2.877-.42 4.286-.043.856.23 1.684.592 2.409 1.074a.75.75 0 1 1-.83 1.25 6.723 6.723 0 0 0-1.968-.875Zm1.909 8.123a.75.75 0 0 1 1.015.309c.53.99.607 2.062.18 3.01-.421.94-1.289 1.648-2.441 2.038-1.336.452-2.877.42-4.286.043-1.409-.377-2.759-1.121-3.69-2.18a.75.75 0 1 1 1.127-.99c.696.791 1.765 1.403 2.952 1.721 1.186.318 2.418.323 3.416-.015.853-.288 1.34-.756 1.555-1.232.21-.467.205-1.049-.136-1.69a.75.75 0 0 1 .308-1.014Z","clip-rule":"evenodd"})])}function Vz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10 2a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5A.75.75 0 0 1 10 2ZM10 15a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5A.75.75 0 0 1 10 15ZM10 7a3 3 0 1 0 0 6 3 3 0 0 0 0-6ZM15.657 5.404a.75.75 0 1 0-1.06-1.06l-1.061 1.06a.75.75 0 0 0 1.06 1.06l1.06-1.06ZM6.464 14.596a.75.75 0 1 0-1.06-1.06l-1.06 1.06a.75.75 0 0 0 1.06 1.06l1.06-1.06ZM18 10a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1 0-1.5h1.5A.75.75 0 0 1 18 10ZM5 10a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1 0-1.5h1.5A.75.75 0 0 1 5 10ZM14.596 15.657a.75.75 0 0 0 1.06-1.06l-1.06-1.061a.75.75 0 1 0-1.06 1.06l1.06 1.06ZM5.404 6.464a.75.75 0 0 0 1.06-1.06l-1.06-1.06a.75.75 0 1 0-1.061 1.06l1.06 1.06Z"})])}function Az(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.5 2A1.5 1.5 0 0 0 2 3.5V15a3 3 0 1 0 6 0V3.5A1.5 1.5 0 0 0 6.5 2h-3Zm11.753 6.99L9.5 14.743V6.257l1.51-1.51a1.5 1.5 0 0 1 2.122 0l2.121 2.121a1.5 1.5 0 0 1 0 2.122ZM8.364 18H16.5a1.5 1.5 0 0 0 1.5-1.5v-3a1.5 1.5 0 0 0-1.5-1.5h-2.136l-6 6ZM5 16a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function _z(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M.99 5.24A2.25 2.25 0 0 1 3.25 3h13.5A2.25 2.25 0 0 1 19 5.25l.01 9.5A2.25 2.25 0 0 1 16.76 17H3.26A2.267 2.267 0 0 1 1 14.74l-.01-9.5Zm8.26 9.52v-.625a.75.75 0 0 0-.75-.75H3.25a.75.75 0 0 0-.75.75v.615c0 .414.336.75.75.75h5.373a.75.75 0 0 0 .627-.74Zm1.5 0a.75.75 0 0 0 .627.74h5.373a.75.75 0 0 0 .75-.75v-.615a.75.75 0 0 0-.75-.75H11.5a.75.75 0 0 0-.75.75v.625Zm6.75-3.63v-.625a.75.75 0 0 0-.75-.75H11.5a.75.75 0 0 0-.75.75v.625c0 .414.336.75.75.75h5.25a.75.75 0 0 0 .75-.75Zm-8.25 0v-.625a.75.75 0 0 0-.75-.75H3.25a.75.75 0 0 0-.75.75v.625c0 .414.336.75.75.75H8.5a.75.75 0 0 0 .75-.75ZM17.5 7.5v-.625a.75.75 0 0 0-.75-.75H11.5a.75.75 0 0 0-.75.75V7.5c0 .414.336.75.75.75h5.25a.75.75 0 0 0 .75-.75Zm-8.25 0v-.625a.75.75 0 0 0-.75-.75H3.25a.75.75 0 0 0-.75.75V7.5c0 .414.336.75.75.75H8.5a.75.75 0 0 0 .75-.75Z","clip-rule":"evenodd"})])}function Nz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 2A2.5 2.5 0 0 0 2 4.5v3.879a2.5 2.5 0 0 0 .732 1.767l7.5 7.5a2.5 2.5 0 0 0 3.536 0l3.878-3.878a2.5 2.5 0 0 0 0-3.536l-7.5-7.5A2.5 2.5 0 0 0 8.38 2H4.5ZM5 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function Zz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15.75 3A2.25 2.25 0 0 1 18 5.25v1.214c0 .423-.277.788-.633 1.019A2.997 2.997 0 0 0 16 10c0 1.055.544 1.982 1.367 2.517.356.231.633.596.633 1.02v1.213A2.25 2.25 0 0 1 15.75 17H4.25A2.25 2.25 0 0 1 2 14.75v-1.213c0-.424.277-.789.633-1.02A2.998 2.998 0 0 0 4 10a2.997 2.997 0 0 0-1.367-2.517C2.277 7.252 2 6.887 2 6.463V5.25A2.25 2.25 0 0 1 4.25 3h11.5ZM13.5 7.396a.75.75 0 0 0-1.5 0v1.042a.75.75 0 0 0 1.5 0V7.396Zm0 4.167a.75.75 0 0 0-1.5 0v1.041a.75.75 0 0 0 1.5 0v-1.041Z","clip-rule":"evenodd"})])}function Sz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.75 1A2.75 2.75 0 0 0 6 3.75v.443c-.795.077-1.584.176-2.365.298a.75.75 0 1 0 .23 1.482l.149-.022.841 10.518A2.75 2.75 0 0 0 7.596 19h4.807a2.75 2.75 0 0 0 2.742-2.53l.841-10.52.149.023a.75.75 0 0 0 .23-1.482A41.03 41.03 0 0 0 14 4.193V3.75A2.75 2.75 0 0 0 11.25 1h-2.5ZM10 4c.84 0 1.673.025 2.5.075V3.75c0-.69-.56-1.25-1.25-1.25h-2.5c-.69 0-1.25.56-1.25 1.25v.325C8.327 4.025 9.16 4 10 4ZM8.58 7.72a.75.75 0 0 0-1.5.06l.3 7.5a.75.75 0 1 0 1.5-.06l-.3-7.5Zm4.34.06a.75.75 0 1 0-1.5-.06l-.3 7.5a.75.75 0 1 0 1.5.06l.3-7.5Z","clip-rule":"evenodd"})])}function $z(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 1c-1.828 0-3.623.149-5.371.435a.75.75 0 0 0-.629.74v.387c-.827.157-1.642.345-2.445.564a.75.75 0 0 0-.552.698 5 5 0 0 0 4.503 5.152 6 6 0 0 0 2.946 1.822A6.451 6.451 0 0 1 7.768 13H7.5A1.5 1.5 0 0 0 6 14.5V17h-.75C4.56 17 4 17.56 4 18.25c0 .414.336.75.75.75h10.5a.75.75 0 0 0 .75-.75c0-.69-.56-1.25-1.25-1.25H14v-2.5a1.5 1.5 0 0 0-1.5-1.5h-.268a6.453 6.453 0 0 1-.684-2.202 6 6 0 0 0 2.946-1.822 5 5 0 0 0 4.503-5.152.75.75 0 0 0-.552-.698A31.804 31.804 0 0 0 16 2.562v-.387a.75.75 0 0 0-.629-.74A33.227 33.227 0 0 0 10 1ZM2.525 4.422C3.012 4.3 3.504 4.19 4 4.09V5c0 .74.134 1.448.38 2.103a3.503 3.503 0 0 1-1.855-2.68Zm14.95 0a3.503 3.503 0 0 1-1.854 2.68C15.866 6.449 16 5.74 16 5v-.91c.496.099.988.21 1.475.332Z","clip-rule":"evenodd"})])}function Iz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6.5 3c-1.051 0-2.093.04-3.125.117A1.49 1.49 0 0 0 2 4.607V10.5h9V4.606c0-.771-.59-1.43-1.375-1.489A41.568 41.568 0 0 0 6.5 3ZM2 12v2.5A1.5 1.5 0 0 0 3.5 16h.041a3 3 0 0 1 5.918 0h.791a.75.75 0 0 0 .75-.75V12H2Z"}),e.createElementVNode("path",{d:"M6.5 18a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM13.25 5a.75.75 0 0 0-.75.75v8.514a3.001 3.001 0 0 1 4.893 1.44c.37-.275.61-.719.595-1.227a24.905 24.905 0 0 0-1.784-8.549A1.486 1.486 0 0 0 14.823 5H13.25ZM14.5 18a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"})])}function Hz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4 5h12v7H4V5Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 3.5A1.5 1.5 0 0 1 2.5 2h15A1.5 1.5 0 0 1 19 3.5v10a1.5 1.5 0 0 1-1.5 1.5H12v1.5h3.25a.75.75 0 0 1 0 1.5H4.75a.75.75 0 0 1 0-1.5H8V15H2.5A1.5 1.5 0 0 1 1 13.5v-10Zm16.5 0h-15v10h15v-10Z","clip-rule":"evenodd"})])}function Tz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.75 2a.75.75 0 0 1 .75.75V9a4.5 4.5 0 1 0 9 0V2.75a.75.75 0 0 1 1.5 0V9A6 6 0 0 1 4 9V2.75A.75.75 0 0 1 4.75 2ZM2 17.25a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function Lz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M18 10a8 8 0 1 1-16 0 8 8 0 0 1 16 0Zm-5.5-2.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0ZM10 12a5.99 5.99 0 0 0-4.793 2.39A6.483 6.483 0 0 0 10 16.5a6.483 6.483 0 0 0 4.793-2.11A5.99 5.99 0 0 0 10 12Z","clip-rule":"evenodd"})])}function Dz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM6 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM1.49 15.326a.78.78 0 0 1-.358-.442 3 3 0 0 1 4.308-3.516 6.484 6.484 0 0 0-1.905 3.959c-.023.222-.014.442.025.654a4.97 4.97 0 0 1-2.07-.655ZM16.44 15.98a4.97 4.97 0 0 0 2.07-.654.78.78 0 0 0 .357-.442 3 3 0 0 0-4.308-3.517 6.484 6.484 0 0 1 1.907 3.96 2.32 2.32 0 0 1-.026.654ZM18 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM5.304 16.19a.844.844 0 0 1-.277-.71 5 5 0 0 1 9.947 0 .843.843 0 0 1-.277.71A6.975 6.975 0 0 1 10 18a6.974 6.974 0 0 1-4.696-1.81Z"})])}function Pz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0ZM2.046 15.253c-.058.468.172.92.57 1.175A9.953 9.953 0 0 0 8 18c1.982 0 3.83-.578 5.384-1.573.398-.254.628-.707.57-1.175a6.001 6.001 0 0 0-11.908 0ZM12.75 7.75a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Z"})])}function Oz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0ZM1.615 16.428a1.224 1.224 0 0 1-.569-1.175 6.002 6.002 0 0 1 11.908 0c.058.467-.172.92-.57 1.174A9.953 9.953 0 0 1 7 18a9.953 9.953 0 0 1-5.385-1.572ZM16.25 5.75a.75.75 0 0 0-1.5 0v2h-2a.75.75 0 0 0 0 1.5h2v2a.75.75 0 0 0 1.5 0v-2h2a.75.75 0 0 0 0-1.5h-2v-2Z"})])}function Rz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM3.465 14.493a1.23 1.23 0 0 0 .41 1.412A9.957 9.957 0 0 0 10 18c2.31 0 4.438-.784 6.131-2.1.43-.333.604-.903.408-1.41a7.002 7.002 0 0 0-13.074.003Z"})])}function zz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM14.5 9a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM1.615 16.428a1.224 1.224 0 0 1-.569-1.175 6.002 6.002 0 0 1 11.908 0c.058.467-.172.92-.57 1.174A9.953 9.953 0 0 1 7 18a9.953 9.953 0 0 1-5.385-1.572ZM14.5 16h-.106c.07-.297.088-.611.048-.933a7.47 7.47 0 0 0-1.588-3.755 4.502 4.502 0 0 1 5.874 2.636.818.818 0 0 1-.36.98A7.465 7.465 0 0 1 14.5 16Z"})])}function jz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15.212 2.079a.75.75 0 0 1 1.006.336A16.932 16.932 0 0 1 18 10c0 2.724-.641 5.3-1.782 7.585a.75.75 0 1 1-1.342-.67A15.432 15.432 0 0 0 16.5 10c0-2.486-.585-4.834-1.624-6.915a.75.75 0 0 1 .336-1.006Zm-10.424 0a.75.75 0 0 1 .336 1.006A15.433 15.433 0 0 0 3.5 10c0 2.486.585 4.834 1.624 6.915a.75.75 0 1 1-1.342.67A16.933 16.933 0 0 1 2 10c0-2.724.641-5.3 1.782-7.585a.75.75 0 0 1 1.006-.336Zm2.285 3.554a1.5 1.5 0 0 1 2.219.677l.856 2.08 1.146-1.77a2.25 2.25 0 0 1 3.137-.65l.235.156a.75.75 0 1 1-.832 1.248l-.235-.156a.75.75 0 0 0-1.045.216l-1.71 2.644 1.251 3.04.739-.492a.75.75 0 1 1 .832 1.248l-.739.493a1.5 1.5 0 0 1-2.219-.677l-.856-2.08-1.146 1.77a2.25 2.25 0 0 1-3.137.65l-.235-.156a.75.75 0 0 1 .832-1.248l.235.157a.75.75 0 0 0 1.045-.217l1.71-2.644-1.251-3.04-.739.492a.75.75 0 0 1-.832-1.248l.739-.493Z","clip-rule":"evenodd"})])}function Fz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M1 13.75V7.182L9.818 16H3.25A2.25 2.25 0 0 1 1 13.75ZM13 6.25v6.568L4.182 4h6.568A2.25 2.25 0 0 1 13 6.25ZM19 4.75a.75.75 0 0 0-1.28-.53l-3 3a.75.75 0 0 0-.22.53v4.5c0 .199.079.39.22.53l3 3a.75.75 0 0 0 1.28-.53V4.75ZM2.28 4.22a.75.75 0 0 0-1.06 1.06l10.5 10.5a.75.75 0 1 0 1.06-1.06L2.28 4.22Z"})])}function Uz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.25 4A2.25 2.25 0 0 0 1 6.25v7.5A2.25 2.25 0 0 0 3.25 16h7.5A2.25 2.25 0 0 0 13 13.75v-7.5A2.25 2.25 0 0 0 10.75 4h-7.5ZM19 4.75a.75.75 0 0 0-1.28-.53l-3 3a.75.75 0 0 0-.22.53v4.5c0 .199.079.39.22.53l3 3a.75.75 0 0 0 1.28-.53V4.75Z"})])}function Wz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M14 17h2.75A2.25 2.25 0 0 0 19 14.75v-9.5A2.25 2.25 0 0 0 16.75 3H14v14ZM12.5 3h-5v14h5V3ZM3.25 3H6v14H3.25A2.25 2.25 0 0 1 1 14.75v-9.5A2.25 2.25 0 0 1 3.25 3Z"})])}function qz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.25 2A2.25 2.25 0 0 0 2 4.25v2a.75.75 0 0 0 1.5 0v-2a.75.75 0 0 1 .75-.75h2a.75.75 0 0 0 0-1.5h-2ZM13.75 2a.75.75 0 0 0 0 1.5h2a.75.75 0 0 1 .75.75v2a.75.75 0 0 0 1.5 0v-2A2.25 2.25 0 0 0 15.75 2h-2ZM3.5 13.75a.75.75 0 0 0-1.5 0v2A2.25 2.25 0 0 0 4.25 18h2a.75.75 0 0 0 0-1.5h-2a.75.75 0 0 1-.75-.75v-2ZM18 13.75a.75.75 0 0 0-1.5 0v2a.75.75 0 0 1-.75.75h-2a.75.75 0 0 0 0 1.5h2A2.25 2.25 0 0 0 18 15.75v-2ZM7 10a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z"})])}function Yz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M1 4.25a3.733 3.733 0 0 1 2.25-.75h13.5c.844 0 1.623.279 2.25.75A2.25 2.25 0 0 0 16.75 2H3.25A2.25 2.25 0 0 0 1 4.25ZM1 7.25a3.733 3.733 0 0 1 2.25-.75h13.5c.844 0 1.623.279 2.25.75A2.25 2.25 0 0 0 16.75 5H3.25A2.25 2.25 0 0 0 1 7.25ZM7 8a1 1 0 0 1 1 1 2 2 0 1 0 4 0 1 1 0 0 1 1-1h3.75A2.25 2.25 0 0 1 19 10.25v5.5A2.25 2.25 0 0 1 16.75 18H3.25A2.25 2.25 0 0 1 1 15.75v-5.5A2.25 2.25 0 0 1 3.25 8H7Z"})])}function Kz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M.676 6.941A12.964 12.964 0 0 1 10 3c3.657 0 6.963 1.511 9.324 3.941a.75.75 0 0 1-.008 1.053l-.353.354a.75.75 0 0 1-1.069-.008C15.894 6.28 13.097 5 10 5 6.903 5 4.106 6.28 2.106 8.34a.75.75 0 0 1-1.069.008l-.353-.354a.75.75 0 0 1-.008-1.053Zm2.825 2.833A8.976 8.976 0 0 1 10 7a8.976 8.976 0 0 1 6.499 2.774.75.75 0 0 1-.011 1.049l-.354.354a.75.75 0 0 1-1.072-.012A6.978 6.978 0 0 0 10 9c-1.99 0-3.786.83-5.061 2.165a.75.75 0 0 1-1.073.012l-.354-.354a.75.75 0 0 1-.01-1.05Zm2.82 2.84A4.989 4.989 0 0 1 10 11c1.456 0 2.767.623 3.68 1.614a.75.75 0 0 1-.022 1.039l-.354.354a.75.75 0 0 1-1.085-.026A2.99 2.99 0 0 0 10 13c-.88 0-1.67.377-2.22.981a.75.75 0 0 1-1.084.026l-.354-.354a.75.75 0 0 1-.021-1.039Zm2.795 2.752a1.248 1.248 0 0 1 1.768 0 .75.75 0 0 1 0 1.06l-.354.354a.75.75 0 0 1-1.06 0l-.354-.353a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function Gz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.25 2A2.25 2.25 0 0 0 2 4.25v11.5A2.25 2.25 0 0 0 4.25 18h11.5A2.25 2.25 0 0 0 18 15.75V4.25A2.25 2.25 0 0 0 15.75 2H4.25ZM3.5 8v7.75c0 .414.336.75.75.75h11.5a.75.75 0 0 0 .75-.75V8h-13ZM5 4.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V5a.75.75 0 0 0-.75-.75H5ZM7.25 5A.75.75 0 0 1 8 4.25h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H8a.75.75 0 0 1-.75-.75V5ZM11 4.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V5a.75.75 0 0 0-.75-.75H11Z","clip-rule":"evenodd"})])}function Jz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M14.5 10a4.5 4.5 0 0 0 4.284-5.882c-.105-.324-.51-.391-.752-.15L15.34 6.66a.454.454 0 0 1-.493.11 3.01 3.01 0 0 1-1.618-1.616.455.455 0 0 1 .11-.494l2.694-2.692c.24-.241.174-.647-.15-.752a4.5 4.5 0 0 0-5.873 4.575c.055.873-.128 1.808-.8 2.368l-7.23 6.024a2.724 2.724 0 1 0 3.837 3.837l6.024-7.23c.56-.672 1.495-.855 2.368-.8.096.007.193.01.291.01ZM5 16a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M14.5 11.5c.173 0 .345-.007.514-.022l3.754 3.754a2.5 2.5 0 0 1-3.536 3.536l-4.41-4.41 2.172-2.607c.052-.063.147-.138.342-.196.202-.06.469-.087.777-.067.128.008.257.012.387.012ZM6 4.586l2.33 2.33a.452.452 0 0 1-.08.09L6.8 8.214 4.586 6H3.309a.5.5 0 0 1-.447-.276l-1.7-3.402a.5.5 0 0 1 .093-.577l.49-.49a.5.5 0 0 1 .577-.094l3.402 1.7A.5.5 0 0 1 6 3.31v1.277Z"})])}function Xz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M19 5.5a4.5 4.5 0 0 1-4.791 4.49c-.873-.055-1.808.128-2.368.8l-6.024 7.23a2.724 2.724 0 1 1-3.837-3.837L9.21 8.16c.672-.56.855-1.495.8-2.368a4.5 4.5 0 0 1 5.873-4.575c.324.105.39.51.15.752L13.34 4.66a.455.455 0 0 0-.11.494 3.01 3.01 0 0 0 1.617 1.617c.17.07.363.02.493-.111l2.692-2.692c.241-.241.647-.174.752.15.14.435.216.9.216 1.382ZM4 17a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function Qz(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM8.28 7.22a.75.75 0 0 0-1.06 1.06L8.94 10l-1.72 1.72a.75.75 0 1 0 1.06 1.06L10 11.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L11.06 10l1.72-1.72a.75.75 0 0 0-1.06-1.06L10 8.94 8.28 7.22Z","clip-rule":"evenodd"})])}function ej(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6.28 5.22a.75.75 0 0 0-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 1 0 1.06 1.06L10 11.06l3.72 3.72a.75.75 0 1 0 1.06-1.06L11.06 10l3.72-3.72a.75.75 0 0 0-1.06-1.06L10 8.94 6.28 5.22Z"})])}const tj=Object.freeze(Object.defineProperty({__proto__:null,AcademicCapIcon:tL,AdjustmentsHorizontalIcon:nL,AdjustmentsVerticalIcon:rL,ArchiveBoxArrowDownIcon:oL,ArchiveBoxIcon:lL,ArchiveBoxXMarkIcon:aL,ArrowDownCircleIcon:iL,ArrowDownIcon:pL,ArrowDownLeftIcon:cL,ArrowDownOnSquareIcon:dL,ArrowDownOnSquareStackIcon:sL,ArrowDownRightIcon:uL,ArrowDownTrayIcon:hL,ArrowLeftCircleIcon:fL,ArrowLeftEndOnRectangleIcon:mL,ArrowLeftIcon:kL,ArrowLeftOnRectangleIcon:wL,ArrowLeftStartOnRectangleIcon:gL,ArrowLongDownIcon:xL,ArrowLongLeftIcon:vL,ArrowLongRightIcon:yL,ArrowLongUpIcon:BL,ArrowPathIcon:bL,ArrowPathRoundedSquareIcon:EL,ArrowRightCircleIcon:CL,ArrowRightEndOnRectangleIcon:ML,ArrowRightIcon:_L,ArrowRightOnRectangleIcon:VL,ArrowRightStartOnRectangleIcon:AL,ArrowSmallDownIcon:NL,ArrowSmallLeftIcon:ZL,ArrowSmallRightIcon:SL,ArrowSmallUpIcon:$L,ArrowTopRightOnSquareIcon:IL,ArrowTrendingDownIcon:HL,ArrowTrendingUpIcon:TL,ArrowTurnDownLeftIcon:LL,ArrowTurnDownRightIcon:DL,ArrowTurnLeftDownIcon:PL,ArrowTurnLeftUpIcon:OL,ArrowTurnRightDownIcon:RL,ArrowTurnRightUpIcon:zL,ArrowTurnUpLeftIcon:jL,ArrowTurnUpRightIcon:FL,ArrowUpCircleIcon:UL,ArrowUpIcon:JL,ArrowUpLeftIcon:WL,ArrowUpOnSquareIcon:YL,ArrowUpOnSquareStackIcon:qL,ArrowUpRightIcon:KL,ArrowUpTrayIcon:GL,ArrowUturnDownIcon:XL,ArrowUturnLeftIcon:QL,ArrowUturnRightIcon:eD,ArrowUturnUpIcon:tD,ArrowsPointingInIcon:nD,ArrowsPointingOutIcon:rD,ArrowsRightLeftIcon:oD,ArrowsUpDownIcon:aD,AtSymbolIcon:lD,BackspaceIcon:iD,BackwardIcon:cD,BanknotesIcon:sD,Bars2Icon:dD,Bars3BottomLeftIcon:uD,Bars3BottomRightIcon:hD,Bars3CenterLeftIcon:pD,Bars3Icon:fD,Bars4Icon:mD,BarsArrowDownIcon:wD,BarsArrowUpIcon:gD,Battery0Icon:kD,Battery100Icon:xD,Battery50Icon:vD,BeakerIcon:yD,BellAlertIcon:BD,BellIcon:CD,BellSlashIcon:ED,BellSnoozeIcon:bD,BoldIcon:MD,BoltIcon:AD,BoltSlashIcon:VD,BookOpenIcon:_D,BookmarkIcon:SD,BookmarkSlashIcon:ND,BookmarkSquareIcon:ZD,BriefcaseIcon:$D,BugAntIcon:ID,BuildingLibraryIcon:HD,BuildingOffice2Icon:TD,BuildingOfficeIcon:LD,BuildingStorefrontIcon:DD,CakeIcon:PD,CalculatorIcon:OD,CalendarDateRangeIcon:RD,CalendarDaysIcon:zD,CalendarIcon:jD,CameraIcon:FD,ChartBarIcon:WD,ChartBarSquareIcon:UD,ChartPieIcon:qD,ChatBubbleBottomCenterIcon:KD,ChatBubbleBottomCenterTextIcon:YD,ChatBubbleLeftEllipsisIcon:GD,ChatBubbleLeftIcon:XD,ChatBubbleLeftRightIcon:JD,ChatBubbleOvalLeftEllipsisIcon:QD,ChatBubbleOvalLeftIcon:eP,CheckBadgeIcon:tP,CheckCircleIcon:nP,CheckIcon:rP,ChevronDoubleDownIcon:oP,ChevronDoubleLeftIcon:aP,ChevronDoubleRightIcon:lP,ChevronDoubleUpIcon:iP,ChevronDownIcon:cP,ChevronLeftIcon:sP,ChevronRightIcon:dP,ChevronUpDownIcon:uP,ChevronUpIcon:hP,CircleStackIcon:pP,ClipboardDocumentCheckIcon:fP,ClipboardDocumentIcon:wP,ClipboardDocumentListIcon:mP,ClipboardIcon:gP,ClockIcon:kP,CloudArrowDownIcon:xP,CloudArrowUpIcon:vP,CloudIcon:yP,CodeBracketIcon:EP,CodeBracketSquareIcon:BP,Cog6ToothIcon:bP,Cog8ToothIcon:CP,CogIcon:MP,CommandLineIcon:VP,ComputerDesktopIcon:AP,CpuChipIcon:_P,CreditCardIcon:NP,CubeIcon:SP,CubeTransparentIcon:ZP,CurrencyBangladeshiIcon:$P,CurrencyDollarIcon:IP,CurrencyEuroIcon:HP,CurrencyPoundIcon:TP,CurrencyRupeeIcon:LP,CurrencyYenIcon:DP,CursorArrowRaysIcon:PP,CursorArrowRippleIcon:OP,DevicePhoneMobileIcon:RP,DeviceTabletIcon:zP,DivideIcon:jP,DocumentArrowDownIcon:FP,DocumentArrowUpIcon:UP,DocumentChartBarIcon:WP,DocumentCheckIcon:qP,DocumentCurrencyBangladeshiIcon:YP,DocumentCurrencyDollarIcon:KP,DocumentCurrencyEuroIcon:GP,DocumentCurrencyPoundIcon:JP,DocumentCurrencyRupeeIcon:XP,DocumentCurrencyYenIcon:QP,DocumentDuplicateIcon:eO,DocumentIcon:aO,DocumentMagnifyingGlassIcon:tO,DocumentMinusIcon:nO,DocumentPlusIcon:rO,DocumentTextIcon:oO,EllipsisHorizontalCircleIcon:lO,EllipsisHorizontalIcon:iO,EllipsisVerticalIcon:cO,EnvelopeIcon:dO,EnvelopeOpenIcon:sO,EqualsIcon:uO,ExclamationCircleIcon:hO,ExclamationTriangleIcon:pO,EyeDropperIcon:fO,EyeIcon:wO,EyeSlashIcon:mO,FaceFrownIcon:gO,FaceSmileIcon:kO,FilmIcon:xO,FingerPrintIcon:vO,FireIcon:yO,FlagIcon:BO,FolderArrowDownIcon:EO,FolderIcon:VO,FolderMinusIcon:bO,FolderOpenIcon:CO,FolderPlusIcon:MO,ForwardIcon:AO,FunnelIcon:_O,GifIcon:NO,GiftIcon:SO,GiftTopIcon:ZO,GlobeAltIcon:$O,GlobeAmericasIcon:IO,GlobeAsiaAustraliaIcon:HO,GlobeEuropeAfricaIcon:TO,H1Icon:LO,H2Icon:DO,H3Icon:PO,HandRaisedIcon:OO,HandThumbDownIcon:RO,HandThumbUpIcon:zO,HashtagIcon:jO,HeartIcon:FO,HomeIcon:WO,HomeModernIcon:UO,IdentificationIcon:qO,InboxArrowDownIcon:YO,InboxIcon:GO,InboxStackIcon:KO,InformationCircleIcon:JO,ItalicIcon:XO,KeyIcon:QO,LanguageIcon:eR,LifebuoyIcon:tR,LightBulbIcon:nR,LinkIcon:oR,LinkSlashIcon:rR,ListBulletIcon:aR,LockClosedIcon:lR,LockOpenIcon:iR,MagnifyingGlassCircleIcon:cR,MagnifyingGlassIcon:uR,MagnifyingGlassMinusIcon:sR,MagnifyingGlassPlusIcon:dR,MapIcon:pR,MapPinIcon:hR,MegaphoneIcon:fR,MicrophoneIcon:mR,MinusCircleIcon:wR,MinusIcon:kR,MinusSmallIcon:gR,MoonIcon:xR,MusicalNoteIcon:vR,NewspaperIcon:yR,NoSymbolIcon:BR,NumberedListIcon:ER,PaintBrushIcon:bR,PaperAirplaneIcon:CR,PaperClipIcon:MR,PauseCircleIcon:VR,PauseIcon:AR,PencilIcon:NR,PencilSquareIcon:_R,PercentBadgeIcon:ZR,PhoneArrowDownLeftIcon:SR,PhoneArrowUpRightIcon:$R,PhoneIcon:HR,PhoneXMarkIcon:IR,PhotoIcon:TR,PlayCircleIcon:LR,PlayIcon:PR,PlayPauseIcon:DR,PlusCircleIcon:OR,PlusIcon:zR,PlusSmallIcon:RR,PowerIcon:jR,PresentationChartBarIcon:FR,PresentationChartLineIcon:UR,PrinterIcon:WR,PuzzlePieceIcon:qR,QrCodeIcon:YR,QuestionMarkCircleIcon:KR,QueueListIcon:GR,RadioIcon:JR,ReceiptPercentIcon:XR,ReceiptRefundIcon:QR,RectangleGroupIcon:ez,RectangleStackIcon:tz,RocketLaunchIcon:nz,RssIcon:rz,ScaleIcon:oz,ScissorsIcon:az,ServerIcon:iz,ServerStackIcon:lz,ShareIcon:cz,ShieldCheckIcon:sz,ShieldExclamationIcon:dz,ShoppingBagIcon:uz,ShoppingCartIcon:hz,SignalIcon:fz,SignalSlashIcon:pz,SlashIcon:mz,SparklesIcon:wz,SpeakerWaveIcon:gz,SpeakerXMarkIcon:kz,Square2StackIcon:xz,Square3Stack3DIcon:vz,Squares2X2Icon:yz,SquaresPlusIcon:Bz,StarIcon:Ez,StopCircleIcon:bz,StopIcon:Cz,StrikethroughIcon:Mz,SunIcon:Vz,SwatchIcon:Az,TableCellsIcon:_z,TagIcon:Nz,TicketIcon:Zz,TrashIcon:Sz,TrophyIcon:$z,TruckIcon:Iz,TvIcon:Hz,UnderlineIcon:Tz,UserCircleIcon:Lz,UserGroupIcon:Dz,UserIcon:Rz,UserMinusIcon:Pz,UserPlusIcon:Oz,UsersIcon:zz,VariableIcon:jz,VideoCameraIcon:Uz,VideoCameraSlashIcon:Fz,ViewColumnsIcon:Wz,ViewfinderCircleIcon:qz,WalletIcon:Yz,WifiIcon:Kz,WindowIcon:Gz,WrenchIcon:Xz,WrenchScrewdriverIcon:Jz,XCircleIcon:Qz,XMarkIcon:ej},Symbol.toStringTag,{value:"Module"}));function nj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7.702 1.368a.75.75 0 0 1 .597 0c2.098.91 4.105 1.99 6.004 3.223a.75.75 0 0 1-.194 1.348A34.27 34.27 0 0 0 8.341 8.25a.75.75 0 0 1-.682 0c-.625-.32-1.262-.62-1.909-.901v-.542a36.878 36.878 0 0 1 2.568-1.33.75.75 0 0 0-.636-1.357 38.39 38.39 0 0 0-3.06 1.605.75.75 0 0 0-.372.648v.365c-.773-.294-1.56-.56-2.359-.8a.75.75 0 0 1-.194-1.347 40.901 40.901 0 0 1 6.005-3.223ZM4.25 8.348c-.53-.212-1.067-.411-1.611-.596a40.973 40.973 0 0 0-.418 2.97.75.75 0 0 0 .474.776c.175.068.35.138.524.21a5.544 5.544 0 0 1-.58.681.75.75 0 1 0 1.06 1.06c.35-.349.655-.726.915-1.124a29.282 29.282 0 0 0-1.395-.617A5.483 5.483 0 0 0 4.25 8.5v-.152Z"}),e.createElementVNode("path",{d:"M7.603 13.96c-.96-.6-1.958-1.147-2.989-1.635a6.981 6.981 0 0 0 1.12-3.341c.419.192.834.393 1.244.602a2.25 2.25 0 0 0 2.045 0 32.787 32.787 0 0 1 4.338-1.834c.175.978.315 1.969.419 2.97a.75.75 0 0 1-.474.776 29.385 29.385 0 0 0-4.909 2.461.75.75 0 0 1-.794 0Z"})])}function rj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6.5 2.25a.75.75 0 0 0-1.5 0v3a.75.75 0 0 0 1.5 0V4.5h6.75a.75.75 0 0 0 0-1.5H6.5v-.75ZM11 6.5a.75.75 0 0 0-1.5 0v3a.75.75 0 0 0 1.5 0v-.75h2.25a.75.75 0 0 0 0-1.5H11V6.5ZM5.75 10a.75.75 0 0 1 .75.75v.75h6.75a.75.75 0 0 1 0 1.5H6.5v.75a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 .75-.75ZM2.75 7.25H8.5v1.5H2.75a.75.75 0 0 1 0-1.5ZM4 3H2.75a.75.75 0 0 0 0 1.5H4V3ZM2.75 11.5H4V13H2.75a.75.75 0 0 1 0-1.5Z"})])}function oj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7.25 13.25V7.5h1.5v5.75a.75.75 0 0 1-1.5 0ZM8.75 2.75V5h.75a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h.75V2.75a.75.75 0 0 1 1.5 0ZM2.25 9.5a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5H4.5V2.75a.75.75 0 0 0-1.5 0V9.5h-.75ZM10 10.25a.75.75 0 0 1 .75-.75h.75V2.75a.75.75 0 0 1 1.5 0V9.5h.75a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75ZM3 12v1.25a.75.75 0 0 0 1.5 0V12H3ZM11.5 13.25V12H13v1.25a.75.75 0 0 1-1.5 0Z"})])}function aj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2 3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M13 6H3v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V6ZM8.75 7.75a.75.75 0 0 0-1.5 0v2.69L6.03 9.22a.75.75 0 0 0-1.06 1.06l2.5 2.5a.75.75 0 0 0 1.06 0l2.5-2.5a.75.75 0 1 0-1.06-1.06l-1.22 1.22V7.75Z","clip-rule":"evenodd"})])}function lj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2 3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M13 6H3v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V6ZM5.72 7.47a.75.75 0 0 1 1.06 0L8 8.69l1.22-1.22a.75.75 0 1 1 1.06 1.06L9.06 9.75l1.22 1.22a.75.75 0 1 1-1.06 1.06L8 10.81l-1.22 1.22a.75.75 0 0 1-1.06-1.06l1.22-1.22-1.22-1.22a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function ij(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3 2a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 6h10v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6Zm3 2.75A.75.75 0 0 1 6.75 8h2.5a.75.75 0 0 1 0 1.5h-2.5A.75.75 0 0 1 6 8.75Z","clip-rule":"evenodd"})])}function cj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14Zm.75-10.25a.75.75 0 0 0-1.5 0v4.69L6.03 8.22a.75.75 0 0 0-1.06 1.06l2.5 2.5a.75.75 0 0 0 1.06 0l2.5-2.5a.75.75 0 1 0-1.06-1.06L8.75 9.44V4.75Z","clip-rule":"evenodd"})])}function sj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.78 4.22a.75.75 0 0 1 0 1.06L6.56 10.5h3.69a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75v-5.5a.75.75 0 0 1 1.5 0v3.69l5.22-5.22a.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function dj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7 1a.75.75 0 0 1 .75.75V6h-1.5V1.75A.75.75 0 0 1 7 1ZM6.25 6v2.94L5.03 7.72a.75.75 0 0 0-1.06 1.06l2.5 2.5a.75.75 0 0 0 1.06 0l2.5-2.5a.75.75 0 1 0-1.06-1.06L7.75 8.94V6H10a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2.25Z"}),e.createElementVNode("path",{d:"M4.268 14A2 2 0 0 0 6 15h6a2 2 0 0 0 2-2v-3a2 2 0 0 0-1-1.732V11a3 3 0 0 1-3 3H4.268Z"})])}function uj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8 1a.75.75 0 0 1 .75.75V5h-1.5V1.75A.75.75 0 0 1 8 1ZM7.25 5v4.44L6.03 8.22a.75.75 0 0 0-1.06 1.06l2.5 2.5a.75.75 0 0 0 1.06 0l2.5-2.5a.75.75 0 1 0-1.06-1.06L8.75 9.44V5H11a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2.25Z"})])}function hj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.22 4.22a.75.75 0 0 0 0 1.06l5.22 5.22H5.75a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 .75-.75v-5.5a.75.75 0 0 0-1.5 0v3.69L5.28 4.22a.75.75 0 0 0-1.06 0Z","clip-rule":"evenodd"})])}function pj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8.75 2.75a.75.75 0 0 0-1.5 0v5.69L5.03 6.22a.75.75 0 0 0-1.06 1.06l3.5 3.5a.75.75 0 0 0 1.06 0l3.5-3.5a.75.75 0 0 0-1.06-1.06L8.75 8.44V2.75Z"}),e.createElementVNode("path",{d:"M3.5 9.75a.75.75 0 0 0-1.5 0v1.5A2.75 2.75 0 0 0 4.75 14h6.5A2.75 2.75 0 0 0 14 11.25v-1.5a.75.75 0 0 0-1.5 0v1.5c0 .69-.56 1.25-1.25 1.25h-6.5c-.69 0-1.25-.56-1.25-1.25v-1.5Z"})])}function fj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 2a.75.75 0 0 1 .75.75v8.69l3.22-3.22a.75.75 0 1 1 1.06 1.06l-4.5 4.5a.75.75 0 0 1-1.06 0l-4.5-4.5a.75.75 0 0 1 1.06-1.06l3.22 3.22V2.75A.75.75 0 0 1 8 2Z","clip-rule":"evenodd"})])}function mj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8Zm10.25.75a.75.75 0 0 0 0-1.5H6.56l1.22-1.22a.75.75 0 0 0-1.06-1.06l-2.5 2.5a.75.75 0 0 0 0 1.06l2.5 2.5a.75.75 0 1 0 1.06-1.06L6.56 8.75h4.69Z","clip-rule":"evenodd"})])}function wj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.75 2A2.75 2.75 0 0 0 2 4.75v6.5A2.75 2.75 0 0 0 4.75 14h3a2.75 2.75 0 0 0 2.75-2.75v-.5a.75.75 0 0 0-1.5 0v.5c0 .69-.56 1.25-1.25 1.25h-3c-.69 0-1.25-.56-1.25-1.25v-6.5c0-.69.56-1.25 1.25-1.25h3C8.44 3.5 9 4.06 9 4.75v.5a.75.75 0 0 0 1.5 0v-.5A2.75 2.75 0 0 0 7.75 2h-3Z"}),e.createElementVNode("path",{d:"M8.03 6.28a.75.75 0 0 0-1.06-1.06L4.72 7.47a.75.75 0 0 0 0 1.06l2.25 2.25a.75.75 0 1 0 1.06-1.06l-.97-.97h7.19a.75.75 0 0 0 0-1.5H7.06l.97-.97Z"})])}function gj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M14 4.75A2.75 2.75 0 0 0 11.25 2h-3A2.75 2.75 0 0 0 5.5 4.75v.5a.75.75 0 0 0 1.5 0v-.5c0-.69.56-1.25 1.25-1.25h3c.69 0 1.25.56 1.25 1.25v6.5c0 .69-.56 1.25-1.25 1.25h-3c-.69 0-1.25-.56-1.25-1.25v-.5a.75.75 0 0 0-1.5 0v.5A2.75 2.75 0 0 0 8.25 14h3A2.75 2.75 0 0 0 14 11.25v-6.5Zm-9.47.47a.75.75 0 0 0-1.06 0L1.22 7.47a.75.75 0 0 0 0 1.06l2.25 2.25a.75.75 0 1 0 1.06-1.06l-.97-.97h7.19a.75.75 0 0 0 0-1.5H3.56l.97-.97a.75.75 0 0 0 0-1.06Z","clip-rule":"evenodd"})])}function kj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M14 8a.75.75 0 0 1-.75.75H4.56l3.22 3.22a.75.75 0 1 1-1.06 1.06l-4.5-4.5a.75.75 0 0 1 0-1.06l4.5-4.5a.75.75 0 0 1 1.06 1.06L4.56 7.25h8.69A.75.75 0 0 1 14 8Z","clip-rule":"evenodd"})])}function xj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 2a.75.75 0 0 1 .75.75v8.69l1.22-1.22a.75.75 0 1 1 1.06 1.06l-2.5 2.5a.75.75 0 0 1-1.06 0l-2.5-2.5a.75.75 0 1 1 1.06-1.06l1.22 1.22V2.75A.75.75 0 0 1 8 2Z","clip-rule":"evenodd"})])}function vj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M14 8a.75.75 0 0 1-.75.75H4.56l1.22 1.22a.75.75 0 1 1-1.06 1.06l-2.5-2.5a.75.75 0 0 1 0-1.06l2.5-2.5a.75.75 0 0 1 1.06 1.06L4.56 7.25h8.69A.75.75 0 0 1 14 8Z","clip-rule":"evenodd"})])}function yj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 8c0 .414.336.75.75.75h8.69l-1.22 1.22a.75.75 0 1 0 1.06 1.06l2.5-2.5a.75.75 0 0 0 0-1.06l-2.5-2.5a.75.75 0 1 0-1.06 1.06l1.22 1.22H2.75A.75.75 0 0 0 2 8Z","clip-rule":"evenodd"})])}function Bj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 14a.75.75 0 0 0 .75-.75V4.56l1.22 1.22a.75.75 0 1 0 1.06-1.06l-2.5-2.5a.75.75 0 0 0-1.06 0l-2.5 2.5a.75.75 0 0 0 1.06 1.06l1.22-1.22v8.69c0 .414.336.75.75.75Z","clip-rule":"evenodd"})])}function Ej(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 3.5c-.771 0-1.537.022-2.297.066a1.124 1.124 0 0 0-1.058 1.028l-.018.214a.75.75 0 1 1-1.495-.12l.018-.221a2.624 2.624 0 0 1 2.467-2.399 41.628 41.628 0 0 1 4.766 0 2.624 2.624 0 0 1 2.467 2.399c.056.662.097 1.329.122 2l.748-.748a.75.75 0 1 1 1.06 1.06l-2 2.001a.75.75 0 0 1-1.061 0l-2-1.999a.75.75 0 0 1 1.061-1.06l.689.688a39.89 39.89 0 0 0-.114-1.815 1.124 1.124 0 0 0-1.058-1.028A40.138 40.138 0 0 0 8 3.5ZM3.22 7.22a.75.75 0 0 1 1.061 0l2 2a.75.75 0 1 1-1.06 1.06l-.69-.69c.025.61.062 1.214.114 1.816.048.56.496.996 1.058 1.028a40.112 40.112 0 0 0 4.594 0 1.124 1.124 0 0 0 1.058-1.028 39.2 39.2 0 0 0 .018-.219.75.75 0 1 1 1.495.12l-.018.226a2.624 2.624 0 0 1-2.467 2.399 41.648 41.648 0 0 1-4.766 0 2.624 2.624 0 0 1-2.467-2.399 41.395 41.395 0 0 1-.122-2l-.748.748A.75.75 0 1 1 1.22 9.22l2-2Z","clip-rule":"evenodd"})])}function bj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M13.836 2.477a.75.75 0 0 1 .75.75v3.182a.75.75 0 0 1-.75.75h-3.182a.75.75 0 0 1 0-1.5h1.37l-.84-.841a4.5 4.5 0 0 0-7.08.932.75.75 0 0 1-1.3-.75 6 6 0 0 1 9.44-1.242l.842.84V3.227a.75.75 0 0 1 .75-.75Zm-.911 7.5A.75.75 0 0 1 13.199 11a6 6 0 0 1-9.44 1.241l-.84-.84v1.371a.75.75 0 0 1-1.5 0V9.591a.75.75 0 0 1 .75-.75H5.35a.75.75 0 0 1 0 1.5H3.98l.841.841a4.5 4.5 0 0 0 7.08-.932.75.75 0 0 1 1.025-.273Z","clip-rule":"evenodd"})])}function Cj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 8A7 7 0 1 0 1 8a7 7 0 0 0 14 0ZM4.75 7.25a.75.75 0 0 0 0 1.5h4.69L8.22 9.97a.75.75 0 1 0 1.06 1.06l2.5-2.5a.75.75 0 0 0 0-1.06l-2.5-2.5a.75.75 0 0 0-1.06 1.06l1.22 1.22H4.75Z","clip-rule":"evenodd"})])}function Mj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M11.25 2A2.75 2.75 0 0 1 14 4.75v6.5A2.75 2.75 0 0 1 11.25 14h-3a2.75 2.75 0 0 1-2.75-2.75v-.5a.75.75 0 0 1 1.5 0v.5c0 .69.56 1.25 1.25 1.25h3c.69 0 1.25-.56 1.25-1.25v-6.5c0-.69-.56-1.25-1.25-1.25h-3C7.56 3.5 7 4.06 7 4.75v.5a.75.75 0 0 1-1.5 0v-.5A2.75 2.75 0 0 1 8.25 2h3Z"}),e.createElementVNode("path",{d:"M7.97 6.28a.75.75 0 0 1 1.06-1.06l2.25 2.25a.75.75 0 0 1 0 1.06l-2.25 2.25a.75.75 0 1 1-1.06-1.06l.97-.97H1.75a.75.75 0 0 1 0-1.5h7.19l-.97-.97Z"})])}function Vj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 4.75A2.75 2.75 0 0 1 4.75 2h3a2.75 2.75 0 0 1 2.75 2.75v.5a.75.75 0 0 1-1.5 0v-.5c0-.69-.56-1.25-1.25-1.25h-3c-.69 0-1.25.56-1.25 1.25v6.5c0 .69.56 1.25 1.25 1.25h3c.69 0 1.25-.56 1.25-1.25v-.5a.75.75 0 0 1 1.5 0v.5A2.75 2.75 0 0 1 7.75 14h-3A2.75 2.75 0 0 1 2 11.25v-6.5Zm9.47.47a.75.75 0 0 1 1.06 0l2.25 2.25a.75.75 0 0 1 0 1.06l-2.25 2.25a.75.75 0 1 1-1.06-1.06l.97-.97H5.25a.75.75 0 0 1 0-1.5h7.19l-.97-.97a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function Aj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 8a.75.75 0 0 1 .75-.75h8.69L8.22 4.03a.75.75 0 0 1 1.06-1.06l4.5 4.5a.75.75 0 0 1 0 1.06l-4.5 4.5a.75.75 0 0 1-1.06-1.06l3.22-3.22H2.75A.75.75 0 0 1 2 8Z","clip-rule":"evenodd"})])}function _j(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6.22 8.72a.75.75 0 0 0 1.06 1.06l5.22-5.22v1.69a.75.75 0 0 0 1.5 0v-3.5a.75.75 0 0 0-.75-.75h-3.5a.75.75 0 0 0 0 1.5h1.69L6.22 8.72Z"}),e.createElementVNode("path",{d:"M3.5 6.75c0-.69.56-1.25 1.25-1.25H7A.75.75 0 0 0 7 4H4.75A2.75 2.75 0 0 0 2 6.75v4.5A2.75 2.75 0 0 0 4.75 14h4.5A2.75 2.75 0 0 0 12 11.25V9a.75.75 0 0 0-1.5 0v2.25c0 .69-.56 1.25-1.25 1.25h-4.5c-.69 0-1.25-.56-1.25-1.25v-4.5Z"})])}function Nj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.22 4.22a.75.75 0 0 1 1.06 0L6 7.94l2.761-2.762a.75.75 0 0 1 1.158.12 24.9 24.9 0 0 1 2.718 5.556l.729-1.261a.75.75 0 0 1 1.299.75l-1.591 2.755a.75.75 0 0 1-1.025.275l-2.756-1.591a.75.75 0 1 1 .75-1.3l1.097.634a23.417 23.417 0 0 0-1.984-4.211L6.53 9.53a.75.75 0 0 1-1.06 0L1.22 5.28a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function Zj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.808 4.057a.75.75 0 0 1 .92-.527l3.116.849a.75.75 0 0 1 .528.915l-.823 3.121a.75.75 0 0 1-1.45-.382l.337-1.281a23.484 23.484 0 0 0-3.609 3.056.75.75 0 0 1-1.07.01L6 8.06l-3.72 3.72a.75.75 0 1 1-1.06-1.061l4.25-4.25a.75.75 0 0 1 1.06 0l1.756 1.755a25.015 25.015 0 0 1 3.508-2.85l-1.46-.398a.75.75 0 0 1-.526-.92Z","clip-rule":"evenodd"})])}function Sj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M13.25 2a.75.75 0 0 0-.75.75v6.5H4.56l.97-.97a.75.75 0 0 0-1.06-1.06L2.22 9.47a.75.75 0 0 0 0 1.06l2.25 2.25a.75.75 0 0 0 1.06-1.06l-.97-.97h8.69A.75.75 0 0 0 14 10V2.75a.75.75 0 0 0-.75-.75Z","clip-rule":"evenodd"})])}function $j(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.75 2a.75.75 0 0 1 .75.75v6.5h7.94l-.97-.97a.75.75 0 0 1 1.06-1.06l2.25 2.25a.75.75 0 0 1 0 1.06l-2.25 2.25a.75.75 0 1 1-1.06-1.06l.97-.97H2.75A.75.75 0 0 1 2 10V2.75A.75.75 0 0 1 2.75 2Z","clip-rule":"evenodd"})])}function Ij(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.47 2.22A.75.75 0 0 1 6 2h7.25a.75.75 0 0 1 0 1.5h-6.5v7.94l.97-.97a.75.75 0 0 1 1.06 1.06l-2.25 2.25a.75.75 0 0 1-1.06 0l-2.25-2.25a.75.75 0 1 1 1.06-1.06l.97.97V2.75a.75.75 0 0 1 .22-.53Z","clip-rule":"evenodd"})])}function Hj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M14 13.25a.75.75 0 0 0-.75-.75h-6.5V4.56l.97.97a.75.75 0 0 0 1.06-1.06L6.53 2.22a.75.75 0 0 0-1.06 0L3.22 4.47a.75.75 0 0 0 1.06 1.06l.97-.97v8.69c0 .414.336.75.75.75h7.25a.75.75 0 0 0 .75-.75Z","clip-rule":"evenodd"})])}function Tj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 2.75c0 .414.336.75.75.75h6.5v7.94l-.97-.97a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.06 0l2.25-2.25a.75.75 0 1 0-1.06-1.06l-.97.97V2.75A.75.75 0 0 0 10 2H2.75a.75.75 0 0 0-.75.75Z","clip-rule":"evenodd"})])}function Lj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 13.25a.75.75 0 0 1 .75-.75h6.5V4.56l-.97.97a.75.75 0 0 1-1.06-1.06l2.25-2.25a.75.75 0 0 1 1.06 0l2.25 2.25a.75.75 0 0 1-1.06 1.06l-.97-.97v8.69A.75.75 0 0 1 10 14H2.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function Dj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M13.25 14a.75.75 0 0 1-.75-.75v-6.5H4.56l.97.97a.75.75 0 0 1-1.06 1.06L2.22 6.53a.75.75 0 0 1 0-1.06l2.25-2.25a.75.75 0 0 1 1.06 1.06l-.97.97h8.69A.75.75 0 0 1 14 6v7.25a.75.75 0 0 1-.75.75Z","clip-rule":"evenodd"})])}function Pj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.75 14a.75.75 0 0 0 .75-.75v-6.5h7.94l-.97.97a.75.75 0 0 0 1.06 1.06l2.25-2.25a.75.75 0 0 0 0-1.06l-2.25-2.25a.75.75 0 1 0-1.06 1.06l.97.97H2.75A.75.75 0 0 0 2 6v7.25c0 .414.336.75.75.75Z","clip-rule":"evenodd"})])}function Oj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1Zm-.75 10.25a.75.75 0 0 0 1.5 0V6.56l1.22 1.22a.75.75 0 1 0 1.06-1.06l-2.5-2.5a.75.75 0 0 0-1.06 0l-2.5 2.5a.75.75 0 0 0 1.06 1.06l1.22-1.22v4.69Z","clip-rule":"evenodd"})])}function Rj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.78 11.78a.75.75 0 0 0 0-1.06L6.56 5.5h3.69a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0-.75.75v5.5a.75.75 0 0 0 1.5 0V6.56l5.22 5.22a.75.75 0 0 0 1.06 0Z","clip-rule":"evenodd"})])}function zj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.268 14A2 2 0 0 0 7 15h4a2 2 0 0 0 2-2v-3a2 2 0 0 0-1-1.732V11a3 3 0 0 1-3 3H5.268ZM6.25 6h1.5V3.56l1.22 1.22a.75.75 0 1 0 1.06-1.06l-2.5-2.5a.75.75 0 0 0-1.06 0l-2.5 2.5a.75.75 0 0 0 1.06 1.06l1.22-1.22V6Z"}),e.createElementVNode("path",{d:"M6.25 8.75a.75.75 0 0 0 1.5 0V6H9a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h1.25v2.75Z"})])}function jj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8.75 6h-1.5V3.56L6.03 4.78a.75.75 0 0 1-1.06-1.06l2.5-2.5a.75.75 0 0 1 1.06 0l2.5 2.5a.75.75 0 1 1-1.06 1.06L8.75 3.56V6H11a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2.25v5.25a.75.75 0 0 0 1.5 0V6Z"})])}function Fj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.22 11.78a.75.75 0 0 1 0-1.06L9.44 5.5H5.75a.75.75 0 0 1 0-1.5h5.5a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0V6.56l-5.22 5.22a.75.75 0 0 1-1.06 0Z","clip-rule":"evenodd"})])}function Uj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7.25 10.25a.75.75 0 0 0 1.5 0V4.56l2.22 2.22a.75.75 0 1 0 1.06-1.06l-3.5-3.5a.75.75 0 0 0-1.06 0l-3.5 3.5a.75.75 0 0 0 1.06 1.06l2.22-2.22v5.69Z"}),e.createElementVNode("path",{d:"M3.5 9.75a.75.75 0 0 0-1.5 0v1.5A2.75 2.75 0 0 0 4.75 14h6.5A2.75 2.75 0 0 0 14 11.25v-1.5a.75.75 0 0 0-1.5 0v1.5c0 .69-.56 1.25-1.25 1.25h-6.5c-.69 0-1.25-.56-1.25-1.25v-1.5Z"})])}function Wj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 14a.75.75 0 0 1-.75-.75V4.56L4.03 7.78a.75.75 0 0 1-1.06-1.06l4.5-4.5a.75.75 0 0 1 1.06 0l4.5 4.5a.75.75 0 0 1-1.06 1.06L8.75 4.56v8.69A.75.75 0 0 1 8 14Z","clip-rule":"evenodd"})])}function qj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.75 3.5A2.75 2.75 0 0 0 7 6.25v5.19l2.22-2.22a.75.75 0 1 1 1.06 1.06l-3.5 3.5a.75.75 0 0 1-1.06 0l-3.5-3.5a.75.75 0 1 1 1.06-1.06l2.22 2.22V6.25a4.25 4.25 0 0 1 8.5 0v1a.75.75 0 0 1-1.5 0v-1A2.75 2.75 0 0 0 9.75 3.5Z","clip-rule":"evenodd"})])}function Yj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12.5 9.75A2.75 2.75 0 0 0 9.75 7H4.56l2.22 2.22a.75.75 0 1 1-1.06 1.06l-3.5-3.5a.75.75 0 0 1 0-1.06l3.5-3.5a.75.75 0 0 1 1.06 1.06L4.56 5.5h5.19a4.25 4.25 0 0 1 0 8.5h-1a.75.75 0 0 1 0-1.5h1a2.75 2.75 0 0 0 2.75-2.75Z","clip-rule":"evenodd"})])}function Kj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.5 9.75A2.75 2.75 0 0 1 6.25 7h5.19L9.22 9.22a.75.75 0 1 0 1.06 1.06l3.5-3.5a.75.75 0 0 0 0-1.06l-3.5-3.5a.75.75 0 1 0-1.06 1.06l2.22 2.22H6.25a4.25 4.25 0 0 0 0 8.5h1a.75.75 0 0 0 0-1.5h-1A2.75 2.75 0 0 1 3.5 9.75Z","clip-rule":"evenodd"})])}function Gj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.25 12.5A2.75 2.75 0 0 0 9 9.75V4.56L6.78 6.78a.75.75 0 0 1-1.06-1.06l3.5-3.5a.75.75 0 0 1 1.06 0l3.5 3.5a.75.75 0 0 1-1.06 1.06L10.5 4.56v5.19a4.25 4.25 0 0 1-8.5 0v-1a.75.75 0 0 1 1.5 0v1a2.75 2.75 0 0 0 2.75 2.75Z","clip-rule":"evenodd"})])}function Jj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.22 2.22a.75.75 0 0 1 1.06 0L5.5 4.44V2.75a.75.75 0 0 1 1.5 0v3.5a.75.75 0 0 1-.75.75h-3.5a.75.75 0 0 1 0-1.5h1.69L2.22 3.28a.75.75 0 0 1 0-1.06Zm10.5 0a.75.75 0 1 1 1.06 1.06L11.56 5.5h1.69a.75.75 0 0 1 0 1.5h-3.5A.75.75 0 0 1 9 6.25v-3.5a.75.75 0 0 1 1.5 0v1.69l2.22-2.22ZM2.75 9h3.5a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-1.69l-2.22 2.22a.75.75 0 0 1-1.06-1.06l2.22-2.22H2.75a.75.75 0 0 1 0-1.5ZM9 9.75A.75.75 0 0 1 9.75 9h3.5a.75.75 0 0 1 0 1.5h-1.69l2.22 2.22a.75.75 0 1 1-1.06 1.06l-2.22-2.22v1.69a.75.75 0 0 1-1.5 0v-3.5Z","clip-rule":"evenodd"})])}function Xj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.75 9a.75.75 0 0 1 .75.75v1.69l2.22-2.22a.75.75 0 0 1 1.06 1.06L4.56 12.5h1.69a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75v-3.5A.75.75 0 0 1 2.75 9ZM2.75 7a.75.75 0 0 0 .75-.75V4.56l2.22 2.22a.75.75 0 0 0 1.06-1.06L4.56 3.5h1.69a.75.75 0 0 0 0-1.5h-3.5a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75ZM13.25 9a.75.75 0 0 0-.75.75v1.69l-2.22-2.22a.75.75 0 1 0-1.06 1.06l2.22 2.22H9.75a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75ZM13.25 7a.75.75 0 0 1-.75-.75V4.56l-2.22 2.22a.75.75 0 1 1-1.06-1.06l2.22-2.22H9.75a.75.75 0 0 1 0-1.5h3.5a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-.75.75Z","clip-rule":"evenodd"})])}function Qj(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.47 2.22a.75.75 0 0 1 1.06 0l2.25 2.25a.75.75 0 0 1 0 1.06l-2.25 2.25a.75.75 0 1 1-1.06-1.06l.97-.97H5.75a.75.75 0 0 1 0-1.5h5.69l-.97-.97a.75.75 0 0 1 0-1.06Zm-4.94 6a.75.75 0 0 1 0 1.06l-.97.97h5.69a.75.75 0 0 1 0 1.5H4.56l.97.97a.75.75 0 1 1-1.06 1.06l-2.25-2.25a.75.75 0 0 1 0-1.06l2.25-2.25a.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function eF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M13.78 10.47a.75.75 0 0 1 0 1.06l-2.25 2.25a.75.75 0 0 1-1.06 0l-2.25-2.25a.75.75 0 1 1 1.06-1.06l.97.97V5.75a.75.75 0 0 1 1.5 0v5.69l.97-.97a.75.75 0 0 1 1.06 0ZM2.22 5.53a.75.75 0 0 1 0-1.06l2.25-2.25a.75.75 0 0 1 1.06 0l2.25 2.25a.75.75 0 0 1-1.06 1.06l-.97-.97v5.69a.75.75 0 0 1-1.5 0V4.56l-.97.97a.75.75 0 0 1-1.06 0Z","clip-rule":"evenodd"})])}function tF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.89 4.111a5.5 5.5 0 1 0 0 7.778.75.75 0 1 1 1.06 1.061A7 7 0 1 1 15 8a2.5 2.5 0 0 1-4.083 1.935A3.5 3.5 0 1 1 11.5 8a1 1 0 0 0 2 0 5.48 5.48 0 0 0-1.61-3.889ZM10 8a2 2 0 1 0-4 0 2 2 0 0 0 4 0Z","clip-rule":"evenodd"})])}function nF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.414 3c-.464 0-.909.184-1.237.513L1.22 7.47a.75.75 0 0 0 0 1.06l3.957 3.957A1.75 1.75 0 0 0 6.414 13h5.836A2.75 2.75 0 0 0 15 10.25v-4.5A2.75 2.75 0 0 0 12.25 3H6.414ZM8.28 5.72a.75.75 0 0 0-1.06 1.06L8.44 8 7.22 9.22a.75.75 0 1 0 1.06 1.06L9.5 9.06l1.22 1.22a.75.75 0 1 0 1.06-1.06L10.56 8l1.22-1.22a.75.75 0 0 0-1.06-1.06L9.5 6.94 8.28 5.72Z","clip-rule":"evenodd"})])}function rF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8.5 4.75a.75.75 0 0 0-1.107-.66l-6 3.25a.75.75 0 0 0 0 1.32l6 3.25a.75.75 0 0 0 1.107-.66V8.988l5.393 2.921A.75.75 0 0 0 15 11.25v-6.5a.75.75 0 0 0-1.107-.66L8.5 7.013V4.75Z"})])}function oF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V3Zm9 3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-6.25-.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM11.5 6A.75.75 0 1 1 13 6a.75.75 0 0 1-1.5 0Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M13 11.75a.75.75 0 0 0-1.5 0v.179c0 .15-.138.28-.306.255A65.277 65.277 0 0 0 1.75 11.5a.75.75 0 0 0 0 1.5c3.135 0 6.215.228 9.227.668A1.764 1.764 0 0 0 13 11.928v-.178Z"})])}function aF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 4.75A.75.75 0 0 1 2.75 4h10.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 4.75Zm0 6.5a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function lF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 3.75A.75.75 0 0 1 2.75 3h10.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 3.75ZM2 8a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 8Zm0 4.25a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function iF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 3.75A.75.75 0 0 1 2.75 3h10.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 3.75ZM2 8a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 8Zm6 4.25a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function cF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 3.75A.75.75 0 0 1 2.75 3h10.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 3.75ZM2 8a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 2 8Zm0 4.25a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function sF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 3.75A.75.75 0 0 1 2.75 3h10.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 3.75ZM2 8a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 8Zm0 4.25a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function dF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 2.75A.75.75 0 0 1 2.75 2h10.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 2.75Zm0 10.5a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75ZM2 6.25a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 6.25Zm0 3.5A.75.75 0 0 1 2.75 9h10.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 9.75Z","clip-rule":"evenodd"})])}function uF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 2.75A.75.75 0 0 1 2.75 2h9.5a.75.75 0 0 1 0 1.5h-9.5A.75.75 0 0 1 2 2.75ZM2 6.25a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5A.75.75 0 0 1 2 6.25Zm0 3.5A.75.75 0 0 1 2.75 9h3.5a.75.75 0 0 1 0 1.5h-3.5A.75.75 0 0 1 2 9.75ZM14.78 11.47a.75.75 0 0 1 0 1.06l-2.25 2.25a.75.75 0 0 1-1.06 0l-2.25-2.25a.75.75 0 1 1 1.06-1.06l.97.97V6.75a.75.75 0 0 1 1.5 0v5.69l.97-.97a.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function hF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 2.75A.75.75 0 0 1 2.75 2h9.5a.75.75 0 0 1 0 1.5h-9.5A.75.75 0 0 1 2 2.75ZM2 6.25a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5A.75.75 0 0 1 2 6.25Zm0 3.5A.75.75 0 0 1 2.75 9h3.5a.75.75 0 0 1 0 1.5h-3.5A.75.75 0 0 1 2 9.75ZM9.22 9.53a.75.75 0 0 1 0-1.06l2.25-2.25a.75.75 0 0 1 1.06 0l2.25 2.25a.75.75 0 0 1-1.06 1.06l-.97-.97v5.69a.75.75 0 0 1-1.5 0V8.56l-.97.97a.75.75 0 0 1-1.06 0Z","clip-rule":"evenodd"})])}function pF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 6.25A2.25 2.25 0 0 1 3.25 4h8.5A2.25 2.25 0 0 1 14 6.25v.085a1.5 1.5 0 0 1 1 1.415v.5a1.5 1.5 0 0 1-1 1.415v.085A2.25 2.25 0 0 1 11.75 12h-8.5A2.25 2.25 0 0 1 1 9.75v-3.5Zm2.25-.75a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75h8.5a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75h-8.5Z","clip-rule":"evenodd"})])}function fF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4 7.75A.75.75 0 0 1 4.75 7h5.5a.75.75 0 0 1 .75.75v.5a.75.75 0 0 1-.75.75h-5.5A.75.75 0 0 1 4 8.25v-.5Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.25 4A2.25 2.25 0 0 0 1 6.25v3.5A2.25 2.25 0 0 0 3.25 12h8.5A2.25 2.25 0 0 0 14 9.75v-.085a1.5 1.5 0 0 0 1-1.415v-.5a1.5 1.5 0 0 0-1-1.415V6.25A2.25 2.25 0 0 0 11.75 4h-8.5ZM2.5 6.25a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-.75.75h-8.5a.75.75 0 0 1-.75-.75v-3.5Z","clip-rule":"evenodd"})])}function mF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 6.25A2.25 2.25 0 0 1 3.25 4h8.5A2.25 2.25 0 0 1 14 6.25v.085a1.5 1.5 0 0 1 1 1.415v.5a1.5 1.5 0 0 1-1 1.415v.085A2.25 2.25 0 0 1 11.75 12h-8.5A2.25 2.25 0 0 1 1 9.75v-3.5Zm2.25-.75a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75h8.5a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75h-8.5Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M4.75 7a.75.75 0 0 0-.75.75v.5c0 .414.336.75.75.75h2a.75.75 0 0 0 .75-.75v-.5A.75.75 0 0 0 6.75 7h-2Z"})])}function wF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11 3.5v2.257c0 .597.237 1.17.659 1.591l2.733 2.733c.39.39.608.918.608 1.469a2.04 2.04 0 0 1-1.702 2.024C11.573 13.854 9.803 14 8 14s-3.573-.146-5.298-.426A2.04 2.04 0 0 1 1 11.55c0-.551.219-1.08.608-1.47l2.733-2.732A2.25 2.25 0 0 0 5 5.758V3.5h-.25a.75.75 0 0 1 0-1.5h6.5a.75.75 0 0 1 0 1.5H11ZM6.5 5.757V3.5h3v2.257a3.75 3.75 0 0 0 1.098 2.652l.158.158a3.36 3.36 0 0 0-.075.034c-.424.2-.916.194-1.335-.016l-1.19-.595a4.943 4.943 0 0 0-2.07-.52A3.75 3.75 0 0 0 6.5 5.757Z","clip-rule":"evenodd"})])}function gF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.6 1.7A.75.75 0 1 0 2.4.799a6.978 6.978 0 0 0-1.123 2.247.75.75 0 1 0 1.44.418c.187-.644.489-1.24.883-1.764ZM13.6.799a.75.75 0 1 0-1.2.9 5.48 5.48 0 0 1 .883 1.765.75.75 0 1 0 1.44-.418A6.978 6.978 0 0 0 13.6.799Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 1a4 4 0 0 1 4 4v2.379c0 .398.158.779.44 1.06l1.267 1.268a1 1 0 0 1 .293.707V11a1 1 0 0 1-1 1h-2a3 3 0 1 1-6 0H3a1 1 0 0 1-1-1v-.586a1 1 0 0 1 .293-.707L3.56 8.44A1.5 1.5 0 0 0 4 7.38V5a4 4 0 0 1 4-4Zm0 12.5A1.5 1.5 0 0 1 6.5 12h3A1.5 1.5 0 0 1 8 13.5Z","clip-rule":"evenodd"})])}function kF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 7.379v-.904l6.743 6.742A3 3 0 0 1 5 12H3a1 1 0 0 1-1-1v-.586a1 1 0 0 1 .293-.707L3.56 8.44A1.5 1.5 0 0 0 4 7.38ZM6.5 12a1.5 1.5 0 0 0 3 0h-3Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M14 11a.997.997 0 0 1-.096.429L4.92 2.446A4 4 0 0 1 12 5v2.379c0 .398.158.779.44 1.06l1.267 1.268a1 1 0 0 1 .293.707V11ZM2.22 2.22a.75.75 0 0 1 1.06 0l10.5 10.5a.75.75 0 1 1-1.06 1.06L2.22 3.28a.75.75 0 0 1 0-1.06Z"})])}function xF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 1a4 4 0 0 1 4 4v2.379c0 .398.158.779.44 1.06l1.267 1.268a1 1 0 0 1 .293.707V11a1 1 0 0 1-1 1h-2a3 3 0 1 1-6 0H3a1 1 0 0 1-1-1v-.586a1 1 0 0 1 .293-.707L3.56 8.44A1.5 1.5 0 0 0 4 7.38V5a4 4 0 0 1 4-4Zm0 12.5A1.5 1.5 0 0 1 6.5 12h3A1.5 1.5 0 0 1 8 13.5ZM6.75 4a.75.75 0 0 0 0 1.5h1.043L6.14 7.814A.75.75 0 0 0 6.75 9h2.5a.75.75 0 1 0 0-1.5H8.207L9.86 5.186A.75.75 0 0 0 9.25 4h-2.5Z","clip-rule":"evenodd"})])}function vF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 5a4 4 0 0 0-8 0v2.379a1.5 1.5 0 0 1-.44 1.06L2.294 9.707a1 1 0 0 0-.293.707V11a1 1 0 0 0 1 1h2a3 3 0 1 0 6 0h2a1 1 0 0 0 1-1v-.586a1 1 0 0 0-.293-.707L12.44 8.44A1.5 1.5 0 0 1 12 7.38V5Zm-5.5 7a1.5 1.5 0 0 0 3 0h-3Z","clip-rule":"evenodd"})])}function yF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 3a1 1 0 0 1 1-1h5a3.5 3.5 0 0 1 2.843 5.541A3.75 3.75 0 0 1 9.25 14H4a1 1 0 0 1-1-1V3Zm2.5 3.5v-2H9a1 1 0 0 1 0 2H5.5Zm0 2.5v2.5h3.75a1.25 1.25 0 1 0 0-2.5H5.5Z","clip-rule":"evenodd"})])}function BF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M9.58 1.077a.75.75 0 0 1 .405.82L9.165 6h4.085a.75.75 0 0 1 .567 1.241l-1.904 2.197L6.385 3.91 8.683 1.26a.75.75 0 0 1 .897-.182ZM4.087 6.562l5.528 5.528-2.298 2.651a.75.75 0 0 1-1.302-.638L6.835 10H2.75a.75.75 0 0 1-.567-1.241l1.904-2.197ZM2.22 2.22a.75.75 0 0 1 1.06 0l10.5 10.5a.75.75 0 1 1-1.06 1.06L2.22 3.28a.75.75 0 0 1 0-1.06Z"})])}function EF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.58 1.077a.75.75 0 0 1 .405.82L9.165 6h4.085a.75.75 0 0 1 .567 1.241l-6.5 7.5a.75.75 0 0 1-1.302-.638L6.835 10H2.75a.75.75 0 0 1-.567-1.241l6.5-7.5a.75.75 0 0 1 .897-.182Z","clip-rule":"evenodd"})])}function bF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7.25 3.688a8.035 8.035 0 0 0-4.872-.523A.48.48 0 0 0 2 3.64v7.994c0 .345.342.588.679.512a6.02 6.02 0 0 1 4.571.81V3.688ZM8.75 12.956a6.02 6.02 0 0 1 4.571-.81c.337.075.679-.167.679-.512V3.64a.48.48 0 0 0-.378-.475 8.034 8.034 0 0 0-4.872.523v9.268Z"})])}function CF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M13 2.75v7.775L4.475 2h7.775a.75.75 0 0 1 .75.75ZM3 13.25V5.475l4.793 4.793L4.28 13.78A.75.75 0 0 1 3 13.25ZM2.22 2.22a.75.75 0 0 1 1.06 0l10.5 10.5a.75.75 0 1 1-1.06 1.06L2.22 3.28a.75.75 0 0 1 0-1.06Z"})])}function MF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4Zm1 2.25a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.28.53L8 9.06l-1.72 1.72A.75.75 0 0 1 5 10.25v-6Z","clip-rule":"evenodd"})])}function VF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.75 2a.75.75 0 0 0-.75.75v10.5a.75.75 0 0 0 1.28.53L8 10.06l3.72 3.72a.75.75 0 0 0 1.28-.53V2.75a.75.75 0 0 0-.75-.75h-8.5Z"})])}function AF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11 4V3a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v1H4a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-1ZM9 2.5H7a.5.5 0 0 0-.5.5v1h3V3a.5.5 0 0 0-.5-.5ZM9 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M3 11.83V12a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-.17c-.313.11-.65.17-1 .17H4c-.35 0-.687-.06-1-.17Z"})])}function _F(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M11.983 1.364a.75.75 0 0 0-1.281.78c.096.158.184.321.264.489a5.48 5.48 0 0 1-.713.386A2.993 2.993 0 0 0 8 2c-.898 0-1.703.394-2.253 1.02a5.485 5.485 0 0 1-.713-.387c.08-.168.168-.33.264-.489a.75.75 0 1 0-1.28-.78c-.245.401-.45.83-.61 1.278a.75.75 0 0 0 .239.84 7 7 0 0 0 1.422.876A3.01 3.01 0 0 0 5 5c0 .126.072.24.183.3.386.205.796.37 1.227.487-.126.165-.227.35-.297.549A10.418 10.418 0 0 1 3.51 5.5a10.686 10.686 0 0 1-.008-.733.75.75 0 0 0-1.5-.033 12.222 12.222 0 0 0 .041 1.31.75.75 0 0 0 .4.6A11.922 11.922 0 0 0 6.199 7.87c.04.084.088.166.14.243l-.214.031-.027.005c-1.299.207-2.529.622-3.654 1.211a.75.75 0 0 0-.4.6 12.148 12.148 0 0 0 .197 3.443.75.75 0 0 0 1.47-.299 10.551 10.551 0 0 1-.2-2.6c.352-.167.714-.314 1.085-.441-.063.3-.096.614-.096.936 0 2.21 1.567 4 3.5 4s3.5-1.79 3.5-4c0-.322-.034-.636-.097-.937.372.128.734.275 1.085.442a10.703 10.703 0 0 1-.199 2.6.75.75 0 1 0 1.47.3 12.049 12.049 0 0 0 .197-3.443.75.75 0 0 0-.4-.6 11.921 11.921 0 0 0-3.671-1.215l-.011-.002a11.95 11.95 0 0 0-.213-.03c.052-.078.1-.16.14-.244 1.336-.202 2.6-.623 3.755-1.227a.75.75 0 0 0 .4-.6 12.178 12.178 0 0 0 .041-1.31.75.75 0 0 0-1.5.033 11.061 11.061 0 0 1-.008.733c-.815.386-1.688.67-2.602.836-.07-.2-.17-.384-.297-.55.43-.117.842-.282 1.228-.488A.34.34 0 0 0 11 5c0-.22-.024-.435-.069-.642a7 7 0 0 0 1.422-.876.75.75 0 0 0 .24-.84 6.97 6.97 0 0 0-.61-1.278Z"})])}function NF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.605 2.112a.75.75 0 0 1 .79 0l5.25 3.25A.75.75 0 0 1 13 6.707V12.5h.25a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5H3V6.707a.75.75 0 0 1-.645-1.345l5.25-3.25ZM4.5 8.75a.75.75 0 0 1 1.5 0v3a.75.75 0 0 1-1.5 0v-3ZM8 8a.75.75 0 0 0-.75.75v3a.75.75 0 0 0 1.5 0v-3A.75.75 0 0 0 8 8Zm2 .75a.75.75 0 0 1 1.5 0v3a.75.75 0 0 1-1.5 0v-3ZM8 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function ZF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.75 2a.75.75 0 0 0 0 1.5H2v9h-.25a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 .75-.75v-1.5a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 .75.75v1.5c0 .414.336.75.75.75h.5a.75.75 0 0 0 .75-.75V3.5h.25a.75.75 0 0 0 0-1.5h-7.5ZM3.5 5.5A.5.5 0 0 1 4 5h.5a.5.5 0 0 1 .5.5V6a.5.5 0 0 1-.5.5H4a.5.5 0 0 1-.5-.5v-.5Zm.5 2a.5.5 0 0 0-.5.5v.5A.5.5 0 0 0 4 9h.5a.5.5 0 0 0 .5-.5V8a.5.5 0 0 0-.5-.5H4Zm2-2a.5.5 0 0 1 .5-.5H7a.5.5 0 0 1 .5.5V6a.5.5 0 0 1-.5.5h-.5A.5.5 0 0 1 6 6v-.5Zm.5 2A.5.5 0 0 0 6 8v.5a.5.5 0 0 0 .5.5H7a.5.5 0 0 0 .5-.5V8a.5.5 0 0 0-.5-.5h-.5ZM11.5 6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.75a.75.75 0 0 0 0-1.5H14v-5h.25a.75.75 0 0 0 0-1.5H11.5Zm.5 1.5h.5a.5.5 0 0 1 .5.5v.5a.5.5 0 0 1-.5.5H12a.5.5 0 0 1-.5-.5V8a.5.5 0 0 1 .5-.5Zm0 2.5a.5.5 0 0 0-.5.5v.5a.5.5 0 0 0 .5.5h.5a.5.5 0 0 0 .5-.5v-.5a.5.5 0 0 0-.5-.5H12Z","clip-rule":"evenodd"})])}function SF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.75 2a.75.75 0 0 0 0 1.5H4v9h-.25a.75.75 0 0 0 0 1.5H6a.5.5 0 0 0 .5-.5v-3A.5.5 0 0 1 7 10h2a.5.5 0 0 1 .5.5v3a.5.5 0 0 0 .5.5h2.25a.75.75 0 0 0 0-1.5H12v-9h.25a.75.75 0 0 0 0-1.5h-8.5ZM6.5 4a.5.5 0 0 0-.5.5V5a.5.5 0 0 0 .5.5H7a.5.5 0 0 0 .5-.5v-.5A.5.5 0 0 0 7 4h-.5ZM6 7a.5.5 0 0 1 .5-.5H7a.5.5 0 0 1 .5.5v.5A.5.5 0 0 1 7 8h-.5a.5.5 0 0 1-.5-.5V7Zm3-3a.5.5 0 0 0-.5.5V5a.5.5 0 0 0 .5.5h.5A.5.5 0 0 0 10 5v-.5a.5.5 0 0 0-.5-.5H9Zm-.5 3a.5.5 0 0 1 .5-.5h.5a.5.5 0 0 1 .5.5v.5a.5.5 0 0 1-.5.5H9a.5.5 0 0 1-.5-.5V7Z","clip-rule":"evenodd"})])}function $F(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.5 7c.681 0 1.3-.273 1.75-.715C6.7 6.727 7.319 7 8 7s1.3-.273 1.75-.715A2.5 2.5 0 1 0 11.5 2h-7a2.5 2.5 0 0 0 0 5ZM6.25 8.097A3.986 3.986 0 0 1 4.5 8.5c-.53 0-1.037-.103-1.5-.29v4.29h-.25a.75.75 0 0 0 0 1.5h.5a.754.754 0 0 0 .138-.013A.5.5 0 0 0 3.5 14H6a.5.5 0 0 0 .5-.5v-3A.5.5 0 0 1 7 10h2a.5.5 0 0 1 .5.5v3a.5.5 0 0 0 .5.5h2.5a.5.5 0 0 0 .112-.013c.045.009.09.013.138.013h.5a.75.75 0 1 0 0-1.5H13V8.21c-.463.187-.97.29-1.5.29a3.986 3.986 0 0 1-1.75-.403A3.986 3.986 0 0 1 8 8.5a3.986 3.986 0 0 1-1.75-.403Z"})])}function IF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"m4.75 1-.884.884a1.25 1.25 0 1 0 1.768 0L4.75 1ZM11.25 1l-.884.884a1.25 1.25 0 1 0 1.768 0L11.25 1ZM8.884 1.884 8 1l-.884.884a1.25 1.25 0 1 0 1.768 0ZM4 7a2 2 0 0 0-2 2v1.034c.347 0 .694-.056 1.028-.167l.47-.157a4.75 4.75 0 0 1 3.004 0l.47.157a3.25 3.25 0 0 0 2.056 0l.47-.157a4.75 4.75 0 0 1 3.004 0l.47.157c.334.111.681.167 1.028.167V9a2 2 0 0 0-2-2V5.75a.75.75 0 0 0-1.5 0V7H8.75V5.75a.75.75 0 0 0-1.5 0V7H5.5V5.75a.75.75 0 0 0-1.5 0V7ZM14 11.534a4.749 4.749 0 0 1-1.502-.244l-.47-.157a3.25 3.25 0 0 0-2.056 0l-.47.157a4.75 4.75 0 0 1-3.004 0l-.47-.157a3.25 3.25 0 0 0-2.056 0l-.47.157A4.748 4.748 0 0 1 2 11.534V13a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-1.466Z"})])}function HF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H5Zm.75 6a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM5 3.75A.75.75 0 0 1 5.75 3h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 5 3.75Zm.75 7.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM5 10a.75.75 0 1 1 1.5 0A.75.75 0 0 1 5 10Zm5.25-3a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-.75 3a.75.75 0 0 1 1.5 0v2.25a.75.75 0 0 1-1.5 0V10ZM8 7a.75.75 0 1 0 0 1.5A.75.75 0 0 0 8 7Zm-.75 5.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm.75-3a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Z","clip-rule":"evenodd"})])}function TF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.75 7.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM7.25 8.25A.75.75 0 0 1 8 7.5h2.25a.75.75 0 0 1 0 1.5H8a.75.75 0 0 1-.75-.75ZM5.75 9.5a.75.75 0 0 0 0 1.5H8a.75.75 0 0 0 0-1.5H5.75Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.75 1a.75.75 0 0 0-.75.75V3a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2V1.75a.75.75 0 0 0-1.5 0V3h-5V1.75A.75.75 0 0 0 4.75 1ZM3.5 7a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v4.5a1 1 0 0 1-1 1h-7a1 1 0 0 1-1-1V7Z","clip-rule":"evenodd"})])}function LF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.75 7.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM5 10.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0ZM10.25 7.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM7.25 8.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0ZM8 9.5A.75.75 0 1 0 8 11a.75.75 0 0 0 0-1.5Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.75 1a.75.75 0 0 0-.75.75V3a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2V1.75a.75.75 0 0 0-1.5 0V3h-5V1.75A.75.75 0 0 0 4.75 1ZM3.5 7a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v4.5a1 1 0 0 1-1 1h-7a1 1 0 0 1-1-1V7Z","clip-rule":"evenodd"})])}function DF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 1.75a.75.75 0 0 1 1.5 0V3h5V1.75a.75.75 0 0 1 1.5 0V3a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2V1.75ZM4.5 6a1 1 0 0 0-1 1v4.5a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1h-7Z","clip-rule":"evenodd"})])}function PF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M9.5 8.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.5 5A1.5 1.5 0 0 0 1 6.5v5A1.5 1.5 0 0 0 2.5 13h11a1.5 1.5 0 0 0 1.5-1.5v-5A1.5 1.5 0 0 0 13.5 5h-.879a1.5 1.5 0 0 1-1.06-.44l-1.122-1.12A1.5 1.5 0 0 0 9.38 3H6.62a1.5 1.5 0 0 0-1.06.44L4.439 4.56A1.5 1.5 0 0 1 3.38 5H2.5ZM11 8.5a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z","clip-rule":"evenodd"})])}function OF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4Zm.75 7a.75.75 0 0 0-.75.75v1.5a.75.75 0 0 0 1.5 0v-1.5A.75.75 0 0 0 4.75 9Zm2.5-1.75a.75.75 0 0 1 1.5 0v4a.75.75 0 0 1-1.5 0v-4Zm4-3.25a.75.75 0 0 0-.75.75v6.5a.75.75 0 0 0 1.5 0v-6.5a.75.75 0 0 0-.75-.75Z","clip-rule":"evenodd"})])}function RF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M12 2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1h-1ZM6.5 6a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V6ZM2 9a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V9Z"})])}function zF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M13.975 6.5c.028.276-.199.5-.475.5h-4a.5.5 0 0 1-.5-.5v-4c0-.276.225-.503.5-.475A5.002 5.002 0 0 1 13.974 6.5Z"}),e.createElementVNode("path",{d:"M6.5 4.025c.276-.028.5.199.5.475v4a.5.5 0 0 0 .5.5h4c.276 0 .503.225.475.5a5 5 0 1 1-5.474-5.475Z"})])}function jF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 8.74c0 .983.713 1.825 1.69 1.943.904.108 1.817.19 2.737.243.363.02.688.231.85.556l1.052 2.103a.75.75 0 0 0 1.342 0l1.052-2.103c.162-.325.487-.535.85-.556.92-.053 1.833-.134 2.738-.243.976-.118 1.689-.96 1.689-1.942V4.259c0-.982-.713-1.824-1.69-1.942a44.45 44.45 0 0 0-10.62 0C1.712 2.435 1 3.277 1 4.26v4.482Zm3-3.49a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5A.75.75 0 0 1 4 5.25ZM4.75 7a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Z","clip-rule":"evenodd"})])}function FF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M1 8.74c0 .983.713 1.825 1.69 1.943.904.108 1.817.19 2.737.243.363.02.688.231.85.556l1.052 2.103a.75.75 0 0 0 1.342 0l1.052-2.103c.162-.325.487-.535.85-.556.92-.053 1.833-.134 2.738-.243.976-.118 1.689-.96 1.689-1.942V4.259c0-.982-.713-1.824-1.69-1.942a44.45 44.45 0 0 0-10.62 0C1.712 2.435 1 3.277 1 4.26v4.482Z"})])}function UF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 8.74c0 .983.713 1.825 1.69 1.943.764.092 1.534.164 2.31.216v2.351a.75.75 0 0 0 1.28.53l2.51-2.51c.182-.181.427-.286.684-.294a44.298 44.298 0 0 0 3.837-.293C14.287 10.565 15 9.723 15 8.74V4.26c0-.983-.713-1.825-1.69-1.943a44.447 44.447 0 0 0-10.62 0C1.712 2.435 1 3.277 1 4.26v4.482ZM5.5 6.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm2.5 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm3.5 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function WF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M1 8.849c0 1 .738 1.851 1.734 1.947L3 10.82v2.429a.75.75 0 0 0 1.28.53l1.82-1.82A3.484 3.484 0 0 1 5.5 10V9A3.5 3.5 0 0 1 9 5.5h4V4.151c0-1-.739-1.851-1.734-1.947a44.539 44.539 0 0 0-8.532 0C1.738 2.3 1 3.151 1 4.151V8.85Z"}),e.createElementVNode("path",{d:"M7 9a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a2 2 0 0 1-2 2h-.25v1.25a.75.75 0 0 1-1.28.53L9.69 12H9a2 2 0 0 1-2-2V9Z"})])}function qF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M1 8.74c0 .983.713 1.825 1.69 1.943.764.092 1.534.164 2.31.216v2.351a.75.75 0 0 0 1.28.53l2.51-2.51c.182-.181.427-.286.684-.294a44.298 44.298 0 0 0 3.837-.293C14.287 10.565 15 9.723 15 8.74V4.26c0-.983-.713-1.825-1.69-1.943a44.447 44.447 0 0 0-10.62 0C1.712 2.435 1 3.277 1 4.26v4.482Z"})])}function YF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 2C4.262 2 1 4.57 1 8c0 1.86.98 3.486 2.455 4.566a3.472 3.472 0 0 1-.469 1.26.75.75 0 0 0 .713 1.14 6.961 6.961 0 0 0 3.06-1.06c.403.062.818.094 1.241.094 3.738 0 7-2.57 7-6s-3.262-6-7-6ZM5 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM8 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function KF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 8c0-3.43 3.262-6 7-6s7 2.57 7 6-3.262 6-7 6c-.423 0-.838-.032-1.241-.094-.9.574-1.941.948-3.06 1.06a.75.75 0 0 1-.713-1.14c.232-.378.395-.804.469-1.26C1.979 11.486 1 9.86 1 8Z","clip-rule":"evenodd"})])}function GF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 8c0 .982-.472 1.854-1.202 2.402a2.995 2.995 0 0 1-.848 2.547 2.995 2.995 0 0 1-2.548.849A2.996 2.996 0 0 1 8 15a2.996 2.996 0 0 1-2.402-1.202 2.995 2.995 0 0 1-2.547-.848 2.995 2.995 0 0 1-.849-2.548A2.996 2.996 0 0 1 1 8c0-.982.472-1.854 1.202-2.402a2.995 2.995 0 0 1 .848-2.547 2.995 2.995 0 0 1 2.548-.849A2.995 2.995 0 0 1 8 1c.982 0 1.854.472 2.402 1.202a2.995 2.995 0 0 1 2.547.848c.695.695.978 1.645.849 2.548A2.996 2.996 0 0 1 15 8Zm-3.291-2.843a.75.75 0 0 1 .135 1.052l-4.25 5.5a.75.75 0 0 1-1.151.043l-2.25-2.5a.75.75 0 1 1 1.114-1.004l1.65 1.832 3.7-4.789a.75.75 0 0 1 1.052-.134Z","clip-rule":"evenodd"})])}function JF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14Zm3.844-8.791a.75.75 0 0 0-1.188-.918l-3.7 4.79-1.649-1.833a.75.75 0 1 0-1.114 1.004l2.25 2.5a.75.75 0 0 0 1.15-.043l4.25-5.5Z","clip-rule":"evenodd"})])}function XF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12.416 3.376a.75.75 0 0 1 .208 1.04l-5 7.5a.75.75 0 0 1-1.154.114l-3-3a.75.75 0 0 1 1.06-1.06l2.353 2.353 4.493-6.74a.75.75 0 0 1 1.04-.207Z","clip-rule":"evenodd"})])}function QF(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.47 12.78a.75.75 0 0 0 1.06 0l3.25-3.25a.75.75 0 0 0-1.06-1.06L8 11.19 5.28 8.47a.75.75 0 0 0-1.06 1.06l3.25 3.25ZM4.22 4.53l3.25 3.25a.75.75 0 0 0 1.06 0l3.25-3.25a.75.75 0 0 0-1.06-1.06L8 6.19 5.28 3.47a.75.75 0 0 0-1.06 1.06Z","clip-rule":"evenodd"})])}function eU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.22 7.595a.75.75 0 0 0 0 1.06l3.25 3.25a.75.75 0 0 0 1.06-1.06l-2.72-2.72 2.72-2.72a.75.75 0 0 0-1.06-1.06l-3.25 3.25Zm8.25-3.25-3.25 3.25a.75.75 0 0 0 0 1.06l3.25 3.25a.75.75 0 1 0 1.06-1.06l-2.72-2.72 2.72-2.72a.75.75 0 0 0-1.06-1.06Z","clip-rule":"evenodd"})])}function tU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12.78 7.595a.75.75 0 0 1 0 1.06l-3.25 3.25a.75.75 0 0 1-1.06-1.06l2.72-2.72-2.72-2.72a.75.75 0 0 1 1.06-1.06l3.25 3.25Zm-8.25-3.25 3.25 3.25a.75.75 0 0 1 0 1.06l-3.25 3.25a.75.75 0 0 1-1.06-1.06l2.72-2.72-2.72-2.72a.75.75 0 0 1 1.06-1.06Z","clip-rule":"evenodd"})])}function nU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.47 3.22a.75.75 0 0 1 1.06 0l3.25 3.25a.75.75 0 0 1-1.06 1.06L8 4.81 5.28 7.53a.75.75 0 0 1-1.06-1.06l3.25-3.25Zm-3.25 8.25 3.25-3.25a.75.75 0 0 1 1.06 0l3.25 3.25a.75.75 0 1 1-1.06 1.06L8 9.81l-2.72 2.72a.75.75 0 0 1-1.06-1.06Z","clip-rule":"evenodd"})])}function rU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.22 6.22a.75.75 0 0 1 1.06 0L8 8.94l2.72-2.72a.75.75 0 1 1 1.06 1.06l-3.25 3.25a.75.75 0 0 1-1.06 0L4.22 7.28a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function oU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.78 4.22a.75.75 0 0 1 0 1.06L7.06 8l2.72 2.72a.75.75 0 1 1-1.06 1.06L5.47 8.53a.75.75 0 0 1 0-1.06l3.25-3.25a.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function aU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.22 4.22a.75.75 0 0 1 1.06 0l3.25 3.25a.75.75 0 0 1 0 1.06l-3.25 3.25a.75.75 0 0 1-1.06-1.06L8.94 8 6.22 5.28a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function lU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.22 10.22a.75.75 0 0 1 1.06 0L8 11.94l1.72-1.72a.75.75 0 1 1 1.06 1.06l-2.25 2.25a.75.75 0 0 1-1.06 0l-2.25-2.25a.75.75 0 0 1 0-1.06ZM10.78 5.78a.75.75 0 0 1-1.06 0L8 4.06 6.28 5.78a.75.75 0 0 1-1.06-1.06l2.25-2.25a.75.75 0 0 1 1.06 0l2.25 2.25a.75.75 0 0 1 0 1.06Z","clip-rule":"evenodd"})])}function iU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.78 9.78a.75.75 0 0 1-1.06 0L8 7.06 5.28 9.78a.75.75 0 0 1-1.06-1.06l3.25-3.25a.75.75 0 0 1 1.06 0l3.25 3.25a.75.75 0 0 1 0 1.06Z","clip-rule":"evenodd"})])}function cU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8 7c3.314 0 6-1.343 6-3s-2.686-3-6-3-6 1.343-6 3 2.686 3 6 3Z"}),e.createElementVNode("path",{d:"M8 8.5c1.84 0 3.579-.37 4.914-1.037A6.33 6.33 0 0 0 14 6.78V8c0 1.657-2.686 3-6 3S2 9.657 2 8V6.78c.346.273.72.5 1.087.683C4.42 8.131 6.16 8.5 8 8.5Z"}),e.createElementVNode("path",{d:"M8 12.5c1.84 0 3.579-.37 4.914-1.037.366-.183.74-.41 1.086-.684V12c0 1.657-2.686 3-6 3s-6-1.343-6-3v-1.22c.346.273.72.5 1.087.683C4.42 12.131 6.16 12.5 8 12.5Z"})])}function sU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.986 3H12a2 2 0 0 1 2 2v6a2 2 0 0 1-1.5 1.937V7A2.5 2.5 0 0 0 10 4.5H4.063A2 2 0 0 1 6 3h.014A2.25 2.25 0 0 1 8.25 1h1.5a2.25 2.25 0 0 1 2.236 2ZM10.5 4v-.75a.75.75 0 0 0-.75-.75h-1.5a.75.75 0 0 0-.75.75V4h3Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 7a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V7Zm6.585 1.08a.75.75 0 0 1 .336 1.005l-1.75 3.5a.75.75 0 0 1-1.16.234l-1.75-1.5a.75.75 0 0 1 .977-1.139l1.02.875 1.321-2.64a.75.75 0 0 1 1.006-.336Z","clip-rule":"evenodd"})])}function dU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.986 3H12a2 2 0 0 1 2 2v6a2 2 0 0 1-1.5 1.937V7A2.5 2.5 0 0 0 10 4.5H4.063A2 2 0 0 1 6 3h.014A2.25 2.25 0 0 1 8.25 1h1.5a2.25 2.25 0 0 1 2.236 2ZM10.5 4v-.75a.75.75 0 0 0-.75-.75h-1.5a.75.75 0 0 0-.75.75V4h3Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 6a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H3Zm1.75 2.5a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5ZM4 11.75a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function uU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.986 3H12a2 2 0 0 1 2 2v6a2 2 0 0 1-1.5 1.937v-2.523a2.5 2.5 0 0 0-.732-1.768L8.354 5.232A2.5 2.5 0 0 0 6.586 4.5H4.063A2 2 0 0 1 6 3h.014A2.25 2.25 0 0 1 8.25 1h1.5a2.25 2.25 0 0 1 2.236 2ZM10.5 4v-.75a.75.75 0 0 0-.75-.75h-1.5a.75.75 0 0 0-.75.75V4h3Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M3 6a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1v-3.586a1 1 0 0 0-.293-.707L7.293 6.293A1 1 0 0 0 6.586 6H3Z"})])}function hU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.986 3H12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h1.014A2.25 2.25 0 0 1 7.25 1h1.5a2.25 2.25 0 0 1 2.236 2ZM9.5 4v-.75a.75.75 0 0 0-.75-.75h-1.5a.75.75 0 0 0-.75.75V4h3Z","clip-rule":"evenodd"})])}function pU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 8a7 7 0 1 1 14 0A7 7 0 0 1 1 8Zm7.75-4.25a.75.75 0 0 0-1.5 0V8c0 .414.336.75.75.75h3.25a.75.75 0 0 0 0-1.5h-2.5v-3.5Z","clip-rule":"evenodd"})])}function fU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 13a3.5 3.5 0 0 1-1.41-6.705A3.5 3.5 0 0 1 9.72 4.124a2.5 2.5 0 0 1 3.197 3.018A3.001 3.001 0 0 1 12 13H4.5Zm6.28-3.97a.75.75 0 1 0-1.06-1.06l-.97.97V6.25a.75.75 0 0 0-1.5 0v2.69l-.97-.97a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.06 0l2.25-2.25Z","clip-rule":"evenodd"})])}function mU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 13a3.5 3.5 0 0 1-1.41-6.705A3.5 3.5 0 0 1 9.72 4.124a2.5 2.5 0 0 1 3.197 3.018A3.001 3.001 0 0 1 12 13H4.5Zm.72-5.03a.75.75 0 0 0 1.06 1.06l.97-.97v2.69a.75.75 0 0 0 1.5 0V8.06l.97.97a.75.75 0 1 0 1.06-1.06L8.53 5.72a.75.75 0 0 0-1.06 0L5.22 7.97Z","clip-rule":"evenodd"})])}function wU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M1 9.5A3.5 3.5 0 0 0 4.5 13H12a3 3 0 0 0 .917-5.857 2.503 2.503 0 0 0-3.198-3.019 3.5 3.5 0 0 0-6.628 2.171A3.5 3.5 0 0 0 1 9.5Z"})])}function gU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4Zm4.78 1.97a.75.75 0 0 1 0 1.06L5.81 8l.97.97a.75.75 0 1 1-1.06 1.06l-1.5-1.5a.75.75 0 0 1 0-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Zm2.44 1.06a.75.75 0 0 1 1.06-1.06l1.5 1.5a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l.97-.97-.97-.97Z","clip-rule":"evenodd"})])}function kU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.78 4.97a.75.75 0 0 1 0 1.06L2.81 8l1.97 1.97a.75.75 0 1 1-1.06 1.06l-2.5-2.5a.75.75 0 0 1 0-1.06l2.5-2.5a.75.75 0 0 1 1.06 0ZM11.22 4.97a.75.75 0 0 0 0 1.06L13.19 8l-1.97 1.97a.75.75 0 1 0 1.06 1.06l2.5-2.5a.75.75 0 0 0 0-1.06l-2.5-2.5a.75.75 0 0 0-1.06 0ZM8.856 2.008a.75.75 0 0 1 .636.848l-1.5 10.5a.75.75 0 0 1-1.484-.212l1.5-10.5a.75.75 0 0 1 .848-.636Z","clip-rule":"evenodd"})])}function xU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.455 1.45A.5.5 0 0 1 6.952 1h2.096a.5.5 0 0 1 .497.45l.186 1.858a4.996 4.996 0 0 1 1.466.848l1.703-.769a.5.5 0 0 1 .639.206l1.047 1.814a.5.5 0 0 1-.14.656l-1.517 1.09a5.026 5.026 0 0 1 0 1.694l1.516 1.09a.5.5 0 0 1 .141.656l-1.047 1.814a.5.5 0 0 1-.639.206l-1.703-.768c-.433.36-.928.649-1.466.847l-.186 1.858a.5.5 0 0 1-.497.45H6.952a.5.5 0 0 1-.497-.45l-.186-1.858a4.993 4.993 0 0 1-1.466-.848l-1.703.769a.5.5 0 0 1-.639-.206l-1.047-1.814a.5.5 0 0 1 .14-.656l1.517-1.09a5.033 5.033 0 0 1 0-1.694l-1.516-1.09a.5.5 0 0 1-.141-.656L2.46 3.593a.5.5 0 0 1 .639-.206l1.703.769c.433-.36.928-.65 1.466-.848l.186-1.858Zm-.177 7.567-.022-.037a2 2 0 0 1 3.466-1.997l.022.037a2 2 0 0 1-3.466 1.997Z","clip-rule":"evenodd"})])}function vU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.955 1.45A.5.5 0 0 1 7.452 1h1.096a.5.5 0 0 1 .497.45l.17 1.699c.484.12.94.312 1.356.562l1.321-1.081a.5.5 0 0 1 .67.033l.774.775a.5.5 0 0 1 .034.67l-1.08 1.32c.25.417.44.873.561 1.357l1.699.17a.5.5 0 0 1 .45.497v1.096a.5.5 0 0 1-.45.497l-1.699.17c-.12.484-.312.94-.562 1.356l1.082 1.322a.5.5 0 0 1-.034.67l-.774.774a.5.5 0 0 1-.67.033l-1.322-1.08c-.416.25-.872.44-1.356.561l-.17 1.699a.5.5 0 0 1-.497.45H7.452a.5.5 0 0 1-.497-.45l-.17-1.699a4.973 4.973 0 0 1-1.356-.562L4.108 13.37a.5.5 0 0 1-.67-.033l-.774-.775a.5.5 0 0 1-.034-.67l1.08-1.32a4.971 4.971 0 0 1-.561-1.357l-1.699-.17A.5.5 0 0 1 1 8.548V7.452a.5.5 0 0 1 .45-.497l1.699-.17c.12-.484.312-.94.562-1.356L2.629 4.107a.5.5 0 0 1 .034-.67l.774-.774a.5.5 0 0 1 .67-.033L5.43 3.71a4.97 4.97 0 0 1 1.356-.561l.17-1.699ZM6 8c0 .538.212 1.026.558 1.385l.057.057a2 2 0 0 0 2.828-2.828l-.058-.056A2 2 0 0 0 6 8Z","clip-rule":"evenodd"})])}function yU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 1.938a.75.75 0 0 1 1.025.274l.652 1.131c.351-.138.71-.233 1.073-.288V1.75a.75.75 0 0 1 1.5 0v1.306a5.03 5.03 0 0 1 1.072.288l.654-1.132a.75.75 0 1 1 1.298.75l-.652 1.13c.286.23.55.492.785.786l1.13-.653a.75.75 0 1 1 .75 1.3l-1.13.652c.137.351.233.71.288 1.073h1.305a.75.75 0 0 1 0 1.5h-1.306a5.032 5.032 0 0 1-.288 1.072l1.132.654a.75.75 0 0 1-.75 1.298l-1.13-.652c-.23.286-.492.55-.786.785l.652 1.13a.75.75 0 0 1-1.298.75l-.653-1.13c-.351.137-.71.233-1.073.288v1.305a.75.75 0 0 1-1.5 0v-1.306a5.032 5.032 0 0 1-1.072-.288l-.653 1.132a.75.75 0 0 1-1.3-.75l.653-1.13a4.966 4.966 0 0 1-.785-.786l-1.13.652a.75.75 0 0 1-.75-1.298l1.13-.653a4.965 4.965 0 0 1-.288-1.073H1.75a.75.75 0 0 1 0-1.5h1.306a5.03 5.03 0 0 1 .288-1.072l-1.132-.653a.75.75 0 0 1 .75-1.3l1.13.653c.23-.286.492-.55.786-.785l-.653-1.13A.75.75 0 0 1 4.5 1.937Zm1.14 3.476a3.501 3.501 0 0 0 0 5.172L7.135 8 5.641 5.414ZM8.434 8.75 6.94 11.336a3.491 3.491 0 0 0 2.81-.305 3.49 3.49 0 0 0 1.669-2.281H8.433Zm2.987-1.5H8.433L6.94 4.664a3.501 3.501 0 0 1 4.48 2.586Z","clip-rule":"evenodd"})])}function BU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4Zm2.22 1.97a.75.75 0 0 0 0 1.06l.97.97-.97.97a.75.75 0 1 0 1.06 1.06l1.5-1.5a.75.75 0 0 0 0-1.06l-1.5-1.5a.75.75 0 0 0-1.06 0ZM8.75 8.5a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Z","clip-rule":"evenodd"})])}function EU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 4.25A2.25 2.25 0 0 1 4.25 2h7.5A2.25 2.25 0 0 1 14 4.25v5.5A2.25 2.25 0 0 1 11.75 12h-1.312c.1.128.21.248.328.36a.75.75 0 0 1 .234.545v.345a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1-.75-.75v-.345a.75.75 0 0 1 .234-.545c.118-.111.228-.232.328-.36H4.25A2.25 2.25 0 0 1 2 9.75v-5.5Zm2.25-.75a.75.75 0 0 0-.75.75v4.5c0 .414.336.75.75.75h7.5a.75.75 0 0 0 .75-.75v-4.5a.75.75 0 0 0-.75-.75h-7.5Z","clip-rule":"evenodd"})])}function bU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6 6v4h4V6H6Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.75 1a.75.75 0 0 0-.75.75V3a2 2 0 0 0-2 2H1.75a.75.75 0 0 0 0 1.5H3v.75H1.75a.75.75 0 0 0 0 1.5H3v.75H1.75a.75.75 0 0 0 0 1.5H3a2 2 0 0 0 2 2v1.25a.75.75 0 0 0 1.5 0V13h.75v1.25a.75.75 0 0 0 1.5 0V13h.75v1.25a.75.75 0 0 0 1.5 0V13a2 2 0 0 0 2-2h1.25a.75.75 0 0 0 0-1.5H13v-.75h1.25a.75.75 0 0 0 0-1.5H13V6.5h1.25a.75.75 0 0 0 0-1.5H13a2 2 0 0 0-2-2V1.75a.75.75 0 0 0-1.5 0V3h-.75V1.75a.75.75 0 0 0-1.5 0V3H6.5V1.75A.75.75 0 0 0 5.75 1ZM11 4.5a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V5a.5.5 0 0 1 .5-.5h6Z","clip-rule":"evenodd"})])}function CU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2.5 3A1.5 1.5 0 0 0 1 4.5V5h14v-.5A1.5 1.5 0 0 0 13.5 3h-11Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 7H1v4.5A1.5 1.5 0 0 0 2.5 13h11a1.5 1.5 0 0 0 1.5-1.5V7ZM3 10.25a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75Zm3.75-.75a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Z","clip-rule":"evenodd"})])}function MU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.628 1.349a.75.75 0 0 1 .744 0l1.247.712a.75.75 0 1 1-.744 1.303L8 2.864l-.875.5a.75.75 0 0 1-.744-1.303l1.247-.712ZM4.65 3.914a.75.75 0 0 1-.279 1.023L4.262 5l.11.063a.75.75 0 0 1-.744 1.302l-.13-.073A.75.75 0 0 1 2 6.25V5a.75.75 0 0 1 .378-.651l1.25-.714a.75.75 0 0 1 1.023.279Zm6.698 0a.75.75 0 0 1 1.023-.28l1.25.715A.75.75 0 0 1 14 5v1.25a.75.75 0 0 1-1.499.042l-.129.073a.75.75 0 0 1-.744-1.302l.11-.063-.11-.063a.75.75 0 0 1-.28-1.023ZM6.102 6.915a.75.75 0 0 1 1.023-.279l.875.5.875-.5a.75.75 0 0 1 .744 1.303l-.869.496v.815a.75.75 0 0 1-1.5 0v-.815l-.869-.496a.75.75 0 0 1-.28-1.024ZM2.75 9a.75.75 0 0 1 .75.75v.815l.872.498a.75.75 0 0 1-.744 1.303l-1.25-.715A.75.75 0 0 1 2 11V9.75A.75.75 0 0 1 2.75 9Zm10.5 0a.75.75 0 0 1 .75.75V11a.75.75 0 0 1-.378.651l-1.25.715a.75.75 0 0 1-.744-1.303l.872-.498V9.75a.75.75 0 0 1 .75-.75Zm-4.501 3.708.126-.072a.75.75 0 0 1 .744 1.303l-1.247.712a.75.75 0 0 1-.744 0L6.38 13.94a.75.75 0 0 1 .744-1.303l.126.072a.75.75 0 0 1 1.498 0Z","clip-rule":"evenodd"})])}function VU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8.372 1.349a.75.75 0 0 0-.744 0l-4.81 2.748L8 7.131l5.182-3.034-4.81-2.748ZM14 5.357 8.75 8.43v6.005l4.872-2.784A.75.75 0 0 0 14 11V5.357ZM7.25 14.435V8.43L2 5.357V11c0 .27.144.518.378.651l4.872 2.784Z"})])}function AU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0ZM5.25 4.707a.75.75 0 0 1-.78-1.237c.841-.842 2.28-.246 2.28.944V6h5.5a.75.75 0 0 1 0 1.5h-5.5v3.098c0 .549.295.836.545.87a3.241 3.241 0 0 0 2.799-.966H9.75a.75.75 0 0 1 0-1.5h1.708a.75.75 0 0 1 .695 1.032 4.751 4.751 0 0 1-5.066 2.92c-1.266-.177-1.837-1.376-1.837-2.356V7.5h-1.5a.75.75 0 0 1 0-1.5h1.5V4.707Z","clip-rule":"evenodd"})])}function _U(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6.375 5.5h.875v1.75h-.875a.875.875 0 1 1 0-1.75ZM8.75 10.5V8.75h.875a.875.875 0 0 1 0 1.75H8.75Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0ZM7.25 3.75a.75.75 0 0 1 1.5 0V4h2.5a.75.75 0 0 1 0 1.5h-2.5v1.75h.875a2.375 2.375 0 1 1 0 4.75H8.75v.25a.75.75 0 0 1-1.5 0V12h-2.5a.75.75 0 0 1 0-1.5h2.5V8.75h-.875a2.375 2.375 0 1 1 0-4.75h.875v-.25Z","clip-rule":"evenodd"})])}function NU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0ZM6.875 6c.09-.22.195-.42.31-.598.413-.638.895-.902 1.315-.902.264 0 .54.1.814.325a.75.75 0 1 0 .953-1.158C9.772 3.259 9.169 3 8.5 3c-1.099 0-1.992.687-2.574 1.587A5.518 5.518 0 0 0 5.285 6H4.75a.75.75 0 0 0 0 1.5h.267a7.372 7.372 0 0 0 0 1H4.75a.75.75 0 0 0 0 1.5h.535c.156.52.372.998.64 1.413C6.509 12.313 7.402 13 8.5 13c.669 0 1.272-.26 1.767-.667a.75.75 0 0 0-.953-1.158c-.275.226-.55.325-.814.325-.42 0-.902-.264-1.315-.902a3.722 3.722 0 0 1-.31-.598H8.25a.75.75 0 0 0 0-1.5H6.521a5.854 5.854 0 0 1 0-1H8.25a.75.75 0 0 0 0-1.5H6.875Z","clip-rule":"evenodd"})])}function ZU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0ZM7.94 4.94c-.294.293-.44.675-.44 1.06v1.25h1.25a.75.75 0 1 1 0 1.5H7.5v1c0 .263-.045.516-.128.75h3.878a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5h.5A.75.75 0 0 0 6 9.75v-1H4.75a.75.75 0 0 1 0-1.5H6V6a3 3 0 0 1 5.121-2.121.75.75 0 1 1-1.06 1.06 1.5 1.5 0 0 0-2.121 0Z","clip-rule":"evenodd"})])}function SU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0ZM4.75 4a.75.75 0 0 0 0 1.5H6.5c.698 0 1.3.409 1.582 1H4.75a.75.75 0 0 0 0 1.5h3.332C7.8 8.591 7.198 9 6.5 9H4.75a.75.75 0 0 0-.53 1.28l2.5 2.5a.75.75 0 0 0 1.06-1.06L6.56 10.5A3.251 3.251 0 0 0 9.663 8h1.587a.75.75 0 0 0 0-1.5H9.663a3.232 3.232 0 0 0-.424-1h2.011a.75.75 0 0 0 0-1.5h-6.5Z","clip-rule":"evenodd"})])}function $U(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0ZM5.6 3.55a.75.75 0 1 0-1.2.9L7.063 8H4.75a.75.75 0 0 0 0 1.5h2.5v1h-2.5a.75.75 0 0 0 0 1.5h2.5v.5a.75.75 0 0 0 1.5 0V12h2.5a.75.75 0 0 0 0-1.5h-2.5v-1h2.5a.75.75 0 0 0 0-1.5H8.938L11.6 4.45a.75.75 0 1 0-1.2-.9L8 6.75l-2.4-3.2Z","clip-rule":"evenodd"})])}function IU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7.25 1.75a.75.75 0 0 1 1.5 0v1.5a.75.75 0 0 1-1.5 0v-1.5ZM11.536 2.904a.75.75 0 1 1 1.06 1.06l-1.06 1.061a.75.75 0 0 1-1.061-1.06l1.06-1.061ZM14.5 7.5a.75.75 0 0 0-.75-.75h-1.5a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 .75-.75ZM4.464 9.975a.75.75 0 0 1 1.061 1.06l-1.06 1.061a.75.75 0 1 1-1.061-1.06l1.06-1.061ZM4.5 7.5a.75.75 0 0 0-.75-.75h-1.5a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 .75-.75ZM5.525 3.964a.75.75 0 0 1-1.06 1.061l-1.061-1.06a.75.75 0 0 1 1.06-1.061l1.061 1.06ZM8.779 7.438a.75.75 0 0 0-1.368.366l-.396 5.283a.75.75 0 0 0 1.212.646l.602-.474.288 1.074a.75.75 0 1 0 1.449-.388l-.288-1.075.759.11a.75.75 0 0 0 .726-1.165L8.78 7.438Z"})])}function HU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.038 4.038a5.25 5.25 0 0 0 0 7.424.75.75 0 0 1-1.06 1.061A6.75 6.75 0 1 1 14.5 7.75a.75.75 0 1 1-1.5 0 5.25 5.25 0 0 0-8.962-3.712Z"}),e.createElementVNode("path",{d:"M7.712 7.136a.75.75 0 0 1 .814.302l2.984 4.377a.75.75 0 0 1-.726 1.164l-.76-.109.289 1.075a.75.75 0 0 1-1.45.388l-.287-1.075-.602.474a.75.75 0 0 1-1.212-.645l.396-5.283a.75.75 0 0 1 .554-.668Z"}),e.createElementVNode("path",{d:"M5.805 9.695A2.75 2.75 0 1 1 10.5 7.75a.75.75 0 0 0 1.5 0 4.25 4.25 0 1 0-7.255 3.005.75.75 0 1 0 1.06-1.06Z"})])}function TU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7.25 11.5a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6 1a2.5 2.5 0 0 0-2.5 2.5v9A2.5 2.5 0 0 0 6 15h4a2.5 2.5 0 0 0 2.5-2.5v-9A2.5 2.5 0 0 0 10 1H6Zm4 1.5h-.5V3a.5.5 0 0 1-.5.5H7a.5.5 0 0 1-.5-.5v-.5H6a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-9a1 1 0 0 0-1-1Z","clip-rule":"evenodd"})])}function LU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7.25 11.5a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 3.5A2.5 2.5 0 0 1 4.5 1h7A2.5 2.5 0 0 1 14 3.5v9a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 12.5v-9Zm2.5-1h7a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1h-7a1 1 0 0 1-1-1v-9a1 1 0 0 1 1-1Z","clip-rule":"evenodd"})])}function DU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 8a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 8Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M9 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM9 13a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"})])}function PU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 2a1.5 1.5 0 0 0-1.5 1.5v9A1.5 1.5 0 0 0 4 14h8a1.5 1.5 0 0 0 1.5-1.5V6.621a1.5 1.5 0 0 0-.44-1.06L9.94 2.439A1.5 1.5 0 0 0 8.878 2H4Zm4 3.5a.75.75 0 0 1 .75.75v2.69l.72-.72a.75.75 0 1 1 1.06 1.06l-2 2a.75.75 0 0 1-1.06 0l-2-2a.75.75 0 0 1 1.06-1.06l.72.72V6.25A.75.75 0 0 1 8 5.5Z","clip-rule":"evenodd"})])}function OU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 2a1.5 1.5 0 0 0-1.5 1.5v9A1.5 1.5 0 0 0 4 14h8a1.5 1.5 0 0 0 1.5-1.5V6.621a1.5 1.5 0 0 0-.44-1.06L9.94 2.439A1.5 1.5 0 0 0 8.878 2H4Zm4 9.5a.75.75 0 0 1-.75-.75V8.06l-.72.72a.75.75 0 0 1-1.06-1.06l2-2a.75.75 0 0 1 1.06 0l2 2a.75.75 0 1 1-1.06 1.06l-.72-.72v2.69a.75.75 0 0 1-.75.75Z","clip-rule":"evenodd"})])}function RU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 2a1.5 1.5 0 0 0-1.5 1.5v9A1.5 1.5 0 0 0 4 14h8a1.5 1.5 0 0 0 1.5-1.5V6.621a1.5 1.5 0 0 0-.44-1.06L9.94 2.439A1.5 1.5 0 0 0 8.878 2H4Zm6 5.75a.75.75 0 0 1 1.5 0v3.5a.75.75 0 0 1-1.5 0v-3.5Zm-2.75 1.5a.75.75 0 0 1 1.5 0v2a.75.75 0 0 1-1.5 0v-2Zm-2 .75a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-.75-.75Z","clip-rule":"evenodd"})])}function zU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 2a1.5 1.5 0 0 0-1.5 1.5v9A1.5 1.5 0 0 0 4 14h8a1.5 1.5 0 0 0 1.5-1.5V6.621a1.5 1.5 0 0 0-.44-1.06L9.94 2.439A1.5 1.5 0 0 0 8.878 2H4Zm6.713 4.16a.75.75 0 0 1 .127 1.053l-2.75 3.5a.75.75 0 0 1-1.078.106l-1.75-1.5a.75.75 0 1 1 .976-1.138l1.156.99L9.66 6.287a.75.75 0 0 1 1.053-.127Z","clip-rule":"evenodd"})])}function jU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.5 3.5A1.5 1.5 0 0 1 4 2h4.879a1.5 1.5 0 0 1 1.06.44l3.122 3.12a1.5 1.5 0 0 1 .439 1.061V12.5A1.5 1.5 0 0 1 12 14H4a1.5 1.5 0 0 1-1.5-1.5v-9ZM6 5.207a.75.75 0 0 1-.585-1.378A1.441 1.441 0 0 1 7.5 5.118V6h3.75a.75.75 0 0 1 0 1.5H7.5v3.25c0 .212.089.39.2.49.098.092.206.12.33.085.6-.167 1.151-.449 1.63-.821H9.5a.75.75 0 1 1 0-1.5h1.858a.75.75 0 0 1 .628 1.16 6.26 6.26 0 0 1-3.552 2.606 1.825 1.825 0 0 1-1.75-.425A2.17 2.17 0 0 1 6 10.75V7.5H4.75a.75.75 0 0 1 0-1.5H6v-.793Z","clip-rule":"evenodd"})])}function FU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6.621 6.584c.208-.026.418-.046.629-.06v1.034l-.598-.138a.227.227 0 0 1-.116-.065.094.094 0 0 1-.028-.06 5.345 5.345 0 0 1 .002-.616.082.082 0 0 1 .025-.055.144.144 0 0 1 .086-.04ZM8.75 10.475V9.443l.594.137a.227.227 0 0 1 .116.065.094.094 0 0 1 .028.06 5.355 5.355 0 0 1-.002.616.082.082 0 0 1-.025.055.144.144 0 0 1-.086.04c-.207.026-.415.045-.625.06Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.5 3.5A1.5 1.5 0 0 1 4 2h4.879a1.5 1.5 0 0 1 1.06.44l3.122 3.12a1.5 1.5 0 0 1 .439 1.061V12.5A1.5 1.5 0 0 1 12 14H4a1.5 1.5 0 0 1-1.5-1.5v-9Zm6.25 1.25a.75.75 0 0 0-1.5 0v.272c-.273.016-.543.04-.81.073-.748.09-1.38.689-1.428 1.494a6.836 6.836 0 0 0-.002.789c.044.785.635 1.348 1.305 1.503l.935.216v1.379a11.27 11.27 0 0 1-1.36-.173.75.75 0 1 0-.28 1.474c.536.102 1.084.17 1.64.202v.271a.75.75 0 0 0 1.5 0v-.272c.271-.016.54-.04.807-.073.747-.09 1.378-.689 1.427-1.494a6.843 6.843 0 0 0 .002-.789c-.044-.785-.635-1.348-1.305-1.503l-.931-.215v-1.38c.46.03.913.089 1.356.173a.75.75 0 0 0 .28-1.474 12.767 12.767 0 0 0-1.636-.201V4.75Z","clip-rule":"evenodd"})])}function UU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.5 3.5A1.5 1.5 0 0 1 4 2h4.879a1.5 1.5 0 0 1 1.06.44l3.122 3.12a1.5 1.5 0 0 1 .439 1.061V12.5A1.5 1.5 0 0 1 12 14H4a1.5 1.5 0 0 1-1.5-1.5v-9Zm4.552 2.734c.354-.59.72-.734.948-.734.228 0 .594.145.948.734a.75.75 0 1 0 1.286-.772C9.71 4.588 8.924 4 8 4c-.924 0-1.71.588-2.234 1.462-.192.32-.346.67-.464 1.038H4.75a.75.75 0 0 0 0 1.5h.268a7.003 7.003 0 0 0 0 1H4.75a.75.75 0 0 0 0 1.5h.552c.118.367.272.717.464 1.037C6.29 12.412 7.076 13 8 13c.924 0 1.71-.588 2.234-1.463a.75.75 0 0 0-1.286-.771c-.354.59-.72.734-.948.734-.228 0-.594-.145-.948-.734a3.078 3.078 0 0 1-.142-.266h.34a.75.75 0 0 0 0-1.5h-.727a5.496 5.496 0 0 1 0-1h.727a.75.75 0 0 0 0-1.5h-.34a3.08 3.08 0 0 1 .142-.266Z","clip-rule":"evenodd"})])}function WU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.5 3.5A1.5 1.5 0 0 1 4 2h4.879a1.5 1.5 0 0 1 1.06.44l3.122 3.12a1.5 1.5 0 0 1 .439 1.061V12.5A1.5 1.5 0 0 1 12 14H4a1.5 1.5 0 0 1-1.5-1.5v-9Zm5.44 3.44a1.5 1.5 0 0 1 2.12 0 .75.75 0 1 0 1.061-1.061A3 3 0 0 0 6 7.999H4.75a.75.75 0 0 0 0 1.5h1.225c-.116.571-.62 1-1.225 1a.75.75 0 1 0 0 1.5h5.5a.75.75 0 0 0 0-1.5H7.2c.156-.304.257-.642.289-1H9.25a.75.75 0 0 0 0-1.5H7.5c0-.384.146-.767.44-1.06Z","clip-rule":"evenodd"})])}function qU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.5 3.5A1.5 1.5 0 0 1 4 2h4.879a1.5 1.5 0 0 1 1.06.44l3.122 3.12a1.5 1.5 0 0 1 .439 1.061V12.5A1.5 1.5 0 0 1 12 14H4a1.5 1.5 0 0 1-1.5-1.5v-9ZM5.75 5a.75.75 0 0 0 0 1.5c.698 0 1.3.409 1.582 1H5.75a.75.75 0 0 0 0 1.5h1.582c-.281.591-.884 1-1.582 1a.75.75 0 0 0-.53 1.28l1.5 1.5a.75.75 0 0 0 1.06-1.06l-.567-.567A3.256 3.256 0 0 0 8.913 9h1.337a.75.75 0 0 0 0-1.5H8.913a3.232 3.232 0 0 0-.424-1h1.761a.75.75 0 0 0 0-1.5h-4.5Z","clip-rule":"evenodd"})])}function YU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.5 3.5A1.5 1.5 0 0 1 4 2h4.879a1.5 1.5 0 0 1 1.06.44l3.122 3.12a1.5 1.5 0 0 1 .439 1.061V12.5A1.5 1.5 0 0 1 12 14H4a1.5 1.5 0 0 1-1.5-1.5v-9Zm3.663 1.801a.75.75 0 1 0-1.2.9L6.313 8H5a.75.75 0 0 0 0 1.5h2.25v1H5A.75.75 0 0 0 5 12h2.25v.25a.75.75 0 0 0 1.5 0V12H11a.75.75 0 0 0 0-1.5H8.75v-1H11A.75.75 0 0 0 11 8H9.687l1.35-1.799a.75.75 0 0 0-1.2-.9L8 7.75 6.163 5.3Z","clip-rule":"evenodd"})])}function KU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.5 3.5A1.5 1.5 0 0 1 7 2h2.879a1.5 1.5 0 0 1 1.06.44l2.122 2.12a1.5 1.5 0 0 1 .439 1.061V9.5A1.5 1.5 0 0 1 12 11V8.621a3 3 0 0 0-.879-2.121L9 4.379A3 3 0 0 0 6.879 3.5H5.5Z"}),e.createElementVNode("path",{d:"M4 5a1.5 1.5 0 0 0-1.5 1.5v6A1.5 1.5 0 0 0 4 14h5a1.5 1.5 0 0 0 1.5-1.5V8.621a1.5 1.5 0 0 0-.44-1.06L7.94 5.439A1.5 1.5 0 0 0 6.878 5H4Z"})])}function GU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6 7.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 2a1.5 1.5 0 0 0-1.5 1.5v9A1.5 1.5 0 0 0 4 14h8a1.5 1.5 0 0 0 1.5-1.5V6.621a1.5 1.5 0 0 0-.44-1.06L9.94 2.439A1.5 1.5 0 0 0 8.878 2H4Zm3.5 2.5a3 3 0 1 0 1.524 5.585l1.196 1.195a.75.75 0 1 0 1.06-1.06l-1.195-1.196A3 3 0 0 0 7.5 4.5Z","clip-rule":"evenodd"})])}function JU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 2a1.5 1.5 0 0 0-1.5 1.5v9A1.5 1.5 0 0 0 4 14h8a1.5 1.5 0 0 0 1.5-1.5V6.621a1.5 1.5 0 0 0-.44-1.06L9.94 2.439A1.5 1.5 0 0 0 8.878 2H4Zm7 7a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1 0-1.5h4.5A.75.75 0 0 1 11 9Z","clip-rule":"evenodd"})])}function XU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 2a1.5 1.5 0 0 0-1.5 1.5v9A1.5 1.5 0 0 0 4 14h8a1.5 1.5 0 0 0 1.5-1.5V6.621a1.5 1.5 0 0 0-.44-1.06L9.94 2.439A1.5 1.5 0 0 0 8.878 2H4Zm4.75 4.75a.75.75 0 0 0-1.5 0v1.5h-1.5a.75.75 0 0 0 0 1.5h1.5v1.5a.75.75 0 0 0 1.5 0v-1.5h1.5a.75.75 0 0 0 0-1.5h-1.5v-1.5Z","clip-rule":"evenodd"})])}function QU(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 2a1.5 1.5 0 0 0-1.5 1.5v9A1.5 1.5 0 0 0 4 14h8a1.5 1.5 0 0 0 1.5-1.5V6.621a1.5 1.5 0 0 0-.44-1.06L9.94 2.439A1.5 1.5 0 0 0 8.878 2H4Zm1 5.75A.75.75 0 0 1 5.75 7h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 5 7.75Zm0 3a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function eW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2.5 3.5A1.5 1.5 0 0 1 4 2h4.879a1.5 1.5 0 0 1 1.06.44l3.122 3.12a1.5 1.5 0 0 1 .439 1.061V12.5A1.5 1.5 0 0 1 12 14H4a1.5 1.5 0 0 1-1.5-1.5v-9Z"})])}function tW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0ZM8 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5.5 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm6 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function nW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2 8a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM6.5 8a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM12.5 6.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z"})])}function rW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8 2a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3ZM8 6.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3ZM9.5 12.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Z"})])}function oW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.756 4.568A1.5 1.5 0 0 0 1 5.871V12.5A1.5 1.5 0 0 0 2.5 14h11a1.5 1.5 0 0 0 1.5-1.5V5.87a1.5 1.5 0 0 0-.756-1.302l-5.5-3.143a1.5 1.5 0 0 0-1.488 0l-5.5 3.143Zm1.82 2.963a.75.75 0 0 0-.653 1.35l4.1 1.98a2.25 2.25 0 0 0 1.955 0l4.1-1.98a.75.75 0 1 0-.653-1.35L8.326 9.51a.75.75 0 0 1-.652 0L3.575 7.53Z","clip-rule":"evenodd"})])}function aW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2.5 3A1.5 1.5 0 0 0 1 4.5v.793c.026.009.051.02.076.032L7.674 8.51c.206.1.446.1.652 0l6.598-3.185A.755.755 0 0 1 15 5.293V4.5A1.5 1.5 0 0 0 13.5 3h-11Z"}),e.createElementVNode("path",{d:"M15 6.954 8.978 9.86a2.25 2.25 0 0 1-1.956 0L1 6.954V11.5A1.5 1.5 0 0 0 2.5 13h11a1.5 1.5 0 0 0 1.5-1.5V6.954Z"})])}function lW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 4.75A.75.75 0 0 1 2.75 4h10.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 4.75ZM2 11.25a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function iW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14ZM8 4a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-1.5 0v-3A.75.75 0 0 1 8 4Zm0 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function cW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.701 2.25c.577-1 2.02-1 2.598 0l5.196 9a1.5 1.5 0 0 1-1.299 2.25H2.804a1.5 1.5 0 0 1-1.3-2.25l5.197-9ZM8 4a.75.75 0 0 1 .75.75v3a.75.75 0 1 1-1.5 0v-3A.75.75 0 0 1 8 4Zm0 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function sW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 4a3.001 3.001 0 0 1-2.25 2.905V8.5a.75.75 0 0 1-.22.53l-.5.5a.75.75 0 0 1-1.06 0l-.72-.72-4.677 4.678A1.75 1.75 0 0 1 4.336 14h-.672a.25.25 0 0 0-.177.073l-.707.707a.75.75 0 0 1-1.06 0l-.5-.5a.75.75 0 0 1 0-1.06l.707-.707A.25.25 0 0 0 2 12.336v-.672c0-.464.184-.909.513-1.237L7.189 5.75l-.72-.72a.75.75 0 0 1 0-1.06l.5-.5a.75.75 0 0 1 .531-.22h1.595A3.001 3.001 0 0 1 15 4ZM9.19 7.75l-.94-.94-4.677 4.678a.25.25 0 0 0-.073.176v.672c0 .058-.003.115-.009.173a1.74 1.74 0 0 1 .173-.009h.672a.25.25 0 0 0 .177-.073L9.189 7.75Z","clip-rule":"evenodd"})])}function dW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.28 2.22a.75.75 0 0 0-1.06 1.06l10.5 10.5a.75.75 0 1 0 1.06-1.06l-1.322-1.323a7.012 7.012 0 0 0 2.16-3.11.87.87 0 0 0 0-.567A7.003 7.003 0 0 0 4.82 3.76l-1.54-1.54Zm3.196 3.195 1.135 1.136A1.502 1.502 0 0 1 9.45 8.389l1.136 1.135a3 3 0 0 0-4.109-4.109Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"m7.812 10.994 1.816 1.816A7.003 7.003 0 0 1 1.38 8.28a.87.87 0 0 1 0-.566 6.985 6.985 0 0 1 1.113-2.039l2.513 2.513a3 3 0 0 0 2.806 2.806Z"})])}function uW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.38 8.28a.87.87 0 0 1 0-.566 7.003 7.003 0 0 1 13.238.006.87.87 0 0 1 0 .566A7.003 7.003 0 0 1 1.379 8.28ZM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z","clip-rule":"evenodd"})])}function hW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0ZM6 8c.552 0 1-.672 1-1.5S6.552 5 6 5s-1 .672-1 1.5S5.448 8 6 8Zm5-1.5c0 .828-.448 1.5-1 1.5s-1-.672-1-1.5S9.448 5 10 5s1 .672 1 1.5Zm-6.005 5.805a.75.75 0 0 0 1.06 0 2.75 2.75 0 0 1 3.89 0 .75.75 0 0 0 1.06-1.06 4.25 4.25 0 0 0-6.01 0 .75.75 0 0 0 0 1.06Z","clip-rule":"evenodd"})])}function pW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0ZM6 8c.552 0 1-.672 1-1.5S6.552 5 6 5s-1 .672-1 1.5S5.448 8 6 8Zm5-1.5c0 .828-.448 1.5-1 1.5s-1-.672-1-1.5S9.448 5 10 5s1 .672 1 1.5Zm.005 4.245a.75.75 0 0 0-1.06 0 2.75 2.75 0 0 1-3.89 0 .75.75 0 0 0-1.06 1.06 4.25 4.25 0 0 0 6.01 0 .75.75 0 0 0 0-1.06Z","clip-rule":"evenodd"})])}function fW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 3.5A1.5 1.5 0 0 1 2.5 2h11A1.5 1.5 0 0 1 15 3.5v9a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 1 12.5v-9Zm1.5.25a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 .25.25v1a.25.25 0 0 1-.25.25h-1.5a.25.25 0 0 1-.25-.25v-1Zm3.75-.25a.25.25 0 0 0-.25.25v3.5c0 .138.112.25.25.25h3.5a.25.25 0 0 0 .25-.25v-3.5a.25.25 0 0 0-.25-.25h-3.5ZM6 8.75a.25.25 0 0 1 .25-.25h3.5a.25.25 0 0 1 .25.25v3.5a.25.25 0 0 1-.25.25h-3.5a.25.25 0 0 1-.25-.25v-3.5Zm5.75-5.25a.25.25 0 0 0-.25.25v1c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25v-1a.25.25 0 0 0-.25-.25h-1.5ZM2.5 11.25a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 .25.25v1a.25.25 0 0 1-.25.25h-1.5a.25.25 0 0 1-.25-.25v-1Zm9.25-.25a.25.25 0 0 0-.25.25v1c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25v-1a.25.25 0 0 0-.25-.25h-1.5ZM2.5 8.75a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 .25.25v1a.25.25 0 0 1-.25.25h-1.5a.25.25 0 0 1-.25-.25v-1Zm9.25-.25a.25.25 0 0 0-.25.25v1c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25v-1a.25.25 0 0 0-.25-.25h-1.5ZM2.5 6.25A.25.25 0 0 1 2.75 6h1.5a.25.25 0 0 1 .25.25v1a.25.25 0 0 1-.25.25h-1.5a.25.25 0 0 1-.25-.25v-1ZM11.75 6a.25.25 0 0 0-.25.25v1c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25v-1a.25.25 0 0 0-.25-.25h-1.5Z","clip-rule":"evenodd"})])}function mW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 3c-.988 0-1.908.286-2.682.78a.75.75 0 0 1-.806-1.266A6.5 6.5 0 0 1 14.5 8c0 1.665-.333 3.254-.936 4.704a.75.75 0 0 1-1.385-.577C12.708 10.857 13 9.464 13 8a5 5 0 0 0-5-5ZM3.55 4.282a.75.75 0 0 1 .23 1.036A4.973 4.973 0 0 0 3 8a.75.75 0 0 1-1.5 0c0-1.282.372-2.48 1.014-3.488a.75.75 0 0 1 1.036-.23ZM8 5.875A2.125 2.125 0 0 0 5.875 8a3.625 3.625 0 0 1-3.625 3.625H2.213a.75.75 0 1 1 .008-1.5h.03A2.125 2.125 0 0 0 4.376 8a3.625 3.625 0 1 1 7.25 0c0 .078-.001.156-.003.233a.75.75 0 1 1-1.5-.036c.002-.066.003-.131.003-.197A2.125 2.125 0 0 0 8 5.875ZM7.995 7.25a.75.75 0 0 1 .75.75 6.502 6.502 0 0 1-4.343 6.133.75.75 0 1 1-.498-1.415A5.002 5.002 0 0 0 7.245 8a.75.75 0 0 1 .75-.75Zm2.651 2.87a.75.75 0 0 1 .463.955 9.39 9.39 0 0 1-3.008 4.25.75.75 0 0 1-.936-1.171 7.892 7.892 0 0 0 2.527-3.57.75.75 0 0 1 .954-.463Z","clip-rule":"evenodd"})])}function wW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.074.945A4.993 4.993 0 0 0 6 5v.032c.004.6.114 1.176.311 1.709.16.428-.204.91-.61.7a5.023 5.023 0 0 1-1.868-1.677c-.202-.304-.648-.363-.848-.058a6 6 0 1 0 8.017-1.901l-.004-.007a4.98 4.98 0 0 1-2.18-2.574c-.116-.31-.477-.472-.744-.28Zm.78 6.178a3.001 3.001 0 1 1-3.473 4.341c-.205-.365.215-.694.62-.59a4.008 4.008 0 0 0 1.873.03c.288-.065.413-.386.321-.666A3.997 3.997 0 0 1 8 8.999c0-.585.126-1.14.351-1.641a.42.42 0 0 1 .503-.235Z","clip-rule":"evenodd"})])}function gW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2.75 2a.75.75 0 0 0-.75.75v10.5a.75.75 0 0 0 1.5 0v-2.624l.33-.083A6.044 6.044 0 0 1 8 11c1.29.645 2.77.807 4.17.457l1.48-.37a.462.462 0 0 0 .35-.448V3.56a.438.438 0 0 0-.544-.425l-1.287.322C10.77 3.808 9.291 3.646 8 3a6.045 6.045 0 0 0-4.17-.457l-.34.085A.75.75 0 0 0 2.75 2Z"})])}function kW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.5 2A1.5 1.5 0 0 0 2 3.5v9A1.5 1.5 0 0 0 3.5 14h9a1.5 1.5 0 0 0 1.5-1.5v-7A1.5 1.5 0 0 0 12.5 4H9.621a1.5 1.5 0 0 1-1.06-.44L7.439 2.44A1.5 1.5 0 0 0 6.38 2H3.5Zm5.25 4.75a.75.75 0 0 0-1.5 0v2.69l-.72-.72a.75.75 0 0 0-1.06 1.06l2 2a.75.75 0 0 0 1.06 0l2-2a.75.75 0 1 0-1.06-1.06l-.72.72V6.75Z","clip-rule":"evenodd"})])}function xW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.5 2A1.5 1.5 0 0 0 2 3.5v9A1.5 1.5 0 0 0 3.5 14h9a1.5 1.5 0 0 0 1.5-1.5v-7A1.5 1.5 0 0 0 12.5 4H9.621a1.5 1.5 0 0 1-1.06-.44L7.439 2.44A1.5 1.5 0 0 0 6.38 2H3.5Zm6.75 7.75a.75.75 0 0 0 0-1.5h-4.5a.75.75 0 0 0 0 1.5h4.5Z","clip-rule":"evenodd"})])}function vW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3 3.5A1.5 1.5 0 0 1 4.5 2h1.879a1.5 1.5 0 0 1 1.06.44l1.122 1.12A1.5 1.5 0 0 0 9.62 4H11.5A1.5 1.5 0 0 1 13 5.5v1H3v-3ZM3.081 8a1.5 1.5 0 0 0-1.423 1.974l1 3A1.5 1.5 0 0 0 4.081 14h7.838a1.5 1.5 0 0 0 1.423-1.026l1-3A1.5 1.5 0 0 0 12.919 8H3.081Z"})])}function yW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.5 2A1.5 1.5 0 0 0 2 3.5v9A1.5 1.5 0 0 0 3.5 14h9a1.5 1.5 0 0 0 1.5-1.5v-7A1.5 1.5 0 0 0 12.5 4H9.621a1.5 1.5 0 0 1-1.06-.44L7.439 2.44A1.5 1.5 0 0 0 6.38 2H3.5ZM8 6a.75.75 0 0 1 .75.75v1.5h1.5a.75.75 0 0 1 0 1.5h-1.5v1.5a.75.75 0 0 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5A.75.75 0 0 1 8 6Z","clip-rule":"evenodd"})])}function BW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2 3.5A1.5 1.5 0 0 1 3.5 2h2.879a1.5 1.5 0 0 1 1.06.44l1.122 1.12A1.5 1.5 0 0 0 9.62 4H12.5A1.5 1.5 0 0 1 14 5.5v1.401a2.986 2.986 0 0 0-1.5-.401h-9c-.546 0-1.059.146-1.5.401V3.5ZM2 9.5v3A1.5 1.5 0 0 0 3.5 14h9a1.5 1.5 0 0 0 1.5-1.5v-3A1.5 1.5 0 0 0 12.5 8h-9A1.5 1.5 0 0 0 2 9.5Z"})])}function EW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2.53 3.956A1 1 0 0 0 1 4.804v6.392a1 1 0 0 0 1.53.848l5.113-3.196c.16-.1.279-.233.357-.383v2.73a1 1 0 0 0 1.53.849l5.113-3.196a1 1 0 0 0 0-1.696L9.53 3.956A1 1 0 0 0 8 4.804v2.731a.992.992 0 0 0-.357-.383L2.53 3.956Z"})])}function bW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M14 2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v2.172a2 2 0 0 0 .586 1.414l2.828 2.828A2 2 0 0 1 6 9.828v4.363a.5.5 0 0 0 .724.447l2.17-1.085A2 2 0 0 0 10 11.763V9.829a2 2 0 0 1 .586-1.414l2.828-2.828A2 2 0 0 0 14 4.172V2Z"})])}function CW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H3Zm.895 3.458C4.142 6.071 4.38 6 4.5 6s.358.07.605.458a.75.75 0 1 0 1.265-.805C5.933 4.966 5.274 4.5 4.5 4.5s-1.433.466-1.87 1.153C2.195 6.336 2 7.187 2 8s.195 1.664.63 2.347c.437.687 1.096 1.153 1.87 1.153s1.433-.466 1.87-1.153a.75.75 0 0 0 .117-.402V8a.75.75 0 0 0-.75-.75H5a.75.75 0 0 0-.013 1.5v.955C4.785 9.95 4.602 10 4.5 10c-.121 0-.358-.07-.605-.458C3.647 9.15 3.5 8.595 3.5 8c0-.595.147-1.15.395-1.542ZM9 5.25a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0v-5.5Zm1 0a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5H11.5v1.25h.75a.75.75 0 0 1 0 1.5h-.75v2a.75.75 0 0 1-1.5 0v-5.5Z","clip-rule":"evenodd"})])}function MW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7.25 2H3.5A1.5 1.5 0 0 0 2 3.5v3.75h1.718A2.5 2.5 0 0 1 7.25 3.716V2ZM2 8.75v3.75A1.5 1.5 0 0 0 3.5 14h3.75v-3.085a4.743 4.743 0 0 1-3.455 1.826.75.75 0 1 1-.092-1.497 3.252 3.252 0 0 0 2.96-2.494H2ZM8.75 14h3.75a1.5 1.5 0 0 0 1.5-1.5V8.75H9.337a3.252 3.252 0 0 0 2.96 2.494.75.75 0 1 1-.093 1.497 4.743 4.743 0 0 1-3.454-1.826V14ZM14 7.25h-1.718A2.5 2.5 0 0 0 8.75 3.717V2h3.75A1.5 1.5 0 0 1 14 3.5v3.75Z"}),e.createElementVNode("path",{d:"M6.352 6.787c.16.012.312.014.448.012.002-.136 0-.289-.012-.448-.043-.617-.203-1.181-.525-1.503a1 1 0 0 0-1.414 1.414c.322.322.886.482 1.503.525ZM9.649 6.787c-.16.012-.312.014-.448.012-.003-.136 0-.289.011-.448.044-.617.203-1.181.526-1.503a1 1 0 1 1 1.414 1.414c-.322.322-.887.482-1.503.525Z"})])}function VW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.75 3.5c0 .563.186 1.082.5 1.5H2a1 1 0 0 0 0 2h5.25V5h1.5v2H14a1 1 0 1 0 0-2h-2.25A2.5 2.5 0 0 0 8 1.714 2.5 2.5 0 0 0 3.75 3.5Zm3.499 0v-.038A1 1 0 1 0 6.25 4.5h1l-.001-1Zm2.5-1a1 1 0 0 0-1 .962l.001.038v1h.999a1 1 0 0 0 0-2Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M7.25 8.5H2V12a2 2 0 0 0 2 2h3.25V8.5ZM8.75 14V8.5H14V12a2 2 0 0 1-2 2H8.75Z"})])}function AW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.757 4.5c.18.217.376.42.586.608.153-.61.354-1.175.596-1.678A5.53 5.53 0 0 0 3.757 4.5ZM8 1a6.994 6.994 0 0 0-7 7 7 7 0 1 0 7-7Zm0 1.5c-.476 0-1.091.386-1.633 1.427-.293.564-.531 1.267-.683 2.063A5.48 5.48 0 0 0 8 6.5a5.48 5.48 0 0 0 2.316-.51c-.152-.796-.39-1.499-.683-2.063C9.09 2.886 8.476 2.5 8 2.5Zm3.657 2.608a8.823 8.823 0 0 0-.596-1.678c.444.298.842.659 1.182 1.07-.18.217-.376.42-.586.608Zm-1.166 2.436A6.983 6.983 0 0 1 8 8a6.983 6.983 0 0 1-2.49-.456 10.703 10.703 0 0 0 .202 2.6c.72.231 1.49.356 2.288.356.798 0 1.568-.125 2.29-.356a10.705 10.705 0 0 0 .2-2.6Zm1.433 1.85a12.652 12.652 0 0 0 .018-2.609c.405-.276.78-.594 1.117-.947a5.48 5.48 0 0 1 .44 2.262 7.536 7.536 0 0 1-1.575 1.293Zm-2.172 2.435a9.046 9.046 0 0 1-3.504 0c.039.084.078.166.12.244C6.907 13.114 7.523 13.5 8 13.5s1.091-.386 1.633-1.427c.04-.078.08-.16.12-.244Zm1.31.74a8.5 8.5 0 0 0 .492-1.298c.457-.197.893-.43 1.307-.696a5.526 5.526 0 0 1-1.8 1.995Zm-6.123 0a8.507 8.507 0 0 1-.493-1.298 8.985 8.985 0 0 1-1.307-.696 5.526 5.526 0 0 0 1.8 1.995ZM2.5 8.1c.463.5.993.935 1.575 1.293a12.652 12.652 0 0 1-.018-2.608 7.037 7.037 0 0 1-1.117-.947 5.48 5.48 0 0 0-.44 2.262Z","clip-rule":"evenodd"})])}function _W(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1ZM4.5 3.757a5.5 5.5 0 1 0 6.857-.114l-.65.65a.707.707 0 0 0-.207.5c0 .39-.317.707-.707.707H8.427a.496.496 0 0 0-.413.771l.25.376a.481.481 0 0 0 .616.163.962.962 0 0 1 1.11.18l.573.573a1 1 0 0 1 .242 1.023l-1.012 3.035a1 1 0 0 1-1.191.654l-.345-.086a1 1 0 0 1-.757-.97v-.305a1 1 0 0 0-.293-.707L6.1 9.1a.849.849 0 0 1 0-1.2c.22-.22.22-.58 0-.8l-.721-.721A3 3 0 0 1 4.5 4.257v-.5Z","clip-rule":"evenodd"})])}function NW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 8a7 7 0 1 1 14 0A7 7 0 0 1 1 8Zm7 5.5a5.485 5.485 0 0 1-4.007-1.732l.28-.702a.402.402 0 0 1 .658-.135.804.804 0 0 0 1.138 0l.012-.012a.822.822 0 0 0 .154-.949l-.055-.11a.497.497 0 0 1 .134-.611L8.14 7.788a.57.57 0 0 0 .154-.7.57.57 0 0 1 .33-.796l.028-.01a1.788 1.788 0 0 0 1.13-1.13l.072-.214a.747.747 0 0 0-.18-.764L8.293 2.793A1 1 0 0 1 8.09 2.5 5.5 5.5 0 0 1 12.9 10.5h-.486a1 1 0 0 1-.707-.293l-.353-.353a1.207 1.207 0 0 0-1.708 0l-.531.531a1 1 0 0 1-.26.188l-.343.17a.927.927 0 0 0-.512.83v.177c0 .414.336.75.75.75a.75.75 0 0 1 .751.793c-.477.135-.98.207-1.501.207Z","clip-rule":"evenodd"})])}function ZW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1ZM5.657 3.023a5.5 5.5 0 1 0 7.584 3.304l-.947-.63a.431.431 0 0 0-.544.053.431.431 0 0 1-.544.054l-.467-.312a.475.475 0 0 0-.689.608l.226.453a2.119 2.119 0 0 1 0 1.894L10.1 8.8a.947.947 0 0 0-.1.424v.11a2 2 0 0 1-.4 1.2L8.8 11.6A1 1 0 0 1 7 11v-.382a1 1 0 0 0-.553-.894l-.422-.212A1.854 1.854 0 0 1 6.855 6h.707a.438.438 0 1 0-.107-.864l-.835.209a1.129 1.129 0 0 1-1.305-1.553l.342-.77Z","clip-rule":"evenodd"})])}function SW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.75 3a.75.75 0 0 1 .75.75v3.5h4v-3.5a.75.75 0 0 1 1.5 0v8.5a.75.75 0 0 1-1.5 0v-3.5h-4v3.5a.75.75 0 0 1-1.5 0v-8.5A.75.75 0 0 1 1.75 3ZM10 6.75a.75.75 0 0 1 .75-.75h1.75a.75.75 0 0 1 .75.75v4.75h1a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1 0-1.5h1v-4h-1a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function $W(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.75 3a.75.75 0 0 1 .75.75v3.5h4v-3.5a.75.75 0 0 1 1.5 0v8.5a.75.75 0 0 1-1.5 0v-3.5h-4v3.5a.75.75 0 0 1-1.5 0v-8.5A.75.75 0 0 1 1.75 3ZM12.5 7.5c-.558 0-1.106.04-1.642.119a.75.75 0 0 1-.216-1.484 12.848 12.848 0 0 1 2.836-.098A1.629 1.629 0 0 1 14.99 7.58a8.884 8.884 0 0 1-.021 1.166c-.06.702-.553 1.24-1.159 1.441l-2.14.713a.25.25 0 0 0-.17.237v.363h2.75a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75v-1.113a1.75 1.75 0 0 1 1.197-1.66l2.139-.713c.1-.033.134-.103.138-.144a7.344 7.344 0 0 0 .018-.97c-.003-.052-.046-.111-.128-.117A11.417 11.417 0 0 0 12.5 7.5Z","clip-rule":"evenodd"})])}function IW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.75 3a.75.75 0 0 1 .75.75v3.5h4v-3.5a.75.75 0 0 1 1.5 0v8.5a.75.75 0 0 1-1.5 0v-3.5h-4v3.5a.75.75 0 0 1-1.5 0v-8.5A.75.75 0 0 1 1.75 3ZM12.5 7.5c-.558 0-1.107.04-1.642.119a.75.75 0 0 1-.217-1.484 12.851 12.851 0 0 1 2.856-.097c.696.054 1.363.561 1.464 1.353a4.805 4.805 0 0 1-.203 2.109 4.745 4.745 0 0 1 .203 2.109c-.101.792-.768 1.299-1.464 1.353a12.955 12.955 0 0 1-2.856-.097.75.75 0 0 1 .217-1.484 11.351 11.351 0 0 0 2.523.085.14.14 0 0 0 .08-.03c.007-.006.01-.012.01-.012l.002-.003v-.003a3.29 3.29 0 0 0-.06-1.168H11.75a.75.75 0 0 1 0-1.5h1.663a3.262 3.262 0 0 0 .06-1.168l-.001-.006-.01-.012a.14.14 0 0 0-.08-.03c-.291-.023-.585-.034-.882-.034Z","clip-rule":"evenodd"})])}function HW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8.5 1a.75.75 0 0 0-.75.75V6.5a.5.5 0 0 1-1 0V2.75a.75.75 0 0 0-1.5 0V7.5a.5.5 0 0 1-1 0V4.75a.75.75 0 0 0-1.5 0v4.5a5.75 5.75 0 0 0 11.5 0v-2.5a.75.75 0 0 0-1.5 0V9.5a.5.5 0 0 1-1 0V2.75a.75.75 0 0 0-1.5 0V6.5a.5.5 0 0 1-1 0V1.75A.75.75 0 0 0 8.5 1Z"})])}function TW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10.325 3H12v5c-.663 0-1.219.466-1.557 1.037a4.02 4.02 0 0 1-1.357 1.377c-.478.292-.907.706-.989 1.26v.005a9.031 9.031 0 0 0 0 2.642c.028.194-.048.394-.224.479A2 2 0 0 1 5 13c0-.812.08-1.605.234-2.371a.521.521 0 0 0-.5-.629H3C1.896 10 .99 9.102 1.1 8.003A19.827 19.827 0 0 1 2.18 3.215C2.45 2.469 3.178 2 3.973 2h2.703a2 2 0 0 1 .632.103l2.384.794a2 2 0 0 0 .633.103ZM14 2a1 1 0 0 0-1 1v6a1 1 0 1 0 2 0V3a1 1 0 0 0-1-1Z"})])}function LW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2.09 15a1 1 0 0 0 1-1V8a1 1 0 1 0-2 0v6a1 1 0 0 0 1 1ZM5.765 13H4.09V8c.663 0 1.218-.466 1.556-1.037a4.02 4.02 0 0 1 1.358-1.377c.478-.292.907-.706.989-1.26V4.32a9.03 9.03 0 0 0 0-2.642c-.028-.194.048-.394.224-.479A2 2 0 0 1 11.09 3c0 .812-.08 1.605-.235 2.371a.521.521 0 0 0 .502.629h1.733c1.104 0 2.01.898 1.901 1.997a19.831 19.831 0 0 1-1.081 4.788c-.27.747-.998 1.215-1.793 1.215H9.414c-.215 0-.428-.035-.632-.103l-2.384-.794A2.002 2.002 0 0 0 5.765 13Z"})])}function DW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.487 2.89a.75.75 0 1 0-1.474-.28l-.455 2.388H3.61a.75.75 0 0 0 0 1.5h1.663l-.571 2.998H2.75a.75.75 0 0 0 0 1.5h1.666l-.403 2.114a.75.75 0 0 0 1.474.28l.456-2.394h2.973l-.403 2.114a.75.75 0 0 0 1.474.28l.456-2.394h1.947a.75.75 0 0 0 0-1.5h-1.661l.57-2.998h1.95a.75.75 0 0 0 0-1.5h-1.664l.402-2.108a.75.75 0 0 0-1.474-.28l-.455 2.388H7.085l.402-2.108ZM6.8 6.498l-.571 2.998h2.973l.57-2.998H6.8Z","clip-rule":"evenodd"})])}function PW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2 6.342a3.375 3.375 0 0 1 6-2.088 3.375 3.375 0 0 1 5.997 2.26c-.063 2.134-1.618 3.76-2.955 4.784a14.437 14.437 0 0 1-2.676 1.61c-.02.01-.038.017-.05.022l-.014.006-.004.002h-.002a.75.75 0 0 1-.592.001h-.002l-.004-.003-.015-.006a5.528 5.528 0 0 1-.232-.107 14.395 14.395 0 0 1-2.535-1.557C3.564 10.22 1.999 8.558 1.999 6.38L2 6.342Z"})])}function OW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10.536 3.444a.75.75 0 0 0-.571-1.387L3.5 4.719V3.75a.75.75 0 0 0-1.5 0v1.586l-.535.22A.75.75 0 0 0 2 6.958V12.5h-.25a.75.75 0 0 0 0 1.5H4a1 1 0 0 0 1-1v-1a1 1 0 1 1 2 0v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1V3.664l.536-.22ZM11.829 5.802a.75.75 0 0 0-.333.623V8.5c0 .027.001.053.004.08V13a1 1 0 0 0 1 1h.5a1 1 0 0 0 1-1V7.957a.75.75 0 0 0 .535-1.4l-2.004-.826a.75.75 0 0 0-.703.07Z"})])}function RW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8.543 2.232a.75.75 0 0 0-1.085 0l-5.25 5.5A.75.75 0 0 0 2.75 9H4v4a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1a1 1 0 1 1 2 0v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1V9h1.25a.75.75 0 0 0 .543-1.268l-5.25-5.5Z"})])}function zW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H3Zm2.5 5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM10 5.75a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75Zm.75 3.75a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5ZM10 8a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5A.75.75 0 0 1 10 8Zm-2.378 3c.346 0 .583-.343.395-.633A2.998 2.998 0 0 0 5.5 9a2.998 2.998 0 0 0-2.517 1.367c-.188.29.05.633.395.633h4.244Z","clip-rule":"evenodd"})])}function jW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8.75 2.75a.75.75 0 0 0-1.5 0v3.69l-.72-.72a.75.75 0 0 0-1.06 1.06l2 2a.75.75 0 0 0 1.06 0l2-2a.75.75 0 1 0-1.06-1.06l-.72.72V2.75Z"}),e.createElementVNode("path",{d:"M4.784 4.5a.75.75 0 0 0-.701.483L2.553 9h2.412a1 1 0 0 1 .832.445l.406.61a1 1 0 0 0 .832.445h1.93a1 1 0 0 0 .832-.445l.406-.61A1 1 0 0 1 11.035 9h2.412l-1.53-4.017a.75.75 0 0 0-.7-.483h-.467a.75.75 0 0 1 0-1.5h.466c.934 0 1.77.577 2.103 1.449l1.534 4.026c.097.256.147.527.147.801v1.474A2.25 2.25 0 0 1 12.75 13h-9.5A2.25 2.25 0 0 1 1 10.75V9.276c0-.274.05-.545.147-.801l1.534-4.026A2.25 2.25 0 0 1 4.784 3h.466a.75.75 0 0 1 0 1.5h-.466Z"})])}function FW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.742 2.755A2.25 2.25 0 0 1 4.424 2h7.152a2.25 2.25 0 0 1 1.682.755l1.174 1.32c.366.412.568.944.568 1.495v.68a2.25 2.25 0 0 1-2.25 2.25h-9.5A2.25 2.25 0 0 1 1 6.25v-.68c0-.55.202-1.083.568-1.495l1.174-1.32Zm1.682.745a.75.75 0 0 0-.561.252L2.753 5h2.212a1 1 0 0 1 .832.445l.406.61a1 1 0 0 0 .832.445h1.93a1 1 0 0 0 .832-.445l.406-.61A1 1 0 0 1 11.035 5h2.211l-1.109-1.248a.75.75 0 0 0-.56-.252H4.423Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M1 10.75a.75.75 0 0 1 .75-.75h3.215a1 1 0 0 1 .832.445l.406.61a1 1 0 0 0 .832.445h1.93a1 1 0 0 0 .832-.445l.406-.61a1 1 0 0 1 .832-.445h3.215a.75.75 0 0 1 .75.75v1A2.25 2.25 0 0 1 12.75 14h-9.5A2.25 2.25 0 0 1 1 11.75v-1Z"})])}function UW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.784 3A2.25 2.25 0 0 0 2.68 4.449L1.147 8.475A2.25 2.25 0 0 0 1 9.276v1.474A2.25 2.25 0 0 0 3.25 13h9.5A2.25 2.25 0 0 0 15 10.75V9.276c0-.274-.05-.545-.147-.801l-1.534-4.026A2.25 2.25 0 0 0 11.216 3H4.784Zm-.701 1.983a.75.75 0 0 1 .7-.483h6.433a.75.75 0 0 1 .701.483L13.447 9h-2.412a1 1 0 0 0-.832.445l-.406.61a1 1 0 0 1-.832.445h-1.93a1 1 0 0 1-.832-.445l-.406-.61A1 1 0 0 0 4.965 9H2.553l1.53-4.017Z","clip-rule":"evenodd"})])}function WW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0ZM9 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM6.75 8a.75.75 0 0 0 0 1.5h.75v1.75a.75.75 0 0 0 1.5 0v-2.5A.75.75 0 0 0 8.25 8h-1.5Z","clip-rule":"evenodd"})])}function qW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.25 2.75A.75.75 0 0 1 7 2h6a.75.75 0 0 1 0 1.5h-2.483l-3.429 9H9A.75.75 0 0 1 9 14H3a.75.75 0 0 1 0-1.5h2.483l3.429-9H7a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function YW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M14 6a4 4 0 0 1-4.899 3.899l-1.955 1.955a.5.5 0 0 1-.353.146H5v1.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-2.293a.5.5 0 0 1 .146-.353l3.955-3.955A4 4 0 1 1 14 6Zm-4-2a.75.75 0 0 0 0 1.5.5.5 0 0 1 .5.5.75.75 0 0 0 1.5 0 2 2 0 0 0-2-2Z","clip-rule":"evenodd"})])}function KW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11 5a.75.75 0 0 1 .688.452l3.25 7.5a.75.75 0 1 1-1.376.596L12.89 12H9.109l-.67 1.548a.75.75 0 1 1-1.377-.596l3.25-7.5A.75.75 0 0 1 11 5Zm-1.24 5.5h2.48L11 7.636 9.76 10.5ZM5 1a.75.75 0 0 1 .75.75v1.261a25.27 25.27 0 0 1 2.598.211.75.75 0 1 1-.2 1.487c-.22-.03-.44-.056-.662-.08A12.939 12.939 0 0 1 5.92 8.058c.237.304.488.595.752.873a.75.75 0 0 1-1.086 1.035A13.075 13.075 0 0 1 5 9.307a13.068 13.068 0 0 1-2.841 2.546.75.75 0 0 1-.827-1.252A11.566 11.566 0 0 0 4.08 8.057a12.991 12.991 0 0 1-.554-.938.75.75 0 1 1 1.323-.707c.049.09.099.181.15.271.388-.68.708-1.405.952-2.164a23.941 23.941 0 0 0-4.1.19.75.75 0 0 1-.2-1.487c.853-.114 1.72-.185 2.598-.211V1.75A.75.75 0 0 1 5 1Z","clip-rule":"evenodd"})])}function GW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12.95 3.05a7 7 0 1 0-9.9 9.9 7 7 0 0 0 9.9-9.9Zm-7.262-.042a5.516 5.516 0 0 1 4.624 0L8.698 5.082a3.016 3.016 0 0 0-1.396 0L5.688 3.008Zm-2.68 2.68a5.516 5.516 0 0 0 0 4.624l2.074-1.614a3.015 3.015 0 0 1 0-1.396L3.008 5.688Zm2.68 7.304 1.614-2.074c.458.11.938.11 1.396 0l1.614 2.074a5.516 5.516 0 0 1-4.624 0Zm7.304-2.68a5.516 5.516 0 0 0 0-4.624l-2.074 1.614c.11.458.11.938 0 1.396l2.074 1.614ZM6.94 6.939a1.5 1.5 0 1 1 2.122 2.122 1.5 1.5 0 0 1-2.122-2.122Z","clip-rule":"evenodd"})])}function JW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M10.618 10.26c-.361.223-.618.598-.618 1.022 0 .226-.142.43-.36.49A6.006 6.006 0 0 1 8 12c-.569 0-1.12-.08-1.64-.227a.504.504 0 0 1-.36-.491c0-.424-.257-.799-.618-1.021a5 5 0 1 1 5.235 0ZM6.867 13.415a.75.75 0 1 0-.225 1.483 9.065 9.065 0 0 0 2.716 0 .75.75 0 1 0-.225-1.483 7.563 7.563 0 0 1-2.266 0Z"})])}function XW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.28 2.22a.75.75 0 0 0-1.06 1.06l10.5 10.5a.75.75 0 1 0 1.06-1.06l-2.999-3a3.5 3.5 0 0 0-.806-3.695.75.75 0 0 0-1.06 1.061c.374.374.569.861.584 1.352L7.116 6.055l1.97-1.97a2 2 0 0 1 3.208 2.3.75.75 0 0 0 1.346.662 3.501 3.501 0 0 0-5.615-4.022l-1.97 1.97L3.28 2.22ZM3.705 9.616a.75.75 0 0 0-1.345-.663 3.501 3.501 0 0 0 5.615 4.022l.379-.379a.75.75 0 0 0-1.061-1.06l-.379.378a2 2 0 0 1-3.209-2.298Z"})])}function QW(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.914 6.025a.75.75 0 0 1 1.06 0 3.5 3.5 0 0 1 0 4.95l-2 2a3.5 3.5 0 0 1-5.396-4.402.75.75 0 0 1 1.251.827 2 2 0 0 0 3.085 2.514l2-2a2 2 0 0 0 0-2.828.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.086 9.975a.75.75 0 0 1-1.06 0 3.5 3.5 0 0 1 0-4.95l2-2a3.5 3.5 0 0 1 5.396 4.402.75.75 0 0 1-1.251-.827 2 2 0 0 0-3.085-2.514l-2 2a2 2 0 0 0 0 2.828.75.75 0 0 1 0 1.06Z","clip-rule":"evenodd"})])}function eq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3 4.75a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM6.25 3a.75.75 0 0 0 0 1.5h7a.75.75 0 0 0 0-1.5h-7ZM6.25 7.25a.75.75 0 0 0 0 1.5h7a.75.75 0 0 0 0-1.5h-7ZM6.25 11.5a.75.75 0 0 0 0 1.5h7a.75.75 0 0 0 0-1.5h-7ZM4 12.25a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM3 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})])}function tq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 1a3.5 3.5 0 0 0-3.5 3.5V7A1.5 1.5 0 0 0 3 8.5v5A1.5 1.5 0 0 0 4.5 15h7a1.5 1.5 0 0 0 1.5-1.5v-5A1.5 1.5 0 0 0 11.5 7V4.5A3.5 3.5 0 0 0 8 1Zm2 6V4.5a2 2 0 1 0-4 0V7h4Z","clip-rule":"evenodd"})])}function nq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M11.5 1A3.5 3.5 0 0 0 8 4.5V7H2.5A1.5 1.5 0 0 0 1 8.5v5A1.5 1.5 0 0 0 2.5 15h7a1.5 1.5 0 0 0 1.5-1.5v-5A1.5 1.5 0 0 0 9.5 7V4.5a2 2 0 1 1 4 0v1.75a.75.75 0 0 0 1.5 0V4.5A3.5 3.5 0 0 0 11.5 1Z"})])}function rq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.94 8.06a1.5 1.5 0 1 1 2.12-2.12 1.5 1.5 0 0 1-2.12 2.12Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14ZM4.879 4.879a3 3 0 0 0 3.645 4.706L9.72 10.78a.75.75 0 0 0 1.061-1.06L9.585 8.524A3.001 3.001 0 0 0 4.879 4.88Z","clip-rule":"evenodd"})])}function oq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8.75 6.25h-3.5a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7 12c1.11 0 2.136-.362 2.965-.974l2.755 2.754a.75.75 0 1 0 1.06-1.06l-2.754-2.755A5 5 0 1 0 7 12Zm0-1.5a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Z","clip-rule":"evenodd"})])}function aq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M6.25 8.75v-1h-1a.75.75 0 0 1 0-1.5h1v-1a.75.75 0 0 1 1.5 0v1h1a.75.75 0 0 1 0 1.5h-1v1a.75.75 0 0 1-1.5 0Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7 12c1.11 0 2.136-.362 2.965-.974l2.755 2.754a.75.75 0 1 0 1.06-1.06l-2.754-2.755A5 5 0 1 0 7 12Zm0-1.5a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Z","clip-rule":"evenodd"})])}function lq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.965 11.026a5 5 0 1 1 1.06-1.06l2.755 2.754a.75.75 0 1 1-1.06 1.06l-2.755-2.754ZM10.5 7a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Z","clip-rule":"evenodd"})])}function iq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"m7.539 14.841.003.003.002.002a.755.755 0 0 0 .912 0l.002-.002.003-.003.012-.009a5.57 5.57 0 0 0 .19-.153 15.588 15.588 0 0 0 2.046-2.082c1.101-1.362 2.291-3.342 2.291-5.597A5 5 0 0 0 3 7c0 2.255 1.19 4.235 2.292 5.597a15.591 15.591 0 0 0 2.046 2.082 8.916 8.916 0 0 0 .189.153l.012.01ZM8 8.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z","clip-rule":"evenodd"})])}function cq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.37 2.257a1.25 1.25 0 0 1 1.214-.054l3.378 1.69 2.133-1.313A1.25 1.25 0 0 1 14 3.644v7.326c0 .434-.225.837-.595 1.065l-2.775 1.708a1.25 1.25 0 0 1-1.214.053l-3.378-1.689-2.133 1.313A1.25 1.25 0 0 1 2 12.354V5.029c0-.434.225-.837.595-1.064L5.37 2.257ZM6 4a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0v-4.5A.75.75 0 0 1 6 4Zm4.75 2.75a.75.75 0 0 0-1.5 0v4.5a.75.75 0 0 0 1.5 0v-4.5Z","clip-rule":"evenodd"})])}function sq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M13.407 2.59a.75.75 0 0 0-1.464.326c.365 1.636.557 3.337.557 5.084 0 1.747-.192 3.448-.557 5.084a.75.75 0 0 0 1.464.327c.264-1.185.444-2.402.531-3.644a2 2 0 0 0 0-3.534 24.736 24.736 0 0 0-.531-3.643ZM4.348 11H4a3 3 0 0 1 0-6h2c1.647 0 3.217-.332 4.646-.933C10.878 5.341 11 6.655 11 8c0 1.345-.122 2.659-.354 3.933a11.946 11.946 0 0 0-4.23-.925c.203.718.478 1.407.816 2.057.12.23.057.515-.155.663l-.828.58a.484.484 0 0 1-.707-.16A12.91 12.91 0 0 1 4.348 11Z"})])}function dq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8 1a2 2 0 0 0-2 2v4a2 2 0 1 0 4 0V3a2 2 0 0 0-2-2Z"}),e.createElementVNode("path",{d:"M4.5 7A.75.75 0 0 0 3 7a5.001 5.001 0 0 0 4.25 4.944V13.5h-1.5a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-1.5v-1.556A5.001 5.001 0 0 0 13 7a.75.75 0 0 0-1.5 0 3.5 3.5 0 1 1-7 0Z"})])}function uq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14Zm4-7a.75.75 0 0 0-.75-.75h-6.5a.75.75 0 0 0 0 1.5h6.5A.75.75 0 0 0 12 8Z","clip-rule":"evenodd"})])}function hq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.75 7.25a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5Z"})])}function pq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M14.438 10.148c.19-.425-.321-.787-.748-.601A5.5 5.5 0 0 1 6.453 2.31c.186-.427-.176-.938-.6-.748a6.501 6.501 0 1 0 8.585 8.586Z"})])}function fq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M14 1.75a.75.75 0 0 0-.89-.737l-7.502 1.43a.75.75 0 0 0-.61.736v2.5c0 .018 0 .036.002.054V9.73a1 1 0 0 1-.813.983l-.58.11a1.978 1.978 0 0 0 .741 3.886l.603-.115c.9-.171 1.55-.957 1.55-1.873v-1.543l-.001-.043V6.3l6-1.143v3.146a1 1 0 0 1-.813.982l-.584.111a1.978 1.978 0 0 0 .74 3.886l.326-.062A2.252 2.252 0 0 0 14 11.007V1.75Z"})])}function mq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v9a2 2 0 0 0 2 2h8a2 2 0 0 1-2-2V3ZM4 4h4v2H4V4Zm4 3.5H4V9h4V7.5Zm-4 3h4V12H4v-1.5Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M13 5h-1.5v6.25a1.25 1.25 0 1 0 2.5 0V6a1 1 0 0 0-1-1Z"})])}function wq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.05 3.05a7 7 0 1 1 9.9 9.9 7 7 0 0 1-9.9-9.9Zm1.627.566 7.707 7.707a5.501 5.501 0 0 0-7.707-7.707Zm6.646 8.768L3.616 4.677a5.501 5.501 0 0 0 7.707 7.707Z","clip-rule":"evenodd"})])}function gq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2.995 1a.625.625 0 1 0 0 1.25h.38v2.125a.625.625 0 1 0 1.25 0v-2.75A.625.625 0 0 0 4 1H2.995ZM3.208 7.385a2.37 2.37 0 0 1 1.027-.124L2.573 8.923a.625.625 0 0 0 .439 1.067l1.987.011a.625.625 0 0 0 .006-1.25l-.49-.003.777-.776c.215-.215.335-.506.335-.809 0-.465-.297-.957-.842-1.078a3.636 3.636 0 0 0-1.993.121.625.625 0 1 0 .416 1.179ZM2.625 11a.625.625 0 1 0 0 1.25H4.25a.125.125 0 0 1 0 .25H3.5a.625.625 0 1 0 0 1.25h.75a.125.125 0 0 1 0 .25H2.625a.625.625 0 1 0 0 1.25H4.25a1.375 1.375 0 0 0 1.153-2.125A1.375 1.375 0 0 0 4.25 11H2.625ZM7.25 2a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5h-6ZM7.25 7.25a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5h-6ZM6.5 13.25a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z"})])}function kq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M12.613 1.258a1.535 1.535 0 0 1 2.13 2.129l-1.905 2.856a8 8 0 0 1-3.56 2.939 4.011 4.011 0 0 0-2.46-2.46 8 8 0 0 1 2.94-3.56l2.855-1.904ZM5.5 8A2.5 2.5 0 0 0 3 10.5a.5.5 0 0 1-.7.459.75.75 0 0 0-.983 1A3.5 3.5 0 0 0 8 10.5 2.5 2.5 0 0 0 5.5 8Z"})])}function xq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2.87 2.298a.75.75 0 0 0-.812 1.021L3.39 6.624a1 1 0 0 0 .928.626H8.25a.75.75 0 0 1 0 1.5H4.318a1 1 0 0 0-.927.626l-1.333 3.305a.75.75 0 0 0 .811 1.022 24.89 24.89 0 0 0 11.668-5.115.75.75 0 0 0 0-1.175A24.89 24.89 0 0 0 2.869 2.298Z"})])}function vq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.914 4.086a2 2 0 0 0-2.828 0l-5 5a2 2 0 1 0 2.828 2.828l.556-.555a.75.75 0 0 1 1.06 1.06l-.555.556a3.5 3.5 0 0 1-4.95-4.95l5-5a3.5 3.5 0 0 1 4.95 4.95l-1.972 1.972a2.125 2.125 0 0 1-3.006-3.005L9.97 4.97a.75.75 0 1 1 1.06 1.06L9.058 8.003a.625.625 0 0 0 .884.883l1.972-1.972a2 2 0 0 0 0-2.828Z","clip-rule":"evenodd"})])}function yq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0ZM5.5 5.5A.5.5 0 0 1 6 5h.5a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5v-5Zm4-.5a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 .5.5h.5a.5.5 0 0 0 .5-.5v-5A.5.5 0 0 0 10 5h-.5Z","clip-rule":"evenodd"})])}function Bq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.5 2a.5.5 0 0 0-.5.5v11a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-11a.5.5 0 0 0-.5-.5h-1ZM10.5 2a.5.5 0 0 0-.5.5v11a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-11a.5.5 0 0 0-.5-.5h-1Z"})])}function Eq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M13.488 2.513a1.75 1.75 0 0 0-2.475 0L6.75 6.774a2.75 2.75 0 0 0-.596.892l-.848 2.047a.75.75 0 0 0 .98.98l2.047-.848a2.75 2.75 0 0 0 .892-.596l4.261-4.262a1.75 1.75 0 0 0 0-2.474Z"}),e.createElementVNode("path",{d:"M4.75 3.5c-.69 0-1.25.56-1.25 1.25v6.5c0 .69.56 1.25 1.25 1.25h6.5c.69 0 1.25-.56 1.25-1.25V9A.75.75 0 0 1 14 9v2.25A2.75 2.75 0 0 1 11.25 14h-6.5A2.75 2.75 0 0 1 2 11.25v-6.5A2.75 2.75 0 0 1 4.75 2H7a.75.75 0 0 1 0 1.5H4.75Z"})])}function bq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.013 2.513a1.75 1.75 0 0 1 2.475 2.474L6.226 12.25a2.751 2.751 0 0 1-.892.596l-2.047.848a.75.75 0 0 1-.98-.98l.848-2.047a2.75 2.75 0 0 1 .596-.892l7.262-7.261Z","clip-rule":"evenodd"})])}function Cq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M3.396 6.093a2 2 0 0 0 0 3.814 2 2 0 0 0 2.697 2.697 2 2 0 0 0 3.814 0 2.001 2.001 0 0 0 2.698-2.697 2 2 0 0 0-.001-3.814 2.001 2.001 0 0 0-2.697-2.698 2 2 0 0 0-3.814.001 2 2 0 0 0-2.697 2.697ZM6 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm3.47-1.53a.75.75 0 1 1 1.06 1.06l-4 4a.75.75 0 1 1-1.06-1.06l4-4ZM11 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z","clip-rule":"evenodd"})])}function Mq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"m4.922 6.752-1.067.534a7.52 7.52 0 0 0 4.859 4.86l.534-1.068a1 1 0 0 1 1.046-.542l2.858.44a1 1 0 0 1 .848.988V13a1 1 0 0 1-1 1h-2c-.709 0-1.4-.082-2.062-.238a9.012 9.012 0 0 1-6.7-6.7A9.024 9.024 0 0 1 2 5V3a1 1 0 0 1 1-1h1.036a1 1 0 0 1 .988.848l.44 2.858a1 1 0 0 1-.542 1.046Z"}),e.createElementVNode("path",{d:"m11.56 5.5 2.22-2.22a.75.75 0 0 0-1.06-1.06L10.5 4.44V2.75a.75.75 0 0 0-1.5 0v3.5c0 .414.336.75.75.75h3.5a.75.75 0 0 0 0-1.5h-1.69Z"})])}function Vq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"m4.922 6.752-1.067.534a7.52 7.52 0 0 0 4.859 4.86l.534-1.068a1 1 0 0 1 1.046-.542l2.858.44a1 1 0 0 1 .848.988V13a1 1 0 0 1-1 1h-2c-.709 0-1.4-.082-2.062-.238a9.012 9.012 0 0 1-6.7-6.7A9.024 9.024 0 0 1 2 5V3a1 1 0 0 1 1-1h1.036a1 1 0 0 1 .988.848l.44 2.858a1 1 0 0 1-.542 1.046Z"}),e.createElementVNode("path",{d:"M9.22 5.72a.75.75 0 0 0 1.06 1.06l2.22-2.22v1.69a.75.75 0 0 0 1.5 0v-3.5a.75.75 0 0 0-.75-.75h-3.5a.75.75 0 0 0 0 1.5h1.69L9.22 5.72Z"})])}function Aq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"m3.855 7.286 1.067-.534a1 1 0 0 0 .542-1.046l-.44-2.858A1 1 0 0 0 4.036 2H3a1 1 0 0 0-1 1v2c0 .709.082 1.4.238 2.062a9.012 9.012 0 0 0 6.7 6.7A9.024 9.024 0 0 0 11 14h2a1 1 0 0 0 1-1v-1.036a1 1 0 0 0-.848-.988l-2.858-.44a1 1 0 0 0-1.046.542l-.534 1.067a7.52 7.52 0 0 1-4.86-4.859Z"}),e.createElementVNode("path",{d:"M13.78 2.22a.75.75 0 0 1 0 1.06L12.56 4.5l1.22 1.22a.75.75 0 0 1-1.06 1.06L11.5 5.56l-1.22 1.22a.75.75 0 1 1-1.06-1.06l1.22-1.22-1.22-1.22a.75.75 0 0 1 1.06-1.06l1.22 1.22 1.22-1.22a.75.75 0 0 1 1.06 0Z"})])}function _q(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"m3.855 7.286 1.067-.534a1 1 0 0 0 .542-1.046l-.44-2.858A1 1 0 0 0 4.036 2H3a1 1 0 0 0-1 1v2c0 .709.082 1.4.238 2.062a9.012 9.012 0 0 0 6.7 6.7A9.024 9.024 0 0 0 11 14h2a1 1 0 0 0 1-1v-1.036a1 1 0 0 0-.848-.988l-2.858-.44a1 1 0 0 0-1.046.542l-.534 1.067a7.52 7.52 0 0 1-4.86-4.859Z","clip-rule":"evenodd"})])}function Nq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4Zm10.5 5.707a.5.5 0 0 0-.146-.353l-1-1a.5.5 0 0 0-.708 0L9.354 9.646a.5.5 0 0 1-.708 0L6.354 7.354a.5.5 0 0 0-.708 0l-2 2a.5.5 0 0 0-.146.353V12a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5V9.707ZM12 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z","clip-rule":"evenodd"})])}function Zq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14Zm-.847-9.766A.75.75 0 0 0 6 5.866v4.268a.75.75 0 0 0 1.153.633l3.353-2.134a.75.75 0 0 0 0-1.266L7.153 5.234Z","clip-rule":"evenodd"})])}function Sq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M1 4.804a1 1 0 0 1 1.53-.848l5.113 3.196a1 1 0 0 1 0 1.696L2.53 12.044A1 1 0 0 1 1 11.196V4.804ZM13.5 4.5A.5.5 0 0 1 14 4h.5a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5H14a.5.5 0 0 1-.5-.5v-7ZM10.5 4a.5.5 0 0 0-.5.5v7a.5.5 0 0 0 .5.5h.5a.5.5 0 0 0 .5-.5v-7A.5.5 0 0 0 11 4h-.5Z"})])}function $q(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3 3.732a1.5 1.5 0 0 1 2.305-1.265l6.706 4.267a1.5 1.5 0 0 1 0 2.531l-6.706 4.268A1.5 1.5 0 0 1 3 12.267V3.732Z"})])}function Iq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14Zm.75-10.25v2.5h2.5a.75.75 0 0 1 0 1.5h-2.5v2.5a.75.75 0 0 1-1.5 0v-2.5h-2.5a.75.75 0 0 1 0-1.5h2.5v-2.5a.75.75 0 0 1 1.5 0Z","clip-rule":"evenodd"})])}function Hq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8.75 3.75a.75.75 0 0 0-1.5 0v3.5h-3.5a.75.75 0 0 0 0 1.5h3.5v3.5a.75.75 0 0 0 1.5 0v-3.5h3.5a.75.75 0 0 0 0-1.5h-3.5v-3.5Z"})])}function Tq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 1a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-1.5 0v-6.5A.75.75 0 0 1 8 1ZM4.11 3.05a.75.75 0 0 1 0 1.06 5.5 5.5 0 1 0 7.78 0 .75.75 0 0 1 1.06-1.06 7 7 0 1 1-9.9 0 .75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function Lq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.75 2a.75.75 0 0 0 0 1.5H2V9a2 2 0 0 0 2 2h.043l-1.004 3.013a.75.75 0 0 0 1.423.474L4.624 14h6.752l.163.487a.75.75 0 1 0 1.422-.474L11.957 11H12a2 2 0 0 0 2-2V3.5h.25a.75.75 0 0 0 0-1.5H1.75Zm8.626 9 .5 1.5H5.124l.5-1.5h4.752ZM5.25 7a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5A.75.75 0 0 0 5.25 7ZM10 4.75a.75.75 0 0 1 1.5 0v3.5a.75.75 0 0 1-1.5 0v-3.5ZM8 5.5a.75.75 0 0 0-.75.75v2a.75.75 0 0 0 1.5 0v-2A.75.75 0 0 0 8 5.5Z","clip-rule":"evenodd"})])}function Dq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1.75 2a.75.75 0 0 0 0 1.5H2V9a2 2 0 0 0 2 2h.043l-1.005 3.013a.75.75 0 0 0 1.423.474L4.624 14h6.752l.163.487a.75.75 0 0 0 1.423-.474L11.957 11H12a2 2 0 0 0 2-2V3.5h.25a.75.75 0 0 0 0-1.5H1.75Zm8.626 9 .5 1.5H5.124l.5-1.5h4.752Zm1.317-5.833a.75.75 0 0 0-.892-1.206 8.789 8.789 0 0 0-2.465 2.814L7.28 5.72a.75.75 0 0 0-1.06 0l-2 2a.75.75 0 0 0 1.06 1.06l1.47-1.47L8.028 8.59a.75.75 0 0 0 1.228-.255 7.275 7.275 0 0 1 2.437-3.167Z","clip-rule":"evenodd"})])}function Pq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 5a2 2 0 0 0-2 2v3a2 2 0 0 0 1.51 1.94l-.315 1.896A1 1 0 0 0 4.18 15h7.639a1 1 0 0 0 .986-1.164l-.316-1.897A2 2 0 0 0 14 10V7a2 2 0 0 0-2-2V2a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v3Zm1.5 0V2.5h5V5h-5Zm5.23 5.5H5.27l-.5 3h6.459l-.5-3Z","clip-rule":"evenodd"})])}function Oq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M9 3.889c0-.273.188-.502.417-.65.355-.229.583-.587.583-.989C10 1.56 9.328 1 8.5 1S7 1.56 7 2.25c0 .41.237.774.603 1.002.22.137.397.355.397.613 0 .331-.275.596-.605.579-.744-.04-1.482-.1-2.214-.18a.75.75 0 0 0-.83.81c.067.764.111 1.535.133 2.312A.6.6 0 0 1 3.882 8c-.268 0-.495-.185-.64-.412C3.015 7.231 2.655 7 2.25 7 1.56 7 1 7.672 1 8.5S1.56 10 2.25 10c.404 0 .764-.23.993-.588.144-.227.37-.412.64-.412a.6.6 0 0 1 .601.614 39.338 39.338 0 0 1-.231 3.3.75.75 0 0 0 .661.829c.826.093 1.66.161 2.5.204A.56.56 0 0 0 8 13.386c0-.271-.187-.499-.415-.645C7.23 12.512 7 12.153 7 11.75c0-.69.672-1.25 1.5-1.25s1.5.56 1.5 1.25c0 .403-.23.762-.585.99-.228.147-.415.375-.415.646v.11c0 .278.223.504.5.504 1.196 0 2.381-.052 3.552-.154a.75.75 0 0 0 .68-.661c.135-1.177.22-2.37.253-3.574a.597.597 0 0 0-.6-.611c-.27 0-.498.187-.644.415-.229.356-.588.585-.991.585-.69 0-1.25-.672-1.25-1.5S11.06 7 11.75 7c.403 0 .762.23.99.585.147.228.375.415.646.415a.597.597 0 0 0 .599-.61 40.914 40.914 0 0 0-.132-2.365.75.75 0 0 0-.815-.684A39.51 39.51 0 0 1 9.5 4.5a.501.501 0 0 1-.5-.503v-.108Z"})])}function Rq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M4.75 4.25a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 3.5A1.5 1.5 0 0 1 3.5 2H6a1.5 1.5 0 0 1 1.5 1.5V6A1.5 1.5 0 0 1 6 7.5H3.5A1.5 1.5 0 0 1 2 6V3.5Zm1.5 0H6V6H3.5V3.5Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M4.25 11.25a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 10a1.5 1.5 0 0 1 1.5-1.5H6A1.5 1.5 0 0 1 7.5 10v2.5A1.5 1.5 0 0 1 6 14H3.5A1.5 1.5 0 0 1 2 12.5V10Zm1.5 2.5V10H6v2.5H3.5Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M11.25 4.25a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10 2a1.5 1.5 0 0 0-1.5 1.5V6A1.5 1.5 0 0 0 10 7.5h2.5A1.5 1.5 0 0 0 14 6V3.5A1.5 1.5 0 0 0 12.5 2H10Zm2.5 1.5H10V6h2.5V3.5Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M8.5 9.417a.917.917 0 1 1 1.833 0 .917.917 0 0 1-1.833 0ZM8.5 13.083a.917.917 0 1 1 1.833 0 .917.917 0 0 1-1.833 0ZM13.083 8.5a.917.917 0 1 0 0 1.833.917.917 0 0 0 0-1.833ZM12.166 13.084a.917.917 0 1 1 1.833 0 .917.917 0 0 1-1.833 0ZM11.25 10.333a.917.917 0 1 0 0 1.833.917.917 0 0 0 0-1.833Z"})])}function zq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0Zm-6 3.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM7.293 5.293a1 1 0 1 1 .99 1.667c-.459.134-1.033.566-1.033 1.29v.25a.75.75 0 1 0 1.5 0v-.115a2.5 2.5 0 1 0-2.518-4.153.75.75 0 1 0 1.061 1.06Z","clip-rule":"evenodd"})])}function jq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2 4a2 2 0 0 1 2-2h8a2 2 0 1 1 0 4H4a2 2 0 0 1-2-2ZM2 9.25a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 9.25ZM2.75 12.5a.75.75 0 0 0 0 1.5h10.5a.75.75 0 0 0 0-1.5H2.75Z"})])}function Fq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.437 1.45a.75.75 0 0 1-.386.987L7.478 4H13a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h.736l6.713-2.937a.75.75 0 0 1 .988.386ZM12 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM6.75 6.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.75 3a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm2.323-1.225a.75.75 0 1 1-.75-1.3.75.75 0 0 1 .75 1.3ZM7.3 9.75a.75.75 0 1 0 1.299.75.75.75 0 0 0-1.3-.75Zm-.549 1.5a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-3.348-.75a.75.75 0 1 0 1.3-.75.75.75 0 0 0-1.3.75Zm.275-1.975a.75.75 0 1 1 .75-1.3.75.75 0 0 1-.75 1.3ZM12 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function Uq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.25 2A2.25 2.25 0 0 0 3 4.25v9a.75.75 0 0 0 1.183.613l1.692-1.195 1.692 1.195a.75.75 0 0 0 .866 0l1.692-1.195 1.693 1.195A.75.75 0 0 0 13 13.25v-9A2.25 2.25 0 0 0 10.75 2h-5.5Zm5.53 4.28a.75.75 0 1 0-1.06-1.06l-4.5 4.5a.75.75 0 1 0 1.06 1.06l4.5-4.5ZM7 6.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm2.75 4.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z","clip-rule":"evenodd"})])}function Wq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5.25 2A2.25 2.25 0 0 0 3 4.25v9a.75.75 0 0 0 1.183.613l1.692-1.195 1.692 1.195a.75.75 0 0 0 .866 0l1.692-1.195 1.693 1.195A.75.75 0 0 0 13 13.25v-9A2.25 2.25 0 0 0 10.75 2h-5.5Zm3.03 3.28a.75.75 0 0 0-1.06-1.06L4.97 6.47a.75.75 0 0 0 0 1.06l2.25 2.25a.75.75 0 0 0 1.06-1.06l-.97-.97h1.315c.76 0 1.375.616 1.375 1.375a.75.75 0 0 0 1.5 0A2.875 2.875 0 0 0 8.625 6.25H7.311l.97-.97Z","clip-rule":"evenodd"})])}function qq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M1 4a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4ZM10 5a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1V5ZM4 10a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-1a1 1 0 0 0-1-1H4Z"})])}function Yq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5 3.5A1.5 1.5 0 0 1 6.5 2h3A1.5 1.5 0 0 1 11 3.5H5ZM4.5 5A1.5 1.5 0 0 0 3 6.5v.041a3.02 3.02 0 0 1 .5-.041h9c.17 0 .337.014.5.041V6.5A1.5 1.5 0 0 0 11.5 5h-7ZM12.5 8h-9A1.5 1.5 0 0 0 2 9.5v3A1.5 1.5 0 0 0 3.5 14h9a1.5 1.5 0 0 0 1.5-1.5v-3A1.5 1.5 0 0 0 12.5 8Z"})])}function Kq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M6.333 4.478A4 4 0 0 0 1 8.25c0 .414.336.75.75.75h3.322c.572.71 1.219 1.356 1.928 1.928v3.322c0 .414.336.75.75.75a4 4 0 0 0 3.772-5.333A10.721 10.721 0 0 0 15 1.75a.75.75 0 0 0-.75-.75c-3.133 0-5.953 1.34-7.917 3.478ZM12 5.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M3.902 10.682a.75.75 0 1 0-1.313-.725 4.764 4.764 0 0 0-.469 3.36.75.75 0 0 0 .564.563 4.76 4.76 0 0 0 3.359-.47.75.75 0 1 0-.725-1.312 3.231 3.231 0 0 1-1.81.393 3.232 3.232 0 0 1 .394-1.81Z"})])}function Gq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 2.75A.75.75 0 0 1 2.75 2C8.963 2 14 7.037 14 13.25a.75.75 0 0 1-1.5 0c0-5.385-4.365-9.75-9.75-9.75A.75.75 0 0 1 2 2.75Zm0 4.5a.75.75 0 0 1 .75-.75 6.75 6.75 0 0 1 6.75 6.75.75.75 0 0 1-1.5 0C8 10.35 5.65 8 2.75 8A.75.75 0 0 1 2 7.25ZM3.5 11a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z","clip-rule":"evenodd"})])}function Jq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.75 2.5a.75.75 0 0 0-1.5 0v.508a32.661 32.661 0 0 0-4.624.434.75.75 0 0 0 .246 1.48l.13-.021-1.188 4.75a.75.75 0 0 0 .33.817A3.487 3.487 0 0 0 4 11c.68 0 1.318-.195 1.856-.532a.75.75 0 0 0 .33-.818l-1.25-5a31.31 31.31 0 0 1 2.314-.141V12.012c-.882.027-1.752.104-2.607.226a.75.75 0 0 0 .213 1.485 22.188 22.188 0 0 1 6.288 0 .75.75 0 1 0 .213-1.485 23.657 23.657 0 0 0-2.607-.226V4.509c.779.018 1.55.066 2.314.14L9.814 9.65a.75.75 0 0 0 .329.818 3.487 3.487 0 0 0 1.856.532c.68 0 1.318-.195 1.856-.532a.75.75 0 0 0 .33-.818L12.997 4.9l.13.022a.75.75 0 1 0 .247-1.48 32.66 32.66 0 0 0-4.624-.434V2.5ZM3.42 9.415a2 2 0 0 0 1.16 0L4 7.092l-.58 2.323ZM12 9.5a2 2 0 0 1-.582-.085L12 7.092l.58 2.323A2 2 0 0 1 12 9.5Z","clip-rule":"evenodd"})])}function Xq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2.25 6.665c.969.56 2.157.396 2.94-.323l.359.207c.34.196.777.02.97-.322.19-.337.115-.784-.22-.977l-.359-.207a2.501 2.501 0 1 0-3.69 1.622ZM4.364 5a1 1 0 1 1-1.732-1 1 1 0 0 1 1.732 1ZM8.903 5.465a2.75 2.75 0 0 0-1.775 1.893l-.375 1.398-1.563.902a2.501 2.501 0 1 0 .75 1.3L14.7 5.9a.75.75 0 0 0-.18-1.374l-.782-.21a2.75 2.75 0 0 0-1.593.052L8.903 5.465ZM4.365 11a1 1 0 1 1-1.732 1 1 1 0 0 1 1.732-1Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M8.892 10.408c-.052.03-.047.108.011.128l3.243 1.097a2.75 2.75 0 0 0 1.593.05l.781-.208a.75.75 0 0 0 .18-1.374l-2.137-1.235a1 1 0 0 0-1 0l-2.67 1.542Z"})])}function Qq(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.354 2a2 2 0 0 0-1.857 1.257l-.338.845C3.43 4.035 3.71 4 4 4h8c.29 0 .571.035.84.102l-.337-.845A2 2 0 0 0 10.646 2H5.354Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 13a2 2 0 0 1 2-2h8a2 2 0 1 1 0 4H4a2 2 0 0 1-2-2Zm10.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM9 13.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM4 5.5a2 2 0 1 0 0 4h8a2 2 0 1 0 0-4H4Zm8 2.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM9.75 7.5a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z","clip-rule":"evenodd"})])}function eY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.665 3.588A2 2 0 0 1 5.622 2h4.754a2 2 0 0 1 1.958 1.588l1.098 5.218a3.487 3.487 0 0 0-1.433-.306H4c-.51 0-.995.11-1.433.306l1.099-5.218Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4 10a2 2 0 1 0 0 4h8a2 2 0 1 0 0-4H4Zm8 2.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM9.75 12a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z","clip-rule":"evenodd"})])}function tY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M12 6a2 2 0 1 0-1.994-1.842L5.323 6.5a2 2 0 1 0 0 3l4.683 2.342a2 2 0 1 0 .67-1.342L5.995 8.158a2.03 2.03 0 0 0 0-.316L10.677 5.5c.353.311.816.5 1.323.5Z"})])}function nY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8.5 1.709a.75.75 0 0 0-1 0 8.963 8.963 0 0 1-4.84 2.217.75.75 0 0 0-.654.72 10.499 10.499 0 0 0 5.647 9.672.75.75 0 0 0 .694-.001 10.499 10.499 0 0 0 5.647-9.672.75.75 0 0 0-.654-.719A8.963 8.963 0 0 1 8.5 1.71Zm2.34 5.504a.75.75 0 0 0-1.18-.926L7.394 9.17l-1.156-.99a.75.75 0 1 0-.976 1.138l1.75 1.5a.75.75 0 0 0 1.078-.106l2.75-3.5Z","clip-rule":"evenodd"})])}function rY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M7.5 1.709a.75.75 0 0 1 1 0 8.963 8.963 0 0 0 4.84 2.217.75.75 0 0 1 .654.72 10.499 10.499 0 0 1-5.647 9.672.75.75 0 0 1-.694-.001 10.499 10.499 0 0 1-5.647-9.672.75.75 0 0 1 .654-.719A8.963 8.963 0 0 0 7.5 1.71ZM8 5a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2A.75.75 0 0 1 8 5Zm0 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function oY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5 4a3 3 0 0 1 6 0v1h.643a1.5 1.5 0 0 1 1.492 1.35l.7 7A1.5 1.5 0 0 1 12.342 15H3.657a1.5 1.5 0 0 1-1.492-1.65l.7-7A1.5 1.5 0 0 1 4.357 5H5V4Zm4.5 0v1h-3V4a1.5 1.5 0 0 1 3 0Zm-3 3.75a.75.75 0 0 0-1.5 0v1a3 3 0 1 0 6 0v-1a.75.75 0 0 0-1.5 0v1a1.5 1.5 0 1 1-3 0v-1Z","clip-rule":"evenodd"})])}function aY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M1.75 1.002a.75.75 0 1 0 0 1.5h1.835l1.24 5.113A3.752 3.752 0 0 0 2 11.25c0 .414.336.75.75.75h10.5a.75.75 0 0 0 0-1.5H3.628A2.25 2.25 0 0 1 5.75 9h6.5a.75.75 0 0 0 .73-.578l.846-3.595a.75.75 0 0 0-.578-.906 44.118 44.118 0 0 0-7.996-.91l-.348-1.436a.75.75 0 0 0-.73-.573H1.75ZM5 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM13 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"})])}function lY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.28 2.22a.75.75 0 0 0-1.06 1.06l4.782 4.783a1 1 0 0 0 .935.935l4.783 4.782a.75.75 0 1 0 1.06-1.06L8.998 7.937a1 1 0 0 0-.935-.935L3.28 2.22ZM3.05 12.95a7.003 7.003 0 0 1-1.33-8.047L2.86 6.04a5.501 5.501 0 0 0 1.25 5.849.75.75 0 1 1-1.06 1.06ZM5.26 10.74a3.87 3.87 0 0 1-1.082-3.38L5.87 9.052c.112.226.262.439.45.627a.75.75 0 1 1-1.06 1.061ZM12.95 3.05a7.003 7.003 0 0 1 1.33 8.048l-1.14-1.139a5.501 5.501 0 0 0-1.25-5.848.75.75 0 0 1 1.06-1.06ZM10.74 5.26a3.87 3.87 0 0 1 1.082 3.38L10.13 6.948a2.372 2.372 0 0 0-.45-.627.75.75 0 0 1 1.06-1.061Z"})])}function iY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M9 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.68 5.26a.75.75 0 0 1 1.06 0 3.875 3.875 0 0 1 0 5.48.75.75 0 1 1-1.06-1.06 2.375 2.375 0 0 0 0-3.36.75.75 0 0 1 0-1.06Zm-3.36 0a.75.75 0 0 1 0 1.06 2.375 2.375 0 0 0 0 3.36.75.75 0 1 1-1.06 1.06 3.875 3.875 0 0 1 0-5.48.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.89 3.05a.75.75 0 0 1 1.06 0 7 7 0 0 1 0 9.9.75.75 0 1 1-1.06-1.06 5.5 5.5 0 0 0 0-7.78.75.75 0 0 1 0-1.06Zm-7.78 0a.75.75 0 0 1 0 1.06 5.5 5.5 0 0 0 0 7.78.75.75 0 1 1-1.06 1.06 7 7 0 0 1 0-9.9.75.75 0 0 1 1.06 0Z","clip-rule":"evenodd"})])}function cY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M10.074 2.047a.75.75 0 0 1 .449.961L6.705 13.507a.75.75 0 0 1-1.41-.513L9.113 2.496a.75.75 0 0 1 .961-.449Z","clip-rule":"evenodd"})])}function sY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5 4a.75.75 0 0 1 .738.616l.252 1.388A1.25 1.25 0 0 0 6.996 7.01l1.388.252a.75.75 0 0 1 0 1.476l-1.388.252A1.25 1.25 0 0 0 5.99 9.996l-.252 1.388a.75.75 0 0 1-1.476 0L4.01 9.996A1.25 1.25 0 0 0 3.004 8.99l-1.388-.252a.75.75 0 0 1 0-1.476l1.388-.252A1.25 1.25 0 0 0 4.01 6.004l.252-1.388A.75.75 0 0 1 5 4ZM12 1a.75.75 0 0 1 .721.544l.195.682c.118.415.443.74.858.858l.682.195a.75.75 0 0 1 0 1.442l-.682.195a1.25 1.25 0 0 0-.858.858l-.195.682a.75.75 0 0 1-1.442 0l-.195-.682a1.25 1.25 0 0 0-.858-.858l-.682-.195a.75.75 0 0 1 0-1.442l.682-.195a1.25 1.25 0 0 0 .858-.858l.195-.682A.75.75 0 0 1 12 1ZM10 11a.75.75 0 0 1 .728.568.968.968 0 0 0 .704.704.75.75 0 0 1 0 1.456.968.968 0 0 0-.704.704.75.75 0 0 1-1.456 0 .968.968 0 0 0-.704-.704.75.75 0 0 1 0-1.456.968.968 0 0 0 .704-.704A.75.75 0 0 1 10 11Z","clip-rule":"evenodd"})])}function dY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7.557 2.066A.75.75 0 0 1 8 2.75v10.5a.75.75 0 0 1-1.248.56L3.59 11H2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h1.59l3.162-2.81a.75.75 0 0 1 .805-.124ZM12.95 3.05a.75.75 0 1 0-1.06 1.06 5.5 5.5 0 0 1 0 7.78.75.75 0 1 0 1.06 1.06 7 7 0 0 0 0-9.9Z"}),e.createElementVNode("path",{d:"M10.828 5.172a.75.75 0 1 0-1.06 1.06 2.5 2.5 0 0 1 0 3.536.75.75 0 1 0 1.06 1.06 4 4 0 0 0 0-5.656Z"})])}function uY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7.557 2.066A.75.75 0 0 1 8 2.75v10.5a.75.75 0 0 1-1.248.56L3.59 11H2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h1.59l3.162-2.81a.75.75 0 0 1 .805-.124ZM11.28 5.72a.75.75 0 1 0-1.06 1.06L11.44 8l-1.22 1.22a.75.75 0 1 0 1.06 1.06l1.22-1.22 1.22 1.22a.75.75 0 1 0 1.06-1.06L13.56 8l1.22-1.22a.75.75 0 0 0-1.06-1.06L12.5 6.94l-1.22-1.22Z"})])}function hY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5 6.5A1.5 1.5 0 0 1 6.5 5h6A1.5 1.5 0 0 1 14 6.5v6a1.5 1.5 0 0 1-1.5 1.5h-6A1.5 1.5 0 0 1 5 12.5v-6Z"}),e.createElementVNode("path",{d:"M3.5 2A1.5 1.5 0 0 0 2 3.5v6A1.5 1.5 0 0 0 3.5 11V6.5a3 3 0 0 1 3-3H11A1.5 1.5 0 0 0 9.5 2h-6Z"})])}function pY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M7.628 1.099a.75.75 0 0 1 .744 0l5.25 3a.75.75 0 0 1 0 1.302l-5.25 3a.75.75 0 0 1-.744 0l-5.25-3a.75.75 0 0 1 0-1.302l5.25-3Z"}),e.createElementVNode("path",{d:"m2.57 7.24-.192.11a.75.75 0 0 0 0 1.302l5.25 3a.75.75 0 0 0 .744 0l5.25-3a.75.75 0 0 0 0-1.303l-.192-.11-4.314 2.465a2.25 2.25 0 0 1-2.232 0L2.57 7.239Z"}),e.createElementVNode("path",{d:"m2.378 10.6.192-.11 4.314 2.464a2.25 2.25 0 0 0 2.232 0l4.314-2.465.192.11a.75.75 0 0 1 0 1.303l-5.25 3a.75.75 0 0 1-.744 0l-5.25-3a.75.75 0 0 1 0-1.303Z"})])}function fY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.5 2A1.5 1.5 0 0 0 2 3.5v2A1.5 1.5 0 0 0 3.5 7h2A1.5 1.5 0 0 0 7 5.5v-2A1.5 1.5 0 0 0 5.5 2h-2ZM3.5 9A1.5 1.5 0 0 0 2 10.5v2A1.5 1.5 0 0 0 3.5 14h2A1.5 1.5 0 0 0 7 12.5v-2A1.5 1.5 0 0 0 5.5 9h-2ZM9 3.5A1.5 1.5 0 0 1 10.5 2h2A1.5 1.5 0 0 1 14 3.5v2A1.5 1.5 0 0 1 12.5 7h-2A1.5 1.5 0 0 1 9 5.5v-2ZM10.5 9A1.5 1.5 0 0 0 9 10.5v2a1.5 1.5 0 0 0 1.5 1.5h2a1.5 1.5 0 0 0 1.5-1.5v-2A1.5 1.5 0 0 0 12.5 9h-2Z"})])}function mY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2 3.5A1.5 1.5 0 0 1 3.5 2h2A1.5 1.5 0 0 1 7 3.5v2A1.5 1.5 0 0 1 5.5 7h-2A1.5 1.5 0 0 1 2 5.5v-2ZM2 10.5A1.5 1.5 0 0 1 3.5 9h2A1.5 1.5 0 0 1 7 10.5v2A1.5 1.5 0 0 1 5.5 14h-2A1.5 1.5 0 0 1 2 12.5v-2ZM10.5 2A1.5 1.5 0 0 0 9 3.5v2A1.5 1.5 0 0 0 10.5 7h2A1.5 1.5 0 0 0 14 5.5v-2A1.5 1.5 0 0 0 12.5 2h-2ZM11.5 9a.75.75 0 0 1 .75.75v1h1a.75.75 0 0 1 0 1.5h-1v1a.75.75 0 0 1-1.5 0v-1h-1a.75.75 0 0 1 0-1.5h1v-1A.75.75 0 0 1 11.5 9Z"})])}function wY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 1.75a.75.75 0 0 1 .692.462l1.41 3.393 3.664.293a.75.75 0 0 1 .428 1.317l-2.791 2.39.853 3.575a.75.75 0 0 1-1.12.814L7.998 12.08l-3.135 1.915a.75.75 0 0 1-1.12-.814l.852-3.574-2.79-2.39a.75.75 0 0 1 .427-1.318l3.663-.293 1.41-3.393A.75.75 0 0 1 8 1.75Z","clip-rule":"evenodd"})])}function gY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14ZM6.5 5.5a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-3Z","clip-rule":"evenodd"})])}function kY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("rect",{width:"10",height:"10",x:"3",y:"3",rx:"1.5"})])}function xY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M9.165 3.654c-.95-.255-1.921-.273-2.693-.042-.769.231-1.087.624-1.173.947-.087.323-.008.822.543 1.407.389.412.927.77 1.55 1.034H13a.75.75 0 0 1 0 1.5H3A.75.75 0 0 1 3 7h1.756l-.006-.006c-.787-.835-1.161-1.849-.9-2.823.26-.975 1.092-1.666 2.191-1.995 1.097-.33 2.36-.28 3.512.029.75.2 1.478.518 2.11.939a.75.75 0 0 1-.833 1.248 5.682 5.682 0 0 0-1.665-.738Zm2.074 6.365a.75.75 0 0 1 .91.543 2.44 2.44 0 0 1-.35 2.024c-.405.585-1.052 1.003-1.84 1.24-1.098.329-2.36.279-3.512-.03-1.152-.308-2.27-.897-3.056-1.73a.75.75 0 0 1 1.092-1.029c.552.586 1.403 1.056 2.352 1.31.95.255 1.92.273 2.692.042.55-.165.873-.417 1.038-.656a.942.942 0 0 0 .13-.803.75.75 0 0 1 .544-.91Z","clip-rule":"evenodd"})])}function vY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8 1a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5A.75.75 0 0 1 8 1ZM10.5 8a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0ZM12.95 4.11a.75.75 0 1 0-1.06-1.06l-1.062 1.06a.75.75 0 0 0 1.061 1.062l1.06-1.061ZM15 8a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1 0-1.5h1.5A.75.75 0 0 1 15 8ZM11.89 12.95a.75.75 0 0 0 1.06-1.06l-1.06-1.062a.75.75 0 0 0-1.062 1.061l1.061 1.06ZM8 12a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5A.75.75 0 0 1 8 12ZM5.172 11.89a.75.75 0 0 0-1.061-1.062L3.05 11.89a.75.75 0 1 0 1.06 1.06l1.06-1.06ZM4 8a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1 0-1.5h1.5A.75.75 0 0 1 4 8ZM4.11 5.172A.75.75 0 0 0 5.173 4.11L4.11 3.05a.75.75 0 1 0-1.06 1.06l1.06 1.06Z"})])}function yY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 3a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v8.5a2.5 2.5 0 0 1-5 0V3Zm3.25 8.5a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"m8.5 11.035 3.778-3.778a1 1 0 0 0 0-1.414l-2.122-2.121a1 1 0 0 0-1.414 0l-.242.242v7.07ZM7.656 14H13a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-.344l-5 5Z"})])}function BY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 11a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v6ZM7.25 7.5a.5.5 0 0 0-.5-.5H3a.5.5 0 0 0-.5.5V8a.5.5 0 0 0 .5.5h3.75a.5.5 0 0 0 .5-.5v-.5Zm1.5 3a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 .5.5v.5a.5.5 0 0 1-.5.5H9.25a.5.5 0 0 1-.5-.5v-.5ZM13.5 8v-.5A.5.5 0 0 0 13 7H9.25a.5.5 0 0 0-.5.5V8a.5.5 0 0 0 .5.5H13a.5.5 0 0 0 .5-.5Zm-6.75 3.5a.5.5 0 0 0 .5-.5v-.5a.5.5 0 0 0-.5-.5H3a.5.5 0 0 0-.5.5v.5a.5.5 0 0 0 .5.5h3.75Z","clip-rule":"evenodd"})])}function EY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.5 2A2.5 2.5 0 0 0 2 4.5v2.879a2.5 2.5 0 0 0 .732 1.767l4.5 4.5a2.5 2.5 0 0 0 3.536 0l2.878-2.878a2.5 2.5 0 0 0 0-3.536l-4.5-4.5A2.5 2.5 0 0 0 7.38 2H4.5ZM5 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z","clip-rule":"evenodd"})])}function bY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 4.5A1.5 1.5 0 0 1 2.5 3h11A1.5 1.5 0 0 1 15 4.5v1c0 .276-.227.494-.495.562a2 2 0 0 0 0 3.876c.268.068.495.286.495.562v1a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 1 11.5v-1c0-.276.227-.494.495-.562a2 2 0 0 0 0-3.876C1.227 5.994 1 5.776 1 5.5v-1Zm9 1.25a.75.75 0 0 1 1.5 0v1a.75.75 0 0 1-1.5 0v-1Zm.75 2.75a.75.75 0 0 0-.75.75v1a.75.75 0 0 0 1.5 0v-1a.75.75 0 0 0-.75-.75Z","clip-rule":"evenodd"})])}function CY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M5 3.25V4H2.75a.75.75 0 0 0 0 1.5h.3l.815 8.15A1.5 1.5 0 0 0 5.357 15h5.285a1.5 1.5 0 0 0 1.493-1.35l.815-8.15h.3a.75.75 0 0 0 0-1.5H11v-.75A2.25 2.25 0 0 0 8.75 1h-1.5A2.25 2.25 0 0 0 5 3.25Zm2.25-.75a.75.75 0 0 0-.75.75V4h3v-.75a.75.75 0 0 0-.75-.75h-1.5ZM6.05 6a.75.75 0 0 1 .787.713l.275 5.5a.75.75 0 0 1-1.498.075l-.275-5.5A.75.75 0 0 1 6.05 6Zm3.9 0a.75.75 0 0 1 .712.787l-.275 5.5a.75.75 0 0 1-1.498-.075l.275-5.5a.75.75 0 0 1 .786-.711Z","clip-rule":"evenodd"})])}function MY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M12 1.69a.494.494 0 0 0-.438-.494 32.352 32.352 0 0 0-7.124 0A.494.494 0 0 0 4 1.689v.567c-.811.104-1.612.24-2.403.406a.75.75 0 0 0-.595.714 4.5 4.5 0 0 0 4.35 4.622A3.99 3.99 0 0 0 7 8.874V10H6a1 1 0 0 0-1 1v2h-.667C3.597 13 3 13.597 3 14.333c0 .368.298.667.667.667h8.666a.667.667 0 0 0 .667-.667c0-.736-.597-1.333-1.333-1.333H11v-2a1 1 0 0 0-1-1H9V8.874a3.99 3.99 0 0 0 1.649-.876 4.5 4.5 0 0 0 4.35-4.622.75.75 0 0 0-.596-.714A30.897 30.897 0 0 0 12 2.256v-.567ZM4 3.768c-.49.066-.976.145-1.458.235a3.004 3.004 0 0 0 1.64 2.192A3.999 3.999 0 0 1 4 5V3.769Zm8 0c.49.066.976.145 1.458.235a3.004 3.004 0 0 1-1.64 2.192C11.936 5.818 12 5.416 12 5V3.769Z","clip-rule":"evenodd"})])}function VY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2.908 2.067A.978.978 0 0 0 2 3.05V8h6V3.05a.978.978 0 0 0-.908-.983 32.481 32.481 0 0 0-4.184 0ZM12.919 4.722A.98.98 0 0 0 11.968 4H10a1 1 0 0 0-1 1v6.268A2 2 0 0 1 12 13h1a.977.977 0 0 0 .985-1 31.99 31.99 0 0 0-1.066-7.278Z"}),e.createElementVNode("path",{d:"M11 13a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM2 12V9h6v3a1 1 0 0 1-1 1 2 2 0 1 0-4 0 1 1 0 0 1-1-1Z"}),e.createElementVNode("path",{d:"M6 13a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"})])}function AY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M12 5H4v4h8V5Z"}),e.createElementVNode("path",{"fill-rule":"evenodd",d:"M1 3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-4v1.5h2.25a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5H6V12H2a1 1 0 0 1-1-1V3Zm1.5 7.5v-7h11v7h-11Z","clip-rule":"evenodd"})])}function _Y(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.75 2a.75.75 0 0 1 .75.75V7a2.5 2.5 0 0 0 5 0V2.75a.75.75 0 0 1 1.5 0V7a4 4 0 0 1-8 0V2.75A.75.75 0 0 1 4.75 2ZM2 13.25a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})])}function NY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0Zm-5-2a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM8 9c-1.825 0-3.422.977-4.295 2.437A5.49 5.49 0 0 0 8 13.5a5.49 5.49 0 0 0 4.294-2.063A4.997 4.997 0 0 0 8 9Z","clip-rule":"evenodd"})])}function ZY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM3.156 11.763c.16-.629.44-1.21.813-1.72a2.5 2.5 0 0 0-2.725 1.377c-.136.287.102.58.418.58h1.449c.01-.077.025-.156.045-.237ZM12.847 11.763c.02.08.036.16.046.237h1.446c.316 0 .554-.293.417-.579a2.5 2.5 0 0 0-2.722-1.378c.374.51.653 1.09.813 1.72ZM14 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM3.5 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM5 13c-.552 0-1.013-.455-.876-.99a4.002 4.002 0 0 1 7.753 0c.136.535-.324.99-.877.99H5Z"})])}function SY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8.5 4.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0ZM10 13c.552 0 1.01-.452.9-.994a5.002 5.002 0 0 0-9.802 0c-.109.542.35.994.902.994h8ZM10.75 5.25a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Z"})])}function $Y(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8.5 4.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0ZM10 13c.552 0 1.01-.452.9-.994a5.002 5.002 0 0 0-9.802 0c-.109.542.35.994.902.994h8ZM12.5 3.5a.75.75 0 0 1 .75.75v1h1a.75.75 0 0 1 0 1.5h-1v1a.75.75 0 0 1-1.5 0v-1h-1a.75.75 0 0 1 0-1.5h1v-1a.75.75 0 0 1 .75-.75Z"})])}function IY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM12.735 14c.618 0 1.093-.561.872-1.139a6.002 6.002 0 0 0-11.215 0c-.22.578.254 1.139.872 1.139h9.47Z"})])}function HY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M8.5 4.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0ZM10.9 12.006c.11.542-.348.994-.9.994H2c-.553 0-1.01-.452-.902-.994a5.002 5.002 0 0 1 9.803 0ZM14.002 12h-1.59a2.556 2.556 0 0 0-.04-.29 6.476 6.476 0 0 0-1.167-2.603 3.002 3.002 0 0 1 3.633 1.911c.18.522-.283.982-.836.982ZM12 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"})])}function TY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.38 3.012a.75.75 0 1 0-1.408-.516A15.97 15.97 0 0 0 1 8c0 1.932.343 3.786.972 5.503a.75.75 0 0 0 1.408-.516A14.47 14.47 0 0 1 2.5 8c0-1.754.311-3.434.88-4.988ZM12.62 3.012a.75.75 0 1 1 1.408-.516A15.97 15.97 0 0 1 15 8a15.97 15.97 0 0 1-.972 5.503.75.75 0 0 1-1.408-.516c.569-1.554.88-3.233.88-4.987s-.311-3.434-.88-4.988ZM6.523 4.785a.75.75 0 0 1 .898.38l.758 1.515.812-.902a2.376 2.376 0 0 1 2.486-.674.75.75 0 1 1-.454 1.429.876.876 0 0 0-.918.249L8.9 8.122l.734 1.468.388-.124a.75.75 0 0 1 .457 1.428l-1 .32a.75.75 0 0 1-.899-.379L7.821 9.32l-.811.901a2.374 2.374 0 0 1-2.489.673.75.75 0 0 1 .458-1.428.874.874 0 0 0 .916-.248L7.1 7.878 6.366 6.41l-.389.124a.75.75 0 1 1-.454-1.43l1-.318Z"})])}function LY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M1 10V6.682L6.318 12H3a2 2 0 0 1-2-2ZM10 6v3.318L4.682 4H8a2 2 0 0 1 2 2ZM14.537 4.057A.75.75 0 0 1 15 4.75v6.5a.75.75 0 0 1-1.28.53l-2-2a.75.75 0 0 1-.22-.53v-2.5a.75.75 0 0 1 .22-.53l2-2a.75.75 0 0 1 .817-.163ZM2.78 4.22a.75.75 0 0 0-1.06 1.06l6.5 6.5a.75.75 0 0 0 1.06-1.06l-6.5-6.5Z"})])}function DY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3 4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h5a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H3ZM15 4.75a.75.75 0 0 0-1.28-.53l-2 2a.75.75 0 0 0-.22.53v2.5c0 .199.079.39.22.53l2 2a.75.75 0 0 0 1.28-.53v-6.5Z"})])}function PY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M9.836 3h-3.67v10h3.67V3ZM11.336 13H13.5a1.5 1.5 0 0 0 1.5-1.5v-7A1.5 1.5 0 0 0 13.5 3h-2.164v10ZM2.5 3h2.166v10H2.5A1.5 1.5 0 0 1 1 11.5v-7A1.5 1.5 0 0 1 2.5 3Z"})])}function OY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M3.75 2A1.75 1.75 0 0 0 2 3.75v1.5a.75.75 0 0 0 1.5 0v-1.5a.25.25 0 0 1 .25-.25h1.5a.75.75 0 0 0 0-1.5h-1.5ZM10.75 2a.75.75 0 0 0 0 1.5h1.5a.25.25 0 0 1 .25.25v1.5a.75.75 0 0 0 1.5 0v-1.5A1.75 1.75 0 0 0 12.25 2h-1.5ZM3.5 10.75a.75.75 0 0 0-1.5 0v1.5c0 .966.784 1.75 1.75 1.75h1.5a.75.75 0 0 0 0-1.5h-1.5a.25.25 0 0 1-.25-.25v-1.5ZM14 10.75a.75.75 0 0 0-1.5 0v1.5a.25.25 0 0 1-.25.25h-1.5a.75.75 0 0 0 0 1.5h1.5A1.75 1.75 0 0 0 14 12.25v-1.5ZM8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"})])}function RY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M2 3.5A1.5 1.5 0 0 1 3.5 2h9A1.5 1.5 0 0 1 14 3.5v.401a2.986 2.986 0 0 0-1.5-.401h-9c-.546 0-1.059.146-1.5.401V3.5ZM3.5 5A1.5 1.5 0 0 0 2 6.5v.401A2.986 2.986 0 0 1 3.5 6.5h9c.546 0 1.059.146 1.5.401V6.5A1.5 1.5 0 0 0 12.5 5h-9ZM8 10a2 2 0 0 0 1.938-1.505c.068-.268.286-.495.562-.495h2A1.5 1.5 0 0 1 14 9.5v3a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 12.5v-3A1.5 1.5 0 0 1 3.5 8h2c.276 0 .494.227.562.495A2 2 0 0 0 8 10Z"})])}function zY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M14.188 7.063a8.75 8.75 0 0 0-12.374 0 .75.75 0 0 1-1.061-1.06c4.003-4.004 10.493-4.004 14.496 0a.75.75 0 1 1-1.061 1.06Zm-2.121 2.121a5.75 5.75 0 0 0-8.132 0 .75.75 0 0 1-1.06-1.06 7.25 7.25 0 0 1 10.252 0 .75.75 0 0 1-1.06 1.06Zm-2.122 2.122a2.75 2.75 0 0 0-3.889 0 .75.75 0 1 1-1.06-1.061 4.25 4.25 0 0 1 6.01 0 .75.75 0 0 1-1.06 1.06Zm-2.828 1.06a1.25 1.25 0 0 1 1.768 0 .75.75 0 0 1 0 1.06l-.355.355a.75.75 0 0 1-1.06 0l-.354-.354a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"})])}function jY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M2 12V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2Zm1.5-5.5V12a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5V6.5A.5.5 0 0 0 12 6H4a.5.5 0 0 0-.5.5Zm.75-1.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM7 4a.75.75 0 1 1-1.5 0A.75.75 0 0 1 7 4Zm1.25.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z","clip-rule":"evenodd"})])}function FY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M15 4.5A3.5 3.5 0 0 1 11.435 8c-.99-.019-2.093.132-2.7.913l-4.13 5.31a2.015 2.015 0 1 1-2.827-2.828l5.309-4.13c.78-.607.932-1.71.914-2.7L8 4.5a3.5 3.5 0 0 1 4.477-3.362c.325.094.39.497.15.736L10.6 3.902a.48.48 0 0 0-.033.653c.271.314.565.608.879.879a.48.48 0 0 0 .653-.033l2.027-2.027c.239-.24.642-.175.736.15.09.31.138.637.138.976ZM3.75 13a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z","clip-rule":"evenodd"}),e.createElementVNode("path",{d:"M11.5 9.5c.313 0 .62-.029.917-.084l1.962 1.962a2.121 2.121 0 0 1-3 3l-2.81-2.81 1.35-1.734c.05-.064.158-.158.426-.233.278-.078.639-.11 1.062-.102l.093.001ZM5 4l1.446 1.445a2.256 2.256 0 0 1-.047.21c-.075.268-.169.377-.233.427l-.61.474L4 5H2.655a.25.25 0 0 1-.224-.139l-1.35-2.7a.25.25 0 0 1 .047-.289l.745-.745a.25.25 0 0 1 .289-.047l2.7 1.35A.25.25 0 0 1 5 2.654V4Z"})])}function UY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M11.5 8a3.5 3.5 0 0 0 3.362-4.476c-.094-.325-.497-.39-.736-.15L12.099 5.4a.48.48 0 0 1-.653.033 8.554 8.554 0 0 1-.879-.879.48.48 0 0 1 .033-.653l2.027-2.028c.24-.239.175-.642-.15-.736a3.502 3.502 0 0 0-4.476 3.427c.018.99-.133 2.093-.914 2.7l-5.31 4.13a2.015 2.015 0 1 0 2.828 2.827l4.13-5.309c.607-.78 1.71-.932 2.7-.914L11.5 8ZM3 13.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z","clip-rule":"evenodd"})])}function WY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{"fill-rule":"evenodd",d:"M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14Zm2.78-4.22a.75.75 0 0 1-1.06 0L8 9.06l-1.72 1.72a.75.75 0 1 1-1.06-1.06L6.94 8 5.22 6.28a.75.75 0 0 1 1.06-1.06L8 6.94l1.72-1.72a.75.75 0 1 1 1.06 1.06L9.06 8l1.72 1.72a.75.75 0 0 1 0 1.06Z","clip-rule":"evenodd"})])}function qY(n,t){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor","aria-hidden":"true","data-slot":"icon"},[e.createElementVNode("path",{d:"M5.28 4.22a.75.75 0 0 0-1.06 1.06L6.94 8l-2.72 2.72a.75.75 0 1 0 1.06 1.06L8 9.06l2.72 2.72a.75.75 0 1 0 1.06-1.06L9.06 8l2.72-2.72a.75.75 0 0 0-1.06-1.06L8 6.94 5.28 4.22Z"})])}const YY=Object.freeze(Object.defineProperty({__proto__:null,AcademicCapIcon:nj,AdjustmentsHorizontalIcon:rj,AdjustmentsVerticalIcon:oj,ArchiveBoxArrowDownIcon:aj,ArchiveBoxIcon:ij,ArchiveBoxXMarkIcon:lj,ArrowDownCircleIcon:cj,ArrowDownIcon:fj,ArrowDownLeftIcon:sj,ArrowDownOnSquareIcon:uj,ArrowDownOnSquareStackIcon:dj,ArrowDownRightIcon:hj,ArrowDownTrayIcon:pj,ArrowLeftCircleIcon:mj,ArrowLeftEndOnRectangleIcon:wj,ArrowLeftIcon:kj,ArrowLeftStartOnRectangleIcon:gj,ArrowLongDownIcon:xj,ArrowLongLeftIcon:vj,ArrowLongRightIcon:yj,ArrowLongUpIcon:Bj,ArrowPathIcon:bj,ArrowPathRoundedSquareIcon:Ej,ArrowRightCircleIcon:Cj,ArrowRightEndOnRectangleIcon:Mj,ArrowRightIcon:Aj,ArrowRightStartOnRectangleIcon:Vj,ArrowTopRightOnSquareIcon:_j,ArrowTrendingDownIcon:Nj,ArrowTrendingUpIcon:Zj,ArrowTurnDownLeftIcon:Sj,ArrowTurnDownRightIcon:$j,ArrowTurnLeftDownIcon:Ij,ArrowTurnLeftUpIcon:Hj,ArrowTurnRightDownIcon:Tj,ArrowTurnRightUpIcon:Lj,ArrowTurnUpLeftIcon:Dj,ArrowTurnUpRightIcon:Pj,ArrowUpCircleIcon:Oj,ArrowUpIcon:Wj,ArrowUpLeftIcon:Rj,ArrowUpOnSquareIcon:jj,ArrowUpOnSquareStackIcon:zj,ArrowUpRightIcon:Fj,ArrowUpTrayIcon:Uj,ArrowUturnDownIcon:qj,ArrowUturnLeftIcon:Yj,ArrowUturnRightIcon:Kj,ArrowUturnUpIcon:Gj,ArrowsPointingInIcon:Jj,ArrowsPointingOutIcon:Xj,ArrowsRightLeftIcon:Qj,ArrowsUpDownIcon:eF,AtSymbolIcon:tF,BackspaceIcon:nF,BackwardIcon:rF,BanknotesIcon:oF,Bars2Icon:aF,Bars3BottomLeftIcon:lF,Bars3BottomRightIcon:iF,Bars3CenterLeftIcon:cF,Bars3Icon:sF,Bars4Icon:dF,BarsArrowDownIcon:uF,BarsArrowUpIcon:hF,Battery0Icon:pF,Battery100Icon:fF,Battery50Icon:mF,BeakerIcon:wF,BellAlertIcon:gF,BellIcon:vF,BellSlashIcon:kF,BellSnoozeIcon:xF,BoldIcon:yF,BoltIcon:EF,BoltSlashIcon:BF,BookOpenIcon:bF,BookmarkIcon:VF,BookmarkSlashIcon:CF,BookmarkSquareIcon:MF,BriefcaseIcon:AF,BugAntIcon:_F,BuildingLibraryIcon:NF,BuildingOffice2Icon:ZF,BuildingOfficeIcon:SF,BuildingStorefrontIcon:$F,CakeIcon:IF,CalculatorIcon:HF,CalendarDateRangeIcon:TF,CalendarDaysIcon:LF,CalendarIcon:DF,CameraIcon:PF,ChartBarIcon:RF,ChartBarSquareIcon:OF,ChartPieIcon:zF,ChatBubbleBottomCenterIcon:FF,ChatBubbleBottomCenterTextIcon:jF,ChatBubbleLeftEllipsisIcon:UF,ChatBubbleLeftIcon:qF,ChatBubbleLeftRightIcon:WF,ChatBubbleOvalLeftEllipsisIcon:YF,ChatBubbleOvalLeftIcon:KF,CheckBadgeIcon:GF,CheckCircleIcon:JF,CheckIcon:XF,ChevronDoubleDownIcon:QF,ChevronDoubleLeftIcon:eU,ChevronDoubleRightIcon:tU,ChevronDoubleUpIcon:nU,ChevronDownIcon:rU,ChevronLeftIcon:oU,ChevronRightIcon:aU,ChevronUpDownIcon:lU,ChevronUpIcon:iU,CircleStackIcon:cU,ClipboardDocumentCheckIcon:sU,ClipboardDocumentIcon:uU,ClipboardDocumentListIcon:dU,ClipboardIcon:hU,ClockIcon:pU,CloudArrowDownIcon:fU,CloudArrowUpIcon:mU,CloudIcon:wU,CodeBracketIcon:kU,CodeBracketSquareIcon:gU,Cog6ToothIcon:xU,Cog8ToothIcon:vU,CogIcon:yU,CommandLineIcon:BU,ComputerDesktopIcon:EU,CpuChipIcon:bU,CreditCardIcon:CU,CubeIcon:VU,CubeTransparentIcon:MU,CurrencyBangladeshiIcon:AU,CurrencyDollarIcon:_U,CurrencyEuroIcon:NU,CurrencyPoundIcon:ZU,CurrencyRupeeIcon:SU,CurrencyYenIcon:$U,CursorArrowRaysIcon:IU,CursorArrowRippleIcon:HU,DevicePhoneMobileIcon:TU,DeviceTabletIcon:LU,DivideIcon:DU,DocumentArrowDownIcon:PU,DocumentArrowUpIcon:OU,DocumentChartBarIcon:RU,DocumentCheckIcon:zU,DocumentCurrencyBangladeshiIcon:jU,DocumentCurrencyDollarIcon:FU,DocumentCurrencyEuroIcon:UU,DocumentCurrencyPoundIcon:WU,DocumentCurrencyRupeeIcon:qU,DocumentCurrencyYenIcon:YU,DocumentDuplicateIcon:KU,DocumentIcon:eW,DocumentMagnifyingGlassIcon:GU,DocumentMinusIcon:JU,DocumentPlusIcon:XU,DocumentTextIcon:QU,EllipsisHorizontalCircleIcon:tW,EllipsisHorizontalIcon:nW,EllipsisVerticalIcon:rW,EnvelopeIcon:aW,EnvelopeOpenIcon:oW,EqualsIcon:lW,ExclamationCircleIcon:iW,ExclamationTriangleIcon:cW,EyeDropperIcon:sW,EyeIcon:uW,EyeSlashIcon:dW,FaceFrownIcon:hW,FaceSmileIcon:pW,FilmIcon:fW,FingerPrintIcon:mW,FireIcon:wW,FlagIcon:gW,FolderArrowDownIcon:kW,FolderIcon:BW,FolderMinusIcon:xW,FolderOpenIcon:vW,FolderPlusIcon:yW,ForwardIcon:EW,FunnelIcon:bW,GifIcon:CW,GiftIcon:VW,GiftTopIcon:MW,GlobeAltIcon:AW,GlobeAmericasIcon:_W,GlobeAsiaAustraliaIcon:NW,GlobeEuropeAfricaIcon:ZW,H1Icon:SW,H2Icon:$W,H3Icon:IW,HandRaisedIcon:HW,HandThumbDownIcon:TW,HandThumbUpIcon:LW,HashtagIcon:DW,HeartIcon:PW,HomeIcon:RW,HomeModernIcon:OW,IdentificationIcon:zW,InboxArrowDownIcon:jW,InboxIcon:UW,InboxStackIcon:FW,InformationCircleIcon:WW,ItalicIcon:qW,KeyIcon:YW,LanguageIcon:KW,LifebuoyIcon:GW,LightBulbIcon:JW,LinkIcon:QW,LinkSlashIcon:XW,ListBulletIcon:eq,LockClosedIcon:tq,LockOpenIcon:nq,MagnifyingGlassCircleIcon:rq,MagnifyingGlassIcon:lq,MagnifyingGlassMinusIcon:oq,MagnifyingGlassPlusIcon:aq,MapIcon:cq,MapPinIcon:iq,MegaphoneIcon:sq,MicrophoneIcon:dq,MinusCircleIcon:uq,MinusIcon:hq,MoonIcon:pq,MusicalNoteIcon:fq,NewspaperIcon:mq,NoSymbolIcon:wq,NumberedListIcon:gq,PaintBrushIcon:kq,PaperAirplaneIcon:xq,PaperClipIcon:vq,PauseCircleIcon:yq,PauseIcon:Bq,PencilIcon:bq,PencilSquareIcon:Eq,PercentBadgeIcon:Cq,PhoneArrowDownLeftIcon:Mq,PhoneArrowUpRightIcon:Vq,PhoneIcon:_q,PhoneXMarkIcon:Aq,PhotoIcon:Nq,PlayCircleIcon:Zq,PlayIcon:$q,PlayPauseIcon:Sq,PlusCircleIcon:Iq,PlusIcon:Hq,PowerIcon:Tq,PresentationChartBarIcon:Lq,PresentationChartLineIcon:Dq,PrinterIcon:Pq,PuzzlePieceIcon:Oq,QrCodeIcon:Rq,QuestionMarkCircleIcon:zq,QueueListIcon:jq,RadioIcon:Fq,ReceiptPercentIcon:Uq,ReceiptRefundIcon:Wq,RectangleGroupIcon:qq,RectangleStackIcon:Yq,RocketLaunchIcon:Kq,RssIcon:Gq,ScaleIcon:Jq,ScissorsIcon:Xq,ServerIcon:eY,ServerStackIcon:Qq,ShareIcon:tY,ShieldCheckIcon:nY,ShieldExclamationIcon:rY,ShoppingBagIcon:oY,ShoppingCartIcon:aY,SignalIcon:iY,SignalSlashIcon:lY,SlashIcon:cY,SparklesIcon:sY,SpeakerWaveIcon:dY,SpeakerXMarkIcon:uY,Square2StackIcon:hY,Square3Stack3DIcon:pY,Squares2X2Icon:fY,SquaresPlusIcon:mY,StarIcon:wY,StopCircleIcon:gY,StopIcon:kY,StrikethroughIcon:xY,SunIcon:vY,SwatchIcon:yY,TableCellsIcon:BY,TagIcon:EY,TicketIcon:bY,TrashIcon:CY,TrophyIcon:MY,TruckIcon:VY,TvIcon:AY,UnderlineIcon:_Y,UserCircleIcon:NY,UserGroupIcon:ZY,UserIcon:IY,UserMinusIcon:SY,UserPlusIcon:$Y,UsersIcon:HY,VariableIcon:TY,VideoCameraIcon:DY,VideoCameraSlashIcon:LY,ViewColumnsIcon:PY,ViewfinderCircleIcon:OY,WalletIcon:RY,WifiIcon:zY,WindowIcon:jY,WrenchIcon:UY,WrenchScrewdriverIcon:FY,XCircleIcon:WY,XMarkIcon:qY},Symbol.toStringTag,{value:"Module"}));fe.AppBar=Qi,fe.Avatar=sh,fe.Banner=ph,fe.Base=pn,fe.Breadcrumb=fr,fe.Button=tt,fe.Card=Eo,fe.Checkbox=Ll,fe.Chip=Tl,fe.ChipGroup=tc,fe.ComponentRenderer=Fg,fe.ConfirmationModel=Uh,fe.DataTable=oc,fe.DatePicker=xs,fe.Dropdown=k9,fe.DropdownItem=y9,fe.DynamicForm=E9,fe.Examples=XN,fe.ExpansionPanel=Z9,fe.FileUpload=F9,fe.FilterSection=vs,fe.Footer=W9,fe.Form=d5,fe.HeroIcon=Xi,fe.LayoutContainer=Q9,fe.ListView=_s,fe.Main=ew,fe.Modal=bn,fe.NavDrawer=ys,fe.NavDrawerItem=Es,fe.NavigationDrawer=vw,fe.NumberField=Ew,fe.PApp=bw,fe.Pagination=nc,fe.Search=Zw,fe.Searchbar=bs,fe.Select=Dl,fe.StackedTableView=lg,fe.Tab=wg,fe.TextField=Ms,fe.Textarea=Cs,fe.Timeline=_g,fe.TimelineItem=Ig,fe.ToastContainer=zg,fe.ToastItem=As,fe.Tooltip=Dg,fe.createThemePlugin=oi,fe.default=Qd,fe.drawerOpen=Ji,fe.globalRtl=et,fe.i18nPlugin=pi,fe.setRtl=_0,fe.themes=so,fe.useTheme=i3,Object.defineProperties(fe,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})}));