@vitejs/devtools-self-inspect 0.0.0-alpha.34
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/LICENSE +21 -0
- package/README.md +35 -0
- package/dist/index.d.mts +6 -0
- package/dist/index.mjs +104 -0
- package/dist/nitro.json +15 -0
- package/dist/public/200.html +1 -0
- package/dist/public/404.html +1 -0
- package/dist/public/_nuxt/B7YRIwnr.js +1 -0
- package/dist/public/_nuxt/B9z6lp9R.js +1 -0
- package/dist/public/_nuxt/BAwwvtuq.js +1 -0
- package/dist/public/_nuxt/Bdlh4BwJ.js +1 -0
- package/dist/public/_nuxt/C8qyGLl5.js +1 -0
- package/dist/public/_nuxt/CF7QrbFx.js +1 -0
- package/dist/public/_nuxt/CHHO6nw6.js +1 -0
- package/dist/public/_nuxt/Cfhu6PrZ.js +1 -0
- package/dist/public/_nuxt/D-gbOT8o.js +3 -0
- package/dist/public/_nuxt/DN3n5YIz.js +1 -0
- package/dist/public/_nuxt/DODjDiif.js +1 -0
- package/dist/public/_nuxt/builds/latest.json +1 -0
- package/dist/public/_nuxt/builds/meta/051a0cfd-f18c-43c9-abd0-fde9834dfcdd.json +1 -0
- package/dist/public/_nuxt/entry.w3zDM-vf.css +1 -0
- package/dist/public/_nuxt/error-404.DlglkSik.css +1 -0
- package/dist/public/_nuxt/error-500.BbJeK9S9.css +1 -0
- package/dist/public/_nuxt/irXMpiV8.js +2 -0
- package/dist/public/index.html +1 -0
- package/package.json +48 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025-present, VoidZero Inc. and contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# @vitejs/devtools-self-inspect
|
|
2
|
+
|
|
3
|
+
A Vite DevTools plugin for inspecting the DevTools itself. Useful when developing or debugging DevTools plugins built with `@vitejs/devtools-kit`.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- List all registered RPC functions with their metadata (type, schema, cacheability, etc.)
|
|
8
|
+
- List all registered dock entries
|
|
9
|
+
- List all registered client scripts
|
|
10
|
+
- List all Vite plugins with DevTools support and their capabilities
|
|
11
|
+
|
|
12
|
+
## Installation
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
pnpm add -D @vitejs/devtools-self-inspect
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Usage
|
|
19
|
+
|
|
20
|
+
Add the plugin to your Vite config:
|
|
21
|
+
|
|
22
|
+
```ts
|
|
23
|
+
import { DevToolsSelfInspect } from '@vitejs/devtools-self-inspect'
|
|
24
|
+
// vite.config.ts
|
|
25
|
+
import { defineConfig } from 'vite'
|
|
26
|
+
|
|
27
|
+
export default defineConfig({
|
|
28
|
+
devtools: true,
|
|
29
|
+
plugins: [
|
|
30
|
+
DevToolsSelfInspect(),
|
|
31
|
+
],
|
|
32
|
+
})
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
A "Self Inspect" panel will appear in the DevTools dock, giving you a live view of the registered RPC functions, docks, client scripts, and DevTools-enabled plugins.
|
package/dist/index.d.mts
ADDED
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { fileURLToPath } from "node:url";
|
|
2
|
+
import { defineRpcFunction } from "@vitejs/devtools-kit";
|
|
3
|
+
//#region src/dirs.ts
|
|
4
|
+
const clientPublicDir = fileURLToPath(new URL("../dist/public", import.meta.url));
|
|
5
|
+
//#endregion
|
|
6
|
+
//#region src/node/rpc/functions/get-client-scripts.ts
|
|
7
|
+
const getClientScripts = defineRpcFunction({
|
|
8
|
+
name: "devtoolskit:self-inspect:get-client-scripts",
|
|
9
|
+
type: "query",
|
|
10
|
+
setup: (context) => {
|
|
11
|
+
return { handler: async () => {
|
|
12
|
+
const scripts = [];
|
|
13
|
+
for (const dock of context.docks.values()) if (dock.type === "action") scripts.push({
|
|
14
|
+
dockId: dock.id,
|
|
15
|
+
dockTitle: dock.title,
|
|
16
|
+
dockType: dock.type,
|
|
17
|
+
script: dock.action
|
|
18
|
+
});
|
|
19
|
+
else if (dock.type === "custom-render") scripts.push({
|
|
20
|
+
dockId: dock.id,
|
|
21
|
+
dockTitle: dock.title,
|
|
22
|
+
dockType: dock.type,
|
|
23
|
+
script: dock.renderer
|
|
24
|
+
});
|
|
25
|
+
else if (dock.type === "iframe" && dock.clientScript) scripts.push({
|
|
26
|
+
dockId: dock.id,
|
|
27
|
+
dockTitle: dock.title,
|
|
28
|
+
dockType: dock.type,
|
|
29
|
+
script: dock.clientScript
|
|
30
|
+
});
|
|
31
|
+
return scripts;
|
|
32
|
+
} };
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
//#endregion
|
|
36
|
+
//#region src/node/rpc/functions/get-devtools-plugins.ts
|
|
37
|
+
const getDevtoolsPlugins = defineRpcFunction({
|
|
38
|
+
name: "devtoolskit:self-inspect:get-devtools-plugins",
|
|
39
|
+
type: "query",
|
|
40
|
+
setup: (context) => {
|
|
41
|
+
return { handler: async () => {
|
|
42
|
+
return context.viteConfig.plugins.map((plugin) => ({
|
|
43
|
+
name: plugin.name,
|
|
44
|
+
hasDevtools: "devtools" in plugin,
|
|
45
|
+
hasSetup: !!plugin.devtools?.setup,
|
|
46
|
+
capabilities: plugin.devtools?.capabilities
|
|
47
|
+
}));
|
|
48
|
+
} };
|
|
49
|
+
}
|
|
50
|
+
});
|
|
51
|
+
//#endregion
|
|
52
|
+
//#region src/node/rpc/index.ts
|
|
53
|
+
const rpcFunctions = [
|
|
54
|
+
defineRpcFunction({
|
|
55
|
+
name: "devtoolskit:self-inspect:get-docks",
|
|
56
|
+
type: "query",
|
|
57
|
+
setup: (context) => {
|
|
58
|
+
return { handler: async () => {
|
|
59
|
+
return context.docks.values();
|
|
60
|
+
} };
|
|
61
|
+
}
|
|
62
|
+
}),
|
|
63
|
+
defineRpcFunction({
|
|
64
|
+
name: "devtoolskit:self-inspect:get-rpc-functions",
|
|
65
|
+
type: "query",
|
|
66
|
+
setup: (context) => {
|
|
67
|
+
return { handler: async () => {
|
|
68
|
+
return Array.from(context.rpc.definitions.entries()).map(([name, fn]) => ({
|
|
69
|
+
name,
|
|
70
|
+
type: fn.type ?? "query",
|
|
71
|
+
cacheable: fn.cacheable ?? false,
|
|
72
|
+
hasArgs: !!fn.args,
|
|
73
|
+
hasReturns: !!fn.returns,
|
|
74
|
+
hasDump: !!fn.dump,
|
|
75
|
+
hasSetup: !!fn.setup,
|
|
76
|
+
hasHandler: !!fn.handler
|
|
77
|
+
}));
|
|
78
|
+
} };
|
|
79
|
+
}
|
|
80
|
+
}),
|
|
81
|
+
getClientScripts,
|
|
82
|
+
getDevtoolsPlugins
|
|
83
|
+
];
|
|
84
|
+
//#endregion
|
|
85
|
+
//#region src/node/plugin.ts
|
|
86
|
+
function DevToolsSelfInspect() {
|
|
87
|
+
return {
|
|
88
|
+
name: "vite:devtools:self-inspect",
|
|
89
|
+
devtools: { setup(ctx) {
|
|
90
|
+
for (const fn of rpcFunctions) ctx.rpc.register(fn);
|
|
91
|
+
ctx.views.hostStatic("/.devtools-self-inspect/", clientPublicDir);
|
|
92
|
+
ctx.docks.register({
|
|
93
|
+
id: "self-inspect",
|
|
94
|
+
title: "Self Inspect",
|
|
95
|
+
category: "advanced",
|
|
96
|
+
icon: "ph:stethoscope-duotone",
|
|
97
|
+
type: "iframe",
|
|
98
|
+
url: "/.devtools-self-inspect/"
|
|
99
|
+
});
|
|
100
|
+
} }
|
|
101
|
+
};
|
|
102
|
+
}
|
|
103
|
+
//#endregion
|
|
104
|
+
export { DevToolsSelfInspect };
|
package/dist/nitro.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><script type="importmap">{"imports":{"#entry":"/.devtools-self-inspect/_nuxt/irXMpiV8.js"}}</script><title>DevTools Self Inspect</title><link rel="stylesheet" href="/.devtools-self-inspect/_nuxt/entry.w3zDM-vf.css" crossorigin><link rel="modulepreload" as="script" crossorigin href="/.devtools-self-inspect/_nuxt/irXMpiV8.js"><link rel="modulepreload" as="script" crossorigin href="/.devtools-self-inspect/_nuxt/D-gbOT8o.js"><link rel="modulepreload" as="script" crossorigin href="/.devtools-self-inspect/_nuxt/DODjDiif.js"><link rel="modulepreload" as="script" crossorigin href="/.devtools-self-inspect/_nuxt/BAwwvtuq.js"><script type="module" src="/.devtools-self-inspect/_nuxt/irXMpiV8.js" crossorigin></script><meta name="description" content="DevTools for inspecting the DevTools itself"><script id="unhead:payload" type="application/json">{"title":"DevTools Self Inspect"}</script></head><body><div id="__nuxt"></div><div id="teleports"></div><script>window.__NUXT__={};window.__NUXT__.config={public:{},app:{baseURL:"/.devtools-self-inspect/",buildId:"051a0cfd-f18c-43c9-abd0-fde9834dfcdd",buildAssetsDir:"/_nuxt/",cdnURL:""}}</script><script type="application/json" data-nuxt-data="nuxt-app" data-ssr="false" id="__NUXT_DATA__">[{"prerenderedAt":1,"serverRendered":2},1773287385275,false]</script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><script type="importmap">{"imports":{"#entry":"/.devtools-self-inspect/_nuxt/irXMpiV8.js"}}</script><title>DevTools Self Inspect</title><link rel="stylesheet" href="/.devtools-self-inspect/_nuxt/entry.w3zDM-vf.css" crossorigin><link rel="modulepreload" as="script" crossorigin href="/.devtools-self-inspect/_nuxt/irXMpiV8.js"><link rel="modulepreload" as="script" crossorigin href="/.devtools-self-inspect/_nuxt/D-gbOT8o.js"><link rel="modulepreload" as="script" crossorigin href="/.devtools-self-inspect/_nuxt/DODjDiif.js"><link rel="modulepreload" as="script" crossorigin href="/.devtools-self-inspect/_nuxt/BAwwvtuq.js"><script type="module" src="/.devtools-self-inspect/_nuxt/irXMpiV8.js" crossorigin></script><meta name="description" content="DevTools for inspecting the DevTools itself"><script id="unhead:payload" type="application/json">{"title":"DevTools Self Inspect"}</script></head><body><div id="__nuxt"></div><div id="teleports"></div><script>window.__NUXT__={};window.__NUXT__.config={public:{},app:{baseURL:"/.devtools-self-inspect/",buildId:"051a0cfd-f18c-43c9-abd0-fde9834dfcdd",buildAssetsDir:"/_nuxt/",cdnURL:""}}</script><script type="application/json" data-nuxt-data="nuxt-app" data-ssr="false" id="__NUXT_DATA__">[{"prerenderedAt":1,"serverRendered":2},1773287385275,false]</script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{B as e,E as t,Et as n,H as r,O as i,Ot as a,S as o,T as s,U as c,b as l,it as u,m as d,v as f,x as p,y as m,z as h}from"./D-gbOT8o.js";import{n as g,t as _}from"#entry";var v={flex:`~ col gap-3`,p4:``},y={"text-xs":``,op60:``},b={flex:`~ items-center gap-2`,mb1:``,mt2:``},x={"text-xs":``,"font-medium":``,op50:``},S={"w-full":``,"text-sm":``},C={px2:``,"py1.5":``,"font-mono":``,"text-xs":``,flex:`~ items-center gap-1`},w={key:0,"i-ph-eye-slash":``,"text-xs":``,op60:``},T={px2:``,"py1.5":``},E={px2:``,"py1.5":``},D={px2:``,"py1.5":``,"text-xs":``},O={key:0,"font-mono":``,op60:``},k={key:1,ml1:``},A={key:2,op20:``},j=i({__name:`DocksList`,props:{docks:{}},setup(i){let l=i,u=f(()=>{let e=new Map;for(let t of l.docks){let n=t.category||`default`;e.has(n)||e.set(n,[]),e.get(n).push(t)}return Array.from(e.entries())});function h(e){if(e.type===`iframe`)return e.url}function g(e){return e.type===`iframe`&&!!e.clientScript}return(i,f)=>{let _=c(`DisplayNumberBadge`),j=c(`DisplayBadge`);return e(),o(`div`,v,[m(`div`,y,a(l.docks.length)+` docks registered `,1),(e(!0),o(d,null,r(u.value,([i,c])=>(e(),o(`div`,{key:i},[m(`div`,b,[m(`span`,x,a(i),1),t(_,{value:c.length},null,8,[`value`])]),m(`table`,S,[f[0]||=m(`thead`,null,[m(`tr`,{border:`b base`,"text-left":``},[m(`th`,{px2:``,py1:``,"font-medium":``,op60:``,"text-xs":``},` ID `),m(`th`,{px2:``,py1:``,"font-medium":``,op60:``,"text-xs":``},` Title `),m(`th`,{px2:``,py1:``,"font-medium":``,op60:``,"text-xs":``},` Type `),m(`th`,{px2:``,py1:``,"font-medium":``,op60:``,"text-xs":``},` Details `)])],-1),m(`tbody`,null,[(e(!0),o(d,null,r(c,r=>(e(),o(`tr`,{key:r.id,border:`b base`,"hover:bg-active":``,class:n(r.isHidden?`op40`:``)},[m(`td`,C,[r.isHidden?(e(),o(`span`,w)):p(``,!0),s(` `+a(r.id),1)]),m(`td`,T,a(r.title),1),m(`td`,E,[t(j,{text:r.type},null,8,[`text`])]),m(`td`,D,[h(r)?(e(),o(`span`,O,a(h(r)),1)):p(``,!0),g(r)?(e(),o(`span`,k,[t(j,{text:`client-script`})])):p(``,!0),!h(r)&&!g(r)?(e(),o(`span`,A,`-`)):p(``,!0)])],2))),128))])])]))),128))])}}}),M=Object.assign(j,{__name:`DocksList`}),N=i({__name:`docks`,setup(t){let n=_(),r=u();async function i(){r.value=await n.value.call(`devtoolskit:self-inspect:get-docks`)}return g(i),h(i),(t,n)=>{let i=c(`VisualLoading`),a=M;return r.value?(e(),l(a,{key:1,docks:r.value},null,8,[`docks`])):(e(),l(i,{key:0}))}}});export{N as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{B as e,Ot as t,S as n,y as r}from"./D-gbOT8o.js";import{i}from"#entry";import{t as a}from"./CHHO6nw6.js";var o={class:`antialiased bg-white dark:bg-[#020420] dark:text-white font-sans grid min-h-screen overflow-hidden place-content-center text-[#020420] tracking-wide`},s={class:`max-w-520px text-center`},c=[`textContent`],l=[`textContent`],u=[`textContent`],d=a({__name:`error-500`,props:{appName:{type:String,default:`Nuxt`},status:{type:Number,default:500},statusText:{type:String,default:`Internal server error`},description:{type:String,default:`This page is temporarily unavailable.`},refresh:{type:String,default:`Refresh this page`}},setup(a){let d=a;return i({title:`${d.status} - ${d.statusText} | ${d.appName}`,script:[{innerHTML:`!function(){const e=document.createElement("link").relList;if(!(e&&e.supports&&e.supports("modulepreload"))){for(const e of document.querySelectorAll('link[rel="modulepreload"]'))r(e);new MutationObserver(e=>{for(const o of e)if("childList"===o.type)for(const e of o.addedNodes)"LINK"===e.tagName&&"modulepreload"===e.rel&&r(e)}).observe(document,{childList:!0,subtree:!0})}function r(e){if(e.ep)return;e.ep=!0;const r=function(e){const r={};return e.integrity&&(r.integrity=e.integrity),e.referrerPolicy&&(r.referrerPolicy=e.referrerPolicy),"use-credentials"===e.crossOrigin?r.credentials="include":"anonymous"===e.crossOrigin?r.credentials="omit":r.credentials="same-origin",r}(e);fetch(e.href,r)}}();`}],style:[{innerHTML:`*,:after,:before{border-color:var(--un-default-border-color,#e5e7eb);border-style:solid;border-width:0;box-sizing:border-box}:after,:before{--un-content:""}html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}h1,h2{font-size:inherit;font-weight:inherit}h1,h2,p{margin:0}*,: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: }`}]}),(i,d)=>(e(),n(`div`,o,[r(`div`,s,[r(`h1`,{class:`font-semibold leading-none mb-4 sm:text-[110px] tabular-nums text-[80px]`,textContent:t(a.status)},null,8,c),r(`h2`,{class:`font-semibold mb-2 sm:text-3xl text-2xl`,textContent:t(a.statusText)},null,8,l),r(`p`,{class:`mb-4 px-2 text-[#64748B] text-md`,textContent:t(a.description)},null,8,u)])]))}},[[`__scopeId`,`data-v-bb5eccfe`]]);export{d as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{M as e,N as t,at as n,i as r}from"./D-gbOT8o.js";var i=/"(?:_|\\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*:/,a=/"(?: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*:/,o=/^\s*["[{]|^\s*-?\d{1,16}(\.\d{1,17})?([Ee][+-]?\d+)?\s*$/;function s(e,t){if(e===`__proto__`||e===`constructor`&&t&&typeof t==`object`&&`prototype`in t){c(e);return}return t}function c(e){console.warn(`[destr] Dropping "${e}" key to prevent prototype pollution.`)}function l(e,t={}){if(typeof e!=`string`)return e;if(e[0]===`"`&&e[e.length-1]===`"`&&e.indexOf(`\\`)===-1)return e.slice(1,-1);let n=e.trim();if(n.length<=9)switch(n.toLowerCase()){case`true`:return!0;case`false`:return!1;case`undefined`:return;case`null`:return null;case`nan`:return NaN;case`infinity`:return 1/0;case`-infinity`:return-1/0}if(!o.test(e)){if(t.strict)throw SyntaxError(`[destr] Invalid JSON`);return e}try{if(i.test(e)||a.test(e)){if(t.strict)throw Error(`[destr] Possible prototype pollution`);return JSON.parse(e,s)}return JSON.parse(e)}catch(n){if(t.strict)throw n;return e}}String.fromCharCode;var u=/#/g,d=/&/g,ee=/\//g,te=/=/g,f=/\?/g,p=/\+/g,ne=/%5e/gi,m=/%60/gi,h=/%7c/gi,g=/%20/gi,re=/%2f/gi,ie=/%252f/gi;function _(e){return encodeURI(``+e).replace(h,`|`)}function v(e){return _(typeof e==`string`?e:JSON.stringify(e)).replace(p,`%2B`).replace(g,`+`).replace(u,`%23`).replace(d,`%26`).replace(m,"`").replace(ne,`^`).replace(ee,`%2F`)}function y(e){return v(e).replace(te,`%3D`)}function ae(e){return _(e).replace(u,`%23`).replace(f,`%3F`).replace(ie,`%2F`).replace(d,`%26`).replace(p,`%2B`)}function b(e=``){try{return decodeURIComponent(``+e)}catch{return``+e}}function oe(e){return b(e.replace(re,`%252F`))}function x(e){return b(e.replace(p,` `))}function S(e){return b(e.replace(p,` `))}function C(e=``){let t=Object.create(null);e[0]===`?`&&(e=e.slice(1));for(let n of e.split(`&`)){let e=n.match(/([^=]+)=?(.*)/)||[];if(e.length<2)continue;let r=x(e[1]);if(r===`__proto__`||r===`constructor`)continue;let i=S(e[2]||``);t[r]===void 0?t[r]=i:Array.isArray(t[r])?t[r].push(i):t[r]=[t[r],i]}return t}function w(e,t){return(typeof t==`number`||typeof t==`boolean`)&&(t=String(t)),t?Array.isArray(t)?t.map(t=>`${y(e)}=${v(t)}`).join(`&`):`${y(e)}=${v(t)}`:y(e)}function T(e){return Object.keys(e).filter(t=>e[t]!==void 0).map(t=>w(t,e[t])).filter(Boolean).join(`&`)}var E=/^[\s\w\0+.-]{2,}:([/\\]{1,2})/,se=/^[\s\w\0+.-]{2,}:([/\\]{2})?/,ce=/^([/\\]\s*){2,}[^/\\]/,le=/^[\s\0]*(blob|data|javascript|vbscript):$/i,ue=/\/$|\/\?|\/#/,de=/^\.?\//;function D(e,t={}){return typeof t==`boolean`&&(t={acceptRelative:t}),t.strict?E.test(e):se.test(e)||(t.acceptRelative?ce.test(e):!1)}function fe(e){return!!e&&le.test(e)}function O(e=``,t){return t?ue.test(e):e.endsWith(`/`)}function k(e=``,t){if(!t)return(O(e)?e.slice(0,-1):e)||`/`;if(!O(e,!0))return e||`/`;let n=e,r=``,i=e.indexOf(`#`);i!==-1&&(n=e.slice(0,i),r=e.slice(i));let[a,...o]=n.split(`?`);return((a.endsWith(`/`)?a.slice(0,-1):a)||`/`)+(o.length>0?`?${o.join(`?`)}`:``)+r}function A(e=``,t){if(!t)return e.endsWith(`/`)?e:e+`/`;if(O(e,!0))return e||`/`;let n=e,r=``,i=e.indexOf(`#`);if(i!==-1&&(n=e.slice(0,i),r=e.slice(i),!n))return r;let[a,...o]=n.split(`?`);return a+`/`+(o.length>0?`?${o.join(`?`)}`:``)+r}function j(e,t){if(P(t)||D(e))return e;let n=k(t);if(e.startsWith(n)){let t=e[n.length];if(!t||t===`/`||t===`?`)return e}return I(n,e)}function M(e,t){if(P(t))return e;let n=k(t);if(!e.startsWith(n))return e;let r=e[n.length];if(r&&r!==`/`&&r!==`?`)return e;let i=e.slice(n.length);return i[0]===`/`?i:`/`+i}function N(e,t){let n=B(e);return n.search=T({...C(n.search),...t}),pe(n)}function P(e){return!e||e===`/`}function F(e){return e&&e!==`/`}function I(e,...t){let n=e||``;for(let e of t.filter(e=>F(e)))if(n){let t=e.replace(de,``);n=A(n)+t}else n=e;return n}function L(...e){let t=/\/(?!\/)/,n=e.filter(Boolean),r=[],i=0;for(let e of n)if(!(!e||e===`/`)){for(let[n,a]of e.split(t).entries())if(!(!a||a===`.`)){if(a===`..`){if(r.length===1&&D(r[0]))continue;r.pop(),i--;continue}if(n===1&&r[r.length-1]?.endsWith(`:/`)){r[r.length-1]+=`/`+a;continue}r.push(a),i++}}let a=r.join(`/`);return i>=0?n[0]?.startsWith(`/`)&&!a.startsWith(`/`)?a=`/`+a:n[0]?.startsWith(`./`)&&!a.startsWith(`./`)&&(a=`./`+a):a=`../`.repeat(-1*i)+a,n[n.length-1]?.endsWith(`/`)&&!a.endsWith(`/`)&&(a+=`/`),a}function R(e,t){return b(k(e))===b(k(t))}var z=Symbol.for(`ufo:protocolRelative`);function B(e=``,t){let n=e.match(/^[\s\0]*(blob:|data:|javascript:|vbscript:)(.*)/i);if(n){let[,e,t=``]=n;return{protocol:e.toLowerCase(),pathname:t,href:e+t,auth:``,host:``,search:``,hash:``}}if(!D(e,{acceptRelative:!0}))return t?B(t+e):V(e);let[,r=``,i,a=``]=e.replace(/\\/g,`/`).match(/^[\s\0]*([\w+.-]{2,}:)?\/\/([^/@]+@)?(.*)/)||[],[,o=``,s=``]=a.match(/([^#/?]*)(.*)?/)||[];r===`file:`&&(s=s.replace(/\/(?=[A-Za-z]:)/,``));let{pathname:c,search:l,hash:u}=V(s);return{protocol:r.toLowerCase(),auth:i?i.slice(0,Math.max(0,i.length-1)):``,host:o,pathname:c,search:l,hash:u,[z]:!r}}function V(e=``){let[t=``,n=``,r=``]=(e.match(/([^#?]*)(\?[^#]*)?(#.*)?/)||[]).splice(1);return{pathname:t,search:n,hash:r}}function pe(e){let t=e.pathname||``,n=e.search?(e.search.startsWith(`?`)?``:`?`)+e.search:``,r=e.hash||``,i=e.auth?e.auth+`@`:``,a=e.host||``;return(e.protocol||e[z]?(e.protocol||``)+`//`:``)+i+a+t+n+r}function H(e){if(typeof e!=`object`||!e)return!1;let t=Object.getPrototypeOf(e);return t!==null&&t!==Object.prototype&&Object.getPrototypeOf(t)!==null||Symbol.iterator in e?!1:Symbol.toStringTag in e?Object.prototype.toString.call(e)===`[object Module]`:!0}function U(e,t,n=`.`,r){if(!H(t))return U(e,{},n,r);let i=Object.assign({},t);for(let t in e){if(t===`__proto__`||t===`constructor`)continue;let a=e[t];a!=null&&(r&&r(i,t,a,n)||(Array.isArray(a)&&Array.isArray(i[t])?i[t]=[...a,...i[t]]:H(a)&&H(i[t])?i[t]=U(a,i[t],(n?`${n}.`:``)+t.toString(),r):i[t]=a))}return i}function me(e){return(...t)=>t.reduce((t,n)=>U(t,n,``,e),{})}var W=me();function he(e,t){try{return t in e}catch{return!1}}var G=class extends Error{static __h3_error__=!0;statusCode=500;fatal=!1;unhandled=!1;statusMessage;data;cause;constructor(e,t={}){super(e,t),t.cause&&!this.cause&&(this.cause=t.cause)}toJSON(){let e={message:this.message,statusCode:q(this.statusCode,500)};return this.statusMessage&&(e.statusMessage=K(this.statusMessage)),this.data!==void 0&&(e.data=this.data),e}};function ge(e){if(typeof e==`string`)return new G(e);if(_e(e))return e;let t=new G(e.message??e.statusMessage??``,{cause:e.cause||e});if(he(e,`stack`))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=q(e.statusCode,t.statusCode):e.status&&(t.statusCode=q(e.status,t.statusCode)),e.statusMessage?t.statusMessage=e.statusMessage:e.statusText&&(t.statusMessage=e.statusText),t.statusMessage){let e=t.statusMessage;K(t.statusMessage)!==e&&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 _e(e){return e?.constructor?.__h3_error__===!0}var ve=/[^\u0009\u0020-\u007E]/g;function K(e=``){return e.replace(ve,``)}function q(e,t=200){return!e||(typeof e==`string`&&(e=Number.parseInt(e,10)),e<100||e>999)?t:e}globalThis.Headers,globalThis.Response;var ye=Symbol(`layout-meta`),J=Symbol(`route`);import.meta.url.replace(/\/app\/.*$/,`/`);var Y=()=>r()?.$router,be=()=>e()?t(J,r()._route):r()._route;function xe(e){return e}var Se=()=>{try{if(r()._processingMiddleware)return!0}catch{return!1}return!1},Ce=(e,t)=>{e||=`/`;let n=typeof e==`string`?e:`path`in e?X(e):Y().resolve(e).href;if(t?.open){let{target:e=`_blank`,windowFeatures:r={}}=t.open,i=[];for(let[e,t]of Object.entries(r))t!==void 0&&i.push(`${e.toLowerCase()}=${t}`);return open(n,e,i.join(`, `)),Promise.resolve()}let i=D(n,{acceptRelative:!0}),a=t?.external||i;if(a){if(!t?.external)throw Error("Navigating to an external URL is not allowed by default. Use `navigateTo(url, { external: true })`.");let{protocol:e}=new URL(n,window.location.href);if(e&&fe(e))throw Error(`Cannot navigate to a URL with '${e}' protocol.`)}let o=Se();if(!a&&o){if(t?.replace){if(typeof e==`string`){let{pathname:t,search:n,hash:r}=B(e);return{path:t,...n&&{query:C(n)},...r&&{hash:r},replace:!0}}return{...e,replace:!0}}return e}let s=Y(),c=r();if(a)return c._scope.stop(),t?.replace?location.replace(n):location.href=n,o?c.isHydrating?new Promise(()=>{}):!1:Promise.resolve();let l=typeof e==`string`?Z(e):e;return t?.replace?s.replace(l):s.push(l)};function X(e){return N(e.path||``,e.query||{})+(e.hash||``)}function Z(e){let t=B(e);return ae(oe(t.pathname))+t.search+t.hash}var we=`__nuxt_error`,Q=()=>n(r().payload,`error`),Te=e=>{let t=$(e);try{let e=Q();r().hooks.callHook(`app:error`,t),e.value||=t}catch{throw t}return t},Ee=async(e={})=>{let t=r(),n=Q();t.callHook(`app:error:cleared`,e),e.redirect&&await Y().replace(e.redirect),n.value=void 0},De=e=>!!e&&typeof e==`object`&&`__nuxt_error`in e,$=e=>{typeof e!=`string`&&e.statusText&&(e.message??=e.statusText);let t=ge(e);return Object.defineProperty(t,we,{value:!0,configurable:!1,writable:!1}),Object.defineProperty(t,`status`,{get:()=>t.statusCode,configurable:!0}),Object.defineProperty(t,`statusText`,{get:()=>t.statusMessage,configurable:!0}),t};export{M as C,A as S,l as T,L as _,Q as a,j as b,Ce as c,Y as d,ye as f,R as g,D as h,Te as i,X as l,W as m,$ as n,xe as o,J as p,De as r,Z as s,Ee as t,be as u,I as v,k as w,N as x,C as y};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{B as e,E as t,H as n,J as r,O as i,Ot as a,S as o,T as s,U as c,b as l,it as u,m as d,nt as f,v as p,x as m,y as h,z as g}from"./D-gbOT8o.js";import{a as _}from"./DODjDiif.js";import{n as v,t as y}from"#entry";var b={flex:`~ col gap-3`,p4:``},x={flex:`~ items-center gap-3 flex-wrap`},S={flex:`~ items-center gap-2`,"flex-1":``,"min-w-50":``},C={flex:`~ items-center gap-2`,"text-xs":``,op60:``},w={flex:`~ items-center gap-2`,mb1:``,mt2:``},T={"font-mono":``,"text-xs":``,op50:``},E={"w-full":``,"text-sm":``},D=[`title`],O={px2:``,"py1.5":``},k={px2:``,"py1.5":``,"text-center":``},A={key:0,"i-ph-check":``,"text-green":``},j={key:1,op20:``},M={px2:``,"py1.5":``,"text-center":``},N={key:0,flex:`~ items-center justify-center gap-1`},P={key:1,op20:``},F={px2:``,"py1.5":``,"text-center":``},I={key:0,"i-ph-check":``,"text-green":``},L={key:1,op20:``},R=i({__name:`RpcFunctionsList`,props:{functions:{}},setup(i){let u=i,g=f(``),v=p(()=>{let e=g.value.toLowerCase();return e?u.functions.filter(t=>t.name.toLowerCase().includes(e)):u.functions}),y=p(()=>{let e={};for(let t of u.functions)e[t.type]=(e[t.type]||0)+1;return e});function R(e){let t=e.split(`:`);return t.length<=1?`(other)`:t.slice(0,-1).join(`:`)}function z(e){return e.split(`:`).at(-1)}let B=p(()=>{let e=new Map;for(let t of v.value){let n=R(t.name);e.has(n)||e.set(n,[]),e.get(n).push(t)}return Array.from(e.entries()).sort(([e],[t])=>e.localeCompare(t))});return(i,f)=>{let p=c(`DisplayBadge`),v=c(`DisplayNumberBadge`);return e(),o(`div`,b,[h(`div`,x,[h(`div`,S,[f[1]||=h(`div`,{"i-ph-magnifying-glass":``,op40:``},null,-1),r(h(`input`,{"onUpdate:modelValue":f[0]||=e=>g.value=e,placeholder:`Filter functions...`,border:`~ base rounded`,"bg-transparent":``,px2:``,py1:``,"text-sm":``,"flex-1":``,"outline-none":``,"focus:border-primary":``},null,512),[[_,g.value]])]),h(`div`,C,[h(`span`,null,a(u.functions.length)+` total`,1),f[2]||=h(`span`,{op30:``},`|`,-1),(e(!0),o(d,null,n(y.value,(n,r)=>(e(),o(`span`,{key:r},[t(p,{text:String(r)},null,8,[`text`]),s(` `+a(n),1)]))),128))])]),(e(!0),o(d,null,n(B.value,([r,i])=>(e(),o(`div`,{key:r},[h(`div`,w,[h(`span`,T,a(r),1),t(v,{value:i.length},null,8,[`value`])]),h(`table`,E,[f[3]||=h(`thead`,null,[h(`tr`,{border:`b base`,"text-left":``},[h(`th`,{px2:``,py1:``,"font-medium":``,op60:``,"text-xs":``},` Name `),h(`th`,{px2:``,py1:``,"font-medium":``,op60:``,"text-xs":``},` Type `),h(`th`,{px2:``,py1:``,"font-medium":``,op60:``,"text-xs":``,"text-center":``},` Cacheable `),h(`th`,{px2:``,py1:``,"font-medium":``,op60:``,"text-xs":``,"text-center":``},` Schema `),h(`th`,{px2:``,py1:``,"font-medium":``,op60:``,"text-xs":``,"text-center":``},` Dump `)])],-1),h(`tbody`,null,[(e(!0),o(d,null,n(i,n=>(e(),o(`tr`,{key:n.name,border:`b base`,"hover:bg-active":``},[h(`td`,{px2:``,"py1.5":``,"font-mono":``,"text-xs":``,title:n.name},a(z(n.name)),9,D),h(`td`,O,[t(p,{text:n.type},null,8,[`text`])]),h(`td`,k,[n.cacheable?(e(),o(`span`,A)):(e(),o(`span`,j,`-`))]),h(`td`,M,[n.hasArgs||n.hasReturns?(e(),o(`span`,N,[n.hasArgs?(e(),l(p,{key:0,text:`args`})):m(``,!0),n.hasReturns?(e(),l(p,{key:1,text:`returns`})):m(``,!0)])):(e(),o(`span`,P,`-`))]),h(`td`,F,[n.hasDump?(e(),o(`span`,I)):(e(),o(`span`,L,`-`))])]))),128))])])]))),128))])}}}),z=Object.assign(R,{__name:`RpcFunctionsList`}),B=i({__name:`rpc`,setup(t){let n=y(),r=u();async function i(){r.value=await n.value.call(`devtoolskit:self-inspect:get-rpc-functions`)}return v(i),g(i),(t,n)=>{let i=c(`VisualLoading`),a=z;return r.value?(e(),l(a,{key:1,functions:r.value},null,8,[`functions`])):(e(),l(i,{key:0}))}}});export{B as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{B as e,E as t,Ot as n,S as r,T as i,q as a,y as o}from"./D-gbOT8o.js";import"./BAwwvtuq.js";import{i as s,r as c}from"#entry";import{t as l}from"./CHHO6nw6.js";var u={class:`antialiased bg-white dark:bg-[#020420] dark:text-white font-sans grid min-h-screen overflow-hidden place-content-center text-[#020420] tracking-wide`},d={class:`max-w-520px text-center`},f=[`textContent`],p=[`textContent`],m=[`textContent`],h={class:`flex items-center justify-center w-full`},g=l({__name:`error-404`,props:{appName:{type:String,default:`Nuxt`},status:{type:Number,default:404},statusText:{type:String,default:`Page 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(l){let g=l;return s({title:`${g.status} - ${g.statusText} | ${g.appName}`,script:[{innerHTML:`!function(){const e=document.createElement("link").relList;if(!(e&&e.supports&&e.supports("modulepreload"))){for(const e of document.querySelectorAll('link[rel="modulepreload"]'))r(e);new MutationObserver(e=>{for(const o of e)if("childList"===o.type)for(const e of o.addedNodes)"LINK"===e.tagName&&"modulepreload"===e.rel&&r(e)}).observe(document,{childList:!0,subtree:!0})}function r(e){if(e.ep)return;e.ep=!0;const r=function(e){const r={};return e.integrity&&(r.integrity=e.integrity),e.referrerPolicy&&(r.referrerPolicy=e.referrerPolicy),"use-credentials"===e.crossOrigin?r.credentials="include":"anonymous"===e.crossOrigin?r.credentials="omit":r.credentials="same-origin",r}(e);fetch(e.href,r)}}();`}],style:[{innerHTML:`*,:after,:before{border-color:var(--un-default-border-color,#e5e7eb);border-style:solid;border-width:0;box-sizing:border-box}:after,:before{--un-content:""}html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}h1,h2{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}h1,h2,p{margin:0}*,: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: }`}]}),(s,g)=>{let _=c;return e(),r(`div`,u,[o(`div`,d,[o(`h1`,{class:`font-semibold leading-none mb-4 sm:text-[110px] tabular-nums text-[80px]`,textContent:n(l.status)},null,8,f),o(`h2`,{class:`font-semibold mb-2 sm:text-3xl text-2xl`,textContent:n(l.statusText)},null,8,p),o(`p`,{class:`mb-4 px-2 text-[#64748B] text-md`,textContent:n(l.description)},null,8,m),o(`div`,h,[t(_,{to:`/`,class:`font-medium hover:text-[#00DC82] text-sm underline underline-offset-3`},{default:a(()=>[i(n(l.backHome),1)]),_:1})])])])}}},[[`__scopeId`,`data-v-6b05141f`]]);export{g as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{B as e,Et as t,H as n,J as r,O as i,Ot as a,S as o,T as s,U as c,b as l,it as u,m as d,nt as f,v as p,x as m,y as h,z as g}from"./D-gbOT8o.js";import{i as _}from"./DODjDiif.js";import{n as v,t as y}from"#entry";var b={flex:`~ col gap-3`,p4:``},x={flex:`~ items-center gap-3`,"text-xs":``},S={op60:``},C={flex:`~ items-center gap-1.5`,op60:``,"cursor-pointer":``,"select-none":``},w={"w-full":``,"text-sm":``},T={px2:``,"py1.5":``,"font-mono":``,"text-xs":``},E={px2:``,"py1.5":``,"text-center":``},D={key:0,"i-ph-check":``,"text-green":``},O={key:1,op20:``},k={px2:``,"py1.5":``,"text-center":``},A={key:0,"i-ph-check":``,"text-green":``},j={key:1,op20:``},M={px2:``,"py1.5":``,flex:`~ items-center gap-1`},N={key:1,op20:``},P=i({__name:`DevtoolsPluginsList`,props:{plugins:{}},setup(i){let u=i,g=f(!1),v=p(()=>u.plugins.filter(e=>e.hasDevtools).length),y=p(()=>g.value?u.plugins:u.plugins.filter(e=>e.hasDevtools));return(u,f)=>{let p=c(`DisplayBadge`);return e(),o(`div`,b,[h(`div`,x,[h(`span`,S,a(v.value)+` devtools plugins / `+a(i.plugins.length)+` total `,1),h(`label`,C,[r(h(`input`,{"onUpdate:modelValue":f[0]||=e=>g.value=e,type:`checkbox`},null,512),[[_,g.value]]),f[1]||=s(` Show all `,-1)])]),h(`table`,w,[f[2]||=h(`thead`,null,[h(`tr`,{border:`b base`,"text-left":``},[h(`th`,{px2:``,py1:``,"font-medium":``,op60:``,"text-xs":``},` Plugin Name `),h(`th`,{px2:``,py1:``,"font-medium":``,op60:``,"text-xs":``,"text-center":``},` DevTools `),h(`th`,{px2:``,py1:``,"font-medium":``,op60:``,"text-xs":``,"text-center":``},` Setup `),h(`th`,{px2:``,py1:``,"font-medium":``,op60:``,"text-xs":``},` Capabilities `)])],-1),h(`tbody`,null,[(e(!0),o(d,null,n(y.value,n=>(e(),o(`tr`,{key:n.name,border:`b base`,"hover:bg-active":``,class:t(n.hasDevtools?``:`op40`)},[h(`td`,T,a(n.name),1),h(`td`,E,[n.hasDevtools?(e(),o(`span`,D)):(e(),o(`span`,O,`-`))]),h(`td`,k,[n.hasSetup?(e(),o(`span`,A)):(e(),o(`span`,j,`-`))]),h(`td`,M,[n.capabilities?(e(),o(d,{key:0},[n.capabilities.dev?(e(),l(p,{key:0,text:`dev`})):m(``,!0),n.capabilities.build?(e(),l(p,{key:1,text:`build`})):m(``,!0)],64)):(e(),o(`span`,N,`-`))])],2))),128))])])])}}}),F=Object.assign(P,{__name:`DevtoolsPluginsList`}),I=i({__name:`plugins`,setup(t){let n=y(),r=u();async function i(){r.value=await n.value.call(`devtoolskit:self-inspect:get-devtools-plugins`)}return v(i),g(i),(t,n)=>{let i=c(`VisualLoading`),a=F;return r.value?(e(),l(a,{key:1,plugins:r.value},null,8,[`plugins`])):(e(),l(i,{key:0}))}}});export{I as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var e=(e,t)=>{let n=e.__vccOpts||e;for(let[e,r]of t)n[e]=r;return n};export{e as t};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{B as e,E as t,H as n,O as r,Ot as i,S as a,U as o,b as s,it as c,m as l,v as u,y as d,z as f}from"./D-gbOT8o.js";import{n as p,t as m}from"#entry";var h={key:0,flex:`~ items-center justify-center`,py8:``,op50:``},g={key:1,flex:`~ col gap-3`,p4:``},_={"text-xs":``,op60:``},v={flex:`~ items-center gap-2`,mb1:``,mt2:``},y={"w-full":``,"text-sm":``},b={px2:``,"py1.5":``,"font-mono":``,"text-xs":``},x={px2:``,"py1.5":``},S=[`title`],C={px2:``,"py1.5":``,"font-mono":``,"text-xs":``},w=r({__name:`ClientScriptsList`,props:{scripts:{}},setup(r){let s=r,c=u(()=>{let e=new Map;for(let t of s.scripts){let n=t.dockType;e.has(n)||e.set(n,[]),e.get(n).push(t)}return Array.from(e.entries()).sort(([e],[t])=>e.localeCompare(t))});function f(e){let t=e.split(`/`);return t.length<=3?e:`.../${t.slice(-3).join(`/`)}`}return(s,u)=>{let p=o(`DisplayBadge`),m=o(`DisplayNumberBadge`);return r.scripts.length===0?(e(),a(`div`,h,` No client scripts registered. `)):(e(),a(`div`,g,[d(`div`,_,i(r.scripts.length)+` client scripts registered `,1),(e(!0),a(l,null,n(c.value,([r,o])=>(e(),a(`div`,{key:r},[d(`div`,v,[t(p,{text:r},null,8,[`text`]),t(m,{value:o.length},null,8,[`value`])]),d(`table`,y,[u[0]||=d(`thead`,null,[d(`tr`,{border:`b base`,"text-left":``},[d(`th`,{px2:``,py1:``,"font-medium":``,op60:``,"text-xs":``},` Dock ID `),d(`th`,{px2:``,py1:``,"font-medium":``,op60:``,"text-xs":``},` Dock Title `),d(`th`,{px2:``,py1:``,"font-medium":``,op60:``,"text-xs":``},` Import From `),d(`th`,{px2:``,py1:``,"font-medium":``,op60:``,"text-xs":``},` Import Name `)])],-1),d(`tbody`,null,[(e(!0),a(l,null,n(o,t=>(e(),a(`tr`,{key:t.dockId,border:`b base`,"hover:bg-active":``},[d(`td`,b,i(t.dockId),1),d(`td`,x,i(t.dockTitle),1),d(`td`,{px2:``,"py1.5":``,"font-mono":``,"text-xs":``,"max-w-60":``,truncate:``,title:t.script.importFrom},i(f(t.script.importFrom)),9,S),d(`td`,C,i(t.script.importName??`default`),1)]))),128))])])]))),128))]))}}}),T=Object.assign(w,{__name:`ClientScriptsList`}),E=r({__name:`scripts`,setup(t){let n=m(),r=c();async function i(){r.value=await n.value.call(`devtoolskit:self-inspect:get-client-scripts`)}return p(i),f(i),(t,n)=>{let i=o(`VisualLoading`),a=T;return r.value?(e(),s(a,{key:1,scripts:r.value},null,8,[`scripts`])):(e(),s(i,{key:0}))}}});export{E as default};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
function e(e){let t=Object.create(null);for(let n of e.split(`,`))t[n]=1;return e=>e in t}var t={},n=[],r=()=>{},i=()=>!1,a=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),o=e=>e.startsWith(`onUpdate:`),s=Object.assign,c=(e,t)=>{let n=e.indexOf(t);n>-1&&e.splice(n,1)},l=Object.prototype.hasOwnProperty,u=(e,t)=>l.call(e,t),d=Array.isArray,f=e=>S(e)===`[object Map]`,p=e=>S(e)===`[object Set]`,m=e=>S(e)===`[object Date]`,h=e=>S(e)===`[object RegExp]`,g=e=>typeof e==`function`,_=e=>typeof e==`string`,v=e=>typeof e==`symbol`,y=e=>typeof e==`object`&&!!e,b=e=>(y(e)||g(e))&&g(e.then)&&g(e.catch),x=Object.prototype.toString,S=e=>x.call(e),C=e=>S(e).slice(8,-1),w=e=>S(e)===`[object Object]`,T=e=>_(e)&&e!==`NaN`&&e[0]!==`-`&&``+parseInt(e,10)===e,E=e(`,key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted`),D=e=>{let t=Object.create(null);return(n=>t[n]||(t[n]=e(n)))},ee=/-\w/g,O=D(e=>e.replace(ee,e=>e.slice(1).toUpperCase())),te=/\B([A-Z])/g,k=D(e=>e.replace(te,`-$1`).toLowerCase()),ne=D(e=>e.charAt(0).toUpperCase()+e.slice(1)),re=D(e=>e?`on${ne(e)}`:``),A=(e,t)=>!Object.is(e,t),j=(e,...t)=>{for(let n=0;n<e.length;n++)e[n](...t)},ie=(e,t,n,r=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:r,value:n})},ae=e=>{let t=parseFloat(e);return isNaN(t)?e:t},oe=e=>{let t=_(e)?Number(e):NaN;return isNaN(t)?e:t},se,ce=()=>se||=typeof globalThis<`u`?globalThis:typeof self<`u`?self:typeof window<`u`?window:typeof globalThis<`u`?globalThis:{};function le(e){if(d(e)){let t={};for(let n=0;n<e.length;n++){let r=e[n],i=_(r)?pe(r):le(r);if(i)for(let e in i)t[e]=i[e]}return t}else if(_(e)||y(e))return e}var ue=/;(?![^(]*\))/g,de=/:([^]+)/,fe=/\/\*[^]*?\*\//g;function pe(e){let t={};return e.replace(fe,``).split(ue).forEach(e=>{if(e){let n=e.split(de);n.length>1&&(t[n[0].trim()]=n[1].trim())}}),t}function me(e){let t=``;if(_(e))t=e;else if(d(e))for(let n=0;n<e.length;n++){let r=me(e[n]);r&&(t+=r+` `)}else if(y(e))for(let n in e)e[n]&&(t+=n+` `);return t.trim()}function he(e){if(!e)return null;let{class:t,style:n}=e;return t&&!_(t)&&(e.class=me(t)),n&&(e.style=le(n)),e}var ge=`itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly`,_e=e(ge);e(ge+`,async,autofocus,autoplay,controls,default,defer,disabled,hidden,inert,loop,open,required,reversed,scoped,seamless,checked,muted,multiple,selected`);function ve(e){return!!e||e===``}function ye(e,t){if(e.length!==t.length)return!1;let n=!0;for(let r=0;n&&r<e.length;r++)n=be(e[r],t[r]);return n}function be(e,t){if(e===t)return!0;let n=m(e),r=m(t);if(n||r)return n&&r?e.getTime()===t.getTime():!1;if(n=v(e),r=v(t),n||r)return e===t;if(n=d(e),r=d(t),n||r)return n&&r?ye(e,t):!1;if(n=y(e),r=y(t),n||r){if(!n||!r||Object.keys(e).length!==Object.keys(t).length)return!1;for(let n in e){let r=e.hasOwnProperty(n),i=t.hasOwnProperty(n);if(r&&!i||!r&&i||!be(e[n],t[n]))return!1}}return String(e)===String(t)}function xe(e,t){return e.findIndex(e=>be(e,t))}var Se=e=>!!(e&&e.__v_isRef===!0),Ce=e=>_(e)?e:e==null?``:d(e)||y(e)&&(e.toString===x||!g(e.toString))?Se(e)?Ce(e.value):JSON.stringify(e,we,2):String(e),we=(e,t)=>Se(t)?we(e,t.value):f(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((e,[t,n],r)=>(e[Te(t,r)+` =>`]=n,e),{})}:p(t)?{[`Set(${t.size})`]:[...t.values()].map(e=>Te(e))}:v(t)?Te(t):y(t)&&!d(t)&&!w(t)?String(t):t,Te=(e,t=``)=>v(e)?`Symbol(${e.description??t})`:e,M,Ee=class{constructor(e=!1){this.detached=e,this._active=!0,this._on=0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.__v_skip=!0,this.parent=M,!e&&M&&(this.index=(M.scopes||=[]).push(this)-1)}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let e,t;if(this.scopes)for(e=0,t=this.scopes.length;e<t;e++)this.scopes[e].pause();for(e=0,t=this.effects.length;e<t;e++)this.effects[e].pause()}}resume(){if(this._active&&this._isPaused){this._isPaused=!1;let e,t;if(this.scopes)for(e=0,t=this.scopes.length;e<t;e++)this.scopes[e].resume();for(e=0,t=this.effects.length;e<t;e++)this.effects[e].resume()}}run(e){if(this._active){let t=M;try{return M=this,e()}finally{M=t}}}on(){++this._on===1&&(this.prevScope=M,M=this)}off(){this._on>0&&--this._on===0&&(M=this.prevScope,this.prevScope=void 0)}stop(e){if(this._active){this._active=!1;let t,n;for(t=0,n=this.effects.length;t<n;t++)this.effects[t].stop();for(this.effects.length=0,t=0,n=this.cleanups.length;t<n;t++)this.cleanups[t]();if(this.cleanups.length=0,this.scopes){for(t=0,n=this.scopes.length;t<n;t++)this.scopes[t].stop(!0);this.scopes.length=0}if(!this.detached&&this.parent&&!e){let e=this.parent.scopes.pop();e&&e!==this&&(this.parent.scopes[this.index]=e,e.index=this.index)}this.parent=void 0}}};function De(e){return new Ee(e)}function Oe(){return M}function ke(e,t=!1){M&&M.cleanups.push(e)}var N,Ae=new WeakSet,je=class{constructor(e){this.fn=e,this.deps=void 0,this.depsTail=void 0,this.flags=5,this.next=void 0,this.cleanup=void 0,this.scheduler=void 0,M&&M.active&&M.effects.push(this)}pause(){this.flags|=64}resume(){this.flags&64&&(this.flags&=-65,Ae.has(this)&&(Ae.delete(this),this.trigger()))}notify(){this.flags&2&&!(this.flags&32)||this.flags&8||Fe(this)}run(){if(!(this.flags&1))return this.fn();this.flags|=2,qe(this),Re(this);let e=N,t=P;N=this,P=!0;try{return this.fn()}finally{ze(this),N=e,P=t,this.flags&=-3}}stop(){if(this.flags&1){for(let e=this.deps;e;e=e.nextDep)He(e);this.deps=this.depsTail=void 0,qe(this),this.onStop&&this.onStop(),this.flags&=-2}}trigger(){this.flags&64?Ae.add(this):this.scheduler?this.scheduler():this.runIfDirty()}runIfDirty(){Be(this)&&this.run()}get dirty(){return Be(this)}},Me=0,Ne,Pe;function Fe(e,t=!1){if(e.flags|=8,t){e.next=Pe,Pe=e;return}e.next=Ne,Ne=e}function Ie(){Me++}function Le(){if(--Me>0)return;if(Pe){let e=Pe;for(Pe=void 0;e;){let t=e.next;e.next=void 0,e.flags&=-9,e=t}}let e;for(;Ne;){let t=Ne;for(Ne=void 0;t;){let n=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(t){e||=t}t=n}}if(e)throw e}function Re(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function ze(e){let t,n=e.depsTail,r=n;for(;r;){let e=r.prevDep;r.version===-1?(r===n&&(n=e),He(r),Ue(r)):t=r,r.dep.activeLink=r.prevActiveLink,r.prevActiveLink=void 0,r=e}e.deps=t,e.depsTail=n}function Be(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(Ve(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function Ve(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===Je)||(e.globalVersion=Je,!e.isSSR&&e.flags&128&&(!e.deps&&!e._dirty||!Be(e))))return;e.flags|=2;let t=e.dep,n=N,r=P;N=e,P=!0;try{Re(e);let n=e.fn(e._value);(t.version===0||A(n,e._value))&&(e.flags|=128,e._value=n,t.version++)}catch(e){throw t.version++,e}finally{N=n,P=r,ze(e),e.flags&=-3}}function He(e,t=!1){let{dep:n,prevSub:r,nextSub:i}=e;if(r&&(r.nextSub=i,e.prevSub=void 0),i&&(i.prevSub=r,e.nextSub=void 0),n.subs===e&&(n.subs=r,!r&&n.computed)){n.computed.flags&=-5;for(let e=n.computed.deps;e;e=e.nextDep)He(e,!0)}!t&&!--n.sc&&n.map&&n.map.delete(n.key)}function Ue(e){let{prevDep:t,nextDep:n}=e;t&&(t.nextDep=n,e.prevDep=void 0),n&&(n.prevDep=t,e.nextDep=void 0)}var P=!0,We=[];function Ge(){We.push(P),P=!1}function Ke(){let e=We.pop();P=e===void 0?!0:e}function qe(e){let{cleanup:t}=e;if(e.cleanup=void 0,t){let e=N;N=void 0;try{t()}finally{N=e}}}var Je=0,Ye=class{constructor(e,t){this.sub=e,this.dep=t,this.version=t.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}},Xe=class{constructor(e){this.computed=e,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0,this.__v_skip=!0}track(e){if(!N||!P||N===this.computed)return;let t=this.activeLink;if(t===void 0||t.sub!==N)t=this.activeLink=new Ye(N,this),N.deps?(t.prevDep=N.depsTail,N.depsTail.nextDep=t,N.depsTail=t):N.deps=N.depsTail=t,Ze(t);else if(t.version===-1&&(t.version=this.version,t.nextDep)){let e=t.nextDep;e.prevDep=t.prevDep,t.prevDep&&(t.prevDep.nextDep=e),t.prevDep=N.depsTail,t.nextDep=void 0,N.depsTail.nextDep=t,N.depsTail=t,N.deps===t&&(N.deps=e)}return t}trigger(e){this.version++,Je++,this.notify(e)}notify(e){Ie();try{for(let e=this.subs;e;e=e.prevSub)e.sub.notify()&&e.sub.dep.notify()}finally{Le()}}};function Ze(e){if(e.dep.sc++,e.sub.flags&4){let t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let e=t.deps;e;e=e.nextDep)Ze(e)}let n=e.dep.subs;n!==e&&(e.prevSub=n,n&&(n.nextSub=e)),e.dep.subs=e}}var Qe=new WeakMap,$e=Symbol(``),et=Symbol(``),tt=Symbol(``);function F(e,t,n){if(P&&N){let t=Qe.get(e);t||Qe.set(e,t=new Map);let r=t.get(n);r||(t.set(n,r=new Xe),r.map=t,r.key=n),r.track()}}function nt(e,t,n,r,i,a){let o=Qe.get(e);if(!o){Je++;return}let s=e=>{e&&e.trigger()};if(Ie(),t===`clear`)o.forEach(s);else{let i=d(e),a=i&&T(n);if(i&&n===`length`){let e=Number(r);o.forEach((t,n)=>{(n===`length`||n===tt||!v(n)&&n>=e)&&s(t)})}else switch((n!==void 0||o.has(void 0))&&s(o.get(n)),a&&s(o.get(tt)),t){case`add`:i?a&&s(o.get(`length`)):(s(o.get($e)),f(e)&&s(o.get(et)));break;case`delete`:i||(s(o.get($e)),f(e)&&s(o.get(et)));break;case`set`:f(e)&&s(o.get($e));break}}Le()}function rt(e,t){let n=Qe.get(e);return n&&n.get(t)}function it(e){let t=L(e);return t===e?t:(F(t,`iterate`,tt),I(e)?t:t.map(R))}function at(e){return F(e=L(e),`iterate`,tt),e}function ot(e,t){return Ut(e)?Ht(e)?Kt(R(t)):Kt(t):R(t)}var st={__proto__:null,[Symbol.iterator](){return ct(this,Symbol.iterator,e=>ot(this,e))},concat(...e){return it(this).concat(...e.map(e=>d(e)?it(e):e))},entries(){return ct(this,`entries`,e=>(e[1]=ot(this,e[1]),e))},every(e,t){return ut(this,`every`,e,t,void 0,arguments)},filter(e,t){return ut(this,`filter`,e,t,e=>e.map(e=>ot(this,e)),arguments)},find(e,t){return ut(this,`find`,e,t,e=>ot(this,e),arguments)},findIndex(e,t){return ut(this,`findIndex`,e,t,void 0,arguments)},findLast(e,t){return ut(this,`findLast`,e,t,e=>ot(this,e),arguments)},findLastIndex(e,t){return ut(this,`findLastIndex`,e,t,void 0,arguments)},forEach(e,t){return ut(this,`forEach`,e,t,void 0,arguments)},includes(...e){return ft(this,`includes`,e)},indexOf(...e){return ft(this,`indexOf`,e)},join(e){return it(this).join(e)},lastIndexOf(...e){return ft(this,`lastIndexOf`,e)},map(e,t){return ut(this,`map`,e,t,void 0,arguments)},pop(){return pt(this,`pop`)},push(...e){return pt(this,`push`,e)},reduce(e,...t){return dt(this,`reduce`,e,t)},reduceRight(e,...t){return dt(this,`reduceRight`,e,t)},shift(){return pt(this,`shift`)},some(e,t){return ut(this,`some`,e,t,void 0,arguments)},splice(...e){return pt(this,`splice`,e)},toReversed(){return it(this).toReversed()},toSorted(e){return it(this).toSorted(e)},toSpliced(...e){return it(this).toSpliced(...e)},unshift(...e){return pt(this,`unshift`,e)},values(){return ct(this,`values`,e=>ot(this,e))}};function ct(e,t,n){let r=at(e),i=r[t]();return r!==e&&!I(e)&&(i._next=i.next,i.next=()=>{let e=i._next();return e.done||(e.value=n(e.value)),e}),i}var lt=Array.prototype;function ut(e,t,n,r,i,a){let o=at(e),s=o!==e&&!I(e),c=o[t];if(c!==lt[t]){let t=c.apply(e,a);return s?R(t):t}let l=n;o!==e&&(s?l=function(t,r){return n.call(this,ot(e,t),r,e)}:n.length>2&&(l=function(t,r){return n.call(this,t,r,e)}));let u=c.call(o,l,r);return s&&i?i(u):u}function dt(e,t,n,r){let i=at(e),a=i!==e&&!I(e),o=n,s=!1;i!==e&&(a?(s=r.length===0,o=function(t,r,i){return s&&(s=!1,t=ot(e,t)),n.call(this,t,ot(e,r),i,e)}):n.length>3&&(o=function(t,r,i){return n.call(this,t,r,i,e)}));let c=i[t](o,...r);return s?ot(e,c):c}function ft(e,t,n){let r=L(e);F(r,`iterate`,tt);let i=r[t](...n);return(i===-1||i===!1)&&Wt(n[0])?(n[0]=L(n[0]),r[t](...n)):i}function pt(e,t,n=[]){Ge(),Ie();let r=L(e)[t].apply(e,n);return Le(),Ke(),r}var mt=e(`__proto__,__v_isRef,__isVue`),ht=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!==`arguments`&&e!==`caller`).map(e=>Symbol[e]).filter(v));function gt(e){v(e)||(e=String(e));let t=L(this);return F(t,`has`,e),t.hasOwnProperty(e)}var _t=class{constructor(e=!1,t=!1){this._isReadonly=e,this._isShallow=t}get(e,t,n){if(t===`__v_skip`)return e.__v_skip;let r=this._isReadonly,i=this._isShallow;if(t===`__v_isReactive`)return!r;if(t===`__v_isReadonly`)return r;if(t===`__v_isShallow`)return i;if(t===`__v_raw`)return n===(r?i?Ft:Pt:i?Nt:Mt).get(e)||Object.getPrototypeOf(e)===Object.getPrototypeOf(n)?e:void 0;let a=d(e);if(!r){let e;if(a&&(e=st[t]))return e;if(t===`hasOwnProperty`)return gt}let o=Reflect.get(e,t,z(e)?e:n);if((v(t)?ht.has(t):mt(t))||(r||F(e,`get`,t),i))return o;if(z(o)){let e=a&&T(t)?o:o.value;return r&&y(e)?Bt(e):e}return y(o)?r?Bt(o):Rt(o):o}},vt=class extends _t{constructor(e=!1){super(!1,e)}set(e,t,n,r){let i=e[t],a=d(e)&&T(t);if(!this._isShallow){let e=Ut(i);if(!I(n)&&!Ut(n)&&(i=L(i),n=L(n)),!a&&z(i)&&!z(n))return e||(i.value=n),!0}let o=a?Number(t)<e.length:u(e,t),s=Reflect.set(e,t,n,z(e)?e:r);return e===L(r)&&(o?A(n,i)&&nt(e,`set`,t,n,i):nt(e,`add`,t,n)),s}deleteProperty(e,t){let n=u(e,t),r=e[t],i=Reflect.deleteProperty(e,t);return i&&n&&nt(e,`delete`,t,void 0,r),i}has(e,t){let n=Reflect.has(e,t);return(!v(t)||!ht.has(t))&&F(e,`has`,t),n}ownKeys(e){return F(e,`iterate`,d(e)?`length`:$e),Reflect.ownKeys(e)}},yt=class extends _t{constructor(e=!1){super(!0,e)}set(e,t){return!0}deleteProperty(e,t){return!0}},bt=new vt,xt=new yt,St=new vt(!0),Ct=e=>e,wt=e=>Reflect.getPrototypeOf(e);function Tt(e,t,n){return function(...r){let i=this.__v_raw,a=L(i),o=f(a),c=e===`entries`||e===Symbol.iterator&&o,l=e===`keys`&&o,u=i[e](...r),d=n?Ct:t?Kt:R;return!t&&F(a,`iterate`,l?et:$e),s(Object.create(u),{next(){let{value:e,done:t}=u.next();return t?{value:e,done:t}:{value:c?[d(e[0]),d(e[1])]:d(e),done:t}}})}}function Et(e){return function(...t){return e===`delete`?!1:e===`clear`?void 0:this}}function Dt(e,t){let n={get(n){let r=this.__v_raw,i=L(r),a=L(n);e||(A(n,a)&&F(i,`get`,n),F(i,`get`,a));let{has:o}=wt(i),s=t?Ct:e?Kt:R;if(o.call(i,n))return s(r.get(n));if(o.call(i,a))return s(r.get(a));r!==i&&r.get(n)},get size(){let t=this.__v_raw;return!e&&F(L(t),`iterate`,$e),t.size},has(t){let n=this.__v_raw,r=L(n),i=L(t);return e||(A(t,i)&&F(r,`has`,t),F(r,`has`,i)),t===i?n.has(t):n.has(t)||n.has(i)},forEach(n,r){let i=this,a=i.__v_raw,o=L(a),s=t?Ct:e?Kt:R;return!e&&F(o,`iterate`,$e),a.forEach((e,t)=>n.call(r,s(e),s(t),i))}};return s(n,e?{add:Et(`add`),set:Et(`set`),delete:Et(`delete`),clear:Et(`clear`)}:{add(e){let n=L(this),r=wt(n),i=L(e),a=!t&&!I(e)&&!Ut(e)?i:e;return r.has.call(n,a)||A(e,a)&&r.has.call(n,e)||A(i,a)&&r.has.call(n,i)||(n.add(a),nt(n,`add`,a,a)),this},set(e,n){!t&&!I(n)&&!Ut(n)&&(n=L(n));let r=L(this),{has:i,get:a}=wt(r),o=i.call(r,e);o||=(e=L(e),i.call(r,e));let s=a.call(r,e);return r.set(e,n),o?A(n,s)&&nt(r,`set`,e,n,s):nt(r,`add`,e,n),this},delete(e){let t=L(this),{has:n,get:r}=wt(t),i=n.call(t,e);i||=(e=L(e),n.call(t,e));let a=r?r.call(t,e):void 0,o=t.delete(e);return i&&nt(t,`delete`,e,void 0,a),o},clear(){let e=L(this),t=e.size!==0,n=e.clear();return t&&nt(e,`clear`,void 0,void 0,void 0),n}}),[`keys`,`values`,`entries`,Symbol.iterator].forEach(r=>{n[r]=Tt(r,e,t)}),n}function Ot(e,t){let n=Dt(e,t);return(t,r,i)=>r===`__v_isReactive`?!e:r===`__v_isReadonly`?e:r===`__v_raw`?t:Reflect.get(u(n,r)&&r in t?n:t,r,i)}var kt={get:Ot(!1,!1)},At={get:Ot(!1,!0)},jt={get:Ot(!0,!1)},Mt=new WeakMap,Nt=new WeakMap,Pt=new WeakMap,Ft=new WeakMap;function It(e){switch(e){case`Object`:case`Array`:return 1;case`Map`:case`Set`:case`WeakMap`:case`WeakSet`:return 2;default:return 0}}function Lt(e){return e.__v_skip||!Object.isExtensible(e)?0:It(C(e))}function Rt(e){return Ut(e)?e:Vt(e,!1,bt,kt,Mt)}function zt(e){return Vt(e,!1,St,At,Nt)}function Bt(e){return Vt(e,!0,xt,jt,Pt)}function Vt(e,t,n,r,i){if(!y(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;let a=Lt(e);if(a===0)return e;let o=i.get(e);if(o)return o;let s=new Proxy(e,a===2?r:n);return i.set(e,s),s}function Ht(e){return Ut(e)?Ht(e.__v_raw):!!(e&&e.__v_isReactive)}function Ut(e){return!!(e&&e.__v_isReadonly)}function I(e){return!!(e&&e.__v_isShallow)}function Wt(e){return e?!!e.__v_raw:!1}function L(e){let t=e&&e.__v_raw;return t?L(t):e}function Gt(e){return!u(e,`__v_skip`)&&Object.isExtensible(e)&&ie(e,`__v_skip`,!0),e}var R=e=>y(e)?Rt(e):e,Kt=e=>y(e)?Bt(e):e;function z(e){return e?e.__v_isRef===!0:!1}function qt(e){return Yt(e,!1)}function Jt(e){return Yt(e,!0)}function Yt(e,t){return z(e)?e:new Xt(e,t)}var Xt=class{constructor(e,t){this.dep=new Xe,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=t?e:L(e),this._value=t?e:R(e),this.__v_isShallow=t}get value(){return this.dep.track(),this._value}set value(e){let t=this._rawValue,n=this.__v_isShallow||I(e)||Ut(e);e=n?e:L(e),A(e,t)&&(this._rawValue=e,this._value=n?e:R(e),this.dep.trigger())}};function Zt(e){return z(e)?e.value:e}function Qt(e){return g(e)?e():Zt(e)}var $t={get:(e,t,n)=>t===`__v_raw`?e:Zt(Reflect.get(e,t,n)),set:(e,t,n,r)=>{let i=e[t];return z(i)&&!z(n)?(i.value=n,!0):Reflect.set(e,t,n,r)}};function en(e){return Ht(e)?e:new Proxy(e,$t)}var tn=class{constructor(e){this.__v_isRef=!0,this._value=void 0;let t=this.dep=new Xe,{get:n,set:r}=e(t.track.bind(t),t.trigger.bind(t));this._get=n,this._set=r}get value(){return this._value=this._get()}set value(e){this._set(e)}};function nn(e){return new tn(e)}var rn=class{constructor(e,t,n){this._object=e,this._key=t,this._defaultValue=n,this.__v_isRef=!0,this._value=void 0,this._raw=L(e);let r=!0,i=e;if(!d(e)||!T(String(t)))do r=!Wt(i)||I(i);while(r&&(i=i.__v_raw));this._shallow=r}get value(){let e=this._object[this._key];return this._shallow&&(e=Zt(e)),this._value=e===void 0?this._defaultValue:e}set value(e){if(this._shallow&&z(this._raw[this._key])){let t=this._object[this._key];if(z(t)){t.value=e;return}}this._object[this._key]=e}get dep(){return rt(this._raw,this._key)}},an=class{constructor(e){this._getter=e,this.__v_isRef=!0,this.__v_isReadonly=!0,this._value=void 0}get value(){return this._value=this._getter()}};function on(e,t,n){return z(e)?e:g(e)?new an(e):y(e)&&arguments.length>1?sn(e,t,n):qt(e)}function sn(e,t,n){return new rn(e,t,n)}var cn=class{constructor(e,t,n){this.fn=e,this.setter=t,this._value=void 0,this.dep=new Xe(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=Je-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!t,this.isSSR=n}notify(){if(this.flags|=16,!(this.flags&8)&&N!==this)return Fe(this,!0),!0}get value(){let e=this.dep.track();return Ve(this),e&&(e.version=this.dep.version),this._value}set value(e){this.setter&&this.setter(e)}};function ln(e,t,n=!1){let r,i;return g(e)?r=e:(r=e.get,i=e.set),new cn(r,i,n)}var un={},dn=new WeakMap,fn=void 0;function pn(e,t=!1,n=fn){if(n){let t=dn.get(n);t||dn.set(n,t=[]),t.push(e)}}function mn(e,n,i=t){let{immediate:a,deep:o,once:s,scheduler:l,augmentJob:u,call:f}=i,p=e=>o?e:I(e)||o===!1||o===0?hn(e,1):hn(e),m,h,_,v,y=!1,b=!1;if(z(e)?(h=()=>e.value,y=I(e)):Ht(e)?(h=()=>p(e),y=!0):d(e)?(b=!0,y=e.some(e=>Ht(e)||I(e)),h=()=>e.map(e=>{if(z(e))return e.value;if(Ht(e))return p(e);if(g(e))return f?f(e,2):e()})):h=g(e)?n?f?()=>f(e,2):e:()=>{if(_){Ge();try{_()}finally{Ke()}}let t=fn;fn=m;try{return f?f(e,3,[v]):e(v)}finally{fn=t}}:r,n&&o){let e=h,t=o===!0?1/0:o;h=()=>hn(e(),t)}let x=Oe(),S=()=>{m.stop(),x&&x.active&&c(x.effects,m)};if(s&&n){let e=n;n=(...t)=>{e(...t),S()}}let C=b?Array(e.length).fill(un):un,w=e=>{if(!(!(m.flags&1)||!m.dirty&&!e))if(n){let e=m.run();if(o||y||(b?e.some((e,t)=>A(e,C[t])):A(e,C))){_&&_();let t=fn;fn=m;try{let t=[e,C===un?void 0:b&&C[0]===un?[]:C,v];C=e,f?f(n,3,t):n(...t)}finally{fn=t}}}else m.run()};return u&&u(w),m=new je(h),m.scheduler=l?()=>l(w,!1):w,v=e=>pn(e,!1,m),_=m.onStop=()=>{let e=dn.get(m);if(e){if(f)f(e,4);else for(let t of e)t();dn.delete(m)}},n?a?w(!0):C=m.run():l?l(w.bind(null,!0),!0):m.run(),S.pause=m.pause.bind(m),S.resume=m.resume.bind(m),S.stop=S,S}function hn(e,t=1/0,n){if(t<=0||!y(e)||e.__v_skip||(n||=new Map,(n.get(e)||0)>=t))return e;if(n.set(e,t),t--,z(e))hn(e.value,t,n);else if(d(e))for(let r=0;r<e.length;r++)hn(e[r],t,n);else if(p(e)||f(e))e.forEach(e=>{hn(e,t,n)});else if(w(e)){for(let r in e)hn(e[r],t,n);for(let r of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,r)&&hn(e[r],t,n)}return e}function gn(e,t,n,r){try{return r?e(...r):e()}catch(e){_n(e,t,n)}}function B(e,t,n,r){if(g(e)){let i=gn(e,t,n,r);return i&&b(i)&&i.catch(e=>{_n(e,t,n)}),i}if(d(e)){let i=[];for(let a=0;a<e.length;a++)i.push(B(e[a],t,n,r));return i}}function _n(e,n,r,i=!0){let a=n?n.vnode:null,{errorHandler:o,throwUnhandledErrorInProduction:s}=n&&n.appContext.config||t;if(n){let t=n.parent,i=n.proxy,a=`https://vuejs.org/error-reference/#runtime-${r}`;for(;t;){let n=t.ec;if(n){for(let t=0;t<n.length;t++)if(n[t](e,i,a)===!1)return}t=t.parent}if(o){Ge(),gn(o,null,10,[e,i,a]),Ke();return}}vn(e,r,a,i,s)}function vn(e,t,n,r=!0,i=!1){if(i)throw e;console.error(e)}var V=[],yn=-1,bn=[],xn=null,Sn=0,Cn=Promise.resolve(),wn=null;function Tn(e){let t=wn||Cn;return e?t.then(this?e.bind(this):e):t}function En(e){let t=yn+1,n=V.length;for(;t<n;){let r=t+n>>>1,i=V[r],a=Mn(i);a<e||a===e&&i.flags&2?t=r+1:n=r}return t}function Dn(e){if(!(e.flags&1)){let t=Mn(e),n=V[V.length-1];!n||!(e.flags&2)&&t>=Mn(n)?V.push(e):V.splice(En(t),0,e),e.flags|=1,On()}}function On(){wn||=Cn.then(Nn)}function kn(e){d(e)?bn.push(...e):xn&&e.id===-1?xn.splice(Sn+1,0,e):e.flags&1||(bn.push(e),e.flags|=1),On()}function An(e,t,n=yn+1){for(;n<V.length;n++){let t=V[n];if(t&&t.flags&2){if(e&&t.id!==e.uid)continue;V.splice(n,1),n--,t.flags&4&&(t.flags&=-2),t(),t.flags&4||(t.flags&=-2)}}}function jn(e){if(bn.length){let e=[...new Set(bn)].sort((e,t)=>Mn(e)-Mn(t));if(bn.length=0,xn){xn.push(...e);return}for(xn=e,Sn=0;Sn<xn.length;Sn++){let e=xn[Sn];e.flags&4&&(e.flags&=-2),e.flags&8||e(),e.flags&=-2}xn=null,Sn=0}}var Mn=e=>e.id==null?e.flags&2?-1:1/0:e.id;function Nn(e){try{for(yn=0;yn<V.length;yn++){let e=V[yn];e&&!(e.flags&8)&&(e.flags&4&&(e.flags&=-2),gn(e,e.i,e.i?15:14),e.flags&4||(e.flags&=-2))}}finally{for(;yn<V.length;yn++){let e=V[yn];e&&(e.flags&=-2)}yn=-1,V.length=0,jn(e),wn=null,(V.length||bn.length)&&Nn(e)}}var H=null,Pn=null;function Fn(e){let t=H;return H=e,Pn=e&&e.type.__scopeId||null,t}function In(e,t=H,n){if(!t||e._n)return e;let r=(...n)=>{r._d&&Fa(-1);let i=Fn(t),a;try{a=e(...n)}finally{Fn(i),r._d&&Fa(1)}return a};return r._n=!0,r._c=!0,r._d=!0,r}function Ln(e,n){if(H===null)return e;let r=go(H),i=e.dirs||=[];for(let e=0;e<n.length;e++){let[a,o,s,c=t]=n[e];a&&(g(a)&&(a={mounted:a,updated:a}),a.deep&&hn(o),i.push({dir:a,instance:r,value:o,oldValue:void 0,arg:s,modifiers:c}))}return e}function Rn(e,t,n,r){let i=e.dirs,a=t&&t.dirs;for(let o=0;o<i.length;o++){let s=i[o];a&&(s.oldValue=a[o].value);let c=s.dir[r];c&&(Ge(),B(c,n,8,[e.el,s,e,t]),Ke())}}function zn(e,t){if($){let n=$.provides,r=$.parent&&$.parent.provides;r===n&&(n=$.provides=Object.create(r)),n[e]=t}}function Bn(e,t,n=!1){let r=eo();if(r||Di){let i=Di?Di._context.provides:r?r.parent==null||r.ce?r.vnode.appContext&&r.vnode.appContext.provides:r.parent.provides:void 0;if(i&&e in i)return i[e];if(arguments.length>1)return n&&g(t)?t.call(r&&r.proxy):t}}function Vn(){return!!(eo()||Di)}var Hn=Symbol.for(`v-scx`),Un=()=>Bn(Hn);function Wn(e,t){return Kn(e,null,t)}function Gn(e,t,n){return Kn(e,t,n)}function Kn(e,n,i=t){let{immediate:a,deep:o,flush:c,once:l}=i,u=s({},i),d=n&&a||!n&&c!==`post`,f;if(oo){if(c===`sync`){let e=Un();f=e.__watcherHandles||=[]}else if(!d){let e=()=>{};return e.stop=r,e.resume=r,e.pause=r,e}}let p=$;u.call=(e,t,n)=>B(e,p,t,n);let m=!1;c===`post`?u.scheduler=e=>{G(e,p&&p.suspense)}:c!==`sync`&&(m=!0,u.scheduler=(e,t)=>{t?e():Dn(e)}),u.augmentJob=e=>{n&&(e.flags|=4),m&&(e.flags|=2,p&&(e.id=p.uid,e.i=p))};let h=mn(e,n,u);return oo&&(f?f.push(h):d&&h()),h}function qn(e,t,n){let r=this.proxy,i=_(e)?e.includes(`.`)?Jn(r,e):()=>r[e]:e.bind(r,r),a;g(t)?a=t:(a=t.handler,n=t);let o=ro(this),s=Kn(i,a.bind(r),n);return o(),s}function Jn(e,t){let n=t.split(`.`);return()=>{let t=e;for(let e=0;e<n.length&&t;e++)t=t[n[e]];return t}}var Yn=Symbol(`_vte`),Xn=e=>e.__isTeleport,Zn=Symbol(`_leaveCb`),Qn=Symbol(`_enterCb`);function $n(){let e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return Ur(()=>{e.isMounted=!0}),Kr(()=>{e.isUnmounting=!0}),e}var U=[Function,Array],er={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:U,onEnter:U,onAfterEnter:U,onEnterCancelled:U,onBeforeLeave:U,onLeave:U,onAfterLeave:U,onLeaveCancelled:U,onBeforeAppear:U,onAppear:U,onAfterAppear:U,onAppearCancelled:U},tr=e=>{let t=e.subTree;return t.component?tr(t.component):t},nr={name:`BaseTransition`,props:er,setup(e,{slots:t}){let n=eo(),r=$n();return()=>{let i=t.default&&ur(t.default(),!0);if(!i||!i.length)return;let a=rr(i),o=L(e),{mode:s}=o;if(r.isLeaving)return sr(a);let c=cr(a);if(!c)return sr(a);let l=or(c,o,r,n,e=>l=e);c.type!==q&&lr(c,l);let u=n.subTree&&cr(n.subTree);if(u&&u.type!==q&&!Y(u,c)&&tr(n).type!==q){let e=or(u,o,r,n);if(lr(u,e),s===`out-in`&&c.type!==q)return r.isLeaving=!0,e.afterLeave=()=>{r.isLeaving=!1,n.job.flags&8||n.update(),delete e.afterLeave,u=void 0},sr(a);s===`in-out`&&c.type!==q?e.delayLeave=(e,t,n)=>{let i=ar(r,u);i[String(u.key)]=u,e[Zn]=()=>{t(),e[Zn]=void 0,delete l.delayedLeave,u=void 0},l.delayedLeave=()=>{n(),delete l.delayedLeave,u=void 0}}:u=void 0}else u&&=void 0;return a}}};function rr(e){let t=e[0];if(e.length>1){for(let n of e)if(n.type!==q){t=n;break}}return t}var ir=nr;function ar(e,t){let{leavingVNodes:n}=e,r=n.get(t.type);return r||(r=Object.create(null),n.set(t.type,r)),r}function or(e,t,n,r,i){let{appear:a,mode:o,persisted:s=!1,onBeforeEnter:c,onEnter:l,onAfterEnter:u,onEnterCancelled:f,onBeforeLeave:p,onLeave:m,onAfterLeave:h,onLeaveCancelled:g,onBeforeAppear:_,onAppear:v,onAfterAppear:y,onAppearCancelled:b}=t,x=String(e.key),S=ar(n,e),C=(e,t)=>{e&&B(e,r,9,t)},w=(e,t)=>{let n=t[1];C(e,t),d(e)?e.every(e=>e.length<=1)&&n():e.length<=1&&n()},T={mode:o,persisted:s,beforeEnter(t){let r=c;if(!n.isMounted)if(a)r=_||c;else return;t[Zn]&&t[Zn](!0);let i=S[x];i&&Y(e,i)&&i.el[Zn]&&i.el[Zn](),C(r,[t])},enter(t){if(S[x]===e)return;let r=l,i=u,o=f;if(!n.isMounted)if(a)r=v||l,i=y||u,o=b||f;else return;let s=!1;t[Qn]=e=>{s||(s=!0,C(e?o:i,[t]),T.delayedLeave&&T.delayedLeave(),t[Qn]=void 0)};let c=t[Qn].bind(null,!1);r?w(r,[t,c]):c()},leave(t,r){let i=String(e.key);if(t[Qn]&&t[Qn](!0),n.isUnmounting)return r();C(p,[t]);let a=!1;t[Zn]=n=>{a||(a=!0,r(),C(n?g:h,[t]),t[Zn]=void 0,S[i]===e&&delete S[i])};let o=t[Zn].bind(null,!1);S[i]=e,m?w(m,[t,o]):o()},clone(e){let a=or(e,t,n,r,i);return i&&i(a),a}};return T}function sr(e){if(jr(e))return e=Ga(e),e.children=null,e}function cr(e){if(!jr(e))return Xn(e.type)&&e.children?rr(e.children):e;if(e.component)return e.component.subTree;let{shapeFlag:t,children:n}=e;if(n){if(t&16)return n[0];if(t&32&&g(n.default))return n.default()}}function lr(e,t){e.shapeFlag&6&&e.component?(e.transition=t,lr(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 ur(e,t=!1,n){let r=[],i=0;for(let a=0;a<e.length;a++){let o=e[a],s=n==null?o.key:String(n)+String(o.key==null?a:o.key);o.type===K?(o.patchFlag&128&&i++,r=r.concat(ur(o.children,t,s))):(t||o.type!==q)&&r.push(s==null?o:Ga(o,{key:s}))}if(i>1)for(let e=0;e<r.length;e++)r[e].patchFlag=-2;return r}function dr(e,t){return g(e)?s({name:e.name},t,{setup:e}):e}function fr(e){e.ids=[e.ids[0]+ e.ids[2]+++`-`,0,0]}function pr(e,t){let n;return!!((n=Object.getOwnPropertyDescriptor(e,t))&&!n.configurable)}var mr=new WeakMap;function hr(e,n,r,a,o=!1){if(d(e)){e.forEach((e,t)=>hr(e,n&&(d(n)?n[t]:n),r,a,o));return}if(Or(a)&&!o){a.shapeFlag&512&&a.type.__asyncResolved&&a.component.subTree.component&&hr(e,n,r,a.component.subTree);return}let s=a.shapeFlag&4?go(a.component):a.el,l=o?null:s,{i:f,r:p}=e,m=n&&n.r,h=f.refs===t?f.refs={}:f.refs,v=f.setupState,y=L(v),b=v===t?i:e=>pr(h,e)?!1:u(y,e),x=(e,t)=>!(t&&pr(h,t));if(m!=null&&m!==p){if(gr(n),_(m))h[m]=null,b(m)&&(v[m]=null);else if(z(m)){let e=n;x(m,e.k)&&(m.value=null),e.k&&(h[e.k]=null)}}if(g(p))gn(p,f,12,[l,h]);else{let t=_(p),n=z(p);if(t||n){let i=()=>{if(e.f){let n=t?b(p)?v[p]:h[p]:x(p)||!e.k?p.value:h[e.k];if(o)d(n)&&c(n,s);else if(d(n))n.includes(s)||n.push(s);else if(t)h[p]=[s],b(p)&&(v[p]=h[p]);else{let t=[s];x(p,e.k)&&(p.value=t),e.k&&(h[e.k]=t)}}else t?(h[p]=l,b(p)&&(v[p]=l)):n&&(x(p,e.k)&&(p.value=l),e.k&&(h[e.k]=l))};if(l){let t=()=>{i(),mr.delete(e)};t.id=-1,mr.set(e,t),G(t,r)}else gr(e),i()}}}function gr(e){let t=mr.get(e);t&&(t.flags|=8,mr.delete(e))}var _r=!1,vr=()=>{_r||=(console.error(`Hydration completed but contains mismatches.`),!0)},yr=e=>e.namespaceURI.includes(`svg`)&&e.tagName!==`foreignObject`,br=e=>e.namespaceURI.includes(`MathML`),xr=e=>{if(e.nodeType===1){if(yr(e))return`svg`;if(br(e))return`mathml`}},Sr=e=>e.nodeType===8;function Cr(e){let{mt:t,p:n,o:{patchProp:r,createText:i,nextSibling:o,parentNode:s,remove:c,insert:l,createComment:u}}=e,d=(e,t)=>{if(!t.hasChildNodes()){n(null,e,t),jn(),t._vnode=e;return}f(t.firstChild,e,null,null,null),jn(),t._vnode=e},f=(n,r,a,c,u,d=!1)=>{d||=!!r.dynamicChildren;let b=Sr(n)&&n.data===`[`,x=()=>g(n,r,a,c,u,b),{type:S,ref:C,shapeFlag:w,patchFlag:T}=r,E=n.nodeType;r.el=n,T===-2&&(d=!1,r.dynamicChildren=null);let D=null;switch(S){case ka:E===3?(n.data!==r.children&&(vr(),n.data=r.children),D=o(n)):r.children===``?(l(r.el=i(``),s(n),n),D=n):D=x();break;case q:y(n)?(D=o(n),v(r.el=n.content.firstChild,n,a)):D=E!==8||b?x():o(n);break;case Aa:if(b&&(n=o(n),E=n.nodeType),E===1||E===3){D=n;let e=!r.children.length;for(let t=0;t<r.staticCount;t++)e&&(r.children+=D.nodeType===1?D.outerHTML:D.data),t===r.staticCount-1&&(r.anchor=D),D=o(D);return b?o(D):D}else x();break;case K:D=b?h(n,r,a,c,u,d):x();break;default:if(w&1)D=(E!==1||r.type.toLowerCase()!==n.tagName.toLowerCase())&&!y(n)?x():p(n,r,a,c,u,d);else if(w&6){r.slotScopeIds=u;let e=s(n);if(D=b?_(n):Sr(n)&&n.data===`teleport start`?_(n,n.data,`teleport end`):o(n),t(r,e,null,a,c,xr(e),d),Or(r)&&!r.type.__asyncResolved){let t;b?(t=X(K),t.anchor=D?D.previousSibling:e.lastChild):t=n.nodeType===3?Ka(``):X(`div`),t.el=n,r.component.subTree=t}}else w&64?D=E===8?r.type.hydrate(n,r,a,c,u,d,e,m):x():w&128&&(D=r.type.hydrate(n,r,a,c,xr(s(n)),u,d,e,f))}return C!=null&&hr(C,null,c,r),D},p=(e,t,n,i,o,s)=>{s||=!!t.dynamicChildren;let{type:l,props:u,patchFlag:d,shapeFlag:f,dirs:p,transition:h}=t,g=l===`input`||l===`option`;if(g||d!==-1){p&&Rn(t,null,n,`created`);let l=!1;if(y(e)){l=ua(null,h)&&n&&n.vnode.props&&n.vnode.props.appear;let r=e.content.firstChild;if(l){let e=r.getAttribute(`class`);e&&(r.$cls=e),h.beforeEnter(r)}v(r,e,n),t.el=e=r}if(f&16&&!(u&&(u.innerHTML||u.textContent))){let r=m(e.firstChild,t,e,n,i,o,s);for(;r;){Er(e,1)||vr();let t=r;r=r.nextSibling,c(t)}}else if(f&8){let n=t.children;n[0]===`
|
|
2
|
+
`&&(e.tagName===`PRE`||e.tagName===`TEXTAREA`)&&(n=n.slice(1));let{textContent:r}=e;r!==n&&r!==n.replace(/\r\n|\r/g,`
|
|
3
|
+
`)&&(Er(e,0)||vr(),e.textContent=t.children)}if(u){if(g||!s||d&48){let t=e.tagName.includes(`-`);for(let i in u)(g&&(i.endsWith(`value`)||i===`indeterminate`)||a(i)&&!E(i)||i[0]===`.`||t&&!E(i))&&r(e,i,null,u[i],void 0,n)}else if(u.onClick)r(e,`onClick`,null,u.onClick,void 0,n);else if(d&4&&Ht(u.style))for(let e in u.style)u.style[e]}let _;(_=u&&u.onVnodeBeforeMount)&&Q(_,n,t),p&&Rn(t,null,n,`beforeMount`),((_=u&&u.onVnodeMounted)||p||l)&&Ea(()=>{_&&Q(_,n,t),l&&h.enter(e),p&&Rn(t,null,n,`mounted`)},i)}return e.nextSibling},m=(e,t,r,a,s,c,u)=>{u||=!!t.dynamicChildren;let d=t.children,p=d.length;for(let t=0;t<p;t++){let m=u?d[t]:d[t]=Z(d[t]),h=m.type===ka;e?(h&&!u&&t+1<p&&Z(d[t+1]).type===ka&&(l(i(e.data.slice(m.children.length)),r,o(e)),e.data=m.children),e=f(e,m,a,s,c,u)):h&&!m.children?l(m.el=i(``),r):(Er(r,1)||vr(),n(null,m,r,null,a,s,xr(r),c))}return e},h=(e,t,n,r,i,a)=>{let{slotScopeIds:c}=t;c&&(i=i?i.concat(c):c);let d=s(e),f=m(o(e),t,d,n,r,i,a);return f&&Sr(f)&&f.data===`]`?o(t.anchor=f):(vr(),l(t.anchor=u(`]`),d,f),f)},g=(e,t,r,i,a,l)=>{if(Er(e.parentElement,1)||vr(),t.el=null,l){let t=_(e);for(;;){let n=o(e);if(n&&n!==t)c(n);else break}}let u=o(e),d=s(e);return c(e),n(null,t,d,u,r,i,xr(d),a),r&&(r.vnode.el=t.el,Bi(r,t.el)),u},_=(e,t=`[`,n=`]`)=>{let r=0;for(;e;)if(e=o(e),e&&Sr(e)&&(e.data===t&&r++,e.data===n)){if(r===0)return o(e);r--}return e},v=(e,t,n)=>{let r=t.parentNode;r&&r.replaceChild(e,t);let i=n;for(;i;)i.vnode.el===t&&(i.vnode.el=i.subTree.el=e),i=i.parent},y=e=>e.nodeType===1&&e.tagName===`TEMPLATE`;return[d,f]}var wr=`data-allow-mismatch`,Tr={0:`text`,1:`children`,2:`class`,3:`style`,4:`attribute`};function Er(e,t){if(t===0||t===1)for(;e&&!e.hasAttribute(wr);)e=e.parentElement;let n=e&&e.getAttribute(wr);if(n==null)return!1;if(n===``)return!0;{let e=n.split(`,`);return t===0&&e.includes(`children`)?!0:e.includes(Tr[t])}}ce().requestIdleCallback,ce().cancelIdleCallback;function Dr(e,t){if(Sr(e)&&e.data===`[`){let n=1,r=e.nextSibling;for(;r;){if(r.nodeType===1){if(t(r)===!1)break}else if(Sr(r))if(r.data===`]`){if(--n===0)break}else r.data===`[`&&n++;r=r.nextSibling}}else t(e)}var Or=e=>!!e.type.__asyncLoader;function kr(e){g(e)&&(e={loader:e});let{loader:t,loadingComponent:n,errorComponent:r,delay:i=200,hydrate:a,timeout:o,suspensible:s=!0,onError:c}=e,l=null,u,d=0,f=()=>(d++,l=null,p()),p=()=>{let e;return l||(e=l=t().catch(e=>{if(e=e instanceof Error?e:Error(String(e)),c)return new Promise((t,n)=>{c(e,()=>t(f()),()=>n(e),d+1)});throw e}).then(t=>e!==l&&l?l:(t&&(t.__esModule||t[Symbol.toStringTag]===`Module`)&&(t=t.default),u=t,t)))};return dr({name:`AsyncComponentWrapper`,__asyncLoader:p,__asyncHydrate(e,t,n){let r=!1;(t.bu||=[]).push(()=>r=!0);let i=()=>{r||n()},o=a?()=>{let n=a(i,t=>Dr(e,t));n&&(t.bum||=[]).push(n)}:i;u?o():p().then(()=>!t.isUnmounted&&o())},get __asyncResolved(){return u},setup(){let e=$;if(fr(e),u)return()=>Ar(u,e);let t=t=>{l=null,_n(t,e,13,!r)};if(s&&e.suspense||oo)return p().then(t=>()=>Ar(t,e)).catch(e=>(t(e),()=>r?X(r,{error:e}):null));let a=qt(!1),c=qt(),d=qt(!!i);return i&&setTimeout(()=>{d.value=!1},i),o!=null&&setTimeout(()=>{if(!a.value&&!c.value){let e=Error(`Async component timed out after ${o}ms.`);t(e),c.value=e}},o),p().then(()=>{a.value=!0,e.parent&&jr(e.parent.vnode)&&e.parent.update()}).catch(e=>{t(e),c.value=e}),()=>{if(a.value&&u)return Ar(u,e);if(c.value&&r)return X(r,{error:c.value});if(n&&!d.value)return Ar(n,e)}}})}function Ar(e,t){let{ref:n,props:r,children:i,ce:a}=t.vnode,o=X(e,r,i);return o.ref=n,o.ce=a,delete t.vnode.ce,o}var jr=e=>e.type.__isKeepAlive,Mr={name:`KeepAlive`,__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){let n=eo(),r=n.ctx;if(!r.renderer)return()=>{let e=t.default&&t.default();return e&&e.length===1?e[0]:e};let i=new Map,a=new Set,o=null,s=n.suspense,{renderer:{p:c,m:l,um:u,o:{createElement:d}}}=r,f=d(`div`);r.activate=(e,t,n,r,i)=>{let a=e.component;l(e,t,n,0,s),c(a.vnode,e,t,n,a,s,r,e.slotScopeIds,i),G(()=>{a.isDeactivated=!1,a.a&&j(a.a);let t=e.props&&e.props.onVnodeMounted;t&&Q(t,a.parent,e)},s)},r.deactivate=e=>{let t=e.component;ma(t.m),ma(t.a),l(e,f,null,1,s),G(()=>{t.da&&j(t.da);let n=e.props&&e.props.onVnodeUnmounted;n&&Q(n,t.parent,e),t.isDeactivated=!0},s)};function p(e){Rr(e),u(e,n,s,!0)}function m(e){i.forEach((t,n)=>{let r=_o(Or(t)?t.type.__asyncResolved||{}:t.type);r&&!e(r)&&h(n)})}function h(e){let t=i.get(e);t&&(!o||!Y(t,o))?p(t):o&&Rr(o),i.delete(e),a.delete(e)}Gn(()=>[e.include,e.exclude],([e,t])=>{e&&m(t=>Nr(e,t)),t&&m(e=>!Nr(t,e))},{flush:`post`,deep:!0});let g=null,_=()=>{g!=null&&(ga(n.subTree.type)?G(()=>{i.set(g,zr(n.subTree))},n.subTree.suspense):i.set(g,zr(n.subTree)))};return Ur(_),Gr(_),Kr(()=>{i.forEach(e=>{let{subTree:t,suspense:r}=n,i=zr(t);if(e.type===i.type&&e.key===i.key){Rr(i);let e=i.component.da;e&&G(e,r);return}p(e)})}),()=>{if(g=null,!t.default)return o=null;let n=t.default(),r=n[0];if(n.length>1)return o=null,n;if(!za(r)||!(r.shapeFlag&4)&&!(r.shapeFlag&128))return o=null,r;let s=zr(r);if(s.type===q)return o=null,s;let c=s.type,l=_o(Or(s)?s.type.__asyncResolved||{}:c),{include:u,exclude:d,max:f}=e;if(u&&(!l||!Nr(u,l))||d&&l&&Nr(d,l))return s.shapeFlag&=-257,o=s,r;let p=s.key==null?c:s.key,m=i.get(p);return s.el&&(s=Ga(s),r.shapeFlag&128&&(r.ssContent=s)),g=p,m?(s.el=m.el,s.component=m.component,s.transition&&lr(s,s.transition),s.shapeFlag|=512,a.delete(p),a.add(p)):(a.add(p),f&&a.size>parseInt(f,10)&&h(a.values().next().value)),s.shapeFlag|=256,o=s,ga(r.type)?r:s}}};function Nr(e,t){return d(e)?e.some(e=>Nr(e,t)):_(e)?e.split(`,`).includes(t):h(e)?(e.lastIndex=0,e.test(t)):!1}function Pr(e,t){Ir(e,`a`,t)}function Fr(e,t){Ir(e,`da`,t)}function Ir(e,t,n=$){let r=e.__wdc||=()=>{let t=n;for(;t;){if(t.isDeactivated)return;t=t.parent}return e()};if(Br(t,r,n),n){let e=n.parent;for(;e&&e.parent;)jr(e.parent.vnode)&&Lr(r,t,n,e),e=e.parent}}function Lr(e,t,n,r){let i=Br(t,e,r,!0);qr(()=>{c(r[t],i)},n)}function Rr(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function zr(e){return e.shapeFlag&128?e.ssContent:e}function Br(e,t,n=$,r=!1){if(n){let i=n[e]||(n[e]=[]),a=t.__weh||=(...r)=>{Ge();let i=ro(n),a=B(t,n,e,r);return i(),Ke(),a};return r?i.unshift(a):i.push(a),a}}var Vr=e=>(t,n=$)=>{(!oo||e===`sp`)&&Br(e,(...e)=>t(...e),n)},Hr=Vr(`bm`),Ur=Vr(`m`),Wr=Vr(`bu`),Gr=Vr(`u`),Kr=Vr(`bum`),qr=Vr(`um`),Jr=Vr(`sp`),Yr=Vr(`rtg`),Xr=Vr(`rtc`);function Zr(e,t=$){Br(`ec`,e,t)}var Qr=`components`;function $r(e,t){return ni(Qr,e,!0,t)||e}var ei=Symbol.for(`v-ndc`);function ti(e){return _(e)?ni(Qr,e,!1)||e:e||ei}function ni(e,t,n=!0,r=!1){let i=H||$;if(i){let n=i.type;if(e===Qr){let e=_o(n,!1);if(e&&(e===t||e===O(t)||e===ne(O(t))))return n}let a=ri(i[e]||n[e],t)||ri(i.appContext[e],t);return!a&&r?n:a}}function ri(e,t){return e&&(e[t]||e[O(t)]||e[ne(O(t))])}function ii(e,t,n,r){let i,a=n&&n[r],o=d(e);if(o||_(e)){let n=o&&Ht(e),r=!1,s=!1;n&&(r=!I(e),s=Ut(e),e=at(e)),i=Array(e.length);for(let n=0,o=e.length;n<o;n++)i[n]=t(r?s?Kt(R(e[n])):R(e[n]):e[n],n,void 0,a&&a[n])}else if(typeof e==`number`){i=Array(e);for(let n=0;n<e;n++)i[n]=t(n+1,n,void 0,a&&a[n])}else if(y(e))if(e[Symbol.iterator])i=Array.from(e,(e,n)=>t(e,n,void 0,a&&a[n]));else{let n=Object.keys(e);i=Array(n.length);for(let r=0,o=n.length;r<o;r++){let o=n[r];i[r]=t(e[o],o,r,a&&a[r])}}else i=[];return n&&(n[r]=i),i}var ai=e=>e?ao(e)?go(e):ai(e.parent):null,oi=s(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=>ai(e.parent),$root:e=>ai(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>hi(e),$forceUpdate:e=>e.f||=()=>{Dn(e.update)},$nextTick:e=>e.n||=Tn.bind(e.proxy),$watch:e=>qn.bind(e)}),si=(e,n)=>e!==t&&!e.__isScriptSetup&&u(e,n),ci={get({_:e},n){if(n===`__v_skip`)return!0;let{ctx:r,setupState:i,data:a,props:o,accessCache:s,type:c,appContext:l}=e;if(n[0]!==`$`){let e=s[n];if(e!==void 0)switch(e){case 1:return i[n];case 2:return a[n];case 4:return r[n];case 3:return o[n]}else if(si(i,n))return s[n]=1,i[n];else if(a!==t&&u(a,n))return s[n]=2,a[n];else if(u(o,n))return s[n]=3,o[n];else if(r!==t&&u(r,n))return s[n]=4,r[n];else ui&&(s[n]=0)}let d=oi[n],f,p;if(d)return n===`$attrs`&&F(e.attrs,`get`,``),d(e);if((f=c.__cssModules)&&(f=f[n]))return f;if(r!==t&&u(r,n))return s[n]=4,r[n];if(p=l.config.globalProperties,u(p,n))return p[n]},set({_:e},n,r){let{data:i,setupState:a,ctx:o}=e;return si(a,n)?(a[n]=r,!0):i!==t&&u(i,n)?(i[n]=r,!0):u(e.props,n)||n[0]===`$`&&n.slice(1)in e?!1:(o[n]=r,!0)},has({_:{data:e,setupState:n,accessCache:r,ctx:i,appContext:a,props:o,type:s}},c){let l;return!!(r[c]||e!==t&&c[0]!==`$`&&u(e,c)||si(n,c)||u(o,c)||u(i,c)||u(oi,c)||u(a.config.globalProperties,c)||(l=s.__cssModules)&&l[c])},defineProperty(e,t,n){return n.get==null?u(n,`value`)&&this.set(e,t,n.value,null):e._.accessCache[t]=0,Reflect.defineProperty(e,t,n)}};function li(e){return d(e)?e.reduce((e,t)=>(e[t]=null,e),{}):e}var ui=!0;function di(e){let t=hi(e),n=e.proxy,i=e.ctx;ui=!1,t.beforeCreate&&pi(t.beforeCreate,e,`bc`);let{data:a,computed:o,methods:s,watch:c,provide:l,inject:u,created:f,beforeMount:p,mounted:m,beforeUpdate:h,updated:_,activated:v,deactivated:b,beforeDestroy:x,beforeUnmount:S,destroyed:C,unmounted:w,render:T,renderTracked:E,renderTriggered:D,errorCaptured:ee,serverPrefetch:O,expose:te,inheritAttrs:k,components:ne,directives:re,filters:A}=t;if(u&&fi(u,i,null),s)for(let e in s){let t=s[e];g(t)&&(i[e]=t.bind(n))}if(a){let t=a.call(n,n);y(t)&&(e.data=Rt(t))}if(ui=!0,o)for(let e in o){let t=o[e],a=yo({get:g(t)?t.bind(n,n):g(t.get)?t.get.bind(n,n):r,set:!g(t)&&g(t.set)?t.set.bind(n):r});Object.defineProperty(i,e,{enumerable:!0,configurable:!0,get:()=>a.value,set:e=>a.value=e})}if(c)for(let e in c)mi(c[e],i,n,e);if(l){let e=g(l)?l.call(n):l;Reflect.ownKeys(e).forEach(t=>{zn(t,e[t])})}f&&pi(f,e,`c`);function j(e,t){d(t)?t.forEach(t=>e(t.bind(n))):t&&e(t.bind(n))}if(j(Hr,p),j(Ur,m),j(Wr,h),j(Gr,_),j(Pr,v),j(Fr,b),j(Zr,ee),j(Xr,E),j(Yr,D),j(Kr,S),j(qr,w),j(Jr,O),d(te))if(te.length){let t=e.exposed||={};te.forEach(e=>{Object.defineProperty(t,e,{get:()=>n[e],set:t=>n[e]=t,enumerable:!0})})}else e.exposed||={};T&&e.render===r&&(e.render=T),k!=null&&(e.inheritAttrs=k),ne&&(e.components=ne),re&&(e.directives=re),O&&fr(e)}function fi(e,t,n=r){d(e)&&(e=bi(e));for(let n in e){let r=e[n],i;i=y(r)?`default`in r?Bn(r.from||n,r.default,!0):Bn(r.from||n):Bn(r),z(i)?Object.defineProperty(t,n,{enumerable:!0,configurable:!0,get:()=>i.value,set:e=>i.value=e}):t[n]=i}}function pi(e,t,n){B(d(e)?e.map(e=>e.bind(t.proxy)):e.bind(t.proxy),t,n)}function mi(e,t,n,r){let i=r.includes(`.`)?Jn(n,r):()=>n[r];if(_(e)){let n=t[e];g(n)&&Gn(i,n)}else if(g(e))Gn(i,e.bind(n));else if(y(e))if(d(e))e.forEach(e=>mi(e,t,n,r));else{let r=g(e.handler)?e.handler.bind(n):t[e.handler];g(r)&&Gn(i,r,e)}}function hi(e){let t=e.type,{mixins:n,extends:r}=t,{mixins:i,optionsCache:a,config:{optionMergeStrategies:o}}=e.appContext,s=a.get(t),c;return s?c=s:!i.length&&!n&&!r?c=t:(c={},i.length&&i.forEach(e=>gi(c,e,o,!0)),gi(c,t,o)),y(t)&&a.set(t,c),c}function gi(e,t,n,r=!1){let{mixins:i,extends:a}=t;a&&gi(e,a,n,!0),i&&i.forEach(t=>gi(e,t,n,!0));for(let i in t)if(!(r&&i===`expose`)){let r=_i[i]||n&&n[i];e[i]=r?r(e[i],t[i]):t[i]}return e}var _i={data:vi,props:Si,emits:Si,methods:xi,computed:xi,beforeCreate:W,created:W,beforeMount:W,mounted:W,beforeUpdate:W,updated:W,beforeDestroy:W,beforeUnmount:W,destroyed:W,unmounted:W,activated:W,deactivated:W,errorCaptured:W,serverPrefetch:W,components:xi,directives:xi,watch:Ci,provide:vi,inject:yi};function vi(e,t){return t?e?function(){return s(g(e)?e.call(this,this):e,g(t)?t.call(this,this):t)}:t:e}function yi(e,t){return xi(bi(e),bi(t))}function bi(e){if(d(e)){let t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function W(e,t){return e?[...new Set([].concat(e,t))]:t}function xi(e,t){return e?s(Object.create(null),e,t):t}function Si(e,t){return e?d(e)&&d(t)?[...new Set([...e,...t])]:s(Object.create(null),li(e),li(t??{})):t}function Ci(e,t){if(!e)return t;if(!t)return e;let n=s(Object.create(null),e);for(let r in t)n[r]=W(e[r],t[r]);return n}function wi(){return{app:null,config:{isNativeTag:i,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}}var Ti=0;function Ei(e,t){return function(n,r=null){g(n)||(n=s({},n)),r!=null&&!y(r)&&(r=null);let i=wi(),a=new WeakSet,o=[],c=!1,l=i.app={_uid:Ti++,_component:n,_props:r,_container:null,_context:i,_instance:null,version:xo,get config(){return i.config},set config(e){},use(e,...t){return a.has(e)||(e&&g(e.install)?(a.add(e),e.install(l,...t)):g(e)&&(a.add(e),e(l,...t))),l},mixin(e){return i.mixins.includes(e)||i.mixins.push(e),l},component(e,t){return t?(i.components[e]=t,l):i.components[e]},directive(e,t){return t?(i.directives[e]=t,l):i.directives[e]},mount(a,o,s){if(!c){let u=l._ceVNode||X(n,r);return u.appContext=i,s===!0?s=`svg`:s===!1&&(s=void 0),o&&t?t(u,a):e(u,a,s),c=!0,l._container=a,a.__vue_app__=l,go(u.component)}},onUnmount(e){o.push(e)},unmount(){c&&(B(o,l._instance,16),e(null,l._container),delete l._container.__vue_app__)},provide(e,t){return i.provides[e]=t,l},runWithContext(e){let t=Di;Di=l;try{return e()}finally{Di=t}}};return l}}var Di=null,Oi=(e,t)=>t===`modelValue`||t===`model-value`?e.modelModifiers:e[`${t}Modifiers`]||e[`${O(t)}Modifiers`]||e[`${k(t)}Modifiers`];function ki(e,n,...r){if(e.isUnmounted)return;let i=e.vnode.props||t,a=r,o=n.startsWith(`update:`),s=o&&Oi(i,n.slice(7));s&&(s.trim&&(a=r.map(e=>_(e)?e.trim():e)),s.number&&(a=r.map(ae)));let c,l=i[c=re(n)]||i[c=re(O(n))];!l&&o&&(l=i[c=re(k(n))]),l&&B(l,e,6,a);let u=i[c+`Once`];if(u){if(!e.emitted)e.emitted={};else if(e.emitted[c])return;e.emitted[c]=!0,B(u,e,6,a)}}var Ai=new WeakMap;function ji(e,t,n=!1){let r=n?Ai:t.emitsCache,i=r.get(e);if(i!==void 0)return i;let a=e.emits,o={},c=!1;if(!g(e)){let r=e=>{let n=ji(e,t,!0);n&&(c=!0,s(o,n))};!n&&t.mixins.length&&t.mixins.forEach(r),e.extends&&r(e.extends),e.mixins&&e.mixins.forEach(r)}return!a&&!c?(y(e)&&r.set(e,null),null):(d(a)?a.forEach(e=>o[e]=null):s(o,a),y(e)&&r.set(e,o),o)}function Mi(e,t){return!e||!a(t)?!1:(t=t.slice(2).replace(/Once$/,``),u(e,t[0].toLowerCase()+t.slice(1))||u(e,k(t))||u(e,t))}function Ni(e){let{type:t,vnode:n,proxy:r,withProxy:i,propsOptions:[a],slots:s,attrs:c,emit:l,render:u,renderCache:d,props:f,data:p,setupState:m,ctx:h,inheritAttrs:g}=e,_=Fn(e),v,y;try{if(n.shapeFlag&4){let e=i||r,t=e;v=Z(u.call(t,e,d,f,m,p,h)),y=c}else{let e=t;v=Z(e.length>1?e(f,{attrs:c,slots:s,emit:l}):e(f,null)),y=t.props?c:Fi(c)}}catch(t){ja.length=0,_n(t,e,1),v=X(q)}let b=v;if(y&&g!==!1){let e=Object.keys(y),{shapeFlag:t}=b;e.length&&t&7&&(a&&e.some(o)&&(y=Ii(y,a)),b=Ga(b,y,!1,!0))}return n.dirs&&(b=Ga(b,null,!1,!0),b.dirs=b.dirs?b.dirs.concat(n.dirs):n.dirs),n.transition&&lr(b,n.transition),v=b,Fn(_),v}function Pi(e,t=!0){let n;for(let t=0;t<e.length;t++){let r=e[t];if(za(r)){if(r.type!==q||r.children===`v-if`){if(n)return;n=r}}else return}return n}var Fi=e=>{let t;for(let n in e)(n===`class`||n===`style`||a(n))&&((t||={})[n]=e[n]);return t},Ii=(e,t)=>{let n={};for(let r in e)(!o(r)||!(r.slice(9)in t))&&(n[r]=e[r]);return n};function Li(e,t,n){let{props:r,children:i,component:a}=e,{props:o,children:s,patchFlag:c}=t,l=a.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return r?Ri(r,o,l):!!o;if(c&8){let e=t.dynamicProps;for(let t=0;t<e.length;t++){let n=e[t];if(zi(o,r,n)&&!Mi(l,n))return!0}}}else return(i||s)&&(!s||!s.$stable)?!0:r===o?!1:r?o?Ri(r,o,l):!0:!!o;return!1}function Ri(e,t,n){let r=Object.keys(t);if(r.length!==Object.keys(e).length)return!0;for(let i=0;i<r.length;i++){let a=r[i];if(zi(t,e,a)&&!Mi(n,a))return!0}return!1}function zi(e,t,n){let r=e[n],i=t[n];return n===`style`&&y(r)&&y(i)?!be(r,i):r!==i}function Bi({vnode:e,parent:t},n){for(;t;){let r=t.subTree;if(r.suspense&&r.suspense.activeBranch===e&&(r.el=e.el),r===e)(e=t.vnode).el=n,t=t.parent;else break}}var Vi={},Hi=()=>Object.create(Vi),Ui=e=>Object.getPrototypeOf(e)===Vi;function Wi(e,t,n,r=!1){let i={},a=Hi();e.propsDefaults=Object.create(null),Ki(e,t,i,a);for(let t in e.propsOptions[0])t in i||(i[t]=void 0);n?e.props=r?i:zt(i):e.type.props?e.props=i:e.props=a,e.attrs=a}function Gi(e,t,n,r){let{props:i,attrs:a,vnode:{patchFlag:o}}=e,s=L(i),[c]=e.propsOptions,l=!1;if((r||o>0)&&!(o&16)){if(o&8){let n=e.vnode.dynamicProps;for(let r=0;r<n.length;r++){let o=n[r];if(Mi(e.emitsOptions,o))continue;let d=t[o];if(c)if(u(a,o))d!==a[o]&&(a[o]=d,l=!0);else{let t=O(o);i[t]=qi(c,s,t,d,e,!1)}else d!==a[o]&&(a[o]=d,l=!0)}}}else{Ki(e,t,i,a)&&(l=!0);let r;for(let a in s)(!t||!u(t,a)&&((r=k(a))===a||!u(t,r)))&&(c?n&&(n[a]!==void 0||n[r]!==void 0)&&(i[a]=qi(c,s,a,void 0,e,!0)):delete i[a]);if(a!==s)for(let e in a)(!t||!u(t,e))&&(delete a[e],l=!0)}l&&nt(e.attrs,`set`,``)}function Ki(e,n,r,i){let[a,o]=e.propsOptions,s=!1,c;if(n)for(let t in n){if(E(t))continue;let l=n[t],d;a&&u(a,d=O(t))?!o||!o.includes(d)?r[d]=l:(c||={})[d]=l:Mi(e.emitsOptions,t)||(!(t in i)||l!==i[t])&&(i[t]=l,s=!0)}if(o){let n=L(r),i=c||t;for(let t=0;t<o.length;t++){let s=o[t];r[s]=qi(a,n,s,i[s],e,!u(i,s))}}return s}function qi(e,t,n,r,i,a){let o=e[n];if(o!=null){let e=u(o,`default`);if(e&&r===void 0){let e=o.default;if(o.type!==Function&&!o.skipFactory&&g(e)){let{propsDefaults:a}=i;if(n in a)r=a[n];else{let o=ro(i);r=a[n]=e.call(null,t),o()}}else r=e;i.ce&&i.ce._setProp(n,r)}o[0]&&(a&&!e?r=!1:o[1]&&(r===``||r===k(n))&&(r=!0))}return r}var Ji=new WeakMap;function Yi(e,r,i=!1){let a=i?Ji:r.propsCache,o=a.get(e);if(o)return o;let c=e.props,l={},f=[],p=!1;if(!g(e)){let t=e=>{p=!0;let[t,n]=Yi(e,r,!0);s(l,t),n&&f.push(...n)};!i&&r.mixins.length&&r.mixins.forEach(t),e.extends&&t(e.extends),e.mixins&&e.mixins.forEach(t)}if(!c&&!p)return y(e)&&a.set(e,n),n;if(d(c))for(let e=0;e<c.length;e++){let n=O(c[e]);Xi(n)&&(l[n]=t)}else if(c)for(let e in c){let t=O(e);if(Xi(t)){let n=c[e],r=l[t]=d(n)||g(n)?{type:n}:s({},n),i=r.type,a=!1,o=!0;if(d(i))for(let e=0;e<i.length;++e){let t=i[e],n=g(t)&&t.name;if(n===`Boolean`){a=!0;break}else n===`String`&&(o=!1)}else a=g(i)&&i.name===`Boolean`;r[0]=a,r[1]=o,(a||u(r,`default`))&&f.push(t)}}let m=[l,f];return y(e)&&a.set(e,m),m}function Xi(e){return e[0]!==`$`&&!E(e)}var Zi=e=>e===`_`||e===`_ctx`||e===`$stable`,Qi=e=>d(e)?e.map(Z):[Z(e)],$i=(e,t,n)=>{if(t._n)return t;let r=In((...e)=>Qi(t(...e)),n);return r._c=!1,r},ea=(e,t,n)=>{let r=e._ctx;for(let n in e){if(Zi(n))continue;let i=e[n];if(g(i))t[n]=$i(n,i,r);else if(i!=null){let e=Qi(i);t[n]=()=>e}}},ta=(e,t)=>{let n=Qi(t);e.slots.default=()=>n},na=(e,t,n)=>{for(let r in t)(n||!Zi(r))&&(e[r]=t[r])},ra=(e,t,n)=>{let r=e.slots=Hi();if(e.vnode.shapeFlag&32){let e=t._;e?(na(r,t,n),n&&ie(r,`_`,e,!0)):ea(t,r)}else t&&ta(e,t)},ia=(e,n,r)=>{let{vnode:i,slots:a}=e,o=!0,s=t;if(i.shapeFlag&32){let e=n._;e?r&&e===1?o=!1:na(a,n,r):(o=!n.$stable,ea(n,a)),s=n}else n&&(ta(e,n),s={default:1});if(o)for(let e in a)!Zi(e)&&s[e]==null&&delete a[e]},G=Ea;function aa(e){return sa(e)}function oa(e){return sa(e,Cr)}function sa(e,i){let a=ce();a.__VUE__=!0;let{insert:o,remove:s,patchProp:c,createElement:l,createText:u,createComment:d,setText:f,setElementText:p,parentNode:m,nextSibling:h,setScopeId:g=r,insertStaticContent:_}=e,v=(e,t,n,r=null,i=null,a=null,o=void 0,s=null,c=!!t.dynamicChildren)=>{if(e===t)return;e&&!Y(e,t)&&(r=_e(e),fe(e,i,a,!0),e=null),t.patchFlag===-2&&(c=!1,t.dynamicChildren=null);let{type:l,ref:u,shapeFlag:d}=t;switch(l){case ka:y(e,t,n,r);break;case q:b(e,t,n,r);break;case Aa:e??x(t,n,r,o);break;case K:ne(e,t,n,r,i,a,o,s,c);break;default:d&1?w(e,t,n,r,i,a,o,s,c):d&6?re(e,t,n,r,i,a,o,s,c):(d&64||d&128)&&l.process(e,t,n,r,i,a,o,s,c,be)}u!=null&&i?hr(u,e&&e.ref,a,t||e,!t):u==null&&e&&e.ref!=null&&hr(e.ref,null,a,e,!0)},y=(e,t,n,r)=>{if(e==null)o(t.el=u(t.children),n,r);else{let n=t.el=e.el;t.children!==e.children&&f(n,t.children)}},b=(e,t,n,r)=>{e==null?o(t.el=d(t.children||``),n,r):t.el=e.el},x=(e,t,n,r)=>{[e.el,e.anchor]=_(e.children,t,n,r,e.el,e.anchor)},S=({el:e,anchor:t},n,r)=>{let i;for(;e&&e!==t;)i=h(e),o(e,n,r),e=i;o(t,n,r)},C=({el:e,anchor:t})=>{let n;for(;e&&e!==t;)n=h(e),s(e),e=n;s(t)},w=(e,t,n,r,i,a,o,s,c)=>{if(t.type===`svg`?o=`svg`:t.type===`math`&&(o=`mathml`),e==null)T(t,n,r,i,a,o,s,c);else{let n=e.el&&e.el._isVueCE?e.el:null;try{n&&n._beginPatch(),O(e,t,i,a,o,s,c)}finally{n&&n._endPatch()}}},T=(e,t,n,r,i,a,s,u)=>{let d,f,{props:m,shapeFlag:h,transition:g,dirs:_}=e;if(d=e.el=l(e.type,a,m&&m.is,m),h&8?p(d,e.children):h&16&&ee(e.children,d,null,r,i,ca(e,a),s,u),_&&Rn(e,null,r,`created`),D(d,e,e.scopeId,s,r),m){for(let e in m)e!==`value`&&!E(e)&&c(d,e,null,m[e],a,r);`value`in m&&c(d,`value`,null,m.value,a),(f=m.onVnodeBeforeMount)&&Q(f,r,e)}_&&Rn(e,null,r,`beforeMount`);let v=ua(i,g);v&&g.beforeEnter(d),o(d,t,n),((f=m&&m.onVnodeMounted)||v||_)&&G(()=>{f&&Q(f,r,e),v&&g.enter(d),_&&Rn(e,null,r,`mounted`)},i)},D=(e,t,n,r,i)=>{if(n&&g(e,n),r)for(let t=0;t<r.length;t++)g(e,r[t]);if(i){let n=i.subTree;if(t===n||ga(n.type)&&(n.ssContent===t||n.ssFallback===t)){let t=i.vnode;D(e,t,t.scopeId,t.slotScopeIds,i.parent)}}},ee=(e,t,n,r,i,a,o,s,c=0)=>{for(let l=c;l<e.length;l++)v(null,e[l]=s?Ja(e[l]):Z(e[l]),t,n,r,i,a,o,s)},O=(e,n,r,i,a,o,s)=>{let l=n.el=e.el,{patchFlag:u,dynamicChildren:d,dirs:f}=n;u|=e.patchFlag&16;let m=e.props||t,h=n.props||t,g;if(r&&la(r,!1),(g=h.onVnodeBeforeUpdate)&&Q(g,r,n,e),f&&Rn(n,e,r,`beforeUpdate`),r&&la(r,!0),(m.innerHTML&&h.innerHTML==null||m.textContent&&h.textContent==null)&&p(l,``),d?te(e.dynamicChildren,d,l,r,i,ca(n,a),o):s||se(e,n,l,null,r,i,ca(n,a),o,!1),u>0){if(u&16)k(l,m,h,r,a);else if(u&2&&m.class!==h.class&&c(l,`class`,null,h.class,a),u&4&&c(l,`style`,m.style,h.style,a),u&8){let e=n.dynamicProps;for(let t=0;t<e.length;t++){let n=e[t],i=m[n],o=h[n];(o!==i||n===`value`)&&c(l,n,i,o,a,r)}}u&1&&e.children!==n.children&&p(l,n.children)}else !s&&d==null&&k(l,m,h,r,a);((g=h.onVnodeUpdated)||f)&&G(()=>{g&&Q(g,r,n,e),f&&Rn(n,e,r,`updated`)},i)},te=(e,t,n,r,i,a,o)=>{for(let s=0;s<t.length;s++){let c=e[s],l=t[s];v(c,l,c.el&&(c.type===K||!Y(c,l)||c.shapeFlag&198)?m(c.el):n,null,r,i,a,o,!0)}},k=(e,n,r,i,a)=>{if(n!==r){if(n!==t)for(let t in n)!E(t)&&!(t in r)&&c(e,t,n[t],null,a,i);for(let t in r){if(E(t))continue;let o=r[t],s=n[t];o!==s&&t!==`value`&&c(e,t,s,o,a,i)}`value`in r&&c(e,`value`,n.value,r.value,a)}},ne=(e,t,n,r,i,a,s,c,l)=>{let d=t.el=e?e.el:u(``),f=t.anchor=e?e.anchor:u(``),{patchFlag:p,dynamicChildren:m,slotScopeIds:h}=t;h&&(c=c?c.concat(h):h),e==null?(o(d,n,r),o(f,n,r),ee(t.children||[],n,f,i,a,s,c,l)):p>0&&p&64&&m&&e.dynamicChildren&&e.dynamicChildren.length===m.length?(te(e.dynamicChildren,m,n,i,a,s,c),(t.key!=null||i&&t===i.subTree)&&da(e,t,!0)):se(e,t,n,f,i,a,s,c,l)},re=(e,t,n,r,i,a,o,s,c)=>{t.slotScopeIds=s,e==null?t.shapeFlag&512?i.ctx.activate(t,n,r,o,c):A(t,n,r,i,a,o,c):ie(e,t,c)},A=(e,t,n,r,i,a,o)=>{let s=e.component=$a(e,r,i);if(jr(e)&&(s.ctx.renderer=be),so(s,!1,o),s.asyncDep){if(i&&i.registerDep(s,ae,o),!e.el){let r=s.subTree=X(q);b(null,r,t,n),e.placeholder=r.el}}else ae(s,e,t,n,i,a,o)},ie=(e,t,n)=>{let r=t.component=e.component;if(Li(e,t,n))if(r.asyncDep&&!r.asyncResolved){oe(r,t,n);return}else r.next=t,r.update();else t.el=e.el,r.vnode=t},ae=(e,t,n,r,i,a,o)=>{let s=()=>{if(e.isMounted){let{next:t,bu:n,u:r,parent:s,vnode:c}=e;{let n=pa(e);if(n){t&&(t.el=c.el,oe(e,t,o)),n.asyncDep.then(()=>{G(()=>{e.isUnmounted||l()},i)});return}}let u=t,d;la(e,!1),t?(t.el=c.el,oe(e,t,o)):t=c,n&&j(n),(d=t.props&&t.props.onVnodeBeforeUpdate)&&Q(d,s,t,c),la(e,!0);let f=Ni(e),p=e.subTree;e.subTree=f,v(p,f,m(p.el),_e(p),e,i,a),t.el=f.el,u===null&&Bi(e,f.el),r&&G(r,i),(d=t.props&&t.props.onVnodeUpdated)&&G(()=>Q(d,s,t,c),i)}else{let o,{el:s,props:c}=t,{bm:l,m:u,parent:d,root:f,type:p}=e,m=Or(t);if(la(e,!1),l&&j(l),!m&&(o=c&&c.onVnodeBeforeMount)&&Q(o,d,t),la(e,!0),s&&Se){let t=()=>{e.subTree=Ni(e),Se(s,e.subTree,e,i,null)};m&&p.__asyncHydrate?p.__asyncHydrate(s,e,t):t()}else{f.ce&&f.ce._hasShadowRoot()&&f.ce._injectChildStyle(p,e.parent?e.parent.type:void 0);let o=e.subTree=Ni(e);v(null,o,n,r,e,i,a),t.el=o.el}if(u&&G(u,i),!m&&(o=c&&c.onVnodeMounted)){let e=t;G(()=>Q(o,d,e),i)}(t.shapeFlag&256||d&&Or(d.vnode)&&d.vnode.shapeFlag&256)&&e.a&&G(e.a,i),e.isMounted=!0,t=n=r=null}};e.scope.on();let c=e.effect=new je(s);e.scope.off();let l=e.update=c.run.bind(c),u=e.job=c.runIfDirty.bind(c);u.i=e,u.id=e.uid,c.scheduler=()=>Dn(u),la(e,!0),l()},oe=(e,t,n)=>{t.component=e;let r=e.vnode.props;e.vnode=t,e.next=null,Gi(e,t.props,r,n),ia(e,t.children,n),Ge(),An(e),Ke()},se=(e,t,n,r,i,a,o,s,c=!1)=>{let l=e&&e.children,u=e?e.shapeFlag:0,d=t.children,{patchFlag:f,shapeFlag:m}=t;if(f>0){if(f&128){ue(l,d,n,r,i,a,o,s,c);return}else if(f&256){le(l,d,n,r,i,a,o,s,c);return}}m&8?(u&16&&ge(l,i,a),d!==l&&p(n,d)):u&16?m&16?ue(l,d,n,r,i,a,o,s,c):ge(l,i,a,!0):(u&8&&p(n,``),m&16&&ee(d,n,r,i,a,o,s,c))},le=(e,t,r,i,a,o,s,c,l)=>{e||=n,t||=n;let u=e.length,d=t.length,f=Math.min(u,d),p;for(p=0;p<f;p++){let n=t[p]=l?Ja(t[p]):Z(t[p]);v(e[p],n,r,null,a,o,s,c,l)}u>d?ge(e,a,o,!0,!1,f):ee(t,r,i,a,o,s,c,l,f)},ue=(e,t,r,i,a,o,s,c,l)=>{let u=0,d=t.length,f=e.length-1,p=d-1;for(;u<=f&&u<=p;){let n=e[u],i=t[u]=l?Ja(t[u]):Z(t[u]);if(Y(n,i))v(n,i,r,null,a,o,s,c,l);else break;u++}for(;u<=f&&u<=p;){let n=e[f],i=t[p]=l?Ja(t[p]):Z(t[p]);if(Y(n,i))v(n,i,r,null,a,o,s,c,l);else break;f--,p--}if(u>f){if(u<=p){let e=p+1,n=e<d?t[e].el:i;for(;u<=p;)v(null,t[u]=l?Ja(t[u]):Z(t[u]),r,n,a,o,s,c,l),u++}}else if(u>p)for(;u<=f;)fe(e[u],a,o,!0),u++;else{let m=u,h=u,g=new Map;for(u=h;u<=p;u++){let e=t[u]=l?Ja(t[u]):Z(t[u]);e.key!=null&&g.set(e.key,u)}let _,y=0,b=p-h+1,x=!1,S=0,C=Array(b);for(u=0;u<b;u++)C[u]=0;for(u=m;u<=f;u++){let n=e[u];if(y>=b){fe(n,a,o,!0);continue}let i;if(n.key!=null)i=g.get(n.key);else for(_=h;_<=p;_++)if(C[_-h]===0&&Y(n,t[_])){i=_;break}i===void 0?fe(n,a,o,!0):(C[i-h]=u+1,i>=S?S=i:x=!0,v(n,t[i],r,null,a,o,s,c,l),y++)}let w=x?fa(C):n;for(_=w.length-1,u=b-1;u>=0;u--){let e=h+u,n=t[e],f=t[e+1],p=e+1<d?f.el||ha(f):i;C[u]===0?v(null,n,r,p,a,o,s,c,l):x&&(_<0||u!==w[_]?de(n,r,p,2):_--)}}},de=(e,t,n,r,i=null)=>{let{el:a,type:c,transition:l,children:u,shapeFlag:d}=e;if(d&6){de(e.component.subTree,t,n,r);return}if(d&128){e.suspense.move(t,n,r);return}if(d&64){c.move(e,t,n,be);return}if(c===K){o(a,t,n);for(let e=0;e<u.length;e++)de(u[e],t,n,r);o(e.anchor,t,n);return}if(c===Aa){S(e,t,n);return}if(r!==2&&d&1&&l)if(r===0)l.beforeEnter(a),o(a,t,n),G(()=>l.enter(a),i);else{let{leave:r,delayLeave:i,afterLeave:c}=l,u=()=>{e.ctx.isUnmounted?s(a):o(a,t,n)},d=()=>{a._isLeaving&&a[Zn](!0),r(a,()=>{u(),c&&c()})};i?i(a,u,d):d()}else o(a,t,n)},fe=(e,t,n,r=!1,i=!1)=>{let{type:a,props:o,ref:s,children:c,dynamicChildren:l,shapeFlag:u,patchFlag:d,dirs:f,cacheIndex:p}=e;if(d===-2&&(i=!1),s!=null&&(Ge(),hr(s,null,n,e,!0),Ke()),p!=null&&(t.renderCache[p]=void 0),u&256){t.ctx.deactivate(e);return}let m=u&1&&f,h=!Or(e),g;if(h&&(g=o&&o.onVnodeBeforeUnmount)&&Q(g,t,e),u&6)he(e.component,n,r);else{if(u&128){e.suspense.unmount(n,r);return}m&&Rn(e,null,t,`beforeUnmount`),u&64?e.type.remove(e,t,n,be,r):l&&!l.hasOnce&&(a!==K||d>0&&d&64)?ge(l,t,n,!1,!0):(a===K&&d&384||!i&&u&16)&&ge(c,t,n),r&&pe(e)}(h&&(g=o&&o.onVnodeUnmounted)||m)&&G(()=>{g&&Q(g,t,e),m&&Rn(e,null,t,`unmounted`)},n)},pe=e=>{let{type:t,el:n,anchor:r,transition:i}=e;if(t===K){me(n,r);return}if(t===Aa){C(e);return}let a=()=>{s(n),i&&!i.persisted&&i.afterLeave&&i.afterLeave()};if(e.shapeFlag&1&&i&&!i.persisted){let{leave:t,delayLeave:r}=i,o=()=>t(n,a);r?r(e.el,a,o):o()}else a()},me=(e,t)=>{let n;for(;e!==t;)n=h(e),s(e),e=n;s(t)},he=(e,t,n)=>{let{bum:r,scope:i,job:a,subTree:o,um:s,m:c,a:l}=e;ma(c),ma(l),r&&j(r),i.stop(),a&&(a.flags|=8,fe(o,e,t,n)),s&&G(s,t),G(()=>{e.isUnmounted=!0},t)},ge=(e,t,n,r=!1,i=!1,a=0)=>{for(let o=a;o<e.length;o++)fe(e[o],t,n,r,i)},_e=e=>{if(e.shapeFlag&6)return _e(e.component.subTree);if(e.shapeFlag&128)return e.suspense.next();let t=h(e.anchor||e.el),n=t&&t[Yn];return n?h(n):t},ve=!1,ye=(e,t,n)=>{let r;e==null?t._vnode&&(fe(t._vnode,null,null,!0),r=t._vnode.component):v(t._vnode||null,e,t,null,null,null,n),t._vnode=e,ve||=(ve=!0,An(r),jn(),!1)},be={p:v,um:fe,m:de,r:pe,mt:A,mc:ee,pc:se,pbc:te,n:_e,o:e},xe,Se;return i&&([xe,Se]=i(be)),{render:ye,hydrate:xe,createApp:Ei(ye,xe)}}function ca({type:e,props:t},n){return n===`svg`&&e===`foreignObject`||n===`mathml`&&e===`annotation-xml`&&t&&t.encoding&&t.encoding.includes(`html`)?void 0:n}function la({effect:e,job:t},n){n?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function ua(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function da(e,t,n=!1){let r=e.children,i=t.children;if(d(r)&&d(i))for(let e=0;e<r.length;e++){let t=r[e],a=i[e];a.shapeFlag&1&&!a.dynamicChildren&&((a.patchFlag<=0||a.patchFlag===32)&&(a=i[e]=Ja(i[e]),a.el=t.el),!n&&a.patchFlag!==-2&&da(t,a)),a.type===ka&&(a.patchFlag===-1&&(a=i[e]=Ja(a)),a.el=t.el),a.type===q&&!a.el&&(a.el=t.el)}}function fa(e){let t=e.slice(),n=[0],r,i,a,o,s,c=e.length;for(r=0;r<c;r++){let c=e[r];if(c!==0){if(i=n[n.length-1],e[i]<c){t[r]=i,n.push(r);continue}for(a=0,o=n.length-1;a<o;)s=a+o>>1,e[n[s]]<c?a=s+1:o=s;c<e[n[a]]&&(a>0&&(t[r]=n[a-1]),n[a]=r)}}for(a=n.length,o=n[a-1];a-- >0;)n[a]=o,o=t[o];return n}function pa(e){let t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:pa(t)}function ma(e){if(e)for(let t=0;t<e.length;t++)e[t].flags|=8}function ha(e){if(e.placeholder)return e.placeholder;let t=e.component;return t?ha(t.subTree):null}var ga=e=>e.__isSuspense,_a=0,va={name:`Suspense`,__isSuspense:!0,process(e,t,n,r,i,a,o,s,c,l){if(e==null)ba(t,n,r,i,a,o,s,c,l);else{if(a&&a.deps>0&&!e.suspense.isInFallback){t.suspense=e.suspense,t.suspense.vnode=t,t.el=e.el;return}xa(e,t,n,r,i,o,s,c,l)}},hydrate:Ca,normalize:wa};function ya(e,t){let n=e.props&&e.props[t];g(n)&&n()}function ba(e,t,n,r,i,a,o,s,c){let{p:l,o:{createElement:u}}=c,d=u(`div`),f=e.suspense=Sa(e,i,r,t,d,n,a,o,s,c);l(null,f.pendingBranch=e.ssContent,d,null,r,f,a,o),f.deps>0?(ya(e,`onPending`),ya(e,`onFallback`),l(null,e.ssFallback,t,n,r,null,a,o),Da(f,e.ssFallback)):f.resolve(!1,!0)}function xa(e,t,n,r,i,a,o,s,{p:c,um:l,o:{createElement:u}}){let d=t.suspense=e.suspense;d.vnode=t,t.el=e.el;let f=t.ssContent,p=t.ssFallback,{activeBranch:m,pendingBranch:h,isInFallback:g,isHydrating:_}=d;if(h)d.pendingBranch=f,Y(h,f)?(c(h,f,d.hiddenContainer,null,i,d,a,o,s),d.deps<=0?d.resolve():g&&(_||(c(m,p,n,r,i,null,a,o,s),Da(d,p)))):(d.pendingId=_a++,_?(d.isHydrating=!1,d.activeBranch=h):l(h,i,d),d.deps=0,d.effects.length=0,d.hiddenContainer=u(`div`),g?(c(null,f,d.hiddenContainer,null,i,d,a,o,s),d.deps<=0?d.resolve():(c(m,p,n,r,i,null,a,o,s),Da(d,p))):m&&Y(m,f)?(c(m,f,n,r,i,d,a,o,s),d.resolve(!0)):(c(null,f,d.hiddenContainer,null,i,d,a,o,s),d.deps<=0&&d.resolve()));else if(m&&Y(m,f))c(m,f,n,r,i,d,a,o,s),Da(d,f);else if(ya(t,`onPending`),d.pendingBranch=f,f.shapeFlag&512?d.pendingId=f.component.suspenseId:d.pendingId=_a++,c(null,f,d.hiddenContainer,null,i,d,a,o,s),d.deps<=0)d.resolve();else{let{timeout:e,pendingId:t}=d;e>0?setTimeout(()=>{d.pendingId===t&&d.fallback(p)},e):e===0&&d.fallback(p)}}function Sa(e,t,n,r,i,a,o,s,c,l,u=!1){let{p:d,m:f,um:p,n:m,o:{parentNode:h,remove:g}}=l,_,v=Oa(e);v&&t&&t.pendingBranch&&(_=t.pendingId,t.deps++);let y=e.props?oe(e.props.timeout):void 0,b=a,x={vnode:e,parent:t,parentComponent:n,namespace:o,container:r,hiddenContainer:i,deps:0,pendingId:_a++,timeout:typeof y==`number`?y:-1,activeBranch:null,pendingBranch:null,isInFallback:!u,isHydrating:u,isUnmounted:!1,effects:[],resolve(e=!1,n=!1){let{vnode:r,activeBranch:i,pendingBranch:o,pendingId:s,effects:c,parentComponent:l,container:u,isInFallback:d}=x,g=!1;x.isHydrating?x.isHydrating=!1:e||(g=i&&o.transition&&o.transition.mode===`out-in`,g&&(i.transition.afterLeave=()=>{s===x.pendingId&&(f(o,u,a===b?m(i):a,0),kn(c),d&&r.ssFallback&&(r.ssFallback.el=null))}),i&&(h(i.el)===u&&(a=m(i)),p(i,l,x,!0),!g&&d&&r.ssFallback&&G(()=>r.ssFallback.el=null,x)),g||f(o,u,a,0)),Da(x,o),x.pendingBranch=null,x.isInFallback=!1;let y=x.parent,S=!1;for(;y;){if(y.pendingBranch){y.effects.push(...c),S=!0;break}y=y.parent}!S&&!g&&kn(c),x.effects=[],v&&t&&t.pendingBranch&&_===t.pendingId&&(t.deps--,t.deps===0&&!n&&t.resolve()),ya(r,`onResolve`)},fallback(e){if(!x.pendingBranch)return;let{vnode:t,activeBranch:n,parentComponent:r,container:i,namespace:a}=x;ya(t,`onFallback`);let o=m(n),l=()=>{x.isInFallback&&(d(null,e,i,o,r,null,a,s,c),Da(x,e))},u=e.transition&&e.transition.mode===`out-in`;u&&(n.transition.afterLeave=l),x.isInFallback=!0,p(n,r,null,!0),u||l()},move(e,t,n){x.activeBranch&&f(x.activeBranch,e,t,n),x.container=e},next(){return x.activeBranch&&m(x.activeBranch)},registerDep(e,t,n){let r=!!x.pendingBranch;r&&x.deps++;let i=e.vnode.el;e.asyncDep.catch(t=>{_n(t,e,0)}).then(a=>{if(e.isUnmounted||x.isUnmounted||x.pendingId!==e.suspenseId)return;e.asyncResolved=!0;let{vnode:s}=e;lo(e,a,!1),i&&(s.el=i);let c=!i&&e.subTree.el;t(e,s,h(i||e.subTree.el),i?null:m(e.subTree),x,o,n),c&&(s.placeholder=null,g(c)),Bi(e,s.el),r&&--x.deps===0&&x.resolve()})},unmount(e,t){x.isUnmounted=!0,x.activeBranch&&p(x.activeBranch,n,e,t),x.pendingBranch&&p(x.pendingBranch,n,e,t)}};return x}function Ca(e,t,n,r,i,a,o,s,c){let l=t.suspense=Sa(t,r,n,e.parentNode,document.createElement(`div`),null,i,a,o,s,!0),u=c(e,l.pendingBranch=t.ssContent,n,l,a,o);return l.deps===0&&l.resolve(!1,!0),u}function wa(e){let{shapeFlag:t,children:n}=e,r=t&32;e.ssContent=Ta(r?n.default:n),e.ssFallback=r?Ta(n.fallback):X(q)}function Ta(e){let t;if(g(e)){let n=Pa&&e._c;n&&(e._d=!1,Ma()),e=e(),n&&(e._d=!0,t=J,Na())}return d(e)&&(e=Pi(e)),e=Z(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter(t=>t!==e)),e}function Ea(e,t){t&&t.pendingBranch?d(e)?t.effects.push(...e):t.effects.push(e):kn(e)}function Da(e,t){e.activeBranch=t;let{vnode:n,parentComponent:r}=e,i=t.el;for(;!i&&t.component;)t=t.component.subTree,i=t.el;n.el=i,r&&r.subTree===n&&(r.vnode.el=i,Bi(r,i))}function Oa(e){let t=e.props&&e.props.suspensible;return t!=null&&t!==!1}var K=Symbol.for(`v-fgt`),ka=Symbol.for(`v-txt`),q=Symbol.for(`v-cmt`),Aa=Symbol.for(`v-stc`),ja=[],J=null;function Ma(e=!1){ja.push(J=e?null:[])}function Na(){ja.pop(),J=ja[ja.length-1]||null}var Pa=1;function Fa(e,t=!1){Pa+=e,e<0&&J&&t&&(J.hasOnce=!0)}function Ia(e){return e.dynamicChildren=Pa>0?J||n:null,Na(),Pa>0&&J&&J.push(e),e}function La(e,t,n,r,i,a){return Ia(Ha(e,t,n,r,i,a,!0))}function Ra(e,t,n,r,i){return Ia(X(e,t,n,r,i,!0))}function za(e){return e?e.__v_isVNode===!0:!1}function Y(e,t){return e.type===t.type&&e.key===t.key}var Ba=({key:e})=>e??null,Va=({ref:e,ref_key:t,ref_for:n})=>(typeof e==`number`&&(e=``+e),e==null?null:_(e)||z(e)||g(e)?{i:H,r:e,k:t,f:!!n}:e);function Ha(e,t=null,n=null,r=0,i=null,a=e===K?0:1,o=!1,s=!1){let c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Ba(t),ref:t&&Va(t),scopeId:Pn,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:a,patchFlag:r,dynamicProps:i,dynamicChildren:null,appContext:null,ctx:H};return s?(Ya(c,n),a&128&&e.normalize(c)):n&&(c.shapeFlag|=_(n)?8:16),Pa>0&&!o&&J&&(c.patchFlag>0||a&6)&&c.patchFlag!==32&&J.push(c),c}var X=Ua;function Ua(e,t=null,n=null,r=0,i=null,a=!1){if((!e||e===ei)&&(e=q),za(e)){let r=Ga(e,t,!0);return n&&Ya(r,n),Pa>0&&!a&&J&&(r.shapeFlag&6?J[J.indexOf(e)]=r:J.push(r)),r.patchFlag=-2,r}if(vo(e)&&(e=e.__vccOpts),t){t=Wa(t);let{class:e,style:n}=t;e&&!_(e)&&(t.class=me(e)),y(n)&&(Wt(n)&&!d(n)&&(n=s({},n)),t.style=le(n))}let o=_(e)?1:ga(e)?128:Xn(e)?64:y(e)?4:g(e)?2:0;return Ha(e,t,n,r,i,o,a,!0)}function Wa(e){return e?Wt(e)||Ui(e)?s({},e):e:null}function Ga(e,t,n=!1,r=!1){let{props:i,ref:a,patchFlag:o,children:s,transition:c}=e,l=t?Xa(i||{},t):i,u={__v_isVNode:!0,__v_skip:!0,type:e.type,props:l,key:l&&Ba(l),ref:t&&t.ref?n&&a?d(a)?a.concat(Va(t)):[a,Va(t)]:Va(t):a,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:s,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==K?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:c,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Ga(e.ssContent),ssFallback:e.ssFallback&&Ga(e.ssFallback),placeholder:e.placeholder,el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return c&&r&&lr(u,c.clone(u)),u}function Ka(e=` `,t=0){return X(ka,null,e,t)}function qa(e=``,t=!1){return t?(Ma(),Ra(q,null,e)):X(q,null,e)}function Z(e){return e==null||typeof e==`boolean`?X(q):d(e)?X(K,null,e.slice()):za(e)?Ja(e):X(ka,null,String(e))}function Ja(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Ga(e)}function Ya(e,t){let n=0,{shapeFlag:r}=e;if(t==null)t=null;else if(d(t))n=16;else if(typeof t==`object`)if(r&65){let n=t.default;n&&(n._c&&(n._d=!1),Ya(e,n()),n._c&&(n._d=!0));return}else{n=32;let r=t._;!r&&!Ui(t)?t._ctx=H:r===3&&H&&(H.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else g(t)?(t={default:t,_ctx:H},n=32):(t=String(t),r&64?(n=16,t=[Ka(t)]):n=8);e.children=t,e.shapeFlag|=n}function Xa(...e){let t={};for(let n=0;n<e.length;n++){let r=e[n];for(let e in r)if(e===`class`)t.class!==r.class&&(t.class=me([t.class,r.class]));else if(e===`style`)t.style=le([t.style,r.style]);else if(a(e)){let n=t[e],i=r[e];i&&n!==i&&!(d(n)&&n.includes(i))&&(t[e]=n?[].concat(n,i):i)}else e!==``&&(t[e]=r[e])}return t}function Q(e,t,n,r=null){B(e,t,7,[n,r])}var Za=wi(),Qa=0;function $a(e,n,r){let i=e.type,a=(n?n.appContext:e.appContext)||Za,o={uid:Qa++,vnode:e,type:i,parent:n,appContext:a,root:null,next:null,subTree:null,effect:null,update:null,job:null,scope:new Ee(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:n?n.provides:Object.create(a.provides),ids:n?n.ids:[``,0,0],accessCache:null,renderCache:[],components:null,directives:null,propsOptions:Yi(i,a),emitsOptions:ji(i,a),emit:null,emitted:null,propsDefaults:t,inheritAttrs:i.inheritAttrs,ctx:t,data:t,props:t,attrs:t,slots:t,refs:t,setupState:t,setupContext:null,suspense:r,suspenseId:r?r.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=n?n.root:o,o.emit=ki.bind(null,o),e.ce&&e.ce(o),o}var $=null,eo=()=>$||H,to,no;{let e=ce(),t=(t,n)=>{let r;return(r=e[t])||(r=e[t]=[]),r.push(n),e=>{r.length>1?r.forEach(t=>t(e)):r[0](e)}};to=t(`__VUE_INSTANCE_SETTERS__`,e=>$=e),no=t(`__VUE_SSR_SETTERS__`,e=>oo=e)}var ro=e=>{let t=$;return to(e),e.scope.on(),()=>{e.scope.off(),to(t)}},io=()=>{$&&$.scope.off(),to(null)};function ao(e){return e.vnode.shapeFlag&4}var oo=!1;function so(e,t=!1,n=!1){t&&no(t);let{props:r,children:i}=e.vnode,a=ao(e);Wi(e,r,a,t),ra(e,i,n||t);let o=a?co(e,t):void 0;return t&&no(!1),o}function co(e,t){let n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,ci);let{setup:r}=n;if(r){Ge();let n=e.setupContext=r.length>1?ho(e):null,i=ro(e),a=gn(r,e,0,[e.props,n]),o=b(a);if(Ke(),i(),(o||e.sp)&&!Or(e)&&fr(e),o){if(a.then(io,io),t)return a.then(n=>{lo(e,n,t)}).catch(t=>{_n(t,e,0)});e.asyncDep=a}else lo(e,a,t)}else po(e,t)}function lo(e,t,n){g(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:y(t)&&(e.setupState=en(t)),po(e,n)}var uo,fo;function po(e,t,n){let i=e.type;if(!e.render){if(!t&&uo&&!i.render){let t=i.template||hi(e).template;if(t){let{isCustomElement:n,compilerOptions:r}=e.appContext.config,{delimiters:a,compilerOptions:o}=i;i.render=uo(t,s(s({isCustomElement:n,delimiters:a},r),o))}}e.render=i.render||r,fo&&fo(e)}{let t=ro(e);Ge();try{di(e)}finally{Ke(),t()}}}var mo={get(e,t){return F(e,`get`,``),e[t]}};function ho(e){return{attrs:new Proxy(e.attrs,mo),slots:e.slots,emit:e.emit,expose:t=>{e.exposed=t||{}}}}function go(e){return e.exposed?e.exposeProxy||=new Proxy(en(Gt(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in oi)return oi[n](e)},has(e,t){return t in e||t in oi}}):e.proxy}function _o(e,t=!0){return g(e)?e.displayName||e.name:e.name||t&&e.__name}function vo(e){return g(e)&&`__vccOpts`in e}var yo=(e,t)=>ln(e,t,oo);function bo(e,t,n){try{Fa(-1);let r=arguments.length;return r===2?y(t)&&!d(t)?za(t)?X(e,null,[t]):X(e,t):X(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&za(n)&&(n=[n]),X(e,t,n))}finally{Fa(1)}}var xo=`3.5.30`;function So(e,t={},n){for(let r in e){let i=e[r],a=n?`${n}:${r}`:r;typeof i==`object`&&i?So(i,t,a):typeof i==`function`&&(t[a]=i)}return t}var Co={run:e=>e()},wo=console.createTask===void 0?()=>Co:console.createTask;function To(e,t){let n=wo(t.shift());return e.reduce((e,r)=>e.then(()=>n.run(()=>r(...t))),Promise.resolve())}function Eo(e,t){let n=wo(t.shift());return Promise.all(e.map(e=>n.run(()=>e(...t))))}function Do(e,t){for(let n of[...e])n(t)}var Oo=class{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(e,t,n={}){if(!e||typeof t!=`function`)return()=>{};let r=e,i;for(;this._deprecatedHooks[e];)i=this._deprecatedHooks[e],e=i.to;if(i&&!n.allowDeprecated){let e=i.message;e||=`${r} hook has been deprecated`+(i.to?`, please use ${i.to}`:``),this._deprecatedMessages||=new Set,this._deprecatedMessages.has(e)||(console.warn(e),this._deprecatedMessages.add(e))}if(!t.name)try{Object.defineProperty(t,`name`,{get:()=>`_`+e.replace(/\W+/g,`_`)+`_hook_cb`,configurable:!0})}catch{}return this._hooks[e]=this._hooks[e]||[],this._hooks[e].push(t),()=>{t&&=(this.removeHook(e,t),void 0)}}hookOnce(e,t){let n,r=(...e)=>(typeof n==`function`&&n(),n=void 0,r=void 0,t(...e));return n=this.hook(e,r),n}removeHook(e,t){if(this._hooks[e]){let n=this._hooks[e].indexOf(t);n!==-1&&this._hooks[e].splice(n,1),this._hooks[e].length===0&&delete this._hooks[e]}}deprecateHook(e,t){this._deprecatedHooks[e]=typeof t==`string`?{to:t}:t;let n=this._hooks[e]||[];delete this._hooks[e];for(let t of n)this.hook(e,t)}deprecateHooks(e){Object.assign(this._deprecatedHooks,e);for(let t in e)this.deprecateHook(t,e[t])}addHooks(e){let t=So(e),n=Object.keys(t).map(e=>this.hook(e,t[e]));return()=>{for(let e of n.splice(0,n.length))e()}}removeHooks(e){let t=So(e);for(let e in t)this.removeHook(e,t[e])}removeAllHooks(){for(let e in this._hooks)delete this._hooks[e]}callHook(e,...t){return t.unshift(e),this.callHookWith(To,e,...t)}callHookParallel(e,...t){return t.unshift(e),this.callHookWith(Eo,e,...t)}callHookWith(e,t,...n){let r=this._before||this._after?{name:t,args:n,context:{}}:void 0;this._before&&Do(this._before,r);let i=e(t in this._hooks?[...this._hooks[t]]:[],n);return i instanceof Promise?i.finally(()=>{this._after&&r&&Do(this._after,r)}):(this._after&&r&&Do(this._after,r),i)}beforeEach(e){return this._before=this._before||[],this._before.push(e),()=>{if(this._before!==void 0){let t=this._before.indexOf(e);t!==-1&&this._before.splice(t,1)}}}afterEach(e){return this._after=this._after||[],this._after.push(e),()=>{if(this._after!==void 0){let t=this._after.indexOf(e);t!==-1&&this._after.splice(t,1)}}}};function ko(){return new Oo}function Ao(e={}){let t,n=!1,r=e=>{if(t&&t!==e)throw Error(`Context conflict`)},i;if(e.asyncContext){let t=e.AsyncLocalStorage||globalThis.AsyncLocalStorage;t?i=new t:console.warn("[unctx] `AsyncLocalStorage` is not provided.")}let a=()=>{if(i){let e=i.getStore();if(e!==void 0)return e}return t};return{use:()=>{let e=a();if(e===void 0)throw Error(`Context is not available`);return e},tryUse:()=>a(),set:(e,i)=>{i||r(e),t=e,n=!0},unset:()=>{t=void 0,n=!1},call:(e,a)=>{r(e),t=e;try{return i?i.run(e,a):a()}finally{n||(t=void 0)}},async callAsync(e,r){t=e;let a=()=>{t=e},o=()=>t===e?a:void 0;Lo.add(o);try{let a=i?i.run(e,r):r();return n||(t=void 0),await a}finally{Lo.delete(o)}}}}function jo(e={}){let t={};return{get(n,r={}){return t[n]||(t[n]=Ao({...e,...r})),t[n]}}}var Mo=typeof globalThis<`u`?globalThis:typeof self<`u`?self:typeof globalThis<`u`?globalThis:typeof window<`u`?window:{},No=`__unctx__`,Po=Mo[No]||(Mo[No]=jo()),Fo=(e,t={})=>Po.get(e,t),Io=`__unctx_async_handlers__`,Lo=Mo[Io]||(Mo[Io]=new Set);function Ro(e){let t=[];for(let e of Lo){let n=e();n&&t.push(n)}let n=()=>{for(let e of t)e()},r=e();return r&&typeof r==`object`&&`catch`in r&&(r=r.catch(e=>{throw n(),e})),[r,n]}var zo={id:`__nuxt-loader`},Bo={componentName:`NuxtLink`,prefetch:!0,prefetchOn:{visibility:!0}},Vo=`#__nuxt`,Ho=`nuxt-app`,Uo=36e5,Wo=`vite:preloadError`;function Go(e=`nuxt-app`){return Fo(e,{asyncContext:!1})}var Ko=`__nuxt_plugin`;function qo(e){let t=0,n={_id:e.id||`nuxt-app`,_scope:De(),provide:void 0,versions:{get nuxt(){return`4.3.1`},get vue(){return n.vueApp.version}},payload:zt({...e.ssrContext?.payload||{},data:zt({}),state:Rt({}),once:new Set,_errors:zt({})}),static:{data:{}},runWithContext(e){return n._scope.active&&!Oe()?n._scope.run(()=>Qo(n,e)):Qo(n,e)},isHydrating:!0,deferHydration(){if(!n.isHydrating)return()=>{};t++;let e=!1;return()=>{if(!e&&(e=!0,t--,t===0))return n.isHydrating=!1,n.callHook(`app:suspense:resolve`)}},_asyncDataPromises:{},_asyncData:zt({}),_payloadRevivers:{},...e};{let e=window.__NUXT__;if(e)for(let t in e)switch(t){case`data`:case`state`:case`_errors`:Object.assign(n.payload[t],e[t]);break;default:n.payload[t]=e[t]}}n.hooks=ko(),n.hook=n.hooks.hook,n.callHook=n.hooks.callHook,n.provide=(e,t)=>{let r=`$`+e;ns(n,r,t),ns(n.vueApp.config.globalProperties,r,t)},ns(n.vueApp,`$nuxt`,n),ns(n.vueApp.config.globalProperties,`$nuxt`,n);{window.addEventListener(Wo,e=>{n.callHook(`app:chunkError`,{error:e.payload}),e.payload.message.includes(`Unable to preload CSS`)&&e.preventDefault()}),window.useNuxtApp||=es;let e=n.hook(`app:error`,(...e)=>{console.error(`[nuxt] error caught during app initialization`,...e)});n.hook(`app:mounted`,e)}let r=n.payload.config;return n.provide(`config`,r),n}function Jo(e,t){t.hooks&&e.hooks.addHooks(t.hooks)}async function Yo(e,t){if(typeof t==`function`){let{provide:n}=await e.runWithContext(()=>t(e))||{};if(n&&typeof n==`object`)for(let t in n)e.provide(t,n[t])}}async function Xo(e,t){let n=new Set,r=[],i=[],a,o=0;async function s(c){let l=c.dependsOn?.filter(e=>t.some(t=>t._name===e)&&!n.has(e))??[];if(l.length>0)r.push([new Set(l),c]);else{let t=Yo(e,c).then(async()=>{c._name&&(n.add(c._name),await Promise.all(r.map(async([e,t])=>{e.has(c._name)&&(e.delete(c._name),e.size===0&&(o++,await s(t)))})))}).catch(t=>{if(!c.parallel&&!e.payload.error)throw t;a||=t});c.parallel?i.push(t):await t}}for(let n of t)Jo(e,n);for(let e of t)await s(e);if(await Promise.all(i),o)for(let e=0;e<o;e++)await Promise.all(i);if(a)throw e.payload.error||a}function Zo(e){if(typeof e==`function`)return e;let t=e._name||e.name;return delete e.name,Object.assign(e.setup||(()=>{}),e,{[Ko]:!0,_name:t})}function Qo(e,t,n){return Go(e._id).set(e),e.vueApp.runWithContext(()=>n?t(...n):t())}function $o(e){let t;return Vn()&&(t=eo()?.appContext.app.$nuxt),t||=Go(e).tryUse(),t||null}function es(e){let t=$o(e);if(!t)throw Error(`[nuxt] instance unavailable`);return t}function ts(e){return es().$config}function ns(e,t,n){Object.defineProperty(e,t,{get:()=>n})}export{ke as $,Wa as A,Ma as B,oa as C,be as Ct,kr as D,he as Dt,X as E,me as Et,Pr as F,Gn as G,ii as H,Kr as I,Ln as J,Wn as K,Fr as L,Vn as M,Bn as N,dr as O,Ce as Ot,Tn as P,z as Q,Zr as R,La as S,v as St,Ka as T,ae as Tt,$r as U,zn as V,ti as W,Oe as X,nn as Y,Ut as Z,B as _,y as _t,ts as a,on as at,Ra as b,_e as bt,Bo as c,O as ct,Ro as d,k as dt,Rt as et,ir as f,ve as ft,va as g,o as gt,Mr as h,g as ht,es as i,Jt as it,bo as j,eo as k,oe as kt,Uo as l,ne as lt,K as m,d as mt,qo as n,qt as nt,Ho as o,Qt as ot,er as p,j as pt,In as q,Zo as r,zt as rt,zo as s,Zt as st,Xo as t,Bt as tt,Vo as u,s as ut,yo as v,a as vt,aa as w,xe as wt,qa as x,_ as xt,Ha as y,p as yt,Ur as z};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{O as e}from"./D-gbOT8o.js";import{c as t}from"./BAwwvtuq.js";var n=e({__name:`index`,setup(e){return t(`/rpc`,{replace:!0}),()=>{}}});export{n as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{C as e,Ct as t,St as n,Tt as r,_ as i,_t as a,bt as o,ct as s,dt as c,f as l,ft as u,gt as d,ht as f,j as p,kt as m,lt as h,mt as g,p as _,pt as v,ut as y,vt as b,w as x,wt as S,xt as C,yt as w}from"./D-gbOT8o.js";var T=void 0,E=typeof window<`u`&&window.trustedTypes;if(E)try{T=E.createPolicy(`vue`,{createHTML:e=>e})}catch{}var D=T?e=>T.createHTML(e):e=>e,O=`http://www.w3.org/2000/svg`,ee=`http://www.w3.org/1998/Math/MathML`,k=typeof document<`u`?document:null,A=k&&k.createElement(`template`),te={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{let t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{let i=t===`svg`?k.createElementNS(O,e):t===`mathml`?k.createElementNS(ee,e):n?k.createElement(e,{is:n}):k.createElement(e);return e===`select`&&r&&r.multiple!=null&&i.setAttribute(`multiple`,r.multiple),i},createText:e=>k.createTextNode(e),createComment:e=>k.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>k.querySelector(e),setScopeId(e,t){e.setAttribute(t,``)},insertStaticContent(e,t,n,r,i,a){let o=n?n.previousSibling:t.lastChild;if(i&&(i===a||i.nextSibling))for(;t.insertBefore(i.cloneNode(!0),n),!(i===a||!(i=i.nextSibling)););else{A.innerHTML=D(r===`svg`?`<svg>${e}</svg>`:r===`mathml`?`<math>${e}</math>`:e);let i=A.content;if(r===`svg`||r===`mathml`){let e=i.firstChild;for(;e.firstChild;)i.appendChild(e.firstChild);i.removeChild(e)}t.insertBefore(i,n)}return[o?o.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},j=`transition`,M=`animation`,N=Symbol(`_vtc`),P={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},ne=y({},_,P),re=(e=>(e.displayName=`Transition`,e.props=ne,e))((e,{slots:t})=>p(l,ae(e),t)),F=(e,t=[])=>{g(e)?e.forEach(e=>e(...t)):e&&e(...t)},ie=e=>e?g(e)?e.some(e=>e.length>1):e.length>1:!1;function ae(e){let t={};for(let n in e)n in P||(t[n]=e[n]);if(e.css===!1)return t;let{name:n=`v`,type:r,duration:i,enterFromClass:a=`${n}-enter-from`,enterActiveClass:o=`${n}-enter-active`,enterToClass:s=`${n}-enter-to`,appearFromClass:c=a,appearActiveClass:l=o,appearToClass:u=s,leaveFromClass:d=`${n}-leave-from`,leaveActiveClass:f=`${n}-leave-active`,leaveToClass:p=`${n}-leave-to`}=e,m=oe(i),h=m&&m[0],g=m&&m[1],{onBeforeEnter:_,onEnter:v,onEnterCancelled:b,onLeave:x,onLeaveCancelled:S,onBeforeAppear:C=_,onAppear:w=v,onAppearCancelled:T=b}=t,E=(e,t,n,r)=>{e._enterCancelled=r,R(e,t?u:s),R(e,t?l:o),n&&n()},D=(e,t)=>{e._isLeaving=!1,R(e,d),R(e,p),R(e,f),t&&t()},O=e=>(t,n)=>{let i=e?w:v,o=()=>E(t,e,n);F(i,[t,o]),z(()=>{R(t,e?c:a),L(t,e?u:s),ie(i)||B(t,r,h,o)})};return y(t,{onBeforeEnter(e){F(_,[e]),L(e,a),L(e,o)},onBeforeAppear(e){F(C,[e]),L(e,c),L(e,l)},onEnter:O(!1),onAppear:O(!0),onLeave(e,t){e._isLeaving=!0;let n=()=>D(e,t);L(e,d),e._enterCancelled?(L(e,f),U(e)):(U(e),L(e,f)),z(()=>{e._isLeaving&&(R(e,d),L(e,p),ie(x)||B(e,r,g,n))}),F(x,[e,n])},onEnterCancelled(e){E(e,!1,void 0,!0),F(b,[e])},onAppearCancelled(e){E(e,!0,void 0,!0),F(T,[e])},onLeaveCancelled(e){D(e),F(S,[e])}})}function oe(e){if(e==null)return null;if(a(e))return[I(e.enter),I(e.leave)];{let t=I(e);return[t,t]}}function I(e){return m(e)}function L(e,t){t.split(/\s+/).forEach(t=>t&&e.classList.add(t)),(e[N]||(e[N]=new Set)).add(t)}function R(e,t){t.split(/\s+/).forEach(t=>t&&e.classList.remove(t));let n=e[N];n&&(n.delete(t),n.size||(e[N]=void 0))}function z(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}var se=0;function B(e,t,n,r){let i=e._endId=++se,a=()=>{i===e._endId&&r()};if(n!=null)return setTimeout(a,n);let{type:o,timeout:s,propCount:c}=ce(e,t);if(!o)return r();let l=o+`end`,u=0,d=()=>{e.removeEventListener(l,f),a()},f=t=>{t.target===e&&++u>=c&&d()};setTimeout(()=>{u<c&&d()},s+1),e.addEventListener(l,f)}function ce(e,t){let n=window.getComputedStyle(e),r=e=>(n[e]||``).split(`, `),i=r(`${j}Delay`),a=r(`${j}Duration`),o=V(i,a),s=r(`${M}Delay`),c=r(`${M}Duration`),l=V(s,c),u=null,d=0,f=0;t===j?o>0&&(u=j,d=o,f=a.length):t===M?l>0&&(u=M,d=l,f=c.length):(d=Math.max(o,l),u=d>0?o>l?j:M:null,f=u?u===j?a.length:c.length:0);let p=u===j&&/\b(?:transform|all)(?:,|$)/.test(r(`${j}Property`).toString());return{type:u,timeout:d,propCount:f,hasTransform:p}}function V(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max(...t.map((t,n)=>H(t)+H(e[n])))}function H(e){return e===`auto`?0:Number(e.slice(0,-1).replace(`,`,`.`))*1e3}function U(e){return(e?e.ownerDocument:document).body.offsetHeight}function le(e,t,n){let r=e[N];r&&(t=(t?[t,...r]:[...r]).join(` `)),t==null?e.removeAttribute(`class`):n?e.setAttribute(`class`,t):e.className=t}var W=Symbol(`_vod`),ue=Symbol(`_vsh`),de=Symbol(``),fe=/(?:^|;)\s*display\s*:/;function pe(e,t,n){let r=e.style,i=C(n),a=!1;if(n&&!i){if(t)if(C(t))for(let e of t.split(`;`)){let t=e.slice(0,e.indexOf(`:`)).trim();n[t]??K(r,t,``)}else for(let e in t)n[e]??K(r,e,``);for(let e in n)e===`display`&&(a=!0),K(r,e,n[e])}else if(i){if(t!==n){let e=r[de];e&&(n+=`;`+e),r.cssText=n,a=fe.test(n)}}else t&&e.removeAttribute(`style`);W in e&&(e[W]=a?r.display:``,e[ue]&&(r.display=`none`))}var G=/\s*!important$/;function K(e,t,n){if(g(n))n.forEach(n=>K(e,t,n));else if(n??=``,t.startsWith(`--`))e.setProperty(t,n);else{let r=me(e,t);G.test(n)?e.setProperty(c(r),n.replace(G,``),`important`):e[r]=n}}var q=[`Webkit`,`Moz`,`ms`],J={};function me(e,t){let n=J[t];if(n)return n;let r=s(t);if(r!==`filter`&&r in e)return J[t]=r;r=h(r);for(let n=0;n<q.length;n++){let i=q[n]+r;if(i in e)return J[t]=i}return t}var he=`http://www.w3.org/1999/xlink`;function ge(e,t,r,i,a,s=o(t)){i&&t.startsWith(`xlink:`)?r==null?e.removeAttributeNS(he,t.slice(6,t.length)):e.setAttributeNS(he,t,r):r==null||s&&!u(r)?e.removeAttribute(t):e.setAttribute(t,s?``:n(r)?String(r):r)}function _e(e,t,n,r,i){if(t===`innerHTML`||t===`textContent`){n!=null&&(e[t]=t===`innerHTML`?D(n):n);return}let a=e.tagName;if(t===`value`&&a!==`PROGRESS`&&!a.includes(`-`)){let r=a===`OPTION`?e.getAttribute(`value`)||``:e.value,i=n==null?e.type===`checkbox`?`on`:``:String(n);(r!==i||!(`_value`in e))&&(e.value=i),n??e.removeAttribute(t),e._value=n;return}let o=!1;if(n===``||n==null){let r=typeof e[t];r===`boolean`?n=u(n):n==null&&r===`string`?(n=``,o=!0):r===`number`&&(n=0,o=!0)}try{e[t]=n}catch{}o&&e.removeAttribute(i||t)}function Y(e,t,n,r){e.addEventListener(t,n,r)}function ve(e,t,n,r){e.removeEventListener(t,n,r)}var ye=Symbol(`_vei`);function be(e,t,n,r,i=null){let a=e[ye]||(e[ye]={}),o=a[t];if(r&&o)o.value=r;else{let[n,s]=Se(t);r?Y(e,n,a[t]=Ee(r,i),s):o&&(ve(e,n,o,s),a[t]=void 0)}}var xe=/(?:Once|Passive|Capture)$/;function Se(e){let t;if(xe.test(e)){t={};let n;for(;n=e.match(xe);)e=e.slice(0,e.length-n[0].length),t[n[0].toLowerCase()]=!0}return[e[2]===`:`?e.slice(3):c(e.slice(2)),t]}var Ce=0,we=Promise.resolve(),Te=()=>Ce||=(we.then(()=>Ce=0),Date.now());function Ee(e,t){let n=e=>{if(!e._vts)e._vts=Date.now();else if(e._vts<=n.attached)return;i(De(e,n.value),t,5,[e])};return n.value=e,n.attached=Te(),n}function De(e,t){if(g(t)){let n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(e=>t=>!t._stopped&&e&&e(t))}else return t}var Oe=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,ke=(e,t,n,r,i,a)=>{let o=i===`svg`;t===`class`?le(e,r,o):t===`style`?pe(e,n,r):b(t)?d(t)||be(e,t,n,r,a):(t[0]===`.`?(t=t.slice(1),!0):t[0]===`^`?(t=t.slice(1),!1):Ae(e,t,r,o))?(_e(e,t,r),!e.tagName.includes(`-`)&&(t===`value`||t===`checked`||t===`selected`)&&ge(e,t,r,o,a,t!==`value`)):e._isVueCE&&(je(e,t)||e._def.__asyncLoader&&(/[A-Z]/.test(t)||!C(r)))?_e(e,s(t),r,a,t):(t===`true-value`?e._trueValue=r:t===`false-value`&&(e._falseValue=r),ge(e,t,r,o))};function Ae(e,t,n,r){if(r)return!!(t===`innerHTML`||t===`textContent`||t in e&&Oe(t)&&f(n));if(t===`spellcheck`||t===`draggable`||t===`translate`||t===`autocorrect`||t===`sandbox`&&e.tagName===`IFRAME`||t===`form`||t===`list`&&e.tagName===`INPUT`||t===`type`&&e.tagName===`TEXTAREA`)return!1;if(t===`width`||t===`height`){let t=e.tagName;if(t===`IMG`||t===`VIDEO`||t===`CANVAS`||t===`SOURCE`)return!1}return Oe(t)&&C(n)?!1:t in e}function je(e,t){let n=e._def.props;if(!n)return!1;let r=s(t);return Array.isArray(n)?n.some(e=>s(e)===r):Object.keys(n).some(e=>s(e)===r)}var X=e=>{let t=e.props[`onUpdate:modelValue`]||!1;return g(t)?e=>v(t,e):t};function Me(e){e.target.composing=!0}function Z(e){let t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event(`input`)))}var Q=Symbol(`_assign`);function Ne(e,t,n){return t&&(e=e.trim()),n&&(e=r(e)),e}var Pe={created(e,{modifiers:{lazy:t,trim:n,number:r}},i){e[Q]=X(i);let a=r||i.props&&i.props.type===`number`;Y(e,t?`change`:`input`,t=>{t.target.composing||e[Q](Ne(e.value,n,a))}),(n||a)&&Y(e,`change`,()=>{e.value=Ne(e.value,n,a)}),t||(Y(e,`compositionstart`,Me),Y(e,`compositionend`,Z),Y(e,`change`,Z))},mounted(e,{value:t}){e.value=t??``},beforeUpdate(e,{value:t,oldValue:n,modifiers:{lazy:i,trim:a,number:o}},s){if(e[Q]=X(s),e.composing)return;let c=(o||e.type===`number`)&&!/^0\d/.test(e.value)?r(e.value):e.value,l=t??``;c!==l&&(document.activeElement===e&&e.type!==`range`&&(i&&t===n||a&&e.value.trim()===l)||(e.value=l))}},Fe={deep:!0,created(e,t,n){e[Q]=X(n),Y(e,`change`,()=>{let t=e._modelValue,n=Le(e),r=e.checked,i=e[Q];if(g(t)){let e=S(t,n),a=e!==-1;if(r&&!a)i(t.concat(n));else if(!r&&a){let n=[...t];n.splice(e,1),i(n)}}else if(w(t)){let e=new Set(t);r?e.add(n):e.delete(n),i(e)}else i(Re(e,r))})},mounted:Ie,beforeUpdate(e,t,n){e[Q]=X(n),Ie(e,t,n)}};function Ie(e,{value:n,oldValue:r},i){e._modelValue=n;let a;if(g(n))a=S(n,i.props.value)>-1;else if(w(n))a=n.has(i.props.value);else{if(n===r)return;a=t(n,Re(e,!0))}e.checked!==a&&(e.checked=a)}function Le(e){return`_value`in e?e._value:e.value}function Re(e,t){let n=t?`_trueValue`:`_falseValue`;return n in e?e[n]:t}var ze=y({patchProp:ke},te),$,Be=!1;function Ve(){return $||=x(ze)}function He(){return $=Be?$:e(ze),Be=!0,$}var Ue=((...e)=>{let t=Ve().createApp(...e),{mount:n}=t;return t.mount=e=>{let r=Ke(e);if(!r)return;let i=t._component;!f(i)&&!i.render&&!i.template&&(i.template=r.innerHTML),r.nodeType===1&&(r.textContent=``);let a=n(r,!1,Ge(r));return r instanceof Element&&(r.removeAttribute(`v-cloak`),r.setAttribute(`data-v-app`,``)),a},t}),We=((...e)=>{let t=He().createApp(...e),{mount:n}=t;return t.mount=e=>{let t=Ke(e);if(t)return n(t,!0,Ge(t))},t});function Ge(e){if(e instanceof SVGElement)return`svg`;if(typeof MathMLElement==`function`&&e instanceof MathMLElement)return`mathml`}function Ke(e){return C(e)?document.querySelector(e):e}export{Pe as a,Fe as i,Ue as n,We as r,re as t};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"id":"051a0cfd-f18c-43c9-abd0-fde9834dfcdd","timestamp":1773287383239}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"id":"051a0cfd-f18c-43c9-abd0-fde9834dfcdd","timestamp":1773287383239,"prerendered":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@font-face{font-display:swap;font-family:DM Mono;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/dmmono/v16/aFTU7PB1QTsUX8KYthSQBK6PYK3EXw.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:DM Mono;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/dmmono/v16/aFTU7PB1QTsUX8KYthqQBK6PYK0.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-display:swap;font-family:DM Sans;font-style:normal;font-weight:200;src:url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6z9mXgjU0.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:DM Sans;font-style:normal;font-weight:200;src:url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K6z9mXg.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-display:swap;font-family:DM Sans;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6z9mXgjU0.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:DM Sans;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K6z9mXg.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-display:swap;font-family:DM Sans;font-style:normal;font-weight:700;src:url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6z9mXgjU0.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:DM Sans;font-style:normal;font-weight:700;src:url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K6z9mXg.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@supports ((-webkit-hyphens:none) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--un-bg-opacity:100%;--un-text-opacity:100%;--un-leading:initial;--un-border-bottom-opacity:100%;--un-border-opacity:100%}}@property --un-text-opacity{syntax:"<percentage>";inherits:false;initial-value:100%}@property --un-leading{syntax:"*";inherits:false}@property --un-border-opacity{syntax:"<percentage>";inherits:false;initial-value:100%}@property --un-border-bottom-opacity{syntax:"<percentage>";inherits:false;initial-value:100%}@property --un-bg-opacity{syntax:"<percentage>";inherits:false;initial-value:100%}@property --un-numeric-figure{syntax:"*";inherits:false}@property --un-numeric-fraction{syntax:"*";inherits:false}@property --un-numeric-spacing{syntax:"*";inherits:false}@property --un-ordinal{syntax:"*";inherits:false}@property --un-slashed-zero{syntax:"*";inherits:false}:host,:root{--font-sans:"DM Sans",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";--colors-white:#fff;--colors-neutral-800:oklch(26.9% 0 0);--colors-neutral-300:oklch(87% 0 0);--spacing:0.25rem;--default-transition-timingFunction:cubic-bezier(0.4,0,0.2,1);--default-transition-duration:150ms;--radius-DEFAULT:0.25rem;--fontWeight-medium:500;--font-mono:"DM Mono",ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--tracking-wide:0.025em;--fontWeight-semibold:600;--leading-none:1;--colors-red-DEFAULT:oklch(70.4% 0.191 22.216);--colors-green-DEFAULT:oklch(79.2% 0.209 151.711);--text-sm-fontSize:0.875rem;--text-sm-lineHeight:1.25rem;--text-base-fontSize:1rem;--text-base-lineHeight:1.5rem;--text-xs-fontSize:0.75rem;--text-xs-lineHeight:1rem;--text-2xl-fontSize:1.5rem;--text-2xl-lineHeight:2rem;--colors-primary-DEFAULT:#d577ff;--text-3xl-fontSize:1.875rem;--text-3xl-lineHeight:2.25rem;--default-font-family:var(--font-sans);--default-monoFont-family:var(--font-mono)}*,::backdrop,::file-selector-button,:after,:before{border:0 solid;box-sizing:border-box;margin:0;padding:0}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:var( --default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji" );font-feature-settings:var(--default-font-featureSettings,normal);font-variation-settings:var(--default-font-variationSettings,normal);-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}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;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:var( --default-monoFont-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace );font-feature-settings:var(--default-monoFont-featureSettings,normal);font-size:1em;font-variation-settings:var(--default-monoFont-variationSettings,normal)}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}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}menu,ol,ul{list-style:none}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}::file-selector-button,button,input,optgroup,select,textarea{background-color:transparent;border-radius:0;color:inherit;font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;opacity:1}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::-moz-placeholder{opacity:1}::placeholder{opacity:1}@supports (not (-webkit-appearance:-apple-pay-button)) or (contain-intrinsic-size:1px){::-moz-placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-meridiem-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}::file-selector-button,button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden~=until-found])){display:none!important}.dark .dark\:i-ph-moon-duotone{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='currentColor'%3E%3Cpath d='M227.89 147.89A96 96 0 1 1 108.11 28.11a96.09 96.09 0 0 0 119.78 119.78' opacity='.2'/%3E%3Cpath d='M233.54 142.23a8 8 0 0 0-8-2a88.08 88.08 0 0 1-109.8-109.8a8 8 0 0 0-10-10a104.84 104.84 0 0 0-52.91 37A104 104 0 0 0 136 224a103.1 103.1 0 0 0 62.52-20.88a104.84 104.84 0 0 0 37-52.91a8 8 0 0 0-1.98-7.98m-44.64 48.11A88 88 0 0 1 65.66 67.11a89 89 0 0 1 31.4-26A106 106 0 0 0 96 56a104.11 104.11 0 0 0 104 104a106 106 0 0 0 14.92-1.06a89 89 0 0 1-26.02 31.4'/%3E%3C/g%3E%3C/svg%3E")}.dark .dark\:i-ph-moon-duotone,.i-ph-arrow-clockwise,[i-ph-arrow-clockwise=""]{background-color:currentColor;color:inherit;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%;width:1.2em}.i-ph-arrow-clockwise,[i-ph-arrow-clockwise=""]{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M240 56v48a8 8 0 0 1-8 8h-48a8 8 0 0 1 0-16h27.4l-26.59-24.36l-.25-.24a80 80 0 1 0-1.67 114.78a8 8 0 0 1 11 11.63A95.44 95.44 0 0 1 128 224h-1.32a96 96 0 1 1 69.07-164L224 85.8V56a8 8 0 1 1 16 0'/%3E%3C/svg%3E")}.i-ph-check,[i-ph-check=""]{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m229.66 77.66l-128 128a8 8 0 0 1-11.32 0l-56-56a8 8 0 0 1 11.32-11.32L96 188.69L218.34 66.34a8 8 0 0 1 11.32 11.32'/%3E%3C/svg%3E")}.i-ph-check,.i-ph-code-duotone,[i-ph-check=""]{background-color:currentColor;color:inherit;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%;width:1.2em}.i-ph-code-duotone{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='currentColor'%3E%3Cpath d='m240 128l-48 40H64l-48-40l48-40h128Z' opacity='.2'/%3E%3Cpath d='M69.12 94.15L28.5 128l40.62 33.85a8 8 0 1 1-10.24 12.29l-48-40a8 8 0 0 1 0-12.29l48-40a8 8 0 0 1 10.24 12.3m176 27.7l-48-40a8 8 0 1 0-10.24 12.3L227.5 128l-40.62 33.85a8 8 0 1 0 10.24 12.29l48-40a8 8 0 0 0 0-12.29m-82.39-89.37a8 8 0 0 0-10.25 4.79l-64 176a8 8 0 0 0 4.79 10.26A8.1 8.1 0 0 0 96 224a8 8 0 0 0 7.52-5.27l64-176a8 8 0 0 0-4.79-10.25'/%3E%3C/g%3E%3C/svg%3E")}.i-ph-eye-slash,[i-ph-eye-slash=""]{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M53.92 34.62a8 8 0 1 0-11.84 10.76l19.24 21.17C25 88.84 9.38 123.2 8.69 124.76a8 8 0 0 0 0 6.5c.35.79 8.82 19.57 27.65 38.4C61.43 194.74 93.12 208 128 208a127.1 127.1 0 0 0 52.07-10.83l22 24.21a8 8 0 1 0 11.84-10.76Zm47.33 75.84l41.67 45.85a32 32 0 0 1-41.67-45.85M128 192c-30.78 0-57.67-11.19-79.93-33.25A133.2 133.2 0 0 1 25 128c4.69-8.79 19.66-33.39 47.35-49.38l18 19.75a48 48 0 0 0 63.66 70l14.73 16.2A112 112 0 0 1 128 192m6-95.43a8 8 0 0 1 3-15.72a48.16 48.16 0 0 1 38.77 42.64a8 8 0 0 1-7.22 8.71a6 6 0 0 1-.75 0a8 8 0 0 1-8-7.26A32.09 32.09 0 0 0 134 96.57m113.28 34.69c-.42.94-10.55 23.37-33.36 43.8a8 8 0 1 1-10.67-11.92a132.8 132.8 0 0 0 27.8-35.14a133.2 133.2 0 0 0-23.12-30.77C185.67 75.19 158.78 64 128 64a118.4 118.4 0 0 0-19.36 1.57A8 8 0 1 1 106 49.79A134 134 0 0 1 128 48c34.88 0 66.57 13.26 91.66 38.35c18.83 18.83 27.3 37.62 27.65 38.41a8 8 0 0 1 0 6.5Z'/%3E%3C/svg%3E")}.i-ph-eye-slash,.i-ph-layout-duotone,[i-ph-eye-slash=""]{background-color:currentColor;color:inherit;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%;width:1.2em}.i-ph-layout-duotone{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='currentColor'%3E%3Cpath d='M104 104v104H40a8 8 0 0 1-8-8v-96Z' opacity='.2'/%3E%3Cpath d='M216 40H40a16 16 0 0 0-16 16v144a16 16 0 0 0 16 16h176a16 16 0 0 0 16-16V56a16 16 0 0 0-16-16m0 16v40H40V56ZM40 112h56v88H40Zm176 88H112v-88h104z'/%3E%3C/g%3E%3C/svg%3E")}.i-ph-magnifying-glass,[i-ph-magnifying-glass=""]{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m229.66 218.34l-50.07-50.06a88.11 88.11 0 1 0-11.31 11.31l50.06 50.07a8 8 0 0 0 11.32-11.32M40 112a72 72 0 1 1 72 72a72.08 72.08 0 0 1-72-72'/%3E%3C/svg%3E")}.i-ph-magnifying-glass,.i-ph-plugs-connected-duotone,[i-ph-magnifying-glass=""]{background-color:currentColor;color:inherit;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%;width:1.2em}.i-ph-plugs-connected-duotone{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='currentColor'%3E%3Cpath d='m185 127l-58 58a24 24 0 0 1-33.94 0L71 162.91A24 24 0 0 1 71 129l58-58a24 24 0 0 1 33.94 0L185 93.09a24 24 0 0 1 0 33.91' opacity='.2'/%3E%3Cpath d='M237.66 18.34a8 8 0 0 0-11.32 0l-52.4 52.41l-5.37-5.38a32.05 32.05 0 0 0-45.26 0L100 88.69l-6.34-6.35a8 8 0 0 0-11.32 11.32l6.35 6.34l-23.32 23.31a32 32 0 0 0 0 45.26l5.38 5.37l-52.41 52.4a8 8 0 0 0 11.32 11.32l52.4-52.41l5.37 5.38a32.06 32.06 0 0 0 45.26 0L156 167.31l6.34 6.35a8 8 0 0 0 11.32-11.32l-6.35-6.34l23.32-23.31a32 32 0 0 0 0-45.26l-5.38-5.37l52.41-52.4a8 8 0 0 0 0-11.32m-116.29 161a16 16 0 0 1-22.62 0l-22.06-22.09a16 16 0 0 1 0-22.62L100 111.31L144.69 156Zm57.94-57.94L156 144.69L111.31 100l23.32-23.31a16 16 0 0 1 22.62 0l22.06 22a16 16 0 0 1 0 22.63ZM88.57 35a8 8 0 0 1 14.86-6l8 20a8 8 0 0 1-14.86 6Zm-64 58A8 8 0 0 1 35 88.57l20 8a8 8 0 0 1-6 14.86l-20-8A8 8 0 0 1 24.57 93m206.86 70a8 8 0 0 1-10.4 4.46l-20-8a8 8 0 1 1 5.97-14.89l20 8a8 8 0 0 1 4.43 10.43m-64 58.06a8 8 0 0 1-14.86 5.94l-8-20a8 8 0 0 1 14.86-6Z'/%3E%3C/g%3E%3C/svg%3E")}.i-ph-puzzle-piece-duotone{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='currentColor'%3E%3Cpath d='M204 168a28 28 0 0 0 12-2.69V208a8 8 0 0 1-8 8H64a8 8 0 0 1-8-8v-42.69a28 28 0 1 1 0-50.62V72a8 8 0 0 1 8-8h46.69a28 28 0 1 1 50.61 0H208a8 8 0 0 1 8 8v42.69A28 28 0 1 0 204 168' opacity='.2'/%3E%3Cpath d='M220.27 158.54a8 8 0 0 0-7.7-.46a20 20 0 1 1 0-36.16a8 8 0 0 0 11.43-7.23V72a16 16 0 0 0-16-16h-36.22a35 35 0 0 0 .22-4a36.15 36.15 0 0 0-11.36-26.25a36 36 0 0 0-60.55 23.63a36.6 36.6 0 0 0 .14 6.62H64a16 16 0 0 0-16 16v32.22a35 35 0 0 0-4-.22a36.12 36.12 0 0 0-26.24 11.36a35.7 35.7 0 0 0-9.69 27a36.08 36.08 0 0 0 33.31 33.6a36.6 36.6 0 0 0 6.62-.14V208a16 16 0 0 0 16 16h144a16 16 0 0 0 16-16v-42.69a8 8 0 0 0-3.73-6.77M208 208H64v-42.69a8 8 0 0 0-11.43-7.23a20 20 0 1 1 0-36.16A8 8 0 0 0 64 114.69V72h46.69a8 8 0 0 0 7.23-11.43a20 20 0 1 1 36.16 0A8 8 0 0 0 161.31 72H208v32.23a35.7 35.7 0 0 0-6.62-.14A36 36 0 0 0 204 176a35 35 0 0 0 4-.22Z'/%3E%3C/g%3E%3C/svg%3E")}.i-ph-puzzle-piece-duotone,.i-ph-sun-duotone{background-color:currentColor;color:inherit;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%;width:1.2em}.i-ph-sun-duotone{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='currentColor'%3E%3Cpath d='M184 128a56 56 0 1 1-56-56a56 56 0 0 1 56 56' opacity='.2'/%3E%3Cpath d='M120 40V16a8 8 0 0 1 16 0v24a8 8 0 0 1-16 0m72 88a64 64 0 1 1-64-64a64.07 64.07 0 0 1 64 64m-16 0a48 48 0 1 0-48 48a48.05 48.05 0 0 0 48-48M58.34 69.66a8 8 0 0 0 11.32-11.32l-16-16a8 8 0 0 0-11.32 11.32Zm0 116.68l-16 16a8 8 0 0 0 11.32 11.32l16-16a8 8 0 0 0-11.32-11.32M192 72a8 8 0 0 0 5.66-2.34l16-16a8 8 0 0 0-11.32-11.32l-16 16A8 8 0 0 0 192 72m5.66 114.34a8 8 0 0 0-11.32 11.32l16 16a8 8 0 0 0 11.32-11.32ZM48 128a8 8 0 0 0-8-8H16a8 8 0 0 0 0 16h24a8 8 0 0 0 8-8m80 80a8 8 0 0 0-8 8v24a8 8 0 0 0 16 0v-24a8 8 0 0 0-8-8m112-88h-24a8 8 0 0 0 0 16h24a8 8 0 0 0 0-16'/%3E%3C/g%3E%3C/svg%3E")}[border~=base]{border-color:color-mix(in oklab,#8884 var(--un-border-opacity),transparent)}.hover\:bg-active:hover,[hover\:bg-active=""]:hover{background-color:color-mix(in oklab,#8881 var(--un-bg-opacity),transparent)}.text-\[80px\]{font-size:80px}.text-2xl{font-size:var(--text-2xl-fontSize);line-height:var(--un-leading,var(--text-2xl-lineHeight))}.text-base,[text-base=""]{font-size:var(--text-base-fontSize);line-height:var(--un-leading,var(--text-base-lineHeight))}.text-sm,[text-sm=""]{font-size:var(--text-sm-fontSize);line-height:var(--un-leading,var(--text-sm-lineHeight))}.text-xs,[text-xs=""]{font-size:var(--text-xs-fontSize);line-height:var(--un-leading,var(--text-xs-lineHeight))}.dark .dark\:text-white{color:color-mix(in srgb,var(--colors-white) var(--un-text-opacity),transparent)}.text-\[\#020420\]{color:color-mix(in oklab,#020420 var(--un-text-opacity),transparent)}.text-\[\#64748B\]{color:color-mix(in oklab,#64748b var(--un-text-opacity),transparent)}.text-green,[text-green=""]{color:color-mix(in srgb,var(--colors-green-DEFAULT) var(--un-text-opacity),transparent)}.text-red,[text-red=""]{color:color-mix(in srgb,var(--colors-red-DEFAULT) var(--un-text-opacity),transparent)}.hover\:text-\[\#00DC82\]:hover{color:color-mix(in oklab,#00dc82 var(--un-text-opacity),transparent)}.leading-none{--un-leading:var(--leading-none);line-height:var(--leading-none)}.tracking-wide{--un-tracking:var(--tracking-wide);letter-spacing:var(--tracking-wide)}.font-medium,[font-medium=""]{--un-font-weight:var(--fontWeight-medium);font-weight:var(--fontWeight-medium)}.font-mono,[font-mono=""]{font-family:var(--font-mono)}.font-sans{font-family:var(--font-sans)}.font-semibold{--un-font-weight:var(--fontWeight-semibold);font-weight:var(--fontWeight-semibold)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.mb1,[mb1=""]{margin-bottom:calc(var(--spacing)*1)}.ml1,[ml1=""]{margin-left:calc(var(--spacing)*1)}.mr2,[mr2=""]{margin-right:calc(var(--spacing)*2)}.mt2,[mt2=""]{margin-top:calc(var(--spacing)*2)}.p1\.5,[p1\.5=""]{padding:calc(var(--spacing)*1.5)}.p4,[p4=""]{padding:calc(var(--spacing)*4)}.px-2,.px2,[px2=""]{padding-inline:calc(var(--spacing)*2)}.px3,[px3=""]{padding-inline:calc(var(--spacing)*3)}.py1,[py1=""]{padding-block:calc(var(--spacing)*1)}.py1\.5,[py1\.5=""]{padding-block:calc(var(--spacing)*1.5)}.py8,[py8=""]{padding-block:calc(var(--spacing)*8)}.text-center,[text-center=""]{text-align:center}.text-left,[text-left=""]{text-align:left}.outline-none,[outline-none=""]{--un-outline-style:none;outline-style:none}.b,.border,[b=""],[border~="\~"]{border-width:1px}.b-2{border-width:2px}[border~=b-2]{border-bottom-width:2px}[border~=b]{border-bottom-width:1px}[border~=transparent]{border-color:transparent}.focus\:border-primary:focus,[focus\:border-primary=""]:focus{border-color:color-mix(in srgb,var(--colors-primary-DEFAULT) var(--un-border-opacity),transparent)}.border-b-primary\!{border-bottom-color:color-mix(in srgb,var(--colors-primary-DEFAULT) var(--un-border-bottom-opacity),transparent)!important;--un-border-bottom-opacity:var(--un-border-opacity)!important}.rounded,[border~=rounded],[rounded=""]{border-radius:var(--radius-DEFAULT)}.bg-transparent,[bg-transparent=""]{background-color:transparent}.bg-white{background-color:color-mix(in srgb,var(--colors-white) var(--un-bg-opacity),transparent)}.dark .dark\:bg-\[\#020420\]{background-color:color-mix(in oklab,#020420 var(--un-bg-opacity),transparent)}.op100\!{opacity:100%!important}.op20,[op20=""]{opacity:20%}.op30,[op30=""]{opacity:30%}.op40,[op40=""]{opacity:40%}.op50,[op50=""]{opacity:50%}.op60,[op60=""]{opacity:60%}.hover\:op100:hover,[hover\:op100=""]:hover{opacity:100%}.underline{text-decoration-line:underline}.underline-offset-3{text-underline-offset:3px}.flex,[flex~="\~"]{display:flex}.flex-1,[flex-1=""]{flex:1 1 0%}.shrink-0,[shrink-0=""]{flex-shrink:0}.shrink-0\>{flex-shrink:1}[flex~=col]{flex-direction:column}.flex-wrap{flex-wrap:wrap}.gap-1,[flex~=gap-1]{gap:calc(var(--spacing)*1)}.gap-1\.5,[flex~="gap-1\.5"]{gap:calc(var(--spacing)*1.5)}.gap-2,[flex~=gap-2]{gap:calc(var(--spacing)*2)}.gap-3,[flex~=gap-3]{gap:calc(var(--spacing)*3)}.grid{display:grid}.h-full,[h-full=""]{height:100%}.h-vh,[h-vh=""]{height:100vh}.h9,[h9=""]{height:calc(var(--spacing)*9)}.max-w-520px{max-width:520px}.max-w-60,[max-w-60=""]{max-width:calc(var(--spacing)*60)}.min-h-screen{min-height:100vh}.min-w-50,[min-w-50=""]{min-width:calc(var(--spacing)*50)}.w-full,[w-full=""]{width:100%}.cursor-pointer,[cursor-pointer=""]{cursor:pointer}.select-none,[select-none=""]{-webkit-user-select:none;-moz-user-select:none;user-select:none}.truncate,[truncate=""]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.transition-colors,[transition-colors=""]{transition-duration:var(--un-duration,var(--default-transition-duration));transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,--un-gradient-from,--un-gradient-via,--un-gradient-to;transition-timing-function:var(--un-ease,var(--default-transition-timingFunction))}.items-center,[flex~=items-center]{align-items:center}.justify-center,[flex~=justify-center]{justify-content:center}.place-content-center{place-content:center}.of-auto,[of-auto=""]{overflow:auto}.of-hidden,.overflow-hidden,[of-hidden=""]{overflow:hidden}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.table{display:table}.tabular-nums{--un-numeric-spacing:tabular-nums;font-variant-numeric:var(--un-ordinal,) var(--un-slashed-zero,) var(--un-numeric-figure,) var(--un-numeric-spacing,) var(--un-numeric-fraction,)}@supports (color:color-mix(in lab,red,red)){.dark .dark\:text-white{color:color-mix(in oklab,var(--colors-white) var(--un-text-opacity),transparent)}.text-green{color:color-mix(in oklab,var(--colors-green-DEFAULT) var(--un-text-opacity),transparent)}.text-red{color:color-mix(in oklab,var(--colors-red-DEFAULT) var(--un-text-opacity),transparent)}[text-green=""]{color:color-mix(in oklab,var(--colors-green-DEFAULT) var(--un-text-opacity),transparent)}[text-red=""]{color:color-mix(in oklab,var(--colors-red-DEFAULT) var(--un-text-opacity),transparent)}.focus\:border-primary:focus,[focus\:border-primary=""]:focus{border-color:color-mix(in oklab,var(--colors-primary-DEFAULT) var(--un-border-opacity),transparent)}.border-b-primary\!{border-bottom-color:color-mix(in oklab,var(--colors-primary-DEFAULT) var(--un-border-bottom-opacity),transparent)!important}.bg-white{background-color:color-mix(in oklab,var(--colors-white) var(--un-bg-opacity),transparent)}}@media (min-width:40rem){.sm\:text-\[110px\]{font-size:110px}.sm\:text-3xl{font-size:var(--text-3xl-fontSize);line-height:var(--un-leading,var(--text-3xl-lineHeight))}}#__nuxt,body,html{height:100vh;margin:0;padding:0}:root{--app-scrollbar-size:6px;--app-scrollbar-radius:1px;--app-scrollbar-thumb:#8884;--app-scrollbar-thumb-hover:#8885}html{;font-family:var(--font-sans);background-color:color-mix(in srgb, var(--colors-white) var(--un-bg-opacity), transparent) /* #fff */;color-scheme:light}@supports (color: color-mix(in lab, red, red)){html{background-color:color-mix(in oklab, var(--colors-white) var(--un-bg-opacity), transparent) /* #fff */;}}.dark html{background-color:color-mix(in oklab, #111 var(--un-bg-opacity), transparent) /* #111 */;}@property --un-bg-opacity{syntax:"<percentage>";inherits:false;initial-value:100%;syntax:"<percentage>";inherits:false;initial-value:100%;}html.dark{background-color:#121212;color-scheme:dark}body{color:color-mix(in srgb, var(--colors-neutral-800) var(--un-text-opacity), transparent) /* oklch(26.9% 0 0) */;}@supports (color: color-mix(in lab, red, red)){body{color:color-mix(in oklab, var(--colors-neutral-800) var(--un-text-opacity), transparent) /* oklch(26.9% 0 0) */;}}.dark body{color:color-mix(in srgb, var(--colors-neutral-300) var(--un-text-opacity), transparent) /* oklch(87% 0 0) */;}@supports (color: color-mix(in lab, red, red)){.dark body{color:color-mix(in oklab, var(--colors-neutral-300) var(--un-text-opacity), transparent) /* oklch(87% 0 0) */;}}@property --un-text-opacity{syntax:"<percentage>";inherits:false;initial-value:100%;syntax:"<percentage>";inherits:false;initial-value:100%;}::-webkit-scrollbar{width:var(--app-scrollbar-size)}::-webkit-scrollbar:horizontal{height:var(--app-scrollbar-size)}::-webkit-scrollbar-corner{background:transparent}::-webkit-scrollbar-thumb{background-color:var(--app-scrollbar-thumb);border-radius:var(--app-scrollbar-radius);-webkit-transition:background .2s ease;transition:background .2s ease}::-webkit-scrollbar-thumb:hover{background-color:var(--app-scrollbar-thumb-hover)}::-webkit-scrollbar-track{background:transparent;border-radius:var(--app-scrollbar-radius)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.grid[data-v-6b05141f]{display:grid}.mb-2[data-v-6b05141f]{margin-bottom:.5rem}.mb-4[data-v-6b05141f]{margin-bottom:1rem}.max-w-520px[data-v-6b05141f]{max-width:520px}.min-h-screen[data-v-6b05141f]{min-height:100vh}.w-full[data-v-6b05141f]{width:100%}.flex[data-v-6b05141f]{display:flex}.place-content-center[data-v-6b05141f]{place-content:center}.items-center[data-v-6b05141f]{align-items:center}.justify-center[data-v-6b05141f]{justify-content:center}.overflow-hidden[data-v-6b05141f]{overflow:hidden}.bg-white[data-v-6b05141f]{--un-bg-opacity:1;background-color:rgb(255 255 255/var(--un-bg-opacity))}.px-2[data-v-6b05141f]{padding-left:.5rem;padding-right:.5rem}.text-center[data-v-6b05141f]{text-align:center}.text-\[80px\][data-v-6b05141f]{font-size:80px}.text-2xl[data-v-6b05141f]{font-size:1.5rem;line-height:2rem}.text-sm[data-v-6b05141f]{font-size:.875rem;line-height:1.25rem}.text-\[\#020420\][data-v-6b05141f]{--un-text-opacity:1;color:rgb(2 4 32/var(--un-text-opacity))}.text-\[\#64748B\][data-v-6b05141f]{--un-text-opacity:1;color:rgb(100 116 139/var(--un-text-opacity))}.hover\:text-\[\#00DC82\][data-v-6b05141f]:hover{--un-text-opacity:1;color:rgb(0 220 130/var(--un-text-opacity))}.font-medium[data-v-6b05141f]{font-weight:500}.font-semibold[data-v-6b05141f]{font-weight:600}.leading-none[data-v-6b05141f]{line-height:1}.tracking-wide[data-v-6b05141f]{letter-spacing:.025em}.font-sans[data-v-6b05141f]{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}.tabular-nums[data-v-6b05141f]{--un-numeric-spacing:tabular-nums;font-variant-numeric:var(--un-ordinal) var(--un-slashed-zero) var(--un-numeric-figure) var(--un-numeric-spacing) var(--un-numeric-fraction)}.underline[data-v-6b05141f]{text-decoration-line:underline}.underline-offset-3[data-v-6b05141f]{text-underline-offset:3px}.antialiased[data-v-6b05141f]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media(prefers-color-scheme:dark){.dark\:bg-\[\#020420\][data-v-6b05141f]{--un-bg-opacity:1;background-color:rgb(2 4 32/var(--un-bg-opacity))}.dark\:text-white[data-v-6b05141f]{--un-text-opacity:1;color:rgb(255 255 255/var(--un-text-opacity))}}@media(min-width:640px){.sm\:text-\[110px\][data-v-6b05141f]{font-size:110px}.sm\:text-3xl[data-v-6b05141f]{font-size:1.875rem;line-height:2.25rem}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.grid[data-v-bb5eccfe]{display:grid}.mb-2[data-v-bb5eccfe]{margin-bottom:.5rem}.mb-4[data-v-bb5eccfe]{margin-bottom:1rem}.max-w-520px[data-v-bb5eccfe]{max-width:520px}.min-h-screen[data-v-bb5eccfe]{min-height:100vh}.place-content-center[data-v-bb5eccfe]{place-content:center}.overflow-hidden[data-v-bb5eccfe]{overflow:hidden}.bg-white[data-v-bb5eccfe]{--un-bg-opacity:1;background-color:rgb(255 255 255/var(--un-bg-opacity))}.px-2[data-v-bb5eccfe]{padding-left:.5rem;padding-right:.5rem}.text-center[data-v-bb5eccfe]{text-align:center}.text-\[80px\][data-v-bb5eccfe]{font-size:80px}.text-2xl[data-v-bb5eccfe]{font-size:1.5rem;line-height:2rem}.text-\[\#020420\][data-v-bb5eccfe]{--un-text-opacity:1;color:rgb(2 4 32/var(--un-text-opacity))}.text-\[\#64748B\][data-v-bb5eccfe]{--un-text-opacity:1;color:rgb(100 116 139/var(--un-text-opacity))}.font-semibold[data-v-bb5eccfe]{font-weight:600}.leading-none[data-v-bb5eccfe]{line-height:1}.tracking-wide[data-v-bb5eccfe]{letter-spacing:.025em}.font-sans[data-v-bb5eccfe]{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}.tabular-nums[data-v-bb5eccfe]{--un-numeric-spacing:tabular-nums;font-variant-numeric:var(--un-ordinal) var(--un-slashed-zero) var(--un-numeric-figure) var(--un-numeric-spacing) var(--un-numeric-fraction)}.antialiased[data-v-bb5eccfe]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media(prefers-color-scheme:dark){.dark\:bg-\[\#020420\][data-v-bb5eccfe]{--un-bg-opacity:1;background-color:rgb(2 4 32/var(--un-bg-opacity))}.dark\:text-white[data-v-bb5eccfe]{--un-text-opacity:1;color:rgb(255 255 255/var(--un-text-opacity))}}@media(min-width:640px){.sm\:text-\[110px\][data-v-bb5eccfe]{font-size:110px}.sm\:text-3xl[data-v-bb5eccfe]{font-size:1.875rem;line-height:2.25rem}}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./Bdlh4BwJ.js","./D-gbOT8o.js","./DODjDiif.js","./B7YRIwnr.js","./DN3n5YIz.js","./BAwwvtuq.js","./CF7QrbFx.js","./Cfhu6PrZ.js","./C8qyGLl5.js","./CHHO6nw6.js","./error-404.DlglkSik.css","./B9z6lp9R.js","./error-500.BbJeK9S9.css"])))=>i.map(i=>d[i]);
|
|
2
|
+
import{$ as e,A as t,B as n,D as r,Dt as i,E as a,Et as o,F as s,G as c,H as l,I as u,K as d,L as f,M as p,N as m,O as h,Ot as g,P as _,Q as v,R as y,S as b,U as ee,V as te,W as ne,X as re,Y as ie,Z as ae,a as x,at as oe,b as se,c as ce,d as le,et as ue,g as de,h as fe,i as S,it as C,j as w,k as pe,l as me,m as he,n as ge,nt as T,ot as E,q as _e,r as D,rt as ve,s as ye,st as O,t as be,tt as xe,u as Se,v as k,y as A,z as Ce}from"./D-gbOT8o.js";import{n as we,r as Te,t as Ee}from"./DODjDiif.js";import{C as De,S as Oe,T as ke,_ as Ae,a as je,b as Me,c as Ne,d as j,f as Pe,g as Fe,h as Ie,i as Le,l as Re,m as ze,n as Be,o as Ve,p as He,r as Ue,s as We,t as Ge,u as Ke,v as qe,w as Je,x as Ye,y as Xe}from"./BAwwvtuq.js";(function(){let e=document.createElement(`link`).relList;if(e&&e.supports&&e.supports(`modulepreload`))return;for(let e of document.querySelectorAll(`link[rel="modulepreload"]`))n(e);new MutationObserver(e=>{for(let t of e)if(t.type===`childList`)for(let e of t.addedNodes)e.tagName===`LINK`&&e.rel===`modulepreload`&&n(e)}).observe(document,{childList:!0,subtree:!0});function t(e){let t={};return e.integrity&&(t.integrity=e.integrity),e.referrerPolicy&&(t.referrerPolicy=e.referrerPolicy),e.crossOrigin===`use-credentials`?t.credentials=`include`:e.crossOrigin===`anonymous`?t.credentials=`omit`:t.credentials=`same-origin`,t}function n(e){if(e.ep)return;e.ep=!0;let n=t(e);fetch(e.href,n)}})();var Ze=class extends Error{constructor(e,t){super(e,t),this.name=`FetchError`,t?.cause&&!this.cause&&(this.cause=t.cause)}};function Qe(e){let t=e.error?.message||e.error?.toString()||``,n=e.request?.method||e.options?.method||`GET`,r=e.request?.url||String(e.request)||`/`,i=new Ze(`${`[${n}] ${JSON.stringify(r)}`}: ${e.response?`${e.response.status} ${e.response.statusText}`:`<no response>`}${t?` ${t}`:``}`,e.error?{cause:e.error}:void 0);for(let t of[`request`,`options`,`response`])Object.defineProperty(i,t,{get(){return e[t]}});for(let[t,n]of[[`data`,`_data`],[`status`,`status`],[`statusCode`,`status`],[`statusText`,`statusText`],[`statusMessage`,`statusText`]])Object.defineProperty(i,t,{get(){return e.response&&e.response[n]}});return i}var $e=new Set(Object.freeze([`PATCH`,`POST`,`PUT`,`DELETE`]));function et(e=`GET`){return $e.has(e.toUpperCase())}function tt(e){if(e===void 0)return!1;let t=typeof e;return t===`string`||t===`number`||t===`boolean`||t===null?!0:t===`object`?Array.isArray(e)?!0:e.buffer||e instanceof FormData||e instanceof URLSearchParams?!1:e.constructor&&e.constructor.name===`Object`||typeof e.toJSON==`function`:!1}var nt=new Set([`image/svg`,`application/xml`,`application/xhtml`,`application/html`]),rt=/^application\/(?:[\w!#$%&*.^`~-]*\+)?json(;.+)?$/i;function it(e=``){if(!e)return`json`;let t=e.split(`;`).shift()||``;return rt.test(t)?`json`:t===`text/event-stream`?`stream`:nt.has(t)||t.startsWith(`text/`)?`text`:`blob`}function at(e,t,n,r){let i=ot(t?.headers??e?.headers,n?.headers,r),a;return(n?.query||n?.params||t?.params||t?.query)&&(a={...n?.params,...n?.query,...t?.params,...t?.query}),{...n,...t,query:a,params:a,headers:i}}function ot(e,t,n){if(!t)return new n(e);let r=new n(t);if(e)for(let[t,i]of Symbol.iterator in e||Array.isArray(e)?e:new n(e))r.set(t,i);return r}async function st(e,t){if(t)if(Array.isArray(t))for(let n of t)await n(e);else await t(e)}var ct=new Set([408,409,425,429,500,502,503,504]),lt=new Set([101,204,205,304]);function ut(e={}){let{fetch:t=globalThis.fetch,Headers:n=globalThis.Headers,AbortController:r=globalThis.AbortController}=e;async function i(e){let t=e.error&&e.error.name===`AbortError`&&!e.options.timeout||!1;if(e.options.retry!==!1&&!t){let t;t=typeof e.options.retry==`number`?e.options.retry:et(e.options.method)?0:1;let n=e.response&&e.response.status||500;if(t>0&&(Array.isArray(e.options.retryStatusCodes)?e.options.retryStatusCodes.includes(n):ct.has(n))){let n=typeof e.options.retryDelay==`function`?e.options.retryDelay(e):e.options.retryDelay||0;return n>0&&await new Promise(e=>setTimeout(e,n)),a(e.request,{...e.options,retry:t-1})}}let n=Qe(e);throw Error.captureStackTrace&&Error.captureStackTrace(n,a),n}let a=async function(a,o={}){let s={request:a,options:at(a,o,e.defaults,n),response:void 0,error:void 0};if(s.options.method&&(s.options.method=s.options.method.toUpperCase()),s.options.onRequest&&(await st(s,s.options.onRequest),s.options.headers instanceof n||(s.options.headers=new n(s.options.headers||{}))),typeof s.request==`string`&&(s.options.baseURL&&(s.request=Me(s.request,s.options.baseURL)),s.options.query&&(s.request=Ye(s.request,s.options.query),delete s.options.query),`query`in s.options&&delete s.options.query,`params`in s.options&&delete s.options.params),s.options.body&&et(s.options.method))if(tt(s.options.body)){let e=s.options.headers.get(`content-type`);typeof s.options.body!=`string`&&(s.options.body=e===`application/x-www-form-urlencoded`?new URLSearchParams(s.options.body).toString():JSON.stringify(s.options.body)),e||s.options.headers.set(`content-type`,`application/json`),s.options.headers.has(`accept`)||s.options.headers.set(`accept`,`application/json`)}else (`pipeTo`in s.options.body&&typeof s.options.body.pipeTo==`function`||typeof s.options.body.pipe==`function`)&&(`duplex`in s.options||(s.options.duplex=`half`));let c;if(!s.options.signal&&s.options.timeout){let e=new r;c=setTimeout(()=>{let t=Error(`[TimeoutError]: The operation was aborted due to timeout`);t.name=`TimeoutError`,t.code=23,e.abort(t)},s.options.timeout),s.options.signal=e.signal}try{s.response=await t(s.request,s.options)}catch(e){return s.error=e,s.options.onRequestError&&await st(s,s.options.onRequestError),await i(s)}finally{c&&clearTimeout(c)}if((s.response.body||s.response._bodyInit)&&!lt.has(s.response.status)&&s.options.method!==`HEAD`){let e=(s.options.parseResponse?`json`:s.options.responseType)||it(s.response.headers.get(`content-type`)||``);switch(e){case`json`:{let e=await s.response.text(),t=s.options.parseResponse||ke;s.response._data=t(e);break}case`stream`:s.response._data=s.response.body||s.response._bodyInit;break;default:s.response._data=await s.response[e]()}}return s.options.onResponse&&await st(s,s.options.onResponse),!s.options.ignoreResponseError&&s.response.status>=400&&s.response.status<600?(s.options.onResponseError&&await st(s,s.options.onResponseError),await i(s)):s.response},o=async function(e,t){return(await a(e,t))._data};return o.raw=a,o.native=(...e)=>t(...e),o.create=(t={},n={})=>ut({...e,...n,defaults:{...e.defaults,...n.defaults,...t}}),o}var dt=(function(){if(typeof globalThis<`u`)return globalThis;if(typeof self<`u`)return self;if(typeof window<`u`)return window;if(typeof globalThis<`u`)return globalThis;throw Error(`unable to locate global object`)})(),ft=dt.fetch?(...e)=>dt.fetch(...e):()=>Promise.reject(Error(`[ofetch] global.fetch is not supported!`)),pt=dt.Headers,mt=dt.AbortController,ht=ut({fetch:ft,Headers:pt,AbortController:mt}),gt=()=>window?.__NUXT__?.config||window?.useNuxtApp?.().payload?.config,_t=()=>gt().app,vt=()=>_t().baseURL,yt=()=>_t().buildAssetsDir,bt=(...e)=>Ae(xt(),yt(),...e),xt=(...e)=>{let t=_t(),n=t.cdnURL||t.baseURL;return e.length?Ae(n,...e):n};globalThis.__buildAssetsURL=bt,globalThis.__publicAssetsURL=xt,globalThis.$fetch||(globalThis.$fetch=ht.create({baseURL:vt()})),`global`in globalThis||(globalThis.global=globalThis);function St(e){let t=wt(e),n=new ArrayBuffer(t.length),r=new DataView(n);for(let e=0;e<n.byteLength;e++)r.setUint8(e,t.charCodeAt(e));return n}var Ct=`ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/`;function wt(e){e.length%4==0&&(e=e.replace(/==?$/,``));let t=``,n=0,r=0;for(let i=0;i<e.length;i++)n<<=6,n|=Ct.indexOf(e[i]),r+=6,r===24&&(t+=String.fromCharCode((n&16711680)>>16),t+=String.fromCharCode((n&65280)>>8),t+=String.fromCharCode(n&255),n=r=0);return r===12?(n>>=4,t+=String.fromCharCode(n)):r===18&&(n>>=2,t+=String.fromCharCode((n&65280)>>8),t+=String.fromCharCode(n&255)),t}function Tt(e,t){return Et(JSON.parse(e),t)}function Et(e,t){if(typeof e==`number`)return a(e,!0);if(!Array.isArray(e)||e.length===0)throw Error(`Invalid input`);let n=e,r=Array(n.length),i=null;function a(e,o=!1){if(e===-1)return;if(e===-3)return NaN;if(e===-4)return 1/0;if(e===-5)return-1/0;if(e===-6)return-0;if(o||typeof e!=`number`)throw Error(`Invalid input`);if(e in r)return r[e];let s=n[e];if(!s||typeof s!=`object`)r[e]=s;else if(Array.isArray(s))if(typeof s[0]==`string`){let o=s[0],c=t&&Object.hasOwn(t,o)?t[o]:void 0;if(c){let t=s[1];if(typeof t!=`number`&&(t=n.push(s[1])-1),i??=new Set,i.has(t))throw Error(`Invalid circular reference`);return i.add(t),r[e]=c(a(t)),i.delete(t),r[e]}switch(o){case`Date`:r[e]=new Date(s[1]);break;case`Set`:let t=new Set;r[e]=t;for(let e=1;e<s.length;e+=1)t.add(a(s[e]));break;case`Map`:let i=new Map;r[e]=i;for(let e=1;e<s.length;e+=2)i.set(a(s[e]),a(s[e+1]));break;case`RegExp`:r[e]=new RegExp(s[1],s[2]);break;case`Object`:r[e]=Object(s[1]);break;case`BigInt`:r[e]=BigInt(s[1]);break;case`null`:let c=Object.create(null);r[e]=c;for(let e=1;e<s.length;e+=2)c[s[e]]=a(s[e+1]);break;case`Int8Array`:case`Uint8Array`:case`Uint8ClampedArray`:case`Int16Array`:case`Uint16Array`:case`Int32Array`:case`Uint32Array`:case`Float32Array`:case`Float64Array`:case`BigInt64Array`:case`BigUint64Array`:{if(n[s[1]][0]!==`ArrayBuffer`)throw Error(`Invalid data`);let t=globalThis[o],i=new t(a(s[1]));r[e]=s[2]===void 0?i:i.subarray(s[2],s[3]);break}case`ArrayBuffer`:{let t=s[1];if(typeof t!=`string`)throw Error(`Invalid ArrayBuffer encoding`);r[e]=St(t);break}case`Temporal.Duration`:case`Temporal.Instant`:case`Temporal.PlainDate`:case`Temporal.PlainTime`:case`Temporal.PlainDateTime`:case`Temporal.PlainMonthDay`:case`Temporal.PlainYearMonth`:case`Temporal.ZonedDateTime`:{let t=o.slice(9);r[e]=Temporal[t].from(s[1]);break}case`URL`:r[e]=new URL(s[1]);break;case`URLSearchParams`:r[e]=new URLSearchParams(s[1]);break;default:throw Error(`Unknown type ${o}`)}}else{let t=Array(s.length);r[e]=t;for(let e=0;e<s.length;e+=1){let n=s[e];n!==-2&&(t[e]=a(n))}}else{let t={};r[e]=t;for(let e in s){if(e===`__proto__`)throw Error("Cannot parse an object with a `__proto__` property");let n=s[e];t[e]=a(n)}}return r[e]}return a(0)}var Dt=new Set([`link`,`style`,`script`,`noscript`]),Ot=new Set([`title`,`titleTemplate`,`script`,`style`,`noscript`]),kt=new Set([`base`,`meta`,`link`,`style`,`script`,`noscript`]),At=new Set([`title`,`base`,`htmlAttrs`,`bodyAttrs`,`meta`,`link`,`style`,`script`,`noscript`]),jt=new Set([`base`,`title`,`titleTemplate`,`bodyAttrs`,`htmlAttrs`,`templateParams`]),Mt=new Set([`key`,`tagPosition`,`tagPriority`,`tagDuplicateStrategy`,`innerHTML`,`textContent`,`processTemplateParams`]),Nt=new Set([`templateParams`,`htmlAttrs`,`bodyAttrs`]),Pt=new Set([`theme-color`,`google-site-verification`,`og`,`article`,`book`,`profile`,`twitter`,`author`]);function Ft(e,t={},n){for(let r in e){let i=e[r],a=n?`${n}:${r}`:r;typeof i==`object`&&i?Ft(i,t,a):typeof i==`function`&&(t[a]=i)}return t}var It=(()=>{if(console.createTask)return console.createTask;let e={run:e=>e()};return()=>e})();function Lt(e,t,n,r){for(let i=n;i<e.length;i+=1)try{let n=r?r.run(()=>e[i](...t)):e[i](...t);if(n instanceof Promise)return n.then(()=>Lt(e,t,i+1,r))}catch(e){return Promise.reject(e)}}function Rt(e,t,n){if(e.length>0)return Lt(e,t,0,It(n))}function zt(e,t,n){if(e.length>0){let r=It(n);return Promise.all(e.map(e=>r.run(()=>e(...t))))}}function Bt(e,t){for(let n of[...e])n(t)}var Vt=class{_hooks;_before;_after;_deprecatedHooks;_deprecatedMessages;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(e,t,n={}){if(!e||typeof t!=`function`)return()=>{};let r=e,i;for(;this._deprecatedHooks[e];)i=this._deprecatedHooks[e],e=i.to;if(i&&!n.allowDeprecated){let e=i.message;e||=`${r} hook has been deprecated`+(i.to?`, please use ${i.to}`:``),this._deprecatedMessages||=new Set,this._deprecatedMessages.has(e)||(console.warn(e),this._deprecatedMessages.add(e))}if(!t.name)try{Object.defineProperty(t,`name`,{get:()=>`_`+e.replace(/\W+/g,`_`)+`_hook_cb`,configurable:!0})}catch{}return this._hooks[e]=this._hooks[e]||[],this._hooks[e].push(t),()=>{t&&=(this.removeHook(e,t),void 0)}}hookOnce(e,t){let n,r=(...e)=>(typeof n==`function`&&n(),n=void 0,r=void 0,t(...e));return n=this.hook(e,r),n}removeHook(e,t){let n=this._hooks[e];if(n){let r=n.indexOf(t);r!==-1&&n.splice(r,1),n.length===0&&(this._hooks[e]=void 0)}}deprecateHook(e,t){this._deprecatedHooks[e]=typeof t==`string`?{to:t}:t;let n=this._hooks[e]||[];this._hooks[e]=void 0;for(let t of n)this.hook(e,t)}deprecateHooks(e){for(let t in e)this.deprecateHook(t,e[t])}addHooks(e){let t=Ft(e),n=Object.keys(t).map(e=>this.hook(e,t[e]));return()=>{for(let e of n)e();n.length=0}}removeHooks(e){let t=Ft(e);for(let e in t)this.removeHook(e,t[e])}removeAllHooks(){this._hooks={}}callHook(e,...t){return this.callHookWith(Rt,e,t)}callHookParallel(e,...t){return this.callHookWith(zt,e,t)}callHookWith(e,t,n){let r=this._before||this._after?{name:t,args:n,context:{}}:void 0;this._before&&Bt(this._before,r);let i=e(this._hooks[t]?[...this._hooks[t]]:[],n,t);return i instanceof Promise?i.finally(()=>{this._after&&r&&Bt(this._after,r)}):(this._after&&r&&Bt(this._after,r),i)}beforeEach(e){return this._before=this._before||[],this._before.push(e),()=>{if(this._before!==void 0){let t=this._before.indexOf(e);t!==-1&&this._before.splice(t,1)}}}afterEach(e){return this._after=this._after||[],this._after.push(e),()=>{if(this._after!==void 0){let t=this._after.indexOf(e);t!==-1&&this._after.splice(t,1)}}}};function Ht(){return new Vt}var Ut=[`name`,`property`,`http-equiv`],Wt=new Set([`viewport`,`description`,`keywords`,`robots`]);function Gt(e){let t=e.split(`:`);return t.length?Pt.has(t[1]):!1}function Kt(e){let{props:t,tag:n}=e;if(jt.has(n))return n;if(n===`link`&&t.rel===`canonical`)return`canonical`;let r=t.hreflang||t.type;if(n===`link`&&t.rel===`alternate`&&r)return`alternate:${r}`;if(t.charset)return`charset`;if(e.tag===`meta`){for(let r of Ut)if(t[r]!==void 0){let i=t[r],a=i&&typeof i==`string`&&i.includes(`:`),o=i&&Wt.has(i);return`${n}:${i}${!(a||o)&&e.key?`:key:${e.key}`:``}`}}if(e.key)return`${n}:key:${e.key}`;if(t.id)return`${n}:id:${t.id}`;if(Ot.has(n)){let t=e.textContent||e.innerHTML;if(t)return`${n}:content:${t}`}}function qt(e){return e._h||e._d||e.textContent||e.innerHTML||`${e.tag}:${Object.entries(e.props).map(([e,t])=>`${e}:${String(t)}`).join(`,`)}`}function Jt(e,t,n){typeof e==`function`&&(!n||n!==`titleTemplate`&&!(n[0]===`o`&&n[1]===`n`))&&(e=e());let r=t?t(n,e):e;if(Array.isArray(r))return r.map(e=>Jt(e,t));if(r?.constructor===Object){let e={};for(let n of Object.keys(r))e[n]=Jt(r[n],t,n);return e}return r}function Yt(e,t){let n=e===`style`?new Map:new Set;function r(t){if(t==null||t===void 0)return;let r=String(t).trim();if(r)if(e===`style`){let[e,...t]=r.split(`:`).map(e=>e?e.trim():``);e&&t.length&&n.set(e,t.join(`:`))}else r.split(` `).filter(Boolean).forEach(e=>n.add(e))}return typeof t==`string`?e===`style`?t.split(`;`).forEach(r):r(t):Array.isArray(t)?t.forEach(e=>r(e)):t&&typeof t==`object`&&Object.entries(t).forEach(([t,i])=>{i&&i!==`false`&&(e===`style`?n.set(String(t).trim(),String(i)):r(t))}),n}function Xt(e,t){return e.props=e.props||{},t?e.tag===`templateParams`?(e.props=t,e):(Object.entries(t).forEach(([n,r])=>{if(r===null){e.props[n]=null;return}if(n===`class`||n===`style`){e.props[n]=Yt(n,r);return}if(Mt.has(n)){if([`textContent`,`innerHTML`].includes(n)&&typeof r==`object`){let i=t.type;if(t.type||(i=`application/json`),!i?.endsWith(`json`)&&i!==`speculationrules`)return;t.type=i,e.props.type=i,e[n]=JSON.stringify(r)}else e[n]=r;return}let i=String(r),a=n.startsWith(`data-`),o=e.tag===`meta`&&n===`content`;i===`true`||i===``?e.props[n]=a||o?i:!0:!r&&a&&i===`false`?e.props[n]=`false`:r!==void 0&&(e.props[n]=r)}),e):e}function Zt(e,t){let n=Xt({tag:e,props:{}},typeof t==`object`&&typeof t!=`function`?t:{[e===`script`||e===`noscript`||e===`style`?`innerHTML`:`textContent`]:t});return n.key&&Dt.has(n.tag)&&(n.props[`data-hid`]=n._h=n.key),n.tag===`script`&&typeof n.innerHTML==`object`&&(n.innerHTML=JSON.stringify(n.innerHTML),n.props.type=n.props.type||`application/json`),Array.isArray(n.props.content)?n.props.content.map(e=>({...n,props:{...n.props,content:e}})):n}function Qt(e,t){if(!e)return[];typeof e==`function`&&(e=e());let n=(e,n)=>{for(let r=0;r<t.length;r++)n=t[r](e,n);return n};e=n(void 0,e);let r=[];return e=Jt(e,n),Object.entries(e||{}).forEach(([e,t])=>{if(t!==void 0)for(let n of Array.isArray(t)?t:[t])r.push(Zt(e,n))}),r.flat()}var $t=(e,t)=>e._w===t._w?e._p-t._p:e._w-t._w,en={base:-10,title:10},tn={critical:-8,high:-1,low:2},nn={meta:{"content-security-policy":-30,charset:-20,viewport:-15},link:{preconnect:20,stylesheet:60,preload:70,modulepreload:70,prefetch:90,"dns-prefetch":90,prerender:90},script:{async:30,defer:80,sync:50},style:{imported:40,sync:60}},rn=/@import/,an=e=>e===``||e===!0;function on(e,t){if(typeof t.tagPriority==`number`)return t.tagPriority;let n=100,r=tn[t.tagPriority]||0,i=e.resolvedOptions.disableCapoSorting?{link:{},script:{},style:{}}:nn;if(t.tag in en)n=en[t.tag];else if(t.tag===`meta`){let e=t.props[`http-equiv`]===`content-security-policy`?`content-security-policy`:t.props.charset?`charset`:t.props.name===`viewport`?`viewport`:null;e&&(n=nn.meta[e])}else if(t.tag===`link`&&t.props.rel)n=i.link[t.props.rel];else if(t.tag===`script`){let e=String(t.props.type);an(t.props.async)?n=i.script.async:t.props.src&&!an(t.props.defer)&&!an(t.props.async)&&e!==`module`&&!e.endsWith(`json`)||t.innerHTML&&!e.endsWith(`json`)?n=i.script.sync:(an(t.props.defer)&&t.props.src&&!an(t.props.async)||e===`module`)&&(n=i.script.defer)}else t.tag===`style`&&(n=t.innerHTML&&rn.test(t.innerHTML)?i.style.imported:i.style.sync);return(n||100)+r}function sn(e,t){let n=typeof t==`function`?t(e):t,r=n.key||String(e.plugins.size+1);e.plugins.get(r)||(e.plugins.set(r,n),e.hooks.addHooks(n.hooks||{}))}function cn(e={}){let t=Ht();t.addHooks(e.hooks||{});let n=!e.document,r=new Map,i=new Map,a=new Set,o={_entryCount:1,plugins:i,dirty:!1,resolvedOptions:e,hooks:t,ssr:n,entries:r,headEntries(){return[...r.values()]},use:e=>sn(o,e),push(e,i){let s={...i||{}};delete s.head;let c=s._index??o._entryCount++,l={_i:c,input:e,options:s},u={_poll(e=!1){o.dirty=!0,!e&&a.add(c),t.callHook(`entries:updated`,o)},dispose(){r.delete(c)&&o.invalidate()},patch(e){(!s.mode||s.mode===`server`&&n||s.mode===`client`&&!n)&&(l.input=e,r.set(c,l),u._poll())}};return u.patch(e),u},async resolveTags(){let n={tagMap:new Map,tags:[],entries:[...o.entries.values()]};for(await t.callHook(`entries:resolve`,n);a.size;){let n=a.values().next().value;a.delete(n);let i=r.get(n);if(i){let n={tags:Qt(i.input,e.propResolvers||[]).map(e=>Object.assign(e,i.options)),entry:i};await t.callHook(`entries:normalize`,n),i._tags=n.tags.map((e,t)=>(e._w=on(o,e),e._p=(i._i<<10)+t,e._d=Kt(e),e))}}let i=!1;n.entries.flatMap(e=>(e._tags||[]).map(e=>({...e,props:{...e.props}}))).sort($t).reduce((e,t)=>{let n=String(t._d||t._p);if(!e.has(n))return e.set(n,t);let r=e.get(n);if((t?.tagDuplicateStrategy||(Nt.has(t.tag)?`merge`:null)||(t.key&&t.key===r.key?`merge`:null))===`merge`){let i={...r.props};Object.entries(t.props).forEach(([e,t])=>i[e]=e===`style`?new Map([...r.props.style||new Map,...t]):e===`class`?new Set([...r.props.class||new Set,...t]):t),e.set(n,{...t,props:i})}else t._p>>10==r._p>>10&&t.tag===`meta`&&Gt(n)?(e.set(n,Object.assign([...Array.isArray(r)?r:[r],t],t)),i=!0):(t._w===r._w?t._p>r._p:t?._w<r?._w)&&e.set(n,t);return e},n.tagMap);let s=n.tagMap.get(`title`),c=n.tagMap.get(`titleTemplate`);if(o._title=s?.textContent,c){let e=c?.textContent;if(o._titleTemplate=e,e){let t=typeof e==`function`?e(s?.textContent):e;typeof t==`string`&&!o.plugins.has(`template-params`)&&(t=t.replace(`%s`,s?.textContent||``)),s?t===null?n.tagMap.delete(`title`):n.tagMap.set(`title`,{...s,textContent:t}):(c.tag=`title`,c.textContent=t)}}n.tags=Array.from(n.tagMap.values()),i&&(n.tags=n.tags.flat().sort($t)),await t.callHook(`tags:beforeResolve`,n),await t.callHook(`tags:resolve`,n),await t.callHook(`tags:afterResolve`,n);let l=[];for(let e of n.tags){let{innerHTML:t,tag:n,props:r}=e;At.has(n)&&(Object.keys(r).length===0&&!e.innerHTML&&!e.textContent||n===`meta`&&!r.content&&!r[`http-equiv`]&&!r.charset||(n===`script`&&t&&(String(r.type).endsWith(`json`)?e.innerHTML=(typeof t==`string`?t:JSON.stringify(t)).replace(/</g,`\\u003C`):typeof t==`string`&&(e.innerHTML=t.replace(RegExp(`</${n}`,`g`),`<\\/${n}`)),e._d=Kt(e)),l.push(e)))}return l},invalidate(){for(let e of r.values())a.add(e._i);o.dirty=!0,t.callHook(`entries:updated`,o)}};return(e?.plugins||[]).forEach(e=>sn(o,e)),o.hooks.callHook(`init`,o),e.init?.forEach(e=>e&&o.push(e)),o}var ln=(e,t)=>v(t)?E(t):t,un=`usehead`;function dn(e){return{install(t){t.config.globalProperties.$unhead=e,t.config.globalProperties.$head=e,t.provide(un,e)}}.install}function fn(){if(p()){let e=m(un);if(e)return e}throw Error(`useHead() was called without provide context, ensure you call it through the setup() function.`)}function pn(e,t={}){let n=t.head||fn();return n.ssr?n.push(e||{},t):mn(n,e,t)}function mn(e,t,n={}){let r=T(!1),i;return d(()=>{let a=r.value?{}:Jt(t,ln);i?i.patch(a):i=e.push(a,n)}),pe()&&(u(()=>{i.dispose()}),f(()=>{r.value=!0}),s(()=>{r.value=!1})),i}function hn(e){let t=e||S();return t.ssrContext?.head||t.runWithContext(()=>{if(p()){let e=m(`usehead`);if(!e)throw Error(`[nuxt] [unhead] Missing Unhead instance.`);return e}})}function gn(e,t={}){return pn(e,{head:t.head||hn(t.nuxt),...t})}var _n=(()=>{let e={prerender:!0},t={prerender:!1};return(n,r)=>{let i=[];r.charCodeAt(r.length-1)===47&&(r=r.slice(0,-1)||`/`),r===`/`&&i.unshift({data:e}),r===`/200.html`&&i.unshift({data:e}),r===`/404.html`&&i.unshift({data:e});let a=r.split(`/`);return a.length-1,i.unshift({data:t,params:{_:a.slice(1).join(`/`)}}),i}})(),vn=e=>ze({},..._n(``,e).map(e=>e.data).reverse()),yn=`modulepreload`,bn=function(e,t){return new URL(e,t).href},xn={},Sn=function(e,t,n){let r=Promise.resolve();if(t&&t.length>0){let e=document.getElementsByTagName(`link`),i=document.querySelector(`meta[property=csp-nonce]`),a=i?.nonce||i?.getAttribute(`nonce`);function o(e){return Promise.all(e.map(e=>Promise.resolve(e).then(e=>({status:`fulfilled`,value:e}),e=>({status:`rejected`,reason:e}))))}r=o(t.map(t=>{if(t=bn(t,n),t in xn)return;xn[t]=!0;let r=t.endsWith(`.css`),i=r?`[rel="stylesheet"]`:``;if(n)for(let n=e.length-1;n>=0;n--){let i=e[n];if(i.href===t&&(!r||i.rel===`stylesheet`))return}else if(document.querySelector(`link[href="${t}"]${i}`))return;let o=document.createElement(`link`);if(o.rel=r?`stylesheet`:yn,r||(o.as=`script`),o.crossOrigin=``,o.href=t,a&&o.setAttribute(`nonce`,a),document.head.appendChild(o),r)return new Promise((e,n)=>{o.addEventListener(`load`,e),o.addEventListener(`error`,()=>n(Error(`Unable to preload CSS for ${t}`)))})}))}function i(e){let t=new Event(`vite:preloadError`,{cancelable:!0});if(t.payload=e,window.dispatchEvent(t),!t.defaultPrevented)throw e}return r.then(t=>{for(let e of t||[])e.status===`rejected`&&i(e.reason);return e().catch(i)})},Cn=vn,wn;function Tn(){return wn=$fetch(bt(`builds/meta/${x().app.buildId}.json`),{responseType:`json`}),wn.catch(e=>{console.error(`[nuxt] Error fetching app manifest.`,e)}),wn}function En(){return wn||Tn()}function Dn(e){let t=typeof e==`string`?e:e.path;try{return Cn(t)}catch(e){return console.error(`[nuxt] Error matching route rules.`,e),{}}}async function On(e,t={}){return await Pn(e)&&await jn(await An(e,t))||null}var kn=`_payload.json`;async function An(e,t={}){let n=new URL(e,`http://localhost`);if(n.host!==`localhost`||Ie(n.pathname,{acceptRelative:!0}))throw Error(`Payload URL must not include hostname: `+e);let r=x(),i=t.hash||(t.fresh?Date.now():r.app.buildId),a=r.app.cdnURL;return qe(a&&await Fn(e)?a:r.app.baseURL,n.pathname,kn+(i?`?${i}`:``))}async function jn(e){let t=fetch(e,{cache:`force-cache`}).then(e=>e.text().then(Rn));try{return await t}catch(t){console.warn(`[nuxt] Cannot load payload `,e,t)}return null}function Mn(e){if(e.redirect)return!1;if(e.prerender)return!0}async function Nn(e){return e=e===`/`?e:e.replace(/\/$/,``),(await En()).prerendered.includes(e)}async function Pn(e=Ke().path){let t=Dn({path:e}),n=Mn(t);return n===void 0?t.payload?!0:await Nn(e):n}async function Fn(e=Ke().path){let t=Mn(Dn({path:e}));return t===void 0?await Nn(e):t}var In=null;async function Ln(){if(In)return In;let e=document.getElementById(`__NUXT_DATA__`);if(!e)return{};let t=await Rn(e.textContent||``),n=e.dataset.src?await jn(e.dataset.src):void 0;return In={...t,...n,...window.__NUXT__},In.config?.public&&(In.config.public=ue(In.config.public)),In}async function Rn(e){return await Tt(e,S()._payloadRevivers)}function zn(e,t){S()._payloadRevivers[e]=t}var Bn=[[`NuxtError`,e=>Be(e)],[`EmptyShallowRef`,e=>C(e===`_`?void 0:e===`0n`?BigInt(0):ke(e))],[`EmptyRef`,e=>T(e===`_`?void 0:e===`0n`?BigInt(0):ke(e))],[`ShallowRef`,e=>C(e)],[`ShallowReactive`,e=>ve(e)],[`Ref`,e=>T(e)],[`Reactive`,e=>ue(e)]],Vn=D({name:`nuxt:revive-payload:client`,order:-30,async setup(e){let t,n;for(let[e,t]of Bn)zn(e,t);Object.assign(e.payload,([t,n]=le(()=>e.runWithContext(Ln)),t=await t,n(),t)),delete window.__NUXT__}},1);async function Hn(e,t={}){let n=t.document||e.resolvedOptions.document;if(!n||!e.dirty)return;let r={shouldRender:!0,tags:[]};if(await e.hooks.callHook(`dom:beforeRender`,r),r.shouldRender)return e._domUpdatePromise||=new Promise(async t=>{let r=new Map,i=new Promise(t=>{e.resolveTags().then(e=>{t(e.map(e=>{let t=r.get(e._d)||0,n={tag:e,id:(t?`${e._d}:${t}`:e._d)||qt(e),shouldRender:!0};return e._d&&Gt(e._d)&&r.set(e._d,t+1),n}))})}),a=e._dom;if(!a){a={title:n.title,elMap:new Map().set(`htmlAttrs`,n.documentElement).set(`bodyAttrs`,n.body)};for(let e of[`body`,`head`]){let t=n[e]?.children;for(let e of t){let t=e.tagName.toLowerCase();if(!kt.has(t))continue;let n=Xt({tag:t,props:{}},{innerHTML:e.innerHTML,...e.getAttributeNames().reduce((t,n)=>(t[n]=e.getAttribute(n),t),{})||{}});if(n.key=e.getAttribute(`data-hid`)||void 0,n._d=Kt(n)||qt(n),a.elMap.has(n._d)){let t=1,r=n._d;for(;a.elMap.has(r);)r=`${n._d}:${t++}`;a.elMap.set(r,e)}else a.elMap.set(n._d,e)}}}a.pendingSideEffects={...a.sideEffects},a.sideEffects={};function o(e,t,n){let r=`${e}:${t}`;a.sideEffects[r]=n,delete a.pendingSideEffects[r]}function s({id:e,$el:t,tag:r}){let i=r.tag.endsWith(`Attrs`);a.elMap.set(e,t),i||(r.textContent&&r.textContent!==t.textContent&&(t.textContent=r.textContent),r.innerHTML&&r.innerHTML!==t.innerHTML&&(t.innerHTML=r.innerHTML),o(e,`el`,()=>{t?.remove(),a.elMap.delete(e)}));for(let a in r.props){if(!Object.prototype.hasOwnProperty.call(r.props,a))continue;let s=r.props[a];if(a.startsWith(`on`)&&typeof s==`function`){let e=t?.dataset;if(e&&e[`${a}fired`]){let e=a.slice(0,-5);s.call(t,new Event(e.substring(2)))}t.getAttribute(`data-${a}`)!==``&&((r.tag===`bodyAttrs`?n.defaultView:t).addEventListener(a.substring(2),s.bind(t)),t.setAttribute(`data-${a}`,``));continue}let c=`attr:${a}`;if(a===`class`){if(!s)continue;for(let n of s)i&&o(e,`${c}:${n}`,()=>t.classList.remove(n)),!t.classList.contains(n)&&t.classList.add(n)}else if(a===`style`){if(!s)continue;for(let[n,r]of s)o(e,`${c}:${n}`,()=>{t.style.removeProperty(n)}),t.style.setProperty(n,r)}else s!==!1&&s!==null&&(t.getAttribute(a)!==s&&t.setAttribute(a,s===!0?``:String(s)),i&&o(e,c,()=>t.removeAttribute(a)))}}let c=[],l={bodyClose:void 0,bodyOpen:void 0,head:void 0},u=await i;for(let e of u){let{tag:t,shouldRender:r,id:i}=e;if(r){if(t.tag===`title`){n.title=t.textContent,o(`title`,``,()=>n.title=a.title);continue}e.$el=e.$el||a.elMap.get(i),e.$el?s(e):kt.has(t.tag)&&c.push(e)}}for(let e of c){let t=e.tag.tagPosition||`head`;e.$el=n.createElement(e.tag.tag),s(e),l[t]=l[t]||n.createDocumentFragment(),l[t].appendChild(e.$el)}for(let t of u)await e.hooks.callHook(`dom:renderTag`,t,n,o);l.head&&n.head.appendChild(l.head),l.bodyOpen&&n.body.insertBefore(l.bodyOpen,n.body.firstChild),l.bodyClose&&n.body.appendChild(l.bodyClose);for(let e in a.pendingSideEffects)a.pendingSideEffects[e]();e._dom=a,await e.hooks.callHook(`dom:rendered`,{renders:u}),t()}).finally(()=>{e._domUpdatePromise=void 0,e.dirty=!1}),e._domUpdatePromise}function Un(e={}){let t=e.domOptions?.render||Hn;e.document=e.document||(typeof window<`u`?document:void 0);let n=e.document?.head.querySelector(`script[id="unhead:payload"]`)?.innerHTML||!1;return cn({...e,plugins:[...e.plugins||[],{key:`client`,hooks:{"entries:updated":t}}],init:[n?JSON.parse(n):!1,...e.init||[]]})}function Wn(e,t){let n=0;return()=>{let r=++n;t(()=>{n===r&&e()})}}function Gn(e={}){let t=Un({domOptions:{render:Wn(()=>Hn(t),e=>setTimeout(e,0))},...e});return t.install=dn(t),t}var Kn={disableDefaults:!0},qn=D({name:`nuxt:head`,enforce:`pre`,setup(e){let t=Gn(Kn);e.vueApp.use(t);{let n=!0,r=async()=>{n=!1,await Hn(t)};t.hooks.hook(`dom:beforeRender`,e=>{e.shouldRender=!n}),e.hooks.hook(`page:start`,()=>{n=!0}),e.hooks.hook(`page:finish`,()=>{e.isHydrating||r()}),e.hooks.hook(`app:error`,r),e.hooks.hook(`app:suspense:resolve`,r)}}}),Jn=typeof document<`u`;function Yn(e){return typeof e==`object`||`displayName`in e||`props`in e||`__vccOpts`in e}function Xn(e){return e.__esModule||e[Symbol.toStringTag]===`Module`||e.default&&Yn(e.default)}var M=Object.assign;function Zn(e,t){let n={};for(let r in t){let i=t[r];n[r]=N(i)?i.map(e):e(i)}return n}var Qn=()=>{},N=Array.isArray;function $n(e,t){let n={};for(let r in e)n[r]=r in t?t[r]:e[r];return n}var P=function(e){return e[e.MATCHER_NOT_FOUND=1]=`MATCHER_NOT_FOUND`,e[e.NAVIGATION_GUARD_REDIRECT=2]=`NAVIGATION_GUARD_REDIRECT`,e[e.NAVIGATION_ABORTED=4]=`NAVIGATION_ABORTED`,e[e.NAVIGATION_CANCELLED=8]=`NAVIGATION_CANCELLED`,e[e.NAVIGATION_DUPLICATED=16]=`NAVIGATION_DUPLICATED`,e}({}),er=Symbol(``);P.MATCHER_NOT_FOUND,P.NAVIGATION_GUARD_REDIRECT,P.NAVIGATION_ABORTED,P.NAVIGATION_CANCELLED,P.NAVIGATION_DUPLICATED;function tr(e,t){return M(Error(),{type:e,[er]:!0},t)}function nr(e,t){return e instanceof Error&&er in e&&(t==null||!!(e.type&t))}var rr=Symbol(``),ir=Symbol(``),ar=Symbol(``),or=Symbol(``),sr=Symbol(``),cr=/#/g,lr=/&/g,ur=/\//g,dr=/=/g,fr=/\?/g,pr=/\+/g,mr=/%5B/g,hr=/%5D/g,gr=/%5E/g,_r=/%60/g,vr=/%7B/g,yr=/%7C/g,br=/%7D/g,xr=/%20/g;function Sr(e){return e==null?``:encodeURI(``+e).replace(yr,`|`).replace(mr,`[`).replace(hr,`]`)}function Cr(e){return Sr(e).replace(vr,`{`).replace(br,`}`).replace(gr,`^`)}function wr(e){return Sr(e).replace(pr,`%2B`).replace(xr,`+`).replace(cr,`%23`).replace(lr,`%26`).replace(_r,"`").replace(vr,`{`).replace(br,`}`).replace(gr,`^`)}function Tr(e){return wr(e).replace(dr,`%3D`)}function Er(e){return Sr(e).replace(cr,`%23`).replace(fr,`%3F`)}function Dr(e){return Er(e).replace(ur,`%2F`)}function Or(e){if(e==null)return null;try{return decodeURIComponent(``+e)}catch{}return``+e}var kr=/\/$/,Ar=e=>e.replace(kr,``);function jr(e,t,n=`/`){let r,i={},a=``,o=``,s=t.indexOf(`#`),c=t.indexOf(`?`);return c=s>=0&&c>s?-1:c,c>=0&&(r=t.slice(0,c),a=t.slice(c,s>0?s:t.length),i=e(a.slice(1))),s>=0&&(r||=t.slice(0,s),o=t.slice(s,t.length)),r=zr(r??t,n),{fullPath:r+a+o,path:r,query:i,hash:Or(o)}}function Mr(e,t){let n=t.query?e(t.query):``;return t.path+(n&&`?`)+n+(t.hash||``)}function Nr(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||`/`}function Pr(e,t,n){let r=t.matched.length-1,i=n.matched.length-1;return r>-1&&r===i&&Fr(t.matched[r],n.matched[i])&&Ir(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function Fr(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function Ir(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(var n in e)if(!Lr(e[n],t[n]))return!1;return!0}function Lr(e,t){return N(e)?Rr(e,t):N(t)?Rr(t,e):(e&&e.valueOf())===(t&&t.valueOf())}function Rr(e,t){return N(t)?e.length===t.length&&e.every((e,n)=>e===t[n]):e.length===1&&e[0]===t}function zr(e,t){if(e.startsWith(`/`))return e;if(!e)return t;let n=t.split(`/`),r=e.split(`/`),i=r[r.length-1];(i===`..`||i===`.`)&&r.push(``);let a=n.length-1,o,s;for(o=0;o<r.length;o++)if(s=r[o],s!==`.`)if(s===`..`)a>1&&a--;else break;return n.slice(0,a).join(`/`)+`/`+r.slice(o).join(`/`)}var F={path:`/`,name:void 0,params:{},query:{},hash:``,fullPath:`/`,matched:[],meta:{},redirectedFrom:void 0},Br=function(e){return e.pop=`pop`,e.push=`push`,e}({}),Vr=function(e){return e.back=`back`,e.forward=`forward`,e.unknown=``,e}({});function Hr(e){if(!e)if(Jn){let t=document.querySelector(`base`);e=t&&t.getAttribute(`href`)||`/`,e=e.replace(/^\w+:\/\/[^\/]+/,``)}else e=`/`;return e[0]!==`/`&&e[0]!==`#`&&(e=`/`+e),Ar(e)}var Ur=/^[^#]+#/;function Wr(e,t){return e.replace(Ur,`#`)+t}function Gr(e,t){let 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)}}var Kr=()=>({left:window.scrollX,top:window.scrollY});function qr(e){let t;if(`el`in e){let n=e.el,r=typeof n==`string`&&n.startsWith(`#`),i=typeof n==`string`?r?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!i)return;t=Gr(i,e)}else t=e;`scrollBehavior`in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left==null?window.scrollX:t.left,t.top==null?window.scrollY:t.top)}function Jr(e,t){return(history.state?history.state.position-t:-1)+e}var Yr=new Map;function Xr(e,t){Yr.set(e,t)}function Zr(e){let t=Yr.get(e);return Yr.delete(e),t}function Qr(e){return typeof e==`string`||e&&typeof e==`object`}function $r(e){return typeof e==`string`||typeof e==`symbol`}function ei(e){let t={};if(e===``||e===`?`)return t;let n=(e[0]===`?`?e.slice(1):e).split(`&`);for(let e=0;e<n.length;++e){let r=n[e].replace(pr,` `),i=r.indexOf(`=`),a=Or(i<0?r:r.slice(0,i)),o=i<0?null:Or(r.slice(i+1));if(a in t){let e=t[a];N(e)||(e=t[a]=[e]),e.push(o)}else t[a]=o}return t}function ti(e){let t=``;for(let n in e){let r=e[n];if(n=Tr(n),r==null){r!==void 0&&(t+=(t.length?`&`:``)+n);continue}(N(r)?r.map(e=>e&&wr(e)):[r&&wr(r)]).forEach(e=>{e!==void 0&&(t+=(t.length?`&`:``)+n,e!=null&&(t+=`=`+e))})}return t}function ni(e){let t={};for(let n in e){let r=e[n];r!==void 0&&(t[n]=N(r)?r.map(e=>e==null?null:``+e):r==null?r:``+r)}return t}function ri(){let e=[];function t(t){return e.push(t),()=>{let n=e.indexOf(t);n>-1&&e.splice(n,1)}}function n(){e=[]}return{add:t,list:()=>e.slice(),reset:n}}function ii(e,t,n,r,i,a=e=>e()){let o=r&&(r.enterCallbacks[i]=r.enterCallbacks[i]||[]);return()=>new Promise((s,c)=>{let l=e=>{e===!1?c(tr(P.NAVIGATION_ABORTED,{from:n,to:t})):e instanceof Error?c(e):Qr(e)?c(tr(P.NAVIGATION_GUARD_REDIRECT,{from:t,to:e})):(o&&r.enterCallbacks[i]===o&&typeof e==`function`&&o.push(e),s())},u=a(()=>e.call(r&&r.instances[i],t,n,l)),d=Promise.resolve(u);e.length<3&&(d=d.then(l)),d.catch(e=>c(e))})}function ai(e,t,n,r,i=e=>e()){let a=[];for(let o of e)for(let e in o.components){let s=o.components[e];if(!(t!==`beforeRouteEnter`&&!o.instances[e]))if(Yn(s)){let c=(s.__vccOpts||s)[t];c&&a.push(ii(c,n,r,o,e,i))}else{let c=s();a.push(()=>c.then(a=>{if(!a)throw Error(`Couldn't resolve component "${e}" at "${o.path}"`);let s=Xn(a)?a.default:a;o.mods[e]=a,o.components[e]=s;let c=(s.__vccOpts||s)[t];return c&&ii(c,n,r,o,e,i)()}))}}return a}function oi(e,t){let n=[],r=[],i=[],a=Math.max(t.matched.length,e.matched.length);for(let o=0;o<a;o++){let a=t.matched[o];a&&(e.matched.find(e=>Fr(e,a))?r.push(a):n.push(a));let s=e.matched[o];s&&(t.matched.find(e=>Fr(e,s))||i.push(s))}return[n,r,i]}var si=()=>location.protocol+`//`+location.host;function ci(e,t){let{pathname:n,search:r,hash:i}=t,a=e.indexOf(`#`);if(a>-1){let t=i.includes(e.slice(a))?e.slice(a).length:1,n=i.slice(t);return n[0]!==`/`&&(n=`/`+n),Nr(n,``)}return Nr(n,e)+r+i}function li(e,t,n,r){let i=[],a=[],o=null,s=({state:a})=>{let s=ci(e,location),c=n.value,l=t.value,u=0;if(a){if(n.value=s,t.value=a,o&&o===c){o=null;return}u=l?a.position-l.position:0}else r(s);i.forEach(e=>{e(n.value,c,{delta:u,type:Br.pop,direction:u?u>0?Vr.forward:Vr.back:Vr.unknown})})};function c(){o=n.value}function l(e){i.push(e);let t=()=>{let t=i.indexOf(e);t>-1&&i.splice(t,1)};return a.push(t),t}function u(){if(document.visibilityState===`hidden`){let{history:e}=window;if(!e.state)return;e.replaceState(M({},e.state,{scroll:Kr()}),``)}}function d(){for(let e of a)e();a=[],window.removeEventListener(`popstate`,s),window.removeEventListener(`pagehide`,u),document.removeEventListener(`visibilitychange`,u)}return window.addEventListener(`popstate`,s),window.addEventListener(`pagehide`,u),document.addEventListener(`visibilitychange`,u),{pauseListeners:c,listen:l,destroy:d}}function ui(e,t,n,r=!1,i=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:i?Kr():null}}function di(e){let{history:t,location:n}=window,r={value:ci(e,n)},i={value:t.state};i.value||a(r.value,{back:null,current:r.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function a(r,a,o){let s=e.indexOf(`#`),c=s>-1?(n.host&&document.querySelector(`base`)?e:e.slice(s))+r:si()+e+r;try{t[o?`replaceState`:`pushState`](a,``,c),i.value=a}catch(e){console.error(e),n[o?`replace`:`assign`](c)}}function o(e,n){a(e,M({},t.state,ui(i.value.back,e,i.value.forward,!0),n,{position:i.value.position}),!0),r.value=e}function s(e,n){let o=M({},i.value,t.state,{forward:e,scroll:Kr()});a(o.current,o,!0),a(e,M({},ui(r.value,e,null),{position:o.position+1},n),!1),r.value=e}return{location:r,state:i,push:s,replace:o}}function fi(e){e=Hr(e);let t=di(e),n=li(e,t.state,t.location,t.replace);function r(e,t=!0){t||n.pauseListeners(),history.go(e)}let i=M({location:``,base:e,go:r,createHref:Wr.bind(null,e)},t,n);return Object.defineProperty(i,`location`,{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(i,`state`,{enumerable:!0,get:()=>t.state.value}),i}var pi=function(e){return e[e.Static=0]=`Static`,e[e.Param=1]=`Param`,e[e.Group=2]=`Group`,e}({}),I=function(e){return e[e.Static=0]=`Static`,e[e.Param=1]=`Param`,e[e.ParamRegExp=2]=`ParamRegExp`,e[e.ParamRegExpEnd=3]=`ParamRegExpEnd`,e[e.EscapeNext=4]=`EscapeNext`,e}(I||{}),mi={type:pi.Static,value:``},hi=/[a-zA-Z0-9_]/;function gi(e){if(!e)return[[]];if(e===`/`)return[[mi]];if(!e.startsWith(`/`))throw Error(`Invalid path "${e}"`);function t(e){throw Error(`ERR (${n})/"${l}": ${e}`)}let n=I.Static,r=n,i=[],a;function o(){a&&i.push(a),a=[]}let s=0,c,l=``,u=``;function d(){l&&=(n===I.Static?a.push({type:pi.Static,value:l}):n===I.Param||n===I.ParamRegExp||n===I.ParamRegExpEnd?(a.length>1&&(c===`*`||c===`+`)&&t(`A repeatable param (${l}) must be alone in its segment. eg: '/:ids+.`),a.push({type:pi.Param,value:l,regexp:u,repeatable:c===`*`||c===`+`,optional:c===`*`||c===`?`})):t(`Invalid state to consume buffer`),``)}function f(){l+=c}for(;s<e.length;){if(c=e[s++],c===`\\`&&n!==I.ParamRegExp){r=n,n=I.EscapeNext;continue}switch(n){case I.Static:c===`/`?(l&&d(),o()):c===`:`?(d(),n=I.Param):f();break;case I.EscapeNext:f(),n=r;break;case I.Param:c===`(`?n=I.ParamRegExp:hi.test(c)?f():(d(),n=I.Static,c!==`*`&&c!==`?`&&c!==`+`&&s--);break;case I.ParamRegExp:c===`)`?u[u.length-1]==`\\`?u=u.slice(0,-1)+c:n=I.ParamRegExpEnd:u+=c;break;case I.ParamRegExpEnd:d(),n=I.Static,c!==`*`&&c!==`?`&&c!==`+`&&s--,u=``;break;default:t(`Unknown state`);break}}return n===I.ParamRegExp&&t(`Unfinished custom RegExp for param "${l}"`),d(),o(),i}var _i=`[^/]+?`,vi={sensitive:!1,strict:!1,start:!0,end:!0},L=function(e){return e[e._multiplier=10]=`_multiplier`,e[e.Root=90]=`Root`,e[e.Segment=40]=`Segment`,e[e.SubSegment=30]=`SubSegment`,e[e.Static=40]=`Static`,e[e.Dynamic=20]=`Dynamic`,e[e.BonusCustomRegExp=10]=`BonusCustomRegExp`,e[e.BonusWildcard=-50]=`BonusWildcard`,e[e.BonusRepeatable=-20]=`BonusRepeatable`,e[e.BonusOptional=-8]=`BonusOptional`,e[e.BonusStrict=.7000000000000001]=`BonusStrict`,e[e.BonusCaseSensitive=.25]=`BonusCaseSensitive`,e}(L||{}),yi=/[.+*?^${}()[\]/\\]/g;function bi(e,t){let n=M({},vi,t),r=[],i=n.start?`^`:``,a=[];for(let t of e){let e=t.length?[]:[L.Root];n.strict&&!t.length&&(i+=`/`);for(let r=0;r<t.length;r++){let o=t[r],s=L.Segment+(n.sensitive?L.BonusCaseSensitive:0);if(o.type===pi.Static)r||(i+=`/`),i+=o.value.replace(yi,`\\$&`),s+=L.Static;else if(o.type===pi.Param){let{value:e,repeatable:n,optional:c,regexp:l}=o;a.push({name:e,repeatable:n,optional:c});let u=l||_i;if(u!==_i){s+=L.BonusCustomRegExp;try{RegExp(`(${u})`)}catch(t){throw Error(`Invalid custom RegExp for param "${e}" (${u}): `+t.message)}}let d=n?`((?:${u})(?:/(?:${u}))*)`:`(${u})`;r||(d=c&&t.length<2?`(?:/${d})`:`/`+d),c&&(d+=`?`),i+=d,s+=L.Dynamic,c&&(s+=L.BonusOptional),n&&(s+=L.BonusRepeatable),u===`.*`&&(s+=L.BonusWildcard)}e.push(s)}r.push(e)}if(n.strict&&n.end){let e=r.length-1;r[e][r[e].length-1]+=L.BonusStrict}n.strict||(i+=`/?`),n.end?i+=`$`:n.strict&&!i.endsWith(`/`)&&(i+=`(?:/|$)`);let o=new RegExp(i,n.sensitive?``:`i`);function s(e){let t=e.match(o),n={};if(!t)return null;for(let e=1;e<t.length;e++){let r=t[e]||``,i=a[e-1];n[i.name]=r&&i.repeatable?r.split(`/`):r}return n}function c(t){let n=``,r=!1;for(let i of e){(!r||!n.endsWith(`/`))&&(n+=`/`),r=!1;for(let e of i)if(e.type===pi.Static)n+=e.value;else if(e.type===pi.Param){let{value:a,repeatable:o,optional:s}=e,c=a in t?t[a]:``;if(N(c)&&!o)throw Error(`Provided param "${a}" is an array but it is not repeatable (* or + modifiers)`);let l=N(c)?c.join(`/`):c;if(!l)if(s)i.length<2&&(n.endsWith(`/`)?n=n.slice(0,-1):r=!0);else throw Error(`Missing required param "${a}"`);n+=l}}return n||`/`}return{re:o,score:r,keys:a,parse:s,stringify:c}}function xi(e,t){let n=0;for(;n<e.length&&n<t.length;){let r=t[n]-e[n];if(r)return r;n++}return e.length<t.length?e.length===1&&e[0]===L.Static+L.Segment?-1:1:e.length>t.length?t.length===1&&t[0]===L.Static+L.Segment?1:-1:0}function Si(e,t){let n=0,r=e.score,i=t.score;for(;n<r.length&&n<i.length;){let e=xi(r[n],i[n]);if(e)return e;n++}if(Math.abs(i.length-r.length)===1){if(Ci(r))return 1;if(Ci(i))return-1}return i.length-r.length}function Ci(e){let t=e[e.length-1];return e.length>0&&t[t.length-1]<0}var wi={strict:!1,end:!0,sensitive:!1};function Ti(e,t,n){let r=M(bi(gi(e.path),n),{record:e,parent:t,children:[],alias:[]});return t&&!r.record.aliasOf==!t.record.aliasOf&&t.children.push(r),r}function Ei(e,t){let n=[],r=new Map;t=$n(wi,t);function i(e){return r.get(e)}function a(e,n,r){let i=!r,s=Oi(e);s.aliasOf=r&&r.record;let l=$n(t,e),u=[s];if(`alias`in e){let t=typeof e.alias==`string`?[e.alias]:e.alias;for(let e of t)u.push(Oi(M({},s,{components:r?r.record.components:s.components,path:e,aliasOf:r?r.record:s})))}let d,f;for(let t of u){let{path:u}=t;if(n&&u[0]!==`/`){let e=n.record.path,r=e[e.length-1]===`/`?``:`/`;t.path=n.record.path+(u&&r+u)}if(d=Ti(t,n,l),r?r.alias.push(d):(f||=d,f!==d&&f.alias.push(d),i&&e.name&&!Ai(d)&&o(e.name)),Pi(d)&&c(d),s.children){let e=s.children;for(let t=0;t<e.length;t++)a(e[t],d,r&&r.children[t])}r||=d}return f?()=>{o(f)}:Qn}function o(e){if($r(e)){let t=r.get(e);t&&(r.delete(e),n.splice(n.indexOf(t),1),t.children.forEach(o),t.alias.forEach(o))}else{let t=n.indexOf(e);t>-1&&(n.splice(t,1),e.record.name&&r.delete(e.record.name),e.children.forEach(o),e.alias.forEach(o))}}function s(){return n}function c(e){let t=Mi(e,n);n.splice(t,0,e),e.record.name&&!Ai(e)&&r.set(e.record.name,e)}function l(e,t){let i,a={},o,s;if(`name`in e&&e.name){if(i=r.get(e.name),!i)throw tr(P.MATCHER_NOT_FOUND,{location:e});s=i.record.name,a=M(Di(t.params,i.keys.filter(e=>!e.optional).concat(i.parent?i.parent.keys.filter(e=>e.optional):[]).map(e=>e.name)),e.params&&Di(e.params,i.keys.map(e=>e.name))),o=i.stringify(a)}else if(e.path!=null)o=e.path,i=n.find(e=>e.re.test(o)),i&&(a=i.parse(o),s=i.record.name);else{if(i=t.name?r.get(t.name):n.find(e=>e.re.test(t.path)),!i)throw tr(P.MATCHER_NOT_FOUND,{location:e,currentLocation:t});s=i.record.name,a=M({},t.params,e.params),o=i.stringify(a)}let c=[],l=i;for(;l;)c.unshift(l.record),l=l.parent;return{name:s,path:o,params:a,matched:c,meta:ji(c)}}e.forEach(e=>a(e));function u(){n.length=0,r.clear()}return{addRoute:a,resolve:l,removeRoute:o,clearRoutes:u,getRoutes:s,getRecordMatcher:i}}function Di(e,t){let n={};for(let r of t)r in e&&(n[r]=e[r]);return n}function Oi(e){let t={path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:e.aliasOf,beforeEnter:e.beforeEnter,props:ki(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:`components`in e?e.components||null:e.component&&{default:e.component}};return Object.defineProperty(t,`mods`,{value:{}}),t}function ki(e){let t={},n=e.props||!1;if(`component`in e)t.default=n;else for(let r in e.components)t[r]=typeof n==`object`?n[r]:n;return t}function Ai(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function ji(e){return e.reduce((e,t)=>M(e,t.meta),{})}function Mi(e,t){let n=0,r=t.length;for(;n!==r;){let i=n+r>>1;Si(e,t[i])<0?r=i:n=i+1}let i=Ni(e);return i&&(r=t.lastIndexOf(i,r-1)),r}function Ni(e){let t=e;for(;t=t.parent;)if(Pi(t)&&Si(e,t)===0)return t}function Pi({record:e}){return!!(e.name||e.components&&Object.keys(e.components).length||e.redirect)}function Fi(e){let t=m(ar),n=m(or),r=k(()=>{let n=O(e.to);return t.resolve(n)}),i=k(()=>{let{matched:e}=r.value,{length:t}=e,i=e[t-1],a=n.matched;if(!i||!a.length)return-1;let o=a.findIndex(Fr.bind(null,i));if(o>-1)return o;let s=Bi(e[t-2]);return t>1&&Bi(i)===s&&a[a.length-1].path!==s?a.findIndex(Fr.bind(null,e[t-2])):o}),a=k(()=>i.value>-1&&zi(n.params,r.value.params)),o=k(()=>i.value>-1&&i.value===n.matched.length-1&&Ir(n.params,r.value.params));function s(n={}){if(Ri(n)){let n=t[O(e.replace)?`replace`:`push`](O(e.to)).catch(Qn);return e.viewTransition&&typeof document<`u`&&`startViewTransition`in document&&document.startViewTransition(()=>n),n}return Promise.resolve()}return{route:r,href:k(()=>r.value.href),isActive:a,isExactActive:o,navigate:s}}function Ii(e){return e.length===1?e[0]:e}var Li=h({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`},viewTransition:Boolean},useLink:Fi,setup(e,{slots:t}){let n=ue(Fi(e)),{options:r}=m(ar),i=k(()=>({[Vi(e.activeClass,r.linkActiveClass,`router-link-active`)]:n.isActive,[Vi(e.exactActiveClass,r.linkExactActiveClass,`router-link-exact-active`)]:n.isExactActive}));return()=>{let r=t.default&&Ii(t.default(n));return e.custom?r:w(`a`,{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:i.value},r)}}});function Ri(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){let t=e.currentTarget.getAttribute(`target`);if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function zi(e,t){for(let n in t){let r=t[n],i=e[n];if(typeof r==`string`){if(r!==i)return!1}else if(!N(i)||i.length!==r.length||r.some((e,t)=>e.valueOf()!==i[t].valueOf()))return!1}return!0}function Bi(e){return e?e.aliasOf?e.aliasOf.path:e.path:``}var Vi=(e,t,n)=>e??t??n,Hi=h({name:`RouterView`,inheritAttrs:!1,props:{name:{type:String,default:`default`},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){let r=m(sr),i=k(()=>e.route||r.value),a=m(ir,0),o=k(()=>{let e=O(a),{matched:t}=i.value,n;for(;(n=t[e])&&!n.components;)e++;return e}),s=k(()=>i.value.matched[o.value]);te(ir,k(()=>o.value+1)),te(rr,s),te(sr,i);let l=T();return c(()=>[l.value,s.value,e.name],([e,t,n],[r,i,a])=>{t&&(t.instances[n]=e,i&&i!==t&&e&&e===r&&(t.leaveGuards.size||(t.leaveGuards=i.leaveGuards),t.updateGuards.size||(t.updateGuards=i.updateGuards))),e&&t&&(!i||!Fr(t,i)||!r)&&(t.enterCallbacks[n]||[]).forEach(t=>t(e))},{flush:`post`}),()=>{let r=i.value,a=e.name,o=s.value,c=o&&o.components[a];if(!c)return Ui(n.default,{Component:c,route:r});let u=o.props[a],d=w(c,M({},u?u===!0?r.params:typeof u==`function`?u(r):u:null,t,{onVnodeUnmounted:e=>{e.component.isUnmounted&&(o.instances[a]=null)},ref:l}));return Ui(n.default,{Component:d,route:r})||d}}});function Ui(e,t){if(!e)return null;let n=e(t);return n.length===1?n[0]:n}var Wi=Hi;function Gi(e){let t=Ei(e.routes,e),n=e.parseQuery||ei,r=e.stringifyQuery||ti,i=e.history,a=ri(),o=ri(),s=ri(),c=C(F),l=F;Jn&&e.scrollBehavior&&`scrollRestoration`in history&&(history.scrollRestoration=`manual`);let u=Zn.bind(null,e=>``+e),d=Zn.bind(null,Dr),f=Zn.bind(null,Or);function p(e,n){let r,i;return $r(e)?(r=t.getRecordMatcher(e),i=n):i=e,t.addRoute(i,r)}function m(e){let n=t.getRecordMatcher(e);n&&t.removeRoute(n)}function h(){return t.getRoutes().map(e=>e.record)}function g(e){return!!t.getRecordMatcher(e)}function v(e,a){if(a=M({},a||c.value),typeof e==`string`){let r=jr(n,e,a.path),o=t.resolve({path:r.path},a),s=i.createHref(r.fullPath);return M(r,o,{params:f(o.params),hash:Or(r.hash),redirectedFrom:void 0,href:s})}let o;if(e.path!=null)o=M({},e,{path:jr(n,e.path,a.path).path});else{let t=M({},e.params);for(let e in t)t[e]??delete t[e];o=M({},e,{params:d(t)}),a.params=d(a.params)}let s=t.resolve(o,a),l=e.hash||``;s.params=u(f(s.params));let p=Mr(r,M({},e,{hash:Cr(l),path:s.path})),m=i.createHref(p);return M({fullPath:p,hash:l,query:r===ti?ni(e.query):e.query||{}},s,{redirectedFrom:void 0,href:m})}function y(e){return typeof e==`string`?jr(n,e,c.value.path):M({},e)}function b(e,t){if(l!==e)return tr(P.NAVIGATION_CANCELLED,{from:t,to:e})}function ee(e){return re(e)}function te(e){return ee(M(y(e),{replace:!0}))}function ne(e,t){let n=e.matched[e.matched.length-1];if(n&&n.redirect){let{redirect:r}=n,i=typeof r==`function`?r(e,t):r;return typeof i==`string`&&(i=i.includes(`?`)||i.includes(`#`)?i=y(i):{path:i},i.params={}),M({query:e.query,hash:e.hash,params:i.path==null?e.params:{}},i)}}function re(e,t){let n=l=v(e),i=c.value,a=e.state,o=e.force,s=e.replace===!0,u=ne(n,i);if(u)return re(M(y(u),{state:typeof u==`object`?M({},a,u.state):a,force:o,replace:s}),t||n);let d=n;d.redirectedFrom=t;let f;return!o&&Pr(r,i,n)&&(f=tr(P.NAVIGATION_DUPLICATED,{to:d,from:i}),me(i,i,!0,!1)),(f?Promise.resolve(f):x(d,i)).catch(e=>nr(e)?nr(e,P.NAVIGATION_GUARD_REDIRECT)?e:pe(e):S(e,d,i)).then(e=>{if(e){if(nr(e,P.NAVIGATION_GUARD_REDIRECT))return re(M({replace:s},y(e.to),{state:typeof e.to==`object`?M({},a,e.to.state):a,force:o}),t||d)}else e=se(d,i,!0,s,a);return oe(d,i,e),e})}function ie(e,t){let n=b(e,t);return n?Promise.reject(n):Promise.resolve()}function ae(e){let t=T.values().next().value;return t&&typeof t.runWithContext==`function`?t.runWithContext(e):e()}function x(e,t){let n,[r,i,s]=oi(e,t);n=ai(r.reverse(),`beforeRouteLeave`,e,t);for(let i of r)i.leaveGuards.forEach(r=>{n.push(ii(r,e,t))});let c=ie.bind(null,e,t);return n.push(c),_e(n).then(()=>{n=[];for(let r of a.list())n.push(ii(r,e,t));return n.push(c),_e(n)}).then(()=>{n=ai(i,`beforeRouteUpdate`,e,t);for(let r of i)r.updateGuards.forEach(r=>{n.push(ii(r,e,t))});return n.push(c),_e(n)}).then(()=>{n=[];for(let r of s)if(r.beforeEnter)if(N(r.beforeEnter))for(let i of r.beforeEnter)n.push(ii(i,e,t));else n.push(ii(r.beforeEnter,e,t));return n.push(c),_e(n)}).then(()=>(e.matched.forEach(e=>e.enterCallbacks={}),n=ai(s,`beforeRouteEnter`,e,t,ae),n.push(c),_e(n))).then(()=>{n=[];for(let r of o.list())n.push(ii(r,e,t));return n.push(c),_e(n)}).catch(e=>nr(e,P.NAVIGATION_CANCELLED)?e:Promise.reject(e))}function oe(e,t,n){s.list().forEach(r=>ae(()=>r(e,t,n)))}function se(e,t,n,r,a){let o=b(e,t);if(o)return o;let s=t===F,l=Jn?history.state:{};n&&(r||s?i.replace(e.fullPath,M({scroll:s&&l&&l.scroll},a)):i.push(e.fullPath,a)),c.value=e,me(e,t,n,s),pe()}let ce;function le(){ce||=i.listen((e,t,n)=>{if(!E.listening)return;let r=v(e),a=ne(r,E.currentRoute.value);if(a){re(M(a,{replace:!0,force:!0}),r).catch(Qn);return}l=r;let o=c.value;Jn&&Xr(Jr(o.fullPath,n.delta),Kr()),x(r,o).catch(e=>nr(e,P.NAVIGATION_ABORTED|P.NAVIGATION_CANCELLED)?e:nr(e,P.NAVIGATION_GUARD_REDIRECT)?(re(M(y(e.to),{force:!0}),r).then(e=>{nr(e,P.NAVIGATION_ABORTED|P.NAVIGATION_DUPLICATED)&&!n.delta&&n.type===Br.pop&&i.go(-1,!1)}).catch(Qn),Promise.reject()):(n.delta&&i.go(-n.delta,!1),S(e,r,o))).then(e=>{e||=se(r,o,!1),e&&(n.delta&&!nr(e,P.NAVIGATION_CANCELLED)?i.go(-n.delta,!1):n.type===Br.pop&&nr(e,P.NAVIGATION_ABORTED|P.NAVIGATION_DUPLICATED)&&i.go(-1,!1)),oe(r,o,e)}).catch(Qn)})}let ue=ri(),de=ri(),fe;function S(e,t,n){pe(e);let r=de.list();return r.length?r.forEach(r=>r(e,t,n)):console.error(e),Promise.reject(e)}function w(){return fe&&c.value!==F?Promise.resolve():new Promise((e,t)=>{ue.add([e,t])})}function pe(e){return fe||(fe=!e,le(),ue.list().forEach(([t,n])=>e?n(e):t()),ue.reset()),e}function me(t,n,r,i){let{scrollBehavior:a}=e;if(!Jn||!a)return Promise.resolve();let o=!r&&Zr(Jr(t.fullPath,0))||(i||!r)&&history.state&&history.state.scroll||null;return _().then(()=>a(t,n,o)).then(e=>e&&qr(e)).catch(e=>S(e,t,n))}let he=e=>i.go(e),ge,T=new Set,E={currentRoute:c,listening:!0,addRoute:p,removeRoute:m,clearRoutes:t.clearRoutes,hasRoute:g,getRoutes:h,resolve:v,options:e,push:ee,replace:te,go:he,back:()=>he(-1),forward:()=>he(1),beforeEach:a.add,beforeResolve:o.add,afterEach:s.add,onError:de.add,isReady:w,install(e){e.component(`RouterLink`,Li),e.component(`RouterView`,Wi),e.config.globalProperties.$router=E,Object.defineProperty(e.config.globalProperties,`$route`,{enumerable:!0,get:()=>O(c)}),Jn&&!ge&&c.value===F&&(ge=!0,ee(i.location).catch(e=>{}));let t={};for(let e in F)Object.defineProperty(t,e,{get:()=>c.value[e],enumerable:!0});e.provide(ar,E),e.provide(or,ve(t)),e.provide(sr,c);let n=e.unmount;T.add(e),e.unmount=function(){T.delete(e),T.size<1&&(l=F,ce&&ce(),ce=null,c.value=F,ge=!1,fe=!1),n()}}};function _e(e){return e.reduce((e,t)=>e.then(()=>ae(t)),Promise.resolve())}return E}var Ki=/(:\w+)\([^)]+\)/g,qi=/(:\w+)[?+*]/g,Ji=/:\w+/g,Yi=(e,t)=>t.path.replace(Ki,`$1`).replace(qi,`$1`).replace(Ji,t=>e.params[t.slice(1)]?.toString()||``),Xi=(e,t)=>{let n=e.route.matched.find(t=>t.components?.default===e.Component.type),r=t??n?.meta.key??(n&&Yi(e.route,n));return typeof r==`function`?r(e.route):r},Zi=(e,t)=>({default:()=>e?w(fe,e===!0?{}:e,t):t});function Qi(e){return Array.isArray(e)?e:[e]}var $i=[{name:`rpc`,path:`/rpc`,component:()=>Sn(()=>import(`./Bdlh4BwJ.js`),__vite__mapDeps([0,1,2]),import.meta.url)},{name:`docks`,path:`/docks`,component:()=>Sn(()=>import(`./B7YRIwnr.js`),__vite__mapDeps([3,1]),import.meta.url)},{name:`index`,path:`/`,component:()=>Sn(()=>import(`./DN3n5YIz.js`),__vite__mapDeps([4,1,5]),import.meta.url)},{name:`plugins`,path:`/plugins`,component:()=>Sn(()=>import(`./CF7QrbFx.js`),__vite__mapDeps([6,1,2]),import.meta.url)},{name:`scripts`,path:`/scripts`,component:()=>Sn(()=>import(`./Cfhu6PrZ.js`),__vite__mapDeps([7,1]),import.meta.url)}],ea=(e,t)=>({default:()=>e?w(Ee,e===!0?{}:e,t):t.default?.()}),ta=/(:\w+)\([^)]+\)/g,na=/(:\w+)[?+*]/g,ra=/:\w+/g;function ia(e){let t=e?.meta.key??e.path.replace(ta,`$1`).replace(na,`$1`).replace(ra,t=>e.params[t.slice(1)]?.toString()||``);return typeof t==`function`?t(e):t}function aa(e,t){return e===t||t===F?!1:ia(e)===ia(t)?!e.matched.every((e,n)=>e.components&&e.components.default===t.matched[n]?.components?.default):!0}var oa={scrollBehavior(e,t,n){let r=S(),i=j().options?.scrollBehaviorType??`auto`;if(e.path.replace(/\/$/,``)===t.path.replace(/\/$/,``))return t.hash&&!e.hash?{left:0,top:0}:e.hash?{el:e.hash,top:sa(e.hash),behavior:i}:!1;if((typeof e.meta.scrollToTop==`function`?e.meta.scrollToTop(e,t):e.meta.scrollToTop)===!1)return!1;let a=r._runningTransition?`page:transition:finish`:`page:loading:end`;return new Promise(o=>{if(t===F){o(ca(e,t,n,i));return}r.hooks.hookOnce(a,()=>{requestAnimationFrame(()=>o(ca(e,t,n,i)))})})}};function sa(e){try{let t=document.querySelector(e);if(t)return(Number.parseFloat(getComputedStyle(t).scrollMarginTop)||0)+(Number.parseFloat(getComputedStyle(document.documentElement).scrollPaddingTop)||0)}catch{}return 0}function ca(e,t,n,r){if(n)return n;let i=aa(e,t);return e.hash?{el:e.hash,top:sa(e.hash),behavior:i?r:`instant`}:{left:0,top:0}}var la={hashMode:!1,scrollBehaviorType:`auto`,...oa},ua=[Ve(async(e,t)=>{let n,r;if(!e.meta?.validate)return;let i=([n,r]=le(()=>Promise.resolve(e.meta.validate(e))),n=await n,r(),n);if(i===!0)return;let a=Be({fatal:!0,status:i&&(i.status||i.statusCode)||404,statusText:i&&(i.statusText||i.statusMessage)||`Page Not Found: ${e.fullPath}`,data:{path:e.fullPath}});return typeof window<`u`&&window.history.pushState({},``,t.fullPath),a},1),Ve(e=>{let t=Dn({path:e.path});if(t.redirect){let n=t.redirect.includes(`#`)?t.redirect:t.redirect+e.hash;return Ie(n,{acceptRelative:!0})?(window.location.href=n,!1):n}})],da={};function fa(e,t,n){let{pathname:r,search:i,hash:a}=t,o=e.indexOf(`#`);if(o>-1){let t=a.includes(e.slice(o))?e.slice(o).length:1,n=a.slice(t);return n[0]!==`/`&&(n=`/`+n),De(n,``)}let s=De(r,e),c=!n||Fe(s,n)?s:n;return c+(c.includes(`?`)?``:i)+a}var pa=D({name:`nuxt:router`,enforce:`pre`,async setup(e){let t,n,r=x().app.baseURL,i=la.history?.(r)??fi(r),a=la.routes?([t,n]=le(()=>la.routes($i)),t=await t,n(),t)??$i:$i,o,s=Gi({...la,scrollBehavior:(e,t,n)=>{if(t===F){o=n;return}if(la.scrollBehavior){if(s.options.scrollBehavior=la.scrollBehavior,`scrollRestoration`in window.history){let e=s.beforeEach(()=>{e(),window.history.scrollRestoration=`manual`})}return la.scrollBehavior(e,F,o||n)}},history:i,routes:a});`scrollRestoration`in window.history&&(window.history.scrollRestoration=`auto`),e.vueApp.use(s);let c=C(s.currentRoute.value);s.afterEach((e,t)=>{c.value=t}),Object.defineProperty(e.vueApp.config.globalProperties,`previousRoute`,{get:()=>c.value});let l=fa(r,window.location,e.payload.path),u=C(s.currentRoute.value),d=()=>{u.value=s.currentRoute.value};s.afterEach((e,t)=>{e.matched.at(-1)?.components?.default===t.matched.at(-1)?.components?.default&&d()});let f={sync:d};for(let e in u.value)Object.defineProperty(f,e,{get:()=>u.value[e],enumerable:!0});e._route=ve(f),e._middleware||={global:[],named:{}};let p=je();s.afterEach(async(t,n,r)=>{delete e._processingMiddleware,!e.isHydrating&&p.value&&await e.runWithContext(Ge),r&&await e.callHook(`page:loading:end`)});try{[t,n]=le(()=>s.isReady()),await t,n()}catch(r){[t,n]=le(()=>e.runWithContext(()=>Le(r))),await t,n()}let m=l===s.currentRoute.value.fullPath?s.currentRoute.value:s.resolve(l);d();let h=e.payload.state._layout;return s.beforeEach(async(t,n)=>{await e.callHook(`page:loading:start`),t.meta=ue(t.meta),e.isHydrating&&h&&!ae(t.meta.layout)&&(t.meta.layout=h),e._processingMiddleware=!0;{let r=new Set([...ua,...e._middleware.global]);for(let e of t.matched){let t=e.meta.middleware;if(t)for(let e of Qi(t))r.add(e)}let i=Dn({path:t.path});if(i.appMiddleware)for(let e in i.appMiddleware)i.appMiddleware[e]?r.add(e):r.delete(e);for(let i of r){let r=typeof i==`string`?e._middleware.named[i]||await da[i]?.().then(e=>e.default||e):i;if(!r)throw Error(`Unknown route middleware: '${i}'.`);try{let i=await e.runWithContext(()=>r(t,n));if(!e.payload.serverRendered&&e.isHydrating&&(i===!1||i instanceof Error)){let t=i||Be({status:404,statusText:`Page Not Found: ${l}`});return await e.runWithContext(()=>Le(t)),!1}if(i===!0)continue;if(i===!1)return i;if(i)return Ue(i)&&i.fatal&&await e.runWithContext(()=>Le(i)),i}catch(t){let n=Be(t);return n.fatal&&await e.runWithContext(()=>Le(n)),n}}}}),s.onError(async()=>{delete e._processingMiddleware,await e.callHook(`page:loading:end`)}),s.afterEach(t=>{if(t.matched.length===0&&!p.value)return e.runWithContext(()=>Le(Be({status:404,fatal:!1,statusText:`Page not found: ${t.fullPath}`,data:{path:t.fullPath}})))}),e.hooks.hookOnce(`app:created`,async()=>{try{`name`in m&&(m.name=void 0),await s.replace({...m,force:!0}),s.options.scrollBehavior=la.scrollBehavior}catch(t){await e.runWithContext(()=>Le(t))}}),{provide:{router:s}}}},1),ma=globalThis.requestIdleCallback||(e=>{let t=Date.now(),n={didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-t))};return setTimeout(()=>{e(n)},1)}),ha=globalThis.cancelIdleCallback||(e=>{clearTimeout(e)}),ga=e=>{let t=S();t.isHydrating?t.hooks.hookOnce(`app:suspense:resolve`,()=>{ma(()=>e())}):ma(()=>e())},_a=D({name:`nuxt:payload`,setup(e){let t=new Set;j().beforeResolve(async(n,r)=>{if(n.path===r.path)return;let i=await On(n.path);if(i){for(let n of t)delete e.static.data[n];for(let n in i.data)n in e.static.data||t.add(n),e.static.data[n]=i.data[n]}}),ga(()=>{e.hooks.hook(`link:prefetch`,async e=>{let{hostname:t}=new URL(e,window.location.href);t===window.location.hostname&&await On(e).catch(()=>{console.warn(`[nuxt] Error preloading payload for`,e)})}),navigator.connection?.effectiveType!==`slow-2g`&&setTimeout(En,1e3)})}}),va=D(()=>{let e=j();ga(()=>{e.beforeResolve(async()=>{await new Promise(e=>{setTimeout(e,100),requestAnimationFrame(()=>{setTimeout(e,0)})})})})}),ya=D(e=>{let t;async function n(){let r;try{r=await En()}catch(e){let t=e;if(!(`status`in t&&(t.status===404||t.status===403)))throw t}t&&clearTimeout(t),t=setTimeout(n,me);try{let n=await $fetch(bt(`builds/latest.json`)+`?${Date.now()}`);n.id!==r?.id&&(e.hooks.callHook(`app:manifest:update`,n),t&&clearTimeout(t))}catch{}}ga(()=>{t=setTimeout(n,me)})});function ba(e={}){let t=e.path||window.location.pathname,n={};try{n=ke(sessionStorage.getItem(`nuxt:reload`)||`{}`)}catch{}if(e.force||n?.path!==t||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:S().payload.state}))}catch{}window.location.pathname===t?window.location.reload():window.location.href=t}}var xa=D({name:`nuxt:chunk-reload`,setup(e){let t=j(),n=x(),r=new Set;t.beforeEach(()=>{r.clear()}),e.hook(`app:chunkError`,({error:e})=>{r.add(e)});function i(e){ba({path:qe(n.app.baseURL,e.fullPath),persistState:!0})}e.hook(`app:manifest:update`,()=>{t.beforeResolve(i)}),t.onError((e,t)=>{r.has(e)&&i(t)})}}),Sa=D({name:`nuxt:global-components`}),Ca={};function wa(e){if(e?.__asyncLoader&&!e.__asyncResolved)return e.__asyncLoader()}async function Ta(e,t=j()){let{path:n,matched:r}=t.resolve(e);if(!r.length||(t._routePreloaded||=new Set,t._routePreloaded.has(n)))return;let i=t._preloadPromises||=[];if(i.length>4)return Promise.all(i).then(()=>Ta(e,t));t._routePreloaded.add(n);for(let e of r){let t=e.components?.default;if(typeof t!=`function`)continue;let n=Promise.resolve(t()).catch(()=>{}).finally(()=>i.splice(i.indexOf(n)));i.push(n)}await Promise.all(i)}var Ea=[Vn,qn,pa,_a,va,ya,xa,Sa,D({name:`nuxt:prefetch`,setup(e){let t=j();e.hooks.hook(`app:mounted`,()=>{t.beforeEach(async e=>{let t=e?.meta?.layout;t&&typeof Ca[t]==`function`&&await Ca[t]()})}),e.hooks.hook(`link:prefetch`,e=>{if(Ie(e))return;let n=t.resolve(e);if(!n)return;let r=n.meta.layout,i=Qi(n.meta.middleware);i=i.filter(e=>typeof e==`string`);for(let e of i)typeof da[e]==`function`&&da[e]();typeof r==`string`&&r in Ca&&wa(Ca[r])})}}),D(()=>{})],Da=(...e)=>e.find(e=>e!==void 0);function Oa(e){let t=e.componentName||`NuxtLink`;function n(e){return typeof e==`string`&&e.startsWith(`#`)}function r(t,n,r){let i=r??e.trailingSlash;if(!t||i!==`append`&&i!==`remove`)return t;if(typeof t==`string`)return Aa(t,i);let a=`path`in t&&t.path!==void 0?t.path:n(t).path;return{...t,name:void 0,path:Aa(a,i)}}function i(t){let i=j(),a=x(),o=k(()=>!!t.target&&t.target!==`_self`),s=k(()=>{let e=t.to||t.href||``;return typeof e==`string`&&Ie(e,{acceptRelative:!0})}),c=ee(`RouterLink`),l=c&&typeof c!=`string`?c.useLink:void 0,u=k(()=>{if(t.external)return!0;let e=t.to||t.href||``;return typeof e==`object`?!1:e===``||s.value}),d=k(()=>{let e=t.to||t.href||``;return u.value?e:r(e,i.resolve,t.trailingSlash)}),f=u.value?void 0:l?.({...t,to:d}),p=k(()=>{let r=t.trailingSlash??e.trailingSlash;if(!d.value||s.value||n(d.value))return d.value;if(u.value){let e=typeof d.value==`object`&&`path`in d.value?Re(d.value):d.value;return Aa(typeof e==`object`?i.resolve(e).href:e,r)}return typeof d.value==`object`?i.resolve(d.value)?.href??null:Aa(qe(a.app.baseURL,d.value),r)});return{to:d,hasTarget:o,isAbsoluteUrl:s,isExternal:u,href:p,isActive:f?.isActive??k(()=>d.value===i.currentRoute.value.path),isExactActive:f?.isExactActive??k(()=>d.value===i.currentRoute.value.path),route:f?.route??k(()=>i.resolve(d.value)),async navigate(e){await Ne(p.value,{replace:t.replace,external:u.value||o.value})}}}return h({name:t,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},prefetchOn:{type:[String,Object],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},trailingSlash:{type:String,default:void 0,required:!1}},useLink:i,setup(t,{slots:r}){let a=j(),{to:o,href:s,navigate:c,isExternal:l,hasTarget:d,isAbsoluteUrl:f}=i(t),p=C(!1),m=T(null),h=e=>{m.value=t.custom?e?.$el?.nextElementSibling:e?.$el};function g(n){return!p.value&&(typeof t.prefetchOn==`string`?t.prefetchOn===n:t.prefetchOn?.[n]??e.prefetchOn?.[n])&&(t.prefetch??e.prefetch)!==!1&&t.noPrefetch!==!0&&t.target!==`_blank`&&!Na()}async function _(e=S()){if(p.value)return;p.value=!0;let t=typeof o.value==`string`?o.value:l.value?Re(o.value):a.resolve(o.value).fullPath,n=l.value?new URL(t,window.location.href).href:t;await Promise.all([e.hooks.callHook(`link:prefetch`,n).catch(()=>{}),!l.value&&!d.value&&Ta(o.value,a).catch(()=>{})])}if(g(`visibility`)){let e=S(),t,n=null;Ce(()=>{let r=ja();ga(()=>{t=ma(()=>{m?.value?.tagName&&(n=r.observe(m.value,async()=>{n?.(),n=null,await _(e)}))})})}),u(()=>{t&&ha(t),n?.(),n=null})}return()=>{if(!l.value&&!d.value&&!n(o.value)){let n={ref:h,to:o.value,activeClass:t.activeClass||e.activeClass,exactActiveClass:t.exactActiveClass||e.exactActiveClass,replace:t.replace,ariaCurrentValue:t.ariaCurrentValue,custom:t.custom};return t.custom||(g(`interaction`)&&(n.onPointerenter=_.bind(null,void 0),n.onFocus=_.bind(null,void 0)),p.value&&(n.class=t.prefetchedClass||e.prefetchedClass),n.rel=t.rel||void 0),w(ee(`RouterLink`),n,r.default)}let i=t.target||null,u=Da(t.noRel?``:t.rel,e.externalRelAttribute,f.value||d.value?`noopener noreferrer`:``)||null;return t.custom?r.default?r.default({href:s.value,navigate:c,prefetch:_,get route(){if(!s.value)return;let e=new URL(s.value,window.location.href);return{path:e.pathname,fullPath:e.pathname,get query(){return Xe(e.search)},hash:e.hash,params:{},name:void 0,matched:[],redirectedFrom:void 0,meta:{},href:s.value}},rel:u,target:i,isExternal:l.value||d.value,isActive:!1,isExactActive:!1}):null:w(`a`,{ref:m,href:s.value||null,rel:u,target:i,onClick:async e=>{if(!(l.value||d.value)){e.preventDefault();try{let e=We(s.value);return await(t.replace?a.replace(e):a.push(e))}finally{if(n(o.value)){let e=o.value.slice(1),t=e;try{t=decodeURIComponent(e)}catch{}document.getElementById(t)?.focus()}}}}},r.default?.())}}})}var ka=Oa(ce);function Aa(e,t){let n=t===`append`?Oe:Je;return Ie(e)&&!e.startsWith(`http`)?e:n(e,!0)}function ja(){let e=S();if(e._observer)return e._observer;let t=null,n=new Map;return e._observer={observe:(e,r)=>(t||=new IntersectionObserver(e=>{for(let t of e){let e=n.get(t.target);(t.isIntersecting||t.intersectionRatio>0)&&e&&e()}}),n.set(e,r),t.observe(e),()=>{n.delete(e),t?.unobserve(e),n.size===0&&(t?.disconnect(),t=null)})}}var Ma=/2g/;function Na(){let e=navigator.connection;return!!(e&&(e.saveData||Ma.test(e.effectiveType)))}var Pa=(e=`RouteProvider`)=>h({name:e,props:{route:{type:Object,required:!0},vnode:Object,vnodeRef:Object,renderKey:String,trackRootNodes:Boolean},setup(e){let t=e.renderKey,n=e.route,r={};for(let i in e.route)Object.defineProperty(r,i,{get:()=>t===e.renderKey?e.route[i]:n[i],enumerable:!0});return te(He,ve(r)),()=>e.vnode?w(e.vnode,{ref:e.vnodeRef}):e.vnode}}),Fa=Pa(),Ia=new WeakMap,La=h({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,slots:n,expose:r}){let i=S(),a=T(),o=m(He,null),s;r({pageRef:a});let l=m(Pe,null),d,f=i.deferHydration(),p=!1,h=0;if(i.isHydrating){let e=i.hooks.hookOnce(`app:error`,f);j().beforeEach(e)}e.pageKey&&c(()=>e.pageKey,(e,t)=>{e!==t&&i.callHook(`page:loading:start`)});let g=!1;{let e=j().beforeResolve(()=>{g=!1});u(()=>{e(),f()})}return()=>w(Wi,{name:e.name,route:e.route,...t},{default:t=>{let r=za(o,t.route,t.Component),c=o&&o.matched.length===t.route.matched.length;if(!t.Component){if(d&&!c)return d;f();return}if(d&&l&&!l.isCurrent(t.route))return d;if(r&&o&&(!l||l?.isCurrent(o)))return c||d?d:null;let u=Xi(t,e.pageKey),m=Ba(o,t.route,t.Component);!i.isHydrating&&s===u&&!m&&_(()=>{g||(g=!0,i.callHook(`page:loading:end`))}),p&&s!==u&&h++,s=u;let v=!!(e.transition??t.route.meta.pageTransition??!1),y=v&&Ra([e.transition,t.route.meta.pageTransition,!1,{onAfterLeave(){delete i._runningTransition,i.callHook(`page:transition:finish`,t.Component)}}]),b=e.keepalive??t.route.meta.keepalive??!1;return d=ea(v&&y,Zi(b,w(de,{key:h,suspensible:!0,onPending:()=>{p=!0,v&&(i._runningTransition=!0),i.callHook(`page:start`,t.Component)},onResolve:async()=>{p=!1;try{await _(),i._route.sync?.(),await i.callHook(`page:finish`,t.Component),delete i._runningTransition,!g&&!m&&(g=!0,await i.callHook(`page:loading:end`))}finally{f()}}},{default:()=>{let e={key:u||void 0,vnode:n.default?Va(n.default,t):t.Component,route:t.route,renderKey:u||void 0,trackRootNodes:v,vnodeRef:a};if(!b)return w(Fa,e);let r=t.Component.type,i=r,o=Ia.get(i);return o||(o=Pa(r.name||r.__name),Ia.set(i,o)),w(o,e)}}))).default(),d}})}});function Ra(e){let t=[];for(let n of e)n&&t.push({...n,onAfterLeave:n.onAfterLeave?Qi(n.onAfterLeave):void 0});return ze(...t)}function za(e,t,n){if(!e)return!1;let r=t.matched.findIndex(e=>e.components?.default===n?.type);return!r||r===-1?!1:t.matched.slice(0,r).some((t,n)=>t.components?.default!==e.matched[n]?.components?.default)||n&&Xi({route:t,Component:n})!==Xi({route:e,Component:n})}function Ba(e,t,n){return e?t.matched.findIndex(e=>e.components?.default===n?.type)<t.matched.length-1:!1}function Va(e,t){let n=e(t);return n.length===1?w(n[0]):w(he,void 0,n)}var Ha=new WeakMap,Ua=(...e)=>{let t=e[0],n=pe()?.proxy??re();if(n==null&&!p())throw Error(`injectLocal must be called in setup`);return n&&Ha.has(n)&&t in Ha.get(n)?Ha.get(n)[t]:m(...e)},Wa=typeof window<`u`&&typeof document<`u`;typeof WorkerGlobalScope<`u`&&globalThis instanceof WorkerGlobalScope;var Ga=Object.prototype.toString,Ka=e=>Ga.call(e)===`[object Object]`,qa=()=>{};function Ja(...e){if(e.length!==1)return oe(...e);let t=e[0];return typeof t==`function`?xe(ie(()=>({get:t,set:qa}))):T(t)}function Ya(e,t){function n(...n){return new Promise((r,i)=>{Promise.resolve(e(()=>t.apply(this,n),{fn:t,thisArg:this,args:n})).then(r).catch(i)})}return n}var Xa=e=>e();function Za(e=Xa,t={}){let{initialState:n=`active`}=t,r=Ja(n===`active`);function i(){r.value=!1}function a(){r.value=!0}return{isActive:xe(r),pause:i,resume:a,eventFilter:(...t)=>{r.value&&e(...t)}}}function Qa(e){return e.endsWith(`rem`)?Number.parseFloat(e)*16:Number.parseFloat(e)}function $a(e){return Array.isArray(e)?e:[e]}function eo(e){return e||pe()}function to(e,t,n={}){let{eventFilter:r=Xa,...i}=n;return c(e,Ya(r,t),i)}function no(e,t,n={}){let{eventFilter:r,initialState:i=`active`,...a}=n,{eventFilter:o,pause:s,resume:c,isActive:l}=Za(r,{initialState:i});return{stop:to(e,t,{...a,eventFilter:o}),pause:s,resume:c,isActive:l}}function ro(e,t=!0,n){eo(n)?Ce(e,n):t?e():_(e)}function io(e,t,n){return c(e,t,{...n,immediate:!0})}var ao=Wa?window:void 0;Wa&&window.document,Wa&&window.navigator,Wa&&window.location;function oo(e){let t=E(e);return t?.$el??t}function so(...e){let t=(e,t,n,r)=>(e.addEventListener(t,n,r),()=>e.removeEventListener(t,n,r)),n=k(()=>{let t=$a(E(e[0])).filter(e=>e!=null);return t.every(e=>typeof e!=`string`)?t:void 0});return io(()=>[n.value?.map(e=>oo(e))??[ao].filter(e=>e!=null),$a(E(n.value?e[1]:e[0])),$a(O(n.value?e[2]:e[1])),E(n.value?e[3]:e[2])],([e,n,r,i],a,o)=>{if(!e?.length||!n?.length||!r?.length)return;let s=Ka(i)?{...i}:i,c=e.flatMap(e=>n.flatMap(n=>r.map(r=>t(e,n,r,s))));o(()=>{c.forEach(e=>e())})},{flush:`post`})}function co(){let e=C(!1),t=pe();return t&&Ce(()=>{e.value=!0},t),e}function lo(e){let t=co();return k(()=>(t.value,!!e()))}var uo=Symbol(`vueuse-ssr-width`);function fo(){let e=p()?Ua(uo,null):null;return typeof e==`number`?e:void 0}function po(e,t={}){let{window:n=ao,ssrWidth:r=fo()}=t,i=lo(()=>n&&`matchMedia`in n&&typeof n.matchMedia==`function`),a=C(typeof r==`number`),o=C(),s=C(!1);return d(()=>{if(a.value){a.value=!i.value,s.value=E(e).split(`,`).some(e=>{let t=e.includes(`not all`),n=e.match(/\(\s*min-width:\s*(-?\d+(?:\.\d*)?[a-z]+\s*)\)/),i=e.match(/\(\s*max-width:\s*(-?\d+(?:\.\d*)?[a-z]+\s*)\)/),a=!!(n||i);return n&&a&&(a=r>=Qa(n[1])),i&&a&&(a=r<=Qa(i[1])),t?!a:a});return}i.value&&(o.value=n.matchMedia(E(e)),s.value=o.value.matches)}),so(o,`change`,e=>{s.value=e.matches},{passive:!0}),k(()=>s.value)}var mo=typeof globalThis<`u`?globalThis:typeof window<`u`?window:typeof globalThis<`u`?globalThis:typeof self<`u`?self:{},ho=`__vueuse_ssr_handlers__`,go=_o();function _o(){return ho in mo||(mo[ho]=mo[ho]||{}),mo[ho]}function vo(e,t){return go[e]||t}function yo(e){return po(`(prefers-color-scheme: dark)`,e)}function bo(e){return e==null?`any`:e instanceof Set?`set`:e instanceof Map?`map`:e instanceof Date?`date`:typeof e==`boolean`?`boolean`:typeof e==`string`?`string`:typeof e==`object`?`object`:Number.isNaN(e)?`any`:`number`}var xo={boolean:{read:e=>e===`true`,write:e=>String(e)},object:{read:e=>JSON.parse(e),write:e=>JSON.stringify(e)},number:{read:e=>Number.parseFloat(e),write:e=>String(e)},any:{read:e=>e,write:e=>String(e)},string:{read:e=>e,write:e=>String(e)},map:{read:e=>new Map(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e.entries()))},set:{read:e=>new Set(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e))},date:{read:e=>new Date(e),write:e=>e.toISOString()}},So=`vueuse-storage`;function Co(e,t,n,r={}){let{flush:i=`pre`,deep:a=!0,listenToStorageChanges:o=!0,writeDefaults:s=!0,mergeDefaults:l=!1,shallow:u,window:d=ao,eventFilter:f,onError:p=e=>{console.error(e)},initOnMounted:m}=r,h=(u?C:T)(typeof t==`function`?t():t),g=k(()=>E(e));if(!n)try{n=vo(`getDefaultStorage`,()=>ao?.localStorage)()}catch(e){p(e)}if(!n)return h;let v=E(t),y=bo(v),b=r.serializer??xo[y],{pause:ee,resume:te}=no(h,e=>ie(e),{flush:i,deep:a,eventFilter:f});c(g,()=>x(),{flush:i});let ne=!1;d&&o&&(n instanceof Storage?so(d,`storage`,e=>{m&&!ne||x(e)},{passive:!0}):so(d,So,e=>{m&&!ne||oe(e)})),m?ro(()=>{ne=!0,x()}):x();function re(e,t){if(d){let r={key:g.value,oldValue:e,newValue:t,storageArea:n};d.dispatchEvent(n instanceof Storage?new StorageEvent(`storage`,r):new CustomEvent(So,{detail:r}))}}function ie(e){try{let t=n.getItem(g.value);if(e==null)re(t,null),n.removeItem(g.value);else{let r=b.write(e);t!==r&&(n.setItem(g.value,r),re(t,r))}}catch(e){p(e)}}function ae(e){let t=e?e.newValue:n.getItem(g.value);if(t==null)return s&&v!=null&&n.setItem(g.value,b.write(v)),v;if(!e&&l){let e=b.read(t);return typeof l==`function`?l(e,v):y===`object`&&!Array.isArray(e)?{...v,...e}:e}else if(typeof t!=`string`)return t;else return b.read(t)}function x(e){if(!(e&&e.storageArea!==n)){if(e&&e.key==null){h.value=v;return}if(!(e&&e.key!==g.value)){ee();try{let t=b.write(h.value);(e===void 0||e?.newValue!==t)&&(h.value=ae(e))}catch(e){p(e)}finally{e?_(te):te()}}}}function oe(e){x(e.detail)}return h}var wo=`*,*::before,*::after{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}`;function To(e={}){let{selector:t=`html`,attribute:n=`class`,initialValue:r=`auto`,window:i=ao,storage:a,storageKey:o=`vueuse-color-scheme`,listenToStorageChanges:s=!0,storageRef:l,emitAuto:u,disableTransition:d=!0}=e,f={auto:``,light:`light`,dark:`dark`,...e.modes||{}},p=yo({window:i}),m=k(()=>p.value?`dark`:`light`),h=l||(o==null?Ja(r):Co(o,r,a,{window:i,listenToStorageChanges:s})),g=k(()=>h.value===`auto`?m.value:h.value),_=vo(`updateHTMLAttrs`,(e,t,n)=>{let r=typeof e==`string`?i?.document.querySelector(e):oo(e);if(!r)return;let a=new Set,o=new Set,s=null;if(t===`class`){let e=n.split(/\s/g);Object.values(f).flatMap(e=>(e||``).split(/\s/g)).filter(Boolean).forEach(t=>{e.includes(t)?a.add(t):o.add(t)})}else s={key:t,value:n};if(a.size===0&&o.size===0&&s===null)return;let c;d&&(c=i.document.createElement(`style`),c.appendChild(document.createTextNode(wo)),i.document.head.appendChild(c));for(let e of a)r.classList.add(e);for(let e of o)r.classList.remove(e);s&&r.setAttribute(s.key,s.value),d&&(i.getComputedStyle(c).opacity,document.head.removeChild(c))});function v(e){_(t,n,f[e]??e)}function y(t){e.onChanged?e.onChanged(t,v):v(t)}c(g,y,{flush:`post`,immediate:!0}),ro(()=>y(g.value));let b=k({get(){return u?h.value:g.value},set(e){h.value=e}});return Object.assign(b,{store:h,system:m,state:g})}function Eo(e={}){let{valueDark:t=`dark`,valueLight:n=``}=e,r=To({...e,onChanged:(t,n)=>{var r;e.onChanged?(r=e.onChanged)==null||r.call(e,t===`dark`,n,t):n(t)},modes:{dark:t,light:n}}),i=k(()=>r.system.value);return k({get(){return r.value===`dark`},set(e){let t=e?`dark`:`light`;i.value===t?r.value=`auto`:r.value=t}})}var Do=Eo({valueLight:`light`});function Oo(){Do.value=!Do.value}var ko=C(null),Ao=T(!1);function jo(t){ko.value=t,e(()=>{ko.value=null})}function Mo(){async function e(){if(!(!ko.value||Ao.value)){Ao.value=!0;try{await ko.value()}finally{Ao.value=!1}}}return{refresh:e,loading:Ao}}function No(e){return typeof e==`string`?`'${e}'`:new Po().serialize(e)}var Po=function(){class e{#e=new Map;compare(e,t){let n=typeof e,r=typeof t;return n===`string`&&r===`string`?e.localeCompare(t):n===`number`&&r===`number`?e-t:String.prototype.localeCompare.call(this.serialize(e,!0),this.serialize(t,!0))}serialize(e,t){if(e===null)return`null`;switch(typeof e){case`string`:return t?e:`'${e}'`;case`bigint`:return`${e}n`;case`object`:return this.$object(e);case`function`:return this.$function(e)}return String(e)}serializeObject(e){let t=Object.prototype.toString.call(e);if(t!==`[object Object]`)return this.serializeBuiltInType(t.length<10?`unknown:${t}`:t.slice(8,-1),e);let n=e.constructor,r=n===Object||n===void 0?``:n.name;if(r!==``&&globalThis[r]===n)return this.serializeBuiltInType(r,e);if(typeof e.toJSON==`function`){let t=e.toJSON();return r+(typeof t==`object`&&t?this.$object(t):`(${this.serialize(t)})`)}return this.serializeObjectEntries(r,Object.entries(e))}serializeBuiltInType(e,t){let n=this[`$`+e];if(n)return n.call(this,t);if(typeof t?.entries==`function`)return this.serializeObjectEntries(e,t.entries());throw Error(`Cannot serialize ${e}`)}serializeObjectEntries(e,t){let n=Array.from(t).sort((e,t)=>this.compare(e[0],t[0])),r=`${e}{`;for(let e=0;e<n.length;e++){let[t,i]=n[e];r+=`${this.serialize(t,!0)}:${this.serialize(i)}`,e<n.length-1&&(r+=`,`)}return r+`}`}$object(e){let t=this.#e.get(e);return t===void 0&&(this.#e.set(e,`#${this.#e.size}`),t=this.serializeObject(e),this.#e.set(e,t)),t}$function(e){let t=Function.prototype.toString.call(e);return t.slice(-15)===`[native code] }`?`${e.name||``}()[native]`:`${e.name}(${e.length})${t.replace(/\s*\n\s*/g,``)}`}$Array(e){let t=`[`;for(let n=0;n<e.length;n++)t+=this.serialize(e[n]),n<e.length-1&&(t+=`,`);return t+`]`}$Date(e){try{return`Date(${e.toISOString()})`}catch{return`Date(null)`}}$ArrayBuffer(e){return`ArrayBuffer[${new Uint8Array(e).join(`,`)}]`}$Set(e){return`Set${this.$Array(Array.from(e).sort((e,t)=>this.compare(e,t)))}`}$Map(e){return this.serializeObjectEntries(`Map`,e.entries())}}for(let t of[`Error`,`RegExp`,`URL`])e.prototype[`$`+t]=function(e){return`${t}(${e})`};for(let t of[`Int8Array`,`Uint8Array`,`Uint8ClampedArray`,`Int16Array`,`Uint16Array`,`Int32Array`,`Uint32Array`,`Float32Array`,`Float64Array`])e.prototype[`$`+t]=function(e){return`${t}[${e.join(`,`)}]`};for(let t of[`BigInt64Array`,`BigUint64Array`])e.prototype[`$`+t]=function(e){return`${t}[${e.join(`n,`)}${e.length>0?`n`:``}]`};return e}(),Fo=[1779033703,-1150833019,1013904242,-1521486534,1359893119,-1694144372,528734635,1541459225],Io=[1116352408,1899447441,-1245643825,-373957723,961987163,1508970993,-1841331548,-1424204075,-670586216,310598401,607225278,1426881987,1925078388,-2132889090,-1680079193,-1046744716,-459576895,-272742522,264347078,604807628,770255983,1249150122,1555081692,1996064986,-1740746414,-1473132947,-1341970488,-1084653625,-958395405,-710438585,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,-2117940946,-1838011259,-1564481375,-1474664885,-1035236496,-949202525,-778901479,-694614492,-200395387,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,-2067236844,-1933114872,-1866530822,-1538233109,-1090935817,-965641998],Lo=`ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_`,Ro=[],zo=class{_data=new Bo;_hash=new Bo([...Fo]);_nDataBytes=0;_minBufferSize=0;finalize(e){e&&this._append(e);let t=this._nDataBytes*8,n=this._data.sigBytes*8;return this._data.words[n>>>5]|=128<<24-n%32,this._data.words[(n+64>>>9<<4)+14]=Math.floor(t/4294967296),this._data.words[(n+64>>>9<<4)+15]=t,this._data.sigBytes=this._data.words.length*4,this._process(),this._hash}_doProcessBlock(e,t){let n=this._hash.words,r=n[0],i=n[1],a=n[2],o=n[3],s=n[4],c=n[5],l=n[6],u=n[7];for(let n=0;n<64;n++){if(n<16)Ro[n]=e[t+n]|0;else{let e=Ro[n-15],t=(e<<25|e>>>7)^(e<<14|e>>>18)^e>>>3,r=Ro[n-2],i=(r<<15|r>>>17)^(r<<13|r>>>19)^r>>>10;Ro[n]=t+Ro[n-7]+i+Ro[n-16]}let d=s&c^~s&l,f=r&i^r&a^i&a,p=(r<<30|r>>>2)^(r<<19|r>>>13)^(r<<10|r>>>22),m=(s<<26|s>>>6)^(s<<21|s>>>11)^(s<<7|s>>>25),h=u+m+d+Io[n]+Ro[n],g=p+f;u=l,l=c,c=s,s=o+h|0,o=a,a=i,i=r,r=h+g|0}n[0]=n[0]+r|0,n[1]=n[1]+i|0,n[2]=n[2]+a|0,n[3]=n[3]+o|0,n[4]=n[4]+s|0,n[5]=n[5]+c|0,n[6]=n[6]+l|0,n[7]=n[7]+u|0}_append(e){typeof e==`string`&&(e=Bo.fromUtf8(e)),this._data.concat(e),this._nDataBytes+=e.sigBytes}_process(e){let t,n=this._data.sigBytes/64;n=e?Math.ceil(n):Math.max((n|0)-this._minBufferSize,0);let r=n*16,i=Math.min(r*4,this._data.sigBytes);if(r){for(let e=0;e<r;e+=16)this._doProcessBlock(this._data.words,e);t=this._data.words.splice(0,r),this._data.sigBytes-=i}return new Bo(t,i)}},Bo=class e{words;sigBytes;constructor(e,t){e=this.words=e||[],this.sigBytes=t===void 0?e.length*4:t}static fromUtf8(t){let n=unescape(encodeURIComponent(t)),r=n.length,i=[];for(let e=0;e<r;e++)i[e>>>2]|=(n.charCodeAt(e)&255)<<24-e%4*8;return new e(i,r)}toBase64(){let e=[];for(let t=0;t<this.sigBytes;t+=3){let n=this.words[t>>>2]>>>24-t%4*8&255,r=this.words[t+1>>>2]>>>24-(t+1)%4*8&255,i=this.words[t+2>>>2]>>>24-(t+2)%4*8&255,a=n<<16|r<<8|i;for(let n=0;n<4&&t*8+n*6<this.sigBytes*8;n++)e.push(Lo.charAt(a>>>6*(3-n)&63))}return e.join(``)}concat(e){if(this.words[this.sigBytes>>>2]&=4294967295<<32-this.sigBytes%4*8,this.words.length=Math.ceil(this.sigBytes/4),this.sigBytes%4)for(let t=0;t<e.sigBytes;t++){let n=e.words[t>>>2]>>>24-t%4*8&255;this.words[this.sigBytes+t>>>2]|=n<<24-(this.sigBytes+t)%4*8}else for(let t=0;t<e.sigBytes;t+=4)this.words[this.sigBytes+t>>>2]=e.words[t>>>2];this.sigBytes+=e.sigBytes}};function Vo(e){return new zo().finalize(e).toBase64()}function Ho(e){return Vo(No(e))}async function Uo(e,t){return e.__resolved?e.__resolved:e.setup?(e.__promise??=Promise.resolve(e.setup(t)).then(t=>(e.__resolved=t,e.__promise=void 0,t)),e.__resolved??=await e.__promise):{}}async function Wo(e,t){if(e.handler)return e.handler;let n=await Uo(e,t);if(!n.handler)throw Error(`[devtools-rpc] Either handler or setup function must be provided for RPC function "${e.name}"`);return n.handler}var Go=class{definitions=new Map;functions;_onChanged=[];constructor(e){this.context=e;let t=this.definitions,n=this;this.functions=new Proxy({},{get(e,r){let i=t.get(r);if(i)return Wo(i,n.context)},has(e,n){return t.has(n)},getOwnPropertyDescriptor(e,n){return{value:t.get(n)?.handler,configurable:!0,enumerable:!0}},ownKeys(){return Array.from(t.keys())}})}register(e,t=!1){if(this.definitions.has(e.name)&&!t)throw Error(`RPC function "${e.name}" is already registered`);this.definitions.set(e.name,e),this._onChanged.forEach(t=>t(e.name))}update(e,t=!1){if(!this.definitions.has(e.name)&&!t)throw Error(`RPC function "${e.name}" is not registered. Use register() to add new functions.`);this.definitions.set(e.name,e),this._onChanged.forEach(t=>t(e.name))}onChanged(e){return this._onChanged.push(e),()=>{let t=this._onChanged.indexOf(e);t!==-1&&this._onChanged.splice(t,1)}}async getHandler(e){return await Wo(this.definitions.get(e),this.context)}getSchema(e){let t=this.definitions.get(e);if(!t)throw Error(`RPC function "${String(e)}" is not registered`);return{args:t.args,returns:t.returns}}has(e){return this.definitions.has(e)}get(e){return this.definitions.get(e)}list(){return Array.from(this.definitions.keys())}},Ko=`/.devtools/`,qo=`.connection.json`,Jo=`.rpc-dump/index.json`;function Yo(){let e={};function t(t,...n){let r=e[t]||[];for(let e=0,t=r.length;e<t;e++){let t=r[e];t&&t(...n)}}function n(n,...r){t(n,...r),delete e[n]}function r(t,n){return(e[t]||=[]).push(n),()=>{e[t]=e[t]?.filter(e=>n!==e)}}function i(e,t){let n=r(e,((...e)=>(n(),t(...e))));return n}return{_listeners:e,emit:t,emitOnce:n,on:r,once:i}}var Xo=`useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict`;function Zo(e=21){let t=``,n=e;for(;n--;)t+=Xo[Math.random()*64|0];return t}var Qo=Symbol.for(`immer-nothing`),$o=Symbol.for(`immer-draftable`),R=Symbol.for(`immer-state`);function z(e,...t){throw Error(`[Immer] minified error nr: ${e}. Full error at: https://bit.ly/3cXEKWf`)}var B=Object,es=B.getPrototypeOf,ts=`constructor`,ns=`prototype`,rs=`configurable`,is=`enumerable`,as=`writable`,os=`value`,V=e=>!!e&&!!e[R];function H(e){return e?ls(e)||hs(e)||!!e[$o]||!!e[ts]?.[$o]||gs(e)||_s(e):!1}var ss=B[ns][ts].toString(),cs=new WeakMap;function ls(e){if(!e||!vs(e))return!1;let t=es(e);if(t===null||t===B[ns])return!0;let n=B.hasOwnProperty.call(t,ts)&&t[ts];if(n===Object)return!0;if(!ys(n))return!1;let r=cs.get(n);return r===void 0&&(r=Function.toString.call(n),cs.set(n,r)),r===ss}function us(e,t,n=!0){ds(e)===0?(n?Reflect.ownKeys(e):B.keys(e)).forEach(n=>{t(n,e[n],e)}):e.forEach((n,r)=>t(r,n,e))}function ds(e){let t=e[R];return t?t.type_:hs(e)?1:gs(e)?2:_s(e)?3:0}var fs=(e,t,n=ds(e))=>n===2?e.has(t):B[ns].hasOwnProperty.call(e,t),U=(e,t,n=ds(e))=>n===2?e.get(t):e[t],ps=(e,t,n,r=ds(e))=>{r===2?e.set(t,n):r===3?e.add(n):e[t]=n};function ms(e,t){return e===t?e!==0||1/e==1/t:e!==e&&t!==t}var hs=Array.isArray,gs=e=>e instanceof Map,_s=e=>e instanceof Set,vs=e=>typeof e==`object`,ys=e=>typeof e==`function`,bs=e=>typeof e==`boolean`;function xs(e){let t=+e;return Number.isInteger(t)&&String(t)===e}var Ss=e=>vs(e)?e?.[R]:null,Cs=e=>e.copy_||e.base_,ws=e=>e.modified_?e.copy_:e.base_;function Ts(e,t){if(gs(e))return new Map(e);if(_s(e))return new Set(e);if(hs(e))return Array[ns].slice.call(e);let n=ls(e);if(t===!0||t===`class_only`&&!n){let t=B.getOwnPropertyDescriptors(e);delete t[R];let n=Reflect.ownKeys(t);for(let r=0;r<n.length;r++){let i=n[r],a=t[i];a[as]===!1&&(a[as]=!0,a[rs]=!0),(a.get||a.set)&&(t[i]={[rs]:!0,[as]:!0,[is]:a[is],[os]:e[i]})}return B.create(es(e),t)}else{let t=es(e);if(t!==null&&n)return{...e};let r=B.create(t);return B.assign(r,e)}}function Es(e,t=!1){return ks(e)||V(e)||!H(e)?e:(ds(e)>1&&B.defineProperties(e,{set:Os,add:Os,clear:Os,delete:Os}),B.freeze(e),t&&us(e,(e,t)=>{Es(t,!0)},!1),e)}function Ds(){z(2)}var Os={[os]:Ds};function ks(e){return e===null||!vs(e)?!0:B.isFrozen(e)}var As=`MapSet`,js=`Patches`,Ms=`ArrayMethods`,Ns={};function Ps(e){let t=Ns[e];return t||z(0,e),t}var Fs=e=>!!Ns[e];function Is(e,t){Ns[e]||(Ns[e]=t)}var Ls,Rs=()=>Ls,zs=(e,t)=>({drafts_:[],parent_:e,immer_:t,canAutoFreeze_:!0,unfinalizedDrafts_:0,handledSet_:new Set,processedForPatches_:new Set,mapSetPlugin_:Fs(As)?Ps(As):void 0,arrayMethodsPlugin_:Fs(Ms)?Ps(Ms):void 0});function Bs(e,t){t&&(e.patchPlugin_=Ps(js),e.patches_=[],e.inversePatches_=[],e.patchListener_=t)}function Vs(e){Hs(e),e.drafts_.forEach(Ws),e.drafts_=null}function Hs(e){e===Ls&&(Ls=e.parent_)}var Us=e=>Ls=zs(Ls,e);function Ws(e){let t=e[R];t.type_===0||t.type_===1?t.revoke_():t.revoked_=!0}function Gs(e,t){t.unfinalizedDrafts_=t.drafts_.length;let n=t.drafts_[0];if(e!==void 0&&e!==n){n[R].modified_&&(Vs(t),z(4)),H(e)&&(e=Ks(t,e));let{patchPlugin_:r}=t;r&&r.generateReplacementPatches_(n[R].base_,e,t)}else e=Ks(t,n);return qs(t,e,!0),Vs(t),t.patches_&&t.patchListener_(t.patches_,t.inversePatches_),e===Qo?void 0:e}function Ks(e,t){if(ks(t))return t;let n=t[R];if(!n)return tc(t,e.handledSet_,e);if(!Ys(n,e))return t;if(!n.modified_)return n.base_;if(!n.finalized_){let{callbacks_:t}=n;if(t)for(;t.length>0;)t.pop()(e);$s(n,e)}return n.copy_}function qs(e,t,n=!1){!e.parent_&&e.immer_.autoFreeze_&&e.canAutoFreeze_&&Es(t,n)}function Js(e){e.finalized_=!0,e.scope_.unfinalizedDrafts_--}var Ys=(e,t)=>e.scope_===t,Xs=[];function Zs(e,t,n,r){let i=Cs(e),a=e.type_;if(r!==void 0&&U(i,r,a)===t){ps(i,r,n,a);return}if(!e.draftLocations_){let t=e.draftLocations_=new Map;us(i,(e,n)=>{if(V(n)){let r=t.get(n)||[];r.push(e),t.set(n,r)}})}let o=e.draftLocations_.get(t)??Xs;for(let e of o)ps(i,e,n,a)}function Qs(e,t,n){e.callbacks_.push(function(r){let i=t;if(!i||!Ys(i,r))return;r.mapSetPlugin_?.fixSetContents(i);let a=ws(i);Zs(e,i.draft_??i,a,n),$s(i,r)})}function $s(e,t){if(e.modified_&&!e.finalized_&&(e.type_===3||e.type_===1&&e.allIndicesReassigned_||(e.assigned_?.size??0)>0)){let{patchPlugin_:n}=t;if(n){let r=n.getPath(e);r&&n.generatePatches_(e,r,t)}Js(e)}}function ec(e,t,n){let{scope_:r}=e;if(V(n)){let i=n[R];Ys(i,r)&&i.callbacks_.push(function(){lc(e),Zs(e,n,ws(i),t)})}else H(n)&&e.callbacks_.push(function(){let i=Cs(e);e.type_===3?i.has(n)&&tc(n,r.handledSet_,r):U(i,t,e.type_)===n&&r.drafts_.length>1&&(e.assigned_.get(t)??!1)===!0&&e.copy_&&tc(U(e.copy_,t,e.type_),r.handledSet_,r)})}function tc(e,t,n){return!n.immer_.autoFreeze_&&n.unfinalizedDrafts_<1||V(e)||t.has(e)||!H(e)||ks(e)?e:(t.add(e),us(e,(r,i)=>{if(V(i)){let t=i[R];Ys(t,n)&&(ps(e,r,ws(t),e.type_),Js(t))}else H(i)&&tc(i,t,n)}),e)}function nc(e,t){let n=hs(e),r={type_:n?1:0,scope_:t?t.scope_:Rs(),modified_:!1,finalized_:!1,assigned_:void 0,parent_:t,base_:e,draft_:null,copy_:null,revoke_:null,isManual_:!1,callbacks_:void 0},i=r,a=rc;n&&(i=[r],a=ic);let{revoke:o,proxy:s}=Proxy.revocable(i,a);return r.draft_=s,r.revoke_=o,[s,r]}var rc={get(e,t){if(t===R)return e;let n=e.scope_.arrayMethodsPlugin_,r=e.type_===1&&typeof t==`string`;if(r&&n?.isArrayOperationMethod(t))return n.createMethodInterceptor(e,t);let i=Cs(e);if(!fs(i,t,e.type_))return oc(e,i,t);let a=i[t];if(e.finalized_||!H(a)||r&&e.operationMethod&&n?.isMutatingArrayMethod(e.operationMethod)&&xs(t))return a;if(a===ac(e.base_,t)){lc(e);let n=e.type_===1?+t:t,r=dc(e.scope_,a,e,n);return e.copy_[n]=r}return a},has(e,t){return t in Cs(e)},ownKeys(e){return Reflect.ownKeys(Cs(e))},set(e,t,n){let r=sc(Cs(e),t);if(r?.set)return r.set.call(e.draft_,n),!0;if(!e.modified_){let r=ac(Cs(e),t),i=r?.[R];if(i&&i.base_===n)return e.copy_[t]=n,e.assigned_.set(t,!1),!0;if(ms(n,r)&&(n!==void 0||fs(e.base_,t,e.type_)))return!0;lc(e),cc(e)}return e.copy_[t]===n&&(n!==void 0||t in e.copy_)||Number.isNaN(n)&&Number.isNaN(e.copy_[t])?!0:(e.copy_[t]=n,e.assigned_.set(t,!0),ec(e,t,n),!0)},deleteProperty(e,t){return lc(e),ac(e.base_,t)!==void 0||t in e.base_?(e.assigned_.set(t,!1),cc(e)):e.assigned_.delete(t),e.copy_&&delete e.copy_[t],!0},getOwnPropertyDescriptor(e,t){let n=Cs(e),r=Reflect.getOwnPropertyDescriptor(n,t);return r&&{[as]:!0,[rs]:e.type_!==1||t!==`length`,[is]:r[is],[os]:n[t]}},defineProperty(){z(11)},getPrototypeOf(e){return es(e.base_)},setPrototypeOf(){z(12)}},ic={};for(let e in rc){let t=rc[e];ic[e]=function(){let e=arguments;return e[0]=e[0][0],t.apply(this,e)}}ic.deleteProperty=function(e,t){return ic.set.call(this,e,t,void 0)},ic.set=function(e,t,n){return rc.set.call(this,e[0],t,n,e[0])};function ac(e,t){let n=e[R];return(n?Cs(n):e)[t]}function oc(e,t,n){let r=sc(t,n);return r?os in r?r[os]:r.get?.call(e.draft_):void 0}function sc(e,t){if(!(t in e))return;let n=es(e);for(;n;){let e=Object.getOwnPropertyDescriptor(n,t);if(e)return e;n=es(n)}}function cc(e){e.modified_||(e.modified_=!0,e.parent_&&cc(e.parent_))}function lc(e){e.copy_||=(e.assigned_=new Map,Ts(e.base_,e.scope_.immer_.useStrictShallowCopy_))}var uc=class{constructor(e){this.autoFreeze_=!0,this.useStrictShallowCopy_=!1,this.useStrictIteration_=!1,this.produce=(e,t,n)=>{if(ys(e)&&!ys(t)){let n=t;t=e;let r=this;return function(e=n,...i){return r.produce(e,e=>t.call(this,e,...i))}}ys(t)||z(6),n!==void 0&&!ys(n)&&z(7);let r;if(H(e)){let i=Us(this),a=dc(i,e,void 0),o=!0;try{r=t(a),o=!1}finally{o?Vs(i):Hs(i)}return Bs(i,n),Gs(r,i)}else if(!e||!vs(e)){if(r=t(e),r===void 0&&(r=e),r===Qo&&(r=void 0),this.autoFreeze_&&Es(r,!0),n){let t=[],i=[];Ps(js).generateReplacementPatches_(e,r,{patches_:t,inversePatches_:i}),n(t,i)}return r}else z(1,e)},this.produceWithPatches=(e,t)=>{if(ys(e))return(t,...n)=>this.produceWithPatches(t,t=>e(t,...n));let n,r;return[this.produce(e,t,(e,t)=>{n=e,r=t}),n,r]},bs(e?.autoFreeze)&&this.setAutoFreeze(e.autoFreeze),bs(e?.useStrictShallowCopy)&&this.setUseStrictShallowCopy(e.useStrictShallowCopy),bs(e?.useStrictIteration)&&this.setUseStrictIteration(e.useStrictIteration)}createDraft(e){H(e)||z(8),V(e)&&(e=fc(e));let t=Us(this),n=dc(t,e,void 0);return n[R].isManual_=!0,Hs(t),n}finishDraft(e,t){let n=e&&e[R];(!n||!n.isManual_)&&z(9);let{scope_:r}=n;return Bs(r,t),Gs(void 0,r)}setAutoFreeze(e){this.autoFreeze_=e}setUseStrictShallowCopy(e){this.useStrictShallowCopy_=e}setUseStrictIteration(e){this.useStrictIteration_=e}shouldUseStrictIteration(){return this.useStrictIteration_}applyPatches(e,t){let n;for(n=t.length-1;n>=0;n--){let r=t[n];if(r.path.length===0&&r.op===`replace`){e=r.value;break}}n>-1&&(t=t.slice(n+1));let r=Ps(js).applyPatches_;return V(e)?r(e,t):this.produce(e,e=>r(e,t))}};function dc(e,t,n,r){let[i,a]=gs(t)?Ps(As).proxyMap_(t,n):_s(t)?Ps(As).proxySet_(t,n):nc(t,n);return(n?.scope_??Rs()).drafts_.push(i),a.callbacks_=n?.callbacks_??[],a.key_=r,n&&r!==void 0?Qs(n,a,r):a.callbacks_.push(function(e){e.mapSetPlugin_?.fixSetContents(a);let{patchPlugin_:t}=e;a.modified_&&t&&t.generatePatches_(a,[],e)}),i}function fc(e){return V(e)||z(10,e),pc(e)}function pc(e){if(!H(e)||ks(e))return e;let t=e[R],n,r=!0;if(t){if(!t.modified_)return t.base_;t.finalized_=!0,n=Ts(e,t.scope_.immer_.useStrictShallowCopy_),r=t.scope_.immer_.shouldUseStrictIteration()}else n=Ts(e,!0);return us(n,(e,t)=>{ps(n,e,pc(t))},r),t&&(t.finalized_=!1),n}function mc(){function e(n,r=[]){if(n.key_!==void 0){let e=n.parent_.copy_??n.parent_.base_,t=Ss(U(e,n.key_)),i=U(e,n.key_);if(i===void 0||i!==n.draft_&&i!==n.base_&&i!==n.copy_||t!=null&&t.base_!==n.base_)return null;let a=n.parent_.type_===3,o;if(a){let e=n.parent_;o=Array.from(e.drafts_.keys()).indexOf(n.key_)}else o=n.key_;if(!(a&&e.size>o||fs(e,o)))return null;r.push(o)}if(n.parent_)return e(n.parent_,r);r.reverse();try{t(n.copy_,r)}catch{return null}return r}function t(e,t){let n=e;for(let e=0;e<t.length-1;e++){let r=t[e];if(n=U(n,r),!vs(n)||n===null)throw Error(`Cannot resolve path at '${t.join(`/`)}'`)}return n}let n=`replace`,r=`remove`;function i(e,t,n){if(e.scope_.processedForPatches_.has(e))return;e.scope_.processedForPatches_.add(e);let{patches_:r,inversePatches_:i}=n;switch(e.type_){case 0:case 2:return o(e,t,r,i);case 1:return a(e,t,r,i);case 3:return s(e,t,r,i)}}function a(e,t,i,a){let{base_:o,assigned_:s}=e,c=e.copy_;c.length<o.length&&([o,c]=[c,o],[i,a]=[a,i]);let l=e.allIndicesReassigned_===!0;for(let e=0;e<o.length;e++){let r=c[e],u=o[e];if((l||s?.get(e.toString()))&&r!==u){let o=r?.[R];if(o&&o.modified_)continue;let s=t.concat([e]);i.push({op:n,path:s,value:d(r)}),a.push({op:n,path:s,value:d(u)})}}for(let e=o.length;e<c.length;e++){let n=t.concat([e]);i.push({op:`add`,path:n,value:d(c[e])})}for(let e=c.length-1;o.length<=e;--e){let n=t.concat([e]);a.push({op:r,path:n})}}function o(e,t,i,a){let{base_:o,copy_:s,type_:c}=e;us(e.assigned_,(e,l)=>{let u=U(o,e,c),f=U(s,e,c),p=l?fs(o,e)?n:`add`:r;if(u===f&&p===n)return;let m=t.concat(e);i.push(p===r?{op:p,path:m}:{op:p,path:m,value:d(f)}),a.push(p===`add`?{op:r,path:m}:p===r?{op:`add`,path:m,value:d(u)}:{op:n,path:m,value:d(u)})})}function s(e,t,n,i){let{base_:a,copy_:o}=e,s=0;a.forEach(e=>{if(!o.has(e)){let a=t.concat([s]);n.push({op:r,path:a,value:e}),i.unshift({op:`add`,path:a,value:e})}s++}),s=0,o.forEach(e=>{if(!a.has(e)){let a=t.concat([s]);n.push({op:`add`,path:a,value:e}),i.unshift({op:r,path:a,value:e})}s++})}function c(e,t,r){let{patches_:i,inversePatches_:a}=r;i.push({op:n,path:[],value:t===Qo?void 0:t}),a.push({op:n,path:[],value:e})}function l(e,t){return t.forEach(t=>{let{path:i,op:a}=t,o=e;for(let e=0;e<i.length-1;e++){let t=ds(o),n=i[e];typeof n!=`string`&&typeof n!=`number`&&(n=``+n),(t===0||t===1)&&(n===`__proto__`||n===ts)&&z(19),ys(o)&&n===ns&&z(19),o=U(o,n),vs(o)||z(18,i.join(`/`))}let s=ds(o),c=u(t.value),l=i[i.length-1];switch(a){case n:switch(s){case 2:return o.set(l,c);case 3:z(16);default:return o[l]=c}case`add`:switch(s){case 1:return l===`-`?o.push(c):o.splice(l,0,c);case 2:return o.set(l,c);case 3:return o.add(c);default:return o[l]=c}case r:switch(s){case 1:return o.splice(l,1);case 2:return o.delete(l);case 3:return o.delete(t.value);default:return delete o[l]}default:z(17,a)}}),e}function u(e){if(!H(e))return e;if(hs(e))return e.map(u);if(gs(e))return new Map(Array.from(e.entries()).map(([e,t])=>[e,u(t)]));if(_s(e))return new Set(Array.from(e).map(u));let t=Object.create(es(e));for(let n in e)t[n]=u(e[n]);return fs(e,$o)&&(t[$o]=e[$o]),t}function d(e){return V(e)?u(e):e}Is(js,{applyPatches_:l,generatePatches_:i,generateReplacementPatches_:c,getPath:e})}var hc=new uc,gc=hc.produce,_c=hc.produceWithPatches.bind(hc),vc=hc.applyPatches.bind(hc);function yc(e){let{enablePatches:t=!1}=e,n=Yo(),r=e.initialValue,i=new Set;return{on:n.on,value:()=>r,patch:(e,t=Zo())=>{i.has(t)||(mc(),r=vc(r,e),i.add(t),n.emit(`updated`,r,void 0,t))},mutate:(e,a=Zo())=>{if(!i.has(a))if(i.add(a),t){let[t,i]=_c(r,e);r=t,n.emit(`updated`,r,i,a)}else r=gc(r,e),n.emit(`updated`,r,void 0,a)},syncIds:i}}function bc(e){let t=new Map,n=e.connectionMeta.backend===`static`;e.client.register({name:`devtoolskit:internal:rpc:client-state:updated`,type:`event`,handler:(e,n,r)=>{let i=t.get(e);!i||i.syncIds.has(r)||i.mutate(()=>n,r)}}),e.client.register({name:`devtoolskit:internal:rpc:client-state:patch`,type:`event`,handler:(e,n,r)=>{let i=t.get(e);!i||i.syncIds.has(r)||i.patch(n,r)}});function r(t,r){let i=[];return i.push(r.on(`updated`,(r,i,a)=>{n||(i?e.callEvent(`devtoolskit:internal:rpc:server-state:patch`,t,i,a):e.callEvent(`devtoolskit:internal:rpc:server-state:set`,t,r,a))})),()=>{for(let e of i)e()}}return{keys:()=>Array.from(t.keys()),get:async(i,a)=>{if(t.has(i))return t.get(i);let o=yc({initialValue:a?.initialValue,enablePatches:!1});async function s(){if(n||e.callEvent(`devtoolskit:internal:rpc:server-state:subscribe`,i),a?.initialValue!==void 0)return t.set(i,o),e.call(`devtoolskit:internal:rpc:server-state:get`,i).then(e=>{o.mutate(()=>e)}).catch(e=>{console.error(`Error getting server state`,e)}),r(i,o),o;{let n=await e.call(`devtoolskit:internal:rpc:server-state:get`,i);return o.mutate(()=>n),t.set(i,o),r(i,o),o}}return new Promise(t=>{e.isTrusted?s().then(t):(t(o),e.events.on(`rpc:is-trusted:updated`,e=>{e&&s()}))})}}}function xc(e){return typeof e==`object`&&!!e&&e.type===`static`&&typeof e.path==`string`}function Sc(e){return typeof e==`object`&&!!e&&e.type===`query`&&typeof e.records==`object`&&e.records!==null}function Cc(e){return typeof e==`object`&&!!e&&(`output`in e||`error`in e)}function wc(e){if(e.error){let t=Error(e.error.message);throw t.name=e.error.name,t}return e.output}function Tc(e,t){let n=new Map,r=new Map;async function i(e){n.has(e.path)||n.set(e.path,t(e.path));let r=await n.get(e.path);return Cc(r)?wc(r):r}async function a(e){return r.has(e)||r.set(e,t(e)),await r.get(e)}async function o(t,n){if(!(t in e))throw Error(`[devtools-rpc] Function "${t}" not found in dump store`);let r=e[t];if(xc(r)){if(n.length>0)throw Error(`[devtools-rpc] No dump match for "${t}" with args: ${JSON.stringify(n)}`);return await i(r)}if(Sc(r)){let e=Ho(n),i=r.records[e];if(i)return wc(await a(i));if(r.fallback)return wc(await a(r.fallback));throw Error(`[devtools-rpc] No dump match for "${t}" with args: ${JSON.stringify(n)}`)}if(n.length===0)return r;throw Error(`[devtools-rpc] No dump match for "${t}" with args: ${JSON.stringify(n)}`)}return{call:async(e,t)=>await o(e,t),callOptional:async(t,n)=>{if(t in e)return await o(t,n)},callEvent:async(e,t)=>{}}}async function Ec(e){let t=Tc(await e.fetchJsonFromBases(Jo),e.fetchJsonFromBases);return{isTrusted:!0,requestTrust:async()=>!0,ensureTrusted:async()=>!0,call:(...e)=>t.call(e[0],e.slice(1)),callEvent:(...e)=>t.callEvent(e[0],e.slice(1)),callOptional:(...e)=>t.callOptional(e[0],e.slice(1))}}var Dc=`q`,Oc=`s`;function kc(){let e,t;return{promise:new Promise((n,r)=>{e=n,t=r}),resolve:e,reject:t}}var Ac=Math.random.bind(Math),jc=`useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict`;function Mc(e=21){let t=``,n=e;for(;n--;)t+=jc[Ac()*64|0];return t}var Nc=6e4,Pc=e=>e,Fc=Pc,{clearTimeout:Ic,setTimeout:Lc}=globalThis;function Rc(e,t){let{post:n,on:r,off:i=()=>{},eventNames:a=[],serialize:o=Pc,deserialize:s=Fc,resolver:c,bind:l=`rpc`,timeout:u=Nc,proxify:d=!0}=t,f=!1,p=new Map,m,h;async function g(e,r,i,a){if(f)throw Error(`[birpc] rpc is closed, cannot call "${e}"`);let s={m:e,a:r,t:Dc};a&&(s.o=!0);let c=async e=>n(o(e));if(i){await c(s);return}if(m)try{await m}finally{m=void 0}let{promise:l,resolve:d,reject:g}=kc(),_=Mc();s.i=_;let v;async function y(n=s){return u>=0&&(v=Lc(()=>{try{if(t.onTimeoutError?.call(h,e,r)!==!0)throw Error(`[birpc] timeout on calling "${e}"`)}catch(e){g(e)}p.delete(_)},u),typeof v==`object`&&(v=v.unref?.())),p.set(_,{resolve:d,reject:g,timeoutId:v,method:e}),await c(n),l}try{t.onRequest?await t.onRequest.call(h,s,y,d):await y()}catch(e){if(t.onGeneralError?.call(h,e)!==!0)throw e;return}finally{Ic(v),p.delete(_)}return l}let _={$call:(e,...t)=>g(e,t,!1),$callOptional:(e,...t)=>g(e,t,!1,!0),$callEvent:(e,...t)=>g(e,t,!0),$callRaw:e=>g(e.method,e.args,e.event,e.optional),$rejectPendingCalls:y,get $closed(){return f},get $meta(){return t.meta},$close:v,$functions:e};h=d?new Proxy({},{get(t,n){if(Object.prototype.hasOwnProperty.call(_,n))return _[n];if(n===`then`&&!a.includes(`then`)&&!(`then`in e))return;let r=(...e)=>g(n,e,!0);if(a.includes(n))return r.asEvent=r,r;let i=(...e)=>g(n,e,!1);return i.asEvent=r,i}}):_;function v(e){f=!0,p.forEach(({reject:t,method:n})=>{let r=Error(`[birpc] rpc is closed, cannot call "${n}"`);if(e)return e.cause??=r,t(e);t(r)}),p.clear(),i(b)}function y(e){let t=Array.from(p.values()).map(({method:t,reject:n})=>e?e({method:t,reject:n}):n(Error(`[birpc]: rejected pending call "${t}".`)));return p.clear(),t}async function b(r,...i){let a;try{a=s(r)}catch(e){if(t.onGeneralError?.call(h,e)!==!0)throw e;return}if(a.t===Dc){let{m:r,a:s,o:u}=a,d,f,p=await(c?c.call(h,r,e[r]):e[r]);if(u&&(p||=()=>void 0),!p)f=Error(`[birpc] function "${r}" not found`);else try{d=await p.apply(l===`rpc`?h:e,s)}catch(e){f=e}if(a.i){if(f&&t.onFunctionError&&t.onFunctionError.call(h,f,r,s)===!0)return;if(!f)try{await n(o({t:Oc,i:a.i,r:d}),...i);return}catch(e){if(f=e,t.onGeneralError?.call(h,e,r,s)!==!0)throw e}try{await n(o({t:Oc,i:a.i,e:f}),...i)}catch(e){if(t.onGeneralError?.call(h,e,r,s)!==!0)throw e}}}else{let{i:e,r:t,e:n}=a,r=p.get(e);r&&(Ic(r.timeoutId),n?r.reject(n):r.resolve(t)),p.delete(e)}}return m=r(b),h}function zc(e,t){let{preset:n,rpcOptions:r={}}=t;return Rc(e,{...n,timeout:-1,...r,proxify:!1})}var Bc=-1,Vc=0,Hc=1,Uc=2,Wc=3,Gc=4,Kc=5,qc=6,Jc=7,Yc=8,Xc=typeof self==`object`?self:globalThis,Zc=(e,t)=>{let n=(t,n)=>(e.set(n,t),t),r=i=>{if(e.has(i))return e.get(i);let[a,o]=t[i];switch(a){case Vc:case Bc:return n(o,i);case Hc:{let e=n([],i);for(let t of o)e.push(r(t));return e}case Uc:{let e=n({},i);for(let[t,n]of o)e[r(t)]=r(n);return e}case Wc:return n(new Date(o),i);case Gc:{let{source:e,flags:t}=o;return n(new RegExp(e,t),i)}case Kc:{let e=n(new Map,i);for(let[t,n]of o)e.set(r(t),r(n));return e}case qc:{let e=n(new Set,i);for(let t of o)e.add(r(t));return e}case Jc:{let{name:e,message:t}=o;return n(new Xc[e](t),i)}case Yc:return n(BigInt(o),i);case`BigInt`:return n(Object(BigInt(o)),i)}return n(new Xc[a](o),i)};return r},Qc=e=>Zc(new Map,e)(0),$c=``,{toString:el}={},{keys:tl}=Object,nl=e=>{let t=typeof e;if(t!==`object`||!e)return[Vc,t];let n=el.call(e).slice(8,-1);switch(n){case`Array`:return[Hc,$c];case`Object`:return[Uc,$c];case`Date`:return[Wc,$c];case`RegExp`:return[Gc,$c];case`Map`:return[Kc,$c];case`Set`:return[qc,$c]}return n.includes(`Array`)?[Hc,n]:n.includes(`Error`)?[Jc,n]:[Uc,n]},rl=([e,t])=>e===Vc&&(t===`function`||t===`symbol`),il=(e,t,n,r)=>{let i=(e,t)=>{let i=r.push(e)-1;return n.set(t,i),i},a=r=>{if(n.has(r))return n.get(r);let[o,s]=nl(r);switch(o){case Vc:{let t=r;switch(s){case`bigint`:o=Yc,t=r.toString();break;case`function`:case`symbol`:if(e)throw TypeError(`unable to serialize `+s);t=null;break;case`undefined`:return i([Bc],r)}return i([o,t],r)}case Hc:{if(s)return i([s,[...r]],r);let e=[],t=i([o,e],r);for(let t of r)e.push(a(t));return t}case Uc:{if(s)switch(s){case`BigInt`:return i([s,r.toString()],r);case`Boolean`:case`Number`:case`String`:return i([s,r.valueOf()],r)}if(t&&`toJSON`in r)return a(r.toJSON());let n=[],c=i([o,n],r);for(let t of tl(r))(e||!rl(nl(r[t])))&&n.push([a(t),a(r[t])]);return c}case Wc:return i([o,r.toISOString()],r);case Gc:{let{source:e,flags:t}=r;return i([o,{source:e,flags:t}],r)}case Kc:{let t=[],n=i([o,t],r);for(let[n,i]of r)(e||!(rl(nl(n))||rl(nl(i))))&&t.push([a(n),a(i)]);return n}case qc:{let t=[],n=i([o,t],r);for(let n of r)(e||!rl(nl(n)))&&t.push(a(n));return n}}let{message:c}=r;return i([o,{name:s,message:c}],r)};return a},al=(e,{json:t,lossy:n}={})=>{let r=[];return il(!(t||n),!!t,new Map,r)(e),r},{parse:ol,stringify:sl}=JSON,cl={json:!0,lossy:!0},ll=e=>Qc(ol(e)),ul=e=>sl(al(e,cl)),dl=ll;function fl(e){return e}function pl(){}var ml=fl(e=>{let t=e.url;e.authId&&(t=`${t}?vite_devtools_auth_id=${encodeURIComponent(e.authId)}`);let n=new WebSocket(t),{onConnected:r=pl,onError:i=pl,onDisconnected:a=pl}=e;return n.addEventListener(`open`,e=>{r(e)}),n.addEventListener(`error`,e=>{i(e instanceof Error?e:Error(e.type))}),n.addEventListener(`close`,e=>{a(e)}),{on:e=>{n.addEventListener(`message`,t=>{e(t.data)})},post:e=>{if(n.readyState===WebSocket.OPEN)n.send(e);else{function t(){n.send(e),n.removeEventListener(`open`,t)}n.addEventListener(`open`,t)}},serialize:ul,deserialize:dl}}),hl=``,gl=`?`,_l=`major`,W=`model`,G=`name`,K=`type`,q=`vendor`,J=`version`,Y=`architecture`,vl=`console`,X=`mobile`,Z=`tablet`,Q=`smarttv`,yl=`wearable`,bl=`embedded`,xl=500,Sl=`Amazon`,Cl=`Apple`,wl=`ASUS`,Tl=`BlackBerry`,El=`Browser`,Dl=`Chrome`,Ol=`Edge`,kl=`Firefox`,Al=`Google`,jl=`Huawei`,Ml=`LG`,Nl=`Microsoft`,Pl=`Motorola`,Fl=`Opera`,Il=`Samsung`,Ll=`Sharp`,Rl=`Sony`,zl=`Xiaomi`,Bl=`Zebra`,Vl=`Facebook`,Hl=`Chromium OS`,Ul=`Mac OS`;function Wl(e,t={}){let n={};for(let r of Object.keys(e)){let i=t[r];i&&i.length%2==0?n[r]=[...i,...e[r]]:n[r]=e[r]}return n}function Gl(e){let t={};for(let n=0;n<e.length;n++)t[e[n].toUpperCase()]=e[n];return t}function Kl(e){return e.toLowerCase()}function ql(e,t){return typeof e==`string`?Kl(t).includes(Kl(e)):!1}function Jl(e){return typeof e==`string`?e.replace(/[^\d.]/g,hl).split(`.`)[0]:void 0}function Yl(e,t){let n=e.replace(/^\s+/,hl);return t===void 0?n:n.substring(0,t)}function Xl(e,t,n){let r=n??{};for(let n=0;n<t.length;n+=2){let i=t[n],a=t[n+1];for(let t=0;t<i.length;t++){let n=i[t];if(!n)break;let o=n.exec(e);if(o){for(let e=0;e<a.length;e++){let t=o[e+1],n=a[e];if(Array.isArray(n)){let e=n[0],i=n.length;if(i===2){let i=n[1];typeof i==`function`?r[e]=i(t,void 0,r):r[e]=i}else if(i===3){let i=n[1],a=n[2];typeof i==`function`&&!(`exec`in i)&&!(`test`in i)?r[e]=t?i(t,a,r):void 0:r[e]=t?t.replace(i,a):void 0}else i===4&&(r[e]=t?n[3](t.replace(n[1],n[2]),void 0,r):void 0)}else r[n]=t||void 0}return r}}}return r}function Zl(e,t){for(let n in t){let r=t[n];if(Array.isArray(r)&&r.length>0){for(let t=0;t<r.length;t++)if(ql(r[t],e))return n===gl?void 0:n}else if(ql(r,e))return n===gl?void 0:n}return e}var Ql={"1.0":`/8`,"1.2":`/1`,"1.3":`/3`,"2.0":`/412`,"2.0.2":`/416`,"2.0.3":`/417`,"2.0.4":`/419`,"?":`/`},$l={ME:`4.90`,"NT 3.11":`NT3.51`,"NT 4.0":`NT4.0`,2e3:`NT 5.0`,XP:[`NT 5.1`,`NT 5.2`],Vista:`NT 6.0`,7:`NT 6.1`,8:`NT 6.2`,"8.1":`NT 6.3`,10:[`NT 6.4`,`NT 10.0`],RT:`ARM`},eu={browser:[[/\b(?:crmo|crios)\/([\w.]+)/i],[J,[G,`Chrome`]],[/edg(?:e|ios|a)?\/([\w.]+)/i],[J,[G,`Edge`]],[/(opera mini)\/([-\w.]+)/i,/(opera [mobileta]{3,6})\b.+version\/([-\w.]+)/i,/(opera)(?:.+version\/|[/ ]+)([\w.]+)/i],[G,J],[/opios[/ ]+([\w.]+)/i],[J,[G,`${Fl} Mini`]],[/\bop(?:rg)?x\/([\w.]+)/i],[J,[G,`${Fl} GX`]],[/\bopr\/([\w.]+)/i],[J,[G,Fl]],[/\bb[ai]*d(?:uhd|[ub]*[aekoprswx]{5,6})[/ ]?([\w.]+)/i],[J,[G,`Baidu`]],[/(kindle)\/([\w.]+)/i,/(lunascape|maxthon|netfront|jasmine|blazer)[/ ]?([\w.]*)/i,/(avant|iemobile|slim)\s?(?:browser)?[/ ]?([\w.]*)/i,/(?:ms|\()(ie) ([\w.]+)/i,/(flock|rockmelt|midori|epiphany|silk|skyfire|bolt|iron|vivaldi|iridium|phantomjs|bowser|quark|qupzilla|falkon|rekonq|puffin|brave|whale(?!.+naver)|qqbrowserlite|qq|duckduckgo)\/([-\w.]+)/i,/(heytap|ovi)browser\/([\d.]+)/i,/(weibo)__([\d.]+)/i],[G,J],[/\bddg\/([\w.]+)/i],[J,[G,`DuckDuckGo`]],[/(?:\buc? ?browser|juc.+ucweb)[/ ]?([\w.]+)/i],[J,[G,`UC${El}`]],[/microm.+\bqbcore\/([\w.]+)/i,/\bqbcore\/([\w.]+).+microm/i,/micromessenger\/([\w.]+)/i],[J,[G,`WeChat`]],[/konqueror\/([\w.]+)/i],[J,[G,`Konqueror`]],[/trident.+rv[: ]([\w.]{1,9})\b.+like gecko/i],[J,[G,`IE`]],[/ya(?:search)?browser\/([\w.]+)/i],[J,[G,`Yandex`]],[/slbrowser\/([\w.]+)/i],[J,[G,`Smart Lenovo ${El}`]],[/(avast|avg)\/([\w.]+)/i],[[G,/(.+)/,`$1 Secure ${El}`],J],[/\bfocus\/([\w.]+)/i],[J,[G,`${kl} Focus`]],[/\bopt\/([\w.]+)/i],[J,[G,`${Fl} Touch`]],[/coc_coc\w+\/([\w.]+)/i],[J,[G,`Coc Coc`]],[/dolfin\/([\w.]+)/i],[J,[G,`Dolphin`]],[/coast\/([\w.]+)/i],[J,[G,`${Fl} Coast`]],[/miuibrowser\/([\w.]+)/i],[J,[G,`MIUI ${El}`]],[/fxios\/([-\w.]+)/i],[J,[G,kl]],[/\bqihu|(qi?ho{0,2}|360)browser/i],[[G,`360 ${El}`]],[/(oculus|sailfish|huawei|vivo)browser\/([\w.]+)/i],[[G,/(.+)/,`$1 ${El}`],J],[/samsungbrowser\/([\w.]+)/i],[J,[G,`${Il} Internet`]],[/(comodo_dragon)\/([\w.]+)/i],[[G,/_/g,` `],J],[/metasr[/ ]?([\d.]+)/i],[J,[G,`Sogou Explorer`]],[/(sogou)mo\w+\/([\d.]+)/i],[[G,`Sogou Mobile`],J],[/(electron)\/([\w.]+) safari/i,/(tesla)(?: qtcarbrowser|\/(20\d\d\.[-\w.]+))/i,/m?(qqbrowser|2345Explorer)[/ ]?([\w.]+)/i],[G,J],[/(lbbrowser)/i,/\[(linkedin)app\]/i],[G],[/((?:fban\/fbios|fb_iab\/fb4a)(?!.+fbav)|;fbav\/([\w.]+);)/i],[[G,Vl],J],[/(Klarna)\/([\w.]+)/i,/(kakao(?:talk|story))[/ ]([\w.]+)/i,/(naver)\(.*?(\d+\.[\w.]+).*\)/i,/safari (line)\/([\w.]+)/i,/\b(line)\/([\w.]+)\/iab/i,/(alipay)client\/([\w.]+)/i,/(twitter)(?:and| f.+e\/([\w.]+))/i,/(chromium|instagram|snapchat)[/ ]([-\w.]+)/i],[G,J],[/\bgsa\/([\w.]+) .*safari\//i],[J,[G,`GSA`]],[/musical_ly(?:.+app_?version\/|_)([\w.]+)/i],[J,[G,`TikTok`]],[/headlesschrome(?:\/([\w.]+)| )/i],[J,[G,`${Dl} Headless`]],[/ wv\).+(chrome)\/([\w.]+)/i],[[G,`${Dl} WebView`],J],[/droid.+ version\/([\w.]+)\b.+(?:mobile safari|safari)/i],[J,[G,`Android ${El}`]],[/(chrome|omniweb|arora|[tizenoka]{5} ?browser)\/v?([\w.]+)/i],[G,J],[/version\/([\w.,]+) .*mobile\/\w+ (safari)/i],[J,[G,`Mobile Safari`]],[/version\/([\w(.|,)]+) .*(mobile ?safari|safari)/i],[J,G],[/webkit.+?(mobile ?safari|safari)(\/[\w.]+)/i],[G,[J,Zl,Ql]],[/(webkit|khtml)\/([\w.]+)/i],[G,J],[/(navigator|netscape\d?)\/([-\w.]+)/i],[[G,`Netscape`],J],[/mobile vr; rv:([\w.]+)\).+firefox/i],[J,[G,`${kl} Reality`]],[/ekiohf.+(flow)\/([\w.]+)/i,/(swiftfox)/i,/(icedragon|iceweasel|camino|chimera|fennec|maemo browser|minimo|conkeror|klar)[/ ]?([\w.+]+)/i,/(seamonkey|k-meleon|icecat|iceape|firebird|phoenix|palemoon|basilisk|waterfox)\/([-\w.]+)$/i,/(firefox)\/([\w.]+)/i,/(mozilla)\/([\w.]+) .+rv:.+gecko\/\d+/i,/(polaris|lynx|dillo|icab|doris|amaya|w3m|netsurf|sleipnir|obigo|mosaic|(?:go|ice|up)[. ]?browser)[-/ ]?v?([\w.]+)/i,/(links) \(([\w.]+)/i,/panasonic;(viera)/i],[G,J],[/(cobalt)\/([\w.]+)/i],[G,[J,/master.|lts./,``]]],cpu:[[/(amd|x(?:(?:86|64)[-_])?|wow|win)64[;)]/i],[[Y,`amd64`]],[/(ia32(?=;))/i],[[Y,Kl]],[/((?:i[346]|x)86)[;)]/i],[[Y,`ia32`]],[/\b(aarch64|arm(v?8e?l?|_?64))\b/i],[[Y,`arm64`]],[/\b(arm(?:v[67])?ht?n?[fl]p?)\b/i],[[Y,`armhf`]],[/windows (ce|mobile); ppc;/i],[[Y,`arm`]],[/((?:ppc|powerpc)(?:64)?)(?: mac|;|\))/i],[[Y,/ower/,hl,Kl]],[/(sun4\w)[;)]/i],[[Y,`sparc`]],[/(avr32|ia64(?=;)|68k(?=\))|\barm(?=v(?:[1-7]|[5-7]1)l?|;|eabi)|(?=atmel )avr|(?:irix|mips|sparc)(?:64)?\b|pa-risc)/i],[[Y,Kl]]],device:[[/\b(sch-i[89]0\d|shw-m380s|sm-[ptx]\w{2,4}|gt-[pn]\d{2,4}|sgh-t8[56]9|nexus 10)/i],[W,[q,Il],[K,Z]],[/\b((?:s[cgp]h|gt|sm)-\w+|sc[g-]?\d+a?|galaxy nexus)/i,/samsung[- ]([-\w]+)/i,/sec-(sgh\w+)/i],[W,[q,Il],[K,X]],[/(?:\/|\()(ip(?:hone|od)[\w, ]*)(?:\/|;)/i],[W,[q,Cl],[K,X]],[/\((ipad);[-\w),; ]+apple/i,/applecoremedia\/[\w.]+ \((ipad)/i,/\b(ipad)\d\d?,\d\d?[;\]].+ios/i],[W,[q,Cl],[K,Z]],[/(macintosh);/i],[W,[q,Cl]],[/\b(sh-?[altvz]?\d\d[a-ekm]?)/i],[W,[q,Ll],[K,X]],[/\b((?:ag[rs][23]?|bah2?|sht?|btv)-a?[lw]\d{2})\b(?!.+d\/s)/i],[W,[q,jl],[K,Z]],[/(?:huawei|honor)([-\w ]+)[;)]/i,/\b(nexus 6p|\w{2,4}e?-[atu]?[ln][\dx][0-359c][adn]?)\b(?!.+d\/s)/i],[W,[q,jl],[K,X]],[/\b(poco[\w ]+|m2\d{3}j\d\d[a-z]{2})(?: bui|\))/i,/\b; (\w+) build\/hm\1/i,/\b(hm[-_ ]?note?[_ ]?(?:\d\w)?) bui/i,/\b(redmi[\-_ ]?[\w ]+)(?: bui|\))/i,/oid[^)]+; (m?[12][0-389][01]\w{3,6}[c-y])( bui|; wv|\))/i,/\b(mi[-_ ]?(?:a\d|one|one[_ ]plus|note lte|max|cc)?[_ ]?\d?\w?[_ ]?(?:plus|se|lite)?)(?: bui|\))/i],[[W,/_/g,` `],[q,zl],[K,X]],[/oid[^)]+; (2\d{4}(283|rpbf)[cgl])( bui|\))/i,/\b(mi[-_ ]?pad[\w ]+)(?: bui|\))/i],[[W,/_/g,` `],[q,zl],[K,Z]],[/; (\w+) bui.+ oppo/i,/\b(cph[12]\d{3}|p(?:af|c[al]|d\w|e[ar])[mt]\d0|x9007|a101op)\b/i],[W,[q,`OPPO`],[K,X]],[/\b(opd2\d{3}a?) bui/i],[W,[q,`OPPO`],[K,Z]],[/vivo (\w+)(?: bui|\))/i,/\b(v[12]\d{3}\w?[at])(?: bui|;)/i],[W,[q,`Vivo`],[K,X]],[/\b(rmx[1-3]\d{3})(?: bui|;|\))/i],[W,[q,`Realme`],[K,X]],[/\b(milestone|droid(?:[2-4x]| (?:bionic|x2|pro|razr))?:?( 4g)?)\b[\w ]+build\//i,/\bmot(?:orola)?[- ](\w*)/i,/((?:moto[\w() ]+|xt\d{3,4}|nexus 6)(?= bui|\)))/i],[W,[q,Pl],[K,X]],[/\b(mz60\d|xoom[2 ]{0,2}) build\//i],[W,[q,Pl],[K,Z]],[/((?=lg)?[vl]k-?\d{3}) bui| 3\.[-\w; ]{10}lg?-([06cv9]{3,4})/i],[W,[q,Ml],[K,Z]],[/(lm(?:-?f100[nv]?|-[\w.]+)(?= bui|\))|nexus [45])/i,/\blg[-e;/ ]+((?!browser|netcast|android tv)\w+)/i,/\blg-?(\w+) bui/i],[W,[q,Ml],[K,X]],[/(ideatab[-\w ]+)/i,/lenovo ?(s[56]000[-\w]+|tab[\w ]+|yt[-\w]{6}|tb[-\w]{6})/i],[W,[q,`Lenovo`],[K,Z]],[/(?:maemo|nokia).*(n900|lumia \d+)/i,/nokia[-_ ]?([-\w.]*)/i],[[W,/_/g,` `],[q,`Nokia`],[K,X]],[/(pixel c)\b/i],[W,[q,Al],[K,Z]],[/droid.+; (pixel[\daxl ]{0,6})(?: bui|\))/i],[W,[q,Al],[K,X]],[/droid.+ (a?\d[0-2]{2}so|[c-g]\d{4}|so[-gl]\w+|xq-a\w[4-7][12])(?= bui|\).+chrome\/(?![1-6]?\d\.))/i],[W,[q,Rl],[K,X]],[/sony tablet [ps]/i,/\b(?:sony)?sgp\w+(?: bui|\))/i],[[W,`Xperia Tablet`],[q,Rl],[K,Z]],[/ (kb2005|in20[12]5|be20[12][59])\b/i,/(?:one)?(?:plus)? (a\d0\d\d)(?: b|\))/i],[W,[q,`OnePlus`],[K,X]],[/(alexa)webm/i,/(kf[a-z]{2}wi|aeo[c-r]{2})( bui|\))/i,/(kf[a-z]+)( bui|\)).+silk\//i],[W,[q,Sl],[K,Z]],[/((?:sd|kf)[0349hijor-uw]+)( bui|\)).+silk\//i],[[W,/(.+)/g,`Fire Phone $1`],[q,Sl],[K,X]],[/(playbook);[-\w),; ]+(rim)/i],[W,q,[K,Z]],[/\b((?:bb[a-f]|st[hv])100-\d)/i,/\(bb10; (\w+)/i],[W,[q,Tl],[K,X]],[/(?:\b|asus_)(transfo[prime ]{4,10} \w+|eeepc|slider \w+|nexus 7|padfone|p00[cj])/i],[W,[q,wl],[K,Z]],[/ (z[bes]6[027][012][km][ls]|zenfone \d\w?)\b/i],[W,[q,wl],[K,X]],[/(nexus 9)/i],[W,[q,`HTC`],[K,Z]],[/(htc)[-;_ ]{1,2}([\w ]+(?=\)| bui)|\w+)/i,/(zte)[- ]([\w ]+?)(?: bui|\/|\))/i,/(alcatel|geeksphone|nexian|panasonic(?!;|\.)|sony(?!-bra))[-_ ]?([-\w]*)/i],[q,[W,/_/g,` `],[K,X]],[/droid.+; ([ab][1-7]-?[0178a]\d\d?)/i],[W,[q,`Acer`],[K,Z]],[/droid.+; (m[1-5] note) bui/i,/\bmz-([-\w]{2,})/i],[W,[q,`Meizu`],[K,X]],[/; ((?:power )?armor[\w ]{0,8})(?: bui|\))/i],[W,[q,`Ulefone`],[K,X]],[/(blackberry|benq|palm(?=-)|sonyericsson|acer|asus|dell|meizu|motorola|polytron|infinix|tecno)[-_ ]?([-\w]*)/i,/(hp) ([\w ]+\w)/i,/(asus)-?(\w+)/i,/(microsoft); (lumia[\w ]+)/i,/(lenovo)[-_ ]?([-\w]+)/i,/(jolla)/i,/(oppo) ?([\w ]+) bui/i],[q,W,[K,X]],[/(kobo)\s(ereader|touch)/i,/(archos) (gamepad2?)/i,/(hp).+(touchpad(?!.+tablet)|tablet)/i,/(kindle)\/([\w.]+)/i,/(nook)[\w ]+build\/(\w+)/i,/(dell) (strea[kpr\d ]*[\dko])/i,/(le[- ]+pan)[- ]+(\w{1,9}) bui/i,/(trinity)[- ]*(t\d{3}) bui/i,/(gigaset)[- ]+(q\w{1,9}) bui/i,/(vodafone) ([\w ]+)(?:\)| bui)/i],[q,W,[K,Z]],[/(surface duo)/i],[W,[q,Nl],[K,Z]],[/droid [\d.]+; (fp\du?)(?: b|\))/i],[W,[q,`Fairphone`],[K,X]],[/(u304aa)/i],[W,[q,`AT&T`],[K,X]],[/\bsie-(\w*)/i],[W,[q,`Siemens`],[K,X]],[/\b(rct\w+) b/i],[W,[q,`RCA`],[K,Z]],[/\b(venue[\d ]{2,7}) b/i],[W,[q,`Dell`],[K,Z]],[/\b(q(?:mv|ta)\w+) b/i],[W,[q,`Verizon`],[K,Z]],[/\b(?:barnes[& ]+noble |bn[rt])([\w+ ]*) b/i],[W,[q,`Barnes & Noble`],[K,Z]],[/\b(tm\d{3}\w+) b/i],[W,[q,`NuVision`],[K,Z]],[/\b(k88) b/i],[W,[q,`ZTE`],[K,Z]],[/\b(nx\d{3}j) b/i],[W,[q,`ZTE`],[K,X]],[/\b(gen\d{3}) b.+49h/i],[W,[q,`Swiss`],[K,X]],[/\b(zur\d{3}) b/i],[W,[q,`Swiss`],[K,Z]],[/\b((zeki)?tb.*\b) b/i],[W,[q,`Zeki`],[K,Z]],[/\b([yr]\d{2}) b/i,/\b(dragon[- ]+touch |dt)(\w{5}) b/i],[[q,`Dragon Touch`],W,[K,Z]],[/\b(ns-?\w{0,9}) b/i],[W,[q,`Insignia`],[K,Z]],[/\b((nxa|next)-?\w{0,9}) b/i],[W,[q,`NextBook`],[K,Z]],[/\b(xtreme_)?(v(1[045]|2[015]|[3469]0|7[05])) b/i],[[q,`Voice`],W,[K,X]],[/\b(lvtel-)?(v1[12]) b/i],[[q,`LvTel`],W,[K,X]],[/\b(ph-1) /i],[W,[q,`Essential`],[K,X]],[/\b(v(100md|700na|7011|917g).*\b) b/i],[W,[q,`Envizen`],[K,Z]],[/\b(trio[-\w. ]+) b/i],[W,[q,`MachSpeed`],[K,Z]],[/\btu_(1491) b/i],[W,[q,`Rotor`],[K,Z]],[/(shield[\w ]+) b/i],[W,[q,`Nvidia`],[K,Z]],[/(sprint) (\w+)/i],[q,W,[K,X]],[/(kin\.[onetw]{3})/i],[[W,/\./g,` `],[q,Nl],[K,X]],[/droid.+; (cc6666?|et5[16]|mc[239][23]x?|vc8[03]x?)\)/i],[W,[q,Bl],[K,Z]],[/droid.+; (ec30|ps20|tc[2-8]\d[kx])\)/i],[W,[q,Bl],[K,X]],[/smart-tv.+(samsung)/i],[q,[K,Q]],[/hbbtv.+maple;(\d+)/i],[[W,/^/,`SmartTV`],[q,Il],[K,Q]],[/(nux; netcast.+smarttv|lg (netcast\.tv-201\d|android tv))/i],[[q,Ml],[K,Q]],[/(apple) ?tv/i],[q,[W,`${Cl} TV`],[K,Q]],[/crkey/i],[[W,`${Dl}cast`],[q,Al],[K,Q]],[/droid.+aft(\w+)( bui|\))/i],[W,[q,Sl],[K,Q]],[/\(dtv[);].+(aquos)/i,/(aquos-tv[\w ]+)\)/i],[W,[q,Ll],[K,Q]],[/(bravia[\w ]+)( bui|\))/i],[W,[q,Rl],[K,Q]],[/(mitv-\w{5}) bui/i],[W,[q,zl],[K,Q]],[/Hbbtv.*(technisat) (.*);/i],[q,W,[K,Q]],[/\b(roku)[\dx]*[)/]((?:dvp-)?[\d.]*)/i,/hbbtv\/\d+\.\d+\.\d+ +\([\w+ ]*; *(\w[^;]*);([^;]*)/i],[[q,Yl],[W,Yl],[K,Q]],[/\b(android tv|smart[- ]?tv|opera tv|tv; rv:)\b/i],[[K,Q]],[/(ouya)/i,/(nintendo) ([wids3utch]+)/i],[q,W,[K,vl]],[/droid.+; (shield) bui/i],[W,[q,`Nvidia`],[K,vl]],[/(playstation [345portablevi]+)/i],[W,[q,Rl],[K,vl]],[/\b(xbox(?: one)?(?!; xbox))[); ]/i],[W,[q,Nl],[K,vl]],[/((pebble))app/i],[q,W,[K,yl]],[/(watch)(?: ?os[,/]|\d,\d\/)[\d.]+/i],[W,[q,Cl],[K,yl]],[/droid.+; (glass) \d/i],[W,[q,Al],[K,yl]],[/droid.+; (wt63?0{2,3})\)/i],[W,[q,Bl],[K,yl]],[/(quest( \d| pro)?)/i],[W,[q,Vl],[K,yl]],[/(tesla)(?: qtcarbrowser|\/[-\w.]+)/i],[q,[K,bl]],[/(aeobc)\b/i],[W,[q,Sl],[K,bl]],[/droid .+?; ([^;]+?)(?: bui|; wv\)|\) applew).+? mobile safari/i],[W,[K,X]],[/droid .+?; ([^;]+?)(?: bui|\) applew).+?(?! mobile) safari/i],[W,[K,Z]],[/\b((tablet|tab)[;/]|focus\/\d(?!.+mobile))/i],[[K,Z]],[/(phone|mobile(?:[;/]| [ \w/.]*safari)|pda(?=.+windows ce))/i],[[K,X]],[/(android[-\w. ]{0,9});.+buil/i],[W,[q,`Generic`]]],engine:[[/windows.+ edge\/([\w.]+)/i],[J,[G,`${Ol}HTML`]],[/webkit\/537\.36.+chrome\/(?!27)([\w.]+)/i],[J,[G,`Blink`]],[/(presto)\/([\w.]+)/i,/(webkit|trident|netfront|netsurf|amaya|lynx|w3m|goanna)\/([\w.]+)/i,/ekioh(flow)\/([\w.]+)/i,/(khtml|tasman|links)[/ ]\(?([\w.]+)/i,/(icab)[/ ]([23]\.[\d.]+)/i,/\b(libweb)/i],[G,J],[/rv:([\w.]{1,9})\b.+(gecko)/i],[J,G]],os:[[/microsoft (windows) (vista|xp)/i],[G,J],[/(windows (?:phone(?: os)?|mobile))[/ ]?([.\w ]*)/i],[G,[J,Zl,$l]],[/windows nt 6\.2; (arm)/i,/windows[/ ]?([ntce\d. ]+\w)(?!.+xbox)/i,/(?:win(?=[39n])|win 9x )([nt\d.]+)/i],[[J,Zl,$l],[G,`Windows`]],[/ip[honead]{2,4}\b(?:.*os (\w+) like mac|; opera)/i,/(?:ios;fbsv\/|iphone.+ios[/ ])([\d.]+)/i,/cfnetwork\/.+darwin/i],[[J,/_/g,`.`],[G,`iOS`]],[/(mac os x) ?([\w. ]*)/i,/(macintosh|mac_powerpc\b)(?!.+haiku)/i],[[G,Ul],[J,/_/g,`.`]],[/droid ([\w.]+)\b.+(android[- ]x86|harmonyos)/i],[J,G],[/(android|webos|qnx|bada|rim tablet os|maemo|meego|sailfish)[-/ ]?([\w.]*)/i,/(blackberry)\w*\/([\w.]*)/i,/(tizen|kaios)[/ ]([\w.]+)/i,/\((series40);/i],[G,J],[/\(bb(10);/i],[J,[G,Tl]],[/(?:symbian ?os|symbos|s60(?=;)|series60)[-/ ]?([\w.]*)/i],[J,[G,`Symbian`]],[/mozilla\/[\d.]+ \((?:mobile|tablet|tv|mobile; [\w ]+); rv:.+ gecko\/([\w.]+)/i],[J,[G,`${kl} OS`]],[/web0s;.+rt(tv)/i,/\b(?:hp)?wos(?:browser)?\/([\w.]+)/i],[J,[G,`webOS`]],[/watch(?: ?os[,/]|\d,\d\/)([\d.]+)/i],[J,[G,`watchOS`]],[/crkey\/([\d.]+)/i],[J,[G,`${Dl}cast`]],[/(cros) \w+(?:\)| ([\w.]+)\b)/i],[[G,Hl],J],[/panasonic;(viera)/i,/(netrange)mmh/i,/(nettv)\/(\d+\.[\w.]+)/i,/(nintendo|playstation) ([wids345portablevuch]+)/i,/(xbox); +xbox ([^);]+)/i,/\b(joli|palm)\b ?(?:os)?\/?([\w.]*)/i,/(mint)[/() ]?(\w*)/i,/(mageia|vectorlinux)[; ]/i,/([kxln]?ubuntu|debian|suse|opensuse|gentoo|arch(?= linux)|slackware|fedora|mandriva|centos|pclinuxos|red ?hat|zenwalk|linpus|raspbian|plan 9|minix|risc os|contiki|deepin|manjaro|elementary os|sabayon|linspire)(?: gnu\/linux)?(?: enterprise)?(?:[- ]linux)?(?:-gnu)?[-/ ]?(?!chrom|package)([-\w.]*)/i,/(hurd|linux) ?([\w.]*)/i,/(gnu) ?([\w.]*)/i,/\b([-e-hrntopcs]{0,5}bsd|dragonfly)[/ ]?(?!amd|[ix346]{1,2}86)([\w.]*)/i,/(haiku) (\w+)/i],[G,J],[/(sunos) ?([\w.]*)/i],[[G,`Solaris`],J],[/((?:open)?solaris)[-/ ]?([\w.]*)/i,/(aix) ((\d)(?=[.) ])[\w.])*/i,/\b(beos|os\/2|amigaos|morphos|openvms|fuchsia|hp-ux|serenityos)/i,/(unix) ?([\w.]*)/i],[G,J]]};function tu(e){return typeof e==`object`&&!!e}Object.freeze(Gl([G,J,_l])),Object.freeze(Gl([Y])),Object.freeze(Gl([W,q,K,vl,X,Q,Z,yl,bl])),Object.freeze(Gl([G,J])),Object.freeze(Gl([G,J]));function nu(){if(!(typeof window>`u`||!window.navigator))return window.navigator}function ru(e){return e.length>xl?Yl(e,xl):e}function iu(e){if(typeof e==`string`)return{ua:ru(e),isSelfNavigator:!1,navigator:void 0,userAgentData:void 0,regexMap:eu};let t=nu(),n=ru(t&&t.userAgent?t.userAgent:hl);return{ua:n,isSelfNavigator:!!(t&&t.userAgent===n),navigator:t,userAgentData:t?.userAgentData,regexMap:eu}}function au(e,t){if(!t&&!tu(e))return iu(e);let n=nu(),r=tu(e)?void 0:e,i=tu(e)?e:t,a=ru(r||(n&&n.userAgent?n.userAgent:hl)),o=n?.userAgentData;return{ua:a,isSelfNavigator:!!(n&&n.userAgent===a),navigator:n,userAgentData:o,regexMap:i?Wl(eu,i):eu}}function ou(e){let t={name:void 0,version:void 0,major:void 0};return Xl(e.ua,e.regexMap.browser,t),t.major=Jl(t.version),e.isSelfNavigator&&e.navigator?.brave&&typeof e.navigator.brave.isBrave==`function`&&(t.name=`Brave`),t}function su(e){let t={architecture:void 0};return Xl(e.ua,e.regexMap.cpu,t),t}function cu(e){let t={vendor:void 0,model:void 0,type:void 0};return Xl(e.ua,e.regexMap.device,t),e.isSelfNavigator&&!t.type&&e.userAgentData?.mobile&&(t.type=X),e.isSelfNavigator&&t.model===`Macintosh`&&e.navigator&&e.navigator.standalone!==void 0&&e.navigator.maxTouchPoints&&e.navigator.maxTouchPoints>2&&(t.model=`iPad`,t.type=Z),t}function lu(e){let t={name:void 0,version:void 0};return Xl(e.ua,e.regexMap.engine,t),t}function uu(e){let t={name:void 0,version:void 0};return Xl(e.ua,e.regexMap.os,t),e.isSelfNavigator&&!t.name&&e.userAgentData?.platform&&e.userAgentData.platform!==`Unknown`&&(t.name=e.userAgentData.platform.replace(/chrome os/i,Hl).replace(/macos/i,Ul)),t}function du(e,t){let n,r,i,a,o,s,c=()=>n||=au(e,t);return{get ua(){return c().ua},get browser(){return r||=ou(c()),r},get engine(){return i||=lu(c()),i},get os(){return a||=uu(c()),a},get device(){return o||=cu(c()),o},get cpu(){return s||=su(c()),s}}}function fu(){let e,t;return{promise:new Promise((n,r)=>{e=n,t=r}),resolve:e,reject:t}}function pu(e){return e==null?!1:`${+e}`==`${e}`}function mu(e){let{authId:t,connectionMeta:n,events:r,clientRpc:i,rpcOptions:a={},wsOptions:o={}}=e,s=!1,c=fu(),l=pu(n.websocket)?`${location.protocol.replace(`http`,`ws`)}//${location.hostname}:${n.websocket}`:n.websocket,u=zc(i.functions,{preset:ml({url:l,authId:t,...o}),rpcOptions:a});async function d(){if(s)return!0;let e=du(navigator.userAgent),n=[e.browser.name,e.browser.version,`|`,e.os.name,e.os.version,e.device.type].filter(e=>e).join(` `),i=await u.$call(`vite:anonymous:auth`,{authId:t,ua:n,origin:location.origin});return s=i.isTrusted,c.resolve(s),r.emit(`rpc:is-trusted:updated`,s),i.isTrusted}async function f(e=6e4){if(s&&c.resolve(!0),e<=0)return c.promise;let t=()=>{};return await Promise.race([c.promise.then(t),new Promise((n,r)=>{let i=setTimeout(()=>{r(Error(`[Vite DevTools] Timeout waiting for rpc to be trusted`))},e);t=()=>clearTimeout(i)})]),s}return{get isTrusted(){return s},requestTrust:d,ensureTrusted:f,call:(...e)=>u.$call(...e),callEvent:(...e)=>u.$callEvent(...e),callOptional:(...e)=>u.$callOptional(...e)}}var hu=`__VITE_DEVTOOLS_CONNECTION_META__`,gu=`__VITE_DEVTOOLS_CONNECTION_AUTH_ID__`;function _u(e){let t=[()=>e,()=>localStorage.getItem(gu),()=>window?.[gu],()=>globalThis?.[gu],()=>parent.window?.[gu]],n;for(let e of t)try{if(n=e(),n)break}catch{}return n||=Zo(),localStorage.setItem(gu,n),globalThis[gu]=n,n}function vu(){let e=[()=>window?.[hu],()=>globalThis?.[hu],()=>parent.window?.[hu]];for(let t of e)try{let e=t();if(e)return e}catch{}}async function yu(e={}){let{baseURL:t=Ko,rpcOptions:n={}}=e,r=Yo(),i=Array.isArray(t)?t:[t],a=e.connectionMeta||vu(),o=i[0]??`/.devtools/`;function s(e){return e.endsWith(`/`)?e:`${e}/`}function c(e,t){return/^https?:\/\//.test(t)||t.startsWith(`/`)?t:`${s(e)}${t}`}if(!a){let e=[];for(let t of i)try{a=await fetch(c(t,qo)).then(e=>e.json()),o=t,globalThis[hu]=a;break}catch(t){e.push(t)}if(!a)throw Error(`Failed to get connection meta from ${i.join(`, `)}`,{cause:e})}let l={rpc:void 0},u=_u(e.authId),d=new Go(l);async function f(e){let t=[o,...i.filter(e=>e!==o)].filter(e=>e!=null),n=[];for(let r of t)try{return await fetch(c(r,e)).then(t=>{if(!t.ok)throw Error(`Failed to fetch ${e} from ${r}: ${t.status}`);return t.json()})}catch(e){n.push(e)}throw Error(`Failed to load ${e} from ${t.join(`, `)}`,{cause:n})}let p=a.backend===`static`?await Ec({fetchJsonFromBases:f}):mu({authId:u,connectionMeta:a,events:r,clientRpc:d,rpcOptions:n,wsOptions:e.wsOptions}),m={events:r,get isTrusted(){return p.isTrusted},connectionMeta:a,ensureTrusted:p.ensureTrusted,requestTrust:p.requestTrust,call:p.call,callEvent:p.callEvent,callOptional:p.callOptional,client:d,sharedState:void 0};return m.sharedState=bc(m),l.rpc=m,p.requestTrust(),m}var $=ue({connected:!1,error:null}),bu=C(void 0);async function xu(){let e=x();try{bu.value=await yu({baseURL:[Ko,e.app.baseURL],connectionMeta:e.app.connection,wsOptions:{onConnected:()=>{$.connected=!0},onError:e=>{$.error=e},onDisconnected:()=>{$.connected=!1}},rpcOptions:{onGeneralError:(e,t)=>{$.error=e,console.error(`[self-inspect] RPC error on executing "${t}":`,e)},onFunctionError:(e,t)=>{$.error=e,console.error(`[self-inspect] RPC error on executing "${t}":`,e)}}}),$.connected=!0}catch(e){$.error=e}}function Su(){return bu}var Cu={key:0,"text-red":``,p4:``},wu={key:2,"h-vh":``,flex:`~ col`,"of-hidden":``},Tu={flex:`~ items-center`,border:`b base`,h9:``,"shrink-0":``},Eu=[`disabled`],Du={"flex-1":``,"of-auto":``},Ou=h({__name:`app`,setup(e){gn({title:`DevTools Self Inspect`}),xu();let t=[{title:`RPC Functions`,to:`/rpc`,icon:`i-ph-plugs-connected-duotone`},{title:`Docks`,to:`/docks`,icon:`i-ph-layout-duotone`},{title:`Client Scripts`,to:`/scripts`,icon:`i-ph-code-duotone`},{title:`Plugins`,to:`/plugins`,icon:`i-ph-puzzle-piece-duotone`}],{refresh:r,loading:i}=Mo();return(e,s)=>{let c=ee(`VisualLoading`),u=ka,d=La;return O($).error?(n(),b(`div`,Cu,g(O($).error),1)):O($).connected?(n(),b(`div`,wu,[A(`div`,Tu,[(n(),b(he,null,l(t,e=>a(u,{key:e.to,to:e.to,flex:`~ items-center gap-1.5`,px3:``,"h-full":``,"text-sm":``,op50:``,"hover:op100":``,"transition-colors":``,border:`b-2 transparent`,"active-class":`op100! border-b-primary!`},{default:_e(()=>[A(`span`,{class:o(e.icon),"text-base":``},null,2),A(`span`,null,g(e.title),1)]),_:2},1032,[`to`])),64)),s[3]||=A(`div`,{"flex-1":``},null,-1),A(`button`,{mr2:``,"p1.5":``,rounded:``,"hover:bg-active":``,op50:``,"hover:op100":``,"transition-colors":``,title:`Refresh`,disabled:O(i),onClick:s[0]||=(...e)=>O(r)&&O(r)(...e)},[A(`span`,{"i-ph-arrow-clockwise":``,"text-sm":``,class:o(O(i)?`animate-spin`:``)},null,2)],8,Eu),A(`button`,{mr2:``,"p1.5":``,rounded:``,"hover:bg-active":``,op50:``,"hover:op100":``,"transition-colors":``,title:`Toggle dark mode`,onClick:s[1]||=(...e)=>O(Oo)&&O(Oo)(...e)},[...s[2]||=[A(`span`,{class:`i-ph-sun-duotone dark:i-ph-moon-duotone`,"text-sm":``},null,-1)]])]),A(`div`,Du,[a(d)])])):(n(),se(c,{key:1,text:`Connecting...`}))}}}),ku={__name:`nuxt-error-page`,props:{error:Object},setup(e){let a=e.error,o=Number(a.statusCode||500),s=o===404,c=a.statusMessage??(s?`Page Not Found`:`Internal Server Error`),l=a.message||a.toString(),u=r(()=>Sn(()=>import(`./C8qyGLl5.js`),__vite__mapDeps([8,9,1,5,10]),import.meta.url)),d=r(()=>Sn(()=>import(`./B9z6lp9R.js`),__vite__mapDeps([11,9,1,12]),import.meta.url)),f=s?u:d;return(e,r)=>(n(),se(O(f),i(t({status:O(o),statusText:O(c),statusCode:O(o),statusMessage:O(c),description:O(l),stack:O(void 0)})),null,16))}},Au={key:0},ju={__name:`nuxt-root`,setup(e){let t=()=>null,r=S(),i=r.deferHydration();if(r.isHydrating){let e=r.hooks.hookOnce(`app:error`,i);j().beforeEach(e)}window.location.pathname,te(He,Ke()),r.hooks.callHookWith(e=>e.map(e=>e()),`vue:setup`);let a=je(),o=/bot\b|chrome-lighthouse|facebookexternalhit|google\b/i;return y((e,t,n)=>{if(r.hooks.callHook(`vue:error`,e,t,n).catch(e=>console.error("[nuxt] Error in `vue:error` hook",e)),o.test(navigator.userAgent))return r.hooks.callHook(`app:error`,e),console.error(`[nuxt] Not rendering error page for bot with user agent \`${navigator.userAgent}\`:`,e),!1;if(Ue(e)&&(e.fatal||e.unhandled))return r.runWithContext(()=>Le(e)),!1}),(e,r)=>(n(),se(de,{onResolve:O(i)},{default:_e(()=>[O(!1)?(n(),b(`div`,Au)):O(a)?(n(),se(O(ku),{key:1,error:O(a)},null,8,[`error`])):O(!1)?(n(),se(O(t),{key:2,context:O(!1)},null,8,[`context`])):O(!1)?(n(),se(ne(O(!1)),{key:3})):(n(),se(O(Ou),{key:4}))]),_:1},8,[`onResolve`]))}},Mu;{let e;Mu=async function(){if(e)return e;let t=!!(window.__NUXT__?.serverRendered??document.getElementById(`__NUXT_DATA__`)?.dataset.ssr===`true`),n=t?Te(ju):we(ju),r=ge({vueApp:n});async function i(e){await r.callHook(`app:error`,e),r.payload.error||=Be(e)}n.config.errorHandler=i,r.hook(`app:suspense:resolve`,()=>{n.config.errorHandler===i&&(n.config.errorHandler=void 0)}),!t&&ye.id&&r.hook(`app:suspense:resolve`,()=>{document.getElementById(ye.id)?.remove()});try{await be(r,Ea)}catch(e){i(e)}try{await r.hooks.callHook(`app:created`,n),await r.hooks.callHook(`app:beforeMount`,n),n.mount(Se),await r.hooks.callHook(`app:mounted`,n),await _()}catch(e){i(e)}return n},e=Mu().catch(e=>{throw console.error(`Error while mounting app:`,e),e})}export{gn as i,jo as n,ka as r,Su as t};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><script type="importmap">{"imports":{"#entry":"/.devtools-self-inspect/_nuxt/irXMpiV8.js"}}</script><title>DevTools Self Inspect</title><link rel="stylesheet" href="/.devtools-self-inspect/_nuxt/entry.w3zDM-vf.css" crossorigin><link rel="modulepreload" as="script" crossorigin href="/.devtools-self-inspect/_nuxt/irXMpiV8.js"><link rel="modulepreload" as="script" crossorigin href="/.devtools-self-inspect/_nuxt/D-gbOT8o.js"><link rel="modulepreload" as="script" crossorigin href="/.devtools-self-inspect/_nuxt/DODjDiif.js"><link rel="modulepreload" as="script" crossorigin href="/.devtools-self-inspect/_nuxt/BAwwvtuq.js"><script type="module" src="/.devtools-self-inspect/_nuxt/irXMpiV8.js" crossorigin></script><meta name="description" content="DevTools for inspecting the DevTools itself"><script id="unhead:payload" type="application/json">{"title":"DevTools Self Inspect"}</script></head><body><div id="__nuxt"></div><div id="teleports"></div><script>window.__NUXT__={};window.__NUXT__.config={public:{},app:{baseURL:"/.devtools-self-inspect/",buildId:"051a0cfd-f18c-43c9-abd0-fde9834dfcdd",buildAssetsDir:"/_nuxt/",cdnURL:""}}</script><script type="application/json" data-nuxt-data="nuxt-app" data-ssr="false" id="__NUXT_DATA__">[{"prerenderedAt":1,"serverRendered":2},1773287385274,false]</script></body></html>
|
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vitejs/devtools-self-inspect",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.0-alpha.34",
|
|
5
|
+
"description": "DevTools for inspecting the DevTools itself",
|
|
6
|
+
"author": "VoidZero Inc.",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"homepage": "https://github.com/vitejs/devtools#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"directory": "packages/self-inspect",
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/vitejs/devtools.git"
|
|
13
|
+
},
|
|
14
|
+
"bugs": "https://github.com/vitejs/devtools/issues",
|
|
15
|
+
"keywords": [
|
|
16
|
+
"devtools",
|
|
17
|
+
"self-inspect"
|
|
18
|
+
],
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"exports": {
|
|
21
|
+
".": "./dist/index.mjs",
|
|
22
|
+
"./package.json": "./package.json"
|
|
23
|
+
},
|
|
24
|
+
"types": "./dist/index.d.mts",
|
|
25
|
+
"files": [
|
|
26
|
+
"dist"
|
|
27
|
+
],
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"birpc": "^4.0.0",
|
|
30
|
+
"pathe": "^2.0.3",
|
|
31
|
+
"@vitejs/devtools-kit": "0.0.0-alpha.34",
|
|
32
|
+
"@vitejs/devtools-rpc": "0.0.0-alpha.34"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@unocss/nuxt": "^66.6.6",
|
|
36
|
+
"@vueuse/core": "^14.2.1",
|
|
37
|
+
"@vueuse/nuxt": "^14.2.1",
|
|
38
|
+
"structured-clone-es": "^1.0.0",
|
|
39
|
+
"tsdown": "^0.21.1",
|
|
40
|
+
"unocss": "^66.6.6",
|
|
41
|
+
"vite-hot-client": "^2.1.0"
|
|
42
|
+
},
|
|
43
|
+
"scripts": {
|
|
44
|
+
"build": "pnpm dev:prepare && nuxi build src && tsdown",
|
|
45
|
+
"dev": "nuxi dev src",
|
|
46
|
+
"dev:prepare": "nuxi prepare src"
|
|
47
|
+
}
|
|
48
|
+
}
|