nuxt-graphql-middleware 3.1.0-beta.5 → 4.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -6
- package/dist/client/200.html +7 -0
- package/dist/client/404.html +7 -0
- package/dist/client/_nuxt/_plugin-vue_export-helper.c27b6911.js +1 -0
- package/dist/client/_nuxt/entry.84652fbd.css +1 -0
- package/dist/client/_nuxt/entry.aa8d5037.js +5 -0
- package/dist/client/_nuxt/error-404.0cd4f3dd.css +1 -0
- package/dist/client/_nuxt/error-404.e238eac2.js +1 -0
- package/dist/client/_nuxt/error-500.748cb764.css +1 -0
- package/dist/client/_nuxt/error-500.c27f4368.js +1 -0
- package/dist/client/_nuxt/error-component.da006a4d.js +3 -0
- package/dist/client/_nuxt/index.3979d62c.js +2 -0
- package/dist/client/_nuxt/index.dc8fb7ec.css +1 -0
- package/dist/client/index.html +7 -0
- package/dist/module.d.ts +9 -0
- package/dist/module.json +1 -1
- package/dist/module.mjs +140 -25
- package/dist/runtime/composables/index.d.ts +7 -1
- package/dist/runtime/composables/index.mjs +25 -26
- package/dist/runtime/plugins/provideState.d.ts +5 -0
- package/dist/runtime/plugins/provideState.mjs +7 -0
- package/dist/runtime/serverHandler/debug.d.ts +2 -0
- package/dist/runtime/serverHandler/debug.mjs +49 -0
- package/dist/runtime/serverHandler/index.mjs +4 -4
- package/package.json +32 -24
package/README.md
CHANGED
|
@@ -1,36 +1,43 @@
|
|
|
1
|
-

