usage-board 3.1.0 → 3.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +1 -1
- package/dist/public/_nuxt/{BuL2_OVR.js → B6C9KBQ4.js} +1 -1
- package/dist/public/_nuxt/{CbwePq4F.js → Bv6agYS5.js} +1 -1
- package/dist/public/_nuxt/{LYzk-FvL.js → BvRyOET7.js} +1 -1
- package/dist/public/_nuxt/{CF27djws.js → CMWftE4h.js} +1 -1
- package/dist/public/_nuxt/{CoVMsEv_.js → COIbUy5w.js} +1 -1
- package/dist/public/_nuxt/{DS17D0R7.js → CXLmM1yO.js} +1 -1
- package/dist/public/_nuxt/{Bz0aA7IQ.js → DFqWEFN4.js} +1 -1
- package/dist/public/_nuxt/{WjVGlVHF.js → DUoLvn3A.js} +1 -1
- package/dist/public/_nuxt/{Dzuxw4nD.js → D_W11Quh.js} +1 -1
- package/dist/public/_nuxt/{D7Qebc1i.js → DgKrPjze.js} +2 -2
- package/dist/public/_nuxt/{CEZpUSPI.js → DkxY2YMp.js} +1 -1
- package/dist/public/_nuxt/{Dr4nyTE3.js → DtbPvE6R.js} +1 -1
- package/dist/public/_nuxt/{BJUAqwzD.js → HiqUua3-.js} +1 -1
- package/dist/public/_nuxt/builds/latest.json +1 -1
- package/dist/public/_nuxt/builds/meta/6f98f1cb-266c-475e-a249-dad346a55f24.json +1 -0
- package/dist/public/_nuxt/error-404.CFBEg71j.css +1 -0
- package/dist/public/_nuxt/error-500.BqCnH31G.css +1 -0
- package/dist/public/_nuxt/{Cd5S9Sm2.js → uHQwCIHg.js} +1 -1
- package/dist/server/chunks/_/error-500.mjs +2 -20
- package/dist/server/chunks/build/client.precomputed.mjs +1 -1
- package/dist/server/chunks/nitro/nitro.mjs +1885 -3648
- package/dist/server/chunks/routes/api/analysis/agent/session.json.mjs +8 -9
- package/dist/server/chunks/routes/api/analysis/agent/token.json.mjs +8 -9
- package/dist/server/chunks/routes/api/analysis/cache.json.mjs +8 -9
- package/dist/server/chunks/routes/api/analysis/hot-project.json.mjs +8 -9
- package/dist/server/chunks/routes/api/analysis/model.json.mjs +8 -9
- package/dist/server/chunks/routes/api/analysis/overview-cards.json.mjs +8 -9
- package/dist/server/chunks/routes/api/analysis/session.json.mjs +8 -9
- package/dist/server/chunks/routes/api/analysis/token/daily.json.mjs +8 -9
- package/dist/server/chunks/routes/api/analysis/token.json.mjs +8 -9
- package/dist/server/chunks/routes/api/payload.json.mjs +8 -9
- package/dist/server/chunks/routes/api/projects/_project/modules.get.mjs +8 -9
- package/dist/server/chunks/routes/api/projects/catalog.get.mjs +8 -9
- package/dist/server/chunks/routes/renderer.mjs +17 -39183
- package/dist/server/chunks/routes/ws.mjs +8 -9
- package/dist/server/index.mjs +9 -10
- package/dist/server/node_modules/@babel/parser/lib/index.js +14582 -0
- package/dist/server/node_modules/@babel/parser/package.json +50 -0
- package/dist/server/node_modules/@iconify/utils/lib/colors/index.js +292 -0
- package/dist/server/node_modules/@iconify/utils/lib/colors/keywords.js +702 -0
- package/dist/server/node_modules/@iconify/utils/lib/css/common.js +76 -0
- package/dist/server/node_modules/@iconify/utils/lib/css/format.js +40 -0
- package/dist/server/node_modules/@iconify/utils/lib/css/icon.js +52 -0
- package/dist/server/node_modules/@iconify/utils/lib/css/icons.js +133 -0
- package/dist/server/node_modules/@iconify/utils/lib/customisations/bool.js +20 -0
- package/dist/server/node_modules/@iconify/utils/lib/customisations/defaults.js +15 -0
- package/dist/server/node_modules/@iconify/utils/lib/customisations/flip.js +18 -0
- package/dist/server/node_modules/@iconify/utils/lib/customisations/merge.js +18 -0
- package/dist/server/node_modules/@iconify/utils/lib/customisations/rotate.js +31 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/cleanup.js +80 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/convert.js +102 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/data.js +29 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/format.js +60 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/parse.js +50 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/regex/base.js +204 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/regex/create.js +35 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/regex/numbers.js +134 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/regex/similar.js +167 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/regex/tree.js +81 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/replace/find.js +94 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/replace/replace.js +28 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/test/components.js +78 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/test/missing.js +68 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/test/name.js +47 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/test/parse.js +105 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/test/similar.js +38 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/test/tree.js +94 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/test/variations.js +64 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon/defaults.js +26 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon/merge.js +18 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon/name.js +58 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon/square.js +34 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon/transformations.js +13 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/convert-info.js +126 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/expand.js +21 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/get-icon.js +27 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/get-icons.js +38 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/minify.js +93 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/parse.js +48 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/tree.js +24 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/validate-basic.js +44 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/validate.js +125 -0
- package/dist/server/node_modules/@iconify/utils/lib/index.js +53 -0
- package/dist/server/node_modules/@iconify/utils/lib/loader/custom.js +32 -0
- package/dist/server/node_modules/@iconify/utils/lib/loader/loader.js +28 -0
- package/dist/server/node_modules/@iconify/utils/lib/loader/modern.js +42 -0
- package/dist/server/node_modules/@iconify/utils/lib/loader/utils.js +63 -0
- package/dist/server/node_modules/@iconify/utils/lib/misc/objects.js +27 -0
- package/dist/server/node_modules/@iconify/utils/lib/misc/strings.js +27 -0
- package/dist/server/node_modules/@iconify/utils/lib/misc/title.js +10 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/build.js +115 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/defs.js +32 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/encode-svg-for-css.js +15 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/html.js +10 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/id.js +42 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/inner-html.js +23 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/parse.js +69 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/pretty.js +55 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/size.js +28 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/trim.js +8 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/url.js +23 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/viewbox.js +9 -0
- package/dist/server/node_modules/@iconify/utils/package.json +118 -0
- package/dist/server/node_modules/@lonewolfyx/utils/dist/index.mjs +63 -0
- package/dist/server/node_modules/@lonewolfyx/utils/package.json +64 -0
- package/dist/server/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js +6763 -0
- package/dist/server/node_modules/@vue/compiler-core/package.json +58 -0
- package/dist/server/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.prod.js +689 -0
- package/dist/server/node_modules/@vue/compiler-dom/package.json +57 -0
- package/dist/server/node_modules/@vue/compiler-ssr/dist/compiler-ssr.cjs.js +1413 -0
- package/dist/server/node_modules/@vue/compiler-ssr/package.json +34 -0
- package/dist/server/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js +1877 -0
- package/dist/server/node_modules/@vue/reactivity/package.json +55 -0
- package/dist/server/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js +6856 -0
- package/dist/server/node_modules/@vue/runtime-core/package.json +52 -0
- package/dist/server/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js +1796 -0
- package/dist/server/node_modules/@vue/runtime-dom/package.json +60 -0
- package/dist/server/node_modules/@vue/server-renderer/dist/server-renderer.cjs.prod.js +883 -0
- package/dist/server/node_modules/@vue/server-renderer/package.json +55 -0
- package/dist/server/{chunks/_/shared.cjs.prod.mjs → node_modules/@vue/shared/dist/shared.cjs.prod.js} +76 -81
- package/dist/server/node_modules/@vue/shared/package.json +47 -0
- package/dist/server/node_modules/better-sqlite3/build/Release/better_sqlite3.node +0 -0
- package/dist/server/node_modules/better-sqlite3/lib/database.js +90 -0
- package/dist/server/node_modules/better-sqlite3/lib/index.js +3 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/aggregate.js +43 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/backup.js +67 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/function.js +31 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/inspect.js +7 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/pragma.js +12 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/serialize.js +16 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/table.js +189 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/transaction.js +78 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/wrappers.js +54 -0
- package/dist/server/node_modules/better-sqlite3/lib/sqlite-error.js +20 -0
- package/dist/server/node_modules/better-sqlite3/lib/util.js +12 -0
- package/dist/server/node_modules/better-sqlite3/package.json +59 -0
- package/dist/server/node_modules/bindings/bindings.js +221 -0
- package/dist/server/node_modules/bindings/package.json +28 -0
- package/dist/server/node_modules/chokidar/handler.js +632 -0
- package/dist/server/node_modules/chokidar/index.js +822 -0
- package/dist/server/node_modules/chokidar/package.json +63 -0
- package/dist/server/{chunks/_ → node_modules/consola/dist/chunks}/prompt.mjs +2 -1
- package/dist/server/node_modules/consola/dist/core.mjs +512 -0
- package/dist/server/node_modules/consola/dist/index.mjs +651 -0
- package/dist/server/node_modules/consola/dist/shared/consola.DRwqZj3T.mjs +72 -0
- package/dist/server/node_modules/consola/dist/shared/consola.DXBYu-KD.mjs +288 -0
- package/dist/server/node_modules/consola/package.json +136 -0
- package/dist/server/node_modules/devalue/index.js +4 -0
- package/dist/server/node_modules/devalue/package.json +40 -0
- package/dist/server/node_modules/devalue/src/base64.js +60 -0
- package/dist/server/node_modules/devalue/src/constants.js +7 -0
- package/dist/server/node_modules/devalue/src/parse.js +268 -0
- package/dist/server/node_modules/devalue/src/stringify.js +335 -0
- package/dist/server/node_modules/devalue/src/uneval.js +552 -0
- package/dist/server/node_modules/devalue/src/utils.js +144 -0
- package/dist/server/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
- package/dist/server/node_modules/entities/dist/commonjs/decode.js +568 -0
- package/dist/server/node_modules/entities/dist/commonjs/generated/decode-data-html.js +7 -0
- package/dist/server/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +7 -0
- package/dist/server/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js +21 -0
- package/dist/server/node_modules/entities/dist/commonjs/internal/decode-shared.js +31 -0
- package/dist/server/node_modules/entities/dist/commonjs/package.json +3 -0
- package/dist/server/node_modules/entities/package.json +120 -0
- package/dist/server/node_modules/estree-walker/dist/umd/estree-walker.js +344 -0
- package/dist/server/node_modules/estree-walker/package.json +37 -0
- package/dist/server/node_modules/file-uri-to-path/index.js +66 -0
- package/dist/server/node_modules/file-uri-to-path/package.json +32 -0
- package/dist/server/node_modules/glob/dist/esm/index.min.js +4 -0
- package/dist/server/node_modules/glob/dist/esm/package.json +3 -0
- package/dist/server/node_modules/glob/package.json +98 -0
- package/dist/server/node_modules/hookable/dist/index.mjs +257 -0
- package/dist/server/node_modules/hookable/package.json +53 -0
- package/dist/server/node_modules/md5-typescript/dist/bundles/bundle.umd.js +208 -0
- package/dist/server/node_modules/md5-typescript/package.json +31 -0
- package/dist/server/node_modules/path-type/index.js +42 -0
- package/dist/server/node_modules/path-type/package.json +51 -0
- package/dist/server/node_modules/readdirp/index.js +272 -0
- package/dist/server/node_modules/readdirp/package.json +66 -0
- package/dist/server/node_modules/source-map-js/lib/array-set.js +121 -0
- package/dist/server/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- package/dist/server/node_modules/source-map-js/lib/base64.js +67 -0
- package/dist/server/node_modules/source-map-js/lib/binary-search.js +111 -0
- package/dist/server/node_modules/source-map-js/lib/mapping-list.js +79 -0
- package/dist/server/node_modules/source-map-js/lib/quick-sort.js +132 -0
- package/dist/server/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
- package/dist/server/node_modules/source-map-js/lib/source-map-generator.js +444 -0
- package/dist/server/node_modules/source-map-js/lib/source-node.js +413 -0
- package/dist/server/node_modules/source-map-js/lib/util.js +594 -0
- package/dist/server/node_modules/source-map-js/package.json +71 -0
- package/dist/server/node_modules/source-map-js/source-map.js +8 -0
- package/dist/server/node_modules/ufo/dist/index.mjs +645 -0
- package/dist/server/node_modules/ufo/package.json +48 -0
- package/dist/server/node_modules/unhead/dist/parser.mjs +508 -0
- package/dist/server/node_modules/unhead/dist/plugins.mjs +101 -0
- package/dist/server/node_modules/unhead/dist/server.mjs +180 -0
- package/dist/server/node_modules/unhead/dist/shared/unhead.B5FWS6X0.mjs +207 -0
- package/dist/server/node_modules/unhead/dist/shared/unhead.BYvz9V1x.mjs +43 -0
- package/dist/server/node_modules/unhead/dist/shared/unhead.CbpEuj3y.mjs +71 -0
- package/dist/server/node_modules/unhead/dist/shared/unhead.Ct24BOby.mjs +182 -0
- package/dist/server/node_modules/unhead/dist/shared/unhead.D4vSFytZ.mjs +236 -0
- package/dist/server/node_modules/unhead/dist/shared/unhead.DQc16pHI.mjs +196 -0
- package/dist/server/node_modules/unhead/dist/shared/unhead.TxTMM7cM.mjs +166 -0
- package/dist/server/node_modules/unhead/dist/shared/unhead.yem5I2v_.mjs +38 -0
- package/dist/server/node_modules/unhead/dist/utils.mjs +5 -0
- package/dist/server/node_modules/unhead/package.json +105 -0
- package/dist/server/node_modules/vue/dist/vue.cjs.js +80 -0
- package/dist/server/node_modules/vue/dist/vue.cjs.prod.js +66 -0
- package/dist/server/node_modules/vue/index.js +7 -0
- package/dist/server/node_modules/vue/index.mjs +1 -0
- package/dist/server/node_modules/vue/package.json +112 -0
- package/dist/server/node_modules/vue/server-renderer/index.mjs +1 -0
- package/dist/server/node_modules/vue-bundle-renderer/dist/runtime.mjs +301 -0
- package/dist/server/node_modules/vue-bundle-renderer/package.json +55 -0
- package/dist/server/package.json +37 -0
- package/package.json +3 -1
- package/dist/public/_nuxt/builds/meta/5b933d30-47b4-45ca-8d5a-cba3255174fa.json +0 -1
- package/dist/public/_nuxt/error-404.B0EXnOcv.css +0 -1
- package/dist/public/_nuxt/error-500.CnSNZoEG.css +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./
|
|
1
|
+
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./D_W11Quh.js","./DtbPvE6R.js","./BvRyOET7.js","./DUoLvn3A.js","./DkxY2YMp.js","./B6C9KBQ4.js","./HiqUua3-.js","./CXLmM1yO.js","./Bv6agYS5.js","./CMWftE4h.js","./DFqWEFN4.js","./uHQwCIHg.js","./error-404.CFBEg71j.css","./COIbUy5w.js","./error-500.BqCnH31G.css"])))=>i.map(i=>d[i]);
|
|
2
2
|
(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const o of document.querySelectorAll('link[rel="modulepreload"]'))r(o);new MutationObserver(o=>{for(const s of o)if(s.type==="childList")for(const i of s.addedNodes)i.tagName==="LINK"&&i.rel==="modulepreload"&&r(i)}).observe(document,{childList:!0,subtree:!0});function n(o){const s={};return o.integrity&&(s.integrity=o.integrity),o.referrerPolicy&&(s.referrerPolicy=o.referrerPolicy),o.crossOrigin==="use-credentials"?s.credentials="include":o.crossOrigin==="anonymous"?s.credentials="omit":s.credentials="same-origin",s}function r(o){if(o.ep)return;o.ep=!0;const s=n(o);fetch(o.href,s)}})();function Ws(e){const t=Object.create(null);for(const n of e.split(","))t[n]=1;return n=>n in t}const ce={},Tn=[],bt=()=>{},da=()=>!1,vr=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),ho=e=>e.startsWith("onUpdate:"),Pe=Object.assign,Ks=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},af=Object.prototype.hasOwnProperty,le=(e,t)=>af.call(e,t),Q=Array.isArray,An=e=>jn(e)==="[object Map]",pa=e=>jn(e)==="[object Set]",Ci=e=>jn(e)==="[object Date]",cf=e=>jn(e)==="[object RegExp]",X=e=>typeof e=="function",pe=e=>typeof e=="string",Ye=e=>typeof e=="symbol",se=e=>e!==null&&typeof e=="object",ha=e=>(se(e)||X(e))&&X(e.then)&&X(e.catch),ga=Object.prototype.toString,jn=e=>ga.call(e),uf=e=>jn(e).slice(8,-1),ma=e=>jn(e)==="[object Object]",go=e=>pe(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,on=Ws(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),mo=e=>{const t=Object.create(null);return(n=>t[n]||(t[n]=e(n)))},ff=/-\w/g,$e=mo(e=>e.replace(ff,t=>t.slice(1).toUpperCase())),df=/\B([A-Z])/g,qt=mo(e=>e.replace(df,"-$1").toLowerCase()),yo=mo(e=>e.charAt(0).toUpperCase()+e.slice(1)),Br=mo(e=>e?`on${yo(e)}`:""),_t=(e,t)=>!Object.is(e,t),tr=(e,...t)=>{for(let n=0;n<e.length;n++)e[n](...t)},ya=(e,t,n,r=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:r,value:n})},pf=e=>{const t=parseFloat(e);return isNaN(t)?e:t},_a=e=>{const t=pe(e)?Number(e):NaN;return isNaN(t)?e:t};let Ri;const _o=()=>Ri||(Ri=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function vo(e){if(Q(e)){const t={};for(let n=0;n<e.length;n++){const r=e[n],o=pe(r)?yf(r):vo(r);if(o)for(const s in o)t[s]=o[s]}return t}else if(pe(e)||se(e))return e}const hf=/;(?![^(]*\))/g,gf=/:([^]+)/,mf=/\/\*[^]*?\*\//g;function yf(e){const t={};return e.replace(mf,"").split(hf).forEach(n=>{if(n){const r=n.split(gf);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}function bo(e){let t="";if(pe(e))t=e;else if(Q(e))for(let n=0;n<e.length;n++){const r=bo(e[n]);r&&(t+=r+" ")}else if(se(e))for(const n in e)e[n]&&(t+=n+" ");return t.trim()}function va(e){if(!e)return null;let{class:t,style:n}=e;return t&&!pe(t)&&(e.class=bo(t)),n&&(e.style=vo(n)),e}const _f="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",vf=Ws(_f);function ba(e){return!!e||e===""}function bf(e,t){if(e.length!==t.length)return!1;let n=!0;for(let r=0;n&&r<e.length;r++)n=Gs(e[r],t[r]);return n}function Gs(e,t){if(e===t)return!0;let n=Ci(e),r=Ci(t);if(n||r)return n&&r?e.getTime()===t.getTime():!1;if(n=Ye(e),r=Ye(t),n||r)return e===t;if(n=Q(e),r=Q(t),n||r)return n&&r?bf(e,t):!1;if(n=se(e),r=se(t),n||r){if(!n||!r)return!1;const o=Object.keys(e).length,s=Object.keys(t).length;if(o!==s)return!1;for(const i in e){const l=e.hasOwnProperty(i),a=t.hasOwnProperty(i);if(l&&!a||!l&&a||!Gs(e[i],t[i]))return!1}}return String(e)===String(t)}const wa=e=>!!(e&&e.__v_isRef===!0),wf=e=>pe(e)?e:e==null?"":Q(e)||se(e)&&(e.toString===ga||!X(e.toString))?wa(e)?wf(e.value):JSON.stringify(e,Ea,2):String(e),Ea=(e,t)=>wa(t)?Ea(e,t.value):An(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[r,o],s)=>(n[Ho(r,s)+" =>"]=o,n),{})}:pa(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>Ho(n))}:Ye(t)?Ho(t):se(t)&&!Q(t)&&!ma(t)?String(t):t,Ho=(e,t="")=>{var n;return Ye(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};let Me;class Sa{constructor(t=!1){this.detached=t,this._active=!0,this._on=0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.__v_skip=!0,this.parent=Me,!t&&Me&&(this.index=(Me.scopes||(Me.scopes=[])).push(this)-1)}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let t,n;if(this.scopes)for(t=0,n=this.scopes.length;t<n;t++)this.scopes[t].pause();for(t=0,n=this.effects.length;t<n;t++)this.effects[t].pause()}}resume(){if(this._active&&this._isPaused){this._isPaused=!1;let t,n;if(this.scopes)for(t=0,n=this.scopes.length;t<n;t++)this.scopes[t].resume();for(t=0,n=this.effects.length;t<n;t++)this.effects[t].resume()}}run(t){if(this._active){const n=Me;try{return Me=this,t()}finally{Me=n}}}on(){++this._on===1&&(this.prevScope=Me,Me=this)}off(){this._on>0&&--this._on===0&&(Me=this.prevScope,this.prevScope=void 0)}stop(t){if(this._active){this._active=!1;let n,r;for(n=0,r=this.effects.length;n<r;n++)this.effects[n].stop();for(this.effects.length=0,n=0,r=this.cleanups.length;n<r;n++)this.cleanups[n]();if(this.cleanups.length=0,this.scopes){for(n=0,r=this.scopes.length;n<r;n++)this.scopes[n].stop(!0);this.scopes.length=0}if(!this.detached&&this.parent&&!t){const o=this.parent.scopes.pop();o&&o!==this&&(this.parent.scopes[this.index]=o,o.index=this.index)}this.parent=void 0}}}function qs(e){return new Sa(e)}function br(){return Me}function Ef(e,t=!1){Me&&Me.cleanups.push(e)}let de;const jo=new WeakSet;class Ta{constructor(t){this.fn=t,this.deps=void 0,this.depsTail=void 0,this.flags=5,this.next=void 0,this.cleanup=void 0,this.scheduler=void 0,Me&&Me.active&&Me.effects.push(this)}pause(){this.flags|=64}resume(){this.flags&64&&(this.flags&=-65,jo.has(this)&&(jo.delete(this),this.trigger()))}notify(){this.flags&2&&!(this.flags&32)||this.flags&8||Ca(this)}run(){if(!(this.flags&1))return this.fn();this.flags|=2,xi(this),Ra(this);const t=de,n=lt;de=this,lt=!0;try{return this.fn()}finally{xa(this),de=t,lt=n,this.flags&=-3}}stop(){if(this.flags&1){for(let t=this.deps;t;t=t.nextDep)Qs(t);this.deps=this.depsTail=void 0,xi(this),this.onStop&&this.onStop(),this.flags&=-2}}trigger(){this.flags&64?jo.add(this):this.scheduler?this.scheduler():this.runIfDirty()}runIfDirty(){os(this)&&this.run()}get dirty(){return os(this)}}let Aa=0,nr,rr;function Ca(e,t=!1){if(e.flags|=8,t){e.next=rr,rr=e;return}e.next=nr,nr=e}function zs(){Aa++}function Js(){if(--Aa>0)return;if(rr){let t=rr;for(rr=void 0;t;){const n=t.next;t.next=void 0,t.flags&=-9,t=n}}let e;for(;nr;){let t=nr;for(nr=void 0;t;){const n=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(r){e||(e=r)}t=n}}if(e)throw e}function Ra(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function xa(e){let t,n=e.depsTail,r=n;for(;r;){const o=r.prevDep;r.version===-1?(r===n&&(n=o),Qs(r),Sf(r)):t=r,r.dep.activeLink=r.prevActiveLink,r.prevActiveLink=void 0,r=o}e.deps=t,e.depsTail=n}function os(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(Pa(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function Pa(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===ur)||(e.globalVersion=ur,!e.isSSR&&e.flags&128&&(!e.deps&&!e._dirty||!os(e))))return;e.flags|=2;const t=e.dep,n=de,r=lt;de=e,lt=!0;try{Ra(e);const o=e.fn(e._value);(t.version===0||_t(o,e._value))&&(e.flags|=128,e._value=o,t.version++)}catch(o){throw t.version++,o}finally{de=n,lt=r,xa(e),e.flags&=-3}}function Qs(e,t=!1){const{dep:n,prevSub:r,nextSub:o}=e;if(r&&(r.nextSub=o,e.prevSub=void 0),o&&(o.prevSub=r,e.nextSub=void 0),n.subs===e&&(n.subs=r,!r&&n.computed)){n.computed.flags&=-5;for(let s=n.computed.deps;s;s=s.nextDep)Qs(s,!0)}!t&&!--n.sc&&n.map&&n.map.delete(n.key)}function Sf(e){const{prevDep:t,nextDep:n}=e;t&&(t.nextDep=n,e.prevDep=void 0),n&&(n.prevDep=t,e.nextDep=void 0)}let lt=!0;const ka=[];function Mt(){ka.push(lt),lt=!1}function Lt(){const e=ka.pop();lt=e===void 0?!0:e}function xi(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const n=de;de=void 0;try{t()}finally{de=n}}}let ur=0;class Tf{constructor(t,n){this.sub=t,this.dep=n,this.version=n.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class wo{constructor(t){this.computed=t,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(t){if(!de||!lt||de===this.computed)return;let n=this.activeLink;if(n===void 0||n.sub!==de)n=this.activeLink=new Tf(de,this),de.deps?(n.prevDep=de.depsTail,de.depsTail.nextDep=n,de.depsTail=n):de.deps=de.depsTail=n,Oa(n);else if(n.version===-1&&(n.version=this.version,n.nextDep)){const r=n.nextDep;r.prevDep=n.prevDep,n.prevDep&&(n.prevDep.nextDep=r),n.prevDep=de.depsTail,n.nextDep=void 0,de.depsTail.nextDep=n,de.depsTail=n,de.deps===n&&(de.deps=r)}return n}trigger(t){this.version++,ur++,this.notify(t)}notify(t){zs();try{for(let n=this.subs;n;n=n.prevSub)n.sub.notify()&&n.sub.dep.notify()}finally{Js()}}}function Oa(e){if(e.dep.sc++,e.sub.flags&4){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let r=t.deps;r;r=r.nextDep)Oa(r)}const n=e.dep.subs;n!==e&&(e.prevSub=n,n&&(n.nextSub=e)),e.dep.subs=e}}const Jr=new WeakMap,sn=Symbol(""),ss=Symbol(""),fr=Symbol("");function Le(e,t,n){if(lt&&de){let r=Jr.get(e);r||Jr.set(e,r=new Map);let o=r.get(n);o||(r.set(n,o=new wo),o.map=r,o.key=n),o.track()}}function kt(e,t,n,r,o,s){const i=Jr.get(e);if(!i){ur++;return}const l=a=>{a&&a.trigger()};if(zs(),t==="clear")i.forEach(l);else{const a=Q(e),u=a&&go(n);if(a&&n==="length"){const c=Number(r);i.forEach((f,d)=>{(d==="length"||d===fr||!Ye(d)&&d>=c)&&l(f)})}else switch((n!==void 0||i.has(void 0))&&l(i.get(n)),u&&l(i.get(fr)),t){case"add":a?u&&l(i.get("length")):(l(i.get(sn)),An(e)&&l(i.get(ss)));break;case"delete":a||(l(i.get(sn)),An(e)&&l(i.get(ss)));break;case"set":An(e)&&l(i.get(sn));break}}Js()}function Af(e,t){const n=Jr.get(e);return n&&n.get(t)}function vn(e){const t=re(e);return t===e?t:(Le(t,"iterate",fr),Qe(e)?t:t.map(ct))}function Eo(e){return Le(e=re(e),"iterate",fr),e}function yt(e,t){return wt(e)?On(Kt(e)?ct(t):t):ct(t)}const Cf={__proto__:null,[Symbol.iterator](){return Fo(this,Symbol.iterator,e=>yt(this,e))},concat(...e){return vn(this).concat(...e.map(t=>Q(t)?vn(t):t))},entries(){return Fo(this,"entries",e=>(e[1]=yt(this,e[1]),e))},every(e,t){return At(this,"every",e,t,void 0,arguments)},filter(e,t){return At(this,"filter",e,t,n=>n.map(r=>yt(this,r)),arguments)},find(e,t){return At(this,"find",e,t,n=>yt(this,n),arguments)},findIndex(e,t){return At(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return At(this,"findLast",e,t,n=>yt(this,n),arguments)},findLastIndex(e,t){return At(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return At(this,"forEach",e,t,void 0,arguments)},includes(...e){return Do(this,"includes",e)},indexOf(...e){return Do(this,"indexOf",e)},join(e){return vn(this).join(e)},lastIndexOf(...e){return Do(this,"lastIndexOf",e)},map(e,t){return At(this,"map",e,t,void 0,arguments)},pop(){return Kn(this,"pop")},push(...e){return Kn(this,"push",e)},reduce(e,...t){return Pi(this,"reduce",e,t)},reduceRight(e,...t){return Pi(this,"reduceRight",e,t)},shift(){return Kn(this,"shift")},some(e,t){return At(this,"some",e,t,void 0,arguments)},splice(...e){return Kn(this,"splice",e)},toReversed(){return vn(this).toReversed()},toSorted(e){return vn(this).toSorted(e)},toSpliced(...e){return vn(this).toSpliced(...e)},unshift(...e){return Kn(this,"unshift",e)},values(){return Fo(this,"values",e=>yt(this,e))}};function Fo(e,t,n){const r=Eo(e),o=r[t]();return r!==e&&!Qe(e)&&(o._next=o.next,o.next=()=>{const s=o._next();return s.done||(s.value=n(s.value)),s}),o}const Rf=Array.prototype;function At(e,t,n,r,o,s){const i=Eo(e),l=i!==e&&!Qe(e),a=i[t];if(a!==Rf[t]){const f=a.apply(e,s);return l?ct(f):f}let u=n;i!==e&&(l?u=function(f,d){return n.call(this,yt(e,f),d,e)}:n.length>2&&(u=function(f,d){return n.call(this,f,d,e)}));const c=a.call(i,u,r);return l&&o?o(c):c}function Pi(e,t,n,r){const o=Eo(e),s=o!==e&&!Qe(e);let i=n,l=!1;o!==e&&(s?(l=r.length===0,i=function(u,c,f){return l&&(l=!1,u=yt(e,u)),n.call(this,u,yt(e,c),f,e)}):n.length>3&&(i=function(u,c,f){return n.call(this,u,c,f,e)}));const a=o[t](i,...r);return l?yt(e,a):a}function Do(e,t,n){const r=re(e);Le(r,"iterate",fr);const o=r[t](...n);return(o===-1||o===!1)&&Ao(n[0])?(n[0]=re(n[0]),r[t](...n)):o}function Kn(e,t,n=[]){Mt(),zs();const r=re(e)[t].apply(e,n);return Js(),Lt(),r}const xf=Ws("__proto__,__v_isRef,__isVue"),Ia=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(Ye));function Pf(e){Ye(e)||(e=String(e));const t=re(this);return Le(t,"has",e),t.hasOwnProperty(e)}class Na{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,r){if(n==="__v_skip")return t.__v_skip;const o=this._isReadonly,s=this._isShallow;if(n==="__v_isReactive")return!o;if(n==="__v_isReadonly")return o;if(n==="__v_isShallow")return s;if(n==="__v_raw")return r===(o?s?Da:Fa:s?ja:Ha).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(r)?t:void 0;const i=Q(t);if(!o){let a;if(i&&(a=Cf[n]))return a;if(n==="hasOwnProperty")return Pf}const l=Reflect.get(t,n,me(t)?t:r);if((Ye(n)?Ia.has(n):xf(n))||(o||Le(t,"get",n),s))return l;if(me(l)){const a=i&&go(n)?l:l.value;return o&&se(a)?kn(a):a}return se(l)?o?kn(l):nt(l):l}}class Ma extends Na{constructor(t=!1){super(!1,t)}set(t,n,r,o){let s=t[n];const i=Q(t)&&go(n);if(!this._isShallow){const u=wt(s);if(!Qe(r)&&!wt(r)&&(s=re(s),r=re(r)),!i&&me(s)&&!me(r))return u||(s.value=r),!0}const l=i?Number(n)<t.length:le(t,n),a=Reflect.set(t,n,r,me(t)?t:o);return t===re(o)&&(l?_t(r,s)&&kt(t,"set",n,r):kt(t,"add",n,r)),a}deleteProperty(t,n){const r=le(t,n);t[n];const o=Reflect.deleteProperty(t,n);return o&&r&&kt(t,"delete",n,void 0),o}has(t,n){const r=Reflect.has(t,n);return(!Ye(n)||!Ia.has(n))&&Le(t,"has",n),r}ownKeys(t){return Le(t,"iterate",Q(t)?"length":sn),Reflect.ownKeys(t)}}class La extends Na{constructor(t=!1){super(!0,t)}set(t,n){return!0}deleteProperty(t,n){return!0}}const kf=new Ma,Of=new La,If=new Ma(!0),Nf=new La(!0),is=e=>e,Rr=e=>Reflect.getPrototypeOf(e);function Mf(e,t,n){return function(...r){const o=this.__v_raw,s=re(o),i=An(s),l=e==="entries"||e===Symbol.iterator&&i,a=e==="keys"&&i,u=o[e](...r),c=n?is:t?On:ct;return!t&&Le(s,"iterate",a?ss:sn),Pe(Object.create(u),{next(){const{value:f,done:d}=u.next();return d?{value:f,done:d}:{value:l?[c(f[0]),c(f[1])]:c(f),done:d}}})}}function xr(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function Lf(e,t){const n={get(o){const s=this.__v_raw,i=re(s),l=re(o);e||(_t(o,l)&&Le(i,"get",o),Le(i,"get",l));const{has:a}=Rr(i),u=t?is:e?On:ct;if(a.call(i,o))return u(s.get(o));if(a.call(i,l))return u(s.get(l));s!==i&&s.get(o)},get size(){const o=this.__v_raw;return!e&&Le(re(o),"iterate",sn),o.size},has(o){const s=this.__v_raw,i=re(s),l=re(o);return e||(_t(o,l)&&Le(i,"has",o),Le(i,"has",l)),o===l?s.has(o):s.has(o)||s.has(l)},forEach(o,s){const i=this,l=i.__v_raw,a=re(l),u=t?is:e?On:ct;return!e&&Le(a,"iterate",sn),l.forEach((c,f)=>o.call(s,u(c),u(f),i))}};return Pe(n,e?{add:xr("add"),set:xr("set"),delete:xr("delete"),clear:xr("clear")}:{add(o){const s=re(this),i=Rr(s),l=re(o),a=!t&&!Qe(o)&&!wt(o)?l:o;return i.has.call(s,a)||_t(o,a)&&i.has.call(s,o)||_t(l,a)&&i.has.call(s,l)||(s.add(a),kt(s,"add",a,a)),this},set(o,s){!t&&!Qe(s)&&!wt(s)&&(s=re(s));const i=re(this),{has:l,get:a}=Rr(i);let u=l.call(i,o);u||(o=re(o),u=l.call(i,o));const c=a.call(i,o);return i.set(o,s),u?_t(s,c)&&kt(i,"set",o,s):kt(i,"add",o,s),this},delete(o){const s=re(this),{has:i,get:l}=Rr(s);let a=i.call(s,o);a||(o=re(o),a=i.call(s,o)),l&&l.call(s,o);const u=s.delete(o);return a&&kt(s,"delete",o,void 0),u},clear(){const o=re(this),s=o.size!==0,i=o.clear();return s&&kt(o,"clear",void 0,void 0),i}}),["keys","values","entries",Symbol.iterator].forEach(o=>{n[o]=Mf(o,e,t)}),n}function So(e,t){const n=Lf(e,t);return(r,o,s)=>o==="__v_isReactive"?!e:o==="__v_isReadonly"?e:o==="__v_raw"?r:Reflect.get(le(n,o)&&o in r?n:r,o,s)}const Hf={get:So(!1,!1)},jf={get:So(!1,!0)},Ff={get:So(!0,!1)},Df={get:So(!0,!0)},Ha=new WeakMap,ja=new WeakMap,Fa=new WeakMap,Da=new WeakMap;function Bf(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function $f(e){return e.__v_skip||!Object.isExtensible(e)?0:Bf(uf(e))}function nt(e){return wt(e)?e:To(e,!1,kf,Hf,Ha)}function st(e){return To(e,!1,If,jf,ja)}function kn(e){return To(e,!0,Of,Ff,Fa)}function Ba(e){return To(e,!0,Nf,Df,Da)}function To(e,t,n,r,o){if(!se(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const s=$f(e);if(s===0)return e;const i=o.get(e);if(i)return i;const l=new Proxy(e,s===2?r:n);return o.set(e,l),l}function Kt(e){return wt(e)?Kt(e.__v_raw):!!(e&&e.__v_isReactive)}function wt(e){return!!(e&&e.__v_isReadonly)}function Qe(e){return!!(e&&e.__v_isShallow)}function Ao(e){return e?!!e.__v_raw:!1}function re(e){const t=e&&e.__v_raw;return t?re(t):e}function Uf(e){return!le(e,"__v_skip")&&Object.isExtensible(e)&&ya(e,"__v_skip",!0),e}const ct=e=>se(e)?nt(e):e,On=e=>se(e)?kn(e):e;function me(e){return e?e.__v_isRef===!0:!1}function Te(e){return $a(e,!1)}function xe(e){return $a(e,!0)}function $a(e,t){return me(e)?e:new Vf(e,t)}class Vf{constructor(t,n){this.dep=new wo,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=n?t:re(t),this._value=n?t:ct(t),this.__v_isShallow=n}get value(){return this.dep.track(),this._value}set value(t){const n=this._rawValue,r=this.__v_isShallow||Qe(t)||wt(t);t=r?t:re(t),_t(t,n)&&(this._rawValue=t,this._value=r?t:ct(t),this.dep.trigger())}}function Wf(e){e.dep&&e.dep.trigger()}function oe(e){return me(e)?e.value:e}function ve(e){return X(e)?e():oe(e)}const Kf={get:(e,t,n)=>t==="__v_raw"?e:oe(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const o=e[t];return me(o)&&!me(n)?(o.value=n,!0):Reflect.set(e,t,n,r)}};function Ua(e){return Kt(e)?e:new Proxy(e,Kf)}class Gf{constructor(t){this.__v_isRef=!0,this._value=void 0;const n=this.dep=new wo,{get:r,set:o}=t(n.track.bind(n),n.trigger.bind(n));this._get=r,this._set=o}get value(){return this._value=this._get()}set value(t){this._set(t)}}function Va(e){return new Gf(e)}function ls(e){const t=Q(e)?new Array(e.length):{};for(const n in e)t[n]=Ka(e,n);return t}class qf{constructor(t,n,r){this._object=t,this._defaultValue=r,this.__v_isRef=!0,this._value=void 0,this._key=Ye(n)?n:String(n),this._raw=re(t);let o=!0,s=t;if(!Q(t)||Ye(this._key)||!go(this._key))do o=!Ao(s)||Qe(s);while(o&&(s=s.__v_raw));this._shallow=o}get value(){let t=this._object[this._key];return this._shallow&&(t=oe(t)),this._value=t===void 0?this._defaultValue:t}set value(t){if(this._shallow&&me(this._raw[this._key])){const n=this._object[this._key];if(me(n)){n.value=t;return}}this._object[this._key]=t}get dep(){return Af(this._raw,this._key)}}class zf{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0,this._value=void 0}get value(){return this._value=this._getter()}}function Wa(e,t,n){return me(e)?e:X(e)?new zf(e):se(e)&&arguments.length>1?Ka(e,t,n):Te(e)}function Ka(e,t,n){return new qf(e,t,n)}class Jf{constructor(t,n,r){this.fn=t,this.setter=n,this._value=void 0,this.dep=new wo(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=ur-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!n,this.isSSR=r}notify(){if(this.flags|=16,!(this.flags&8)&&de!==this)return Ca(this,!0),!0}get value(){const t=this.dep.track();return Pa(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function Qf(e,t,n=!1){let r,o;return X(e)?r=e:(r=e.get,o=e.set),new Jf(r,o,n)}const Pr={},Qr=new WeakMap;let en;function Yf(e,t=!1,n=en){if(n){let r=Qr.get(n);r||Qr.set(n,r=[]),r.push(e)}}function Xf(e,t,n=ce){const{immediate:r,deep:o,once:s,scheduler:i,augmentJob:l,call:a}=n,u=_=>o?_:Qe(_)||o===!1||o===0?Vt(_,1):Vt(_);let c,f,d,p,h=!1,y=!1;if(me(e)?(f=()=>e.value,h=Qe(e)):Kt(e)?(f=()=>u(e),h=!0):Q(e)?(y=!0,h=e.some(_=>Kt(_)||Qe(_)),f=()=>e.map(_=>{if(me(_))return _.value;if(Kt(_))return u(_);if(X(_))return a?a(_,2):_()})):X(e)?t?f=a?()=>a(e,2):e:f=()=>{if(d){Mt();try{d()}finally{Lt()}}const _=en;en=c;try{return a?a(e,3,[p]):e(p)}finally{en=_}}:f=bt,t&&o){const _=f,S=o===!0?1/0:o;f=()=>Vt(_(),S)}const E=br(),w=()=>{c.stop(),E&&E.active&&Ks(E.effects,c)};if(s&&t){const _=t;t=(...S)=>{_(...S),w()}}let b=y?new Array(e.length).fill(Pr):Pr;const g=_=>{if(!(!(c.flags&1)||!c.dirty&&!_))if(t){const S=c.run();if(o||h||(y?S.some((T,C)=>_t(T,b[C])):_t(S,b))){d&&d();const T=en;en=c;try{const C=[S,b===Pr?void 0:y&&b[0]===Pr?[]:b,p];b=S,a?a(t,3,C):t(...C)}finally{en=T}}}else c.run()};return l&&l(g),c=new Ta(f),c.scheduler=i?()=>i(g,!1):g,p=_=>Yf(_,!1,c),d=c.onStop=()=>{const _=Qr.get(c);if(_){if(a)a(_,4);else for(const S of _)S();Qr.delete(c)}},t?r?g(!0):b=c.run():i?i(g.bind(null,!0),!0):c.run(),w.pause=c.pause.bind(c),w.resume=c.resume.bind(c),w.stop=w,w}function Vt(e,t=1/0,n){if(t<=0||!se(e)||e.__v_skip||(n=n||new Map,(n.get(e)||0)>=t))return e;if(n.set(e,t),t--,me(e))Vt(e.value,t,n);else if(Q(e))for(let r=0;r<e.length;r++)Vt(e[r],t,n);else if(pa(e)||An(e))e.forEach(r=>{Vt(r,t,n)});else if(ma(e)){for(const r in e)Vt(e[r],t,n);for(const r of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,r)&&Vt(e[r],t,n)}return e}function wr(e,t,n,r){try{return r?e(...r):e()}catch(o){Fn(o,t,n)}}function ut(e,t,n,r){if(X(e)){const o=wr(e,t,n,r);return o&&ha(o)&&o.catch(s=>{Fn(s,t,n)}),o}if(Q(e)){const o=[];for(let s=0;s<e.length;s++)o.push(ut(e[s],t,n,r));return o}}function Fn(e,t,n,r=!0){const o=t?t.vnode:null,{errorHandler:s,throwUnhandledErrorInProduction:i}=t&&t.appContext.config||ce;if(t){let l=t.parent;const a=t.proxy,u=`https://vuejs.org/error-reference/#runtime-${n}`;for(;l;){const c=l.ec;if(c){for(let f=0;f<c.length;f++)if(c[f](e,a,u)===!1)return}l=l.parent}if(s){Mt(),wr(s,null,10,[e,a,u]),Lt();return}}Zf(e,n,o,r,i)}function Zf(e,t,n,r=!0,o=!1){if(o)throw e;console.error(e)}const De=[];let ht=-1;const Cn=[];let $t=null,wn=0;const Ga=Promise.resolve();let Yr=null;function Et(e){const t=Yr||Ga;return e?t.then(this?e.bind(this):e):t}function ed(e){let t=ht+1,n=De.length;for(;t<n;){const r=t+n>>>1,o=De[r],s=dr(o);s<e||s===e&&o.flags&2?t=r+1:n=r}return t}function Ys(e){if(!(e.flags&1)){const t=dr(e),n=De[De.length-1];!n||!(e.flags&2)&&t>=dr(n)?De.push(e):De.splice(ed(t),0,e),e.flags|=1,qa()}}function qa(){Yr||(Yr=Ga.then(za))}function as(e){Q(e)?Cn.push(...e):$t&&e.id===-1?$t.splice(wn+1,0,e):e.flags&1||(Cn.push(e),e.flags|=1),qa()}function ki(e,t,n=ht+1){for(;n<De.length;n++){const r=De[n];if(r&&r.flags&2){if(e&&r.id!==e.uid)continue;De.splice(n,1),n--,r.flags&4&&(r.flags&=-2),r(),r.flags&4||(r.flags&=-2)}}}function Xr(e){if(Cn.length){const t=[...new Set(Cn)].sort((n,r)=>dr(n)-dr(r));if(Cn.length=0,$t){$t.push(...t);return}for($t=t,wn=0;wn<$t.length;wn++){const n=$t[wn];n.flags&4&&(n.flags&=-2),n.flags&8||n(),n.flags&=-2}$t=null,wn=0}}const dr=e=>e.id==null?e.flags&2?-1:1/0:e.id;function za(e){try{for(ht=0;ht<De.length;ht++){const t=De[ht];t&&!(t.flags&8)&&(t.flags&4&&(t.flags&=-2),wr(t,t.i,t.i?15:14),t.flags&4||(t.flags&=-2))}}finally{for(;ht<De.length;ht++){const t=De[ht];t&&(t.flags&=-2)}ht=-1,De.length=0,Xr(),Yr=null,(De.length||Cn.length)&&za()}}let Be=null,Ja=null;function Zr(e){const t=Be;return Be=e,Ja=e&&e.type.__scopeId||null,t}function ln(e,t=Be,n){if(!t||e._n)return e;const r=(...o)=>{r._d&&so(-1);const s=Zr(t);let i;try{i=e(...o)}finally{Zr(s),r._d&&so(1)}return i};return r._n=!0,r._c=!0,r._d=!0,r}function gt(e,t,n,r){const o=e.dirs,s=t&&t.dirs;for(let i=0;i<o.length;i++){const l=o[i];s&&(l.oldValue=s[i].value);let a=l.dir[r];a&&(Mt(),ut(a,n,8,[e.el,l,e,t]),Lt())}}function at(e,t){if(Ie){let n=Ie.provides;const r=Ie.parent&&Ie.parent.provides;r===n&&(n=Ie.provides=Object.create(r)),n[e]=t}}function be(e,t,n=!1){const r=Ue();if(r||an){let o=an?an._context.provides:r?r.parent==null||r.ce?r.vnode.appContext&&r.vnode.appContext.provides:r.parent.provides:void 0;if(o&&e in o)return o[e];if(arguments.length>1)return n&&X(t)?t.call(r&&r.proxy):t}}function Dn(){return!!(Ue()||an)}const td=Symbol.for("v-scx"),nd=()=>be(td);function Xs(e,t){return Co(e,null,t)}function tb(e,t){return Co(e,null,{flush:"post"})}function Ne(e,t,n){return Co(e,t,n)}function Co(e,t,n=ce){const{immediate:r,deep:o,flush:s,once:i}=n,l=Pe({},n),a=t&&r||!t&&s!=="post";let u;if(Mn){if(s==="sync"){const p=nd();u=p.__watcherHandles||(p.__watcherHandles=[])}else if(!a){const p=()=>{};return p.stop=bt,p.resume=bt,p.pause=bt,p}}const c=Ie;l.call=(p,h,y)=>ut(p,c,h,y);let f=!1;s==="post"?l.scheduler=p=>{Ee(p,c&&c.suspense)}:s!=="sync"&&(f=!0,l.scheduler=(p,h)=>{h?p():Ys(p)}),l.augmentJob=p=>{t&&(p.flags|=4),f&&(p.flags|=2,c&&(p.id=c.uid,p.i=c))};const d=Xf(e,t,l);return Mn&&(u?u.push(d):a&&d()),d}function rd(e,t,n){const r=this.proxy,o=pe(e)?e.includes(".")?Qa(r,e):()=>r[e]:e.bind(r,r);let s;X(t)?s=t:(s=t.handler,n=t);const i=Sr(this),l=Co(o,s.bind(r),n);return i(),l}function Qa(e,t){const n=t.split(".");return()=>{let r=e;for(let o=0;o<n.length&&r;o++)r=r[n[o]];return r}}const Jt=new WeakMap,Ya=Symbol("_vte"),Xa=e=>e.__isTeleport,nn=e=>e&&(e.disabled||e.disabled===""),od=e=>e&&(e.defer||e.defer===""),Oi=e=>typeof SVGElement<"u"&&e instanceof SVGElement,Ii=e=>typeof MathMLElement=="function"&&e instanceof MathMLElement,cs=(e,t)=>{const n=e&&e.to;return pe(n)?t?t(n):null:n},sd={name:"Teleport",__isTeleport:!0,process(e,t,n,r,o,s,i,l,a,u){const{mc:c,pc:f,pbc:d,o:{insert:p,querySelector:h,createText:y,createComment:E}}=u,w=nn(t.props);let{dynamicChildren:b}=t;const g=(T,C,N)=>{T.shapeFlag&16&&c(T.children,C,N,o,s,i,l,a)},_=(T=t)=>{const C=nn(T.props),N=T.target=cs(T.props,h),O=us(N,T,y,p);N&&(i!=="svg"&&Oi(N)?i="svg":i!=="mathml"&&Ii(N)&&(i="mathml"),o&&o.isCE&&(o.ce._teleportTargets||(o.ce._teleportTargets=new Set)).add(N),C||(g(T,N,O),Xn(T,!1)))},S=T=>{const C=()=>{Jt.get(T)===C&&(Jt.delete(T),nn(T.props)&&(g(T,n,T.anchor),Xn(T,!0)),_(T))};Jt.set(T,C),Ee(C,s)};if(e==null){const T=t.el=y(""),C=t.anchor=y("");if(p(T,n,r),p(C,n,r),od(t.props)||s&&s.pendingBranch){S(t);return}w&&(g(t,n,C),Xn(t,!0)),_()}else{t.el=e.el;const T=t.anchor=e.anchor,C=Jt.get(e);if(C){C.flags|=8,Jt.delete(e),S(t);return}t.targetStart=e.targetStart;const N=t.target=e.target,O=t.targetAnchor=e.targetAnchor,k=nn(e.props),U=k?n:N,R=k?T:O;if(i==="svg"||Oi(N)?i="svg":(i==="mathml"||Ii(N))&&(i="mathml"),b?(d(e.dynamicChildren,b,U,o,s,i,l),oi(e,t,!0)):a||f(e,t,U,R,o,s,i,l,!1),w)k?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):kr(t,n,T,u,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const H=t.target=cs(t.props,h);H&&kr(t,H,null,u,0)}else k&&kr(t,N,O,u,1);Xn(t,w)}},remove(e,t,n,{um:r,o:{remove:o}},s){const{shapeFlag:i,children:l,anchor:a,targetStart:u,targetAnchor:c,target:f,props:d}=e;let p=s||!nn(d);const h=Jt.get(e);if(h&&(h.flags|=8,Jt.delete(e),p=!1),f&&(o(u),o(c)),s&&o(a),i&16)for(let y=0;y<l.length;y++){const E=l[y];r(E,t,n,p,!!E.dynamicChildren)}},move:kr,hydrate:id};function kr(e,t,n,{o:{insert:r},m:o},s=2){s===0&&r(e.targetAnchor,t,n);const{el:i,anchor:l,shapeFlag:a,children:u,props:c}=e,f=s===2;if(f&&r(i,t,n),(!f||nn(c))&&a&16)for(let d=0;d<u.length;d++)o(u[d],t,n,2);f&&r(l,t,n)}function id(e,t,n,r,o,s,{o:{nextSibling:i,parentNode:l,querySelector:a,insert:u,createText:c}},f){function d(E,w){let b=w;for(;b;){if(b&&b.nodeType===8){if(b.data==="teleport start anchor")t.targetStart=b;else if(b.data==="teleport anchor"){t.targetAnchor=b,E._lpa=t.targetAnchor&&i(t.targetAnchor);break}}b=i(b)}}function p(E,w){w.anchor=f(i(E),w,l(E),n,r,o,s)}const h=t.target=cs(t.props,a),y=nn(t.props);if(h){const E=h._lpa||h.firstChild;t.shapeFlag&16&&(y?(p(e,t),d(h,E),t.targetAnchor||us(h,t,c,u,l(e)===h?e:null)):(t.anchor=i(e),d(h,E),t.targetAnchor||us(h,t,c,u),f(E&&i(E),t,h,n,r,o,s))),Xn(t,y)}else y&&t.shapeFlag&16&&(p(e,t),t.targetStart=e,t.targetAnchor=i(e));return t.anchor&&i(t.anchor)}const nb=sd;function Xn(e,t){const n=e.ctx;if(n&&n.ut){let r,o;for(t?(r=e.el,o=e.anchor):(r=e.targetStart,o=e.targetAnchor);r&&r!==o;)r.nodeType===1&&r.setAttribute("data-v-owner",n.uid),r=r.nextSibling;n.ut()}}function us(e,t,n,r,o=null){const s=t.targetStart=n(""),i=t.targetAnchor=n("");return s[Ya]=i,e&&(r(s,e,o),r(i,e,o)),i}const mt=Symbol("_leaveCb"),Gn=Symbol("_enterCb");function ld(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return Bn(()=>{e.isMounted=!0}),$n(()=>{e.isUnmounting=!0}),e}const Ze=[Function,Array],Za={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Ze,onEnter:Ze,onAfterEnter:Ze,onEnterCancelled:Ze,onBeforeLeave:Ze,onLeave:Ze,onAfterLeave:Ze,onLeaveCancelled:Ze,onBeforeAppear:Ze,onAppear:Ze,onAfterAppear:Ze,onAppearCancelled:Ze},ec=e=>{const t=e.subTree;return t.component?ec(t.component):t},ad={name:"BaseTransition",props:Za,setup(e,{slots:t}){const n=Ue(),r=ld();return()=>{const o=t.default&&rc(t.default(),!0);if(!o||!o.length)return;const s=tc(o),i=re(e),{mode:l}=i;if(r.isLeaving)return Bo(s);const a=Ni(s);if(!a)return Bo(s);let u=fs(a,i,r,n,f=>u=f);a.type!==Se&&In(a,u);let c=n.subTree&&Ni(n.subTree);if(c&&c.type!==Se&&!it(c,a)&&ec(n).type!==Se){let f=fs(c,i,r,n);if(In(c,f),l==="out-in"&&a.type!==Se)return r.isLeaving=!0,f.afterLeave=()=>{r.isLeaving=!1,n.job.flags&8||n.update(),delete f.afterLeave,c=void 0},Bo(s);l==="in-out"&&a.type!==Se?f.delayLeave=(d,p,h)=>{const y=nc(r,c);y[String(c.key)]=c,d[mt]=()=>{p(),d[mt]=void 0,delete u.delayedLeave,c=void 0},u.delayedLeave=()=>{h(),delete u.delayedLeave,c=void 0}}:c=void 0}else c&&(c=void 0);return s}}};function tc(e){let t=e[0];if(e.length>1){for(const n of e)if(n.type!==Se){t=n;break}}return t}const cd=ad;function nc(e,t){const{leavingVNodes:n}=e;let r=n.get(t.type);return r||(r=Object.create(null),n.set(t.type,r)),r}function fs(e,t,n,r,o){const{appear:s,mode:i,persisted:l=!1,onBeforeEnter:a,onEnter:u,onAfterEnter:c,onEnterCancelled:f,onBeforeLeave:d,onLeave:p,onAfterLeave:h,onLeaveCancelled:y,onBeforeAppear:E,onAppear:w,onAfterAppear:b,onAppearCancelled:g}=t,_=String(e.key),S=nc(n,e),T=(O,k)=>{O&&ut(O,r,9,k)},C=(O,k)=>{const U=k[1];T(O,k),Q(O)?O.every(R=>R.length<=1)&&U():O.length<=1&&U()},N={mode:i,persisted:l,beforeEnter(O){let k=a;if(!n.isMounted)if(s)k=E||a;else return;O[mt]&&O[mt](!0);const U=S[_];U&&it(e,U)&&U.el[mt]&&U.el[mt](),T(k,[O])},enter(O){if(S[_]===e)return;let k=u,U=c,R=f;if(!n.isMounted)if(s)k=w||u,U=b||c,R=g||f;else return;let H=!1;O[Gn]=z=>{H||(H=!0,z?T(R,[O]):T(U,[O]),N.delayedLeave&&N.delayedLeave(),O[Gn]=void 0)};const D=O[Gn].bind(null,!1);k?C(k,[O,D]):D()},leave(O,k){const U=String(e.key);if(O[Gn]&&O[Gn](!0),n.isUnmounting)return k();T(d,[O]);let R=!1;O[mt]=D=>{R||(R=!0,k(),D?T(y,[O]):T(h,[O]),O[mt]=void 0,S[U]===e&&delete S[U])};const H=O[mt].bind(null,!1);S[U]=e,p?C(p,[O,H]):H()},clone(O){const k=fs(O,t,n,r,o);return o&&o(k),k}};return N}function Bo(e){if(Er(e))return e=Ht(e),e.children=null,e}function Ni(e){if(!Er(e))return Xa(e.type)&&e.children?tc(e.children):e;if(e.component)return e.component.subTree;const{shapeFlag:t,children:n}=e;if(n){if(t&16)return n[0];if(t&32&&X(n.default))return n.default()}}function In(e,t){e.shapeFlag&6&&e.component?(e.transition=t,In(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 rc(e,t=!1,n){let r=[],o=0;for(let s=0;s<e.length;s++){let i=e[s];const l=n==null?i.key:String(n)+String(i.key!=null?i.key:s);i.type===He?(i.patchFlag&128&&o++,r=r.concat(rc(i.children,t,l))):(t||i.type!==Se)&&r.push(l!=null?Ht(i,{key:l}):i)}if(o>1)for(let s=0;s<r.length;s++)r[s].patchFlag=-2;return r}function ke(e,t){return X(e)?Pe({name:e.name},t,{setup:e}):e}function rb(){const e=Ue();return e?(e.appContext.config.idPrefix||"v")+"-"+e.ids[0]+e.ids[1]++:""}function Zs(e){e.ids=[e.ids[0]+e.ids[2]+++"-",0,0]}function ob(e){const t=Ue(),n=xe(null);if(t){const o=t.refs===ce?t.refs={}:t.refs;Object.defineProperty(o,e,{enumerable:!0,get:()=>n.value,set:s=>n.value=s})}return n}function Mi(e,t){let n;return!!((n=Object.getOwnPropertyDescriptor(e,t))&&!n.configurable)}const eo=new WeakMap;function Rn(e,t,n,r,o=!1){if(Q(e)){e.forEach((y,E)=>Rn(y,t&&(Q(t)?t[E]:t),n,r,o));return}if(It(r)&&!o){r.shapeFlag&512&&r.type.__asyncResolved&&r.component.subTree.component&&Rn(e,t,n,r.component.subTree);return}const s=r.shapeFlag&4?ai(r.component):r.el,i=o?null:s,{i:l,r:a}=e,u=t&&t.r,c=l.refs===ce?l.refs={}:l.refs,f=l.setupState,d=re(f),p=f===ce?da:y=>Mi(c,y)?!1:le(d,y),h=(y,E)=>!(E&&Mi(c,E));if(u!=null&&u!==a){if(Li(t),pe(u))c[u]=null,p(u)&&(f[u]=null);else if(me(u)){const y=t;h(u,y.k)&&(u.value=null),y.k&&(c[y.k]=null)}}if(X(a))wr(a,l,12,[i,c]);else{const y=pe(a),E=me(a);if(y||E){const w=()=>{if(e.f){const b=y?p(a)?f[a]:c[a]:h()||!e.k?a.value:c[e.k];if(o)Q(b)&&Ks(b,s);else if(Q(b))b.includes(s)||b.push(s);else if(y)c[a]=[s],p(a)&&(f[a]=c[a]);else{const g=[s];h(a,e.k)&&(a.value=g),e.k&&(c[e.k]=g)}}else y?(c[a]=i,p(a)&&(f[a]=i)):E&&(h(a,e.k)&&(a.value=i),e.k&&(c[e.k]=i))};if(i){const b=()=>{w(),eo.delete(e)};b.id=-1,eo.set(e,b),Ee(b,n)}else Li(e),w()}}}function Li(e){const t=eo.get(e);t&&(t.flags|=8,eo.delete(e))}let Hi=!1;const bn=()=>{Hi||(console.error("Hydration completed but contains mismatches."),Hi=!0)},ud=e=>e.namespaceURI.includes("svg")&&e.tagName!=="foreignObject",fd=e=>e.namespaceURI.includes("MathML"),Or=e=>{if(e.nodeType===1){if(ud(e))return"svg";if(fd(e))return"mathml"}},Sn=e=>e.nodeType===8;function dd(e){const{mt:t,p:n,o:{patchProp:r,createText:o,nextSibling:s,parentNode:i,remove:l,insert:a,createComment:u}}=e,c=(g,_)=>{if(!_.hasChildNodes()){n(null,g,_),Xr(),_._vnode=g;return}f(_.firstChild,g,null,null,null),Xr(),_._vnode=g},f=(g,_,S,T,C,N=!1)=>{N=N||!!_.dynamicChildren;const O=Sn(g)&&g.data==="[",k=()=>y(g,_,S,T,C,O),{type:U,ref:R,shapeFlag:H,patchFlag:D}=_;let z=g.nodeType;_.el=g,D===-2&&(N=!1,_.dynamicChildren=null);let F=null;switch(U){case cn:z!==3?_.children===""?(a(_.el=o(""),i(g),g),F=g):F=k():(g.data!==_.children&&(bn(),g.data=_.children),F=s(g));break;case Se:b(g)?(F=s(g),w(_.el=g.content.firstChild,g,S)):z!==8||O?F=k():F=s(g);break;case $r:if(O&&(g=s(g),z=g.nodeType),z===1||z===3){F=g;const Z=!_.children.length;for(let K=0;K<_.staticCount;K++)Z&&(_.children+=F.nodeType===1?F.outerHTML:F.data),K===_.staticCount-1&&(_.anchor=F),F=s(F);return O?s(F):F}else k();break;case He:O?F=h(g,_,S,T,C,N):F=k();break;default:if(H&1)(z!==1||_.type.toLowerCase()!==g.tagName.toLowerCase())&&!b(g)?F=k():F=d(g,_,S,T,C,N);else if(H&6){_.slotScopeIds=C;const Z=i(g);if(O?F=E(g):Sn(g)&&g.data==="teleport start"?F=E(g,g.data,"teleport end"):F=s(g),t(_,Z,null,S,T,Or(Z),N),It(_)&&!_.type.__asyncResolved){let K;O?(K=ye(He),K.anchor=F?F.previousSibling:Z.lastChild):K=g.nodeType===3?Lc(""):ye("div"),K.el=g,_.component.subTree=K}}else H&64?z!==8?F=k():F=_.type.hydrate(g,_,S,T,C,N,e,p):H&128&&(F=_.type.hydrate(g,_,S,T,Or(i(g)),C,N,e,f))}return R!=null&&Rn(R,null,T,_),F},d=(g,_,S,T,C,N)=>{N=N||!!_.dynamicChildren;const{type:O,props:k,patchFlag:U,shapeFlag:R,dirs:H,transition:D}=_,z=O==="input"||O==="option";if(z||U!==-1){H&>(_,null,S,"created");let F=!1;if(b(g)){F=Cc(null,D)&&S&&S.vnode.props&&S.vnode.props.appear;const K=g.content.firstChild;if(F){const ue=K.getAttribute("class");ue&&(K.$cls=ue),D.beforeEnter(K)}w(K,g,S),_.el=g=K}if(R&16&&!(k&&(k.innerHTML||k.textContent))){let K=p(g.firstChild,_,g,S,T,C,N);for(;K;){Ir(g,1)||bn();const ue=K;K=K.nextSibling,l(ue)}}else if(R&8){let K=_.children;K[0]===`
|
|
3
3
|
`&&(g.tagName==="PRE"||g.tagName==="TEXTAREA")&&(K=K.slice(1));const{textContent:ue}=g;ue!==K&&ue!==K.replace(/\r\n|\r/g,`
|
|
4
|
-
`)&&(Ir(g,0)||bn(),g.textContent=_.children)}if(k){if(z||!N||U&48){const K=g.tagName.includes("-");for(const ue in k)(z&&(ue.endsWith("value")||ue==="indeterminate")||vr(ue)&&!on(ue)||ue[0]==="."||K&&!on(ue))&&r(g,ue,null,k[ue],void 0,S)}else if(k.onClick)r(g,"onClick",null,k.onClick,void 0,S);else if(U&4&&Kt(k.style))for(const K in k.style)k.style[K]}let Z;(Z=k&&k.onVnodeBeforeMount)&&We(Z,S,_),H&>(_,null,S,"beforeMount"),((Z=k&&k.onVnodeMounted)||H||F)&&kc(()=>{Z&&We(Z,S,_),F&&D.enter(g),H&>(_,null,S,"mounted")},T)}return g.nextSibling},p=(g,_,S,T,C,N,O)=>{O=O||!!_.dynamicChildren;const k=_.children,U=k.length;for(let R=0;R<U;R++){const H=O?k[R]:k[R]=Je(k[R]),D=H.type===cn;g?(D&&!O&&R+1<U&&Je(k[R+1]).type===cn&&(a(o(g.data.slice(H.children.length)),S,s(g)),g.data=H.children),g=f(g,H,T,C,N,O)):D&&!H.children?a(H.el=o(""),S):(Ir(S,1)||bn(),n(null,H,S,null,T,C,Or(S),N))}return g},h=(g,_,S,T,C,N)=>{const{slotScopeIds:O}=_;O&&(C=C?C.concat(O):O);const k=i(g),U=p(s(g),_,k,S,T,C,N);return U&&Sn(U)&&U.data==="]"?s(_.anchor=U):(bn(),a(_.anchor=u("]"),k,U),U)},y=(g,_,S,T,C,N)=>{if(Ir(g.parentElement,1)||bn(),_.el=null,N){const U=E(g);for(;;){const R=s(g);if(R&&R!==U)l(R);else break}}const O=s(g),k=i(g);return l(g),n(null,_,k,O,S,T,Or(k),C),S&&(S.vnode.el=_.el,Po(S,_.el)),O},E=(g,_="[",S="]")=>{let T=0;for(;g;)if(g=s(g),g&&Sn(g)&&(g.data===_&&T++,g.data===S)){if(T===0)return s(g);T--}return g},w=(g,_,S)=>{const T=_.parentNode;T&&T.replaceChild(g,_);let C=S;for(;C;)C.vnode.el===_&&(C.vnode.el=C.subTree.el=g),C=C.parent},b=g=>g.nodeType===1&&g.tagName==="TEMPLATE";return[c,f]}const ji="data-allow-mismatch",pd={0:"text",1:"children",2:"class",3:"style",4:"attribute"};function Ir(e,t){if(t===0||t===1)for(;e&&!e.hasAttribute(ji);)e=e.parentElement;const n=e&&e.getAttribute(ji);if(n==null)return!1;if(n==="")return!0;{const r=n.split(",");return t===0&&r.includes("children")?!0:r.includes(pd[t])}}_o().requestIdleCallback;_o().cancelIdleCallback;function hd(e,t){if(Sn(e)&&e.data==="["){let n=1,r=e.nextSibling;for(;r;){if(r.nodeType===1){if(t(r)===!1)break}else if(Sn(r))if(r.data==="]"){if(--n===0)break}else r.data==="["&&n++;r=r.nextSibling}}else t(e)}const It=e=>!!e.type.__asyncLoader;function to(e){X(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:r,delay:o=200,hydrate:s,timeout:i,suspensible:l=!0,onError:a}=e;let u=null,c,f=0;const d=()=>(f++,u=null,p()),p=()=>{let h;return u||(h=u=t().catch(y=>{if(y=y instanceof Error?y:new Error(String(y)),a)return new Promise((E,w)=>{a(y,()=>E(d()),()=>w(y),f+1)});throw y}).then(y=>h!==u&&u?u:(y&&(y.__esModule||y[Symbol.toStringTag]==="Module")&&(y=y.default),c=y,y)))};return ke({name:"AsyncComponentWrapper",__asyncLoader:p,__asyncHydrate(h,y,E){let w=!1;(y.bu||(y.bu=[])).push(()=>w=!0);const b=()=>{w||E()},g=s?()=>{const _=s(b,S=>hd(h,S));_&&(y.bum||(y.bum=[])).push(_)}:b;c?g():p().then(()=>!y.isUnmounted&&g())},get __asyncResolved(){return c},setup(){const h=Ie;if(Zs(h),c)return()=>Nr(c,h);const y=g=>{u=null,Fn(g,h,13,!r)};if(l&&h.suspense||Mn)return p().then(g=>()=>Nr(g,h)).catch(g=>(y(g),()=>r?ye(r,{error:g}):null));const E=Te(!1),w=Te(),b=Te(!!o);return o&&setTimeout(()=>{b.value=!1},o),i!=null&&setTimeout(()=>{if(!E.value&&!w.value){const g=new Error(`Async component timed out after ${i}ms.`);y(g),w.value=g}},i),p().then(()=>{E.value=!0,h.parent&&Er(h.parent.vnode)&&h.parent.update()}).catch(g=>{y(g),w.value=g}),()=>{if(E.value&&c)return Nr(c,h);if(w.value&&r)return ye(r,{error:w.value});if(n&&!b.value)return Nr(n,h)}}})}function Nr(e,t){const{ref:n,props:r,children:o,ce:s}=t.vnode,i=ye(e,r,o);return i.ref=n,i.ce=s,delete t.vnode.ce,i}const Er=e=>e.type.__isKeepAlive,gd={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=Ue(),r=n.ctx;if(!r.renderer)return()=>{const b=t.default&&t.default();return b&&b.length===1?b[0]:b};const o=new Map,s=new Set;let i=null;const l=n.suspense,{renderer:{p:a,m:u,um:c,o:{createElement:f}}}=r,d=f("div");r.activate=(b,g,_,S,T)=>{const C=b.component;u(b,g,_,0,l),a(C.vnode,b,g,_,C,l,S,b.slotScopeIds,T),Ee(()=>{C.isDeactivated=!1,C.a&&tr(C.a);const N=b.props&&b.props.onVnodeMounted;N&&We(N,C.parent,b)},l)},r.deactivate=b=>{const g=b.component;ro(g.m),ro(g.a),u(b,d,null,1,l),Ee(()=>{g.da&&tr(g.da);const _=b.props&&b.props.onVnodeUnmounted;_&&We(_,g.parent,b),g.isDeactivated=!0},l)};function p(b){$o(b),c(b,n,l,!0)}function h(b){o.forEach((g,_)=>{const S=ws(It(g)?g.type.__asyncResolved||{}:g.type);S&&!b(S)&&y(_)})}function y(b){const g=o.get(b);g&&(!i||!it(g,i))?p(g):i&&$o(i),o.delete(b),s.delete(b)}Ne(()=>[e.include,e.exclude],([b,g])=>{b&&h(_=>Zn(b,_)),g&&h(_=>!Zn(g,_))},{flush:"post",deep:!0});let E=null;const w=()=>{E!=null&&(oo(n.subTree.type)?Ee(()=>{o.set(E,Mr(n.subTree))},n.subTree.suspense):o.set(E,Mr(n.subTree)))};return Bn(w),ei(w),$n(()=>{o.forEach(b=>{const{subTree:g,suspense:_}=n,S=Mr(g);if(b.type===S.type&&b.key===S.key){$o(S);const T=S.component.da;T&&Ee(T,_);return}p(b)})}),()=>{if(E=null,!t.default)return i=null;const b=t.default(),g=b[0];if(b.length>1)return i=null,b;if(!dn(g)||!(g.shapeFlag&4)&&!(g.shapeFlag&128))return i=null,g;let _=Mr(g);if(_.type===Se)return i=null,_;const S=_.type,T=ws(It(_)?_.type.__asyncResolved||{}:S),{include:C,exclude:N,max:O}=e;if(C&&(!T||!Zn(C,T))||N&&T&&Zn(N,T))return _.shapeFlag&=-257,i=_,g;const k=_.key==null?S:_.key,U=o.get(k);return _.el&&(_=Ht(_),g.shapeFlag&128&&(g.ssContent=_)),E=k,U?(_.el=U.el,_.component=U.component,_.transition&&In(_,_.transition),_.shapeFlag|=512,s.delete(k),s.add(k)):(s.add(k),O&&s.size>parseInt(O,10)&&y(s.values().next().value)),_.shapeFlag|=256,i=_,oo(g.type)?g:_}}},md=gd;function Zn(e,t){return Q(e)?e.some(n=>Zn(n,t)):pe(e)?e.split(",").includes(t):cf(e)?(e.lastIndex=0,e.test(t)):!1}function oc(e,t){ic(e,"a",t)}function sc(e,t){ic(e,"da",t)}function ic(e,t,n=Ie){const r=e.__wdc||(e.__wdc=()=>{let o=n;for(;o;){if(o.isDeactivated)return;o=o.parent}return e()});if(Ro(t,r,n),n){let o=n.parent;for(;o&&o.parent;)Er(o.parent.vnode)&&yd(r,t,n,o),o=o.parent}}function yd(e,t,n,r){const o=Ro(t,e,r,!0);St(()=>{Ks(r[t],o)},n)}function $o(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function Mr(e){return e.shapeFlag&128?e.ssContent:e}function Ro(e,t,n=Ie,r=!1){if(n){const o=n[e]||(n[e]=[]),s=t.__weh||(t.__weh=(...i)=>{Mt();const l=Sr(n),a=ut(t,n,e,i);return l(),Lt(),a});return r?o.unshift(s):o.push(s),s}}const jt=e=>(t,n=Ie)=>{(!Mn||e==="sp")&&Ro(e,(...r)=>t(...r),n)},_d=jt("bm"),Bn=jt("m"),vd=jt("bu"),ei=jt("u"),$n=jt("bum"),St=jt("um"),bd=jt("sp"),wd=jt("rtg"),Ed=jt("rtc");function lc(e,t=Ie){Ro("ec",e,t)}const ac="components";function sb(e,t){return uc(ac,e,!0,t)||e}const cc=Symbol.for("v-ndc");function Sd(e){return pe(e)?uc(ac,e,!1)||e:e||cc}function uc(e,t,n=!0,r=!1){const o=Be||Ie;if(o){const s=o.type;{const l=ws(s,!1);if(l&&(l===t||l===$e(t)||l===yo($e(t))))return s}const i=Fi(o[e]||s[e],t)||Fi(o.appContext[e],t);return!i&&r?s:i}}function Fi(e,t){return e&&(e[t]||e[$e(t)]||e[yo($e(t))])}function ib(e,t,n,r){let o;const s=n,i=Q(e);if(i||pe(e)){const l=i&&Kt(e);let a=!1,u=!1;l&&(a=!Qe(e),u=wt(e),e=Eo(e)),o=new Array(e.length);for(let c=0,f=e.length;c<f;c++)o[c]=t(a?u?On(ct(e[c])):ct(e[c]):e[c],c,void 0,s)}else if(typeof e=="number"){o=new Array(e);for(let l=0;l<e;l++)o[l]=t(l+1,l,void 0,s)}else if(se(e))if(e[Symbol.iterator])o=Array.from(e,(l,a)=>t(l,a,void 0,s));else{const l=Object.keys(e);o=new Array(l.length);for(let a=0,u=l.length;a<u;a++){const c=l[a];o[a]=t(e[c],c,a,s)}}else o=[];return o}function ti(e,t,n={},r,o){if(Be.ce||Be.parent&&It(Be.parent)&&Be.parent.ce){const u=Object.keys(n).length>0;return t!=="default"&&(n.name=t),Ke(),tt(He,null,[ye("slot",n,r&&r())],u?-2:64)}let s=e[t];s&&s._c&&(s._d=!1),Ke();const i=s&&fc(s(n)),l=n.key||i&&i.key,a=tt(He,{key:(l&&!Ye(l)?l:`_${t}`)+(!i&&r?"_fb":"")},i||(r?r():[]),i&&e._===1?64:-2);return a.scopeId&&(a.slotScopeIds=[a.scopeId+"-s"]),s&&s._c&&(s._d=!0),a}function fc(e){return e.some(t=>dn(t)?!(t.type===Se||t.type===He&&!fc(t.children)):!0)?e:null}function lb(e,t){const n={};for(const r in e)n[Br(r)]=e[r];return n}const ds=e=>e?jc(e)?ai(e):ds(e.parent):null,or=Pe(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=>ds(e.parent),$root:e=>ds(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>pc(e),$forceUpdate:e=>e.f||(e.f=()=>{Ys(e.update)}),$nextTick:e=>e.n||(e.n=Et.bind(e.proxy)),$watch:e=>rd.bind(e)}),Uo=(e,t)=>e!==ce&&!e.__isScriptSetup&&le(e,t),Td={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:r,data:o,props:s,accessCache:i,type:l,appContext:a}=e;if(t[0]!=="$"){const d=i[t];if(d!==void 0)switch(d){case 1:return r[t];case 2:return o[t];case 4:return n[t];case 3:return s[t]}else{if(Uo(r,t))return i[t]=1,r[t];if(o!==ce&&le(o,t))return i[t]=2,o[t];if(le(s,t))return i[t]=3,s[t];if(n!==ce&&le(n,t))return i[t]=4,n[t];hs&&(i[t]=0)}}const u=or[t];let c,f;if(u)return t==="$attrs"&&Le(e.attrs,"get",""),u(e);if((c=l.__cssModules)&&(c=c[t]))return c;if(n!==ce&&le(n,t))return i[t]=4,n[t];if(f=a.config.globalProperties,le(f,t))return f[t]},set({_:e},t,n){const{data:r,setupState:o,ctx:s}=e;return Uo(o,t)?(o[t]=n,!0):r!==ce&&le(r,t)?(r[t]=n,!0):le(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(s[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:o,props:s,type:i}},l){let a;return!!(n[l]||e!==ce&&l[0]!=="$"&&le(e,l)||Uo(t,l)||le(s,l)||le(r,l)||le(or,l)||le(o.config.globalProperties,l)||(a=i.__cssModules)&&a[l])},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:le(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function ps(e){return Q(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}function ab(e,t){const n=ps(e);for(const r in t){if(r.startsWith("__skip"))continue;let o=n[r];o?Q(o)||X(o)?o=n[r]={type:o,default:t[r]}:o.default=t[r]:o===null&&(o=n[r]={default:t[r]}),o&&t[`__skip_${r}`]&&(o.skipFactory=!0)}return n}let hs=!0;function Ad(e){const t=pc(e),n=e.proxy,r=e.ctx;hs=!1,t.beforeCreate&&Di(t.beforeCreate,e,"bc");const{data:o,computed:s,methods:i,watch:l,provide:a,inject:u,created:c,beforeMount:f,mounted:d,beforeUpdate:p,updated:h,activated:y,deactivated:E,beforeDestroy:w,beforeUnmount:b,destroyed:g,unmounted:_,render:S,renderTracked:T,renderTriggered:C,errorCaptured:N,serverPrefetch:O,expose:k,inheritAttrs:U,components:R,directives:H,filters:D}=t;if(u&&Cd(u,r,null),i)for(const Z in i){const K=i[Z];X(K)&&(r[Z]=K.bind(n))}if(o){const Z=o.call(n,n);se(Z)&&(e.data=nt(Z))}if(hs=!0,s)for(const Z in s){const K=s[Z],ue=X(K)?K.bind(n,n):X(K.get)?K.get.bind(n,n):bt,Ft=!X(K)&&X(K.set)?K.set.bind(n):bt,dt=ge({get:ue,set:Ft});Object.defineProperty(r,Z,{enumerable:!0,configurable:!0,get:()=>dt.value,set:Ve=>dt.value=Ve})}if(l)for(const Z in l)dc(l[Z],r,n,Z);if(a){const Z=X(a)?a.call(n):a;Reflect.ownKeys(Z).forEach(K=>{at(K,Z[K])})}c&&Di(c,e,"c");function F(Z,K){Q(K)?K.forEach(ue=>Z(ue.bind(n))):K&&Z(K.bind(n))}if(F(_d,f),F(Bn,d),F(vd,p),F(ei,h),F(oc,y),F(sc,E),F(lc,N),F(Ed,T),F(wd,C),F($n,b),F(St,_),F(bd,O),Q(k))if(k.length){const Z=e.exposed||(e.exposed={});k.forEach(K=>{Object.defineProperty(Z,K,{get:()=>n[K],set:ue=>n[K]=ue,enumerable:!0})})}else e.exposed||(e.exposed={});S&&e.render===bt&&(e.render=S),U!=null&&(e.inheritAttrs=U),R&&(e.components=R),H&&(e.directives=H),O&&Zs(e)}function Cd(e,t,n=bt){Q(e)&&(e=gs(e));for(const r in e){const o=e[r];let s;se(o)?"default"in o?s=be(o.from||r,o.default,!0):s=be(o.from||r):s=be(o),me(s)?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>s.value,set:i=>s.value=i}):t[r]=s}}function Di(e,t,n){ut(Q(e)?e.map(r=>r.bind(t.proxy)):e.bind(t.proxy),t,n)}function dc(e,t,n,r){let o=r.includes(".")?Qa(n,r):()=>n[r];if(pe(e)){const s=t[e];X(s)&&Ne(o,s)}else if(X(e))Ne(o,e.bind(n));else if(se(e))if(Q(e))e.forEach(s=>dc(s,t,n,r));else{const s=X(e.handler)?e.handler.bind(n):t[e.handler];X(s)&&Ne(o,s,e)}}function pc(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:o,optionsCache:s,config:{optionMergeStrategies:i}}=e.appContext,l=s.get(t);let a;return l?a=l:!o.length&&!n&&!r?a=t:(a={},o.length&&o.forEach(u=>no(a,u,i,!0)),no(a,t,i)),se(t)&&s.set(t,a),a}function no(e,t,n,r=!1){const{mixins:o,extends:s}=t;s&&no(e,s,n,!0),o&&o.forEach(i=>no(e,i,n,!0));for(const i in t)if(!(r&&i==="expose")){const l=Rd[i]||n&&n[i];e[i]=l?l(e[i],t[i]):t[i]}return e}const Rd={data:Bi,props:$i,emits:$i,methods:er,computed:er,beforeCreate:je,created:je,beforeMount:je,mounted:je,beforeUpdate:je,updated:je,beforeDestroy:je,beforeUnmount:je,destroyed:je,unmounted:je,activated:je,deactivated:je,errorCaptured:je,serverPrefetch:je,components:er,directives:er,watch:Pd,provide:Bi,inject:xd};function Bi(e,t){return t?e?function(){return Pe(X(e)?e.call(this,this):e,X(t)?t.call(this,this):t)}:t:e}function xd(e,t){return er(gs(e),gs(t))}function gs(e){if(Q(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function je(e,t){return e?[...new Set([].concat(e,t))]:t}function er(e,t){return e?Pe(Object.create(null),e,t):t}function $i(e,t){return e?Q(e)&&Q(t)?[...new Set([...e,...t])]:Pe(Object.create(null),ps(e),ps(t??{})):t}function Pd(e,t){if(!e)return t;if(!t)return e;const n=Pe(Object.create(null),e);for(const r in t)n[r]=je(e[r],t[r]);return n}function hc(){return{app:null,config:{isNativeTag:da,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let kd=0;function Od(e,t){return function(r,o=null){X(r)||(r=Pe({},r)),o!=null&&!se(o)&&(o=null);const s=hc(),i=new WeakSet,l=[];let a=!1;const u=s.app={_uid:kd++,_component:r,_props:o,_container:null,_context:s,_instance:null,version:up,get config(){return s.config},set config(c){},use(c,...f){return i.has(c)||(c&&X(c.install)?(i.add(c),c.install(u,...f)):X(c)&&(i.add(c),c(u,...f))),u},mixin(c){return s.mixins.includes(c)||s.mixins.push(c),u},component(c,f){return f?(s.components[c]=f,u):s.components[c]},directive(c,f){return f?(s.directives[c]=f,u):s.directives[c]},mount(c,f,d){if(!a){const p=u._ceVNode||ye(r,o);return p.appContext=s,d===!0?d="svg":d===!1&&(d=void 0),f&&t?t(p,c):e(p,c,d),a=!0,u._container=c,c.__vue_app__=u,ai(p.component)}},onUnmount(c){l.push(c)},unmount(){a&&(ut(l,u._instance,16),e(null,u._container),delete u._container.__vue_app__)},provide(c,f){return s.provides[c]=f,u},runWithContext(c){const f=an;an=u;try{return c()}finally{an=f}}};return u}}let an=null;const Id=(e,t)=>t==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${$e(t)}Modifiers`]||e[`${qt(t)}Modifiers`];function Nd(e,t,...n){if(e.isUnmounted)return;const r=e.vnode.props||ce;let o=n;const s=t.startsWith("update:"),i=s&&Id(r,t.slice(7));i&&(i.trim&&(o=n.map(c=>pe(c)?c.trim():c)),i.number&&(o=n.map(pf)));let l,a=r[l=Br(t)]||r[l=Br($e(t))];!a&&s&&(a=r[l=Br(qt(t))]),a&&ut(a,e,6,o);const u=r[l+"Once"];if(u){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,ut(u,e,6,o)}}const Md=new WeakMap;function gc(e,t,n=!1){const r=n?Md:t.emitsCache,o=r.get(e);if(o!==void 0)return o;const s=e.emits;let i={},l=!1;if(!X(e)){const a=u=>{const c=gc(u,t,!0);c&&(l=!0,Pe(i,c))};!n&&t.mixins.length&&t.mixins.forEach(a),e.extends&&a(e.extends),e.mixins&&e.mixins.forEach(a)}return!s&&!l?(se(e)&&r.set(e,null),null):(Q(s)?s.forEach(a=>i[a]=null):Pe(i,s),se(e)&&r.set(e,i),i)}function xo(e,t){return!e||!vr(t)?!1:(t=t.slice(2).replace(/Once$/,""),le(e,t[0].toLowerCase()+t.slice(1))||le(e,qt(t))||le(e,t))}function Vo(e){const{type:t,vnode:n,proxy:r,withProxy:o,propsOptions:[s],slots:i,attrs:l,emit:a,render:u,renderCache:c,props:f,data:d,setupState:p,ctx:h,inheritAttrs:y}=e,E=Zr(e);let w,b;try{if(n.shapeFlag&4){const _=o||r,S=_;w=Je(u.call(S,_,c,f,p,d,h)),b=l}else{const _=t;w=Je(_.length>1?_(f,{attrs:l,slots:i,emit:a}):_(f,null)),b=t.props?l:Hd(l)}}catch(_){sr.length=0,Fn(_,e,1),w=ye(Se)}let g=w;if(b&&y!==!1){const _=Object.keys(b),{shapeFlag:S}=g;_.length&&S&7&&(s&&_.some(ho)&&(b=jd(b,s)),g=Ht(g,b,!1,!0))}return n.dirs&&(g=Ht(g,null,!1,!0),g.dirs=g.dirs?g.dirs.concat(n.dirs):n.dirs),n.transition&&In(g,n.transition),w=g,Zr(E),w}function Ld(e,t=!0){let n;for(let r=0;r<e.length;r++){const o=e[r];if(dn(o)){if(o.type!==Se||o.children==="v-if"){if(n)return;n=o}}else return}return n}const Hd=e=>{let t;for(const n in e)(n==="class"||n==="style"||vr(n))&&((t||(t={}))[n]=e[n]);return t},jd=(e,t)=>{const n={};for(const r in e)(!ho(r)||!(r.slice(9)in t))&&(n[r]=e[r]);return n};function Fd(e,t,n){const{props:r,children:o,component:s}=e,{props:i,children:l,patchFlag:a}=t,u=s.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&a>=0){if(a&1024)return!0;if(a&16)return r?Ui(r,i,u):!!i;if(a&8){const c=t.dynamicProps;for(let f=0;f<c.length;f++){const d=c[f];if(mc(i,r,d)&&!xo(u,d))return!0}}}else return(o||l)&&(!l||!l.$stable)?!0:r===i?!1:r?i?Ui(r,i,u):!0:!!i;return!1}function Ui(e,t,n){const r=Object.keys(t);if(r.length!==Object.keys(e).length)return!0;for(let o=0;o<r.length;o++){const s=r[o];if(mc(t,e,s)&&!xo(n,s))return!0}return!1}function mc(e,t,n){const r=e[n],o=t[n];return n==="style"&&se(r)&&se(o)?!Gs(r,o):r!==o}function Po({vnode:e,parent:t,suspense:n},r){for(;t;){const o=t.subTree;if(o.suspense&&o.suspense.activeBranch===e&&(o.suspense.vnode.el=o.el=r,e=o),o===e)(e=t.vnode).el=r,t=t.parent;else break}n&&n.activeBranch===e&&(n.vnode.el=r)}const yc={},_c=()=>Object.create(yc),vc=e=>Object.getPrototypeOf(e)===yc;function Dd(e,t,n,r=!1){const o={},s=_c();e.propsDefaults=Object.create(null),bc(e,t,o,s);for(const i in e.propsOptions[0])i in o||(o[i]=void 0);n?e.props=r?o:st(o):e.type.props?e.props=o:e.props=s,e.attrs=s}function Bd(e,t,n,r){const{props:o,attrs:s,vnode:{patchFlag:i}}=e,l=re(o),[a]=e.propsOptions;let u=!1;if((r||i>0)&&!(i&16)){if(i&8){const c=e.vnode.dynamicProps;for(let f=0;f<c.length;f++){let d=c[f];if(xo(e.emitsOptions,d))continue;const p=t[d];if(a)if(le(s,d))p!==s[d]&&(s[d]=p,u=!0);else{const h=$e(d);o[h]=ms(a,l,h,p,e,!1)}else p!==s[d]&&(s[d]=p,u=!0)}}}else{bc(e,t,o,s)&&(u=!0);let c;for(const f in l)(!t||!le(t,f)&&((c=qt(f))===f||!le(t,c)))&&(a?n&&(n[f]!==void 0||n[c]!==void 0)&&(o[f]=ms(a,l,f,void 0,e,!0)):delete o[f]);if(s!==l)for(const f in s)(!t||!le(t,f))&&(delete s[f],u=!0)}u&&kt(e.attrs,"set","")}function bc(e,t,n,r){const[o,s]=e.propsOptions;let i=!1,l;if(t)for(let a in t){if(on(a))continue;const u=t[a];let c;o&&le(o,c=$e(a))?!s||!s.includes(c)?n[c]=u:(l||(l={}))[c]=u:xo(e.emitsOptions,a)||(!(a in r)||u!==r[a])&&(r[a]=u,i=!0)}if(s){const a=re(n),u=l||ce;for(let c=0;c<s.length;c++){const f=s[c];n[f]=ms(o,a,f,u[f],e,!le(u,f))}}return i}function ms(e,t,n,r,o,s){const i=e[n];if(i!=null){const l=le(i,"default");if(l&&r===void 0){const a=i.default;if(i.type!==Function&&!i.skipFactory&&X(a)){const{propsDefaults:u}=o;if(n in u)r=u[n];else{const c=Sr(o);r=u[n]=a.call(null,t),c()}}else r=a;o.ce&&o.ce._setProp(n,r)}i[0]&&(s&&!l?r=!1:i[1]&&(r===""||r===qt(n))&&(r=!0))}return r}const $d=new WeakMap;function wc(e,t,n=!1){const r=n?$d:t.propsCache,o=r.get(e);if(o)return o;const s=e.props,i={},l=[];let a=!1;if(!X(e)){const c=f=>{a=!0;const[d,p]=wc(f,t,!0);Pe(i,d),p&&l.push(...p)};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}if(!s&&!a)return se(e)&&r.set(e,Tn),Tn;if(Q(s))for(let c=0;c<s.length;c++){const f=$e(s[c]);Vi(f)&&(i[f]=ce)}else if(s)for(const c in s){const f=$e(c);if(Vi(f)){const d=s[c],p=i[f]=Q(d)||X(d)?{type:d}:Pe({},d),h=p.type;let y=!1,E=!0;if(Q(h))for(let w=0;w<h.length;++w){const b=h[w],g=X(b)&&b.name;if(g==="Boolean"){y=!0;break}else g==="String"&&(E=!1)}else y=X(h)&&h.name==="Boolean";p[0]=y,p[1]=E,(y||le(p,"default"))&&l.push(f)}}const u=[i,l];return se(e)&&r.set(e,u),u}function Vi(e){return e[0]!=="$"&&!on(e)}const ni=e=>e==="_"||e==="_ctx"||e==="$stable",ri=e=>Q(e)?e.map(Je):[Je(e)],Ud=(e,t,n)=>{if(t._n)return t;const r=ln((...o)=>ri(t(...o)),n);return r._c=!1,r},Ec=(e,t,n)=>{const r=e._ctx;for(const o in e){if(ni(o))continue;const s=e[o];if(X(s))t[o]=Ud(o,s,r);else if(s!=null){const i=ri(s);t[o]=()=>i}}},Sc=(e,t)=>{const n=ri(t);e.slots.default=()=>n},Tc=(e,t,n)=>{for(const r in t)(n||!ni(r))&&(e[r]=t[r])},Vd=(e,t,n)=>{const r=e.slots=_c();if(e.vnode.shapeFlag&32){const o=t._;o?(Tc(r,t,n),n&&ya(r,"_",o,!0)):Ec(t,r)}else t&&Sc(e,t)},Wd=(e,t,n)=>{const{vnode:r,slots:o}=e;let s=!0,i=ce;if(r.shapeFlag&32){const l=t._;l?n&&l===1?s=!1:Tc(o,t,n):(s=!t.$stable,Ec(t,o)),i=t}else t&&(Sc(e,t),i={default:1});if(s)for(const l in o)!ni(l)&&i[l]==null&&delete o[l]},Ee=kc;function Kd(e){return Ac(e)}function Gd(e){return Ac(e,dd)}function Ac(e,t){const n=_o();n.__VUE__=!0;const{insert:r,remove:o,patchProp:s,createElement:i,createText:l,createComment:a,setText:u,setElementText:c,parentNode:f,nextSibling:d,setScopeId:p=bt,insertStaticContent:h}=e,y=(m,v,A,I=null,x=null,M=null,$=void 0,B=null,j=!!v.dynamicChildren)=>{if(m===v)return;m&&!it(m,v)&&(I=P(m),Ve(m,x,M,!0),m=null),v.patchFlag===-2&&(j=!1,v.dynamicChildren=null);const{type:L,ref:Y,shapeFlag:W}=v;switch(L){case cn:E(m,v,A,I);break;case Se:w(m,v,A,I);break;case $r:m==null&&b(v,A,I,$);break;case He:R(m,v,A,I,x,M,$,B,j);break;default:W&1?S(m,v,A,I,x,M,$,B,j):W&6?H(m,v,A,I,x,M,$,B,j):(W&64||W&128)&&L.process(m,v,A,I,x,M,$,B,j,J)}Y!=null&&x?Rn(Y,m&&m.ref,M,v||m,!v):Y==null&&m&&m.ref!=null&&Rn(m.ref,null,M,m,!0)},E=(m,v,A,I)=>{if(m==null)r(v.el=l(v.children),A,I);else{const x=v.el=m.el;v.children!==m.children&&u(x,v.children)}},w=(m,v,A,I)=>{m==null?r(v.el=a(v.children||""),A,I):v.el=m.el},b=(m,v,A,I)=>{[m.el,m.anchor]=h(m.children,v,A,I,m.el,m.anchor)},g=({el:m,anchor:v},A,I)=>{let x;for(;m&&m!==v;)x=d(m),r(m,A,I),m=x;r(v,A,I)},_=({el:m,anchor:v})=>{let A;for(;m&&m!==v;)A=d(m),o(m),m=A;o(v)},S=(m,v,A,I,x,M,$,B,j)=>{if(v.type==="svg"?$="svg":v.type==="math"&&($="mathml"),m==null)T(v,A,I,x,M,$,B,j);else{const L=m.el&&m.el._isVueCE?m.el:null;try{L&&L._beginPatch(),O(m,v,x,M,$,B,j)}finally{L&&L._endPatch()}}},T=(m,v,A,I,x,M,$,B)=>{let j,L;const{props:Y,shapeFlag:W,transition:q,dirs:ee}=m;if(j=m.el=i(m.type,M,Y&&Y.is,Y),W&8?c(j,m.children):W&16&&N(m.children,j,null,I,x,Wo(m,M),$,B),ee&>(m,null,I,"created"),C(j,m,m.scopeId,$,I),Y){for(const ae in Y)ae!=="value"&&!on(ae)&&s(j,ae,null,Y[ae],M,I);"value"in Y&&s(j,"value",null,Y.value,M),(L=Y.onVnodeBeforeMount)&&We(L,I,m)}ee&>(m,null,I,"beforeMount");const ne=Cc(x,q);ne&&q.beforeEnter(j),r(j,v,A),((L=Y&&Y.onVnodeMounted)||ne||ee)&&Ee(()=>{L&&We(L,I,m),ne&&q.enter(j),ee&>(m,null,I,"mounted")},x)},C=(m,v,A,I,x)=>{if(A&&p(m,A),I)for(let M=0;M<I.length;M++)p(m,I[M]);if(x){let M=x.subTree;if(v===M||oo(M.type)&&(M.ssContent===v||M.ssFallback===v)){const $=x.vnode;C(m,$,$.scopeId,$.slotScopeIds,x.parent)}}},N=(m,v,A,I,x,M,$,B,j=0)=>{for(let L=j;L<m.length;L++){const Y=m[L]=B?Pt(m[L]):Je(m[L]);y(null,Y,v,A,I,x,M,$,B)}},O=(m,v,A,I,x,M,$)=>{const B=v.el=m.el;let{patchFlag:j,dynamicChildren:L,dirs:Y}=v;j|=m.patchFlag&16;const W=m.props||ce,q=v.props||ce;let ee;if(A&&Qt(A,!1),(ee=q.onVnodeBeforeUpdate)&&We(ee,A,v,m),Y&>(v,m,A,"beforeUpdate"),A&&Qt(A,!0),(W.innerHTML&&q.innerHTML==null||W.textContent&&q.textContent==null)&&c(B,""),L?k(m.dynamicChildren,L,B,A,I,Wo(v,x),M):$||K(m,v,B,null,A,I,Wo(v,x),M,!1),j>0){if(j&16)U(B,W,q,A,x);else if(j&2&&W.class!==q.class&&s(B,"class",null,q.class,x),j&4&&s(B,"style",W.style,q.style,x),j&8){const ne=v.dynamicProps;for(let ae=0;ae<ne.length;ae++){const fe=ne[ae],we=W[fe],Ce=q[fe];(Ce!==we||fe==="value")&&s(B,fe,we,Ce,x,A)}}j&1&&m.children!==v.children&&c(B,v.children)}else!$&&L==null&&U(B,W,q,A,x);((ee=q.onVnodeUpdated)||Y)&&Ee(()=>{ee&&We(ee,A,v,m),Y&>(v,m,A,"updated")},I)},k=(m,v,A,I,x,M,$)=>{for(let B=0;B<v.length;B++){const j=m[B],L=v[B],Y=j.el&&(j.type===He||!it(j,L)||j.shapeFlag&198)?f(j.el):A;y(j,L,Y,null,I,x,M,$,!0)}},U=(m,v,A,I,x)=>{if(v!==A){if(v!==ce)for(const M in v)!on(M)&&!(M in A)&&s(m,M,v[M],null,x,I);for(const M in A){if(on(M))continue;const $=A[M],B=v[M];$!==B&&M!=="value"&&s(m,M,B,$,x,I)}"value"in A&&s(m,"value",v.value,A.value,x)}},R=(m,v,A,I,x,M,$,B,j)=>{const L=v.el=m?m.el:l(""),Y=v.anchor=m?m.anchor:l("");let{patchFlag:W,dynamicChildren:q,slotScopeIds:ee}=v;ee&&(B=B?B.concat(ee):ee),m==null?(r(L,A,I),r(Y,A,I),N(v.children||[],A,Y,x,M,$,B,j)):W>0&&W&64&&q&&m.dynamicChildren&&m.dynamicChildren.length===q.length?(k(m.dynamicChildren,q,A,x,M,$,B),(v.key!=null||x&&v===x.subTree)&&oi(m,v,!0)):K(m,v,A,Y,x,M,$,B,j)},H=(m,v,A,I,x,M,$,B,j)=>{v.slotScopeIds=B,m==null?v.shapeFlag&512?x.ctx.activate(v,A,I,$,j):D(v,A,I,x,M,$,j):z(m,v,j)},D=(m,v,A,I,x,M,$)=>{const B=m.component=op(m,I,x);if(Er(m)&&(B.ctx.renderer=J),sp(B,!1,$),B.asyncDep){if(x&&x.registerDep(B,F,$),!m.el){const j=B.subTree=ye(Se);w(null,j,v,A),m.placeholder=j.el}}else F(B,m,v,A,x,M,$)},z=(m,v,A)=>{const I=v.component=m.component;if(Fd(m,v,A))if(I.asyncDep&&!I.asyncResolved){Z(I,v,A);return}else I.next=v,I.update();else v.el=m.el,I.vnode=v},F=(m,v,A,I,x,M,$)=>{const B=()=>{if(m.isMounted){let{next:W,bu:q,u:ee,parent:ne,vnode:ae}=m;{const qe=Rc(m);if(qe){W&&(W.el=ae.el,Z(m,W,$)),qe.asyncDep.then(()=>{Ee(()=>{m.isUnmounted||L()},x)});return}}let fe=W,we;Qt(m,!1),W?(W.el=ae.el,Z(m,W,$)):W=ae,q&&tr(q),(we=W.props&&W.props.onVnodeBeforeUpdate)&&We(we,ne,W,ae),Qt(m,!0);const Ce=Vo(m),ot=m.subTree;m.subTree=Ce,y(ot,Ce,f(ot.el),P(ot),m,x,M),W.el=Ce.el,fe===null&&Po(m,Ce.el),ee&&Ee(ee,x),(we=W.props&&W.props.onVnodeUpdated)&&Ee(()=>We(we,ne,W,ae),x)}else{let W;const{el:q,props:ee}=v,{bm:ne,m:ae,parent:fe,root:we,type:Ce}=m,ot=It(v);if(Qt(m,!1),ne&&tr(ne),!ot&&(W=ee&&ee.onVnodeBeforeMount)&&We(W,fe,v),Qt(m,!0),q&&he){const qe=()=>{m.subTree=Vo(m),he(q,m.subTree,m,x,null)};ot&&Ce.__asyncHydrate?Ce.__asyncHydrate(q,m,qe):qe()}else{we.ce&&we.ce._hasShadowRoot()&&we.ce._injectChildStyle(Ce,m.parent?m.parent.type:void 0);const qe=m.subTree=Vo(m);y(null,qe,A,I,m,x,M),v.el=qe.el}if(ae&&Ee(ae,x),!ot&&(W=ee&&ee.onVnodeMounted)){const qe=v;Ee(()=>We(W,fe,qe),x)}(v.shapeFlag&256||fe&&It(fe.vnode)&&fe.vnode.shapeFlag&256)&&m.a&&Ee(m.a,x),m.isMounted=!0,v=A=I=null}};m.scope.on();const j=m.effect=new Ta(B);m.scope.off();const L=m.update=j.run.bind(j),Y=m.job=j.runIfDirty.bind(j);Y.i=m,Y.id=m.uid,j.scheduler=()=>Ys(Y),Qt(m,!0),L()},Z=(m,v,A)=>{v.component=m;const I=m.vnode.props;m.vnode=v,m.next=null,Bd(m,v.props,I,A),Wd(m,v.children,A),Mt(),ki(m),Lt()},K=(m,v,A,I,x,M,$,B,j=!1)=>{const L=m&&m.children,Y=m?m.shapeFlag:0,W=v.children,{patchFlag:q,shapeFlag:ee}=v;if(q>0){if(q&128){Ft(L,W,A,I,x,M,$,B,j);return}else if(q&256){ue(L,W,A,I,x,M,$,B,j);return}}ee&8?(Y&16&&Xe(L,x,M),W!==L&&c(A,W)):Y&16?ee&16?Ft(L,W,A,I,x,M,$,B,j):Xe(L,x,M,!0):(Y&8&&c(A,""),ee&16&&N(W,A,I,x,M,$,B,j))},ue=(m,v,A,I,x,M,$,B,j)=>{m=m||Tn,v=v||Tn;const L=m.length,Y=v.length,W=Math.min(L,Y);let q;for(q=0;q<W;q++){const ee=v[q]=j?Pt(v[q]):Je(v[q]);y(m[q],ee,A,null,x,M,$,B,j)}L>Y?Xe(m,x,M,!0,!1,W):N(v,A,I,x,M,$,B,j,W)},Ft=(m,v,A,I,x,M,$,B,j)=>{let L=0;const Y=v.length;let W=m.length-1,q=Y-1;for(;L<=W&&L<=q;){const ee=m[L],ne=v[L]=j?Pt(v[L]):Je(v[L]);if(it(ee,ne))y(ee,ne,A,null,x,M,$,B,j);else break;L++}for(;L<=W&&L<=q;){const ee=m[W],ne=v[q]=j?Pt(v[q]):Je(v[q]);if(it(ee,ne))y(ee,ne,A,null,x,M,$,B,j);else break;W--,q--}if(L>W){if(L<=q){const ee=q+1,ne=ee<Y?v[ee].el:I;for(;L<=q;)y(null,v[L]=j?Pt(v[L]):Je(v[L]),A,ne,x,M,$,B,j),L++}}else if(L>q)for(;L<=W;)Ve(m[L],x,M,!0),L++;else{const ee=L,ne=L,ae=new Map;for(L=ne;L<=q;L++){const ze=v[L]=j?Pt(v[L]):Je(v[L]);ze.key!=null&&ae.set(ze.key,L)}let fe,we=0;const Ce=q-ne+1;let ot=!1,qe=0;const Wn=new Array(Ce);for(L=0;L<Ce;L++)Wn[L]=0;for(L=ee;L<=W;L++){const ze=m[L];if(we>=Ce){Ve(ze,x,M,!0);continue}let pt;if(ze.key!=null)pt=ae.get(ze.key);else for(fe=ne;fe<=q;fe++)if(Wn[fe-ne]===0&&it(ze,v[fe])){pt=fe;break}pt===void 0?Ve(ze,x,M,!0):(Wn[pt-ne]=L+1,pt>=qe?qe=pt:ot=!0,y(ze,v[pt],A,null,x,M,$,B,j),we++)}const Si=ot?qd(Wn):Tn;for(fe=Si.length-1,L=Ce-1;L>=0;L--){const ze=ne+L,pt=v[ze],Ti=v[ze+1],Ai=ze+1<Y?Ti.el||xc(Ti):I;Wn[L]===0?y(null,pt,A,Ai,x,M,$,B,j):ot&&(fe<0||L!==Si[fe]?dt(pt,A,Ai,2):fe--)}}},dt=(m,v,A,I,x=null)=>{const{el:M,type:$,transition:B,children:j,shapeFlag:L}=m;if(L&6){dt(m.component.subTree,v,A,I);return}if(L&128){m.suspense.move(v,A,I);return}if(L&64){$.move(m,v,A,J);return}if($===He){r(M,v,A);for(let W=0;W<j.length;W++)dt(j[W],v,A,I);r(m.anchor,v,A);return}if($===$r){g(m,v,A);return}if(I!==2&&L&1&&B)if(I===0)B.beforeEnter(M),r(M,v,A),Ee(()=>B.enter(M),x);else{const{leave:W,delayLeave:q,afterLeave:ee}=B,ne=()=>{m.ctx.isUnmounted?o(M):r(M,v,A)},ae=()=>{M._isLeaving&&M[mt](!0),W(M,()=>{ne(),ee&&ee()})};q?q(M,ne,ae):ae()}else r(M,v,A)},Ve=(m,v,A,I=!1,x=!1)=>{const{type:M,props:$,ref:B,children:j,dynamicChildren:L,shapeFlag:Y,patchFlag:W,dirs:q,cacheIndex:ee,memo:ne}=m;if(W===-2&&(x=!1),B!=null&&(Mt(),Rn(B,null,A,m,!0),Lt()),ee!=null&&(v.renderCache[ee]=void 0),Y&256){v.ctx.deactivate(m);return}const ae=Y&1&&q,fe=!It(m);let we;if(fe&&(we=$&&$.onVnodeBeforeUnmount)&&We(we,v,m),Y&6)zt(m.component,A,I);else{if(Y&128){m.suspense.unmount(A,I);return}ae&>(m,null,v,"beforeUnmount"),Y&64?m.type.remove(m,v,A,J,I):L&&!L.hasOnce&&(M!==He||W>0&&W&64)?Xe(L,v,A,!1,!0):(M===He&&W&384||!x&&Y&16)&&Xe(j,v,A),I&&yn(m)}const Ce=ne!=null&&ee==null;(fe&&(we=$&&$.onVnodeUnmounted)||ae||Ce)&&Ee(()=>{we&&We(we,v,m),ae&>(m,null,v,"unmounted"),Ce&&(m.el=null)},A)},yn=m=>{const{type:v,el:A,anchor:I,transition:x}=m;if(v===He){_n(A,I);return}if(v===$r){_(m);return}const M=()=>{o(A),x&&!x.persisted&&x.afterLeave&&x.afterLeave()};if(m.shapeFlag&1&&x&&!x.persisted){const{leave:$,delayLeave:B}=x,j=()=>$(A,M);B?B(m.el,M,j):j()}else M()},_n=(m,v)=>{let A;for(;m!==v;)A=d(m),o(m),m=A;o(v)},zt=(m,v,A)=>{const{bum:I,scope:x,job:M,subTree:$,um:B,m:j,a:L}=m;ro(j),ro(L),I&&tr(I),x.stop(),M&&(M.flags|=8,Ve($,m,v,A)),B&&Ee(B,v),Ee(()=>{m.isUnmounted=!0},v)},Xe=(m,v,A,I=!1,x=!1,M=0)=>{for(let $=M;$<m.length;$++)Ve(m[$],v,A,I,x)},P=m=>{if(m.shapeFlag&6)return P(m.component.subTree);if(m.shapeFlag&128)return m.suspense.next();const v=d(m.anchor||m.el),A=v&&v[Ya];return A?d(A):v};let G=!1;const V=(m,v,A)=>{let I;m==null?v._vnode&&(Ve(v._vnode,null,null,!0),I=v._vnode.component):y(v._vnode||null,m,v,null,null,null,A),v._vnode=m,G||(G=!0,ki(I),Xr(),G=!1)},J={p:y,um:Ve,m:dt,r:yn,mt:D,mc:N,pc:K,pbc:k,n:P,o:e};let te,he;return t&&([te,he]=t(J)),{render:V,hydrate:te,createApp:Od(V,te)}}function Wo({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 Qt({effect:e,job:t},n){n?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function Cc(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function oi(e,t,n=!1){const r=e.children,o=t.children;if(Q(r)&&Q(o))for(let s=0;s<r.length;s++){const i=r[s];let l=o[s];l.shapeFlag&1&&!l.dynamicChildren&&((l.patchFlag<=0||l.patchFlag===32)&&(l=o[s]=Pt(o[s]),l.el=i.el),!n&&l.patchFlag!==-2&&oi(i,l)),l.type===cn&&(l.patchFlag===-1&&(l=o[s]=Pt(l)),l.el=i.el),l.type===Se&&!l.el&&(l.el=i.el)}}function qd(e){const t=e.slice(),n=[0];let r,o,s,i,l;const a=e.length;for(r=0;r<a;r++){const u=e[r];if(u!==0){if(o=n[n.length-1],e[o]<u){t[r]=o,n.push(r);continue}for(s=0,i=n.length-1;s<i;)l=s+i>>1,e[n[l]]<u?s=l+1:i=l;u<e[n[s]]&&(s>0&&(t[r]=n[s-1]),n[s]=r)}}for(s=n.length,i=n[s-1];s-- >0;)n[s]=i,i=t[i];return n}function Rc(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:Rc(t)}function ro(e){if(e)for(let t=0;t<e.length;t++)e[t].flags|=8}function xc(e){if(e.placeholder)return e.placeholder;const t=e.component;return t?xc(t.subTree):null}const oo=e=>e.__isSuspense;let ys=0;const zd={name:"Suspense",__isSuspense:!0,process(e,t,n,r,o,s,i,l,a,u){if(e==null)Jd(t,n,r,o,s,i,l,a,u);else{if(s&&s.deps>0&&!e.suspense.isInFallback){t.suspense=e.suspense,t.suspense.vnode=t,t.el=e.el;return}Qd(e,t,n,r,o,i,l,a,u)}},hydrate:Yd,normalize:Xd},si=zd;function pr(e,t){const n=e.props&&e.props[t];X(n)&&n()}function Jd(e,t,n,r,o,s,i,l,a){const{p:u,o:{createElement:c}}=a,f=c("div"),d=e.suspense=Pc(e,o,r,t,f,n,s,i,l,a);u(null,d.pendingBranch=e.ssContent,f,null,r,d,s,i),d.deps>0?(pr(e,"onPending"),pr(e,"onFallback"),u(null,e.ssFallback,t,n,r,null,s,i),xn(d,e.ssFallback)):d.resolve(!1,!0)}function Qd(e,t,n,r,o,s,i,l,{p:a,um:u,o:{createElement:c}}){const f=t.suspense=e.suspense;f.vnode=t,t.el=e.el;const d=t.ssContent,p=t.ssFallback,{activeBranch:h,pendingBranch:y,isInFallback:E,isHydrating:w}=f;if(y)f.pendingBranch=d,it(y,d)?(a(y,d,f.hiddenContainer,null,o,f,s,i,l),f.deps<=0?f.resolve():E&&(w||(a(h,p,n,r,o,null,s,i,l),xn(f,p)))):(f.pendingId=ys++,w?(f.isHydrating=!1,f.activeBranch=y):u(y,o,f),f.deps=0,f.effects.length=0,f.hiddenContainer=c("div"),E?(a(null,d,f.hiddenContainer,null,o,f,s,i,l),f.deps<=0?f.resolve():(a(h,p,n,r,o,null,s,i,l),xn(f,p))):h&&it(h,d)?(a(h,d,n,r,o,f,s,i,l),f.resolve(!0)):(a(null,d,f.hiddenContainer,null,o,f,s,i,l),f.deps<=0&&f.resolve()));else if(h&&it(h,d))a(h,d,n,r,o,f,s,i,l),xn(f,d);else if(pr(t,"onPending"),f.pendingBranch=d,d.shapeFlag&512?f.pendingId=d.component.suspenseId:f.pendingId=ys++,a(null,d,f.hiddenContainer,null,o,f,s,i,l),f.deps<=0)f.resolve();else{const{timeout:b,pendingId:g}=f;b>0?setTimeout(()=>{f.pendingId===g&&f.fallback(p)},b):b===0&&f.fallback(p)}}function Pc(e,t,n,r,o,s,i,l,a,u,c=!1){const{p:f,m:d,um:p,n:h,o:{parentNode:y,remove:E}}=u;let w;const b=Zd(e);b&&t&&t.pendingBranch&&(w=t.pendingId,t.deps++);const g=e.props?_a(e.props.timeout):void 0,_=s,S={vnode:e,parent:t,parentComponent:n,namespace:i,container:r,hiddenContainer:o,deps:0,pendingId:ys++,timeout:typeof g=="number"?g:-1,activeBranch:null,isFallbackMountPending:!1,pendingBranch:null,isInFallback:!c,isHydrating:c,isUnmounted:!1,effects:[],resolve(T=!1,C=!1){const{vnode:N,activeBranch:O,pendingBranch:k,pendingId:U,effects:R,parentComponent:H,container:D,isInFallback:z}=S;let F=!1;S.isHydrating?S.isHydrating=!1:T||(F=O&&k.transition&&k.transition.mode==="out-in",F&&(O.transition.afterLeave=()=>{U===S.pendingId&&(d(k,D,s===_?h(O):s,0),as(R),z&&N.ssFallback&&(N.ssFallback.el=null))}),O&&!S.isFallbackMountPending&&(y(O.el)===D&&(s=h(O)),p(O,H,S,!0),!F&&z&&N.ssFallback&&Ee(()=>N.ssFallback.el=null,S)),F||d(k,D,s,0)),S.isFallbackMountPending=!1,xn(S,k),S.pendingBranch=null,S.isInFallback=!1;let Z=S.parent,K=!1;for(;Z;){if(Z.pendingBranch){Z.effects.push(...R),K=!0;break}Z=Z.parent}!K&&!F&&as(R),S.effects=[],b&&t&&t.pendingBranch&&w===t.pendingId&&(t.deps--,t.deps===0&&!C&&t.resolve()),pr(N,"onResolve")},fallback(T){if(!S.pendingBranch)return;const{vnode:C,activeBranch:N,parentComponent:O,container:k,namespace:U}=S;pr(C,"onFallback");const R=h(N),H=()=>{S.isFallbackMountPending=!1,S.isInFallback&&(f(null,T,k,R,O,null,U,l,a),xn(S,T))},D=T.transition&&T.transition.mode==="out-in";D&&(S.isFallbackMountPending=!0,N.transition.afterLeave=H),S.isInFallback=!0,p(N,O,null,!0),D||H()},move(T,C,N){S.activeBranch&&d(S.activeBranch,T,C,N),S.container=T},next(){return S.activeBranch&&h(S.activeBranch)},registerDep(T,C,N){const O=!!S.pendingBranch;O&&S.deps++;const k=T.vnode.el;T.asyncDep.catch(U=>{Fn(U,T,0)}).then(U=>{if(T.isUnmounted||S.isUnmounted||S.pendingId!==T.suspenseId)return;vs(),T.asyncResolved=!0;const{vnode:R}=T;bs(T,U),k&&(R.el=k);const H=!k&&T.subTree.el;C(T,R,y(k||T.subTree.el),k?null:h(T.subTree),S,i,N),H&&(R.placeholder=null,E(H)),Po(T,R.el),O&&--S.deps===0&&S.resolve()})},unmount(T,C){S.isUnmounted=!0,S.activeBranch&&p(S.activeBranch,n,T,C),S.pendingBranch&&p(S.pendingBranch,n,T,C)}};return S}function Yd(e,t,n,r,o,s,i,l,a){const u=t.suspense=Pc(t,r,n,e.parentNode,document.createElement("div"),null,o,s,i,l,!0),c=a(e,u.pendingBranch=t.ssContent,n,u,s,i);return u.deps===0&&u.resolve(!1,!0),c}function Xd(e){const{shapeFlag:t,children:n}=e,r=t&32;e.ssContent=Wi(r?n.default:n),e.ssFallback=r?Wi(n.fallback):ye(Se)}function Wi(e){let t;if(X(e)){const n=Nn&&e._c;n&&(e._d=!1,Ke()),e=e(),n&&(e._d=!0,t=Ge,Oc())}return Q(e)&&(e=Ld(e)),e=Je(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter(n=>n!==e)),e}function kc(e,t){t&&t.pendingBranch?Q(e)?t.effects.push(...e):t.effects.push(e):as(e)}function xn(e,t){e.activeBranch=t;const{vnode:n,parentComponent:r}=e;let o=t.el;for(;!o&&t.component;)t=t.component.subTree,o=t.el;n.el=o,r&&r.subTree===n&&(r.vnode.el=o,Po(r,o))}function Zd(e){const t=e.props&&e.props.suspensible;return t!=null&&t!==!1}const He=Symbol.for("v-fgt"),cn=Symbol.for("v-txt"),Se=Symbol.for("v-cmt"),$r=Symbol.for("v-stc"),sr=[];let Ge=null;function Ke(e=!1){sr.push(Ge=e?null:[])}function Oc(){sr.pop(),Ge=sr[sr.length-1]||null}let Nn=1;function so(e,t=!1){Nn+=e,e<0&&Ge&&t&&(Ge.hasOnce=!0)}function Ic(e){return e.dynamicChildren=Nn>0?Ge||Tn:null,Oc(),Nn>0&&Ge&&Ge.push(e),e}function ep(e,t,n,r,o,s){return Ic(Mc(e,t,n,r,o,s,!0))}function tt(e,t,n,r,o){return Ic(ye(e,t,n,r,o,!0))}function dn(e){return e?e.__v_isVNode===!0:!1}function it(e,t){return e.type===t.type&&e.key===t.key}const Nc=({key:e})=>e??null,Ur=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?pe(e)||me(e)||X(e)?{i:Be,r:e,k:t,f:!!n}:e:null);function Mc(e,t=null,n=null,r=0,o=null,s=e===He?0:1,i=!1,l=!1){const a={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Nc(t),ref:t&&Ur(t),scopeId:Ja,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:s,patchFlag:r,dynamicProps:o,dynamicChildren:null,appContext:null,ctx:Be};return l?(li(a,n),s&128&&e.normalize(a)):n&&(a.shapeFlag|=pe(n)?8:16),Nn>0&&!i&&Ge&&(a.patchFlag>0||s&6)&&a.patchFlag!==32&&Ge.push(a),a}const ye=tp;function tp(e,t=null,n=null,r=0,o=null,s=!1){if((!e||e===cc)&&(e=Se),dn(e)){const l=Ht(e,t,!0);return n&&li(l,n),Nn>0&&!s&&Ge&&(l.shapeFlag&6?Ge[Ge.indexOf(e)]=l:Ge.push(l)),l.patchFlag=-2,l}if(cp(e)&&(e=e.__vccOpts),t){t=ii(t);let{class:l,style:a}=t;l&&!pe(l)&&(t.class=bo(l)),se(a)&&(Ao(a)&&!Q(a)&&(a=Pe({},a)),t.style=vo(a))}const i=pe(e)?1:oo(e)?128:Xa(e)?64:se(e)?4:X(e)?2:0;return Mc(e,t,n,r,o,i,s,!0)}function ii(e){return e?Ao(e)||vc(e)?Pe({},e):e:null}function Ht(e,t,n=!1,r=!1){const{props:o,ref:s,patchFlag:i,children:l,transition:a}=e,u=t?Hc(o||{},t):o,c={__v_isVNode:!0,__v_skip:!0,type:e.type,props:u,key:u&&Nc(u),ref:t&&t.ref?n&&s?Q(s)?s.concat(Ur(t)):[s,Ur(t)]:Ur(t):s,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:l,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==He?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:a,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Ht(e.ssContent),ssFallback:e.ssFallback&&Ht(e.ssFallback),placeholder:e.placeholder,el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return a&&r&&In(c,a.clone(c)),c}function Lc(e=" ",t=0){return ye(cn,null,e,t)}function cb(e="",t=!1){return t?(Ke(),tt(Se,null,e)):ye(Se,null,e)}function Je(e){return e==null||typeof e=="boolean"?ye(Se):Q(e)?ye(He,null,e.slice()):dn(e)?Pt(e):ye(cn,null,String(e))}function Pt(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Ht(e)}function li(e,t){let n=0;const{shapeFlag:r}=e;if(t==null)t=null;else if(Q(t))n=16;else if(typeof t=="object")if(r&65){const o=t.default;o&&(o._c&&(o._d=!1),li(e,o()),o._c&&(o._d=!0));return}else{n=32;const o=t._;!o&&!vc(t)?t._ctx=Be:o===3&&Be&&(Be.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else X(t)?(t={default:t,_ctx:Be},n=32):(t=String(t),r&64?(n=16,t=[Lc(t)]):n=8);e.children=t,e.shapeFlag|=n}function Hc(...e){const t={};for(let n=0;n<e.length;n++){const r=e[n];for(const o in r)if(o==="class")t.class!==r.class&&(t.class=bo([t.class,r.class]));else if(o==="style")t.style=vo([t.style,r.style]);else if(vr(o)){const s=t[o],i=r[o];i&&s!==i&&!(Q(s)&&s.includes(i))?t[o]=s?[].concat(s,i):i:i==null&&s==null&&!ho(o)&&(t[o]=i)}else o!==""&&(t[o]=r[o])}return t}function We(e,t,n,r=null){ut(e,t,7,[n,r])}const np=hc();let rp=0;function op(e,t,n){const r=e.type,o=(t?t.appContext:e.appContext)||np,s={uid:rp++,vnode:e,type:r,parent:t,appContext:o,root:null,next:null,subTree:null,effect:null,update:null,job:null,scope:new Sa(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(o.provides),ids:t?t.ids:["",0,0],accessCache:null,renderCache:[],components:null,directives:null,propsOptions:wc(r,o),emitsOptions:gc(r,o),emit:null,emitted:null,propsDefaults:ce,inheritAttrs:r.inheritAttrs,ctx:ce,data:ce,props:ce,attrs:ce,slots:ce,refs:ce,setupState:ce,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return s.ctx={_:s},s.root=t?t.root:s,s.emit=Nd.bind(null,s),e.ce&&e.ce(s),s}let Ie=null;const Ue=()=>Ie||Be;let io,_s;{const e=_o(),t=(n,r)=>{let o;return(o=e[n])||(o=e[n]=[]),o.push(r),s=>{o.length>1?o.forEach(i=>i(s)):o[0](s)}};io=t("__VUE_INSTANCE_SETTERS__",n=>Ie=n),_s=t("__VUE_SSR_SETTERS__",n=>Mn=n)}const Sr=e=>{const t=Ie;return io(e),e.scope.on(),()=>{e.scope.off(),io(t)}},vs=()=>{Ie&&Ie.scope.off(),io(null)};function jc(e){return e.vnode.shapeFlag&4}let Mn=!1;function sp(e,t=!1,n=!1){t&&_s(t);const{props:r,children:o}=e.vnode,s=jc(e);Dd(e,r,s,t),Vd(e,o,n||t);const i=s?ip(e,t):void 0;return t&&_s(!1),i}function ip(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,Td);const{setup:r}=n;if(r){Mt();const o=e.setupContext=r.length>1?ap(e):null,s=Sr(e),i=wr(r,e,0,[e.props,o]),l=ha(i);if(Lt(),s(),(l||e.sp)&&!It(e)&&Zs(e),l){if(i.then(vs,vs),t)return i.then(a=>{bs(e,a)}).catch(a=>{Fn(a,e,0)});e.asyncDep=i}else bs(e,i)}else Fc(e)}function bs(e,t,n){X(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:se(t)&&(e.setupState=Ua(t)),Fc(e)}function Fc(e,t,n){const r=e.type;e.render||(e.render=r.render||bt);{const o=Sr(e);Mt();try{Ad(e)}finally{Lt(),o()}}}const lp={get(e,t){return Le(e,"get",""),e[t]}};function ap(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,lp),slots:e.slots,emit:e.emit,expose:t}}function ai(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(Ua(Uf(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in or)return or[n](e)},has(t,n){return n in t||n in or}})):e.proxy}function ws(e,t=!0){return X(e)?e.displayName||e.name:e.name||t&&e.__name}function cp(e){return X(e)&&"__vccOpts"in e}const ge=(e,t)=>Qf(e,t,Mn);function Oe(e,t,n){try{so(-1);const r=arguments.length;return r===2?se(t)&&!Q(t)?dn(t)?ye(e,null,[t]):ye(e,t):ye(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&dn(n)&&(n=[n]),ye(e,t,n))}finally{so(1)}}const up="3.5.32";let Es;const Ki=typeof window<"u"&&window.trustedTypes;if(Ki)try{Es=Ki.createPolicy("vue",{createHTML:e=>e})}catch{}const Dc=Es?e=>Es.createHTML(e):e=>e,fp="http://www.w3.org/2000/svg",dp="http://www.w3.org/1998/Math/MathML",xt=typeof document<"u"?document:null,Gi=xt&&xt.createElement("template"),pp={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const o=t==="svg"?xt.createElementNS(fp,e):t==="mathml"?xt.createElementNS(dp,e):n?xt.createElement(e,{is:n}):xt.createElement(e);return e==="select"&&r&&r.multiple!=null&&o.setAttribute("multiple",r.multiple),o},createText:e=>xt.createTextNode(e),createComment:e=>xt.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>xt.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,r,o,s){const i=n?n.previousSibling:t.lastChild;if(o&&(o===s||o.nextSibling))for(;t.insertBefore(o.cloneNode(!0),n),!(o===s||!(o=o.nextSibling)););else{Gi.innerHTML=Dc(r==="svg"?`<svg>${e}</svg>`:r==="mathml"?`<math>${e}</math>`:e);const l=Gi.content;if(r==="svg"||r==="mathml"){const a=l.firstChild;for(;a.firstChild;)l.appendChild(a.firstChild);l.removeChild(a)}t.insertBefore(l,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Dt="transition",qn="animation",hr=Symbol("_vtc"),Bc={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},hp=Pe({},Za,Bc),gp=e=>(e.displayName="Transition",e.props=hp,e),mp=gp((e,{slots:t})=>Oe(cd,yp(e),t)),Yt=(e,t=[])=>{Q(e)?e.forEach(n=>n(...t)):e&&e(...t)},qi=e=>e?Q(e)?e.some(t=>t.length>1):e.length>1:!1;function yp(e){const t={};for(const R in e)R in Bc||(t[R]=e[R]);if(e.css===!1)return t;const{name:n="v",type:r,duration:o,enterFromClass:s=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:l=`${n}-enter-to`,appearFromClass:a=s,appearActiveClass:u=i,appearToClass:c=l,leaveFromClass:f=`${n}-leave-from`,leaveActiveClass:d=`${n}-leave-active`,leaveToClass:p=`${n}-leave-to`}=e,h=_p(o),y=h&&h[0],E=h&&h[1],{onBeforeEnter:w,onEnter:b,onEnterCancelled:g,onLeave:_,onLeaveCancelled:S,onBeforeAppear:T=w,onAppear:C=b,onAppearCancelled:N=g}=t,O=(R,H,D,z)=>{R._enterCancelled=z,Xt(R,H?c:l),Xt(R,H?u:i),D&&D()},k=(R,H)=>{R._isLeaving=!1,Xt(R,f),Xt(R,p),Xt(R,d),H&&H()},U=R=>(H,D)=>{const z=R?C:b,F=()=>O(H,R,D);Yt(z,[H,F]),zi(()=>{Xt(H,R?a:s),Ct(H,R?c:l),qi(z)||Ji(H,r,y,F)})};return Pe(t,{onBeforeEnter(R){Yt(w,[R]),Ct(R,s),Ct(R,i)},onBeforeAppear(R){Yt(T,[R]),Ct(R,a),Ct(R,u)},onEnter:U(!1),onAppear:U(!0),onLeave(R,H){R._isLeaving=!0;const D=()=>k(R,H);Ct(R,f),R._enterCancelled?(Ct(R,d),Xi(R)):(Xi(R),Ct(R,d)),zi(()=>{R._isLeaving&&(Xt(R,f),Ct(R,p),qi(_)||Ji(R,r,E,D))}),Yt(_,[R,D])},onEnterCancelled(R){O(R,!1,void 0,!0),Yt(g,[R])},onAppearCancelled(R){O(R,!0,void 0,!0),Yt(N,[R])},onLeaveCancelled(R){k(R),Yt(S,[R])}})}function _p(e){if(e==null)return null;if(se(e))return[Ko(e.enter),Ko(e.leave)];{const t=Ko(e);return[t,t]}}function Ko(e){return _a(e)}function Ct(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e[hr]||(e[hr]=new Set)).add(t)}function Xt(e,t){t.split(/\s+/).forEach(r=>r&&e.classList.remove(r));const n=e[hr];n&&(n.delete(t),n.size||(e[hr]=void 0))}function zi(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let vp=0;function Ji(e,t,n,r){const o=e._endId=++vp,s=()=>{o===e._endId&&r()};if(n!=null)return setTimeout(s,n);const{type:i,timeout:l,propCount:a}=bp(e,t);if(!i)return r();const u=i+"end";let c=0;const f=()=>{e.removeEventListener(u,d),s()},d=p=>{p.target===e&&++c>=a&&f()};setTimeout(()=>{c<a&&f()},l+1),e.addEventListener(u,d)}function bp(e,t){const n=window.getComputedStyle(e),r=h=>(n[h]||"").split(", "),o=r(`${Dt}Delay`),s=r(`${Dt}Duration`),i=Qi(o,s),l=r(`${qn}Delay`),a=r(`${qn}Duration`),u=Qi(l,a);let c=null,f=0,d=0;t===Dt?i>0&&(c=Dt,f=i,d=s.length):t===qn?u>0&&(c=qn,f=u,d=a.length):(f=Math.max(i,u),c=f>0?i>u?Dt:qn:null,d=c?c===Dt?s.length:a.length:0);const p=c===Dt&&/\b(?:transform|all)(?:,|$)/.test(r(`${Dt}Property`).toString());return{type:c,timeout:f,propCount:d,hasTransform:p}}function Qi(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max(...t.map((n,r)=>Yi(n)+Yi(e[r])))}function Yi(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function Xi(e){return(e?e.ownerDocument:document).body.offsetHeight}function wp(e,t,n){const r=e[hr];r&&(t=(t?[t,...r]:[...r]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const Zi=Symbol("_vod"),Ep=Symbol("_vsh"),Sp=Symbol(""),Tp=/(?:^|;)\s*display\s*:/;function Ap(e,t,n){const r=e.style,o=pe(n);let s=!1;if(n&&!o){if(t)if(pe(t))for(const i of t.split(";")){const l=i.slice(0,i.indexOf(":")).trim();n[l]==null&&Vr(r,l,"")}else for(const i in t)n[i]==null&&Vr(r,i,"");for(const i in n)i==="display"&&(s=!0),Vr(r,i,n[i])}else if(o){if(t!==n){const i=r[Sp];i&&(n+=";"+i),r.cssText=n,s=Tp.test(n)}}else t&&e.removeAttribute("style");Zi in e&&(e[Zi]=s?r.display:"",e[Ep]&&(r.display="none"))}const el=/\s*!important$/;function Vr(e,t,n){if(Q(n))n.forEach(r=>Vr(e,t,r));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const r=Cp(e,t);el.test(n)?e.setProperty(qt(r),n.replace(el,""),"important"):e[r]=n}}const tl=["Webkit","Moz","ms"],Go={};function Cp(e,t){const n=Go[t];if(n)return n;let r=$e(t);if(r!=="filter"&&r in e)return Go[t]=r;r=yo(r);for(let o=0;o<tl.length;o++){const s=tl[o]+r;if(s in e)return Go[t]=s}return t}const nl="http://www.w3.org/1999/xlink";function rl(e,t,n,r,o,s=vf(t)){r&&t.startsWith("xlink:")?n==null?e.removeAttributeNS(nl,t.slice(6,t.length)):e.setAttributeNS(nl,t,n):n==null||s&&!ba(n)?e.removeAttribute(t):e.setAttribute(t,s?"":Ye(n)?String(n):n)}function ol(e,t,n,r,o){if(t==="innerHTML"||t==="textContent"){n!=null&&(e[t]=t==="innerHTML"?Dc(n):n);return}const s=e.tagName;if(t==="value"&&s!=="PROGRESS"&&!s.includes("-")){const l=s==="OPTION"?e.getAttribute("value")||"":e.value,a=n==null?e.type==="checkbox"?"on":"":String(n);(l!==a||!("_value"in e))&&(e.value=a),n==null&&e.removeAttribute(t),e._value=n;return}let i=!1;if(n===""||n==null){const l=typeof e[t];l==="boolean"?n=ba(n):n==null&&l==="string"?(n="",i=!0):l==="number"&&(n=0,i=!0)}try{e[t]=n}catch{}i&&e.removeAttribute(o||t)}function Rp(e,t,n,r){e.addEventListener(t,n,r)}function xp(e,t,n,r){e.removeEventListener(t,n,r)}const sl=Symbol("_vei");function Pp(e,t,n,r,o=null){const s=e[sl]||(e[sl]={}),i=s[t];if(r&&i)i.value=r;else{const[l,a]=kp(t);if(r){const u=s[t]=Np(r,o);Rp(e,l,u,a)}else i&&(xp(e,l,i,a),s[t]=void 0)}}const il=/(?:Once|Passive|Capture)$/;function kp(e){let t;if(il.test(e)){t={};let r;for(;r=e.match(il);)e=e.slice(0,e.length-r[0].length),t[r[0].toLowerCase()]=!0}return[e[2]===":"?e.slice(3):qt(e.slice(2)),t]}let qo=0;const Op=Promise.resolve(),Ip=()=>qo||(Op.then(()=>qo=0),qo=Date.now());function Np(e,t){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;ut(Mp(r,n.value),t,5,[r])};return n.value=e,n.attached=Ip(),n}function Mp(e,t){if(Q(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(r=>o=>!o._stopped&&r&&r(o))}else return t}const ll=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,Lp=(e,t,n,r,o,s)=>{const i=o==="svg";t==="class"?wp(e,r,i):t==="style"?Ap(e,n,r):vr(t)?ho(t)||Pp(e,t,n,r,s):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):Hp(e,t,r,i))?(ol(e,t,r),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&rl(e,t,r,i,s,t!=="value")):e._isVueCE&&(jp(e,t)||e._def.__asyncLoader&&(/[A-Z]/.test(t)||!pe(r)))?ol(e,$e(t),r,s,t):(t==="true-value"?e._trueValue=r:t==="false-value"&&(e._falseValue=r),rl(e,t,r,i))};function Hp(e,t,n,r){if(r)return!!(t==="innerHTML"||t==="textContent"||t in e&&ll(t)&&X(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"){const o=e.tagName;if(o==="IMG"||o==="VIDEO"||o==="CANVAS"||o==="SOURCE")return!1}return ll(t)&&pe(n)?!1:t in e}function jp(e,t){const n=e._def.props;if(!n)return!1;const r=$e(t);return Array.isArray(n)?n.some(o=>$e(o)===r):Object.keys(n).some(o=>$e(o)===r)}const Fp=["ctrl","shift","alt","meta"],Dp={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>Fp.some(n=>e[`${n}Key`]&&!t.includes(n))},ub=(e,t)=>{if(!e)return e;const n=e._withMods||(e._withMods={}),r=t.join(".");return n[r]||(n[r]=((o,...s)=>{for(let i=0;i<t.length;i++){const l=Dp[t[i]];if(l&&l(o,t))return}return e(o,...s)}))},Bp={esc:"escape",space:" ",up:"arrow-up",left:"arrow-left",right:"arrow-right",down:"arrow-down",delete:"backspace"},fb=(e,t)=>{const n=e._withKeys||(e._withKeys={}),r=t.join(".");return n[r]||(n[r]=(o=>{if(!("key"in o))return;const s=qt(o.key);if(t.some(i=>i===s||Bp[i]===s))return e(o)}))},$c=Pe({patchProp:Lp},pp);let ir,al=!1;function $p(){return ir||(ir=Kd($c))}function Up(){return ir=al?ir:Gd($c),al=!0,ir}const Vp=((...e)=>{const t=$p().createApp(...e),{mount:n}=t;return t.mount=r=>{const o=Vc(r);if(!o)return;const s=t._component;!X(s)&&!s.render&&!s.template&&(s.template=o.innerHTML),o.nodeType===1&&(o.textContent="");const i=n(o,!1,Uc(o));return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),i},t}),Wp=((...e)=>{const t=Up().createApp(...e),{mount:n}=t;return t.mount=r=>{const o=Vc(r);if(o)return n(o,!0,Uc(o))},t});function Uc(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function Vc(e){return pe(e)?document.querySelector(e):e}const Kp=/"(?:_|\\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*:/,Gp=/"(?: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*:/,qp=/^\s*["[{]|^\s*-?\d{1,16}(\.\d{1,17})?([Ee][+-]?\d+)?\s*$/;function zp(e,t){if(e==="__proto__"||e==="constructor"&&t&&typeof t=="object"&&"prototype"in t){Jp(e);return}return t}function Jp(e){console.warn(`[destr] Dropping "${e}" key to prevent prototype pollution.`)}function Qp(e,t={}){if(typeof e!="string")return e;if(e[0]==='"'&&e[e.length-1]==='"'&&e.indexOf("\\")===-1)return e.slice(1,-1);const 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 Number.NaN;case"infinity":return Number.POSITIVE_INFINITY;case"-infinity":return Number.NEGATIVE_INFINITY}if(!qp.test(e)){if(t.strict)throw new SyntaxError("[destr] Invalid JSON");return e}try{if(Kp.test(e)||Gp.test(e)){if(t.strict)throw new Error("[destr] Possible prototype pollution");return JSON.parse(e,zp)}return JSON.parse(e)}catch(r){if(t.strict)throw r;return e}}const Wc=/#/g,Kc=/&/g,Yp=/\//g,Xp=/=/g,Zp=/\?/g,ko=/\+/g,eh=/%5e/gi,th=/%60/gi,nh=/%7c/gi,rh=/%20/gi,oh=/%2f/gi,sh=/%252f/gi;function Gc(e){return encodeURI(""+e).replace(nh,"|")}function Ss(e){return Gc(typeof e=="string"?e:JSON.stringify(e)).replace(ko,"%2B").replace(rh,"+").replace(Wc,"%23").replace(Kc,"%26").replace(th,"`").replace(eh,"^").replace(Yp,"%2F")}function zo(e){return Ss(e).replace(Xp,"%3D")}function ih(e){return Gc(e).replace(Wc,"%23").replace(Zp,"%3F").replace(sh,"%2F").replace(Kc,"%26").replace(ko,"%2B")}function gr(e=""){try{return decodeURIComponent(""+e)}catch{return""+e}}function lh(e){return gr(e.replace(oh,"%252F"))}function ah(e){return gr(e.replace(ko," "))}function ch(e){return gr(e.replace(ko," "))}function qc(e=""){const t=Object.create(null);e[0]==="?"&&(e=e.slice(1));for(const n of e.split("&")){const r=n.match(/([^=]+)=?(.*)/)||[];if(r.length<2)continue;const o=ah(r[1]);if(o==="__proto__"||o==="constructor")continue;const s=ch(r[2]||"");t[o]===void 0?t[o]=s:Array.isArray(t[o])?t[o].push(s):t[o]=[t[o],s]}return t}function uh(e,t){return(typeof t=="number"||typeof t=="boolean")&&(t=String(t)),t?Array.isArray(t)?t.map(n=>`${zo(e)}=${Ss(n)}`).join("&"):`${zo(e)}=${Ss(t)}`:zo(e)}function fh(e){return Object.keys(e).filter(t=>e[t]!==void 0).map(t=>uh(t,e[t])).filter(Boolean).join("&")}const dh=/^[\s\w\0+.-]{2,}:([/\\]{1,2})/,ph=/^[\s\w\0+.-]{2,}:([/\\]{2})?/,hh=/^([/\\]\s*){2,}[^/\\]/,gh=/^[\s\0]*(blob|data|javascript|vbscript):$/i,mh=/\/$|\/\?|\/#/,yh=/^\.?\//;function Un(e,t={}){return typeof t=="boolean"&&(t={acceptRelative:t}),t.strict?dh.test(e):ph.test(e)||(t.acceptRelative?hh.test(e):!1)}function _h(e){return!!e&&gh.test(e)}function Ts(e="",t){return t?mh.test(e):e.endsWith("/")}function lo(e="",t){if(!t)return(Ts(e)?e.slice(0,-1):e)||"/";if(!Ts(e,!0))return e||"/";let n=e,r="";const o=e.indexOf("#");o!==-1&&(n=e.slice(0,o),r=e.slice(o));const[s,...i]=n.split("?");return((s.endsWith("/")?s.slice(0,-1):s)||"/")+(i.length>0?`?${i.join("?")}`:"")+r}function vh(e="",t){if(!t)return e.endsWith("/")?e:e+"/";if(Ts(e,!0))return e||"/";let n=e,r="";const o=e.indexOf("#");if(o!==-1&&(n=e.slice(0,o),r=e.slice(o),!n))return r;const[s,...i]=n.split("?");return s+"/"+(i.length>0?`?${i.join("?")}`:"")+r}function bh(e,t){if(Jc(t)||Un(e))return e;const n=lo(t);if(e.startsWith(n)){const r=e[n.length];if(!r||r==="/"||r==="?")return e}return Qc(n,e)}function cl(e,t){if(Jc(t))return e;const n=lo(t);if(!e.startsWith(n))return e;const r=e[n.length];if(r&&r!=="/"&&r!=="?")return e;const o=e.slice(n.length);return o[0]==="/"?o:"/"+o}function zc(e,t){const n=ci(e),r={...qc(n.search),...t};return n.search=fh(r),Eh(n)}function Jc(e){return!e||e==="/"}function wh(e){return e&&e!=="/"}function Qc(e,...t){let n=e||"";for(const r of t.filter(o=>wh(o)))if(n){const o=r.replace(yh,"");n=vh(n)+o}else n=r;return n}function Yc(...e){const t=/\/(?!\/)/,n=e.filter(Boolean),r=[];let o=0;for(const i of n)if(!(!i||i==="/")){for(const[l,a]of i.split(t).entries())if(!(!a||a===".")){if(a===".."){if(r.length===1&&Un(r[0]))continue;r.pop(),o--;continue}if(l===1&&r[r.length-1]?.endsWith(":/")){r[r.length-1]+="/"+a;continue}r.push(a),o++}}let s=r.join("/");return o>=0?n[0]?.startsWith("/")&&!s.startsWith("/")?s="/"+s:n[0]?.startsWith("./")&&!s.startsWith("./")&&(s="./"+s):s="../".repeat(-1*o)+s,n[n.length-1]?.endsWith("/")&&!s.endsWith("/")&&(s+="/"),s}function Xc(e,t){return gr(lo(e))===gr(lo(t))}const Zc=Symbol.for("ufo:protocolRelative");function ci(e="",t){const n=e.match(/^[\s\0]*(blob:|data:|javascript:|vbscript:)(.*)/i);if(n){const[,f,d=""]=n;return{protocol:f.toLowerCase(),pathname:d,href:f+d,auth:"",host:"",search:"",hash:""}}if(!Un(e,{acceptRelative:!0}))return ul(e);const[,r="",o,s=""]=e.replace(/\\/g,"/").match(/^[\s\0]*([\w+.-]{2,}:)?\/\/([^/@]+@)?(.*)/)||[];let[,i="",l=""]=s.match(/([^#/?]*)(.*)?/)||[];r==="file:"&&(l=l.replace(/\/(?=[A-Za-z]:)/,""));const{pathname:a,search:u,hash:c}=ul(l);return{protocol:r.toLowerCase(),auth:o?o.slice(0,Math.max(0,o.length-1)):"",host:i,pathname:a,search:u,hash:c,[Zc]:!r}}function ul(e=""){const[t="",n="",r=""]=(e.match(/([^#?]*)(\?[^#]*)?(#.*)?/)||[]).splice(1);return{pathname:t,search:n,hash:r}}function Eh(e){const t=e.pathname||"",n=e.search?(e.search.startsWith("?")?"":"?")+e.search:"",r=e.hash||"",o=e.auth?e.auth+"@":"",s=e.host||"";return(e.protocol||e[Zc]?(e.protocol||"")+"//":"")+o+s+t+n+r}class Sh extends Error{constructor(t,n){super(t,n),this.name="FetchError",n?.cause&&!this.cause&&(this.cause=n.cause)}}function Th(e){const t=e.error?.message||e.error?.toString()||"",n=e.request?.method||e.options?.method||"GET",r=e.request?.url||String(e.request)||"/",o=`[${n}] ${JSON.stringify(r)}`,s=e.response?`${e.response.status} ${e.response.statusText}`:"<no response>",i=`${o}: ${s}${t?` ${t}`:""}`,l=new Sh(i,e.error?{cause:e.error}:void 0);for(const a of["request","options","response"])Object.defineProperty(l,a,{get(){return e[a]}});for(const[a,u]of[["data","_data"],["status","status"],["statusCode","status"],["statusText","statusText"],["statusMessage","statusText"]])Object.defineProperty(l,a,{get(){return e.response&&e.response[u]}});return l}const Ah=new Set(Object.freeze(["PATCH","POST","PUT","DELETE"]));function fl(e="GET"){return Ah.has(e.toUpperCase())}function Ch(e){if(e===void 0)return!1;const t=typeof e;return t==="string"||t==="number"||t==="boolean"||t===null?!0:t!=="object"?!1:Array.isArray(e)?!0:e.buffer||e instanceof FormData||e instanceof URLSearchParams?!1:e.constructor&&e.constructor.name==="Object"||typeof e.toJSON=="function"}const Rh=new Set(["image/svg","application/xml","application/xhtml","application/html"]),xh=/^application\/(?:[\w!#$%&*.^`~-]*\+)?json(;.+)?$/i;function Ph(e=""){if(!e)return"json";const t=e.split(";").shift()||"";return xh.test(t)?"json":t==="text/event-stream"?"stream":Rh.has(t)||t.startsWith("text/")?"text":"blob"}function kh(e,t,n,r){const o=Oh(t?.headers??e?.headers,n?.headers,r);let s;return(n?.query||n?.params||t?.params||t?.query)&&(s={...n?.params,...n?.query,...t?.params,...t?.query}),{...n,...t,query:s,params:s,headers:o}}function Oh(e,t,n){if(!t)return new n(e);const r=new n(t);if(e)for(const[o,s]of Symbol.iterator in e||Array.isArray(e)?e:new n(e))r.set(o,s);return r}async function Lr(e,t){if(t)if(Array.isArray(t))for(const n of t)await n(e);else await t(e)}const Ih=new Set([408,409,425,429,500,502,503,504]),Nh=new Set([101,204,205,304]);function eu(e={}){const{fetch:t=globalThis.fetch,Headers:n=globalThis.Headers,AbortController:r=globalThis.AbortController}=e;async function o(l){const a=l.error&&l.error.name==="AbortError"&&!l.options.timeout||!1;if(l.options.retry!==!1&&!a){let c;typeof l.options.retry=="number"?c=l.options.retry:c=fl(l.options.method)?0:1;const f=l.response&&l.response.status||500;if(c>0&&(Array.isArray(l.options.retryStatusCodes)?l.options.retryStatusCodes.includes(f):Ih.has(f))){const d=typeof l.options.retryDelay=="function"?l.options.retryDelay(l):l.options.retryDelay||0;return d>0&&await new Promise(p=>setTimeout(p,d)),s(l.request,{...l.options,retry:c-1})}}const u=Th(l);throw Error.captureStackTrace&&Error.captureStackTrace(u,s),u}const s=async function(a,u={}){const c={request:a,options:kh(a,u,e.defaults,n),response:void 0,error:void 0};if(c.options.method&&(c.options.method=c.options.method.toUpperCase()),c.options.onRequest&&(await Lr(c,c.options.onRequest),c.options.headers instanceof n||(c.options.headers=new n(c.options.headers||{}))),typeof c.request=="string"&&(c.options.baseURL&&(c.request=bh(c.request,c.options.baseURL)),c.options.query&&(c.request=zc(c.request,c.options.query),delete c.options.query),"query"in c.options&&delete c.options.query,"params"in c.options&&delete c.options.params),c.options.body&&fl(c.options.method))if(Ch(c.options.body)){const p=c.options.headers.get("content-type");typeof c.options.body!="string"&&(c.options.body=p==="application/x-www-form-urlencoded"?new URLSearchParams(c.options.body).toString():JSON.stringify(c.options.body)),p||c.options.headers.set("content-type","application/json"),c.options.headers.has("accept")||c.options.headers.set("accept","application/json")}else("pipeTo"in c.options.body&&typeof c.options.body.pipeTo=="function"||typeof c.options.body.pipe=="function")&&("duplex"in c.options||(c.options.duplex="half"));let f;if(!c.options.signal&&c.options.timeout){const p=new r;f=setTimeout(()=>{const h=new Error("[TimeoutError]: The operation was aborted due to timeout");h.name="TimeoutError",h.code=23,p.abort(h)},c.options.timeout),c.options.signal=p.signal}try{c.response=await t(c.request,c.options)}catch(p){return c.error=p,c.options.onRequestError&&await Lr(c,c.options.onRequestError),await o(c)}finally{f&&clearTimeout(f)}if((c.response.body||c.response._bodyInit)&&!Nh.has(c.response.status)&&c.options.method!=="HEAD"){const p=(c.options.parseResponse?"json":c.options.responseType)||Ph(c.response.headers.get("content-type")||"");switch(p){case"json":{const h=await c.response.text(),y=c.options.parseResponse||Qp;c.response._data=y(h);break}case"stream":{c.response._data=c.response.body||c.response._bodyInit;break}default:c.response._data=await c.response[p]()}}return c.options.onResponse&&await Lr(c,c.options.onResponse),!c.options.ignoreResponseError&&c.response.status>=400&&c.response.status<600?(c.options.onResponseError&&await Lr(c,c.options.onResponseError),await o(c)):c.response},i=async function(a,u){return(await s(a,u))._data};return i.raw=s,i.native=(...l)=>t(...l),i.create=(l={},a={})=>eu({...e,...a,defaults:{...e.defaults,...a.defaults,...l}}),i}const ao=(function(){if(typeof globalThis<"u")return globalThis;if(typeof self<"u")return self;if(typeof window<"u")return window;if(typeof global<"u")return global;throw new Error("unable to locate global object")})(),Mh=ao.fetch?(...e)=>ao.fetch(...e):()=>Promise.reject(new Error("[ofetch] global.fetch is not supported!")),Lh=ao.Headers,Hh=ao.AbortController,jh=eu({fetch:Mh,Headers:Lh,AbortController:Hh}),Fh=jh,Dh=()=>window?.__NUXT__?.config||window?.useNuxtApp?.().payload?.config,ui=()=>Dh().app,Bh=()=>ui().baseURL,$h=()=>ui().buildAssetsDir,fi=(...e)=>Yc(tu(),$h(),...e),tu=(...e)=>{const t=ui(),n=t.cdnURL||t.baseURL;return e.length?Yc(n,...e):n};globalThis.__buildAssetsURL=fi,globalThis.__publicAssetsURL=tu;globalThis.$fetch||(globalThis.$fetch=Fh.create({baseURL:Bh()}));"global"in globalThis||(globalThis.global=globalThis);function As(e,t={},n){for(const r in e){const o=e[r],s=n?`${n}:${r}`:r;typeof o=="object"&&o!==null?As(o,t,s):typeof o=="function"&&(t[s]=o)}return t}const nu=(()=>{if(console.createTask)return console.createTask;const e={run:t=>t()};return()=>e})();function ru(e,t,n,r){for(let o=n;o<e.length;o+=1)try{const s=r?r.run(()=>e[o](...t)):e[o](...t);if(s&&typeof s.then=="function")return Promise.resolve(s).then(()=>ru(e,t,o+1,r))}catch(s){return Promise.reject(s)}}function Uh(e,t,n){if(e.length>0)return ru(e,t,0,nu(n))}function Vh(e,t,n){if(e.length>0){const r=nu(n);return Promise.all(e.map(o=>r.run(()=>o(...t))))}}function Jo(e,t){for(const n of[...e])n(t)}var Wh=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()=>{};const r=e;let o;for(;this._deprecatedHooks[e];)o=this._deprecatedHooks[e],e=o.to;if(o&&!n.allowDeprecated){let s=o.message;s||(s=`${r} hook has been deprecated`+(o.to?`, please use ${o.to}`:"")),this._deprecatedMessages||(this._deprecatedMessages=new Set),this._deprecatedMessages.has(s)||(console.warn(s),this._deprecatedMessages.add(s))}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),t=void 0)}}hookOnce(e,t){let n,r=(...o)=>(typeof n=="function"&&n(),n=void 0,r=void 0,t(...o));return n=this.hook(e,r),n}removeHook(e,t){const n=this._hooks[e];if(n){const r=n.indexOf(t);r!==-1&&n.splice(r,1),n.length===0&&(this._hooks[e]=void 0)}}clearHook(e){this._hooks[e]=void 0}deprecateHook(e,t){this._deprecatedHooks[e]=typeof t=="string"?{to:t}:t;const n=this._hooks[e]||[];this._hooks[e]=void 0;for(const r of n)this.hook(e,r)}deprecateHooks(e){for(const t in e)this.deprecateHook(t,e[t])}addHooks(e){const t=As(e),n=Object.keys(t).map(r=>this.hook(r,t[r]));return()=>{for(const r of n)r();n.length=0}}removeHooks(e){const t=As(e);for(const n in t)this.removeHook(n,t[n])}removeAllHooks(){this._hooks={}}callHook(e,...t){return this.callHookWith(Uh,e,t)}callHookParallel(e,...t){return this.callHookWith(Vh,e,t)}callHookWith(e,t,n){const r=this._before||this._after?{name:t,args:n,context:{}}:void 0;this._before&&Jo(this._before,r);const o=e(this._hooks[t]?[...this._hooks[t]]:[],n,t);return o instanceof Promise?o.finally(()=>{this._after&&r&&Jo(this._after,r)}):(this._after&&r&&Jo(this._after,r),o)}beforeEach(e){return this._before=this._before||[],this._before.push(e),()=>{if(this._before!==void 0){const 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){const t=this._after.indexOf(e);t!==-1&&this._after.splice(t,1)}}}};function ou(){return new Wh}function Kh(e={}){let t,n=!1;const r=i=>{if(t&&t!==i)throw new Error("Context conflict")};let o;if(e.asyncContext){const i=e.AsyncLocalStorage||globalThis.AsyncLocalStorage;i?o=new i:console.warn("[unctx] `AsyncLocalStorage` is not provided.")}const s=()=>{if(o){const i=o.getStore();if(i!==void 0)return i}return t};return{use:()=>{const i=s();if(i===void 0)throw new Error("Context is not available");return i},tryUse:()=>s(),set:(i,l)=>{l||r(i),t=i,n=!0},unset:()=>{t=void 0,n=!1},call:(i,l)=>{r(i),t=i;try{return o?o.run(i,l):l()}finally{n||(t=void 0)}},async callAsync(i,l){t=i;const a=()=>{t=i},u=()=>t===i?a:void 0;Cs.add(u);try{const c=o?o.run(i,l):l();return n||(t=void 0),await c}finally{Cs.delete(u)}}}}function Gh(e={}){const t={};return{get(n,r={}){return t[n]||(t[n]=Kh({...e,...r})),t[n]}}}const co=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof global<"u"?global:typeof window<"u"?window:{},dl="__unctx__",qh=co[dl]||(co[dl]=Gh()),zh=(e,t={})=>qh.get(e,t),pl="__unctx_async_handlers__",Cs=co[pl]||(co[pl]=new Set);function lr(e){const t=[];for(const o of Cs){const s=o();s&&t.push(s)}const n=()=>{for(const o of t)o()};let r=e();return r&&typeof r=="object"&&"catch"in r&&(r=r.catch(o=>{throw n(),o})),[r,n]}const hl=!1,gl=!1,Jh=!1,ml={id:"__nuxt-loader"},db={componentName:"NuxtLink",prefetch:!0,prefetchOn:{visibility:!0}},pb={deep:!1},hb={},Qh="#__nuxt",su="nuxt-app",yl=36e5,Yh="vite:preloadError";function iu(e=su){return zh(e,{asyncContext:!1})}const Xh="__nuxt_plugin";function Zh(e){let t=0;const n={_id:e.id||su||"nuxt-app",_scope:qs(),provide:void 0,versions:{get nuxt(){return"4.4.2"},get vue(){return n.vueApp.version}},payload:st({...e.ssrContext?.payload||{},data:st({}),state:nt({}),once:new Set,_errors:st({})}),static:{data:{}},runWithContext(o){return n._scope.active&&!br()?n._scope.run(()=>_l(n,o)):_l(n,o)},isHydrating:!0,deferHydration(){if(!n.isHydrating)return()=>{};t++;let o=!1;return()=>{if(!o&&(o=!0,t--,t===0))return n.isHydrating=!1,n.callHook("app:suspense:resolve")}},_asyncDataPromises:{},_asyncData:st({}),_state:st({}),_payloadRevivers:{},...e};{const o=window.__NUXT__;if(o)for(const s in o)switch(s){case"data":case"state":case"_errors":Object.assign(n.payload[s],o[s]);break;default:n.payload[s]=o[s]}}n.hooks=ou(),n.hook=n.hooks.hook;{const o=n.hooks.callHook;n.hooks.callHook=(s,...i)=>Promise.resolve().then(()=>o(s,...i))}n.callHook=n.hooks.callHook,n.provide=(o,s)=>{const i="$"+o;Hr(n,i,s),Hr(n.vueApp.config.globalProperties,i,s)},Hr(n.vueApp,"$nuxt",n),Hr(n.vueApp.config.globalProperties,"$nuxt",n);{window.addEventListener(Yh,s=>{n.callHook("app:chunkError",{error:s.payload}),s.payload.message.includes("Unable to preload CSS")&&s.preventDefault()}),window.useNuxtApp||=Ae;const o=n.hook("app:error",(...s)=>{console.error("[nuxt] error caught during app initialization",...s)});n.hook("app:mounted",o)}const r=n.payload.config;return n.provide("config",r),n}function eg(e,t){t.hooks&&e.hooks.addHooks(t.hooks)}async function tg(e,t){if(typeof t=="function"){const{provide:n}=await e.runWithContext(()=>t(e))||{};if(n&&typeof n=="object")for(const r in n)e.provide(r,n[r])}}async function ng(e,t){const n=new Set,r=[],o=[];let s,i=0;async function l(a){const u=a.dependsOn?.filter(c=>t.some(f=>f._name===c)&&!n.has(c))??[];if(u.length>0)r.push([new Set(u),a]);else{const c=tg(e,a).then(async()=>{a._name&&(n.add(a._name),await Promise.all(r.map(async([f,d])=>{f.has(a._name)&&(f.delete(a._name),f.size===0&&(i++,await l(d)))})))}).catch(f=>{if(!a.parallel&&!e.payload.error)throw f;s||=f});a.parallel?o.push(c):await c}}for(const a of t)eg(e,a);for(const a of t)await l(a);if(await Promise.all(o),i)for(let a=0;a<i;a++)await Promise.all(o);if(s)throw e.payload.error||s}function Tt(e){if(typeof e=="function")return e;const t=e._name||e.name;return delete e.name,Object.assign(e.setup||(()=>{}),e,{[Xh]:!0,_name:t})}function _l(e,t,n){const r=()=>t();return iu(e._id).set(e),e.vueApp.runWithContext(r)}function rg(e){let t;return Dn()&&(t=Ue()?.appContext.app.$nuxt),t||=iu(e).tryUse(),t||null}function Ae(e){const t=rg(e);if(!t)throw new Error("[nuxt] instance unavailable");return t}function Oo(e){return Ae().$config}function Hr(e,t,n){Object.defineProperty(e,t,{get:()=>n})}function Qo(e){if(e===null||typeof e!="object")return!1;const 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 Rs(e,t,n=".",r){if(!Qo(t))return Rs(e,{},n,r);const o={...t};for(const s of Object.keys(e)){if(s==="__proto__"||s==="constructor")continue;const i=e[s];i!=null&&(r&&r(o,s,i,n)||(Array.isArray(i)&&Array.isArray(o[s])?o[s]=[...i,...o[s]]:Qo(i)&&Qo(o[s])?o[s]=Rs(i,o[s],(n?`${n}.`:"")+s.toString(),r):o[s]=i))}return o}function lu(e){return(...t)=>t.reduce((n,r)=>Rs(n,r,"",e),{})}const au=lu(),og=lu((e,t,n)=>{if(e[t]!==void 0&&typeof n=="function")return e[t]=n(e[t]),!0});function sg(e,t){try{return t in e}catch{return!1}}class vl extends Error{static __h3_error__=!0;statusCode=500;fatal=!1;unhandled=!1;statusMessage;data;cause;constructor(t,n={}){super(t,n),n.cause&&!this.cause&&(this.cause=n.cause)}toJSON(){const t={message:this.message,statusCode:xs(this.statusCode,500)};return this.statusMessage&&(t.statusMessage=cu(this.statusMessage)),this.data!==void 0&&(t.data=this.data),t}}function ig(e){if(typeof e=="string")return new vl(e);if(lg(e))return e;const t=new vl(e.message??e.statusMessage??"",{cause:e.cause||e});if(sg(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=xs(e.statusCode,t.statusCode):e.status&&(t.statusCode=xs(e.status,t.statusCode)),e.statusMessage?t.statusMessage=e.statusMessage:e.statusText&&(t.statusMessage=e.statusText),t.statusMessage){const n=t.statusMessage;cu(t.statusMessage)!==n&&console.warn("[h3] Please prefer using `message` for longer error messages instead of `statusMessage`. In the future, `statusMessage` will be sanitized by default.")}return e.fatal!==void 0&&(t.fatal=e.fatal),e.unhandled!==void 0&&(t.unhandled=e.unhandled),t}function lg(e){return e?.constructor?.__h3_error__===!0}const ag=/[^\u0009\u0020-\u007E]/g;function cu(e=""){return e.replace(ag,"")}function xs(e,t=200){return!e||(typeof e=="string"&&(e=Number.parseInt(e,10)),e<100||e>999)?t:e}const uu=Symbol("layout-meta"),pn=Symbol("route");import.meta.url.replace(/\/app\/.*$/,"/");const rt=()=>Ae()?.$router,di=()=>Dn()?be(pn,Ae()._route):Ae()._route;const cg=()=>{try{if(Ae()._processingMiddleware)return!0}catch{return!1}return!1},gb=(e,t)=>{e||="/";const n=typeof e=="string"?e:"path"in e?ug(e):rt().resolve(e).href;if(t?.open){const{target:u="_blank",windowFeatures:c={}}=t.open,f=[];for(const[d,p]of Object.entries(c))p!==void 0&&f.push(`${d.toLowerCase()}=${p}`);return open(n,u,f.join(", ")),Promise.resolve()}const r=Un(n,{acceptRelative:!0}),o=t?.external||r;if(o){if(!t?.external)throw new Error("Navigating to an external URL is not allowed by default. Use `navigateTo(url, { external: true })`.");const{protocol:u}=new URL(n,window.location.href);if(u&&_h(u))throw new Error(`Cannot navigate to a URL with '${u}' protocol.`)}const s=cg();if(!o&&s){if(t?.replace){if(typeof e=="string"){const{pathname:u,search:c,hash:f}=ci(e);return{path:u,...c&&{query:qc(c)},...f&&{hash:f},replace:!0}}return{...e,replace:!0}}return e}const i=rt(),l=Ae();if(o)return l._scope.stop(),t?.replace?location.replace(n):location.href=n,s?l.isHydrating?new Promise(()=>{}):!1:Promise.resolve();const a=typeof e=="string"?fg(e):e;return t?.replace?i.replace(a):i.push(a)};function ug(e){return zc(e.path||"",e.query||{})+(e.hash||"")}function fg(e){const t=ci(e);return ih(lh(t.pathname))+t.search+t.hash}const fu="__nuxt_error",Io=()=>Wa(Ae().payload,"error"),tn=e=>{const t=un(e);try{const n=Io();Ae().hooks.callHook("app:error",t),n.value||=t}catch{throw t}return t},dg=async(e={})=>{const t=Ae(),n=Io();t.callHook("app:error:cleared",e),e.redirect&&await rt().replace(e.redirect),n.value=void 0},du=e=>!!e&&typeof e=="object"&&fu in e,un=e=>{typeof e!="string"&&e.statusText&&(e.message??=e.statusText);const t=ig(e);return Object.defineProperty(t,fu,{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};function pg(e){return Uint8Array.fromBase64(e).buffer}function hg(e){return Uint8Array.from(Buffer.from(e,"base64")).buffer}function gg(e){const t=atob(e),n=t.length,r=new Uint8Array(n);for(let o=0;o<n;o++)r[o]=t.charCodeAt(o);return r.buffer}const mg=typeof Uint8Array.fromBase64=="function",yg=typeof process=="object"&&process.versions?.node!==void 0,_g=mg?pg:yg?hg:gg,vg=-1,bg=-2,wg=-3,Eg=-4,Sg=-5,Tg=-6,Ag=-7;function Cg(e,t){return Rg(JSON.parse(e),t)}function Rg(e,t){if(typeof e=="number")return s(e,!0);if(!Array.isArray(e)||e.length===0)throw new Error("Invalid input");const n=e,r=Array(n.length);let o=null;function s(i,l=!1){if(i===vg)return;if(i===wg)return NaN;if(i===Eg)return 1/0;if(i===Sg)return-1/0;if(i===Tg)return-0;if(l||typeof i!="number")throw new Error("Invalid input");if(i in r)return r[i];const a=n[i];if(!a||typeof a!="object")r[i]=a;else if(Array.isArray(a))if(typeof a[0]=="string"){const u=a[0],c=t&&Object.hasOwn(t,u)?t[u]:void 0;if(c){let f=a[1];if(typeof f!="number"&&(f=n.push(a[1])-1),o??=new Set,o.has(f))throw new Error("Invalid circular reference");return o.add(f),r[i]=c(s(f)),o.delete(f),r[i]}switch(u){case"Date":r[i]=new Date(a[1]);break;case"Set":const f=new Set;r[i]=f;for(let h=1;h<a.length;h+=1)f.add(s(a[h]));break;case"Map":const d=new Map;r[i]=d;for(let h=1;h<a.length;h+=2)d.set(s(a[h]),s(a[h+1]));break;case"RegExp":r[i]=new RegExp(a[1],a[2]);break;case"Object":{const h=a[1];if(typeof n[h]=="object"&&n[h][0]!=="BigInt")throw new Error("Invalid input");r[i]=Object(s(h));break}case"BigInt":r[i]=BigInt(a[1]);break;case"null":const p=Object.create(null);r[i]=p;for(let h=1;h<a.length;h+=2){if(a[h]==="__proto__")throw new Error("Cannot parse an object with a `__proto__` property");p[a[h]]=s(a[h+1])}break;case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Float16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":case"DataView":{if(n[a[1]][0]!=="ArrayBuffer")throw new Error("Invalid data");const h=globalThis[u],y=s(a[1]);r[i]=a[2]!==void 0?new h(y,a[2],a[3]):new h(y);break}case"ArrayBuffer":{const h=a[1];if(typeof h!="string")throw new Error("Invalid ArrayBuffer encoding");const y=_g(h);r[i]=y;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":{const h=u.slice(9);r[i]=Temporal[h].from(a[1]);break}case"URL":{const h=new URL(a[1]);r[i]=h;break}case"URLSearchParams":{const h=new URLSearchParams(a[1]);r[i]=h;break}default:throw new Error(`Unknown type ${u}`)}}else if(a[0]===Ag){const u=a[1];if(!Number.isInteger(u)||u<0)throw new Error("Invalid input");const c=new Array(u);r[i]=c;for(let f=2;f<a.length;f+=2){const d=a[f];if(!Number.isInteger(d)||d<0||d>=u)throw new Error("Invalid input");c[d]=s(a[f+1])}}else{const u=new Array(a.length);r[i]=u;for(let c=0;c<a.length;c+=1){const f=a[c];f!==bg&&(u[c]=s(f))}}else{const u={};r[i]=u;for(const c of Object.keys(a)){if(c==="__proto__")throw new Error("Cannot parse an object with a `__proto__` property");const f=a[c];u[c]=s(f)}}return r[i]}return s(0)}const xg=new Set(["link","style","script","noscript"]),Pg=new Set(["title","titleTemplate","script","style","noscript"]),Ps=new Set(["base","meta","link","style","script","noscript"]),kg=new Set(["title","base","htmlAttrs","bodyAttrs","meta","link","style","script","noscript"]),Og=new Set(["base","title","titleTemplate","bodyAttrs","htmlAttrs","templateParams"]),Ig=new Set(["key","tagPosition","tagPriority","tagDuplicateStrategy","innerHTML","textContent","processTemplateParams"]),Ng=new Set(["templateParams","htmlAttrs","bodyAttrs"]),Mg=new Set(["theme-color","google-site-verification","og","article","book","profile","twitter","author"]),Lg=["name","property","http-equiv"],Hg=new Set(["viewport","description","keywords","robots"]);function pu(e){const t=e.split(":");return t.length?Mg.has(t[1]):!1}function ks(e){const{props:t,tag:n}=e;if(Og.has(n))return n;if(n==="link"&&t.rel==="canonical")return"canonical";if(n==="link"&&t.rel==="alternate"){const r=t.hreflang||t.type;if(r)return`alternate:${r}`}if(t.charset)return"charset";if(e.tag==="meta"){for(const r of Lg)if(t[r]!==void 0){const o=t[r],s=o&&typeof o=="string"&&o.includes(":"),i=o&&Hg.has(o),a=!(s||i)&&e.key?`:key:${e.key}`:"";return`${n}:${o}${a}`}}if(e.key)return`${n}:key:${e.key}`;if(t.id)return`${n}:id:${t.id}`;if(n==="link"&&t.rel==="alternate")return`alternate:${t.href||""}`;if(Pg.has(n)){const r=e.textContent||e.innerHTML;if(r)return`${n}:content:${r}`}}function hu(e){const t=e._h||e._d;if(t)return t;const n=e.textContent||e.innerHTML;return n||`${e.tag}:${Object.entries(e.props).map(([r,o])=>`${r}:${String(o)}`).join(",")}`}function uo(e,t,n){typeof e==="function"&&(!n||n!=="titleTemplate"&&!(n[0]==="o"&&n[1]==="n"))&&(e=e());const o=t?t(n,e):e;if(Array.isArray(o))return o.map(s=>uo(s,t));if(o?.constructor===Object){const s={};for(const i of Object.keys(o))s[i]=uo(o[i],t,i);return s}return o}function jg(e,t){const n=e==="style"?new Map:new Set;function r(o){if(o==null||o===void 0)return;const s=String(o).trim();if(s)if(e==="style"){const[i,...l]=s.split(":").map(a=>a?a.trim():"");i&&l.length&&n.set(i,l.join(":"))}else s.split(" ").filter(Boolean).forEach(i=>n.add(i))}return typeof t=="string"?e==="style"?t.split(";").forEach(r):r(t):Array.isArray(t)?t.forEach(o=>r(o)):t&&typeof t=="object"&&Object.entries(t).forEach(([o,s])=>{s&&s!=="false"&&(e==="style"?n.set(String(o).trim(),String(s)):r(o))}),n}function gu(e,t){if(e.props=e.props||{},!t)return e;if(e.tag==="templateParams")return e.props=t,e;const n=Ps.has(e.tag)||e.tag==="htmlAttrs"||e.tag==="bodyAttrs";return Object.entries(t).forEach(([r,o])=>{if(r==="__proto__"||r==="constructor"||r==="prototype")return;if(o===null){e.props[r]=null;return}if(r==="class"||r==="style"){e.props[r]=jg(r,o);return}if(Ig.has(r)){if((r==="textContent"||r==="innerHTML")&&typeof o=="object"){let u=t.type;if(t.type||(u="application/json"),!u?.endsWith("json")&&u!=="speculationrules")return;t.type=u,e.props.type=u,e[r]=JSON.stringify(o)}else e[r]=o;return}const s=r.startsWith("data-"),i=n&&!s?r.toLowerCase():r,l=String(o),a=e.tag==="meta"&&i==="content";l==="true"||l===""?e.props[i]=s||a?l:!0:!o&&s&&l==="false"?e.props[i]="false":o!==void 0&&(e.props[i]=o)}),e}function Fg(e,t){const n=typeof t=="object"&&typeof t!="function"?t:{[e==="script"||e==="noscript"||e==="style"?"innerHTML":"textContent"]:t},r=gu({tag:e,props:{}},n);return r.key&&xg.has(r.tag)&&(r.props["data-hid"]=r._h=r.key),r.tag==="script"&&typeof r.innerHTML=="object"&&(r.innerHTML=JSON.stringify(r.innerHTML),r.props.type=r.props.type||"application/json"),Array.isArray(r.props.content)?r.props.content.map(o=>({...r,props:{...r.props,content:o}})):r}function Dg(e,t){if(!e)return[];typeof e=="function"&&(e=e());const n=(o,s)=>{for(let i=0;i<t.length;i++)s=t[i](o,s);return s};e=n(void 0,e);const r=[];return e=uo(e,n),Object.entries(e||{}).forEach(([o,s])=>{if(s!==void 0)for(const i of Array.isArray(s)?s:[s])r.push(Fg(o,i))}),r.flat()}const bl=(e,t)=>e._w===t._w?e._p-t._p:e._w-t._w,wl={base:-10,title:10},Bg={critical:-8,high:-1,low:2},El={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}},$g=/@import/,zn=e=>e===""||e===!0;function Ug(e,t){if(typeof t.tagPriority=="number")return t.tagPriority;let n=100;const r=Bg[t.tagPriority]||0,o=e.resolvedOptions.disableCapoSorting?{link:{},script:{},style:{}}:El;if(t.tag in wl)n=wl[t.tag];else if(t.tag==="meta"){const s=t.props["http-equiv"]==="content-security-policy"?"content-security-policy":t.props.charset?"charset":t.props.name==="viewport"?"viewport":null;s&&(n=El.meta[s])}else if(t.tag==="link"&&t.props.rel)n=o.link[t.props.rel];else if(t.tag==="script"){const s=String(t.props.type);zn(t.props.async)?n=o.script.async:t.props.src&&!zn(t.props.defer)&&!zn(t.props.async)&&s!=="module"&&!s.endsWith("json")||t.innerHTML&&!s.endsWith("json")?n=o.script.sync:(zn(t.props.defer)&&t.props.src&&!zn(t.props.async)||s==="module")&&(n=o.script.defer)}else t.tag==="style"&&(n=t.innerHTML&&$g.test(t.innerHTML)?o.style.imported:o.style.sync);return(n||100)+r}function Sl(e,t){const 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 Vg(e={}){const t=ou();t.addHooks(e.hooks||{});const n=!e.document,r=new Map,o=new Map,s=new Set,i={_entryCount:1,plugins:o,dirty:!1,resolvedOptions:e,hooks:t,ssr:n,entries:r,headEntries(){return[...r.values()]},use:l=>Sl(i,l),push(l,a){const u={...a||{}};delete u.head;const c=u._index??i._entryCount++,f={_i:c,input:l,options:u},d={_poll(p=!1){i.dirty=!0,!p&&s.add(c),t.callHook("entries:updated",i)},dispose(){r.delete(c)&&i.invalidate()},patch(p){(!u.mode||u.mode==="server"&&n||u.mode==="client"&&!n)&&(f.input=p,r.set(c,f),d._poll())}};return d.patch(l),d},async resolveTags(){const l={tagMap:new Map,tags:[],entries:[...i.entries.values()]};for(await t.callHook("entries:resolve",l);s.size;){const d=s.values().next().value;s.delete(d);const p=r.get(d);if(p){const h={tags:Dg(p.input,e.propResolvers||[]).map(y=>Object.assign(y,p.options)),entry:p};await t.callHook("entries:normalize",h),p._tags=h.tags.map((y,E)=>(y._w=Ug(i,y),y._p=(p._i<<10)+E,y._d=ks(y),y._d||(y._h=hu(y)),y))}}let a=!1;l.entries.flatMap(d=>(d._tags||[]).map(p=>({...p,props:{...p.props}}))).sort(bl).reduce((d,p)=>{const h=p._d||p._h;if(!d.has(h))return d.set(h,p);const y=d.get(h);if((p?.tagDuplicateStrategy||(Ng.has(p.tag)?"merge":null)||(p.key&&p.key===y.key?"merge":null))==="merge"){const w={...y.props};Object.entries(p.props).forEach(([b,g])=>w[b]=b==="style"?new Map([...y.props.style||new Map,...g]):b==="class"?new Set([...y.props.class||new Set,...g]):g),d.set(h,{...p,props:w})}else p._p>>10===y._p>>10&&p.tag==="meta"&&pu(h)?(d.set(h,Object.assign([...Array.isArray(y)?y:[y],p],p)),a=!0):(p._w===y._w?p._p>y._p:p?._w<y?._w)&&d.set(h,p);return d},l.tagMap);const u=l.tagMap.get("title"),c=l.tagMap.get("titleTemplate");if(i._title=u?.textContent,c){const d=c?.textContent;if(i._titleTemplate=d,d){let p=typeof d=="function"?d(u?.textContent):d;typeof p=="string"&&!i.plugins.has("template-params")&&(p=p.replace("%s",u?.textContent||"")),u?p===null?l.tagMap.delete("title"):l.tagMap.set("title",{...u,textContent:p}):(c.tag="title",c.textContent=p)}}l.tags=Array.from(l.tagMap.values()),a&&(l.tags=l.tags.flat().sort(bl)),await t.callHook("tags:beforeResolve",l),await t.callHook("tags:resolve",l),await t.callHook("tags:afterResolve",l);const f=[];for(const d of l.tags){const{innerHTML:p,tag:h,props:y}=d;if(kg.has(h)&&!(Object.keys(y).length===0&&!d.innerHTML&&!d.textContent)&&!(h==="meta"&&!y.content&&!y["http-equiv"]&&!y.charset)){if(h==="script"&&p){if(String(y.type).endsWith("json")){const E=typeof p=="string"?p:JSON.stringify(p);d.innerHTML=E.replace(/</g,"\\u003C")}else typeof p=="string"&&(d.innerHTML=p.replace(new RegExp(`</${h}`,"g"),`<\\/${h}`));d._d=ks(d)}f.push(d)}}return f},invalidate(){for(const l of r.values())s.add(l._i);i.dirty=!0,t.callHook("entries:updated",i)}};return(e?.plugins||[]).forEach(l=>Sl(i,l)),i.hooks.callHook("init",i),e.init?.forEach(l=>l&&i.push(l)),i}const Wg=(e,t)=>me(t)?ve(t):t,pi="usehead";function Kg(e){return{install(n){n.config.globalProperties.$unhead=e,n.config.globalProperties.$head=e,n.provide(pi,e)}}.install}function Gg(){if(Dn()){const e=be(pi);if(e)return e}throw new Error("useHead() was called without provide context, ensure you call it through the setup() function.")}function qg(e,t={}){const n=t.head||Gg();return n.ssr?n.push(e||{},t):zg(n,e,t)}function zg(e,t,n={}){const r=Te(!1);let o;return Xs(()=>{const i=r.value?{}:uo(t,Wg);o?o.patch(i):o=e.push(i,n)}),Ue()&&($n(()=>{o.dispose()}),sc(()=>{r.value=!0}),oc(()=>{r.value=!1})),o}function Jg(e){const t=e||Ae();return t.ssrContext?.head||t.runWithContext(()=>{if(Dn()){const n=be(pi);if(!n)throw new Error("[nuxt] [unhead] Missing Unhead instance.");return n}})}function Qg(e,t={}){const n=t.head||Jg(t.nuxt);return qg(e,{head:n,...t})}const Yg=(e,t)=>[],mu=e=>au({},...Yg().map(t=>t.data).reverse()),Xg=mu;let Wr;function Zg(){return Wr=$fetch(fi(`builds/meta/${Oo().app.buildId}.json`),{responseType:"json"}),Wr.catch(e=>{console.error("[nuxt] Error fetching app manifest.",e)}),Wr}function em(){return Wr||Zg()}function yu(e){const t=typeof e=="string"?e:e.path;try{return Xg(t)}catch(n){return console.error("[nuxt] Error matching route rules.",n),{}}}async function tm(e){return null}let Zt=null;async function nm(){if(Zt)return Zt;const e=document.getElementById("__NUXT_DATA__");if(!e)return{};const t=await rm(e.textContent||""),n=e.dataset.src?await tm(e.dataset.src):void 0;return Zt={...t,...n,...window.__NUXT__},Zt.config?.public&&(Zt.config.public=nt(Zt.config.public)),Zt}async function rm(e){return await Cg(e,Ae()._payloadRevivers)}function om(e,t){Ae()._payloadRevivers[e]=t}function Tl(e){try{return JSON.parse(e)}catch{return e}}const sm=[["NuxtError",e=>un(e)],["EmptyShallowRef",e=>xe(e==="_"?void 0:e==="0n"?BigInt(0):Tl(e))],["EmptyRef",e=>Te(e==="_"?void 0:e==="0n"?BigInt(0):Tl(e))],["ShallowRef",e=>xe(e)],["ShallowReactive",e=>st(e)],["Ref",e=>Te(e)],["Reactive",e=>nt(e)]],im=Tt({name:"nuxt:revive-payload:client",order:-30,async setup(e){let t,n;for(const[r,o]of sm)om(r,o);Object.assign(e.payload,([t,n]=lr(()=>e.runWithContext(nm)),t=await t,n(),t)),delete window.__NUXT__}});async function hi(e,t={}){const n=t.document||e.resolvedOptions.document;if(!n||!e.dirty)return;const r={shouldRender:!0,tags:[]};if(await e.hooks.callHook("dom:beforeRender",r),!!r.shouldRender)return e._domUpdatePromise||(e._domUpdatePromise=new Promise(async o=>{const s=new Map,i=new Promise(p=>{e.resolveTags().then(h=>{p(h.map(y=>{const E=s.get(y._d)||0,w={tag:y,id:(E?`${y._d}:${E}`:y._d)||y._h,shouldRender:!0};return y._d&&pu(y._d)&&s.set(y._d,E+1),w}))})});let l=e._dom;if(!l){l={title:n.title,elMap:new Map().set("htmlAttrs",n.documentElement).set("bodyAttrs",n.body)};for(const p of["body","head"]){const h=n[p]?.children;for(const y of h){const E=y.tagName.toLowerCase();if(!Ps.has(E))continue;const w=gu({tag:E,props:{}},{innerHTML:y.innerHTML,...y.getAttributeNames().reduce((b,g)=>(b[g]=y.getAttribute(g),b),{})||{}});if(w.key=y.getAttribute("data-hid")||void 0,w._d=ks(w)||hu(w),l.elMap.has(w._d)){let b=1,g=w._d;for(;l.elMap.has(g);)g=`${w._d}:${b++}`;l.elMap.set(g,y)}else l.elMap.set(w._d,y)}}}l.pendingSideEffects={...l.sideEffects},l.sideEffects={};function a(p,h,y){const E=`${p}:${h}`;l.sideEffects[E]=y,delete l.pendingSideEffects[E]}function u({id:p,$el:h,tag:y}){const E=y.tag.endsWith("Attrs");l.elMap.set(p,h),E||(y.textContent&&y.textContent!==h.textContent&&(h.textContent=y.textContent),y.innerHTML&&y.innerHTML!==h.innerHTML&&(h.innerHTML=y.innerHTML),a(p,"el",()=>{h?.remove(),l.elMap.delete(p)}));for(const w in y.props){if(!Object.prototype.hasOwnProperty.call(y.props,w))continue;const b=y.props[w];if(w.startsWith("on")&&typeof b=="function"){const _=h?.dataset;if(_&&_[`${w}fired`]){const S=w.slice(0,-5);b.call(h,new Event(S.substring(2)))}h.getAttribute(`data-${w}`)!==""&&((y.tag==="bodyAttrs"?n.defaultView:h).addEventListener(w.substring(2),b.bind(h)),h.setAttribute(`data-${w}`,""));continue}const g=`attr:${w}`;if(w==="class"){if(!b)continue;for(const _ of b)E&&a(p,`${g}:${_}`,()=>h.classList.remove(_)),!h.classList.contains(_)&&h.classList.add(_)}else if(w==="style"){if(!b)continue;for(const[_,S]of b)a(p,`${g}:${_}`,()=>{h.style.removeProperty(_)}),h.style.setProperty(_,S)}else b!==!1&&b!==null&&(h.getAttribute(w)!==b&&h.setAttribute(w,b===!0?"":String(b)),E&&a(p,g,()=>h.removeAttribute(w)))}}const c=[],f={bodyClose:void 0,bodyOpen:void 0,head:void 0},d=await i;for(const p of d){const{tag:h,shouldRender:y,id:E}=p;if(y){if(h.tag==="title"){n.title=h.textContent,a("title","",()=>n.title=l.title);continue}p.$el=p.$el||l.elMap.get(E),p.$el?u(p):Ps.has(h.tag)&&c.push(p)}}for(const p of c){const h=p.tag.tagPosition||"head";p.$el=n.createElement(p.tag.tag),u(p),f[h]=f[h]||n.createDocumentFragment(),f[h].appendChild(p.$el)}for(const p of d)await e.hooks.callHook("dom:renderTag",p,n,a);f.head&&n.head.appendChild(f.head),f.bodyOpen&&n.body.insertBefore(f.bodyOpen,n.body.firstChild),f.bodyClose&&n.body.appendChild(f.bodyClose);for(const p in l.pendingSideEffects)l.pendingSideEffects[p]();e._dom=l,await e.hooks.callHook("dom:rendered",{renders:d}),o()}).finally(()=>{e._domUpdatePromise=void 0,e.dirty=!1})),e._domUpdatePromise}function lm(e={}){const t=e.domOptions?.render||hi;e.document=e.document||(typeof window<"u"?document:void 0);const n=e.document?.head.querySelector('script[id="unhead:payload"]')?.innerHTML||!1;return Vg({...e,plugins:[...e.plugins||[],{key:"client",hooks:{"entries:updated":t}}],init:[n?JSON.parse(n):!1,...e.init||[]]})}function am(e,t){let n=0;return()=>{const r=++n;t(()=>{n===r&&e()})}}function cm(e={}){const t=lm({domOptions:{render:am(()=>hi(t),n=>setTimeout(n,0))},...e});return t.install=Kg(t),t}const um={disableDefaults:!0},fm=Tt({name:"nuxt:head",enforce:"pre",setup(e){const t=cm(um);e.vueApp.use(t);{let n=!0;const r=async()=>{n=!1,await hi(t)};t.hooks.hook("dom:beforeRender",o=>{o.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)}}});const En=typeof document<"u";function _u(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function dm(e){return e.__esModule||e[Symbol.toStringTag]==="Module"||e.default&&_u(e.default)}const ie=Object.assign;function Yo(e,t){const n={};for(const r in t){const o=t[r];n[r]=ft(o)?o.map(e):e(o)}return n}const ar=()=>{},ft=Array.isArray;function Al(e,t){const n={};for(const r in e)n[r]=r in t?t[r]:e[r];return n}const vu=/#/g,pm=/&/g,hm=/\//g,gm=/=/g,mm=/\?/g,bu=/\+/g,ym=/%5B/g,_m=/%5D/g,wu=/%5E/g,vm=/%60/g,Eu=/%7B/g,bm=/%7C/g,Su=/%7D/g,wm=/%20/g;function gi(e){return e==null?"":encodeURI(""+e).replace(bm,"|").replace(ym,"[").replace(_m,"]")}function Em(e){return gi(e).replace(Eu,"{").replace(Su,"}").replace(wu,"^")}function Os(e){return gi(e).replace(bu,"%2B").replace(wm,"+").replace(vu,"%23").replace(pm,"%26").replace(vm,"`").replace(Eu,"{").replace(Su,"}").replace(wu,"^")}function Sm(e){return Os(e).replace(gm,"%3D")}function Tm(e){return gi(e).replace(vu,"%23").replace(mm,"%3F")}function Am(e){return Tm(e).replace(hm,"%2F")}function mr(e){if(e==null)return null;try{return decodeURIComponent(""+e)}catch{}return""+e}const Cm=/\/$/,Rm=e=>e.replace(Cm,"");function Xo(e,t,n="/"){let r,o={},s="",i="";const l=t.indexOf("#");let a=t.indexOf("?");return a=l>=0&&a>l?-1:a,a>=0&&(r=t.slice(0,a),s=t.slice(a,l>0?l:t.length),o=e(s.slice(1))),l>=0&&(r=r||t.slice(0,l),i=t.slice(l,t.length)),r=Om(r??t,n),{fullPath:r+s+i,path:r,query:o,hash:mr(i)}}function xm(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function Cl(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function Pm(e,t,n){const r=t.matched.length-1,o=n.matched.length-1;return r>-1&&r===o&&Ln(t.matched[r],n.matched[o])&&Tu(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function Ln(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function Tu(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(var n in e)if(!km(e[n],t[n]))return!1;return!0}function km(e,t){return ft(e)?Rl(e,t):ft(t)?Rl(t,e):e?.valueOf()===t?.valueOf()}function Rl(e,t){return ft(t)?e.length===t.length&&e.every((n,r)=>n===t[r]):e.length===1&&e[0]===t}function Om(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),r=e.split("/"),o=r[r.length-1];(o===".."||o===".")&&r.push("");let s=n.length-1,i,l;for(i=0;i<r.length;i++)if(l=r[i],l!==".")if(l==="..")s>1&&s--;else break;return n.slice(0,s).join("/")+"/"+r.slice(i).join("/")}const et={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0};let Is=(function(e){return e.pop="pop",e.push="push",e})({}),Zo=(function(e){return e.back="back",e.forward="forward",e.unknown="",e})({});function Im(e){if(!e)if(En){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),Rm(e)}const Nm=/^[^#]+#/;function Mm(e,t){return e.replace(Nm,"#")+t}function Lm(e,t){const n=document.documentElement.getBoundingClientRect(),r=e.getBoundingClientRect();return{behavior:t.behavior,left:r.left-n.left-(t.left||0),top:r.top-n.top-(t.top||0)}}const No=()=>({left:window.scrollX,top:window.scrollY});function Hm(e){let t;if("el"in e){const n=e.el,r=typeof n=="string"&&n.startsWith("#"),o=typeof n=="string"?r?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!o)return;t=Lm(o,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.scrollX,t.top!=null?t.top:window.scrollY)}function xl(e,t){return(history.state?history.state.position-t:-1)+e}const Ns=new Map;function jm(e,t){Ns.set(e,t)}function Fm(e){const t=Ns.get(e);return Ns.delete(e),t}function Dm(e){return typeof e=="string"||e&&typeof e=="object"}function Au(e){return typeof e=="string"||typeof e=="symbol"}let _e=(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})({});const Cu=Symbol("");_e.MATCHER_NOT_FOUND+"",_e.NAVIGATION_GUARD_REDIRECT+"",_e.NAVIGATION_ABORTED+"",_e.NAVIGATION_CANCELLED+"",_e.NAVIGATION_DUPLICATED+"";function Hn(e,t){return ie(new Error,{type:e,[Cu]:!0},t)}function Rt(e,t){return e instanceof Error&&Cu in e&&(t==null||!!(e.type&t))}const Bm=["params","query","hash"];function $m(e){if(typeof e=="string")return e;if(e.path!=null)return e.path;const t={};for(const n of Bm)n in e&&(t[n]=e[n]);return JSON.stringify(t,null,2)}function Um(e){const t={};if(e===""||e==="?")return t;const n=(e[0]==="?"?e.slice(1):e).split("&");for(let r=0;r<n.length;++r){const o=n[r].replace(bu," "),s=o.indexOf("="),i=mr(s<0?o:o.slice(0,s)),l=s<0?null:mr(o.slice(s+1));if(i in t){let a=t[i];ft(a)||(a=t[i]=[a]),a.push(l)}else t[i]=l}return t}function Pl(e){let t="";for(let n in e){const r=e[n];if(n=Sm(n),r==null){r!==void 0&&(t+=(t.length?"&":"")+n);continue}(ft(r)?r.map(o=>o&&Os(o)):[r&&Os(r)]).forEach(o=>{o!==void 0&&(t+=(t.length?"&":"")+n,o!=null&&(t+="="+o))})}return t}function Vm(e){const t={};for(const n in e){const r=e[n];r!==void 0&&(t[n]=ft(r)?r.map(o=>o==null?null:""+o):r==null?r:""+r)}return t}const Wm=Symbol(""),kl=Symbol(""),mi=Symbol(""),yi=Symbol(""),Ms=Symbol("");function Jn(){let e=[];function t(r){return e.push(r),()=>{const o=e.indexOf(r);o>-1&&e.splice(o,1)}}function n(){e=[]}return{add:t,list:()=>e.slice(),reset:n}}function Ut(e,t,n,r,o,s=i=>i()){const i=r&&(r.enterCallbacks[o]=r.enterCallbacks[o]||[]);return()=>new Promise((l,a)=>{const u=d=>{d===!1?a(Hn(_e.NAVIGATION_ABORTED,{from:n,to:t})):d instanceof Error?a(d):Dm(d)?a(Hn(_e.NAVIGATION_GUARD_REDIRECT,{from:t,to:d})):(i&&r.enterCallbacks[o]===i&&typeof d=="function"&&i.push(d),l())},c=s(()=>e.call(r&&r.instances[o],t,n,u));let f=Promise.resolve(c);e.length<3&&(f=f.then(u)),f.catch(d=>a(d))})}function es(e,t,n,r,o=s=>s()){const s=[];for(const i of e)for(const l in i.components){let a=i.components[l];if(!(t!=="beforeRouteEnter"&&!i.instances[l]))if(_u(a)){const u=(a.__vccOpts||a)[t];u&&s.push(Ut(u,n,r,i,l,o))}else{let u=a();s.push(()=>u.then(c=>{if(!c)throw new Error(`Couldn't resolve component "${l}" at "${i.path}"`);const f=dm(c)?c.default:c;i.mods[l]=c,i.components[l]=f;const d=(f.__vccOpts||f)[t];return d&&Ut(d,n,r,i,l,o)()}))}}return s}function Km(e,t){const n=[],r=[],o=[],s=Math.max(t.matched.length,e.matched.length);for(let i=0;i<s;i++){const l=t.matched[i];l&&(e.matched.find(u=>Ln(u,l))?r.push(l):n.push(l));const a=e.matched[i];a&&(t.matched.find(u=>Ln(u,a))||o.push(a))}return[n,r,o]}let Gm=()=>location.protocol+"//"+location.host;function Ru(e,t){const{pathname:n,search:r,hash:o}=t,s=e.indexOf("#");if(s>-1){let i=o.includes(e.slice(s))?e.slice(s).length:1,l=o.slice(i);return l[0]!=="/"&&(l="/"+l),Cl(l,"")}return Cl(n,e)+r+o}function qm(e,t,n,r){let o=[],s=[],i=null;const l=({state:d})=>{const p=Ru(e,location),h=n.value,y=t.value;let E=0;if(d){if(n.value=p,t.value=d,i&&i===h){i=null;return}E=y?d.position-y.position:0}else r(p);o.forEach(w=>{w(n.value,h,{delta:E,type:Is.pop,direction:E?E>0?Zo.forward:Zo.back:Zo.unknown})})};function a(){i=n.value}function u(d){o.push(d);const p=()=>{const h=o.indexOf(d);h>-1&&o.splice(h,1)};return s.push(p),p}function c(){if(document.visibilityState==="hidden"){const{history:d}=window;if(!d.state)return;d.replaceState(ie({},d.state,{scroll:No()}),"")}}function f(){for(const d of s)d();s=[],window.removeEventListener("popstate",l),window.removeEventListener("pagehide",c),document.removeEventListener("visibilitychange",c)}return window.addEventListener("popstate",l),window.addEventListener("pagehide",c),document.addEventListener("visibilitychange",c),{pauseListeners:a,listen:u,destroy:f}}function Ol(e,t,n,r=!1,o=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:o?No():null}}function zm(e){const{history:t,location:n}=window,r={value:Ru(e,n)},o={value:t.state};o.value||s(r.value,{back:null,current:r.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function s(a,u,c){const f=e.indexOf("#"),d=f>-1?(n.host&&document.querySelector("base")?e:e.slice(f))+a:Gm()+e+a;try{t[c?"replaceState":"pushState"](u,"",d),o.value=u}catch(p){console.error(p),n[c?"replace":"assign"](d)}}function i(a,u){s(a,ie({},t.state,Ol(o.value.back,a,o.value.forward,!0),u,{position:o.value.position}),!0),r.value=a}function l(a,u){const c=ie({},o.value,t.state,{forward:a,scroll:No()});s(c.current,c,!0),s(a,ie({},Ol(r.value,a,null),{position:c.position+1},u),!1),r.value=a}return{location:r,state:o,push:l,replace:i}}function Jm(e){e=Im(e);const t=zm(e),n=qm(e,t.state,t.location,t.replace);function r(s,i=!0){i||n.pauseListeners(),history.go(s)}const o=ie({location:"",base:e,go:r,createHref:Mm.bind(null,e)},t,n);return Object.defineProperty(o,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(o,"state",{enumerable:!0,get:()=>t.state.value}),o}let rn=(function(e){return e[e.Static=0]="Static",e[e.Param=1]="Param",e[e.Group=2]="Group",e})({});var Re=(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})(Re||{});const Qm={type:rn.Static,value:""},Ym=/[a-zA-Z0-9_]/;function Xm(e){if(!e)return[[]];if(e==="/")return[[Qm]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(p){throw new Error(`ERR (${n})/"${u}": ${p}`)}let n=Re.Static,r=n;const o=[];let s;function i(){s&&o.push(s),s=[]}let l=0,a,u="",c="";function f(){u&&(n===Re.Static?s.push({type:rn.Static,value:u}):n===Re.Param||n===Re.ParamRegExp||n===Re.ParamRegExpEnd?(s.length>1&&(a==="*"||a==="+")&&t(`A repeatable param (${u}) must be alone in its segment. eg: '/:ids+.`),s.push({type:rn.Param,value:u,regexp:c,repeatable:a==="*"||a==="+",optional:a==="*"||a==="?"})):t("Invalid state to consume buffer"),u="")}function d(){u+=a}for(;l<e.length;){if(a=e[l++],a==="\\"&&n!==Re.ParamRegExp){r=n,n=Re.EscapeNext;continue}switch(n){case Re.Static:a==="/"?(u&&f(),i()):a===":"?(f(),n=Re.Param):d();break;case Re.EscapeNext:d(),n=r;break;case Re.Param:a==="("?n=Re.ParamRegExp:Ym.test(a)?d():(f(),n=Re.Static,a!=="*"&&a!=="?"&&a!=="+"&&l--);break;case Re.ParamRegExp:a===")"?c[c.length-1]=="\\"?c=c.slice(0,-1)+a:n=Re.ParamRegExpEnd:c+=a;break;case Re.ParamRegExpEnd:f(),n=Re.Static,a!=="*"&&a!=="?"&&a!=="+"&&l--,c="";break;default:t("Unknown state");break}}return n===Re.ParamRegExp&&t(`Unfinished custom RegExp for param "${u}"`),f(),i(),o}const Il="[^/]+?",Zm={sensitive:!1,strict:!1,start:!0,end:!0};var Fe=(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})(Fe||{});const ey=/[.+*?^${}()[\]/\\]/g;function ty(e,t){const n=ie({},Zm,t),r=[];let o=n.start?"^":"";const s=[];for(const u of e){const c=u.length?[]:[Fe.Root];n.strict&&!u.length&&(o+="/");for(let f=0;f<u.length;f++){const d=u[f];let p=Fe.Segment+(n.sensitive?Fe.BonusCaseSensitive:0);if(d.type===rn.Static)f||(o+="/"),o+=d.value.replace(ey,"\\$&"),p+=Fe.Static;else if(d.type===rn.Param){const{value:h,repeatable:y,optional:E,regexp:w}=d;s.push({name:h,repeatable:y,optional:E});const b=w||Il;if(b!==Il){p+=Fe.BonusCustomRegExp;try{`${b}`}catch(_){throw new Error(`Invalid custom RegExp for param "${h}" (${b}): `+_.message)}}let g=y?`((?:${b})(?:/(?:${b}))*)`:`(${b})`;f||(g=E&&u.length<2?`(?:/${g})`:"/"+g),E&&(g+="?"),o+=g,p+=Fe.Dynamic,E&&(p+=Fe.BonusOptional),y&&(p+=Fe.BonusRepeatable),b===".*"&&(p+=Fe.BonusWildcard)}c.push(p)}r.push(c)}if(n.strict&&n.end){const u=r.length-1;r[u][r[u].length-1]+=Fe.BonusStrict}n.strict||(o+="/?"),n.end?o+="$":n.strict&&!o.endsWith("/")&&(o+="(?:/|$)");const i=new RegExp(o,n.sensitive?"":"i");function l(u){const c=u.match(i),f={};if(!c)return null;for(let d=1;d<c.length;d++){const p=c[d]||"",h=s[d-1];f[h.name]=p&&h.repeatable?p.split("/"):p}return f}function a(u){let c="",f=!1;for(const d of e){(!f||!c.endsWith("/"))&&(c+="/"),f=!1;for(const p of d)if(p.type===rn.Static)c+=p.value;else if(p.type===rn.Param){const{value:h,repeatable:y,optional:E}=p,w=h in u?u[h]:"";if(ft(w)&&!y)throw new Error(`Provided param "${h}" is an array but it is not repeatable (* or + modifiers)`);const b=ft(w)?w.join("/"):w;if(!b)if(E)d.length<2&&(c.endsWith("/")?c=c.slice(0,-1):f=!0);else throw new Error(`Missing required param "${h}"`);c+=b}}return c||"/"}return{re:i,score:r,keys:s,parse:l,stringify:a}}function ny(e,t){let n=0;for(;n<e.length&&n<t.length;){const r=t[n]-e[n];if(r)return r;n++}return e.length<t.length?e.length===1&&e[0]===Fe.Static+Fe.Segment?-1:1:e.length>t.length?t.length===1&&t[0]===Fe.Static+Fe.Segment?1:-1:0}function xu(e,t){let n=0;const r=e.score,o=t.score;for(;n<r.length&&n<o.length;){const s=ny(r[n],o[n]);if(s)return s;n++}if(Math.abs(o.length-r.length)===1){if(Nl(r))return 1;if(Nl(o))return-1}return o.length-r.length}function Nl(e){const t=e[e.length-1];return e.length>0&&t[t.length-1]<0}const ry={strict:!1,end:!0,sensitive:!1};function oy(e,t,n){const r=ty(Xm(e.path),n),o=ie(r,{record:e,parent:t,children:[],alias:[]});return t&&!o.record.aliasOf==!t.record.aliasOf&&t.children.push(o),o}function sy(e,t){const n=[],r=new Map;t=Al(ry,t);function o(f){return r.get(f)}function s(f,d,p){const h=!p,y=Ll(f);y.aliasOf=p&&p.record;const E=Al(t,f),w=[y];if("alias"in f){const _=typeof f.alias=="string"?[f.alias]:f.alias;for(const S of _)w.push(Ll(ie({},y,{components:p?p.record.components:y.components,path:S,aliasOf:p?p.record:y})))}let b,g;for(const _ of w){const{path:S}=_;if(d&&S[0]!=="/"){const T=d.record.path,C=T[T.length-1]==="/"?"":"/";_.path=d.record.path+(S&&C+S)}if(b=oy(_,d,E),p?p.alias.push(b):(g=g||b,g!==b&&g.alias.push(b),h&&f.name&&!Hl(b)&&i(f.name)),Pu(b)&&a(b),y.children){const T=y.children;for(let C=0;C<T.length;C++)s(T[C],b,p&&p.children[C])}p=p||b}return g?()=>{i(g)}:ar}function i(f){if(Au(f)){const d=r.get(f);d&&(r.delete(f),n.splice(n.indexOf(d),1),d.children.forEach(i),d.alias.forEach(i))}else{const d=n.indexOf(f);d>-1&&(n.splice(d,1),f.record.name&&r.delete(f.record.name),f.children.forEach(i),f.alias.forEach(i))}}function l(){return n}function a(f){const d=ay(f,n);n.splice(d,0,f),f.record.name&&!Hl(f)&&r.set(f.record.name,f)}function u(f,d){let p,h={},y,E;if("name"in f&&f.name){if(p=r.get(f.name),!p)throw Hn(_e.MATCHER_NOT_FOUND,{location:f});E=p.record.name,h=ie(Ml(d.params,p.keys.filter(g=>!g.optional).concat(p.parent?p.parent.keys.filter(g=>g.optional):[]).map(g=>g.name)),f.params&&Ml(f.params,p.keys.map(g=>g.name))),y=p.stringify(h)}else if(f.path!=null)y=f.path,p=n.find(g=>g.re.test(y)),p&&(h=p.parse(y),E=p.record.name);else{if(p=d.name?r.get(d.name):n.find(g=>g.re.test(d.path)),!p)throw Hn(_e.MATCHER_NOT_FOUND,{location:f,currentLocation:d});E=p.record.name,h=ie({},d.params,f.params),y=p.stringify(h)}const w=[];let b=p;for(;b;)w.unshift(b.record),b=b.parent;return{name:E,path:y,params:h,matched:w,meta:ly(w)}}e.forEach(f=>s(f));function c(){n.length=0,r.clear()}return{addRoute:s,resolve:u,removeRoute:i,clearRoutes:c,getRoutes:l,getRecordMatcher:o}}function Ml(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}function Ll(e){const t={path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:e.aliasOf,beforeEnter:e.beforeEnter,props:iy(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 iy(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const r in e.components)t[r]=typeof n=="object"?n[r]:n;return t}function Hl(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function ly(e){return e.reduce((t,n)=>ie(t,n.meta),{})}function ay(e,t){let n=0,r=t.length;for(;n!==r;){const s=n+r>>1;xu(e,t[s])<0?r=s:n=s+1}const o=cy(e);return o&&(r=t.lastIndexOf(o,r-1)),r}function cy(e){let t=e;for(;t=t.parent;)if(Pu(t)&&xu(e,t)===0)return t}function Pu({record:e}){return!!(e.name||e.components&&Object.keys(e.components).length||e.redirect)}function jl(e){const t=be(mi),n=be(yi),r=ge(()=>{const a=oe(e.to);return t.resolve(a)}),o=ge(()=>{const{matched:a}=r.value,{length:u}=a,c=a[u-1],f=n.matched;if(!c||!f.length)return-1;const d=f.findIndex(Ln.bind(null,c));if(d>-1)return d;const p=Fl(a[u-2]);return u>1&&Fl(c)===p&&f[f.length-1].path!==p?f.findIndex(Ln.bind(null,a[u-2])):d}),s=ge(()=>o.value>-1&&hy(n.params,r.value.params)),i=ge(()=>o.value>-1&&o.value===n.matched.length-1&&Tu(n.params,r.value.params));function l(a={}){if(py(a)){const u=t[oe(e.replace)?"replace":"push"](oe(e.to)).catch(ar);return e.viewTransition&&typeof document<"u"&&"startViewTransition"in document&&document.startViewTransition(()=>u),u}return Promise.resolve()}return{route:r,href:ge(()=>r.value.href),isActive:s,isExactActive:i,navigate:l}}function uy(e){return e.length===1?e[0]:e}const fy=ke({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:jl,setup(e,{slots:t}){const n=nt(jl(e)),{options:r}=be(mi),o=ge(()=>({[Dl(e.activeClass,r.linkActiveClass,"router-link-active")]:n.isActive,[Dl(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const s=t.default&&uy(t.default(n));return e.custom?s:Oe("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:o.value},s)}}}),dy=fy;function py(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function hy(e,t){for(const n in t){const r=t[n],o=e[n];if(typeof r=="string"){if(r!==o)return!1}else if(!ft(o)||o.length!==r.length||r.some((s,i)=>s.valueOf()!==o[i].valueOf()))return!1}return!0}function Fl(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const Dl=(e,t,n)=>e??t??n,gy=ke({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const r=be(Ms),o=ge(()=>e.route||r.value),s=be(kl,0),i=ge(()=>{let u=oe(s);const{matched:c}=o.value;let f;for(;(f=c[u])&&!f.components;)u++;return u}),l=ge(()=>o.value.matched[i.value]);at(kl,ge(()=>i.value+1)),at(Wm,l),at(Ms,o);const a=Te();return Ne(()=>[a.value,l.value,e.name],([u,c,f],[d,p,h])=>{c&&(c.instances[f]=u,p&&p!==c&&u&&u===d&&(c.leaveGuards.size||(c.leaveGuards=p.leaveGuards),c.updateGuards.size||(c.updateGuards=p.updateGuards))),u&&c&&(!p||!Ln(c,p)||!d)&&(c.enterCallbacks[f]||[]).forEach(y=>y(u))},{flush:"post"}),()=>{const u=o.value,c=e.name,f=l.value,d=f&&f.components[c];if(!d)return Bl(n.default,{Component:d,route:u});const p=f.props[c],h=p?p===!0?u.params:typeof p=="function"?p(u):p:null,E=Oe(d,ie({},h,t,{onVnodeUnmounted:w=>{w.component.isUnmounted&&(f.instances[c]=null)},ref:a}));return Bl(n.default,{Component:E,route:u})||E}}});function Bl(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const ku=gy;function my(e){const t=sy(e.routes,e),n=e.parseQuery||Um,r=e.stringifyQuery||Pl,o=e.history,s=Jn(),i=Jn(),l=Jn(),a=xe(et);let u=et;En&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const c=Yo.bind(null,P=>""+P),f=Yo.bind(null,Am),d=Yo.bind(null,mr);function p(P,G){let V,J;return Au(P)?(V=t.getRecordMatcher(P),J=G):J=P,t.addRoute(J,V)}function h(P){const G=t.getRecordMatcher(P);G&&t.removeRoute(G)}function y(){return t.getRoutes().map(P=>P.record)}function E(P){return!!t.getRecordMatcher(P)}function w(P,G){if(G=ie({},G||a.value),typeof P=="string"){const v=Xo(n,P,G.path),A=t.resolve({path:v.path},G),I=o.createHref(v.fullPath);return ie(v,A,{params:d(A.params),hash:mr(v.hash),redirectedFrom:void 0,href:I})}let V;if(P.path!=null)V=ie({},P,{path:Xo(n,P.path,G.path).path});else{const v=ie({},P.params);for(const A in v)v[A]==null&&delete v[A];V=ie({},P,{params:f(v)}),G.params=f(G.params)}const J=t.resolve(V,G),te=P.hash||"";J.params=c(d(J.params));const he=xm(r,ie({},P,{hash:Em(te),path:J.path})),m=o.createHref(he);return ie({fullPath:he,hash:te,query:r===Pl?Vm(P.query):P.query||{}},J,{redirectedFrom:void 0,href:m})}function b(P){return typeof P=="string"?Xo(n,P,a.value.path):ie({},P)}function g(P,G){if(u!==P)return Hn(_e.NAVIGATION_CANCELLED,{from:G,to:P})}function _(P){return C(P)}function S(P){return _(ie(b(P),{replace:!0}))}function T(P,G){const V=P.matched[P.matched.length-1];if(V&&V.redirect){const{redirect:J}=V;let te=typeof J=="function"?J(P,G):J;return typeof te=="string"&&(te=te.includes("?")||te.includes("#")?te=b(te):{path:te},te.params={}),ie({query:P.query,hash:P.hash,params:te.path!=null?{}:P.params},te)}}function C(P,G){const V=u=w(P),J=a.value,te=P.state,he=P.force,m=P.replace===!0,v=T(V,J);if(v)return C(ie(b(v),{state:typeof v=="object"?ie({},te,v.state):te,force:he,replace:m}),G||V);const A=V;A.redirectedFrom=G;let I;return!he&&Pm(r,J,V)&&(I=Hn(_e.NAVIGATION_DUPLICATED,{to:A,from:J}),dt(J,J,!0,!1)),(I?Promise.resolve(I):k(A,J)).catch(x=>Rt(x)?Rt(x,_e.NAVIGATION_GUARD_REDIRECT)?x:Ft(x):K(x,A,J)).then(x=>{if(x){if(Rt(x,_e.NAVIGATION_GUARD_REDIRECT))return C(ie({replace:m},b(x.to),{state:typeof x.to=="object"?ie({},te,x.to.state):te,force:he}),G||A)}else x=R(A,J,!0,m,te);return U(A,J,x),x})}function N(P,G){const V=g(P,G);return V?Promise.reject(V):Promise.resolve()}function O(P){const G=_n.values().next().value;return G&&typeof G.runWithContext=="function"?G.runWithContext(P):P()}function k(P,G){let V;const[J,te,he]=Km(P,G);V=es(J.reverse(),"beforeRouteLeave",P,G);for(const v of J)v.leaveGuards.forEach(A=>{V.push(Ut(A,P,G))});const m=N.bind(null,P,G);return V.push(m),Xe(V).then(()=>{V=[];for(const v of s.list())V.push(Ut(v,P,G));return V.push(m),Xe(V)}).then(()=>{V=es(te,"beforeRouteUpdate",P,G);for(const v of te)v.updateGuards.forEach(A=>{V.push(Ut(A,P,G))});return V.push(m),Xe(V)}).then(()=>{V=[];for(const v of he)if(v.beforeEnter)if(ft(v.beforeEnter))for(const A of v.beforeEnter)V.push(Ut(A,P,G));else V.push(Ut(v.beforeEnter,P,G));return V.push(m),Xe(V)}).then(()=>(P.matched.forEach(v=>v.enterCallbacks={}),V=es(he,"beforeRouteEnter",P,G,O),V.push(m),Xe(V))).then(()=>{V=[];for(const v of i.list())V.push(Ut(v,P,G));return V.push(m),Xe(V)}).catch(v=>Rt(v,_e.NAVIGATION_CANCELLED)?v:Promise.reject(v))}function U(P,G,V){l.list().forEach(J=>O(()=>J(P,G,V)))}function R(P,G,V,J,te){const he=g(P,G);if(he)return he;const m=G===et,v=En?history.state:{};V&&(J||m?o.replace(P.fullPath,ie({scroll:m&&v&&v.scroll},te)):o.push(P.fullPath,te)),a.value=P,dt(P,G,V,m),Ft()}let H;function D(){H||(H=o.listen((P,G,V)=>{if(!zt.listening)return;const J=w(P),te=T(J,zt.currentRoute.value);if(te){C(ie(te,{replace:!0,force:!0}),J).catch(ar);return}u=J;const he=a.value;En&&jm(xl(he.fullPath,V.delta),No()),k(J,he).catch(m=>Rt(m,_e.NAVIGATION_ABORTED|_e.NAVIGATION_CANCELLED)?m:Rt(m,_e.NAVIGATION_GUARD_REDIRECT)?(C(ie(b(m.to),{force:!0}),J).then(v=>{Rt(v,_e.NAVIGATION_ABORTED|_e.NAVIGATION_DUPLICATED)&&!V.delta&&V.type===Is.pop&&o.go(-1,!1)}).catch(ar),Promise.reject()):(V.delta&&o.go(-V.delta,!1),K(m,J,he))).then(m=>{m=m||R(J,he,!1),m&&(V.delta&&!Rt(m,_e.NAVIGATION_CANCELLED)?o.go(-V.delta,!1):V.type===Is.pop&&Rt(m,_e.NAVIGATION_ABORTED|_e.NAVIGATION_DUPLICATED)&&o.go(-1,!1)),U(J,he,m)}).catch(ar)}))}let z=Jn(),F=Jn(),Z;function K(P,G,V){Ft(P);const J=F.list();return J.length?J.forEach(te=>te(P,G,V)):console.error(P),Promise.reject(P)}function ue(){return Z&&a.value!==et?Promise.resolve():new Promise((P,G)=>{z.add([P,G])})}function Ft(P){return Z||(Z=!P,D(),z.list().forEach(([G,V])=>P?V(P):G()),z.reset()),P}function dt(P,G,V,J){const{scrollBehavior:te}=e;if(!En||!te)return Promise.resolve();const he=!V&&Fm(xl(P.fullPath,0))||(J||!V)&&history.state&&history.state.scroll||null;return Et().then(()=>te(P,G,he)).then(m=>m&&Hm(m)).catch(m=>K(m,P,G))}const Ve=P=>o.go(P);let yn;const _n=new Set,zt={currentRoute:a,listening:!0,addRoute:p,removeRoute:h,clearRoutes:t.clearRoutes,hasRoute:E,getRoutes:y,resolve:w,options:e,push:_,replace:S,go:Ve,back:()=>Ve(-1),forward:()=>Ve(1),beforeEach:s.add,beforeResolve:i.add,afterEach:l.add,onError:F.add,isReady:ue,install(P){P.component("RouterLink",dy),P.component("RouterView",ku),P.config.globalProperties.$router=zt,Object.defineProperty(P.config.globalProperties,"$route",{enumerable:!0,get:()=>oe(a)}),En&&!yn&&a.value===et&&(yn=!0,_(o.location).catch(J=>{}));const G={};for(const J in et)Object.defineProperty(G,J,{get:()=>a.value[J],enumerable:!0});P.provide(mi,zt),P.provide(yi,st(G)),P.provide(Ms,a);const V=P.unmount;_n.add(P),P.unmount=function(){_n.delete(P),_n.size<1&&(u=et,H&&H(),H=null,a.value=et,yn=!1,Z=!1),V()}}};function Xe(P){return P.reduce((G,V)=>G.then(()=>O(V)),Promise.resolve())}return zt}function Ou(e){return be(yi)}const yy=/(:\w+)\([^)]+\)/g,_y=/(:\w+)[?+*]/g,vy=/:\w+/g,by=(e,t)=>t.path.replace(yy,"$1").replace(_y,"$1").replace(vy,n=>e.params[n.slice(1)]?.toString()||""),Ls=(e,t)=>{const n=e.route.matched.find(o=>o.components?.default===e.Component.type),r=t??n?.meta.key??(n&&by(e.route,n));return typeof r=="function"?r(e.route):r},wy=(e,t)=>({default:()=>e?Oe(md,e===!0?{}:e,t):t});function Iu(e){return Array.isArray(e)?e:[e]}const Ey="modulepreload",Sy=function(e,t){return new URL(e,t).href},$l={},fn=function(t,n,r){let o=Promise.resolve();if(n&&n.length>0){let u=function(c){return Promise.all(c.map(f=>Promise.resolve(f).then(d=>({status:"fulfilled",value:d}),d=>({status:"rejected",reason:d}))))};const i=document.getElementsByTagName("link"),l=document.querySelector("meta[property=csp-nonce]"),a=l?.nonce||l?.getAttribute("nonce");o=u(n.map(c=>{if(c=Sy(c,r),c in $l)return;$l[c]=!0;const f=c.endsWith(".css"),d=f?'[rel="stylesheet"]':"";if(r)for(let h=i.length-1;h>=0;h--){const y=i[h];if(y.href===c&&(!f||y.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${c}"]${d}`))return;const p=document.createElement("link");if(p.rel=f?"stylesheet":Ey,f||(p.as="script"),p.crossOrigin="",p.href=c,a&&p.setAttribute("nonce",a),document.head.appendChild(p),f)return new Promise((h,y)=>{p.addEventListener("load",h),p.addEventListener("error",()=>y(new Error(`Unable to preload CSS for ${c}`)))})}))}function s(i){const l=new Event("vite:preloadError",{cancelable:!0});if(l.payload=i,window.dispatchEvent(l),!l.defaultPrevented)throw i}return o.then(i=>{for(const l of i||[])l.status==="rejected"&&s(l.reason);return t().catch(s)})},Ty=["claudeCode","codex","gemini"],Nu=["claudeCode","codex","gemini","opencode","amp","droid","codebuff","hermes","pi","goose","openclaw","kilo","copilot","kimi","qwen"],cr={amp:{aiIcon:"amp",color:"#f34e3f",label:"Amp",slug:"amp"},claudeCode:{aiIcon:"claude_code",color:"#d97757",label:"Claude Code",slug:"claude_code"},codebuff:{aiIcon:"codebuff",color:"#14b8a6",label:"Codebuff",slug:"codebuff"},codex:{aiIcon:"codex",color:"#111827",label:"Codex",slug:"codex"},copilot:{aiIcon:"copilot",color:"#0f766e",label:"GitHub Copilot",slug:"copilot"},droid:{aiIcon:"droid",color:"#06b6d4",label:"Droid",slug:"droid"},gemini:{aiIcon:"gemini",color:"#0ea5e9",label:"Gemini",slug:"gemini"},goose:{aiIcon:"goose",color:"#22c55e",label:"Goose",slug:"goose"},hermes:{aiIcon:"hermes",color:"#8b5cf6",label:"Hermes",slug:"hermes"},kilo:{aiIcon:"kilo",color:"#f97316",label:"Kilo",slug:"kilo"},kimi:{aiIcon:"kimi_code",color:"#2563eb",label:"Kimi",slug:"kimi"},openclaw:{aiIcon:"openclaw",color:"#ec4899",label:"OpenClaw",slug:"openclaw"},opencode:{aiIcon:"open_code",color:"#4f46e5",label:"OpenCode",slug:"opencode"},pi:{aiIcon:"pi",color:"#a855f7",label:"Pi",slug:"pi"},qwen:{aiIcon:"qwen_code",color:"#623ae7",label:"Qwen",slug:"qwen"}},Ay=Nu.map(e=>[cr[e].slug,e]);new Map(Ay);function mb(e){return cr[e].slug}const Cy=new Set(Ty),Mu=Nu.filter(e=>Cy.has(e)).map(e=>({icon:cr[e].aiIcon,name:cr[e].label,platformKey:e,slug:cr[e].slug})),yb=Mu.map(e=>({icon:e.icon,iconType:"ai",label:e.name,link:`/${e.slug}`}));function Ry(e){return Mu.find(t=>t.slug===e)}const xy={validate:e=>typeof e.params.product=="string"&&!!Ry(e.params.product)},ts=[{name:"project",path:"/project",component:()=>fn(()=>import("./Dzuxw4nD.js"),__vite__mapDeps([0,1,2,3,4,5]),import.meta.url)},{name:"product",path:"/:product()",meta:xy||{},component:()=>fn(()=>import("./BJUAqwzD.js"),__vite__mapDeps([6,2,1,3,7,4]),import.meta.url)},{name:"index",path:"/",component:()=>fn(()=>import("./CbwePq4F.js"),__vite__mapDeps([8,2,1,3,7]),import.meta.url)}],Lu=(e,t)=>({default:()=>e?Oe(mp,e===!0?{}:e,t):t.default?.()}),Py=/(:\w+)\([^)]+\)/g,ky=/(:\w+)[?+*]/g,Oy=/:\w+/g;function Ul(e){const t=e?.meta.key??e.path.replace(Py,"$1").replace(ky,"$1").replace(Oy,n=>e.params[n.slice(1)]?.toString()||"");return typeof t=="function"?t(e):t}function Iy(e,t){return e===t||t===et?!1:Ul(e)!==Ul(t)?!0:!e.matched.every((r,o)=>r.components&&r.components.default===t.matched[o]?.components?.default)}function Vl(e){return Array.isArray(e)?e:[e]}function Hu(e){const t=[];for(const n of e)n&&t.push({...n,onAfterLeave:n.onAfterLeave?Vl(n.onAfterLeave):void 0,onBeforeLeave:n.onBeforeLeave?Vl(n.onBeforeLeave):void 0});return au(...t)}const Ny={scrollBehavior(e,t,n){const r=Ae(),o=rt().options?.scrollBehaviorType??"auto";return e.path.replace(/\/$/,"")===t.path.replace(/\/$/,"")?t.hash&&!e.hash?{left:0,top:0}:e.hash?{el:e.hash,top:ju(e.hash),behavior:o}:!1:(typeof e.meta.scrollToTop=="function"?e.meta.scrollToTop(e,t):e.meta.scrollToTop)===!1?!1:t===et?Wl(e,t,n,o):new Promise(i=>{const l=()=>{requestAnimationFrame(()=>i(Wl(e,t,n,o)))};r.hooks.hookOnce("page:loading:end",()=>{const a=r["~transitionPromise"];a?a.then(l):l()})})}};function ju(e){try{const t=document.querySelector(e);if(t)return(Number.parseFloat(getComputedStyle(t).scrollMarginTop)||0)+(Number.parseFloat(getComputedStyle(document.documentElement).scrollPaddingTop)||0)}catch{}return 0}function Wl(e,t,n,r){if(n)return n;const o=Iy(e,t);return e.hash?{el:e.hash,top:ju(e.hash),behavior:o?r:"instant"}:{left:0,top:0}}const My={hashMode:!1,scrollBehaviorType:"auto"},Bt={...My,...Ny},Ly=async(e,t)=>{let n,r;if(!e.meta?.validate)return;const o=([n,r]=lr(()=>Promise.resolve(e.meta.validate(e))),n=await n,r(),n);if(o===!0)return;const s=un({fatal:!0,status:o&&(o.status||o.statusCode)||404,statusText:o&&(o.statusText||o.statusMessage)||`Page Not Found: ${e.fullPath}`,data:{path:e.fullPath}});return typeof window<"u"&&window.history.pushState({},"",t.fullPath),s},Hy=e=>{const t=yu({path:e.path});if(t.redirect){const n=t.redirect.includes("#")?t.redirect:t.redirect+e.hash;return Un(n,{acceptRelative:!0})?(window.location.href=n,!1):n}},jy=[Ly,Hy],Hs={};function Fy(e,t,n){const{pathname:r,search:o,hash:s}=t,i=e.indexOf("#");if(i>-1){const u=s.includes(e.slice(i))?e.slice(i).length:1;let c=s.slice(u);return c[0]!=="/"&&(c="/"+c),cl(c,"")}const l=cl(r,e),a=!n||Xc(l,n)?l:n;return a+(a.includes("?")?"":o)+s}const Dy=Tt({name:"nuxt:router",enforce:"pre",async setup(e){let t,n,r=Oo().app.baseURL;const o=Bt.history?.(r)??Jm(r),s=Bt.routes?([t,n]=lr(()=>Bt.routes(ts)),t=await t,n(),t??ts):ts;let i;const l=my({...Bt,scrollBehavior:(w,b,g)=>{if(b===et){i=g;return}if(Bt.scrollBehavior){if(l.options.scrollBehavior=Bt.scrollBehavior,"scrollRestoration"in window.history){const _=l.beforeEach(()=>{_(),window.history.scrollRestoration="manual"})}return Bt.scrollBehavior(w,et,i||g)}},history:o,routes:s});"scrollRestoration"in window.history&&(window.history.scrollRestoration="auto"),e.vueApp.use(l);const a=xe(l.currentRoute.value);l.afterEach((w,b)=>{a.value=b}),Object.defineProperty(e.vueApp.config.globalProperties,"previousRoute",{get:()=>a.value});const u=Fy(r,window.location,e.payload.path),c=xe(l.currentRoute.value),f=()=>{c.value=l.currentRoute.value};l.afterEach((w,b)=>{w.matched.at(-1)?.components?.default===b.matched.at(-1)?.components?.default&&f()});const d={sync:f};for(const w in c.value)Object.defineProperty(d,w,{get:()=>c.value[w],enumerable:!0});e._route=st(d),e._middleware||={global:[],named:{}};const p=Io();l.afterEach(async(w,b,g)=>{delete e._processingMiddleware,!e.isHydrating&&p.value&&await e.runWithContext(dg),g&&await e.callHook("page:loading:end")});try{[t,n]=lr(()=>l.isReady()),await t,n()}catch(w){[t,n]=lr(()=>e.runWithContext(()=>tn(w))),await t,n()}const h=u!==l.currentRoute.value.fullPath?l.resolve(u):l.currentRoute.value,y=e.isHydrating&&e.payload.prerenderedAt&&e.payload.path&&u!==e.payload.path&&Xc(l.currentRoute.value.path,e.payload.path);f();const E=e.payload.state._layout;return l.beforeEach(async(w,b)=>{await e.callHook("page:loading:start"),w.meta=nt(w.meta),e.isHydrating&&E&&!wt(w.meta.layout)&&(w.meta.layout=E),e._processingMiddleware=!0;{const g=new Set([...jy,...e._middleware.global]);for(const S of w.matched){const T=S.meta.middleware;if(T)for(const C of Iu(T))g.add(C)}const _=yu({path:w.path});if(_.appMiddleware)for(const S in _.appMiddleware)_.appMiddleware[S]?g.add(S):g.delete(S);for(const S of g){const T=typeof S=="string"?e._middleware.named[S]||await Hs[S]?.().then(C=>C.default||C):S;if(!T)throw new Error(`Unknown route middleware: '${S}'.`);try{const C=await e.runWithContext(()=>T(w,b));if(!e.payload.serverRendered&&e.isHydrating&&(C===!1||C instanceof Error)){const N=C||un({status:404,statusText:`Page Not Found: ${u}`});return await e.runWithContext(()=>tn(N)),!1}if(C===!0)continue;if(C===!1)return C;if(C)return du(C)&&C.fatal&&await e.runWithContext(()=>tn(C)),C}catch(C){const N=un(C);return N.fatal&&await e.runWithContext(()=>tn(N)),N}}}}),l.onError(async()=>{delete e._processingMiddleware,await e.callHook("page:loading:end")}),l.afterEach(w=>{if(w.matched.length===0&&!p.value)return e.runWithContext(()=>tn(un({status:404,fatal:!1,statusText:`Page not found: ${w.fullPath}`,data:{path:w.fullPath}})))}),e.hooks.hookOnce("app:created",async()=>{try{if("name"in h&&(h.name=void 0),y){const w=l.resolve(e.payload.path);"name"in w&&(w.name=void 0),await l.replace({...w,force:!0}),e.hooks.hookOnce("app:suspense:resolve",async()=>{await l.replace({...h,force:!0})})}else await l.replace({...h,force:!0});l.options.scrollBehavior=Bt.scrollBehavior}catch(w){await e.runWithContext(()=>tn(w))}}),{provide:{router:l}}}}),Kl=globalThis.requestIdleCallback||(e=>{const t=Date.now(),n={didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-t))};return setTimeout(()=>{e(n)},1)}),_b=globalThis.cancelIdleCallback||(e=>{clearTimeout(e)}),Fu=e=>{const t=Ae();t.isHydrating?t.hooks.hookOnce("app:suspense:resolve",()=>{Kl(()=>e())}):Kl(()=>e())},By=Tt(()=>{const e=rt();Fu(()=>{e.beforeResolve(async()=>{await new Promise(t=>{setTimeout(t,100),requestAnimationFrame(()=>{setTimeout(t,0)})})})})}),$y=Tt(e=>{let t;async function n(){let r;try{r=await em()}catch(o){const s=o;if(!("status"in s&&(s.status===404||s.status===403)))throw s}t&&clearTimeout(t),t=setTimeout(n,yl);try{const o=await $fetch(fi("builds/latest.json")+`?${Date.now()}`);o.id!==r?.id&&(e.hooks.callHook("app:manifest:update",o),t&&clearTimeout(t))}catch{}}Fu(()=>{t=setTimeout(n,yl)})});function Uy(e={}){const t=e.path||window.location.pathname;let n={};try{n=JSON.parse(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:Ae().payload.state}))}catch{}window.location.pathname!==t?window.location.href=t:window.location.reload()}}const Vy=Tt({name:"nuxt:chunk-reload",setup(e){const t=rt(),n=Oo(),r=new Set;t.beforeEach(()=>{r.clear()}),e.hook("app:chunkError",({error:s})=>{r.add(s)});function o(s){const i=Qc(n.app.baseURL,s.fullPath);Uy({path:i,persistState:!0})}e.hook("app:manifest:update",()=>{t.beforeResolve(o)}),t.onError((s,i)=>{r.has(s)&&o(i)})}}),Wy=to(()=>fn(()=>import("./WjVGlVHF.js").then(e=>e.i),[],import.meta.url).then(e=>e.default||e.default||e)),Ky=[["Icon",Wy]],Gy=Tt({name:"nuxt:global-components",setup(e){for(const[t,n]of Ky)e.vueApp.component(t,n),e.vueApp.component("Lazy"+t,n)}}),Wt={default:to(()=>fn(()=>import("./CF27djws.js"),__vite__mapDeps([9,3,2,10,5]),import.meta.url).then(e=>e.default||e))};function qy(e){if(e?.__asyncLoader&&!e.__asyncResolved)return e.__asyncLoader()}async function zy(e,t=rt()){const{path:n,matched:r}=t.resolve(e);if(!r.length||(t._routePreloaded||=new Set,t._routePreloaded.has(n)))return;const o=t._preloadPromises||=[];if(o.length>4)return Promise.all(o).then(()=>zy(e,t));t._routePreloaded.add(n);for(const s of r){const i=s.components?.default;if(typeof i!="function")continue;const l=Promise.resolve(i()).catch(()=>{}).finally(()=>o.splice(o.indexOf(l),1));o.push(l)}await Promise.all(o)}const Jy=Tt({name:"nuxt:prefetch",setup(e){const t=rt();e.hooks.hook("app:mounted",()=>{t.beforeEach(async n=>{const r=n?.meta?.layout;r&&typeof Wt[r]=="function"&&await Wt[r]()})}),e.hooks.hook("link:prefetch",n=>{if(Un(n))return;const r=t.resolve(n);if(!r)return;const o=r.meta.layout;let s=Iu(r.meta.middleware);s=s.filter(i=>typeof i=="string");for(const i of s)typeof Hs[i]=="function"&&Hs[i]();typeof o=="string"&&o in Wt&&qy(Wt[o])})}}),Du=/^[a-z0-9]+(-[a-z0-9]+)*$/,Tr=(e,t,n,r="")=>{const o=e.split(":");if(e.slice(0,1)==="@"){if(o.length<2||o.length>3)return null;r=o.shift().slice(1)}if(o.length>3||!o.length)return null;if(o.length>1){const l=o.pop(),a=o.pop(),u={provider:o.length>0?o[0]:r,prefix:a,name:l};return t&&!Kr(u)?null:u}const s=o[0],i=s.split("-");if(i.length>1){const l={provider:r,prefix:i.shift(),name:i.join("-")};return t&&!Kr(l)?null:l}if(n&&r===""){const l={provider:r,prefix:"",name:s};return t&&!Kr(l,n)?null:l}return null},Kr=(e,t)=>e?!!((t&&e.prefix===""||e.prefix)&&e.name):!1,Bu=Object.freeze({left:0,top:0,width:16,height:16}),fo=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),Vn=Object.freeze({...Bu,...fo}),js=Object.freeze({...Vn,body:"",hidden:!1});function Qy(e,t){const n={};!e.hFlip!=!t.hFlip&&(n.hFlip=!0),!e.vFlip!=!t.vFlip&&(n.vFlip=!0);const r=((e.rotate||0)+(t.rotate||0))%4;return r&&(n.rotate=r),n}function Gl(e,t){const n=Qy(e,t);for(const r in js)r in fo?r in e&&!(r in n)&&(n[r]=fo[r]):r in t?n[r]=t[r]:r in e&&(n[r]=e[r]);return n}function Yy(e,t){const n=e.icons,r=e.aliases||Object.create(null),o=Object.create(null);function s(i){if(n[i])return o[i]=[];if(!(i in o)){o[i]=null;const l=r[i]&&r[i].parent,a=l&&s(l);a&&(o[i]=[l].concat(a))}return o[i]}return Object.keys(n).concat(Object.keys(r)).forEach(s),o}function Xy(e,t,n){const r=e.icons,o=e.aliases||Object.create(null);let s={};function i(l){s=Gl(r[l]||o[l],s)}return i(t),n.forEach(i),Gl(e,s)}function $u(e,t){const n=[];if(typeof e!="object"||typeof e.icons!="object")return n;e.not_found instanceof Array&&e.not_found.forEach(o=>{t(o,null),n.push(o)});const r=Yy(e);for(const o in r){const s=r[o];s&&(t(o,Xy(e,o,s)),n.push(o))}return n}const Zy={provider:"",aliases:{},not_found:{},...Bu};function ns(e,t){for(const n in t)if(n in e&&typeof e[n]!=typeof t[n])return!1;return!0}function Uu(e){if(typeof e!="object"||e===null)return null;const t=e;if(typeof t.prefix!="string"||!e.icons||typeof e.icons!="object"||!ns(e,Zy))return null;const n=t.icons;for(const o in n){const s=n[o];if(!o||typeof s.body!="string"||!ns(s,js))return null}const r=t.aliases||Object.create(null);for(const o in r){const s=r[o],i=s.parent;if(!o||typeof i!="string"||!n[i]&&!r[i]||!ns(s,js))return null}return t}const ql=Object.create(null);function e_(e,t){return{provider:e,prefix:t,icons:Object.create(null),missing:new Set}}function hn(e,t){const n=ql[e]||(ql[e]=Object.create(null));return n[t]||(n[t]=e_(e,t))}function Vu(e,t){return Uu(t)?$u(t,(n,r)=>{r?e.icons[n]=r:e.missing.add(n)}):[]}function t_(e,t,n){try{if(typeof n.body=="string")return e.icons[t]={...n},!0}catch{}return!1}let yr=!1;function Wu(e){return typeof e=="boolean"&&(yr=e),yr}function _i(e){const t=typeof e=="string"?Tr(e,!0,yr):e;if(t){const n=hn(t.provider,t.prefix),r=t.name;return n.icons[r]||(n.missing.has(r)?null:void 0)}}function n_(e,t){const n=Tr(e,!0,yr);if(!n)return!1;const r=hn(n.provider,n.prefix);return t?t_(r,n.name,t):(r.missing.add(n.name),!0)}function r_(e,t){if(typeof e!="object")return!1;if(typeof t!="string"&&(t=e.provider||""),yr&&!t&&!e.prefix){let o=!1;return Uu(e)&&(e.prefix="",$u(e,(s,i)=>{n_(s,i)&&(o=!0)})),o}const n=e.prefix;if(!Kr({prefix:n,name:"a"}))return!1;const r=hn(t,n);return!!Vu(r,e)}function vb(e){const t=_i(e);return t&&{...Vn,...t}}const Ku=Object.freeze({width:null,height:null}),Gu=Object.freeze({...Ku,...fo}),o_=/(-?[0-9.]*[0-9]+[0-9.]*)/g,s_=/^-?[0-9.]*[0-9]+[0-9.]*$/g;function zl(e,t,n){if(t===1)return e;if(n=n||100,typeof e=="number")return Math.ceil(e*t*n)/n;if(typeof e!="string")return e;const r=e.split(o_);if(r===null||!r.length)return e;const o=[];let s=r.shift(),i=s_.test(s);for(;;){if(i){const l=parseFloat(s);isNaN(l)?o.push(s):o.push(Math.ceil(l*t*n)/n)}else o.push(s);if(s=r.shift(),s===void 0)return o.join("");i=!i}}function i_(e,t="defs"){let n="";const r=e.indexOf("<"+t);for(;r>=0;){const o=e.indexOf(">",r),s=e.indexOf("</"+t);if(o===-1||s===-1)break;const i=e.indexOf(">",s);if(i===-1)break;n+=e.slice(o+1,s).trim(),e=e.slice(0,r).trim()+e.slice(i+1)}return{defs:n,content:e}}function l_(e,t){return e?"<defs>"+e+"</defs>"+t:t}function a_(e,t,n){const r=i_(e);return l_(r.defs,t+r.content+n)}const c_=e=>e==="unset"||e==="undefined"||e==="none";function u_(e,t){const n={...Vn,...e},r={...Gu,...t},o={left:n.left,top:n.top,width:n.width,height:n.height};let s=n.body;[n,r].forEach(y=>{const E=[],w=y.hFlip,b=y.vFlip;let g=y.rotate;w?b?g+=2:(E.push("translate("+(o.width+o.left).toString()+" "+(0-o.top).toString()+")"),E.push("scale(-1 1)"),o.top=o.left=0):b&&(E.push("translate("+(0-o.left).toString()+" "+(o.height+o.top).toString()+")"),E.push("scale(1 -1)"),o.top=o.left=0);let _;switch(g<0&&(g-=Math.floor(g/4)*4),g=g%4,g){case 1:_=o.height/2+o.top,E.unshift("rotate(90 "+_.toString()+" "+_.toString()+")");break;case 2:E.unshift("rotate(180 "+(o.width/2+o.left).toString()+" "+(o.height/2+o.top).toString()+")");break;case 3:_=o.width/2+o.left,E.unshift("rotate(-90 "+_.toString()+" "+_.toString()+")");break}g%2===1&&(o.left!==o.top&&(_=o.left,o.left=o.top,o.top=_),o.width!==o.height&&(_=o.width,o.width=o.height,o.height=_)),E.length&&(s=a_(s,'<g transform="'+E.join(" ")+'">',"</g>"))});const i=r.width,l=r.height,a=o.width,u=o.height;let c,f;i===null?(f=l===null?"1em":l==="auto"?u:l,c=zl(f,a/u)):(c=i==="auto"?a:i,f=l===null?zl(c,u/a):l==="auto"?u:l);const d={},p=(y,E)=>{c_(E)||(d[y]=E.toString())};p("width",c),p("height",f);const h=[o.left,o.top,a,u];return d.viewBox=h.join(" "),{attributes:d,viewBox:h,body:s}}const f_=/\sid="(\S+)"/g,d_="IconifyId"+Date.now().toString(16)+(Math.random()*16777216|0).toString(16);let p_=0;function h_(e,t=d_){const n=[];let r;for(;r=f_.exec(e);)n.push(r[1]);if(!n.length)return e;const o="suffix"+(Math.random()*16777216|Date.now()).toString(16);return n.forEach(s=>{const i=typeof t=="function"?t(s):t+(p_++).toString(),l=s.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");e=e.replace(new RegExp('([#;"])('+l+')([")]|\\.[a-z])',"g"),"$1"+i+o+"$3")}),e=e.replace(new RegExp(o,"g"),""),e}const Fs=Object.create(null);function qu(e,t){Fs[e]=t}function Ds(e){return Fs[e]||Fs[""]}function vi(e){let t;if(typeof e.resources=="string")t=[e.resources];else if(t=e.resources,!(t instanceof Array)||!t.length)return null;return{resources:t,path:e.path||"/",maxURL:e.maxURL||500,rotate:e.rotate||750,timeout:e.timeout||5e3,random:e.random===!0,index:e.index||0,dataAfterTimeout:e.dataAfterTimeout!==!1}}const Mo=Object.create(null),Qn=["https://api.simplesvg.com","https://api.unisvg.com"],Gr=[];for(;Qn.length>0;)Qn.length===1||Math.random()>.5?Gr.push(Qn.shift()):Gr.push(Qn.pop());Mo[""]=vi({resources:["https://api.iconify.design"].concat(Gr)});function zu(e,t){const n=vi(t);return n===null?!1:(Mo[e]=n,!0)}function Lo(e){return Mo[e]}function g_(){return Object.keys(Mo)}const m_=()=>{let e;try{if(e=fetch,typeof e=="function")return e}catch{}};let po=m_();function y_(e){po=e}function __(){return po}function v_(e,t){const n=Lo(e);if(!n)return 0;let r;if(!n.maxURL)r=0;else{let o=0;n.resources.forEach(i=>{o=Math.max(o,i.length)});const s=t+".json?icons=";r=n.maxURL-o-n.path.length-s.length}return r}function b_(e){return e===404}const w_=(e,t,n)=>{const r=[],o=v_(e,t),s="icons";let i={type:s,provider:e,prefix:t,icons:[]},l=0;return n.forEach((a,u)=>{l+=a.length+1,l>=o&&u>0&&(r.push(i),i={type:s,provider:e,prefix:t,icons:[]},l=a.length),i.icons.push(a)}),r.push(i),r};function E_(e){if(typeof e=="string"){const t=Lo(e);if(t)return t.path}return"/"}const S_=(e,t,n)=>{if(!po){n("abort",424);return}let r=E_(t.provider);switch(t.type){case"icons":{const s=t.prefix,l=t.icons.join(","),a=new URLSearchParams({icons:l});r+=s+".json?"+a.toString();break}case"custom":{const s=t.uri;r+=s.slice(0,1)==="/"?s.slice(1):s;break}default:n("abort",400);return}let o=503;po(e+r).then(s=>{const i=s.status;if(i!==200){setTimeout(()=>{n(b_(i)?"abort":"next",i)});return}return o=501,s.json()}).then(s=>{if(typeof s!="object"||s===null){setTimeout(()=>{s===404?n("abort",s):n("next",o)});return}setTimeout(()=>{n("success",s)})}).catch(()=>{n("next",o)})},T_={prepare:w_,send:S_};function A_(e){const t={loaded:[],missing:[],pending:[]},n=Object.create(null);e.sort((o,s)=>o.provider!==s.provider?o.provider.localeCompare(s.provider):o.prefix!==s.prefix?o.prefix.localeCompare(s.prefix):o.name.localeCompare(s.name));let r={provider:"",prefix:"",name:""};return e.forEach(o=>{if(r.name===o.name&&r.prefix===o.prefix&&r.provider===o.provider)return;r=o;const s=o.provider,i=o.prefix,l=o.name,a=n[s]||(n[s]=Object.create(null)),u=a[i]||(a[i]=hn(s,i));let c;l in u.icons?c=t.loaded:i===""||u.missing.has(l)?c=t.missing:c=t.pending;const f={provider:s,prefix:i,name:l};c.push(f)}),t}function Ju(e,t){e.forEach(n=>{const r=n.loaderCallbacks;r&&(n.loaderCallbacks=r.filter(o=>o.id!==t))})}function C_(e){e.pendingCallbacksFlag||(e.pendingCallbacksFlag=!0,setTimeout(()=>{e.pendingCallbacksFlag=!1;const t=e.loaderCallbacks?e.loaderCallbacks.slice(0):[];if(!t.length)return;let n=!1;const r=e.provider,o=e.prefix;t.forEach(s=>{const i=s.icons,l=i.pending.length;i.pending=i.pending.filter(a=>{if(a.prefix!==o)return!0;const u=a.name;if(e.icons[u])i.loaded.push({provider:r,prefix:o,name:u});else if(e.missing.has(u))i.missing.push({provider:r,prefix:o,name:u});else return n=!0,!0;return!1}),i.pending.length!==l&&(n||Ju([e],s.id),s.callback(i.loaded.slice(0),i.missing.slice(0),i.pending.slice(0),s.abort))})}))}let R_=0;function x_(e,t,n){const r=R_++,o=Ju.bind(null,n,r);if(!t.pending.length)return o;const s={id:r,icons:t,callback:e,abort:o};return n.forEach(i=>{(i.loaderCallbacks||(i.loaderCallbacks=[])).push(s)}),o}function P_(e,t=!0,n=!1){const r=[];return e.forEach(o=>{const s=typeof o=="string"?Tr(o,t,n):o;s&&r.push(s)}),r}var k_={resources:[],index:0,timeout:2e3,rotate:750,random:!1,dataAfterTimeout:!1};function O_(e,t,n,r){const o=e.resources.length,s=e.random?Math.floor(Math.random()*o):e.index;let i;if(e.random){let T=e.resources.slice(0);for(i=[];T.length>1;){const C=Math.floor(Math.random()*T.length);i.push(T[C]),T=T.slice(0,C).concat(T.slice(C+1))}i=i.concat(T)}else i=e.resources.slice(s).concat(e.resources.slice(0,s));const l=Date.now();let a="pending",u=0,c,f=null,d=[],p=[];typeof r=="function"&&p.push(r);function h(){f&&(clearTimeout(f),f=null)}function y(){a==="pending"&&(a="aborted"),h(),d.forEach(T=>{T.status==="pending"&&(T.status="aborted")}),d=[]}function E(T,C){C&&(p=[]),typeof T=="function"&&p.push(T)}function w(){return{startTime:l,payload:t,status:a,queriesSent:u,queriesPending:d.length,subscribe:E,abort:y}}function b(){a="failed",p.forEach(T=>{T(void 0,c)})}function g(){d.forEach(T=>{T.status==="pending"&&(T.status="aborted")}),d=[]}function _(T,C,N){const O=C!=="success";switch(d=d.filter(k=>k!==T),a){case"pending":break;case"failed":if(O||!e.dataAfterTimeout)return;break;default:return}if(C==="abort"){c=N,b();return}if(O){c=N,d.length||(i.length?S():b());return}if(h(),g(),!e.random){const k=e.resources.indexOf(T.resource);k!==-1&&k!==e.index&&(e.index=k)}a="completed",p.forEach(k=>{k(N)})}function S(){if(a!=="pending")return;h();const T=i.shift();if(T===void 0){if(d.length){f=setTimeout(()=>{h(),a==="pending"&&(g(),b())},e.timeout);return}b();return}const C={status:"pending",resource:T,callback:(N,O)=>{_(C,N,O)}};d.push(C),u++,f=setTimeout(S,e.rotate),n(T,t,C.callback)}return setTimeout(S),w}function Qu(e){const t={...k_,...e};let n=[];function r(){n=n.filter(l=>l().status==="pending")}function o(l,a,u){const c=O_(t,l,a,(f,d)=>{r(),u&&u(f,d)});return n.push(c),c}function s(l){return n.find(a=>l(a))||null}return{query:o,find:s,setIndex:l=>{t.index=l},getIndex:()=>t.index,cleanup:r}}function Jl(){}const rs=Object.create(null);function I_(e){if(!rs[e]){const t=Lo(e);if(!t)return;const n=Qu(t),r={config:t,redundancy:n};rs[e]=r}return rs[e]}function Yu(e,t,n){let r,o;if(typeof e=="string"){const s=Ds(e);if(!s)return n(void 0,424),Jl;o=s.send;const i=I_(e);i&&(r=i.redundancy)}else{const s=vi(e);if(s){r=Qu(s);const i=e.resources?e.resources[0]:"",l=Ds(i);l&&(o=l.send)}}return!r||!o?(n(void 0,424),Jl):r.query(t,o,n)().abort}function Ql(){}function N_(e){e.iconsLoaderFlag||(e.iconsLoaderFlag=!0,setTimeout(()=>{e.iconsLoaderFlag=!1,C_(e)}))}function M_(e){const t=[],n=[];return e.forEach(r=>{(r.match(Du)?t:n).push(r)}),{valid:t,invalid:n}}function Yn(e,t,n){function r(){const o=e.pendingIcons;t.forEach(s=>{o&&o.delete(s),e.icons[s]||e.missing.add(s)})}if(n&&typeof n=="object")try{if(!Vu(e,n).length){r();return}}catch(o){console.error(o)}r(),N_(e)}function Yl(e,t){e instanceof Promise?e.then(n=>{t(n)}).catch(()=>{t(null)}):t(e)}function L_(e,t){e.iconsToLoad?e.iconsToLoad=e.iconsToLoad.concat(t).sort():e.iconsToLoad=t,e.iconsQueueFlag||(e.iconsQueueFlag=!0,setTimeout(()=>{e.iconsQueueFlag=!1;const{provider:n,prefix:r}=e,o=e.iconsToLoad;if(delete e.iconsToLoad,!o||!o.length)return;const s=e.loadIcon;if(e.loadIcons&&(o.length>1||!s)){Yl(e.loadIcons(o,r,n),c=>{Yn(e,o,c)});return}if(s){o.forEach(c=>{const f=s(c,r,n);Yl(f,d=>{const p=d?{prefix:r,icons:{[c]:d}}:null;Yn(e,[c],p)})});return}const{valid:i,invalid:l}=M_(o);if(l.length&&Yn(e,l,null),!i.length)return;const a=r.match(Du)?Ds(n):null;if(!a){Yn(e,i,null);return}a.prepare(n,r,i).forEach(c=>{Yu(n,c,f=>{Yn(e,c.icons,f)})})}))}const Xu=(e,t)=>{const n=P_(e,!0,Wu()),r=A_(n);if(!r.pending.length){let a=!0;return t&&setTimeout(()=>{a&&t(r.loaded,r.missing,r.pending,Ql)}),()=>{a=!1}}const o=Object.create(null),s=[];let i,l;return r.pending.forEach(a=>{const{provider:u,prefix:c}=a;if(c===l&&u===i)return;i=u,l=c,s.push(hn(u,c));const f=o[u]||(o[u]=Object.create(null));f[c]||(f[c]=[])}),r.pending.forEach(a=>{const{provider:u,prefix:c,name:f}=a,d=hn(u,c),p=d.pendingIcons||(d.pendingIcons=new Set);p.has(f)||(p.add(f),o[u][c].push(f))}),s.forEach(a=>{const u=o[a.provider][a.prefix];u.length&&L_(a,u)}),t?x_(t,r,s):Ql},bb=e=>new Promise((t,n)=>{const r=typeof e=="string"?Tr(e,!0):e;if(!r){n(e);return}Xu([r||e],o=>{if(o.length&&r){const s=_i(r);if(s){t({...Vn,...s});return}}n(e)})});function H_(e,t,n){hn("",t).loadIcons=e}function j_(e,t){const n={...e};for(const r in t){const o=t[r],s=typeof o;r in Ku?(o===null||o&&(s==="string"||s==="number"))&&(n[r]=o):s===typeof n[r]&&(n[r]=r==="rotate"?o%4:o)}return n}const F_=/[\s,]+/;function D_(e,t){t.split(F_).forEach(n=>{switch(n.trim()){case"horizontal":e.hFlip=!0;break;case"vertical":e.vFlip=!0;break}})}function B_(e,t=0){const n=e.replace(/^-?[0-9.]*/,"");function r(o){for(;o<0;)o+=4;return o%4}if(n===""){const o=parseInt(e);return isNaN(o)?0:r(o)}else if(n!==e){let o=0;switch(n){case"%":o=25;break;case"deg":o=90}if(o){let s=parseFloat(e.slice(0,e.length-n.length));return isNaN(s)?0:(s=s/o,s%1===0?r(s):0)}}return t}function $_(e,t){let n=e.indexOf("xlink:")===-1?"":' xmlns:xlink="http://www.w3.org/1999/xlink"';for(const r in t)n+=" "+r+'="'+t[r]+'"';return'<svg xmlns="http://www.w3.org/2000/svg"'+n+">"+e+"</svg>"}function U_(e){return e.replace(/"/g,"'").replace(/%/g,"%25").replace(/#/g,"%23").replace(/</g,"%3C").replace(/>/g,"%3E").replace(/\s+/g," ")}function V_(e){return"data:image/svg+xml,"+U_(e)}function W_(e){return'url("'+V_(e)+'")'}const Xl={...Gu,inline:!1},K_={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","aria-hidden":!0,role:"img"},G_={display:"inline-block"},Bs={backgroundColor:"currentColor"},Zu={backgroundColor:"transparent"},Zl={Image:"var(--svg)",Repeat:"no-repeat",Size:"100% 100%"},ea={webkitMask:Bs,mask:Bs,background:Zu};for(const e in ea){const t=ea[e];for(const n in Zl)t[e+n]=Zl[n]}const qr={};["horizontal","vertical"].forEach(e=>{const t=e.slice(0,1)+"Flip";qr[e+"-flip"]=t,qr[e.slice(0,1)+"-flip"]=t,qr[e+"Flip"]=t});function ta(e){return e+(e.match(/^[-0-9.]+$/)?"px":"")}const na=(e,t)=>{const n=j_(Xl,t),r={...K_},o=t.mode||"svg",s={},i=t.style,l=typeof i=="object"&&!(i instanceof Array)?i:{};for(let y in t){const E=t[y];if(E!==void 0)switch(y){case"icon":case"style":case"onLoad":case"mode":case"ssr":break;case"inline":case"hFlip":case"vFlip":n[y]=E===!0||E==="true"||E===1;break;case"flip":typeof E=="string"&&D_(n,E);break;case"color":s.color=E;break;case"rotate":typeof E=="string"?n[y]=B_(E):typeof E=="number"&&(n[y]=E);break;case"ariaHidden":case"aria-hidden":E!==!0&&E!=="true"&&delete r["aria-hidden"];break;default:{const w=qr[y];w?(E===!0||E==="true"||E===1)&&(n[w]=!0):Xl[y]===void 0&&(r[y]=E)}}}const a=u_(e,n),u=a.attributes;if(n.inline&&(s.verticalAlign="-0.125em"),o==="svg"){r.style={...s,...l},Object.assign(r,u);let y=0,E=t.id;return typeof E=="string"&&(E=E.replace(/-/g,"_")),r.innerHTML=h_(a.body,E?()=>E+"ID"+y++:"iconifyVue"),Oe("svg",r)}const{body:c,width:f,height:d}=e,p=o==="mask"||(o==="bg"?!1:c.indexOf("currentColor")!==-1),h=$_(c,{...u,width:f+"",height:d+""});return r.style={...s,"--svg":W_(h),width:ta(u.width),height:ta(u.height),...G_,...p?Bs:Zu,...l},Oe("span",r)};Wu(!0);qu("",T_);if(typeof document<"u"&&typeof window<"u"){const e=window;if(e.IconifyPreload!==void 0){const t=e.IconifyPreload,n="Invalid IconifyPreload syntax.";typeof t=="object"&&t!==null&&(t instanceof Array?t:[t]).forEach(r=>{try{(typeof r!="object"||r===null||r instanceof Array||typeof r.icons!="object"||typeof r.prefix!="string"||!r_(r))&&console.error(n)}catch{console.error(n)}})}if(e.IconifyProviders!==void 0){const t=e.IconifyProviders;if(typeof t=="object"&&t!==null)for(let n in t){const r="IconifyProviders["+n+"] is invalid.";try{const o=t[n];if(typeof o!="object"||!o||o.resources===void 0)continue;zu(n,o)||console.error(r)}catch{console.error(r)}}}}const q_={...Vn,body:""},wb=ke((e,{emit:t})=>{const n=Te(null);function r(){n.value&&(n.value.abort?.(),n.value=null)}const o=Te(!!e.ssr),s=Te(""),i=xe(null);function l(){const u=e.icon;if(typeof u=="object"&&u!==null&&typeof u.body=="string")return s.value="",{data:u};let c;if(typeof u!="string"||(c=Tr(u,!1,!0))===null)return null;let f=_i(c);if(!f){const h=n.value;return(!h||h.name!==u)&&(f===null?n.value={name:u}:n.value={name:u,abort:Xu([c],a)}),null}r(),s.value!==u&&(s.value=u,Et(()=>{t("load",u)}));const d=e.customise;if(d){f=Object.assign({},f);const h=d(f.body,c.name,c.prefix,c.provider);typeof h=="string"&&(f.body=h)}const p=["iconify"];return c.prefix!==""&&p.push("iconify--"+c.prefix),c.provider!==""&&p.push("iconify--"+c.provider),{data:f,classes:p}}function a(){const u=l();u?u.data!==i.value?.data&&(i.value=u):i.value=null}return o.value?a():Bn(()=>{o.value=!0,a()}),Ne(()=>e.icon,a),St(r),()=>{const u=i.value;if(!u)return na(q_,e);let c=e;return u.classes&&(c={...e,class:u.classes.join(" ")}),na({...Vn,...u.data},c)}},{props:["icon","mode","ssr","width","height","style","color","inline","rotate","hFlip","horizontalFlip","vFlip","verticalFlip","flip","id","ariaHidden","customise","title"],emits:["load"]}),ra={getAPIConfig:Lo,setAPIModule:qu,sendAPIQuery:Yu,setFetch:y_,getFetch:__,listAPIProviders:g_},z_={title:"Tokens Usage Analysis",shortTitle:"Tokens Usage Analysis",github:{repo:"lonewolfyx/usage-board",link:"https://github.com/lonewolfyx/usage-board"}},J_={nuxt:{},icon:{provider:"iconify",class:"",aliases:{},iconifyApiEndpoint:"https://api.iconify.design",localApiEndpoint:"/api/_nuxt_icon",fallbackToApi:!0,cssSelectorPrefix:"i-",cssWherePseudo:!0,mode:"svg",attrs:{"aria-hidden":!0},collections:["academicons","akar-icons","ant-design","arcticons","basil","bi","bitcoin-icons","bpmn","brandico","bx","bxl","bxs","bytesize","carbon","catppuccin","cbi","charm","ci","cib","cif","cil","circle-flags","circum","clarity","codex","codicon","covid","cryptocurrency","cryptocurrency-color","cuida","dashicons","devicon","devicon-plain","dinkie-icons","duo-icons","ei","el","emojione","emojione-monotone","emojione-v1","entypo","entypo-social","eos-icons","ep","et","eva","f7","fa","fa-brands","fa-regular","fa-solid","fa6-brands","fa6-regular","fa6-solid","fa7-brands","fa7-regular","fa7-solid","fad","famicons","fe","feather","file-icons","flag","flagpack","flat-color-icons","flat-ui","flowbite","fluent","fluent-color","fluent-emoji","fluent-emoji-flat","fluent-emoji-high-contrast","fluent-mdl2","fontelico","fontisto","formkit","foundation","fxemoji","gala","game-icons","garden","geo","gg","gis","gravity-ui","gridicons","grommet-icons","guidance","healthicons","heroicons","heroicons-outline","heroicons-solid","hugeicons","humbleicons","ic","icomoon-free","icon-park","icon-park-outline","icon-park-solid","icon-park-twotone","iconamoon","iconoir","icons8","il","ion","iwwa","ix","jam","la","lets-icons","line-md","lineicons","logos","ls","lsicon","lucide","lucide-lab","mage","majesticons","maki","map","marketeq","material-icon-theme","material-symbols","material-symbols-light","mdi","mdi-light","medical-icon","memory","meteocons","meteor-icons","mi","mingcute","mono-icons","mynaui","nimbus","nonicons","noto","noto-v1","nrk","octicon","oi","ooui","openmoji","oui","pajamas","pepicons","pepicons-pencil","pepicons-pop","pepicons-print","ph","picon","pixel","pixelarticons","prime","proicons","ps","qlementine-icons","quill","radix-icons","raphael","ri","rivet-icons","roentgen","si","si-glyph","sidekickicons","simple-icons","simple-line-icons","skill-icons","solar","stash","streamline","streamline-block","streamline-color","streamline-cyber","streamline-cyber-color","streamline-emojis","streamline-flex","streamline-flex-color","streamline-freehand","streamline-freehand-color","streamline-kameleon-color","streamline-logos","streamline-pixel","streamline-plump","streamline-plump-color","streamline-sharp","streamline-sharp-color","streamline-stickies-color","streamline-ultimate","streamline-ultimate-color","subway","svg-spinners","system-uicons","tabler","tdesign","teenyicons","temaki","token","token-branded","topcoat","twemoji","typcn","uil","uim","uis","uit","uiw","unjs","vaadin","vs","vscode-icons","websymbol","weui","whh","wi","wpf","zmdi","zondicons"],fetchTimeout:1500}},Q_=og(z_,J_);function Y_(){const e=Ae();return e._appConfig||=nt(Q_),e._appConfig}const X_=Tt({name:"@nuxt/icon",setup(){const e=Oo(),t=Y_().icon;ra.setFetch($fetch.native);const n=[];if(t.provider==="server"){const o=e.app?.baseURL?.replace(/\/$/,"")??"";n.push(o+(t.localApiEndpoint||"/api/_nuxt_icon")),(t.fallbackToApi===!0||t.fallbackToApi==="client-only")&&n.push(t.iconifyApiEndpoint)}else t.provider==="none"?ra.setFetch(()=>Promise.resolve(new Response)):n.push(t.iconifyApiEndpoint);async function r(o,s){try{const i=await $fetch(n[0]+"/"+s+".json",{query:{icons:o.join(",")}});if(!i||i.prefix!==s||!i.icons)throw new Error("Invalid data"+JSON.stringify(i));return i}catch(i){return console.error("Failed to load custom icons",i),null}}zu("",{resources:n});for(const o of t.customCollections||[])o&&H_(r,o)}});function Eb(e,t){var n;const r=xe();return Xs(()=>{r.value=e()},{...t,flush:(n=t?.flush)!==null&&n!==void 0?n:"sync"}),kn(r)}function Gt(e,t){return br()?(Ef(e,t),!0):!1}function Sb(){const e=new Set,t=s=>{e.delete(s)};return{on:s=>{e.add(s);const i=()=>t(s);return Gt(i),{off:i}},off:t,trigger:(...s)=>Promise.all(Array.from(e).map(i=>i(...s))),clear:()=>{e.clear()}}}function Tb(e){let t=!1,n;const r=qs(!0);return((...o)=>(t||(n=r.run(()=>e(...o)),t=!0),n))}const Pn=new WeakMap,Z_=(...e)=>{var t;const n=e[0],r=(t=Ue())===null||t===void 0?void 0:t.proxy,o=r??br();if(o==null&&!Dn())throw new Error("injectLocal must be called in setup");return o&&Pn.has(o)&&n in Pn.get(o)?Pn.get(o)[n]:be(...e)};function ev(e,t){var n;const r=(n=Ue())===null||n===void 0?void 0:n.proxy,o=r??br();if(o==null)throw new Error("provideLocal must be called in setup");Pn.has(o)||Pn.set(o,Object.create(null));const s=Pn.get(o);return s[e]=t,at(e,t)}const Nt=typeof window<"u"&&typeof document<"u",oa=typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope,tv=e=>typeof e<"u",nv=Object.prototype.toString,rv=e=>nv.call(e)==="[object Object]",$s=()=>{},Ab=ov();function ov(){var e,t,n;return Nt&&!!(!((e=window)===null||e===void 0||(e=e.navigator)===null||e===void 0)&&e.userAgent)&&(/iP(?:ad|hone|od)/.test(window.navigator.userAgent)||((t=window)===null||t===void 0||(t=t.navigator)===null||t===void 0?void 0:t.maxTouchPoints)>2&&/iPad|Macintosh/.test((n=window)===null||n===void 0?void 0:n.navigator.userAgent))}function bi(...e){if(e.length!==1)return Wa(...e);const t=e[0];return typeof t=="function"?kn(Va(()=>({get:t,set:$s}))):Te(t)}function sv(e,t){function n(...r){return new Promise((o,s)=>{Promise.resolve(e(()=>t.apply(this,r),{fn:t,thisArg:this,args:r})).then(o).catch(s)})}return n}const ef=e=>e();function iv(e,t={}){let n,r,o=$s;const s=a=>{clearTimeout(a),o(),o=$s};let i;return a=>{const u=ve(e),c=ve(t.maxWait);return n&&s(n),u<=0||c!==void 0&&c<=0?(r&&(s(r),r=void 0),Promise.resolve(a())):new Promise((f,d)=>{o=t.rejectOnCancel?d:f,i=a,c&&!r&&(r=setTimeout(()=>{n&&s(n),r=void 0,f(i())},c)),n=setTimeout(()=>{r&&s(r),r=void 0,f(a())},u)})}}function lv(e=ef,t={}){const{initialState:n="active"}=t,r=bi(n==="active");function o(){r.value=!1}function s(){r.value=!0}return{isActive:kn(r),pause:o,resume:s,eventFilter:(...l)=>{r.value&&e(...l)}}}function sa(e){return e.endsWith("rem")?Number.parseFloat(e)*16:Number.parseFloat(e)}function zr(e){return Array.isArray(e)?e:[e]}function tf(e){return Ue()}function Cb(e){if(!Nt)return e;let t=0,n,r;const o=()=>{t-=1,r&&t<=0&&(r.stop(),n=void 0,r=void 0)};return((...s)=>(t+=1,r||(r=qs(!0),n=r.run(()=>e(...s))),Gt(o),n))}function av(e){return nt(me(e)?new Proxy({},{get(t,n,r){return oe(Reflect.get(e.value,n,r))},set(t,n,r){return me(e.value[n])&&!me(r)?e.value[n].value=r:e.value[n]=r,!0},deleteProperty(t,n){return Reflect.deleteProperty(e.value,n)},has(t,n){return Reflect.has(e.value,n)},ownKeys(){return Object.keys(e.value)},getOwnPropertyDescriptor(){return{enumerable:!0,configurable:!0}}}):e)}function cv(e){return av(ge(e))}function Rb(e,...t){const n=t.flat(),r=n[0];return cv(()=>Object.fromEntries(typeof r=="function"?Object.entries(ls(e)).filter(([o,s])=>!r(ve(s),o)):Object.entries(ls(e)).filter(o=>!n.includes(o[0]))))}function xb(e,t=1e4){return Va((n,r)=>{let o=ve(e),s;const i=()=>setTimeout(()=>{o=ve(e),r()},ve(t));return Gt(()=>{clearTimeout(s)}),{get(){return n(),o},set(l){o=l,r(),clearTimeout(s),s=i()}}})}function nf(e,t,n={}){const{eventFilter:r=ef,...o}=n;return Ne(e,sv(r,t),o)}function uv(e,t,n={}){const{eventFilter:r,initialState:o="active",...s}=n,{eventFilter:i,pause:l,resume:a,isActive:u}=lv(r,{initialState:o});return{stop:nf(e,t,{...s,eventFilter:i}),pause:l,resume:a,isActive:u}}function Pb(e,t){tf()&&$n(e,t)}function wi(e,t=!0,n){tf()?Bn(e,n):t?e():Et(e)}function ia(e,t=1e3,n={}){const{immediate:r=!0,immediateCallback:o=!1}=n;let s=null;const i=xe(!1);function l(){s&&(clearInterval(s),s=null)}function a(){i.value=!1,l()}function u(){const c=ve(t);c<=0||(i.value=!0,o&&e(),l(),i.value&&(s=setInterval(e,c)))}return r&&Nt&&u(),(me(t)||typeof t=="function")&&Gt(Ne(t,()=>{i.value&&Nt&&u()})),Gt(a),{isActive:Ba(i),pause:a,resume:u}}function fv(e,t,n={}){const{immediate:r=!0,immediateCallback:o=!1}=n,s=xe(!1);let i;function l(){i&&(clearTimeout(i),i=void 0)}function a(){s.value=!1,l()}function u(...c){o&&e(),l(),s.value=!0,i=setTimeout(()=>{s.value=!1,i=void 0,e(...c)},ve(t))}return r&&(s.value=!0,Nt&&u()),Gt(a),{isPending:Ba(s),start:u,stop:a}}function kb(e,t,n={}){const{debounce:r=0,maxWait:o=void 0,...s}=n;return nf(e,t,{...s,eventFilter:iv(r,{maxWait:o})})}function dv(e,t,n){return Ne(e,t,{...n,immediate:!0})}const vt=Nt?window:void 0;function Ot(e){var t;const n=ve(e);return(t=n?.$el)!==null&&t!==void 0?t:n}function _r(...e){const t=(r,o,s,i)=>(r.addEventListener(o,s,i),()=>r.removeEventListener(o,s,i)),n=ge(()=>{const r=zr(ve(e[0])).filter(o=>o!=null);return r.every(o=>typeof o!="string")?r:void 0});return dv(()=>{var r,o;return[(r=(o=n.value)===null||o===void 0?void 0:o.map(s=>Ot(s)))!==null&&r!==void 0?r:[vt].filter(s=>s!=null),zr(ve(n.value?e[1]:e[0])),zr(oe(n.value?e[2]:e[1])),ve(n.value?e[3]:e[2])]},([r,o,s,i],l,a)=>{if(!r?.length||!o?.length||!s?.length)return;const u=rv(i)?{...i}:i,c=r.flatMap(f=>o.flatMap(d=>s.map(p=>t(f,d,p,u))));a(()=>{c.forEach(f=>f())})},{flush:"post"})}function pv(){const e=xe(!1),t=Ue();return t&&Bn(()=>{e.value=!0},t),e}function rf(e){const t=pv();return ge(()=>(t.value,!!e()))}function hv(e){return typeof e=="function"?e:typeof e=="string"?t=>t.key===e:Array.isArray(e)?t=>e.includes(t.key):()=>!0}function Ob(...e){let t,n,r={};e.length===3?(t=e[0],n=e[1],r=e[2]):e.length===2?typeof e[1]=="object"?(t=!0,n=e[0],r=e[1]):(t=e[0],n=e[1]):(t=!0,n=e[0]);const{target:o=vt,eventName:s="keydown",passive:i=!1,dedupe:l=!1}=r,a=hv(t);return _r(o,s,c=>{c.repeat&&ve(l)||a(c)&&n(c)},i)}const Us=Symbol("vueuse-ssr-width");function gv(){const e=Dn()?Z_(Us,null):null;return typeof e=="number"?e:void 0}function mv(e,t){t!==void 0?t.provide(Us,e):ev(Us,e)}function yv(e,t={}){const{window:n=vt,ssrWidth:r=gv()}=t,o=rf(()=>n&&"matchMedia"in n&&typeof n.matchMedia=="function"),s=xe(typeof r=="number"),i=xe(),l=xe(!1),a=u=>{l.value=u.matches};return Xs(()=>{if(s.value){s.value=!o.value,l.value=ve(e).split(",").some(u=>{const c=u.includes("not all"),f=u.match(/\(\s*min-width:\s*(-?\d+(?:\.\d*)?[a-z]+\s*)\)/),d=u.match(/\(\s*max-width:\s*(-?\d+(?:\.\d*)?[a-z]+\s*)\)/);let p=!!(f||d);return f&&p&&(p=r>=sa(f[1])),d&&p&&(p=r<=sa(d[1])),c?!p:p});return}o.value&&(i.value=n.matchMedia(ve(e)),l.value=i.value.matches)}),_r(i,"change",a,{passive:!0}),ge(()=>l.value)}function _v(e){return JSON.parse(JSON.stringify(e))}const jr=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},Fr="__vueuse_ssr_handlers__",vv=bv();function bv(){return Fr in jr||(jr[Fr]=jr[Fr]||{}),jr[Fr]}function of(e,t){return vv[e]||t}function wv(e){return yv("(prefers-color-scheme: dark)",e)}function Ev(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"}const Sv={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()}},la="vueuse-storage";function Tv(e,t,n,r={}){var o;const{flush:s="pre",deep:i=!0,listenToStorageChanges:l=!0,writeDefaults:a=!0,mergeDefaults:u=!1,shallow:c,window:f=vt,eventFilter:d,onError:p=D=>{console.error(D)},initOnMounted:h}=r,y=(c?xe:Te)(typeof t=="function"?t():t),E=ge(()=>ve(e));if(!n)try{n=of("getDefaultStorage",()=>vt?.localStorage)()}catch(D){p(D)}if(!n)return y;const w=ve(t),b=Ev(w),g=(o=r.serializer)!==null&&o!==void 0?o:Sv[b],{pause:_,resume:S}=uv(y,D=>k(D),{flush:s,deep:i,eventFilter:d});Ne(E,()=>R(),{flush:s});let T=!1;const C=D=>{h&&!T||R(D)},N=D=>{h&&!T||H(D)};f&&l&&(n instanceof Storage?_r(f,"storage",C,{passive:!0}):_r(f,la,N)),h?wi(()=>{T=!0,R()}):R();function O(D,z){if(f){const F={key:E.value,oldValue:D,newValue:z,storageArea:n};f.dispatchEvent(n instanceof Storage?new StorageEvent("storage",F):new CustomEvent(la,{detail:F}))}}function k(D){try{const z=n.getItem(E.value);if(D==null)O(z,null),n.removeItem(E.value);else{const F=g.write(D);z!==F&&(n.setItem(E.value,F),O(z,F))}}catch(z){p(z)}}function U(D){const z=D?D.newValue:n.getItem(E.value);if(z==null)return a&&w!=null&&n.setItem(E.value,g.write(w)),w;if(!D&&u){const F=g.read(z);return typeof u=="function"?u(F,w):b==="object"&&!Array.isArray(F)?{...w,...F}:F}else return typeof z!="string"?z:g.read(z)}function R(D){if(!(D&&D.storageArea!==n)){if(D&&D.key==null){y.value=w;return}if(!(D&&D.key!==E.value)){_();try{const z=g.write(y.value);(D===void 0||D?.newValue!==z)&&(y.value=U(D))}catch(z){p(z)}finally{D?Et(S):S()}}}}function H(D){R(D.detail)}return y}const Av="*,*::before,*::after{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}";function Ib(e={}){const{selector:t="html",attribute:n="class",initialValue:r="auto",window:o=vt,storage:s,storageKey:i="vueuse-color-scheme",listenToStorageChanges:l=!0,storageRef:a,emitAuto:u,disableTransition:c=!0}=e,f={auto:"",light:"light",dark:"dark",...e.modes||{}},d=wv({window:o}),p=ge(()=>d.value?"dark":"light"),h=a||(i==null?bi(r):Tv(i,r,s,{window:o,listenToStorageChanges:l})),y=ge(()=>h.value==="auto"?p.value:h.value),E=of("updateHTMLAttrs",(_,S,T)=>{const C=typeof _=="string"?o?.document.querySelector(_):Ot(_);if(!C)return;const N=new Set,O=new Set;let k=null;if(S==="class"){const R=T.split(/\s/g);Object.values(f).flatMap(H=>(H||"").split(/\s/g)).filter(Boolean).forEach(H=>{R.includes(H)?N.add(H):O.add(H)})}else k={key:S,value:T};if(N.size===0&&O.size===0&&k===null)return;let U;c&&(U=o.document.createElement("style"),U.appendChild(document.createTextNode(Av)),o.document.head.appendChild(U));for(const R of N)C.classList.add(R);for(const R of O)C.classList.remove(R);k&&C.setAttribute(k.key,k.value),c&&(o.getComputedStyle(U).opacity,document.head.removeChild(U))});function w(_){var S;E(t,n,(S=f[_])!==null&&S!==void 0?S:_)}function b(_){e.onChanged?e.onChanged(_,w):w(_)}Ne(y,b,{flush:"post",immediate:!0}),wi(()=>b(y.value));const g=ge({get(){return u?h.value:y.value},set(_){h.value=_}});return Object.assign(g,{store:h,system:p,state:y})}function Cv(e,t,n={}){const{window:r=vt,...o}=n;let s;const i=rf(()=>r&&"ResizeObserver"in r),l=()=>{s&&(s.disconnect(),s=void 0)},a=Ne(ge(()=>{const c=ve(e);return Array.isArray(c)?c.map(f=>Ot(f)):[Ot(c)]}),c=>{if(l(),i.value&&r){s=new ResizeObserver(t);for(const f of c)f&&s.observe(f,o)}},{immediate:!0,flush:"post"}),u=()=>{l(),a()};return Gt(u),{isSupported:i,stop:u}}function Nb(e,t={width:0,height:0},n={}){const{window:r=vt,box:o="content-box"}=n,s=ge(()=>{var f;return(f=Ot(e))===null||f===void 0||(f=f.namespaceURI)===null||f===void 0?void 0:f.includes("svg")}),i=xe(t.width),l=xe(t.height),{stop:a}=Cv(e,([f])=>{const d=o==="border-box"?f.borderBoxSize:o==="content-box"?f.contentBoxSize:f.devicePixelContentBoxSize;if(r&&s.value){const p=Ot(e);if(p){const h=p.getBoundingClientRect();i.value=h.width,l.value=h.height}}else if(d){const p=zr(d);i.value=p.reduce((h,{inlineSize:y})=>h+y,0),l.value=p.reduce((h,{blockSize:y})=>h+y,0)}else i.value=f.contentRect.width,l.value=f.contentRect.height},n);wi(()=>{const f=Ot(e);f&&(i.value="offsetWidth"in f?f.offsetWidth:t.width,l.value="offsetHeight"in f?f.offsetHeight:t.height)});const u=Ne(()=>Ot(e),f=>{i.value=f?t.width:0,l.value=f?t.height:0});function c(){a(),u()}return{width:i,height:l,stop:c}}function Mb(e,t,n,r={}){var o,s;const{clone:i=!1,passive:l=!1,eventName:a,deep:u=!1,defaultValue:c,shouldEmit:f}=r,d=Ue(),p=n||d?.emit||(d==null||(o=d.$emit)===null||o===void 0?void 0:o.bind(d))||(d==null||(s=d.proxy)===null||s===void 0||(s=s.$emit)===null||s===void 0?void 0:s.bind(d?.proxy));let h=a;t||(t="modelValue"),h=h||`update:${t.toString()}`;const y=b=>i?typeof i=="function"?i(b):_v(b):b,E=()=>tv(e[t])?y(e[t]):c,w=b=>{f?f(b)&&p(h,b):p(h,b)};if(l){const b=Te(E());let g=!1;return Ne(()=>e[t],_=>{g||(g=!0,b.value=y(_),Et(()=>g=!1))}),Ne(b,_=>{!g&&(_!==e[t]||u)&&w(_)},{deep:u}),b}else return ge({get(){return E()},set(b){w(b)}})}const aa="ping";function Dr(e){return e===!0?{}:e}function Rv(e){if("interval"in e){const{interval:t=1e3}=e;return n=>ia(n,t,{immediate:!1})}return t=>ia(t,1e3,{immediate:!1})}function Lb(e,t={}){const{onConnected:n,onDisconnected:r,onError:o,onMessage:s,immediate:i=!0,autoConnect:l=!0,autoClose:a=!0,protocols:u=[]}=t,c=Te(null),f=xe("CLOSED"),d=Te(),p=bi(e);let h,y,E=!1,w=0,b=[],g,_;const S=()=>{if(b.length&&d.value&&f.value==="OPEN"){for(const R of b)d.value.send(R);b=[]}},T=()=>{g!=null&&(clearTimeout(g),g=void 0)},C=()=>{clearTimeout(_),_=void 0},N=(R=1e3,H)=>{T(),!(!Nt&&!oa||!d.value)&&(E=!0,C(),h?.(),d.value.close(R,H),d.value=void 0)},O=(R,H=!0)=>!d.value||f.value!=="OPEN"?(H&&b.push(R),!1):(S(),d.value.send(R),!0),k=()=>{if(E||typeof p.value>"u")return;const R=new WebSocket(p.value,u);d.value=R,f.value="CONNECTING",R.onopen=()=>{f.value="OPEN",w=0,n?.(R),y?.(),S()},R.onclose=H=>{if(f.value="CLOSED",C(),h?.(),r?.(R,H),!E&&t.autoReconnect&&(d.value==null||R===d.value)){const{retries:D=-1,delay:z=1e3,onFailed:F}=Dr(t.autoReconnect);if((typeof D=="function"?D:()=>typeof D=="number"&&(D<0||w<D))(w)){w+=1;const Z=typeof z=="function"?z(w):z;g=setTimeout(k,Z)}else F?.()}},R.onerror=H=>{o?.(R,H)},R.onmessage=H=>{if(t.heartbeat){C();const{message:D=aa,responseMessage:z=D}=Dr(t.heartbeat);if(H.data===ve(z))return}c.value=H.data,s?.(R,H)}};if(t.heartbeat){const{message:R=aa,scheduler:H=Rv(Dr(t.heartbeat)),pongTimeout:D=1e3}=Dr(t.heartbeat),{pause:z,resume:F}=H(()=>{O(ve(R),!1),_==null&&(_=setTimeout(()=>{N(),E=!1},D))});h=z,y=F}a&&(Nt&&_r("beforeunload",()=>N(),{passive:!0}),Gt(N));const U=()=>{!Nt&&!oa||(N(),E=!1,w=0,k())};return i&&U(),l&&Ne(p,U),{data:c,status:f,close:N,send:O,open:U,ws:d}}const xv=Tt(e=>{mv(1024,e.vueApp)}),Pv=[im,fm,Dy,By,$y,Vy,Gy,Jy,X_,xv],sf=(e="RouteProvider")=>ke({name:e,props:{route:{type:Object,required:!0},vnode:Object,vnodeRef:Object,renderKey:String,trackRootNodes:Boolean},setup(t){const n=t.renderKey,r=t.route,o={};for(const s in t.route)Object.defineProperty(o,s,{get:()=>n===t.renderKey?t.route[s]:r[s],enumerable:!0});return at(pn,st(o)),()=>t.vnode?Oe(t.vnode,{ref:t.vnodeRef}):t.vnode}}),kv=sf(),ca=new WeakMap,Ov=ke({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}){const o=Ae(),s=Te(),i=be(pn,null);let l;r({pageRef:s});const a=be(uu,null);let u;const c=o.deferHydration();let f=!1,d=0;if(o.isHydrating){const h=o.hooks.hookOnce("app:error",c);rt().beforeEach(h)}e.pageKey&&Ne(()=>e.pageKey,(h,y)=>{h!==y&&o.callHook("page:loading:start")});let p=!1;{const h=rt().beforeResolve(()=>{p=!1});$n(()=>{h(),c()})}return()=>Oe(ku,{name:e.name,route:e.route,...t},{default:h=>{const y=Iv(i,h.route,h.Component),E=i&&i.matched.length===h.route.matched.length;if(!h.Component){if(u&&!E)return u;c();return}if(u&&a&&!a.isCurrent(h.route))return u;if(y&&i&&(!a||a?.isCurrent(i)))return E||u?u:null;const w=Ls(h,e.pageKey),b=Nv(i,h.route,h.Component);!o.isHydrating&&l===w&&!b&&Et(()=>{p||(p=!0,o.callHook("page:loading:end"))}),f&&l!==w&&d++,l=w;const g=!!(e.transition??h.route.meta.pageTransition??gl),_=g&&Hu([e.transition,h.route.meta.pageTransition,gl,{onAfterLeave(){o["~transitionFinish"]?.(),delete o["~transitionFinish"],delete o["~transitionPromise"],o.callHook("page:transition:finish",h.Component)}}]),S=e.keepalive??h.route.meta.keepalive??Jh;return u=Lu(g&&_,wy(S,Oe(si,{key:d,suspensible:!0,onPending:()=>{f=!0,g&&!o["~transitionPromise"]&&(o["~transitionPromise"]=new Promise(T=>{o["~transitionFinish"]=T})),o.callHook("page:start",h.Component)},onResolve:async()=>{f=!1;try{await Et(),o._route.sync?.(),await o.callHook("page:finish",h.Component),!p&&!b&&(p=!0,await o.callHook("page:loading:end"))}finally{c()}}},{default:()=>{const T={key:w||void 0,vnode:n.default?Mv(n.default,h):h.Component,route:h.route,renderKey:w||void 0,trackRootNodes:g,vnodeRef:s};if(!S)return Oe(kv,T);const C=h.Component.type,N=C;let O=ca.get(N);return O||(O=sf(C.name||C.__name),ca.set(N,O)),Oe(O,T)}}))).default(),u}})}});function Iv(e,t,n){if(!e)return!1;const r=t.matched.findIndex(o=>o.components?.default===n?.type);return!r||r===-1?!1:t.matched.slice(0,r).some((o,s)=>o.components?.default!==e.matched[s]?.components?.default)||n&&Ls({route:t,Component:n})!==Ls({route:e,Component:n})}function Nv(e,t,n){return e?t.matched.findIndex(o=>o.components?.default===n?.type)<t.matched.length-1:!1}function Mv(e,t){const n=e(t);return n.length===1?Oe(n[0]):Oe(He,void 0,n)}const lf=mu,Lv=ke({name:"LayoutLoader",inheritAttrs:!1,props:{name:String,layoutProps:Object},setup(e,t){return()=>Oe(Wt[e.name],e.layoutProps,t.slots)}}),Hv={name:{type:[String,Boolean,Object],default:null},fallback:{type:[String,Object],default:null}},jv=ke({name:"NuxtLayout",inheritAttrs:!1,props:Hv,setup(e,t){const n=Ae(),r=be(pn),s=!r||r===di()?Ou():r,i=ge(()=>{let c=oe(e.name)??s?.meta.layout??lf(s?.path).appLayout??"default";return c&&!(c in Wt)&&e.fallback&&(c=oe(e.fallback)),c}),l=xe();t.expose({layoutRef:l});const a=n.deferHydration();if(n.isHydrating){const c=n.hooks.hookOnce("app:error",a);rt().beforeEach(c)}let u;return()=>{const f=!!i.value&&i.value in Wt&&!!(s?.meta.layoutTransition??hl),d=f&&Hu([s?.meta.layoutTransition,hl,{onBeforeLeave(){n["~transitionPromise"]=new Promise(h=>{n["~transitionFinish"]=h})},onAfterLeave(){n["~transitionFinish"]?.(),delete n["~transitionFinish"],delete n["~transitionPromise"]}}]),p=u;return u=i.value,Lu(d,{default:()=>Oe(si,{suspensible:!0,onResolve:async()=>{await Et(a)}},{default:()=>Oe(Fv,{layoutProps:Hc(t.attrs,s.meta.layoutProps??{},{ref:l}),key:i.value||void 0,name:i.value,shouldProvide:!e.name,isRenderingNewLayout:h=>h!==p&&h===i.value,hasTransition:f},t.slots)})}).default()}}}),Fv=ke({name:"NuxtLayoutProvider",inheritAttrs:!1,props:{name:{type:[String,Boolean]},layoutProps:{type:Object},hasTransition:{type:Boolean},shouldProvide:{type:Boolean},isRenderingNewLayout:{type:Function,required:!0}},setup(e,t){const n=e.name;e.shouldProvide&&at(uu,{isCurrent:s=>n===!1||n===(s.meta.layout??lf(s.path).appLayout??"default")});const r=be(pn);if(r&&r===di()){const s=Ou(),i={};for(const l in s){const a=l;Object.defineProperty(i,a,{enumerable:!0,get:()=>e.isRenderingNewLayout(e.name)?s[a]:r[a]})}at(pn,st(i))}return()=>!n||typeof n=="string"&&!(n in Wt)?t.slots.default?.():Oe(Lv,{key:n,layoutProps:e.layoutProps,name:n},t.slots)}});function Dv(e,t){const n=typeof e=="string"&&!t?`${e}Context`:t,r=Symbol(n);return[i=>{const l=be(r,i);if(l||l===null)return l;throw new Error(`Injection \`${r.toString()}\` not found. Component must be used within ${Array.isArray(e)?`one of the following components: ${e.join(", ")}`:`\`${e}\``}`)},i=>(at(r,i),i)]}function Bv(){const e=Ue(),t=Te(),n=ge(()=>r());ei(()=>{n.value!==r()&&Wf(t)});function r(){return t.value&&"$el"in t.value&&["#text","#comment"].includes(t.value.$el.nodeName)?t.value.$el.nextElementSibling:Ot(t)}const o=Object.assign({},e.exposed),s={};for(const l in e.props)Object.defineProperty(s,l,{enumerable:!0,configurable:!0,get:()=>e.props[l]});if(Object.keys(o).length>0)for(const l in o)Object.defineProperty(s,l,{enumerable:!0,configurable:!0,get:()=>o[l]});Object.defineProperty(s,"$el",{enumerable:!0,configurable:!0,get:()=>e.vnode.el}),e.exposed=s;function i(l){if(t.value=l,!!l&&(Object.defineProperty(s,"$el",{enumerable:!0,configurable:!0,get:()=>l instanceof Element?l:l.$el}),!(l instanceof Element)&&!Object.hasOwn(l,"$el"))){const a=l.$.exposed,u=Object.assign({},s);for(const c in a)Object.defineProperty(u,c,{enumerable:!0,configurable:!0,get:()=>a[c]});e.exposed=u}}return{forwardRef:i,currentRef:t,currentElement:n}}const[Hb,$v]=Dv("TooltipProvider");var Uv=ke({inheritAttrs:!1,__name:"TooltipProvider",props:{delayDuration:{type:Number,required:!1,default:700},skipDelayDuration:{type:Number,required:!1,default:300},disableHoverableContent:{type:Boolean,required:!1,default:!1},disableClosingTrigger:{type:Boolean,required:!1},disabled:{type:Boolean,required:!1},ignoreNonKeyboardFocus:{type:Boolean,required:!1,default:!1},content:{type:Object,required:!1}},setup(e){const t=e,{delayDuration:n,skipDelayDuration:r,disableHoverableContent:o,disableClosingTrigger:s,ignoreNonKeyboardFocus:i,disabled:l,content:a}=ls(t);Bv();const u=Te(!0),c=Te(!1),{start:f,stop:d}=fv(()=>{u.value=!0},r,{immediate:!1});return $v({isOpenDelayed:u,delayDuration:n,onOpen(){d(),u.value=!1},onClose(){f()},isPointerInTransitRef:c,disableHoverableContent:o,disableClosingTrigger:s,disabled:l,ignoreNonKeyboardFocus:i,content:a}),(p,h)=>ti(p.$slots,"default")}}),Vv=Uv;const Wv=ke({__name:"TooltipProvider",props:{delayDuration:{default:0},skipDelayDuration:{},disableHoverableContent:{type:Boolean},disableClosingTrigger:{type:Boolean},disabled:{type:Boolean},ignoreNonKeyboardFocus:{type:Boolean},content:{}},setup(e){const t=e;return(n,r)=>(Ke(),tt(oe(Vv),va(ii(t)),{default:ln(()=>[ti(n.$slots,"default")]),_:3},16))}}),Vs=Symbol("head-component"),Ei={body:{type:Boolean,default:void 0},tagPosition:{type:String}};function Ar(e,t){const n=Object.fromEntries(Object.entries(e).filter(([r,o])=>o!==void 0));return typeof n.body<"u"&&(n.tagPosition=n.body?"bodyClose":"head"),typeof n.renderPriority<"u"&&(n.tagPriority=n.renderPriority),{...n,key:t}}function Cr(){const e=Ue()?.vnode.key;return e!=null&&typeof e!="symbol"?String(e):void 0}function gn(){return be(Vs,Kv,!0)}function Kv(){const e=be(Vs,null);if(e)return e;const t=nt({}),n=Qg(t),r={input:t,entry:n,update:()=>n.patch(t)};return at(Vs,r),r}const mn={accesskey:String,autocapitalize:String,autofocus:{type:Boolean,default:void 0},class:{type:[String,Object,Array],default:void 0},contenteditable:{type:Boolean,default:void 0},contextmenu:String,dir:String,draggable:{type:Boolean,default:void 0},enterkeyhint:String,exportparts:String,hidden:{type:Boolean,default:void 0},id:String,inputmode:String,is:String,itemid:String,itemprop:String,itemref:String,itemscope:String,itemtype:String,lang:String,nonce:String,part:String,slot:String,spellcheck:{type:Boolean,default:void 0},style:{type:[String,Object,Array],default:void 0},tabindex:String,title:String,translate:String,renderPriority:[String,Number],tagPriority:{type:[String,Number]}};({...mn,...Ei});({...mn,...Ei});({...mn});({...mn});({...mn,...Ei});({...mn});const Gv=ke({name:"Body",inheritAttrs:!1,props:mn,setup(e,t){const{input:n,update:r}=gn();return St(()=>{n.bodyAttrs=null,r()}),()=>(n.bodyAttrs={...e,...t.attrs},r(),t.slots.default?.())}}),qv=ke({name:"SiteBody",__name:"SiteBody",setup(e){return(t,n)=>{const r=Gv;return Ke(),tt(r,{class:"antialiased flex h-full text-base text-foreground bg-background"},{default:ln(()=>[ti(t.$slots,"default")]),_:3})}}}),zv=Object.assign(qv,{__name:"SiteBody"}),Jv=(e,t)=>{const n=e.__vccOpts||e;for(const[r,o]of t)n[r]=o;return n},Qv={};function Yv(e,t){const n=Ov,r=jv,o=Wv,s=zv;return Ke(),tt(s,null,{default:ln(()=>[ye(o,null,{default:ln(()=>[ye(r,null,{default:ln(()=>[ye(n)]),_:1})]),_:1})]),_:1})}const Xv=Jv(Qv,[["render",Yv]]),Zv={__name:"nuxt-error-page",props:{error:Object},setup(e){const n=e.error,r=Number(n.statusCode||500),o=r===404,s=n.statusMessage??(o?"Page Not Found":"Internal Server Error"),i=n.message||n.toString(),l=void 0,c=o?to(()=>fn(()=>import("./Cd5S9Sm2.js"),__vite__mapDeps([11,10,12]),import.meta.url)):to(()=>fn(()=>import("./CoVMsEv_.js"),__vite__mapDeps([13,14]),import.meta.url));return(f,d)=>(Ke(),tt(oe(c),va(ii({status:oe(r),statusText:oe(s),statusCode:oe(r),statusMessage:oe(s),description:oe(i),stack:oe(l)})),null,16))}},eb={key:0},ua={__name:"nuxt-root",setup(e){const t=()=>null,n=Ae(),r=n.deferHydration();if(n.isHydrating){const u=n.hooks.hookOnce("app:error",r);rt().beforeEach(u)}const o=!1;at(pn,di()),n.hooks.callHookWith(u=>u.map(c=>c()),"vue:setup");const s=Io(),i=!1,l=/bot\b|chrome-lighthouse|facebookexternalhit|google\b/i;lc((u,c,f)=>{if(n.hooks.callHook("vue:error",u,c,f)?.catch(d=>console.error("[nuxt] Error in `vue:error` hook",d)),l.test(navigator.userAgent))return n.hooks.callHook("app:error",u),console.error(`[nuxt] Not rendering error page for bot with user agent \`${navigator.userAgent}\`:`,u),!1;if(du(u)&&(u.fatal||u.unhandled))return n.runWithContext(()=>tn(u)),!1});const a=!1;return(u,c)=>(Ke(),tt(si,{onResolve:oe(r)},{default:ln(()=>[oe(i)?(Ke(),ep("div",eb)):oe(s)?(Ke(),tt(oe(Zv),{key:1,error:oe(s)},null,8,["error"])):oe(a)?(Ke(),tt(oe(t),{key:2,context:oe(a)},null,8,["context"])):oe(o)?(Ke(),tt(Sd(oe(o)),{key:3})):(Ke(),tt(oe(Xv),{key:4}))]),_:1},8,["onResolve"]))}};let fa;{let e;fa=async function(){if(e)return e;const n=!!(window.__NUXT__?.serverRendered??document.getElementById("__NUXT_DATA__")?.dataset.ssr==="true"),r=n?Wp(ua):Vp(ua),o=Zh({vueApp:r});async function s(i){await o.callHook("app:error",i),o.payload.error||=un(i)}r.config.errorHandler=s,o.hook("app:suspense:resolve",()=>{r.config.errorHandler===s&&(r.config.errorHandler=void 0)}),!n&&ml.id&&o.hook("app:suspense:resolve",()=>{document.getElementById(ml.id)?.remove()});try{await ng(o,Pv)}catch(i){s(i)}try{await o.hooks.callHook("app:created",r),await o.hooks.callHook("app:beforeMount",r),r.mount(Qh),await o.hooks.callHook("app:mounted",r),await Et()}catch(i){s(i)}return r},e=fa().catch(t=>{throw console.error("Error while mounting app:",t),t})}export{Ty as $,tt as A,ti as B,oe as C,nt as D,ls as E,Mb as F,cb as G,He as H,ib as I,Hc as J,Dv as K,ub as L,Sd as M,Bn as N,Cv as O,vo as P,va as Q,ii as R,$n as S,nb as T,Rb as U,bo as V,Oe as W,Ib as X,ob as Y,Nb as Z,Jv as _,Mc as a,as as a$,cr as a0,Nu as a1,me as a2,xe as a3,Lb as a4,kb as a5,Ef as a6,Wa as a7,di as a8,Ry as a9,Y_ as aA,tu as aB,yb as aC,Oo as aD,rt as aE,Ae as aF,Fu as aG,Kl as aH,_b as aI,sb as aJ,qc as aK,fg as aL,ug as aM,zy as aN,gb as aO,db as aP,Un as aQ,Qc as aR,vh as aS,lo as aT,Se as aU,Ht as aV,vb as aW,bb as aX,n_ as aY,pb as aZ,_d as a_,un as aa,be as ab,Uf as ac,at as ad,fb as ae,re as af,mb as ag,Br as ah,$e as ai,Ue as aj,Gt as ak,Sb as al,rb as am,vt as an,Ob as ao,pv as ap,tb as aq,br as ar,Ba as as,Eb as at,ab as au,Hb as av,fv as aw,lb as ax,hb as ay,ma as az,ye as b,wb as b0,ep as c,Lc as d,Pb as e,Cb as f,ge as g,Ne as h,Nt as i,au as j,Ab as k,_r as l,Xs as m,Et as n,Ke as o,ve as p,Ot as q,Te as r,St as s,wf as t,Qg as u,xb as v,ln as w,Tb as x,ke as y,Bv as z};
|
|
4
|
+
`)&&(Ir(g,0)||bn(),g.textContent=_.children)}if(k){if(z||!N||U&48){const K=g.tagName.includes("-");for(const ue in k)(z&&(ue.endsWith("value")||ue==="indeterminate")||vr(ue)&&!on(ue)||ue[0]==="."||K&&!on(ue))&&r(g,ue,null,k[ue],void 0,S)}else if(k.onClick)r(g,"onClick",null,k.onClick,void 0,S);else if(U&4&&Kt(k.style))for(const K in k.style)k.style[K]}let Z;(Z=k&&k.onVnodeBeforeMount)&&We(Z,S,_),H&>(_,null,S,"beforeMount"),((Z=k&&k.onVnodeMounted)||H||F)&&kc(()=>{Z&&We(Z,S,_),F&&D.enter(g),H&>(_,null,S,"mounted")},T)}return g.nextSibling},p=(g,_,S,T,C,N,O)=>{O=O||!!_.dynamicChildren;const k=_.children,U=k.length;for(let R=0;R<U;R++){const H=O?k[R]:k[R]=Je(k[R]),D=H.type===cn;g?(D&&!O&&R+1<U&&Je(k[R+1]).type===cn&&(a(o(g.data.slice(H.children.length)),S,s(g)),g.data=H.children),g=f(g,H,T,C,N,O)):D&&!H.children?a(H.el=o(""),S):(Ir(S,1)||bn(),n(null,H,S,null,T,C,Or(S),N))}return g},h=(g,_,S,T,C,N)=>{const{slotScopeIds:O}=_;O&&(C=C?C.concat(O):O);const k=i(g),U=p(s(g),_,k,S,T,C,N);return U&&Sn(U)&&U.data==="]"?s(_.anchor=U):(bn(),a(_.anchor=u("]"),k,U),U)},y=(g,_,S,T,C,N)=>{if(Ir(g.parentElement,1)||bn(),_.el=null,N){const U=E(g);for(;;){const R=s(g);if(R&&R!==U)l(R);else break}}const O=s(g),k=i(g);return l(g),n(null,_,k,O,S,T,Or(k),C),S&&(S.vnode.el=_.el,Po(S,_.el)),O},E=(g,_="[",S="]")=>{let T=0;for(;g;)if(g=s(g),g&&Sn(g)&&(g.data===_&&T++,g.data===S)){if(T===0)return s(g);T--}return g},w=(g,_,S)=>{const T=_.parentNode;T&&T.replaceChild(g,_);let C=S;for(;C;)C.vnode.el===_&&(C.vnode.el=C.subTree.el=g),C=C.parent},b=g=>g.nodeType===1&&g.tagName==="TEMPLATE";return[c,f]}const ji="data-allow-mismatch",pd={0:"text",1:"children",2:"class",3:"style",4:"attribute"};function Ir(e,t){if(t===0||t===1)for(;e&&!e.hasAttribute(ji);)e=e.parentElement;const n=e&&e.getAttribute(ji);if(n==null)return!1;if(n==="")return!0;{const r=n.split(",");return t===0&&r.includes("children")?!0:r.includes(pd[t])}}_o().requestIdleCallback;_o().cancelIdleCallback;function hd(e,t){if(Sn(e)&&e.data==="["){let n=1,r=e.nextSibling;for(;r;){if(r.nodeType===1){if(t(r)===!1)break}else if(Sn(r))if(r.data==="]"){if(--n===0)break}else r.data==="["&&n++;r=r.nextSibling}}else t(e)}const It=e=>!!e.type.__asyncLoader;function to(e){X(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:r,delay:o=200,hydrate:s,timeout:i,suspensible:l=!0,onError:a}=e;let u=null,c,f=0;const d=()=>(f++,u=null,p()),p=()=>{let h;return u||(h=u=t().catch(y=>{if(y=y instanceof Error?y:new Error(String(y)),a)return new Promise((E,w)=>{a(y,()=>E(d()),()=>w(y),f+1)});throw y}).then(y=>h!==u&&u?u:(y&&(y.__esModule||y[Symbol.toStringTag]==="Module")&&(y=y.default),c=y,y)))};return ke({name:"AsyncComponentWrapper",__asyncLoader:p,__asyncHydrate(h,y,E){let w=!1;(y.bu||(y.bu=[])).push(()=>w=!0);const b=()=>{w||E()},g=s?()=>{const _=s(b,S=>hd(h,S));_&&(y.bum||(y.bum=[])).push(_)}:b;c?g():p().then(()=>!y.isUnmounted&&g())},get __asyncResolved(){return c},setup(){const h=Ie;if(Zs(h),c)return()=>Nr(c,h);const y=g=>{u=null,Fn(g,h,13,!r)};if(l&&h.suspense||Mn)return p().then(g=>()=>Nr(g,h)).catch(g=>(y(g),()=>r?ye(r,{error:g}):null));const E=Te(!1),w=Te(),b=Te(!!o);return o&&setTimeout(()=>{b.value=!1},o),i!=null&&setTimeout(()=>{if(!E.value&&!w.value){const g=new Error(`Async component timed out after ${i}ms.`);y(g),w.value=g}},i),p().then(()=>{E.value=!0,h.parent&&Er(h.parent.vnode)&&h.parent.update()}).catch(g=>{y(g),w.value=g}),()=>{if(E.value&&c)return Nr(c,h);if(w.value&&r)return ye(r,{error:w.value});if(n&&!b.value)return Nr(n,h)}}})}function Nr(e,t){const{ref:n,props:r,children:o,ce:s}=t.vnode,i=ye(e,r,o);return i.ref=n,i.ce=s,delete t.vnode.ce,i}const Er=e=>e.type.__isKeepAlive,gd={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=Ue(),r=n.ctx;if(!r.renderer)return()=>{const b=t.default&&t.default();return b&&b.length===1?b[0]:b};const o=new Map,s=new Set;let i=null;const l=n.suspense,{renderer:{p:a,m:u,um:c,o:{createElement:f}}}=r,d=f("div");r.activate=(b,g,_,S,T)=>{const C=b.component;u(b,g,_,0,l),a(C.vnode,b,g,_,C,l,S,b.slotScopeIds,T),Ee(()=>{C.isDeactivated=!1,C.a&&tr(C.a);const N=b.props&&b.props.onVnodeMounted;N&&We(N,C.parent,b)},l)},r.deactivate=b=>{const g=b.component;ro(g.m),ro(g.a),u(b,d,null,1,l),Ee(()=>{g.da&&tr(g.da);const _=b.props&&b.props.onVnodeUnmounted;_&&We(_,g.parent,b),g.isDeactivated=!0},l)};function p(b){$o(b),c(b,n,l,!0)}function h(b){o.forEach((g,_)=>{const S=ws(It(g)?g.type.__asyncResolved||{}:g.type);S&&!b(S)&&y(_)})}function y(b){const g=o.get(b);g&&(!i||!it(g,i))?p(g):i&&$o(i),o.delete(b),s.delete(b)}Ne(()=>[e.include,e.exclude],([b,g])=>{b&&h(_=>Zn(b,_)),g&&h(_=>!Zn(g,_))},{flush:"post",deep:!0});let E=null;const w=()=>{E!=null&&(oo(n.subTree.type)?Ee(()=>{o.set(E,Mr(n.subTree))},n.subTree.suspense):o.set(E,Mr(n.subTree)))};return Bn(w),ei(w),$n(()=>{o.forEach(b=>{const{subTree:g,suspense:_}=n,S=Mr(g);if(b.type===S.type&&b.key===S.key){$o(S);const T=S.component.da;T&&Ee(T,_);return}p(b)})}),()=>{if(E=null,!t.default)return i=null;const b=t.default(),g=b[0];if(b.length>1)return i=null,b;if(!dn(g)||!(g.shapeFlag&4)&&!(g.shapeFlag&128))return i=null,g;let _=Mr(g);if(_.type===Se)return i=null,_;const S=_.type,T=ws(It(_)?_.type.__asyncResolved||{}:S),{include:C,exclude:N,max:O}=e;if(C&&(!T||!Zn(C,T))||N&&T&&Zn(N,T))return _.shapeFlag&=-257,i=_,g;const k=_.key==null?S:_.key,U=o.get(k);return _.el&&(_=Ht(_),g.shapeFlag&128&&(g.ssContent=_)),E=k,U?(_.el=U.el,_.component=U.component,_.transition&&In(_,_.transition),_.shapeFlag|=512,s.delete(k),s.add(k)):(s.add(k),O&&s.size>parseInt(O,10)&&y(s.values().next().value)),_.shapeFlag|=256,i=_,oo(g.type)?g:_}}},md=gd;function Zn(e,t){return Q(e)?e.some(n=>Zn(n,t)):pe(e)?e.split(",").includes(t):cf(e)?(e.lastIndex=0,e.test(t)):!1}function oc(e,t){ic(e,"a",t)}function sc(e,t){ic(e,"da",t)}function ic(e,t,n=Ie){const r=e.__wdc||(e.__wdc=()=>{let o=n;for(;o;){if(o.isDeactivated)return;o=o.parent}return e()});if(Ro(t,r,n),n){let o=n.parent;for(;o&&o.parent;)Er(o.parent.vnode)&&yd(r,t,n,o),o=o.parent}}function yd(e,t,n,r){const o=Ro(t,e,r,!0);St(()=>{Ks(r[t],o)},n)}function $o(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function Mr(e){return e.shapeFlag&128?e.ssContent:e}function Ro(e,t,n=Ie,r=!1){if(n){const o=n[e]||(n[e]=[]),s=t.__weh||(t.__weh=(...i)=>{Mt();const l=Sr(n),a=ut(t,n,e,i);return l(),Lt(),a});return r?o.unshift(s):o.push(s),s}}const jt=e=>(t,n=Ie)=>{(!Mn||e==="sp")&&Ro(e,(...r)=>t(...r),n)},_d=jt("bm"),Bn=jt("m"),vd=jt("bu"),ei=jt("u"),$n=jt("bum"),St=jt("um"),bd=jt("sp"),wd=jt("rtg"),Ed=jt("rtc");function lc(e,t=Ie){Ro("ec",e,t)}const ac="components";function sb(e,t){return uc(ac,e,!0,t)||e}const cc=Symbol.for("v-ndc");function Sd(e){return pe(e)?uc(ac,e,!1)||e:e||cc}function uc(e,t,n=!0,r=!1){const o=Be||Ie;if(o){const s=o.type;{const l=ws(s,!1);if(l&&(l===t||l===$e(t)||l===yo($e(t))))return s}const i=Fi(o[e]||s[e],t)||Fi(o.appContext[e],t);return!i&&r?s:i}}function Fi(e,t){return e&&(e[t]||e[$e(t)]||e[yo($e(t))])}function ib(e,t,n,r){let o;const s=n,i=Q(e);if(i||pe(e)){const l=i&&Kt(e);let a=!1,u=!1;l&&(a=!Qe(e),u=wt(e),e=Eo(e)),o=new Array(e.length);for(let c=0,f=e.length;c<f;c++)o[c]=t(a?u?On(ct(e[c])):ct(e[c]):e[c],c,void 0,s)}else if(typeof e=="number"){o=new Array(e);for(let l=0;l<e;l++)o[l]=t(l+1,l,void 0,s)}else if(se(e))if(e[Symbol.iterator])o=Array.from(e,(l,a)=>t(l,a,void 0,s));else{const l=Object.keys(e);o=new Array(l.length);for(let a=0,u=l.length;a<u;a++){const c=l[a];o[a]=t(e[c],c,a,s)}}else o=[];return o}function ti(e,t,n={},r,o){if(Be.ce||Be.parent&&It(Be.parent)&&Be.parent.ce){const u=Object.keys(n).length>0;return t!=="default"&&(n.name=t),Ke(),tt(He,null,[ye("slot",n,r&&r())],u?-2:64)}let s=e[t];s&&s._c&&(s._d=!1),Ke();const i=s&&fc(s(n)),l=n.key||i&&i.key,a=tt(He,{key:(l&&!Ye(l)?l:`_${t}`)+(!i&&r?"_fb":"")},i||(r?r():[]),i&&e._===1?64:-2);return a.scopeId&&(a.slotScopeIds=[a.scopeId+"-s"]),s&&s._c&&(s._d=!0),a}function fc(e){return e.some(t=>dn(t)?!(t.type===Se||t.type===He&&!fc(t.children)):!0)?e:null}function lb(e,t){const n={};for(const r in e)n[Br(r)]=e[r];return n}const ds=e=>e?jc(e)?ai(e):ds(e.parent):null,or=Pe(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=>ds(e.parent),$root:e=>ds(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>pc(e),$forceUpdate:e=>e.f||(e.f=()=>{Ys(e.update)}),$nextTick:e=>e.n||(e.n=Et.bind(e.proxy)),$watch:e=>rd.bind(e)}),Uo=(e,t)=>e!==ce&&!e.__isScriptSetup&&le(e,t),Td={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:r,data:o,props:s,accessCache:i,type:l,appContext:a}=e;if(t[0]!=="$"){const d=i[t];if(d!==void 0)switch(d){case 1:return r[t];case 2:return o[t];case 4:return n[t];case 3:return s[t]}else{if(Uo(r,t))return i[t]=1,r[t];if(o!==ce&&le(o,t))return i[t]=2,o[t];if(le(s,t))return i[t]=3,s[t];if(n!==ce&&le(n,t))return i[t]=4,n[t];hs&&(i[t]=0)}}const u=or[t];let c,f;if(u)return t==="$attrs"&&Le(e.attrs,"get",""),u(e);if((c=l.__cssModules)&&(c=c[t]))return c;if(n!==ce&&le(n,t))return i[t]=4,n[t];if(f=a.config.globalProperties,le(f,t))return f[t]},set({_:e},t,n){const{data:r,setupState:o,ctx:s}=e;return Uo(o,t)?(o[t]=n,!0):r!==ce&&le(r,t)?(r[t]=n,!0):le(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(s[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:o,props:s,type:i}},l){let a;return!!(n[l]||e!==ce&&l[0]!=="$"&&le(e,l)||Uo(t,l)||le(s,l)||le(r,l)||le(or,l)||le(o.config.globalProperties,l)||(a=i.__cssModules)&&a[l])},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:le(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function ps(e){return Q(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}function ab(e,t){const n=ps(e);for(const r in t){if(r.startsWith("__skip"))continue;let o=n[r];o?Q(o)||X(o)?o=n[r]={type:o,default:t[r]}:o.default=t[r]:o===null&&(o=n[r]={default:t[r]}),o&&t[`__skip_${r}`]&&(o.skipFactory=!0)}return n}let hs=!0;function Ad(e){const t=pc(e),n=e.proxy,r=e.ctx;hs=!1,t.beforeCreate&&Di(t.beforeCreate,e,"bc");const{data:o,computed:s,methods:i,watch:l,provide:a,inject:u,created:c,beforeMount:f,mounted:d,beforeUpdate:p,updated:h,activated:y,deactivated:E,beforeDestroy:w,beforeUnmount:b,destroyed:g,unmounted:_,render:S,renderTracked:T,renderTriggered:C,errorCaptured:N,serverPrefetch:O,expose:k,inheritAttrs:U,components:R,directives:H,filters:D}=t;if(u&&Cd(u,r,null),i)for(const Z in i){const K=i[Z];X(K)&&(r[Z]=K.bind(n))}if(o){const Z=o.call(n,n);se(Z)&&(e.data=nt(Z))}if(hs=!0,s)for(const Z in s){const K=s[Z],ue=X(K)?K.bind(n,n):X(K.get)?K.get.bind(n,n):bt,Ft=!X(K)&&X(K.set)?K.set.bind(n):bt,dt=ge({get:ue,set:Ft});Object.defineProperty(r,Z,{enumerable:!0,configurable:!0,get:()=>dt.value,set:Ve=>dt.value=Ve})}if(l)for(const Z in l)dc(l[Z],r,n,Z);if(a){const Z=X(a)?a.call(n):a;Reflect.ownKeys(Z).forEach(K=>{at(K,Z[K])})}c&&Di(c,e,"c");function F(Z,K){Q(K)?K.forEach(ue=>Z(ue.bind(n))):K&&Z(K.bind(n))}if(F(_d,f),F(Bn,d),F(vd,p),F(ei,h),F(oc,y),F(sc,E),F(lc,N),F(Ed,T),F(wd,C),F($n,b),F(St,_),F(bd,O),Q(k))if(k.length){const Z=e.exposed||(e.exposed={});k.forEach(K=>{Object.defineProperty(Z,K,{get:()=>n[K],set:ue=>n[K]=ue,enumerable:!0})})}else e.exposed||(e.exposed={});S&&e.render===bt&&(e.render=S),U!=null&&(e.inheritAttrs=U),R&&(e.components=R),H&&(e.directives=H),O&&Zs(e)}function Cd(e,t,n=bt){Q(e)&&(e=gs(e));for(const r in e){const o=e[r];let s;se(o)?"default"in o?s=be(o.from||r,o.default,!0):s=be(o.from||r):s=be(o),me(s)?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>s.value,set:i=>s.value=i}):t[r]=s}}function Di(e,t,n){ut(Q(e)?e.map(r=>r.bind(t.proxy)):e.bind(t.proxy),t,n)}function dc(e,t,n,r){let o=r.includes(".")?Qa(n,r):()=>n[r];if(pe(e)){const s=t[e];X(s)&&Ne(o,s)}else if(X(e))Ne(o,e.bind(n));else if(se(e))if(Q(e))e.forEach(s=>dc(s,t,n,r));else{const s=X(e.handler)?e.handler.bind(n):t[e.handler];X(s)&&Ne(o,s,e)}}function pc(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:o,optionsCache:s,config:{optionMergeStrategies:i}}=e.appContext,l=s.get(t);let a;return l?a=l:!o.length&&!n&&!r?a=t:(a={},o.length&&o.forEach(u=>no(a,u,i,!0)),no(a,t,i)),se(t)&&s.set(t,a),a}function no(e,t,n,r=!1){const{mixins:o,extends:s}=t;s&&no(e,s,n,!0),o&&o.forEach(i=>no(e,i,n,!0));for(const i in t)if(!(r&&i==="expose")){const l=Rd[i]||n&&n[i];e[i]=l?l(e[i],t[i]):t[i]}return e}const Rd={data:Bi,props:$i,emits:$i,methods:er,computed:er,beforeCreate:je,created:je,beforeMount:je,mounted:je,beforeUpdate:je,updated:je,beforeDestroy:je,beforeUnmount:je,destroyed:je,unmounted:je,activated:je,deactivated:je,errorCaptured:je,serverPrefetch:je,components:er,directives:er,watch:Pd,provide:Bi,inject:xd};function Bi(e,t){return t?e?function(){return Pe(X(e)?e.call(this,this):e,X(t)?t.call(this,this):t)}:t:e}function xd(e,t){return er(gs(e),gs(t))}function gs(e){if(Q(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function je(e,t){return e?[...new Set([].concat(e,t))]:t}function er(e,t){return e?Pe(Object.create(null),e,t):t}function $i(e,t){return e?Q(e)&&Q(t)?[...new Set([...e,...t])]:Pe(Object.create(null),ps(e),ps(t??{})):t}function Pd(e,t){if(!e)return t;if(!t)return e;const n=Pe(Object.create(null),e);for(const r in t)n[r]=je(e[r],t[r]);return n}function hc(){return{app:null,config:{isNativeTag:da,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let kd=0;function Od(e,t){return function(r,o=null){X(r)||(r=Pe({},r)),o!=null&&!se(o)&&(o=null);const s=hc(),i=new WeakSet,l=[];let a=!1;const u=s.app={_uid:kd++,_component:r,_props:o,_container:null,_context:s,_instance:null,version:up,get config(){return s.config},set config(c){},use(c,...f){return i.has(c)||(c&&X(c.install)?(i.add(c),c.install(u,...f)):X(c)&&(i.add(c),c(u,...f))),u},mixin(c){return s.mixins.includes(c)||s.mixins.push(c),u},component(c,f){return f?(s.components[c]=f,u):s.components[c]},directive(c,f){return f?(s.directives[c]=f,u):s.directives[c]},mount(c,f,d){if(!a){const p=u._ceVNode||ye(r,o);return p.appContext=s,d===!0?d="svg":d===!1&&(d=void 0),f&&t?t(p,c):e(p,c,d),a=!0,u._container=c,c.__vue_app__=u,ai(p.component)}},onUnmount(c){l.push(c)},unmount(){a&&(ut(l,u._instance,16),e(null,u._container),delete u._container.__vue_app__)},provide(c,f){return s.provides[c]=f,u},runWithContext(c){const f=an;an=u;try{return c()}finally{an=f}}};return u}}let an=null;const Id=(e,t)=>t==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${$e(t)}Modifiers`]||e[`${qt(t)}Modifiers`];function Nd(e,t,...n){if(e.isUnmounted)return;const r=e.vnode.props||ce;let o=n;const s=t.startsWith("update:"),i=s&&Id(r,t.slice(7));i&&(i.trim&&(o=n.map(c=>pe(c)?c.trim():c)),i.number&&(o=n.map(pf)));let l,a=r[l=Br(t)]||r[l=Br($e(t))];!a&&s&&(a=r[l=Br(qt(t))]),a&&ut(a,e,6,o);const u=r[l+"Once"];if(u){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,ut(u,e,6,o)}}const Md=new WeakMap;function gc(e,t,n=!1){const r=n?Md:t.emitsCache,o=r.get(e);if(o!==void 0)return o;const s=e.emits;let i={},l=!1;if(!X(e)){const a=u=>{const c=gc(u,t,!0);c&&(l=!0,Pe(i,c))};!n&&t.mixins.length&&t.mixins.forEach(a),e.extends&&a(e.extends),e.mixins&&e.mixins.forEach(a)}return!s&&!l?(se(e)&&r.set(e,null),null):(Q(s)?s.forEach(a=>i[a]=null):Pe(i,s),se(e)&&r.set(e,i),i)}function xo(e,t){return!e||!vr(t)?!1:(t=t.slice(2).replace(/Once$/,""),le(e,t[0].toLowerCase()+t.slice(1))||le(e,qt(t))||le(e,t))}function Vo(e){const{type:t,vnode:n,proxy:r,withProxy:o,propsOptions:[s],slots:i,attrs:l,emit:a,render:u,renderCache:c,props:f,data:d,setupState:p,ctx:h,inheritAttrs:y}=e,E=Zr(e);let w,b;try{if(n.shapeFlag&4){const _=o||r,S=_;w=Je(u.call(S,_,c,f,p,d,h)),b=l}else{const _=t;w=Je(_.length>1?_(f,{attrs:l,slots:i,emit:a}):_(f,null)),b=t.props?l:Hd(l)}}catch(_){sr.length=0,Fn(_,e,1),w=ye(Se)}let g=w;if(b&&y!==!1){const _=Object.keys(b),{shapeFlag:S}=g;_.length&&S&7&&(s&&_.some(ho)&&(b=jd(b,s)),g=Ht(g,b,!1,!0))}return n.dirs&&(g=Ht(g,null,!1,!0),g.dirs=g.dirs?g.dirs.concat(n.dirs):n.dirs),n.transition&&In(g,n.transition),w=g,Zr(E),w}function Ld(e,t=!0){let n;for(let r=0;r<e.length;r++){const o=e[r];if(dn(o)){if(o.type!==Se||o.children==="v-if"){if(n)return;n=o}}else return}return n}const Hd=e=>{let t;for(const n in e)(n==="class"||n==="style"||vr(n))&&((t||(t={}))[n]=e[n]);return t},jd=(e,t)=>{const n={};for(const r in e)(!ho(r)||!(r.slice(9)in t))&&(n[r]=e[r]);return n};function Fd(e,t,n){const{props:r,children:o,component:s}=e,{props:i,children:l,patchFlag:a}=t,u=s.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&a>=0){if(a&1024)return!0;if(a&16)return r?Ui(r,i,u):!!i;if(a&8){const c=t.dynamicProps;for(let f=0;f<c.length;f++){const d=c[f];if(mc(i,r,d)&&!xo(u,d))return!0}}}else return(o||l)&&(!l||!l.$stable)?!0:r===i?!1:r?i?Ui(r,i,u):!0:!!i;return!1}function Ui(e,t,n){const r=Object.keys(t);if(r.length!==Object.keys(e).length)return!0;for(let o=0;o<r.length;o++){const s=r[o];if(mc(t,e,s)&&!xo(n,s))return!0}return!1}function mc(e,t,n){const r=e[n],o=t[n];return n==="style"&&se(r)&&se(o)?!Gs(r,o):r!==o}function Po({vnode:e,parent:t,suspense:n},r){for(;t;){const o=t.subTree;if(o.suspense&&o.suspense.activeBranch===e&&(o.suspense.vnode.el=o.el=r,e=o),o===e)(e=t.vnode).el=r,t=t.parent;else break}n&&n.activeBranch===e&&(n.vnode.el=r)}const yc={},_c=()=>Object.create(yc),vc=e=>Object.getPrototypeOf(e)===yc;function Dd(e,t,n,r=!1){const o={},s=_c();e.propsDefaults=Object.create(null),bc(e,t,o,s);for(const i in e.propsOptions[0])i in o||(o[i]=void 0);n?e.props=r?o:st(o):e.type.props?e.props=o:e.props=s,e.attrs=s}function Bd(e,t,n,r){const{props:o,attrs:s,vnode:{patchFlag:i}}=e,l=re(o),[a]=e.propsOptions;let u=!1;if((r||i>0)&&!(i&16)){if(i&8){const c=e.vnode.dynamicProps;for(let f=0;f<c.length;f++){let d=c[f];if(xo(e.emitsOptions,d))continue;const p=t[d];if(a)if(le(s,d))p!==s[d]&&(s[d]=p,u=!0);else{const h=$e(d);o[h]=ms(a,l,h,p,e,!1)}else p!==s[d]&&(s[d]=p,u=!0)}}}else{bc(e,t,o,s)&&(u=!0);let c;for(const f in l)(!t||!le(t,f)&&((c=qt(f))===f||!le(t,c)))&&(a?n&&(n[f]!==void 0||n[c]!==void 0)&&(o[f]=ms(a,l,f,void 0,e,!0)):delete o[f]);if(s!==l)for(const f in s)(!t||!le(t,f))&&(delete s[f],u=!0)}u&&kt(e.attrs,"set","")}function bc(e,t,n,r){const[o,s]=e.propsOptions;let i=!1,l;if(t)for(let a in t){if(on(a))continue;const u=t[a];let c;o&&le(o,c=$e(a))?!s||!s.includes(c)?n[c]=u:(l||(l={}))[c]=u:xo(e.emitsOptions,a)||(!(a in r)||u!==r[a])&&(r[a]=u,i=!0)}if(s){const a=re(n),u=l||ce;for(let c=0;c<s.length;c++){const f=s[c];n[f]=ms(o,a,f,u[f],e,!le(u,f))}}return i}function ms(e,t,n,r,o,s){const i=e[n];if(i!=null){const l=le(i,"default");if(l&&r===void 0){const a=i.default;if(i.type!==Function&&!i.skipFactory&&X(a)){const{propsDefaults:u}=o;if(n in u)r=u[n];else{const c=Sr(o);r=u[n]=a.call(null,t),c()}}else r=a;o.ce&&o.ce._setProp(n,r)}i[0]&&(s&&!l?r=!1:i[1]&&(r===""||r===qt(n))&&(r=!0))}return r}const $d=new WeakMap;function wc(e,t,n=!1){const r=n?$d:t.propsCache,o=r.get(e);if(o)return o;const s=e.props,i={},l=[];let a=!1;if(!X(e)){const c=f=>{a=!0;const[d,p]=wc(f,t,!0);Pe(i,d),p&&l.push(...p)};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}if(!s&&!a)return se(e)&&r.set(e,Tn),Tn;if(Q(s))for(let c=0;c<s.length;c++){const f=$e(s[c]);Vi(f)&&(i[f]=ce)}else if(s)for(const c in s){const f=$e(c);if(Vi(f)){const d=s[c],p=i[f]=Q(d)||X(d)?{type:d}:Pe({},d),h=p.type;let y=!1,E=!0;if(Q(h))for(let w=0;w<h.length;++w){const b=h[w],g=X(b)&&b.name;if(g==="Boolean"){y=!0;break}else g==="String"&&(E=!1)}else y=X(h)&&h.name==="Boolean";p[0]=y,p[1]=E,(y||le(p,"default"))&&l.push(f)}}const u=[i,l];return se(e)&&r.set(e,u),u}function Vi(e){return e[0]!=="$"&&!on(e)}const ni=e=>e==="_"||e==="_ctx"||e==="$stable",ri=e=>Q(e)?e.map(Je):[Je(e)],Ud=(e,t,n)=>{if(t._n)return t;const r=ln((...o)=>ri(t(...o)),n);return r._c=!1,r},Ec=(e,t,n)=>{const r=e._ctx;for(const o in e){if(ni(o))continue;const s=e[o];if(X(s))t[o]=Ud(o,s,r);else if(s!=null){const i=ri(s);t[o]=()=>i}}},Sc=(e,t)=>{const n=ri(t);e.slots.default=()=>n},Tc=(e,t,n)=>{for(const r in t)(n||!ni(r))&&(e[r]=t[r])},Vd=(e,t,n)=>{const r=e.slots=_c();if(e.vnode.shapeFlag&32){const o=t._;o?(Tc(r,t,n),n&&ya(r,"_",o,!0)):Ec(t,r)}else t&&Sc(e,t)},Wd=(e,t,n)=>{const{vnode:r,slots:o}=e;let s=!0,i=ce;if(r.shapeFlag&32){const l=t._;l?n&&l===1?s=!1:Tc(o,t,n):(s=!t.$stable,Ec(t,o)),i=t}else t&&(Sc(e,t),i={default:1});if(s)for(const l in o)!ni(l)&&i[l]==null&&delete o[l]},Ee=kc;function Kd(e){return Ac(e)}function Gd(e){return Ac(e,dd)}function Ac(e,t){const n=_o();n.__VUE__=!0;const{insert:r,remove:o,patchProp:s,createElement:i,createText:l,createComment:a,setText:u,setElementText:c,parentNode:f,nextSibling:d,setScopeId:p=bt,insertStaticContent:h}=e,y=(m,v,A,I=null,x=null,M=null,$=void 0,B=null,j=!!v.dynamicChildren)=>{if(m===v)return;m&&!it(m,v)&&(I=P(m),Ve(m,x,M,!0),m=null),v.patchFlag===-2&&(j=!1,v.dynamicChildren=null);const{type:L,ref:Y,shapeFlag:W}=v;switch(L){case cn:E(m,v,A,I);break;case Se:w(m,v,A,I);break;case $r:m==null&&b(v,A,I,$);break;case He:R(m,v,A,I,x,M,$,B,j);break;default:W&1?S(m,v,A,I,x,M,$,B,j):W&6?H(m,v,A,I,x,M,$,B,j):(W&64||W&128)&&L.process(m,v,A,I,x,M,$,B,j,J)}Y!=null&&x?Rn(Y,m&&m.ref,M,v||m,!v):Y==null&&m&&m.ref!=null&&Rn(m.ref,null,M,m,!0)},E=(m,v,A,I)=>{if(m==null)r(v.el=l(v.children),A,I);else{const x=v.el=m.el;v.children!==m.children&&u(x,v.children)}},w=(m,v,A,I)=>{m==null?r(v.el=a(v.children||""),A,I):v.el=m.el},b=(m,v,A,I)=>{[m.el,m.anchor]=h(m.children,v,A,I,m.el,m.anchor)},g=({el:m,anchor:v},A,I)=>{let x;for(;m&&m!==v;)x=d(m),r(m,A,I),m=x;r(v,A,I)},_=({el:m,anchor:v})=>{let A;for(;m&&m!==v;)A=d(m),o(m),m=A;o(v)},S=(m,v,A,I,x,M,$,B,j)=>{if(v.type==="svg"?$="svg":v.type==="math"&&($="mathml"),m==null)T(v,A,I,x,M,$,B,j);else{const L=m.el&&m.el._isVueCE?m.el:null;try{L&&L._beginPatch(),O(m,v,x,M,$,B,j)}finally{L&&L._endPatch()}}},T=(m,v,A,I,x,M,$,B)=>{let j,L;const{props:Y,shapeFlag:W,transition:q,dirs:ee}=m;if(j=m.el=i(m.type,M,Y&&Y.is,Y),W&8?c(j,m.children):W&16&&N(m.children,j,null,I,x,Wo(m,M),$,B),ee&>(m,null,I,"created"),C(j,m,m.scopeId,$,I),Y){for(const ae in Y)ae!=="value"&&!on(ae)&&s(j,ae,null,Y[ae],M,I);"value"in Y&&s(j,"value",null,Y.value,M),(L=Y.onVnodeBeforeMount)&&We(L,I,m)}ee&>(m,null,I,"beforeMount");const ne=Cc(x,q);ne&&q.beforeEnter(j),r(j,v,A),((L=Y&&Y.onVnodeMounted)||ne||ee)&&Ee(()=>{L&&We(L,I,m),ne&&q.enter(j),ee&>(m,null,I,"mounted")},x)},C=(m,v,A,I,x)=>{if(A&&p(m,A),I)for(let M=0;M<I.length;M++)p(m,I[M]);if(x){let M=x.subTree;if(v===M||oo(M.type)&&(M.ssContent===v||M.ssFallback===v)){const $=x.vnode;C(m,$,$.scopeId,$.slotScopeIds,x.parent)}}},N=(m,v,A,I,x,M,$,B,j=0)=>{for(let L=j;L<m.length;L++){const Y=m[L]=B?Pt(m[L]):Je(m[L]);y(null,Y,v,A,I,x,M,$,B)}},O=(m,v,A,I,x,M,$)=>{const B=v.el=m.el;let{patchFlag:j,dynamicChildren:L,dirs:Y}=v;j|=m.patchFlag&16;const W=m.props||ce,q=v.props||ce;let ee;if(A&&Qt(A,!1),(ee=q.onVnodeBeforeUpdate)&&We(ee,A,v,m),Y&>(v,m,A,"beforeUpdate"),A&&Qt(A,!0),(W.innerHTML&&q.innerHTML==null||W.textContent&&q.textContent==null)&&c(B,""),L?k(m.dynamicChildren,L,B,A,I,Wo(v,x),M):$||K(m,v,B,null,A,I,Wo(v,x),M,!1),j>0){if(j&16)U(B,W,q,A,x);else if(j&2&&W.class!==q.class&&s(B,"class",null,q.class,x),j&4&&s(B,"style",W.style,q.style,x),j&8){const ne=v.dynamicProps;for(let ae=0;ae<ne.length;ae++){const fe=ne[ae],we=W[fe],Ce=q[fe];(Ce!==we||fe==="value")&&s(B,fe,we,Ce,x,A)}}j&1&&m.children!==v.children&&c(B,v.children)}else!$&&L==null&&U(B,W,q,A,x);((ee=q.onVnodeUpdated)||Y)&&Ee(()=>{ee&&We(ee,A,v,m),Y&>(v,m,A,"updated")},I)},k=(m,v,A,I,x,M,$)=>{for(let B=0;B<v.length;B++){const j=m[B],L=v[B],Y=j.el&&(j.type===He||!it(j,L)||j.shapeFlag&198)?f(j.el):A;y(j,L,Y,null,I,x,M,$,!0)}},U=(m,v,A,I,x)=>{if(v!==A){if(v!==ce)for(const M in v)!on(M)&&!(M in A)&&s(m,M,v[M],null,x,I);for(const M in A){if(on(M))continue;const $=A[M],B=v[M];$!==B&&M!=="value"&&s(m,M,B,$,x,I)}"value"in A&&s(m,"value",v.value,A.value,x)}},R=(m,v,A,I,x,M,$,B,j)=>{const L=v.el=m?m.el:l(""),Y=v.anchor=m?m.anchor:l("");let{patchFlag:W,dynamicChildren:q,slotScopeIds:ee}=v;ee&&(B=B?B.concat(ee):ee),m==null?(r(L,A,I),r(Y,A,I),N(v.children||[],A,Y,x,M,$,B,j)):W>0&&W&64&&q&&m.dynamicChildren&&m.dynamicChildren.length===q.length?(k(m.dynamicChildren,q,A,x,M,$,B),(v.key!=null||x&&v===x.subTree)&&oi(m,v,!0)):K(m,v,A,Y,x,M,$,B,j)},H=(m,v,A,I,x,M,$,B,j)=>{v.slotScopeIds=B,m==null?v.shapeFlag&512?x.ctx.activate(v,A,I,$,j):D(v,A,I,x,M,$,j):z(m,v,j)},D=(m,v,A,I,x,M,$)=>{const B=m.component=op(m,I,x);if(Er(m)&&(B.ctx.renderer=J),sp(B,!1,$),B.asyncDep){if(x&&x.registerDep(B,F,$),!m.el){const j=B.subTree=ye(Se);w(null,j,v,A),m.placeholder=j.el}}else F(B,m,v,A,x,M,$)},z=(m,v,A)=>{const I=v.component=m.component;if(Fd(m,v,A))if(I.asyncDep&&!I.asyncResolved){Z(I,v,A);return}else I.next=v,I.update();else v.el=m.el,I.vnode=v},F=(m,v,A,I,x,M,$)=>{const B=()=>{if(m.isMounted){let{next:W,bu:q,u:ee,parent:ne,vnode:ae}=m;{const qe=Rc(m);if(qe){W&&(W.el=ae.el,Z(m,W,$)),qe.asyncDep.then(()=>{Ee(()=>{m.isUnmounted||L()},x)});return}}let fe=W,we;Qt(m,!1),W?(W.el=ae.el,Z(m,W,$)):W=ae,q&&tr(q),(we=W.props&&W.props.onVnodeBeforeUpdate)&&We(we,ne,W,ae),Qt(m,!0);const Ce=Vo(m),ot=m.subTree;m.subTree=Ce,y(ot,Ce,f(ot.el),P(ot),m,x,M),W.el=Ce.el,fe===null&&Po(m,Ce.el),ee&&Ee(ee,x),(we=W.props&&W.props.onVnodeUpdated)&&Ee(()=>We(we,ne,W,ae),x)}else{let W;const{el:q,props:ee}=v,{bm:ne,m:ae,parent:fe,root:we,type:Ce}=m,ot=It(v);if(Qt(m,!1),ne&&tr(ne),!ot&&(W=ee&&ee.onVnodeBeforeMount)&&We(W,fe,v),Qt(m,!0),q&&he){const qe=()=>{m.subTree=Vo(m),he(q,m.subTree,m,x,null)};ot&&Ce.__asyncHydrate?Ce.__asyncHydrate(q,m,qe):qe()}else{we.ce&&we.ce._hasShadowRoot()&&we.ce._injectChildStyle(Ce,m.parent?m.parent.type:void 0);const qe=m.subTree=Vo(m);y(null,qe,A,I,m,x,M),v.el=qe.el}if(ae&&Ee(ae,x),!ot&&(W=ee&&ee.onVnodeMounted)){const qe=v;Ee(()=>We(W,fe,qe),x)}(v.shapeFlag&256||fe&&It(fe.vnode)&&fe.vnode.shapeFlag&256)&&m.a&&Ee(m.a,x),m.isMounted=!0,v=A=I=null}};m.scope.on();const j=m.effect=new Ta(B);m.scope.off();const L=m.update=j.run.bind(j),Y=m.job=j.runIfDirty.bind(j);Y.i=m,Y.id=m.uid,j.scheduler=()=>Ys(Y),Qt(m,!0),L()},Z=(m,v,A)=>{v.component=m;const I=m.vnode.props;m.vnode=v,m.next=null,Bd(m,v.props,I,A),Wd(m,v.children,A),Mt(),ki(m),Lt()},K=(m,v,A,I,x,M,$,B,j=!1)=>{const L=m&&m.children,Y=m?m.shapeFlag:0,W=v.children,{patchFlag:q,shapeFlag:ee}=v;if(q>0){if(q&128){Ft(L,W,A,I,x,M,$,B,j);return}else if(q&256){ue(L,W,A,I,x,M,$,B,j);return}}ee&8?(Y&16&&Xe(L,x,M),W!==L&&c(A,W)):Y&16?ee&16?Ft(L,W,A,I,x,M,$,B,j):Xe(L,x,M,!0):(Y&8&&c(A,""),ee&16&&N(W,A,I,x,M,$,B,j))},ue=(m,v,A,I,x,M,$,B,j)=>{m=m||Tn,v=v||Tn;const L=m.length,Y=v.length,W=Math.min(L,Y);let q;for(q=0;q<W;q++){const ee=v[q]=j?Pt(v[q]):Je(v[q]);y(m[q],ee,A,null,x,M,$,B,j)}L>Y?Xe(m,x,M,!0,!1,W):N(v,A,I,x,M,$,B,j,W)},Ft=(m,v,A,I,x,M,$,B,j)=>{let L=0;const Y=v.length;let W=m.length-1,q=Y-1;for(;L<=W&&L<=q;){const ee=m[L],ne=v[L]=j?Pt(v[L]):Je(v[L]);if(it(ee,ne))y(ee,ne,A,null,x,M,$,B,j);else break;L++}for(;L<=W&&L<=q;){const ee=m[W],ne=v[q]=j?Pt(v[q]):Je(v[q]);if(it(ee,ne))y(ee,ne,A,null,x,M,$,B,j);else break;W--,q--}if(L>W){if(L<=q){const ee=q+1,ne=ee<Y?v[ee].el:I;for(;L<=q;)y(null,v[L]=j?Pt(v[L]):Je(v[L]),A,ne,x,M,$,B,j),L++}}else if(L>q)for(;L<=W;)Ve(m[L],x,M,!0),L++;else{const ee=L,ne=L,ae=new Map;for(L=ne;L<=q;L++){const ze=v[L]=j?Pt(v[L]):Je(v[L]);ze.key!=null&&ae.set(ze.key,L)}let fe,we=0;const Ce=q-ne+1;let ot=!1,qe=0;const Wn=new Array(Ce);for(L=0;L<Ce;L++)Wn[L]=0;for(L=ee;L<=W;L++){const ze=m[L];if(we>=Ce){Ve(ze,x,M,!0);continue}let pt;if(ze.key!=null)pt=ae.get(ze.key);else for(fe=ne;fe<=q;fe++)if(Wn[fe-ne]===0&&it(ze,v[fe])){pt=fe;break}pt===void 0?Ve(ze,x,M,!0):(Wn[pt-ne]=L+1,pt>=qe?qe=pt:ot=!0,y(ze,v[pt],A,null,x,M,$,B,j),we++)}const Si=ot?qd(Wn):Tn;for(fe=Si.length-1,L=Ce-1;L>=0;L--){const ze=ne+L,pt=v[ze],Ti=v[ze+1],Ai=ze+1<Y?Ti.el||xc(Ti):I;Wn[L]===0?y(null,pt,A,Ai,x,M,$,B,j):ot&&(fe<0||L!==Si[fe]?dt(pt,A,Ai,2):fe--)}}},dt=(m,v,A,I,x=null)=>{const{el:M,type:$,transition:B,children:j,shapeFlag:L}=m;if(L&6){dt(m.component.subTree,v,A,I);return}if(L&128){m.suspense.move(v,A,I);return}if(L&64){$.move(m,v,A,J);return}if($===He){r(M,v,A);for(let W=0;W<j.length;W++)dt(j[W],v,A,I);r(m.anchor,v,A);return}if($===$r){g(m,v,A);return}if(I!==2&&L&1&&B)if(I===0)B.beforeEnter(M),r(M,v,A),Ee(()=>B.enter(M),x);else{const{leave:W,delayLeave:q,afterLeave:ee}=B,ne=()=>{m.ctx.isUnmounted?o(M):r(M,v,A)},ae=()=>{M._isLeaving&&M[mt](!0),W(M,()=>{ne(),ee&&ee()})};q?q(M,ne,ae):ae()}else r(M,v,A)},Ve=(m,v,A,I=!1,x=!1)=>{const{type:M,props:$,ref:B,children:j,dynamicChildren:L,shapeFlag:Y,patchFlag:W,dirs:q,cacheIndex:ee,memo:ne}=m;if(W===-2&&(x=!1),B!=null&&(Mt(),Rn(B,null,A,m,!0),Lt()),ee!=null&&(v.renderCache[ee]=void 0),Y&256){v.ctx.deactivate(m);return}const ae=Y&1&&q,fe=!It(m);let we;if(fe&&(we=$&&$.onVnodeBeforeUnmount)&&We(we,v,m),Y&6)zt(m.component,A,I);else{if(Y&128){m.suspense.unmount(A,I);return}ae&>(m,null,v,"beforeUnmount"),Y&64?m.type.remove(m,v,A,J,I):L&&!L.hasOnce&&(M!==He||W>0&&W&64)?Xe(L,v,A,!1,!0):(M===He&&W&384||!x&&Y&16)&&Xe(j,v,A),I&&yn(m)}const Ce=ne!=null&&ee==null;(fe&&(we=$&&$.onVnodeUnmounted)||ae||Ce)&&Ee(()=>{we&&We(we,v,m),ae&>(m,null,v,"unmounted"),Ce&&(m.el=null)},A)},yn=m=>{const{type:v,el:A,anchor:I,transition:x}=m;if(v===He){_n(A,I);return}if(v===$r){_(m);return}const M=()=>{o(A),x&&!x.persisted&&x.afterLeave&&x.afterLeave()};if(m.shapeFlag&1&&x&&!x.persisted){const{leave:$,delayLeave:B}=x,j=()=>$(A,M);B?B(m.el,M,j):j()}else M()},_n=(m,v)=>{let A;for(;m!==v;)A=d(m),o(m),m=A;o(v)},zt=(m,v,A)=>{const{bum:I,scope:x,job:M,subTree:$,um:B,m:j,a:L}=m;ro(j),ro(L),I&&tr(I),x.stop(),M&&(M.flags|=8,Ve($,m,v,A)),B&&Ee(B,v),Ee(()=>{m.isUnmounted=!0},v)},Xe=(m,v,A,I=!1,x=!1,M=0)=>{for(let $=M;$<m.length;$++)Ve(m[$],v,A,I,x)},P=m=>{if(m.shapeFlag&6)return P(m.component.subTree);if(m.shapeFlag&128)return m.suspense.next();const v=d(m.anchor||m.el),A=v&&v[Ya];return A?d(A):v};let G=!1;const V=(m,v,A)=>{let I;m==null?v._vnode&&(Ve(v._vnode,null,null,!0),I=v._vnode.component):y(v._vnode||null,m,v,null,null,null,A),v._vnode=m,G||(G=!0,ki(I),Xr(),G=!1)},J={p:y,um:Ve,m:dt,r:yn,mt:D,mc:N,pc:K,pbc:k,n:P,o:e};let te,he;return t&&([te,he]=t(J)),{render:V,hydrate:te,createApp:Od(V,te)}}function Wo({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 Qt({effect:e,job:t},n){n?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function Cc(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function oi(e,t,n=!1){const r=e.children,o=t.children;if(Q(r)&&Q(o))for(let s=0;s<r.length;s++){const i=r[s];let l=o[s];l.shapeFlag&1&&!l.dynamicChildren&&((l.patchFlag<=0||l.patchFlag===32)&&(l=o[s]=Pt(o[s]),l.el=i.el),!n&&l.patchFlag!==-2&&oi(i,l)),l.type===cn&&(l.patchFlag===-1&&(l=o[s]=Pt(l)),l.el=i.el),l.type===Se&&!l.el&&(l.el=i.el)}}function qd(e){const t=e.slice(),n=[0];let r,o,s,i,l;const a=e.length;for(r=0;r<a;r++){const u=e[r];if(u!==0){if(o=n[n.length-1],e[o]<u){t[r]=o,n.push(r);continue}for(s=0,i=n.length-1;s<i;)l=s+i>>1,e[n[l]]<u?s=l+1:i=l;u<e[n[s]]&&(s>0&&(t[r]=n[s-1]),n[s]=r)}}for(s=n.length,i=n[s-1];s-- >0;)n[s]=i,i=t[i];return n}function Rc(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:Rc(t)}function ro(e){if(e)for(let t=0;t<e.length;t++)e[t].flags|=8}function xc(e){if(e.placeholder)return e.placeholder;const t=e.component;return t?xc(t.subTree):null}const oo=e=>e.__isSuspense;let ys=0;const zd={name:"Suspense",__isSuspense:!0,process(e,t,n,r,o,s,i,l,a,u){if(e==null)Jd(t,n,r,o,s,i,l,a,u);else{if(s&&s.deps>0&&!e.suspense.isInFallback){t.suspense=e.suspense,t.suspense.vnode=t,t.el=e.el;return}Qd(e,t,n,r,o,i,l,a,u)}},hydrate:Yd,normalize:Xd},si=zd;function pr(e,t){const n=e.props&&e.props[t];X(n)&&n()}function Jd(e,t,n,r,o,s,i,l,a){const{p:u,o:{createElement:c}}=a,f=c("div"),d=e.suspense=Pc(e,o,r,t,f,n,s,i,l,a);u(null,d.pendingBranch=e.ssContent,f,null,r,d,s,i),d.deps>0?(pr(e,"onPending"),pr(e,"onFallback"),u(null,e.ssFallback,t,n,r,null,s,i),xn(d,e.ssFallback)):d.resolve(!1,!0)}function Qd(e,t,n,r,o,s,i,l,{p:a,um:u,o:{createElement:c}}){const f=t.suspense=e.suspense;f.vnode=t,t.el=e.el;const d=t.ssContent,p=t.ssFallback,{activeBranch:h,pendingBranch:y,isInFallback:E,isHydrating:w}=f;if(y)f.pendingBranch=d,it(y,d)?(a(y,d,f.hiddenContainer,null,o,f,s,i,l),f.deps<=0?f.resolve():E&&(w||(a(h,p,n,r,o,null,s,i,l),xn(f,p)))):(f.pendingId=ys++,w?(f.isHydrating=!1,f.activeBranch=y):u(y,o,f),f.deps=0,f.effects.length=0,f.hiddenContainer=c("div"),E?(a(null,d,f.hiddenContainer,null,o,f,s,i,l),f.deps<=0?f.resolve():(a(h,p,n,r,o,null,s,i,l),xn(f,p))):h&&it(h,d)?(a(h,d,n,r,o,f,s,i,l),f.resolve(!0)):(a(null,d,f.hiddenContainer,null,o,f,s,i,l),f.deps<=0&&f.resolve()));else if(h&&it(h,d))a(h,d,n,r,o,f,s,i,l),xn(f,d);else if(pr(t,"onPending"),f.pendingBranch=d,d.shapeFlag&512?f.pendingId=d.component.suspenseId:f.pendingId=ys++,a(null,d,f.hiddenContainer,null,o,f,s,i,l),f.deps<=0)f.resolve();else{const{timeout:b,pendingId:g}=f;b>0?setTimeout(()=>{f.pendingId===g&&f.fallback(p)},b):b===0&&f.fallback(p)}}function Pc(e,t,n,r,o,s,i,l,a,u,c=!1){const{p:f,m:d,um:p,n:h,o:{parentNode:y,remove:E}}=u;let w;const b=Zd(e);b&&t&&t.pendingBranch&&(w=t.pendingId,t.deps++);const g=e.props?_a(e.props.timeout):void 0,_=s,S={vnode:e,parent:t,parentComponent:n,namespace:i,container:r,hiddenContainer:o,deps:0,pendingId:ys++,timeout:typeof g=="number"?g:-1,activeBranch:null,isFallbackMountPending:!1,pendingBranch:null,isInFallback:!c,isHydrating:c,isUnmounted:!1,effects:[],resolve(T=!1,C=!1){const{vnode:N,activeBranch:O,pendingBranch:k,pendingId:U,effects:R,parentComponent:H,container:D,isInFallback:z}=S;let F=!1;S.isHydrating?S.isHydrating=!1:T||(F=O&&k.transition&&k.transition.mode==="out-in",F&&(O.transition.afterLeave=()=>{U===S.pendingId&&(d(k,D,s===_?h(O):s,0),as(R),z&&N.ssFallback&&(N.ssFallback.el=null))}),O&&!S.isFallbackMountPending&&(y(O.el)===D&&(s=h(O)),p(O,H,S,!0),!F&&z&&N.ssFallback&&Ee(()=>N.ssFallback.el=null,S)),F||d(k,D,s,0)),S.isFallbackMountPending=!1,xn(S,k),S.pendingBranch=null,S.isInFallback=!1;let Z=S.parent,K=!1;for(;Z;){if(Z.pendingBranch){Z.effects.push(...R),K=!0;break}Z=Z.parent}!K&&!F&&as(R),S.effects=[],b&&t&&t.pendingBranch&&w===t.pendingId&&(t.deps--,t.deps===0&&!C&&t.resolve()),pr(N,"onResolve")},fallback(T){if(!S.pendingBranch)return;const{vnode:C,activeBranch:N,parentComponent:O,container:k,namespace:U}=S;pr(C,"onFallback");const R=h(N),H=()=>{S.isFallbackMountPending=!1,S.isInFallback&&(f(null,T,k,R,O,null,U,l,a),xn(S,T))},D=T.transition&&T.transition.mode==="out-in";D&&(S.isFallbackMountPending=!0,N.transition.afterLeave=H),S.isInFallback=!0,p(N,O,null,!0),D||H()},move(T,C,N){S.activeBranch&&d(S.activeBranch,T,C,N),S.container=T},next(){return S.activeBranch&&h(S.activeBranch)},registerDep(T,C,N){const O=!!S.pendingBranch;O&&S.deps++;const k=T.vnode.el;T.asyncDep.catch(U=>{Fn(U,T,0)}).then(U=>{if(T.isUnmounted||S.isUnmounted||S.pendingId!==T.suspenseId)return;vs(),T.asyncResolved=!0;const{vnode:R}=T;bs(T,U),k&&(R.el=k);const H=!k&&T.subTree.el;C(T,R,y(k||T.subTree.el),k?null:h(T.subTree),S,i,N),H&&(R.placeholder=null,E(H)),Po(T,R.el),O&&--S.deps===0&&S.resolve()})},unmount(T,C){S.isUnmounted=!0,S.activeBranch&&p(S.activeBranch,n,T,C),S.pendingBranch&&p(S.pendingBranch,n,T,C)}};return S}function Yd(e,t,n,r,o,s,i,l,a){const u=t.suspense=Pc(t,r,n,e.parentNode,document.createElement("div"),null,o,s,i,l,!0),c=a(e,u.pendingBranch=t.ssContent,n,u,s,i);return u.deps===0&&u.resolve(!1,!0),c}function Xd(e){const{shapeFlag:t,children:n}=e,r=t&32;e.ssContent=Wi(r?n.default:n),e.ssFallback=r?Wi(n.fallback):ye(Se)}function Wi(e){let t;if(X(e)){const n=Nn&&e._c;n&&(e._d=!1,Ke()),e=e(),n&&(e._d=!0,t=Ge,Oc())}return Q(e)&&(e=Ld(e)),e=Je(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter(n=>n!==e)),e}function kc(e,t){t&&t.pendingBranch?Q(e)?t.effects.push(...e):t.effects.push(e):as(e)}function xn(e,t){e.activeBranch=t;const{vnode:n,parentComponent:r}=e;let o=t.el;for(;!o&&t.component;)t=t.component.subTree,o=t.el;n.el=o,r&&r.subTree===n&&(r.vnode.el=o,Po(r,o))}function Zd(e){const t=e.props&&e.props.suspensible;return t!=null&&t!==!1}const He=Symbol.for("v-fgt"),cn=Symbol.for("v-txt"),Se=Symbol.for("v-cmt"),$r=Symbol.for("v-stc"),sr=[];let Ge=null;function Ke(e=!1){sr.push(Ge=e?null:[])}function Oc(){sr.pop(),Ge=sr[sr.length-1]||null}let Nn=1;function so(e,t=!1){Nn+=e,e<0&&Ge&&t&&(Ge.hasOnce=!0)}function Ic(e){return e.dynamicChildren=Nn>0?Ge||Tn:null,Oc(),Nn>0&&Ge&&Ge.push(e),e}function ep(e,t,n,r,o,s){return Ic(Mc(e,t,n,r,o,s,!0))}function tt(e,t,n,r,o){return Ic(ye(e,t,n,r,o,!0))}function dn(e){return e?e.__v_isVNode===!0:!1}function it(e,t){return e.type===t.type&&e.key===t.key}const Nc=({key:e})=>e??null,Ur=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?pe(e)||me(e)||X(e)?{i:Be,r:e,k:t,f:!!n}:e:null);function Mc(e,t=null,n=null,r=0,o=null,s=e===He?0:1,i=!1,l=!1){const a={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Nc(t),ref:t&&Ur(t),scopeId:Ja,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:s,patchFlag:r,dynamicProps:o,dynamicChildren:null,appContext:null,ctx:Be};return l?(li(a,n),s&128&&e.normalize(a)):n&&(a.shapeFlag|=pe(n)?8:16),Nn>0&&!i&&Ge&&(a.patchFlag>0||s&6)&&a.patchFlag!==32&&Ge.push(a),a}const ye=tp;function tp(e,t=null,n=null,r=0,o=null,s=!1){if((!e||e===cc)&&(e=Se),dn(e)){const l=Ht(e,t,!0);return n&&li(l,n),Nn>0&&!s&&Ge&&(l.shapeFlag&6?Ge[Ge.indexOf(e)]=l:Ge.push(l)),l.patchFlag=-2,l}if(cp(e)&&(e=e.__vccOpts),t){t=ii(t);let{class:l,style:a}=t;l&&!pe(l)&&(t.class=bo(l)),se(a)&&(Ao(a)&&!Q(a)&&(a=Pe({},a)),t.style=vo(a))}const i=pe(e)?1:oo(e)?128:Xa(e)?64:se(e)?4:X(e)?2:0;return Mc(e,t,n,r,o,i,s,!0)}function ii(e){return e?Ao(e)||vc(e)?Pe({},e):e:null}function Ht(e,t,n=!1,r=!1){const{props:o,ref:s,patchFlag:i,children:l,transition:a}=e,u=t?Hc(o||{},t):o,c={__v_isVNode:!0,__v_skip:!0,type:e.type,props:u,key:u&&Nc(u),ref:t&&t.ref?n&&s?Q(s)?s.concat(Ur(t)):[s,Ur(t)]:Ur(t):s,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:l,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==He?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:a,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Ht(e.ssContent),ssFallback:e.ssFallback&&Ht(e.ssFallback),placeholder:e.placeholder,el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return a&&r&&In(c,a.clone(c)),c}function Lc(e=" ",t=0){return ye(cn,null,e,t)}function cb(e="",t=!1){return t?(Ke(),tt(Se,null,e)):ye(Se,null,e)}function Je(e){return e==null||typeof e=="boolean"?ye(Se):Q(e)?ye(He,null,e.slice()):dn(e)?Pt(e):ye(cn,null,String(e))}function Pt(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Ht(e)}function li(e,t){let n=0;const{shapeFlag:r}=e;if(t==null)t=null;else if(Q(t))n=16;else if(typeof t=="object")if(r&65){const o=t.default;o&&(o._c&&(o._d=!1),li(e,o()),o._c&&(o._d=!0));return}else{n=32;const o=t._;!o&&!vc(t)?t._ctx=Be:o===3&&Be&&(Be.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else X(t)?(t={default:t,_ctx:Be},n=32):(t=String(t),r&64?(n=16,t=[Lc(t)]):n=8);e.children=t,e.shapeFlag|=n}function Hc(...e){const t={};for(let n=0;n<e.length;n++){const r=e[n];for(const o in r)if(o==="class")t.class!==r.class&&(t.class=bo([t.class,r.class]));else if(o==="style")t.style=vo([t.style,r.style]);else if(vr(o)){const s=t[o],i=r[o];i&&s!==i&&!(Q(s)&&s.includes(i))?t[o]=s?[].concat(s,i):i:i==null&&s==null&&!ho(o)&&(t[o]=i)}else o!==""&&(t[o]=r[o])}return t}function We(e,t,n,r=null){ut(e,t,7,[n,r])}const np=hc();let rp=0;function op(e,t,n){const r=e.type,o=(t?t.appContext:e.appContext)||np,s={uid:rp++,vnode:e,type:r,parent:t,appContext:o,root:null,next:null,subTree:null,effect:null,update:null,job:null,scope:new Sa(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(o.provides),ids:t?t.ids:["",0,0],accessCache:null,renderCache:[],components:null,directives:null,propsOptions:wc(r,o),emitsOptions:gc(r,o),emit:null,emitted:null,propsDefaults:ce,inheritAttrs:r.inheritAttrs,ctx:ce,data:ce,props:ce,attrs:ce,slots:ce,refs:ce,setupState:ce,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return s.ctx={_:s},s.root=t?t.root:s,s.emit=Nd.bind(null,s),e.ce&&e.ce(s),s}let Ie=null;const Ue=()=>Ie||Be;let io,_s;{const e=_o(),t=(n,r)=>{let o;return(o=e[n])||(o=e[n]=[]),o.push(r),s=>{o.length>1?o.forEach(i=>i(s)):o[0](s)}};io=t("__VUE_INSTANCE_SETTERS__",n=>Ie=n),_s=t("__VUE_SSR_SETTERS__",n=>Mn=n)}const Sr=e=>{const t=Ie;return io(e),e.scope.on(),()=>{e.scope.off(),io(t)}},vs=()=>{Ie&&Ie.scope.off(),io(null)};function jc(e){return e.vnode.shapeFlag&4}let Mn=!1;function sp(e,t=!1,n=!1){t&&_s(t);const{props:r,children:o}=e.vnode,s=jc(e);Dd(e,r,s,t),Vd(e,o,n||t);const i=s?ip(e,t):void 0;return t&&_s(!1),i}function ip(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,Td);const{setup:r}=n;if(r){Mt();const o=e.setupContext=r.length>1?ap(e):null,s=Sr(e),i=wr(r,e,0,[e.props,o]),l=ha(i);if(Lt(),s(),(l||e.sp)&&!It(e)&&Zs(e),l){if(i.then(vs,vs),t)return i.then(a=>{bs(e,a)}).catch(a=>{Fn(a,e,0)});e.asyncDep=i}else bs(e,i)}else Fc(e)}function bs(e,t,n){X(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:se(t)&&(e.setupState=Ua(t)),Fc(e)}function Fc(e,t,n){const r=e.type;e.render||(e.render=r.render||bt);{const o=Sr(e);Mt();try{Ad(e)}finally{Lt(),o()}}}const lp={get(e,t){return Le(e,"get",""),e[t]}};function ap(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,lp),slots:e.slots,emit:e.emit,expose:t}}function ai(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(Ua(Uf(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in or)return or[n](e)},has(t,n){return n in t||n in or}})):e.proxy}function ws(e,t=!0){return X(e)?e.displayName||e.name:e.name||t&&e.__name}function cp(e){return X(e)&&"__vccOpts"in e}const ge=(e,t)=>Qf(e,t,Mn);function Oe(e,t,n){try{so(-1);const r=arguments.length;return r===2?se(t)&&!Q(t)?dn(t)?ye(e,null,[t]):ye(e,t):ye(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&dn(n)&&(n=[n]),ye(e,t,n))}finally{so(1)}}const up="3.5.32";let Es;const Ki=typeof window<"u"&&window.trustedTypes;if(Ki)try{Es=Ki.createPolicy("vue",{createHTML:e=>e})}catch{}const Dc=Es?e=>Es.createHTML(e):e=>e,fp="http://www.w3.org/2000/svg",dp="http://www.w3.org/1998/Math/MathML",xt=typeof document<"u"?document:null,Gi=xt&&xt.createElement("template"),pp={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const o=t==="svg"?xt.createElementNS(fp,e):t==="mathml"?xt.createElementNS(dp,e):n?xt.createElement(e,{is:n}):xt.createElement(e);return e==="select"&&r&&r.multiple!=null&&o.setAttribute("multiple",r.multiple),o},createText:e=>xt.createTextNode(e),createComment:e=>xt.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>xt.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,r,o,s){const i=n?n.previousSibling:t.lastChild;if(o&&(o===s||o.nextSibling))for(;t.insertBefore(o.cloneNode(!0),n),!(o===s||!(o=o.nextSibling)););else{Gi.innerHTML=Dc(r==="svg"?`<svg>${e}</svg>`:r==="mathml"?`<math>${e}</math>`:e);const l=Gi.content;if(r==="svg"||r==="mathml"){const a=l.firstChild;for(;a.firstChild;)l.appendChild(a.firstChild);l.removeChild(a)}t.insertBefore(l,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Dt="transition",qn="animation",hr=Symbol("_vtc"),Bc={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},hp=Pe({},Za,Bc),gp=e=>(e.displayName="Transition",e.props=hp,e),mp=gp((e,{slots:t})=>Oe(cd,yp(e),t)),Yt=(e,t=[])=>{Q(e)?e.forEach(n=>n(...t)):e&&e(...t)},qi=e=>e?Q(e)?e.some(t=>t.length>1):e.length>1:!1;function yp(e){const t={};for(const R in e)R in Bc||(t[R]=e[R]);if(e.css===!1)return t;const{name:n="v",type:r,duration:o,enterFromClass:s=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:l=`${n}-enter-to`,appearFromClass:a=s,appearActiveClass:u=i,appearToClass:c=l,leaveFromClass:f=`${n}-leave-from`,leaveActiveClass:d=`${n}-leave-active`,leaveToClass:p=`${n}-leave-to`}=e,h=_p(o),y=h&&h[0],E=h&&h[1],{onBeforeEnter:w,onEnter:b,onEnterCancelled:g,onLeave:_,onLeaveCancelled:S,onBeforeAppear:T=w,onAppear:C=b,onAppearCancelled:N=g}=t,O=(R,H,D,z)=>{R._enterCancelled=z,Xt(R,H?c:l),Xt(R,H?u:i),D&&D()},k=(R,H)=>{R._isLeaving=!1,Xt(R,f),Xt(R,p),Xt(R,d),H&&H()},U=R=>(H,D)=>{const z=R?C:b,F=()=>O(H,R,D);Yt(z,[H,F]),zi(()=>{Xt(H,R?a:s),Ct(H,R?c:l),qi(z)||Ji(H,r,y,F)})};return Pe(t,{onBeforeEnter(R){Yt(w,[R]),Ct(R,s),Ct(R,i)},onBeforeAppear(R){Yt(T,[R]),Ct(R,a),Ct(R,u)},onEnter:U(!1),onAppear:U(!0),onLeave(R,H){R._isLeaving=!0;const D=()=>k(R,H);Ct(R,f),R._enterCancelled?(Ct(R,d),Xi(R)):(Xi(R),Ct(R,d)),zi(()=>{R._isLeaving&&(Xt(R,f),Ct(R,p),qi(_)||Ji(R,r,E,D))}),Yt(_,[R,D])},onEnterCancelled(R){O(R,!1,void 0,!0),Yt(g,[R])},onAppearCancelled(R){O(R,!0,void 0,!0),Yt(N,[R])},onLeaveCancelled(R){k(R),Yt(S,[R])}})}function _p(e){if(e==null)return null;if(se(e))return[Ko(e.enter),Ko(e.leave)];{const t=Ko(e);return[t,t]}}function Ko(e){return _a(e)}function Ct(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e[hr]||(e[hr]=new Set)).add(t)}function Xt(e,t){t.split(/\s+/).forEach(r=>r&&e.classList.remove(r));const n=e[hr];n&&(n.delete(t),n.size||(e[hr]=void 0))}function zi(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let vp=0;function Ji(e,t,n,r){const o=e._endId=++vp,s=()=>{o===e._endId&&r()};if(n!=null)return setTimeout(s,n);const{type:i,timeout:l,propCount:a}=bp(e,t);if(!i)return r();const u=i+"end";let c=0;const f=()=>{e.removeEventListener(u,d),s()},d=p=>{p.target===e&&++c>=a&&f()};setTimeout(()=>{c<a&&f()},l+1),e.addEventListener(u,d)}function bp(e,t){const n=window.getComputedStyle(e),r=h=>(n[h]||"").split(", "),o=r(`${Dt}Delay`),s=r(`${Dt}Duration`),i=Qi(o,s),l=r(`${qn}Delay`),a=r(`${qn}Duration`),u=Qi(l,a);let c=null,f=0,d=0;t===Dt?i>0&&(c=Dt,f=i,d=s.length):t===qn?u>0&&(c=qn,f=u,d=a.length):(f=Math.max(i,u),c=f>0?i>u?Dt:qn:null,d=c?c===Dt?s.length:a.length:0);const p=c===Dt&&/\b(?:transform|all)(?:,|$)/.test(r(`${Dt}Property`).toString());return{type:c,timeout:f,propCount:d,hasTransform:p}}function Qi(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max(...t.map((n,r)=>Yi(n)+Yi(e[r])))}function Yi(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function Xi(e){return(e?e.ownerDocument:document).body.offsetHeight}function wp(e,t,n){const r=e[hr];r&&(t=(t?[t,...r]:[...r]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const Zi=Symbol("_vod"),Ep=Symbol("_vsh"),Sp=Symbol(""),Tp=/(?:^|;)\s*display\s*:/;function Ap(e,t,n){const r=e.style,o=pe(n);let s=!1;if(n&&!o){if(t)if(pe(t))for(const i of t.split(";")){const l=i.slice(0,i.indexOf(":")).trim();n[l]==null&&Vr(r,l,"")}else for(const i in t)n[i]==null&&Vr(r,i,"");for(const i in n)i==="display"&&(s=!0),Vr(r,i,n[i])}else if(o){if(t!==n){const i=r[Sp];i&&(n+=";"+i),r.cssText=n,s=Tp.test(n)}}else t&&e.removeAttribute("style");Zi in e&&(e[Zi]=s?r.display:"",e[Ep]&&(r.display="none"))}const el=/\s*!important$/;function Vr(e,t,n){if(Q(n))n.forEach(r=>Vr(e,t,r));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const r=Cp(e,t);el.test(n)?e.setProperty(qt(r),n.replace(el,""),"important"):e[r]=n}}const tl=["Webkit","Moz","ms"],Go={};function Cp(e,t){const n=Go[t];if(n)return n;let r=$e(t);if(r!=="filter"&&r in e)return Go[t]=r;r=yo(r);for(let o=0;o<tl.length;o++){const s=tl[o]+r;if(s in e)return Go[t]=s}return t}const nl="http://www.w3.org/1999/xlink";function rl(e,t,n,r,o,s=vf(t)){r&&t.startsWith("xlink:")?n==null?e.removeAttributeNS(nl,t.slice(6,t.length)):e.setAttributeNS(nl,t,n):n==null||s&&!ba(n)?e.removeAttribute(t):e.setAttribute(t,s?"":Ye(n)?String(n):n)}function ol(e,t,n,r,o){if(t==="innerHTML"||t==="textContent"){n!=null&&(e[t]=t==="innerHTML"?Dc(n):n);return}const s=e.tagName;if(t==="value"&&s!=="PROGRESS"&&!s.includes("-")){const l=s==="OPTION"?e.getAttribute("value")||"":e.value,a=n==null?e.type==="checkbox"?"on":"":String(n);(l!==a||!("_value"in e))&&(e.value=a),n==null&&e.removeAttribute(t),e._value=n;return}let i=!1;if(n===""||n==null){const l=typeof e[t];l==="boolean"?n=ba(n):n==null&&l==="string"?(n="",i=!0):l==="number"&&(n=0,i=!0)}try{e[t]=n}catch{}i&&e.removeAttribute(o||t)}function Rp(e,t,n,r){e.addEventListener(t,n,r)}function xp(e,t,n,r){e.removeEventListener(t,n,r)}const sl=Symbol("_vei");function Pp(e,t,n,r,o=null){const s=e[sl]||(e[sl]={}),i=s[t];if(r&&i)i.value=r;else{const[l,a]=kp(t);if(r){const u=s[t]=Np(r,o);Rp(e,l,u,a)}else i&&(xp(e,l,i,a),s[t]=void 0)}}const il=/(?:Once|Passive|Capture)$/;function kp(e){let t;if(il.test(e)){t={};let r;for(;r=e.match(il);)e=e.slice(0,e.length-r[0].length),t[r[0].toLowerCase()]=!0}return[e[2]===":"?e.slice(3):qt(e.slice(2)),t]}let qo=0;const Op=Promise.resolve(),Ip=()=>qo||(Op.then(()=>qo=0),qo=Date.now());function Np(e,t){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;ut(Mp(r,n.value),t,5,[r])};return n.value=e,n.attached=Ip(),n}function Mp(e,t){if(Q(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(r=>o=>!o._stopped&&r&&r(o))}else return t}const ll=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,Lp=(e,t,n,r,o,s)=>{const i=o==="svg";t==="class"?wp(e,r,i):t==="style"?Ap(e,n,r):vr(t)?ho(t)||Pp(e,t,n,r,s):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):Hp(e,t,r,i))?(ol(e,t,r),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&rl(e,t,r,i,s,t!=="value")):e._isVueCE&&(jp(e,t)||e._def.__asyncLoader&&(/[A-Z]/.test(t)||!pe(r)))?ol(e,$e(t),r,s,t):(t==="true-value"?e._trueValue=r:t==="false-value"&&(e._falseValue=r),rl(e,t,r,i))};function Hp(e,t,n,r){if(r)return!!(t==="innerHTML"||t==="textContent"||t in e&&ll(t)&&X(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"){const o=e.tagName;if(o==="IMG"||o==="VIDEO"||o==="CANVAS"||o==="SOURCE")return!1}return ll(t)&&pe(n)?!1:t in e}function jp(e,t){const n=e._def.props;if(!n)return!1;const r=$e(t);return Array.isArray(n)?n.some(o=>$e(o)===r):Object.keys(n).some(o=>$e(o)===r)}const Fp=["ctrl","shift","alt","meta"],Dp={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>Fp.some(n=>e[`${n}Key`]&&!t.includes(n))},ub=(e,t)=>{if(!e)return e;const n=e._withMods||(e._withMods={}),r=t.join(".");return n[r]||(n[r]=((o,...s)=>{for(let i=0;i<t.length;i++){const l=Dp[t[i]];if(l&&l(o,t))return}return e(o,...s)}))},Bp={esc:"escape",space:" ",up:"arrow-up",left:"arrow-left",right:"arrow-right",down:"arrow-down",delete:"backspace"},fb=(e,t)=>{const n=e._withKeys||(e._withKeys={}),r=t.join(".");return n[r]||(n[r]=(o=>{if(!("key"in o))return;const s=qt(o.key);if(t.some(i=>i===s||Bp[i]===s))return e(o)}))},$c=Pe({patchProp:Lp},pp);let ir,al=!1;function $p(){return ir||(ir=Kd($c))}function Up(){return ir=al?ir:Gd($c),al=!0,ir}const Vp=((...e)=>{const t=$p().createApp(...e),{mount:n}=t;return t.mount=r=>{const o=Vc(r);if(!o)return;const s=t._component;!X(s)&&!s.render&&!s.template&&(s.template=o.innerHTML),o.nodeType===1&&(o.textContent="");const i=n(o,!1,Uc(o));return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),i},t}),Wp=((...e)=>{const t=Up().createApp(...e),{mount:n}=t;return t.mount=r=>{const o=Vc(r);if(o)return n(o,!0,Uc(o))},t});function Uc(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function Vc(e){return pe(e)?document.querySelector(e):e}const Kp=/"(?:_|\\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*:/,Gp=/"(?: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*:/,qp=/^\s*["[{]|^\s*-?\d{1,16}(\.\d{1,17})?([Ee][+-]?\d+)?\s*$/;function zp(e,t){if(e==="__proto__"||e==="constructor"&&t&&typeof t=="object"&&"prototype"in t){Jp(e);return}return t}function Jp(e){console.warn(`[destr] Dropping "${e}" key to prevent prototype pollution.`)}function Qp(e,t={}){if(typeof e!="string")return e;if(e[0]==='"'&&e[e.length-1]==='"'&&e.indexOf("\\")===-1)return e.slice(1,-1);const 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 Number.NaN;case"infinity":return Number.POSITIVE_INFINITY;case"-infinity":return Number.NEGATIVE_INFINITY}if(!qp.test(e)){if(t.strict)throw new SyntaxError("[destr] Invalid JSON");return e}try{if(Kp.test(e)||Gp.test(e)){if(t.strict)throw new Error("[destr] Possible prototype pollution");return JSON.parse(e,zp)}return JSON.parse(e)}catch(r){if(t.strict)throw r;return e}}const Wc=/#/g,Kc=/&/g,Yp=/\//g,Xp=/=/g,Zp=/\?/g,ko=/\+/g,eh=/%5e/gi,th=/%60/gi,nh=/%7c/gi,rh=/%20/gi,oh=/%2f/gi,sh=/%252f/gi;function Gc(e){return encodeURI(""+e).replace(nh,"|")}function Ss(e){return Gc(typeof e=="string"?e:JSON.stringify(e)).replace(ko,"%2B").replace(rh,"+").replace(Wc,"%23").replace(Kc,"%26").replace(th,"`").replace(eh,"^").replace(Yp,"%2F")}function zo(e){return Ss(e).replace(Xp,"%3D")}function ih(e){return Gc(e).replace(Wc,"%23").replace(Zp,"%3F").replace(sh,"%2F").replace(Kc,"%26").replace(ko,"%2B")}function gr(e=""){try{return decodeURIComponent(""+e)}catch{return""+e}}function lh(e){return gr(e.replace(oh,"%252F"))}function ah(e){return gr(e.replace(ko," "))}function ch(e){return gr(e.replace(ko," "))}function qc(e=""){const t=Object.create(null);e[0]==="?"&&(e=e.slice(1));for(const n of e.split("&")){const r=n.match(/([^=]+)=?(.*)/)||[];if(r.length<2)continue;const o=ah(r[1]);if(o==="__proto__"||o==="constructor")continue;const s=ch(r[2]||"");t[o]===void 0?t[o]=s:Array.isArray(t[o])?t[o].push(s):t[o]=[t[o],s]}return t}function uh(e,t){return(typeof t=="number"||typeof t=="boolean")&&(t=String(t)),t?Array.isArray(t)?t.map(n=>`${zo(e)}=${Ss(n)}`).join("&"):`${zo(e)}=${Ss(t)}`:zo(e)}function fh(e){return Object.keys(e).filter(t=>e[t]!==void 0).map(t=>uh(t,e[t])).filter(Boolean).join("&")}const dh=/^[\s\w\0+.-]{2,}:([/\\]{1,2})/,ph=/^[\s\w\0+.-]{2,}:([/\\]{2})?/,hh=/^([/\\]\s*){2,}[^/\\]/,gh=/^[\s\0]*(blob|data|javascript|vbscript):$/i,mh=/\/$|\/\?|\/#/,yh=/^\.?\//;function Un(e,t={}){return typeof t=="boolean"&&(t={acceptRelative:t}),t.strict?dh.test(e):ph.test(e)||(t.acceptRelative?hh.test(e):!1)}function _h(e){return!!e&&gh.test(e)}function Ts(e="",t){return t?mh.test(e):e.endsWith("/")}function lo(e="",t){if(!t)return(Ts(e)?e.slice(0,-1):e)||"/";if(!Ts(e,!0))return e||"/";let n=e,r="";const o=e.indexOf("#");o!==-1&&(n=e.slice(0,o),r=e.slice(o));const[s,...i]=n.split("?");return((s.endsWith("/")?s.slice(0,-1):s)||"/")+(i.length>0?`?${i.join("?")}`:"")+r}function vh(e="",t){if(!t)return e.endsWith("/")?e:e+"/";if(Ts(e,!0))return e||"/";let n=e,r="";const o=e.indexOf("#");if(o!==-1&&(n=e.slice(0,o),r=e.slice(o),!n))return r;const[s,...i]=n.split("?");return s+"/"+(i.length>0?`?${i.join("?")}`:"")+r}function bh(e,t){if(Jc(t)||Un(e))return e;const n=lo(t);if(e.startsWith(n)){const r=e[n.length];if(!r||r==="/"||r==="?")return e}return Qc(n,e)}function cl(e,t){if(Jc(t))return e;const n=lo(t);if(!e.startsWith(n))return e;const r=e[n.length];if(r&&r!=="/"&&r!=="?")return e;const o=e.slice(n.length);return o[0]==="/"?o:"/"+o}function zc(e,t){const n=ci(e),r={...qc(n.search),...t};return n.search=fh(r),Eh(n)}function Jc(e){return!e||e==="/"}function wh(e){return e&&e!=="/"}function Qc(e,...t){let n=e||"";for(const r of t.filter(o=>wh(o)))if(n){const o=r.replace(yh,"");n=vh(n)+o}else n=r;return n}function Yc(...e){const t=/\/(?!\/)/,n=e.filter(Boolean),r=[];let o=0;for(const i of n)if(!(!i||i==="/")){for(const[l,a]of i.split(t).entries())if(!(!a||a===".")){if(a===".."){if(r.length===1&&Un(r[0]))continue;r.pop(),o--;continue}if(l===1&&r[r.length-1]?.endsWith(":/")){r[r.length-1]+="/"+a;continue}r.push(a),o++}}let s=r.join("/");return o>=0?n[0]?.startsWith("/")&&!s.startsWith("/")?s="/"+s:n[0]?.startsWith("./")&&!s.startsWith("./")&&(s="./"+s):s="../".repeat(-1*o)+s,n[n.length-1]?.endsWith("/")&&!s.endsWith("/")&&(s+="/"),s}function Xc(e,t){return gr(lo(e))===gr(lo(t))}const Zc=Symbol.for("ufo:protocolRelative");function ci(e="",t){const n=e.match(/^[\s\0]*(blob:|data:|javascript:|vbscript:)(.*)/i);if(n){const[,f,d=""]=n;return{protocol:f.toLowerCase(),pathname:d,href:f+d,auth:"",host:"",search:"",hash:""}}if(!Un(e,{acceptRelative:!0}))return ul(e);const[,r="",o,s=""]=e.replace(/\\/g,"/").match(/^[\s\0]*([\w+.-]{2,}:)?\/\/([^/@]+@)?(.*)/)||[];let[,i="",l=""]=s.match(/([^#/?]*)(.*)?/)||[];r==="file:"&&(l=l.replace(/\/(?=[A-Za-z]:)/,""));const{pathname:a,search:u,hash:c}=ul(l);return{protocol:r.toLowerCase(),auth:o?o.slice(0,Math.max(0,o.length-1)):"",host:i,pathname:a,search:u,hash:c,[Zc]:!r}}function ul(e=""){const[t="",n="",r=""]=(e.match(/([^#?]*)(\?[^#]*)?(#.*)?/)||[]).splice(1);return{pathname:t,search:n,hash:r}}function Eh(e){const t=e.pathname||"",n=e.search?(e.search.startsWith("?")?"":"?")+e.search:"",r=e.hash||"",o=e.auth?e.auth+"@":"",s=e.host||"";return(e.protocol||e[Zc]?(e.protocol||"")+"//":"")+o+s+t+n+r}class Sh extends Error{constructor(t,n){super(t,n),this.name="FetchError",n?.cause&&!this.cause&&(this.cause=n.cause)}}function Th(e){const t=e.error?.message||e.error?.toString()||"",n=e.request?.method||e.options?.method||"GET",r=e.request?.url||String(e.request)||"/",o=`[${n}] ${JSON.stringify(r)}`,s=e.response?`${e.response.status} ${e.response.statusText}`:"<no response>",i=`${o}: ${s}${t?` ${t}`:""}`,l=new Sh(i,e.error?{cause:e.error}:void 0);for(const a of["request","options","response"])Object.defineProperty(l,a,{get(){return e[a]}});for(const[a,u]of[["data","_data"],["status","status"],["statusCode","status"],["statusText","statusText"],["statusMessage","statusText"]])Object.defineProperty(l,a,{get(){return e.response&&e.response[u]}});return l}const Ah=new Set(Object.freeze(["PATCH","POST","PUT","DELETE"]));function fl(e="GET"){return Ah.has(e.toUpperCase())}function Ch(e){if(e===void 0)return!1;const t=typeof e;return t==="string"||t==="number"||t==="boolean"||t===null?!0:t!=="object"?!1:Array.isArray(e)?!0:e.buffer||e instanceof FormData||e instanceof URLSearchParams?!1:e.constructor&&e.constructor.name==="Object"||typeof e.toJSON=="function"}const Rh=new Set(["image/svg","application/xml","application/xhtml","application/html"]),xh=/^application\/(?:[\w!#$%&*.^`~-]*\+)?json(;.+)?$/i;function Ph(e=""){if(!e)return"json";const t=e.split(";").shift()||"";return xh.test(t)?"json":t==="text/event-stream"?"stream":Rh.has(t)||t.startsWith("text/")?"text":"blob"}function kh(e,t,n,r){const o=Oh(t?.headers??e?.headers,n?.headers,r);let s;return(n?.query||n?.params||t?.params||t?.query)&&(s={...n?.params,...n?.query,...t?.params,...t?.query}),{...n,...t,query:s,params:s,headers:o}}function Oh(e,t,n){if(!t)return new n(e);const r=new n(t);if(e)for(const[o,s]of Symbol.iterator in e||Array.isArray(e)?e:new n(e))r.set(o,s);return r}async function Lr(e,t){if(t)if(Array.isArray(t))for(const n of t)await n(e);else await t(e)}const Ih=new Set([408,409,425,429,500,502,503,504]),Nh=new Set([101,204,205,304]);function eu(e={}){const{fetch:t=globalThis.fetch,Headers:n=globalThis.Headers,AbortController:r=globalThis.AbortController}=e;async function o(l){const a=l.error&&l.error.name==="AbortError"&&!l.options.timeout||!1;if(l.options.retry!==!1&&!a){let c;typeof l.options.retry=="number"?c=l.options.retry:c=fl(l.options.method)?0:1;const f=l.response&&l.response.status||500;if(c>0&&(Array.isArray(l.options.retryStatusCodes)?l.options.retryStatusCodes.includes(f):Ih.has(f))){const d=typeof l.options.retryDelay=="function"?l.options.retryDelay(l):l.options.retryDelay||0;return d>0&&await new Promise(p=>setTimeout(p,d)),s(l.request,{...l.options,retry:c-1})}}const u=Th(l);throw Error.captureStackTrace&&Error.captureStackTrace(u,s),u}const s=async function(a,u={}){const c={request:a,options:kh(a,u,e.defaults,n),response:void 0,error:void 0};if(c.options.method&&(c.options.method=c.options.method.toUpperCase()),c.options.onRequest&&(await Lr(c,c.options.onRequest),c.options.headers instanceof n||(c.options.headers=new n(c.options.headers||{}))),typeof c.request=="string"&&(c.options.baseURL&&(c.request=bh(c.request,c.options.baseURL)),c.options.query&&(c.request=zc(c.request,c.options.query),delete c.options.query),"query"in c.options&&delete c.options.query,"params"in c.options&&delete c.options.params),c.options.body&&fl(c.options.method))if(Ch(c.options.body)){const p=c.options.headers.get("content-type");typeof c.options.body!="string"&&(c.options.body=p==="application/x-www-form-urlencoded"?new URLSearchParams(c.options.body).toString():JSON.stringify(c.options.body)),p||c.options.headers.set("content-type","application/json"),c.options.headers.has("accept")||c.options.headers.set("accept","application/json")}else("pipeTo"in c.options.body&&typeof c.options.body.pipeTo=="function"||typeof c.options.body.pipe=="function")&&("duplex"in c.options||(c.options.duplex="half"));let f;if(!c.options.signal&&c.options.timeout){const p=new r;f=setTimeout(()=>{const h=new Error("[TimeoutError]: The operation was aborted due to timeout");h.name="TimeoutError",h.code=23,p.abort(h)},c.options.timeout),c.options.signal=p.signal}try{c.response=await t(c.request,c.options)}catch(p){return c.error=p,c.options.onRequestError&&await Lr(c,c.options.onRequestError),await o(c)}finally{f&&clearTimeout(f)}if((c.response.body||c.response._bodyInit)&&!Nh.has(c.response.status)&&c.options.method!=="HEAD"){const p=(c.options.parseResponse?"json":c.options.responseType)||Ph(c.response.headers.get("content-type")||"");switch(p){case"json":{const h=await c.response.text(),y=c.options.parseResponse||Qp;c.response._data=y(h);break}case"stream":{c.response._data=c.response.body||c.response._bodyInit;break}default:c.response._data=await c.response[p]()}}return c.options.onResponse&&await Lr(c,c.options.onResponse),!c.options.ignoreResponseError&&c.response.status>=400&&c.response.status<600?(c.options.onResponseError&&await Lr(c,c.options.onResponseError),await o(c)):c.response},i=async function(a,u){return(await s(a,u))._data};return i.raw=s,i.native=(...l)=>t(...l),i.create=(l={},a={})=>eu({...e,...a,defaults:{...e.defaults,...a.defaults,...l}}),i}const ao=(function(){if(typeof globalThis<"u")return globalThis;if(typeof self<"u")return self;if(typeof window<"u")return window;if(typeof global<"u")return global;throw new Error("unable to locate global object")})(),Mh=ao.fetch?(...e)=>ao.fetch(...e):()=>Promise.reject(new Error("[ofetch] global.fetch is not supported!")),Lh=ao.Headers,Hh=ao.AbortController,jh=eu({fetch:Mh,Headers:Lh,AbortController:Hh}),Fh=jh,Dh=()=>window?.__NUXT__?.config||window?.useNuxtApp?.().payload?.config,ui=()=>Dh().app,Bh=()=>ui().baseURL,$h=()=>ui().buildAssetsDir,fi=(...e)=>Yc(tu(),$h(),...e),tu=(...e)=>{const t=ui(),n=t.cdnURL||t.baseURL;return e.length?Yc(n,...e):n};globalThis.__buildAssetsURL=fi,globalThis.__publicAssetsURL=tu;globalThis.$fetch||(globalThis.$fetch=Fh.create({baseURL:Bh()}));"global"in globalThis||(globalThis.global=globalThis);function As(e,t={},n){for(const r in e){const o=e[r],s=n?`${n}:${r}`:r;typeof o=="object"&&o!==null?As(o,t,s):typeof o=="function"&&(t[s]=o)}return t}const nu=(()=>{if(console.createTask)return console.createTask;const e={run:t=>t()};return()=>e})();function ru(e,t,n,r){for(let o=n;o<e.length;o+=1)try{const s=r?r.run(()=>e[o](...t)):e[o](...t);if(s&&typeof s.then=="function")return Promise.resolve(s).then(()=>ru(e,t,o+1,r))}catch(s){return Promise.reject(s)}}function Uh(e,t,n){if(e.length>0)return ru(e,t,0,nu(n))}function Vh(e,t,n){if(e.length>0){const r=nu(n);return Promise.all(e.map(o=>r.run(()=>o(...t))))}}function Jo(e,t){for(const n of[...e])n(t)}var Wh=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()=>{};const r=e;let o;for(;this._deprecatedHooks[e];)o=this._deprecatedHooks[e],e=o.to;if(o&&!n.allowDeprecated){let s=o.message;s||(s=`${r} hook has been deprecated`+(o.to?`, please use ${o.to}`:"")),this._deprecatedMessages||(this._deprecatedMessages=new Set),this._deprecatedMessages.has(s)||(console.warn(s),this._deprecatedMessages.add(s))}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),t=void 0)}}hookOnce(e,t){let n,r=(...o)=>(typeof n=="function"&&n(),n=void 0,r=void 0,t(...o));return n=this.hook(e,r),n}removeHook(e,t){const n=this._hooks[e];if(n){const r=n.indexOf(t);r!==-1&&n.splice(r,1),n.length===0&&(this._hooks[e]=void 0)}}clearHook(e){this._hooks[e]=void 0}deprecateHook(e,t){this._deprecatedHooks[e]=typeof t=="string"?{to:t}:t;const n=this._hooks[e]||[];this._hooks[e]=void 0;for(const r of n)this.hook(e,r)}deprecateHooks(e){for(const t in e)this.deprecateHook(t,e[t])}addHooks(e){const t=As(e),n=Object.keys(t).map(r=>this.hook(r,t[r]));return()=>{for(const r of n)r();n.length=0}}removeHooks(e){const t=As(e);for(const n in t)this.removeHook(n,t[n])}removeAllHooks(){this._hooks={}}callHook(e,...t){return this.callHookWith(Uh,e,t)}callHookParallel(e,...t){return this.callHookWith(Vh,e,t)}callHookWith(e,t,n){const r=this._before||this._after?{name:t,args:n,context:{}}:void 0;this._before&&Jo(this._before,r);const o=e(this._hooks[t]?[...this._hooks[t]]:[],n,t);return o instanceof Promise?o.finally(()=>{this._after&&r&&Jo(this._after,r)}):(this._after&&r&&Jo(this._after,r),o)}beforeEach(e){return this._before=this._before||[],this._before.push(e),()=>{if(this._before!==void 0){const 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){const t=this._after.indexOf(e);t!==-1&&this._after.splice(t,1)}}}};function ou(){return new Wh}function Kh(e={}){let t,n=!1;const r=i=>{if(t&&t!==i)throw new Error("Context conflict")};let o;if(e.asyncContext){const i=e.AsyncLocalStorage||globalThis.AsyncLocalStorage;i?o=new i:console.warn("[unctx] `AsyncLocalStorage` is not provided.")}const s=()=>{if(o){const i=o.getStore();if(i!==void 0)return i}return t};return{use:()=>{const i=s();if(i===void 0)throw new Error("Context is not available");return i},tryUse:()=>s(),set:(i,l)=>{l||r(i),t=i,n=!0},unset:()=>{t=void 0,n=!1},call:(i,l)=>{r(i),t=i;try{return o?o.run(i,l):l()}finally{n||(t=void 0)}},async callAsync(i,l){t=i;const a=()=>{t=i},u=()=>t===i?a:void 0;Cs.add(u);try{const c=o?o.run(i,l):l();return n||(t=void 0),await c}finally{Cs.delete(u)}}}}function Gh(e={}){const t={};return{get(n,r={}){return t[n]||(t[n]=Kh({...e,...r})),t[n]}}}const co=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof global<"u"?global:typeof window<"u"?window:{},dl="__unctx__",qh=co[dl]||(co[dl]=Gh()),zh=(e,t={})=>qh.get(e,t),pl="__unctx_async_handlers__",Cs=co[pl]||(co[pl]=new Set);function lr(e){const t=[];for(const o of Cs){const s=o();s&&t.push(s)}const n=()=>{for(const o of t)o()};let r=e();return r&&typeof r=="object"&&"catch"in r&&(r=r.catch(o=>{throw n(),o})),[r,n]}const hl=!1,gl=!1,Jh=!1,ml={id:"__nuxt-loader"},db={componentName:"NuxtLink",prefetch:!0,prefetchOn:{visibility:!0}},pb={deep:!1},hb={},Qh="#__nuxt",su="nuxt-app",yl=36e5,Yh="vite:preloadError";function iu(e=su){return zh(e,{asyncContext:!1})}const Xh="__nuxt_plugin";function Zh(e){let t=0;const n={_id:e.id||su||"nuxt-app",_scope:qs(),provide:void 0,versions:{get nuxt(){return"4.4.2"},get vue(){return n.vueApp.version}},payload:st({...e.ssrContext?.payload||{},data:st({}),state:nt({}),once:new Set,_errors:st({})}),static:{data:{}},runWithContext(o){return n._scope.active&&!br()?n._scope.run(()=>_l(n,o)):_l(n,o)},isHydrating:!0,deferHydration(){if(!n.isHydrating)return()=>{};t++;let o=!1;return()=>{if(!o&&(o=!0,t--,t===0))return n.isHydrating=!1,n.callHook("app:suspense:resolve")}},_asyncDataPromises:{},_asyncData:st({}),_state:st({}),_payloadRevivers:{},...e};{const o=window.__NUXT__;if(o)for(const s in o)switch(s){case"data":case"state":case"_errors":Object.assign(n.payload[s],o[s]);break;default:n.payload[s]=o[s]}}n.hooks=ou(),n.hook=n.hooks.hook;{const o=n.hooks.callHook;n.hooks.callHook=(s,...i)=>Promise.resolve().then(()=>o(s,...i))}n.callHook=n.hooks.callHook,n.provide=(o,s)=>{const i="$"+o;Hr(n,i,s),Hr(n.vueApp.config.globalProperties,i,s)},Hr(n.vueApp,"$nuxt",n),Hr(n.vueApp.config.globalProperties,"$nuxt",n);{window.addEventListener(Yh,s=>{n.callHook("app:chunkError",{error:s.payload}),s.payload.message.includes("Unable to preload CSS")&&s.preventDefault()}),window.useNuxtApp||=Ae;const o=n.hook("app:error",(...s)=>{console.error("[nuxt] error caught during app initialization",...s)});n.hook("app:mounted",o)}const r=n.payload.config;return n.provide("config",r),n}function eg(e,t){t.hooks&&e.hooks.addHooks(t.hooks)}async function tg(e,t){if(typeof t=="function"){const{provide:n}=await e.runWithContext(()=>t(e))||{};if(n&&typeof n=="object")for(const r in n)e.provide(r,n[r])}}async function ng(e,t){const n=new Set,r=[],o=[];let s,i=0;async function l(a){const u=a.dependsOn?.filter(c=>t.some(f=>f._name===c)&&!n.has(c))??[];if(u.length>0)r.push([new Set(u),a]);else{const c=tg(e,a).then(async()=>{a._name&&(n.add(a._name),await Promise.all(r.map(async([f,d])=>{f.has(a._name)&&(f.delete(a._name),f.size===0&&(i++,await l(d)))})))}).catch(f=>{if(!a.parallel&&!e.payload.error)throw f;s||=f});a.parallel?o.push(c):await c}}for(const a of t)eg(e,a);for(const a of t)await l(a);if(await Promise.all(o),i)for(let a=0;a<i;a++)await Promise.all(o);if(s)throw e.payload.error||s}function Tt(e){if(typeof e=="function")return e;const t=e._name||e.name;return delete e.name,Object.assign(e.setup||(()=>{}),e,{[Xh]:!0,_name:t})}function _l(e,t,n){const r=()=>t();return iu(e._id).set(e),e.vueApp.runWithContext(r)}function rg(e){let t;return Dn()&&(t=Ue()?.appContext.app.$nuxt),t||=iu(e).tryUse(),t||null}function Ae(e){const t=rg(e);if(!t)throw new Error("[nuxt] instance unavailable");return t}function Oo(e){return Ae().$config}function Hr(e,t,n){Object.defineProperty(e,t,{get:()=>n})}function Qo(e){if(e===null||typeof e!="object")return!1;const 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 Rs(e,t,n=".",r){if(!Qo(t))return Rs(e,{},n,r);const o={...t};for(const s of Object.keys(e)){if(s==="__proto__"||s==="constructor")continue;const i=e[s];i!=null&&(r&&r(o,s,i,n)||(Array.isArray(i)&&Array.isArray(o[s])?o[s]=[...i,...o[s]]:Qo(i)&&Qo(o[s])?o[s]=Rs(i,o[s],(n?`${n}.`:"")+s.toString(),r):o[s]=i))}return o}function lu(e){return(...t)=>t.reduce((n,r)=>Rs(n,r,"",e),{})}const au=lu(),og=lu((e,t,n)=>{if(e[t]!==void 0&&typeof n=="function")return e[t]=n(e[t]),!0});function sg(e,t){try{return t in e}catch{return!1}}class vl extends Error{static __h3_error__=!0;statusCode=500;fatal=!1;unhandled=!1;statusMessage;data;cause;constructor(t,n={}){super(t,n),n.cause&&!this.cause&&(this.cause=n.cause)}toJSON(){const t={message:this.message,statusCode:xs(this.statusCode,500)};return this.statusMessage&&(t.statusMessage=cu(this.statusMessage)),this.data!==void 0&&(t.data=this.data),t}}function ig(e){if(typeof e=="string")return new vl(e);if(lg(e))return e;const t=new vl(e.message??e.statusMessage??"",{cause:e.cause||e});if(sg(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=xs(e.statusCode,t.statusCode):e.status&&(t.statusCode=xs(e.status,t.statusCode)),e.statusMessage?t.statusMessage=e.statusMessage:e.statusText&&(t.statusMessage=e.statusText),t.statusMessage){const n=t.statusMessage;cu(t.statusMessage)!==n&&console.warn("[h3] Please prefer using `message` for longer error messages instead of `statusMessage`. In the future, `statusMessage` will be sanitized by default.")}return e.fatal!==void 0&&(t.fatal=e.fatal),e.unhandled!==void 0&&(t.unhandled=e.unhandled),t}function lg(e){return e?.constructor?.__h3_error__===!0}const ag=/[^\u0009\u0020-\u007E]/g;function cu(e=""){return e.replace(ag,"")}function xs(e,t=200){return!e||(typeof e=="string"&&(e=Number.parseInt(e,10)),e<100||e>999)?t:e}const uu=Symbol("layout-meta"),pn=Symbol("route");import.meta.url.replace(/\/app\/.*$/,"/");const rt=()=>Ae()?.$router,di=()=>Dn()?be(pn,Ae()._route):Ae()._route;const cg=()=>{try{if(Ae()._processingMiddleware)return!0}catch{return!1}return!1},gb=(e,t)=>{e||="/";const n=typeof e=="string"?e:"path"in e?ug(e):rt().resolve(e).href;if(t?.open){const{target:u="_blank",windowFeatures:c={}}=t.open,f=[];for(const[d,p]of Object.entries(c))p!==void 0&&f.push(`${d.toLowerCase()}=${p}`);return open(n,u,f.join(", ")),Promise.resolve()}const r=Un(n,{acceptRelative:!0}),o=t?.external||r;if(o){if(!t?.external)throw new Error("Navigating to an external URL is not allowed by default. Use `navigateTo(url, { external: true })`.");const{protocol:u}=new URL(n,window.location.href);if(u&&_h(u))throw new Error(`Cannot navigate to a URL with '${u}' protocol.`)}const s=cg();if(!o&&s){if(t?.replace){if(typeof e=="string"){const{pathname:u,search:c,hash:f}=ci(e);return{path:u,...c&&{query:qc(c)},...f&&{hash:f},replace:!0}}return{...e,replace:!0}}return e}const i=rt(),l=Ae();if(o)return l._scope.stop(),t?.replace?location.replace(n):location.href=n,s?l.isHydrating?new Promise(()=>{}):!1:Promise.resolve();const a=typeof e=="string"?fg(e):e;return t?.replace?i.replace(a):i.push(a)};function ug(e){return zc(e.path||"",e.query||{})+(e.hash||"")}function fg(e){const t=ci(e);return ih(lh(t.pathname))+t.search+t.hash}const fu="__nuxt_error",Io=()=>Wa(Ae().payload,"error"),tn=e=>{const t=un(e);try{const n=Io();Ae().hooks.callHook("app:error",t),n.value||=t}catch{throw t}return t},dg=async(e={})=>{const t=Ae(),n=Io();t.callHook("app:error:cleared",e),e.redirect&&await rt().replace(e.redirect),n.value=void 0},du=e=>!!e&&typeof e=="object"&&fu in e,un=e=>{typeof e!="string"&&e.statusText&&(e.message??=e.statusText);const t=ig(e);return Object.defineProperty(t,fu,{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};function pg(e){return Uint8Array.fromBase64(e).buffer}function hg(e){return Uint8Array.from(Buffer.from(e,"base64")).buffer}function gg(e){const t=atob(e),n=t.length,r=new Uint8Array(n);for(let o=0;o<n;o++)r[o]=t.charCodeAt(o);return r.buffer}const mg=typeof Uint8Array.fromBase64=="function",yg=typeof process=="object"&&process.versions?.node!==void 0,_g=mg?pg:yg?hg:gg,vg=-1,bg=-2,wg=-3,Eg=-4,Sg=-5,Tg=-6,Ag=-7;function Cg(e,t){return Rg(JSON.parse(e),t)}function Rg(e,t){if(typeof e=="number")return s(e,!0);if(!Array.isArray(e)||e.length===0)throw new Error("Invalid input");const n=e,r=Array(n.length);let o=null;function s(i,l=!1){if(i===vg)return;if(i===wg)return NaN;if(i===Eg)return 1/0;if(i===Sg)return-1/0;if(i===Tg)return-0;if(l||typeof i!="number")throw new Error("Invalid input");if(i in r)return r[i];const a=n[i];if(!a||typeof a!="object")r[i]=a;else if(Array.isArray(a))if(typeof a[0]=="string"){const u=a[0],c=t&&Object.hasOwn(t,u)?t[u]:void 0;if(c){let f=a[1];if(typeof f!="number"&&(f=n.push(a[1])-1),o??=new Set,o.has(f))throw new Error("Invalid circular reference");return o.add(f),r[i]=c(s(f)),o.delete(f),r[i]}switch(u){case"Date":r[i]=new Date(a[1]);break;case"Set":const f=new Set;r[i]=f;for(let h=1;h<a.length;h+=1)f.add(s(a[h]));break;case"Map":const d=new Map;r[i]=d;for(let h=1;h<a.length;h+=2)d.set(s(a[h]),s(a[h+1]));break;case"RegExp":r[i]=new RegExp(a[1],a[2]);break;case"Object":{const h=a[1];if(typeof n[h]=="object"&&n[h][0]!=="BigInt")throw new Error("Invalid input");r[i]=Object(s(h));break}case"BigInt":r[i]=BigInt(a[1]);break;case"null":const p=Object.create(null);r[i]=p;for(let h=1;h<a.length;h+=2){if(a[h]==="__proto__")throw new Error("Cannot parse an object with a `__proto__` property");p[a[h]]=s(a[h+1])}break;case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Float16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":case"DataView":{if(n[a[1]][0]!=="ArrayBuffer")throw new Error("Invalid data");const h=globalThis[u],y=s(a[1]);r[i]=a[2]!==void 0?new h(y,a[2],a[3]):new h(y);break}case"ArrayBuffer":{const h=a[1];if(typeof h!="string")throw new Error("Invalid ArrayBuffer encoding");const y=_g(h);r[i]=y;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":{const h=u.slice(9);r[i]=Temporal[h].from(a[1]);break}case"URL":{const h=new URL(a[1]);r[i]=h;break}case"URLSearchParams":{const h=new URLSearchParams(a[1]);r[i]=h;break}default:throw new Error(`Unknown type ${u}`)}}else if(a[0]===Ag){const u=a[1];if(!Number.isInteger(u)||u<0)throw new Error("Invalid input");const c=new Array(u);r[i]=c;for(let f=2;f<a.length;f+=2){const d=a[f];if(!Number.isInteger(d)||d<0||d>=u)throw new Error("Invalid input");c[d]=s(a[f+1])}}else{const u=new Array(a.length);r[i]=u;for(let c=0;c<a.length;c+=1){const f=a[c];f!==bg&&(u[c]=s(f))}}else{const u={};r[i]=u;for(const c of Object.keys(a)){if(c==="__proto__")throw new Error("Cannot parse an object with a `__proto__` property");const f=a[c];u[c]=s(f)}}return r[i]}return s(0)}const xg=new Set(["link","style","script","noscript"]),Pg=new Set(["title","titleTemplate","script","style","noscript"]),Ps=new Set(["base","meta","link","style","script","noscript"]),kg=new Set(["title","base","htmlAttrs","bodyAttrs","meta","link","style","script","noscript"]),Og=new Set(["base","title","titleTemplate","bodyAttrs","htmlAttrs","templateParams"]),Ig=new Set(["key","tagPosition","tagPriority","tagDuplicateStrategy","innerHTML","textContent","processTemplateParams"]),Ng=new Set(["templateParams","htmlAttrs","bodyAttrs"]),Mg=new Set(["theme-color","google-site-verification","og","article","book","profile","twitter","author"]),Lg=["name","property","http-equiv"],Hg=new Set(["viewport","description","keywords","robots"]);function pu(e){const t=e.split(":");return t.length?Mg.has(t[1]):!1}function ks(e){const{props:t,tag:n}=e;if(Og.has(n))return n;if(n==="link"&&t.rel==="canonical")return"canonical";if(n==="link"&&t.rel==="alternate"){const r=t.hreflang||t.type;if(r)return`alternate:${r}`}if(t.charset)return"charset";if(e.tag==="meta"){for(const r of Lg)if(t[r]!==void 0){const o=t[r],s=o&&typeof o=="string"&&o.includes(":"),i=o&&Hg.has(o),a=!(s||i)&&e.key?`:key:${e.key}`:"";return`${n}:${o}${a}`}}if(e.key)return`${n}:key:${e.key}`;if(t.id)return`${n}:id:${t.id}`;if(n==="link"&&t.rel==="alternate")return`alternate:${t.href||""}`;if(Pg.has(n)){const r=e.textContent||e.innerHTML;if(r)return`${n}:content:${r}`}}function hu(e){const t=e._h||e._d;if(t)return t;const n=e.textContent||e.innerHTML;return n||`${e.tag}:${Object.entries(e.props).map(([r,o])=>`${r}:${String(o)}`).join(",")}`}function uo(e,t,n){typeof e==="function"&&(!n||n!=="titleTemplate"&&!(n[0]==="o"&&n[1]==="n"))&&(e=e());const o=t?t(n,e):e;if(Array.isArray(o))return o.map(s=>uo(s,t));if(o?.constructor===Object){const s={};for(const i of Object.keys(o))s[i]=uo(o[i],t,i);return s}return o}function jg(e,t){const n=e==="style"?new Map:new Set;function r(o){if(o==null||o===void 0)return;const s=String(o).trim();if(s)if(e==="style"){const[i,...l]=s.split(":").map(a=>a?a.trim():"");i&&l.length&&n.set(i,l.join(":"))}else s.split(" ").filter(Boolean).forEach(i=>n.add(i))}return typeof t=="string"?e==="style"?t.split(";").forEach(r):r(t):Array.isArray(t)?t.forEach(o=>r(o)):t&&typeof t=="object"&&Object.entries(t).forEach(([o,s])=>{s&&s!=="false"&&(e==="style"?n.set(String(o).trim(),String(s)):r(o))}),n}function gu(e,t){if(e.props=e.props||{},!t)return e;if(e.tag==="templateParams")return e.props=t,e;const n=Ps.has(e.tag)||e.tag==="htmlAttrs"||e.tag==="bodyAttrs";return Object.entries(t).forEach(([r,o])=>{if(r==="__proto__"||r==="constructor"||r==="prototype")return;if(o===null){e.props[r]=null;return}if(r==="class"||r==="style"){e.props[r]=jg(r,o);return}if(Ig.has(r)){if((r==="textContent"||r==="innerHTML")&&typeof o=="object"){let u=t.type;if(t.type||(u="application/json"),!u?.endsWith("json")&&u!=="speculationrules")return;t.type=u,e.props.type=u,e[r]=JSON.stringify(o)}else e[r]=o;return}const s=r.startsWith("data-"),i=n&&!s?r.toLowerCase():r,l=String(o),a=e.tag==="meta"&&i==="content";l==="true"||l===""?e.props[i]=s||a?l:!0:!o&&s&&l==="false"?e.props[i]="false":o!==void 0&&(e.props[i]=o)}),e}function Fg(e,t){const n=typeof t=="object"&&typeof t!="function"?t:{[e==="script"||e==="noscript"||e==="style"?"innerHTML":"textContent"]:t},r=gu({tag:e,props:{}},n);return r.key&&xg.has(r.tag)&&(r.props["data-hid"]=r._h=r.key),r.tag==="script"&&typeof r.innerHTML=="object"&&(r.innerHTML=JSON.stringify(r.innerHTML),r.props.type=r.props.type||"application/json"),Array.isArray(r.props.content)?r.props.content.map(o=>({...r,props:{...r.props,content:o}})):r}function Dg(e,t){if(!e)return[];typeof e=="function"&&(e=e());const n=(o,s)=>{for(let i=0;i<t.length;i++)s=t[i](o,s);return s};e=n(void 0,e);const r=[];return e=uo(e,n),Object.entries(e||{}).forEach(([o,s])=>{if(s!==void 0)for(const i of Array.isArray(s)?s:[s])r.push(Fg(o,i))}),r.flat()}const bl=(e,t)=>e._w===t._w?e._p-t._p:e._w-t._w,wl={base:-10,title:10},Bg={critical:-8,high:-1,low:2},El={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}},$g=/@import/,zn=e=>e===""||e===!0;function Ug(e,t){if(typeof t.tagPriority=="number")return t.tagPriority;let n=100;const r=Bg[t.tagPriority]||0,o=e.resolvedOptions.disableCapoSorting?{link:{},script:{},style:{}}:El;if(t.tag in wl)n=wl[t.tag];else if(t.tag==="meta"){const s=t.props["http-equiv"]==="content-security-policy"?"content-security-policy":t.props.charset?"charset":t.props.name==="viewport"?"viewport":null;s&&(n=El.meta[s])}else if(t.tag==="link"&&t.props.rel)n=o.link[t.props.rel];else if(t.tag==="script"){const s=String(t.props.type);zn(t.props.async)?n=o.script.async:t.props.src&&!zn(t.props.defer)&&!zn(t.props.async)&&s!=="module"&&!s.endsWith("json")||t.innerHTML&&!s.endsWith("json")?n=o.script.sync:(zn(t.props.defer)&&t.props.src&&!zn(t.props.async)||s==="module")&&(n=o.script.defer)}else t.tag==="style"&&(n=t.innerHTML&&$g.test(t.innerHTML)?o.style.imported:o.style.sync);return(n||100)+r}function Sl(e,t){const 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 Vg(e={}){const t=ou();t.addHooks(e.hooks||{});const n=!e.document,r=new Map,o=new Map,s=new Set,i={_entryCount:1,plugins:o,dirty:!1,resolvedOptions:e,hooks:t,ssr:n,entries:r,headEntries(){return[...r.values()]},use:l=>Sl(i,l),push(l,a){const u={...a||{}};delete u.head;const c=u._index??i._entryCount++,f={_i:c,input:l,options:u},d={_poll(p=!1){i.dirty=!0,!p&&s.add(c),t.callHook("entries:updated",i)},dispose(){r.delete(c)&&i.invalidate()},patch(p){(!u.mode||u.mode==="server"&&n||u.mode==="client"&&!n)&&(f.input=p,r.set(c,f),d._poll())}};return d.patch(l),d},async resolveTags(){const l={tagMap:new Map,tags:[],entries:[...i.entries.values()]};for(await t.callHook("entries:resolve",l);s.size;){const d=s.values().next().value;s.delete(d);const p=r.get(d);if(p){const h={tags:Dg(p.input,e.propResolvers||[]).map(y=>Object.assign(y,p.options)),entry:p};await t.callHook("entries:normalize",h),p._tags=h.tags.map((y,E)=>(y._w=Ug(i,y),y._p=(p._i<<10)+E,y._d=ks(y),y._d||(y._h=hu(y)),y))}}let a=!1;l.entries.flatMap(d=>(d._tags||[]).map(p=>({...p,props:{...p.props}}))).sort(bl).reduce((d,p)=>{const h=p._d||p._h;if(!d.has(h))return d.set(h,p);const y=d.get(h);if((p?.tagDuplicateStrategy||(Ng.has(p.tag)?"merge":null)||(p.key&&p.key===y.key?"merge":null))==="merge"){const w={...y.props};Object.entries(p.props).forEach(([b,g])=>w[b]=b==="style"?new Map([...y.props.style||new Map,...g]):b==="class"?new Set([...y.props.class||new Set,...g]):g),d.set(h,{...p,props:w})}else p._p>>10===y._p>>10&&p.tag==="meta"&&pu(h)?(d.set(h,Object.assign([...Array.isArray(y)?y:[y],p],p)),a=!0):(p._w===y._w?p._p>y._p:p?._w<y?._w)&&d.set(h,p);return d},l.tagMap);const u=l.tagMap.get("title"),c=l.tagMap.get("titleTemplate");if(i._title=u?.textContent,c){const d=c?.textContent;if(i._titleTemplate=d,d){let p=typeof d=="function"?d(u?.textContent):d;typeof p=="string"&&!i.plugins.has("template-params")&&(p=p.replace("%s",u?.textContent||"")),u?p===null?l.tagMap.delete("title"):l.tagMap.set("title",{...u,textContent:p}):(c.tag="title",c.textContent=p)}}l.tags=Array.from(l.tagMap.values()),a&&(l.tags=l.tags.flat().sort(bl)),await t.callHook("tags:beforeResolve",l),await t.callHook("tags:resolve",l),await t.callHook("tags:afterResolve",l);const f=[];for(const d of l.tags){const{innerHTML:p,tag:h,props:y}=d;if(kg.has(h)&&!(Object.keys(y).length===0&&!d.innerHTML&&!d.textContent)&&!(h==="meta"&&!y.content&&!y["http-equiv"]&&!y.charset)){if(h==="script"&&p){if(String(y.type).endsWith("json")){const E=typeof p=="string"?p:JSON.stringify(p);d.innerHTML=E.replace(/</g,"\\u003C")}else typeof p=="string"&&(d.innerHTML=p.replace(new RegExp(`</${h}`,"g"),`<\\/${h}`));d._d=ks(d)}f.push(d)}}return f},invalidate(){for(const l of r.values())s.add(l._i);i.dirty=!0,t.callHook("entries:updated",i)}};return(e?.plugins||[]).forEach(l=>Sl(i,l)),i.hooks.callHook("init",i),e.init?.forEach(l=>l&&i.push(l)),i}const Wg=(e,t)=>me(t)?ve(t):t,pi="usehead";function Kg(e){return{install(n){n.config.globalProperties.$unhead=e,n.config.globalProperties.$head=e,n.provide(pi,e)}}.install}function Gg(){if(Dn()){const e=be(pi);if(e)return e}throw new Error("useHead() was called without provide context, ensure you call it through the setup() function.")}function qg(e,t={}){const n=t.head||Gg();return n.ssr?n.push(e||{},t):zg(n,e,t)}function zg(e,t,n={}){const r=Te(!1);let o;return Xs(()=>{const i=r.value?{}:uo(t,Wg);o?o.patch(i):o=e.push(i,n)}),Ue()&&($n(()=>{o.dispose()}),sc(()=>{r.value=!0}),oc(()=>{r.value=!1})),o}function Jg(e){const t=e||Ae();return t.ssrContext?.head||t.runWithContext(()=>{if(Dn()){const n=be(pi);if(!n)throw new Error("[nuxt] [unhead] Missing Unhead instance.");return n}})}function Qg(e,t={}){const n=t.head||Jg(t.nuxt);return qg(e,{head:n,...t})}const Yg=(e,t)=>[],mu=e=>au({},...Yg().map(t=>t.data).reverse()),Xg=mu;let Wr;function Zg(){return Wr=$fetch(fi(`builds/meta/${Oo().app.buildId}.json`),{responseType:"json"}),Wr.catch(e=>{console.error("[nuxt] Error fetching app manifest.",e)}),Wr}function em(){return Wr||Zg()}function yu(e){const t=typeof e=="string"?e:e.path;try{return Xg(t)}catch(n){return console.error("[nuxt] Error matching route rules.",n),{}}}async function tm(e){return null}let Zt=null;async function nm(){if(Zt)return Zt;const e=document.getElementById("__NUXT_DATA__");if(!e)return{};const t=await rm(e.textContent||""),n=e.dataset.src?await tm(e.dataset.src):void 0;return Zt={...t,...n,...window.__NUXT__},Zt.config?.public&&(Zt.config.public=nt(Zt.config.public)),Zt}async function rm(e){return await Cg(e,Ae()._payloadRevivers)}function om(e,t){Ae()._payloadRevivers[e]=t}function Tl(e){try{return JSON.parse(e)}catch{return e}}const sm=[["NuxtError",e=>un(e)],["EmptyShallowRef",e=>xe(e==="_"?void 0:e==="0n"?BigInt(0):Tl(e))],["EmptyRef",e=>Te(e==="_"?void 0:e==="0n"?BigInt(0):Tl(e))],["ShallowRef",e=>xe(e)],["ShallowReactive",e=>st(e)],["Ref",e=>Te(e)],["Reactive",e=>nt(e)]],im=Tt({name:"nuxt:revive-payload:client",order:-30,async setup(e){let t,n;for(const[r,o]of sm)om(r,o);Object.assign(e.payload,([t,n]=lr(()=>e.runWithContext(nm)),t=await t,n(),t)),delete window.__NUXT__}});async function hi(e,t={}){const n=t.document||e.resolvedOptions.document;if(!n||!e.dirty)return;const r={shouldRender:!0,tags:[]};if(await e.hooks.callHook("dom:beforeRender",r),!!r.shouldRender)return e._domUpdatePromise||(e._domUpdatePromise=new Promise(async o=>{const s=new Map,i=new Promise(p=>{e.resolveTags().then(h=>{p(h.map(y=>{const E=s.get(y._d)||0,w={tag:y,id:(E?`${y._d}:${E}`:y._d)||y._h,shouldRender:!0};return y._d&&pu(y._d)&&s.set(y._d,E+1),w}))})});let l=e._dom;if(!l){l={title:n.title,elMap:new Map().set("htmlAttrs",n.documentElement).set("bodyAttrs",n.body)};for(const p of["body","head"]){const h=n[p]?.children;for(const y of h){const E=y.tagName.toLowerCase();if(!Ps.has(E))continue;const w=gu({tag:E,props:{}},{innerHTML:y.innerHTML,...y.getAttributeNames().reduce((b,g)=>(b[g]=y.getAttribute(g),b),{})||{}});if(w.key=y.getAttribute("data-hid")||void 0,w._d=ks(w)||hu(w),l.elMap.has(w._d)){let b=1,g=w._d;for(;l.elMap.has(g);)g=`${w._d}:${b++}`;l.elMap.set(g,y)}else l.elMap.set(w._d,y)}}}l.pendingSideEffects={...l.sideEffects},l.sideEffects={};function a(p,h,y){const E=`${p}:${h}`;l.sideEffects[E]=y,delete l.pendingSideEffects[E]}function u({id:p,$el:h,tag:y}){const E=y.tag.endsWith("Attrs");l.elMap.set(p,h),E||(y.textContent&&y.textContent!==h.textContent&&(h.textContent=y.textContent),y.innerHTML&&y.innerHTML!==h.innerHTML&&(h.innerHTML=y.innerHTML),a(p,"el",()=>{h?.remove(),l.elMap.delete(p)}));for(const w in y.props){if(!Object.prototype.hasOwnProperty.call(y.props,w))continue;const b=y.props[w];if(w.startsWith("on")&&typeof b=="function"){const _=h?.dataset;if(_&&_[`${w}fired`]){const S=w.slice(0,-5);b.call(h,new Event(S.substring(2)))}h.getAttribute(`data-${w}`)!==""&&((y.tag==="bodyAttrs"?n.defaultView:h).addEventListener(w.substring(2),b.bind(h)),h.setAttribute(`data-${w}`,""));continue}const g=`attr:${w}`;if(w==="class"){if(!b)continue;for(const _ of b)E&&a(p,`${g}:${_}`,()=>h.classList.remove(_)),!h.classList.contains(_)&&h.classList.add(_)}else if(w==="style"){if(!b)continue;for(const[_,S]of b)a(p,`${g}:${_}`,()=>{h.style.removeProperty(_)}),h.style.setProperty(_,S)}else b!==!1&&b!==null&&(h.getAttribute(w)!==b&&h.setAttribute(w,b===!0?"":String(b)),E&&a(p,g,()=>h.removeAttribute(w)))}}const c=[],f={bodyClose:void 0,bodyOpen:void 0,head:void 0},d=await i;for(const p of d){const{tag:h,shouldRender:y,id:E}=p;if(y){if(h.tag==="title"){n.title=h.textContent,a("title","",()=>n.title=l.title);continue}p.$el=p.$el||l.elMap.get(E),p.$el?u(p):Ps.has(h.tag)&&c.push(p)}}for(const p of c){const h=p.tag.tagPosition||"head";p.$el=n.createElement(p.tag.tag),u(p),f[h]=f[h]||n.createDocumentFragment(),f[h].appendChild(p.$el)}for(const p of d)await e.hooks.callHook("dom:renderTag",p,n,a);f.head&&n.head.appendChild(f.head),f.bodyOpen&&n.body.insertBefore(f.bodyOpen,n.body.firstChild),f.bodyClose&&n.body.appendChild(f.bodyClose);for(const p in l.pendingSideEffects)l.pendingSideEffects[p]();e._dom=l,await e.hooks.callHook("dom:rendered",{renders:d}),o()}).finally(()=>{e._domUpdatePromise=void 0,e.dirty=!1})),e._domUpdatePromise}function lm(e={}){const t=e.domOptions?.render||hi;e.document=e.document||(typeof window<"u"?document:void 0);const n=e.document?.head.querySelector('script[id="unhead:payload"]')?.innerHTML||!1;return Vg({...e,plugins:[...e.plugins||[],{key:"client",hooks:{"entries:updated":t}}],init:[n?JSON.parse(n):!1,...e.init||[]]})}function am(e,t){let n=0;return()=>{const r=++n;t(()=>{n===r&&e()})}}function cm(e={}){const t=lm({domOptions:{render:am(()=>hi(t),n=>setTimeout(n,0))},...e});return t.install=Kg(t),t}const um={disableDefaults:!0},fm=Tt({name:"nuxt:head",enforce:"pre",setup(e){const t=cm(um);e.vueApp.use(t);{let n=!0;const r=async()=>{n=!1,await hi(t)};t.hooks.hook("dom:beforeRender",o=>{o.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)}}});const En=typeof document<"u";function _u(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function dm(e){return e.__esModule||e[Symbol.toStringTag]==="Module"||e.default&&_u(e.default)}const ie=Object.assign;function Yo(e,t){const n={};for(const r in t){const o=t[r];n[r]=ft(o)?o.map(e):e(o)}return n}const ar=()=>{},ft=Array.isArray;function Al(e,t){const n={};for(const r in e)n[r]=r in t?t[r]:e[r];return n}const vu=/#/g,pm=/&/g,hm=/\//g,gm=/=/g,mm=/\?/g,bu=/\+/g,ym=/%5B/g,_m=/%5D/g,wu=/%5E/g,vm=/%60/g,Eu=/%7B/g,bm=/%7C/g,Su=/%7D/g,wm=/%20/g;function gi(e){return e==null?"":encodeURI(""+e).replace(bm,"|").replace(ym,"[").replace(_m,"]")}function Em(e){return gi(e).replace(Eu,"{").replace(Su,"}").replace(wu,"^")}function Os(e){return gi(e).replace(bu,"%2B").replace(wm,"+").replace(vu,"%23").replace(pm,"%26").replace(vm,"`").replace(Eu,"{").replace(Su,"}").replace(wu,"^")}function Sm(e){return Os(e).replace(gm,"%3D")}function Tm(e){return gi(e).replace(vu,"%23").replace(mm,"%3F")}function Am(e){return Tm(e).replace(hm,"%2F")}function mr(e){if(e==null)return null;try{return decodeURIComponent(""+e)}catch{}return""+e}const Cm=/\/$/,Rm=e=>e.replace(Cm,"");function Xo(e,t,n="/"){let r,o={},s="",i="";const l=t.indexOf("#");let a=t.indexOf("?");return a=l>=0&&a>l?-1:a,a>=0&&(r=t.slice(0,a),s=t.slice(a,l>0?l:t.length),o=e(s.slice(1))),l>=0&&(r=r||t.slice(0,l),i=t.slice(l,t.length)),r=Om(r??t,n),{fullPath:r+s+i,path:r,query:o,hash:mr(i)}}function xm(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function Cl(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function Pm(e,t,n){const r=t.matched.length-1,o=n.matched.length-1;return r>-1&&r===o&&Ln(t.matched[r],n.matched[o])&&Tu(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function Ln(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function Tu(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(var n in e)if(!km(e[n],t[n]))return!1;return!0}function km(e,t){return ft(e)?Rl(e,t):ft(t)?Rl(t,e):e?.valueOf()===t?.valueOf()}function Rl(e,t){return ft(t)?e.length===t.length&&e.every((n,r)=>n===t[r]):e.length===1&&e[0]===t}function Om(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),r=e.split("/"),o=r[r.length-1];(o===".."||o===".")&&r.push("");let s=n.length-1,i,l;for(i=0;i<r.length;i++)if(l=r[i],l!==".")if(l==="..")s>1&&s--;else break;return n.slice(0,s).join("/")+"/"+r.slice(i).join("/")}const et={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0};let Is=(function(e){return e.pop="pop",e.push="push",e})({}),Zo=(function(e){return e.back="back",e.forward="forward",e.unknown="",e})({});function Im(e){if(!e)if(En){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),Rm(e)}const Nm=/^[^#]+#/;function Mm(e,t){return e.replace(Nm,"#")+t}function Lm(e,t){const n=document.documentElement.getBoundingClientRect(),r=e.getBoundingClientRect();return{behavior:t.behavior,left:r.left-n.left-(t.left||0),top:r.top-n.top-(t.top||0)}}const No=()=>({left:window.scrollX,top:window.scrollY});function Hm(e){let t;if("el"in e){const n=e.el,r=typeof n=="string"&&n.startsWith("#"),o=typeof n=="string"?r?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!o)return;t=Lm(o,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.scrollX,t.top!=null?t.top:window.scrollY)}function xl(e,t){return(history.state?history.state.position-t:-1)+e}const Ns=new Map;function jm(e,t){Ns.set(e,t)}function Fm(e){const t=Ns.get(e);return Ns.delete(e),t}function Dm(e){return typeof e=="string"||e&&typeof e=="object"}function Au(e){return typeof e=="string"||typeof e=="symbol"}let _e=(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})({});const Cu=Symbol("");_e.MATCHER_NOT_FOUND+"",_e.NAVIGATION_GUARD_REDIRECT+"",_e.NAVIGATION_ABORTED+"",_e.NAVIGATION_CANCELLED+"",_e.NAVIGATION_DUPLICATED+"";function Hn(e,t){return ie(new Error,{type:e,[Cu]:!0},t)}function Rt(e,t){return e instanceof Error&&Cu in e&&(t==null||!!(e.type&t))}const Bm=["params","query","hash"];function $m(e){if(typeof e=="string")return e;if(e.path!=null)return e.path;const t={};for(const n of Bm)n in e&&(t[n]=e[n]);return JSON.stringify(t,null,2)}function Um(e){const t={};if(e===""||e==="?")return t;const n=(e[0]==="?"?e.slice(1):e).split("&");for(let r=0;r<n.length;++r){const o=n[r].replace(bu," "),s=o.indexOf("="),i=mr(s<0?o:o.slice(0,s)),l=s<0?null:mr(o.slice(s+1));if(i in t){let a=t[i];ft(a)||(a=t[i]=[a]),a.push(l)}else t[i]=l}return t}function Pl(e){let t="";for(let n in e){const r=e[n];if(n=Sm(n),r==null){r!==void 0&&(t+=(t.length?"&":"")+n);continue}(ft(r)?r.map(o=>o&&Os(o)):[r&&Os(r)]).forEach(o=>{o!==void 0&&(t+=(t.length?"&":"")+n,o!=null&&(t+="="+o))})}return t}function Vm(e){const t={};for(const n in e){const r=e[n];r!==void 0&&(t[n]=ft(r)?r.map(o=>o==null?null:""+o):r==null?r:""+r)}return t}const Wm=Symbol(""),kl=Symbol(""),mi=Symbol(""),yi=Symbol(""),Ms=Symbol("");function Jn(){let e=[];function t(r){return e.push(r),()=>{const o=e.indexOf(r);o>-1&&e.splice(o,1)}}function n(){e=[]}return{add:t,list:()=>e.slice(),reset:n}}function Ut(e,t,n,r,o,s=i=>i()){const i=r&&(r.enterCallbacks[o]=r.enterCallbacks[o]||[]);return()=>new Promise((l,a)=>{const u=d=>{d===!1?a(Hn(_e.NAVIGATION_ABORTED,{from:n,to:t})):d instanceof Error?a(d):Dm(d)?a(Hn(_e.NAVIGATION_GUARD_REDIRECT,{from:t,to:d})):(i&&r.enterCallbacks[o]===i&&typeof d=="function"&&i.push(d),l())},c=s(()=>e.call(r&&r.instances[o],t,n,u));let f=Promise.resolve(c);e.length<3&&(f=f.then(u)),f.catch(d=>a(d))})}function es(e,t,n,r,o=s=>s()){const s=[];for(const i of e)for(const l in i.components){let a=i.components[l];if(!(t!=="beforeRouteEnter"&&!i.instances[l]))if(_u(a)){const u=(a.__vccOpts||a)[t];u&&s.push(Ut(u,n,r,i,l,o))}else{let u=a();s.push(()=>u.then(c=>{if(!c)throw new Error(`Couldn't resolve component "${l}" at "${i.path}"`);const f=dm(c)?c.default:c;i.mods[l]=c,i.components[l]=f;const d=(f.__vccOpts||f)[t];return d&&Ut(d,n,r,i,l,o)()}))}}return s}function Km(e,t){const n=[],r=[],o=[],s=Math.max(t.matched.length,e.matched.length);for(let i=0;i<s;i++){const l=t.matched[i];l&&(e.matched.find(u=>Ln(u,l))?r.push(l):n.push(l));const a=e.matched[i];a&&(t.matched.find(u=>Ln(u,a))||o.push(a))}return[n,r,o]}let Gm=()=>location.protocol+"//"+location.host;function Ru(e,t){const{pathname:n,search:r,hash:o}=t,s=e.indexOf("#");if(s>-1){let i=o.includes(e.slice(s))?e.slice(s).length:1,l=o.slice(i);return l[0]!=="/"&&(l="/"+l),Cl(l,"")}return Cl(n,e)+r+o}function qm(e,t,n,r){let o=[],s=[],i=null;const l=({state:d})=>{const p=Ru(e,location),h=n.value,y=t.value;let E=0;if(d){if(n.value=p,t.value=d,i&&i===h){i=null;return}E=y?d.position-y.position:0}else r(p);o.forEach(w=>{w(n.value,h,{delta:E,type:Is.pop,direction:E?E>0?Zo.forward:Zo.back:Zo.unknown})})};function a(){i=n.value}function u(d){o.push(d);const p=()=>{const h=o.indexOf(d);h>-1&&o.splice(h,1)};return s.push(p),p}function c(){if(document.visibilityState==="hidden"){const{history:d}=window;if(!d.state)return;d.replaceState(ie({},d.state,{scroll:No()}),"")}}function f(){for(const d of s)d();s=[],window.removeEventListener("popstate",l),window.removeEventListener("pagehide",c),document.removeEventListener("visibilitychange",c)}return window.addEventListener("popstate",l),window.addEventListener("pagehide",c),document.addEventListener("visibilitychange",c),{pauseListeners:a,listen:u,destroy:f}}function Ol(e,t,n,r=!1,o=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:o?No():null}}function zm(e){const{history:t,location:n}=window,r={value:Ru(e,n)},o={value:t.state};o.value||s(r.value,{back:null,current:r.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function s(a,u,c){const f=e.indexOf("#"),d=f>-1?(n.host&&document.querySelector("base")?e:e.slice(f))+a:Gm()+e+a;try{t[c?"replaceState":"pushState"](u,"",d),o.value=u}catch(p){console.error(p),n[c?"replace":"assign"](d)}}function i(a,u){s(a,ie({},t.state,Ol(o.value.back,a,o.value.forward,!0),u,{position:o.value.position}),!0),r.value=a}function l(a,u){const c=ie({},o.value,t.state,{forward:a,scroll:No()});s(c.current,c,!0),s(a,ie({},Ol(r.value,a,null),{position:c.position+1},u),!1),r.value=a}return{location:r,state:o,push:l,replace:i}}function Jm(e){e=Im(e);const t=zm(e),n=qm(e,t.state,t.location,t.replace);function r(s,i=!0){i||n.pauseListeners(),history.go(s)}const o=ie({location:"",base:e,go:r,createHref:Mm.bind(null,e)},t,n);return Object.defineProperty(o,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(o,"state",{enumerable:!0,get:()=>t.state.value}),o}let rn=(function(e){return e[e.Static=0]="Static",e[e.Param=1]="Param",e[e.Group=2]="Group",e})({});var Re=(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})(Re||{});const Qm={type:rn.Static,value:""},Ym=/[a-zA-Z0-9_]/;function Xm(e){if(!e)return[[]];if(e==="/")return[[Qm]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(p){throw new Error(`ERR (${n})/"${u}": ${p}`)}let n=Re.Static,r=n;const o=[];let s;function i(){s&&o.push(s),s=[]}let l=0,a,u="",c="";function f(){u&&(n===Re.Static?s.push({type:rn.Static,value:u}):n===Re.Param||n===Re.ParamRegExp||n===Re.ParamRegExpEnd?(s.length>1&&(a==="*"||a==="+")&&t(`A repeatable param (${u}) must be alone in its segment. eg: '/:ids+.`),s.push({type:rn.Param,value:u,regexp:c,repeatable:a==="*"||a==="+",optional:a==="*"||a==="?"})):t("Invalid state to consume buffer"),u="")}function d(){u+=a}for(;l<e.length;){if(a=e[l++],a==="\\"&&n!==Re.ParamRegExp){r=n,n=Re.EscapeNext;continue}switch(n){case Re.Static:a==="/"?(u&&f(),i()):a===":"?(f(),n=Re.Param):d();break;case Re.EscapeNext:d(),n=r;break;case Re.Param:a==="("?n=Re.ParamRegExp:Ym.test(a)?d():(f(),n=Re.Static,a!=="*"&&a!=="?"&&a!=="+"&&l--);break;case Re.ParamRegExp:a===")"?c[c.length-1]=="\\"?c=c.slice(0,-1)+a:n=Re.ParamRegExpEnd:c+=a;break;case Re.ParamRegExpEnd:f(),n=Re.Static,a!=="*"&&a!=="?"&&a!=="+"&&l--,c="";break;default:t("Unknown state");break}}return n===Re.ParamRegExp&&t(`Unfinished custom RegExp for param "${u}"`),f(),i(),o}const Il="[^/]+?",Zm={sensitive:!1,strict:!1,start:!0,end:!0};var Fe=(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})(Fe||{});const ey=/[.+*?^${}()[\]/\\]/g;function ty(e,t){const n=ie({},Zm,t),r=[];let o=n.start?"^":"";const s=[];for(const u of e){const c=u.length?[]:[Fe.Root];n.strict&&!u.length&&(o+="/");for(let f=0;f<u.length;f++){const d=u[f];let p=Fe.Segment+(n.sensitive?Fe.BonusCaseSensitive:0);if(d.type===rn.Static)f||(o+="/"),o+=d.value.replace(ey,"\\$&"),p+=Fe.Static;else if(d.type===rn.Param){const{value:h,repeatable:y,optional:E,regexp:w}=d;s.push({name:h,repeatable:y,optional:E});const b=w||Il;if(b!==Il){p+=Fe.BonusCustomRegExp;try{`${b}`}catch(_){throw new Error(`Invalid custom RegExp for param "${h}" (${b}): `+_.message)}}let g=y?`((?:${b})(?:/(?:${b}))*)`:`(${b})`;f||(g=E&&u.length<2?`(?:/${g})`:"/"+g),E&&(g+="?"),o+=g,p+=Fe.Dynamic,E&&(p+=Fe.BonusOptional),y&&(p+=Fe.BonusRepeatable),b===".*"&&(p+=Fe.BonusWildcard)}c.push(p)}r.push(c)}if(n.strict&&n.end){const u=r.length-1;r[u][r[u].length-1]+=Fe.BonusStrict}n.strict||(o+="/?"),n.end?o+="$":n.strict&&!o.endsWith("/")&&(o+="(?:/|$)");const i=new RegExp(o,n.sensitive?"":"i");function l(u){const c=u.match(i),f={};if(!c)return null;for(let d=1;d<c.length;d++){const p=c[d]||"",h=s[d-1];f[h.name]=p&&h.repeatable?p.split("/"):p}return f}function a(u){let c="",f=!1;for(const d of e){(!f||!c.endsWith("/"))&&(c+="/"),f=!1;for(const p of d)if(p.type===rn.Static)c+=p.value;else if(p.type===rn.Param){const{value:h,repeatable:y,optional:E}=p,w=h in u?u[h]:"";if(ft(w)&&!y)throw new Error(`Provided param "${h}" is an array but it is not repeatable (* or + modifiers)`);const b=ft(w)?w.join("/"):w;if(!b)if(E)d.length<2&&(c.endsWith("/")?c=c.slice(0,-1):f=!0);else throw new Error(`Missing required param "${h}"`);c+=b}}return c||"/"}return{re:i,score:r,keys:s,parse:l,stringify:a}}function ny(e,t){let n=0;for(;n<e.length&&n<t.length;){const r=t[n]-e[n];if(r)return r;n++}return e.length<t.length?e.length===1&&e[0]===Fe.Static+Fe.Segment?-1:1:e.length>t.length?t.length===1&&t[0]===Fe.Static+Fe.Segment?1:-1:0}function xu(e,t){let n=0;const r=e.score,o=t.score;for(;n<r.length&&n<o.length;){const s=ny(r[n],o[n]);if(s)return s;n++}if(Math.abs(o.length-r.length)===1){if(Nl(r))return 1;if(Nl(o))return-1}return o.length-r.length}function Nl(e){const t=e[e.length-1];return e.length>0&&t[t.length-1]<0}const ry={strict:!1,end:!0,sensitive:!1};function oy(e,t,n){const r=ty(Xm(e.path),n),o=ie(r,{record:e,parent:t,children:[],alias:[]});return t&&!o.record.aliasOf==!t.record.aliasOf&&t.children.push(o),o}function sy(e,t){const n=[],r=new Map;t=Al(ry,t);function o(f){return r.get(f)}function s(f,d,p){const h=!p,y=Ll(f);y.aliasOf=p&&p.record;const E=Al(t,f),w=[y];if("alias"in f){const _=typeof f.alias=="string"?[f.alias]:f.alias;for(const S of _)w.push(Ll(ie({},y,{components:p?p.record.components:y.components,path:S,aliasOf:p?p.record:y})))}let b,g;for(const _ of w){const{path:S}=_;if(d&&S[0]!=="/"){const T=d.record.path,C=T[T.length-1]==="/"?"":"/";_.path=d.record.path+(S&&C+S)}if(b=oy(_,d,E),p?p.alias.push(b):(g=g||b,g!==b&&g.alias.push(b),h&&f.name&&!Hl(b)&&i(f.name)),Pu(b)&&a(b),y.children){const T=y.children;for(let C=0;C<T.length;C++)s(T[C],b,p&&p.children[C])}p=p||b}return g?()=>{i(g)}:ar}function i(f){if(Au(f)){const d=r.get(f);d&&(r.delete(f),n.splice(n.indexOf(d),1),d.children.forEach(i),d.alias.forEach(i))}else{const d=n.indexOf(f);d>-1&&(n.splice(d,1),f.record.name&&r.delete(f.record.name),f.children.forEach(i),f.alias.forEach(i))}}function l(){return n}function a(f){const d=ay(f,n);n.splice(d,0,f),f.record.name&&!Hl(f)&&r.set(f.record.name,f)}function u(f,d){let p,h={},y,E;if("name"in f&&f.name){if(p=r.get(f.name),!p)throw Hn(_e.MATCHER_NOT_FOUND,{location:f});E=p.record.name,h=ie(Ml(d.params,p.keys.filter(g=>!g.optional).concat(p.parent?p.parent.keys.filter(g=>g.optional):[]).map(g=>g.name)),f.params&&Ml(f.params,p.keys.map(g=>g.name))),y=p.stringify(h)}else if(f.path!=null)y=f.path,p=n.find(g=>g.re.test(y)),p&&(h=p.parse(y),E=p.record.name);else{if(p=d.name?r.get(d.name):n.find(g=>g.re.test(d.path)),!p)throw Hn(_e.MATCHER_NOT_FOUND,{location:f,currentLocation:d});E=p.record.name,h=ie({},d.params,f.params),y=p.stringify(h)}const w=[];let b=p;for(;b;)w.unshift(b.record),b=b.parent;return{name:E,path:y,params:h,matched:w,meta:ly(w)}}e.forEach(f=>s(f));function c(){n.length=0,r.clear()}return{addRoute:s,resolve:u,removeRoute:i,clearRoutes:c,getRoutes:l,getRecordMatcher:o}}function Ml(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}function Ll(e){const t={path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:e.aliasOf,beforeEnter:e.beforeEnter,props:iy(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 iy(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const r in e.components)t[r]=typeof n=="object"?n[r]:n;return t}function Hl(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function ly(e){return e.reduce((t,n)=>ie(t,n.meta),{})}function ay(e,t){let n=0,r=t.length;for(;n!==r;){const s=n+r>>1;xu(e,t[s])<0?r=s:n=s+1}const o=cy(e);return o&&(r=t.lastIndexOf(o,r-1)),r}function cy(e){let t=e;for(;t=t.parent;)if(Pu(t)&&xu(e,t)===0)return t}function Pu({record:e}){return!!(e.name||e.components&&Object.keys(e.components).length||e.redirect)}function jl(e){const t=be(mi),n=be(yi),r=ge(()=>{const a=oe(e.to);return t.resolve(a)}),o=ge(()=>{const{matched:a}=r.value,{length:u}=a,c=a[u-1],f=n.matched;if(!c||!f.length)return-1;const d=f.findIndex(Ln.bind(null,c));if(d>-1)return d;const p=Fl(a[u-2]);return u>1&&Fl(c)===p&&f[f.length-1].path!==p?f.findIndex(Ln.bind(null,a[u-2])):d}),s=ge(()=>o.value>-1&&hy(n.params,r.value.params)),i=ge(()=>o.value>-1&&o.value===n.matched.length-1&&Tu(n.params,r.value.params));function l(a={}){if(py(a)){const u=t[oe(e.replace)?"replace":"push"](oe(e.to)).catch(ar);return e.viewTransition&&typeof document<"u"&&"startViewTransition"in document&&document.startViewTransition(()=>u),u}return Promise.resolve()}return{route:r,href:ge(()=>r.value.href),isActive:s,isExactActive:i,navigate:l}}function uy(e){return e.length===1?e[0]:e}const fy=ke({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:jl,setup(e,{slots:t}){const n=nt(jl(e)),{options:r}=be(mi),o=ge(()=>({[Dl(e.activeClass,r.linkActiveClass,"router-link-active")]:n.isActive,[Dl(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const s=t.default&&uy(t.default(n));return e.custom?s:Oe("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:o.value},s)}}}),dy=fy;function py(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function hy(e,t){for(const n in t){const r=t[n],o=e[n];if(typeof r=="string"){if(r!==o)return!1}else if(!ft(o)||o.length!==r.length||r.some((s,i)=>s.valueOf()!==o[i].valueOf()))return!1}return!0}function Fl(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const Dl=(e,t,n)=>e??t??n,gy=ke({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const r=be(Ms),o=ge(()=>e.route||r.value),s=be(kl,0),i=ge(()=>{let u=oe(s);const{matched:c}=o.value;let f;for(;(f=c[u])&&!f.components;)u++;return u}),l=ge(()=>o.value.matched[i.value]);at(kl,ge(()=>i.value+1)),at(Wm,l),at(Ms,o);const a=Te();return Ne(()=>[a.value,l.value,e.name],([u,c,f],[d,p,h])=>{c&&(c.instances[f]=u,p&&p!==c&&u&&u===d&&(c.leaveGuards.size||(c.leaveGuards=p.leaveGuards),c.updateGuards.size||(c.updateGuards=p.updateGuards))),u&&c&&(!p||!Ln(c,p)||!d)&&(c.enterCallbacks[f]||[]).forEach(y=>y(u))},{flush:"post"}),()=>{const u=o.value,c=e.name,f=l.value,d=f&&f.components[c];if(!d)return Bl(n.default,{Component:d,route:u});const p=f.props[c],h=p?p===!0?u.params:typeof p=="function"?p(u):p:null,E=Oe(d,ie({},h,t,{onVnodeUnmounted:w=>{w.component.isUnmounted&&(f.instances[c]=null)},ref:a}));return Bl(n.default,{Component:E,route:u})||E}}});function Bl(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const ku=gy;function my(e){const t=sy(e.routes,e),n=e.parseQuery||Um,r=e.stringifyQuery||Pl,o=e.history,s=Jn(),i=Jn(),l=Jn(),a=xe(et);let u=et;En&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const c=Yo.bind(null,P=>""+P),f=Yo.bind(null,Am),d=Yo.bind(null,mr);function p(P,G){let V,J;return Au(P)?(V=t.getRecordMatcher(P),J=G):J=P,t.addRoute(J,V)}function h(P){const G=t.getRecordMatcher(P);G&&t.removeRoute(G)}function y(){return t.getRoutes().map(P=>P.record)}function E(P){return!!t.getRecordMatcher(P)}function w(P,G){if(G=ie({},G||a.value),typeof P=="string"){const v=Xo(n,P,G.path),A=t.resolve({path:v.path},G),I=o.createHref(v.fullPath);return ie(v,A,{params:d(A.params),hash:mr(v.hash),redirectedFrom:void 0,href:I})}let V;if(P.path!=null)V=ie({},P,{path:Xo(n,P.path,G.path).path});else{const v=ie({},P.params);for(const A in v)v[A]==null&&delete v[A];V=ie({},P,{params:f(v)}),G.params=f(G.params)}const J=t.resolve(V,G),te=P.hash||"";J.params=c(d(J.params));const he=xm(r,ie({},P,{hash:Em(te),path:J.path})),m=o.createHref(he);return ie({fullPath:he,hash:te,query:r===Pl?Vm(P.query):P.query||{}},J,{redirectedFrom:void 0,href:m})}function b(P){return typeof P=="string"?Xo(n,P,a.value.path):ie({},P)}function g(P,G){if(u!==P)return Hn(_e.NAVIGATION_CANCELLED,{from:G,to:P})}function _(P){return C(P)}function S(P){return _(ie(b(P),{replace:!0}))}function T(P,G){const V=P.matched[P.matched.length-1];if(V&&V.redirect){const{redirect:J}=V;let te=typeof J=="function"?J(P,G):J;return typeof te=="string"&&(te=te.includes("?")||te.includes("#")?te=b(te):{path:te},te.params={}),ie({query:P.query,hash:P.hash,params:te.path!=null?{}:P.params},te)}}function C(P,G){const V=u=w(P),J=a.value,te=P.state,he=P.force,m=P.replace===!0,v=T(V,J);if(v)return C(ie(b(v),{state:typeof v=="object"?ie({},te,v.state):te,force:he,replace:m}),G||V);const A=V;A.redirectedFrom=G;let I;return!he&&Pm(r,J,V)&&(I=Hn(_e.NAVIGATION_DUPLICATED,{to:A,from:J}),dt(J,J,!0,!1)),(I?Promise.resolve(I):k(A,J)).catch(x=>Rt(x)?Rt(x,_e.NAVIGATION_GUARD_REDIRECT)?x:Ft(x):K(x,A,J)).then(x=>{if(x){if(Rt(x,_e.NAVIGATION_GUARD_REDIRECT))return C(ie({replace:m},b(x.to),{state:typeof x.to=="object"?ie({},te,x.to.state):te,force:he}),G||A)}else x=R(A,J,!0,m,te);return U(A,J,x),x})}function N(P,G){const V=g(P,G);return V?Promise.reject(V):Promise.resolve()}function O(P){const G=_n.values().next().value;return G&&typeof G.runWithContext=="function"?G.runWithContext(P):P()}function k(P,G){let V;const[J,te,he]=Km(P,G);V=es(J.reverse(),"beforeRouteLeave",P,G);for(const v of J)v.leaveGuards.forEach(A=>{V.push(Ut(A,P,G))});const m=N.bind(null,P,G);return V.push(m),Xe(V).then(()=>{V=[];for(const v of s.list())V.push(Ut(v,P,G));return V.push(m),Xe(V)}).then(()=>{V=es(te,"beforeRouteUpdate",P,G);for(const v of te)v.updateGuards.forEach(A=>{V.push(Ut(A,P,G))});return V.push(m),Xe(V)}).then(()=>{V=[];for(const v of he)if(v.beforeEnter)if(ft(v.beforeEnter))for(const A of v.beforeEnter)V.push(Ut(A,P,G));else V.push(Ut(v.beforeEnter,P,G));return V.push(m),Xe(V)}).then(()=>(P.matched.forEach(v=>v.enterCallbacks={}),V=es(he,"beforeRouteEnter",P,G,O),V.push(m),Xe(V))).then(()=>{V=[];for(const v of i.list())V.push(Ut(v,P,G));return V.push(m),Xe(V)}).catch(v=>Rt(v,_e.NAVIGATION_CANCELLED)?v:Promise.reject(v))}function U(P,G,V){l.list().forEach(J=>O(()=>J(P,G,V)))}function R(P,G,V,J,te){const he=g(P,G);if(he)return he;const m=G===et,v=En?history.state:{};V&&(J||m?o.replace(P.fullPath,ie({scroll:m&&v&&v.scroll},te)):o.push(P.fullPath,te)),a.value=P,dt(P,G,V,m),Ft()}let H;function D(){H||(H=o.listen((P,G,V)=>{if(!zt.listening)return;const J=w(P),te=T(J,zt.currentRoute.value);if(te){C(ie(te,{replace:!0,force:!0}),J).catch(ar);return}u=J;const he=a.value;En&&jm(xl(he.fullPath,V.delta),No()),k(J,he).catch(m=>Rt(m,_e.NAVIGATION_ABORTED|_e.NAVIGATION_CANCELLED)?m:Rt(m,_e.NAVIGATION_GUARD_REDIRECT)?(C(ie(b(m.to),{force:!0}),J).then(v=>{Rt(v,_e.NAVIGATION_ABORTED|_e.NAVIGATION_DUPLICATED)&&!V.delta&&V.type===Is.pop&&o.go(-1,!1)}).catch(ar),Promise.reject()):(V.delta&&o.go(-V.delta,!1),K(m,J,he))).then(m=>{m=m||R(J,he,!1),m&&(V.delta&&!Rt(m,_e.NAVIGATION_CANCELLED)?o.go(-V.delta,!1):V.type===Is.pop&&Rt(m,_e.NAVIGATION_ABORTED|_e.NAVIGATION_DUPLICATED)&&o.go(-1,!1)),U(J,he,m)}).catch(ar)}))}let z=Jn(),F=Jn(),Z;function K(P,G,V){Ft(P);const J=F.list();return J.length?J.forEach(te=>te(P,G,V)):console.error(P),Promise.reject(P)}function ue(){return Z&&a.value!==et?Promise.resolve():new Promise((P,G)=>{z.add([P,G])})}function Ft(P){return Z||(Z=!P,D(),z.list().forEach(([G,V])=>P?V(P):G()),z.reset()),P}function dt(P,G,V,J){const{scrollBehavior:te}=e;if(!En||!te)return Promise.resolve();const he=!V&&Fm(xl(P.fullPath,0))||(J||!V)&&history.state&&history.state.scroll||null;return Et().then(()=>te(P,G,he)).then(m=>m&&Hm(m)).catch(m=>K(m,P,G))}const Ve=P=>o.go(P);let yn;const _n=new Set,zt={currentRoute:a,listening:!0,addRoute:p,removeRoute:h,clearRoutes:t.clearRoutes,hasRoute:E,getRoutes:y,resolve:w,options:e,push:_,replace:S,go:Ve,back:()=>Ve(-1),forward:()=>Ve(1),beforeEach:s.add,beforeResolve:i.add,afterEach:l.add,onError:F.add,isReady:ue,install(P){P.component("RouterLink",dy),P.component("RouterView",ku),P.config.globalProperties.$router=zt,Object.defineProperty(P.config.globalProperties,"$route",{enumerable:!0,get:()=>oe(a)}),En&&!yn&&a.value===et&&(yn=!0,_(o.location).catch(J=>{}));const G={};for(const J in et)Object.defineProperty(G,J,{get:()=>a.value[J],enumerable:!0});P.provide(mi,zt),P.provide(yi,st(G)),P.provide(Ms,a);const V=P.unmount;_n.add(P),P.unmount=function(){_n.delete(P),_n.size<1&&(u=et,H&&H(),H=null,a.value=et,yn=!1,Z=!1),V()}}};function Xe(P){return P.reduce((G,V)=>G.then(()=>O(V)),Promise.resolve())}return zt}function Ou(e){return be(yi)}const yy=/(:\w+)\([^)]+\)/g,_y=/(:\w+)[?+*]/g,vy=/:\w+/g,by=(e,t)=>t.path.replace(yy,"$1").replace(_y,"$1").replace(vy,n=>e.params[n.slice(1)]?.toString()||""),Ls=(e,t)=>{const n=e.route.matched.find(o=>o.components?.default===e.Component.type),r=t??n?.meta.key??(n&&by(e.route,n));return typeof r=="function"?r(e.route):r},wy=(e,t)=>({default:()=>e?Oe(md,e===!0?{}:e,t):t});function Iu(e){return Array.isArray(e)?e:[e]}const Ey="modulepreload",Sy=function(e,t){return new URL(e,t).href},$l={},fn=function(t,n,r){let o=Promise.resolve();if(n&&n.length>0){let u=function(c){return Promise.all(c.map(f=>Promise.resolve(f).then(d=>({status:"fulfilled",value:d}),d=>({status:"rejected",reason:d}))))};const i=document.getElementsByTagName("link"),l=document.querySelector("meta[property=csp-nonce]"),a=l?.nonce||l?.getAttribute("nonce");o=u(n.map(c=>{if(c=Sy(c,r),c in $l)return;$l[c]=!0;const f=c.endsWith(".css"),d=f?'[rel="stylesheet"]':"";if(r)for(let h=i.length-1;h>=0;h--){const y=i[h];if(y.href===c&&(!f||y.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${c}"]${d}`))return;const p=document.createElement("link");if(p.rel=f?"stylesheet":Ey,f||(p.as="script"),p.crossOrigin="",p.href=c,a&&p.setAttribute("nonce",a),document.head.appendChild(p),f)return new Promise((h,y)=>{p.addEventListener("load",h),p.addEventListener("error",()=>y(new Error(`Unable to preload CSS for ${c}`)))})}))}function s(i){const l=new Event("vite:preloadError",{cancelable:!0});if(l.payload=i,window.dispatchEvent(l),!l.defaultPrevented)throw i}return o.then(i=>{for(const l of i||[])l.status==="rejected"&&s(l.reason);return t().catch(s)})},Ty=["claudeCode","codex","gemini"],Nu=["claudeCode","codex","gemini","opencode","amp","droid","codebuff","hermes","pi","goose","openclaw","kilo","copilot","kimi","qwen"],cr={amp:{aiIcon:"amp",color:"#f34e3f",label:"Amp",slug:"amp"},claudeCode:{aiIcon:"claude_code",color:"#d97757",label:"Claude Code",slug:"claude_code"},codebuff:{aiIcon:"codebuff",color:"#14b8a6",label:"Codebuff",slug:"codebuff"},codex:{aiIcon:"codex",color:"#111827",label:"Codex",slug:"codex"},copilot:{aiIcon:"copilot",color:"#0f766e",label:"GitHub Copilot",slug:"copilot"},droid:{aiIcon:"droid",color:"#06b6d4",label:"Droid",slug:"droid"},gemini:{aiIcon:"gemini",color:"#0ea5e9",label:"Gemini",slug:"gemini"},goose:{aiIcon:"goose",color:"#22c55e",label:"Goose",slug:"goose"},hermes:{aiIcon:"hermes",color:"#8b5cf6",label:"Hermes",slug:"hermes"},kilo:{aiIcon:"kilo",color:"#f97316",label:"Kilo",slug:"kilo"},kimi:{aiIcon:"kimi_code",color:"#2563eb",label:"Kimi",slug:"kimi"},openclaw:{aiIcon:"openclaw",color:"#ec4899",label:"OpenClaw",slug:"openclaw"},opencode:{aiIcon:"open_code",color:"#4f46e5",label:"OpenCode",slug:"opencode"},pi:{aiIcon:"pi",color:"#a855f7",label:"Pi",slug:"pi"},qwen:{aiIcon:"qwen_code",color:"#623ae7",label:"Qwen",slug:"qwen"}},Ay=Nu.map(e=>[cr[e].slug,e]);new Map(Ay);function mb(e){return cr[e].slug}const Cy=new Set(Ty),Mu=Nu.filter(e=>Cy.has(e)).map(e=>({icon:cr[e].aiIcon,name:cr[e].label,platformKey:e,slug:cr[e].slug})),yb=Mu.map(e=>({icon:e.icon,iconType:"ai",label:e.name,link:`/${e.slug}`}));function Ry(e){return Mu.find(t=>t.slug===e)}const xy={validate:e=>typeof e.params.product=="string"&&!!Ry(e.params.product)},ts=[{name:"project",path:"/project",component:()=>fn(()=>import("./D_W11Quh.js"),__vite__mapDeps([0,1,2,3,4,5]),import.meta.url)},{name:"product",path:"/:product()",meta:xy||{},component:()=>fn(()=>import("./HiqUua3-.js"),__vite__mapDeps([6,2,1,3,7,4]),import.meta.url)},{name:"index",path:"/",component:()=>fn(()=>import("./Bv6agYS5.js"),__vite__mapDeps([8,2,1,3,7]),import.meta.url)}],Lu=(e,t)=>({default:()=>e?Oe(mp,e===!0?{}:e,t):t.default?.()}),Py=/(:\w+)\([^)]+\)/g,ky=/(:\w+)[?+*]/g,Oy=/:\w+/g;function Ul(e){const t=e?.meta.key??e.path.replace(Py,"$1").replace(ky,"$1").replace(Oy,n=>e.params[n.slice(1)]?.toString()||"");return typeof t=="function"?t(e):t}function Iy(e,t){return e===t||t===et?!1:Ul(e)!==Ul(t)?!0:!e.matched.every((r,o)=>r.components&&r.components.default===t.matched[o]?.components?.default)}function Vl(e){return Array.isArray(e)?e:[e]}function Hu(e){const t=[];for(const n of e)n&&t.push({...n,onAfterLeave:n.onAfterLeave?Vl(n.onAfterLeave):void 0,onBeforeLeave:n.onBeforeLeave?Vl(n.onBeforeLeave):void 0});return au(...t)}const Ny={scrollBehavior(e,t,n){const r=Ae(),o=rt().options?.scrollBehaviorType??"auto";return e.path.replace(/\/$/,"")===t.path.replace(/\/$/,"")?t.hash&&!e.hash?{left:0,top:0}:e.hash?{el:e.hash,top:ju(e.hash),behavior:o}:!1:(typeof e.meta.scrollToTop=="function"?e.meta.scrollToTop(e,t):e.meta.scrollToTop)===!1?!1:t===et?Wl(e,t,n,o):new Promise(i=>{const l=()=>{requestAnimationFrame(()=>i(Wl(e,t,n,o)))};r.hooks.hookOnce("page:loading:end",()=>{const a=r["~transitionPromise"];a?a.then(l):l()})})}};function ju(e){try{const t=document.querySelector(e);if(t)return(Number.parseFloat(getComputedStyle(t).scrollMarginTop)||0)+(Number.parseFloat(getComputedStyle(document.documentElement).scrollPaddingTop)||0)}catch{}return 0}function Wl(e,t,n,r){if(n)return n;const o=Iy(e,t);return e.hash?{el:e.hash,top:ju(e.hash),behavior:o?r:"instant"}:{left:0,top:0}}const My={hashMode:!1,scrollBehaviorType:"auto"},Bt={...My,...Ny},Ly=async(e,t)=>{let n,r;if(!e.meta?.validate)return;const o=([n,r]=lr(()=>Promise.resolve(e.meta.validate(e))),n=await n,r(),n);if(o===!0)return;const s=un({fatal:!0,status:o&&(o.status||o.statusCode)||404,statusText:o&&(o.statusText||o.statusMessage)||`Page Not Found: ${e.fullPath}`,data:{path:e.fullPath}});return typeof window<"u"&&window.history.pushState({},"",t.fullPath),s},Hy=e=>{const t=yu({path:e.path});if(t.redirect){const n=t.redirect.includes("#")?t.redirect:t.redirect+e.hash;return Un(n,{acceptRelative:!0})?(window.location.href=n,!1):n}},jy=[Ly,Hy],Hs={};function Fy(e,t,n){const{pathname:r,search:o,hash:s}=t,i=e.indexOf("#");if(i>-1){const u=s.includes(e.slice(i))?e.slice(i).length:1;let c=s.slice(u);return c[0]!=="/"&&(c="/"+c),cl(c,"")}const l=cl(r,e),a=!n||Xc(l,n)?l:n;return a+(a.includes("?")?"":o)+s}const Dy=Tt({name:"nuxt:router",enforce:"pre",async setup(e){let t,n,r=Oo().app.baseURL;const o=Bt.history?.(r)??Jm(r),s=Bt.routes?([t,n]=lr(()=>Bt.routes(ts)),t=await t,n(),t??ts):ts;let i;const l=my({...Bt,scrollBehavior:(w,b,g)=>{if(b===et){i=g;return}if(Bt.scrollBehavior){if(l.options.scrollBehavior=Bt.scrollBehavior,"scrollRestoration"in window.history){const _=l.beforeEach(()=>{_(),window.history.scrollRestoration="manual"})}return Bt.scrollBehavior(w,et,i||g)}},history:o,routes:s});"scrollRestoration"in window.history&&(window.history.scrollRestoration="auto"),e.vueApp.use(l);const a=xe(l.currentRoute.value);l.afterEach((w,b)=>{a.value=b}),Object.defineProperty(e.vueApp.config.globalProperties,"previousRoute",{get:()=>a.value});const u=Fy(r,window.location,e.payload.path),c=xe(l.currentRoute.value),f=()=>{c.value=l.currentRoute.value};l.afterEach((w,b)=>{w.matched.at(-1)?.components?.default===b.matched.at(-1)?.components?.default&&f()});const d={sync:f};for(const w in c.value)Object.defineProperty(d,w,{get:()=>c.value[w],enumerable:!0});e._route=st(d),e._middleware||={global:[],named:{}};const p=Io();l.afterEach(async(w,b,g)=>{delete e._processingMiddleware,!e.isHydrating&&p.value&&await e.runWithContext(dg),g&&await e.callHook("page:loading:end")});try{[t,n]=lr(()=>l.isReady()),await t,n()}catch(w){[t,n]=lr(()=>e.runWithContext(()=>tn(w))),await t,n()}const h=u!==l.currentRoute.value.fullPath?l.resolve(u):l.currentRoute.value,y=e.isHydrating&&e.payload.prerenderedAt&&e.payload.path&&u!==e.payload.path&&Xc(l.currentRoute.value.path,e.payload.path);f();const E=e.payload.state._layout;return l.beforeEach(async(w,b)=>{await e.callHook("page:loading:start"),w.meta=nt(w.meta),e.isHydrating&&E&&!wt(w.meta.layout)&&(w.meta.layout=E),e._processingMiddleware=!0;{const g=new Set([...jy,...e._middleware.global]);for(const S of w.matched){const T=S.meta.middleware;if(T)for(const C of Iu(T))g.add(C)}const _=yu({path:w.path});if(_.appMiddleware)for(const S in _.appMiddleware)_.appMiddleware[S]?g.add(S):g.delete(S);for(const S of g){const T=typeof S=="string"?e._middleware.named[S]||await Hs[S]?.().then(C=>C.default||C):S;if(!T)throw new Error(`Unknown route middleware: '${S}'.`);try{const C=await e.runWithContext(()=>T(w,b));if(!e.payload.serverRendered&&e.isHydrating&&(C===!1||C instanceof Error)){const N=C||un({status:404,statusText:`Page Not Found: ${u}`});return await e.runWithContext(()=>tn(N)),!1}if(C===!0)continue;if(C===!1)return C;if(C)return du(C)&&C.fatal&&await e.runWithContext(()=>tn(C)),C}catch(C){const N=un(C);return N.fatal&&await e.runWithContext(()=>tn(N)),N}}}}),l.onError(async()=>{delete e._processingMiddleware,await e.callHook("page:loading:end")}),l.afterEach(w=>{if(w.matched.length===0&&!p.value)return e.runWithContext(()=>tn(un({status:404,fatal:!1,statusText:`Page not found: ${w.fullPath}`,data:{path:w.fullPath}})))}),e.hooks.hookOnce("app:created",async()=>{try{if("name"in h&&(h.name=void 0),y){const w=l.resolve(e.payload.path);"name"in w&&(w.name=void 0),await l.replace({...w,force:!0}),e.hooks.hookOnce("app:suspense:resolve",async()=>{await l.replace({...h,force:!0})})}else await l.replace({...h,force:!0});l.options.scrollBehavior=Bt.scrollBehavior}catch(w){await e.runWithContext(()=>tn(w))}}),{provide:{router:l}}}}),Kl=globalThis.requestIdleCallback||(e=>{const t=Date.now(),n={didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-t))};return setTimeout(()=>{e(n)},1)}),_b=globalThis.cancelIdleCallback||(e=>{clearTimeout(e)}),Fu=e=>{const t=Ae();t.isHydrating?t.hooks.hookOnce("app:suspense:resolve",()=>{Kl(()=>e())}):Kl(()=>e())},By=Tt(()=>{const e=rt();Fu(()=>{e.beforeResolve(async()=>{await new Promise(t=>{setTimeout(t,100),requestAnimationFrame(()=>{setTimeout(t,0)})})})})}),$y=Tt(e=>{let t;async function n(){let r;try{r=await em()}catch(o){const s=o;if(!("status"in s&&(s.status===404||s.status===403)))throw s}t&&clearTimeout(t),t=setTimeout(n,yl);try{const o=await $fetch(fi("builds/latest.json")+`?${Date.now()}`);o.id!==r?.id&&(e.hooks.callHook("app:manifest:update",o),t&&clearTimeout(t))}catch{}}Fu(()=>{t=setTimeout(n,yl)})});function Uy(e={}){const t=e.path||window.location.pathname;let n={};try{n=JSON.parse(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:Ae().payload.state}))}catch{}window.location.pathname!==t?window.location.href=t:window.location.reload()}}const Vy=Tt({name:"nuxt:chunk-reload",setup(e){const t=rt(),n=Oo(),r=new Set;t.beforeEach(()=>{r.clear()}),e.hook("app:chunkError",({error:s})=>{r.add(s)});function o(s){const i=Qc(n.app.baseURL,s.fullPath);Uy({path:i,persistState:!0})}e.hook("app:manifest:update",()=>{t.beforeResolve(o)}),t.onError((s,i)=>{r.has(s)&&o(i)})}}),Wy=to(()=>fn(()=>import("./DUoLvn3A.js").then(e=>e.i),[],import.meta.url).then(e=>e.default||e.default||e)),Ky=[["Icon",Wy]],Gy=Tt({name:"nuxt:global-components",setup(e){for(const[t,n]of Ky)e.vueApp.component(t,n),e.vueApp.component("Lazy"+t,n)}}),Wt={default:to(()=>fn(()=>import("./CMWftE4h.js"),__vite__mapDeps([9,3,2,10,5]),import.meta.url).then(e=>e.default||e))};function qy(e){if(e?.__asyncLoader&&!e.__asyncResolved)return e.__asyncLoader()}async function zy(e,t=rt()){const{path:n,matched:r}=t.resolve(e);if(!r.length||(t._routePreloaded||=new Set,t._routePreloaded.has(n)))return;const o=t._preloadPromises||=[];if(o.length>4)return Promise.all(o).then(()=>zy(e,t));t._routePreloaded.add(n);for(const s of r){const i=s.components?.default;if(typeof i!="function")continue;const l=Promise.resolve(i()).catch(()=>{}).finally(()=>o.splice(o.indexOf(l),1));o.push(l)}await Promise.all(o)}const Jy=Tt({name:"nuxt:prefetch",setup(e){const t=rt();e.hooks.hook("app:mounted",()=>{t.beforeEach(async n=>{const r=n?.meta?.layout;r&&typeof Wt[r]=="function"&&await Wt[r]()})}),e.hooks.hook("link:prefetch",n=>{if(Un(n))return;const r=t.resolve(n);if(!r)return;const o=r.meta.layout;let s=Iu(r.meta.middleware);s=s.filter(i=>typeof i=="string");for(const i of s)typeof Hs[i]=="function"&&Hs[i]();typeof o=="string"&&o in Wt&&qy(Wt[o])})}}),Du=/^[a-z0-9]+(-[a-z0-9]+)*$/,Tr=(e,t,n,r="")=>{const o=e.split(":");if(e.slice(0,1)==="@"){if(o.length<2||o.length>3)return null;r=o.shift().slice(1)}if(o.length>3||!o.length)return null;if(o.length>1){const l=o.pop(),a=o.pop(),u={provider:o.length>0?o[0]:r,prefix:a,name:l};return t&&!Kr(u)?null:u}const s=o[0],i=s.split("-");if(i.length>1){const l={provider:r,prefix:i.shift(),name:i.join("-")};return t&&!Kr(l)?null:l}if(n&&r===""){const l={provider:r,prefix:"",name:s};return t&&!Kr(l,n)?null:l}return null},Kr=(e,t)=>e?!!((t&&e.prefix===""||e.prefix)&&e.name):!1,Bu=Object.freeze({left:0,top:0,width:16,height:16}),fo=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),Vn=Object.freeze({...Bu,...fo}),js=Object.freeze({...Vn,body:"",hidden:!1});function Qy(e,t){const n={};!e.hFlip!=!t.hFlip&&(n.hFlip=!0),!e.vFlip!=!t.vFlip&&(n.vFlip=!0);const r=((e.rotate||0)+(t.rotate||0))%4;return r&&(n.rotate=r),n}function Gl(e,t){const n=Qy(e,t);for(const r in js)r in fo?r in e&&!(r in n)&&(n[r]=fo[r]):r in t?n[r]=t[r]:r in e&&(n[r]=e[r]);return n}function Yy(e,t){const n=e.icons,r=e.aliases||Object.create(null),o=Object.create(null);function s(i){if(n[i])return o[i]=[];if(!(i in o)){o[i]=null;const l=r[i]&&r[i].parent,a=l&&s(l);a&&(o[i]=[l].concat(a))}return o[i]}return Object.keys(n).concat(Object.keys(r)).forEach(s),o}function Xy(e,t,n){const r=e.icons,o=e.aliases||Object.create(null);let s={};function i(l){s=Gl(r[l]||o[l],s)}return i(t),n.forEach(i),Gl(e,s)}function $u(e,t){const n=[];if(typeof e!="object"||typeof e.icons!="object")return n;e.not_found instanceof Array&&e.not_found.forEach(o=>{t(o,null),n.push(o)});const r=Yy(e);for(const o in r){const s=r[o];s&&(t(o,Xy(e,o,s)),n.push(o))}return n}const Zy={provider:"",aliases:{},not_found:{},...Bu};function ns(e,t){for(const n in t)if(n in e&&typeof e[n]!=typeof t[n])return!1;return!0}function Uu(e){if(typeof e!="object"||e===null)return null;const t=e;if(typeof t.prefix!="string"||!e.icons||typeof e.icons!="object"||!ns(e,Zy))return null;const n=t.icons;for(const o in n){const s=n[o];if(!o||typeof s.body!="string"||!ns(s,js))return null}const r=t.aliases||Object.create(null);for(const o in r){const s=r[o],i=s.parent;if(!o||typeof i!="string"||!n[i]&&!r[i]||!ns(s,js))return null}return t}const ql=Object.create(null);function e_(e,t){return{provider:e,prefix:t,icons:Object.create(null),missing:new Set}}function hn(e,t){const n=ql[e]||(ql[e]=Object.create(null));return n[t]||(n[t]=e_(e,t))}function Vu(e,t){return Uu(t)?$u(t,(n,r)=>{r?e.icons[n]=r:e.missing.add(n)}):[]}function t_(e,t,n){try{if(typeof n.body=="string")return e.icons[t]={...n},!0}catch{}return!1}let yr=!1;function Wu(e){return typeof e=="boolean"&&(yr=e),yr}function _i(e){const t=typeof e=="string"?Tr(e,!0,yr):e;if(t){const n=hn(t.provider,t.prefix),r=t.name;return n.icons[r]||(n.missing.has(r)?null:void 0)}}function n_(e,t){const n=Tr(e,!0,yr);if(!n)return!1;const r=hn(n.provider,n.prefix);return t?t_(r,n.name,t):(r.missing.add(n.name),!0)}function r_(e,t){if(typeof e!="object")return!1;if(typeof t!="string"&&(t=e.provider||""),yr&&!t&&!e.prefix){let o=!1;return Uu(e)&&(e.prefix="",$u(e,(s,i)=>{n_(s,i)&&(o=!0)})),o}const n=e.prefix;if(!Kr({prefix:n,name:"a"}))return!1;const r=hn(t,n);return!!Vu(r,e)}function vb(e){const t=_i(e);return t&&{...Vn,...t}}const Ku=Object.freeze({width:null,height:null}),Gu=Object.freeze({...Ku,...fo}),o_=/(-?[0-9.]*[0-9]+[0-9.]*)/g,s_=/^-?[0-9.]*[0-9]+[0-9.]*$/g;function zl(e,t,n){if(t===1)return e;if(n=n||100,typeof e=="number")return Math.ceil(e*t*n)/n;if(typeof e!="string")return e;const r=e.split(o_);if(r===null||!r.length)return e;const o=[];let s=r.shift(),i=s_.test(s);for(;;){if(i){const l=parseFloat(s);isNaN(l)?o.push(s):o.push(Math.ceil(l*t*n)/n)}else o.push(s);if(s=r.shift(),s===void 0)return o.join("");i=!i}}function i_(e,t="defs"){let n="";const r=e.indexOf("<"+t);for(;r>=0;){const o=e.indexOf(">",r),s=e.indexOf("</"+t);if(o===-1||s===-1)break;const i=e.indexOf(">",s);if(i===-1)break;n+=e.slice(o+1,s).trim(),e=e.slice(0,r).trim()+e.slice(i+1)}return{defs:n,content:e}}function l_(e,t){return e?"<defs>"+e+"</defs>"+t:t}function a_(e,t,n){const r=i_(e);return l_(r.defs,t+r.content+n)}const c_=e=>e==="unset"||e==="undefined"||e==="none";function u_(e,t){const n={...Vn,...e},r={...Gu,...t},o={left:n.left,top:n.top,width:n.width,height:n.height};let s=n.body;[n,r].forEach(y=>{const E=[],w=y.hFlip,b=y.vFlip;let g=y.rotate;w?b?g+=2:(E.push("translate("+(o.width+o.left).toString()+" "+(0-o.top).toString()+")"),E.push("scale(-1 1)"),o.top=o.left=0):b&&(E.push("translate("+(0-o.left).toString()+" "+(o.height+o.top).toString()+")"),E.push("scale(1 -1)"),o.top=o.left=0);let _;switch(g<0&&(g-=Math.floor(g/4)*4),g=g%4,g){case 1:_=o.height/2+o.top,E.unshift("rotate(90 "+_.toString()+" "+_.toString()+")");break;case 2:E.unshift("rotate(180 "+(o.width/2+o.left).toString()+" "+(o.height/2+o.top).toString()+")");break;case 3:_=o.width/2+o.left,E.unshift("rotate(-90 "+_.toString()+" "+_.toString()+")");break}g%2===1&&(o.left!==o.top&&(_=o.left,o.left=o.top,o.top=_),o.width!==o.height&&(_=o.width,o.width=o.height,o.height=_)),E.length&&(s=a_(s,'<g transform="'+E.join(" ")+'">',"</g>"))});const i=r.width,l=r.height,a=o.width,u=o.height;let c,f;i===null?(f=l===null?"1em":l==="auto"?u:l,c=zl(f,a/u)):(c=i==="auto"?a:i,f=l===null?zl(c,u/a):l==="auto"?u:l);const d={},p=(y,E)=>{c_(E)||(d[y]=E.toString())};p("width",c),p("height",f);const h=[o.left,o.top,a,u];return d.viewBox=h.join(" "),{attributes:d,viewBox:h,body:s}}const f_=/\sid="(\S+)"/g,d_="IconifyId"+Date.now().toString(16)+(Math.random()*16777216|0).toString(16);let p_=0;function h_(e,t=d_){const n=[];let r;for(;r=f_.exec(e);)n.push(r[1]);if(!n.length)return e;const o="suffix"+(Math.random()*16777216|Date.now()).toString(16);return n.forEach(s=>{const i=typeof t=="function"?t(s):t+(p_++).toString(),l=s.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");e=e.replace(new RegExp('([#;"])('+l+')([")]|\\.[a-z])',"g"),"$1"+i+o+"$3")}),e=e.replace(new RegExp(o,"g"),""),e}const Fs=Object.create(null);function qu(e,t){Fs[e]=t}function Ds(e){return Fs[e]||Fs[""]}function vi(e){let t;if(typeof e.resources=="string")t=[e.resources];else if(t=e.resources,!(t instanceof Array)||!t.length)return null;return{resources:t,path:e.path||"/",maxURL:e.maxURL||500,rotate:e.rotate||750,timeout:e.timeout||5e3,random:e.random===!0,index:e.index||0,dataAfterTimeout:e.dataAfterTimeout!==!1}}const Mo=Object.create(null),Qn=["https://api.simplesvg.com","https://api.unisvg.com"],Gr=[];for(;Qn.length>0;)Qn.length===1||Math.random()>.5?Gr.push(Qn.shift()):Gr.push(Qn.pop());Mo[""]=vi({resources:["https://api.iconify.design"].concat(Gr)});function zu(e,t){const n=vi(t);return n===null?!1:(Mo[e]=n,!0)}function Lo(e){return Mo[e]}function g_(){return Object.keys(Mo)}const m_=()=>{let e;try{if(e=fetch,typeof e=="function")return e}catch{}};let po=m_();function y_(e){po=e}function __(){return po}function v_(e,t){const n=Lo(e);if(!n)return 0;let r;if(!n.maxURL)r=0;else{let o=0;n.resources.forEach(i=>{o=Math.max(o,i.length)});const s=t+".json?icons=";r=n.maxURL-o-n.path.length-s.length}return r}function b_(e){return e===404}const w_=(e,t,n)=>{const r=[],o=v_(e,t),s="icons";let i={type:s,provider:e,prefix:t,icons:[]},l=0;return n.forEach((a,u)=>{l+=a.length+1,l>=o&&u>0&&(r.push(i),i={type:s,provider:e,prefix:t,icons:[]},l=a.length),i.icons.push(a)}),r.push(i),r};function E_(e){if(typeof e=="string"){const t=Lo(e);if(t)return t.path}return"/"}const S_=(e,t,n)=>{if(!po){n("abort",424);return}let r=E_(t.provider);switch(t.type){case"icons":{const s=t.prefix,l=t.icons.join(","),a=new URLSearchParams({icons:l});r+=s+".json?"+a.toString();break}case"custom":{const s=t.uri;r+=s.slice(0,1)==="/"?s.slice(1):s;break}default:n("abort",400);return}let o=503;po(e+r).then(s=>{const i=s.status;if(i!==200){setTimeout(()=>{n(b_(i)?"abort":"next",i)});return}return o=501,s.json()}).then(s=>{if(typeof s!="object"||s===null){setTimeout(()=>{s===404?n("abort",s):n("next",o)});return}setTimeout(()=>{n("success",s)})}).catch(()=>{n("next",o)})},T_={prepare:w_,send:S_};function A_(e){const t={loaded:[],missing:[],pending:[]},n=Object.create(null);e.sort((o,s)=>o.provider!==s.provider?o.provider.localeCompare(s.provider):o.prefix!==s.prefix?o.prefix.localeCompare(s.prefix):o.name.localeCompare(s.name));let r={provider:"",prefix:"",name:""};return e.forEach(o=>{if(r.name===o.name&&r.prefix===o.prefix&&r.provider===o.provider)return;r=o;const s=o.provider,i=o.prefix,l=o.name,a=n[s]||(n[s]=Object.create(null)),u=a[i]||(a[i]=hn(s,i));let c;l in u.icons?c=t.loaded:i===""||u.missing.has(l)?c=t.missing:c=t.pending;const f={provider:s,prefix:i,name:l};c.push(f)}),t}function Ju(e,t){e.forEach(n=>{const r=n.loaderCallbacks;r&&(n.loaderCallbacks=r.filter(o=>o.id!==t))})}function C_(e){e.pendingCallbacksFlag||(e.pendingCallbacksFlag=!0,setTimeout(()=>{e.pendingCallbacksFlag=!1;const t=e.loaderCallbacks?e.loaderCallbacks.slice(0):[];if(!t.length)return;let n=!1;const r=e.provider,o=e.prefix;t.forEach(s=>{const i=s.icons,l=i.pending.length;i.pending=i.pending.filter(a=>{if(a.prefix!==o)return!0;const u=a.name;if(e.icons[u])i.loaded.push({provider:r,prefix:o,name:u});else if(e.missing.has(u))i.missing.push({provider:r,prefix:o,name:u});else return n=!0,!0;return!1}),i.pending.length!==l&&(n||Ju([e],s.id),s.callback(i.loaded.slice(0),i.missing.slice(0),i.pending.slice(0),s.abort))})}))}let R_=0;function x_(e,t,n){const r=R_++,o=Ju.bind(null,n,r);if(!t.pending.length)return o;const s={id:r,icons:t,callback:e,abort:o};return n.forEach(i=>{(i.loaderCallbacks||(i.loaderCallbacks=[])).push(s)}),o}function P_(e,t=!0,n=!1){const r=[];return e.forEach(o=>{const s=typeof o=="string"?Tr(o,t,n):o;s&&r.push(s)}),r}var k_={resources:[],index:0,timeout:2e3,rotate:750,random:!1,dataAfterTimeout:!1};function O_(e,t,n,r){const o=e.resources.length,s=e.random?Math.floor(Math.random()*o):e.index;let i;if(e.random){let T=e.resources.slice(0);for(i=[];T.length>1;){const C=Math.floor(Math.random()*T.length);i.push(T[C]),T=T.slice(0,C).concat(T.slice(C+1))}i=i.concat(T)}else i=e.resources.slice(s).concat(e.resources.slice(0,s));const l=Date.now();let a="pending",u=0,c,f=null,d=[],p=[];typeof r=="function"&&p.push(r);function h(){f&&(clearTimeout(f),f=null)}function y(){a==="pending"&&(a="aborted"),h(),d.forEach(T=>{T.status==="pending"&&(T.status="aborted")}),d=[]}function E(T,C){C&&(p=[]),typeof T=="function"&&p.push(T)}function w(){return{startTime:l,payload:t,status:a,queriesSent:u,queriesPending:d.length,subscribe:E,abort:y}}function b(){a="failed",p.forEach(T=>{T(void 0,c)})}function g(){d.forEach(T=>{T.status==="pending"&&(T.status="aborted")}),d=[]}function _(T,C,N){const O=C!=="success";switch(d=d.filter(k=>k!==T),a){case"pending":break;case"failed":if(O||!e.dataAfterTimeout)return;break;default:return}if(C==="abort"){c=N,b();return}if(O){c=N,d.length||(i.length?S():b());return}if(h(),g(),!e.random){const k=e.resources.indexOf(T.resource);k!==-1&&k!==e.index&&(e.index=k)}a="completed",p.forEach(k=>{k(N)})}function S(){if(a!=="pending")return;h();const T=i.shift();if(T===void 0){if(d.length){f=setTimeout(()=>{h(),a==="pending"&&(g(),b())},e.timeout);return}b();return}const C={status:"pending",resource:T,callback:(N,O)=>{_(C,N,O)}};d.push(C),u++,f=setTimeout(S,e.rotate),n(T,t,C.callback)}return setTimeout(S),w}function Qu(e){const t={...k_,...e};let n=[];function r(){n=n.filter(l=>l().status==="pending")}function o(l,a,u){const c=O_(t,l,a,(f,d)=>{r(),u&&u(f,d)});return n.push(c),c}function s(l){return n.find(a=>l(a))||null}return{query:o,find:s,setIndex:l=>{t.index=l},getIndex:()=>t.index,cleanup:r}}function Jl(){}const rs=Object.create(null);function I_(e){if(!rs[e]){const t=Lo(e);if(!t)return;const n=Qu(t),r={config:t,redundancy:n};rs[e]=r}return rs[e]}function Yu(e,t,n){let r,o;if(typeof e=="string"){const s=Ds(e);if(!s)return n(void 0,424),Jl;o=s.send;const i=I_(e);i&&(r=i.redundancy)}else{const s=vi(e);if(s){r=Qu(s);const i=e.resources?e.resources[0]:"",l=Ds(i);l&&(o=l.send)}}return!r||!o?(n(void 0,424),Jl):r.query(t,o,n)().abort}function Ql(){}function N_(e){e.iconsLoaderFlag||(e.iconsLoaderFlag=!0,setTimeout(()=>{e.iconsLoaderFlag=!1,C_(e)}))}function M_(e){const t=[],n=[];return e.forEach(r=>{(r.match(Du)?t:n).push(r)}),{valid:t,invalid:n}}function Yn(e,t,n){function r(){const o=e.pendingIcons;t.forEach(s=>{o&&o.delete(s),e.icons[s]||e.missing.add(s)})}if(n&&typeof n=="object")try{if(!Vu(e,n).length){r();return}}catch(o){console.error(o)}r(),N_(e)}function Yl(e,t){e instanceof Promise?e.then(n=>{t(n)}).catch(()=>{t(null)}):t(e)}function L_(e,t){e.iconsToLoad?e.iconsToLoad=e.iconsToLoad.concat(t).sort():e.iconsToLoad=t,e.iconsQueueFlag||(e.iconsQueueFlag=!0,setTimeout(()=>{e.iconsQueueFlag=!1;const{provider:n,prefix:r}=e,o=e.iconsToLoad;if(delete e.iconsToLoad,!o||!o.length)return;const s=e.loadIcon;if(e.loadIcons&&(o.length>1||!s)){Yl(e.loadIcons(o,r,n),c=>{Yn(e,o,c)});return}if(s){o.forEach(c=>{const f=s(c,r,n);Yl(f,d=>{const p=d?{prefix:r,icons:{[c]:d}}:null;Yn(e,[c],p)})});return}const{valid:i,invalid:l}=M_(o);if(l.length&&Yn(e,l,null),!i.length)return;const a=r.match(Du)?Ds(n):null;if(!a){Yn(e,i,null);return}a.prepare(n,r,i).forEach(c=>{Yu(n,c,f=>{Yn(e,c.icons,f)})})}))}const Xu=(e,t)=>{const n=P_(e,!0,Wu()),r=A_(n);if(!r.pending.length){let a=!0;return t&&setTimeout(()=>{a&&t(r.loaded,r.missing,r.pending,Ql)}),()=>{a=!1}}const o=Object.create(null),s=[];let i,l;return r.pending.forEach(a=>{const{provider:u,prefix:c}=a;if(c===l&&u===i)return;i=u,l=c,s.push(hn(u,c));const f=o[u]||(o[u]=Object.create(null));f[c]||(f[c]=[])}),r.pending.forEach(a=>{const{provider:u,prefix:c,name:f}=a,d=hn(u,c),p=d.pendingIcons||(d.pendingIcons=new Set);p.has(f)||(p.add(f),o[u][c].push(f))}),s.forEach(a=>{const u=o[a.provider][a.prefix];u.length&&L_(a,u)}),t?x_(t,r,s):Ql},bb=e=>new Promise((t,n)=>{const r=typeof e=="string"?Tr(e,!0):e;if(!r){n(e);return}Xu([r||e],o=>{if(o.length&&r){const s=_i(r);if(s){t({...Vn,...s});return}}n(e)})});function H_(e,t,n){hn("",t).loadIcons=e}function j_(e,t){const n={...e};for(const r in t){const o=t[r],s=typeof o;r in Ku?(o===null||o&&(s==="string"||s==="number"))&&(n[r]=o):s===typeof n[r]&&(n[r]=r==="rotate"?o%4:o)}return n}const F_=/[\s,]+/;function D_(e,t){t.split(F_).forEach(n=>{switch(n.trim()){case"horizontal":e.hFlip=!0;break;case"vertical":e.vFlip=!0;break}})}function B_(e,t=0){const n=e.replace(/^-?[0-9.]*/,"");function r(o){for(;o<0;)o+=4;return o%4}if(n===""){const o=parseInt(e);return isNaN(o)?0:r(o)}else if(n!==e){let o=0;switch(n){case"%":o=25;break;case"deg":o=90}if(o){let s=parseFloat(e.slice(0,e.length-n.length));return isNaN(s)?0:(s=s/o,s%1===0?r(s):0)}}return t}function $_(e,t){let n=e.indexOf("xlink:")===-1?"":' xmlns:xlink="http://www.w3.org/1999/xlink"';for(const r in t)n+=" "+r+'="'+t[r]+'"';return'<svg xmlns="http://www.w3.org/2000/svg"'+n+">"+e+"</svg>"}function U_(e){return e.replace(/"/g,"'").replace(/%/g,"%25").replace(/#/g,"%23").replace(/</g,"%3C").replace(/>/g,"%3E").replace(/\s+/g," ")}function V_(e){return"data:image/svg+xml,"+U_(e)}function W_(e){return'url("'+V_(e)+'")'}const Xl={...Gu,inline:!1},K_={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","aria-hidden":!0,role:"img"},G_={display:"inline-block"},Bs={backgroundColor:"currentColor"},Zu={backgroundColor:"transparent"},Zl={Image:"var(--svg)",Repeat:"no-repeat",Size:"100% 100%"},ea={webkitMask:Bs,mask:Bs,background:Zu};for(const e in ea){const t=ea[e];for(const n in Zl)t[e+n]=Zl[n]}const qr={};["horizontal","vertical"].forEach(e=>{const t=e.slice(0,1)+"Flip";qr[e+"-flip"]=t,qr[e.slice(0,1)+"-flip"]=t,qr[e+"Flip"]=t});function ta(e){return e+(e.match(/^[-0-9.]+$/)?"px":"")}const na=(e,t)=>{const n=j_(Xl,t),r={...K_},o=t.mode||"svg",s={},i=t.style,l=typeof i=="object"&&!(i instanceof Array)?i:{};for(let y in t){const E=t[y];if(E!==void 0)switch(y){case"icon":case"style":case"onLoad":case"mode":case"ssr":break;case"inline":case"hFlip":case"vFlip":n[y]=E===!0||E==="true"||E===1;break;case"flip":typeof E=="string"&&D_(n,E);break;case"color":s.color=E;break;case"rotate":typeof E=="string"?n[y]=B_(E):typeof E=="number"&&(n[y]=E);break;case"ariaHidden":case"aria-hidden":E!==!0&&E!=="true"&&delete r["aria-hidden"];break;default:{const w=qr[y];w?(E===!0||E==="true"||E===1)&&(n[w]=!0):Xl[y]===void 0&&(r[y]=E)}}}const a=u_(e,n),u=a.attributes;if(n.inline&&(s.verticalAlign="-0.125em"),o==="svg"){r.style={...s,...l},Object.assign(r,u);let y=0,E=t.id;return typeof E=="string"&&(E=E.replace(/-/g,"_")),r.innerHTML=h_(a.body,E?()=>E+"ID"+y++:"iconifyVue"),Oe("svg",r)}const{body:c,width:f,height:d}=e,p=o==="mask"||(o==="bg"?!1:c.indexOf("currentColor")!==-1),h=$_(c,{...u,width:f+"",height:d+""});return r.style={...s,"--svg":W_(h),width:ta(u.width),height:ta(u.height),...G_,...p?Bs:Zu,...l},Oe("span",r)};Wu(!0);qu("",T_);if(typeof document<"u"&&typeof window<"u"){const e=window;if(e.IconifyPreload!==void 0){const t=e.IconifyPreload,n="Invalid IconifyPreload syntax.";typeof t=="object"&&t!==null&&(t instanceof Array?t:[t]).forEach(r=>{try{(typeof r!="object"||r===null||r instanceof Array||typeof r.icons!="object"||typeof r.prefix!="string"||!r_(r))&&console.error(n)}catch{console.error(n)}})}if(e.IconifyProviders!==void 0){const t=e.IconifyProviders;if(typeof t=="object"&&t!==null)for(let n in t){const r="IconifyProviders["+n+"] is invalid.";try{const o=t[n];if(typeof o!="object"||!o||o.resources===void 0)continue;zu(n,o)||console.error(r)}catch{console.error(r)}}}}const q_={...Vn,body:""},wb=ke((e,{emit:t})=>{const n=Te(null);function r(){n.value&&(n.value.abort?.(),n.value=null)}const o=Te(!!e.ssr),s=Te(""),i=xe(null);function l(){const u=e.icon;if(typeof u=="object"&&u!==null&&typeof u.body=="string")return s.value="",{data:u};let c;if(typeof u!="string"||(c=Tr(u,!1,!0))===null)return null;let f=_i(c);if(!f){const h=n.value;return(!h||h.name!==u)&&(f===null?n.value={name:u}:n.value={name:u,abort:Xu([c],a)}),null}r(),s.value!==u&&(s.value=u,Et(()=>{t("load",u)}));const d=e.customise;if(d){f=Object.assign({},f);const h=d(f.body,c.name,c.prefix,c.provider);typeof h=="string"&&(f.body=h)}const p=["iconify"];return c.prefix!==""&&p.push("iconify--"+c.prefix),c.provider!==""&&p.push("iconify--"+c.provider),{data:f,classes:p}}function a(){const u=l();u?u.data!==i.value?.data&&(i.value=u):i.value=null}return o.value?a():Bn(()=>{o.value=!0,a()}),Ne(()=>e.icon,a),St(r),()=>{const u=i.value;if(!u)return na(q_,e);let c=e;return u.classes&&(c={...e,class:u.classes.join(" ")}),na({...Vn,...u.data},c)}},{props:["icon","mode","ssr","width","height","style","color","inline","rotate","hFlip","horizontalFlip","vFlip","verticalFlip","flip","id","ariaHidden","customise","title"],emits:["load"]}),ra={getAPIConfig:Lo,setAPIModule:qu,sendAPIQuery:Yu,setFetch:y_,getFetch:__,listAPIProviders:g_},z_={title:"Tokens Usage Analysis",shortTitle:"Tokens Usage Analysis",github:{repo:"lonewolfyx/usage-board",link:"https://github.com/lonewolfyx/usage-board"}},J_={nuxt:{},icon:{provider:"iconify",class:"",aliases:{},iconifyApiEndpoint:"https://api.iconify.design",localApiEndpoint:"/api/_nuxt_icon",fallbackToApi:!0,cssSelectorPrefix:"i-",cssWherePseudo:!0,mode:"svg",attrs:{"aria-hidden":!0},collections:["academicons","akar-icons","ant-design","arcticons","basil","bi","bitcoin-icons","bpmn","brandico","bx","bxl","bxs","bytesize","carbon","catppuccin","cbi","charm","ci","cib","cif","cil","circle-flags","circum","clarity","codex","codicon","covid","cryptocurrency","cryptocurrency-color","cuida","dashicons","devicon","devicon-plain","dinkie-icons","duo-icons","ei","el","emojione","emojione-monotone","emojione-v1","entypo","entypo-social","eos-icons","ep","et","eva","f7","fa","fa-brands","fa-regular","fa-solid","fa6-brands","fa6-regular","fa6-solid","fa7-brands","fa7-regular","fa7-solid","fad","famicons","fe","feather","file-icons","flag","flagpack","flat-color-icons","flat-ui","flowbite","fluent","fluent-color","fluent-emoji","fluent-emoji-flat","fluent-emoji-high-contrast","fluent-mdl2","fontelico","fontisto","formkit","foundation","fxemoji","gala","game-icons","garden","geo","gg","gis","gravity-ui","gridicons","grommet-icons","guidance","healthicons","heroicons","heroicons-outline","heroicons-solid","hugeicons","humbleicons","ic","icomoon-free","icon-park","icon-park-outline","icon-park-solid","icon-park-twotone","iconamoon","iconoir","icons8","il","ion","iwwa","ix","jam","la","lets-icons","line-md","lineicons","logos","ls","lsicon","lucide","lucide-lab","mage","majesticons","maki","map","marketeq","material-icon-theme","material-symbols","material-symbols-light","mdi","mdi-light","medical-icon","memory","meteocons","meteor-icons","mi","mingcute","mono-icons","mynaui","nimbus","nonicons","noto","noto-v1","nrk","octicon","oi","ooui","openmoji","oui","pajamas","pepicons","pepicons-pencil","pepicons-pop","pepicons-print","ph","picon","pixel","pixelarticons","prime","proicons","ps","qlementine-icons","quill","radix-icons","raphael","ri","rivet-icons","roentgen","si","si-glyph","sidekickicons","simple-icons","simple-line-icons","skill-icons","solar","stash","streamline","streamline-block","streamline-color","streamline-cyber","streamline-cyber-color","streamline-emojis","streamline-flex","streamline-flex-color","streamline-freehand","streamline-freehand-color","streamline-kameleon-color","streamline-logos","streamline-pixel","streamline-plump","streamline-plump-color","streamline-sharp","streamline-sharp-color","streamline-stickies-color","streamline-ultimate","streamline-ultimate-color","subway","svg-spinners","system-uicons","tabler","tdesign","teenyicons","temaki","token","token-branded","topcoat","twemoji","typcn","uil","uim","uis","uit","uiw","unjs","vaadin","vs","vscode-icons","websymbol","weui","whh","wi","wpf","zmdi","zondicons"],fetchTimeout:1500}},Q_=og(z_,J_);function Y_(){const e=Ae();return e._appConfig||=nt(Q_),e._appConfig}const X_=Tt({name:"@nuxt/icon",setup(){const e=Oo(),t=Y_().icon;ra.setFetch($fetch.native);const n=[];if(t.provider==="server"){const o=e.app?.baseURL?.replace(/\/$/,"")??"";n.push(o+(t.localApiEndpoint||"/api/_nuxt_icon")),(t.fallbackToApi===!0||t.fallbackToApi==="client-only")&&n.push(t.iconifyApiEndpoint)}else t.provider==="none"?ra.setFetch(()=>Promise.resolve(new Response)):n.push(t.iconifyApiEndpoint);async function r(o,s){try{const i=await $fetch(n[0]+"/"+s+".json",{query:{icons:o.join(",")}});if(!i||i.prefix!==s||!i.icons)throw new Error("Invalid data"+JSON.stringify(i));return i}catch(i){return console.error("Failed to load custom icons",i),null}}zu("",{resources:n});for(const o of t.customCollections||[])o&&H_(r,o)}});function Eb(e,t){var n;const r=xe();return Xs(()=>{r.value=e()},{...t,flush:(n=t?.flush)!==null&&n!==void 0?n:"sync"}),kn(r)}function Gt(e,t){return br()?(Ef(e,t),!0):!1}function Sb(){const e=new Set,t=s=>{e.delete(s)};return{on:s=>{e.add(s);const i=()=>t(s);return Gt(i),{off:i}},off:t,trigger:(...s)=>Promise.all(Array.from(e).map(i=>i(...s))),clear:()=>{e.clear()}}}function Tb(e){let t=!1,n;const r=qs(!0);return((...o)=>(t||(n=r.run(()=>e(...o)),t=!0),n))}const Pn=new WeakMap,Z_=(...e)=>{var t;const n=e[0],r=(t=Ue())===null||t===void 0?void 0:t.proxy,o=r??br();if(o==null&&!Dn())throw new Error("injectLocal must be called in setup");return o&&Pn.has(o)&&n in Pn.get(o)?Pn.get(o)[n]:be(...e)};function ev(e,t){var n;const r=(n=Ue())===null||n===void 0?void 0:n.proxy,o=r??br();if(o==null)throw new Error("provideLocal must be called in setup");Pn.has(o)||Pn.set(o,Object.create(null));const s=Pn.get(o);return s[e]=t,at(e,t)}const Nt=typeof window<"u"&&typeof document<"u",oa=typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope,tv=e=>typeof e<"u",nv=Object.prototype.toString,rv=e=>nv.call(e)==="[object Object]",$s=()=>{},Ab=ov();function ov(){var e,t,n;return Nt&&!!(!((e=window)===null||e===void 0||(e=e.navigator)===null||e===void 0)&&e.userAgent)&&(/iP(?:ad|hone|od)/.test(window.navigator.userAgent)||((t=window)===null||t===void 0||(t=t.navigator)===null||t===void 0?void 0:t.maxTouchPoints)>2&&/iPad|Macintosh/.test((n=window)===null||n===void 0?void 0:n.navigator.userAgent))}function bi(...e){if(e.length!==1)return Wa(...e);const t=e[0];return typeof t=="function"?kn(Va(()=>({get:t,set:$s}))):Te(t)}function sv(e,t){function n(...r){return new Promise((o,s)=>{Promise.resolve(e(()=>t.apply(this,r),{fn:t,thisArg:this,args:r})).then(o).catch(s)})}return n}const ef=e=>e();function iv(e,t={}){let n,r,o=$s;const s=a=>{clearTimeout(a),o(),o=$s};let i;return a=>{const u=ve(e),c=ve(t.maxWait);return n&&s(n),u<=0||c!==void 0&&c<=0?(r&&(s(r),r=void 0),Promise.resolve(a())):new Promise((f,d)=>{o=t.rejectOnCancel?d:f,i=a,c&&!r&&(r=setTimeout(()=>{n&&s(n),r=void 0,f(i())},c)),n=setTimeout(()=>{r&&s(r),r=void 0,f(a())},u)})}}function lv(e=ef,t={}){const{initialState:n="active"}=t,r=bi(n==="active");function o(){r.value=!1}function s(){r.value=!0}return{isActive:kn(r),pause:o,resume:s,eventFilter:(...l)=>{r.value&&e(...l)}}}function sa(e){return e.endsWith("rem")?Number.parseFloat(e)*16:Number.parseFloat(e)}function zr(e){return Array.isArray(e)?e:[e]}function tf(e){return Ue()}function Cb(e){if(!Nt)return e;let t=0,n,r;const o=()=>{t-=1,r&&t<=0&&(r.stop(),n=void 0,r=void 0)};return((...s)=>(t+=1,r||(r=qs(!0),n=r.run(()=>e(...s))),Gt(o),n))}function av(e){return nt(me(e)?new Proxy({},{get(t,n,r){return oe(Reflect.get(e.value,n,r))},set(t,n,r){return me(e.value[n])&&!me(r)?e.value[n].value=r:e.value[n]=r,!0},deleteProperty(t,n){return Reflect.deleteProperty(e.value,n)},has(t,n){return Reflect.has(e.value,n)},ownKeys(){return Object.keys(e.value)},getOwnPropertyDescriptor(){return{enumerable:!0,configurable:!0}}}):e)}function cv(e){return av(ge(e))}function Rb(e,...t){const n=t.flat(),r=n[0];return cv(()=>Object.fromEntries(typeof r=="function"?Object.entries(ls(e)).filter(([o,s])=>!r(ve(s),o)):Object.entries(ls(e)).filter(o=>!n.includes(o[0]))))}function xb(e,t=1e4){return Va((n,r)=>{let o=ve(e),s;const i=()=>setTimeout(()=>{o=ve(e),r()},ve(t));return Gt(()=>{clearTimeout(s)}),{get(){return n(),o},set(l){o=l,r(),clearTimeout(s),s=i()}}})}function nf(e,t,n={}){const{eventFilter:r=ef,...o}=n;return Ne(e,sv(r,t),o)}function uv(e,t,n={}){const{eventFilter:r,initialState:o="active",...s}=n,{eventFilter:i,pause:l,resume:a,isActive:u}=lv(r,{initialState:o});return{stop:nf(e,t,{...s,eventFilter:i}),pause:l,resume:a,isActive:u}}function Pb(e,t){tf()&&$n(e,t)}function wi(e,t=!0,n){tf()?Bn(e,n):t?e():Et(e)}function ia(e,t=1e3,n={}){const{immediate:r=!0,immediateCallback:o=!1}=n;let s=null;const i=xe(!1);function l(){s&&(clearInterval(s),s=null)}function a(){i.value=!1,l()}function u(){const c=ve(t);c<=0||(i.value=!0,o&&e(),l(),i.value&&(s=setInterval(e,c)))}return r&&Nt&&u(),(me(t)||typeof t=="function")&&Gt(Ne(t,()=>{i.value&&Nt&&u()})),Gt(a),{isActive:Ba(i),pause:a,resume:u}}function fv(e,t,n={}){const{immediate:r=!0,immediateCallback:o=!1}=n,s=xe(!1);let i;function l(){i&&(clearTimeout(i),i=void 0)}function a(){s.value=!1,l()}function u(...c){o&&e(),l(),s.value=!0,i=setTimeout(()=>{s.value=!1,i=void 0,e(...c)},ve(t))}return r&&(s.value=!0,Nt&&u()),Gt(a),{isPending:Ba(s),start:u,stop:a}}function kb(e,t,n={}){const{debounce:r=0,maxWait:o=void 0,...s}=n;return nf(e,t,{...s,eventFilter:iv(r,{maxWait:o})})}function dv(e,t,n){return Ne(e,t,{...n,immediate:!0})}const vt=Nt?window:void 0;function Ot(e){var t;const n=ve(e);return(t=n?.$el)!==null&&t!==void 0?t:n}function _r(...e){const t=(r,o,s,i)=>(r.addEventListener(o,s,i),()=>r.removeEventListener(o,s,i)),n=ge(()=>{const r=zr(ve(e[0])).filter(o=>o!=null);return r.every(o=>typeof o!="string")?r:void 0});return dv(()=>{var r,o;return[(r=(o=n.value)===null||o===void 0?void 0:o.map(s=>Ot(s)))!==null&&r!==void 0?r:[vt].filter(s=>s!=null),zr(ve(n.value?e[1]:e[0])),zr(oe(n.value?e[2]:e[1])),ve(n.value?e[3]:e[2])]},([r,o,s,i],l,a)=>{if(!r?.length||!o?.length||!s?.length)return;const u=rv(i)?{...i}:i,c=r.flatMap(f=>o.flatMap(d=>s.map(p=>t(f,d,p,u))));a(()=>{c.forEach(f=>f())})},{flush:"post"})}function pv(){const e=xe(!1),t=Ue();return t&&Bn(()=>{e.value=!0},t),e}function rf(e){const t=pv();return ge(()=>(t.value,!!e()))}function hv(e){return typeof e=="function"?e:typeof e=="string"?t=>t.key===e:Array.isArray(e)?t=>e.includes(t.key):()=>!0}function Ob(...e){let t,n,r={};e.length===3?(t=e[0],n=e[1],r=e[2]):e.length===2?typeof e[1]=="object"?(t=!0,n=e[0],r=e[1]):(t=e[0],n=e[1]):(t=!0,n=e[0]);const{target:o=vt,eventName:s="keydown",passive:i=!1,dedupe:l=!1}=r,a=hv(t);return _r(o,s,c=>{c.repeat&&ve(l)||a(c)&&n(c)},i)}const Us=Symbol("vueuse-ssr-width");function gv(){const e=Dn()?Z_(Us,null):null;return typeof e=="number"?e:void 0}function mv(e,t){t!==void 0?t.provide(Us,e):ev(Us,e)}function yv(e,t={}){const{window:n=vt,ssrWidth:r=gv()}=t,o=rf(()=>n&&"matchMedia"in n&&typeof n.matchMedia=="function"),s=xe(typeof r=="number"),i=xe(),l=xe(!1),a=u=>{l.value=u.matches};return Xs(()=>{if(s.value){s.value=!o.value,l.value=ve(e).split(",").some(u=>{const c=u.includes("not all"),f=u.match(/\(\s*min-width:\s*(-?\d+(?:\.\d*)?[a-z]+\s*)\)/),d=u.match(/\(\s*max-width:\s*(-?\d+(?:\.\d*)?[a-z]+\s*)\)/);let p=!!(f||d);return f&&p&&(p=r>=sa(f[1])),d&&p&&(p=r<=sa(d[1])),c?!p:p});return}o.value&&(i.value=n.matchMedia(ve(e)),l.value=i.value.matches)}),_r(i,"change",a,{passive:!0}),ge(()=>l.value)}function _v(e){return JSON.parse(JSON.stringify(e))}const jr=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},Fr="__vueuse_ssr_handlers__",vv=bv();function bv(){return Fr in jr||(jr[Fr]=jr[Fr]||{}),jr[Fr]}function of(e,t){return vv[e]||t}function wv(e){return yv("(prefers-color-scheme: dark)",e)}function Ev(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"}const Sv={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()}},la="vueuse-storage";function Tv(e,t,n,r={}){var o;const{flush:s="pre",deep:i=!0,listenToStorageChanges:l=!0,writeDefaults:a=!0,mergeDefaults:u=!1,shallow:c,window:f=vt,eventFilter:d,onError:p=D=>{console.error(D)},initOnMounted:h}=r,y=(c?xe:Te)(typeof t=="function"?t():t),E=ge(()=>ve(e));if(!n)try{n=of("getDefaultStorage",()=>vt?.localStorage)()}catch(D){p(D)}if(!n)return y;const w=ve(t),b=Ev(w),g=(o=r.serializer)!==null&&o!==void 0?o:Sv[b],{pause:_,resume:S}=uv(y,D=>k(D),{flush:s,deep:i,eventFilter:d});Ne(E,()=>R(),{flush:s});let T=!1;const C=D=>{h&&!T||R(D)},N=D=>{h&&!T||H(D)};f&&l&&(n instanceof Storage?_r(f,"storage",C,{passive:!0}):_r(f,la,N)),h?wi(()=>{T=!0,R()}):R();function O(D,z){if(f){const F={key:E.value,oldValue:D,newValue:z,storageArea:n};f.dispatchEvent(n instanceof Storage?new StorageEvent("storage",F):new CustomEvent(la,{detail:F}))}}function k(D){try{const z=n.getItem(E.value);if(D==null)O(z,null),n.removeItem(E.value);else{const F=g.write(D);z!==F&&(n.setItem(E.value,F),O(z,F))}}catch(z){p(z)}}function U(D){const z=D?D.newValue:n.getItem(E.value);if(z==null)return a&&w!=null&&n.setItem(E.value,g.write(w)),w;if(!D&&u){const F=g.read(z);return typeof u=="function"?u(F,w):b==="object"&&!Array.isArray(F)?{...w,...F}:F}else return typeof z!="string"?z:g.read(z)}function R(D){if(!(D&&D.storageArea!==n)){if(D&&D.key==null){y.value=w;return}if(!(D&&D.key!==E.value)){_();try{const z=g.write(y.value);(D===void 0||D?.newValue!==z)&&(y.value=U(D))}catch(z){p(z)}finally{D?Et(S):S()}}}}function H(D){R(D.detail)}return y}const Av="*,*::before,*::after{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}";function Ib(e={}){const{selector:t="html",attribute:n="class",initialValue:r="auto",window:o=vt,storage:s,storageKey:i="vueuse-color-scheme",listenToStorageChanges:l=!0,storageRef:a,emitAuto:u,disableTransition:c=!0}=e,f={auto:"",light:"light",dark:"dark",...e.modes||{}},d=wv({window:o}),p=ge(()=>d.value?"dark":"light"),h=a||(i==null?bi(r):Tv(i,r,s,{window:o,listenToStorageChanges:l})),y=ge(()=>h.value==="auto"?p.value:h.value),E=of("updateHTMLAttrs",(_,S,T)=>{const C=typeof _=="string"?o?.document.querySelector(_):Ot(_);if(!C)return;const N=new Set,O=new Set;let k=null;if(S==="class"){const R=T.split(/\s/g);Object.values(f).flatMap(H=>(H||"").split(/\s/g)).filter(Boolean).forEach(H=>{R.includes(H)?N.add(H):O.add(H)})}else k={key:S,value:T};if(N.size===0&&O.size===0&&k===null)return;let U;c&&(U=o.document.createElement("style"),U.appendChild(document.createTextNode(Av)),o.document.head.appendChild(U));for(const R of N)C.classList.add(R);for(const R of O)C.classList.remove(R);k&&C.setAttribute(k.key,k.value),c&&(o.getComputedStyle(U).opacity,document.head.removeChild(U))});function w(_){var S;E(t,n,(S=f[_])!==null&&S!==void 0?S:_)}function b(_){e.onChanged?e.onChanged(_,w):w(_)}Ne(y,b,{flush:"post",immediate:!0}),wi(()=>b(y.value));const g=ge({get(){return u?h.value:y.value},set(_){h.value=_}});return Object.assign(g,{store:h,system:p,state:y})}function Cv(e,t,n={}){const{window:r=vt,...o}=n;let s;const i=rf(()=>r&&"ResizeObserver"in r),l=()=>{s&&(s.disconnect(),s=void 0)},a=Ne(ge(()=>{const c=ve(e);return Array.isArray(c)?c.map(f=>Ot(f)):[Ot(c)]}),c=>{if(l(),i.value&&r){s=new ResizeObserver(t);for(const f of c)f&&s.observe(f,o)}},{immediate:!0,flush:"post"}),u=()=>{l(),a()};return Gt(u),{isSupported:i,stop:u}}function Nb(e,t={width:0,height:0},n={}){const{window:r=vt,box:o="content-box"}=n,s=ge(()=>{var f;return(f=Ot(e))===null||f===void 0||(f=f.namespaceURI)===null||f===void 0?void 0:f.includes("svg")}),i=xe(t.width),l=xe(t.height),{stop:a}=Cv(e,([f])=>{const d=o==="border-box"?f.borderBoxSize:o==="content-box"?f.contentBoxSize:f.devicePixelContentBoxSize;if(r&&s.value){const p=Ot(e);if(p){const h=p.getBoundingClientRect();i.value=h.width,l.value=h.height}}else if(d){const p=zr(d);i.value=p.reduce((h,{inlineSize:y})=>h+y,0),l.value=p.reduce((h,{blockSize:y})=>h+y,0)}else i.value=f.contentRect.width,l.value=f.contentRect.height},n);wi(()=>{const f=Ot(e);f&&(i.value="offsetWidth"in f?f.offsetWidth:t.width,l.value="offsetHeight"in f?f.offsetHeight:t.height)});const u=Ne(()=>Ot(e),f=>{i.value=f?t.width:0,l.value=f?t.height:0});function c(){a(),u()}return{width:i,height:l,stop:c}}function Mb(e,t,n,r={}){var o,s;const{clone:i=!1,passive:l=!1,eventName:a,deep:u=!1,defaultValue:c,shouldEmit:f}=r,d=Ue(),p=n||d?.emit||(d==null||(o=d.$emit)===null||o===void 0?void 0:o.bind(d))||(d==null||(s=d.proxy)===null||s===void 0||(s=s.$emit)===null||s===void 0?void 0:s.bind(d?.proxy));let h=a;t||(t="modelValue"),h=h||`update:${t.toString()}`;const y=b=>i?typeof i=="function"?i(b):_v(b):b,E=()=>tv(e[t])?y(e[t]):c,w=b=>{f?f(b)&&p(h,b):p(h,b)};if(l){const b=Te(E());let g=!1;return Ne(()=>e[t],_=>{g||(g=!0,b.value=y(_),Et(()=>g=!1))}),Ne(b,_=>{!g&&(_!==e[t]||u)&&w(_)},{deep:u}),b}else return ge({get(){return E()},set(b){w(b)}})}const aa="ping";function Dr(e){return e===!0?{}:e}function Rv(e){if("interval"in e){const{interval:t=1e3}=e;return n=>ia(n,t,{immediate:!1})}return t=>ia(t,1e3,{immediate:!1})}function Lb(e,t={}){const{onConnected:n,onDisconnected:r,onError:o,onMessage:s,immediate:i=!0,autoConnect:l=!0,autoClose:a=!0,protocols:u=[]}=t,c=Te(null),f=xe("CLOSED"),d=Te(),p=bi(e);let h,y,E=!1,w=0,b=[],g,_;const S=()=>{if(b.length&&d.value&&f.value==="OPEN"){for(const R of b)d.value.send(R);b=[]}},T=()=>{g!=null&&(clearTimeout(g),g=void 0)},C=()=>{clearTimeout(_),_=void 0},N=(R=1e3,H)=>{T(),!(!Nt&&!oa||!d.value)&&(E=!0,C(),h?.(),d.value.close(R,H),d.value=void 0)},O=(R,H=!0)=>!d.value||f.value!=="OPEN"?(H&&b.push(R),!1):(S(),d.value.send(R),!0),k=()=>{if(E||typeof p.value>"u")return;const R=new WebSocket(p.value,u);d.value=R,f.value="CONNECTING",R.onopen=()=>{f.value="OPEN",w=0,n?.(R),y?.(),S()},R.onclose=H=>{if(f.value="CLOSED",C(),h?.(),r?.(R,H),!E&&t.autoReconnect&&(d.value==null||R===d.value)){const{retries:D=-1,delay:z=1e3,onFailed:F}=Dr(t.autoReconnect);if((typeof D=="function"?D:()=>typeof D=="number"&&(D<0||w<D))(w)){w+=1;const Z=typeof z=="function"?z(w):z;g=setTimeout(k,Z)}else F?.()}},R.onerror=H=>{o?.(R,H)},R.onmessage=H=>{if(t.heartbeat){C();const{message:D=aa,responseMessage:z=D}=Dr(t.heartbeat);if(H.data===ve(z))return}c.value=H.data,s?.(R,H)}};if(t.heartbeat){const{message:R=aa,scheduler:H=Rv(Dr(t.heartbeat)),pongTimeout:D=1e3}=Dr(t.heartbeat),{pause:z,resume:F}=H(()=>{O(ve(R),!1),_==null&&(_=setTimeout(()=>{N(),E=!1},D))});h=z,y=F}a&&(Nt&&_r("beforeunload",()=>N(),{passive:!0}),Gt(N));const U=()=>{!Nt&&!oa||(N(),E=!1,w=0,k())};return i&&U(),l&&Ne(p,U),{data:c,status:f,close:N,send:O,open:U,ws:d}}const xv=Tt(e=>{mv(1024,e.vueApp)}),Pv=[im,fm,Dy,By,$y,Vy,Gy,Jy,X_,xv],sf=(e="RouteProvider")=>ke({name:e,props:{route:{type:Object,required:!0},vnode:Object,vnodeRef:Object,renderKey:String,trackRootNodes:Boolean},setup(t){const n=t.renderKey,r=t.route,o={};for(const s in t.route)Object.defineProperty(o,s,{get:()=>n===t.renderKey?t.route[s]:r[s],enumerable:!0});return at(pn,st(o)),()=>t.vnode?Oe(t.vnode,{ref:t.vnodeRef}):t.vnode}}),kv=sf(),ca=new WeakMap,Ov=ke({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}){const o=Ae(),s=Te(),i=be(pn,null);let l;r({pageRef:s});const a=be(uu,null);let u;const c=o.deferHydration();let f=!1,d=0;if(o.isHydrating){const h=o.hooks.hookOnce("app:error",c);rt().beforeEach(h)}e.pageKey&&Ne(()=>e.pageKey,(h,y)=>{h!==y&&o.callHook("page:loading:start")});let p=!1;{const h=rt().beforeResolve(()=>{p=!1});$n(()=>{h(),c()})}return()=>Oe(ku,{name:e.name,route:e.route,...t},{default:h=>{const y=Iv(i,h.route,h.Component),E=i&&i.matched.length===h.route.matched.length;if(!h.Component){if(u&&!E)return u;c();return}if(u&&a&&!a.isCurrent(h.route))return u;if(y&&i&&(!a||a?.isCurrent(i)))return E||u?u:null;const w=Ls(h,e.pageKey),b=Nv(i,h.route,h.Component);!o.isHydrating&&l===w&&!b&&Et(()=>{p||(p=!0,o.callHook("page:loading:end"))}),f&&l!==w&&d++,l=w;const g=!!(e.transition??h.route.meta.pageTransition??gl),_=g&&Hu([e.transition,h.route.meta.pageTransition,gl,{onAfterLeave(){o["~transitionFinish"]?.(),delete o["~transitionFinish"],delete o["~transitionPromise"],o.callHook("page:transition:finish",h.Component)}}]),S=e.keepalive??h.route.meta.keepalive??Jh;return u=Lu(g&&_,wy(S,Oe(si,{key:d,suspensible:!0,onPending:()=>{f=!0,g&&!o["~transitionPromise"]&&(o["~transitionPromise"]=new Promise(T=>{o["~transitionFinish"]=T})),o.callHook("page:start",h.Component)},onResolve:async()=>{f=!1;try{await Et(),o._route.sync?.(),await o.callHook("page:finish",h.Component),!p&&!b&&(p=!0,await o.callHook("page:loading:end"))}finally{c()}}},{default:()=>{const T={key:w||void 0,vnode:n.default?Mv(n.default,h):h.Component,route:h.route,renderKey:w||void 0,trackRootNodes:g,vnodeRef:s};if(!S)return Oe(kv,T);const C=h.Component.type,N=C;let O=ca.get(N);return O||(O=sf(C.name||C.__name),ca.set(N,O)),Oe(O,T)}}))).default(),u}})}});function Iv(e,t,n){if(!e)return!1;const r=t.matched.findIndex(o=>o.components?.default===n?.type);return!r||r===-1?!1:t.matched.slice(0,r).some((o,s)=>o.components?.default!==e.matched[s]?.components?.default)||n&&Ls({route:t,Component:n})!==Ls({route:e,Component:n})}function Nv(e,t,n){return e?t.matched.findIndex(o=>o.components?.default===n?.type)<t.matched.length-1:!1}function Mv(e,t){const n=e(t);return n.length===1?Oe(n[0]):Oe(He,void 0,n)}const lf=mu,Lv=ke({name:"LayoutLoader",inheritAttrs:!1,props:{name:String,layoutProps:Object},setup(e,t){return()=>Oe(Wt[e.name],e.layoutProps,t.slots)}}),Hv={name:{type:[String,Boolean,Object],default:null},fallback:{type:[String,Object],default:null}},jv=ke({name:"NuxtLayout",inheritAttrs:!1,props:Hv,setup(e,t){const n=Ae(),r=be(pn),s=!r||r===di()?Ou():r,i=ge(()=>{let c=oe(e.name)??s?.meta.layout??lf(s?.path).appLayout??"default";return c&&!(c in Wt)&&e.fallback&&(c=oe(e.fallback)),c}),l=xe();t.expose({layoutRef:l});const a=n.deferHydration();if(n.isHydrating){const c=n.hooks.hookOnce("app:error",a);rt().beforeEach(c)}let u;return()=>{const f=!!i.value&&i.value in Wt&&!!(s?.meta.layoutTransition??hl),d=f&&Hu([s?.meta.layoutTransition,hl,{onBeforeLeave(){n["~transitionPromise"]=new Promise(h=>{n["~transitionFinish"]=h})},onAfterLeave(){n["~transitionFinish"]?.(),delete n["~transitionFinish"],delete n["~transitionPromise"]}}]),p=u;return u=i.value,Lu(d,{default:()=>Oe(si,{suspensible:!0,onResolve:async()=>{await Et(a)}},{default:()=>Oe(Fv,{layoutProps:Hc(t.attrs,s.meta.layoutProps??{},{ref:l}),key:i.value||void 0,name:i.value,shouldProvide:!e.name,isRenderingNewLayout:h=>h!==p&&h===i.value,hasTransition:f},t.slots)})}).default()}}}),Fv=ke({name:"NuxtLayoutProvider",inheritAttrs:!1,props:{name:{type:[String,Boolean]},layoutProps:{type:Object},hasTransition:{type:Boolean},shouldProvide:{type:Boolean},isRenderingNewLayout:{type:Function,required:!0}},setup(e,t){const n=e.name;e.shouldProvide&&at(uu,{isCurrent:s=>n===!1||n===(s.meta.layout??lf(s.path).appLayout??"default")});const r=be(pn);if(r&&r===di()){const s=Ou(),i={};for(const l in s){const a=l;Object.defineProperty(i,a,{enumerable:!0,get:()=>e.isRenderingNewLayout(e.name)?s[a]:r[a]})}at(pn,st(i))}return()=>!n||typeof n=="string"&&!(n in Wt)?t.slots.default?.():Oe(Lv,{key:n,layoutProps:e.layoutProps,name:n},t.slots)}});function Dv(e,t){const n=typeof e=="string"&&!t?`${e}Context`:t,r=Symbol(n);return[i=>{const l=be(r,i);if(l||l===null)return l;throw new Error(`Injection \`${r.toString()}\` not found. Component must be used within ${Array.isArray(e)?`one of the following components: ${e.join(", ")}`:`\`${e}\``}`)},i=>(at(r,i),i)]}function Bv(){const e=Ue(),t=Te(),n=ge(()=>r());ei(()=>{n.value!==r()&&Wf(t)});function r(){return t.value&&"$el"in t.value&&["#text","#comment"].includes(t.value.$el.nodeName)?t.value.$el.nextElementSibling:Ot(t)}const o=Object.assign({},e.exposed),s={};for(const l in e.props)Object.defineProperty(s,l,{enumerable:!0,configurable:!0,get:()=>e.props[l]});if(Object.keys(o).length>0)for(const l in o)Object.defineProperty(s,l,{enumerable:!0,configurable:!0,get:()=>o[l]});Object.defineProperty(s,"$el",{enumerable:!0,configurable:!0,get:()=>e.vnode.el}),e.exposed=s;function i(l){if(t.value=l,!!l&&(Object.defineProperty(s,"$el",{enumerable:!0,configurable:!0,get:()=>l instanceof Element?l:l.$el}),!(l instanceof Element)&&!Object.hasOwn(l,"$el"))){const a=l.$.exposed,u=Object.assign({},s);for(const c in a)Object.defineProperty(u,c,{enumerable:!0,configurable:!0,get:()=>a[c]});e.exposed=u}}return{forwardRef:i,currentRef:t,currentElement:n}}const[Hb,$v]=Dv("TooltipProvider");var Uv=ke({inheritAttrs:!1,__name:"TooltipProvider",props:{delayDuration:{type:Number,required:!1,default:700},skipDelayDuration:{type:Number,required:!1,default:300},disableHoverableContent:{type:Boolean,required:!1,default:!1},disableClosingTrigger:{type:Boolean,required:!1},disabled:{type:Boolean,required:!1},ignoreNonKeyboardFocus:{type:Boolean,required:!1,default:!1},content:{type:Object,required:!1}},setup(e){const t=e,{delayDuration:n,skipDelayDuration:r,disableHoverableContent:o,disableClosingTrigger:s,ignoreNonKeyboardFocus:i,disabled:l,content:a}=ls(t);Bv();const u=Te(!0),c=Te(!1),{start:f,stop:d}=fv(()=>{u.value=!0},r,{immediate:!1});return $v({isOpenDelayed:u,delayDuration:n,onOpen(){d(),u.value=!1},onClose(){f()},isPointerInTransitRef:c,disableHoverableContent:o,disableClosingTrigger:s,disabled:l,ignoreNonKeyboardFocus:i,content:a}),(p,h)=>ti(p.$slots,"default")}}),Vv=Uv;const Wv=ke({__name:"TooltipProvider",props:{delayDuration:{default:0},skipDelayDuration:{},disableHoverableContent:{type:Boolean},disableClosingTrigger:{type:Boolean},disabled:{type:Boolean},ignoreNonKeyboardFocus:{type:Boolean},content:{}},setup(e){const t=e;return(n,r)=>(Ke(),tt(oe(Vv),va(ii(t)),{default:ln(()=>[ti(n.$slots,"default")]),_:3},16))}}),Vs=Symbol("head-component"),Ei={body:{type:Boolean,default:void 0},tagPosition:{type:String}};function Ar(e,t){const n=Object.fromEntries(Object.entries(e).filter(([r,o])=>o!==void 0));return typeof n.body<"u"&&(n.tagPosition=n.body?"bodyClose":"head"),typeof n.renderPriority<"u"&&(n.tagPriority=n.renderPriority),{...n,key:t}}function Cr(){const e=Ue()?.vnode.key;return e!=null&&typeof e!="symbol"?String(e):void 0}function gn(){return be(Vs,Kv,!0)}function Kv(){const e=be(Vs,null);if(e)return e;const t=nt({}),n=Qg(t),r={input:t,entry:n,update:()=>n.patch(t)};return at(Vs,r),r}const mn={accesskey:String,autocapitalize:String,autofocus:{type:Boolean,default:void 0},class:{type:[String,Object,Array],default:void 0},contenteditable:{type:Boolean,default:void 0},contextmenu:String,dir:String,draggable:{type:Boolean,default:void 0},enterkeyhint:String,exportparts:String,hidden:{type:Boolean,default:void 0},id:String,inputmode:String,is:String,itemid:String,itemprop:String,itemref:String,itemscope:String,itemtype:String,lang:String,nonce:String,part:String,slot:String,spellcheck:{type:Boolean,default:void 0},style:{type:[String,Object,Array],default:void 0},tabindex:String,title:String,translate:String,renderPriority:[String,Number],tagPriority:{type:[String,Number]}};({...mn,...Ei});({...mn,...Ei});({...mn});({...mn});({...mn,...Ei});({...mn});const Gv=ke({name:"Body",inheritAttrs:!1,props:mn,setup(e,t){const{input:n,update:r}=gn();return St(()=>{n.bodyAttrs=null,r()}),()=>(n.bodyAttrs={...e,...t.attrs},r(),t.slots.default?.())}}),qv=ke({name:"SiteBody",__name:"SiteBody",setup(e){return(t,n)=>{const r=Gv;return Ke(),tt(r,{class:"antialiased flex h-full text-base text-foreground bg-background"},{default:ln(()=>[ti(t.$slots,"default")]),_:3})}}}),zv=Object.assign(qv,{__name:"SiteBody"}),Jv=(e,t)=>{const n=e.__vccOpts||e;for(const[r,o]of t)n[r]=o;return n},Qv={};function Yv(e,t){const n=Ov,r=jv,o=Wv,s=zv;return Ke(),tt(s,null,{default:ln(()=>[ye(o,null,{default:ln(()=>[ye(r,null,{default:ln(()=>[ye(n)]),_:1})]),_:1})]),_:1})}const Xv=Jv(Qv,[["render",Yv]]),Zv={__name:"nuxt-error-page",props:{error:Object},setup(e){const n=e.error,r=Number(n.statusCode||500),o=r===404,s=n.statusMessage??(o?"Page Not Found":"Internal Server Error"),i=n.message||n.toString(),l=void 0,c=o?to(()=>fn(()=>import("./uHQwCIHg.js"),__vite__mapDeps([11,10,12]),import.meta.url)):to(()=>fn(()=>import("./COIbUy5w.js"),__vite__mapDeps([13,14]),import.meta.url));return(f,d)=>(Ke(),tt(oe(c),va(ii({status:oe(r),statusText:oe(s),statusCode:oe(r),statusMessage:oe(s),description:oe(i),stack:oe(l)})),null,16))}},eb={key:0},ua={__name:"nuxt-root",setup(e){const t=()=>null,n=Ae(),r=n.deferHydration();if(n.isHydrating){const u=n.hooks.hookOnce("app:error",r);rt().beforeEach(u)}const o=!1;at(pn,di()),n.hooks.callHookWith(u=>u.map(c=>c()),"vue:setup");const s=Io(),i=!1,l=/bot\b|chrome-lighthouse|facebookexternalhit|google\b/i;lc((u,c,f)=>{if(n.hooks.callHook("vue:error",u,c,f)?.catch(d=>console.error("[nuxt] Error in `vue:error` hook",d)),l.test(navigator.userAgent))return n.hooks.callHook("app:error",u),console.error(`[nuxt] Not rendering error page for bot with user agent \`${navigator.userAgent}\`:`,u),!1;if(du(u)&&(u.fatal||u.unhandled))return n.runWithContext(()=>tn(u)),!1});const a=!1;return(u,c)=>(Ke(),tt(si,{onResolve:oe(r)},{default:ln(()=>[oe(i)?(Ke(),ep("div",eb)):oe(s)?(Ke(),tt(oe(Zv),{key:1,error:oe(s)},null,8,["error"])):oe(a)?(Ke(),tt(oe(t),{key:2,context:oe(a)},null,8,["context"])):oe(o)?(Ke(),tt(Sd(oe(o)),{key:3})):(Ke(),tt(oe(Xv),{key:4}))]),_:1},8,["onResolve"]))}};let fa;{let e;fa=async function(){if(e)return e;const n=!!(window.__NUXT__?.serverRendered??document.getElementById("__NUXT_DATA__")?.dataset.ssr==="true"),r=n?Wp(ua):Vp(ua),o=Zh({vueApp:r});async function s(i){await o.callHook("app:error",i),o.payload.error||=un(i)}r.config.errorHandler=s,o.hook("app:suspense:resolve",()=>{r.config.errorHandler===s&&(r.config.errorHandler=void 0)}),!n&&ml.id&&o.hook("app:suspense:resolve",()=>{document.getElementById(ml.id)?.remove()});try{await ng(o,Pv)}catch(i){s(i)}try{await o.hooks.callHook("app:created",r),await o.hooks.callHook("app:beforeMount",r),r.mount(Qh),await o.hooks.callHook("app:mounted",r),await Et()}catch(i){s(i)}return r},e=fa().catch(t=>{throw console.error("Error while mounting app:",t),t})}export{Ty as $,tt as A,ti as B,oe as C,nt as D,ls as E,Mb as F,cb as G,He as H,ib as I,Hc as J,Dv as K,ub as L,Sd as M,Bn as N,Cv as O,vo as P,va as Q,ii as R,$n as S,nb as T,Rb as U,bo as V,Oe as W,Ib as X,ob as Y,Nb as Z,Jv as _,Mc as a,as as a$,cr as a0,Nu as a1,me as a2,xe as a3,Lb as a4,kb as a5,Ef as a6,Wa as a7,di as a8,Ry as a9,Y_ as aA,tu as aB,yb as aC,Oo as aD,rt as aE,Ae as aF,Fu as aG,Kl as aH,_b as aI,sb as aJ,qc as aK,fg as aL,ug as aM,zy as aN,gb as aO,db as aP,Un as aQ,Qc as aR,vh as aS,lo as aT,Se as aU,Ht as aV,vb as aW,bb as aX,n_ as aY,pb as aZ,_d as a_,un as aa,be as ab,Uf as ac,at as ad,fb as ae,re as af,mb as ag,Br as ah,$e as ai,Ue as aj,Gt as ak,Sb as al,rb as am,vt as an,Ob as ao,pv as ap,tb as aq,br as ar,Ba as as,Eb as at,ab as au,Hb as av,fv as aw,lb as ax,hb as ay,ma as az,ye as b,wb as b0,ep as c,Lc as d,Pb as e,Cb as f,ge as g,Ne as h,Nt as i,au as j,Ab as k,_r as l,Xs as m,Et as n,Ke as o,ve as p,Ot as q,Te as r,St as s,wf as t,Qg as u,xb as v,ln as w,Tb as x,ke as y,Bv as z};
|