|
|
2
2
|
|
|
3
3
|
# Nuxt GraphQL Middleware
|
|
4
4
|
|
|
5
5
|
Expose GraphQL queries and mutations as fully typed API routes.
|
|
6
6
|
|
|
7
|
-
**[Documentation](https://nuxt-graphql-middleware.dulnan.net)** –
|
|
7
|
+
**[Documentation](https://nuxt-graphql-middleware.dulnan.net)** –
|
|
8
|
+
**[npm](https://www.npmjs.com/package/nuxt-graphql-middleware)** –
|
|
9
|
+
**[Version 2.x (for Nuxt 2)](https://github.com/dulnan/nuxt-graphql-middleware/tree/2.x)**
|
|
8
10
|
|
|
9
11
|
[](https://github.com/dulnan/nuxt-graphql-middleware/actions/workflows/node.js.yml)
|
|
10
12
|
|
|
11
13
|
## Features
|
|
14
|
+
|
|
12
15
|
- Exposes each query and mutation as an API route
|
|
13
16
|
- GraphQL requests are only done on the server side
|
|
14
17
|
- No GraphQL documents in client bundle
|
|
15
18
|
- Includes composables to perform queries or mutations
|
|
16
19
|
- Modify request headers, responses and handle errors
|
|
17
20
|
- HMR for all GraphQL files
|
|
18
|
-
-
|
|
21
|
+
- Integration with [Nuxt DevTools](https://devtools.nuxtjs.org)
|
|
22
|
+
- Full TypeScript integration for schema, queries, mutations and fragments using
|
|
23
|
+
[graphql-code-generator](https://github.com/dotansimha/graphql-code-generator)
|
|
19
24
|
|
|
20
25
|
# Setup
|
|
21
26
|
|
|
22
27
|
## Install
|
|
28
|
+
|
|
23
29
|
```bash
|
|
24
30
|
npm install --save nuxt-graphql-middleware
|
|
25
31
|
```
|
|
26
32
|
|
|
27
33
|
Minimal configuration needed:
|
|
34
|
+
|
|
28
35
|
```javascript
|
|
29
36
|
export default defineNuxtConfig({
|
|
30
37
|
modules: ['nuxt-graphql-middleware'],
|
|
31
38
|
graphqlMiddleware: {
|
|
32
39
|
graphqlEndpoint: 'https://example.com/graphql',
|
|
33
|
-
}
|
|
40
|
+
},
|
|
34
41
|
})
|
|
35
42
|
```
|
|
36
43
|
|
|
@@ -61,5 +68,6 @@ result.
|
|
|
61
68
|
|
|
62
69
|
## Nuxt 2
|
|
63
70
|
|
|
64
|
-
The 3.x releases are only compatible with Nuxt 3. The
|
|
65
|
-
|
|
71
|
+
The 3.x releases are only compatible with Nuxt 3. The
|
|
72
|
+
[2.x branch](https://github.com/dulnan/nuxt-graphql-middleware/tree/2.x) and
|
|
73
|
+
releases on npm are compatible with Nuxt 2.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html >
|
|
3
|
+
<head><meta charset="utf-8">
|
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1"><link rel="modulepreload" as="script" crossorigin href="/__nuxt-graphql-middleware/_nuxt/entry.aa8d5037.js"><link rel="preload" as="style" href="/__nuxt-graphql-middleware/_nuxt/entry.84652fbd.css"><link rel="prefetch" as="script" crossorigin href="/__nuxt-graphql-middleware/_nuxt/error-component.da006a4d.js"><link rel="stylesheet" href="/__nuxt-graphql-middleware/_nuxt/entry.84652fbd.css"><script>"use strict";const w=window,de=document.documentElement,knownColorSchemes=["dark","light"],preference=window.localStorage.getItem("nuxt-color-mode")||"system";let value=preference==="system"?getColorScheme():preference;const forcedColorMode=de.getAttribute("data-color-mode-forced");forcedColorMode&&(value=forcedColorMode),addColorScheme(value),w["__NUXT_COLOR_MODE__"]={preference,value,getColorScheme,addColorScheme,removeColorScheme};function addColorScheme(e){const o=""+e+"",t="";de.classList?de.classList.add(o):de.className+=" "+o,t&&de.setAttribute("data-"+t,e)}function removeColorScheme(e){const o=""+e+"",t="";de.classList?de.classList.remove(o):de.className=de.className.replace(new RegExp(o,"g"),""),t&&de.removeAttribute("data-"+t)}function prefersColorScheme(e){return w.matchMedia("(prefers-color-scheme"+e+")")}function getColorScheme(){if(w.matchMedia&&prefersColorScheme("").media!=="not all"){for(const e of knownColorSchemes)if(prefersColorScheme(":"+e).matches)return e}return"light"}
|
|
5
|
+
</script></head>
|
|
6
|
+
<body ><div id="__nuxt"></div><script>window.__NUXT__={_errors:{},serverRendered:false,data:{},state:{},config:{public:{},app:{baseURL:"\u002F__nuxt-graphql-middleware",buildAssetsDir:"\u002F_nuxt\u002F",cdnURL:""}}}</script><script type="module" src="/__nuxt-graphql-middleware/_nuxt/entry.aa8d5037.js" crossorigin></script></body>
|
|
7
|
+
</html>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html >
|
|
3
|
+
<head><meta charset="utf-8">
|
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1"><link rel="modulepreload" as="script" crossorigin href="/__nuxt-graphql-middleware/_nuxt/entry.aa8d5037.js"><link rel="preload" as="style" href="/__nuxt-graphql-middleware/_nuxt/entry.84652fbd.css"><link rel="prefetch" as="script" crossorigin href="/__nuxt-graphql-middleware/_nuxt/error-component.da006a4d.js"><link rel="stylesheet" href="/__nuxt-graphql-middleware/_nuxt/entry.84652fbd.css"><script>"use strict";const w=window,de=document.documentElement,knownColorSchemes=["dark","light"],preference=window.localStorage.getItem("nuxt-color-mode")||"system";let value=preference==="system"?getColorScheme():preference;const forcedColorMode=de.getAttribute("data-color-mode-forced");forcedColorMode&&(value=forcedColorMode),addColorScheme(value),w["__NUXT_COLOR_MODE__"]={preference,value,getColorScheme,addColorScheme,removeColorScheme};function addColorScheme(e){const o=""+e+"",t="";de.classList?de.classList.add(o):de.className+=" "+o,t&&de.setAttribute("data-"+t,e)}function removeColorScheme(e){const o=""+e+"",t="";de.classList?de.classList.remove(o):de.className=de.className.replace(new RegExp(o,"g"),""),t&&de.removeAttribute("data-"+t)}function prefersColorScheme(e){return w.matchMedia("(prefers-color-scheme"+e+")")}function getColorScheme(){if(w.matchMedia&&prefersColorScheme("").media!=="not all"){for(const e of knownColorSchemes)if(prefersColorScheme(":"+e).matches)return e}return"light"}
|
|
5
|
+
</script></head>
|
|
6
|
+
<body ><div id="__nuxt"></div><script>window.__NUXT__={_errors:{},serverRendered:false,data:{},state:{},config:{public:{},app:{baseURL:"\u002F__nuxt-graphql-middleware",buildAssetsDir:"\u002F_nuxt\u002F",cdnURL:""}}}</script><script type="module" src="/__nuxt-graphql-middleware/_nuxt/entry.aa8d5037.js" crossorigin></script></body>
|
|
7
|
+
</html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const s=(t,r)=>{const o=t.__vccOpts||t;for(const[c,e]of r)o[c]=e;return o};export{s as _};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--nui-c-context: 125,125,125}html{background-color:#fff}html.dark{background-color:#151515;color:#fff;color-scheme:dark}*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}*,:after,:before{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 transparent;--un-ring-shadow:0 0 transparent;--un-shadow-inset: ;--un-shadow:0 0 transparent;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 transparent;--un-ring-shadow:0 0 transparent;--un-shadow-inset: ;--un-shadow:0 0 transparent;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }.carbon-chevron-down{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' display='inline-block' vertical-align='middle' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M16 22L6 12l1.4-1.4l8.6 8.6l8.6-8.6L26 12z'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;display:inline-block;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:middle;width:1.2em}.carbon-search{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' display='inline-block' vertical-align='middle' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m29 27.586l-7.552-7.552a11.018 11.018 0 1 0-1.414 1.414L27.586 29ZM4 13a9 9 0 1 1 9 9a9.01 9.01 0 0 1-9-9Z'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;display:inline-block;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:middle;width:1.2em}.n-icon{flex:none}.n-border-base{border-color:#9ca3af33}.dark .n-bg-base{--un-bg-opacity:1;background-color:rgba(21,21,21,var(--un-bg-opacity))}.n-bg-base,.n-code-block{--un-bg-opacity:1;background-color:rgba(255,255,255,var(--un-bg-opacity))}.hover\:n-bg-hover:hover{background-color:#9ca3af08}.dark .n-code-block{--un-bg-opacity:1;background-color:rgba(18,18,18,var(--un-bg-opacity))}.hover\:n-link-hover:hover{color:rgba(var(--nui-c-context),1);text-decoration-color:rgba(var(--nui-c-context),1);text-decoration-style:dotted}.n-link-base{text-decoration-color:#0003;text-decoration-line:underline;text-underline-offset:2px}.dark .n-link-base{text-decoration-color:#fff6}.focus-within\:n-focus-base:focus-within{--un-ring-width:2px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);--un-ring-color:rgba(var(--nui-c-context),.5);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow)}.n-transition{transition-duration:.15s;transition-duration:.2s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.pointer-events-none{pointer-events:none}.fixed{position:fixed}.relative{position:relative}.-bottom-1\/2{bottom:-50%}.left-0{left:0}.right-0{right:0}.z-10{z-index:10}.z-20{z-index:20}.grid{display:grid}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mb-16{margin-bottom:4rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mb3{margin-bottom:.75rem}.mb4{margin-bottom:1rem}.ml-0\.3em{margin-left:.3em}.ml-0\.4em{margin-left:.4em}.ml2{margin-left:.5rem}.mr-0\.1em{margin-right:.1em}.mt1{margin-top:.25rem}.inline-block{display:inline-block}.h-1\/2{height:50%}.h-auto{height:auto}.h-full,[h-full=""]{height:100%}.h1{height:.25rem}.h2{height:.5rem}.max-w-520px{max-width:520px}.min-h-screen{min-height:100vh}.w-full{width:100%}.flex,[flex~="~"]{display:flex}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.flex-col,[flex~=col]{flex-direction:column}.transform{transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.cursor-pointer,[cursor-pointer=""]{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.place-content-center{place-content:center}.place-self-start,[place-self-start=""]{place-self:start}.items-center,[items-center=""]{align-items:center}.justify-center{justify-content:center}.flex-gap2,.gap2,[flex~=gap2]{grid-gap:.5rem;gap:.5rem}.gap-3,[flex~=gap-3]{grid-gap:.75rem;gap:.75rem}.of-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-nowrap{white-space:nowrap}.b,.border{border-width:1px}.border-r{border-right-width:1px}[border~=b]{border-bottom-width:1px}.focus-within\:border-context:focus-within{border-color:rgba(var(--nui-c-context),1)}.border-b-gray-800{--un-border-opacity:1;--un-border-bottom-opacity:var(--un-border-opacity);border-bottom-color:rgba(31,41,55,var(--un-border-bottom-opacity))}.border-r-gray-800{--un-border-opacity:1;--un-border-right-opacity:var(--un-border-opacity);border-right-color:rgba(31,41,55,var(--un-border-right-opacity))}.rounded{border-radius:.25rem}.rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.border-none{border-style:none}.bg-black\/5{background-color:#0000000d}.bg-gray-400\:10{background-color:#9ca3af1a}.bg-green-400\:10{background-color:#4ade801a}.bg-orange-400\:10{background-color:#fb923c1a}.bg-red-900{--un-bg-opacity:1;background-color:rgba(127,29,29,var(--un-bg-opacity))}.bg-white{--un-bg-opacity:1;background-color:rgba(255,255,255,var(--un-bg-opacity))}.dark .dark\:bg-black{--un-bg-opacity:1;background-color:rgba(0,0,0,var(--un-bg-opacity))}.dark .dark\:bg-white\/10{background-color:#ffffff1a}.p-8{padding:2rem}.p2{padding:.5rem}.p3{padding:.75rem}.p4{padding:1rem}.p5{padding:1.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-4,.px4{padding-left:1rem;padding-right:1rem}.px-8{padding-left:2rem;padding-right:2rem}.px2{padding-left:.5rem;padding-right:.5rem}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-2,.py2{padding-bottom:.5rem;padding-top:.5rem}.pb6{padding-bottom:1.5rem}.pl-1{padding-left:.25rem}.pr-2{padding-right:.5rem}.pt-14{padding-top:3.5rem}.pt2{padding-top:.5rem}.text-center{text-align:center}.text-left{text-align:left}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-sans{font-family:Avenir,Helvetica,Arial,sans-serif}.text-1\.1em{font-size:1.1em}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-6xl{font-size:3.75rem;line-height:1}.text-8xl{font-size:6rem;line-height:1}.text-base,[text-base=""]{font-size:1rem;line-height:1.5rem}.text-sm,[text-sm=""]{font-size:.875rem;line-height:1.25rem}.text-xl,[text-xl=""]{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-light{font-weight:300}.font-medium{font-weight:500}.leading-tight{line-height:1.25}.dark .dark\:text-white{--un-text-opacity:1;color:rgba(255,255,255,var(--un-text-opacity))}.text-black{--un-text-opacity:1;color:rgba(0,0,0,var(--un-text-opacity))}.text-gray{--un-text-opacity:1;color:rgba(156,163,175,var(--un-text-opacity))}.text-green-400{--un-text-opacity:1;color:rgba(74,222,128,var(--un-text-opacity))}.text-orange-400{--un-text-opacity:1;color:rgba(251,146,60,var(--un-text-opacity))}.text-red-100{--un-text-opacity:1;color:rgba(254,226,226,var(--un-text-opacity))}.text-red-500{--un-text-opacity:1;color:rgba(239,68,68,var(--un-text-opacity))}.text-truegray\:50{color:#a3a3a380}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:grayscale}.op100{opacity:1}.op50,[op50=""]{opacity:.5}.op60{opacity:.6}.op75,[op75=""]{opacity:.75}.\!outline-none{outline:2px solid transparent!important;outline-offset:2px!important}.transition,[transition=""]{transition-duration:.15s;transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-500,[duration-500=""]{transition-duration:.5s}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}@media (min-width:640px){.sm\:px-0{padding-left:0;padding-right:0}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:py-3{padding-bottom:.75rem;padding-top:.75rem}.sm\:text-2xl{font-size:1.5rem;line-height:2rem}.sm\:text-4xl{font-size:2.25rem;line-height:2.5rem}.sm\:text-8xl{font-size:6rem;line-height:1}.sm\:text-xl{font-size:1.25rem;line-height:1.75rem}}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
function bs(e,t){const n=Object.create(null),r=e.split(",");for(let s=0;s<r.length;s++)n[r[s]]=!0;return t?s=>!!n[s.toLowerCase()]:s=>!!n[s]}function dr(e){if(W(e)){const t={};for(let n=0;n<e.length;n++){const r=e[n],s=fe(r)?lc(r):dr(r);if(s)for(const o in s)t[o]=s[o]}return t}else{if(fe(e))return e;if(ie(e))return e}}const sc=/;(?![^(]*\))/g,oc=/:([^]+)/,ic=/\/\*.*?\*\//gs;function lc(e){const t={};return e.replace(ic,"").split(sc).forEach(n=>{if(n){const r=n.split(oc);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}function hr(e){let t="";if(fe(e))t=e;else if(W(e))for(let n=0;n<e.length;n++){const r=hr(e[n]);r&&(t+=r+" ")}else if(ie(e))for(const n in e)e[n]&&(t+=n+" ");return t.trim()}function Mp(e){if(!e)return null;let{class:t,style:n}=e;return t&&!fe(t)&&(e.class=hr(t)),n&&(e.style=dr(n)),e}const cc="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",ac=bs(cc);function pi(e){return!!e||e===""}function uc(e,t){if(e.length!==t.length)return!1;let n=!0;for(let r=0;n&&r<e.length;r++)n=Ht(e[r],t[r]);return n}function Ht(e,t){if(e===t)return!0;let n=Xs(e),r=Xs(t);if(n||r)return n&&r?e.getTime()===t.getTime():!1;if(n=kn(e),r=kn(t),n||r)return e===t;if(n=W(e),r=W(t),n||r)return n&&r?uc(e,t):!1;if(n=ie(e),r=ie(t),n||r){if(!n||!r)return!1;const s=Object.keys(e).length,o=Object.keys(t).length;if(s!==o)return!1;for(const i in e){const l=e.hasOwnProperty(i),c=t.hasOwnProperty(i);if(l&&!c||!l&&c||!Ht(e[i],t[i]))return!1}}return String(e)===String(t)}function vs(e,t){return e.findIndex(n=>Ht(n,t))}const Ip=e=>fe(e)?e:e==null?"":W(e)||ie(e)&&(e.toString===yi||!Q(e.toString))?JSON.stringify(e,gi,2):String(e),gi=(e,t)=>t&&t.__v_isRef?gi(e,t.value):Dt(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[r,s])=>(n[`${r} =>`]=s,n),{})}:rn(t)?{[`Set(${t.size})`]:[...t.values()]}:ie(t)&&!W(t)&&!_i(t)?String(t):t,ae={},Ut=[],De=()=>{},fc=()=>!1,dc=/^on[^a-z]/,Mn=e=>dc.test(e),ws=e=>e.startsWith("onUpdate:"),be=Object.assign,Es=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},hc=Object.prototype.hasOwnProperty,te=(e,t)=>hc.call(e,t),W=Array.isArray,Dt=e=>sn(e)==="[object Map]",rn=e=>sn(e)==="[object Set]",Xs=e=>sn(e)==="[object Date]",pc=e=>sn(e)==="[object RegExp]",Q=e=>typeof e=="function",fe=e=>typeof e=="string",kn=e=>typeof e=="symbol",ie=e=>e!==null&&typeof e=="object",mi=e=>ie(e)&&Q(e.then)&&Q(e.catch),yi=Object.prototype.toString,sn=e=>yi.call(e),gc=e=>sn(e).slice(8,-1),_i=e=>sn(e)==="[object Object]",Cs=e=>fe(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,bn=bs(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),pr=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},mc=/-(\w)/g,Qe=pr(e=>e.replace(mc,(t,n)=>n?n.toUpperCase():"")),yc=/\B([A-Z])/g,on=pr(e=>e.replace(yc,"-$1").toLowerCase()),gr=pr(e=>e.charAt(0).toUpperCase()+e.slice(1)),Pr=pr(e=>e?`on${gr(e)}`:""),xn=(e,t)=>!Object.is(e,t),Kt=(e,t)=>{for(let n=0;n<e.length;n++)e[n](t)},Zn=(e,t,n)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},Gn=e=>{const t=parseFloat(e);return isNaN(t)?e:t},bi=e=>{const t=fe(e)?Number(e):NaN;return isNaN(t)?e:t};let Zs;const _c=()=>Zs||(Zs=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});let Fe;class bc{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=Fe,!t&&Fe&&(this.index=(Fe.scopes||(Fe.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=Fe;try{return Fe=this,t()}finally{Fe=n}}}on(){Fe=this}off(){Fe=this.parent}stop(t){if(this._active){let n,r;for(n=0,r=this.effects.length;n<r;n++)this.effects[n].stop();for(n=0,r=this.cleanups.length;n<r;n++)this.cleanups[n]();if(this.scopes)for(n=0,r=this.scopes.length;n<r;n++)this.scopes[n].stop(!0);if(!this.detached&&this.parent&&!t){const s=this.parent.scopes.pop();s&&s!==this&&(this.parent.scopes[this.index]=s,s.index=this.index)}this.parent=void 0,this._active=!1}}}function vc(e,t=Fe){t&&t.active&&t.effects.push(e)}function wc(){return Fe}const Rs=e=>{const t=new Set(e);return t.w=0,t.n=0,t},vi=e=>(e.w&bt)>0,wi=e=>(e.n&bt)>0,Ec=({deps:e})=>{if(e.length)for(let t=0;t<e.length;t++)e[t].w|=bt},Cc=e=>{const{deps:t}=e;if(t.length){let n=0;for(let r=0;r<t.length;r++){const s=t[r];vi(s)&&!wi(s)?s.delete(e):t[n++]=s,s.w&=~bt,s.n&=~bt}t.length=n}},er=new WeakMap;let yn=0,bt=1;const qr=30;let Be;const At=Symbol(""),Vr=Symbol("");class Ts{constructor(t,n=null,r){this.fn=t,this.scheduler=n,this.active=!0,this.deps=[],this.parent=void 0,vc(this,r)}run(){if(!this.active)return this.fn();let t=Be,n=mt;for(;t;){if(t===this)return;t=t.parent}try{return this.parent=Be,Be=this,mt=!0,bt=1<<++yn,yn<=qr?Ec(this):Gs(this),this.fn()}finally{yn<=qr&&Cc(this),bt=1<<--yn,Be=this.parent,mt=n,this.parent=void 0,this.deferStop&&this.stop()}}stop(){Be===this?this.deferStop=!0:this.active&&(Gs(this),this.onStop&&this.onStop(),this.active=!1)}}function Gs(e){const{deps:t}=e;if(t.length){for(let n=0;n<t.length;n++)t[n].delete(e);t.length=0}}let mt=!0;const Ei=[];function ln(){Ei.push(mt),mt=!1}function cn(){const e=Ei.pop();mt=e===void 0?!0:e}function Ae(e,t,n){if(mt&&Be){let r=er.get(e);r||er.set(e,r=new Map);let s=r.get(n);s||r.set(n,s=Rs()),Ci(s)}}function Ci(e,t){let n=!1;yn<=qr?wi(e)||(e.n|=bt,n=!vi(e)):n=!e.has(Be),n&&(e.add(Be),Be.deps.push(e))}function rt(e,t,n,r,s,o){const i=er.get(e);if(!i)return;let l=[];if(t==="clear")l=[...i.values()];else if(n==="length"&&W(e)){const c=Number(r);i.forEach((a,u)=>{(u==="length"||u>=c)&&l.push(a)})}else switch(n!==void 0&&l.push(i.get(n)),t){case"add":W(e)?Cs(n)&&l.push(i.get("length")):(l.push(i.get(At)),Dt(e)&&l.push(i.get(Vr)));break;case"delete":W(e)||(l.push(i.get(At)),Dt(e)&&l.push(i.get(Vr)));break;case"set":Dt(e)&&l.push(i.get(At));break}if(l.length===1)l[0]&&zr(l[0]);else{const c=[];for(const a of l)a&&c.push(...a);zr(Rs(c))}}function zr(e,t){const n=W(e)?e:[...e];for(const r of n)r.computed&&eo(r);for(const r of n)r.computed||eo(r)}function eo(e,t){(e!==Be||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}function Rc(e,t){var n;return(n=er.get(e))===null||n===void 0?void 0:n.get(t)}const Tc=bs("__proto__,__v_isRef,__isVue"),Ri=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(kn)),kc=ks(),xc=ks(!1,!0),Pc=ks(!0),to=Ac();function Ac(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const r=ne(this);for(let o=0,i=this.length;o<i;o++)Ae(r,"get",o+"");const s=r[t](...n);return s===-1||s===!1?r[t](...n.map(ne)):s}}),["push","pop","shift","unshift","splice"].forEach(t=>{e[t]=function(...n){ln();const r=ne(this)[t].apply(this,n);return cn(),r}}),e}function Sc(e){const t=ne(this);return Ae(t,"has",e),t.hasOwnProperty(e)}function ks(e=!1,t=!1){return function(r,s,o){if(s==="__v_isReactive")return!e;if(s==="__v_isReadonly")return e;if(s==="__v_isShallow")return t;if(s==="__v_raw"&&o===(e?t?Vc:Ai:t?Pi:xi).get(r))return r;const i=W(r);if(!e){if(i&&te(to,s))return Reflect.get(to,s,o);if(s==="hasOwnProperty")return Sc}const l=Reflect.get(r,s,o);return(kn(s)?Ri.has(s):Tc(s))||(e||Ae(r,"get",s),t)?l:me(l)?i&&Cs(s)?l:l.value:ie(l)?e?Si(l):We(l):l}}const Oc=Ti(),Hc=Ti(!0);function Ti(e=!1){return function(n,r,s,o){let i=n[r];if(Mt(i)&&me(i)&&!me(s))return!1;if(!e&&(!tr(s)&&!Mt(s)&&(i=ne(i),s=ne(s)),!W(n)&&me(i)&&!me(s)))return i.value=s,!0;const l=W(n)&&Cs(r)?Number(r)<n.length:te(n,r),c=Reflect.set(n,r,s,o);return n===ne(o)&&(l?xn(s,i)&&rt(n,"set",r,s):rt(n,"add",r,s)),c}}function Mc(e,t){const n=te(e,t);e[t];const r=Reflect.deleteProperty(e,t);return r&&n&&rt(e,"delete",t,void 0),r}function Ic(e,t){const n=Reflect.has(e,t);return(!kn(t)||!Ri.has(t))&&Ae(e,"has",t),n}function $c(e){return Ae(e,"iterate",W(e)?"length":At),Reflect.ownKeys(e)}const ki={get:kc,set:Oc,deleteProperty:Mc,has:Ic,ownKeys:$c},Lc={get:Pc,set(e,t){return!0},deleteProperty(e,t){return!0}},Nc=be({},ki,{get:xc,set:Hc}),xs=e=>e,mr=e=>Reflect.getPrototypeOf(e);function jn(e,t,n=!1,r=!1){e=e.__v_raw;const s=ne(e),o=ne(t);n||(t!==o&&Ae(s,"get",t),Ae(s,"get",o));const{has:i}=mr(s),l=r?xs:n?Ss:Pn;if(i.call(s,t))return l(e.get(t));if(i.call(s,o))return l(e.get(o));e!==s&&e.get(t)}function Fn(e,t=!1){const n=this.__v_raw,r=ne(n),s=ne(e);return t||(e!==s&&Ae(r,"has",e),Ae(r,"has",s)),e===s?n.has(e):n.has(e)||n.has(s)}function Bn(e,t=!1){return e=e.__v_raw,!t&&Ae(ne(e),"iterate",At),Reflect.get(e,"size",e)}function no(e){e=ne(e);const t=ne(this);return mr(t).has.call(t,e)||(t.add(e),rt(t,"add",e,e)),this}function ro(e,t){t=ne(t);const n=ne(this),{has:r,get:s}=mr(n);let o=r.call(n,e);o||(e=ne(e),o=r.call(n,e));const i=s.call(n,e);return n.set(e,t),o?xn(t,i)&&rt(n,"set",e,t):rt(n,"add",e,t),this}function so(e){const t=ne(this),{has:n,get:r}=mr(t);let s=n.call(t,e);s||(e=ne(e),s=n.call(t,e)),r&&r.call(t,e);const o=t.delete(e);return s&&rt(t,"delete",e,void 0),o}function oo(){const e=ne(this),t=e.size!==0,n=e.clear();return t&&rt(e,"clear",void 0,void 0),n}function Un(e,t){return function(r,s){const o=this,i=o.__v_raw,l=ne(i),c=t?xs:e?Ss:Pn;return!e&&Ae(l,"iterate",At),i.forEach((a,u)=>r.call(s,c(a),c(u),o))}}function Dn(e,t,n){return function(...r){const s=this.__v_raw,o=ne(s),i=Dt(o),l=e==="entries"||e===Symbol.iterator&&i,c=e==="keys"&&i,a=s[e](...r),u=n?xs:t?Ss:Pn;return!t&&Ae(o,"iterate",c?Vr:At),{next(){const{value:f,done:p}=a.next();return p?{value:f,done:p}:{value:l?[u(f[0]),u(f[1])]:u(f),done:p}},[Symbol.iterator](){return this}}}}function ct(e){return function(...t){return e==="delete"?!1:this}}function jc(){const e={get(o){return jn(this,o)},get size(){return Bn(this)},has:Fn,add:no,set:ro,delete:so,clear:oo,forEach:Un(!1,!1)},t={get(o){return jn(this,o,!1,!0)},get size(){return Bn(this)},has:Fn,add:no,set:ro,delete:so,clear:oo,forEach:Un(!1,!0)},n={get(o){return jn(this,o,!0)},get size(){return Bn(this,!0)},has(o){return Fn.call(this,o,!0)},add:ct("add"),set:ct("set"),delete:ct("delete"),clear:ct("clear"),forEach:Un(!0,!1)},r={get(o){return jn(this,o,!0,!0)},get size(){return Bn(this,!0)},has(o){return Fn.call(this,o,!0)},add:ct("add"),set:ct("set"),delete:ct("delete"),clear:ct("clear"),forEach:Un(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(o=>{e[o]=Dn(o,!1,!1),n[o]=Dn(o,!0,!1),t[o]=Dn(o,!1,!0),r[o]=Dn(o,!0,!0)}),[e,n,t,r]}const[Fc,Bc,Uc,Dc]=jc();function Ps(e,t){const n=t?e?Dc:Uc:e?Bc:Fc;return(r,s,o)=>s==="__v_isReactive"?!e:s==="__v_isReadonly"?e:s==="__v_raw"?r:Reflect.get(te(n,s)&&s in r?n:r,s,o)}const Kc={get:Ps(!1,!1)},Wc={get:Ps(!1,!0)},qc={get:Ps(!0,!1)},xi=new WeakMap,Pi=new WeakMap,Ai=new WeakMap,Vc=new WeakMap;function zc(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Jc(e){return e.__v_skip||!Object.isExtensible(e)?0:zc(gc(e))}function We(e){return Mt(e)?e:As(e,!1,ki,Kc,xi)}function Qc(e){return As(e,!1,Nc,Wc,Pi)}function Si(e){return As(e,!0,Lc,qc,Ai)}function As(e,t,n,r,s){if(!ie(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const o=s.get(e);if(o)return o;const i=Jc(e);if(i===0)return e;const l=new Proxy(e,i===2?r:n);return s.set(e,l),l}function Wt(e){return Mt(e)?Wt(e.__v_raw):!!(e&&e.__v_isReactive)}function Mt(e){return!!(e&&e.__v_isReadonly)}function tr(e){return!!(e&&e.__v_isShallow)}function Oi(e){return Wt(e)||Mt(e)}function ne(e){const t=e&&e.__v_raw;return t?ne(t):e}function Hi(e){return Zn(e,"__v_skip",!0),e}const Pn=e=>ie(e)?We(e):e,Ss=e=>ie(e)?Si(e):e;function Mi(e){mt&&Be&&(e=ne(e),Ci(e.dep||(e.dep=Rs())))}function Os(e,t){e=ne(e);const n=e.dep;n&&zr(n)}function me(e){return!!(e&&e.__v_isRef===!0)}function qt(e){return Ii(e,!1)}function Jr(e){return Ii(e,!0)}function Ii(e,t){return me(e)?e:new Yc(e,t)}class Yc{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:ne(t),this._value=n?t:Pn(t)}get value(){return Mi(this),this._value}set value(t){const n=this.__v_isShallow||tr(t)||Mt(t);t=n?t:ne(t),xn(t,this._rawValue)&&(this._rawValue=t,this._value=n?t:Pn(t),Os(this))}}function $p(e){Os(e)}function ge(e){return me(e)?e.value:e}const Xc={get:(e,t,n)=>ge(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const s=e[t];return me(s)&&!me(n)?(s.value=n,!0):Reflect.set(e,t,n,r)}};function $i(e){return Wt(e)?e:new Proxy(e,Xc)}class Zc{constructor(t,n,r){this._object=t,this._key=n,this._defaultValue=r,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return Rc(ne(this._object),this._key)}}function Li(e,t,n){const r=e[t];return me(r)?r:new Zc(e,t,n)}var Ni;class Gc{constructor(t,n,r,s){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this[Ni]=!1,this._dirty=!0,this.effect=new Ts(t,()=>{this._dirty||(this._dirty=!0,Os(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!s,this.__v_isReadonly=r}get value(){const t=ne(this);return Mi(t),(t._dirty||!t._cacheable)&&(t._dirty=!1,t._value=t.effect.run()),t._value}set value(t){this._setter(t)}}Ni="__v_isReadonly";function ea(e,t,n=!1){let r,s;const o=Q(e);return o?(r=e,s=De):(r=e.get,s=e.set),new Gc(r,s,o||!s,n)}function yt(e,t,n,r){let s;try{s=r?e(...r):e()}catch(o){an(o,t,n)}return s}function $e(e,t,n,r){if(Q(e)){const o=yt(e,t,n,r);return o&&mi(o)&&o.catch(i=>{an(i,t,n)}),o}const s=[];for(let o=0;o<e.length;o++)s.push($e(e[o],t,n,r));return s}function an(e,t,n,r=!0){const s=t?t.vnode:null;if(t){let o=t.parent;const i=t.proxy,l=n;for(;o;){const a=o.ec;if(a){for(let u=0;u<a.length;u++)if(a[u](e,i,l)===!1)return}o=o.parent}const c=t.appContext.config.errorHandler;if(c){yt(c,null,10,[e,i,l]);return}}ta(e,n,s,r)}function ta(e,t,n,r=!0){console.error(e)}let An=!1,Qr=!1;const Ee=[];let Je=0;const Vt=[];let Ge=null,kt=0;const ji=Promise.resolve();let Hs=null;function un(e){const t=Hs||ji;return e?t.then(this?e.bind(this):e):t}function na(e){let t=Je+1,n=Ee.length;for(;t<n;){const r=t+n>>>1;Sn(Ee[r])<e?t=r+1:n=r}return t}function yr(e){(!Ee.length||!Ee.includes(e,An&&e.allowRecurse?Je+1:Je))&&(e.id==null?Ee.push(e):Ee.splice(na(e.id),0,e),Fi())}function Fi(){!An&&!Qr&&(Qr=!0,Hs=ji.then(Ui))}function ra(e){const t=Ee.indexOf(e);t>Je&&Ee.splice(t,1)}function Bi(e){W(e)?Vt.push(...e):(!Ge||!Ge.includes(e,e.allowRecurse?kt+1:kt))&&Vt.push(e),Fi()}function io(e,t=An?Je+1:0){for(;t<Ee.length;t++){const n=Ee[t];n&&n.pre&&(Ee.splice(t,1),t--,n())}}function nr(e){if(Vt.length){const t=[...new Set(Vt)];if(Vt.length=0,Ge){Ge.push(...t);return}for(Ge=t,Ge.sort((n,r)=>Sn(n)-Sn(r)),kt=0;kt<Ge.length;kt++)Ge[kt]();Ge=null,kt=0}}const Sn=e=>e.id==null?1/0:e.id,sa=(e,t)=>{const n=Sn(e)-Sn(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function Ui(e){Qr=!1,An=!0,Ee.sort(sa);const t=De;try{for(Je=0;Je<Ee.length;Je++){const n=Ee[Je];n&&n.active!==!1&&yt(n,null,14)}}finally{Je=0,Ee.length=0,nr(),An=!1,Hs=null,(Ee.length||Vt.length)&&Ui()}}function oa(e,t,...n){if(e.isUnmounted)return;const r=e.vnode.props||ae;let s=n;const o=t.startsWith("update:"),i=o&&t.slice(7);if(i&&i in r){const u=`${i==="modelValue"?"model":i}Modifiers`,{number:f,trim:p}=r[u]||ae;p&&(s=n.map(y=>fe(y)?y.trim():y)),f&&(s=n.map(Gn))}let l,c=r[l=Pr(t)]||r[l=Pr(Qe(t))];!c&&o&&(c=r[l=Pr(on(t))]),c&&$e(c,e,6,s);const a=r[l+"Once"];if(a){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,$e(a,e,6,s)}}function Di(e,t,n=!1){const r=t.emitsCache,s=r.get(e);if(s!==void 0)return s;const o=e.emits;let i={},l=!1;if(!Q(e)){const c=a=>{const u=Di(a,t,!0);u&&(l=!0,be(i,u))};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!o&&!l?(ie(e)&&r.set(e,null),null):(W(o)?o.forEach(c=>i[c]=null):be(i,o),ie(e)&&r.set(e,i),i)}function _r(e,t){return!e||!Mn(t)?!1:(t=t.slice(2).replace(/Once$/,""),te(e,t[0].toLowerCase()+t.slice(1))||te(e,on(t))||te(e,t))}let _e=null,br=null;function rr(e){const t=_e;return _e=e,br=e&&e.type.__scopeId||null,t}function Lp(e){br=e}function Np(){br=null}function Ms(e,t=_e,n){if(!t||e._n)return e;const r=(...s)=>{r._d&&_o(-1);const o=rr(t);let i;try{i=e(...s)}finally{rr(o),r._d&&_o(1)}return i};return r._n=!0,r._c=!0,r._d=!0,r}function Ar(e){const{type:t,vnode:n,proxy:r,withProxy:s,props:o,propsOptions:[i],slots:l,attrs:c,emit:a,render:u,renderCache:f,data:p,setupState:y,ctx:m,inheritAttrs:w}=e;let x,_;const h=rr(e);try{if(n.shapeFlag&4){const C=s||r;x=Me(u.call(C,C,f,o,y,p,m)),_=c}else{const C=t;x=Me(C.length>1?C(o,{attrs:c,slots:l,emit:a}):C(o,null)),_=t.props?c:la(c)}}catch(C){wn.length=0,an(C,e,1),x=he(Te)}let b=x;if(_&&w!==!1){const C=Object.keys(_),{shapeFlag:A}=b;C.length&&A&7&&(i&&C.some(ws)&&(_=ca(_,i)),b=st(b,_))}return n.dirs&&(b=st(b),b.dirs=b.dirs?b.dirs.concat(n.dirs):n.dirs),n.transition&&(b.transition=n.transition),x=b,rr(h),x}function ia(e){let t;for(let n=0;n<e.length;n++){const r=e[n];if(Xt(r)){if(r.type!==Te||r.children==="v-if"){if(t)return;t=r}}else return}return t}const la=e=>{let t;for(const n in e)(n==="class"||n==="style"||Mn(n))&&((t||(t={}))[n]=e[n]);return t},ca=(e,t)=>{const n={};for(const r in e)(!ws(r)||!(r.slice(9)in t))&&(n[r]=e[r]);return n};function aa(e,t,n){const{props:r,children:s,component:o}=e,{props:i,children:l,patchFlag:c}=t,a=o.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return r?lo(r,i,a):!!i;if(c&8){const u=t.dynamicProps;for(let f=0;f<u.length;f++){const p=u[f];if(i[p]!==r[p]&&!_r(a,p))return!0}}}else return(s||l)&&(!l||!l.$stable)?!0:r===i?!1:r?i?lo(r,i,a):!0:!!i;return!1}function lo(e,t,n){const r=Object.keys(t);if(r.length!==Object.keys(e).length)return!0;for(let s=0;s<r.length;s++){const o=r[s];if(t[o]!==e[o]&&!_r(n,o))return!0}return!1}function Is({vnode:e,parent:t},n){for(;t&&t.subTree===e;)(e=t.vnode).el=n,t=t.parent}const Ki=e=>e.__isSuspense,ua={name:"Suspense",__isSuspense:!0,process(e,t,n,r,s,o,i,l,c,a){e==null?fa(t,n,r,s,o,i,l,c,a):da(e,t,n,r,s,i,l,c,a)},hydrate:ha,create:$s,normalize:pa},Wi=ua;function On(e,t){const n=e.props&&e.props[t];Q(n)&&n()}function fa(e,t,n,r,s,o,i,l,c){const{p:a,o:{createElement:u}}=c,f=u("div"),p=e.suspense=$s(e,s,r,t,f,n,o,i,l,c);a(null,p.pendingBranch=e.ssContent,f,null,r,p,o,i),p.deps>0?(On(e,"onPending"),On(e,"onFallback"),a(null,e.ssFallback,t,n,r,null,o,i),zt(p,e.ssFallback)):p.resolve()}function da(e,t,n,r,s,o,i,l,{p:c,um:a,o:{createElement:u}}){const f=t.suspense=e.suspense;f.vnode=t,t.el=e.el;const p=t.ssContent,y=t.ssFallback,{activeBranch:m,pendingBranch:w,isInFallback:x,isHydrating:_}=f;if(w)f.pendingBranch=p,Ue(p,w)?(c(w,p,f.hiddenContainer,null,s,f,o,i,l),f.deps<=0?f.resolve():x&&(c(m,y,n,r,s,null,o,i,l),zt(f,y))):(f.pendingId++,_?(f.isHydrating=!1,f.activeBranch=w):a(w,s,f),f.deps=0,f.effects.length=0,f.hiddenContainer=u("div"),x?(c(null,p,f.hiddenContainer,null,s,f,o,i,l),f.deps<=0?f.resolve():(c(m,y,n,r,s,null,o,i,l),zt(f,y))):m&&Ue(p,m)?(c(m,p,n,r,s,f,o,i,l),f.resolve(!0)):(c(null,p,f.hiddenContainer,null,s,f,o,i,l),f.deps<=0&&f.resolve()));else if(m&&Ue(p,m))c(m,p,n,r,s,f,o,i,l),zt(f,p);else if(On(t,"onPending"),f.pendingBranch=p,f.pendingId++,c(null,p,f.hiddenContainer,null,s,f,o,i,l),f.deps<=0)f.resolve();else{const{timeout:h,pendingId:b}=f;h>0?setTimeout(()=>{f.pendingId===b&&f.fallback(y)},h):h===0&&f.fallback(y)}}function $s(e,t,n,r,s,o,i,l,c,a,u=!1){const{p:f,m:p,um:y,n:m,o:{parentNode:w,remove:x}}=a,_=e.props?bi(e.props.timeout):void 0,h={vnode:e,parent:t,parentComponent:n,isSVG:i,container:r,hiddenContainer:s,anchor:o,deps:0,pendingId:0,timeout:typeof _=="number"?_:-1,activeBranch:null,pendingBranch:null,isInFallback:!0,isHydrating:u,isUnmounted:!1,effects:[],resolve(b=!1){const{vnode:C,activeBranch:A,pendingBranch:M,pendingId:N,effects:k,parentComponent:U,container:D}=h;if(h.isHydrating)h.isHydrating=!1;else if(!b){const Y=A&&M.transition&&M.transition.mode==="out-in";Y&&(A.transition.afterLeave=()=>{N===h.pendingId&&p(M,D,F,0)});let{anchor:F}=h;A&&(F=m(A),y(A,U,h,!0)),Y||p(M,D,F,0)}zt(h,M),h.pendingBranch=null,h.isInFallback=!1;let z=h.parent,L=!1;for(;z;){if(z.pendingBranch){z.effects.push(...k),L=!0;break}z=z.parent}L||Bi(k),h.effects=[],On(C,"onResolve")},fallback(b){if(!h.pendingBranch)return;const{vnode:C,activeBranch:A,parentComponent:M,container:N,isSVG:k}=h;On(C,"onFallback");const U=m(A),D=()=>{h.isInFallback&&(f(null,b,N,U,M,null,k,l,c),zt(h,b))},z=b.transition&&b.transition.mode==="out-in";z&&(A.transition.afterLeave=D),h.isInFallback=!0,y(A,M,null,!0),z||D()},move(b,C,A){h.activeBranch&&p(h.activeBranch,b,C,A),h.container=b},next(){return h.activeBranch&&m(h.activeBranch)},registerDep(b,C){const A=!!h.pendingBranch;A&&h.deps++;const M=b.vnode.el;b.asyncDep.catch(N=>{an(N,b,0)}).then(N=>{if(b.isUnmounted||h.isUnmounted||h.pendingId!==b.suspenseId)return;b.asyncResolved=!0;const{vnode:k}=b;ts(b,N,!1),M&&(k.el=M);const U=!M&&b.subTree.el;C(b,k,w(M||b.subTree.el),M?null:m(b.subTree),h,i,c),U&&x(U),Is(b,k.el),A&&--h.deps===0&&h.resolve()})},unmount(b,C){h.isUnmounted=!0,h.activeBranch&&y(h.activeBranch,n,b,C),h.pendingBranch&&y(h.pendingBranch,n,b,C)}};return h}function ha(e,t,n,r,s,o,i,l,c){const a=t.suspense=$s(t,r,n,e.parentNode,document.createElement("div"),null,s,o,i,l,!0),u=c(e,a.pendingBranch=t.ssContent,n,a,o,i);return a.deps===0&&a.resolve(),u}function pa(e){const{shapeFlag:t,children:n}=e,r=t&32;e.ssContent=co(r?n.default:n),e.ssFallback=r?co(n.fallback):he(Te)}function co(e){let t;if(Q(e)){const n=Yt&&e._c;n&&(e._d=!1,tt()),e=e(),n&&(e._d=!0,t=Ie,pl())}return W(e)&&(e=ia(e)),e=Me(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter(n=>n!==e)),e}function qi(e,t){t&&t.pendingBranch?W(e)?t.effects.push(...e):t.effects.push(e):Bi(e)}function zt(e,t){e.activeBranch=t;const{vnode:n,parentComponent:r}=e,s=n.el=t.el;r&&r.subTree===n&&(r.vnode.el=s,Is(r,s))}function Jt(e,t){if(de){let n=de.provides;const r=de.parent&&de.parent.provides;r===n&&(n=de.provides=Object.create(r)),n[e]=t}}function Oe(e,t,n=!1){const r=de||_e;if(r){const s=r.parent==null?r.vnode.appContext&&r.vnode.appContext.provides:r.parent.provides;if(s&&e in s)return s[e];if(arguments.length>1)return n&&Q(t)?t.call(r.proxy):t}}function ga(e,t){return Ls(e,null,t)}const Kn={};function _t(e,t,n){return Ls(e,t,n)}function Ls(e,t,{immediate:n,deep:r,flush:s,onTrack:o,onTrigger:i}=ae){const l=wc()===(de==null?void 0:de.scope)?de:null;let c,a=!1,u=!1;if(me(e)?(c=()=>e.value,a=tr(e)):Wt(e)?(c=()=>e,r=!0):W(e)?(u=!0,a=e.some(b=>Wt(b)||tr(b)),c=()=>e.map(b=>{if(me(b))return b.value;if(Wt(b))return Pt(b);if(Q(b))return yt(b,l,2)})):Q(e)?t?c=()=>yt(e,l,2):c=()=>{if(!(l&&l.isUnmounted))return f&&f(),$e(e,l,3,[p])}:c=De,t&&r){const b=c;c=()=>Pt(b())}let f,p=b=>{f=_.onStop=()=>{yt(b,l,4)}},y;if(Gt)if(p=De,t?n&&$e(t,l,3,[c(),u?[]:void 0,p]):c(),s==="sync"){const b=ou();y=b.__watcherHandles||(b.__watcherHandles=[])}else return De;let m=u?new Array(e.length).fill(Kn):Kn;const w=()=>{if(_.active)if(t){const b=_.run();(r||a||(u?b.some((C,A)=>xn(C,m[A])):xn(b,m)))&&(f&&f(),$e(t,l,3,[b,m===Kn?void 0:u&&m[0]===Kn?[]:m,p]),m=b)}else _.run()};w.allowRecurse=!!t;let x;s==="sync"?x=w:s==="post"?x=()=>ye(w,l&&l.suspense):(w.pre=!0,l&&(w.id=l.uid),x=()=>yr(w));const _=new Ts(c,x);t?n?w():m=_.run():s==="post"?ye(_.run.bind(_),l&&l.suspense):_.run();const h=()=>{_.stop(),l&&l.scope&&Es(l.scope.effects,_)};return y&&y.push(h),h}function ma(e,t,n){const r=this.proxy,s=fe(e)?e.includes(".")?Vi(r,e):()=>r[e]:e.bind(r,r);let o;Q(t)?o=t:(o=t.handler,n=t);const i=de;Zt(this);const l=Ls(s,o.bind(r),n);return i?Zt(i):Ot(),l}function Vi(e,t){const n=t.split(".");return()=>{let r=e;for(let s=0;s<n.length&&r;s++)r=r[n[s]];return r}}function Pt(e,t){if(!ie(e)||e.__v_skip||(t=t||new Set,t.has(e)))return e;if(t.add(e),me(e))Pt(e.value,t);else if(W(e))for(let n=0;n<e.length;n++)Pt(e[n],t);else if(rn(e)||Dt(e))e.forEach(n=>{Pt(n,t)});else if(_i(e))for(const n in e)Pt(e[n],t);return e}function ya(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return Ns(()=>{e.isMounted=!0}),wr(()=>{e.isUnmounting=!0}),e}const He=[Function,Array],_a={name:"BaseTransition",props:{mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:He,onEnter:He,onAfterEnter:He,onEnterCancelled:He,onBeforeLeave:He,onLeave:He,onAfterLeave:He,onLeaveCancelled:He,onBeforeAppear:He,onAppear:He,onAfterAppear:He,onAppearCancelled:He},setup(e,{slots:t}){const n=fn(),r=ya();let s;return()=>{const o=t.default&&Qi(t.default(),!0);if(!o||!o.length)return;let i=o[0];if(o.length>1){for(const w of o)if(w.type!==Te){i=w;break}}const l=ne(e),{mode:c}=l;if(r.isLeaving)return Sr(i);const a=ao(i);if(!a)return Sr(i);const u=Yr(a,l,r,n);sr(a,u);const f=n.subTree,p=f&&ao(f);let y=!1;const{getTransitionKey:m}=a.type;if(m){const w=m();s===void 0?s=w:w!==s&&(s=w,y=!0)}if(p&&p.type!==Te&&(!Ue(a,p)||y)){const w=Yr(p,l,r,n);if(sr(p,w),c==="out-in")return r.isLeaving=!0,w.afterLeave=()=>{r.isLeaving=!1,n.update.active!==!1&&n.update()},Sr(i);c==="in-out"&&a.type!==Te&&(w.delayLeave=(x,_,h)=>{const b=Ji(r,p);b[String(p.key)]=p,x._leaveCb=()=>{_(),x._leaveCb=void 0,delete u.delayedLeave},u.delayedLeave=h})}return i}}},zi=_a;function Ji(e,t){const{leavingVNodes:n}=e;let r=n.get(t.type);return r||(r=Object.create(null),n.set(t.type,r)),r}function Yr(e,t,n,r){const{appear:s,mode:o,persisted:i=!1,onBeforeEnter:l,onEnter:c,onAfterEnter:a,onEnterCancelled:u,onBeforeLeave:f,onLeave:p,onAfterLeave:y,onLeaveCancelled:m,onBeforeAppear:w,onAppear:x,onAfterAppear:_,onAppearCancelled:h}=t,b=String(e.key),C=Ji(n,e),A=(k,U)=>{k&&$e(k,r,9,U)},M=(k,U)=>{const D=U[1];A(k,U),W(k)?k.every(z=>z.length<=1)&&D():k.length<=1&&D()},N={mode:o,persisted:i,beforeEnter(k){let U=l;if(!n.isMounted)if(s)U=w||l;else return;k._leaveCb&&k._leaveCb(!0);const D=C[b];D&&Ue(e,D)&&D.el._leaveCb&&D.el._leaveCb(),A(U,[k])},enter(k){let U=c,D=a,z=u;if(!n.isMounted)if(s)U=x||c,D=_||a,z=h||u;else return;let L=!1;const Y=k._enterCb=F=>{L||(L=!0,F?A(z,[k]):A(D,[k]),N.delayedLeave&&N.delayedLeave(),k._enterCb=void 0)};U?M(U,[k,Y]):Y()},leave(k,U){const D=String(e.key);if(k._enterCb&&k._enterCb(!0),n.isUnmounting)return U();A(f,[k]);let z=!1;const L=k._leaveCb=Y=>{z||(z=!0,U(),Y?A(m,[k]):A(y,[k]),k._leaveCb=void 0,C[D]===e&&delete C[D])};C[D]=e,p?M(p,[k,L]):L()},clone(k){return Yr(k,t,n,r)}};return N}function Sr(e){if(In(e))return e=st(e),e.children=null,e}function ao(e){return In(e)?e.children?e.children[0]:void 0:e}function sr(e,t){e.shapeFlag&6&&e.component?sr(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Qi(e,t=!1,n){let r=[],s=0;for(let o=0;o<e.length;o++){let i=e[o];const l=n==null?i.key:String(n)+String(i.key!=null?i.key:o);i.type===Pe?(i.patchFlag&128&&s++,r=r.concat(Qi(i.children,t,l))):(t||i.type!==Te)&&r.push(l!=null?st(i,{key:l}):i)}if(s>1)for(let o=0;o<r.length;o++)r[o].patchFlag=-2;return r}function ot(e){return Q(e)?{setup:e,name:e.name}:e}const St=e=>!!e.type.__asyncLoader;function ba(e){Q(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:r,delay:s=200,timeout:o,suspensible:i=!0,onError:l}=e;let c=null,a,u=0;const f=()=>(u++,c=null,p()),p=()=>{let y;return c||(y=c=t().catch(m=>{if(m=m instanceof Error?m:new Error(String(m)),l)return new Promise((w,x)=>{l(m,()=>w(f()),()=>x(m),u+1)});throw m}).then(m=>y!==c&&c?c:(m&&(m.__esModule||m[Symbol.toStringTag]==="Module")&&(m=m.default),a=m,m)))};return ot({name:"AsyncComponentWrapper",__asyncLoader:p,get __asyncResolved(){return a},setup(){const y=de;if(a)return()=>Or(a,y);const m=h=>{c=null,an(h,y,13,!r)};if(i&&y.suspense||Gt)return p().then(h=>()=>Or(h,y)).catch(h=>(m(h),()=>r?he(r,{error:h}):null));const w=qt(!1),x=qt(),_=qt(!!s);return s&&setTimeout(()=>{_.value=!1},s),o!=null&&setTimeout(()=>{if(!w.value&&!x.value){const h=new Error(`Async component timed out after ${o}ms.`);m(h),x.value=h}},o),p().then(()=>{w.value=!0,y.parent&&In(y.parent.vnode)&&yr(y.parent.update)}).catch(h=>{m(h),x.value=h}),()=>{if(w.value&&a)return Or(a,y);if(x.value&&r)return he(r,{error:x.value});if(n&&!_.value)return he(n)}}})}function Or(e,t){const{ref:n,props:r,children:s,ce:o}=t.vnode,i=he(e,r,s);return i.ref=n,i.ce=o,delete t.vnode.ce,i}const In=e=>e.type.__isKeepAlive,va={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=fn(),r=n.ctx;if(!r.renderer)return()=>{const h=t.default&&t.default();return h&&h.length===1?h[0]:h};const s=new Map,o=new Set;let i=null;const l=n.suspense,{renderer:{p:c,m:a,um:u,o:{createElement:f}}}=r,p=f("div");r.activate=(h,b,C,A,M)=>{const N=h.component;a(h,b,C,0,l),c(N.vnode,h,b,C,N,l,A,h.slotScopeIds,M),ye(()=>{N.isDeactivated=!1,N.a&&Kt(N.a);const k=h.props&&h.props.onVnodeMounted;k&&xe(k,N.parent,h)},l)},r.deactivate=h=>{const b=h.component;a(h,p,null,1,l),ye(()=>{b.da&&Kt(b.da);const C=h.props&&h.props.onVnodeUnmounted;C&&xe(C,b.parent,h),b.isDeactivated=!0},l)};function y(h){Hr(h),u(h,n,l,!0)}function m(h){s.forEach((b,C)=>{const A=ns(b.type);A&&(!h||!h(A))&&w(C)})}function w(h){const b=s.get(h);!i||!Ue(b,i)?y(b):i&&Hr(i),s.delete(h),o.delete(h)}_t(()=>[e.include,e.exclude],([h,b])=>{h&&m(C=>_n(h,C)),b&&m(C=>!_n(b,C))},{flush:"post",deep:!0});let x=null;const _=()=>{x!=null&&s.set(x,Mr(n.subTree))};return Ns(_),Gi(_),wr(()=>{s.forEach(h=>{const{subTree:b,suspense:C}=n,A=Mr(b);if(h.type===A.type&&h.key===A.key){Hr(A);const M=A.component.da;M&&ye(M,C);return}y(h)})}),()=>{if(x=null,!t.default)return null;const h=t.default(),b=h[0];if(h.length>1)return i=null,h;if(!Xt(b)||!(b.shapeFlag&4)&&!(b.shapeFlag&128))return i=null,b;let C=Mr(b);const A=C.type,M=ns(St(C)?C.type.__asyncResolved||{}:A),{include:N,exclude:k,max:U}=e;if(N&&(!M||!_n(N,M))||k&&M&&_n(k,M))return i=C,b;const D=C.key==null?A:C.key,z=s.get(D);return C.el&&(C=st(C),b.shapeFlag&128&&(b.ssContent=C)),x=D,z?(C.el=z.el,C.component=z.component,C.transition&&sr(C,C.transition),C.shapeFlag|=512,o.delete(D),o.add(D)):(o.add(D),U&&o.size>parseInt(U,10)&&w(o.values().next().value)),C.shapeFlag|=256,i=C,Ki(b.type)?b:C}}},wa=va;function _n(e,t){return W(e)?e.some(n=>_n(n,t)):fe(e)?e.split(",").includes(t):pc(e)?e.test(t):!1}function Yi(e,t){Zi(e,"a",t)}function Xi(e,t){Zi(e,"da",t)}function Zi(e,t,n=de){const r=e.__wdc||(e.__wdc=()=>{let s=n;for(;s;){if(s.isDeactivated)return;s=s.parent}return e()});if(vr(t,r,n),n){let s=n.parent;for(;s&&s.parent;)In(s.parent.vnode)&&Ea(r,t,n,s),s=s.parent}}function Ea(e,t,n,r){const s=vr(t,e,r,!0);el(()=>{Es(r[t],s)},n)}function Hr(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function Mr(e){return e.shapeFlag&128?e.ssContent:e}function vr(e,t,n=de,r=!1){if(n){const s=n[e]||(n[e]=[]),o=t.__weh||(t.__weh=(...i)=>{if(n.isUnmounted)return;ln(),Zt(n);const l=$e(t,n,e,i);return Ot(),cn(),l});return r?s.unshift(o):s.push(o),o}}const it=e=>(t,n=de)=>(!Gt||e==="sp")&&vr(e,(...r)=>t(...r),n),Ca=it("bm"),Ns=it("m"),Ra=it("bu"),Gi=it("u"),wr=it("bum"),el=it("um"),Ta=it("sp"),ka=it("rtg"),xa=it("rtc");function tl(e,t=de){vr("ec",e,t)}function jp(e,t){const n=_e;if(n===null)return e;const r=Cr(n)||n.proxy,s=e.dirs||(e.dirs=[]);for(let o=0;o<t.length;o++){let[i,l,c,a=ae]=t[o];i&&(Q(i)&&(i={mounted:i,updated:i}),i.deep&&Pt(l),s.push({dir:i,instance:r,value:l,oldValue:void 0,arg:c,modifiers:a}))}return e}function ze(e,t,n,r){const s=e.dirs,o=t&&t.dirs;for(let i=0;i<s.length;i++){const l=s[i];o&&(l.oldValue=o[i].value);let c=l.dir[r];c&&(ln(),$e(c,n,8,[e.el,l,e,t]),cn())}}const js="components";function Fp(e,t){return rl(js,e,!0,t)||e}const nl=Symbol();function Pa(e){return fe(e)?rl(js,e,!1)||e:e||nl}function rl(e,t,n=!0,r=!1){const s=_e||de;if(s){const o=s.type;if(e===js){const l=ns(o,!1);if(l&&(l===t||l===Qe(t)||l===gr(Qe(t))))return o}const i=uo(s[e]||o[e],t)||uo(s.appContext[e],t);return!i&&r?o:i}}function uo(e,t){return e&&(e[t]||e[Qe(t)]||e[gr(Qe(t))])}function Bp(e,t,n,r){let s;const o=n&&n[r];if(W(e)||fe(e)){s=new Array(e.length);for(let i=0,l=e.length;i<l;i++)s[i]=t(e[i],i,void 0,o&&o[i])}else if(typeof e=="number"){s=new Array(e);for(let i=0;i<e;i++)s[i]=t(i+1,i,void 0,o&&o[i])}else if(ie(e))if(e[Symbol.iterator])s=Array.from(e,(i,l)=>t(i,l,void 0,o&&o[l]));else{const i=Object.keys(e);s=new Array(i.length);for(let l=0,c=i.length;l<c;l++){const a=i[l];s[l]=t(e[a],a,l,o&&o[l])}}else s=[];return n&&(n[r]=s),s}function Up(e,t,n={},r,s){if(_e.isCE||_e.parent&&St(_e.parent)&&_e.parent.isCE)return t!=="default"&&(n.name=t),he("slot",n,r&&r());let o=e[t];o&&o._c&&(o._d=!1),tt();const i=o&&sl(o(n)),l=gt(Pe,{key:n.key||i&&i.key||`_${t}`},i||(r?r():[]),i&&e._===1?64:-2);return!s&&l.scopeId&&(l.slotScopeIds=[l.scopeId+"-s"]),o&&o._c&&(o._d=!0),l}function sl(e){return e.some(t=>Xt(t)?!(t.type===Te||t.type===Pe&&!sl(t.children)):!0)?e:null}const Xr=e=>e?bl(e)?Cr(e)||e.proxy:Xr(e.parent):null,vn=be(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Xr(e.parent),$root:e=>Xr(e.root),$emit:e=>e.emit,$options:e=>Fs(e),$forceUpdate:e=>e.f||(e.f=()=>yr(e.update)),$nextTick:e=>e.n||(e.n=un.bind(e.proxy)),$watch:e=>ma.bind(e)}),Ir=(e,t)=>e!==ae&&!e.__isScriptSetup&&te(e,t),Aa={get({_:e},t){const{ctx:n,setupState:r,data:s,props:o,accessCache:i,type:l,appContext:c}=e;let a;if(t[0]!=="$"){const y=i[t];if(y!==void 0)switch(y){case 1:return r[t];case 2:return s[t];case 4:return n[t];case 3:return o[t]}else{if(Ir(r,t))return i[t]=1,r[t];if(s!==ae&&te(s,t))return i[t]=2,s[t];if((a=e.propsOptions[0])&&te(a,t))return i[t]=3,o[t];if(n!==ae&&te(n,t))return i[t]=4,n[t];Zr&&(i[t]=0)}}const u=vn[t];let f,p;if(u)return t==="$attrs"&&Ae(e,"get",t),u(e);if((f=l.__cssModules)&&(f=f[t]))return f;if(n!==ae&&te(n,t))return i[t]=4,n[t];if(p=c.config.globalProperties,te(p,t))return p[t]},set({_:e},t,n){const{data:r,setupState:s,ctx:o}=e;return Ir(s,t)?(s[t]=n,!0):r!==ae&&te(r,t)?(r[t]=n,!0):te(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(o[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:s,propsOptions:o}},i){let l;return!!n[i]||e!==ae&&te(e,i)||Ir(t,i)||(l=o[0])&&te(l,i)||te(r,i)||te(vn,i)||te(s.config.globalProperties,i)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:te(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};let Zr=!0;function Sa(e){const t=Fs(e),n=e.proxy,r=e.ctx;Zr=!1,t.beforeCreate&&fo(t.beforeCreate,e,"bc");const{data:s,computed:o,methods:i,watch:l,provide:c,inject:a,created:u,beforeMount:f,mounted:p,beforeUpdate:y,updated:m,activated:w,deactivated:x,beforeDestroy:_,beforeUnmount:h,destroyed:b,unmounted:C,render:A,renderTracked:M,renderTriggered:N,errorCaptured:k,serverPrefetch:U,expose:D,inheritAttrs:z,components:L,directives:Y,filters:F}=t;if(a&&Oa(a,r,null,e.appContext.config.unwrapInjectedRef),i)for(const le in i){const se=i[le];Q(se)&&(r[le]=se.bind(n))}if(s){const le=s.call(n,n);ie(le)&&(e.data=We(le))}if(Zr=!0,o)for(const le in o){const se=o[le],Le=Q(se)?se.bind(n,n):Q(se.get)?se.get.bind(n,n):De,wt=!Q(se)&&Q(se.set)?se.set.bind(n):De,Ne=Re({get:Le,set:wt});Object.defineProperty(r,le,{enumerable:!0,configurable:!0,get:()=>Ne.value,set:ke=>Ne.value=ke})}if(l)for(const le in l)ol(l[le],r,n,le);if(c){const le=Q(c)?c.call(n):c;Reflect.ownKeys(le).forEach(se=>{Jt(se,le[se])})}u&&fo(u,e,"c");function G(le,se){W(se)?se.forEach(Le=>le(Le.bind(n))):se&&le(se.bind(n))}if(G(Ca,f),G(Ns,p),G(Ra,y),G(Gi,m),G(Yi,w),G(Xi,x),G(tl,k),G(xa,M),G(ka,N),G(wr,h),G(el,C),G(Ta,U),W(D))if(D.length){const le=e.exposed||(e.exposed={});D.forEach(se=>{Object.defineProperty(le,se,{get:()=>n[se],set:Le=>n[se]=Le})})}else e.exposed||(e.exposed={});A&&e.render===De&&(e.render=A),z!=null&&(e.inheritAttrs=z),L&&(e.components=L),Y&&(e.directives=Y)}function Oa(e,t,n=De,r=!1){W(e)&&(e=Gr(e));for(const s in e){const o=e[s];let i;ie(o)?"default"in o?i=Oe(o.from||s,o.default,!0):i=Oe(o.from||s):i=Oe(o),me(i)&&r?Object.defineProperty(t,s,{enumerable:!0,configurable:!0,get:()=>i.value,set:l=>i.value=l}):t[s]=i}}function fo(e,t,n){$e(W(e)?e.map(r=>r.bind(t.proxy)):e.bind(t.proxy),t,n)}function ol(e,t,n,r){const s=r.includes(".")?Vi(n,r):()=>n[r];if(fe(e)){const o=t[e];Q(o)&&_t(s,o)}else if(Q(e))_t(s,e.bind(n));else if(ie(e))if(W(e))e.forEach(o=>ol(o,t,n,r));else{const o=Q(e.handler)?e.handler.bind(n):t[e.handler];Q(o)&&_t(s,o,e)}}function Fs(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:s,optionsCache:o,config:{optionMergeStrategies:i}}=e.appContext,l=o.get(t);let c;return l?c=l:!s.length&&!n&&!r?c=t:(c={},s.length&&s.forEach(a=>or(c,a,i,!0)),or(c,t,i)),ie(t)&&o.set(t,c),c}function or(e,t,n,r=!1){const{mixins:s,extends:o}=t;o&&or(e,o,n,!0),s&&s.forEach(i=>or(e,i,n,!0));for(const i in t)if(!(r&&i==="expose")){const l=Ha[i]||n&&n[i];e[i]=l?l(e[i],t[i]):t[i]}return e}const Ha={data:ho,props:Tt,emits:Tt,methods:Tt,computed:Tt,beforeCreate:Ce,created:Ce,beforeMount:Ce,mounted:Ce,beforeUpdate:Ce,updated:Ce,beforeDestroy:Ce,beforeUnmount:Ce,destroyed:Ce,unmounted:Ce,activated:Ce,deactivated:Ce,errorCaptured:Ce,serverPrefetch:Ce,components:Tt,directives:Tt,watch:Ia,provide:ho,inject:Ma};function ho(e,t){return t?e?function(){return be(Q(e)?e.call(this,this):e,Q(t)?t.call(this,this):t)}:t:e}function Ma(e,t){return Tt(Gr(e),Gr(t))}function Gr(e){if(W(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function Ce(e,t){return e?[...new Set([].concat(e,t))]:t}function Tt(e,t){return e?be(be(Object.create(null),e),t):t}function Ia(e,t){if(!e)return t;if(!t)return e;const n=be(Object.create(null),e);for(const r in t)n[r]=Ce(e[r],t[r]);return n}function $a(e,t,n,r=!1){const s={},o={};Zn(o,Er,1),e.propsDefaults=Object.create(null),il(e,t,s,o);for(const i in e.propsOptions[0])i in s||(s[i]=void 0);n?e.props=r?s:Qc(s):e.type.props?e.props=s:e.props=o,e.attrs=o}function La(e,t,n,r){const{props:s,attrs:o,vnode:{patchFlag:i}}=e,l=ne(s),[c]=e.propsOptions;let a=!1;if((r||i>0)&&!(i&16)){if(i&8){const u=e.vnode.dynamicProps;for(let f=0;f<u.length;f++){let p=u[f];if(_r(e.emitsOptions,p))continue;const y=t[p];if(c)if(te(o,p))y!==o[p]&&(o[p]=y,a=!0);else{const m=Qe(p);s[m]=es(c,l,m,y,e,!1)}else y!==o[p]&&(o[p]=y,a=!0)}}}else{il(e,t,s,o)&&(a=!0);let u;for(const f in l)(!t||!te(t,f)&&((u=on(f))===f||!te(t,u)))&&(c?n&&(n[f]!==void 0||n[u]!==void 0)&&(s[f]=es(c,l,f,void 0,e,!0)):delete s[f]);if(o!==l)for(const f in o)(!t||!te(t,f))&&(delete o[f],a=!0)}a&&rt(e,"set","$attrs")}function il(e,t,n,r){const[s,o]=e.propsOptions;let i=!1,l;if(t)for(let c in t){if(bn(c))continue;const a=t[c];let u;s&&te(s,u=Qe(c))?!o||!o.includes(u)?n[u]=a:(l||(l={}))[u]=a:_r(e.emitsOptions,c)||(!(c in r)||a!==r[c])&&(r[c]=a,i=!0)}if(o){const c=ne(n),a=l||ae;for(let u=0;u<o.length;u++){const f=o[u];n[f]=es(s,c,f,a[f],e,!te(a,f))}}return i}function es(e,t,n,r,s,o){const i=e[n];if(i!=null){const l=te(i,"default");if(l&&r===void 0){const c=i.default;if(i.type!==Function&&Q(c)){const{propsDefaults:a}=s;n in a?r=a[n]:(Zt(s),r=a[n]=c.call(null,t),Ot())}else r=c}i[0]&&(o&&!l?r=!1:i[1]&&(r===""||r===on(n))&&(r=!0))}return r}function ll(e,t,n=!1){const r=t.propsCache,s=r.get(e);if(s)return s;const o=e.props,i={},l=[];let c=!1;if(!Q(e)){const u=f=>{c=!0;const[p,y]=ll(f,t,!0);be(i,p),y&&l.push(...y)};!n&&t.mixins.length&&t.mixins.forEach(u),e.extends&&u(e.extends),e.mixins&&e.mixins.forEach(u)}if(!o&&!c)return ie(e)&&r.set(e,Ut),Ut;if(W(o))for(let u=0;u<o.length;u++){const f=Qe(o[u]);po(f)&&(i[f]=ae)}else if(o)for(const u in o){const f=Qe(u);if(po(f)){const p=o[u],y=i[f]=W(p)||Q(p)?{type:p}:Object.assign({},p);if(y){const m=yo(Boolean,y.type),w=yo(String,y.type);y[0]=m>-1,y[1]=w<0||m<w,(m>-1||te(y,"default"))&&l.push(f)}}}const a=[i,l];return ie(e)&&r.set(e,a),a}function po(e){return e[0]!=="$"}function go(e){const t=e&&e.toString().match(/^\s*(function|class) (\w+)/);return t?t[2]:e===null?"null":""}function mo(e,t){return go(e)===go(t)}function yo(e,t){return W(t)?t.findIndex(n=>mo(n,e)):Q(t)&&mo(t,e)?0:-1}const cl=e=>e[0]==="_"||e==="$stable",Bs=e=>W(e)?e.map(Me):[Me(e)],Na=(e,t,n)=>{if(t._n)return t;const r=Ms((...s)=>Bs(t(...s)),n);return r._c=!1,r},al=(e,t,n)=>{const r=e._ctx;for(const s in e){if(cl(s))continue;const o=e[s];if(Q(o))t[s]=Na(s,o,r);else if(o!=null){const i=Bs(o);t[s]=()=>i}}},ul=(e,t)=>{const n=Bs(t);e.slots.default=()=>n},ja=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=ne(t),Zn(t,"_",n)):al(t,e.slots={})}else e.slots={},t&&ul(e,t);Zn(e.slots,Er,1)},Fa=(e,t,n)=>{const{vnode:r,slots:s}=e;let o=!0,i=ae;if(r.shapeFlag&32){const l=t._;l?n&&l===1?o=!1:(be(s,t),!n&&l===1&&delete s._):(o=!t.$stable,al(t,s)),i=t}else t&&(ul(e,t),i={default:1});if(o)for(const l in s)!cl(l)&&!(l in i)&&delete s[l]};function fl(){return{app:null,config:{isNativeTag:fc,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let Ba=0;function Ua(e,t){return function(r,s=null){Q(r)||(r=Object.assign({},r)),s!=null&&!ie(s)&&(s=null);const o=fl(),i=new Set;let l=!1;const c=o.app={_uid:Ba++,_component:r,_props:s,_container:null,_context:o,_instance:null,version:wl,get config(){return o.config},set config(a){},use(a,...u){return i.has(a)||(a&&Q(a.install)?(i.add(a),a.install(c,...u)):Q(a)&&(i.add(a),a(c,...u))),c},mixin(a){return o.mixins.includes(a)||o.mixins.push(a),c},component(a,u){return u?(o.components[a]=u,c):o.components[a]},directive(a,u){return u?(o.directives[a]=u,c):o.directives[a]},mount(a,u,f){if(!l){const p=he(r,s);return p.appContext=o,u&&t?t(p,a):e(p,a,f),l=!0,c._container=a,a.__vue_app__=c,Cr(p.component)||p.component.proxy}},unmount(){l&&(e(null,c._container),delete c._container.__vue_app__)},provide(a,u){return o.provides[a]=u,c}};return c}}function ir(e,t,n,r,s=!1){if(W(e)){e.forEach((p,y)=>ir(p,t&&(W(t)?t[y]:t),n,r,s));return}if(St(r)&&!s)return;const o=r.shapeFlag&4?Cr(r.component)||r.component.proxy:r.el,i=s?null:o,{i:l,r:c}=e,a=t&&t.r,u=l.refs===ae?l.refs={}:l.refs,f=l.setupState;if(a!=null&&a!==c&&(fe(a)?(u[a]=null,te(f,a)&&(f[a]=null)):me(a)&&(a.value=null)),Q(c))yt(c,l,12,[i,u]);else{const p=fe(c),y=me(c);if(p||y){const m=()=>{if(e.f){const w=p?te(f,c)?f[c]:u[c]:c.value;s?W(w)&&Es(w,o):W(w)?w.includes(o)||w.push(o):p?(u[c]=[o],te(f,c)&&(f[c]=u[c])):(c.value=[o],e.k&&(u[e.k]=c.value))}else p?(u[c]=i,te(f,c)&&(f[c]=i)):y&&(c.value=i,e.k&&(u[e.k]=i))};i?(m.id=-1,ye(m,n)):m()}}}let at=!1;const Wn=e=>/svg/.test(e.namespaceURI)&&e.tagName!=="foreignObject",qn=e=>e.nodeType===8;function Da(e){const{mt:t,p:n,o:{patchProp:r,createText:s,nextSibling:o,parentNode:i,remove:l,insert:c,createComment:a}}=e,u=(_,h)=>{if(!h.hasChildNodes()){n(null,_,h),nr(),h._vnode=_;return}at=!1,f(h.firstChild,_,null,null,null),nr(),h._vnode=_,at&&console.error("Hydration completed but contains mismatches.")},f=(_,h,b,C,A,M=!1)=>{const N=qn(_)&&_.data==="[",k=()=>w(_,h,b,C,A,N),{type:U,ref:D,shapeFlag:z,patchFlag:L}=h;let Y=_.nodeType;h.el=_,L===-2&&(M=!1,h.dynamicChildren=null);let F=null;switch(U){case Qt:Y!==3?h.children===""?(c(h.el=s(""),i(_),_),F=_):F=k():(_.data!==h.children&&(at=!0,_.data=h.children),F=o(_));break;case Te:Y!==8||N?F=k():F=o(_);break;case Yn:if(N&&(_=o(_),Y=_.nodeType),Y===1||Y===3){F=_;const we=!h.children.length;for(let G=0;G<h.staticCount;G++)we&&(h.children+=F.nodeType===1?F.outerHTML:F.data),G===h.staticCount-1&&(h.anchor=F),F=o(F);return N?o(F):F}else k();break;case Pe:N?F=m(_,h,b,C,A,M):F=k();break;default:if(z&1)Y!==1||h.type.toLowerCase()!==_.tagName.toLowerCase()?F=k():F=p(_,h,b,C,A,M);else if(z&6){h.slotScopeIds=A;const we=i(_);if(t(h,we,null,b,C,Wn(we),M),F=N?x(_):o(_),F&&qn(F)&&F.data==="teleport end"&&(F=o(F)),St(h)){let G;N?(G=he(Pe),G.anchor=F?F.previousSibling:we.lastChild):G=_.nodeType===3?_l(""):he("div"),G.el=_,h.component.subTree=G}}else z&64?Y!==8?F=k():F=h.type.hydrate(_,h,b,C,A,M,e,y):z&128&&(F=h.type.hydrate(_,h,b,C,Wn(i(_)),A,M,e,f))}return D!=null&&ir(D,null,C,h),F},p=(_,h,b,C,A,M)=>{M=M||!!h.dynamicChildren;const{type:N,props:k,patchFlag:U,shapeFlag:D,dirs:z}=h,L=N==="input"&&z||N==="option";if(L||U!==-1){if(z&&ze(h,null,b,"created"),k)if(L||!M||U&48)for(const F in k)(L&&F.endsWith("value")||Mn(F)&&!bn(F))&&r(_,F,null,k[F],!1,void 0,b);else k.onClick&&r(_,"onClick",null,k.onClick,!1,void 0,b);let Y;if((Y=k&&k.onVnodeBeforeMount)&&xe(Y,b,h),z&&ze(h,null,b,"beforeMount"),((Y=k&&k.onVnodeMounted)||z)&&qi(()=>{Y&&xe(Y,b,h),z&&ze(h,null,b,"mounted")},C),D&16&&!(k&&(k.innerHTML||k.textContent))){let F=y(_.firstChild,h,_,b,C,A,M);for(;F;){at=!0;const we=F;F=F.nextSibling,l(we)}}else D&8&&_.textContent!==h.children&&(at=!0,_.textContent=h.children)}return _.nextSibling},y=(_,h,b,C,A,M,N)=>{N=N||!!h.dynamicChildren;const k=h.children,U=k.length;for(let D=0;D<U;D++){const z=N?k[D]:k[D]=Me(k[D]);if(_)_=f(_,z,C,A,M,N);else{if(z.type===Qt&&!z.children)continue;at=!0,n(null,z,b,null,C,A,Wn(b),M)}}return _},m=(_,h,b,C,A,M)=>{const{slotScopeIds:N}=h;N&&(A=A?A.concat(N):N);const k=i(_),U=y(o(_),h,k,b,C,A,M);return U&&qn(U)&&U.data==="]"?o(h.anchor=U):(at=!0,c(h.anchor=a("]"),k,U),U)},w=(_,h,b,C,A,M)=>{if(at=!0,h.el=null,M){const U=x(_);for(;;){const D=o(_);if(D&&D!==U)l(D);else break}}const N=o(_),k=i(_);return l(_),n(null,h,k,N,b,C,Wn(k),A),N},x=_=>{let h=0;for(;_;)if(_=o(_),_&&qn(_)&&(_.data==="["&&h++,_.data==="]")){if(h===0)return o(_);h--}return _};return[u,f]}const ye=qi;function Ka(e){return dl(e)}function Wa(e){return dl(e,Da)}function dl(e,t){const n=_c();n.__VUE__=!0;const{insert:r,remove:s,patchProp:o,createElement:i,createText:l,createComment:c,setText:a,setElementText:u,parentNode:f,nextSibling:p,setScopeId:y=De,insertStaticContent:m}=e,w=(d,g,v,E=null,T=null,O=null,$=!1,S=null,H=!!g.dynamicChildren)=>{if(d===g)return;d&&!Ue(d,g)&&(E=I(d),ke(d,T,O,!0),d=null),g.patchFlag===-2&&(H=!1,g.dynamicChildren=null);const{type:P,ref:q,shapeFlag:B}=g;switch(P){case Qt:x(d,g,v,E);break;case Te:_(d,g,v,E);break;case Yn:d==null&&h(g,v,E,$);break;case Pe:L(d,g,v,E,T,O,$,S,H);break;default:B&1?A(d,g,v,E,T,O,$,S,H):B&6?Y(d,g,v,E,T,O,$,S,H):(B&64||B&128)&&P.process(d,g,v,E,T,O,$,S,H,ee)}q!=null&&T&&ir(q,d&&d.ref,O,g||d,!g)},x=(d,g,v,E)=>{if(d==null)r(g.el=l(g.children),v,E);else{const T=g.el=d.el;g.children!==d.children&&a(T,g.children)}},_=(d,g,v,E)=>{d==null?r(g.el=c(g.children||""),v,E):g.el=d.el},h=(d,g,v,E)=>{[d.el,d.anchor]=m(d.children,g,v,E,d.el,d.anchor)},b=({el:d,anchor:g},v,E)=>{let T;for(;d&&d!==g;)T=p(d),r(d,v,E),d=T;r(g,v,E)},C=({el:d,anchor:g})=>{let v;for(;d&&d!==g;)v=p(d),s(d),d=v;s(g)},A=(d,g,v,E,T,O,$,S,H)=>{$=$||g.type==="svg",d==null?M(g,v,E,T,O,$,S,H):U(d,g,T,O,$,S,H)},M=(d,g,v,E,T,O,$,S)=>{let H,P;const{type:q,props:B,shapeFlag:V,transition:J,dirs:Z}=d;if(H=d.el=i(d.type,O,B&&B.is,B),V&8?u(H,d.children):V&16&&k(d.children,H,null,E,T,O&&q!=="foreignObject",$,S),Z&&ze(d,null,E,"created"),N(H,d,d.scopeId,$,E),B){for(const oe in B)oe!=="value"&&!bn(oe)&&o(H,oe,null,B[oe],O,d.children,E,T,j);"value"in B&&o(H,"value",null,B.value),(P=B.onVnodeBeforeMount)&&xe(P,E,d)}Z&&ze(d,null,E,"beforeMount");const ce=(!T||T&&!T.pendingBranch)&&J&&!J.persisted;ce&&J.beforeEnter(H),r(H,g,v),((P=B&&B.onVnodeMounted)||ce||Z)&&ye(()=>{P&&xe(P,E,d),ce&&J.enter(H),Z&&ze(d,null,E,"mounted")},T)},N=(d,g,v,E,T)=>{if(v&&y(d,v),E)for(let O=0;O<E.length;O++)y(d,E[O]);if(T){let O=T.subTree;if(g===O){const $=T.vnode;N(d,$,$.scopeId,$.slotScopeIds,T.parent)}}},k=(d,g,v,E,T,O,$,S,H=0)=>{for(let P=H;P<d.length;P++){const q=d[P]=S?ht(d[P]):Me(d[P]);w(null,q,g,v,E,T,O,$,S)}},U=(d,g,v,E,T,O,$)=>{const S=g.el=d.el;let{patchFlag:H,dynamicChildren:P,dirs:q}=g;H|=d.patchFlag&16;const B=d.props||ae,V=g.props||ae;let J;v&&Et(v,!1),(J=V.onVnodeBeforeUpdate)&&xe(J,v,g,d),q&&ze(g,d,v,"beforeUpdate"),v&&Et(v,!0);const Z=T&&g.type!=="foreignObject";if(P?D(d.dynamicChildren,P,S,v,E,Z,O):$||se(d,g,S,null,v,E,Z,O,!1),H>0){if(H&16)z(S,g,B,V,v,E,T);else if(H&2&&B.class!==V.class&&o(S,"class",null,V.class,T),H&4&&o(S,"style",B.style,V.style,T),H&8){const ce=g.dynamicProps;for(let oe=0;oe<ce.length;oe++){const pe=ce[oe],je=B[pe],Lt=V[pe];(Lt!==je||pe==="value")&&o(S,pe,je,Lt,T,d.children,v,E,j)}}H&1&&d.children!==g.children&&u(S,g.children)}else!$&&P==null&&z(S,g,B,V,v,E,T);((J=V.onVnodeUpdated)||q)&&ye(()=>{J&&xe(J,v,g,d),q&&ze(g,d,v,"updated")},E)},D=(d,g,v,E,T,O,$)=>{for(let S=0;S<g.length;S++){const H=d[S],P=g[S],q=H.el&&(H.type===Pe||!Ue(H,P)||H.shapeFlag&70)?f(H.el):v;w(H,P,q,null,E,T,O,$,!0)}},z=(d,g,v,E,T,O,$)=>{if(v!==E){if(v!==ae)for(const S in v)!bn(S)&&!(S in E)&&o(d,S,v[S],null,$,g.children,T,O,j);for(const S in E){if(bn(S))continue;const H=E[S],P=v[S];H!==P&&S!=="value"&&o(d,S,P,H,$,g.children,T,O,j)}"value"in E&&o(d,"value",v.value,E.value)}},L=(d,g,v,E,T,O,$,S,H)=>{const P=g.el=d?d.el:l(""),q=g.anchor=d?d.anchor:l("");let{patchFlag:B,dynamicChildren:V,slotScopeIds:J}=g;J&&(S=S?S.concat(J):J),d==null?(r(P,v,E),r(q,v,E),k(g.children,v,q,T,O,$,S,H)):B>0&&B&64&&V&&d.dynamicChildren?(D(d.dynamicChildren,V,v,T,O,$,S),(g.key!=null||T&&g===T.subTree)&&hl(d,g,!0)):se(d,g,v,q,T,O,$,S,H)},Y=(d,g,v,E,T,O,$,S,H)=>{g.slotScopeIds=S,d==null?g.shapeFlag&512?T.ctx.activate(g,v,E,$,H):F(g,v,E,T,O,$,H):we(d,g,H)},F=(d,g,v,E,T,O,$)=>{const S=d.component=Za(d,E,T);if(In(d)&&(S.ctx.renderer=ee),Ga(S),S.asyncDep){if(T&&T.registerDep(S,G),!d.el){const H=S.subTree=he(Te);_(null,H,g,v)}return}G(S,d,g,v,T,O,$)},we=(d,g,v)=>{const E=g.component=d.component;if(aa(d,g,v))if(E.asyncDep&&!E.asyncResolved){le(E,g,v);return}else E.next=g,ra(E.update),E.update();else g.el=d.el,E.vnode=g},G=(d,g,v,E,T,O,$)=>{const S=()=>{if(d.isMounted){let{next:q,bu:B,u:V,parent:J,vnode:Z}=d,ce=q,oe;Et(d,!1),q?(q.el=Z.el,le(d,q,$)):q=Z,B&&Kt(B),(oe=q.props&&q.props.onVnodeBeforeUpdate)&&xe(oe,J,q,Z),Et(d,!0);const pe=Ar(d),je=d.subTree;d.subTree=pe,w(je,pe,f(je.el),I(je),d,T,O),q.el=pe.el,ce===null&&Is(d,pe.el),V&&ye(V,T),(oe=q.props&&q.props.onVnodeUpdated)&&ye(()=>xe(oe,J,q,Z),T)}else{let q;const{el:B,props:V}=g,{bm:J,m:Z,parent:ce}=d,oe=St(g);if(Et(d,!1),J&&Kt(J),!oe&&(q=V&&V.onVnodeBeforeMount)&&xe(q,ce,g),Et(d,!0),B&&X){const pe=()=>{d.subTree=Ar(d),X(B,d.subTree,d,T,null)};oe?g.type.__asyncLoader().then(()=>!d.isUnmounted&&pe()):pe()}else{const pe=d.subTree=Ar(d);w(null,pe,v,E,d,T,O),g.el=pe.el}if(Z&&ye(Z,T),!oe&&(q=V&&V.onVnodeMounted)){const pe=g;ye(()=>xe(q,ce,pe),T)}(g.shapeFlag&256||ce&&St(ce.vnode)&&ce.vnode.shapeFlag&256)&&d.a&&ye(d.a,T),d.isMounted=!0,g=v=E=null}},H=d.effect=new Ts(S,()=>yr(P),d.scope),P=d.update=()=>H.run();P.id=d.uid,Et(d,!0),P()},le=(d,g,v)=>{g.component=d;const E=d.vnode.props;d.vnode=g,d.next=null,La(d,g.props,E,v),Fa(d,g.children,v),ln(),io(),cn()},se=(d,g,v,E,T,O,$,S,H=!1)=>{const P=d&&d.children,q=d?d.shapeFlag:0,B=g.children,{patchFlag:V,shapeFlag:J}=g;if(V>0){if(V&128){wt(P,B,v,E,T,O,$,S,H);return}else if(V&256){Le(P,B,v,E,T,O,$,S,H);return}}J&8?(q&16&&j(P,T,O),B!==P&&u(v,B)):q&16?J&16?wt(P,B,v,E,T,O,$,S,H):j(P,T,O,!0):(q&8&&u(v,""),J&16&&k(B,v,E,T,O,$,S,H))},Le=(d,g,v,E,T,O,$,S,H)=>{d=d||Ut,g=g||Ut;const P=d.length,q=g.length,B=Math.min(P,q);let V;for(V=0;V<B;V++){const J=g[V]=H?ht(g[V]):Me(g[V]);w(d[V],J,v,null,T,O,$,S,H)}P>q?j(d,T,O,!0,!1,B):k(g,v,E,T,O,$,S,H,B)},wt=(d,g,v,E,T,O,$,S,H)=>{let P=0;const q=g.length;let B=d.length-1,V=q-1;for(;P<=B&&P<=V;){const J=d[P],Z=g[P]=H?ht(g[P]):Me(g[P]);if(Ue(J,Z))w(J,Z,v,null,T,O,$,S,H);else break;P++}for(;P<=B&&P<=V;){const J=d[B],Z=g[V]=H?ht(g[V]):Me(g[V]);if(Ue(J,Z))w(J,Z,v,null,T,O,$,S,H);else break;B--,V--}if(P>B){if(P<=V){const J=V+1,Z=J<q?g[J].el:E;for(;P<=V;)w(null,g[P]=H?ht(g[P]):Me(g[P]),v,Z,T,O,$,S,H),P++}}else if(P>V)for(;P<=B;)ke(d[P],T,O,!0),P++;else{const J=P,Z=P,ce=new Map;for(P=Z;P<=V;P++){const Se=g[P]=H?ht(g[P]):Me(g[P]);Se.key!=null&&ce.set(Se.key,P)}let oe,pe=0;const je=V-Z+1;let Lt=!1,Js=0;const dn=new Array(je);for(P=0;P<je;P++)dn[P]=0;for(P=J;P<=B;P++){const Se=d[P];if(pe>=je){ke(Se,T,O,!0);continue}let Ve;if(Se.key!=null)Ve=ce.get(Se.key);else for(oe=Z;oe<=V;oe++)if(dn[oe-Z]===0&&Ue(Se,g[oe])){Ve=oe;break}Ve===void 0?ke(Se,T,O,!0):(dn[Ve-Z]=P+1,Ve>=Js?Js=Ve:Lt=!0,w(Se,g[Ve],v,null,T,O,$,S,H),pe++)}const Qs=Lt?qa(dn):Ut;for(oe=Qs.length-1,P=je-1;P>=0;P--){const Se=Z+P,Ve=g[Se],Ys=Se+1<q?g[Se+1].el:E;dn[P]===0?w(null,Ve,v,Ys,T,O,$,S,H):Lt&&(oe<0||P!==Qs[oe]?Ne(Ve,v,Ys,2):oe--)}}},Ne=(d,g,v,E,T=null)=>{const{el:O,type:$,transition:S,children:H,shapeFlag:P}=d;if(P&6){Ne(d.component.subTree,g,v,E);return}if(P&128){d.suspense.move(g,v,E);return}if(P&64){$.move(d,g,v,ee);return}if($===Pe){r(O,g,v);for(let B=0;B<H.length;B++)Ne(H[B],g,v,E);r(d.anchor,g,v);return}if($===Yn){b(d,g,v);return}if(E!==2&&P&1&&S)if(E===0)S.beforeEnter(O),r(O,g,v),ye(()=>S.enter(O),T);else{const{leave:B,delayLeave:V,afterLeave:J}=S,Z=()=>r(O,g,v),ce=()=>{B(O,()=>{Z(),J&&J()})};V?V(O,Z,ce):ce()}else r(O,g,v)},ke=(d,g,v,E=!1,T=!1)=>{const{type:O,props:$,ref:S,children:H,dynamicChildren:P,shapeFlag:q,patchFlag:B,dirs:V}=d;if(S!=null&&ir(S,null,v,d,!0),q&256){g.ctx.deactivate(d);return}const J=q&1&&V,Z=!St(d);let ce;if(Z&&(ce=$&&$.onVnodeBeforeUnmount)&&xe(ce,g,d),q&6)R(d.component,v,E);else{if(q&128){d.suspense.unmount(v,E);return}J&&ze(d,null,g,"beforeUnmount"),q&64?d.type.remove(d,g,v,T,ee,E):P&&(O!==Pe||B>0&&B&64)?j(P,g,v,!1,!0):(O===Pe&&B&384||!T&&q&16)&&j(H,g,v),E&&$t(d)}(Z&&(ce=$&&$.onVnodeUnmounted)||J)&&ye(()=>{ce&&xe(ce,g,d),J&&ze(d,null,g,"unmounted")},v)},$t=d=>{const{type:g,el:v,anchor:E,transition:T}=d;if(g===Pe){Nn(v,E);return}if(g===Yn){C(d);return}const O=()=>{s(v),T&&!T.persisted&&T.afterLeave&&T.afterLeave()};if(d.shapeFlag&1&&T&&!T.persisted){const{leave:$,delayLeave:S}=T,H=()=>$(v,O);S?S(d.el,O,H):H()}else O()},Nn=(d,g)=>{let v;for(;d!==g;)v=p(d),s(d),d=v;s(g)},R=(d,g,v)=>{const{bum:E,scope:T,update:O,subTree:$,um:S}=d;E&&Kt(E),T.stop(),O&&(O.active=!1,ke($,d,g,v)),S&&ye(S,g),ye(()=>{d.isUnmounted=!0},g),g&&g.pendingBranch&&!g.isUnmounted&&d.asyncDep&&!d.asyncResolved&&d.suspenseId===g.pendingId&&(g.deps--,g.deps===0&&g.resolve())},j=(d,g,v,E=!1,T=!1,O=0)=>{for(let $=O;$<d.length;$++)ke(d[$],g,v,E,T)},I=d=>d.shapeFlag&6?I(d.component.subTree):d.shapeFlag&128?d.suspense.next():p(d.anchor||d.el),K=(d,g,v)=>{d==null?g._vnode&&ke(g._vnode,null,null,!0):w(g._vnode||null,d,g,null,null,null,v),io(),nr(),g._vnode=d},ee={p:w,um:ke,m:Ne,r:$t,mt:F,mc:k,pc:se,pbc:D,n:I,o:e};let ue,X;return t&&([ue,X]=t(ee)),{render:K,hydrate:ue,createApp:Ua(K,ue)}}function Et({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function hl(e,t,n=!1){const r=e.children,s=t.children;if(W(r)&&W(s))for(let o=0;o<r.length;o++){const i=r[o];let l=s[o];l.shapeFlag&1&&!l.dynamicChildren&&((l.patchFlag<=0||l.patchFlag===32)&&(l=s[o]=ht(s[o]),l.el=i.el),n||hl(i,l)),l.type===Qt&&(l.el=i.el)}}function qa(e){const t=e.slice(),n=[0];let r,s,o,i,l;const c=e.length;for(r=0;r<c;r++){const a=e[r];if(a!==0){if(s=n[n.length-1],e[s]<a){t[r]=s,n.push(r);continue}for(o=0,i=n.length-1;o<i;)l=o+i>>1,e[n[l]]<a?o=l+1:i=l;a<e[n[o]]&&(o>0&&(t[r]=n[o-1]),n[o]=r)}}for(o=n.length,i=n[o-1];o-- >0;)n[o]=i,i=t[i];return n}const Va=e=>e.__isTeleport,Pe=Symbol(void 0),Qt=Symbol(void 0),Te=Symbol(void 0),Yn=Symbol(void 0),wn=[];let Ie=null;function tt(e=!1){wn.push(Ie=e?null:[])}function pl(){wn.pop(),Ie=wn[wn.length-1]||null}let Yt=1;function _o(e){Yt+=e}function gl(e){return e.dynamicChildren=Yt>0?Ie||Ut:null,pl(),Yt>0&&Ie&&Ie.push(e),e}function Dp(e,t,n,r,s,o){return gl(yl(e,t,n,r,s,o,!0))}function gt(e,t,n,r,s){return gl(he(e,t,n,r,s,!0))}function Xt(e){return e?e.__v_isVNode===!0:!1}function Ue(e,t){return e.type===t.type&&e.key===t.key}const Er="__vInternal",ml=({key:e})=>e??null,Xn=({ref:e,ref_key:t,ref_for:n})=>e!=null?fe(e)||me(e)||Q(e)?{i:_e,r:e,k:t,f:!!n}:e:null;function yl(e,t=null,n=null,r=0,s=null,o=e===Pe?0:1,i=!1,l=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&ml(t),ref:t&&Xn(t),scopeId:br,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:o,patchFlag:r,dynamicProps:s,dynamicChildren:null,appContext:null,ctx:_e};return l?(Us(c,n),o&128&&e.normalize(c)):n&&(c.shapeFlag|=fe(n)?8:16),Yt>0&&!i&&Ie&&(c.patchFlag>0||o&6)&&c.patchFlag!==32&&Ie.push(c),c}const he=za;function za(e,t=null,n=null,r=0,s=null,o=!1){if((!e||e===nl)&&(e=Te),Xt(e)){const l=st(e,t,!0);return n&&Us(l,n),Yt>0&&!o&&Ie&&(l.shapeFlag&6?Ie[Ie.indexOf(e)]=l:Ie.push(l)),l.patchFlag|=-2,l}if(ru(e)&&(e=e.__vccOpts),t){t=Ja(t);let{class:l,style:c}=t;l&&!fe(l)&&(t.class=hr(l)),ie(c)&&(Oi(c)&&!W(c)&&(c=be({},c)),t.style=dr(c))}const i=fe(e)?1:Ki(e)?128:Va(e)?64:ie(e)?4:Q(e)?2:0;return yl(e,t,n,r,s,i,o,!0)}function Ja(e){return e?Oi(e)||Er in e?be({},e):e:null}function st(e,t,n=!1){const{props:r,ref:s,patchFlag:o,children:i}=e,l=t?Qa(r||{},t):r;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:l,key:l&&ml(l),ref:t&&t.ref?n&&s?W(s)?s.concat(Xn(t)):[s,Xn(t)]:Xn(t):s,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:i,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Pe?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&st(e.ssContent),ssFallback:e.ssFallback&&st(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function _l(e=" ",t=0){return he(Qt,null,e,t)}function Kp(e="",t=!1){return t?(tt(),gt(Te,null,e)):he(Te,null,e)}function Me(e){return e==null||typeof e=="boolean"?he(Te):W(e)?he(Pe,null,e.slice()):typeof e=="object"?ht(e):he(Qt,null,String(e))}function ht(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:st(e)}function Us(e,t){let n=0;const{shapeFlag:r}=e;if(t==null)t=null;else if(W(t))n=16;else if(typeof t=="object")if(r&65){const s=t.default;s&&(s._c&&(s._d=!1),Us(e,s()),s._c&&(s._d=!0));return}else{n=32;const s=t._;!s&&!(Er in t)?t._ctx=_e:s===3&&_e&&(_e.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else Q(t)?(t={default:t,_ctx:_e},n=32):(t=String(t),r&64?(n=16,t=[_l(t)]):n=8);e.children=t,e.shapeFlag|=n}function Qa(...e){const t={};for(let n=0;n<e.length;n++){const r=e[n];for(const s in r)if(s==="class")t.class!==r.class&&(t.class=hr([t.class,r.class]));else if(s==="style")t.style=dr([t.style,r.style]);else if(Mn(s)){const o=t[s],i=r[s];i&&o!==i&&!(W(o)&&o.includes(i))&&(t[s]=o?[].concat(o,i):i)}else s!==""&&(t[s]=r[s])}return t}function xe(e,t,n,r=null){$e(e,t,7,[n,r])}const Ya=fl();let Xa=0;function Za(e,t,n){const r=e.type,s=(t?t.appContext:e.appContext)||Ya,o={uid:Xa++,vnode:e,type:r,parent:t,appContext:s,root:null,next:null,subTree:null,effect:null,update:null,scope:new bc(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(s.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:ll(r,s),emitsOptions:Di(r,s),emit:null,emitted:null,propsDefaults:ae,inheritAttrs:r.inheritAttrs,ctx:ae,data:ae,props:ae,attrs:ae,slots:ae,refs:ae,setupState:ae,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return o.ctx={_:o},o.root=t?t.root:o,o.emit=oa.bind(null,o),e.ce&&e.ce(o),o}let de=null;const fn=()=>de||_e,Zt=e=>{de=e,e.scope.on()},Ot=()=>{de&&de.scope.off(),de=null};function bl(e){return e.vnode.shapeFlag&4}let Gt=!1;function Ga(e,t=!1){Gt=t;const{props:n,children:r}=e.vnode,s=bl(e);$a(e,n,s,t),ja(e,r);const o=s?eu(e,t):void 0;return Gt=!1,o}function eu(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=Hi(new Proxy(e.ctx,Aa));const{setup:r}=n;if(r){const s=e.setupContext=r.length>1?nu(e):null;Zt(e),ln();const o=yt(r,e,0,[e.props,s]);if(cn(),Ot(),mi(o)){if(o.then(Ot,Ot),t)return o.then(i=>{ts(e,i,t)}).catch(i=>{an(i,e,0)});e.asyncDep=o}else ts(e,o,t)}else vl(e,t)}function ts(e,t,n){Q(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:ie(t)&&(e.setupState=$i(t)),vl(e,n)}let bo;function vl(e,t,n){const r=e.type;if(!e.render){if(!t&&bo&&!r.render){const s=r.template||Fs(e).template;if(s){const{isCustomElement:o,compilerOptions:i}=e.appContext.config,{delimiters:l,compilerOptions:c}=r,a=be(be({isCustomElement:o,delimiters:l},i),c);r.render=bo(s,a)}}e.render=r.render||De}Zt(e),ln(),Sa(e),cn(),Ot()}function tu(e){return new Proxy(e.attrs,{get(t,n){return Ae(e,"get","$attrs"),t[n]}})}function nu(e){const t=r=>{e.exposed=r||{}};let n;return{get attrs(){return n||(n=tu(e))},slots:e.slots,emit:e.emit,expose:t}}function Cr(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy($i(Hi(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in vn)return vn[n](e)},has(t,n){return n in t||n in vn}}))}function ns(e,t=!0){return Q(e)?e.displayName||e.name:e.name||t&&e.__name}function ru(e){return Q(e)&&"__vccOpts"in e}const Re=(e,t)=>ea(e,t,Gt);function Ke(e,t,n){const r=arguments.length;return r===2?ie(t)&&!W(t)?Xt(t)?he(e,null,[t]):he(e,t):he(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&Xt(n)&&(n=[n]),he(e,t,n))}const su=Symbol(""),ou=()=>Oe(su),wl="3.2.47",iu="http://www.w3.org/2000/svg",xt=typeof document<"u"?document:null,vo=xt&&xt.createElement("template"),lu={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const s=t?xt.createElementNS(iu,e):xt.createElement(e,n?{is:n}:void 0);return e==="select"&&r&&r.multiple!=null&&s.setAttribute("multiple",r.multiple),s},createText:e=>xt.createTextNode(e),createComment:e=>xt.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>xt.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,r,s,o){const i=n?n.previousSibling:t.lastChild;if(s&&(s===o||s.nextSibling))for(;t.insertBefore(s.cloneNode(!0),n),!(s===o||!(s=s.nextSibling)););else{vo.innerHTML=r?`<svg>${e}</svg>`:e;const l=vo.content;if(r){const c=l.firstChild;for(;c.firstChild;)l.appendChild(c.firstChild);l.removeChild(c)}t.insertBefore(l,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};function cu(e,t,n){const r=e._vtc;r&&(t=(t?[t,...r]:[...r]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}function au(e,t,n){const r=e.style,s=fe(n);if(n&&!s){if(t&&!fe(t))for(const o in t)n[o]==null&&rs(r,o,"");for(const o in n)rs(r,o,n[o])}else{const o=r.display;s?t!==n&&(r.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(r.display=o)}}const wo=/\s*!important$/;function rs(e,t,n){if(W(n))n.forEach(r=>rs(e,t,r));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const r=uu(e,t);wo.test(n)?e.setProperty(on(r),n.replace(wo,""),"important"):e[r]=n}}const Eo=["Webkit","Moz","ms"],$r={};function uu(e,t){const n=$r[t];if(n)return n;let r=Qe(t);if(r!=="filter"&&r in e)return $r[t]=r;r=gr(r);for(let s=0;s<Eo.length;s++){const o=Eo[s]+r;if(o in e)return $r[t]=o}return t}const Co="http://www.w3.org/1999/xlink";function fu(e,t,n,r,s){if(r&&t.startsWith("xlink:"))n==null?e.removeAttributeNS(Co,t.slice(6,t.length)):e.setAttributeNS(Co,t,n);else{const o=ac(t);n==null||o&&!pi(n)?e.removeAttribute(t):e.setAttribute(t,o?"":n)}}function du(e,t,n,r,s,o,i){if(t==="innerHTML"||t==="textContent"){r&&i(r,s,o),e[t]=n??"";return}if(t==="value"&&e.tagName!=="PROGRESS"&&!e.tagName.includes("-")){e._value=n;const c=n??"";(e.value!==c||e.tagName==="OPTION")&&(e.value=c),n==null&&e.removeAttribute(t);return}let l=!1;if(n===""||n==null){const c=typeof e[t];c==="boolean"?n=pi(n):n==null&&c==="string"?(n="",l=!0):c==="number"&&(n=0,l=!0)}try{e[t]=n}catch{}l&&e.removeAttribute(t)}function nt(e,t,n,r){e.addEventListener(t,n,r)}function hu(e,t,n,r){e.removeEventListener(t,n,r)}function pu(e,t,n,r,s=null){const o=e._vei||(e._vei={}),i=o[t];if(r&&i)i.value=r;else{const[l,c]=gu(t);if(r){const a=o[t]=_u(r,s);nt(e,l,a,c)}else i&&(hu(e,l,i,c),o[t]=void 0)}}const Ro=/(?:Once|Passive|Capture)$/;function gu(e){let t;if(Ro.test(e)){t={};let r;for(;r=e.match(Ro);)e=e.slice(0,e.length-r[0].length),t[r[0].toLowerCase()]=!0}return[e[2]===":"?e.slice(3):on(e.slice(2)),t]}let Lr=0;const mu=Promise.resolve(),yu=()=>Lr||(mu.then(()=>Lr=0),Lr=Date.now());function _u(e,t){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;$e(bu(r,n.value),t,5,[r])};return n.value=e,n.attached=yu(),n}function bu(e,t){if(W(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(r=>s=>!s._stopped&&r&&r(s))}else return t}const To=/^on[a-z]/,vu=(e,t,n,r,s=!1,o,i,l,c)=>{t==="class"?cu(e,r,s):t==="style"?au(e,n,r):Mn(t)?ws(t)||pu(e,t,n,r,i):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):wu(e,t,r,s))?du(e,t,r,o,i,l,c):(t==="true-value"?e._trueValue=r:t==="false-value"&&(e._falseValue=r),fu(e,t,r,s))};function wu(e,t,n,r){return r?!!(t==="innerHTML"||t==="textContent"||t in e&&To.test(t)&&Q(n)):t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA"||To.test(t)&&fe(n)?!1:t in e}const ut="transition",hn="animation",Rr=(e,{slots:t})=>Ke(zi,Eu(e),t);Rr.displayName="Transition";const El={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String};Rr.props=be({},zi.props,El);const Ct=(e,t=[])=>{W(e)?e.forEach(n=>n(...t)):e&&e(...t)},ko=e=>e?W(e)?e.some(t=>t.length>1):e.length>1:!1;function Eu(e){const t={};for(const L in e)L in El||(t[L]=e[L]);if(e.css===!1)return t;const{name:n="v",type:r,duration:s,enterFromClass:o=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:l=`${n}-enter-to`,appearFromClass:c=o,appearActiveClass:a=i,appearToClass:u=l,leaveFromClass:f=`${n}-leave-from`,leaveActiveClass:p=`${n}-leave-active`,leaveToClass:y=`${n}-leave-to`}=e,m=Cu(s),w=m&&m[0],x=m&&m[1],{onBeforeEnter:_,onEnter:h,onEnterCancelled:b,onLeave:C,onLeaveCancelled:A,onBeforeAppear:M=_,onAppear:N=h,onAppearCancelled:k=b}=t,U=(L,Y,F)=>{Rt(L,Y?u:l),Rt(L,Y?a:i),F&&F()},D=(L,Y)=>{L._isLeaving=!1,Rt(L,f),Rt(L,y),Rt(L,p),Y&&Y()},z=L=>(Y,F)=>{const we=L?N:h,G=()=>U(Y,L,F);Ct(we,[Y,G]),xo(()=>{Rt(Y,L?c:o),ft(Y,L?u:l),ko(we)||Po(Y,r,w,G)})};return be(t,{onBeforeEnter(L){Ct(_,[L]),ft(L,o),ft(L,i)},onBeforeAppear(L){Ct(M,[L]),ft(L,c),ft(L,a)},onEnter:z(!1),onAppear:z(!0),onLeave(L,Y){L._isLeaving=!0;const F=()=>D(L,Y);ft(L,f),ku(),ft(L,p),xo(()=>{L._isLeaving&&(Rt(L,f),ft(L,y),ko(C)||Po(L,r,x,F))}),Ct(C,[L,F])},onEnterCancelled(L){U(L,!1),Ct(b,[L])},onAppearCancelled(L){U(L,!0),Ct(k,[L])},onLeaveCancelled(L){D(L),Ct(A,[L])}})}function Cu(e){if(e==null)return null;if(ie(e))return[Nr(e.enter),Nr(e.leave)];{const t=Nr(e);return[t,t]}}function Nr(e){return bi(e)}function ft(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e._vtc||(e._vtc=new Set)).add(t)}function Rt(e,t){t.split(/\s+/).forEach(r=>r&&e.classList.remove(r));const{_vtc:n}=e;n&&(n.delete(t),n.size||(e._vtc=void 0))}function xo(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Ru=0;function Po(e,t,n,r){const s=e._endId=++Ru,o=()=>{s===e._endId&&r()};if(n)return setTimeout(o,n);const{type:i,timeout:l,propCount:c}=Tu(e,t);if(!i)return r();const a=i+"end";let u=0;const f=()=>{e.removeEventListener(a,p),o()},p=y=>{y.target===e&&++u>=c&&f()};setTimeout(()=>{u<c&&f()},l+1),e.addEventListener(a,p)}function Tu(e,t){const n=window.getComputedStyle(e),r=m=>(n[m]||"").split(", "),s=r(`${ut}Delay`),o=r(`${ut}Duration`),i=Ao(s,o),l=r(`${hn}Delay`),c=r(`${hn}Duration`),a=Ao(l,c);let u=null,f=0,p=0;t===ut?i>0&&(u=ut,f=i,p=o.length):t===hn?a>0&&(u=hn,f=a,p=c.length):(f=Math.max(i,a),u=f>0?i>a?ut:hn:null,p=u?u===ut?o.length:c.length:0);const y=u===ut&&/\b(transform|all)(,|$)/.test(r(`${ut}Property`).toString());return{type:u,timeout:f,propCount:p,hasTransform:y}}function Ao(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max(...t.map((n,r)=>So(n)+So(e[r])))}function So(e){return Number(e.slice(0,-1).replace(",","."))*1e3}function ku(){return document.body.offsetHeight}const vt=e=>{const t=e.props["onUpdate:modelValue"]||!1;return W(t)?n=>Kt(t,n):t};function xu(e){e.target.composing=!0}function Oo(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const Ho={created(e,{modifiers:{lazy:t,trim:n,number:r}},s){e._assign=vt(s);const o=r||s.props&&s.props.type==="number";nt(e,t?"change":"input",i=>{if(i.target.composing)return;let l=e.value;n&&(l=l.trim()),o&&(l=Gn(l)),e._assign(l)}),n&&nt(e,"change",()=>{e.value=e.value.trim()}),t||(nt(e,"compositionstart",xu),nt(e,"compositionend",Oo),nt(e,"change",Oo))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:r,number:s}},o){if(e._assign=vt(o),e.composing||document.activeElement===e&&e.type!=="range"&&(n||r&&e.value.trim()===t||(s||e.type==="number")&&Gn(e.value)===t))return;const i=t??"";e.value!==i&&(e.value=i)}},Pu={deep:!0,created(e,t,n){e._assign=vt(n),nt(e,"change",()=>{const r=e._modelValue,s=en(e),o=e.checked,i=e._assign;if(W(r)){const l=vs(r,s),c=l!==-1;if(o&&!c)i(r.concat(s));else if(!o&&c){const a=[...r];a.splice(l,1),i(a)}}else if(rn(r)){const l=new Set(r);o?l.add(s):l.delete(s),i(l)}else i(Cl(e,o))})},mounted:Mo,beforeUpdate(e,t,n){e._assign=vt(n),Mo(e,t,n)}};function Mo(e,{value:t,oldValue:n},r){e._modelValue=t,W(t)?e.checked=vs(t,r.props.value)>-1:rn(t)?e.checked=t.has(r.props.value):t!==n&&(e.checked=Ht(t,Cl(e,!0)))}const Au={created(e,{value:t},n){e.checked=Ht(t,n.props.value),e._assign=vt(n),nt(e,"change",()=>{e._assign(en(e))})},beforeUpdate(e,{value:t,oldValue:n},r){e._assign=vt(r),t!==n&&(e.checked=Ht(t,r.props.value))}},Su={deep:!0,created(e,{value:t,modifiers:{number:n}},r){const s=rn(t);nt(e,"change",()=>{const o=Array.prototype.filter.call(e.options,i=>i.selected).map(i=>n?Gn(en(i)):en(i));e._assign(e.multiple?s?new Set(o):o:o[0])}),e._assign=vt(r)},mounted(e,{value:t}){Io(e,t)},beforeUpdate(e,t,n){e._assign=vt(n)},updated(e,{value:t}){Io(e,t)}};function Io(e,t){const n=e.multiple;if(!(n&&!W(t)&&!rn(t))){for(let r=0,s=e.options.length;r<s;r++){const o=e.options[r],i=en(o);if(n)W(t)?o.selected=vs(t,i)>-1:o.selected=t.has(i);else if(Ht(en(o),t)){e.selectedIndex!==r&&(e.selectedIndex=r);return}}!n&&e.selectedIndex!==-1&&(e.selectedIndex=-1)}}function en(e){return"_value"in e?e._value:e.value}function Cl(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}const Wp={created(e,t,n){Vn(e,t,n,null,"created")},mounted(e,t,n){Vn(e,t,n,null,"mounted")},beforeUpdate(e,t,n,r){Vn(e,t,n,r,"beforeUpdate")},updated(e,t,n,r){Vn(e,t,n,r,"updated")}};function Ou(e,t){switch(e){case"SELECT":return Su;case"TEXTAREA":return Ho;default:switch(t){case"checkbox":return Pu;case"radio":return Au;default:return Ho}}}function Vn(e,t,n,r,s){const i=Ou(e.tagName,n.props&&n.props.type)[s];i&&i(e,t,n,r)}const qp={beforeMount(e,{value:t},{transition:n}){e._vod=e.style.display==="none"?"":e.style.display,n&&t?n.beforeEnter(e):pn(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:r}){!t!=!n&&(r?t?(r.beforeEnter(e),pn(e,!0),r.enter(e)):r.leave(e,()=>{pn(e,!1)}):pn(e,t))},beforeUnmount(e,{value:t}){pn(e,t)}};function pn(e,t){e.style.display=t?e._vod:"none"}const Rl=be({patchProp:vu},lu);let En,$o=!1;function Hu(){return En||(En=Ka(Rl))}function Mu(){return En=$o?En:Wa(Rl),$o=!0,En}const Iu=(...e)=>{const t=Hu().createApp(...e),{mount:n}=t;return t.mount=r=>{const s=Tl(r);if(!s)return;const o=t._component;!Q(o)&&!o.render&&!o.template&&(o.template=s.innerHTML),s.innerHTML="";const i=n(s,!1,s instanceof SVGElement);return s instanceof Element&&(s.removeAttribute("v-cloak"),s.setAttribute("data-v-app","")),i},t},$u=(...e)=>{const t=Mu().createApp(...e),{mount:n}=t;return t.mount=r=>{const s=Tl(r);if(s)return n(s,!0,s instanceof SVGElement)},t};function Tl(e){return fe(e)?document.querySelector(e):e}const Lu=/"(?:_|\\u0{2}5[Ff]){2}(?:p|\\u0{2}70)(?:r|\\u0{2}72)(?:o|\\u0{2}6[Ff])(?:t|\\u0{2}74)(?:o|\\u0{2}6[Ff])(?:_|\\u0{2}5[Ff]){2}"\s*:/,Nu=/"(?:c|\\u0063)(?:o|\\u006[Ff])(?:n|\\u006[Ee])(?:s|\\u0073)(?:t|\\u0074)(?:r|\\u0072)(?:u|\\u0075)(?:c|\\u0063)(?:t|\\u0074)(?:o|\\u006[Ff])(?:r|\\u0072)"\s*:/,ju=/^\s*["[{]|^\s*-?\d[\d.]{0,14}\s*$/;function Fu(e,t){if(e!=="__proto__"&&!(e==="constructor"&&t&&typeof t=="object"&&"prototype"in t))return t}function Bu(e,t={}){if(typeof e!="string")return e;const n=e.toLowerCase().trim();if(n==="true")return!0;if(n==="false")return!1;if(n==="null")return null;if(n==="nan")return Number.NaN;if(n==="infinity")return Number.POSITIVE_INFINITY;if(n!=="undefined"){if(!ju.test(e)){if(t.strict)throw new SyntaxError("Invalid JSON");return e}try{return Lu.test(e)||Nu.test(e)?JSON.parse(e,Fu):JSON.parse(e)}catch(r){if(t.strict)throw r;return e}}}const Uu=/#/g,Du=/&/g,Ku=/=/g,kl=/\+/g,Wu=/%5e/gi,qu=/%60/gi,Vu=/%7c/gi,zu=/%20/gi;function Ju(e){return encodeURI(""+e).replace(Vu,"|")}function ss(e){return Ju(typeof e=="string"?e:JSON.stringify(e)).replace(kl,"%2B").replace(zu,"+").replace(Uu,"%23").replace(Du,"%26").replace(qu,"`").replace(Wu,"^")}function jr(e){return ss(e).replace(Ku,"%3D")}function xl(e=""){try{return decodeURIComponent(""+e)}catch{return""+e}}function Qu(e){return xl(e.replace(kl," "))}function Yu(e=""){const t={};e[0]==="?"&&(e=e.slice(1));for(const n of e.split("&")){const r=n.match(/([^=]+)=?(.*)/)||[];if(r.length<2)continue;const s=xl(r[1]);if(s==="__proto__"||s==="constructor")continue;const o=Qu(r[2]||"");typeof t[s]<"u"?Array.isArray(t[s])?t[s].push(o):t[s]=[t[s],o]:t[s]=o}return t}function Xu(e,t){return(typeof t=="number"||typeof t=="boolean")&&(t=String(t)),t?Array.isArray(t)?t.map(n=>`${jr(e)}=${ss(n)}`).join("&"):`${jr(e)}=${ss(t)}`:jr(e)}function Zu(e){return Object.keys(e).filter(t=>e[t]!==void 0).map(t=>Xu(t,e[t])).join("&")}const Gu=/^\w{2,}:([/\\]{1,2})/,ef=/^\w{2,}:([/\\]{2})?/,tf=/^([/\\]\s*){2,}[^/\\]/;function $n(e,t={}){return typeof t=="boolean"&&(t={acceptRelative:t}),t.strict?Gu.test(e):ef.test(e)||(t.acceptRelative?tf.test(e):!1)}const nf=/\/$|\/\?/;function os(e="",t=!1){return t?nf.test(e):e.endsWith("/")}function Pl(e="",t=!1){if(!t)return(os(e)?e.slice(0,-1):e)||"/";if(!os(e,!0))return e||"/";const[n,...r]=e.split("?");return(n.slice(0,-1)||"/")+(r.length>0?`?${r.join("?")}`:"")}function rf(e="",t=!1){if(!t)return e.endsWith("/")?e:e+"/";if(os(e,!0))return e||"/";const[n,...r]=e.split("?");return n+"/"+(r.length>0?`?${r.join("?")}`:"")}function sf(e=""){return e.startsWith("/")}function of(e=""){return(sf(e)?e.slice(1):e)||"/"}function lf(e,t){if(Al(t)||$n(e))return e;const n=Pl(t);return e.startsWith(n)?e:Ln(n,e)}function Lo(e,t){if(Al(t))return e;const n=Pl(t);if(!e.startsWith(n))return e;const r=e.slice(n.length);return r[0]==="/"?r:"/"+r}function cf(e,t){const n=Tr(e),r={...Yu(n.search),...t};return n.search=Zu(r),uf(n)}function Al(e){return!e||e==="/"}function af(e){return e&&e!=="/"}function Ln(e,...t){let n=e||"";for(const r of t.filter(s=>af(s)))n=n?rf(n)+of(r):r;return n}function Tr(e="",t){if(!$n(e,{acceptRelative:!0}))return t?Tr(t+e):No(e);const[n="",r,s=""]=(e.replace(/\\/g,"/").match(/([^/:]+:)?\/\/([^/@]+@)?(.*)/)||[]).splice(1),[o="",i=""]=(s.match(/([^#/?]*)(.*)?/)||[]).splice(1),{pathname:l,search:c,hash:a}=No(i.replace(/\/(?=[A-Za-z]:)/,""));return{protocol:n,auth:r?r.slice(0,Math.max(0,r.length-1)):"",host:o,pathname:l,search:c,hash:a}}function No(e=""){const[t="",n="",r=""]=(e.match(/([^#?]*)(\?[^#]*)?(#.*)?/)||[]).splice(1);return{pathname:t,search:n,hash:r}}function uf(e){const t=e.pathname+(e.search?(e.search.startsWith("?")?"":"?")+e.search:"")+e.hash;return e.protocol?e.protocol+"//"+(e.auth?e.auth+"@":"")+e.host+t:t}class ff extends Error{constructor(){super(...arguments),this.name="FetchError"}}function df(e,t,n){let r="";t&&(r=t.message),e&&n?r=`${r} (${n.status} ${n.statusText} (${e.toString()}))`:e&&(r=`${r} (${e.toString()})`);const s=new ff(r);return Object.defineProperty(s,"request",{get(){return e}}),Object.defineProperty(s,"response",{get(){return n}}),Object.defineProperty(s,"data",{get(){return n&&n._data}}),Object.defineProperty(s,"status",{get(){return n&&n.status}}),Object.defineProperty(s,"statusText",{get(){return n&&n.statusText}}),Object.defineProperty(s,"statusCode",{get(){return n&&n.status}}),Object.defineProperty(s,"statusMessage",{get(){return n&&n.statusText}}),s}const hf=new Set(Object.freeze(["PATCH","POST","PUT","DELETE"]));function jo(e="GET"){return hf.has(e.toUpperCase())}function pf(e){if(e===void 0)return!1;const t=typeof e;return t==="string"||t==="number"||t==="boolean"||t===null?!0:t!=="object"?!1:Array.isArray(e)?!0:e.constructor&&e.constructor.name==="Object"||typeof e.toJSON=="function"}const gf=new Set(["image/svg","application/xml","application/xhtml","application/html"]),mf=/^application\/(?:[\w!#$%&*.^`~-]*\+)?json(;.+)?$/i;function yf(e=""){if(!e)return"json";const t=e.split(";").shift()||"";return mf.test(t)?"json":gf.has(t)||t.startsWith("text/")?"text":"blob"}const _f=new Set([408,409,425,429,500,502,503,504]);function Sl(e){const{fetch:t,Headers:n}=e;function r(i){const l=i.error&&i.error.name==="AbortError"||!1;if(i.options.retry!==!1&&!l){let a;typeof i.options.retry=="number"?a=i.options.retry:a=jo(i.options.method)?0:1;const u=i.response&&i.response.status||500;if(a>0&&_f.has(u))return s(i.request,{...i.options,retry:a-1})}const c=df(i.request,i.error,i.response);throw Error.captureStackTrace&&Error.captureStackTrace(c,s),c}const s=async function(l,c={}){const a={request:l,options:{...e.defaults,...c},response:void 0,error:void 0};a.options.onRequest&&await a.options.onRequest(a),typeof a.request=="string"&&(a.options.baseURL&&(a.request=lf(a.request,a.options.baseURL)),(a.options.query||a.options.params)&&(a.request=cf(a.request,{...a.options.params,...a.options.query})),a.options.body&&jo(a.options.method)&&pf(a.options.body)&&(a.options.body=typeof a.options.body=="string"?a.options.body:JSON.stringify(a.options.body),a.options.headers=new n(a.options.headers),a.options.headers.has("content-type")||a.options.headers.set("content-type","application/json"),a.options.headers.has("accept")||a.options.headers.set("accept","application/json"))),a.response=await t(a.request,a.options).catch(async f=>(a.error=f,a.options.onRequestError&&await a.options.onRequestError(a),r(a)));const u=(a.options.parseResponse?"json":a.options.responseType)||yf(a.response.headers.get("content-type")||"");if(u==="json"){const f=await a.response.text(),p=a.options.parseResponse||Bu;a.response._data=p(f)}else u==="stream"?a.response._data=a.response.body:a.response._data=await a.response[u]();return a.options.onResponse&&await a.options.onResponse(a),a.response.status>=400&&a.response.status<600?(a.options.onResponseError&&await a.options.onResponseError(a),r(a)):a.response},o=function(l,c){return s(l,c).then(a=>a._data)};return o.raw=s,o.native=t,o.create=(i={})=>Sl({...e,defaults:{...e.defaults,...i}}),o}const Ol=function(){if(typeof globalThis<"u")return globalThis;if(typeof self<"u")return self;if(typeof window<"u")return window;if(typeof global<"u")return global;throw new Error("unable to locate global object")}(),bf=Ol.fetch||(()=>Promise.reject(new Error("[ofetch] global.fetch is not supported!"))),vf=Ol.Headers,wf=Sl({fetch:bf,Headers:vf}),Ef=wf,Cf=()=>{var e;return((e=window==null?void 0:window.__NUXT__)==null?void 0:e.config)||{}},lr=Cf().app,Rf=()=>lr.baseURL,Tf=()=>lr.buildAssetsDir,kf=(...e)=>Ln(Hl(),Tf(),...e),Hl=(...e)=>{const t=lr.cdnURL||lr.baseURL;return e.length?Ln(t,...e):t};globalThis.__buildAssetsURL=kf,globalThis.__publicAssetsURL=Hl;function is(e,t={},n){for(const r in e){const s=e[r],o=n?`${n}:${r}`:r;typeof s=="object"&&s!==null?is(s,t,o):typeof s=="function"&&(t[o]=s)}return t}const xf={run:e=>e()},Pf=()=>xf,Ml=typeof console.createTask<"u"?console.createTask:Pf;function Af(e,t){const n=t.shift(),r=Ml(n);return e.reduce((s,o)=>s.then(()=>r.run(()=>o(...t))),Promise.resolve())}function Sf(e,t){const n=t.shift(),r=Ml(n);return Promise.all(e.map(s=>r.run(()=>s(...t))))}function Fr(e,t){for(const n of[...e])n(t)}class Of{constructor(){this._hooks={},this._before=void 0,this._after=void 0,this._deprecatedMessages=void 0,this._deprecatedHooks={},this.hook=this.hook.bind(this),this.callHook=this.callHook.bind(this),this.callHookWith=this.callHookWith.bind(this)}hook(t,n,r={}){if(!t||typeof n!="function")return()=>{};const s=t;let o;for(;this._deprecatedHooks[t];)o=this._deprecatedHooks[t],t=o.to;if(o&&!r.allowDeprecated){let i=o.message;i||(i=`${s} hook has been deprecated`+(o.to?`, please use ${o.to}`:"")),this._deprecatedMessages||(this._deprecatedMessages=new Set),this._deprecatedMessages.has(i)||(console.warn(i),this._deprecatedMessages.add(i))}if(!n.name)try{Object.defineProperty(n,"name",{get:()=>"_"+t.replace(/\W+/g,"_")+"_hook_cb",configurable:!0})}catch{}return this._hooks[t]=this._hooks[t]||[],this._hooks[t].push(n),()=>{n&&(this.removeHook(t,n),n=void 0)}}hookOnce(t,n){let r,s=(...o)=>(typeof r=="function"&&r(),r=void 0,s=void 0,n(...o));return r=this.hook(t,s),r}removeHook(t,n){if(this._hooks[t]){const r=this._hooks[t].indexOf(n);r!==-1&&this._hooks[t].splice(r,1),this._hooks[t].length===0&&delete this._hooks[t]}}deprecateHook(t,n){this._deprecatedHooks[t]=typeof n=="string"?{to:n}:n;const r=this._hooks[t]||[];delete this._hooks[t];for(const s of r)this.hook(t,s)}deprecateHooks(t){Object.assign(this._deprecatedHooks,t);for(const n in t)this.deprecateHook(n,t[n])}addHooks(t){const n=is(t),r=Object.keys(n).map(s=>this.hook(s,n[s]));return()=>{for(const s of r.splice(0,r.length))s()}}removeHooks(t){const n=is(t);for(const r in n)this.removeHook(r,n[r])}removeAllHooks(){for(const t in this._hooks)delete this._hooks[t]}callHook(t,...n){return n.unshift(t),this.callHookWith(Af,t,...n)}callHookParallel(t,...n){return n.unshift(t),this.callHookWith(Sf,t,...n)}callHookWith(t,n,...r){const s=this._before||this._after?{name:n,args:r,context:{}}:void 0;this._before&&Fr(this._before,s);const o=t(n in this._hooks?[...this._hooks[n]]:[],r);return o instanceof Promise?o.finally(()=>{this._after&&s&&Fr(this._after,s)}):(this._after&&s&&Fr(this._after,s),o)}beforeEach(t){return this._before=this._before||[],this._before.push(t),()=>{if(this._before!==void 0){const n=this._before.indexOf(t);n!==-1&&this._before.splice(n,1)}}}afterEach(t){return this._after=this._after||[],this._after.push(t),()=>{if(this._after!==void 0){const n=this._after.indexOf(t);n!==-1&&this._after.splice(n,1)}}}}function Il(){return new Of}function Hf(e={}){let t,n=!1;const r=i=>{if(t&&t!==i)throw new Error("Context conflict")};let s;if(e.asyncContext){const i=e.AsyncLocalStorage||globalThis.AsyncLocalStorage;i?s=new i:console.warn("[unctx] `AsyncLocalStorage` is not provided.")}const o=()=>{if(s&&t===void 0){const i=s.getStore();if(i!==void 0)return i}return t};return{use:()=>{const i=o();if(i===void 0)throw new Error("Context is not available");return i},tryUse:()=>o(),set:(i,l)=>{l||r(i),t=i,n=!0},unset:()=>{t=void 0,n=!1},call:(i,l)=>{r(i),t=i;try{return s?s.run(i,l):l()}finally{n||(t=void 0)}},async callAsync(i,l){t=i;const c=()=>{t=i},a=()=>t===i?c:void 0;ls.add(a);try{const u=s?s.run(i,l):l();return n||(t=void 0),await u}finally{ls.delete(a)}}}}function Mf(e={}){const t={};return{get(n,r={}){return t[n]||(t[n]=Hf({...e,...r})),t[n],t[n]}}}const cr=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof global<"u"?global:typeof window<"u"?window:{},Fo="__unctx__",If=cr[Fo]||(cr[Fo]=Mf()),$f=(e,t={})=>If.get(e,t),Bo="__unctx_async_handlers__",ls=cr[Bo]||(cr[Bo]=new Set);function cs(e){const t=[];for(const s of ls){const o=s();o&&t.push(o)}const n=()=>{for(const s of t)s()};let r=e();return r&&typeof r=="object"&&"catch"in r&&(r=r.catch(s=>{throw n(),s})),[r,n]}const $l=$f("nuxt-app"),Lf="__nuxt_plugin";function Nf(e){let t=0;const n={provide:void 0,globalName:"nuxt",versions:{get nuxt(){return"3.4.3"},get vue(){return n.vueApp.version}},payload:We({data:{},state:{},_errors:{},...window.__NUXT__??{}}),static:{data:{}},isHydrating:!0,deferHydration(){if(!n.isHydrating)return()=>{};t++;let o=!1;return()=>{if(!o&&(o=!0,t--,t===0))return n.isHydrating=!1,n.callHook("app:suspense:resolve")}},_asyncDataPromises:{},_asyncData:{},_payloadRevivers:{},...e};n.hooks=Il(),n.hook=n.hooks.hook,n.callHook=n.hooks.callHook,n.provide=(o,i)=>{const l="$"+o;zn(n,l,i),zn(n.vueApp.config.globalProperties,l,i)},zn(n.vueApp,"$nuxt",n),zn(n.vueApp.config.globalProperties,"$nuxt",n);{window.addEventListener("nuxt.preloadError",i=>{n.callHook("app:chunkError",{error:i.payload})});const o=n.hook("app:error",(...i)=>{console.error("[nuxt] error caught during app initialization",...i)});n.hook("app:mounted",o)}const r=We(n.payload.config),s=new Proxy(r,{get(o,i){return i in o?o[i]:o.public[i]},set(o,i,l){return i==="public"||i==="app"?!1:(o[i]=l,o.public[i]=l,!0)}});return n.provide("config",s),n}async function jf(e,t){if(typeof t!="function")return;const{provide:n}=await et(e,t,[e])||{};if(n&&typeof n=="object")for(const r in n)e.provide(r,n[r])}async function Ff(e,t){for(const n of t)await jf(e,n)}function Bf(e){const t=[];for(const n of e){if(typeof n!="function")continue;let r=n;n.length>1&&(r=s=>n(s,s.provide)),t.push(r)}return t.sort((n,r)=>{var s,o;return(((s=n.meta)==null?void 0:s.order)||ar.default)-(((o=r.meta)==null?void 0:o.order)||ar.default)}),t}const ar={pre:-20,default:0,post:20};function lt(e,t){var r;if(typeof e=="function")return lt({setup:e},t);const n=s=>{if(e.hooks&&s.hooks.addHooks(e.hooks),e.setup)return e.setup(s)};return n.meta={name:(t==null?void 0:t.name)||e.name||((r=e.setup)==null?void 0:r.name),order:(t==null?void 0:t.order)||e.order||ar[e.enforce||"default"]||ar.default},n[Lf]=!0,n}function et(e,t,n){const r=()=>n?t(...n):t();return $l.set(e),r()}function ve(){const e=$l.tryUse();if(!e){const t=fn();if(!t)throw new Error("[nuxt] instance unavailable");return t.appContext.app.$nuxt}return e}function Ds(){return ve().$config}function zn(e,t,n){Object.defineProperty(e,t,{get:()=>n})}const Uf=lt({name:"nuxt:global-components"});function Df(e){return Array.isArray(e)?e:[e]}const Ll=["title","script","style","noscript"],Nl=["base","meta","link","style","script","noscript"],Kf=["title","titleTemplate","templateParams","base","htmlAttrs","bodyAttrs","meta","link","style","script","noscript"],Wf=["base","title","titleTemplate","bodyAttrs","htmlAttrs","templateParams"],qf=["tagPosition","tagPriority","tagDuplicateStrategy","innerHTML","textContent"];function jl(e){let t=9;for(let n=0;n<e.length;)t=Math.imul(t^e.charCodeAt(n++),9**9);return((t^t>>>9)+65536).toString(16).substring(1,8).toLowerCase()}function as(e){return jl(`${e.tag}:${e.textContent||e.innerHTML||""}:${Object.entries(e.props).map(([t,n])=>`${t}:${String(n)}`).join(",")}`)}function Vf(e){let t=9;for(const n of e)for(let r=0;r<n.length;)t=Math.imul(t^n.charCodeAt(r++),9**9);return((t^t>>>9)+65536).toString(16).substring(1,8).toLowerCase()}function Fl(e,t){const{props:n,tag:r}=e;if(Wf.includes(r))return r;if(r==="link"&&n.rel==="canonical")return"canonical";if(n.charset)return"charset";const s=["id"];r==="meta"&&s.push("name","property","http-equiv");for(const o of s)if(typeof n[o]<"u"){const i=String(n[o]);return t&&!t(i)?!1:`${r}:${o}:${i}`}return!1}function Uo(e,t){return e==null?t||null:typeof e=="function"?e(t):e}function Jn(e,t=!1,n){const{tag:r,$el:s}=e;s&&(Object.entries(r.props).forEach(([o,i])=>{i=String(i);const l=`attr:${o}`;if(o==="class"){if(!i)return;for(const c of i.split(" ")){const a=`${l}:${c}`;n&&n(e,a,()=>s.classList.remove(c)),s.classList.contains(c)||s.classList.add(c)}return}n&&!o.startsWith("data-h-")&&n(e,l,()=>s.removeAttribute(o)),(t||s.getAttribute(o)!==i)&&s.setAttribute(o,i)}),Ll.includes(r.tag)&&(r.textContent&&r.textContent!==s.textContent?s.textContent=r.textContent:r.innerHTML&&r.innerHTML!==s.innerHTML&&(s.innerHTML=r.innerHTML)))}let gn=!1;async function zf(e,t={}){var p,y;const n={shouldRender:!0};if(await e.hooks.callHook("dom:beforeRender",n),!n.shouldRender)return;const r=t.document||e.resolvedOptions.document||window.document,s=(await e.resolveTags()).map(l);if(e.resolvedOptions.experimentalHashHydration&&(gn=gn||e._hash||!1,gn)){const m=Vf(s.map(w=>w.tag._h));if(gn===m)return;gn=m}const o=e._popSideEffectQueue();e.headEntries().map(m=>m._sde).forEach(m=>{Object.entries(m).forEach(([w,x])=>{o[w]=x})});const i=(m,w,x)=>{w=`${m.renderId}:${w}`,m.entry&&(m.entry._sde[w]=x),delete o[w]};function l(m){const w=e.headEntries().find(_=>_._i===m._e),x={renderId:m._d||as(m),$el:null,shouldRender:!0,tag:m,entry:w,markSideEffect:(_,h)=>i(x,_,h)};return x}const c=[],a={body:[],head:[]},u=m=>{e._elMap[m.renderId]=m.$el,c.push(m),i(m,"el",()=>{var w;(w=m.$el)==null||w.remove(),delete e._elMap[m.renderId]})};for(const m of s){if(await e.hooks.callHook("dom:beforeRenderTag",m),!m.shouldRender)continue;const{tag:w}=m;if(w.tag==="title"){r.title=w.textContent||"",c.push(m);continue}if(w.tag==="htmlAttrs"||w.tag==="bodyAttrs"){m.$el=r[w.tag==="htmlAttrs"?"documentElement":"body"],Jn(m,!1,i),c.push(m);continue}if(m.$el=e._elMap[m.renderId],!m.$el&&w.key&&(m.$el=r.querySelector(`${(p=w.tagPosition)!=null&&p.startsWith("body")?"body":"head"} > ${w.tag}[data-h-${w._h}]`)),m.$el){m.tag._d&&Jn(m),u(m);continue}a[(y=w.tagPosition)!=null&&y.startsWith("body")?"body":"head"].push(m)}const f={bodyClose:void 0,bodyOpen:void 0,head:void 0};Object.entries(a).forEach(([m,w])=>{var _;if(!w.length)return;const x=(_=r==null?void 0:r[m])==null?void 0:_.children;if(x){for(const h of[...x].reverse()){const b=h.tagName.toLowerCase();if(!Nl.includes(b))continue;const C=h.getAttributeNames().reduce((k,U)=>({...k,[U]:h.getAttribute(U)}),{}),A={tag:b,props:C};h.innerHTML&&(A.innerHTML=h.innerHTML);const M=as(A);let N=w.findIndex(k=>(k==null?void 0:k.renderId)===M);if(N===-1){const k=Fl(A);N=w.findIndex(U=>(U==null?void 0:U.tag._d)&&U.tag._d===k)}if(N!==-1){const k=w[N];k.$el=h,Jn(k),u(k),delete w[N]}}w.forEach(h=>{const b=h.tag.tagPosition||"head";f[b]=f[b]||r.createDocumentFragment(),h.$el||(h.$el=r.createElement(h.tag.tag),Jn(h,!0)),f[b].appendChild(h.$el),u(h)})}}),f.head&&r.head.appendChild(f.head),f.bodyOpen&&r.body.insertBefore(f.bodyOpen,r.body.firstChild),f.bodyClose&&r.body.appendChild(f.bodyClose);for(const m of c)await e.hooks.callHook("dom:renderTag",m);Object.values(o).forEach(m=>m())}let Br=null;async function Jf(e,t={}){function n(){return Br=null,zf(e,t)}const r=t.delayFn||(s=>setTimeout(s,10));return Br=Br||new Promise(s=>r(()=>s(n())))}function Qf(e){return{hooks:{"entries:updated":function(t){if(typeof(e==null?void 0:e.document)>"u"&&typeof window>"u")return;let n=e==null?void 0:e.delayFn;!n&&typeof requestAnimationFrame<"u"&&(n=requestAnimationFrame),Jf(t,{document:(e==null?void 0:e.document)||window.document,delayFn:n})}}}}function Yf(e){var t;return((t=e==null?void 0:e.head.querySelector('meta[name="unhead:ssr"]'))==null?void 0:t.getAttribute("content"))||!1}const Do={critical:2,high:9,low:12,base:-1,title:1,meta:10};function Ko(e){if(typeof e.tagPriority=="number")return e.tagPriority;if(e.tag==="meta"){if(e.props.charset)return-2;if(e.props["http-equiv"]==="content-security-policy")return 0}const t=e.tagPriority||e.tag;return t in Do?Do[t]:10}const Xf=[{prefix:"before:",offset:-1},{prefix:"after:",offset:1}];function Zf(){return{hooks:{"tags:resolve":e=>{const t=n=>{var r;return(r=e.tags.find(s=>s._d===n))==null?void 0:r._p};for(const{prefix:n,offset:r}of Xf)for(const s of e.tags.filter(o=>typeof o.tagPriority=="string"&&o.tagPriority.startsWith(n))){const o=t(s.tagPriority.replace(n,""));typeof o<"u"&&(s._p=o+r)}e.tags.sort((n,r)=>n._p-r._p).sort((n,r)=>Ko(n)-Ko(r))}}}}function Gf(){return{hooks:{"tags:resolve":e=>{const{tags:t}=e;let n=t.findIndex(s=>s.tag==="titleTemplate");const r=t.findIndex(s=>s.tag==="title");if(r!==-1&&n!==-1){const s=Uo(t[n].textContent,t[r].textContent);s!==null?t[r].textContent=s||t[r].textContent:delete t[r]}else if(n!==-1){const s=Uo(t[n].textContent);s!==null&&(t[n].textContent=s,t[n].tag="title",n=-1)}n!==-1&&delete t[n],e.tags=t.filter(Boolean)}}}}function ed(){return{hooks:{"tag:normalise":function({tag:e}){typeof e.props.body<"u"&&(e.tagPosition="bodyClose",delete e.props.body)}}}}const td=["link","style","script","noscript"];function nd(){return{hooks:{"tag:normalise":({tag:e,resolvedOptions:t})=>{t.experimentalHashHydration===!0&&(e._h=as(e)),e.key&&td.includes(e.tag)&&(e._h=jl(e.key),e.props[`data-h-${e._h}`]="")}}}}const Wo=["script","link","bodyAttrs"];function rd(){const e=(t,n)=>{const r={},s={};Object.entries(n.props).forEach(([i,l])=>{i.startsWith("on")&&typeof l=="function"?s[i]=l:r[i]=l});let o;return t==="dom"&&n.tag==="script"&&typeof r.src=="string"&&typeof s.onload<"u"&&(o=r.src,delete r.src),{props:r,eventHandlers:s,delayedSrc:o}};return{hooks:{"ssr:render":function(t){t.tags=t.tags.map(n=>(!Wo.includes(n.tag)||!Object.entries(n.props).find(([r,s])=>r.startsWith("on")&&typeof s=="function")||(n.props=e("ssr",n).props),n))},"dom:beforeRenderTag":function(t){if(!Wo.includes(t.tag.tag)||!Object.entries(t.tag.props).find(([o,i])=>o.startsWith("on")&&typeof i=="function"))return;const{props:n,eventHandlers:r,delayedSrc:s}=e("dom",t.tag);Object.keys(r).length&&(t.tag.props=n,t.tag._eventHandlers=r,t.tag._delayedSrc=s)},"dom:renderTag":function(t){const n=t.$el;if(!t.tag._eventHandlers||!n)return;const r=t.tag.tag==="bodyAttrs"&&typeof window<"u"?window:n;Object.entries(t.tag._eventHandlers).forEach(([s,o])=>{const i=`${t.tag._d||t.tag._p}:${s}`,l=s.slice(2).toLowerCase(),c=`data-h-${l}`;if(t.markSideEffect(i,()=>{}),n.hasAttribute(c))return;const a=o;n.setAttribute(c,""),r.addEventListener(l,a),t.entry&&(t.entry._sde[i]=()=>{r.removeEventListener(l,a),n.removeAttribute(c)})}),t.tag._delayedSrc&&n.setAttribute("src",t.tag._delayedSrc)}}}}const sd=["templateParams","htmlAttrs","bodyAttrs"];function od(){return{hooks:{"tag:normalise":function({tag:e}){["hid","vmid","key"].forEach(r=>{e.props[r]&&(e.key=e.props[r],delete e.props[r])});const n=Fl(e)||(e.key?`${e.tag}:${e.key}`:!1);n&&(e._d=n)},"tags:resolve":function(e){const t={};e.tags.forEach(r=>{const s=(r.key?`${r.tag}:${r.key}`:r._d)||r._p,o=t[s];if(o){let l=r==null?void 0:r.tagDuplicateStrategy;if(!l&&sd.includes(r.tag)&&(l="merge"),l==="merge"){const c=o.props;["class","style"].forEach(a=>{r.props[a]&&c[a]&&(a==="style"&&!c[a].endsWith(";")&&(c[a]+=";"),r.props[a]=`${c[a]} ${r.props[a]}`)}),t[s].props={...c,...r.props};return}else if(r._e===o._e){o._duped=o._duped||[],r._d=`${o._d}:${o._duped.length+1}`,o._duped.push(r);return}}const i=Object.keys(r.props).length+(r.innerHTML?1:0)+(r.textContent?1:0);if(Nl.includes(r.tag)&&i===0){delete t[s];return}t[s]=r});const n=[];Object.values(t).forEach(r=>{const s=r._duped;delete r._duped,n.push(r),s&&n.push(...s)}),e.tags=n}}}}function Qn(e,t){function n(o){if(["s","pageTitle"].includes(o))return t.pageTitle;let i;return o.includes(".")?i=o.split(".").reduce((l,c)=>l&&l[c]||void 0,t):i=t[o],typeof i<"u"?i||"":!1}let r=e;try{r=decodeURI(e)}catch{}return(r.match(/%(\w+\.+\w+)|%(\w+)/g)||[]).sort().reverse().forEach(o=>{const i=n(o.slice(1));typeof i=="string"&&(e=e.replaceAll(new RegExp(`\\${o}(\\W|$)`,"g"),`${i}$1`).trim())}),t.separator&&(e.endsWith(t.separator)&&(e=e.slice(0,-t.separator.length).trim()),e.startsWith(t.separator)&&(e=e.slice(t.separator.length).trim()),e=e.replace(new RegExp(`\\${t.separator}\\s*\\${t.separator}`,"g"),t.separator)),e}function id(){return{hooks:{"tags:resolve":e=>{var o;const{tags:t}=e,n=(o=t.find(i=>i.tag==="title"))==null?void 0:o.textContent,r=t.findIndex(i=>i.tag==="templateParams"),s=r!==-1?t[r].props:{};s.pageTitle=s.pageTitle||n||"";for(const i of t)if(["titleTemplate","title"].includes(i.tag)&&typeof i.textContent=="string")i.textContent=Qn(i.textContent,s);else if(i.tag==="meta"&&typeof i.props.content=="string")i.props.content=Qn(i.props.content,s);else if(i.tag==="link"&&typeof i.props.href=="string")i.props.href=Qn(i.props.href,s);else if(i.tag==="script"&&["application/json","application/ld+json"].includes(i.props.type)&&typeof i.innerHTML=="string")try{i.innerHTML=JSON.stringify(JSON.parse(i.innerHTML),(l,c)=>typeof c=="string"?Qn(c,s):c)}catch{}e.tags=t.filter(i=>i.tag!=="templateParams")}}}}const ld=typeof window<"u";let Bl;function cd(e){return Bl=e}function ad(){return Bl}async function ud(e,t){const n={tag:e,props:{}};return e==="templateParams"?(n.props=t,n):["title","titleTemplate"].includes(e)?(n.textContent=t instanceof Promise?await t:t,n):typeof t=="string"?["script","noscript","style"].includes(e)?(e==="script"&&(/^(https?:)?\/\//.test(t)||t.startsWith("/"))?n.props.src=t:n.innerHTML=t,n):!1:(n.props=await dd(e,{...t}),n.props.children&&(n.props.innerHTML=n.props.children),delete n.props.children,Object.keys(n.props).filter(r=>qf.includes(r)).forEach(r=>{(!["innerHTML","textContent"].includes(r)||Ll.includes(n.tag))&&(n[r]=n.props[r]),delete n.props[r]}),["innerHTML","textContent"].forEach(r=>{if(n.tag==="script"&&typeof n[r]=="string"&&["application/ld+json","application/json"].includes(n.props.type))try{n[r]=JSON.parse(n[r])}catch{n[r]=""}typeof n[r]=="object"&&(n[r]=JSON.stringify(n[r]))}),n.props.class&&(n.props.class=fd(n.props.class)),n.props.content&&Array.isArray(n.props.content)?n.props.content.map(r=>({...n,props:{...n.props,content:r}})):n)}function fd(e){return typeof e=="object"&&!Array.isArray(e)&&(e=Object.keys(e).filter(t=>e[t])),(Array.isArray(e)?e.join(" "):e).split(" ").filter(t=>t.trim()).filter(Boolean).join(" ")}async function dd(e,t){for(const n of Object.keys(t)){const r=n.startsWith("data-");t[n]instanceof Promise&&(t[n]=await t[n]),String(t[n])==="true"?t[n]=r?"true":"":String(t[n])==="false"&&(r?t[n]="false":delete t[n])}return t}const hd=10;async function pd(e){const t=[];return Object.entries(e.resolvedInput).filter(([n,r])=>typeof r<"u"&&Kf.includes(n)).forEach(([n,r])=>{const s=Df(r);t.push(...s.map(o=>ud(n,o)).flat())}),(await Promise.all(t)).flat().filter(Boolean).map((n,r)=>(n._e=e._i,n._p=(e._i<<hd)+r,n))}function gd(){return[od(),Zf(),id(),Gf(),nd(),rd(),ed()]}function md(e={}){return[Qf({document:e==null?void 0:e.document,delayFn:e==null?void 0:e.domDelayFn})]}function yd(e={}){const t=_d({...e,plugins:[...md(e),...(e==null?void 0:e.plugins)||[]]});return e.experimentalHashHydration&&t.resolvedOptions.document&&(t._hash=Yf(t.resolvedOptions.document)),cd(t),t}function _d(e={}){let t=[],n={},r=0;const s=Il();e!=null&&e.hooks&&s.addHooks(e.hooks),e.plugins=[...gd(),...(e==null?void 0:e.plugins)||[]],e.plugins.forEach(l=>l.hooks&&s.addHooks(l.hooks)),e.document=e.document||(ld?document:void 0);const o=()=>s.callHook("entries:updated",i),i={resolvedOptions:e,headEntries(){return t},get hooks(){return s},use(l){l.hooks&&s.addHooks(l.hooks)},push(l,c){const a={_i:r++,input:l,_sde:{}};return c!=null&&c.mode&&(a._m=c==null?void 0:c.mode),c!=null&&c.transform&&(a._t=c==null?void 0:c.transform),t.push(a),o(),{dispose(){t=t.filter(u=>u._i!==a._i?!0:(n={...n,...u._sde||{}},u._sde={},o(),!1))},patch(u){t=t.map(f=>(f._i===a._i&&(a.input=f.input=u,o()),f))}}},async resolveTags(){const l={tags:[],entries:[...t]};await s.callHook("entries:resolve",l);for(const c of l.entries){const a=c._t||(u=>u);if(c.resolvedInput=a(c.resolvedInput||c.input),c.resolvedInput)for(const u of await pd(c)){const f={tag:u,entry:c,resolvedOptions:i.resolvedOptions};await s.callHook("tag:normalise",f),l.tags.push(f.tag)}}return await s.callHook("tags:resolve",l),l.tags},_popSideEffectQueue(){const l={...n};return n={},l},_elMap:{}};return i.hooks.callHook("init",i),i}function bd(e){return typeof e=="function"?e():ge(e)}function ur(e,t=""){if(e instanceof Promise)return e;const n=bd(e);return!e||!n?n:Array.isArray(n)?n.map(r=>ur(r,t)):typeof n=="object"?Object.fromEntries(Object.entries(n).map(([r,s])=>r==="titleTemplate"||r.startsWith("on")?[r,ge(s)]:[r,ur(s,r)])):n}const vd=wl.startsWith("3"),wd=typeof window<"u",Ul="usehead";function Ks(){return fn()&&Oe(Ul)||ad()}function Ed(e){return{install(n){vd&&(n.config.globalProperties.$unhead=e,n.config.globalProperties.$head=e,n.provide(Ul,e))}}.install}function Cd(e={}){const t=yd({...e,domDelayFn:n=>setTimeout(()=>un(()=>n()),10),plugins:[Rd(),...(e==null?void 0:e.plugins)||[]]});return t.install=Ed(t),t}function Rd(){return{hooks:{"entries:resolve":function(e){for(const t of e.entries)t.resolvedInput=ur(t.input)}}}}function Td(e,t={}){const n=Ks(),r=qt(!1),s=qt({});ga(()=>{s.value=r.value?{}:ur(e)});const o=n.push(s.value,t);return _t(s,l=>{o.patch(l)}),fn()&&(wr(()=>{o.dispose()}),Xi(()=>{r.value=!0}),Yi(()=>{r.value=!1})),o}function kd(e,t={}){return Ks().push(e,t)}function Vp(e,t={}){var r;const n=Ks();if(n){const s=wd||!!((r=n.resolvedOptions)!=null&&r.document);return t.mode==="server"&&s||t.mode==="client"&&!s?void 0:s?Td(e,t):kd(e,t)}}const xd={meta:[{name:"viewport",content:"width=device-width, initial-scale=1"},{charset:"utf-8"}],link:[],style:[],script:[],noscript:[]},Pd=!1,us=!1,Ad=!1,Sd="__nuxt",Od=!1,Hd=lt({name:"nuxt:head",setup(e){const n=Cd();n.push(xd),e.vueApp.use(n);{let r=!0;const s=()=>{r=!1,n.hooks.callHook("entries:updated",n)};n.hooks.hook("dom:beforeRender",o=>{o.shouldRender=!r}),e.hooks.hook("page:start",()=>{r=!0}),e.hooks.hook("page:finish",s),e.hooks.hook("app:suspense:resolve",s)}}});/*!
|
|
2
|
+
* vue-router v4.1.6
|
|
3
|
+
* (c) 2022 Eduardo San Martin Morote
|
|
4
|
+
* @license MIT
|
|
5
|
+
*/const jt=typeof window<"u";function Md(e){return e.__esModule||e[Symbol.toStringTag]==="Module"}const re=Object.assign;function Ur(e,t){const n={};for(const r in t){const s=t[r];n[r]=qe(s)?s.map(e):e(s)}return n}const Cn=()=>{},qe=Array.isArray,Id=/\/$/,$d=e=>e.replace(Id,"");function Dr(e,t,n="/"){let r,s={},o="",i="";const l=t.indexOf("#");let c=t.indexOf("?");return l<c&&l>=0&&(c=-1),c>-1&&(r=t.slice(0,c),o=t.slice(c+1,l>-1?l:t.length),s=e(o)),l>-1&&(r=r||t.slice(0,l),i=t.slice(l,t.length)),r=Fd(r??t,n),{fullPath:r+(o&&"?")+o+i,path:r,query:s,hash:i}}function Ld(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function qo(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function Nd(e,t,n){const r=t.matched.length-1,s=n.matched.length-1;return r>-1&&r===s&&tn(t.matched[r],n.matched[s])&&Dl(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function tn(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function Dl(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!jd(e[n],t[n]))return!1;return!0}function jd(e,t){return qe(e)?Vo(e,t):qe(t)?Vo(t,e):e===t}function Vo(e,t){return qe(t)?e.length===t.length&&e.every((n,r)=>n===t[r]):e.length===1&&e[0]===t}function Fd(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),r=e.split("/");let s=n.length-1,o,i;for(o=0;o<r.length;o++)if(i=r[o],i!==".")if(i==="..")s>1&&s--;else break;return n.slice(0,s).join("/")+"/"+r.slice(o-(o===r.length?1:0)).join("/")}var Hn;(function(e){e.pop="pop",e.push="push"})(Hn||(Hn={}));var Rn;(function(e){e.back="back",e.forward="forward",e.unknown=""})(Rn||(Rn={}));function Bd(e){if(!e)if(jt){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),$d(e)}const Ud=/^[^#]+#/;function Dd(e,t){return e.replace(Ud,"#")+t}function Kd(e,t){const n=document.documentElement.getBoundingClientRect(),r=e.getBoundingClientRect();return{behavior:t.behavior,left:r.left-n.left-(t.left||0),top:r.top-n.top-(t.top||0)}}const kr=()=>({left:window.pageXOffset,top:window.pageYOffset});function Wd(e){let t;if("el"in e){const n=e.el,r=typeof n=="string"&&n.startsWith("#"),s=typeof n=="string"?r?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!s)return;t=Kd(s,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.pageXOffset,t.top!=null?t.top:window.pageYOffset)}function zo(e,t){return(history.state?history.state.position-t:-1)+e}const fs=new Map;function qd(e,t){fs.set(e,t)}function Vd(e){const t=fs.get(e);return fs.delete(e),t}let zd=()=>location.protocol+"//"+location.host;function Kl(e,t){const{pathname:n,search:r,hash:s}=t,o=e.indexOf("#");if(o>-1){let l=s.includes(e.slice(o))?e.slice(o).length:1,c=s.slice(l);return c[0]!=="/"&&(c="/"+c),qo(c,"")}return qo(n,e)+r+s}function Jd(e,t,n,r){let s=[],o=[],i=null;const l=({state:p})=>{const y=Kl(e,location),m=n.value,w=t.value;let x=0;if(p){if(n.value=y,t.value=p,i&&i===m){i=null;return}x=w?p.position-w.position:0}else r(y);s.forEach(_=>{_(n.value,m,{delta:x,type:Hn.pop,direction:x?x>0?Rn.forward:Rn.back:Rn.unknown})})};function c(){i=n.value}function a(p){s.push(p);const y=()=>{const m=s.indexOf(p);m>-1&&s.splice(m,1)};return o.push(y),y}function u(){const{history:p}=window;p.state&&p.replaceState(re({},p.state,{scroll:kr()}),"")}function f(){for(const p of o)p();o=[],window.removeEventListener("popstate",l),window.removeEventListener("beforeunload",u)}return window.addEventListener("popstate",l),window.addEventListener("beforeunload",u),{pauseListeners:c,listen:a,destroy:f}}function Jo(e,t,n,r=!1,s=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:s?kr():null}}function Qd(e){const{history:t,location:n}=window,r={value:Kl(e,n)},s={value:t.state};s.value||o(r.value,{back:null,current:r.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function o(c,a,u){const f=e.indexOf("#"),p=f>-1?(n.host&&document.querySelector("base")?e:e.slice(f))+c:zd()+e+c;try{t[u?"replaceState":"pushState"](a,"",p),s.value=a}catch(y){console.error(y),n[u?"replace":"assign"](p)}}function i(c,a){const u=re({},t.state,Jo(s.value.back,c,s.value.forward,!0),a,{position:s.value.position});o(c,u,!0),r.value=c}function l(c,a){const u=re({},s.value,t.state,{forward:c,scroll:kr()});o(u.current,u,!0);const f=re({},Jo(r.value,c,null),{position:u.position+1},a);o(c,f,!1),r.value=c}return{location:r,state:s,push:l,replace:i}}function Wl(e){e=Bd(e);const t=Qd(e),n=Jd(e,t.state,t.location,t.replace);function r(o,i=!0){i||n.pauseListeners(),history.go(o)}const s=re({location:"",base:e,go:r,createHref:Dd.bind(null,e)},t,n);return Object.defineProperty(s,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(s,"state",{enumerable:!0,get:()=>t.state.value}),s}function Yd(e){return e=location.host?e||location.pathname+location.search:"",e.includes("#")||(e+="#"),Wl(e)}function Xd(e){return typeof e=="string"||e&&typeof e=="object"}function ql(e){return typeof e=="string"||typeof e=="symbol"}const dt={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},Vl=Symbol("");var Qo;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(Qo||(Qo={}));function nn(e,t){return re(new Error,{type:e,[Vl]:!0},t)}function Ye(e,t){return e instanceof Error&&Vl in e&&(t==null||!!(e.type&t))}const Yo="[^/]+?",Zd={sensitive:!1,strict:!1,start:!0,end:!0},Gd=/[.+*?^${}()[\]/\\]/g;function eh(e,t){const n=re({},Zd,t),r=[];let s=n.start?"^":"";const o=[];for(const a of e){const u=a.length?[]:[90];n.strict&&!a.length&&(s+="/");for(let f=0;f<a.length;f++){const p=a[f];let y=40+(n.sensitive?.25:0);if(p.type===0)f||(s+="/"),s+=p.value.replace(Gd,"\\$&"),y+=40;else if(p.type===1){const{value:m,repeatable:w,optional:x,regexp:_}=p;o.push({name:m,repeatable:w,optional:x});const h=_||Yo;if(h!==Yo){y+=10;try{new RegExp(`(${h})`)}catch(C){throw new Error(`Invalid custom RegExp for param "${m}" (${h}): `+C.message)}}let b=w?`((?:${h})(?:/(?:${h}))*)`:`(${h})`;f||(b=x&&a.length<2?`(?:/${b})`:"/"+b),x&&(b+="?"),s+=b,y+=20,x&&(y+=-8),w&&(y+=-20),h===".*"&&(y+=-50)}u.push(y)}r.push(u)}if(n.strict&&n.end){const a=r.length-1;r[a][r[a].length-1]+=.7000000000000001}n.strict||(s+="/?"),n.end?s+="$":n.strict&&(s+="(?:/|$)");const i=new RegExp(s,n.sensitive?"":"i");function l(a){const u=a.match(i),f={};if(!u)return null;for(let p=1;p<u.length;p++){const y=u[p]||"",m=o[p-1];f[m.name]=y&&m.repeatable?y.split("/"):y}return f}function c(a){let u="",f=!1;for(const p of e){(!f||!u.endsWith("/"))&&(u+="/"),f=!1;for(const y of p)if(y.type===0)u+=y.value;else if(y.type===1){const{value:m,repeatable:w,optional:x}=y,_=m in a?a[m]:"";if(qe(_)&&!w)throw new Error(`Provided param "${m}" is an array but it is not repeatable (* or + modifiers)`);const h=qe(_)?_.join("/"):_;if(!h)if(x)p.length<2&&(u.endsWith("/")?u=u.slice(0,-1):f=!0);else throw new Error(`Missing required param "${m}"`);u+=h}}return u||"/"}return{re:i,score:r,keys:o,parse:l,stringify:c}}function th(e,t){let n=0;for(;n<e.length&&n<t.length;){const r=t[n]-e[n];if(r)return r;n++}return e.length<t.length?e.length===1&&e[0]===40+40?-1:1:e.length>t.length?t.length===1&&t[0]===40+40?1:-1:0}function nh(e,t){let n=0;const r=e.score,s=t.score;for(;n<r.length&&n<s.length;){const o=th(r[n],s[n]);if(o)return o;n++}if(Math.abs(s.length-r.length)===1){if(Xo(r))return 1;if(Xo(s))return-1}return s.length-r.length}function Xo(e){const t=e[e.length-1];return e.length>0&&t[t.length-1]<0}const rh={type:0,value:""},sh=/[a-zA-Z0-9_]/;function oh(e){if(!e)return[[]];if(e==="/")return[[rh]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(y){throw new Error(`ERR (${n})/"${a}": ${y}`)}let n=0,r=n;const s=[];let o;function i(){o&&s.push(o),o=[]}let l=0,c,a="",u="";function f(){a&&(n===0?o.push({type:0,value:a}):n===1||n===2||n===3?(o.length>1&&(c==="*"||c==="+")&&t(`A repeatable param (${a}) must be alone in its segment. eg: '/:ids+.`),o.push({type:1,value:a,regexp:u,repeatable:c==="*"||c==="+",optional:c==="*"||c==="?"})):t("Invalid state to consume buffer"),a="")}function p(){a+=c}for(;l<e.length;){if(c=e[l++],c==="\\"&&n!==2){r=n,n=4;continue}switch(n){case 0:c==="/"?(a&&f(),i()):c===":"?(f(),n=1):p();break;case 4:p(),n=r;break;case 1:c==="("?n=2:sh.test(c)?p():(f(),n=0,c!=="*"&&c!=="?"&&c!=="+"&&l--);break;case 2:c===")"?u[u.length-1]=="\\"?u=u.slice(0,-1)+c:n=3:u+=c;break;case 3:f(),n=0,c!=="*"&&c!=="?"&&c!=="+"&&l--,u="";break;default:t("Unknown state");break}}return n===2&&t(`Unfinished custom RegExp for param "${a}"`),f(),i(),s}function ih(e,t,n){const r=eh(oh(e.path),n),s=re(r,{record:e,parent:t,children:[],alias:[]});return t&&!s.record.aliasOf==!t.record.aliasOf&&t.children.push(s),s}function lh(e,t){const n=[],r=new Map;t=ei({strict:!1,end:!0,sensitive:!1},t);function s(u){return r.get(u)}function o(u,f,p){const y=!p,m=ch(u);m.aliasOf=p&&p.record;const w=ei(t,u),x=[m];if("alias"in u){const b=typeof u.alias=="string"?[u.alias]:u.alias;for(const C of b)x.push(re({},m,{components:p?p.record.components:m.components,path:C,aliasOf:p?p.record:m}))}let _,h;for(const b of x){const{path:C}=b;if(f&&C[0]!=="/"){const A=f.record.path,M=A[A.length-1]==="/"?"":"/";b.path=f.record.path+(C&&M+C)}if(_=ih(b,f,w),p?p.alias.push(_):(h=h||_,h!==_&&h.alias.push(_),y&&u.name&&!Go(_)&&i(u.name)),m.children){const A=m.children;for(let M=0;M<A.length;M++)o(A[M],_,p&&p.children[M])}p=p||_,(_.record.components&&Object.keys(_.record.components).length||_.record.name||_.record.redirect)&&c(_)}return h?()=>{i(h)}:Cn}function i(u){if(ql(u)){const f=r.get(u);f&&(r.delete(u),n.splice(n.indexOf(f),1),f.children.forEach(i),f.alias.forEach(i))}else{const f=n.indexOf(u);f>-1&&(n.splice(f,1),u.record.name&&r.delete(u.record.name),u.children.forEach(i),u.alias.forEach(i))}}function l(){return n}function c(u){let f=0;for(;f<n.length&&nh(u,n[f])>=0&&(u.record.path!==n[f].record.path||!zl(u,n[f]));)f++;n.splice(f,0,u),u.record.name&&!Go(u)&&r.set(u.record.name,u)}function a(u,f){let p,y={},m,w;if("name"in u&&u.name){if(p=r.get(u.name),!p)throw nn(1,{location:u});w=p.record.name,y=re(Zo(f.params,p.keys.filter(h=>!h.optional).map(h=>h.name)),u.params&&Zo(u.params,p.keys.map(h=>h.name))),m=p.stringify(y)}else if("path"in u)m=u.path,p=n.find(h=>h.re.test(m)),p&&(y=p.parse(m),w=p.record.name);else{if(p=f.name?r.get(f.name):n.find(h=>h.re.test(f.path)),!p)throw nn(1,{location:u,currentLocation:f});w=p.record.name,y=re({},f.params,u.params),m=p.stringify(y)}const x=[];let _=p;for(;_;)x.unshift(_.record),_=_.parent;return{name:w,path:m,params:y,matched:x,meta:uh(x)}}return e.forEach(u=>o(u)),{addRoute:o,resolve:a,removeRoute:i,getRoutes:l,getRecordMatcher:s}}function Zo(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}function ch(e){return{path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:void 0,beforeEnter:e.beforeEnter,props:ah(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}}}function ah(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const r in e.components)t[r]=typeof n=="boolean"?n:n[r];return t}function Go(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function uh(e){return e.reduce((t,n)=>re(t,n.meta),{})}function ei(e,t){const n={};for(const r in e)n[r]=r in t?t[r]:e[r];return n}function zl(e,t){return t.children.some(n=>n===e||zl(e,n))}const Jl=/#/g,fh=/&/g,dh=/\//g,hh=/=/g,ph=/\?/g,Ql=/\+/g,gh=/%5B/g,mh=/%5D/g,Yl=/%5E/g,yh=/%60/g,Xl=/%7B/g,_h=/%7C/g,Zl=/%7D/g,bh=/%20/g;function Ws(e){return encodeURI(""+e).replace(_h,"|").replace(gh,"[").replace(mh,"]")}function vh(e){return Ws(e).replace(Xl,"{").replace(Zl,"}").replace(Yl,"^")}function ds(e){return Ws(e).replace(Ql,"%2B").replace(bh,"+").replace(Jl,"%23").replace(fh,"%26").replace(yh,"`").replace(Xl,"{").replace(Zl,"}").replace(Yl,"^")}function wh(e){return ds(e).replace(hh,"%3D")}function Eh(e){return Ws(e).replace(Jl,"%23").replace(ph,"%3F")}function Ch(e){return e==null?"":Eh(e).replace(dh,"%2F")}function fr(e){try{return decodeURIComponent(""+e)}catch{}return""+e}function Rh(e){const t={};if(e===""||e==="?")return t;const r=(e[0]==="?"?e.slice(1):e).split("&");for(let s=0;s<r.length;++s){const o=r[s].replace(Ql," "),i=o.indexOf("="),l=fr(i<0?o:o.slice(0,i)),c=i<0?null:fr(o.slice(i+1));if(l in t){let a=t[l];qe(a)||(a=t[l]=[a]),a.push(c)}else t[l]=c}return t}function ti(e){let t="";for(let n in e){const r=e[n];if(n=wh(n),r==null){r!==void 0&&(t+=(t.length?"&":"")+n);continue}(qe(r)?r.map(o=>o&&ds(o)):[r&&ds(r)]).forEach(o=>{o!==void 0&&(t+=(t.length?"&":"")+n,o!=null&&(t+="="+o))})}return t}function Th(e){const t={};for(const n in e){const r=e[n];r!==void 0&&(t[n]=qe(r)?r.map(s=>s==null?null:""+s):r==null?r:""+r)}return t}const kh=Symbol(""),ni=Symbol(""),qs=Symbol(""),Vs=Symbol(""),hs=Symbol("");function mn(){let e=[];function t(r){return e.push(r),()=>{const s=e.indexOf(r);s>-1&&e.splice(s,1)}}function n(){e=[]}return{add:t,list:()=>e,reset:n}}function pt(e,t,n,r,s){const o=r&&(r.enterCallbacks[s]=r.enterCallbacks[s]||[]);return()=>new Promise((i,l)=>{const c=f=>{f===!1?l(nn(4,{from:n,to:t})):f instanceof Error?l(f):Xd(f)?l(nn(2,{from:t,to:f})):(o&&r.enterCallbacks[s]===o&&typeof f=="function"&&o.push(f),i())},a=e.call(r&&r.instances[s],t,n,c);let u=Promise.resolve(a);e.length<3&&(u=u.then(c)),u.catch(f=>l(f))})}function Kr(e,t,n,r){const s=[];for(const o of e)for(const i in o.components){let l=o.components[i];if(!(t!=="beforeRouteEnter"&&!o.instances[i]))if(xh(l)){const a=(l.__vccOpts||l)[t];a&&s.push(pt(a,n,r,o,i))}else{let c=l();s.push(()=>c.then(a=>{if(!a)return Promise.reject(new Error(`Couldn't resolve component "${i}" at "${o.path}"`));const u=Md(a)?a.default:a;o.components[i]=u;const p=(u.__vccOpts||u)[t];return p&&pt(p,n,r,o,i)()}))}}return s}function xh(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function ri(e){const t=Oe(qs),n=Oe(Vs),r=Re(()=>t.resolve(ge(e.to))),s=Re(()=>{const{matched:c}=r.value,{length:a}=c,u=c[a-1],f=n.matched;if(!u||!f.length)return-1;const p=f.findIndex(tn.bind(null,u));if(p>-1)return p;const y=si(c[a-2]);return a>1&&si(u)===y&&f[f.length-1].path!==y?f.findIndex(tn.bind(null,c[a-2])):p}),o=Re(()=>s.value>-1&&Oh(n.params,r.value.params)),i=Re(()=>s.value>-1&&s.value===n.matched.length-1&&Dl(n.params,r.value.params));function l(c={}){return Sh(c)?t[ge(e.replace)?"replace":"push"](ge(e.to)).catch(Cn):Promise.resolve()}return{route:r,href:Re(()=>r.value.href),isActive:o,isExactActive:i,navigate:l}}const Ph=ot({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:ri,setup(e,{slots:t}){const n=We(ri(e)),{options:r}=Oe(qs),s=Re(()=>({[oi(e.activeClass,r.linkActiveClass,"router-link-active")]:n.isActive,[oi(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const o=t.default&&t.default(n);return e.custom?o:Ke("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:s.value},o)}}}),Ah=Ph;function Sh(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function Oh(e,t){for(const n in t){const r=t[n],s=e[n];if(typeof r=="string"){if(r!==s)return!1}else if(!qe(s)||s.length!==r.length||r.some((o,i)=>o!==s[i]))return!1}return!0}function si(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const oi=(e,t,n)=>e??t??n,Hh=ot({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const r=Oe(hs),s=Re(()=>e.route||r.value),o=Oe(ni,0),i=Re(()=>{let a=ge(o);const{matched:u}=s.value;let f;for(;(f=u[a])&&!f.components;)a++;return a}),l=Re(()=>s.value.matched[i.value]);Jt(ni,Re(()=>i.value+1)),Jt(kh,l),Jt(hs,s);const c=qt();return _t(()=>[c.value,l.value,e.name],([a,u,f],[p,y,m])=>{u&&(u.instances[f]=a,y&&y!==u&&a&&a===p&&(u.leaveGuards.size||(u.leaveGuards=y.leaveGuards),u.updateGuards.size||(u.updateGuards=y.updateGuards))),a&&u&&(!y||!tn(u,y)||!p)&&(u.enterCallbacks[f]||[]).forEach(w=>w(a))},{flush:"post"}),()=>{const a=s.value,u=e.name,f=l.value,p=f&&f.components[u];if(!p)return ii(n.default,{Component:p,route:a});const y=f.props[u],m=y?y===!0?a.params:typeof y=="function"?y(a):y:null,x=Ke(p,re({},m,t,{onVnodeUnmounted:_=>{_.component.isUnmounted&&(f.instances[u]=null)},ref:c}));return ii(n.default,{Component:x,route:a})||x}}});function ii(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const Gl=Hh;function Mh(e){const t=lh(e.routes,e),n=e.parseQuery||Rh,r=e.stringifyQuery||ti,s=e.history,o=mn(),i=mn(),l=mn(),c=Jr(dt);let a=dt;jt&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const u=Ur.bind(null,R=>""+R),f=Ur.bind(null,Ch),p=Ur.bind(null,fr);function y(R,j){let I,K;return ql(R)?(I=t.getRecordMatcher(R),K=j):K=R,t.addRoute(K,I)}function m(R){const j=t.getRecordMatcher(R);j&&t.removeRoute(j)}function w(){return t.getRoutes().map(R=>R.record)}function x(R){return!!t.getRecordMatcher(R)}function _(R,j){if(j=re({},j||c.value),typeof R=="string"){const d=Dr(n,R,j.path),g=t.resolve({path:d.path},j),v=s.createHref(d.fullPath);return re(d,g,{params:p(g.params),hash:fr(d.hash),redirectedFrom:void 0,href:v})}let I;if("path"in R)I=re({},R,{path:Dr(n,R.path,j.path).path});else{const d=re({},R.params);for(const g in d)d[g]==null&&delete d[g];I=re({},R,{params:f(R.params)}),j.params=f(j.params)}const K=t.resolve(I,j),ee=R.hash||"";K.params=u(p(K.params));const ue=Ld(r,re({},R,{hash:vh(ee),path:K.path})),X=s.createHref(ue);return re({fullPath:ue,hash:ee,query:r===ti?Th(R.query):R.query||{}},K,{redirectedFrom:void 0,href:X})}function h(R){return typeof R=="string"?Dr(n,R,c.value.path):re({},R)}function b(R,j){if(a!==R)return nn(8,{from:j,to:R})}function C(R){return N(R)}function A(R){return C(re(h(R),{replace:!0}))}function M(R){const j=R.matched[R.matched.length-1];if(j&&j.redirect){const{redirect:I}=j;let K=typeof I=="function"?I(R):I;return typeof K=="string"&&(K=K.includes("?")||K.includes("#")?K=h(K):{path:K},K.params={}),re({query:R.query,hash:R.hash,params:"path"in K?{}:R.params},K)}}function N(R,j){const I=a=_(R),K=c.value,ee=R.state,ue=R.force,X=R.replace===!0,d=M(I);if(d)return N(re(h(d),{state:typeof d=="object"?re({},ee,d.state):ee,force:ue,replace:X}),j||I);const g=I;g.redirectedFrom=j;let v;return!ue&&Nd(r,K,I)&&(v=nn(16,{to:g,from:K}),wt(K,K,!0,!1)),(v?Promise.resolve(v):U(g,K)).catch(E=>Ye(E)?Ye(E,2)?E:Le(E):le(E,g,K)).then(E=>{if(E){if(Ye(E,2))return N(re({replace:X},h(E.to),{state:typeof E.to=="object"?re({},ee,E.to.state):ee,force:ue}),j||g)}else E=z(g,K,!0,X,ee);return D(g,K,E),E})}function k(R,j){const I=b(R,j);return I?Promise.reject(I):Promise.resolve()}function U(R,j){let I;const[K,ee,ue]=Ih(R,j);I=Kr(K.reverse(),"beforeRouteLeave",R,j);for(const d of K)d.leaveGuards.forEach(g=>{I.push(pt(g,R,j))});const X=k.bind(null,R,j);return I.push(X),Nt(I).then(()=>{I=[];for(const d of o.list())I.push(pt(d,R,j));return I.push(X),Nt(I)}).then(()=>{I=Kr(ee,"beforeRouteUpdate",R,j);for(const d of ee)d.updateGuards.forEach(g=>{I.push(pt(g,R,j))});return I.push(X),Nt(I)}).then(()=>{I=[];for(const d of R.matched)if(d.beforeEnter&&!j.matched.includes(d))if(qe(d.beforeEnter))for(const g of d.beforeEnter)I.push(pt(g,R,j));else I.push(pt(d.beforeEnter,R,j));return I.push(X),Nt(I)}).then(()=>(R.matched.forEach(d=>d.enterCallbacks={}),I=Kr(ue,"beforeRouteEnter",R,j),I.push(X),Nt(I))).then(()=>{I=[];for(const d of i.list())I.push(pt(d,R,j));return I.push(X),Nt(I)}).catch(d=>Ye(d,8)?d:Promise.reject(d))}function D(R,j,I){for(const K of l.list())K(R,j,I)}function z(R,j,I,K,ee){const ue=b(R,j);if(ue)return ue;const X=j===dt,d=jt?history.state:{};I&&(K||X?s.replace(R.fullPath,re({scroll:X&&d&&d.scroll},ee)):s.push(R.fullPath,ee)),c.value=R,wt(R,j,I,X),Le()}let L;function Y(){L||(L=s.listen((R,j,I)=>{if(!Nn.listening)return;const K=_(R),ee=M(K);if(ee){N(re(ee,{replace:!0}),K).catch(Cn);return}a=K;const ue=c.value;jt&&qd(zo(ue.fullPath,I.delta),kr()),U(K,ue).catch(X=>Ye(X,12)?X:Ye(X,2)?(N(X.to,K).then(d=>{Ye(d,20)&&!I.delta&&I.type===Hn.pop&&s.go(-1,!1)}).catch(Cn),Promise.reject()):(I.delta&&s.go(-I.delta,!1),le(X,K,ue))).then(X=>{X=X||z(K,ue,!1),X&&(I.delta&&!Ye(X,8)?s.go(-I.delta,!1):I.type===Hn.pop&&Ye(X,20)&&s.go(-1,!1)),D(K,ue,X)}).catch(Cn)}))}let F=mn(),we=mn(),G;function le(R,j,I){Le(R);const K=we.list();return K.length?K.forEach(ee=>ee(R,j,I)):console.error(R),Promise.reject(R)}function se(){return G&&c.value!==dt?Promise.resolve():new Promise((R,j)=>{F.add([R,j])})}function Le(R){return G||(G=!R,Y(),F.list().forEach(([j,I])=>R?I(R):j()),F.reset()),R}function wt(R,j,I,K){const{scrollBehavior:ee}=e;if(!jt||!ee)return Promise.resolve();const ue=!I&&Vd(zo(R.fullPath,0))||(K||!I)&&history.state&&history.state.scroll||null;return un().then(()=>ee(R,j,ue)).then(X=>X&&Wd(X)).catch(X=>le(X,R,j))}const Ne=R=>s.go(R);let ke;const $t=new Set,Nn={currentRoute:c,listening:!0,addRoute:y,removeRoute:m,hasRoute:x,getRoutes:w,resolve:_,options:e,push:C,replace:A,go:Ne,back:()=>Ne(-1),forward:()=>Ne(1),beforeEach:o.add,beforeResolve:i.add,afterEach:l.add,onError:we.add,isReady:se,install(R){const j=this;R.component("RouterLink",Ah),R.component("RouterView",Gl),R.config.globalProperties.$router=j,Object.defineProperty(R.config.globalProperties,"$route",{enumerable:!0,get:()=>ge(c)}),jt&&!ke&&c.value===dt&&(ke=!0,C(s.location).catch(ee=>{}));const I={};for(const ee in dt)I[ee]=Re(()=>c.value[ee]);R.provide(qs,j),R.provide(Vs,We(I)),R.provide(hs,c);const K=R.unmount;$t.add(R),R.unmount=function(){$t.delete(R),$t.size<1&&(a=dt,L&&L(),L=null,c.value=dt,ke=!1,G=!1),K()}}};return Nn}function Nt(e){return e.reduce((t,n)=>t.then(()=>n()),Promise.resolve())}function Ih(e,t){const n=[],r=[],s=[],o=Math.max(t.matched.length,e.matched.length);for(let i=0;i<o;i++){const l=t.matched[i];l&&(e.matched.find(a=>tn(a,l))?r.push(l):n.push(l));const c=e.matched[i];c&&(t.matched.find(a=>tn(a,c))||s.push(c))}return[n,r,s]}function $h(){return Oe(Vs)}function Wr(e){return e!==null&&typeof e=="object"}function ps(e,t,n=".",r){if(!Wr(t))return ps(e,{},n,r);const s=Object.assign({},t);for(const o in e){if(o==="__proto__"||o==="constructor")continue;const i=e[o];i!=null&&(r&&r(s,o,i,n)||(Array.isArray(i)&&Array.isArray(s[o])?s[o]=[...i,...s[o]]:Wr(i)&&Wr(s[o])?s[o]=ps(i,s[o],(n?`${n}.`:"")+o.toString(),r):s[o]=i))}return s}function Lh(e){return(...t)=>t.reduce((n,r)=>ps(n,r,"",e),{})}const Nh=Lh();class gs extends Error{constructor(){super(...arguments),this.statusCode=500,this.fatal=!1,this.unhandled=!1,this.statusMessage=void 0}toJSON(){const t={message:this.message,statusCode:ys(this.statusCode,500)};return this.statusMessage&&(t.statusMessage=ec(this.statusMessage)),this.data!==void 0&&(t.data=this.data),t}}gs.__h3_error__=!0;function ms(e){if(typeof e=="string")return new gs(e);if(jh(e))return e;const t=new gs(e.message??e.statusMessage,e.cause?{cause:e.cause}:void 0);if("stack"in e)try{Object.defineProperty(t,"stack",{get(){return e.stack}})}catch{try{t.stack=e.stack}catch{}}if(e.data&&(t.data=e.data),e.statusCode?t.statusCode=ys(e.statusCode,t.statusCode):e.status&&(t.statusCode=ys(e.status,t.statusCode)),e.statusMessage?t.statusMessage=e.statusMessage:e.statusText&&(t.statusMessage=e.statusText),t.statusMessage){const n=t.statusMessage;ec(t.statusMessage)!==n&&console.warn("[h3] Please prefer using `message` for longer error messages instead of `statusMessage`. In the future `statusMessage` will be sanitized by default.")}return e.fatal!==void 0&&(t.fatal=e.fatal),e.unhandled!==void 0&&(t.unhandled=e.unhandled),t}function jh(e){var t;return((t=e==null?void 0:e.constructor)==null?void 0:t.__h3_error__)===!0}const Fh=/[^\u0009\u0020-\u007E]/g;function ec(e=""){return e.replace(Fh,"")}function ys(e,t=200){return!e||(typeof e=="string"&&(e=Number.parseInt(e,10)),e<100||e>999)?t:e}function tc(...e){const t=typeof e[e.length-1]=="string"?e.pop():void 0;typeof e[0]!="string"&&e.unshift(t);const[n,r]=e;if(!n||typeof n!="string")throw new TypeError("[nuxt] [useState] key must be a string: "+n);if(r!==void 0&&typeof r!="function")throw new Error("[nuxt] [useState] init must be a function: "+r);const s="$s"+n,o=ve(),i=Li(o.payload.state,s);if(i.value===void 0&&r){const l=r();if(me(l))return o.payload.state[s]=l,l;i.value=l}return i}const It=()=>{var e;return(e=ve())==null?void 0:e.$router},nc=()=>fn()?Oe("_route",ve()._route):ve()._route,Bh=e=>e,Uh=()=>{try{if(ve()._processingMiddleware)return!0}catch{return!0}return!1},zp=(e,t)=>{e||(e="/");const n=typeof e=="string"?e:e.path||"/",r=(t==null?void 0:t.external)||$n(n,{acceptRelative:!0});if(r&&!(t!=null&&t.external))throw new Error("Navigating to external URL is not allowed by default. Use `navigateTo (url, { external: true })`.");if(r&&Tr(n).protocol==="script:")throw new Error("Cannot navigate to an URL with script protocol.");const s=Uh();if(!r&&s)return e;const o=It();return r?(t!=null&&t.replace?location.replace(n):location.href=n,Promise.resolve()):t!=null&&t.replace?o.replace(e):o.push(e)},xr=()=>Li(ve().payload,"error"),Ft=e=>{const t=rc(e);try{ve().callHook("app:error",t);const r=xr();r.value=r.value||t}catch{throw t}return t},Dh=async(e={})=>{const t=ve(),n=xr();t.callHook("app:error:cleared",e),e.redirect&&await It().replace(e.redirect),n.value=null},Kh=e=>!!(e&&typeof e=="object"&&"__nuxt_error"in e),rc=e=>{const t=ms(e);return t.__nuxt_error=!0,t},Wh="modulepreload",qh=function(e,t){return e.startsWith(".")?new URL(e,t).href:e},li={},Vh=function(t,n,r){if(!n||n.length===0)return t();const s=document.getElementsByTagName("link");return Promise.all(n.map(o=>{if(o=qh(o,r),o in li)return;li[o]=!0;const i=o.endsWith(".css"),l=i?'[rel="stylesheet"]':"";if(!!r)for(let u=s.length-1;u>=0;u--){const f=s[u];if(f.href===o&&(!i||f.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${o}"]${l}`))return;const a=document.createElement("link");if(a.rel=i?"stylesheet":Wh,i||(a.as="script",a.crossOrigin=""),a.href=o,document.head.appendChild(a),i)return new Promise((u,f)=>{a.addEventListener("load",u),a.addEventListener("error",()=>f(new Error(`Unable to preload CSS for ${o}`)))})})).then(()=>t())},zs=(...e)=>Vh(...e).catch(t=>{const n=new Event("nuxt.preloadError");throw n.payload=t,window.dispatchEvent(n),t}),ci=[{name:"index",path:"/",meta:{},alias:[],redirect:void 0,component:()=>zs(()=>import("./index.3979d62c.js"),["./index.3979d62c.js","./_plugin-vue_export-helper.c27b6911.js","./index.dc8fb7ec.css"],import.meta.url).then(e=>e.default||e)}],zh={scrollBehavior(e,t,n){const r=ve();let s=n||void 0;if(!s&&t&&e&&e.meta.scrollToTop!==!1&&Jh(t,e)&&(s={left:0,top:0}),e.path===t.path){if(t.hash&&!e.hash)return{left:0,top:0};if(e.hash)return{el:e.hash,top:ai(e.hash)}}const o=l=>!!(l.meta.pageTransition??us),i=o(t)&&o(e)?"page:transition:finish":"page:finish";return new Promise(l=>{r.hooks.hookOnce(i,async()=>{await un(),e.hash&&(s={el:e.hash,top:ai(e.hash)}),l(s)})})}};function ai(e){try{const t=document.querySelector(e);if(t)return parseFloat(getComputedStyle(t).scrollMarginTop)}catch{}return 0}function Jh(e,t){const n=e.matched[0]===t.matched[0];return!!(!n||n&&JSON.stringify(e.params)!==JSON.stringify(t.params))}const Qh={},Xe={...Qh,...zh},Yh=Bh(async e=>{var c;let t,n;if(!((c=e.meta)!=null&&c.validate))return;const r=ve(),s=It();if(([t,n]=cs(()=>Promise.resolve(e.meta.validate(e))),t=await t,n(),t)===!0)return;const i=rc({statusCode:404,statusMessage:`Page Not Found: ${e.fullPath}`}),l=s.beforeResolve(a=>{if(l(),a===e){const u=s.afterEach(async()=>{u(),await et(r,Ft,[i]),window.history.pushState({},"",e.fullPath)});return!1}})}),Xh=[Yh],Tn={};function Zh(e,t){const{pathname:n,search:r,hash:s}=t,o=e.indexOf("#");if(o>-1){const l=s.includes(e.slice(o))?e.slice(o).length:1;let c=s.slice(l);return c[0]!=="/"&&(c="/"+c),Lo(c,"")}return Lo(n,e)+r+s}const Gh=lt({name:"nuxt:router",enforce:"pre",async setup(e){var m,w;let t,n,r=Ds().app.baseURL;Xe.hashMode&&!r.includes("#")&&(r+="#");const s=((m=Xe.history)==null?void 0:m.call(Xe,r))??(Xe.hashMode?Yd(r):Wl(r)),o=((w=Xe.routes)==null?void 0:w.call(Xe,ci))??ci,i=Zh(r,window.location),l=Mh({...Xe,history:s,routes:o});e.vueApp.use(l);const c=Jr(l.currentRoute.value);l.afterEach((x,_)=>{c.value=_}),Object.defineProperty(e.vueApp.config.globalProperties,"previousRoute",{get:()=>c.value});const a=Jr(l.resolve(i)),u=()=>{a.value=l.currentRoute.value};e.hook("page:finish",u),l.afterEach((x,_)=>{var h,b,C,A;((b=(h=x.matched[0])==null?void 0:h.components)==null?void 0:b.default)===((A=(C=_.matched[0])==null?void 0:C.components)==null?void 0:A.default)&&u()});const f={};for(const x in a.value)f[x]=Re(()=>a.value[x]);e._route=We(f),e._middleware=e._middleware||{global:[],named:{}};const p=xr();try{[t,n]=cs(()=>l.isReady()),await t,n()}catch(x){[t,n]=cs(()=>et(e,Ft,[x])),await t,n()}const y=tc("_layout");return l.beforeEach(async(x,_)=>{var b;x.meta=We(x.meta),e.isHydrating&&y.value&&!Mt(x.meta.layout)&&(x.meta.layout=y.value),e._processingMiddleware=!0;const h=new Set([...Xh,...e._middleware.global]);for(const C of x.matched){const A=C.meta.middleware;if(A)if(Array.isArray(A))for(const M of A)h.add(M);else h.add(A)}for(const C of h){const A=typeof C=="string"?e._middleware.named[C]||await((b=Tn[C])==null?void 0:b.call(Tn).then(N=>N.default||N)):C;if(!A)throw new Error(`Unknown route middleware: '${C}'.`);const M=await et(e,A,[x,_]);if(!e.payload.serverRendered&&e.isHydrating&&(M===!1||M instanceof Error)){const N=M||ms({statusCode:404,statusMessage:`Page Not Found: ${i}`});return await et(e,Ft,[N]),!1}if(M||M===!1)return M}}),l.onError(()=>{delete e._processingMiddleware}),l.afterEach(async(x,_,h)=>{delete e._processingMiddleware,!e.isHydrating&&p.value&&await et(e,Dh),x.matched.length===0&&await et(e,Ft,[ms({statusCode:404,fatal:!1,statusMessage:`Page not found: ${x.fullPath}`})])}),e.hooks.hookOnce("app:created",async()=>{try{await l.replace({...l.resolve(i),name:void 0,force:!0})}catch(x){await et(e,Ft,[x])}}),{provide:{router:l}}}},1),Bt={},ep=lt({name:"nuxt:prefetch",setup(e){const t=It();e.hooks.hook("app:mounted",()=>{t.beforeEach(async n=>{var s;const r=(s=n==null?void 0:n.meta)==null?void 0:s.layout;r&&typeof Bt[r]=="function"&&await Bt[r]()})}),e.hooks.hook("link:prefetch",n=>{var i,l,c,a;if($n(n))return;const r=t.resolve(n);if(!r)return;const s=(i=r==null?void 0:r.meta)==null?void 0:i.layout;let o=Array.isArray((l=r==null?void 0:r.meta)==null?void 0:l.middleware)?(c=r==null?void 0:r.meta)==null?void 0:c.middleware:[(a=r==null?void 0:r.meta)==null?void 0:a.middleware];o=o.filter(u=>typeof u=="string");for(const u of o)typeof Tn[u]=="function"&&Tn[u]();s&&typeof Bt[s]=="function"&&Bt[s]()})}});Object.getOwnPropertyNames(Object.prototype).sort().join("\0");const tp=-1,np=-2,rp=-3,sp=-4,op=-5,ip=-6;function lp(e,t){return cp(JSON.parse(e),t)}function cp(e,t){if(typeof e=="number")return s(e,!0);if(!Array.isArray(e)||e.length===0)throw new Error("Invalid input");const n=e,r=Array(n.length);function s(o,i=!1){if(o===tp)return;if(o===rp)return NaN;if(o===sp)return 1/0;if(o===op)return-1/0;if(o===ip)return-0;if(i)throw new Error("Invalid input");if(o in r)return r[o];const l=n[o];if(!l||typeof l!="object")r[o]=l;else if(Array.isArray(l))if(typeof l[0]=="string"){const c=l[0],a=t==null?void 0:t[c];if(a)return r[o]=a(s(l[1]));switch(c){case"Date":r[o]=new Date(l[1]);break;case"Set":const u=new Set;r[o]=u;for(let y=1;y<l.length;y+=1)u.add(s(l[y]));break;case"Map":const f=new Map;r[o]=f;for(let y=1;y<l.length;y+=2)f.set(s(l[y]),s(l[y+1]));break;case"RegExp":r[o]=new RegExp(l[1],l[2]);break;case"Object":r[o]=Object(l[1]);break;case"BigInt":r[o]=BigInt(l[1]);break;case"null":const p=Object.create(null);r[o]=p;for(let y=1;y<l.length;y+=2)p[l[y]]=s(l[y+1]);break;default:throw new Error(`Unknown type ${c}`)}}else{const c=new Array(l.length);r[o]=c;for(let a=0;a<l.length;a+=1){const u=l[a];u!==np&&(c[a]=s(u))}}else{const c={};r[o]=c;for(const a in l){const u=l[a];c[a]=s(u)}}return r[o]}return s(0)}function ui(e,t={}){const n=ap(e,t),r=ve(),s=r._payloadCache=r._payloadCache||{};return s[n]||(s[n]=up(n).then(o=>o||(delete s[n],null))),s[n]}const fi="js";function ap(e,t={}){const n=new URL(e,"http://localhost");if(n.search)throw new Error("Payload URL cannot contain search params: "+e);if(n.host!=="localhost"||$n(n.pathname,{acceptRelative:!0}))throw new Error("Payload URL must not include hostname: "+e);const r=t.hash||(t.fresh?Date.now():"");return Ln(Ds().app.baseURL,n.pathname,r?`_payload.${r}.${fi}`:`_payload.${fi}`)}async function up(e){try{return Od?dp(await fetch(e).then(t=>t.text())):await zs(()=>import(e),[],import.meta.url).then(t=>t.default||t)}catch(t){console.warn("[nuxt] Cannot load payload ",e,t)}return null}function fp(){return!!ve().payload.prerenderedAt}function dp(e){return lp(e,ve()._payloadRevivers)}function hp(e={}){const t=e.path||window.location.pathname;let n={};try{n=JSON.parse(sessionStorage.getItem("nuxt:reload")||"{}")}catch{}if(e.force||(n==null?void 0:n.path)!==t||(n==null?void 0:n.expires)<Date.now()){try{sessionStorage.setItem("nuxt:reload",JSON.stringify({path:t,expires:Date.now()+(e.ttl??1e4)}))}catch{}if(e.persistState)try{sessionStorage.setItem("nuxt:reload:state",JSON.stringify({state:ve().payload.state}))}catch{}window.location.pathname!==t?window.location.href=t:window.location.reload()}}const pp="__NUXT_COLOR_MODE__",gp="nuxt-color-mode",Ze=window[pp],mp=lt(e=>{const t=tc("color-mode",()=>We({preference:Ze.preference,value:Ze.value,unknown:!1,forced:!1})).value;It().afterEach(s=>{const o=s.meta.colorMode;o&&o!=="system"?(t.value=o,t.forced=!0):(o==="system"&&console.warn("You cannot force the colorMode to system at the page level."),t.forced=!1,t.value=t.preference==="system"?Ze.getColorScheme():t.preference)});let n;function r(){n||!window.matchMedia||(n=window.matchMedia("(prefers-color-scheme: dark)"),n.addEventListener("change",()=>{!t.forced&&t.preference==="system"&&(t.value=Ze.getColorScheme())}))}_t(()=>t.preference,s=>{var o;t.forced||(s==="system"?(t.value=Ze.getColorScheme(),r()):t.value=s,(o=window.localStorage)==null||o.setItem(gp,s))},{immediate:!0}),_t(()=>t.value,(s,o)=>{Ze.removeColorScheme(o),Ze.addColorScheme(s)}),t.preference==="system"&&r(),e.hook("app:mounted",()=>{t.unknown&&(t.preference=Ze.preference,t.value=Ze.value,t.unknown=!1)}),e.provide("colorMode",t)});const yp=lt(()=>{}),_p=lt({name:"nuxt:chunk-reload",setup(e){const t=It(),n=Ds(),r=new Set;t.beforeEach(()=>{r.clear()}),e.hook("app:chunkError",({error:s})=>{r.add(s)}),t.onError((s,o)=>{if(r.has(s)){const l="href"in o&&o.href.startsWith("#")?n.app.baseURL+o.href:Ln(n.app.baseURL,o.fullPath);hp({path:l,persistState:!0})}})}}),bp=lt({name:"nuxt:payload",setup(e){fp()&&(e.hooks.hook("link:prefetch",async t=>{Tr(t).protocol||await ui(t)}),It().beforeResolve(async(t,n)=>{if(t.path===n.path)return;const r=await ui(t.path);r&&Object.assign(e.static.data,r.data)}))}}),vp=[Uf,Hd,Gh,ep,mp,yp,_p,bp],wp=(e,t)=>t.path.replace(/(:\w+)\([^)]+\)/g,"$1").replace(/(:\w+)[?+*]/g,"$1").replace(/:\w+/g,n=>{var r;return((r=e.params[n.slice(1)])==null?void 0:r.toString())||""}),Ep=(e,t)=>{const n=e.route.matched.find(s=>{var o;return((o=s.components)==null?void 0:o.default)===e.Component.type}),r=t??(n==null?void 0:n.meta.key)??(n&&wp(e.route,n));return typeof r=="function"?r(e.route):r},Cp=(e,t)=>({default:()=>e?Ke(wa,e===!0?{}:e,t):t}),Rp=ot({name:"FragmentWrapper",setup(e,{slots:t}){return()=>{var n;return(n=t.default)==null?void 0:n.call(t)}}}),_s=(e,t,n)=>({default:()=>t?Ke(e,t===!0?{}:t,n):Ke(Rp,{},n)}),Tp=ot({name:"NuxtPage",inheritAttrs:!1,props:{name:{type:String},transition:{type:[Boolean,Object],default:void 0},keepalive:{type:[Boolean,Object],default:void 0},route:{type:Object},pageKey:{type:[Function,String],default:null}},setup(e,{attrs:t}){const n=ve();return()=>Ke(Gl,{name:e.name,route:e.route,...t},{default:r=>{if(!r.Component)return;const s=Ep(r,e.pageKey),o=n.deferHydration(),i=!!(e.transition??r.route.meta.pageTransition??us),l=i&&xp([e.transition,r.route.meta.pageTransition,us,{onAfterLeave:()=>{n.callHook("page:transition:finish",r.Component)}}].filter(Boolean));return _s(Rr,i&&l,Cp(e.keepalive??r.route.meta.keepalive??Ad,Ke(Wi,{onPending:()=>n.callHook("page:start",r.Component),onResolve:()=>{un(()=>n.callHook("page:finish",r.Component).finally(o))}},{default:()=>Ke(Pp,{key:s,routeProps:r,pageKey:s,hasTransition:i})}))).default()}})}});function kp(e){return Array.isArray(e)?e:e?[e]:[]}function xp(e){const t=e.map(n=>({...n,onAfterLeave:kp(n.onAfterLeave)}));return Nh(...t)}const Pp=ot({name:"RouteProvider",props:["routeProps","pageKey","hasTransition"],setup(e){const t=e.pageKey,n=e.routeProps.route,r={};for(const s in e.routeProps.route)r[s]=Re(()=>t===e.pageKey?e.routeProps.route[s]:n[s]);return Jt("_route",We(r)),()=>Ke(e.routeProps.Component)}}),Ap=ot({name:"LayoutLoader",inheritAttrs:!1,props:{name:String},async setup(e,t){const n=await Bt[e.name]().then(r=>r.default||r);return()=>Ke(n,t.attrs,t.slots)}}),Sp=ot({name:"NuxtLayout",inheritAttrs:!1,props:{name:{type:[String,Boolean,Object],default:null}},setup(e,t){const n=Oe("_route"),r=n===nc()?$h():n,s=Re(()=>ge(e.name)??r.meta.layout??"default");return()=>{const o=s.value&&s.value in Bt,i=r.meta.layoutTransition??Pd;return _s(Rr,o&&i,{default:()=>_s(Ap,o&&{key:s.value,name:s.value,...t.attrs},t.slots).default()}).default()}}}),Op=ot({__name:"app",setup(e){return(t,n)=>{const r=Tp,s=Sp;return tt(),gt(s,null,{default:Ms(()=>[he(r)]),_:1})}}}),di={__name:"nuxt-root",setup(e){const t=ba(()=>zs(()=>import("./error-component.da006a4d.js"),[],import.meta.url).then(c=>c.default||c)),n=()=>null,r=ve(),s=r.deferHydration(),o=!1;Jt("_route",nc()),r.hooks.callHookWith(c=>c.map(a=>a()),"vue:setup");const i=xr();tl((c,a,u)=>{if(r.hooks.callHook("vue:error",c,a,u).catch(f=>console.error("[nuxt] Error in `vue:error` hook",f)),Kh(c)&&(c.fatal||c.unhandled))return et(r,Ft,[c]),!1});const{islandContext:l}=!1;return(c,a)=>(tt(),gt(Wi,{onResolve:ge(s)},{default:Ms(()=>[ge(i)?(tt(),gt(ge(t),{key:0,error:ge(i)},null,8,["error"])):ge(l)?(tt(),gt(ge(n),{key:1,context:ge(l)},null,8,["context"])):ge(o)?(tt(),gt(Pa(ge(o)),{key:2})):(tt(),gt(ge(Op),{key:3}))]),_:1},8,["onResolve"]))}};globalThis.$fetch||(globalThis.$fetch=Ef.create({baseURL:Rf()}));let hi;const Hp=Bf(vp);hi=async function(){var s,o;const n=!!((s=window.__NUXT__)!=null&&s.serverRendered||((o=document.getElementById("__NUXT_DATA__"))==null?void 0:o.dataset.ssr)==="true")?$u(di):Iu(di),r=Nf({vueApp:n});try{await Ff(r,Hp)}catch(i){await r.callHook("app:error",i),r.payload.error=r.payload.error||i}try{await r.hooks.callHook("app:created",n),await r.hooks.callHook("app:beforeMount",n),n.mount("#"+Sd),await r.hooks.callHook("app:mounted",n),await un()}catch(i){await r.callHook("app:error",i),r.payload.error=r.payload.error||i}},hi().catch(e=>{console.error("Error while mounting app:",e)});export{_l as A,qp as B,Lp as C,Np as D,ve as E,Pe as F,It as G,$n as H,Ns as I,wr as J,Ke as K,Fp as L,Tr as M,Yu as N,rf as O,Pl as P,zp as Q,Vp as R,zs as _,ot as a,Dp as b,gt as c,ba as d,hr as e,Re as f,Ja as g,fn as h,Up as i,jp as j,yl as k,me as l,Qa as m,Mp as n,tt as o,Kp as p,$p as q,qt as r,Jr as s,Ip as t,ge as u,Wp as v,_t as w,Bp as x,he as y,Ms as z};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.spotlight[data-v-04469bb6]{background:linear-gradient(45deg,#00dc82,#36e4da 50%,#0047e1);bottom:-30vh;filter:blur(20vh);height:40vh}.gradient-border[data-v-04469bb6]{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-radius:.5rem;position:relative}@media (prefers-color-scheme:light){.gradient-border[data-v-04469bb6]{background-color:#ffffff4d}.gradient-border[data-v-04469bb6]:before{background:linear-gradient(90deg,#e2e2e2,#e2e2e2 25%,#00dc82 50%,#36e4da 75%,#0047e1)}}@media (prefers-color-scheme:dark){.gradient-border[data-v-04469bb6]{background-color:#1414144d}.gradient-border[data-v-04469bb6]:before{background:linear-gradient(90deg,#303030,#303030 25%,#00dc82 50%,#36e4da 75%,#0047e1)}}.gradient-border[data-v-04469bb6]:before{background-size:400% auto;border-radius:.5rem;bottom:0;content:"";left:0;-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude;opacity:.5;padding:2px;position:absolute;right:0;top:0;transition:background-position .3s ease-in-out,opacity .2s ease-in-out;width:100%}.gradient-border[data-v-04469bb6]:hover:before{background-position:-50% 0;opacity:1}.bg-white[data-v-04469bb6]{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.cursor-pointer[data-v-04469bb6]{cursor:pointer}.flex[data-v-04469bb6]{display:flex}.grid[data-v-04469bb6]{display:grid}.place-content-center[data-v-04469bb6]{place-content:center}.items-center[data-v-04469bb6]{align-items:center}.justify-center[data-v-04469bb6]{justify-content:center}.font-sans[data-v-04469bb6]{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-medium[data-v-04469bb6]{font-weight:500}.font-light[data-v-04469bb6]{font-weight:300}.text-8xl[data-v-04469bb6]{font-size:6rem;line-height:1}.text-xl[data-v-04469bb6]{font-size:1.25rem;line-height:1.75rem}.leading-tight[data-v-04469bb6]{line-height:1.25}.mb-8[data-v-04469bb6]{margin-bottom:2rem}.mb-16[data-v-04469bb6]{margin-bottom:4rem}.max-w-520px[data-v-04469bb6]{max-width:520px}.min-h-screen[data-v-04469bb6]{min-height:100vh}.overflow-hidden[data-v-04469bb6]{overflow:hidden}.px-8[data-v-04469bb6]{padding-left:2rem;padding-right:2rem}.py-2[data-v-04469bb6]{padding-bottom:.5rem;padding-top:.5rem}.px-4[data-v-04469bb6]{padding-left:1rem;padding-right:1rem}.fixed[data-v-04469bb6]{position:fixed}.left-0[data-v-04469bb6]{left:0}.right-0[data-v-04469bb6]{right:0}.text-center[data-v-04469bb6]{text-align:center}.text-black[data-v-04469bb6]{--tw-text-opacity:1;color:rgba(0,0,0,var(--tw-text-opacity))}.antialiased[data-v-04469bb6]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.w-full[data-v-04469bb6]{width:100%}.z-10[data-v-04469bb6]{z-index:10}.z-20[data-v-04469bb6]{z-index:20}@media (min-width:640px){.sm\:text-4xl[data-v-04469bb6]{font-size:2.25rem;line-height:2.5rem}.sm\:text-xl[data-v-04469bb6]{font-size:1.25rem;line-height:1.75rem}.sm\:text-10xl[data-v-04469bb6]{font-size:10rem;line-height:1}.sm\:px-0[data-v-04469bb6]{padding-left:0;padding-right:0}.sm\:py-3[data-v-04469bb6]{padding-bottom:.75rem;padding-top:.75rem}.sm\:px-6[data-v-04469bb6]{padding-left:1.5rem;padding-right:1.5rem}}@media (prefers-color-scheme:dark){.dark\:bg-black[data-v-04469bb6]{--tw-bg-opacity:1;background-color:rgba(0,0,0,var(--tw-bg-opacity))}.dark\:text-white[data-v-04469bb6]{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{E as y,G as k,a as P,f as S,H as q,r as w,I as A,J as R,K as C,L as T,M as I,N as E,O as z,P as B,Q as L,R as j,o as U,b as V,k as p,t as b,y as D,z as H,A as M,C as O,D as $}from"./entry.aa8d5037.js";import{_ as F}from"./_plugin-vue_export-helper.c27b6911.js";const x=globalThis.requestIdleCallback||(e=>{const a=Date.now(),l={didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-a))};return setTimeout(()=>{e(l)},1)}),G=globalThis.cancelIdleCallback||(e=>{clearTimeout(e)}),Q=e=>{const a=y();a.isHydrating?a.hooks.hookOnce("app:suspense:resolve",()=>{x(e)}):x(e)};async function N(e,a=k()){const{path:l,matched:t}=a.resolve(e);if(!t.length||(a._routePreloaded||(a._routePreloaded=new Set),a._routePreloaded.has(l)))return;const r=a._preloadPromises=a._preloadPromises||[];if(r.length>4)return Promise.all(r).then(()=>N(e,a));a._routePreloaded.add(l);const s=t.map(n=>{var i;return(i=n.components)==null?void 0:i.default}).filter(n=>typeof n=="function");for(const n of s){const i=Promise.resolve(n()).catch(()=>{}).finally(()=>r.splice(r.indexOf(i)));r.push(i)}await Promise.all(r)}const J=(...e)=>e.find(a=>a!==void 0),K="noopener noreferrer";function X(e){const a=e.componentName||"NuxtLink",l=(t,r)=>{if(!t||e.trailingSlash!=="append"&&e.trailingSlash!=="remove")return t;const s=e.trailingSlash==="append"?z:B;if(typeof t=="string")return s(t,!0);const n="path"in t?t.path:r(t).path;return{...t,name:void 0,path:s(n,!0)}};return P({name:a,props:{to:{type:[String,Object],default:void 0,required:!1},href:{type:[String,Object],default:void 0,required:!1},target:{type:String,default:void 0,required:!1},rel:{type:String,default:void 0,required:!1},noRel:{type:Boolean,default:void 0,required:!1},prefetch:{type:Boolean,default:void 0,required:!1},noPrefetch:{type:Boolean,default:void 0,required:!1},activeClass:{type:String,default:void 0,required:!1},exactActiveClass:{type:String,default:void 0,required:!1},prefetchedClass:{type:String,default:void 0,required:!1},replace:{type:Boolean,default:void 0,required:!1},ariaCurrentValue:{type:String,default:void 0,required:!1},external:{type:Boolean,default:void 0,required:!1},custom:{type:Boolean,default:void 0,required:!1}},setup(t,{slots:r}){const s=k(),n=S(()=>{const o=t.to||t.href||"";return l(o,s.resolve)}),i=S(()=>t.external||t.target&&t.target!=="_self"?!0:typeof n.value=="object"?!1:n.value===""||q(n.value,{acceptRelative:!0})),h=w(!1),d=w(null),_=o=>{var f;d.value=t.custom?(f=o==null?void 0:o.$el)==null?void 0:f.nextElementSibling:o==null?void 0:o.$el};if(t.prefetch!==!1&&t.noPrefetch!==!0&&t.target!=="_blank"&&!Z()){const f=y();let m,c=null;A(()=>{const g=Y();Q(()=>{m=x(()=>{var v;(v=d==null?void 0:d.value)!=null&&v.tagName&&(c=g.observe(d.value,async()=>{c==null||c(),c=null;const u=typeof n.value=="string"?n.value:s.resolve(n.value).fullPath;await Promise.all([f.hooks.callHook("link:prefetch",u).catch(()=>{}),!i.value&&N(n.value,s).catch(()=>{})]),h.value=!0}))})})}),R(()=>{m&&G(m),c==null||c(),c=null})}return()=>{var g,v;if(!i.value){const u={ref:_,to:n.value,activeClass:t.activeClass||e.activeClass,exactActiveClass:t.exactActiveClass||e.exactActiveClass,replace:t.replace,ariaCurrentValue:t.ariaCurrentValue,custom:t.custom};return t.custom||(h.value&&(u.class=t.prefetchedClass||e.prefetchedClass),u.rel=t.rel),C(T("RouterLink"),u,r.default)}const o=typeof n.value=="object"?((g=s.resolve(n.value))==null?void 0:g.href)??null:n.value||null,f=t.target||null,m=t.noRel?null:J(t.rel,e.externalRelAttribute,o?K:"")||null,c=()=>L(o,{replace:t.replace});return t.custom?r.default?r.default({href:o,navigate:c,get route(){if(!o)return;const u=I(o);return{path:u.pathname,fullPath:u.pathname,get query(){return E(u.search)},hash:u.hash,params:{},name:void 0,matched:[],redirectedFrom:void 0,meta:{},href:o}},rel:m,target:f,isExternal:i.value,isActive:!1,isExactActive:!1}):null:C("a",{ref:d,href:o,rel:m,target:f},(v=r.default)==null?void 0:v.call(r))}}})}const W=X({componentName:"NuxtLink"});function Y(){const e=y();if(e._observer)return e._observer;let a=null;const l=new Map,t=(s,n)=>(a||(a=new IntersectionObserver(i=>{for(const h of i){const d=l.get(h.target);(h.isIntersecting||h.intersectionRatio>0)&&d&&d()}})),l.set(s,n),a.observe(s),()=>{l.delete(s),a.unobserve(s),l.size===0&&(a.disconnect(),a=null)});return e._observer={observe:t}}function Z(){const e=navigator.connection;return!!(e&&(e.saveData||/2g/.test(e.effectiveType)))}const ee=e=>(O("data-v-04469bb6"),e=e(),$(),e),te={class:"font-sans antialiased bg-white dark:bg-black text-black dark:text-white grid min-h-screen place-content-center overflow-hidden"},ae=ee(()=>p("div",{class:"fixed left-0 right-0 spotlight z-10"},null,-1)),ne={class:"max-w-520px text-center z-20"},re=["textContent"],oe=["textContent"],se={class:"w-full flex items-center justify-center"},le={__name:"error-404",props:{appName:{type:String,default:"Nuxt"},version:{type:String,default:""},statusCode:{type:Number,default:404},statusMessage:{type:String,default:"Not Found"},description:{type:String,default:"Sorry, the page you are looking for could not be found."},backHome:{type:String,default:"Go back home"}},setup(e){const a=e;return j({title:`${a.statusCode} - ${a.statusMessage} | ${a.appName}`,script:[],style:[{children:'*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p{margin:0}h1{font-size:inherit;font-weight:inherit}'}]}),(l,t)=>{const r=W;return U(),V("div",te,[ae,p("div",ne,[p("h1",{class:"text-8xl sm:text-10xl font-medium mb-8",textContent:b(e.statusCode)},null,8,re),p("p",{class:"text-xl px-8 sm:px-0 sm:text-4xl font-light mb-16 leading-tight",textContent:b(e.description)},null,8,oe),p("div",se,[D(r,{to:"/",class:"gradient-border text-md sm:text-xl py-2 px-4 sm:py-3 sm:px-6 cursor-pointer"},{default:H(()=>[M(b(e.backHome),1)]),_:1})])])])}}},ue=F(le,[["__scopeId","data-v-04469bb6"]]);export{ue as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.spotlight[data-v-06f637f2]{background:linear-gradient(45deg,#00dc82,#36e4da 50%,#0047e1);filter:blur(20vh)}.bg-white[data-v-06f637f2]{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.grid[data-v-06f637f2]{display:grid}.place-content-center[data-v-06f637f2]{place-content:center}.font-sans[data-v-06f637f2]{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-medium[data-v-06f637f2]{font-weight:500}.font-light[data-v-06f637f2]{font-weight:300}.h-1\/2[data-v-06f637f2]{height:50%}.text-8xl[data-v-06f637f2]{font-size:6rem;line-height:1}.text-xl[data-v-06f637f2]{font-size:1.25rem;line-height:1.75rem}.leading-tight[data-v-06f637f2]{line-height:1.25}.mb-8[data-v-06f637f2]{margin-bottom:2rem}.mb-16[data-v-06f637f2]{margin-bottom:4rem}.max-w-520px[data-v-06f637f2]{max-width:520px}.min-h-screen[data-v-06f637f2]{min-height:100vh}.overflow-hidden[data-v-06f637f2]{overflow:hidden}.px-8[data-v-06f637f2]{padding-left:2rem;padding-right:2rem}.fixed[data-v-06f637f2]{position:fixed}.left-0[data-v-06f637f2]{left:0}.right-0[data-v-06f637f2]{right:0}.-bottom-1\/2[data-v-06f637f2]{bottom:-50%}.text-center[data-v-06f637f2]{text-align:center}.text-black[data-v-06f637f2]{--tw-text-opacity:1;color:rgba(0,0,0,var(--tw-text-opacity))}.antialiased[data-v-06f637f2]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:640px){.sm\:text-4xl[data-v-06f637f2]{font-size:2.25rem;line-height:2.5rem}.sm\:text-10xl[data-v-06f637f2]{font-size:10rem;line-height:1}.sm\:px-0[data-v-06f637f2]{padding-left:0;padding-right:0}}@media (prefers-color-scheme:dark){.dark\:bg-black[data-v-06f637f2]{--tw-bg-opacity:1;background-color:rgba(0,0,0,var(--tw-bg-opacity))}.dark\:text-white[data-v-06f637f2]{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{R as i,o as r,b as a,k as e,t as s,C as n,D as l}from"./entry.aa8d5037.js";import{_ as d}from"./_plugin-vue_export-helper.c27b6911.js";const c=t=>(n("data-v-06f637f2"),t=t(),l(),t),p={class:"font-sans antialiased bg-white dark:bg-black text-black dark:text-white grid min-h-screen place-content-center overflow-hidden"},f=c(()=>e("div",{class:"fixed -bottom-1/2 left-0 right-0 h-1/2 spotlight"},null,-1)),h={class:"max-w-520px text-center"},m=["textContent"],g=["textContent"],x={__name:"error-500",props:{appName:{type:String,default:"Nuxt"},version:{type:String,default:""},statusCode:{type:Number,default:500},statusMessage:{type:String,default:"Server error"},description:{type:String,default:"This page is temporarily unavailable."}},setup(t){const o=t;return i({title:`${o.statusCode} - ${o.statusMessage} | ${o.appName}`,script:[],style:[{children:'*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p{margin:0}h1{font-size:inherit;font-weight:inherit}'}]}),(b,u)=>(r(),a("div",p,[f,e("div",h,[e("h1",{class:"text-8xl sm:text-10xl font-medium mb-8",textContent:s(t.statusCode)},null,8,m),e("p",{class:"text-xl px-8 sm:px-0 sm:text-4xl font-light mb-16 leading-tight",textContent:s(t.description)},null,8,g)])]))}},y=d(x,[["__scopeId","data-v-06f637f2"]]);export{y as default};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import{o as l,c as m,n as E,g as f,u as s,d as n,_ as o}from"./entry.aa8d5037.js";const g={__name:"nuxt-error-page",props:{error:Object},setup(c){const{error:t}=c;(t.stack||"").split(`
|
|
2
|
+
`).splice(1).map(e=>({text:e.replace("webpack:/","").replace(".vue",".js").trim(),internal:e.includes("node_modules")&&!e.includes(".cache")||e.includes("internal")||e.includes("new Promise")})).map(e=>`<span class="stack${e.internal?" internal":""}">${e.text}</span>`).join(`
|
|
3
|
+
`);const r=Number(t.statusCode||500),a=r===404,u=t.statusMessage??(a?"Page Not Found":"Internal Server Error"),i=t.message||t.toString(),p=void 0,_=a?n(()=>o(()=>import("./error-404.e238eac2.js"),["./error-404.e238eac2.js","./entry.aa8d5037.js","./entry.84652fbd.css","./_plugin-vue_export-helper.c27b6911.js","./error-404.0cd4f3dd.css"],import.meta.url).then(e=>e.default||e)):n(()=>o(()=>import("./error-500.c27f4368.js"),["./error-500.c27f4368.js","./entry.aa8d5037.js","./entry.84652fbd.css","./_plugin-vue_export-helper.c27b6911.js","./error-500.748cb764.css"],import.meta.url).then(e=>e.default||e));return(e,d)=>(l(),m(s(_),E(f({statusCode:s(r),statusMessage:s(u),description:s(i),stack:s(p)})),null,16))}},x=g;export{x as default};
|