aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas Werkmeister <lucas.werkmeister@wikimedia.de>2022-03-25 17:45:15 +0100
committerCatrope <roan@wikimedia.org>2022-03-30 05:05:35 +0000
commitf841175af84558897413b355529ec56e896cb44d (patch)
tree26a94612e6cbb2b73e5305a5cabfb9ca2c750bc2
parent67d93a622fa05e76870f79073f539b660c21a38e (diff)
downloadmediawikicore-f841175af84558897413b355529ec56e896cb44d.tar.gz
mediawikicore-f841175af84558897413b355529ec56e896cb44d.zip
Upgrade Vue from 3.2.23 to to 3.2.31
Vue 3.2.25 and above reintroduce a Vue 2 feature that had been temporarily removed in Vue 3, so staying on a Vue 3 version before 3.2.25 causes unnecessary compatibility problems. (The behavior change in question isn’t well documented – see [1] – but seems to be related to the behavior of refs inside v-for.) (Note that we’re still on the compatibility build, this commit isn’t changing that yet.) [1]: https://github.com/vuejs/v3-migration-guide/issues/10 Bug: T304717 Change-Id: I9b517b66edc6356079c49cb3ece0373c8284c2d3
-rw-r--r--RELEASE-NOTES-1.391
-rw-r--r--resources/lib/foreign-resources.yaml6
-rw-r--r--resources/lib/vue/README.md87
-rw-r--r--resources/lib/vue/vue.global.js2141
-rw-r--r--resources/lib/vue/vue.global.prod.js2
5 files changed, 1145 insertions, 1092 deletions
diff --git a/RELEASE-NOTES-1.39 b/RELEASE-NOTES-1.39
index 7f373bb1d967..80daea3a8445 100644
--- a/RELEASE-NOTES-1.39
+++ b/RELEASE-NOTES-1.39
@@ -40,6 +40,7 @@ For notes on 1.38.x and older releases, see HISTORY.
* …
=== External library changes in 1.39 ===
+* Vue/compat updated from 3.2.23 to 3.2.31
* …
==== New external libraries ====
diff --git a/resources/lib/foreign-resources.yaml b/resources/lib/foreign-resources.yaml
index 837e5993074b..362b23c9cab3 100644
--- a/resources/lib/foreign-resources.yaml
+++ b/resources/lib/foreign-resources.yaml
@@ -351,9 +351,9 @@ sinonjs:
vue:
type: tar
- # This is the migration build of Vue 3.2.23 which provides compatibility for Vue 2 code
- src: https://registry.npmjs.org/@vue/compat/-/compat-3.2.23.tgz
- integrity: sha512-ap/aO8V1j3dveHGcELRQZdb3dlnMgCK5N5Ur6Q37RRtMcB1glJldqUP46aAhY7kMberaUVWwYehMothocsF6Dg==
+ # This is the migration build of Vue 3.2.31 which provides compatibility for Vue 2 code
+ src: https://registry.npmjs.org/@vue/compat/-/compat-3.2.31.tgz
+ integrity: sha512-hhwJk/SRwpT2OADctj+t7QZCRIgh04AcelGpe6gdj0OxA75xpHnPrG+fmG37U3Z6WDrNHZpGvu2eXBzWXM4OVA==
dest:
package/README.md:
package/LICENSE:
diff --git a/resources/lib/vue/README.md b/resources/lib/vue/README.md
index 44ad0f9d0acc..01bd71643a8e 100644
--- a/resources/lib/vue/README.md
+++ b/resources/lib/vue/README.md
@@ -18,7 +18,7 @@ While we've tried hard to make the migration build mimic Vue 2 behavior as much
- Internet Explorer 11 support: [Vue 3 has officially dropped the plan for IE11 support](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0038-vue3-ie11-support.md). If you still need to support IE11 or below, you will have to stay on Vue 2.
-- Server-side rendering: the migration build can be used for SSR, but migrating a custom SSR setup is much more involved. The general idea is replacing `vue-server-renderer` with [`@vue/server-renderer`](https://github.com/vuejs/vue-next/tree/master/packages/server-renderer). Vue 3 no longer provides a bundle renderer and it is recommended to use Vue 3 SSR with [Vite](https://vitejs.dev/guide/ssr.html). If you are using [Nuxt.js](https://nuxtjs.org/), it is probably better to wait for Nuxt 3.
+- Server-side rendering: the migration build can be used for SSR, but migrating a custom SSR setup is much more involved. The general idea is replacing `vue-server-renderer` with [`@vue/server-renderer`](https://github.com/vuejs/core/tree/main/packages/server-renderer). Vue 3 no longer provides a bundle renderer and it is recommended to use Vue 3 SSR with [Vite](https://vitejs.dev/guide/ssr.html). If you are using [Nuxt.js](https://nuxtjs.org/), it is probably better to wait for Nuxt 3.
### Expectations
@@ -89,6 +89,7 @@ The following workflow walks through the steps of migrating an actual Vue 2 app
}
}
})
+ }
}
```
@@ -168,11 +169,11 @@ The following workflow walks through the steps of migrating an actual Vue 2 app
- If you are using `vue-router`, note `<transition>` and `<keep-alive>` will not work with `<router-view>` until you upgrade to `vue-router` v4.
-6. Update [`<transition>` class names](https://v3.vuejs.org/guide/migration/transition.html). This is the only feature that does not have a runtime warning. You can do a project-wide search for `.*-enter` and `.*-leave` CSS class names.
+6. Update [`<transition>` class names](https://v3-migration.vuejs.org/breaking-changes/transition.html). This is the only feature that does not have a runtime warning. You can do a project-wide search for `.*-enter` and `.*-leave` CSS class names.
[Example commit](https://github.com/vuejs/vue-hackernews-2.0/commit/d300103ba622ae26ac26a82cd688e0f70b6c1d8f)
-7. Update app entry to use [new global mounting API](https://v3.vuejs.org/guide/migration/global-api.html#a-new-global-api-createapp).
+7. Update app entry to use [new global mounting API](https://v3-migration.vuejs.org/breaking-changes/global-api.html#a-new-global-api-createapp).
[Example commit](https://github.com/vuejs/vue-hackernews-2.0/commit/a6e0c9ac7b1f4131908a4b1e43641f608593f714)
@@ -257,72 +258,72 @@ Features that start with `COMPILER_` are compiler-specific: if you are using the
| ID | Type | Description | Docs |
| ------------------------------------- | ---- | ----------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- |
-| GLOBAL_MOUNT_CONTAINER | ⨂ | Mounted application does not replace the element it's mounted to | [link](https://v3.vuejs.org/guide/migration/mount-changes.html) |
-| CONFIG_DEVTOOLS | ⨂ | production devtools is now a build-time flag | [link](https://github.com/vuejs/vue-next/tree/master/packages/vue#bundler-build-feature-flags) |
-| COMPILER_V_IF_V_FOR_PRECEDENCE | ⨂ | `v-if` and `v-for` precedence when used on the same element has changed | [link](https://v3.vuejs.org/guide/migration/v-if-v-for.html) |
-| COMPILER_V_IF_SAME_KEY | ⨂ | `v-if` branches can no longer have the same key | [link](https://v3.vuejs.org/guide/migration/key-attribute.html#on-conditional-branches) |
-| COMPILER_V_FOR_TEMPLATE_KEY_PLACEMENT | ⨂ | `<template v-for>` key should now be placed on `<template>` | [link](https://v3.vuejs.org/guide/migration/key-attribute.html#with-template-v-for) |
-| COMPILER_SFC_FUNCTIONAL | ⨂ | `<template functional>` is no longer supported in SFCs | [link](https://v3.vuejs.org/guide/migration/functional-components.html#single-file-components-sfcs) | | |
+| GLOBAL_MOUNT_CONTAINER | ⨂ | Mounted application does not replace the element it's mounted to | [link](https://v3-migration.vuejs.org/breaking-changes/mount-changes.html) |
+| CONFIG_DEVTOOLS | ⨂ | production devtools is now a build-time flag | [link](https://github.com/vuejs/core/tree/main/packages/vue#bundler-build-feature-flags) |
+| COMPILER_V_IF_V_FOR_PRECEDENCE | ⨂ | `v-if` and `v-for` precedence when used on the same element has changed | [link](https://v3-migration.vuejs.org/breaking-changes/v-if-v-for.html) |
+| COMPILER_V_IF_SAME_KEY | ⨂ | `v-if` branches can no longer have the same key | [link](https://v3-migration.vuejs.org/breaking-changes/key-attribute.html#on-conditional-branches) |
+| COMPILER_V_FOR_TEMPLATE_KEY_PLACEMENT | ⨂ | `<template v-for>` key should now be placed on `<template>` | [link](https://v3-migration.vuejs.org/breaking-changes/key-attribute.html#with-template-v-for) |
+| COMPILER_SFC_FUNCTIONAL | ⨂ | `<template functional>` is no longer supported in SFCs | [link](https://v3-migration.vuejs.org/breaking-changes/functional-components.html#single-file-components-sfcs) | | |
### Partially Compatible with Caveats
| ID | Type | Description | Docs |
| ------------------------ | ---- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------- |
-| CONFIG_IGNORED_ELEMENTS | ◐ | `config.ignoredElements` is now `config.compilerOptions.isCustomElement` (only in browser compiler build). If using build setup, `isCustomElement` must be passed via build configuration. | [link](https://v3.vuejs.org/guide/migration/global-api.html#config-ignoredelements-is-now-config-iscustomelement) |
-| COMPILER_INLINE_TEMPLATE | ◐ | `inline-template` removed (compat only supported in browser compiler build) | [link](https://v3.vuejs.org/guide/migration/inline-template-attribute.html) |
-| PROPS_DEFAULT_THIS | ◐ | props default factory no longer have access to `this` (in compat mode, `this` is not a real instance - it only exposes props, `$options` and injections) | [link](https://v3.vuejs.org/guide/migration/props-default-this.html) |
+| CONFIG_IGNORED_ELEMENTS | ◐ | `config.ignoredElements` is now `config.compilerOptions.isCustomElement` (only in browser compiler build). If using build setup, `isCustomElement` must be passed via build configuration. | [link](https://v3-migration.vuejs.org/breaking-changes/global-api.html#config-ignoredelements-is-now-config-iscustomelement) |
+| COMPILER_INLINE_TEMPLATE | ◐ | `inline-template` removed (compat only supported in browser compiler build) | [link](https://v3-migration.vuejs.org/breaking-changes/inline-template-attribute.html) |
+| PROPS_DEFAULT_THIS | ◐ | props default factory no longer have access to `this` (in compat mode, `this` is not a real instance - it only exposes props, `$options` and injections) | [link](https://v3-migration.vuejs.org/breaking-changes/props-default-this.html) |
| INSTANCE_DESTROY | ◐ | `$destroy` instance method removed (in compat mode, only supported on root instance) | |
| GLOBAL_PRIVATE_UTIL | ◐ | `Vue.util` is private and no longer available | |
-| CONFIG_PRODUCTION_TIP | ◐ | `config.productionTip` no longer necessary | [link](https://v3.vuejs.org/guide/migration/global-api.html#config-productiontip-removed) |
+| CONFIG_PRODUCTION_TIP | ◐ | `config.productionTip` no longer necessary | [link](https://v3-migration.vuejs.org/breaking-changes/global-api.html#config-productiontip-removed) |
| CONFIG_SILENT | ◐ | `config.silent` removed |
### Compat only (no warning)
| ID | Type | Description | Docs |
| ------------------ | ---- | ------------------------------------- | ---------------------------------------- |
-| TRANSITION_CLASSES | ⭘ | Transtion enter/leave classes changed | [link](https://v3.vuejs.org/guide/migration/transition.html) |
+| TRANSITION_CLASSES | ⭘ | Transtion enter/leave classes changed | [link](https://v3-migration.vuejs.org/breaking-changes/transition.html) |
### Fully Compatible
| ID | Type | Description | Docs |
| ---------------------------- | ---- | --------------------------------------------------------------------- | ------------------------------------------------------------------------------------------ |
-| GLOBAL_MOUNT | ✔ | new Vue() -> createApp | [link](https://v3.vuejs.org/guide/migration/global-api.html#mounting-app-instance) |
-| GLOBAL_EXTEND | ✔ | Vue.extend removed (use `defineComponent` or `extends` option) | [link](https://v3.vuejs.org/guide/migration/global-api.html#vue-extend-replaced-by-definecomponent) |
-| GLOBAL_PROTOTYPE | ✔ | `Vue.prototype` -> `app.config.globalProperties` | [link](https://v3.vuejs.org/guide/migration/global-api.html#vue-prototype-replaced-by-config-globalproperties) |
+| GLOBAL_MOUNT | ✔ | new Vue() -> createApp | [link](https://v3-migration.vuejs.org/breaking-changes/global-api.html#mounting-app-instance) |
+| GLOBAL_EXTEND | ✔ | Vue.extend removed (use `defineComponent` or `extends` option) | [link](https://v3-migration.vuejs.org/breaking-changes/global-api.html#vue-extend-replaced-by-definecomponent) |
+| GLOBAL_PROTOTYPE | ✔ | `Vue.prototype` -> `app.config.globalProperties` | [link](https://v3-migration.vuejs.org/breaking-changes/global-api.html#vue-prototype-replaced-by-config-globalproperties) |
| GLOBAL_SET | ✔ | `Vue.set` removed (no longer needed) | |
| GLOBAL_DELETE | ✔ | `Vue.delete` removed (no longer needed) | |
-| GLOBAL_OBSERVABLE | ✔ | `Vue.observable` removed (use `reactive`) | [link](https://v3.vuejs.org/api/basic-reactivity.html) |
-| CONFIG_KEY_CODES | ✔ | config.keyCodes removed | [link](https://v3.vuejs.org/guide/migration/keycode-modifiers.html) |
+| GLOBAL_OBSERVABLE | ✔ | `Vue.observable` removed (use `reactive`) | [link](https://vuejs.org/api/reactivity-core.html#reactive) |
+| CONFIG_KEY_CODES | ✔ | config.keyCodes removed | [link](https://v3-migration.vuejs.org/breaking-changes/keycode-modifiers.html) |
| CONFIG_WHITESPACE | ✔ | In Vue 3 whitespace defaults to `"condense"` | |
| INSTANCE_SET | ✔ | `vm.$set` removed (no longer needed) | |
| INSTANCE_DELETE | ✔ | `vm.$delete` removed (no longer needed) | |
-| INSTANCE_EVENT_EMITTER | ✔ | `vm.$on`, `vm.$off`, `vm.$once` removed | [link](https://v3.vuejs.org/guide/migration/events-api.html) |
-| INSTANCE_EVENT_HOOKS | ✔ | Instance no longer emits `hook:x` events | [link](https://v3.vuejs.org/guide/migration/vnode-lifecycle-events.html) |
-| INSTANCE_CHILDREN | ✔ | `vm.$children` removed | [link](https://v3.vuejs.org/guide/migration/children.html) |
-| INSTANCE_LISTENERS | ✔ | `vm.$listeners` removed | [link](https://v3.vuejs.org/guide/migration/listeners-removed.html) |
-| INSTANCE_SCOPED_SLOTS | ✔ | `vm.$scopedSlots` removed; `vm.$slots` now exposes functions | [link](https://v3.vuejs.org/guide/migration/slots-unification.html) |
-| INSTANCE_ATTRS_CLASS_STYLE | ✔ | `$attrs` now includes `class` and `style` | [link](https://v3.vuejs.org/guide/migration/attrs-includes-class-style.html) |
-| OPTIONS_DATA_FN | ✔ | `data` must be a function in all cases | [link](https://v3.vuejs.org/guide/migration/data-option.html) |
-| OPTIONS_DATA_MERGE | ✔ | `data` from mixin or extension is now shallow merged | [link](https://v3.vuejs.org/guide/migration/data-option.html) |
+| INSTANCE_EVENT_EMITTER | ✔ | `vm.$on`, `vm.$off`, `vm.$once` removed | [link](https://v3-migration.vuejs.org/breaking-changes/events-api.html) |
+| INSTANCE_EVENT_HOOKS | ✔ | Instance no longer emits `hook:x` events | [link](https://v3-migration.vuejs.org/breaking-changes/vnode-lifecycle-events.html) |
+| INSTANCE_CHILDREN | ✔ | `vm.$children` removed | [link](https://v3-migration.vuejs.org/breaking-changes/children.html) |
+| INSTANCE_LISTENERS | ✔ | `vm.$listeners` removed | [link](https://v3-migration.vuejs.org/breaking-changes/listeners-removed.html) |
+| INSTANCE_SCOPED_SLOTS | ✔ | `vm.$scopedSlots` removed; `vm.$slots` now exposes functions | [link](https://v3-migration.vuejs.org/breaking-changes/slots-unification.html) |
+| INSTANCE_ATTRS_CLASS_STYLE | ✔ | `$attrs` now includes `class` and `style` | [link](https://v3-migration.vuejs.org/breaking-changes/attrs-includes-class-style.html) |
+| OPTIONS_DATA_FN | ✔ | `data` must be a function in all cases | [link](https://v3-migration.vuejs.org/breaking-changes/data-option.html) |
+| OPTIONS_DATA_MERGE | ✔ | `data` from mixin or extension is now shallow merged | [link](https://v3-migration.vuejs.org/breaking-changes/data-option.html) |
| OPTIONS_BEFORE_DESTROY | ✔ | `beforeDestroy` -> `beforeUnmount` | |
| OPTIONS_DESTROYED | ✔ | `destroyed` -> `unmounted` | |
-| WATCH_ARRAY | ✔ | watching an array no longer triggers on mutation unless deep | [link](https://v3.vuejs.org/guide/migration/watch.html) |
-| V_FOR_REF | ✔ | `ref` inside `v-for` no longer registers array of refs | [link](https://v3.vuejs.org/guide/migration/array-refs.html) |
-| V_ON_KEYCODE_MODIFIER | ✔ | `v-on` no longer supports keyCode modifiers | [link](https://v3.vuejs.org/guide/migration/keycode-modifiers.html) |
-| CUSTOM_DIR | ✔ | Custom directive hook names changed | [link](https://v3.vuejs.org/guide/migration/custom-directives.html) |
-| ATTR_FALSE_VALUE | ✔ | No longer removes attribute if binding value is boolean `false` | [link](https://v3.vuejs.org/guide/migration/attribute-coercion.html) |
-| ATTR_ENUMERATED_COERSION | ✔ | No longer special case enumerated attributes | [link](https://v3.vuejs.org/guide/migration/attribute-coercion.html) |
-| TRANSITION_GROUP_ROOT | ✔ | `<transition-group>` no longer renders a root element by default | [link](https://v3.vuejs.org/guide/migration/transition-group.html) |
-| COMPONENT_ASYNC | ✔ | Async component API changed (now requires `defineAsyncComponent`) | [link](https://v3.vuejs.org/guide/migration/async-components.html) |
-| COMPONENT_FUNCTIONAL | ✔ | Functional component API changed (now must be plain functions) | [link](https://v3.vuejs.org/guide/migration/functional-components.html) |
-| COMPONENT_V_MODEL | ✔ | Component v-model reworked | [link](https://v3.vuejs.org/guide/migration/v-model.html) |
-| RENDER_FUNCTION | ✔ | Render function API changed | [link](https://v3.vuejs.org/guide/migration/render-function-api.html) |
-| FILTERS | ✔ | Filters removed (this option affects only runtime filter APIs) | [link](https://v3.vuejs.org/guide/migration/filters.html) |
-| COMPILER_IS_ON_ELEMENT | ✔ | `is` usage is now restricted to `<component>` only | [link](https://v3.vuejs.org/guide/migration/custom-elements-interop.html) |
-| COMPILER_V_BIND_SYNC | ✔ | `v-bind.sync` replaced by `v-model` with arguments | [link](https://v3.vuejs.org/guide/migration/v-model.html) |
+| WATCH_ARRAY | ✔ | watching an array no longer triggers on mutation unless deep | [link](https://v3-migration.vuejs.org/breaking-changes/watch.html) |
+| V_FOR_REF | ✔ | `ref` inside `v-for` no longer registers array of refs | [link](https://v3-migration.vuejs.org/breaking-changes/array-refs.html) |
+| V_ON_KEYCODE_MODIFIER | ✔ | `v-on` no longer supports keyCode modifiers | [link](https://v3-migration.vuejs.org/breaking-changes/keycode-modifiers.html) |
+| CUSTOM_DIR | ✔ | Custom directive hook names changed | [link](https://v3-migration.vuejs.org/breaking-changes/custom-directives.html) |
+| ATTR_FALSE_VALUE | ✔ | No longer removes attribute if binding value is boolean `false` | [link](https://v3-migration.vuejs.org/breaking-changes/attribute-coercion.html) |
+| ATTR_ENUMERATED_COERSION | ✔ | No longer special case enumerated attributes | [link](https://v3-migration.vuejs.org/breaking-changes/attribute-coercion.html) |
+| TRANSITION_GROUP_ROOT | ✔ | `<transition-group>` no longer renders a root element by default | [link](https://v3-migration.vuejs.org/breaking-changes/transition-group.html) |
+| COMPONENT_ASYNC | ✔ | Async component API changed (now requires `defineAsyncComponent`) | [link](https://v3-migration.vuejs.org/breaking-changes/async-components.html) |
+| COMPONENT_FUNCTIONAL | ✔ | Functional component API changed (now must be plain functions) | [link](https://v3-migration.vuejs.org/breaking-changes/functional-components.html) |
+| COMPONENT_V_MODEL | ✔ | Component v-model reworked | [link](https://v3-migration.vuejs.org/breaking-changes/v-model.html) |
+| RENDER_FUNCTION | ✔ | Render function API changed | [link](https://v3-migration.vuejs.org/breaking-changes/render-function-api.html) |
+| FILTERS | ✔ | Filters removed (this option affects only runtime filter APIs) | [link](https://v3-migration.vuejs.org/breaking-changes/filters.html) |
+| COMPILER_IS_ON_ELEMENT | ✔ | `is` usage is now restricted to `<component>` only | [link](https://v3-migration.vuejs.org/breaking-changes/custom-elements-interop.html) |
+| COMPILER_V_BIND_SYNC | ✔ | `v-bind.sync` replaced by `v-model` with arguments | [link](https://v3-migration.vuejs.org/breaking-changes/v-model.html) |
| COMPILER_V_BIND_PROP | ✔ | `v-bind.prop` modifier removed | |
-| COMPILER_V_BIND_OBJECT_ORDER | ✔ | `v-bind="object"` is now order sensitive | [link](https://v3.vuejs.org/guide/migration/v-bind.html) |
-| COMPILER_V_ON_NATIVE | ✔ | `v-on.native` modifier removed | [link](https://v3.vuejs.org/guide/migration/v-on-native-modifier-removed.html) |
+| COMPILER_V_BIND_OBJECT_ORDER | ✔ | `v-bind="object"` is now order sensitive | [link](https://v3-migration.vuejs.org/breaking-changes/v-bind.html) |
+| COMPILER_V_ON_NATIVE | ✔ | `v-on.native` modifier removed | [link](https://v3-migration.vuejs.org/breaking-changes/v-on-native-modifier-removed.html) |
| COMPILER_V_FOR_REF | ✔ | `ref` in `v-for` (compiler support) | |
| COMPILER_NATIVE_TEMPLATE | ✔ | `<template>` with no special directives now renders as native element | |
| COMPILER_FILTERS | ✔ | filters (compiler support) | |
diff --git a/resources/lib/vue/vue.global.js b/resources/lib/vue/vue.global.js
index eaccde15ea71..210bbd709ac1 100644
--- a/resources/lib/vue/vue.global.js
+++ b/resources/lib/vue/vue.global.js
@@ -110,7 +110,7 @@ var Vue = (function () {
const isSpecialBooleanAttr = /*#__PURE__*/ makeMap(specialBooleanAttrs);
/**
* Boolean attributes should be included if the value is truthy or ''.
- * e.g. <select multiple> compiles to { multiple: '' }
+ * e.g. `<select multiple>` compiles to `{ multiple: '' }`
*/
function includeBooleanAttr(value) {
return !!value || value === '';
@@ -209,8 +209,20 @@ var Vue = (function () {
'polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,' +
'text,textPath,title,tspan,unknown,use,view';
const VOID_TAGS = 'area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr';
+ /**
+ * Compiler only.
+ * Do NOT use in runtime code paths unless behind `true` flag.
+ */
const isHTMLTag = /*#__PURE__*/ makeMap(HTML_TAGS);
+ /**
+ * Compiler only.
+ * Do NOT use in runtime code paths unless behind `true` flag.
+ */
const isSVGTag = /*#__PURE__*/ makeMap(SVG_TAGS);
+ /**
+ * Compiler only.
+ * Do NOT use in runtime code paths unless behind `true` flag.
+ */
const isVoidTag = /*#__PURE__*/ makeMap(VOID_TAGS);
function looseCompareArrays(a, b) {
@@ -268,13 +280,15 @@ var Vue = (function () {
* @private
*/
const toDisplayString = (val) => {
- return val == null
- ? ''
- : isArray(val) ||
- (isObject(val) &&
- (val.toString === objectToString || !isFunction(val.toString)))
- ? JSON.stringify(val, replacer, 2)
- : String(val);
+ return isString(val)
+ ? val
+ : val == null
+ ? ''
+ : isArray(val) ||
+ (isObject(val) &&
+ (val.toString === objectToString || !isFunction(val.toString)))
+ ? JSON.stringify(val, replacer, 2)
+ : String(val);
};
const replacer = (_key, val) => {
// can't use isRef here since @vue/shared has no deps
@@ -344,10 +358,11 @@ var Vue = (function () {
'' + parseInt(key, 10) === key;
const isReservedProp = /*#__PURE__*/ makeMap(
// the leading comma is intentional so empty string "" is also included
- ',key,ref,' +
+ ',key,ref,ref_for,ref_key,' +
'onVnodeBeforeMount,onVnodeMounted,' +
'onVnodeBeforeUpdate,onVnodeUpdated,' +
'onVnodeBeforeUnmount,onVnodeUnmounted');
+ const isBuiltInDirective = /*#__PURE__*/ makeMap('bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo');
const cacheStringFunction = (fn) => {
const cache = Object.create(null);
return ((str) => {
@@ -413,7 +428,6 @@ var Vue = (function () {
}
let activeEffectScope;
- const effectScopeStack = [];
class EffectScope {
constructor(detached = false) {
this.active = true;
@@ -428,11 +442,11 @@ var Vue = (function () {
run(fn) {
if (this.active) {
try {
- this.on();
+ activeEffectScope = this;
return fn();
}
finally {
- this.off();
+ activeEffectScope = this.parent;
}
}
else {
@@ -440,23 +454,24 @@ var Vue = (function () {
}
}
on() {
- if (this.active) {
- effectScopeStack.push(this);
- activeEffectScope = this;
- }
+ activeEffectScope = this;
}
off() {
- if (this.active) {
- effectScopeStack.pop();
- activeEffectScope = effectScopeStack[effectScopeStack.length - 1];
- }
+ activeEffectScope = this.parent;
}
stop(fromParent) {
if (this.active) {
- this.effects.forEach(e => e.stop());
- this.cleanups.forEach(cleanup => cleanup());
+ let i, l;
+ for (i = 0, l = this.effects.length; i < l; i++) {
+ this.effects[i].stop();
+ }
+ for (i = 0, l = this.cleanups.length; i < l; i++) {
+ this.cleanups[i]();
+ }
if (this.scopes) {
- this.scopes.forEach(e => e.stop(true));
+ for (i = 0, l = this.scopes.length; i < l; i++) {
+ this.scopes[i].stop(true);
+ }
}
// nested scope, dereference from parent to avoid memory leaks
if (this.parent && !fromParent) {
@@ -474,8 +489,7 @@ var Vue = (function () {
function effectScope(detached) {
return new EffectScope(detached);
}
- function recordEffectScope(effect, scope) {
- scope = scope || activeEffectScope;
+ function recordEffectScope(effect, scope = activeEffectScope) {
if (scope && scope.active) {
scope.effects.push(effect);
}
@@ -538,7 +552,6 @@ var Vue = (function () {
* When recursion depth is greater, fall back to using a full cleanup.
*/
const maxMarkerBits = 30;
- const effectStack = [];
let activeEffect;
const ITERATE_KEY = Symbol('iterate' );
const MAP_KEY_ITERATE_KEY = Symbol('Map key iterate' );
@@ -548,35 +561,42 @@ var Vue = (function () {
this.scheduler = scheduler;
this.active = true;
this.deps = [];
+ this.parent = undefined;
recordEffectScope(this, scope);
}
run() {
if (!this.active) {
return this.fn();
}
- if (!effectStack.includes(this)) {
- try {
- effectStack.push((activeEffect = this));
- enableTracking();
- trackOpBit = 1 << ++effectTrackDepth;
- if (effectTrackDepth <= maxMarkerBits) {
- initDepMarkers(this);
- }
- else {
- cleanupEffect(this);
- }
- return this.fn();
+ let parent = activeEffect;
+ let lastShouldTrack = shouldTrack;
+ while (parent) {
+ if (parent === this) {
+ return;
}
- finally {
- if (effectTrackDepth <= maxMarkerBits) {
- finalizeDepMarkers(this);
- }
- trackOpBit = 1 << --effectTrackDepth;
- resetTracking();
- effectStack.pop();
- const n = effectStack.length;
- activeEffect = n > 0 ? effectStack[n - 1] : undefined;
+ parent = parent.parent;
+ }
+ try {
+ this.parent = activeEffect;
+ activeEffect = this;
+ shouldTrack = true;
+ trackOpBit = 1 << ++effectTrackDepth;
+ if (effectTrackDepth <= maxMarkerBits) {
+ initDepMarkers(this);
+ }
+ else {
+ cleanupEffect(this);
+ }
+ return this.fn();
+ }
+ finally {
+ if (effectTrackDepth <= maxMarkerBits) {
+ finalizeDepMarkers(this);
}
+ trackOpBit = 1 << --effectTrackDepth;
+ activeEffect = this.parent;
+ shouldTrack = lastShouldTrack;
+ this.parent = undefined;
}
}
stop() {
@@ -624,32 +644,24 @@ var Vue = (function () {
trackStack.push(shouldTrack);
shouldTrack = false;
}
- function enableTracking() {
- trackStack.push(shouldTrack);
- shouldTrack = true;
- }
function resetTracking() {
const last = trackStack.pop();
shouldTrack = last === undefined ? true : last;
}
function track(target, type, key) {
- if (!isTracking()) {
- return;
- }
- let depsMap = targetMap.get(target);
- if (!depsMap) {
- targetMap.set(target, (depsMap = new Map()));
- }
- let dep = depsMap.get(key);
- if (!dep) {
- depsMap.set(key, (dep = createDep()));
+ if (shouldTrack && activeEffect) {
+ let depsMap = targetMap.get(target);
+ if (!depsMap) {
+ targetMap.set(target, (depsMap = new Map()));
+ }
+ let dep = depsMap.get(key);
+ if (!dep) {
+ depsMap.set(key, (dep = createDep()));
+ }
+ const eventInfo = { effect: activeEffect, target, type, key }
+ ;
+ trackEffects(dep, eventInfo);
}
- const eventInfo = { effect: activeEffect, target, type, key }
- ;
- trackEffects(dep, eventInfo);
- }
- function isTracking() {
- return shouldTrack && activeEffect !== undefined;
}
function trackEffects(dep, debuggerEventExtraInfo) {
let shouldTrack = false;
@@ -810,6 +822,9 @@ var Vue = (function () {
else if (key === "__v_isReadonly" /* IS_READONLY */) {
return isReadonly;
}
+ else if (key === "__v_isShallow" /* IS_SHALLOW */) {
+ return shallow;
+ }
else if (key === "__v_raw" /* RAW */ &&
receiver ===
(isReadonly
@@ -854,9 +869,14 @@ var Vue = (function () {
function createSetter(shallow = false) {
return function set(target, key, value, receiver) {
let oldValue = target[key];
+ if (isReadonly(oldValue) && isRef(oldValue) && !isRef(value)) {
+ return false;
+ }
if (!shallow && !isReadonly(value)) {
- value = toRaw(value);
- oldValue = toRaw(oldValue);
+ if (!isShallow(value)) {
+ value = toRaw(value);
+ oldValue = toRaw(oldValue);
+ }
if (!isArray(target) && isRef(oldValue) && !isRef(value)) {
oldValue.value = value;
return true;
@@ -1243,7 +1263,7 @@ var Vue = (function () {
}
function reactive(target) {
// if trying to observe a readonly proxy, return the readonly version.
- if (target && target["__v_isReadonly" /* IS_READONLY */]) {
+ if (isReadonly(target)) {
return target;
}
return createReactiveObject(target, false, mutableHandlers, mutableCollectionHandlers, reactiveMap);
@@ -1308,6 +1328,9 @@ var Vue = (function () {
function isReadonly(value) {
return !!(value && value["__v_isReadonly" /* IS_READONLY */]);
}
+ function isShallow(value) {
+ return !!(value && value["__v_isShallow" /* IS_SHALLOW */]);
+ }
function isProxy(value) {
return isReactive(value) || isReadonly(value);
}
@@ -1323,13 +1346,10 @@ var Vue = (function () {
const toReadonly = (value) => isObject(value) ? readonly(value) : value;
function trackRefValue(ref) {
- if (isTracking()) {
+ if (shouldTrack && activeEffect) {
ref = toRaw(ref);
- if (!ref.dep) {
- ref.dep = createDep();
- }
{
- trackEffects(ref.dep, {
+ trackEffects(ref.dep || (ref.dep = createDep()), {
target: ref,
type: "get" /* GET */,
key: 'value'
@@ -1351,7 +1371,7 @@ var Vue = (function () {
}
}
function isRef(r) {
- return Boolean(r && r.__v_isRef === true);
+ return !!(r && r.__v_isRef === true);
}
function ref(value) {
return createRef(value, false);
@@ -1366,22 +1386,22 @@ var Vue = (function () {
return new RefImpl(rawValue, shallow);
}
class RefImpl {
- constructor(value, _shallow) {
- this._shallow = _shallow;
+ constructor(value, __v_isShallow) {
+ this.__v_isShallow = __v_isShallow;
this.dep = undefined;
this.__v_isRef = true;
- this._rawValue = _shallow ? value : toRaw(value);
- this._value = _shallow ? value : toReactive(value);
+ this._rawValue = __v_isShallow ? value : toRaw(value);
+ this._value = __v_isShallow ? value : toReactive(value);
}
get value() {
trackRefValue(this);
return this._value;
}
set value(newVal) {
- newVal = this._shallow ? newVal : toRaw(newVal);
+ newVal = this.__v_isShallow ? newVal : toRaw(newVal);
if (hasChanged(newVal, this._rawValue)) {
this._rawValue = newVal;
- this._value = this._shallow ? newVal : toReactive(newVal);
+ this._value = this.__v_isShallow ? newVal : toReactive(newVal);
triggerRefValue(this, newVal);
}
}
@@ -1439,42 +1459,48 @@ var Vue = (function () {
return ret;
}
class ObjectRefImpl {
- constructor(_object, _key) {
+ constructor(_object, _key, _defaultValue) {
this._object = _object;
this._key = _key;
+ this._defaultValue = _defaultValue;
this.__v_isRef = true;
}
get value() {
- return this._object[this._key];
+ const val = this._object[this._key];
+ return val === undefined ? this._defaultValue : val;
}
set value(newVal) {
this._object[this._key] = newVal;
}
}
- function toRef(object, key) {
+ function toRef(object, key, defaultValue) {
const val = object[key];
- return isRef(val) ? val : new ObjectRefImpl(object, key);
+ return isRef(val)
+ ? val
+ : new ObjectRefImpl(object, key, defaultValue);
}
class ComputedRefImpl {
- constructor(getter, _setter, isReadonly) {
+ constructor(getter, _setter, isReadonly, isSSR) {
this._setter = _setter;
this.dep = undefined;
- this._dirty = true;
this.__v_isRef = true;
+ this._dirty = true;
this.effect = new ReactiveEffect(getter, () => {
if (!this._dirty) {
this._dirty = true;
triggerRefValue(this);
}
});
+ this.effect.computed = this;
+ this.effect.active = this._cacheable = !isSSR;
this["__v_isReadonly" /* IS_READONLY */] = isReadonly;
}
get value() {
// the computed ref may get wrapped by other proxies e.g. readonly() #3376
const self = toRaw(this);
trackRefValue(self);
- if (self._dirty) {
+ if (self._dirty || !self._cacheable) {
self._dirty = false;
self._value = self.effect.run();
}
@@ -1484,7 +1510,7 @@ var Vue = (function () {
this._setter(newValue);
}
}
- function computed(getterOrOptions, debugOptions) {
+ function computed(getterOrOptions, debugOptions, isSSR = false) {
let getter;
let setter;
const onlyGetter = isFunction(getterOrOptions);
@@ -1499,14 +1525,436 @@ var Vue = (function () {
getter = getterOrOptions.get;
setter = getterOrOptions.set;
}
- const cRef = new ComputedRefImpl(getter, setter, onlyGetter || !setter);
- if (debugOptions) {
+ const cRef = new ComputedRefImpl(getter, setter, onlyGetter || !setter, isSSR);
+ if (debugOptions && !isSSR) {
cRef.effect.onTrack = debugOptions.onTrack;
cRef.effect.onTrigger = debugOptions.onTrigger;
}
return cRef;
}
+ const stack = [];
+ function pushWarningContext(vnode) {
+ stack.push(vnode);
+ }
+ function popWarningContext() {
+ stack.pop();
+ }
+ function warn$1(msg, ...args) {
+ // avoid props formatting or warn handler tracking deps that might be mutated
+ // during patch, leading to infinite recursion.
+ pauseTracking();
+ const instance = stack.length ? stack[stack.length - 1].component : null;
+ const appWarnHandler = instance && instance.appContext.config.warnHandler;
+ const trace = getComponentTrace();
+ if (appWarnHandler) {
+ callWithErrorHandling(appWarnHandler, instance, 11 /* APP_WARN_HANDLER */, [
+ msg + args.join(''),
+ instance && instance.proxy,
+ trace
+ .map(({ vnode }) => `at <${formatComponentName(instance, vnode.type)}>`)
+ .join('\n'),
+ trace
+ ]);
+ }
+ else {
+ const warnArgs = [`[Vue warn]: ${msg}`, ...args];
+ /* istanbul ignore if */
+ if (trace.length &&
+ // avoid spamming console during tests
+ !false) {
+ warnArgs.push(`\n`, ...formatTrace(trace));
+ }
+ console.warn(...warnArgs);
+ }
+ resetTracking();
+ }
+ function getComponentTrace() {
+ let currentVNode = stack[stack.length - 1];
+ if (!currentVNode) {
+ return [];
+ }
+ // we can't just use the stack because it will be incomplete during updates
+ // that did not start from the root. Re-construct the parent chain using
+ // instance parent pointers.
+ const normalizedStack = [];
+ while (currentVNode) {
+ const last = normalizedStack[0];
+ if (last && last.vnode === currentVNode) {
+ last.recurseCount++;
+ }
+ else {
+ normalizedStack.push({
+ vnode: currentVNode,
+ recurseCount: 0
+ });
+ }
+ const parentInstance = currentVNode.component && currentVNode.component.parent;
+ currentVNode = parentInstance && parentInstance.vnode;
+ }
+ return normalizedStack;
+ }
+ /* istanbul ignore next */
+ function formatTrace(trace) {
+ const logs = [];
+ trace.forEach((entry, i) => {
+ logs.push(...(i === 0 ? [] : [`\n`]), ...formatTraceEntry(entry));
+ });
+ return logs;
+ }
+ function formatTraceEntry({ vnode, recurseCount }) {
+ const postfix = recurseCount > 0 ? `... (${recurseCount} recursive calls)` : ``;
+ const isRoot = vnode.component ? vnode.component.parent == null : false;
+ const open = ` at <${formatComponentName(vnode.component, vnode.type, isRoot)}`;
+ const close = `>` + postfix;
+ return vnode.props
+ ? [open, ...formatProps(vnode.props), close]
+ : [open + close];
+ }
+ /* istanbul ignore next */
+ function formatProps(props) {
+ const res = [];
+ const keys = Object.keys(props);
+ keys.slice(0, 3).forEach(key => {
+ res.push(...formatProp(key, props[key]));
+ });
+ if (keys.length > 3) {
+ res.push(` ...`);
+ }
+ return res;
+ }
+ /* istanbul ignore next */
+ function formatProp(key, value, raw) {
+ if (isString(value)) {
+ value = JSON.stringify(value);
+ return raw ? value : [`${key}=${value}`];
+ }
+ else if (typeof value === 'number' ||
+ typeof value === 'boolean' ||
+ value == null) {
+ return raw ? value : [`${key}=${value}`];
+ }
+ else if (isRef(value)) {
+ value = formatProp(key, toRaw(value.value), true);
+ return raw ? value : [`${key}=Ref<`, value, `>`];
+ }
+ else if (isFunction(value)) {
+ return [`${key}=fn${value.name ? `<${value.name}>` : ``}`];
+ }
+ else {
+ value = toRaw(value);
+ return raw ? value : [`${key}=`, value];
+ }
+ }
+
+ const ErrorTypeStrings = {
+ ["sp" /* SERVER_PREFETCH */]: 'serverPrefetch hook',
+ ["bc" /* BEFORE_CREATE */]: 'beforeCreate hook',
+ ["c" /* CREATED */]: 'created hook',
+ ["bm" /* BEFORE_MOUNT */]: 'beforeMount hook',
+ ["m" /* MOUNTED */]: 'mounted hook',
+ ["bu" /* BEFORE_UPDATE */]: 'beforeUpdate hook',
+ ["u" /* UPDATED */]: 'updated',
+ ["bum" /* BEFORE_UNMOUNT */]: 'beforeUnmount hook',
+ ["um" /* UNMOUNTED */]: 'unmounted hook',
+ ["a" /* ACTIVATED */]: 'activated hook',
+ ["da" /* DEACTIVATED */]: 'deactivated hook',
+ ["ec" /* ERROR_CAPTURED */]: 'errorCaptured hook',
+ ["rtc" /* RENDER_TRACKED */]: 'renderTracked hook',
+ ["rtg" /* RENDER_TRIGGERED */]: 'renderTriggered hook',
+ [0 /* SETUP_FUNCTION */]: 'setup function',
+ [1 /* RENDER_FUNCTION */]: 'render function',
+ [2 /* WATCH_GETTER */]: 'watcher getter',
+ [3 /* WATCH_CALLBACK */]: 'watcher callback',
+ [4 /* WATCH_CLEANUP */]: 'watcher cleanup function',
+ [5 /* NATIVE_EVENT_HANDLER */]: 'native event handler',
+ [6 /* COMPONENT_EVENT_HANDLER */]: 'component event handler',
+ [7 /* VNODE_HOOK */]: 'vnode hook',
+ [8 /* DIRECTIVE_HOOK */]: 'directive hook',
+ [9 /* TRANSITION_HOOK */]: 'transition hook',
+ [10 /* APP_ERROR_HANDLER */]: 'app errorHandler',
+ [11 /* APP_WARN_HANDLER */]: 'app warnHandler',
+ [12 /* FUNCTION_REF */]: 'ref function',
+ [13 /* ASYNC_COMPONENT_LOADER */]: 'async component loader',
+ [14 /* SCHEDULER */]: 'scheduler flush. This is likely a Vue internals bug. ' +
+ 'Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/core'
+ };
+ function callWithErrorHandling(fn, instance, type, args) {
+ let res;
+ try {
+ res = args ? fn(...args) : fn();
+ }
+ catch (err) {
+ handleError(err, instance, type);
+ }
+ return res;
+ }
+ function callWithAsyncErrorHandling(fn, instance, type, args) {
+ if (isFunction(fn)) {
+ const res = callWithErrorHandling(fn, instance, type, args);
+ if (res && isPromise(res)) {
+ res.catch(err => {
+ handleError(err, instance, type);
+ });
+ }
+ return res;
+ }
+ const values = [];
+ for (let i = 0; i < fn.length; i++) {
+ values.push(callWithAsyncErrorHandling(fn[i], instance, type, args));
+ }
+ return values;
+ }
+ function handleError(err, instance, type, throwInDev = true) {
+ const contextVNode = instance ? instance.vnode : null;
+ if (instance) {
+ let cur = instance.parent;
+ // the exposed instance is the render proxy to keep it consistent with 2.x
+ const exposedInstance = instance.proxy;
+ // in production the hook receives only the error code
+ const errorInfo = ErrorTypeStrings[type] ;
+ while (cur) {
+ const errorCapturedHooks = cur.ec;
+ if (errorCapturedHooks) {
+ for (let i = 0; i < errorCapturedHooks.length; i++) {
+ if (errorCapturedHooks[i](err, exposedInstance, errorInfo) === false) {
+ return;
+ }
+ }
+ }
+ cur = cur.parent;
+ }
+ // app-level handling
+ const appErrorHandler = instance.appContext.config.errorHandler;
+ if (appErrorHandler) {
+ callWithErrorHandling(appErrorHandler, null, 10 /* APP_ERROR_HANDLER */, [err, exposedInstance, errorInfo]);
+ return;
+ }
+ }
+ logError(err, type, contextVNode, throwInDev);
+ }
+ function logError(err, type, contextVNode, throwInDev = true) {
+ {
+ const info = ErrorTypeStrings[type];
+ if (contextVNode) {
+ pushWarningContext(contextVNode);
+ }
+ warn$1(`Unhandled error${info ? ` during execution of ${info}` : ``}`);
+ if (contextVNode) {
+ popWarningContext();
+ }
+ // crash in dev by default so it's more noticeable
+ if (throwInDev) {
+ throw err;
+ }
+ else {
+ console.error(err);
+ }
+ }
+ }
+
+ let isFlushing = false;
+ let isFlushPending = false;
+ const queue = [];
+ let flushIndex = 0;
+ const pendingPreFlushCbs = [];
+ let activePreFlushCbs = null;
+ let preFlushIndex = 0;
+ const pendingPostFlushCbs = [];
+ let activePostFlushCbs = null;
+ let postFlushIndex = 0;
+ const resolvedPromise = Promise.resolve();
+ let currentFlushPromise = null;
+ let currentPreFlushParentJob = null;
+ const RECURSION_LIMIT = 100;
+ function nextTick(fn) {
+ const p = currentFlushPromise || resolvedPromise;
+ return fn ? p.then(this ? fn.bind(this) : fn) : p;
+ }
+ // #2768
+ // Use binary-search to find a suitable position in the queue,
+ // so that the queue maintains the increasing order of job's id,
+ // which can prevent the job from being skipped and also can avoid repeated patching.
+ function findInsertionIndex(id) {
+ // the start index should be `flushIndex + 1`
+ let start = flushIndex + 1;
+ let end = queue.length;
+ while (start < end) {
+ const middle = (start + end) >>> 1;
+ const middleJobId = getId(queue[middle]);
+ middleJobId < id ? (start = middle + 1) : (end = middle);
+ }
+ return start;
+ }
+ function queueJob(job) {
+ // the dedupe search uses the startIndex argument of Array.includes()
+ // by default the search index includes the current job that is being run
+ // so it cannot recursively trigger itself again.
+ // if the job is a watch() callback, the search will start with a +1 index to
+ // allow it recursively trigger itself - it is the user's responsibility to
+ // ensure it doesn't end up in an infinite loop.
+ if ((!queue.length ||
+ !queue.includes(job, isFlushing && job.allowRecurse ? flushIndex + 1 : flushIndex)) &&
+ job !== currentPreFlushParentJob) {
+ if (job.id == null) {
+ queue.push(job);
+ }
+ else {
+ queue.splice(findInsertionIndex(job.id), 0, job);
+ }
+ queueFlush();
+ }
+ }
+ function queueFlush() {
+ if (!isFlushing && !isFlushPending) {
+ isFlushPending = true;
+ currentFlushPromise = resolvedPromise.then(flushJobs);
+ }
+ }
+ function invalidateJob(job) {
+ const i = queue.indexOf(job);
+ if (i > flushIndex) {
+ queue.splice(i, 1);
+ }
+ }
+ function queueCb(cb, activeQueue, pendingQueue, index) {
+ if (!isArray(cb)) {
+ if (!activeQueue ||
+ !activeQueue.includes(cb, cb.allowRecurse ? index + 1 : index)) {
+ pendingQueue.push(cb);
+ }
+ }
+ else {
+ // if cb is an array, it is a component lifecycle hook which can only be
+ // triggered by a job, which is already deduped in the main queue, so
+ // we can skip duplicate check here to improve perf
+ pendingQueue.push(...cb);
+ }
+ queueFlush();
+ }
+ function queuePreFlushCb(cb) {
+ queueCb(cb, activePreFlushCbs, pendingPreFlushCbs, preFlushIndex);
+ }
+ function queuePostFlushCb(cb) {
+ queueCb(cb, activePostFlushCbs, pendingPostFlushCbs, postFlushIndex);
+ }
+ function flushPreFlushCbs(seen, parentJob = null) {
+ if (pendingPreFlushCbs.length) {
+ currentPreFlushParentJob = parentJob;
+ activePreFlushCbs = [...new Set(pendingPreFlushCbs)];
+ pendingPreFlushCbs.length = 0;
+ {
+ seen = seen || new Map();
+ }
+ for (preFlushIndex = 0; preFlushIndex < activePreFlushCbs.length; preFlushIndex++) {
+ if (checkRecursiveUpdates(seen, activePreFlushCbs[preFlushIndex])) {
+ continue;
+ }
+ activePreFlushCbs[preFlushIndex]();
+ }
+ activePreFlushCbs = null;
+ preFlushIndex = 0;
+ currentPreFlushParentJob = null;
+ // recursively flush until it drains
+ flushPreFlushCbs(seen, parentJob);
+ }
+ }
+ function flushPostFlushCbs(seen) {
+ if (pendingPostFlushCbs.length) {
+ const deduped = [...new Set(pendingPostFlushCbs)];
+ pendingPostFlushCbs.length = 0;
+ // #1947 already has active queue, nested flushPostFlushCbs call
+ if (activePostFlushCbs) {
+ activePostFlushCbs.push(...deduped);
+ return;
+ }
+ activePostFlushCbs = deduped;
+ {
+ seen = seen || new Map();
+ }
+ activePostFlushCbs.sort((a, b) => getId(a) - getId(b));
+ for (postFlushIndex = 0; postFlushIndex < activePostFlushCbs.length; postFlushIndex++) {
+ if (checkRecursiveUpdates(seen, activePostFlushCbs[postFlushIndex])) {
+ continue;
+ }
+ activePostFlushCbs[postFlushIndex]();
+ }
+ activePostFlushCbs = null;
+ postFlushIndex = 0;
+ }
+ }
+ const getId = (job) => job.id == null ? Infinity : job.id;
+ function flushJobs(seen) {
+ isFlushPending = false;
+ isFlushing = true;
+ {
+ seen = seen || new Map();
+ }
+ flushPreFlushCbs(seen);
+ // Sort queue before flush.
+ // This ensures that:
+ // 1. Components are updated from parent to child. (because parent is always
+ // created before the child so its render effect will have smaller
+ // priority number)
+ // 2. If a component is unmounted during a parent component's update,
+ // its update can be skipped.
+ queue.sort((a, b) => getId(a) - getId(b));
+ // conditional usage of checkRecursiveUpdate must be determined out of
+ // try ... catch block since Rollup by default de-optimizes treeshaking
+ // inside try-catch. This can leave all warning code unshaked. Although
+ // they would get eventually shaken by a minifier like terser, some minifiers
+ // would fail to do that (e.g. https://github.com/evanw/esbuild/issues/1610)
+ const check = (job) => checkRecursiveUpdates(seen, job)
+ ;
+ try {
+ for (flushIndex = 0; flushIndex < queue.length; flushIndex++) {
+ const job = queue[flushIndex];
+ if (job && job.active !== false) {
+ if (true && check(job)) {
+ continue;
+ }
+ // console.log(`running:`, job.id)
+ callWithErrorHandling(job, null, 14 /* SCHEDULER */);
+ }
+ }
+ }
+ finally {
+ flushIndex = 0;
+ queue.length = 0;
+ flushPostFlushCbs(seen);
+ isFlushing = false;
+ currentFlushPromise = null;
+ // some postFlushCb queued jobs!
+ // keep flushing until it drains.
+ if (queue.length ||
+ pendingPreFlushCbs.length ||
+ pendingPostFlushCbs.length) {
+ flushJobs(seen);
+ }
+ }
+ }
+ function checkRecursiveUpdates(seen, fn) {
+ if (!seen.has(fn)) {
+ seen.set(fn, 1);
+ }
+ else {
+ const count = seen.get(fn);
+ if (count > RECURSION_LIMIT) {
+ const instance = fn.ownerInstance;
+ const componentName = instance && getComponentName(instance.type);
+ warn$1(`Maximum recursive updates exceeded${componentName ? ` in component <${componentName}>` : ``}. ` +
+ `This means you have a reactive effect that is mutating its own ` +
+ `dependencies and thus recursively triggering itself. Possible sources ` +
+ `include component template, render function, updated hook or ` +
+ `watcher source function.`);
+ return true;
+ }
+ else {
+ seen.set(fn, count + 1);
+ }
+ }
+ }
+
/* eslint-disable no-restricted-globals */
let isHmrUpdating = false;
const hmrDirtyComponents = new Set();
@@ -1734,23 +2182,23 @@ var Vue = (function () {
["GLOBAL_MOUNT" /* GLOBAL_MOUNT */]: {
message: `The global app bootstrapping API has changed: vm.$mount() and the "el" ` +
`option have been removed. Use createApp(RootComponent).mount() instead.`,
- link: `https://v3.vuejs.org/guide/migration/global-api.html#mounting-app-instance`
+ link: `https://v3-migration.vuejs.org/breaking-changes/global-api.html#mounting-app-instance`
},
["GLOBAL_MOUNT_CONTAINER" /* GLOBAL_MOUNT_CONTAINER */]: {
message: `Vue detected directives on the mount container. ` +
`In Vue 3, the container is no longer considered part of the template ` +
`and will not be processed/replaced.`,
- link: `https://v3.vuejs.org/guide/migration/mount-changes.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/mount-changes.html`
},
["GLOBAL_EXTEND" /* GLOBAL_EXTEND */]: {
message: `Vue.extend() has been removed in Vue 3. ` +
`Use defineComponent() instead.`,
- link: `https://v3.vuejs.org/api/global-api.html#definecomponent`
+ link: `https://vuejs.org/api/general.html#definecomponent`
},
["GLOBAL_PROTOTYPE" /* GLOBAL_PROTOTYPE */]: {
message: `Vue.prototype is no longer available in Vue 3. ` +
`Use app.config.globalProperties instead.`,
- link: `https://v3.vuejs.org/guide/migration/global-api.html#vue-prototype-replaced-by-config-globalproperties`
+ link: `https://v3-migration.vuejs.org/breaking-changes/global-api.html#vue-prototype-replaced-by-config-globalproperties`
},
["GLOBAL_SET" /* GLOBAL_SET */]: {
message: `Vue.set() has been removed as it is no longer needed in Vue 3. ` +
@@ -1763,7 +2211,7 @@ var Vue = (function () {
["GLOBAL_OBSERVABLE" /* GLOBAL_OBSERVABLE */]: {
message: `Vue.observable() has been removed. ` +
`Use \`import { reactive } from "vue"\` from Composition API instead.`,
- link: `https://v3.vuejs.org/api/basic-reactivity.html`
+ link: `https://vuejs.org/api/reactivity-core.html#reactive`
},
["GLOBAL_PRIVATE_UTIL" /* GLOBAL_PRIVATE_UTIL */]: {
message: `Vue.util has been removed. Please refactor to avoid its usage ` +
@@ -1777,16 +2225,16 @@ var Vue = (function () {
["CONFIG_DEVTOOLS" /* CONFIG_DEVTOOLS */]: {
message: `config.devtools has been removed. To enable devtools for ` +
`production, configure the __VUE_PROD_DEVTOOLS__ compile-time flag.`,
- link: `https://github.com/vuejs/vue-next/tree/master/packages/vue#bundler-build-feature-flags`
+ link: `https://github.com/vuejs/core/tree/main/packages/vue#bundler-build-feature-flags`
},
["CONFIG_KEY_CODES" /* CONFIG_KEY_CODES */]: {
message: `config.keyCodes has been removed. ` +
`In Vue 3, you can directly use the kebab-case key names as v-on modifiers.`,
- link: `https://v3.vuejs.org/guide/migration/keycode-modifiers.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/keycode-modifiers.html`
},
["CONFIG_PRODUCTION_TIP" /* CONFIG_PRODUCTION_TIP */]: {
message: `config.productionTip has been removed.`,
- link: `https://v3.vuejs.org/guide/migration/global-api.html#config-productiontip-removed`
+ link: `https://v3-migration.vuejs.org/breaking-changes/global-api.html#config-productiontip-removed`
},
["CONFIG_IGNORED_ELEMENTS" /* CONFIG_IGNORED_ELEMENTS */]: {
message: () => {
@@ -1799,7 +2247,7 @@ var Vue = (function () {
}
return msg;
},
- link: `https://v3.vuejs.org/guide/migration/global-api.html#config-ignoredelements-is-now-config-iscustomelement`
+ link: `https://v3-migration.vuejs.org/breaking-changes/global-api.html#config-ignoredelements-is-now-config-iscustomelement`
},
["CONFIG_WHITESPACE" /* CONFIG_WHITESPACE */]: {
// this warning is only relevant in the full build when using runtime
@@ -1822,12 +2270,12 @@ var Vue = (function () {
},
["INSTANCE_DESTROY" /* INSTANCE_DESTROY */]: {
message: `vm.$destroy() has been removed. Use app.unmount() instead.`,
- link: `https://v3.vuejs.org/api/application-api.html#unmount`
+ link: `https://vuejs.org/api/application.html#app-unmount`
},
["INSTANCE_EVENT_EMITTER" /* INSTANCE_EVENT_EMITTER */]: {
message: `vm.$on/$once/$off() have been removed. ` +
`Use an external event emitter library instead.`,
- link: `https://v3.vuejs.org/guide/migration/events-api.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/events-api.html`
},
["INSTANCE_EVENT_HOOKS" /* INSTANCE_EVENT_HOOKS */]: {
message: event => `"${event}" lifecycle events are no longer supported. From templates, ` +
@@ -1835,23 +2283,23 @@ var Vue = (function () {
`should be changed to @vnode-${event.slice(5)}. ` +
`From JavaScript, use Composition API to dynamically register lifecycle ` +
`hooks.`,
- link: `https://v3.vuejs.org/guide/migration/vnode-lifecycle-events.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/vnode-lifecycle-events.html`
},
["INSTANCE_CHILDREN" /* INSTANCE_CHILDREN */]: {
message: `vm.$children has been removed. Consider refactoring your logic ` +
`to avoid relying on direct access to child components.`,
- link: `https://v3.vuejs.org/guide/migration/children.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/children.html`
},
["INSTANCE_LISTENERS" /* INSTANCE_LISTENERS */]: {
message: `vm.$listeners has been removed. In Vue 3, parent v-on listeners are ` +
`included in vm.$attrs and it is no longer necessary to separately use ` +
`v-on="$listeners" if you are already using v-bind="$attrs". ` +
`(Note: the Vue 3 behavior only applies if this compat config is disabled)`,
- link: `https://v3.vuejs.org/guide/migration/listeners-removed.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/listeners-removed.html`
},
["INSTANCE_SCOPED_SLOTS" /* INSTANCE_SCOPED_SLOTS */]: {
message: `vm.$scopedSlots has been removed. Use vm.$slots instead.`,
- link: `https://v3.vuejs.org/guide/migration/slots-unification.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/slots-unification.html`
},
["INSTANCE_ATTRS_CLASS_STYLE" /* INSTANCE_ATTRS_CLASS_STYLE */]: {
message: componentName => `Component <${componentName || 'Anonymous'}> has \`inheritAttrs: false\` but is ` +
@@ -1862,17 +2310,17 @@ var Vue = (function () {
`If you are binding $attrs to a non-root element and expecting ` +
`class/style to fallthrough on root, you will need to now manually bind ` +
`them on root via :class="$attrs.class".`,
- link: `https://v3.vuejs.org/guide/migration/attrs-includes-class-style.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/attrs-includes-class-style.html`
},
["OPTIONS_DATA_FN" /* OPTIONS_DATA_FN */]: {
message: `The "data" option can no longer be a plain object. ` +
`Always use a function.`,
- link: `https://v3.vuejs.org/guide/migration/data-option.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/data-option.html`
},
["OPTIONS_DATA_MERGE" /* OPTIONS_DATA_MERGE */]: {
message: (key) => `Detected conflicting key "${key}" when merging data option values. ` +
`In Vue 3, data keys are merged shallowly and will override one another.`,
- link: `https://v3.vuejs.org/guide/migration/data-option.html#mixin-merge-behavior-change`
+ link: `https://v3-migration.vuejs.org/breaking-changes/data-option.html#mixin-merge-behavior-change`
},
["OPTIONS_BEFORE_DESTROY" /* OPTIONS_BEFORE_DESTROY */]: {
message: `\`beforeDestroy\` has been renamed to \`beforeUnmount\`.`
@@ -1886,28 +2334,23 @@ var Vue = (function () {
`If current usage is intended, you can disable the compat behavior and ` +
`suppress this warning with:` +
`\n\n configureCompat({ ${"WATCH_ARRAY" /* WATCH_ARRAY */}: false })\n`,
- link: `https://v3.vuejs.org/guide/migration/watch.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/watch.html`
},
["PROPS_DEFAULT_THIS" /* PROPS_DEFAULT_THIS */]: {
message: (key) => `props default value function no longer has access to "this". The compat ` +
`build only offers access to this.$options.` +
`(found in prop "${key}")`,
- link: `https://v3.vuejs.org/guide/migration/props-default-this.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/props-default-this.html`
},
["CUSTOM_DIR" /* CUSTOM_DIR */]: {
message: (legacyHook, newHook) => `Custom directive hook "${legacyHook}" has been removed. ` +
`Use "${newHook}" instead.`,
- link: `https://v3.vuejs.org/guide/migration/custom-directives.html`
- },
- ["V_FOR_REF" /* V_FOR_REF */]: {
- message: `Ref usage on v-for no longer creates array ref values in Vue 3. ` +
- `Consider using function refs or refactor to avoid ref usage altogether.`,
- link: `https://v3.vuejs.org/guide/migration/array-refs.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/custom-directives.html`
},
["V_ON_KEYCODE_MODIFIER" /* V_ON_KEYCODE_MODIFIER */]: {
message: `Using keyCode as v-on modifier is no longer supported. ` +
`Use kebab-case key name modifiers instead.`,
- link: `https://v3.vuejs.org/guide/migration/keycode-modifiers.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/keycode-modifiers.html`
},
["ATTR_FALSE_VALUE" /* ATTR_FALSE_VALUE */]: {
message: (name) => `Attribute "${name}" with v-bind value \`false\` will render ` +
@@ -1915,7 +2358,7 @@ var Vue = (function () {
`use \`null\` or \`undefined\` instead. If the usage is intended, ` +
`you can disable the compat behavior and suppress this warning with:` +
`\n\n configureCompat({ ${"ATTR_FALSE_VALUE" /* ATTR_FALSE_VALUE */}: false })\n`,
- link: `https://v3.vuejs.org/guide/migration/attribute-coercion.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/attribute-coercion.html`
},
["ATTR_ENUMERATED_COERCION" /* ATTR_ENUMERATED_COERCION */]: {
message: (name, value, coerced) => `Enumerated attribute "${name}" with v-bind value \`${value}\` will ` +
@@ -1924,7 +2367,7 @@ var Vue = (function () {
`If the usage is intended, ` +
`you can disable the compat behavior and suppress this warning with:` +
`\n\n configureCompat({ ${"ATTR_ENUMERATED_COERCION" /* ATTR_ENUMERATED_COERCION */}: false })\n`,
- link: `https://v3.vuejs.org/guide/migration/attribute-coercion.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/attribute-coercion.html`
},
["TRANSITION_CLASSES" /* TRANSITION_CLASSES */]: {
message: `` // this feature cannot be runtime-detected
@@ -1935,7 +2378,7 @@ var Vue = (function () {
`for styling, you can disable the compat behavior and suppress this ` +
`warning with:` +
`\n\n configureCompat({ ${"TRANSITION_GROUP_ROOT" /* TRANSITION_GROUP_ROOT */}: false })\n`,
- link: `https://v3.vuejs.org/guide/migration/transition-group.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/transition-group.html`
},
["COMPONENT_ASYNC" /* COMPONENT_ASYNC */]: {
message: (comp) => {
@@ -1948,7 +2391,7 @@ var Vue = (function () {
`warning with:` +
`\n\n configureCompat({ ${"COMPONENT_ASYNC" /* COMPONENT_ASYNC */}: false })\n`);
},
- link: `https://v3.vuejs.org/guide/migration/async-components.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/async-components.html`
},
["COMPONENT_FUNCTIONAL" /* COMPONENT_FUNCTIONAL */]: {
message: (comp) => {
@@ -1959,7 +2402,7 @@ var Vue = (function () {
`components usage have been migrated and its compat behavior has ` +
`been disabled.`);
},
- link: `https://v3.vuejs.org/guide/migration/functional-components.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/functional-components.html`
},
["COMPONENT_V_MODEL" /* COMPONENT_V_MODEL */]: {
message: (comp) => {
@@ -1969,27 +2412,27 @@ var Vue = (function () {
(isArray(comp.props)
? comp.props.includes('modelValue')
: hasOwn(comp.props, 'modelValue'))) {
- return (`Component delcares "modelValue" prop, which is Vue 3 usage, but ` +
+ return (`Component declares "modelValue" prop, which is Vue 3 usage, but ` +
`is running under Vue 2 compat v-model behavior. You can ${configMsg}`);
}
return (`v-model usage on component has changed in Vue 3. Component that expects ` +
`to work with v-model should now use the "modelValue" prop and emit the ` +
`"update:modelValue" event. You can update the usage and then ${configMsg}`);
},
- link: `https://v3.vuejs.org/guide/migration/v-model.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/v-model.html`
},
["RENDER_FUNCTION" /* RENDER_FUNCTION */]: {
message: `Vue 3's render function API has changed. ` +
`You can opt-in to the new API with:` +
`\n\n configureCompat({ ${"RENDER_FUNCTION" /* RENDER_FUNCTION */}: false })\n` +
`\n (This can also be done per-component via the "compatConfig" option.)`,
- link: `https://v3.vuejs.org/guide/migration/render-function-api.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/render-function-api.html`
},
["FILTERS" /* FILTERS */]: {
message: `filters have been removed in Vue 3. ` +
`The "|" symbol will be treated as native JavaScript bitwise OR operator. ` +
`Use method calls or computed properties instead.`,
- link: `https://v3.vuejs.org/guide/migration/filters.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/filters.html`
},
["PRIVATE_APIS" /* PRIVATE_APIS */]: {
message: name => `"${name}" is a Vue 2 private API that no longer exists in Vue 3. ` +
@@ -2057,7 +2500,7 @@ var Vue = (function () {
warn$1(`Deprecation config "${key}" is compiler-specific and you are ` +
`running a runtime-only build of Vue. This deprecation should be ` +
`configured via compiler options in your build setup instead.\n` +
- `Details: https://v3.vuejs.org/guide/migration/migration-build.html`);
+ `Details: https://v3-migration.vuejs.org/breaking-changes/migration-build.html`);
}
}
else {
@@ -2199,6 +2642,7 @@ var Vue = (function () {
const warnedTypes = new WeakSet();
function convertLegacyVModelProps(vnode) {
const { type, shapeFlag, props, dynamicProps } = vnode;
+ const comp = type;
if (shapeFlag & 6 /* COMPONENT */ && props && 'modelValue' in props) {
if (!isCompatEnabled("COMPONENT_V_MODEL" /* COMPONENT_V_MODEL */,
// this is a special case where we want to use the vnode component's
@@ -2207,16 +2651,18 @@ var Vue = (function () {
{ type })) {
return;
}
- if (!warnedTypes.has(type)) {
+ if (!warnedTypes.has(comp)) {
pushWarningContext(vnode);
- warnDeprecation("COMPONENT_V_MODEL" /* COMPONENT_V_MODEL */, { type }, type);
+ warnDeprecation("COMPONENT_V_MODEL" /* COMPONENT_V_MODEL */, { type }, comp);
popWarningContext();
- warnedTypes.add(type);
+ warnedTypes.add(comp);
}
// v3 compiled model code -> v2 compat props
// modelValue -> value
// onUpdate:modelValue -> onModelCompat:input
- const { prop = 'value', event = 'input' } = type.model || {};
+ const model = comp.model || {};
+ applyModelFromMixins(model, comp.mixins);
+ const { prop = 'value', event = 'input' } = model;
if (prop !== 'modelValue') {
props[prop] = props.modelValue;
delete props.modelValue;
@@ -2229,6 +2675,16 @@ var Vue = (function () {
delete props['onUpdate:modelValue'];
}
}
+ function applyModelFromMixins(model, mixins) {
+ if (mixins) {
+ mixins.forEach(m => {
+ if (m.model)
+ extend(model, m.model);
+ if (m.mixins)
+ applyModelFromMixins(model, m.mixins);
+ });
+ }
+ }
function compatModelEmit(instance, event, args) {
if (!isCompatEnabled("COMPONENT_V_MODEL" /* COMPONENT_V_MODEL */, instance)) {
return;
@@ -3231,7 +3687,7 @@ var Vue = (function () {
if (instance) {
// #2400
// to support `app.use` plugins,
- // fallback to appContext's `provides` if the intance is at root
+ // fallback to appContext's `provides` if the instance is at root
const provides = instance.parent == null
? instance.vnode.appContext && instance.vnode.appContext.provides
: instance.parent.provides;
@@ -3253,6 +3709,268 @@ var Vue = (function () {
}
}
+ // Simple effect.
+ function watchEffect(effect, options) {
+ return doWatch(effect, null, options);
+ }
+ function watchPostEffect(effect, options) {
+ return doWatch(effect, null, (Object.assign(options || {}, { flush: 'post' })
+ ));
+ }
+ function watchSyncEffect(effect, options) {
+ return doWatch(effect, null, (Object.assign(options || {}, { flush: 'sync' })
+ ));
+ }
+ // initial value for watchers to trigger on undefined initial values
+ const INITIAL_WATCHER_VALUE = {};
+ // implementation
+ function watch(source, cb, options) {
+ if (!isFunction(cb)) {
+ warn$1(`\`watch(fn, options?)\` signature has been moved to a separate API. ` +
+ `Use \`watchEffect(fn, options?)\` instead. \`watch\` now only ` +
+ `supports \`watch(source, cb, options?) signature.`);
+ }
+ return doWatch(source, cb, options);
+ }
+ function doWatch(source, cb, { immediate, deep, flush, onTrack, onTrigger } = EMPTY_OBJ) {
+ if (!cb) {
+ if (immediate !== undefined) {
+ warn$1(`watch() "immediate" option is only respected when using the ` +
+ `watch(source, callback, options?) signature.`);
+ }
+ if (deep !== undefined) {
+ warn$1(`watch() "deep" option is only respected when using the ` +
+ `watch(source, callback, options?) signature.`);
+ }
+ }
+ const warnInvalidSource = (s) => {
+ warn$1(`Invalid watch source: `, s, `A watch source can only be a getter/effect function, a ref, ` +
+ `a reactive object, or an array of these types.`);
+ };
+ const instance = currentInstance;
+ let getter;
+ let forceTrigger = false;
+ let isMultiSource = false;
+ if (isRef(source)) {
+ getter = () => source.value;
+ forceTrigger = isShallow(source);
+ }
+ else if (isReactive(source)) {
+ getter = () => source;
+ deep = true;
+ }
+ else if (isArray(source)) {
+ isMultiSource = true;
+ forceTrigger = source.some(isReactive);
+ getter = () => source.map(s => {
+ if (isRef(s)) {
+ return s.value;
+ }
+ else if (isReactive(s)) {
+ return traverse(s);
+ }
+ else if (isFunction(s)) {
+ return callWithErrorHandling(s, instance, 2 /* WATCH_GETTER */);
+ }
+ else {
+ warnInvalidSource(s);
+ }
+ });
+ }
+ else if (isFunction(source)) {
+ if (cb) {
+ // getter with cb
+ getter = () => callWithErrorHandling(source, instance, 2 /* WATCH_GETTER */);
+ }
+ else {
+ // no cb -> simple effect
+ getter = () => {
+ if (instance && instance.isUnmounted) {
+ return;
+ }
+ if (cleanup) {
+ cleanup();
+ }
+ return callWithAsyncErrorHandling(source, instance, 3 /* WATCH_CALLBACK */, [onCleanup]);
+ };
+ }
+ }
+ else {
+ getter = NOOP;
+ warnInvalidSource(source);
+ }
+ // 2.x array mutation watch compat
+ if (cb && !deep) {
+ const baseGetter = getter;
+ getter = () => {
+ const val = baseGetter();
+ if (isArray(val) &&
+ checkCompatEnabled("WATCH_ARRAY" /* WATCH_ARRAY */, instance)) {
+ traverse(val);
+ }
+ return val;
+ };
+ }
+ if (cb && deep) {
+ const baseGetter = getter;
+ getter = () => traverse(baseGetter());
+ }
+ let cleanup;
+ let onCleanup = (fn) => {
+ cleanup = effect.onStop = () => {
+ callWithErrorHandling(fn, instance, 4 /* WATCH_CLEANUP */);
+ };
+ };
+ let oldValue = isMultiSource ? [] : INITIAL_WATCHER_VALUE;
+ const job = () => {
+ if (!effect.active) {
+ return;
+ }
+ if (cb) {
+ // watch(source, cb)
+ const newValue = effect.run();
+ if (deep ||
+ forceTrigger ||
+ (isMultiSource
+ ? newValue.some((v, i) => hasChanged(v, oldValue[i]))
+ : hasChanged(newValue, oldValue)) ||
+ (isArray(newValue) &&
+ isCompatEnabled("WATCH_ARRAY" /* WATCH_ARRAY */, instance))) {
+ // cleanup before running cb again
+ if (cleanup) {
+ cleanup();
+ }
+ callWithAsyncErrorHandling(cb, instance, 3 /* WATCH_CALLBACK */, [
+ newValue,
+ // pass undefined as the old value when it's changed for the first time
+ oldValue === INITIAL_WATCHER_VALUE ? undefined : oldValue,
+ onCleanup
+ ]);
+ oldValue = newValue;
+ }
+ }
+ else {
+ // watchEffect
+ effect.run();
+ }
+ };
+ // important: mark the job as a watcher callback so that scheduler knows
+ // it is allowed to self-trigger (#1727)
+ job.allowRecurse = !!cb;
+ let scheduler;
+ if (flush === 'sync') {
+ scheduler = job; // the scheduler function gets called directly
+ }
+ else if (flush === 'post') {
+ scheduler = () => queuePostRenderEffect(job, instance && instance.suspense);
+ }
+ else {
+ // default: 'pre'
+ scheduler = () => {
+ if (!instance || instance.isMounted) {
+ queuePreFlushCb(job);
+ }
+ else {
+ // with 'pre' option, the first call must happen before
+ // the component is mounted so it is called synchronously.
+ job();
+ }
+ };
+ }
+ const effect = new ReactiveEffect(getter, scheduler);
+ {
+ effect.onTrack = onTrack;
+ effect.onTrigger = onTrigger;
+ }
+ // initial run
+ if (cb) {
+ if (immediate) {
+ job();
+ }
+ else {
+ oldValue = effect.run();
+ }
+ }
+ else if (flush === 'post') {
+ queuePostRenderEffect(effect.run.bind(effect), instance && instance.suspense);
+ }
+ else {
+ effect.run();
+ }
+ return () => {
+ effect.stop();
+ if (instance && instance.scope) {
+ remove(instance.scope.effects, effect);
+ }
+ };
+ }
+ // this.$watch
+ function instanceWatch(source, value, options) {
+ const publicThis = this.proxy;
+ const getter = isString(source)
+ ? source.includes('.')
+ ? createPathGetter(publicThis, source)
+ : () => publicThis[source]
+ : source.bind(publicThis, publicThis);
+ let cb;
+ if (isFunction(value)) {
+ cb = value;
+ }
+ else {
+ cb = value.handler;
+ options = value;
+ }
+ const cur = currentInstance;
+ setCurrentInstance(this);
+ const res = doWatch(getter, cb.bind(publicThis), options);
+ if (cur) {
+ setCurrentInstance(cur);
+ }
+ else {
+ unsetCurrentInstance();
+ }
+ return res;
+ }
+ function createPathGetter(ctx, path) {
+ const segments = path.split('.');
+ return () => {
+ let cur = ctx;
+ for (let i = 0; i < segments.length && cur; i++) {
+ cur = cur[segments[i]];
+ }
+ return cur;
+ };
+ }
+ function traverse(value, seen) {
+ if (!isObject(value) || value["__v_skip" /* SKIP */]) {
+ return value;
+ }
+ seen = seen || new Set();
+ if (seen.has(value)) {
+ return value;
+ }
+ seen.add(value);
+ if (isRef(value)) {
+ traverse(value.value, seen);
+ }
+ else if (isArray(value)) {
+ for (let i = 0; i < value.length; i++) {
+ traverse(value[i], seen);
+ }
+ }
+ else if (isSet(value) || isMap(value)) {
+ value.forEach((v) => {
+ traverse(v, seen);
+ });
+ }
+ else if (isPlainObject(value)) {
+ for (const key in value) {
+ traverse(value[key], seen);
+ }
+ }
+ return value;
+ }
+
function useTransitionState() {
const state = {
isMounted: false,
@@ -3787,7 +4505,7 @@ var Vue = (function () {
function unmount(vnode) {
// reset the shapeFlag so it can be properly unmounted
resetShapeFlag(vnode);
- _unmount(vnode, instance, parentSuspense);
+ _unmount(vnode, instance, parentSuspense, true);
}
function pruneCache(filter) {
cache.forEach((vnode, key) => {
@@ -3929,7 +4647,7 @@ var Vue = (function () {
return pattern.some((p) => matches(p, name));
}
else if (isString(pattern)) {
- return pattern.split(',').indexOf(name) > -1;
+ return pattern.split(',').includes(name);
}
else if (pattern.test) {
return pattern.test(name);
@@ -4197,7 +4915,7 @@ var Vue = (function () {
warn$1(`Write operation failed: computed property "${key}" is readonly.`);
}
;
- const c = computed({
+ const c = computed$1({
get,
set
});
@@ -4678,7 +5396,9 @@ var Vue = (function () {
// attrs point to the same object so it should already have been updated.
if (attrs !== rawCurrentProps) {
for (const key in attrs) {
- if (!rawProps || !hasOwn(rawProps, key)) {
+ if (!rawProps ||
+ (!hasOwn(rawProps, key) &&
+ (!hasOwn(rawProps, key + 'Native')))) {
delete attrs[key];
hasAttrsChanged = true;
}
@@ -4735,7 +5455,7 @@ var Vue = (function () {
continue;
}
}
- if (value !== attrs[key]) {
+ if (!(key in attrs) || value !== attrs[key]) {
attrs[key] = value;
hasAttrsChanged = true;
}
@@ -5181,7 +5901,6 @@ var Vue = (function () {
[bar, this.y]
])
*/
- const isBuiltInDirective = /*#__PURE__*/ makeMap('bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo');
function validateDirectiveName(name) {
if (isBuiltInDirective(name)) {
warn$1('Do not use built-in directive ids as custom directive id: ' + name);
@@ -5316,7 +6035,7 @@ var Vue = (function () {
return vm;
}
}
- Vue.version = "3.2.23";
+ Vue.version = `2.6.14-compat:${"3.2.31"}`;
Vue.config = singletonApp.config;
Vue.use = (p, ...options) => {
if (p && isFunction(p.install)) {
@@ -5667,7 +6386,7 @@ var Vue = (function () {
];
const patched = new WeakSet();
function defineReactive(obj, key, val) {
- // it's possible for the orignial object to be mutated after being defined
+ // it's possible for the original object to be mutated after being defined
// and expecting reactivity... we are covering it here because this seems to
// be a bit more common.
if (isObject(val) && !isReactive(val) && !patched.has(val)) {
@@ -5887,6 +6606,102 @@ var Vue = (function () {
};
}
+ /**
+ * Function for handling a template ref
+ */
+ function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {
+ if (isArray(rawRef)) {
+ rawRef.forEach((r, i) => setRef(r, oldRawRef && (isArray(oldRawRef) ? oldRawRef[i] : oldRawRef), parentSuspense, vnode, isUnmount));
+ return;
+ }
+ if (isAsyncWrapper(vnode) && !isUnmount) {
+ // when mounting async components, nothing needs to be done,
+ // because the template ref is forwarded to inner component
+ return;
+ }
+ const refValue = vnode.shapeFlag & 4 /* STATEFUL_COMPONENT */
+ ? getExposeProxy(vnode.component) || vnode.component.proxy
+ : vnode.el;
+ const value = isUnmount ? null : refValue;
+ const { i: owner, r: ref } = rawRef;
+ if (!owner) {
+ warn$1(`Missing ref owner context. ref cannot be used on hoisted vnodes. ` +
+ `A vnode with ref must be created inside the render function.`);
+ return;
+ }
+ const oldRef = oldRawRef && oldRawRef.r;
+ const refs = owner.refs === EMPTY_OBJ ? (owner.refs = {}) : owner.refs;
+ const setupState = owner.setupState;
+ // dynamic ref changed. unset old ref
+ if (oldRef != null && oldRef !== ref) {
+ if (isString(oldRef)) {
+ refs[oldRef] = null;
+ if (hasOwn(setupState, oldRef)) {
+ setupState[oldRef] = null;
+ }
+ }
+ else if (isRef(oldRef)) {
+ oldRef.value = null;
+ }
+ }
+ if (isFunction(ref)) {
+ callWithErrorHandling(ref, owner, 12 /* FUNCTION_REF */, [value, refs]);
+ }
+ else {
+ const _isString = isString(ref);
+ const _isRef = isRef(ref);
+ if (_isString || _isRef) {
+ const doSet = () => {
+ if (rawRef.f) {
+ const existing = _isString ? refs[ref] : ref.value;
+ if (isUnmount) {
+ isArray(existing) && remove(existing, refValue);
+ }
+ else {
+ if (!isArray(existing)) {
+ if (_isString) {
+ refs[ref] = [refValue];
+ }
+ else {
+ ref.value = [refValue];
+ if (rawRef.k)
+ refs[rawRef.k] = ref.value;
+ }
+ }
+ else if (!existing.includes(refValue)) {
+ existing.push(refValue);
+ }
+ }
+ }
+ else if (_isString) {
+ refs[ref] = value;
+ if (hasOwn(setupState, ref)) {
+ setupState[ref] = value;
+ }
+ }
+ else if (isRef(ref)) {
+ ref.value = value;
+ if (rawRef.k)
+ refs[rawRef.k] = value;
+ }
+ else {
+ warn$1('Invalid template ref type:', ref, `(${typeof ref})`);
+ }
+ };
+ if (value) {
+ doSet.id = -1;
+ queuePostRenderEffect(doSet, parentSuspense);
+ }
+ else {
+ doSet();
+ }
+ }
+ else {
+ warn$1('Invalid template ref type:', ref, `(${typeof ref})`);
+ }
+ }
+ }
+
let hasMismatch = false;
const isSVGContainer = (container) => /svg/.test(container.namespaceURI) && container.tagName !== 'foreignObject';
const isComment = (node) => node.nodeType === 8 /* COMMENT */;
@@ -6044,7 +6859,8 @@ var Vue = (function () {
// e.g. <option :value="obj">, <input type="checkbox" :true-value="1">
const forcePatchValue = (type === 'input' && dirs) || type === 'option';
// skip props & children if this is hoisted static nodes
- if (forcePatchValue || patchFlag !== -1 /* HOISTED */) {
+ // #5405 in dev, always hydrate children for HMR
+ {
if (dirs) {
invokeDirectiveHook(vnode, null, parentComponent, 'created');
}
@@ -6209,6 +7025,7 @@ var Vue = (function () {
return [hydrate, hydrateNode];
}
+ /* eslint-disable no-restricted-globals */
let supported;
let perf;
function startMeasure(instance, type) {
@@ -6236,7 +7053,6 @@ var Vue = (function () {
if (supported !== undefined) {
return supported;
}
- /* eslint-disable no-restricted-globals */
if (typeof window !== 'undefined' && window.performance) {
supported = true;
perf = window.performance;
@@ -6244,48 +7060,9 @@ var Vue = (function () {
else {
supported = false;
}
- /* eslint-enable no-restricted-globals */
return supported;
}
- function convertLegacyRefInFor(vnode) {
- // refInFor
- if (vnode.props && vnode.props.refInFor) {
- delete vnode.props.refInFor;
- if (vnode.ref) {
- if (isArray(vnode.ref)) {
- vnode.ref.forEach(r => (r.f = true));
- }
- else {
- vnode.ref.f = true;
- }
- }
- }
- }
- function registerLegacyRef(refs, key, value, owner, isInFor, isUnmount) {
- const existing = refs[key];
- if (isUnmount) {
- if (isArray(existing)) {
- remove(existing, value);
- }
- else {
- refs[key] = null;
- }
- }
- else if (isInFor) {
- warnDeprecation("V_FOR_REF" /* V_FOR_REF */, owner);
- if (!isArray(existing)) {
- refs[key] = [value];
- }
- else if (!existing.includes(value)) {
- existing.push(value);
- }
- }
- else {
- refs[key] = value;
- }
- }
-
const queuePostRenderEffect = queueEffectWithSuspense
;
/**
@@ -6398,7 +7175,7 @@ var Vue = (function () {
}
};
const mountStaticNode = (n2, container, anchor, isSVG) => {
- [n2.el, n2.anchor] = hostInsertStaticContent(n2.children, container, anchor, isSVG);
+ [n2.el, n2.anchor] = hostInsertStaticContent(n2.children, container, anchor, isSVG, n2.el, n2.anchor);
};
/**
* Dev / HMR only
@@ -6557,12 +7334,15 @@ var Vue = (function () {
const oldProps = n1.props || EMPTY_OBJ;
const newProps = n2.props || EMPTY_OBJ;
let vnodeHook;
+ // disable recurse in beforeUpdate hooks
+ parentComponent && toggleRecurse(parentComponent, false);
if ((vnodeHook = newProps.onVnodeBeforeUpdate)) {
invokeVNodeHook(vnodeHook, parentComponent, n2, n1);
}
if (dirs) {
invokeDirectiveHook(n2, n1, parentComponent, 'beforeUpdate');
}
+ parentComponent && toggleRecurse(parentComponent, true);
if (isHmrUpdating) {
// HMR updated, force full diff
patchFlag = 0;
@@ -6846,7 +7626,7 @@ var Vue = (function () {
const { el, props } = initialVNode;
const { bm, m, parent } = instance;
const isAsyncWrapperVNode = isAsyncWrapper(initialVNode);
- effect.allowRecurse = false;
+ toggleRecurse(instance, false);
// beforeMount hook
if (bm) {
invokeArrayFns(bm);
@@ -6859,7 +7639,7 @@ var Vue = (function () {
if (isCompatEnabled("INSTANCE_EVENT_HOOKS" /* INSTANCE_EVENT_HOOKS */, instance)) {
instance.emit('hook:beforeMount');
}
- effect.allowRecurse = true;
+ toggleRecurse(instance, true);
if (el && hydrateNode) {
// vnode has adopted host node - perform hydration instead of mount.
const hydrateSubTree = () => {
@@ -6947,7 +7727,7 @@ var Vue = (function () {
pushWarningContext(next || instance.vnode);
}
// Disallow component effect recursion during pre-lifecycle hooks.
- effect.allowRecurse = false;
+ toggleRecurse(instance, false);
if (next) {
next.el = vnode.el;
updateComponentPreRender(instance, next, optimized);
@@ -6966,7 +7746,7 @@ var Vue = (function () {
if (isCompatEnabled("INSTANCE_EVENT_HOOKS" /* INSTANCE_EVENT_HOOKS */, instance)) {
instance.emit('hook:beforeUpdate');
}
- effect.allowRecurse = true;
+ toggleRecurse(instance, true);
// render
{
startMeasure(instance, `render`);
@@ -7015,13 +7795,13 @@ var Vue = (function () {
}
};
// create reactive effect for rendering
- const effect = new ReactiveEffect(componentUpdateFn, () => queueJob(instance.update), instance.scope // track it in component's effect scope
- );
+ const effect = (instance.effect = new ReactiveEffect(componentUpdateFn, () => queueJob(instance.update), instance.scope // track it in component's effect scope
+ ));
const update = (instance.update = effect.run.bind(effect));
update.id = instance.uid;
// allowRecurse
// #1801, #2043 component render effects should allow recursive updates
- effect.allowRecurse = update.allowRecurse = true;
+ toggleRecurse(instance, true);
{
effect.onTrack = instance.rtc
? e => invokeArrayFns(instance.rtc, e)
@@ -7551,88 +8331,8 @@ var Vue = (function () {
createApp: createAppAPI(render, hydrate)
};
}
- function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {
- if (isArray(rawRef)) {
- rawRef.forEach((r, i) => setRef(r, oldRawRef && (isArray(oldRawRef) ? oldRawRef[i] : oldRawRef), parentSuspense, vnode, isUnmount));
- return;
- }
- if (isAsyncWrapper(vnode) && !isUnmount) {
- // when mounting async components, nothing needs to be done,
- // because the template ref is forwarded to inner component
- return;
- }
- const refValue = vnode.shapeFlag & 4 /* STATEFUL_COMPONENT */
- ? getExposeProxy(vnode.component) || vnode.component.proxy
- : vnode.el;
- const value = isUnmount ? null : refValue;
- const { i: owner, r: ref } = rawRef;
- if (!owner) {
- warn$1(`Missing ref owner context. ref cannot be used on hoisted vnodes. ` +
- `A vnode with ref must be created inside the render function.`);
- return;
- }
- const oldRef = oldRawRef && oldRawRef.r;
- const refs = owner.refs === EMPTY_OBJ ? (owner.refs = {}) : owner.refs;
- const setupState = owner.setupState;
- // dynamic ref changed. unset old ref
- if (oldRef != null && oldRef !== ref) {
- if (isString(oldRef)) {
- refs[oldRef] = null;
- if (hasOwn(setupState, oldRef)) {
- setupState[oldRef] = null;
- }
- }
- else if (isRef(oldRef)) {
- oldRef.value = null;
- }
- }
- if (isString(ref)) {
- const doSet = () => {
- if (isCompatEnabled("V_FOR_REF" /* V_FOR_REF */, owner)) {
- registerLegacyRef(refs, ref, refValue, owner, rawRef.f, isUnmount);
- }
- else {
- refs[ref] = value;
- }
- if (hasOwn(setupState, ref)) {
- setupState[ref] = value;
- }
- };
- // #1789: for non-null values, set them after render
- // null values means this is unmount and it should not overwrite another
- // ref with the same key
- if (value) {
- doSet.id = -1;
- queuePostRenderEffect(doSet, parentSuspense);
- }
- else {
- doSet();
- }
- }
- else if (isRef(ref)) {
- const doSet = () => {
- ref.value = value;
- };
- if (value) {
- doSet.id = -1;
- queuePostRenderEffect(doSet, parentSuspense);
- }
- else {
- doSet();
- }
- }
- else if (isFunction(ref)) {
- callWithErrorHandling(ref, owner, 12 /* FUNCTION_REF */, [value, refs]);
- }
- else {
- warn$1('Invalid template ref type:', value, `(${typeof value})`);
- }
- }
- function invokeVNodeHook(hook, instance, vnode, prevVNode = null) {
- callWithAsyncErrorHandling(hook, instance, 7 /* VNODE_HOOK */, [
- vnode,
- prevVNode
- ]);
+ function toggleRecurse({ effect, update }, allowed) {
+ effect.allowRecurse = update.allowRecurse = allowed;
}
/**
* #1156
@@ -8281,6 +8981,7 @@ var Vue = (function () {
};
Func.props = comp.props;
Func.displayName = comp.name;
+ Func.compatConfig = comp.compatConfig;
// v2 functional components do not inherit attrs
Func.inheritAttrs = false;
normalizedFunctionalComponentMap.set(comp, Func);
@@ -8426,10 +9127,10 @@ var Vue = (function () {
};
const InternalObjectKey = `__vInternal`;
const normalizeKey = ({ key }) => key != null ? key : null;
- const normalizeRef = ({ ref }) => {
+ const normalizeRef = ({ ref, ref_key, ref_for }) => {
return (ref != null
? isString(ref) || isRef(ref) || isFunction(ref)
- ? { i: currentRenderingInstance, r: ref }
+ ? { i: currentRenderingInstance, r: ref, k: ref_key, f: !!ref_for }
: ref
: null);
};
@@ -8497,7 +9198,6 @@ var Vue = (function () {
}
{
convertLegacyVModelProps(vnode);
- convertLegacyRefInFor(vnode);
defineLegacyVNodeProperties(vnode);
}
return vnode;
@@ -8605,7 +9305,7 @@ var Vue = (function () {
shapeFlag: vnode.shapeFlag,
// if the vnode is cloned with extra props, we can no longer assume its
// existing patch flag to be reliable and need to add the FULL_PROPS flag.
- // note: perserve flag for fragments since they use the flag for children
+ // note: preserve flag for fragments since they use the flag for children
// fast paths only.
patchFlag: extraProps && vnode.type !== Fragment
? patchFlag === -1 // hoisted node
@@ -8770,7 +9470,8 @@ var Vue = (function () {
else if (isOn(key)) {
const existing = ret[key];
const incoming = toMerge[key];
- if (existing !== incoming &&
+ if (incoming &&
+ existing !== incoming &&
!(isArray(existing) && existing.includes(incoming))) {
ret[key] = existing
? [].concat(existing, incoming)
@@ -8783,6 +9484,12 @@ var Vue = (function () {
}
}
return ret;
+ }
+ function invokeVNodeHook(hook, instance, vnode, prevVNode = null) {
+ callWithAsyncErrorHandling(hook, instance, 7 /* VNODE_HOOK */, [
+ vnode,
+ prevVNode
+ ]);
}
function getCompatChildren(instance) {
@@ -9040,7 +9747,7 @@ var Vue = (function () {
}
function isKeyNotMatch(expect, actual) {
if (isArray(expect)) {
- return expect.indexOf(actual) === -1;
+ return !expect.includes(actual);
}
else {
return expect !== actual;
@@ -9119,7 +9826,7 @@ var Vue = (function () {
extend(map, {
// needed by many libs / render fns
$vnode: i => i.vnode,
- // inject addtional properties into $options for compat
+ // inject additional properties into $options for compat
// e.g. vuex needs this.$options.parent
$options: i => {
const res = extend({}, resolveMergedOptions(i));
@@ -9307,9 +10014,11 @@ var Vue = (function () {
const { data, setupState, ctx } = instance;
if (setupState !== EMPTY_OBJ && hasOwn(setupState, key)) {
setupState[key] = value;
+ return true;
}
else if (data !== EMPTY_OBJ && hasOwn(data, key)) {
data[key] = value;
+ return true;
}
else if (hasOwn(instance.props, key)) {
warn$1(`Attempting to mutate prop "${key}". Props are readonly.`, instance);
@@ -9343,6 +10052,15 @@ var Vue = (function () {
hasOwn(ctx, key) ||
hasOwn(publicPropertiesMap, key) ||
hasOwn(appContext.config.globalProperties, key));
+ },
+ defineProperty(target, key, descriptor) {
+ if (descriptor.get != null) {
+ this.set(target, key, descriptor.get(), null);
+ }
+ else if (descriptor.value != null) {
+ this.set(target, key, descriptor.value, null);
+ }
+ return Reflect.defineProperty(target, key, descriptor);
}
};
{
@@ -9442,6 +10160,7 @@ var Vue = (function () {
root: null,
next: null,
subTree: null,
+ effect: null,
update: null,
scope: new EffectScope(true /* detached */),
render: null,
@@ -9665,7 +10384,7 @@ var Vue = (function () {
// template / render function normalization
// could be already set when returned from setup()
if (!instance.render) {
- // only do on-the-fly compile if not in SSR - SSR on-the-fly compliation
+ // only do on-the-fly compile if not in SSR - SSR on-the-fly compilation
// is done by server-renderer
if (!isSSR && compile && !Component.render) {
const template = (instance.vnode.props &&
@@ -9818,689 +10537,10 @@ var Vue = (function () {
return isFunction(value) && '__vccOpts' in value;
}
- const stack = [];
- function pushWarningContext(vnode) {
- stack.push(vnode);
- }
- function popWarningContext() {
- stack.pop();
- }
- function warn$1(msg, ...args) {
- // avoid props formatting or warn handler tracking deps that might be mutated
- // during patch, leading to infinite recursion.
- pauseTracking();
- const instance = stack.length ? stack[stack.length - 1].component : null;
- const appWarnHandler = instance && instance.appContext.config.warnHandler;
- const trace = getComponentTrace();
- if (appWarnHandler) {
- callWithErrorHandling(appWarnHandler, instance, 11 /* APP_WARN_HANDLER */, [
- msg + args.join(''),
- instance && instance.proxy,
- trace
- .map(({ vnode }) => `at <${formatComponentName(instance, vnode.type)}>`)
- .join('\n'),
- trace
- ]);
- }
- else {
- const warnArgs = [`[Vue warn]: ${msg}`, ...args];
- /* istanbul ignore if */
- if (trace.length &&
- // avoid spamming console during tests
- !false) {
- warnArgs.push(`\n`, ...formatTrace(trace));
- }
- console.warn(...warnArgs);
- }
- resetTracking();
- }
- function getComponentTrace() {
- let currentVNode = stack[stack.length - 1];
- if (!currentVNode) {
- return [];
- }
- // we can't just use the stack because it will be incomplete during updates
- // that did not start from the root. Re-construct the parent chain using
- // instance parent pointers.
- const normalizedStack = [];
- while (currentVNode) {
- const last = normalizedStack[0];
- if (last && last.vnode === currentVNode) {
- last.recurseCount++;
- }
- else {
- normalizedStack.push({
- vnode: currentVNode,
- recurseCount: 0
- });
- }
- const parentInstance = currentVNode.component && currentVNode.component.parent;
- currentVNode = parentInstance && parentInstance.vnode;
- }
- return normalizedStack;
- }
- /* istanbul ignore next */
- function formatTrace(trace) {
- const logs = [];
- trace.forEach((entry, i) => {
- logs.push(...(i === 0 ? [] : [`\n`]), ...formatTraceEntry(entry));
- });
- return logs;
- }
- function formatTraceEntry({ vnode, recurseCount }) {
- const postfix = recurseCount > 0 ? `... (${recurseCount} recursive calls)` : ``;
- const isRoot = vnode.component ? vnode.component.parent == null : false;
- const open = ` at <${formatComponentName(vnode.component, vnode.type, isRoot)}`;
- const close = `>` + postfix;
- return vnode.props
- ? [open, ...formatProps(vnode.props), close]
- : [open + close];
- }
- /* istanbul ignore next */
- function formatProps(props) {
- const res = [];
- const keys = Object.keys(props);
- keys.slice(0, 3).forEach(key => {
- res.push(...formatProp(key, props[key]));
- });
- if (keys.length > 3) {
- res.push(` ...`);
- }
- return res;
- }
- /* istanbul ignore next */
- function formatProp(key, value, raw) {
- if (isString(value)) {
- value = JSON.stringify(value);
- return raw ? value : [`${key}=${value}`];
- }
- else if (typeof value === 'number' ||
- typeof value === 'boolean' ||
- value == null) {
- return raw ? value : [`${key}=${value}`];
- }
- else if (isRef(value)) {
- value = formatProp(key, toRaw(value.value), true);
- return raw ? value : [`${key}=Ref<`, value, `>`];
- }
- else if (isFunction(value)) {
- return [`${key}=fn${value.name ? `<${value.name}>` : ``}`];
- }
- else {
- value = toRaw(value);
- return raw ? value : [`${key}=`, value];
- }
- }
-
- const ErrorTypeStrings = {
- ["sp" /* SERVER_PREFETCH */]: 'serverPrefetch hook',
- ["bc" /* BEFORE_CREATE */]: 'beforeCreate hook',
- ["c" /* CREATED */]: 'created hook',
- ["bm" /* BEFORE_MOUNT */]: 'beforeMount hook',
- ["m" /* MOUNTED */]: 'mounted hook',
- ["bu" /* BEFORE_UPDATE */]: 'beforeUpdate hook',
- ["u" /* UPDATED */]: 'updated',
- ["bum" /* BEFORE_UNMOUNT */]: 'beforeUnmount hook',
- ["um" /* UNMOUNTED */]: 'unmounted hook',
- ["a" /* ACTIVATED */]: 'activated hook',
- ["da" /* DEACTIVATED */]: 'deactivated hook',
- ["ec" /* ERROR_CAPTURED */]: 'errorCaptured hook',
- ["rtc" /* RENDER_TRACKED */]: 'renderTracked hook',
- ["rtg" /* RENDER_TRIGGERED */]: 'renderTriggered hook',
- [0 /* SETUP_FUNCTION */]: 'setup function',
- [1 /* RENDER_FUNCTION */]: 'render function',
- [2 /* WATCH_GETTER */]: 'watcher getter',
- [3 /* WATCH_CALLBACK */]: 'watcher callback',
- [4 /* WATCH_CLEANUP */]: 'watcher cleanup function',
- [5 /* NATIVE_EVENT_HANDLER */]: 'native event handler',
- [6 /* COMPONENT_EVENT_HANDLER */]: 'component event handler',
- [7 /* VNODE_HOOK */]: 'vnode hook',
- [8 /* DIRECTIVE_HOOK */]: 'directive hook',
- [9 /* TRANSITION_HOOK */]: 'transition hook',
- [10 /* APP_ERROR_HANDLER */]: 'app errorHandler',
- [11 /* APP_WARN_HANDLER */]: 'app warnHandler',
- [12 /* FUNCTION_REF */]: 'ref function',
- [13 /* ASYNC_COMPONENT_LOADER */]: 'async component loader',
- [14 /* SCHEDULER */]: 'scheduler flush. This is likely a Vue internals bug. ' +
- 'Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/vue-next'
- };
- function callWithErrorHandling(fn, instance, type, args) {
- let res;
- try {
- res = args ? fn(...args) : fn();
- }
- catch (err) {
- handleError(err, instance, type);
- }
- return res;
- }
- function callWithAsyncErrorHandling(fn, instance, type, args) {
- if (isFunction(fn)) {
- const res = callWithErrorHandling(fn, instance, type, args);
- if (res && isPromise(res)) {
- res.catch(err => {
- handleError(err, instance, type);
- });
- }
- return res;
- }
- const values = [];
- for (let i = 0; i < fn.length; i++) {
- values.push(callWithAsyncErrorHandling(fn[i], instance, type, args));
- }
- return values;
- }
- function handleError(err, instance, type, throwInDev = true) {
- const contextVNode = instance ? instance.vnode : null;
- if (instance) {
- let cur = instance.parent;
- // the exposed instance is the render proxy to keep it consistent with 2.x
- const exposedInstance = instance.proxy;
- // in production the hook receives only the error code
- const errorInfo = ErrorTypeStrings[type] ;
- while (cur) {
- const errorCapturedHooks = cur.ec;
- if (errorCapturedHooks) {
- for (let i = 0; i < errorCapturedHooks.length; i++) {
- if (errorCapturedHooks[i](err, exposedInstance, errorInfo) === false) {
- return;
- }
- }
- }
- cur = cur.parent;
- }
- // app-level handling
- const appErrorHandler = instance.appContext.config.errorHandler;
- if (appErrorHandler) {
- callWithErrorHandling(appErrorHandler, null, 10 /* APP_ERROR_HANDLER */, [err, exposedInstance, errorInfo]);
- return;
- }
- }
- logError(err, type, contextVNode, throwInDev);
- }
- function logError(err, type, contextVNode, throwInDev = true) {
- {
- const info = ErrorTypeStrings[type];
- if (contextVNode) {
- pushWarningContext(contextVNode);
- }
- warn$1(`Unhandled error${info ? ` during execution of ${info}` : ``}`);
- if (contextVNode) {
- popWarningContext();
- }
- // crash in dev by default so it's more noticeable
- if (throwInDev) {
- throw err;
- }
- else {
- console.error(err);
- }
- }
- }
-
- let isFlushing = false;
- let isFlushPending = false;
- const queue = [];
- let flushIndex = 0;
- const pendingPreFlushCbs = [];
- let activePreFlushCbs = null;
- let preFlushIndex = 0;
- const pendingPostFlushCbs = [];
- let activePostFlushCbs = null;
- let postFlushIndex = 0;
- const resolvedPromise = Promise.resolve();
- let currentFlushPromise = null;
- let currentPreFlushParentJob = null;
- const RECURSION_LIMIT = 100;
- function nextTick(fn) {
- const p = currentFlushPromise || resolvedPromise;
- return fn ? p.then(this ? fn.bind(this) : fn) : p;
- }
- // #2768
- // Use binary-search to find a suitable position in the queue,
- // so that the queue maintains the increasing order of job's id,
- // which can prevent the job from being skipped and also can avoid repeated patching.
- function findInsertionIndex(id) {
- // the start index should be `flushIndex + 1`
- let start = flushIndex + 1;
- let end = queue.length;
- while (start < end) {
- const middle = (start + end) >>> 1;
- const middleJobId = getId(queue[middle]);
- middleJobId < id ? (start = middle + 1) : (end = middle);
- }
- return start;
- }
- function queueJob(job) {
- // the dedupe search uses the startIndex argument of Array.includes()
- // by default the search index includes the current job that is being run
- // so it cannot recursively trigger itself again.
- // if the job is a watch() callback, the search will start with a +1 index to
- // allow it recursively trigger itself - it is the user's responsibility to
- // ensure it doesn't end up in an infinite loop.
- if ((!queue.length ||
- !queue.includes(job, isFlushing && job.allowRecurse ? flushIndex + 1 : flushIndex)) &&
- job !== currentPreFlushParentJob) {
- if (job.id == null) {
- queue.push(job);
- }
- else {
- queue.splice(findInsertionIndex(job.id), 0, job);
- }
- queueFlush();
- }
- }
- function queueFlush() {
- if (!isFlushing && !isFlushPending) {
- isFlushPending = true;
- currentFlushPromise = resolvedPromise.then(flushJobs);
- }
- }
- function invalidateJob(job) {
- const i = queue.indexOf(job);
- if (i > flushIndex) {
- queue.splice(i, 1);
- }
- }
- function queueCb(cb, activeQueue, pendingQueue, index) {
- if (!isArray(cb)) {
- if (!activeQueue ||
- !activeQueue.includes(cb, cb.allowRecurse ? index + 1 : index)) {
- pendingQueue.push(cb);
- }
- }
- else {
- // if cb is an array, it is a component lifecycle hook which can only be
- // triggered by a job, which is already deduped in the main queue, so
- // we can skip duplicate check here to improve perf
- pendingQueue.push(...cb);
- }
- queueFlush();
- }
- function queuePreFlushCb(cb) {
- queueCb(cb, activePreFlushCbs, pendingPreFlushCbs, preFlushIndex);
- }
- function queuePostFlushCb(cb) {
- queueCb(cb, activePostFlushCbs, pendingPostFlushCbs, postFlushIndex);
- }
- function flushPreFlushCbs(seen, parentJob = null) {
- if (pendingPreFlushCbs.length) {
- currentPreFlushParentJob = parentJob;
- activePreFlushCbs = [...new Set(pendingPreFlushCbs)];
- pendingPreFlushCbs.length = 0;
- {
- seen = seen || new Map();
- }
- for (preFlushIndex = 0; preFlushIndex < activePreFlushCbs.length; preFlushIndex++) {
- if (checkRecursiveUpdates(seen, activePreFlushCbs[preFlushIndex])) {
- continue;
- }
- activePreFlushCbs[preFlushIndex]();
- }
- activePreFlushCbs = null;
- preFlushIndex = 0;
- currentPreFlushParentJob = null;
- // recursively flush until it drains
- flushPreFlushCbs(seen, parentJob);
- }
- }
- function flushPostFlushCbs(seen) {
- if (pendingPostFlushCbs.length) {
- const deduped = [...new Set(pendingPostFlushCbs)];
- pendingPostFlushCbs.length = 0;
- // #1947 already has active queue, nested flushPostFlushCbs call
- if (activePostFlushCbs) {
- activePostFlushCbs.push(...deduped);
- return;
- }
- activePostFlushCbs = deduped;
- {
- seen = seen || new Map();
- }
- activePostFlushCbs.sort((a, b) => getId(a) - getId(b));
- for (postFlushIndex = 0; postFlushIndex < activePostFlushCbs.length; postFlushIndex++) {
- if (checkRecursiveUpdates(seen, activePostFlushCbs[postFlushIndex])) {
- continue;
- }
- activePostFlushCbs[postFlushIndex]();
- }
- activePostFlushCbs = null;
- postFlushIndex = 0;
- }
- }
- const getId = (job) => job.id == null ? Infinity : job.id;
- function flushJobs(seen) {
- isFlushPending = false;
- isFlushing = true;
- {
- seen = seen || new Map();
- }
- flushPreFlushCbs(seen);
- // Sort queue before flush.
- // This ensures that:
- // 1. Components are updated from parent to child. (because parent is always
- // created before the child so its render effect will have smaller
- // priority number)
- // 2. If a component is unmounted during a parent component's update,
- // its update can be skipped.
- queue.sort((a, b) => getId(a) - getId(b));
- // conditional usage of checkRecursiveUpdate must be determined out of
- // try ... catch block since Rollup by default de-optimizes treeshaking
- // inside try-catch. This can leave all warning code unshaked. Although
- // they would get eventually shaken by a minifier like terser, some minifiers
- // would fail to do that (e.g. https://github.com/evanw/esbuild/issues/1610)
- const check = (job) => checkRecursiveUpdates(seen, job)
- ;
- try {
- for (flushIndex = 0; flushIndex < queue.length; flushIndex++) {
- const job = queue[flushIndex];
- if (job && job.active !== false) {
- if (true && check(job)) {
- continue;
- }
- // console.log(`running:`, job.id)
- callWithErrorHandling(job, null, 14 /* SCHEDULER */);
- }
- }
- }
- finally {
- flushIndex = 0;
- queue.length = 0;
- flushPostFlushCbs(seen);
- isFlushing = false;
- currentFlushPromise = null;
- // some postFlushCb queued jobs!
- // keep flushing until it drains.
- if (queue.length ||
- pendingPreFlushCbs.length ||
- pendingPostFlushCbs.length) {
- flushJobs(seen);
- }
- }
- }
- function checkRecursiveUpdates(seen, fn) {
- if (!seen.has(fn)) {
- seen.set(fn, 1);
- }
- else {
- const count = seen.get(fn);
- if (count > RECURSION_LIMIT) {
- const instance = fn.ownerInstance;
- const componentName = instance && getComponentName(instance.type);
- warn$1(`Maximum recursive updates exceeded${componentName ? ` in component <${componentName}>` : ``}. ` +
- `This means you have a reactive effect that is mutating its own ` +
- `dependencies and thus recursively triggering itself. Possible sources ` +
- `include component template, render function, updated hook or ` +
- `watcher source function.`);
- return true;
- }
- else {
- seen.set(fn, count + 1);
- }
- }
- }
-
- // Simple effect.
- function watchEffect(effect, options) {
- return doWatch(effect, null, options);
- }
- function watchPostEffect(effect, options) {
- return doWatch(effect, null, (Object.assign(options || {}, { flush: 'post' })
- ));
- }
- function watchSyncEffect(effect, options) {
- return doWatch(effect, null, (Object.assign(options || {}, { flush: 'sync' })
- ));
- }
- // initial value for watchers to trigger on undefined initial values
- const INITIAL_WATCHER_VALUE = {};
- // implementation
- function watch(source, cb, options) {
- if (!isFunction(cb)) {
- warn$1(`\`watch(fn, options?)\` signature has been moved to a separate API. ` +
- `Use \`watchEffect(fn, options?)\` instead. \`watch\` now only ` +
- `supports \`watch(source, cb, options?) signature.`);
- }
- return doWatch(source, cb, options);
- }
- function doWatch(source, cb, { immediate, deep, flush, onTrack, onTrigger } = EMPTY_OBJ) {
- if (!cb) {
- if (immediate !== undefined) {
- warn$1(`watch() "immediate" option is only respected when using the ` +
- `watch(source, callback, options?) signature.`);
- }
- if (deep !== undefined) {
- warn$1(`watch() "deep" option is only respected when using the ` +
- `watch(source, callback, options?) signature.`);
- }
- }
- const warnInvalidSource = (s) => {
- warn$1(`Invalid watch source: `, s, `A watch source can only be a getter/effect function, a ref, ` +
- `a reactive object, or an array of these types.`);
- };
- const instance = currentInstance;
- let getter;
- let forceTrigger = false;
- let isMultiSource = false;
- if (isRef(source)) {
- getter = () => source.value;
- forceTrigger = !!source._shallow;
- }
- else if (isReactive(source)) {
- getter = () => source;
- deep = true;
- }
- else if (isArray(source)) {
- isMultiSource = true;
- forceTrigger = source.some(isReactive);
- getter = () => source.map(s => {
- if (isRef(s)) {
- return s.value;
- }
- else if (isReactive(s)) {
- return traverse(s);
- }
- else if (isFunction(s)) {
- return callWithErrorHandling(s, instance, 2 /* WATCH_GETTER */);
- }
- else {
- warnInvalidSource(s);
- }
- });
- }
- else if (isFunction(source)) {
- if (cb) {
- // getter with cb
- getter = () => callWithErrorHandling(source, instance, 2 /* WATCH_GETTER */);
- }
- else {
- // no cb -> simple effect
- getter = () => {
- if (instance && instance.isUnmounted) {
- return;
- }
- if (cleanup) {
- cleanup();
- }
- return callWithAsyncErrorHandling(source, instance, 3 /* WATCH_CALLBACK */, [onInvalidate]);
- };
- }
- }
- else {
- getter = NOOP;
- warnInvalidSource(source);
- }
- // 2.x array mutation watch compat
- if (cb && !deep) {
- const baseGetter = getter;
- getter = () => {
- const val = baseGetter();
- if (isArray(val) &&
- checkCompatEnabled("WATCH_ARRAY" /* WATCH_ARRAY */, instance)) {
- traverse(val);
- }
- return val;
- };
- }
- if (cb && deep) {
- const baseGetter = getter;
- getter = () => traverse(baseGetter());
- }
- let cleanup;
- let onInvalidate = (fn) => {
- cleanup = effect.onStop = () => {
- callWithErrorHandling(fn, instance, 4 /* WATCH_CLEANUP */);
- };
- };
- let oldValue = isMultiSource ? [] : INITIAL_WATCHER_VALUE;
- const job = () => {
- if (!effect.active) {
- return;
- }
- if (cb) {
- // watch(source, cb)
- const newValue = effect.run();
- if (deep ||
- forceTrigger ||
- (isMultiSource
- ? newValue.some((v, i) => hasChanged(v, oldValue[i]))
- : hasChanged(newValue, oldValue)) ||
- (isArray(newValue) &&
- isCompatEnabled("WATCH_ARRAY" /* WATCH_ARRAY */, instance))) {
- // cleanup before running cb again
- if (cleanup) {
- cleanup();
- }
- callWithAsyncErrorHandling(cb, instance, 3 /* WATCH_CALLBACK */, [
- newValue,
- // pass undefined as the old value when it's changed for the first time
- oldValue === INITIAL_WATCHER_VALUE ? undefined : oldValue,
- onInvalidate
- ]);
- oldValue = newValue;
- }
- }
- else {
- // watchEffect
- effect.run();
- }
- };
- // important: mark the job as a watcher callback so that scheduler knows
- // it is allowed to self-trigger (#1727)
- job.allowRecurse = !!cb;
- let scheduler;
- if (flush === 'sync') {
- scheduler = job; // the scheduler function gets called directly
- }
- else if (flush === 'post') {
- scheduler = () => queuePostRenderEffect(job, instance && instance.suspense);
- }
- else {
- // default: 'pre'
- scheduler = () => {
- if (!instance || instance.isMounted) {
- queuePreFlushCb(job);
- }
- else {
- // with 'pre' option, the first call must happen before
- // the component is mounted so it is called synchronously.
- job();
- }
- };
- }
- const effect = new ReactiveEffect(getter, scheduler);
- {
- effect.onTrack = onTrack;
- effect.onTrigger = onTrigger;
- }
- // initial run
- if (cb) {
- if (immediate) {
- job();
- }
- else {
- oldValue = effect.run();
- }
- }
- else if (flush === 'post') {
- queuePostRenderEffect(effect.run.bind(effect), instance && instance.suspense);
- }
- else {
- effect.run();
- }
- return () => {
- effect.stop();
- if (instance && instance.scope) {
- remove(instance.scope.effects, effect);
- }
- };
- }
- // this.$watch
- function instanceWatch(source, value, options) {
- const publicThis = this.proxy;
- const getter = isString(source)
- ? source.includes('.')
- ? createPathGetter(publicThis, source)
- : () => publicThis[source]
- : source.bind(publicThis, publicThis);
- let cb;
- if (isFunction(value)) {
- cb = value;
- }
- else {
- cb = value.handler;
- options = value;
- }
- const cur = currentInstance;
- setCurrentInstance(this);
- const res = doWatch(getter, cb.bind(publicThis), options);
- if (cur) {
- setCurrentInstance(cur);
- }
- else {
- unsetCurrentInstance();
- }
- return res;
- }
- function createPathGetter(ctx, path) {
- const segments = path.split('.');
- return () => {
- let cur = ctx;
- for (let i = 0; i < segments.length && cur; i++) {
- cur = cur[segments[i]];
- }
- return cur;
- };
- }
- function traverse(value, seen) {
- if (!isObject(value) || value["__v_skip" /* SKIP */]) {
- return value;
- }
- seen = seen || new Set();
- if (seen.has(value)) {
- return value;
- }
- seen.add(value);
- if (isRef(value)) {
- traverse(value.value, seen);
- }
- else if (isArray(value)) {
- for (let i = 0; i < value.length; i++) {
- traverse(value[i], seen);
- }
- }
- else if (isSet(value) || isMap(value)) {
- value.forEach((v) => {
- traverse(v, seen);
- });
- }
- else if (isPlainObject(value)) {
- for (const key in value) {
- traverse(value[key], seen);
- }
- }
- return value;
- }
+ const computed$1 = ((getterOrOptions, debugOptions) => {
+ // @ts-ignore
+ return computed(getterOrOptions, debugOptions, isInSSRComponentSetup);
+ });
// dev only
const warnRuntimeUsage = (method) => warn$1(`${method}() is a compiler-hint helper that is only usable inside ` +
@@ -10525,7 +10565,7 @@ var Vue = (function () {
* instance properties when it is accessed by a parent component via template
* refs.
*
- * `<script setup>` components are closed by default - i.e. varaibles inside
+ * `<script setup>` components are closed by default - i.e. variables inside
* the `<script setup>` scope is not exposed to parent unless explicitly exposed
* via `defineExpose`.
*
@@ -10723,7 +10763,7 @@ var Vue = (function () {
return [
'div',
{},
- ['span', vueStyle, 'Reactive'],
+ ['span', vueStyle, isShallow(obj) ? 'ShallowReactive' : 'Reactive'],
'<',
formatValue(obj),
`>${isReadonly(obj) ? ` (readonly)` : ``}`
@@ -10733,7 +10773,7 @@ var Vue = (function () {
return [
'div',
{},
- ['span', vueStyle, 'Readonly'],
+ ['span', vueStyle, isShallow(obj) ? 'ShallowReadonly' : 'Readonly'],
'<',
formatValue(obj),
'>'
@@ -10862,7 +10902,7 @@ var Vue = (function () {
}
}
function genRefFlag(v) {
- if (v._shallow) {
+ if (isShallow(v)) {
return `ShallowRef`;
}
if (v.effect) {
@@ -10906,7 +10946,7 @@ var Vue = (function () {
}
// Core API ------------------------------------------------------------------
- const version = "3.2.23";
+ const version = "3.2.31";
/**
* SSR utils for \@vue/server-renderer. Only exposed in cjs builds.
* @internal
@@ -10930,7 +10970,7 @@ var Vue = (function () {
const svgNS = 'http://www.w3.org/2000/svg';
const doc = (typeof document !== 'undefined' ? document : null);
- const staticTemplateCache = new Map();
+ const templateContainer = doc && doc.createElement('template');
const nodeOps = {
insert: (child, parent, anchor) => {
parent.insertBefore(child, anchor || null);
@@ -10984,14 +11024,24 @@ var Vue = (function () {
// Reason: innerHTML.
// Static content here can only come from compiled templates.
// As long as the user only uses trusted templates, this is safe.
- insertStaticContent(content, parent, anchor, isSVG) {
+ insertStaticContent(content, parent, anchor, isSVG, start, end) {
// <parent> before | first ... last | anchor </parent>
const before = anchor ? anchor.previousSibling : parent.lastChild;
- let template = staticTemplateCache.get(content);
- if (!template) {
- const t = doc.createElement('template');
- t.innerHTML = isSVG ? `<svg>${content}</svg>` : content;
- template = t.content;
+ // #5308 can only take cached path if:
+ // - has a single root node
+ // - nextSibling info is still available
+ if (start && (start === end || start.nextSibling)) {
+ // cached
+ while (true) {
+ parent.insertBefore(start.cloneNode(true), anchor);
+ if (start === end || !(start = start.nextSibling))
+ break;
+ }
+ }
+ else {
+ // fresh insert
+ templateContainer.innerHTML = isSVG ? `<svg>${content}</svg>` : content;
+ const template = templateContainer.content;
if (isSVG) {
// remove outer svg wrapper
const wrapper = template.firstChild;
@@ -11000,9 +11050,8 @@ var Vue = (function () {
}
template.removeChild(wrapper);
}
- staticTemplateCache.set(content, template);
+ parent.insertBefore(template, anchor);
}
- parent.insertBefore(template.cloneNode(true), anchor);
return [
// first
before ? before.nextSibling : parent.firstChild,
@@ -11331,7 +11380,7 @@ var Vue = (function () {
originalStop.call(e);
e._stopped = true;
};
- return value.map(fn => (e) => !e._stopped && fn(e));
+ return value.map(fn => (e) => !e._stopped && fn && fn(e));
}
else {
return value;
@@ -11581,7 +11630,7 @@ var Vue = (function () {
// HMR
{
instance.ceReload = newStyles => {
- // alawys reset styles
+ // always reset styles
if (this._styles) {
this._styles.forEach(s => this.shadowRoot.removeChild(s));
this._styles.length = 0;
@@ -12682,7 +12731,6 @@ var Vue = (function () {
withModifiers: withModifiers,
withKeys: withKeys,
vShow: vShow,
- computed: computed,
reactive: reactive,
ref: ref,
readonly: readonly,
@@ -12694,6 +12742,7 @@ var Vue = (function () {
isProxy: isProxy,
isReactive: isReactive,
isReadonly: isReadonly,
+ isShallow: isShallow,
customRef: customRef,
triggerRef: triggerRef,
shallowRef: shallowRef,
@@ -12708,6 +12757,7 @@ var Vue = (function () {
EffectScope: EffectScope,
getCurrentScope: getCurrentScope,
onScopeDispose: onScopeDispose,
+ computed: computed$1,
watch: watch,
watchEffect: watchEffect,
watchPostEffect: watchPostEffect,
@@ -13305,12 +13355,12 @@ var Vue = (function () {
}
else if (p.name === 'bind' &&
(p.exp || allowEmpty) &&
- isBindKey(p.arg, name)) {
+ isStaticArgOf(p.arg, name)) {
return p;
}
}
}
- function isBindKey(arg, name) {
+ function isStaticArgOf(arg, name) {
return !!(arg && isStaticExp(arg) && arg.content === name);
}
function hasDynamicKeyVBind(node) {
@@ -13353,7 +13403,6 @@ var Vue = (function () {
}
function injectProp(node, prop, context) {
let propsWithInjection;
- const originalProps = node.type === 13 /* VNODE_CALL */ ? node.props : node.arguments[2];
/**
* 1. mergeProps(...)
* 2. toHandlers(...)
@@ -13362,7 +13411,7 @@ var Vue = (function () {
*
* we need to get the real props before normalization
*/
- let props = originalProps;
+ let props = node.type === 13 /* VNODE_CALL */ ? node.props : node.arguments[2];
let callPath = [];
let parentCall;
if (props &&
@@ -13469,13 +13518,13 @@ var Vue = (function () {
message: `Platform-native elements with "is" prop will no longer be ` +
`treated as components in Vue 3 unless the "is" value is explicitly ` +
`prefixed with "vue:".`,
- link: `https://v3.vuejs.org/guide/migration/custom-elements-interop.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/custom-elements-interop.html`
},
["COMPILER_V_BIND_SYNC" /* COMPILER_V_BIND_SYNC */]: {
message: key => `.sync modifier for v-bind has been removed. Use v-model with ` +
`argument instead. \`v-bind:${key}.sync\` should be changed to ` +
`\`v-model:${key}\`.`,
- link: `https://v3.vuejs.org/guide/migration/v-model.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/v-model.html`
},
["COMPILER_V_BIND_PROP" /* COMPILER_V_BIND_PROP */]: {
message: `.prop modifier for v-bind has been removed and no longer necessary. ` +
@@ -13487,11 +13536,11 @@ var Vue = (function () {
`that appears before v-bind in the case of conflict. ` +
`To retain 2.x behavior, move v-bind to make it the first attribute. ` +
`You can also suppress this warning if the usage is intended.`,
- link: `https://v3.vuejs.org/guide/migration/v-bind.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/v-bind.html`
},
["COMPILER_V_ON_NATIVE" /* COMPILER_V_ON_NATIVE */]: {
message: `.native modifier for v-on has been removed as is no longer necessary.`,
- link: `https://v3.vuejs.org/guide/migration/v-on-native-modifier-removed.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/v-on-native-modifier-removed.html`
},
["COMPILER_V_IF_V_FOR_PRECEDENCE" /* COMPILER_V_IF_V_FOR_PRECEDENCE */]: {
message: `v-if / v-for precedence when used on the same element has changed ` +
@@ -13499,12 +13548,7 @@ var Vue = (function () {
`access to v-for scope variables. It is best to avoid the ambiguity ` +
`with <template> tags or use a computed property that filters v-for ` +
`data source.`,
- link: `https://v3.vuejs.org/guide/migration/v-if-v-for.html`
- },
- ["COMPILER_V_FOR_REF" /* COMPILER_V_FOR_REF */]: {
- message: `Ref usage on v-for no longer creates array ref values in Vue 3. ` +
- `Consider using function refs or refactor to avoid ref usage altogether.`,
- link: `https://v3.vuejs.org/guide/migration/array-refs.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/v-if-v-for.html`
},
["COMPILER_NATIVE_TEMPLATE" /* COMPILER_NATIVE_TEMPLATE */]: {
message: `<template> with no special directives will render as a native template ` +
@@ -13512,13 +13556,13 @@ var Vue = (function () {
},
["COMPILER_INLINE_TEMPLATE" /* COMPILER_INLINE_TEMPLATE */]: {
message: `"inline-template" has been removed in Vue 3.`,
- link: `https://v3.vuejs.org/guide/migration/inline-template-attribute.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/inline-template-attribute.html`
},
["COMPILER_FILTER" /* COMPILER_FILTERS */]: {
message: `filters have been removed in Vue 3. ` +
`The "|" symbol will be treated as native JavaScript bitwise OR operator. ` +
`Use method calls or computed properties instead.`,
- link: `https://v3.vuejs.org/guide/migration/filters.html`
+ link: `https://v3-migration.vuejs.org/breaking-changes/filters.html`
}
};
function getCompatValue(key, context) {
@@ -14023,7 +14067,7 @@ var Vue = (function () {
else if (
// :is on plain element - only treat as component in compat mode
p.name === 'bind' &&
- isBindKey(p.arg, 'is') &&
+ isStaticArgOf(p.arg, 'is') &&
true &&
checkCompatEnabled$1("COMPILER_IS_ON_ELEMENT" /* COMPILER_IS_ON_ELEMENT */, context, p.loc)) {
return true;
@@ -14048,7 +14092,7 @@ var Vue = (function () {
}
const attr = parseAttribute(context, attributeNames);
// Trim whitespace between class
- // https://github.com/vuejs/vue-next/issues/4251
+ // https://github.com/vuejs/core/issues/4251
if (attr.type === 6 /* ATTRIBUTE */ &&
attr.value &&
attr.name === 'class') {
@@ -14284,7 +14328,7 @@ var Vue = (function () {
advanceBy(context, length);
if (mode === 2 /* RAWTEXT */ ||
mode === 3 /* CDATA */ ||
- rawText.indexOf('&') === -1) {
+ !rawText.includes('&')) {
return rawText;
}
else {
@@ -14383,15 +14427,6 @@ var Vue = (function () {
!isSlotOutlet(child));
}
function walk$1(node, context, doNotHoistNode = false) {
- // Some transforms, e.g. transformAssetUrls from @vue/compiler-sfc, replaces
- // static bindings with expressions. These expressions are guaranteed to be
- // constant so they are still eligible for hoisting, but they are only
- // available at runtime and therefore cannot be evaluated ahead of time.
- // This is only a concern for pre-stringification (via transformHoist by
- // @vue/compiler-dom), but doing it here allows us to perform only one full
- // walk of the AST and allow `stringifyStatic` to stop walking as soon as its
- // stringification threshold is met.
- let canStringify = true;
const { children } = node;
const originalCount = children.length;
let hoistedCount = 0;
@@ -14404,9 +14439,6 @@ var Vue = (function () {
? 0 /* NOT_CONSTANT */
: getConstantType(child, context);
if (constantType > 0 /* NOT_CONSTANT */) {
- if (constantType < 3 /* CAN_STRINGIFY */) {
- canStringify = false;
- }
if (constantType >= 2 /* CAN_HOIST */) {
child.codegenNode.patchFlag =
-1 /* HOISTED */ + (` /* HOISTED */` );
@@ -14437,17 +14469,10 @@ var Vue = (function () {
}
}
}
- else if (child.type === 12 /* TEXT_CALL */) {
- const contentType = getConstantType(child.content, context);
- if (contentType > 0) {
- if (contentType < 3 /* CAN_STRINGIFY */) {
- canStringify = false;
- }
- if (contentType >= 2 /* CAN_HOIST */) {
- child.codegenNode = context.hoist(child.codegenNode);
- hoistedCount++;
- }
- }
+ else if (child.type === 12 /* TEXT_CALL */ &&
+ getConstantType(child.content, context) >= 2 /* CAN_HOIST */) {
+ child.codegenNode = context.hoist(child.codegenNode);
+ hoistedCount++;
}
// walk further
if (child.type === 1 /* ELEMENT */) {
@@ -14471,7 +14496,7 @@ var Vue = (function () {
}
}
}
- if (canStringify && hoistedCount && context.transformHoist) {
+ if (hoistedCount && context.transformHoist) {
context.transformHoist(children, context, node);
}
// all children were hoisted - the entire children array is hoistable.
@@ -14500,6 +14525,11 @@ var Vue = (function () {
if (codegenNode.type !== 13 /* VNODE_CALL */) {
return 0 /* NOT_CONSTANT */;
}
+ if (codegenNode.isBlock &&
+ node.tag !== 'svg' &&
+ node.tag !== 'foreignObject') {
+ return 0 /* NOT_CONSTANT */;
+ }
const flag = getPatchFlag(codegenNode);
if (!flag) {
let returnType = 3 /* CAN_STRINGIFY */;
@@ -14636,7 +14666,7 @@ var Vue = (function () {
else if (value.type === 14 /* JS_CALL_EXPRESSION */) {
// some helper calls can be hoisted,
// such as the `normalizeProps` generated by the compiler for pre-normalize class,
- // in this case we need to respect the ConstantType of the helper's argments
+ // in this case we need to respect the ConstantType of the helper's arguments
valueType = getConstantTypeOfHelperCall(value, context);
}
else {
@@ -15819,6 +15849,7 @@ var Vue = (function () {
const renderExp = createCallExpression(helper(RENDER_LIST), [
forNode.source
]);
+ const isTemplate = isTemplateNode(node);
const memo = findDir(node, 'memo');
const keyProp = findProp(node, `key`);
const keyExp = keyProp &&
@@ -15838,7 +15869,6 @@ var Vue = (function () {
return () => {
// finish the codegen now that all children have been traversed
let childBlock;
- const isTemplate = isTemplateNode(node);
const { children } = forNode;
// check <template v-for> key placement
if (isTemplate) {
@@ -16303,10 +16333,7 @@ var Vue = (function () {
// updates inside get proper isSVG flag at runtime. (#639, #643)
// This is technically web-specific, but splitting the logic out of core
// leads to too much unnecessary complexity.
- (tag === 'svg' ||
- tag === 'foreignObject' ||
- // #938: elements with dynamic keys should be forced into blocks
- findProp(node, 'key', true)));
+ (tag === 'svg' || tag === 'foreignObject'));
// props
if (props.length > 0) {
const propsBuildResult = buildProps(node, context);
@@ -16318,6 +16345,9 @@ var Vue = (function () {
directives && directives.length
? createArrayExpression(directives.map(dir => buildDirectiveArgs(dir, context)))
: undefined;
+ if (propsBuildResult.shouldUseBlock) {
+ shouldUseBlock = true;
+ }
}
// children
if (node.children.length > 0) {
@@ -16446,11 +16476,13 @@ var Vue = (function () {
return toValidAssetId(tag, `component`);
}
function buildProps(node, context, props = node.props, ssr = false) {
- const { tag, loc: elementLoc } = node;
+ const { tag, loc: elementLoc, children } = node;
const isComponent = node.tagType === 1 /* COMPONENT */;
let properties = [];
const mergeArgs = [];
const runtimeDirectives = [];
+ const hasChildren = children.length > 0;
+ let shouldUseBlock = false;
// patchFlag analysis
let patchFlag = 0;
let hasRef = false;
@@ -16513,9 +16545,12 @@ var Vue = (function () {
const prop = props[i];
if (prop.type === 6 /* ATTRIBUTE */) {
const { loc, name, value } = prop;
- let valueNode = createSimpleExpression(value ? value.content : '', true, value ? value.loc : loc);
+ let isStatic = true;
if (name === 'ref') {
hasRef = true;
+ if (context.scopes.vFor > 0) {
+ properties.push(createObjectProperty(createSimpleExpression('ref_for', true), createSimpleExpression('true')));
+ }
}
// skip is on <component>, or is="vue:xxx"
if (name === 'is' &&
@@ -16524,7 +16559,7 @@ var Vue = (function () {
(isCompatEnabled$1("COMPILER_IS_ON_ELEMENT" /* COMPILER_IS_ON_ELEMENT */, context)))) {
continue;
}
- properties.push(createObjectProperty(createSimpleExpression(name, true, getInnerRange(loc, 0, name.length)), valueNode));
+ properties.push(createObjectProperty(createSimpleExpression(name, true, getInnerRange(loc, 0, name.length)), createSimpleExpression(value ? value.content : '', isStatic, value ? value.loc : loc)));
}
else {
// directives
@@ -16545,7 +16580,7 @@ var Vue = (function () {
// skip v-is and :is on <component>
if (name === 'is' ||
(isVBind &&
- isBindKey(arg, 'is') &&
+ isStaticArgOf(arg, 'is') &&
(isComponentTag(tag) ||
(isCompatEnabled$1("COMPILER_IS_ON_ELEMENT" /* COMPILER_IS_ON_ELEMENT */, context))))) {
continue;
@@ -16554,6 +16589,17 @@ var Vue = (function () {
if (isVOn && ssr) {
continue;
}
+ if (
+ // #938: elements with dynamic keys should be forced into blocks
+ (isVBind && isStaticArgOf(arg, 'key')) ||
+ // inline before-update hooks need to force block so that it is invoked
+ // before children
+ (isVOn && hasChildren && isStaticArgOf(arg, 'vue:before-update'))) {
+ shouldUseBlock = true;
+ }
+ if (isVBind && isStaticArgOf(arg, 'ref') && context.scopes.vFor > 0) {
+ properties.push(createObjectProperty(createSimpleExpression('ref_for', true), createSimpleExpression('true')));
+ }
// special case for v-bind and v-on with no argument
if (!arg && (isVBind || isVOn)) {
hasDynamicKeys = true;
@@ -16624,17 +16670,16 @@ var Vue = (function () {
}
}
}
- else {
+ else if (!isBuiltInDirective(name)) {
// no built-in transform, this is a user custom directive.
runtimeDirectives.push(prop);
+ // custom dirs may use beforeUpdate so they need to force blocks
+ // to ensure before-update gets called before children update
+ if (hasChildren) {
+ shouldUseBlock = true;
+ }
}
}
- if (prop.type === 6 /* ATTRIBUTE */ &&
- prop.name === 'ref' &&
- context.scopes.vFor > 0 &&
- checkCompatEnabled$1("COMPILER_V_FOR_REF" /* COMPILER_V_FOR_REF */, context, prop.loc)) {
- properties.push(createObjectProperty(createSimpleExpression('refInFor', true), createSimpleExpression('true', false)));
- }
}
let propsExpression = undefined;
// has v-bind="object" or v-on="object", wrap with mergeProps
@@ -16671,7 +16716,8 @@ var Vue = (function () {
patchFlag |= 32 /* HYDRATE_EVENTS */;
}
}
- if ((patchFlag === 0 || patchFlag === 32 /* HYDRATE_EVENTS */) &&
+ if (!shouldUseBlock &&
+ (patchFlag === 0 || patchFlag === 32 /* HYDRATE_EVENTS */) &&
(hasRef || hasVnodeHook || runtimeDirectives.length > 0)) {
patchFlag |= 512 /* NEED_PATCH */;
}
@@ -16738,7 +16784,8 @@ var Vue = (function () {
props: propsExpression,
directives: runtimeDirectives,
patchFlag,
- dynamicPropNames
+ dynamicPropNames,
+ shouldUseBlock
};
}
// Dedupe props in an object literal.
@@ -16874,7 +16921,7 @@ var Vue = (function () {
}
}
else {
- if (p.name === 'bind' && isBindKey(p.arg, 'name')) {
+ if (p.name === 'bind' && isStaticArgOf(p.arg, 'name')) {
if (p.exp)
slotName = p.exp;
}
@@ -16908,7 +16955,11 @@ var Vue = (function () {
let eventName;
if (arg.type === 4 /* SIMPLE_EXPRESSION */) {
if (arg.isStatic) {
- const rawName = arg.content;
+ let rawName = arg.content;
+ // TODO deprecate @vnodeXXX usage
+ if (rawName.startsWith('vue:')) {
+ rawName = `vnode-${rawName.slice(4)}`;
+ }
// for all event listeners, auto convert it to camelCase. See issue #2249
eventName = createSimpleExpression(toHandlerKey(camelize(rawName)), true, arg.loc);
}
diff --git a/resources/lib/vue/vue.global.prod.js b/resources/lib/vue/vue.global.prod.js
index 99f75bcb4275..028d2f77318e 100644
--- a/resources/lib/vue/vue.global.prod.js
+++ b/resources/lib/vue/vue.global.prod.js
@@ -1 +1 @@
-var Vue=function(){"use strict";function e(e,t){const n=Object.create(null),o=e.split(",");for(let r=0;r<o.length;r++)n[o[r]]=!0;return t?e=>!!n[e.toLowerCase()]:e=>!!n[e]}const t=e("Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt"),n=e("itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly");function o(e){return!!e||""===e}function r(e){if(w(e)){const t={};for(let n=0;n<e.length;n++){const o=e[n],s=I(o)?c(o):r(o);if(s)for(const e in s)t[e]=s[e]}return t}return I(e)||M(e)?e:void 0}const s=/;(?![^(]*\))/g,i=/:(.+)/;function c(e){const t={};return e.split(s).forEach((e=>{if(e){const n=e.split(i);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}function l(e){let t="";if(I(e))t=e;else if(w(e))for(let n=0;n<e.length;n++){const o=l(e[n]);o&&(t+=o+" ")}else if(M(e))for(const n in e)e[n]&&(t+=n+" ");return t.trim()}const a=e("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,summary,template,blockquote,iframe,tfoot"),u=e("svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,feDistanceLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,text,textPath,title,tspan,unknown,use,view"),p=e("area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr");function f(e,t){if(e===t)return!0;let n=A(e),o=A(t);if(n||o)return!(!n||!o)&&e.getTime()===t.getTime();if(n=w(e),o=w(t),n||o)return!(!n||!o)&&function(e,t){if(e.length!==t.length)return!1;let n=!0;for(let o=0;n&&o<e.length;o++)n=f(e[o],t[o]);return n}(e,t);if(n=M(e),o=M(t),n||o){if(!n||!o)return!1;if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e){const o=e.hasOwnProperty(n),r=t.hasOwnProperty(n);if(o&&!r||!o&&r||!f(e[n],t[n]))return!1}}return String(e)===String(t)}function d(e,t){return e.findIndex((e=>f(e,t)))}const h=e=>null==e?"":w(e)||M(e)&&(e.toString===F||!R(e.toString))?JSON.stringify(e,m,2):String(e),m=(e,t)=>t&&t.__v_isRef?m(e,t.value):O(t)?{[`Map(${t.size})`]:[...t.entries()].reduce(((e,[t,n])=>(e[`${t} =>`]=n,e)),{})}:k(t)?{[`Set(${t.size})`]:[...t.values()]}:!M(t)||w(t)||V(t)?t:String(t),g={},y=[],v=()=>{},_=()=>!1,b=/^on[^a-z]/,S=e=>b.test(e),C=e=>e.startsWith("onUpdate:"),x=Object.assign,E=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},T=Object.prototype.hasOwnProperty,N=(e,t)=>T.call(e,t),w=Array.isArray,O=e=>"[object Map]"===L(e),k=e=>"[object Set]"===L(e),A=e=>e instanceof Date,R=e=>"function"==typeof e,I=e=>"string"==typeof e,P=e=>"symbol"==typeof e,M=e=>null!==e&&"object"==typeof e,$=e=>M(e)&&R(e.then)&&R(e.catch),F=Object.prototype.toString,L=e=>F.call(e),V=e=>"[object Object]"===L(e),B=e=>I(e)&&"NaN"!==e&&"-"!==e[0]&&""+parseInt(e,10)===e,D=e(",key,ref,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),j=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},U=/-(\w)/g,H=j((e=>e.replace(U,((e,t)=>t?t.toUpperCase():"")))),W=/\B([A-Z])/g,K=j((e=>e.replace(W,"-$1").toLowerCase())),z=j((e=>e.charAt(0).toUpperCase()+e.slice(1))),G=j((e=>e?`on${z(e)}`:"")),q=(e,t)=>!Object.is(e,t),J=(e,t)=>{for(let n=0;n<e.length;n++)e[n](t)},Y=(e,t,n)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},Z=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let X;let Q;const ee=[];class te{constructor(e=!1){this.active=!0,this.effects=[],this.cleanups=[],!e&&Q&&(this.parent=Q,this.index=(Q.scopes||(Q.scopes=[])).push(this)-1)}run(e){if(this.active)try{return this.on(),e()}finally{this.off()}}on(){this.active&&(ee.push(this),Q=this)}off(){this.active&&(ee.pop(),Q=ee[ee.length-1])}stop(e){if(this.active){if(this.effects.forEach((e=>e.stop())),this.cleanups.forEach((e=>e())),this.scopes&&this.scopes.forEach((e=>e.stop(!0))),this.parent&&!e){const e=this.parent.scopes.pop();e&&e!==this&&(this.parent.scopes[this.index]=e,e.index=this.index)}this.active=!1}}}function ne(e,t){(t=t||Q)&&t.active&&t.effects.push(e)}const oe=e=>{const t=new Set(e);return t.w=0,t.n=0,t},re=e=>(e.w&le)>0,se=e=>(e.n&le)>0,ie=new WeakMap;let ce=0,le=1;const ae=[];let ue;const pe=Symbol(""),fe=Symbol("");class de{constructor(e,t=null,n){this.fn=e,this.scheduler=t,this.active=!0,this.deps=[],ne(this,n)}run(){if(!this.active)return this.fn();if(!ae.includes(this))try{return ae.push(ue=this),ge.push(me),me=!0,le=1<<++ce,ce<=30?(({deps:e})=>{if(e.length)for(let t=0;t<e.length;t++)e[t].w|=le})(this):he(this),this.fn()}finally{ce<=30&&(e=>{const{deps:t}=e;if(t.length){let n=0;for(let o=0;o<t.length;o++){const r=t[o];re(r)&&!se(r)?r.delete(e):t[n++]=r,r.w&=~le,r.n&=~le}t.length=n}})(this),le=1<<--ce,ve(),ae.pop();const e=ae.length;ue=e>0?ae[e-1]:void 0}}stop(){this.active&&(he(this),this.onStop&&this.onStop(),this.active=!1)}}function he(e){const{deps:t}=e;if(t.length){for(let n=0;n<t.length;n++)t[n].delete(e);t.length=0}}let me=!0;const ge=[];function ye(){ge.push(me),me=!1}function ve(){const e=ge.pop();me=void 0===e||e}function _e(e,t,n){if(!be())return;let o=ie.get(e);o||ie.set(e,o=new Map);let r=o.get(n);r||o.set(n,r=oe()),Se(r)}function be(){return me&&void 0!==ue}function Se(e,t){let n=!1;ce<=30?se(e)||(e.n|=le,n=!re(e)):n=!e.has(ue),n&&(e.add(ue),ue.deps.push(e))}function Ce(e,t,n,o,r,s){const i=ie.get(e);if(!i)return;let c=[];if("clear"===t)c=[...i.values()];else if("length"===n&&w(e))i.forEach(((e,t)=>{("length"===t||t>=o)&&c.push(e)}));else switch(void 0!==n&&c.push(i.get(n)),t){case"add":w(e)?B(n)&&c.push(i.get("length")):(c.push(i.get(pe)),O(e)&&c.push(i.get(fe)));break;case"delete":w(e)||(c.push(i.get(pe)),O(e)&&c.push(i.get(fe)));break;case"set":O(e)&&c.push(i.get(pe))}if(1===c.length)c[0]&&xe(c[0]);else{const e=[];for(const t of c)t&&e.push(...t);xe(oe(e))}}function xe(e,t){for(const n of w(e)?e:[...e])(n!==ue||n.allowRecurse)&&(n.scheduler?n.scheduler():n.run())}const Ee=e("__proto__,__v_isRef,__isVue"),Te=new Set(Object.getOwnPropertyNames(Symbol).map((e=>Symbol[e])).filter(P)),Ne=Ie(),we=Ie(!1,!0),Oe=Ie(!0),ke=Ie(!0,!0),Ae=Re();function Re(){const e={};return["includes","indexOf","lastIndexOf"].forEach((t=>{e[t]=function(...e){const n=vt(this);for(let t=0,r=this.length;t<r;t++)_e(n,0,t+"");const o=n[t](...e);return-1===o||!1===o?n[t](...e.map(vt)):o}})),["push","pop","shift","unshift","splice"].forEach((t=>{e[t]=function(...e){ye();const n=vt(this)[t].apply(this,e);return ve(),n}})),e}function Ie(e=!1,t=!1){return function(n,o,r){if("__v_isReactive"===o)return!e;if("__v_isReadonly"===o)return e;if("__v_raw"===o&&r===(e?t?at:lt:t?ct:it).get(n))return n;const s=w(n);if(!e&&s&&N(Ae,o))return Reflect.get(Ae,o,r);const i=Reflect.get(n,o,r);if(P(o)?Te.has(o):Ee(o))return i;if(e||_e(n,0,o),t)return i;if(Et(i)){return!s||!B(o)?i.value:i}return M(i)?e?dt(i):pt(i):i}}function Pe(e=!1){return function(t,n,o,r){let s=t[n];if(!e&&!gt(o)&&(o=vt(o),s=vt(s),!w(t)&&Et(s)&&!Et(o)))return s.value=o,!0;const i=w(t)&&B(n)?Number(n)<t.length:N(t,n),c=Reflect.set(t,n,o,r);return t===vt(r)&&(i?q(o,s)&&Ce(t,"set",n,o):Ce(t,"add",n,o)),c}}const Me={get:Ne,set:Pe(),deleteProperty:function(e,t){const n=N(e,t),o=Reflect.deleteProperty(e,t);return o&&n&&Ce(e,"delete",t,void 0),o},has:function(e,t){const n=Reflect.has(e,t);return P(t)&&Te.has(t)||_e(e,0,t),n},ownKeys:function(e){return _e(e,0,w(e)?"length":pe),Reflect.ownKeys(e)}},$e={get:Oe,set:(e,t)=>!0,deleteProperty:(e,t)=>!0},Fe=x({},Me,{get:we,set:Pe(!0)}),Le=x({},$e,{get:ke}),Ve=e=>e,Be=e=>Reflect.getPrototypeOf(e);function De(e,t,n=!1,o=!1){const r=vt(e=e.__v_raw),s=vt(t);t!==s&&!n&&_e(r,0,t),!n&&_e(r,0,s);const{has:i}=Be(r),c=o?Ve:n?St:bt;return i.call(r,t)?c(e.get(t)):i.call(r,s)?c(e.get(s)):void(e!==r&&e.get(t))}function je(e,t=!1){const n=this.__v_raw,o=vt(n),r=vt(e);return e!==r&&!t&&_e(o,0,e),!t&&_e(o,0,r),e===r?n.has(e):n.has(e)||n.has(r)}function Ue(e,t=!1){return e=e.__v_raw,!t&&_e(vt(e),0,pe),Reflect.get(e,"size",e)}function He(e){e=vt(e);const t=vt(this);return Be(t).has.call(t,e)||(t.add(e),Ce(t,"add",e,e)),this}function We(e,t){t=vt(t);const n=vt(this),{has:o,get:r}=Be(n);let s=o.call(n,e);s||(e=vt(e),s=o.call(n,e));const i=r.call(n,e);return n.set(e,t),s?q(t,i)&&Ce(n,"set",e,t):Ce(n,"add",e,t),this}function Ke(e){const t=vt(this),{has:n,get:o}=Be(t);let r=n.call(t,e);r||(e=vt(e),r=n.call(t,e)),o&&o.call(t,e);const s=t.delete(e);return r&&Ce(t,"delete",e,void 0),s}function ze(){const e=vt(this),t=0!==e.size,n=e.clear();return t&&Ce(e,"clear",void 0,void 0),n}function Ge(e,t){return function(n,o){const r=this,s=r.__v_raw,i=vt(s),c=t?Ve:e?St:bt;return!e&&_e(i,0,pe),s.forEach(((e,t)=>n.call(o,c(e),c(t),r)))}}function qe(e,t,n){return function(...o){const r=this.__v_raw,s=vt(r),i=O(s),c="entries"===e||e===Symbol.iterator&&i,l="keys"===e&&i,a=r[e](...o),u=n?Ve:t?St:bt;return!t&&_e(s,0,l?fe:pe),{next(){const{value:e,done:t}=a.next();return t?{value:e,done:t}:{value:c?[u(e[0]),u(e[1])]:u(e),done:t}},[Symbol.iterator](){return this}}}}function Je(e){return function(...t){return"delete"!==e&&this}}function Ye(){const e={get(e){return De(this,e)},get size(){return Ue(this)},has:je,add:He,set:We,delete:Ke,clear:ze,forEach:Ge(!1,!1)},t={get(e){return De(this,e,!1,!0)},get size(){return Ue(this)},has:je,add:He,set:We,delete:Ke,clear:ze,forEach:Ge(!1,!0)},n={get(e){return De(this,e,!0)},get size(){return Ue(this,!0)},has(e){return je.call(this,e,!0)},add:Je("add"),set:Je("set"),delete:Je("delete"),clear:Je("clear"),forEach:Ge(!0,!1)},o={get(e){return De(this,e,!0,!0)},get size(){return Ue(this,!0)},has(e){return je.call(this,e,!0)},add:Je("add"),set:Je("set"),delete:Je("delete"),clear:Je("clear"),forEach:Ge(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach((r=>{e[r]=qe(r,!1,!1),n[r]=qe(r,!0,!1),t[r]=qe(r,!1,!0),o[r]=qe(r,!0,!0)})),[e,n,t,o]}const[Ze,Xe,Qe,et]=Ye();function tt(e,t){const n=t?e?et:Qe:e?Xe:Ze;return(t,o,r)=>"__v_isReactive"===o?!e:"__v_isReadonly"===o?e:"__v_raw"===o?t:Reflect.get(N(n,o)&&o in t?n:t,o,r)}const nt={get:tt(!1,!1)},ot={get:tt(!1,!0)},rt={get:tt(!0,!1)},st={get:tt(!0,!0)},it=new WeakMap,ct=new WeakMap,lt=new WeakMap,at=new WeakMap;function ut(e){return e.__v_skip||!Object.isExtensible(e)?0:function(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}((e=>L(e).slice(8,-1))(e))}function pt(e){return e&&e.__v_isReadonly?e:ht(e,!1,Me,nt,it)}function ft(e){return ht(e,!1,Fe,ot,ct)}function dt(e){return ht(e,!0,$e,rt,lt)}function ht(e,t,n,o,r){if(!M(e))return e;if(e.__v_raw&&(!t||!e.__v_isReactive))return e;const s=r.get(e);if(s)return s;const i=ut(e);if(0===i)return e;const c=new Proxy(e,2===i?o:n);return r.set(e,c),c}function mt(e){return gt(e)?mt(e.__v_raw):!(!e||!e.__v_isReactive)}function gt(e){return!(!e||!e.__v_isReadonly)}function yt(e){return mt(e)||gt(e)}function vt(e){const t=e&&e.__v_raw;return t?vt(t):e}function _t(e){return Y(e,"__v_skip",!0),e}const bt=e=>M(e)?pt(e):e,St=e=>M(e)?dt(e):e;function Ct(e){be()&&((e=vt(e)).dep||(e.dep=oe()),Se(e.dep))}function xt(e,t){(e=vt(e)).dep&&xe(e.dep)}function Et(e){return Boolean(e&&!0===e.__v_isRef)}function Tt(e){return Nt(e,!1)}function Nt(e,t){return Et(e)?e:new wt(e,t)}class wt{constructor(e,t){this._shallow=t,this.dep=void 0,this.__v_isRef=!0,this._rawValue=t?e:vt(e),this._value=t?e:bt(e)}get value(){return Ct(this),this._value}set value(e){e=this._shallow?e:vt(e),q(e,this._rawValue)&&(this._rawValue=e,this._value=this._shallow?e:bt(e),xt(this))}}function Ot(e){return Et(e)?e.value:e}const kt={get:(e,t,n)=>Ot(Reflect.get(e,t,n)),set:(e,t,n,o)=>{const r=e[t];return Et(r)&&!Et(n)?(r.value=n,!0):Reflect.set(e,t,n,o)}};function At(e){return mt(e)?e:new Proxy(e,kt)}class Rt{constructor(e){this.dep=void 0,this.__v_isRef=!0;const{get:t,set:n}=e((()=>Ct(this)),(()=>xt(this)));this._get=t,this._set=n}get value(){return this._get()}set value(e){this._set(e)}}class It{constructor(e,t){this._object=e,this._key=t,this.__v_isRef=!0}get value(){return this._object[this._key]}set value(e){this._object[this._key]=e}}function Pt(e,t){const n=e[t];return Et(n)?n:new It(e,t)}class Mt{constructor(e,t,n){this._setter=t,this.dep=void 0,this._dirty=!0,this.__v_isRef=!0,this.effect=new de(e,(()=>{this._dirty||(this._dirty=!0,xt(this))})),this.__v_isReadonly=n}get value(){const e=vt(this);return Ct(e),e._dirty&&(e._dirty=!1,e._value=e.effect.run()),e._value}set value(e){this._setter(e)}}function $t(e,t){let n,o;const r=R(e);r?(n=e,o=v):(n=e.get,o=e.set);return new Mt(n,o,r||!o)}let Ft,Lt=[];const Vt={MODE:2};function Bt(e){x(Vt,e)}function Dt(e,t){const n=t&&t.type.compatConfig;return n&&e in n?n[e]:Vt[e]}function jt(e,t,n=!1){if(!n&&t&&t.type.__isBuiltIn)return!1;const o=Dt("MODE",t)||2,r=Dt(e,t);return 2===(R(o)?o(t&&t.type):o)?!1!==r:!0===r||"suppress-warning"===r}function Ut(e,t,...n){if(!jt(e,t))throw new Error(`${e} compat has been disabled.`)}function Ht(e,t,...n){return jt(e,t)}function Wt(e,t,...n){return jt(e,t)}const Kt=new WeakMap;function zt(e){let t=Kt.get(e);return t||Kt.set(e,t=Object.create(null)),t}function Gt(e,t,n){if(w(t))t.forEach((t=>Gt(e,t,n)));else{t.startsWith("hook:")?Ut("INSTANCE_EVENT_HOOKS",e):Ut("INSTANCE_EVENT_EMITTER",e);const o=zt(e);(o[t]||(o[t]=[])).push(n)}return e.proxy}function qt(e,t,n){const o=(...r)=>{Jt(e,t,o),n.call(e.proxy,...r)};return o.fn=n,Gt(e,t,o),e.proxy}function Jt(e,t,n){Ut("INSTANCE_EVENT_EMITTER",e);const o=e.proxy;if(!t)return Kt.set(e,Object.create(null)),o;if(w(t))return t.forEach((t=>Jt(e,t,n))),o;const r=zt(e),s=r[t];return s?n?(r[t]=s.filter((e=>!(e===n||e.fn===n))),o):(r[t]=void 0,o):o}const Yt="onModelCompat:";function Zt(e,t,...n){const o=e.vnode.props||g;let r=n;const s=t.startsWith("update:"),i=s&&t.slice(7);if(i&&i in o){const e=`${"modelValue"===i?"model":i}Modifiers`,{number:t,trim:s}=o[e]||g;s?r=n.map((e=>e.trim())):t&&(r=n.map(Z))}let c,l=o[c=G(t)]||o[c=G(H(t))];!l&&s&&(l=o[c=G(K(t))]),l&&Hs(l,e,6,r);const a=o[c+"Once"];if(a){if(e.emitted){if(e.emitted[c])return}else e.emitted={};e.emitted[c]=!0,Hs(a,e,6,r)}return function(e,t,n){if(!jt("COMPONENT_V_MODEL",e))return;const o=e.vnode.props,r=o&&o[Yt+t];r&&Us(r,e,6,n)}(e,t,r),function(e,t,n){const o=zt(e)[t];return o&&Hs(o.map((t=>t.bind(e.proxy))),e,6,n),e.proxy}(e,t,r)}function Xt(e,t,n=!1){const o=t.emitsCache,r=o.get(e);if(void 0!==r)return r;const s=e.emits;let i={},c=!1;if(!R(e)){const o=e=>{const n=Xt(e,t,!0);n&&(c=!0,x(i,n))};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}return s||c?(w(s)?s.forEach((e=>i[e]=null)):x(i,s),o.set(e,i),i):(o.set(e,null),null)}function Qt(e,t){return!(!e||!S(t))&&(!!t.startsWith(Yt)||(t=t.slice(2).replace(/Once$/,""),N(e,t[0].toLowerCase()+t.slice(1))||N(e,K(t))||N(e,t)))}let en=null,tn=null;function nn(e){const t=en;return en=e,tn=e&&e.type.__scopeId||null,tn||(tn=e&&e.type._scopeId||null),t}function on(e,t=en,n){if(!t)return e;if(e._n)return e;const o=(...n)=>{o._d&&Rr(-1);const r=nn(t),s=e(...n);return nn(r),o._d&&Rr(1),s};return o._n=!0,o._c=!0,o._d=!0,n&&(o._ns=!0),o}function rn(e){const{type:t,vnode:n,proxy:o,withProxy:r,props:s,propsOptions:[i],slots:c,attrs:l,emit:a,render:u,renderCache:p,data:f,setupState:d,ctx:h,inheritAttrs:m}=e;let g,y;const v=nn(e);try{if(4&n.shapeFlag){const e=r||o;g=Kr(u.call(e,e,p,s,d,f,h)),y=l}else{const e=t;0,g=Kr(e(s,e.length>1?{attrs:l,slots:c,emit:a}:null)),y=t.props?l:sn(l)}}catch(b){Nr.length=0,Ws(b,e,1),g=Dr(Er)}let _=g;if(y&&!1!==m){const e=Object.keys(y),{shapeFlag:t}=_;e.length&&7&t&&(i&&e.some(C)&&(y=cn(y,i)),_=Ur(_,y))}if(jt("INSTANCE_ATTRS_CLASS_STYLE",e)&&4&n.shapeFlag&&7&_.shapeFlag){const{class:e,style:t}=n.props||{};(e||t)&&(_=Ur(_,{class:e,style:t}))}return n.dirs&&(_.dirs=_.dirs?_.dirs.concat(n.dirs):n.dirs),n.transition&&(_.transition=n.transition),g=_,nn(v),g}const sn=e=>{let t;for(const n in e)("class"===n||"style"===n||S(n))&&((t||(t={}))[n]=e[n]);return t},cn=(e,t)=>{const n={};for(const o in e)C(o)&&o.slice(9)in t||(n[o]=e[o]);return n};function ln(e,t,n){const o=Object.keys(t);if(o.length!==Object.keys(e).length)return!0;for(let r=0;r<o.length;r++){const s=o[r];if(t[s]!==e[s]&&!Qt(n,s))return!0}return!1}function an({vnode:e,parent:t},n){for(;t&&t.subTree===e;)(e=t.vnode).el=n,t=t.parent}const un={name:"Suspense",__isSuspense:!0,process(e,t,n,o,r,s,i,c,l,a){null==e?function(e,t,n,o,r,s,i,c,l){const{p:a,o:{createElement:u}}=l,p=u("div"),f=e.suspense=fn(e,r,o,t,p,n,s,i,c,l);a(null,f.pendingBranch=e.ssContent,p,null,o,f,s,i),f.deps>0?(pn(e,"onPending"),pn(e,"onFallback"),a(null,e.ssFallback,t,n,o,null,s,i),mn(f,e.ssFallback)):f.resolve()}(t,n,o,r,s,i,c,l,a):function(e,t,n,o,r,s,i,c,{p:l,um:a,o:{createElement:u}}){const p=t.suspense=e.suspense;p.vnode=t,t.el=e.el;const f=t.ssContent,d=t.ssFallback,{activeBranch:h,pendingBranch:m,isInFallback:g,isHydrating:y}=p;if(m)p.pendingBranch=f,$r(f,m)?(l(m,f,p.hiddenContainer,null,r,p,s,i,c),p.deps<=0?p.resolve():g&&(l(h,d,n,o,r,null,s,i,c),mn(p,d))):(p.pendingId++,y?(p.isHydrating=!1,p.activeBranch=m):a(m,r,p),p.deps=0,p.effects.length=0,p.hiddenContainer=u("div"),g?(l(null,f,p.hiddenContainer,null,r,p,s,i,c),p.deps<=0?p.resolve():(l(h,d,n,o,r,null,s,i,c),mn(p,d))):h&&$r(f,h)?(l(h,f,n,o,r,p,s,i,c),p.resolve(!0)):(l(null,f,p.hiddenContainer,null,r,p,s,i,c),p.deps<=0&&p.resolve()));else if(h&&$r(f,h))l(h,f,n,o,r,p,s,i,c),mn(p,f);else if(pn(t,"onPending"),p.pendingBranch=f,p.pendingId++,l(null,f,p.hiddenContainer,null,r,p,s,i,c),p.deps<=0)p.resolve();else{const{timeout:e,pendingId:t}=p;e>0?setTimeout((()=>{p.pendingId===t&&p.fallback(d)}),e):0===e&&p.fallback(d)}}(e,t,n,o,r,i,c,l,a)},hydrate:function(e,t,n,o,r,s,i,c,l){const a=t.suspense=fn(t,o,n,e.parentNode,document.createElement("div"),null,r,s,i,c,!0),u=l(e,a.pendingBranch=t.ssContent,n,a,s,i);0===a.deps&&a.resolve();return u},create:fn,normalize:function(e){const{shapeFlag:t,children:n}=e,o=32&t;e.ssContent=dn(o?n.default:n),e.ssFallback=o?dn(n.fallback):Dr(Er)}};function pn(e,t){const n=e.props&&e.props[t];R(n)&&n()}function fn(e,t,n,o,r,s,i,c,l,a,u=!1){const{p:p,m:f,um:d,n:h,o:{parentNode:m,remove:g}}=a,y=Z(e.props&&e.props.timeout),v={vnode:e,parent:t,parentComponent:n,isSVG:i,container:o,hiddenContainer:r,anchor:s,deps:0,pendingId:0,timeout:"number"==typeof y?y:-1,activeBranch:null,pendingBranch:null,isInFallback:!0,isHydrating:u,isUnmounted:!1,effects:[],resolve(e=!1){const{vnode:t,activeBranch:n,pendingBranch:o,pendingId:r,effects:s,parentComponent:i,container:c}=v;if(v.isHydrating)v.isHydrating=!1;else if(!e){const e=n&&o.transition&&"out-in"===o.transition.mode;e&&(n.transition.afterLeave=()=>{r===v.pendingId&&f(o,c,t,0)});let{anchor:t}=v;n&&(t=h(n),d(n,i,v,!0)),e||f(o,c,t,0)}mn(v,o),v.pendingBranch=null,v.isInFallback=!1;let l=v.parent,a=!1;for(;l;){if(l.pendingBranch){l.effects.push(...s),a=!0;break}l=l.parent}a||li(s),v.effects=[],pn(t,"onResolve")},fallback(e){if(!v.pendingBranch)return;const{vnode:t,activeBranch:n,parentComponent:o,container:r,isSVG:s}=v;pn(t,"onFallback");const i=h(n),a=()=>{v.isInFallback&&(p(null,e,r,i,o,null,s,c,l),mn(v,e))},u=e.transition&&"out-in"===e.transition.mode;u&&(n.transition.afterLeave=a),v.isInFallback=!0,d(n,o,null,!0),u||a()},move(e,t,n){v.activeBranch&&f(v.activeBranch,e,t,n),v.container=e},next:()=>v.activeBranch&&h(v.activeBranch),registerDep(e,t){const n=!!v.pendingBranch;n&&v.deps++;const o=e.vnode.el;e.asyncDep.catch((t=>{Ws(t,e,0)})).then((r=>{if(e.isUnmounted||v.isUnmounted||v.pendingId!==e.suspenseId)return;e.asyncResolved=!0;const{vnode:s}=e;As(e,r,!1),o&&(s.el=o);const c=!o&&e.subTree.el;t(e,s,m(o||e.subTree.el),o?null:h(e.subTree),v,i,l),c&&g(c),an(e,s.el),n&&0==--v.deps&&v.resolve()}))},unmount(e,t){v.isUnmounted=!0,v.activeBranch&&d(v.activeBranch,n,e,t),v.pendingBranch&&d(v.pendingBranch,n,e,t)}};return v}function dn(e){let t;if(R(e)){const n=Ar&&e._c;n&&(e._d=!1,Or()),e=e(),n&&(e._d=!0,t=wr,kr())}if(w(e)){const t=function(e){let t;for(let n=0;n<e.length;n++){const o=e[n];if(!Mr(o))return;if(o.type!==Er||"v-if"===o.children){if(t)return;t=o}}return t}(e);e=t}return e=Kr(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter((t=>t!==e))),e}function hn(e,t){t&&t.pendingBranch?w(e)?t.effects.push(...e):t.effects.push(e):li(e)}function mn(e,t){e.activeBranch=t;const{vnode:n,parentComponent:o}=e,r=n.el=t.el;o&&o.subTree===n&&(o.vnode.el=r,an(o,r))}function gn(e,t){if(Ss){let n=Ss.provides;const o=Ss.parent&&Ss.parent.provides;o===n&&(n=Ss.provides=Object.create(o)),n[e]=t}else;}function yn(e,t,n=!1){const o=Ss||en;if(o){const r=null==o.parent?o.vnode.appContext&&o.vnode.appContext.provides:o.parent.provides;if(r&&e in r)return r[e];if(arguments.length>1)return n&&R(t)?t.call(o.proxy):t}}function vn(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return Kn((()=>{e.isMounted=!0})),qn((()=>{e.isUnmounting=!0})),e}const _n=[Function,Array],bn={name:"BaseTransition",props:{mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:_n,onEnter:_n,onAfterEnter:_n,onEnterCancelled:_n,onBeforeLeave:_n,onLeave:_n,onAfterLeave:_n,onLeaveCancelled:_n,onBeforeAppear:_n,onAppear:_n,onAfterAppear:_n,onAppearCancelled:_n},setup(e,{slots:t}){const n=Cs(),o=vn();let r;return()=>{const s=t.default&&wn(t.default(),!0);if(!s||!s.length)return;const i=vt(e),{mode:c}=i,l=s[0];if(o.isLeaving)return En(l);const a=Tn(l);if(!a)return En(l);const u=xn(a,i,o,n);Nn(a,u);const p=n.subTree,f=p&&Tn(p);let d=!1;const{getTransitionKey:h}=a.type;if(h){const e=h();void 0===r?r=e:e!==r&&(r=e,d=!0)}if(f&&f.type!==Er&&(!$r(a,f)||d)){const e=xn(f,i,o,n);if(Nn(f,e),"out-in"===c)return o.isLeaving=!0,e.afterLeave=()=>{o.isLeaving=!1,n.update()},En(l);"in-out"===c&&a.type!==Er&&(e.delayLeave=(e,t,n)=>{Cn(o,f)[String(f.key)]=f,e._leaveCb=()=>{t(),e._leaveCb=void 0,delete u.delayedLeave},u.delayedLeave=n})}return l}},__isBuiltIn:!0},Sn=bn;function Cn(e,t){const{leavingVNodes:n}=e;let o=n.get(t.type);return o||(o=Object.create(null),n.set(t.type,o)),o}function xn(e,t,n,o){const{appear:r,mode:s,persisted:i=!1,onBeforeEnter:c,onEnter:l,onAfterEnter:a,onEnterCancelled:u,onBeforeLeave:p,onLeave:f,onAfterLeave:d,onLeaveCancelled:h,onBeforeAppear:m,onAppear:g,onAfterAppear:y,onAppearCancelled:v}=t,_=String(e.key),b=Cn(n,e),S=(e,t)=>{e&&Hs(e,o,9,t)},C={mode:s,persisted:i,beforeEnter(t){let o=c;if(!n.isMounted){if(!r)return;o=m||c}t._leaveCb&&t._leaveCb(!0);const s=b[_];s&&$r(e,s)&&s.el._leaveCb&&s.el._leaveCb(),S(o,[t])},enter(e){let t=l,o=a,s=u;if(!n.isMounted){if(!r)return;t=g||l,o=y||a,s=v||u}let i=!1;const c=e._enterCb=t=>{i||(i=!0,S(t?s:o,[e]),C.delayedLeave&&C.delayedLeave(),e._enterCb=void 0)};t?(t(e,c),t.length<=1&&c()):c()},leave(t,o){const r=String(e.key);if(t._enterCb&&t._enterCb(!0),n.isUnmounting)return o();S(p,[t]);let s=!1;const i=t._leaveCb=n=>{s||(s=!0,o(),S(n?h:d,[t]),t._leaveCb=void 0,b[r]===e&&delete b[r])};b[r]=e,f?(f(t,i),f.length<=1&&i()):i()},clone:e=>xn(e,t,n,o)};return C}function En(e){if(In(e))return(e=Ur(e)).children=null,e}function Tn(e){return In(e)?e.children?e.children[0]:void 0:e}function Nn(e,t){6&e.shapeFlag&&e.component?Nn(e.component.subTree,t):128&e.shapeFlag?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function wn(e,t=!1){let n=[],o=0;for(let r=0;r<e.length;r++){const s=e[r];s.type===Cr?(128&s.patchFlag&&o++,n=n.concat(wn(s.children,t))):(t||s.type!==Er)&&n.push(s)}if(o>1)for(let r=0;r<n.length;r++)n[r].patchFlag=-2;return n}function On(e){return R(e)?{setup:e,name:e.name}:e}const kn=e=>!!e.type.__asyncLoader;function An(e){R(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:o,delay:r=200,timeout:s,suspensible:i=!0,onError:c}=e;let l,a=null,u=0;const p=()=>{let e;return a||(e=a=t().catch((e=>{if(e=e instanceof Error?e:new Error(String(e)),c)return new Promise(((t,n)=>{c(e,(()=>t((u++,a=null,p()))),(()=>n(e)),u+1)}));throw e})).then((t=>e!==a&&a?a:(t&&(t.__esModule||"Module"===t[Symbol.toStringTag])&&(t=t.default),l=t,t))))};return On({name:"AsyncComponentWrapper",__asyncLoader:p,get __asyncResolved(){return l},setup(){const e=Ss;if(l)return()=>Rn(l,e);const t=t=>{a=null,Ws(t,e,13,!o)};if(i&&e.suspense)return p().then((t=>()=>Rn(t,e))).catch((e=>(t(e),()=>o?Dr(o,{error:e}):null)));const c=Tt(!1),u=Tt(),f=Tt(!!r);return r&&setTimeout((()=>{f.value=!1}),r),null!=s&&setTimeout((()=>{if(!c.value&&!u.value){const e=new Error(`Async component timed out after ${s}ms.`);t(e),u.value=e}}),s),p().then((()=>{c.value=!0,e.parent&&In(e.parent.vnode)&&si(e.parent.update)})).catch((e=>{t(e),u.value=e})),()=>c.value&&l?Rn(l,e):u.value&&o?Dr(o,{error:u.value}):n&&!f.value?Dr(n):void 0}})}function Rn(e,{vnode:{ref:t,props:n,children:o}}){const r=Dr(e,n,o);return r.ref=t,r}const In=e=>e.type.__isKeepAlive,Pn={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=Cs(),o=n.ctx;if(!o.renderer)return t.default;const r=new Map,s=new Set;let i=null;const c=n.suspense,{renderer:{p:l,m:a,um:u,o:{createElement:p}}}=o,f=p("div");function d(e){Dn(e),u(e,n,c)}function h(e){r.forEach(((t,n)=>{const o=Ls(t.type);!o||e&&e(o)||m(n)}))}function m(e){const t=r.get(e);i&&t.type===i.type?i&&Dn(i):d(t),r.delete(e),s.delete(e)}o.activate=(e,t,n,o,r)=>{const s=e.component;a(e,t,n,0,c),l(s.vnode,e,t,n,s,c,o,e.slotScopeIds,r),Ko((()=>{s.isDeactivated=!1,s.a&&J(s.a);const t=e.props&&e.props.onVnodeMounted;t&&Yo(t,s.parent,e)}),c)},o.deactivate=e=>{const t=e.component;a(e,f,null,1,c),Ko((()=>{t.da&&J(t.da);const n=e.props&&e.props.onVnodeUnmounted;n&&Yo(n,t.parent,e),t.isDeactivated=!0}),c)},mi((()=>[e.include,e.exclude]),(([e,t])=>{e&&h((t=>$n(e,t))),t&&h((e=>!$n(t,e)))}),{flush:"post",deep:!0});let g=null;const y=()=>{null!=g&&r.set(g,jn(n.subTree))};return Kn(y),Gn(y),qn((()=>{r.forEach((e=>{const{subTree:t,suspense:o}=n,r=jn(t);if(e.type!==r.type)d(e);else{Dn(r);const e=r.component.da;e&&Ko(e,o)}}))})),()=>{if(g=null,!t.default)return null;const n=t.default(),o=n[0];if(n.length>1)return i=null,n;if(!(Mr(o)&&(4&o.shapeFlag||128&o.shapeFlag)))return i=null,o;let c=jn(o);const l=c.type,a=Ls(kn(c)?c.type.__asyncResolved||{}:l),{include:u,exclude:p,max:f}=e;if(u&&(!a||!$n(u,a))||p&&a&&$n(p,a))return i=c,o;const d=null==c.key?l:c.key,h=r.get(d);return c.el&&(c=Ur(c),128&o.shapeFlag&&(o.ssContent=c)),g=d,h?(c.el=h.el,c.component=h.component,c.transition&&Nn(c,c.transition),c.shapeFlag|=512,s.delete(d),s.add(d)):(s.add(d),f&&s.size>parseInt(f,10)&&m(s.values().next().value)),c.shapeFlag|=256,i=c,o}},__isBuildIn:!0},Mn=Pn;function $n(e,t){return w(e)?e.some((e=>$n(e,t))):I(e)?e.split(",").indexOf(t)>-1:!!e.test&&e.test(t)}function Fn(e,t){Vn(e,"a",t)}function Ln(e,t){Vn(e,"da",t)}function Vn(e,t,n=Ss){const o=e.__wdc||(e.__wdc=()=>{let t=n;for(;t;){if(t.isDeactivated)return;t=t.parent}return e()});if(Un(t,o,n),n){let e=n.parent;for(;e&&e.parent;)In(e.parent.vnode)&&Bn(o,t,n,e),e=e.parent}}function Bn(e,t,n,o){const r=Un(t,e,o,!0);Jn((()=>{E(o[t],r)}),n)}function Dn(e){let t=e.shapeFlag;256&t&&(t-=256),512&t&&(t-=512),e.shapeFlag=t}function jn(e){return 128&e.shapeFlag?e.ssContent:e}function Un(e,t,n=Ss,o=!1){if(n){const r=n[e]||(n[e]=[]),s=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;ye(),xs(n);const r=Hs(t,n,e,o);return Es(),ve(),r});return o?r.unshift(s):r.push(s),s}}const Hn=e=>(t,n=Ss)=>(!Os||"sp"===e)&&Un(e,t,n),Wn=Hn("bm"),Kn=Hn("m"),zn=Hn("bu"),Gn=Hn("u"),qn=Hn("bum"),Jn=Hn("um"),Yn=Hn("sp"),Zn=Hn("rtg"),Xn=Hn("rtc");function Qn(e,t=Ss){Un("ec",e,t)}function eo(e,t){for(const n in t){const o=e[n],r=t[n];n in e&&V(o)&&V(r)?eo(o,r):e[n]=r}return e}let to=!0;function no(e,t,n=v,o=!1){w(e)&&(e=ao(e));for(const r in e){const n=e[r];let s;s=M(n)?"default"in n?yn(n.from||r,n.default,!0):yn(n.from||r):yn(n),Et(s)&&o?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>s.value,set:e=>s.value=e}):t[r]=s}}function oo(e,t,n){Hs(w(e)?e.map((e=>e.bind(t.proxy))):e.bind(t.proxy),t,n)}function ro(e,t,n,o){const r=o.includes(".")?vi(n,o):()=>n[o];if(I(e)){const n=t[e];R(n)&&mi(r,n)}else if(R(e))mi(r,e.bind(n));else if(M(e))if(w(e))e.forEach((e=>ro(e,t,n,o)));else{const o=R(e.handler)?e.handler.bind(n):t[e.handler];R(o)&&mi(r,o,e)}}function so(e){const t=e.type,{mixins:n,extends:o}=t,{mixins:r,optionsCache:s,config:{optionMergeStrategies:i}}=e.appContext,c=s.get(t);let l;return c?l=c:r.length||n||o?(l={},r.length&&r.forEach((e=>io(l,e,i,!0))),io(l,t,i)):jt("PRIVATE_APIS",e)?(l=x({},t),l.parent=e.parent&&e.parent.proxy,l.propsData=e.vnode.props):l=t,s.set(t,l),l}function io(e,t,n,o=!1){R(t)&&(t=t.options);const{mixins:r,extends:s}=t;s&&io(e,s,n,!0),r&&r.forEach((t=>io(e,t,n,!0)));for(const i in t)if(o&&"expose"===i);else{const o=co[i]||n&&n[i];e[i]=o?o(e[i],t[i]):t[i]}return e}const co={data:lo,props:po,emits:po,methods:po,computed:po,beforeCreate:uo,created:uo,beforeMount:uo,mounted:uo,beforeUpdate:uo,updated:uo,beforeDestroy:uo,beforeUnmount:uo,destroyed:uo,unmounted:uo,activated:uo,deactivated:uo,errorCaptured:uo,serverPrefetch:uo,components:po,directives:po,watch:function(e,t){if(!e)return t;if(!t)return e;const n=x(Object.create(null),e);for(const o in t)n[o]=uo(e[o],t[o]);return n},provide:lo,inject:function(e,t){return po(ao(e),ao(t))}};function lo(e,t){return t?e?function(){return(jt("OPTIONS_DATA_MERGE",null)?eo:x)(R(e)?e.call(this,this):e,R(t)?t.call(this,this):t)}:t:e}function ao(e){if(w(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function uo(e,t){return e?[...new Set([].concat(e,t))]:t}function po(e,t){return e?x(x(Object.create(null),e),t):t}function fo(e,t){return"is"===e||(!("class"!==e&&"style"!==e||!jt("INSTANCE_ATTRS_CLASS_STYLE",t))||(!(!S(e)||!jt("INSTANCE_LISTENERS",t))||!(!e.startsWith("routerView")&&"registerRouteInstance"!==e)))}function ho(e,t,n,o){const[r,s]=e.propsOptions;let i,c=!1;if(t)for(let l in t){if(D(l))continue;if(l.startsWith("onHook:")&&Ht("INSTANCE_EVENT_HOOKS",e,l.slice(2).toLowerCase()),"inline-template"===l)continue;const a=t[l];let u;if(r&&N(r,u=H(l)))s&&s.includes(u)?(i||(i={}))[u]=a:n[u]=a;else if(!Qt(e.emitsOptions,l)){if(S(l)&&l.endsWith("Native"))l=l.slice(0,-6);else if(fo(l,e))continue;a!==o[l]&&(o[l]=a,c=!0)}}if(s){const t=vt(n),o=i||g;for(let i=0;i<s.length;i++){const c=s[i];n[c]=mo(r,t,c,o[c],e,!N(o,c))}}return c}function mo(e,t,n,o,r,s){const i=e[n];if(null!=i){const e=N(i,"default");if(e&&void 0===o){const e=i.default;if(i.type!==Function&&R(e)){const{propsDefaults:s}=r;n in s?o=s[n]:(xs(r),o=s[n]=e.call(jt("PROPS_DEFAULT_THIS",r)?function(e,t,n){return new Proxy({},{get(n,o){if("$options"===o)return so(e);if(o in t)return t[o];const r=e.type.inject;if(r)if(w(r)){if(r.includes(o))return yn(o)}else if(o in r)return yn(o)}})}(r,t):null,t),Es())}else o=e}i[0]&&(s&&!e?o=!1:!i[1]||""!==o&&o!==K(n)||(o=!0))}return o}function go(e,t,n=!1){const o=t.propsCache,r=o.get(e);if(r)return r;const s=e.props,i={},c=[];let l=!1;if(!R(e)){const o=e=>{R(e)&&(e=e.options),l=!0;const[n,o]=go(e,t,!0);x(i,n),o&&c.push(...o)};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}if(!s&&!l)return o.set(e,y),y;if(w(s))for(let u=0;u<s.length;u++){const e=H(s[u]);yo(e)&&(i[e]=g)}else if(s)for(const u in s){const e=H(u);if(yo(e)){const t=s[u],n=i[e]=w(t)||R(t)?{type:t}:t;if(n){const t=bo(Boolean,n.type),o=bo(String,n.type);n[0]=t>-1,n[1]=o<0||t<o,(t>-1||N(n,"default"))&&c.push(e)}}}const a=[i,c];return o.set(e,a),a}function yo(e){return"$"!==e[0]}function vo(e){const t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:null===e?"null":""}function _o(e,t){return vo(e)===vo(t)}function bo(e,t){return w(t)?t.findIndex((t=>_o(t,e))):R(t)&&_o(t,e)?0:-1}co.filters=po;const So=e=>"_"===e[0]||"$stable"===e,Co=e=>w(e)?e.map(Kr):[Kr(e)],xo=(e,t,n)=>{const o=on(((...e)=>Co(t(...e))),n);return o._c=!1,o},Eo=(e,t,n)=>{const o=e._ctx;for(const r in e){if(So(r))continue;const n=e[r];if(R(n))t[r]=xo(0,n,o);else if(null!=n){const e=Co(n);t[r]=()=>e}}},To=(e,t)=>{const n=Co(t);e.slots.default=()=>n},No={beforeMount:"bind",mounted:"inserted",updated:["update","componentUpdated"],unmounted:"unbind"};function wo(e,t,n){const o=No[e];if(o){if(w(o)){const e=[];return o.forEach((o=>{const r=t[o];r&&(Ht("CUSTOM_DIR",n),e.push(r))})),e.length?e:void 0}return t[o]&&Ht("CUSTOM_DIR",n),t[o]}}function Oo(e,t){if(null===en)return e;const n=en.proxy,o=e.dirs||(e.dirs=[]);for(let r=0;r<t.length;r++){let[e,s,i,c=g]=t[r];R(e)&&(e={mounted:e,updated:e}),e.deep&&_i(s),o.push({dir:e,instance:n,value:s,oldValue:void 0,arg:i,modifiers:c})}return e}function ko(e,t,n,o){const r=e.dirs,s=t&&t.dirs;for(let i=0;i<r.length;i++){const c=r[i];s&&(c.oldValue=s[i].value);let l=c.dir[o];l||(l=wo(o,c.dir,n)),l&&(ye(),Hs(l,n,8,[e.el,c,e,t]),ve())}}let Ao,Ro;function Io(e,t,n){!function(e,t){t.filters={},e.filter=(n,o)=>(Ut("FILTERS",null),o?(t.filters[n]=o,e):t.filters[n])}(e,t),e.config.optionMergeStrategies=new Proxy({},{get:(e,t)=>t in e?e[t]:t in co&&Ht("CONFIG_OPTION_MERGE_STRATS",null)?co[t]:void 0}),Ao&&(function(e,t,n){let o=!1;e._createRoot=r=>{const s=e._component,i=Dr(s,r.propsData||null);i.appContext=t;const c=!R(s)&&!s.render&&!s.template,l=()=>{},a=bs(i,null,null);return c&&(a.render=l),ks(a),i.component=a,i.isCompatRoot=!0,a.ctx._compat_mount=t=>{if(o)return;let r;if("string"==typeof t){const e=document.querySelector(t);if(!e)return;r=e}else r=t||document.createElement("div");const u=r instanceof SVGElement;return c&&a.render===l&&(a.render=null,s.template=r.innerHTML,Ps(a,!1,!0)),r.innerHTML="",n(i,r,u),r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),o=!0,e._container=r,r.__vue_app__=e,a.proxy},a.ctx._compat_destroy=()=>{if(o)n(null,e._container),delete e._container.__vue_app__;else{const{bum:e,scope:t,um:n}=a;e&&J(e),jt("INSTANCE_EVENT_HOOKS",a)&&a.emit("hook:beforeDestroy"),t&&t.stop(),n&&J(n),jt("INSTANCE_EVENT_HOOKS",a)&&a.emit("hook:destroyed")}},a.proxy}}(e,t,n),function(e){Object.defineProperties(e,{prototype:{get:()=>e.config.globalProperties},nextTick:{value:ri},extend:{value:Ro.extend},set:{value:Ro.set},delete:{value:Ro.delete},observable:{value:Ro.observable},util:{get:()=>Ro.util}})}(e),function(e){["mixins","components","directives","filters","deopt"].forEach((t=>{e._context[t]=Ao._context[t]}));for(const t in Ao.config){if("isNativeTag"===t)continue;if(Is()&&("isCustomElement"===t||"compilerOptions"===t))continue;const n=Ao.config[t];e.config[t]=n,"ignoredElements"===t&&jt("CONFIG_IGNORED_ELEMENTS",null)&&!Is()&&w(n)&&(e.config.compilerOptions.isCustomElement=e=>n.some((t=>I(t)?t===e:t.test(e))))}Po(e,Ro)}(e))}function Po(e,t){const n=jt("GLOBAL_PROTOTYPE",null);n&&(e.config.globalProperties=Object.create(t.prototype));const o=Object.getOwnPropertyDescriptors(t.prototype);for(const r in o)"constructor"!==r&&n&&Object.defineProperty(e.config.globalProperties,r,o[r])}const Mo=["push","pop","shift","unshift","splice","sort","reverse"],$o=new WeakSet;function Fo(e,t,n){if(M(n)&&!mt(n)&&!$o.has(n)){const e=pt(n);w(n)?Mo.forEach((t=>{n[t]=(...n)=>{Array.prototype[t].call(e,...n)}})):Object.keys(n).forEach((e=>{try{Lo(n,e,n[e])}catch(t){}}))}const o=e.$;o&&e===o.proxy?(Lo(o.ctx,t,n),o.accessCache=Object.create(null)):mt(e)?e[t]=n:Lo(e,t,n)}function Lo(e,t,n){n=M(n)?pt(n):n,Object.defineProperty(e,t,{enumerable:!0,configurable:!0,get:()=>(_e(e,0,t),n),set(o){n=M(o)?pt(o):o,Ce(e,"set",t,o)}})}function Vo(){return{app:null,config:{isNativeTag:_,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 Bo=0;function Do(e,t){return function(n,o=null){null==o||M(o)||(o=null);const r=Vo(),s=new Set;let i=!1;const c=r.app={_uid:Bo++,_component:n,_props:o,_container:null,_context:r,_instance:null,version:Ei,get config(){return r.config},set config(e){},use:(e,...t)=>(s.has(e)||(e&&R(e.install)?(s.add(e),e.install(c,...t)):R(e)&&(s.add(e),e(c,...t))),c),mixin:e=>(r.mixins.includes(e)||r.mixins.push(e),c),component:(e,t)=>t?(r.components[e]=t,c):r.components[e],directive:(e,t)=>t?(r.directives[e]=t,c):r.directives[e],mount(s,l,a){if(!i){const u=Dr(n,o);return u.appContext=r,l&&t?t(u,s):e(u,s,a),i=!0,c._container=s,s.__vue_app__=c,$s(u.component)||u.component.proxy}},unmount(){i&&(e(null,c._container),delete c._container.__vue_app__)},provide:(e,t)=>(r.provides[e]=t,c)};return Io(c,r,e),c}}let jo=!1;const Uo=e=>/svg/.test(e.namespaceURI)&&"foreignObject"!==e.tagName,Ho=e=>8===e.nodeType;function Wo(e){const{mt:t,p:n,o:{patchProp:o,nextSibling:r,parentNode:s,remove:i,insert:c,createComment:l}}=e,a=(n,o,i,c,l,m=!1)=>{const g=Ho(n)&&"["===n.data,y=()=>d(n,o,i,c,l,g),{type:v,ref:_,shapeFlag:b}=o,S=n.nodeType;o.el=n;let C=null;switch(v){case xr:3!==S?C=y():(n.data!==o.children&&(jo=!0,n.data=o.children),C=r(n));break;case Er:C=8!==S||g?y():r(n);break;case Tr:if(1===S){C=n;const e=!o.children.length;for(let t=0;t<o.staticCount;t++)e&&(o.children+=C.outerHTML),t===o.staticCount-1&&(o.anchor=C),C=r(C);return C}C=y();break;case Cr:C=g?f(n,o,i,c,l,m):y();break;default:if(1&b)C=1!==S||o.type.toLowerCase()!==n.tagName.toLowerCase()?y():u(n,o,i,c,l,m);else if(6&b){o.slotScopeIds=l;const e=s(n);if(t(o,e,null,i,c,Uo(e),m),C=g?h(n):r(n),kn(o)){let t;g?(t=Dr(Cr),t.anchor=C?C.previousSibling:e.lastChild):t=3===n.nodeType?Hr(""):Dr("div"),t.el=n,o.component.subTree=t}}else 64&b?C=8!==S?y():o.type.hydrate(n,o,i,c,l,m,e,p):128&b&&(C=o.type.hydrate(n,o,i,c,Uo(s(n)),l,m,e,a))}return null!=_&&Jo(_,null,c,o),C},u=(e,t,n,r,s,c)=>{c=c||!!t.dynamicChildren;const{type:l,props:a,patchFlag:u,shapeFlag:f,dirs:d}=t,h="input"===l&&d||"option"===l;if(h||-1!==u){if(d&&ko(t,null,n,"created"),a)if(h||!c||48&u)for(const t in a)(h&&t.endsWith("value")||S(t)&&!D(t))&&o(e,t,null,a[t],!1,void 0,n);else a.onClick&&o(e,"onClick",null,a.onClick,!1,void 0,n);let l;if((l=a&&a.onVnodeBeforeMount)&&Yo(l,n,t),d&&ko(t,null,n,"beforeMount"),((l=a&&a.onVnodeMounted)||d)&&hn((()=>{l&&Yo(l,n,t),d&&ko(t,null,n,"mounted")}),r),16&f&&(!a||!a.innerHTML&&!a.textContent)){let o=p(e.firstChild,t,e,n,r,s,c);for(;o;){jo=!0;const e=o;o=o.nextSibling,i(e)}}else 8&f&&e.textContent!==t.children&&(jo=!0,e.textContent=t.children)}return e.nextSibling},p=(e,t,o,r,s,i,c)=>{c=c||!!t.dynamicChildren;const l=t.children,u=l.length;for(let p=0;p<u;p++){const t=c?l[p]:l[p]=Kr(l[p]);if(e)e=a(e,t,r,s,i,c);else{if(t.type===xr&&!t.children)continue;jo=!0,n(null,t,o,null,r,s,Uo(o),i)}}return e},f=(e,t,n,o,i,a)=>{const{slotScopeIds:u}=t;u&&(i=i?i.concat(u):u);const f=s(e),d=p(r(e),t,f,n,o,i,a);return d&&Ho(d)&&"]"===d.data?r(t.anchor=d):(jo=!0,c(t.anchor=l("]"),f,d),d)},d=(e,t,o,c,l,a)=>{if(jo=!0,t.el=null,a){const t=h(e);for(;;){const n=r(e);if(!n||n===t)break;i(n)}}const u=r(e),p=s(e);return i(e),n(null,t,p,u,o,c,Uo(p),l),u},h=e=>{let t=0;for(;e;)if((e=r(e))&&Ho(e)&&("["===e.data&&t++,"]"===e.data)){if(0===t)return r(e);t--}return e};return[(e,t)=>{if(!t.hasChildNodes())return n(null,e,t),void ui();jo=!1,a(t.firstChild,e,null,null,null),ui(),jo&&console.error("Hydration completed but contains mismatches.")},a]}const Ko=hn;function zo(e){return qo(e)}function Go(e){return qo(e,Wo)}function qo(e,t){(X||(X="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{})).__VUE__=!0;const{insert:n,remove:o,patchProp:r,createElement:s,createText:i,createComment:c,setText:l,setElementText:a,parentNode:u,nextSibling:p,setScopeId:f=v,cloneNode:d,insertStaticContent:h}=e,m=(e,t,n,o=null,r=null,s=null,i=!1,c=null,l=!!t.dynamicChildren)=>{if(e===t)return;e&&!$r(e,t)&&(o=Z(e),W(e,r,s,!0),e=null),-2===t.patchFlag&&(l=!1,t.dynamicChildren=null);const{type:a,ref:u,shapeFlag:p}=t;switch(a){case xr:_(e,t,n,o);break;case Er:b(e,t,n,o);break;case Tr:null==e&&C(t,n,o,i);break;case Cr:I(e,t,n,o,r,s,i,c,l);break;default:1&p?E(e,t,n,o,r,s,i,c,l):6&p?P(e,t,n,o,r,s,i,c,l):(64&p||128&p)&&a.process(e,t,n,o,r,s,i,c,l,ee)}null!=u&&r&&Jo(u,e&&e.ref,s,t||e,!t)},_=(e,t,o,r)=>{if(null==e)n(t.el=i(t.children),o,r);else{const n=t.el=e.el;t.children!==e.children&&l(n,t.children)}},b=(e,t,o,r)=>{null==e?n(t.el=c(t.children||""),o,r):t.el=e.el},C=(e,t,n,o)=>{[e.el,e.anchor]=h(e.children,t,n,o)},E=(e,t,n,o,r,s,i,c,l)=>{i=i||"svg"===t.type,null==e?T(t,n,o,r,s,i,c,l):k(e,t,r,s,i,c,l)},T=(e,t,o,i,c,l,u,p)=>{let f,h;const{type:m,props:g,shapeFlag:y,transition:v,patchFlag:_,dirs:b}=e;if(e.el&&void 0!==d&&-1===_)f=e.el=d(e.el);else{if(f=e.el=s(e.type,l,g&&g.is,g),8&y?a(f,e.children):16&y&&O(e.children,f,null,i,c,l&&"foreignObject"!==m,u,p),b&&ko(e,null,i,"created"),g){for(const t in g)"value"===t||D(t)||r(f,t,null,g[t],l,e.children,i,c,Y);"value"in g&&r(f,"value",null,g.value),(h=g.onVnodeBeforeMount)&&Yo(h,i,e)}w(f,e,e.scopeId,u,i)}b&&ko(e,null,i,"beforeMount");const S=(!c||c&&!c.pendingBranch)&&v&&!v.persisted;S&&v.beforeEnter(f),n(f,t,o),((h=g&&g.onVnodeMounted)||S||b)&&Ko((()=>{h&&Yo(h,i,e),S&&v.enter(f),b&&ko(e,null,i,"mounted")}),c)},w=(e,t,n,o,r)=>{if(n&&f(e,n),o)for(let s=0;s<o.length;s++)f(e,o[s]);if(r){if(t===r.subTree){const t=r.vnode;w(e,t,t.scopeId,t.slotScopeIds,r.parent)}}},O=(e,t,n,o,r,s,i,c,l=0)=>{for(let a=l;a<e.length;a++){const l=e[a]=c?zr(e[a]):Kr(e[a]);m(null,l,t,n,o,r,s,i,c)}},k=(e,t,n,o,s,i,c)=>{const l=t.el=e.el;let{patchFlag:u,dynamicChildren:p,dirs:f}=t;u|=16&e.patchFlag;const d=e.props||g,h=t.props||g;let m;(m=h.onVnodeBeforeUpdate)&&Yo(m,n,t,e),f&&ko(t,e,n,"beforeUpdate");const y=s&&"foreignObject"!==t.type;if(p?A(e.dynamicChildren,p,l,n,o,y,i):c||V(e,t,l,null,n,o,y,i,!1),u>0){if(16&u)R(l,t,d,h,n,o,s);else if(2&u&&d.class!==h.class&&r(l,"class",null,h.class,s),4&u&&r(l,"style",d.style,h.style,s),8&u){const i=t.dynamicProps;for(let t=0;t<i.length;t++){const c=i[t],a=d[c],u=h[c];u===a&&"value"!==c||r(l,c,a,u,s,e.children,n,o,Y)}}1&u&&e.children!==t.children&&a(l,t.children)}else c||null!=p||R(l,t,d,h,n,o,s);((m=h.onVnodeUpdated)||f)&&Ko((()=>{m&&Yo(m,n,t,e),f&&ko(t,e,n,"updated")}),o)},A=(e,t,n,o,r,s,i)=>{for(let c=0;c<t.length;c++){const l=e[c],a=t[c],p=l.el&&(l.type===Cr||!$r(l,a)||70&l.shapeFlag)?u(l.el):n;m(l,a,p,null,o,r,s,i,!0)}},R=(e,t,n,o,s,i,c)=>{if(n!==o){for(const l in o){if(D(l))continue;const a=o[l],u=n[l];a!==u&&"value"!==l&&r(e,l,u,a,c,t.children,s,i,Y)}if(n!==g)for(const l in n)D(l)||l in o||r(e,l,n[l],null,c,t.children,s,i,Y);"value"in o&&r(e,"value",n.value,o.value)}},I=(e,t,o,r,s,c,l,a,u)=>{const p=t.el=e?e.el:i(""),f=t.anchor=e?e.anchor:i("");let{patchFlag:d,dynamicChildren:h,slotScopeIds:m}=t;m&&(a=a?a.concat(m):m),null==e?(n(p,o,r),n(f,o,r),O(t.children,o,f,s,c,l,a,u)):d>0&&64&d&&h&&e.dynamicChildren?(A(e.dynamicChildren,h,o,s,c,l,a),(null!=t.key||s&&t===s.subTree)&&Zo(e,t,!0)):V(e,t,o,f,s,c,l,a,u)},P=(e,t,n,o,r,s,i,c,l)=>{t.slotScopeIds=c,null==e?512&t.shapeFlag?r.ctx.activate(t,n,o,i,l):M(t,n,o,r,s,i,l):$(e,t,l)},M=(e,t,n,o,r,s,i)=>{const c=e.isCompatRoot&&e.component,l=c||(e.component=bs(e,o,r));if(In(e)&&(l.ctx.renderer=ee),c||ks(l),l.asyncDep){if(r&&r.registerDep(l,F),!e.el){const e=l.subTree=Dr(Er);b(null,e,t,n)}}else F(l,e,t,n,r,s,i)},$=(e,t,n)=>{const o=t.component=e.component;if(function(e,t,n){const{props:o,children:r,component:s}=e,{props:i,children:c,patchFlag:l}=t,a=s.emitsOptions;if(t.dirs||t.transition)return!0;if(!(n&&l>=0))return!(!r&&!c||c&&c.$stable)||o!==i&&(o?!i||ln(o,i,a):!!i);if(1024&l)return!0;if(16&l)return o?ln(o,i,a):!!i;if(8&l){const e=t.dynamicProps;for(let t=0;t<e.length;t++){const n=e[t];if(i[n]!==o[n]&&!Qt(a,n))return!0}}return!1}(e,t,n)){if(o.asyncDep&&!o.asyncResolved)return void L(o,t,n);o.next=t,function(e){const t=Gs.indexOf(e);t>qs&&Gs.splice(t,1)}(o.update),o.update()}else t.component=e.component,t.el=e.el,o.vnode=t},F=(e,t,n,o,r,s,i)=>{const c=new de((()=>{if(e.isMounted){let t,{next:n,bu:o,u:l,parent:a,vnode:p}=e,f=n;c.allowRecurse=!1,n?(n.el=p.el,L(e,n,i)):n=p,o&&J(o),(t=n.props&&n.props.onVnodeBeforeUpdate)&&Yo(t,a,n,p),jt("INSTANCE_EVENT_HOOKS",e)&&e.emit("hook:beforeUpdate"),c.allowRecurse=!0;const d=rn(e),h=e.subTree;e.subTree=d,m(h,d,u(h.el),Z(h),e,r,s),n.el=d.el,null===f&&an(e,d.el),l&&Ko(l,r),(t=n.props&&n.props.onVnodeUpdated)&&Ko((()=>Yo(t,a,n,p)),r),jt("INSTANCE_EVENT_HOOKS",e)&&Ko((()=>e.emit("hook:updated")),r)}else{let i;const{el:l,props:a}=t,{bm:u,m:p,parent:f}=e,d=kn(t);if(c.allowRecurse=!1,u&&J(u),!d&&(i=a&&a.onVnodeBeforeMount)&&Yo(i,f,t),jt("INSTANCE_EVENT_HOOKS",e)&&e.emit("hook:beforeMount"),c.allowRecurse=!0,l&&ne){const n=()=>{e.subTree=rn(e),ne(l,e.subTree,e,r,null)};d?t.type.__asyncLoader().then((()=>!e.isUnmounted&&n())):n()}else{const i=e.subTree=rn(e);m(null,i,n,o,e,r,s),t.el=i.el}if(p&&Ko(p,r),!d&&(i=a&&a.onVnodeMounted)){const e=t;Ko((()=>Yo(i,f,e)),r)}jt("INSTANCE_EVENT_HOOKS",e)&&Ko((()=>e.emit("hook:mounted")),r),256&t.shapeFlag&&(e.a&&Ko(e.a,r),jt("INSTANCE_EVENT_HOOKS",e)&&Ko((()=>e.emit("hook:activated")),r)),e.isMounted=!0,t=n=o=null}}),(()=>si(e.update)),e.scope),l=e.update=c.run.bind(c);l.id=e.uid,c.allowRecurse=l.allowRecurse=!0,l()},L=(e,t,n)=>{t.component=e;const o=e.vnode.props;e.vnode=t,e.next=null,function(e,t,n,o){const{props:r,attrs:s,vnode:{patchFlag:i}}=e,c=vt(r),[l]=e.propsOptions;let a=!1;if(!(o||i>0)||16&i){let o;ho(e,t,r,s)&&(a=!0);for(const s in c)t&&(N(t,s)||(o=K(s))!==s&&N(t,o))||(l?!n||void 0===n[s]&&void 0===n[o]||(r[s]=mo(l,c,s,void 0,e,!0)):delete r[s]);if(s!==c)for(const e in s)t&&N(t,e)||(delete s[e],a=!0)}else if(8&i){const n=e.vnode.dynamicProps;for(let o=0;o<n.length;o++){let i=n[o];const u=t[i];if(l)if(N(s,i))u!==s[i]&&(s[i]=u,a=!0);else{const t=H(i);r[t]=mo(l,c,t,u,e,!1)}else{if(S(i)&&i.endsWith("Native"))i=i.slice(0,-6);else if(fo(i,e))continue;u!==s[i]&&(s[i]=u,a=!0)}}}a&&Ce(e,"set","$attrs")}(e,t.props,o,n),((e,t,n)=>{const{vnode:o,slots:r}=e;let s=!0,i=g;if(32&o.shapeFlag){const e=t._;e?n&&1===e?s=!1:(x(r,t),n||1!==e||delete r._):(s=!t.$stable,Eo(t,r)),i=t}else t&&(To(e,t),i={default:1});if(s)for(const c in r)So(c)||c in i||delete r[c]})(e,t.children,n),ye(),ai(void 0,e.update),ve()},V=(e,t,n,o,r,s,i,c,l=!1)=>{const u=e&&e.children,p=e?e.shapeFlag:0,f=t.children,{patchFlag:d,shapeFlag:h}=t;if(d>0){if(128&d)return void j(u,f,n,o,r,s,i,c,l);if(256&d)return void B(u,f,n,o,r,s,i,c,l)}8&h?(16&p&&Y(u,r,s),f!==u&&a(n,f)):16&p?16&h?j(u,f,n,o,r,s,i,c,l):Y(u,r,s,!0):(8&p&&a(n,""),16&h&&O(f,n,o,r,s,i,c,l))},B=(e,t,n,o,r,s,i,c,l)=>{const a=(e=e||y).length,u=(t=t||y).length,p=Math.min(a,u);let f;for(f=0;f<p;f++){const o=t[f]=l?zr(t[f]):Kr(t[f]);m(e[f],o,n,null,r,s,i,c,l)}a>u?Y(e,r,s,!0,!1,p):O(t,n,o,r,s,i,c,l,p)},j=(e,t,n,o,r,s,i,c,l)=>{let a=0;const u=t.length;let p=e.length-1,f=u-1;for(;a<=p&&a<=f;){const o=e[a],u=t[a]=l?zr(t[a]):Kr(t[a]);if(!$r(o,u))break;m(o,u,n,null,r,s,i,c,l),a++}for(;a<=p&&a<=f;){const o=e[p],a=t[f]=l?zr(t[f]):Kr(t[f]);if(!$r(o,a))break;m(o,a,n,null,r,s,i,c,l),p--,f--}if(a>p){if(a<=f){const e=f+1,p=e<u?t[e].el:o;for(;a<=f;)m(null,t[a]=l?zr(t[a]):Kr(t[a]),n,p,r,s,i,c,l),a++}}else if(a>f)for(;a<=p;)W(e[a],r,s,!0),a++;else{const d=a,h=a,g=new Map;for(a=h;a<=f;a++){const e=t[a]=l?zr(t[a]):Kr(t[a]);null!=e.key&&g.set(e.key,a)}let v,_=0;const b=f-h+1;let S=!1,C=0;const x=new Array(b);for(a=0;a<b;a++)x[a]=0;for(a=d;a<=p;a++){const o=e[a];if(_>=b){W(o,r,s,!0);continue}let u;if(null!=o.key)u=g.get(o.key);else for(v=h;v<=f;v++)if(0===x[v-h]&&$r(o,t[v])){u=v;break}void 0===u?W(o,r,s,!0):(x[u-h]=a+1,u>=C?C=u:S=!0,m(o,t[u],n,null,r,s,i,c,l),_++)}const E=S?function(e){const t=e.slice(),n=[0];let o,r,s,i,c;const l=e.length;for(o=0;o<l;o++){const l=e[o];if(0!==l){if(r=n[n.length-1],e[r]<l){t[o]=r,n.push(o);continue}for(s=0,i=n.length-1;s<i;)c=s+i>>1,e[n[c]]<l?s=c+1:i=c;l<e[n[s]]&&(s>0&&(t[o]=n[s-1]),n[s]=o)}}s=n.length,i=n[s-1];for(;s-- >0;)n[s]=i,i=t[i];return n}(x):y;for(v=E.length-1,a=b-1;a>=0;a--){const e=h+a,p=t[e],f=e+1<u?t[e+1].el:o;0===x[a]?m(null,p,n,f,r,s,i,c,l):S&&(v<0||a!==E[v]?U(p,n,f,2):v--)}}},U=(e,t,o,r,s=null)=>{const{el:i,type:c,transition:l,children:a,shapeFlag:u}=e;if(6&u)return void U(e.component.subTree,t,o,r);if(128&u)return void e.suspense.move(t,o,r);if(64&u)return void c.move(e,t,o,ee);if(c===Cr){n(i,t,o);for(let e=0;e<a.length;e++)U(a[e],t,o,r);return void n(e.anchor,t,o)}if(c===Tr)return void(({el:e,anchor:t},o,r)=>{let s;for(;e&&e!==t;)s=p(e),n(e,o,r),e=s;n(t,o,r)})(e,t,o);if(2!==r&&1&u&&l)if(0===r)l.beforeEnter(i),n(i,t,o),Ko((()=>l.enter(i)),s);else{const{leave:e,delayLeave:r,afterLeave:s}=l,c=()=>n(i,t,o),a=()=>{e(i,(()=>{c(),s&&s()}))};r?r(i,c,a):a()}else n(i,t,o)},W=(e,t,n,o=!1,r=!1)=>{const{type:s,props:i,ref:c,children:l,dynamicChildren:a,shapeFlag:u,patchFlag:p,dirs:f}=e;if(null!=c&&Jo(c,null,n,e,!0),256&u)return void t.ctx.deactivate(e);const d=1&u&&f,h=!kn(e);let m;if(h&&(m=i&&i.onVnodeBeforeUnmount)&&Yo(m,t,e),6&u)q(e.component,n,o);else{if(128&u)return void e.suspense.unmount(n,o);d&&ko(e,null,t,"beforeUnmount"),64&u?e.type.remove(e,t,n,r,ee,o):a&&(s!==Cr||p>0&&64&p)?Y(a,t,n,!1,!0):(s===Cr&&384&p||!r&&16&u)&&Y(l,t,n),o&&z(e)}(h&&(m=i&&i.onVnodeUnmounted)||d)&&Ko((()=>{m&&Yo(m,t,e),d&&ko(e,null,t,"unmounted")}),n)},z=e=>{const{type:t,el:n,anchor:r,transition:s}=e;if(t===Cr)return void G(n,r);if(t===Tr)return void(({el:e,anchor:t})=>{let n;for(;e&&e!==t;)n=p(e),o(e),e=n;o(t)})(e);const i=()=>{o(n),s&&!s.persisted&&s.afterLeave&&s.afterLeave()};if(1&e.shapeFlag&&s&&!s.persisted){const{leave:t,delayLeave:o}=s,r=()=>t(n,i);o?o(e.el,i,r):r()}else i()},G=(e,t)=>{let n;for(;e!==t;)n=p(e),o(e),e=n;o(t)},q=(e,t,n)=>{const{bum:o,scope:r,update:s,subTree:i,um:c}=e;o&&J(o),jt("INSTANCE_EVENT_HOOKS",e)&&e.emit("hook:beforeDestroy"),r.stop(),s&&(s.active=!1,W(i,e,t,n)),c&&Ko(c,t),jt("INSTANCE_EVENT_HOOKS",e)&&Ko((()=>e.emit("hook:destroyed")),t),Ko((()=>{e.isUnmounted=!0}),t),t&&t.pendingBranch&&!t.isUnmounted&&e.asyncDep&&!e.asyncResolved&&e.suspenseId===t.pendingId&&(t.deps--,0===t.deps&&t.resolve())},Y=(e,t,n,o=!1,r=!1,s=0)=>{for(let i=s;i<e.length;i++)W(e[i],t,n,o,r)},Z=e=>6&e.shapeFlag?Z(e.component.subTree):128&e.shapeFlag?e.suspense.next():p(e.anchor||e.el),Q=(e,t,n)=>{null==e?t._vnode&&W(t._vnode,null,null,!0):m(t._vnode||null,e,t,null,null,null,n),ui(),t._vnode=e},ee={p:m,um:W,m:U,r:z,mt:M,mc:O,pc:V,pbc:A,n:Z,o:e};let te,ne;return t&&([te,ne]=t(ee)),{render:Q,hydrate:te,createApp:Do(Q,te)}}function Jo(e,t,n,o,r=!1){if(w(e))return void e.forEach(((e,s)=>Jo(e,t&&(w(t)?t[s]:t),n,o,r)));if(kn(o)&&!r)return;const s=4&o.shapeFlag?$s(o.component)||o.component.proxy:o.el,i=r?null:s,{i:c,r:l}=e,a=t&&t.r,u=c.refs===g?c.refs={}:c.refs,p=c.setupState;if(null!=a&&a!==l&&(I(a)?(u[a]=null,N(p,a)&&(p[a]=null)):Et(a)&&(a.value=null)),I(l)){const t=()=>{jt("V_FOR_REF",c)?function(e,t,n,o,r,s){const i=e[t];s?w(i)?E(i,n):e[t]=null:r?w(i)?i.includes(n)||i.push(n):e[t]=[n]:e[t]=n}(u,l,s,0,e.f,r):u[l]=i,N(p,l)&&(p[l]=i)};i?(t.id=-1,Ko(t,n)):t()}else if(Et(l)){const e=()=>{l.value=i};i?(e.id=-1,Ko(e,n)):e()}else R(l)&&Us(l,c,12,[i,u])}function Yo(e,t,n,o=null){Hs(e,t,7,[n,o])}function Zo(e,t,n=!1){const o=e.children,r=t.children;if(w(o)&&w(r))for(let s=0;s<o.length;s++){const e=o[s];let t=r[s];1&t.shapeFlag&&!t.dynamicChildren&&((t.patchFlag<=0||32===t.patchFlag)&&(t=r[s]=zr(r[s]),t.el=e.el),n||Zo(e,t))}}const Xo=e=>e&&(e.disabled||""===e.disabled),Qo=e=>"undefined"!=typeof SVGElement&&e instanceof SVGElement,er=(e,t)=>{const n=e&&e.to;if(I(n)){if(t){return t(n)}return null}return n};function tr(e,t,n,{o:{insert:o},m:r},s=2){0===s&&o(e.targetAnchor,t,n);const{el:i,anchor:c,shapeFlag:l,children:a,props:u}=e,p=2===s;if(p&&o(i,t,n),(!p||Xo(u))&&16&l)for(let f=0;f<a.length;f++)r(a[f],t,n,2);p&&o(c,t,n)}const nr={__isTeleport:!0,process(e,t,n,o,r,s,i,c,l,a){const{mc:u,pc:p,pbc:f,o:{insert:d,querySelector:h,createText:m}}=a,g=Xo(t.props);let{shapeFlag:y,children:v,dynamicChildren:_}=t;if(null==e){const e=t.el=m(""),a=t.anchor=m("");d(e,n,o),d(a,n,o);const p=t.target=er(t.props,h),f=t.targetAnchor=m("");p&&(d(f,p),i=i||Qo(p));const _=(e,t)=>{16&y&&u(v,e,t,r,s,i,c,l)};g?_(n,a):p&&_(p,f)}else{t.el=e.el;const o=t.anchor=e.anchor,u=t.target=e.target,d=t.targetAnchor=e.targetAnchor,m=Xo(e.props),y=m?n:u,v=m?o:d;if(i=i||Qo(u),_?(f(e.dynamicChildren,_,y,r,s,i,c),Zo(e,t,!0)):l||p(e,t,y,v,r,s,i,c,!1),g)m||tr(t,n,o,a,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const e=t.target=er(t.props,h);e&&tr(t,e,null,a,0)}else m&&tr(t,u,d,a,1)}},remove(e,t,n,o,{um:r,o:{remove:s}},i){const{shapeFlag:c,children:l,anchor:a,targetAnchor:u,target:p,props:f}=e;if(p&&s(u),(i||!Xo(f))&&(s(a),16&c))for(let d=0;d<l.length;d++){const e=l[d];r(e,t,n,!0,!!e.dynamicChildren)}},move:tr,hydrate:function(e,t,n,o,r,s,{o:{nextSibling:i,parentNode:c,querySelector:l}},a){const u=t.target=er(t.props,l);if(u){const l=u._lpa||u.firstChild;16&t.shapeFlag&&(Xo(t.props)?(t.anchor=a(i(e),t,c(e),n,o,r,s),t.targetAnchor=l):(t.anchor=i(e),t.targetAnchor=a(l,t,u,n,o,r,s)),u._lpa=t.targetAnchor&&i(t.targetAnchor))}return t.anchor&&i(t.anchor)}},or="components";const rr=Symbol();function sr(e){return I(e)?lr(or,e,!1)||e:e||rr}function ir(e){return lr("directives",e)}function cr(e){return lr("filters",e)}function lr(e,t,n=!0,o=!1){const r=en||Ss;if(r){const n=r.type;if(e===or){const e=Ls(n);if(e&&(e===t||e===H(t)||e===z(H(t))))return n}const s=ar(r[e]||n[e],t)||ar(r.appContext[e],t);return!s&&o?n:s}}function ar(e,t){return e&&(e[t]||e[H(t)]||e[z(H(t))])}const ur=new Map;function pr(e){Ut("INSTANCE_LISTENERS",e);const t={},n=e.vnode.props;if(!n)return t;for(const o in n)S(o)&&(t[o[2].toLowerCase()+o.slice(3)]=n[o]);return t}function fr(e,t,n){if(e||(e=Er),"string"==typeof e){const t=K(e);"transition"!==t&&"transition-group"!==t&&"keep-alive"!==t||(e=`__compat__${t}`),e=sr(e)}const o=arguments.length,r=w(t);return 2===o||r?M(t)&&!r?Mr(t)?yr(Dr(e,null,[t])):yr(gr(Dr(e,hr(t,e)),t)):yr(Dr(e,null,t)):(Mr(n)&&(n=[n]),yr(gr(Dr(e,hr(t,e),n),t)))}const dr=e("staticStyle,staticClass,directives,model,hook");function hr(e,t){if(!e)return null;const n={};for(const o in e)if("attrs"===o||"domProps"===o||"props"===o)x(n,e[o]);else if("on"===o||"nativeOn"===o){const t=e[o];for(const e in t){let r=mr(e);"nativeOn"===o&&(r+="Native");const s=n[r],i=t[e];s!==i&&(n[r]=s?[].concat(s,i):i)}}else dr(o)||(n[o]=e[o]);if(e.staticClass&&(n.class=l([e.staticClass,n.class])),e.staticStyle&&(n.style=r([e.staticStyle,n.style])),e.model&&M(t)){const{prop:o="value",event:r="input"}=t.model||{};n[o]=e.model.value,n[Yt+r]=e.model.callback}return n}function mr(e){return"&"===e[0]&&(e=e.slice(1)+"Passive"),"~"===e[0]&&(e=e.slice(1)+"Once"),"!"===e[0]&&(e=e.slice(1)+"Capture"),G(e)}function gr(e,t){return t&&t.directives?Oo(e,t.directives.map((({name:e,value:t,arg:n,modifiers:o})=>[ir(e),t,n,o]))):e}function yr(e){const{props:t,children:n}=e;let o;if(6&e.shapeFlag&&w(n)){o={};for(let e=0;e<n.length;e++){const t=n[e],r=Mr(t)&&t.props&&t.props.slot||"default",s=o[r]||(o[r]=[]);Mr(t)&&"template"===t.type?s.push(t.children):s.push(t)}if(o)for(const e in o){const t=o[e];o[e]=()=>t,o[e]._ns=!0}}const r=t&&t.scopedSlots;return r&&(delete t.scopedSlots,o?x(o,r):o=r),o&&Gr(e,o),e}function vr(e){if(jt("RENDER_FUNCTION",en,!0)&&jt("PRIVATE_APIS",en,!0)){const t=en,n=()=>e.component&&e.component.proxy;let o;Object.defineProperties(e,{tag:{get:()=>e.type},data:{get:()=>e.props||{},set:t=>e.props=t},elm:{get:()=>e.el},componentInstance:{get:n},child:{get:n},text:{get:()=>I(e.children)?e.children:null},context:{get:()=>t&&t.proxy},componentOptions:{get:()=>{if(4&e.shapeFlag)return o||(o={Ctor:e.type,propsData:e.props,children:e.children})}}})}}const _r=new Map,br={get(e,t){const n=e[t];return n&&n()}};function Sr(e,t){return e.__isBuiltIn?e:(R(e)&&e.cid&&(e=e.options),R(e)&&Wt("COMPONENT_ASYNC",t)?function(e){if(ur.has(e))return ur.get(e);let t,n;const o=new Promise(((e,o)=>{t=e,n=o})),r=e(t,n);let s;return s=$(r)?An((()=>r)):!M(r)||Mr(r)||w(r)?null==r?An((()=>o)):e:An({loader:()=>r.component,loadingComponent:r.loading,errorComponent:r.error,delay:r.delay,timeout:r.timeout}),ur.set(e,s),s}(e):M(e)&&e.functional&&Ht("COMPONENT_FUNCTIONAL",t)?function(e){if(_r.has(e))return _r.get(e);const t=e.render,n=(n,o)=>{const r=Cs();return t(fr,{props:n,children:r.vnode.children||[],data:r.vnode.props||{},scopedSlots:o.slots,parent:r.parent&&r.parent.proxy,slots:()=>new Proxy(o.slots,br),get listeners(){return pr(r)},get injections(){if(e.inject){const t={};return no(e.inject,t),t}return{}}})};return n.props=e.props,n.displayName=e.name,n.inheritAttrs=!1,_r.set(e,n),n}(e):e)}const Cr=Symbol(void 0),xr=Symbol(void 0),Er=Symbol(void 0),Tr=Symbol(void 0),Nr=[];let wr=null;function Or(e=!1){Nr.push(wr=e?null:[])}function kr(){Nr.pop(),wr=Nr[Nr.length-1]||null}let Ar=1;function Rr(e){Ar+=e}function Ir(e){return e.dynamicChildren=Ar>0?wr||y:null,kr(),Ar>0&&wr&&wr.push(e),e}function Pr(e,t,n,o,r){return Ir(Dr(e,t,n,o,r,!0))}function Mr(e){return!!e&&!0===e.__v_isVNode}function $r(e,t){return e.type===t.type&&e.key===t.key}const Fr="__vInternal",Lr=({key:e})=>null!=e?e:null,Vr=({ref:e})=>null!=e?I(e)||Et(e)||R(e)?{i:en,r:e}:e:null;function Br(e,t=null,n=null,o=0,r=null,s=(e===Cr?0:1),i=!1,c=!1){const l={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Lr(t),ref:t&&Vr(t),scopeId:tn,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:s,patchFlag:o,dynamicProps:r,dynamicChildren:null,appContext:null};return c?(Gr(l,n),128&s&&e.normalize(l)):n&&(l.shapeFlag|=I(n)?8:16),Ar>0&&!i&&wr&&(l.patchFlag>0||6&s)&&32!==l.patchFlag&&wr.push(l),function(e){const{type:t,shapeFlag:n,props:o,dynamicProps:r}=e;if(6&n&&o&&"modelValue"in o){if(!jt("COMPONENT_V_MODEL",{type:t}))return;const{prop:e="value",event:n="input"}=t.model||{};"modelValue"!==e&&(o[e]=o.modelValue,delete o.modelValue),r&&(r[r.indexOf("modelValue")]=e),o[Yt+n]=o["onUpdate:modelValue"],delete o["onUpdate:modelValue"]}}(l),function(e){e.props&&e.props.refInFor&&(delete e.props.refInFor,e.ref&&(w(e.ref)?e.ref.forEach((e=>e.f=!0)):e.ref.f=!0))}(l),vr(l),l}const Dr=function(e,t=null,n=null,o=0,s=null,i=!1){e&&e!==rr||(e=Er);if(Mr(e)){const o=Ur(e,t,!0);return n&&Gr(o,n),o}c=e,R(c)&&"__vccOpts"in c&&(e=e.__vccOpts);var c;if(e=Sr(e,en),t){t=jr(t);let{class:e,style:n}=t;e&&!I(e)&&(t.class=l(e)),M(n)&&(yt(n)&&!w(n)&&(n=x({},n)),t.style=r(n))}const a=I(e)?1:(e=>e.__isSuspense)(e)?128:(e=>e.__isTeleport)(e)?64:M(e)?4:R(e)?2:0;return Br(e,t,n,o,s,a,i,!0)};function jr(e){return e?yt(e)||Fr in e?x({},e):e:null}function Ur(e,t,n=!1){const{props:o,ref:r,patchFlag:s,children:i}=e,c=t?qr(o||{},t):o,l={__v_isVNode:!0,__v_skip:!0,type:e.type,props:c,key:c&&Lr(c),ref:t&&t.ref?n&&r?w(r)?r.concat(Vr(t)):[r,Vr(t)]:Vr(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:i,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Cr?-1===s?16:16|s:s,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Ur(e.ssContent),ssFallback:e.ssFallback&&Ur(e.ssFallback),el:e.el,anchor:e.anchor};return vr(l),l}function Hr(e=" ",t=0){return Dr(xr,null,e,t)}function Wr(e="",t=!1){return t?(Or(),Pr(Er,null,e)):Dr(Er,null,e)}function Kr(e){return null==e||"boolean"==typeof e?Dr(Er):w(e)?Dr(Cr,null,e.slice()):"object"==typeof e?zr(e):Dr(xr,null,String(e))}function zr(e){return null===e.el||e.memo?e:Ur(e)}function Gr(e,t){let n=0;const{shapeFlag:o}=e;if(null==t)t=null;else if(w(t))n=16;else if("object"==typeof t){if(65&o){const n=t.default;return void(n&&(n._c&&(n._d=!1),Gr(e,n()),n._c&&(n._d=!0)))}{n=32;const o=t._;o||Fr in t?3===o&&en&&(1===en.slots._?t._=1:(t._=2,e.patchFlag|=1024)):t._ctx=en}}else R(t)?(t={default:t,_ctx:en},n=32):(t=String(t),64&o?(n=16,t=[Hr(t)]):n=8);e.children=t,e.shapeFlag|=n}function qr(...e){const t={};for(let n=0;n<e.length;n++){const o=e[n];for(const e in o)if("class"===e)t.class!==o.class&&(t.class=l([t.class,o.class]));else if("style"===e)t.style=r([t.style,o.style]);else if(S(e)){const n=t[e],r=o[e];n===r||w(n)&&n.includes(r)||(t[e]=n?[].concat(n,r):r)}else""!==e&&(t[e]=o[e])}return t}function Jr(e){Ut("INSTANCE_CHILDREN",e);const t=e.subTree,n=[];return t&&Yr(t,n),n}function Yr(e,t){if(e.component)t.push(e.component.proxy);else if(16&e.shapeFlag){const n=e.children;for(let e=0;e<n.length;e++)Yr(n[e],t)}}function Zr(e,t,n,o){let r;const s=n&&n[o];if(w(e)||I(e)){r=new Array(e.length);for(let n=0,o=e.length;n<o;n++)r[n]=t(e[n],n,void 0,s&&s[n])}else if("number"==typeof e){r=new Array(e);for(let n=0;n<e;n++)r[n]=t(n+1,n,void 0,s&&s[n])}else if(M(e))if(e[Symbol.iterator])r=Array.from(e,((e,n)=>t(e,n,void 0,s&&s[n])));else{const n=Object.keys(e);r=new Array(n.length);for(let o=0,i=n.length;o<i;o++){const i=n[o];r[o]=t(e[i],i,o,s&&s[o])}}else r=[];return n&&(n[o]=r),r}function Xr(e,t){for(let n=0;n<t.length;n++){const o=t[n];if(w(o))for(let t=0;t<o.length;t++)e[o[t].name]=o[t].fn;else o&&(e[o.name]=o.fn)}return e}function Qr(e,t,n={},o,r){if(en.isCE)return Dr("slot","default"===t?null:{name:t},o&&o());let s=e[t];s&&s._c&&(s._d=!1),Or();const i=s&&es(s(n)),c=Pr(Cr,{key:n.key||`_${t}`},i||(o?o():[]),i&&1===e._?64:-2);return!r&&c.scopeId&&(c.slotScopeIds=[c.scopeId+"-s"]),s&&s._c&&(s._d=!0),c}function es(e){return e.some((e=>!Mr(e)||e.type!==Er&&!(e.type===Cr&&!es(e.children))))?e:null}function ts(e){const t={};for(const n in e)t[G(n)]=e[n];return t}function ns(e,t,n,o,r){if(n&&M(n)){w(n)&&(n=function(e){const t={};for(let n=0;n<e.length;n++)e[n]&&x(t,e[n]);return t}(n));for(const t in n)if(D(t))e[t]=n[t];else if("class"===t)e.class=l([e.class,n.class]);else if("style"===t)e.style=l([e.style,n.style]);else{const o=e.attrs||(e.attrs={}),s=H(t),i=K(t);if(!(s in o)&&!(i in o)&&(o[t]=n[t],r)){(e.on||(e.on={}))[`update:${t}`]=function(e){n[t]=e}}}}return e}function os(e,t){return qr(e,ts(t))}function rs(e,t,n,o,r){return r&&(o=qr(o,r)),Qr(e.slots,t,o,n&&(()=>n))}function ss(e,t,n){return Xr(t||{$stable:!n},is(e))}function is(e){for(let t=0;t<e.length;t++){const n=e[t];n&&(w(n)?is(n):n.name=n.key||"default")}return e}const cs=new WeakMap;function ls(e,t){let n=cs.get(e);if(n||cs.set(e,n=[]),n[t])return n[t];const o=e.proxy;return n[t]=e.type.staticRenderFns[t].call(o,null,o)}function as(e,t,n,o,r,s){const i=e.appContext.config.keyCodes||{},c=i[n]||o;return s&&r&&!i[n]?us(s,r):c?us(c,t):r?K(r)!==n:void 0}function us(e,t){return w(e)?-1===e.indexOf(t):e!==t}function ps(e){return e}function fs(e,t){for(let n=0;n<t.length;n+=2){const o=t[n];"string"==typeof o&&o&&(e[t[n]]=t[n+1])}return e}function ds(e,t){return"string"==typeof e?t+e:e}const hs=e=>e?Ts(e)?$s(e)||e.proxy:hs(e.parent):null,ms=x(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=>hs(e.parent),$root:e=>hs(e.root),$emit:e=>e.emit,$options:e=>so(e),$forceUpdate:e=>()=>si(e.update),$nextTick:e=>ri.bind(e.proxy),$watch:e=>yi.bind(e)});!function(e){const t=(e,t,n)=>{e[t]=n},n=(e,t)=>{delete e[t]};x(e,{$set:e=>(Ut("INSTANCE_SET",e),t),$delete:e=>(Ut("INSTANCE_DELETE",e),n),$mount:e=>(Ut("GLOBAL_MOUNT",null),e.ctx._compat_mount||v),$destroy:e=>(Ut("INSTANCE_DESTROY",e),e.ctx._compat_destroy||v),$slots:e=>jt("RENDER_FUNCTION",e)&&e.render&&e.render._compatWrapped?new Proxy(e.slots,br):e.slots,$scopedSlots:e=>{Ut("INSTANCE_SCOPED_SLOTS",e);const t={};for(const n in e.slots){const o=e.slots[n];o._ns||(t[n]=o)}return t},$on:e=>Gt.bind(null,e),$once:e=>qt.bind(null,e),$off:e=>Jt.bind(null,e),$children:Jr,$listeners:pr}),jt("PRIVATE_APIS",null)&&x(e,{$vnode:e=>e.vnode,$options:e=>{const t=x({},so(e));return t.parent=e.proxy.$parent,t.propsData=e.vnode.props,t},_self:e=>e.proxy,_uid:e=>e.uid,_data:e=>e.data,_isMounted:e=>e.isMounted,_isDestroyed:e=>e.isUnmounted,$createElement:()=>fr,_c:()=>fr,_o:()=>ps,_n:()=>Z,_s:()=>h,_l:()=>Zr,_t:e=>rs.bind(null,e),_q:()=>f,_i:()=>d,_m:e=>ls.bind(null,e),_f:()=>cr,_k:e=>as.bind(null,e),_b:()=>ns,_v:()=>Hr,_e:()=>Wr,_u:()=>ss,_g:()=>os,_d:()=>fs,_p:()=>ds})}(ms);const gs={get({_:e},t){const{ctx:n,setupState:o,data:r,props:s,accessCache:i,type:c,appContext:l}=e;let a;if("$"!==t[0]){const c=i[t];if(void 0!==c)switch(c){case 1:return o[t];case 2:return r[t];case 4:return n[t];case 3:return s[t]}else{if(o!==g&&N(o,t))return i[t]=1,o[t];if(r!==g&&N(r,t))return i[t]=2,r[t];if((a=e.propsOptions[0])&&N(a,t))return i[t]=3,s[t];if(n!==g&&N(n,t))return i[t]=4,n[t];to&&(i[t]=0)}}const u=ms[t];let p,f;if(u)return"$attrs"===t&&_e(e,0,t),u(e);if((p=c.__cssModules)&&(p=p[t]))return p;if(n!==g&&N(n,t))return i[t]=4,n[t];if(f=l.config.globalProperties,N(f,t)){const n=Object.getOwnPropertyDescriptor(f,t);if(n.get)return n.get.call(e.proxy);{const n=f[t];return R(n)?n.bind(e.proxy):n}}},set({_:e},t,n){const{data:o,setupState:r,ctx:s}=e;if(r!==g&&N(r,t))r[t]=n;else if(o!==g&&N(o,t))o[t]=n;else if(N(e.props,t))return!1;return("$"!==t[0]||!(t.slice(1)in e))&&(s[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:o,appContext:r,propsOptions:s}},i){let c;return!!n[i]||e!==g&&N(e,i)||t!==g&&N(t,i)||(c=s[0])&&N(c,i)||N(o,i)||N(ms,i)||N(r.config.globalProperties,i)}},ys=x({},gs,{get(e,t){if(t!==Symbol.unscopables)return gs.get(e,t,e)},has:(e,n)=>"_"!==n[0]&&!t(n)}),vs=Vo();let _s=0;function bs(e,t,n){const o=e.type,r=(t?t.appContext:e.appContext)||vs,s={uid:_s++,vnode:e,type:o,parent:t,appContext:r,root:null,next:null,subTree:null,update:null,scope:new te(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(r.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:go(o,r),emitsOptions:Xt(o,r),emit:null,emitted:null,propsDefaults:g,inheritAttrs:o.inheritAttrs,ctx:g,data:g,props:g,attrs:g,slots:g,refs:g,setupState:g,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=Zt.bind(null,s),e.ce&&e.ce(s),s}let Ss=null;const Cs=()=>Ss||en,xs=e=>{Ss=e,e.scope.on()},Es=()=>{Ss&&Ss.scope.off(),Ss=null};function Ts(e){return 4&e.vnode.shapeFlag}let Ns,ws,Os=!1;function ks(e,t=!1){Os=t;const{props:n,children:o}=e.vnode,r=Ts(e);!function(e,t,n,o=!1){const r={},s={};Y(s,Fr,1),e.propsDefaults=Object.create(null),ho(e,t,r,s);for(const i in e.propsOptions[0])i in r||(r[i]=void 0);e.props=n?o?r:ft(r):e.type.props?r:s,e.attrs=s}(e,n,r,t),((e,t)=>{if(32&e.vnode.shapeFlag){const n=t._;n?(e.slots=vt(t),Y(t,"_",n)):Eo(t,e.slots={})}else e.slots={},t&&To(e,t);Y(e.slots,Fr,1)})(e,o);const s=r?function(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=_t(new Proxy(e.ctx,gs));const{setup:o}=n;if(o){const n=e.setupContext=o.length>1?Ms(e):null;xs(e),ye();const r=Us(o,e,0,[e.props,n]);if(ve(),Es(),$(r)){if(r.then(Es,Es),t)return r.then((n=>{As(e,n,t)})).catch((t=>{Ws(t,e,0)}));e.asyncDep=r}else As(e,r,t)}else Ps(e,t)}(e,t):void 0;return Os=!1,s}function As(e,t,n){R(t)?e.render=t:M(t)&&(e.setupState=At(t)),Ps(e,n)}function Rs(e){Ns=e,ws=e=>{e.render._rc&&(e.withProxy=new Proxy(e.ctx,ys))}}const Is=()=>!Ns;function Ps(e,t,n){const o=e.type;if(function(e){const t=e.type,n=t.render;!n||n._rc||n._compatChecked||n._compatWrapped||(n.length>=2?n._compatChecked=!0:Wt("RENDER_FUNCTION",e)&&((t.render=function(){return n.call(this,fr)})._compatWrapped=!0))}(e),!e.render){if(!t&&Ns&&!o.render){const t=e.vnode.props&&e.vnode.props["inline-template"]||o.template;if(t){const{isCustomElement:n,compilerOptions:r}=e.appContext.config,{delimiters:s,compilerOptions:i}=o,c=x(x({isCustomElement:n,delimiters:s},r),i);c.compatConfig=Object.create(Vt),o.compatConfig&&x(c.compatConfig,o.compatConfig),o.render=Ns(t,c)}}e.render=o.render||v,ws&&ws(e)}n||(xs(e),ye(),function(e){const t=so(e),n=e.proxy,o=e.ctx;to=!1,t.beforeCreate&&oo(t.beforeCreate,e,"bc");const{data:r,computed:s,methods:i,watch:c,provide:l,inject:a,created:u,beforeMount:p,mounted:f,beforeUpdate:d,updated:h,activated:m,deactivated:g,beforeDestroy:y,beforeUnmount:_,destroyed:b,unmounted:S,render:C,renderTracked:x,renderTriggered:E,errorCaptured:T,serverPrefetch:N,expose:O,inheritAttrs:k,components:A,directives:I,filters:P}=t;if(a&&no(a,o,null,e.appContext.config.unwrapInjectedRef),i)for(const v in i){const e=i[v];R(e)&&(o[v]=e.bind(n))}if(r){const t=r.call(n,n);M(t)&&(e.data=pt(t))}if(to=!0,s)for(const w in s){const e=s[w],t=$t({get:R(e)?e.bind(n,n):R(e.get)?e.get.bind(n,n):v,set:!R(e)&&R(e.set)?e.set.bind(n):v});Object.defineProperty(o,w,{enumerable:!0,configurable:!0,get:()=>t.value,set:e=>t.value=e})}if(c)for(const v in c)ro(c[v],o,n,v);if(l){const e=R(l)?l.call(n):l;Reflect.ownKeys(e).forEach((t=>{gn(t,e[t])}))}function $(e,t){w(t)?t.forEach((t=>e(t.bind(n)))):t&&e(t.bind(n))}if(u&&oo(u,e,"c"),$(Wn,p),$(Kn,f),$(zn,d),$(Gn,h),$(Fn,m),$(Ln,g),$(Qn,T),$(Xn,x),$(Zn,E),$(qn,_),$(Jn,S),$(Yn,N),y&&Ht("OPTIONS_BEFORE_DESTROY",e)&&$(qn,y),b&&Ht("OPTIONS_DESTROYED",e)&&$(Jn,b),w(O))if(O.length){const t=e.exposed||(e.exposed={});O.forEach((e=>{Object.defineProperty(t,e,{get:()=>n[e],set:t=>n[e]=t})}))}else e.exposed||(e.exposed={});C&&e.render===v&&(e.render=C),null!=k&&(e.inheritAttrs=k),A&&(e.components=A),I&&(e.directives=I),P&&jt("FILTERS",e)&&(e.filters=P)}(e),ve(),Es())}function Ms(e){const t=t=>{e.exposed=t||{}};let n;return{get attrs(){return n||(n=function(e){return new Proxy(e.attrs,{get:(t,n)=>(_e(e,0,"$attrs"),t[n])})}(e))},slots:e.slots,emit:e.emit,expose:t}}function $s(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(At(_t(e.exposed)),{get:(t,n)=>n in t?t[n]:n in ms?ms[n](e):void 0}))}const Fs=/(?:^|[-_])(\w)/g;function Ls(e){return R(e)&&e.displayName||e.name}function Vs(e,t,n=!1){let o=Ls(t);if(!o&&t.__file){const e=t.__file.match(/([^/\\]+)\.\w+$/);e&&(o=e[1])}if(!o&&e&&e.parent){const n=e=>{for(const n in e)if(e[n]===t)return n};o=n(e.components||e.parent.type.components)||n(e.appContext.components)}return o?o.replace(Fs,(e=>e.toUpperCase())).replace(/[-_]/g,""):n?"App":"Anonymous"}const Bs=[];function Ds(e){const t=[],n=Object.keys(e);return n.slice(0,3).forEach((n=>{t.push(...js(n,e[n]))})),n.length>3&&t.push(" ..."),t}function js(e,t,n){return I(t)?(t=JSON.stringify(t),n?t:[`${e}=${t}`]):"number"==typeof t||"boolean"==typeof t||null==t?n?t:[`${e}=${t}`]:Et(t)?(t=js(e,vt(t.value),!0),n?t:[`${e}=Ref<`,t,">"]):R(t)?[`${e}=fn${t.name?`<${t.name}>`:""}`]:(t=vt(t),n?t:[`${e}=`,t])}function Us(e,t,n,o){let r;try{r=o?e(...o):e()}catch(s){Ws(s,t,n)}return r}function Hs(e,t,n,o){if(R(e)){const r=Us(e,t,n,o);return r&&$(r)&&r.catch((e=>{Ws(e,t,n)})),r}const r=[];for(let s=0;s<e.length;s++)r.push(Hs(e[s],t,n,o));return r}function Ws(e,t,n,o=!0){if(t){let o=t.parent;const r=t.proxy,s=n;for(;o;){const t=o.ec;if(t)for(let n=0;n<t.length;n++)if(!1===t[n](e,r,s))return;o=o.parent}const i=t.appContext.config.errorHandler;if(i)return void Us(i,null,10,[e,r,s])}!function(e,t,n,o=!0){console.error(e)}(e,0,0,o)}let Ks=!1,zs=!1;const Gs=[];let qs=0;const Js=[];let Ys=null,Zs=0;const Xs=[];let Qs=null,ei=0;const ti=Promise.resolve();let ni=null,oi=null;function ri(e){const t=ni||ti;return e?t.then(this?e.bind(this):e):t}function si(e){Gs.length&&Gs.includes(e,Ks&&e.allowRecurse?qs+1:qs)||e===oi||(null==e.id?Gs.push(e):Gs.splice(function(e){let t=qs+1,n=Gs.length;for(;t<n;){const o=t+n>>>1;pi(Gs[o])<e?t=o+1:n=o}return t}(e.id),0,e),ii())}function ii(){Ks||zs||(zs=!0,ni=ti.then(fi))}function ci(e,t,n,o){w(e)?n.push(...e):t&&t.includes(e,e.allowRecurse?o+1:o)||n.push(e),ii()}function li(e){ci(e,Qs,Xs,ei)}function ai(e,t=null){if(Js.length){for(oi=t,Ys=[...new Set(Js)],Js.length=0,Zs=0;Zs<Ys.length;Zs++)Ys[Zs]();Ys=null,Zs=0,oi=null,ai(e,t)}}function ui(e){if(Xs.length){const e=[...new Set(Xs)];if(Xs.length=0,Qs)return void Qs.push(...e);for(Qs=e,Qs.sort(((e,t)=>pi(e)-pi(t))),ei=0;ei<Qs.length;ei++)Qs[ei]();Qs=null,ei=0}}const pi=e=>null==e.id?1/0:e.id;function fi(e){zs=!1,Ks=!0,ai(e),Gs.sort(((e,t)=>pi(e)-pi(t)));try{for(qs=0;qs<Gs.length;qs++){const e=Gs[qs];e&&!1!==e.active&&Us(e,null,14)}}finally{qs=0,Gs.length=0,ui(),Ks=!1,ni=null,(Gs.length||Js.length||Xs.length)&&fi(e)}}function di(e,t){return gi(e,null,{flush:"post"})}const hi={};function mi(e,t,n){return gi(e,t,n)}function gi(e,t,{immediate:n,deep:o,flush:r}=g){const s=Ss;let i,c,l=!1,a=!1;if(Et(e)?(i=()=>e.value,l=!!e._shallow):mt(e)?(i=()=>e,o=!0):w(e)?(a=!0,l=e.some(mt),i=()=>e.map((e=>Et(e)?e.value:mt(e)?_i(e):R(e)?Us(e,s,2):void 0))):i=R(e)?t?()=>Us(e,s,2):()=>{if(!s||!s.isUnmounted)return c&&c(),Hs(e,s,3,[u])}:v,t&&!o){const e=i;i=()=>{const t=e();return w(t)&&Wt("WATCH_ARRAY",s)&&_i(t),t}}if(t&&o){const e=i;i=()=>_i(e())}let u=e=>{c=h.onStop=()=>{Us(e,s,4)}},p=a?[]:hi;const f=()=>{if(h.active)if(t){const e=h.run();(o||l||(a?e.some(((e,t)=>q(e,p[t]))):q(e,p))||w(e)&&jt("WATCH_ARRAY",s))&&(c&&c(),Hs(t,s,3,[e,p===hi?void 0:p,u]),p=e)}else h.run()};let d;f.allowRecurse=!!t,d="sync"===r?f:"post"===r?()=>Ko(f,s&&s.suspense):()=>{!s||s.isMounted?function(e){ci(e,Ys,Js,Zs)}(f):f()};const h=new de(i,d);return t?n?f():p=h.run():"post"===r?Ko(h.run.bind(h),s&&s.suspense):h.run(),()=>{h.stop(),s&&s.scope&&E(s.scope.effects,h)}}function yi(e,t,n){const o=this.proxy,r=I(e)?e.includes(".")?vi(o,e):()=>o[e]:e.bind(o,o);let s;R(t)?s=t:(s=t.handler,n=t);const i=Ss;xs(this);const c=gi(r,s.bind(o),n);return i?xs(i):Es(),c}function vi(e,t){const n=t.split(".");return()=>{let t=e;for(let e=0;e<n.length&&t;e++)t=t[n[e]];return t}}function _i(e,t){if(!M(e)||e.__v_skip)return e;if((t=t||new Set).has(e))return e;if(t.add(e),Et(e))_i(e.value,t);else if(w(e))for(let n=0;n<e.length;n++)_i(e[n],t);else if(k(e)||O(e))e.forEach((e=>{_i(e,t)}));else if(V(e))for(const n in e)_i(e[n],t);return e}function bi(){const e=Cs();return e.setupContext||(e.setupContext=Ms(e))}function Si(e,t,n){const o=arguments.length;return 2===o?M(t)&&!w(t)?Mr(t)?Dr(e,null,[t]):Dr(e,t):Dr(e,null,t):(o>3?n=Array.prototype.slice.call(arguments,2):3===o&&Mr(n)&&(n=[n]),Dr(e,t,n))}const Ci=Symbol("");function xi(e,t){const n=e.memo;if(n.length!=t.length)return!1;for(let o=0;o<n.length;o++)if(n[o]!==t[o])return!1;return Ar>0&&wr&&wr.push(e),!0}const Ei="3.2.23",Ti=cr,Ni={warnDeprecation:function(e,t,...n){},createCompatVue:function(e,t){Ao=t({});const n=Ro=function e(t={}){return o(t,e)};function o(t={},o){Ut("GLOBAL_MOUNT",null);const{data:r}=t;r&&!R(r)&&Ht("OPTIONS_DATA_FN",null)&&(t.data=()=>r);const s=e(t);o!==n&&Po(s,o);const i=s._createRoot(t);return t.el?i.$mount(t.el):i}n.version="3.2.23",n.config=Ao.config,n.use=(e,...t)=>(e&&R(e.install)?e.install(n,...t):R(e)&&e(n,...t),n),n.mixin=e=>(Ao.mixin(e),n),n.component=(e,t)=>t?(Ao.component(e,t),n):Ao.component(e),n.directive=(e,t)=>t?(Ao.directive(e,t),n):Ao.directive(e),n.options={_base:n};let r=1;n.cid=r,n.nextTick=ri;const s=new WeakMap;n.extend=function e(t={}){if(Ut("GLOBAL_EXTEND",null),R(t)&&(t=t.options),s.has(t))return s.get(t);const i=this;function c(e){return o(e?io(x({},c.options),e,co):c.options,c)}c.super=i,(c.prototype=Object.create(n.prototype)).constructor=c;const l={};for(const n in i.options){const e=i.options[n];l[n]=w(e)?e.slice():M(e)?x(Object.create(null),e):e}return(c.options=io(l,t,co))._base=c,c.extend=e.bind(c),c.mixin=i.mixin,c.use=i.use,c.cid=++r,s.set(t,c),c}.bind(n),n.set=(e,t,n)=>{Ut("GLOBAL_SET",null),e[t]=n},n.delete=(e,t)=>{Ut("GLOBAL_DELETE",null),delete e[t]},n.observable=e=>(Ut("GLOBAL_OBSERVABLE",null),pt(e)),n.filter=(e,t)=>t?(Ao.filter(e,t),n):Ao.filter(e);const i={warn:v,extend:x,mergeOptions:(e,t,n)=>io(e,t,n?void 0:co),defineReactive:Fo};return Object.defineProperty(n,"util",{get:()=>(Ut("GLOBAL_PRIVATE_UTIL",null),i)}),n.configureCompat=Bt,n},isCompatEnabled:jt,checkCompatEnabled:Wt,softAssertCompatEnabled:Ht},wi=Ni,Oi="undefined"!=typeof document?document:null,ki=new Map,Ai={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,o)=>{const r=t?Oi.createElementNS("http://www.w3.org/2000/svg",e):Oi.createElement(e,n?{is:n}:void 0);return"select"===e&&o&&null!=o.multiple&&r.setAttribute("multiple",o.multiple),r},createText:e=>Oi.createTextNode(e),createComment:e=>Oi.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Oi.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},cloneNode(e){const t=e.cloneNode(!0);return"_value"in e&&(t._value=e._value),t},insertStaticContent(e,t,n,o){const r=n?n.previousSibling:t.lastChild;let s=ki.get(e);if(!s){const t=Oi.createElement("template");if(t.innerHTML=o?`<svg>${e}</svg>`:e,s=t.content,o){const e=s.firstChild;for(;e.firstChild;)s.appendChild(e.firstChild);s.removeChild(e)}ki.set(e,s)}return t.insertBefore(s.cloneNode(!0),n),[r?r.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};const Ri=/\s*!important$/;function Ii(e,t,n){if(w(n))n.forEach((n=>Ii(e,t,n)));else if(t.startsWith("--"))e.setProperty(t,n);else{const o=function(e,t){const n=Mi[t];if(n)return n;let o=H(t);if("filter"!==o&&o in e)return Mi[t]=o;o=z(o);for(let r=0;r<Pi.length;r++){const n=Pi[r]+o;if(n in e)return Mi[t]=n}return t}(e,t);Ri.test(n)?e.setProperty(K(o),n.replace(Ri,""),"important"):e[o]=n}}const Pi=["Webkit","Moz","ms"],Mi={};const $i="http://www.w3.org/1999/xlink";function Fi(e,t,r,s,i){if(s&&t.startsWith("xlink:"))null==r?e.removeAttributeNS($i,t.slice(6,t.length)):e.setAttributeNS($i,t,r);else{if(function(e,t,o,r=null){if(Li(t)){const n=null===o?"false":"boolean"!=typeof o&&void 0!==o?"true":null;if(n&&wi.softAssertCompatEnabled("ATTR_ENUMERATED_COERCION",r,t,o,n))return e.setAttribute(t,n),!0}else if(!1===o&&!n(t)&&wi.softAssertCompatEnabled("ATTR_FALSE_VALUE",r,t))return e.removeAttribute(t),!0;return!1}(e,t,r,i))return;const s=n(t);null==r||s&&!o(r)?e.removeAttribute(t):e.setAttribute(t,s?"":r)}}const Li=e("contenteditable,draggable,spellcheck");let Vi=Date.now,Bi=!1;if("undefined"!=typeof window){Vi()>document.createEvent("Event").timeStamp&&(Vi=()=>performance.now());const e=navigator.userAgent.match(/firefox\/(\d+)/i);Bi=!!(e&&Number(e[1])<=53)}let Di=0;const ji=Promise.resolve(),Ui=()=>{Di=0};function Hi(e,t,n,o){e.addEventListener(t,n,o)}function Wi(e,t,n,o,r=null){const s=e._vei||(e._vei={}),i=s[t];if(o&&i)i.value=o;else{const[n,c]=function(e){let t;if(Ki.test(e)){let n;for(t={};n=e.match(Ki);)e=e.slice(0,e.length-n[0].length),t[n[0].toLowerCase()]=!0}return[K(e.slice(2)),t]}(t);if(o){const i=s[t]=function(e,t){const n=e=>{const o=e.timeStamp||Vi();(Bi||o>=n.attached-1)&&Hs(function(e,t){if(w(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map((e=>t=>!t._stopped&&e(t)))}return t}(e,n.value),t,5,[e])};return n.value=e,n.attached=(()=>Di||(ji.then(Ui),Di=Vi()))(),n}(o,r);Hi(e,n,i,c)}else i&&(!function(e,t,n,o){e.removeEventListener(t,n,o)}(e,n,i,c),s[t]=void 0)}}const Ki=/(?:Once|Passive|Capture)$/;const zi=/^on[a-z]/;function Gi(e,t){const n=On(e);class o extends Ji{constructor(e){super(n,e,t)}}return o.def=n,o}const qi="undefined"!=typeof HTMLElement?HTMLElement:class{};class Ji extends qi{constructor(e,t={},n){super(),this._def=e,this._props=t,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this.shadowRoot&&n?n(this._createVNode(),this.shadowRoot):this.attachShadow({mode:"open"})}connectedCallback(){this._connected=!0,this._instance||this._resolveDef()}disconnectedCallback(){this._connected=!1,ri((()=>{this._connected||(zc(null,this.shadowRoot),this._instance=null)}))}_resolveDef(){if(this._resolved)return;this._resolved=!0;for(let n=0;n<this.attributes.length;n++)this._setAttr(this.attributes[n].name);new MutationObserver((e=>{for(const t of e)this._setAttr(t.attributeName)})).observe(this,{attributes:!0});const e=e=>{const{props:t,styles:n}=e,o=!w(t),r=t?o?Object.keys(t):t:[];let s;if(o)for(const i in this._props){const e=t[i];(e===Number||e&&e.type===Number)&&(this._props[i]=Z(this._props[i]),(s||(s=Object.create(null)))[i]=!0)}this._numberProps=s;for(const i of Object.keys(this))"_"!==i[0]&&this._setProp(i,this[i],!0,!1);for(const i of r.map(H))Object.defineProperty(this,i,{get(){return this._getProp(i)},set(e){this._setProp(i,e)}});this._applyStyles(n),this._update()},t=this._def.__asyncLoader;t?t().then(e):e(this._def)}_setAttr(e){let t=this.getAttribute(e);this._numberProps&&this._numberProps[e]&&(t=Z(t)),this._setProp(H(e),t,!1)}_getProp(e){return this._props[e]}_setProp(e,t,n=!0,o=!0){t!==this._props[e]&&(this._props[e]=t,o&&this._instance&&this._update(),n&&(!0===t?this.setAttribute(K(e),""):"string"==typeof t||"number"==typeof t?this.setAttribute(K(e),t+""):t||this.removeAttribute(K(e))))}_update(){zc(this._createVNode(),this.shadowRoot)}_createVNode(){const e=Dr(this._def,x({},this._props));return this._instance||(e.ce=e=>{this._instance=e,e.isCE=!0,e.emit=(e,...t)=>{this.dispatchEvent(new CustomEvent(e,{detail:t}))};let t=this;for(;t=t&&(t.parentNode||t.host);)if(t instanceof Ji){e.parent=t._instance;break}}),e}_applyStyles(e){e&&e.forEach((e=>{const t=document.createElement("style");t.textContent=e,this.shadowRoot.appendChild(t)}))}}function Yi(e,t){if(128&e.shapeFlag){const n=e.suspense;e=n.activeBranch,n.pendingBranch&&!n.isHydrating&&n.effects.push((()=>{Yi(n.activeBranch,t)}))}for(;e.component;)e=e.component.subTree;if(1&e.shapeFlag&&e.el)Zi(e.el,t);else if(e.type===Cr)e.children.forEach((e=>Yi(e,t)));else if(e.type===Tr){let{el:n,anchor:o}=e;for(;n&&(Zi(n,t),n!==o);)n=n.nextSibling}}function Zi(e,t){if(1===e.nodeType){const n=e.style;for(const e in t)n.setProperty(`--${e}`,t[e])}}const Xi="transition",Qi="animation",ec=(e,{slots:t})=>Si(Sn,sc(e),t);ec.displayName="Transition",ec.__isBuiltIn=!0;const tc={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},nc=ec.props=x({},Sn.props,tc),oc=(e,t=[])=>{w(e)?e.forEach((e=>e(...t))):e&&e(...t)},rc=e=>!!e&&(w(e)?e.some((e=>e.length>1)):e.length>1);function sc(e){const t={};for(const x in e)x in tc||(t[x]=e[x]);if(!1===e.css)return t;const{name:n="v",type:o,duration:r,enterFromClass:s=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:c=`${n}-enter-to`,appearFromClass:l=s,appearActiveClass:a=i,appearToClass:u=c,leaveFromClass:p=`${n}-leave-from`,leaveActiveClass:f=`${n}-leave-active`,leaveToClass:d=`${n}-leave-to`}=e,h=wi.isCompatEnabled("TRANSITION_CLASSES",null);let m,g,y;if(h){const t=e=>e.replace(/-from$/,"");e.enterFromClass||(m=t(s)),e.appearFromClass||(g=t(l)),e.leaveFromClass||(y=t(p))}const v=function(e){if(null==e)return null;if(M(e))return[ic(e.enter),ic(e.leave)];{const t=ic(e);return[t,t]}}(r),_=v&&v[0],b=v&&v[1],{onBeforeEnter:S,onEnter:C,onEnterCancelled:E,onLeave:T,onLeaveCancelled:N,onBeforeAppear:w=S,onAppear:O=C,onAppearCancelled:k=E}=t,A=(e,t,n)=>{lc(e,t?u:c),lc(e,t?a:i),n&&n()},R=(e,t)=>{lc(e,d),lc(e,f),t&&t()},I=e=>(t,n)=>{const r=e?O:C,i=()=>A(t,e,n);oc(r,[t,i]),ac((()=>{lc(t,e?l:s),h&&lc(t,e?g:m),cc(t,e?u:c),rc(r)||pc(t,o,_,i)}))};return x(t,{onBeforeEnter(e){oc(S,[e]),cc(e,s),h&&cc(e,m),cc(e,i)},onBeforeAppear(e){oc(w,[e]),cc(e,l),h&&cc(e,g),cc(e,a)},onEnter:I(!1),onAppear:I(!0),onLeave(e,t){const n=()=>R(e,t);cc(e,p),h&&cc(e,y),mc(),cc(e,f),ac((()=>{lc(e,p),h&&lc(e,y),cc(e,d),rc(T)||pc(e,o,b,n)})),oc(T,[e,n])},onEnterCancelled(e){A(e,!1),oc(E,[e])},onAppearCancelled(e){A(e,!0),oc(k,[e])},onLeaveCancelled(e){R(e),oc(N,[e])}})}function ic(e){return Z(e)}function cc(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.add(t))),(e._vtc||(e._vtc=new Set)).add(t)}function lc(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.remove(t)));const{_vtc:n}=e;n&&(n.delete(t),n.size||(e._vtc=void 0))}function ac(e){requestAnimationFrame((()=>{requestAnimationFrame(e)}))}let uc=0;function pc(e,t,n,o){const r=e._endId=++uc,s=()=>{r===e._endId&&o()};if(n)return setTimeout(s,n);const{type:i,timeout:c,propCount:l}=fc(e,t);if(!i)return o();const a=i+"end";let u=0;const p=()=>{e.removeEventListener(a,f),s()},f=t=>{t.target===e&&++u>=l&&p()};setTimeout((()=>{u<l&&p()}),c+1),e.addEventListener(a,f)}function fc(e,t){const n=window.getComputedStyle(e),o=e=>(n[e]||"").split(", "),r=o("transitionDelay"),s=o("transitionDuration"),i=dc(r,s),c=o("animationDelay"),l=o("animationDuration"),a=dc(c,l);let u=null,p=0,f=0;t===Xi?i>0&&(u=Xi,p=i,f=s.length):t===Qi?a>0&&(u=Qi,p=a,f=l.length):(p=Math.max(i,a),u=p>0?i>a?Xi:Qi:null,f=u?u===Xi?s.length:l.length:0);return{type:u,timeout:p,propCount:f,hasTransform:u===Xi&&/\b(transform|all)(,|$)/.test(n.transitionProperty)}}function dc(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max(...t.map(((t,n)=>hc(t)+hc(e[n]))))}function hc(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}function mc(){return document.body.offsetHeight}const gc=new WeakMap,yc=new WeakMap,vc={name:"TransitionGroup",props:x({},nc,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=Cs(),o=vn();let r,s;return Gn((()=>{if(!r.length)return;const t=e.moveClass||`${e.name||"v"}-move`;if(!function(e,t,n){const o=e.cloneNode();e._vtc&&e._vtc.forEach((e=>{e.split(/\s+/).forEach((e=>e&&o.classList.remove(e)))}));n.split(/\s+/).forEach((e=>e&&o.classList.add(e))),o.style.display="none";const r=1===t.nodeType?t:t.parentNode;r.appendChild(o);const{hasTransform:s}=fc(o);return r.removeChild(o),s}(r[0].el,n.vnode.el,t))return;r.forEach(bc),r.forEach(Sc);const o=r.filter(Cc);mc(),o.forEach((e=>{const n=e.el,o=n.style;cc(n,t),o.transform=o.webkitTransform=o.transitionDuration="";const r=n._moveCb=e=>{e&&e.target!==n||e&&!/transform$/.test(e.propertyName)||(n.removeEventListener("transitionend",r),n._moveCb=null,lc(n,t))};n.addEventListener("transitionend",r)}))})),()=>{const i=vt(e),c=sc(i);let l=i.tag||Cr;!i.tag&&wi.checkCompatEnabled("TRANSITION_GROUP_ROOT",n.parent)&&(l="span"),r=s,s=t.default?wn(t.default()):[];for(let e=0;e<s.length;e++){const t=s[e];null!=t.key&&Nn(t,xn(t,c,o,n))}if(r)for(let e=0;e<r.length;e++){const t=r[e];Nn(t,xn(t,c,o,n)),gc.set(t,t.el.getBoundingClientRect())}return Dr(l,null,s)}},__isBuiltIn:!0},_c=vc;function bc(e){const t=e.el;t._moveCb&&t._moveCb(),t._enterCb&&t._enterCb()}function Sc(e){yc.set(e,e.el.getBoundingClientRect())}function Cc(e){const t=gc.get(e),n=yc.get(e),o=t.left-n.left,r=t.top-n.top;if(o||r){const t=e.el.style;return t.transform=t.webkitTransform=`translate(${o}px,${r}px)`,t.transitionDuration="0s",e}}const xc=e=>{const t=e.props["onUpdate:modelValue"];return w(t)?e=>J(t,e):t};function Ec(e){e.target.composing=!0}function Tc(e){const t=e.target;t.composing&&(t.composing=!1,function(e,t){const n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}(t,"input"))}const Nc={created(e,{modifiers:{lazy:t,trim:n,number:o}},r){e._assign=xc(r);const s=o||r.props&&"number"===r.props.type;Hi(e,t?"change":"input",(t=>{if(t.target.composing)return;let o=e.value;n?o=o.trim():s&&(o=Z(o)),e._assign(o)})),n&&Hi(e,"change",(()=>{e.value=e.value.trim()})),t||(Hi(e,"compositionstart",Ec),Hi(e,"compositionend",Tc),Hi(e,"change",Tc))},mounted(e,{value:t}){e.value=null==t?"":t},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:o,number:r}},s){if(e._assign=xc(s),e.composing)return;if(document.activeElement===e){if(n)return;if(o&&e.value.trim()===t)return;if((r||"number"===e.type)&&Z(e.value)===t)return}const i=null==t?"":t;e.value!==i&&(e.value=i)}},wc={deep:!0,created(e,t,n){e._assign=xc(n),Hi(e,"change",(()=>{const t=e._modelValue,n=Ic(e),o=e.checked,r=e._assign;if(w(t)){const e=d(t,n),s=-1!==e;if(o&&!s)r(t.concat(n));else if(!o&&s){const n=[...t];n.splice(e,1),r(n)}}else if(k(t)){const e=new Set(t);o?e.add(n):e.delete(n),r(e)}else r(Pc(e,o))}))},mounted:Oc,beforeUpdate(e,t,n){e._assign=xc(n),Oc(e,t,n)}};function Oc(e,{value:t,oldValue:n},o){e._modelValue=t,w(t)?e.checked=d(t,o.props.value)>-1:k(t)?e.checked=t.has(o.props.value):t!==n&&(e.checked=f(t,Pc(e,!0)))}const kc={created(e,{value:t},n){e.checked=f(t,n.props.value),e._assign=xc(n),Hi(e,"change",(()=>{e._assign(Ic(e))}))},beforeUpdate(e,{value:t,oldValue:n},o){e._assign=xc(o),t!==n&&(e.checked=f(t,o.props.value))}},Ac={deep:!0,created(e,{value:t,modifiers:{number:n}},o){const r=k(t);Hi(e,"change",(()=>{const t=Array.prototype.filter.call(e.options,(e=>e.selected)).map((e=>n?Z(Ic(e)):Ic(e)));e._assign(e.multiple?r?new Set(t):t:t[0])})),e._assign=xc(o)},mounted(e,{value:t}){Rc(e,t)},beforeUpdate(e,t,n){e._assign=xc(n)},updated(e,{value:t}){Rc(e,t)}};function Rc(e,t){const n=e.multiple;if(!n||w(t)||k(t)){for(let o=0,r=e.options.length;o<r;o++){const r=e.options[o],s=Ic(r);if(n)r.selected=w(t)?d(t,s)>-1:t.has(s);else if(f(Ic(r),t))return void(e.selectedIndex!==o&&(e.selectedIndex=o))}n||-1===e.selectedIndex||(e.selectedIndex=-1)}}function Ic(e){return"_value"in e?e._value:e.value}function Pc(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}const Mc={created(e,t,n){$c(e,t,n,null,"created")},mounted(e,t,n){$c(e,t,n,null,"mounted")},beforeUpdate(e,t,n,o){$c(e,t,n,o,"beforeUpdate")},updated(e,t,n,o){$c(e,t,n,o,"updated")}};function $c(e,t,n,o,r){let s;switch(e.tagName){case"SELECT":s=Ac;break;case"TEXTAREA":s=Nc;break;default:switch(n.props&&n.props.type){case"checkbox":s=wc;break;case"radio":s=kc;break;default:s=Nc}}const i=s[r];i&&i(e,t,n,o)}const Fc=["ctrl","shift","alt","meta"],Lc={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&&0!==e.button,middle:e=>"button"in e&&1!==e.button,right:e=>"button"in e&&2!==e.button,exact:(e,t)=>Fc.some((n=>e[`${n}Key`]&&!t.includes(n)))},Vc={esc:"escape",space:" ",up:"arrow-up",left:"arrow-left",right:"arrow-right",down:"arrow-down",delete:"backspace"},Bc={beforeMount(e,{value:t},{transition:n}){e._vod="none"===e.style.display?"":e.style.display,n&&t?n.beforeEnter(e):Dc(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:o}){!t!=!n&&(o?t?(o.beforeEnter(e),Dc(e,!0),o.enter(e)):o.leave(e,(()=>{Dc(e,!1)})):Dc(e,t))},beforeUnmount(e,{value:t}){Dc(e,t)}};function Dc(e,t){e.style.display=t?e._vod:"none"}const jc=x({patchProp:(e,t,n,r,s=!1,i,c,l,a)=>{"class"===t?function(e,t,n){const o=e._vtc;o&&(t=(t?[t,...o]:[...o]).join(" ")),null==t?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}(e,r,s):"style"===t?function(e,t,n){const o=e.style,r=I(n);if(n&&!r){for(const e in n)Ii(o,e,n[e]);if(t&&!I(t))for(const e in t)null==n[e]&&Ii(o,e,"")}else{const s=o.display;r?t!==n&&(o.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(o.display=s)}}(e,n,r):S(t)?C(t)||Wi(e,t,0,r,c):("."===t[0]?(t=t.slice(1),1):"^"===t[0]?(t=t.slice(1),0):function(e,t,n,o){if(o)return"innerHTML"===t||"textContent"===t||!!(t in e&&zi.test(t)&&R(n));if("spellcheck"===t||"draggable"===t)return!1;if("form"===t)return!1;if("list"===t&&"INPUT"===e.tagName)return!1;if("type"===t&&"TEXTAREA"===e.tagName)return!1;if(zi.test(t)&&I(n))return!1;return t in e}(e,t,r,s))?function(e,t,n,r,s,i,c){if("innerHTML"===t||"textContent"===t)return r&&c(r,s,i),void(e[t]=null==n?"":n);if("value"===t&&"PROGRESS"!==e.tagName&&!e.tagName.includes("-")){e._value=n;const o=null==n?"":n;return e.value===o&&"OPTION"!==e.tagName||(e.value=o),void(null==n&&e.removeAttribute(t))}if(""===n||null==n){const r=typeof e[t];if("boolean"===r)return void(e[t]=o(n));if(null==n&&"string"===r)return e[t]="",void e.removeAttribute(t);if("number"===r){try{e[t]=0}catch(l){}return void e.removeAttribute(t)}}if(!1===n&&wi.isCompatEnabled("ATTR_FALSE_VALUE",s)){const n=typeof e[t];if("string"===n||"number"===n)return e[t]="number"===n?0:"",void e.removeAttribute(t)}try{e[t]=n}catch(a){}}(e,t,r,i,c,l,a):("true-value"===t?e._trueValue=r:"false-value"===t&&(e._falseValue=r),Fi(e,t,r,s,c))}},Ai);let Uc,Hc=!1;function Wc(){return Uc||(Uc=zo(jc))}function Kc(){return Uc=Hc?Uc:Go(jc),Hc=!0,Uc}const zc=(...e)=>{Wc().render(...e)},Gc=(...e)=>{Kc().hydrate(...e)},qc=(...e)=>{const t=Wc().createApp(...e),{mount:n}=t;return t.mount=e=>{const o=Jc(e);if(!o)return;const r=t._component;R(r)||r.render||r.template||(r.template=o.innerHTML),o.innerHTML="";const s=n(o,!1,o instanceof SVGElement);return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),s},t};function Jc(e){if(I(e)){return document.querySelector(e)}return e}var Yc=Object.freeze({__proto__:null,render:zc,hydrate:Gc,createApp:qc,createSSRApp:(...e)=>{const t=Kc().createApp(...e),{mount:n}=t;return t.mount=e=>{const t=Jc(e);if(t)return n(t,!0,t instanceof SVGElement)},t},initDirectivesForSSR:v,defineCustomElement:Gi,defineSSRCustomElement:e=>Gi(e,Gc),VueElement:Ji,useCssModule:function(e="$style"){return g},useCssVars:function(e){const t=Cs();if(!t)return;const n=()=>Yi(t.subTree,e(t.proxy));di(n),Kn((()=>{const e=new MutationObserver(n);e.observe(t.subTree.el.parentNode,{childList:!0}),Jn((()=>e.disconnect()))}))},Transition:ec,TransitionGroup:_c,vModelText:Nc,vModelCheckbox:wc,vModelRadio:kc,vModelSelect:Ac,vModelDynamic:Mc,withModifiers:(e,t)=>(n,...o)=>{for(let e=0;e<t.length;e++){const o=Lc[t[e]];if(o&&o(n,t))return}return e(n,...o)},withKeys:(e,t)=>{let n,o=null;return o=Cs(),wi.isCompatEnabled("CONFIG_KEY_CODES",o)&&o&&(n=o.appContext.config.keyCodes),r=>{if(!("key"in r))return;const s=K(r.key);if(t.some((e=>e===s||Vc[e]===s)))return e(r);{const s=String(r.keyCode);if(wi.isCompatEnabled("V_ON_KEYCODE_MODIFIER",o)&&t.some((e=>e==s)))return e(r);if(n)for(const o of t){const t=n[o];if(t){if(w(t)?t.some((e=>String(e)===s)):String(t)===s)return e(r)}}}}},vShow:Bc,computed:$t,reactive:pt,ref:Tt,readonly:dt,unref:Ot,proxyRefs:At,isRef:Et,toRef:Pt,toRefs:function(e){const t=w(e)?new Array(e.length):{};for(const n in e)t[n]=Pt(e,n);return t},isProxy:yt,isReactive:mt,isReadonly:gt,customRef:function(e){return new Rt(e)},triggerRef:function(e){xt(e)},shallowRef:function(e){return Nt(e,!0)},shallowReactive:ft,shallowReadonly:function(e){return ht(e,!0,Le,st,at)},markRaw:_t,toRaw:vt,effect:function(e,t){e.effect&&(e=e.effect.fn);const n=new de(e);t&&(x(n,t),t.scope&&ne(n,t.scope)),t&&t.lazy||n.run();const o=n.run.bind(n);return o.effect=n,o},stop:function(e){e.effect.stop()},ReactiveEffect:de,effectScope:function(e){return new te(e)},EffectScope:te,getCurrentScope:function(){return Q},onScopeDispose:function(e){Q&&Q.cleanups.push(e)},watch:mi,watchEffect:function(e,t){return gi(e,null,t)},watchPostEffect:di,watchSyncEffect:function(e,t){return gi(e,null,{flush:"sync"})},onBeforeMount:Wn,onMounted:Kn,onBeforeUpdate:zn,onUpdated:Gn,onBeforeUnmount:qn,onUnmounted:Jn,onActivated:Fn,onDeactivated:Ln,onRenderTracked:Xn,onRenderTriggered:Zn,onErrorCaptured:Qn,onServerPrefetch:Yn,provide:gn,inject:yn,nextTick:ri,defineComponent:On,defineAsyncComponent:An,useAttrs:function(){return bi().attrs},useSlots:function(){return bi().slots},defineProps:function(){return null},defineEmits:function(){return null},defineExpose:function(e){},withDefaults:function(e,t){return null},mergeDefaults:function(e,t){const n=w(e)?e.reduce(((e,t)=>(e[t]={},e)),{}):e;for(const o in t){const e=n[o];e?w(e)||R(e)?n[o]={type:e,default:t[o]}:e.default=t[o]:null===e&&(n[o]={default:t[o]})}return n},createPropsRestProxy:function(e,t){const n={};for(const o in e)t.includes(o)||Object.defineProperty(n,o,{enumerable:!0,get:()=>e[o]});return n},withAsyncContext:function(e){const t=Cs();let n=e();return Es(),$(n)&&(n=n.catch((e=>{throw xs(t),e}))),[n,()=>xs(t)]},getCurrentInstance:Cs,h:Si,createVNode:Dr,cloneVNode:Ur,mergeProps:qr,isVNode:Mr,Fragment:Cr,Text:xr,Comment:Er,Static:Tr,Teleport:nr,Suspense:un,KeepAlive:Mn,BaseTransition:Sn,withDirectives:Oo,useSSRContext:()=>{},ssrContextKey:Ci,createRenderer:zo,createHydrationRenderer:Go,queuePostFlushCb:li,warn:function(e,...t){ye();const n=Bs.length?Bs[Bs.length-1].component:null,o=n&&n.appContext.config.warnHandler,r=function(){let e=Bs[Bs.length-1];if(!e)return[];const t=[];for(;e;){const n=t[0];n&&n.vnode===e?n.recurseCount++:t.push({vnode:e,recurseCount:0});const o=e.component&&e.component.parent;e=o&&o.vnode}return t}();if(o)Us(o,n,11,[e+t.join(""),n&&n.proxy,r.map((({vnode:e})=>`at <${Vs(n,e.type)}>`)).join("\n"),r]);else{const n=[`[Vue warn]: ${e}`,...t];r.length&&n.push("\n",...function(e){const t=[];return e.forEach(((e,n)=>{t.push(...0===n?[]:["\n"],...function({vnode:e,recurseCount:t}){const n=t>0?`... (${t} recursive calls)`:"",o=` at <${Vs(e.component,e.type,!!e.component&&null==e.component.parent)}`,r=">"+n;return e.props?[o,...Ds(e.props),r]:[o+r]}(e))})),t}(r)),console.warn(...n)}ve()},handleError:Ws,callWithErrorHandling:Us,callWithAsyncErrorHandling:Hs,resolveComponent:function(e,t){return lr(or,e,!0,t)||e},resolveDirective:ir,resolveDynamicComponent:sr,registerRuntimeCompiler:Rs,isRuntimeOnly:Is,useTransitionState:vn,resolveTransitionHooks:xn,setTransitionHooks:Nn,getTransitionRawChildren:wn,initCustomFormatter:function(){},get devtools(){return Ft},setDevtoolsHook:function e(t,n){var o,r;if(Ft=t,Ft)Ft.enabled=!0,Lt.forEach((({event:e,args:t})=>Ft.emit(e,...t))),Lt=[];else if("undefined"!=typeof window&&window.HTMLElement&&!(null===(r=null===(o=window.navigator)||void 0===o?void 0:o.userAgent)||void 0===r?void 0:r.includes("jsdom"))){(n.__VUE_DEVTOOLS_HOOK_REPLAY__=n.__VUE_DEVTOOLS_HOOK_REPLAY__||[]).push((t=>{e(t,n)})),setTimeout((()=>{Ft||(n.__VUE_DEVTOOLS_HOOK_REPLAY__=null,Lt=[])}),3e3)}else Lt=[]},withCtx:on,pushScopeId:function(e){tn=e},popScopeId:function(){tn=null},withScopeId:e=>on,renderList:Zr,toHandlers:ts,renderSlot:Qr,createSlots:Xr,withMemo:function(e,t,n,o){const r=n[o];if(r&&xi(r,e))return r;const s=t();return s.memo=e.slice(),n[o]=s},isMemoSame:xi,openBlock:Or,createBlock:Pr,setBlockTracking:Rr,createTextVNode:Hr,createCommentVNode:Wr,createStaticVNode:function(e,t){const n=Dr(Tr,null,e);return n.staticCount=t,n},createElementVNode:Br,createElementBlock:function(e,t,n,o,r,s){return Ir(Br(e,t,n,o,r,s,!0))},guardReactiveProps:jr,toDisplayString:h,camelize:H,capitalize:z,toHandlerKey:G,normalizeProps:function(e){if(!e)return null;let{class:t,style:n}=e;return t&&!I(t)&&(e.class=l(t)),n&&(e.style=r(n)),e},normalizeClass:l,normalizeStyle:r,transformVNodeArgs:function(e){},version:Ei,ssrUtils:null,resolveFilter:Ti,compatUtils:wi});function Zc(...e){const t=qc(...e);return wi.isCompatEnabled("RENDER_FUNCTION",null)&&(t.component("__compat__transition",ec),t.component("__compat__transition-group",_c),t.component("__compat__keep-alive",Mn),t._context.directives.show=Bc,t._context.directives.model=Mc),t}function Xc(e){throw e}function Qc(e){}function el(e,t,n,o){const r=new SyntaxError(String(e));return r.code=e,r.loc=t,r}const tl=Symbol(""),nl=Symbol(""),ol=Symbol(""),rl=Symbol(""),sl=Symbol(""),il=Symbol(""),cl=Symbol(""),ll=Symbol(""),al=Symbol(""),ul=Symbol(""),pl=Symbol(""),fl=Symbol(""),dl=Symbol(""),hl=Symbol(""),ml=Symbol(""),gl=Symbol(""),yl=Symbol(""),vl=Symbol(""),_l=Symbol(""),bl=Symbol(""),Sl=Symbol(""),Cl=Symbol(""),xl=Symbol(""),El=Symbol(""),Tl=Symbol(""),Nl=Symbol(""),wl=Symbol(""),Ol=Symbol(""),kl=Symbol(""),Al=Symbol(""),Rl=Symbol(""),Il=Symbol(""),Pl=Symbol(""),Ml=Symbol(""),$l=Symbol(""),Fl=Symbol(""),Ll=Symbol(""),Vl=Symbol(""),Bl=Symbol(""),Dl={[tl]:"Fragment",[nl]:"Teleport",[ol]:"Suspense",[rl]:"KeepAlive",[sl]:"BaseTransition",[il]:"openBlock",[cl]:"createBlock",[ll]:"createElementBlock",[al]:"createVNode",[ul]:"createElementVNode",[pl]:"createCommentVNode",[fl]:"createTextVNode",[dl]:"createStaticVNode",[hl]:"resolveComponent",[ml]:"resolveDynamicComponent",[gl]:"resolveDirective",[yl]:"resolveFilter",[vl]:"withDirectives",[_l]:"renderList",[bl]:"renderSlot",[Sl]:"createSlots",[Cl]:"toDisplayString",[xl]:"mergeProps",[El]:"normalizeClass",[Tl]:"normalizeStyle",[Nl]:"normalizeProps",[wl]:"guardReactiveProps",[Ol]:"toHandlers",[kl]:"camelize",[Al]:"capitalize",[Rl]:"toHandlerKey",[Il]:"setBlockTracking",[Pl]:"pushScopeId",[Ml]:"popScopeId",[$l]:"withCtx",[Fl]:"unref",[Ll]:"isRef",[Vl]:"withMemo",[Bl]:"isMemoSame"};const jl={source:"",start:{line:1,column:1,offset:0},end:{line:1,column:1,offset:0}};function Ul(e,t,n,o,r,s,i,c=!1,l=!1,a=!1,u=jl){return e&&(c?(e.helper(il),e.helper(ya(e.inSSR,a))):e.helper(ga(e.inSSR,a)),i&&e.helper(vl)),{type:13,tag:t,props:n,children:o,patchFlag:r,dynamicProps:s,directives:i,isBlock:c,disableTracking:l,isComponent:a,loc:u}}function Hl(e,t=jl){return{type:17,loc:t,elements:e}}function Wl(e,t=jl){return{type:15,loc:t,properties:e}}function Kl(e,t){return{type:16,loc:jl,key:I(e)?zl(e,!0):e,value:t}}function zl(e,t=!1,n=jl,o=0){return{type:4,loc:n,content:e,isStatic:t,constType:t?3:o}}function Gl(e,t=jl){return{type:8,loc:t,children:e}}function ql(e,t=[],n=jl){return{type:14,loc:n,callee:e,arguments:t}}function Jl(e,t,n=!1,o=!1,r=jl){return{type:18,params:e,returns:t,newline:n,isSlot:o,loc:r}}function Yl(e,t,n,o=!0){return{type:19,test:e,consequent:t,alternate:n,newline:o,loc:jl}}const Zl=e=>4===e.type&&e.isStatic,Xl=(e,t)=>e===t||e===K(t);function Ql(e){return Xl(e,"Teleport")?nl:Xl(e,"Suspense")?ol:Xl(e,"KeepAlive")?rl:Xl(e,"BaseTransition")?sl:void 0}const ea=/^\d|[^\$\w]/,ta=e=>!ea.test(e),na=/[A-Za-z_$\xA0-\uFFFF]/,oa=/[\.\?\w$\xA0-\uFFFF]/,ra=/\s+[.[]\s*|\s*[.[]\s+/g,sa=e=>{e=e.trim().replace(ra,(e=>e.trim()));let t=0,n=[],o=0,r=0,s=null;for(let i=0;i<e.length;i++){const c=e.charAt(i);switch(t){case 0:if("["===c)n.push(t),t=1,o++;else if("("===c)n.push(t),t=2,r++;else if(!(0===i?na:oa).test(c))return!1;break;case 1:"'"===c||'"'===c||"`"===c?(n.push(t),t=3,s=c):"["===c?o++:"]"===c&&(--o||(t=n.pop()));break;case 2:if("'"===c||'"'===c||"`"===c)n.push(t),t=3,s=c;else if("("===c)r++;else if(")"===c){if(i===e.length-1)return!1;--r||(t=n.pop())}break;case 3:c===s&&(t=n.pop(),s=null)}}return!o&&!r};function ia(e,t,n){const o={source:e.source.slice(t,t+n),start:ca(e.start,e.source,t),end:e.end};return null!=n&&(o.end=ca(e.start,e.source,t+n)),o}function ca(e,t,n=t.length){return la(x({},e),t,n)}function la(e,t,n=t.length){let o=0,r=-1;for(let s=0;s<n;s++)10===t.charCodeAt(s)&&(o++,r=s);return e.offset+=n,e.line+=o,e.column=-1===r?e.column+n:n-r,e}function aa(e,t,n=!1){for(let o=0;o<e.props.length;o++){const r=e.props[o];if(7===r.type&&(n||r.exp)&&(I(t)?r.name===t:t.test(r.name)))return r}}function ua(e,t,n=!1,o=!1){for(let r=0;r<e.props.length;r++){const s=e.props[r];if(6===s.type){if(n)continue;if(s.name===t&&(s.value||o))return s}else if("bind"===s.name&&(s.exp||o)&&pa(s.arg,t))return s}}function pa(e,t){return!(!e||!Zl(e)||e.content!==t)}function fa(e){return 5===e.type||2===e.type}function da(e){return 7===e.type&&"slot"===e.name}function ha(e){return 1===e.type&&3===e.tagType}function ma(e){return 1===e.type&&2===e.tagType}function ga(e,t){return e||t?al:ul}function ya(e,t){return e||t?cl:ll}const va=new Set([Nl,wl]);function _a(e,t=[]){if(e&&!I(e)&&14===e.type){const n=e.callee;if(!I(n)&&va.has(n))return _a(e.arguments[0],t.concat(e))}return[e,t]}function ba(e,t,n){let o;let r,s=13===e.type?e.props:e.arguments[2],i=[];if(s&&!I(s)&&14===s.type){const e=_a(s);s=e[0],i=e[1],r=i[i.length-1]}if(null==s||I(s))o=Wl([t]);else if(14===s.type){const e=s.arguments[0];I(e)||15!==e.type?s.callee===Ol?o=ql(n.helper(xl),[Wl([t]),s]):s.arguments.unshift(Wl([t])):e.properties.unshift(t),!o&&(o=s)}else if(15===s.type){let e=!1;if(4===t.key.type){const n=t.key.content;e=s.properties.some((e=>4===e.key.type&&e.key.content===n))}e||s.properties.unshift(t),o=s}else o=ql(n.helper(xl),[Wl([t]),s]),r&&r.callee===wl&&(r=i[i.length-2]);13===e.type?r?r.arguments[0]=o:e.props=o:r?r.arguments[0]=o:e.arguments[2]=o}function Sa(e,t){return`_${t}_${e.replace(/[^\w]/g,((t,n)=>"-"===t?"_":e.charCodeAt(n).toString()))}`}function Ca(e,{helper:t,removeHelper:n,inSSR:o}){e.isBlock||(e.isBlock=!0,n(ga(o,e.isComponent)),t(il),t(ya(o,e.isComponent)))}function xa(e,t){const n=t.options?t.options.compatConfig:t.compatConfig,o=n&&n[e];return"MODE"===e?o||3:o}function Ea(e,t){const n=xa("MODE",t),o=xa(e,t);return 3===n?!0===o:!1!==o}function Ta(e,t,n,...o){return Ea(e,t)}const Na=/&(gt|lt|amp|apos|quot);/g,wa={gt:">",lt:"<",amp:"&",apos:"'",quot:'"'},Oa={delimiters:["{{","}}"],getNamespace:()=>0,getTextMode:()=>0,isVoidTag:_,isPreTag:_,isCustomElement:_,decodeEntities:e=>e.replace(Na,((e,t)=>wa[t])),onError:Xc,onWarn:Qc,comments:!1};function ka(e,t={}){const n=function(e,t){const n=x({},Oa);let o;for(o in t)n[o]=void 0===t[o]?Oa[o]:t[o];return{options:n,column:1,line:1,offset:0,originalSource:e,source:e,inPre:!1,inVPre:!1,onWarn:n.onWarn}}(e,t),o=Ha(n);return function(e,t=jl){return{type:0,children:e,helpers:[],components:[],directives:[],hoists:[],imports:[],cached:0,temps:0,codegenNode:void 0,loc:t}}(Aa(n,0,[]),Wa(n,o))}function Aa(e,t,n){const o=Ka(n),r=o?o.ns:0,s=[];for(;!Ya(e,t,n);){const i=e.source;let c;if(0===t||1===t)if(!e.inVPre&&za(i,e.options.delimiters[0]))c=Da(e,t);else if(0===t&&"<"===i[0])if(1===i.length);else if("!"===i[1])c=za(i,"\x3c!--")?Pa(e):za(i,"<!DOCTYPE")?Ma(e):za(i,"<![CDATA[")&&0!==r?Ia(e,n):Ma(e);else if("/"===i[1])if(2===i.length);else{if(">"===i[2]){Ga(e,3);continue}if(/[a-z]/i.test(i[2])){La(e,1,o);continue}c=Ma(e)}else/[a-z]/i.test(i[1])?(c=$a(e,n),Ea("COMPILER_NATIVE_TEMPLATE",e)&&c&&"template"===c.tag&&!c.props.some((e=>7===e.type&&Fa(e.name)))&&(c=c.children)):"?"===i[1]&&(c=Ma(e));if(c||(c=ja(e,t)),w(c))for(let e=0;e<c.length;e++)Ra(s,c[e]);else Ra(s,c)}let i=!1;if(2!==t&&1!==t){const t="preserve"!==e.options.whitespace;for(let n=0;n<s.length;n++){const o=s[n];if(e.inPre||2!==o.type)3!==o.type||e.options.comments||(i=!0,s[n]=null);else if(/[^\t\r\n\f ]/.test(o.content))t&&(o.content=o.content.replace(/[\t\r\n\f ]+/g," "));else{const e=s[n-1],r=s[n+1];!e||!r||t&&(3===e.type||3===r.type||1===e.type&&1===r.type&&/[\r\n]/.test(o.content))?(i=!0,s[n]=null):o.content=" "}}if(e.inPre&&o&&e.options.isPreTag(o.tag)){const e=s[0];e&&2===e.type&&(e.content=e.content.replace(/^\r?\n/,""))}}return i?s.filter(Boolean):s}function Ra(e,t){if(2===t.type){const n=Ka(e);if(n&&2===n.type&&n.loc.end.offset===t.loc.start.offset)return n.content+=t.content,n.loc.end=t.loc.end,void(n.loc.source+=t.loc.source)}e.push(t)}function Ia(e,t){Ga(e,9);const n=Aa(e,3,t);return 0===e.source.length||Ga(e,3),n}function Pa(e){const t=Ha(e);let n;const o=/--(\!)?>/.exec(e.source);if(o){n=e.source.slice(4,o.index);const t=e.source.slice(0,o.index);let r=1,s=0;for(;-1!==(s=t.indexOf("\x3c!--",r));)Ga(e,s-r+1),r=s+1;Ga(e,o.index+o[0].length-r+1)}else n=e.source.slice(4),Ga(e,e.source.length);return{type:3,content:n,loc:Wa(e,t)}}function Ma(e){const t=Ha(e),n="?"===e.source[1]?1:2;let o;const r=e.source.indexOf(">");return-1===r?(o=e.source.slice(n),Ga(e,e.source.length)):(o=e.source.slice(n,r),Ga(e,r+1)),{type:3,content:o,loc:Wa(e,t)}}function $a(e,t){const n=e.inPre,o=e.inVPre,r=Ka(t),s=La(e,0,r),i=e.inPre&&!n,c=e.inVPre&&!o;if(s.isSelfClosing||e.options.isVoidTag(s.tag))return i&&(e.inPre=!1),c&&(e.inVPre=!1),s;t.push(s);const l=e.options.getTextMode(s,r),a=Aa(e,l,t);t.pop();{const t=s.props.find((e=>6===e.type&&"inline-template"===e.name));if(t&&Ta("COMPILER_INLINE_TEMPLATE",e)){const n=Wa(e,s.loc.end);t.value={type:2,content:n.source,loc:n}}}if(s.children=a,Za(e.source,s.tag))La(e,1,r);else if(0===e.source.length&&"script"===s.tag.toLowerCase()){const e=a[0];e&&za(e.loc.source,"\x3c!--")}return s.loc=Wa(e,s.loc.start),i&&(e.inPre=!1),c&&(e.inVPre=!1),s}const Fa=e("if,else,else-if,for,slot");function La(e,t,n){const o=Ha(e),r=/^<\/?([a-z][^\t\r\n\f />]*)/i.exec(e.source),s=r[1],i=e.options.getNamespace(s,n);Ga(e,r[0].length),qa(e);const c=Ha(e),l=e.source;e.options.isPreTag(s)&&(e.inPre=!0);let a=Va(e,t);0===t&&!e.inVPre&&a.some((e=>7===e.type&&"pre"===e.name))&&(e.inVPre=!0,x(e,c),e.source=l,a=Va(e,t).filter((e=>"v-pre"!==e.name)));let u=!1;if(0===e.source.length||(u=za(e.source,"/>"),Ga(e,u?2:1)),1===t)return;let p=0;return e.inVPre||("slot"===s?p=2:"template"===s?a.some((e=>7===e.type&&Fa(e.name)))&&(p=3):function(e,t,n){const o=n.options;if(o.isCustomElement(e))return!1;if("component"===e||/^[A-Z]/.test(e)||Ql(e)||o.isBuiltInComponent&&o.isBuiltInComponent(e)||o.isNativeTag&&!o.isNativeTag(e))return!0;for(let r=0;r<t.length;r++){const e=t[r];if(6===e.type){if("is"===e.name&&e.value){if(e.value.content.startsWith("vue:"))return!0;if(Ta("COMPILER_IS_ON_ELEMENT",n))return!0}}else{if("is"===e.name)return!0;if("bind"===e.name&&pa(e.arg,"is")&&Ta("COMPILER_IS_ON_ELEMENT",n))return!0}}}(s,a,e)&&(p=1)),{type:1,ns:i,tag:s,tagType:p,props:a,isSelfClosing:u,children:[],loc:Wa(e,o),codegenNode:void 0}}function Va(e,t){const n=[],o=new Set;for(;e.source.length>0&&!za(e.source,">")&&!za(e.source,"/>");){if(za(e.source,"/")){Ga(e,1),qa(e);continue}const r=Ba(e,o);6===r.type&&r.value&&"class"===r.name&&(r.value.content=r.value.content.replace(/\s+/g," ").trim()),0===t&&n.push(r),/^[^\t\r\n\f />]/.test(e.source),qa(e)}return n}function Ba(e,t){const n=Ha(e),o=/^[^\t\r\n\f />][^\t\r\n\f />=]*/.exec(e.source)[0];t.has(o),t.add(o);{const e=/["'<]/g;let t;for(;t=e.exec(o););}let r;Ga(e,o.length),/^[\t\r\n\f ]*=/.test(e.source)&&(qa(e),Ga(e,1),qa(e),r=function(e){const t=Ha(e);let n;const o=e.source[0],r='"'===o||"'"===o;if(r){Ga(e,1);const t=e.source.indexOf(o);-1===t?n=Ua(e,e.source.length,4):(n=Ua(e,t,4),Ga(e,1))}else{const t=/^[^\t\r\n\f >]+/.exec(e.source);if(!t)return;const o=/["'<=`]/g;let r;for(;r=o.exec(t[0]););n=Ua(e,t[0].length,4)}return{content:n,isQuoted:r,loc:Wa(e,t)}}(e));const s=Wa(e,n);if(!e.inVPre&&/^(v-[A-Za-z0-9-]|:|\.|@|#)/.test(o)){const t=/(?:^v-([a-z0-9-]+))?(?:(?::|^\.|^@|^#)(\[[^\]]+\]|[^\.]+))?(.+)?$/i.exec(o);let i,c=za(o,"."),l=t[1]||(c||za(o,":")?"bind":za(o,"@")?"on":"slot");if(t[2]){const r="slot"===l,s=o.lastIndexOf(t[2]),c=Wa(e,Ja(e,n,s),Ja(e,n,s+t[2].length+(r&&t[3]||"").length));let a=t[2],u=!0;a.startsWith("[")?(u=!1,a=a.endsWith("]")?a.slice(1,a.length-1):a.slice(1)):r&&(a+=t[3]||""),i={type:4,content:a,isStatic:u,constType:u?3:0,loc:c}}if(r&&r.isQuoted){const e=r.loc;e.start.offset++,e.start.column++,e.end=ca(e.start,r.content),e.source=e.source.slice(1,-1)}const a=t[3]?t[3].slice(1).split("."):[];return c&&a.push("prop"),"bind"===l&&i&&a.includes("sync")&&Ta("COMPILER_V_BIND_SYNC",e,0)&&(l="model",a.splice(a.indexOf("sync"),1)),{type:7,name:l,exp:r&&{type:4,content:r.content,isStatic:!1,constType:0,loc:r.loc},arg:i,modifiers:a,loc:s}}return!e.inVPre&&za(o,"v-"),{type:6,name:o,value:r&&{type:2,content:r.content,loc:r.loc},loc:s}}function Da(e,t){const[n,o]=e.options.delimiters,r=e.source.indexOf(o,n.length);if(-1===r)return;const s=Ha(e);Ga(e,n.length);const i=Ha(e),c=Ha(e),l=r-n.length,a=e.source.slice(0,l),u=Ua(e,l,t),p=u.trim(),f=u.indexOf(p);f>0&&la(i,a,f);return la(c,a,l-(u.length-p.length-f)),Ga(e,o.length),{type:5,content:{type:4,isStatic:!1,constType:0,content:p,loc:Wa(e,i,c)},loc:Wa(e,s)}}function ja(e,t){const n=3===t?["]]>"]:["<",e.options.delimiters[0]];let o=e.source.length;for(let s=0;s<n.length;s++){const t=e.source.indexOf(n[s],1);-1!==t&&o>t&&(o=t)}const r=Ha(e);return{type:2,content:Ua(e,o,t),loc:Wa(e,r)}}function Ua(e,t,n){const o=e.source.slice(0,t);return Ga(e,t),2===n||3===n||-1===o.indexOf("&")?o:e.options.decodeEntities(o,4===n)}function Ha(e){const{column:t,line:n,offset:o}=e;return{column:t,line:n,offset:o}}function Wa(e,t,n){return{start:t,end:n=n||Ha(e),source:e.originalSource.slice(t.offset,n.offset)}}function Ka(e){return e[e.length-1]}function za(e,t){return e.startsWith(t)}function Ga(e,t){const{source:n}=e;la(e,n,t),e.source=n.slice(t)}function qa(e){const t=/^[\t\r\n\f ]+/.exec(e.source);t&&Ga(e,t[0].length)}function Ja(e,t,n){return ca(t,e.originalSource.slice(t.offset,n),n)}function Ya(e,t,n){const o=e.source;switch(t){case 0:if(za(o,"</"))for(let e=n.length-1;e>=0;--e)if(Za(o,n[e].tag))return!0;break;case 1:case 2:{const e=Ka(n);if(e&&Za(o,e.tag))return!0;break}case 3:if(za(o,"]]>"))return!0}return!o}function Za(e,t){return za(e,"</")&&e.slice(2,2+t.length).toLowerCase()===t.toLowerCase()&&/[\t\r\n\f />]/.test(e[2+t.length]||">")}function Xa(e,t){eu(e,t,Qa(e,e.children[0]))}function Qa(e,t){const{children:n}=e;return 1===n.length&&1===t.type&&!ma(t)}function eu(e,t,n=!1){let o=!0;const{children:r}=e,s=r.length;let i=0;for(let c=0;c<r.length;c++){const e=r[c];if(1===e.type&&0===e.tagType){const r=n?0:tu(e,t);if(r>0){if(r<3&&(o=!1),r>=2){e.codegenNode.patchFlag="-1",e.codegenNode=t.hoist(e.codegenNode),i++;continue}}else{const n=e.codegenNode;if(13===n.type){const o=iu(n);if((!o||512===o||1===o)&&ru(e,t)>=2){const o=su(e);o&&(n.props=t.hoist(o))}n.dynamicProps&&(n.dynamicProps=t.hoist(n.dynamicProps))}}}else if(12===e.type){const n=tu(e.content,t);n>0&&(n<3&&(o=!1),n>=2&&(e.codegenNode=t.hoist(e.codegenNode),i++))}if(1===e.type){const n=1===e.tagType;n&&t.scopes.vSlot++,eu(e,t),n&&t.scopes.vSlot--}else if(11===e.type)eu(e,t,1===e.children.length);else if(9===e.type)for(let n=0;n<e.branches.length;n++)eu(e.branches[n],t,1===e.branches[n].children.length)}o&&i&&t.transformHoist&&t.transformHoist(r,t,e),i&&i===s&&1===e.type&&0===e.tagType&&e.codegenNode&&13===e.codegenNode.type&&w(e.codegenNode.children)&&(e.codegenNode.children=t.hoist(Hl(e.codegenNode.children)))}function tu(e,t){const{constantCache:n}=t;switch(e.type){case 1:if(0!==e.tagType)return 0;const o=n.get(e);if(void 0!==o)return o;const r=e.codegenNode;if(13!==r.type)return 0;if(iu(r))return n.set(e,0),0;{let o=3;const s=ru(e,t);if(0===s)return n.set(e,0),0;s<o&&(o=s);for(let r=0;r<e.children.length;r++){const s=tu(e.children[r],t);if(0===s)return n.set(e,0),0;s<o&&(o=s)}if(o>1)for(let r=0;r<e.props.length;r++){const s=e.props[r];if(7===s.type&&"bind"===s.name&&s.exp){const r=tu(s.exp,t);if(0===r)return n.set(e,0),0;r<o&&(o=r)}}return r.isBlock&&(t.removeHelper(il),t.removeHelper(ya(t.inSSR,r.isComponent)),r.isBlock=!1,t.helper(ga(t.inSSR,r.isComponent))),n.set(e,o),o}case 2:case 3:return 3;default:return 0;case 5:case 12:return tu(e.content,t);case 4:return e.constType;case 8:let s=3;for(let n=0;n<e.children.length;n++){const o=e.children[n];if(I(o)||P(o))continue;const r=tu(o,t);if(0===r)return 0;r<s&&(s=r)}return s}}const nu=new Set([El,Tl,Nl,wl]);function ou(e,t){if(14===e.type&&!I(e.callee)&&nu.has(e.callee)){const n=e.arguments[0];if(4===n.type)return tu(n,t);if(14===n.type)return ou(n,t)}return 0}function ru(e,t){let n=3;const o=su(e);if(o&&15===o.type){const{properties:e}=o;for(let o=0;o<e.length;o++){const{key:r,value:s}=e[o],i=tu(r,t);if(0===i)return i;let c;if(i<n&&(n=i),c=4===s.type?tu(s,t):14===s.type?ou(s,t):0,0===c)return c;c<n&&(n=c)}}return n}function su(e){const t=e.codegenNode;if(13===t.type)return t.props}function iu(e){const t=e.patchFlag;return t?parseInt(t,10):void 0}function cu(e,{filename:t="",prefixIdentifiers:n=!1,hoistStatic:o=!1,cacheHandlers:r=!1,nodeTransforms:s=[],directiveTransforms:i={},transformHoist:c=null,isBuiltInComponent:l=v,isCustomElement:a=v,expressionPlugins:u=[],scopeId:p=null,slotted:f=!0,ssr:d=!1,inSSR:h=!1,ssrCssVars:m="",bindingMetadata:y=g,inline:_=!1,isTS:b=!1,onError:S=Xc,onWarn:C=Qc,compatConfig:x}){const E=t.replace(/\?.*$/,"").match(/([^/\\]+)\.\w+$/),T={selfName:E&&z(H(E[1])),prefixIdentifiers:n,hoistStatic:o,cacheHandlers:r,nodeTransforms:s,directiveTransforms:i,transformHoist:c,isBuiltInComponent:l,isCustomElement:a,expressionPlugins:u,scopeId:p,slotted:f,ssr:d,inSSR:h,ssrCssVars:m,bindingMetadata:y,inline:_,isTS:b,onError:S,onWarn:C,compatConfig:x,root:e,helpers:new Map,components:new Set,directives:new Set,hoists:[],imports:[],constantCache:new Map,temps:0,cached:0,identifiers:Object.create(null),scopes:{vFor:0,vSlot:0,vPre:0,vOnce:0},parent:null,currentNode:e,childIndex:0,inVOnce:!1,helper(e){const t=T.helpers.get(e)||0;return T.helpers.set(e,t+1),e},removeHelper(e){const t=T.helpers.get(e);if(t){const n=t-1;n?T.helpers.set(e,n):T.helpers.delete(e)}},helperString:e=>`_${Dl[T.helper(e)]}`,replaceNode(e){T.parent.children[T.childIndex]=T.currentNode=e},removeNode(e){const t=e?T.parent.children.indexOf(e):T.currentNode?T.childIndex:-1;e&&e!==T.currentNode?T.childIndex>t&&(T.childIndex--,T.onNodeRemoved()):(T.currentNode=null,T.onNodeRemoved()),T.parent.children.splice(t,1)},onNodeRemoved:()=>{},addIdentifiers(e){},removeIdentifiers(e){},hoist(e){I(e)&&(e=zl(e)),T.hoists.push(e);const t=zl(`_hoisted_${T.hoists.length}`,!1,e.loc,2);return t.hoisted=e,t},cache:(e,t=!1)=>function(e,t,n=!1){return{type:20,index:e,value:t,isVNode:n,loc:jl}}(T.cached++,e,t)};return T.filters=new Set,T}function lu(e,t){const n=cu(e,t);au(e,n),t.hoistStatic&&Xa(e,n),t.ssr||function(e,t){const{helper:n}=t,{children:o}=e;if(1===o.length){const n=o[0];if(Qa(e,n)&&n.codegenNode){const o=n.codegenNode;13===o.type&&Ca(o,t),e.codegenNode=o}else e.codegenNode=n}else if(o.length>1){let o=64;e.codegenNode=Ul(t,n(tl),void 0,e.children,o+"",void 0,void 0,!0,void 0,!1)}}(e,n),e.helpers=[...n.helpers.keys()],e.components=[...n.components],e.directives=[...n.directives],e.imports=n.imports,e.hoists=n.hoists,e.temps=n.temps,e.cached=n.cached,e.filters=[...n.filters]}function au(e,t){t.currentNode=e;const{nodeTransforms:n}=t,o=[];for(let s=0;s<n.length;s++){const r=n[s](e,t);if(r&&(w(r)?o.push(...r):o.push(r)),!t.currentNode)return;e=t.currentNode}switch(e.type){case 3:t.ssr||t.helper(pl);break;case 5:t.ssr||t.helper(Cl);break;case 9:for(let n=0;n<e.branches.length;n++)au(e.branches[n],t);break;case 10:case 11:case 1:case 0:!function(e,t){let n=0;const o=()=>{n--};for(;n<e.children.length;n++){const r=e.children[n];I(r)||(t.parent=e,t.childIndex=n,t.onNodeRemoved=o,au(r,t))}}(e,t)}t.currentNode=e;let r=o.length;for(;r--;)o[r]()}function uu(e,t){const n=I(e)?t=>t===e:t=>e.test(t);return(e,o)=>{if(1===e.type){const{props:r}=e;if(3===e.tagType&&r.some(da))return;const s=[];for(let i=0;i<r.length;i++){const c=r[i];if(7===c.type&&n(c.name)){r.splice(i,1),i--;const n=t(e,c,o);n&&s.push(n)}}return s}}}const pu="/*#__PURE__*/";function fu(e,t={}){const n=function(e,{mode:t="function",prefixIdentifiers:n="module"===t,sourceMap:o=!1,filename:r="template.vue.html",scopeId:s=null,optimizeImports:i=!1,runtimeGlobalName:c="Vue",runtimeModuleName:l="vue",ssrRuntimeModuleName:a="vue/server-renderer",ssr:u=!1,isTS:p=!1,inSSR:f=!1}){const d={mode:t,prefixIdentifiers:n,sourceMap:o,filename:r,scopeId:s,optimizeImports:i,runtimeGlobalName:c,runtimeModuleName:l,ssrRuntimeModuleName:a,ssr:u,isTS:p,inSSR:f,source:e.loc.source,code:"",column:1,line:1,offset:0,indentLevel:0,pure:!1,map:void 0,helper:e=>`_${Dl[e]}`,push(e,t){d.code+=e},indent(){h(++d.indentLevel)},deindent(e=!1){e?--d.indentLevel:h(--d.indentLevel)},newline(){h(d.indentLevel)}};function h(e){d.push("\n"+" ".repeat(e))}return d}(e,t);t.onContextCreated&&t.onContextCreated(n);const{mode:o,push:r,prefixIdentifiers:s,indent:i,deindent:c,newline:l,ssr:a}=n,u=e.helpers.length>0,p=!s&&"module"!==o;!function(e,t){const{push:n,newline:o,runtimeGlobalName:r}=t,s=r,i=e=>`${Dl[e]}: _${Dl[e]}`;if(e.helpers.length>0&&(n(`const _Vue = ${s}\n`),e.hoists.length)){n(`const { ${[al,ul,pl,fl,dl].filter((t=>e.helpers.includes(t))).map(i).join(", ")} } = _Vue\n`)}(function(e,t){if(!e.length)return;t.pure=!0;const{push:n,newline:o}=t;o();for(let r=0;r<e.length;r++){const s=e[r];s&&(n(`const _hoisted_${r+1} = `),gu(s,t),o())}t.pure=!1})(e.hoists,t),o(),n("return ")}(e,n);if(r(`function ${a?"ssrRender":"render"}(${(a?["_ctx","_push","_parent","_attrs"]:["_ctx","_cache"]).join(", ")}) {`),i(),p&&(r("with (_ctx) {"),i(),u&&(r(`const { ${e.helpers.map((e=>`${Dl[e]}: _${Dl[e]}`)).join(", ")} } = _Vue`),r("\n"),l())),e.components.length&&(du(e.components,"component",n),(e.directives.length||e.temps>0)&&l()),e.directives.length&&(du(e.directives,"directive",n),e.temps>0&&l()),e.filters&&e.filters.length&&(l(),du(e.filters,"filter",n),l()),e.temps>0){r("let ");for(let t=0;t<e.temps;t++)r(`${t>0?", ":""}_temp${t}`)}return(e.components.length||e.directives.length||e.temps)&&(r("\n"),l()),a||r("return "),e.codegenNode?gu(e.codegenNode,n):r("null"),p&&(c(),r("}")),c(),r("}"),{ast:e,code:n.code,preamble:"",map:n.map?n.map.toJSON():void 0}}function du(e,t,{helper:n,push:o,newline:r,isTS:s}){const i=n("filter"===t?yl:"component"===t?hl:gl);for(let c=0;c<e.length;c++){let n=e[c];const l=n.endsWith("__self");l&&(n=n.slice(0,-6)),o(`const ${Sa(n,t)} = ${i}(${JSON.stringify(n)}${l?", true":""})${s?"!":""}`),c<e.length-1&&r()}}function hu(e,t){const n=e.length>3||!1;t.push("["),n&&t.indent(),mu(e,t,n),n&&t.deindent(),t.push("]")}function mu(e,t,n=!1,o=!0){const{push:r,newline:s}=t;for(let i=0;i<e.length;i++){const c=e[i];I(c)?r(c):w(c)?hu(c,t):gu(c,t),i<e.length-1&&(n?(o&&r(","),s()):o&&r(", "))}}function gu(e,t){if(I(e))t.push(e);else if(P(e))t.push(t.helper(e));else switch(e.type){case 1:case 9:case 11:case 12:gu(e.codegenNode,t);break;case 2:!function(e,t){t.push(JSON.stringify(e.content),e)}(e,t);break;case 4:yu(e,t);break;case 5:!function(e,t){const{push:n,helper:o,pure:r}=t;r&&n(pu);n(`${o(Cl)}(`),gu(e.content,t),n(")")}(e,t);break;case 8:vu(e,t);break;case 3:!function(e,t){const{push:n,helper:o,pure:r}=t;r&&n(pu);n(`${o(pl)}(${JSON.stringify(e.content)})`,e)}(e,t);break;case 13:!function(e,t){const{push:n,helper:o,pure:r}=t,{tag:s,props:i,children:c,patchFlag:l,dynamicProps:a,directives:u,isBlock:p,disableTracking:f,isComponent:d}=e;u&&n(o(vl)+"(");p&&n(`(${o(il)}(${f?"true":""}), `);r&&n(pu);const h=p?ya(t.inSSR,d):ga(t.inSSR,d);n(o(h)+"(",e),mu(function(e){let t=e.length;for(;t--&&null==e[t];);return e.slice(0,t+1).map((e=>e||"null"))}([s,i,c,l,a]),t),n(")"),p&&n(")");u&&(n(", "),gu(u,t),n(")"))}(e,t);break;case 14:!function(e,t){const{push:n,helper:o,pure:r}=t,s=I(e.callee)?e.callee:o(e.callee);r&&n(pu);n(s+"(",e),mu(e.arguments,t),n(")")}(e,t);break;case 15:!function(e,t){const{push:n,indent:o,deindent:r,newline:s}=t,{properties:i}=e;if(!i.length)return void n("{}",e);const c=i.length>1||!1;n(c?"{":"{ "),c&&o();for(let l=0;l<i.length;l++){const{key:e,value:o}=i[l];_u(e,t),n(": "),gu(o,t),l<i.length-1&&(n(","),s())}c&&r(),n(c?"}":" }")}(e,t);break;case 17:!function(e,t){hu(e.elements,t)}(e,t);break;case 18:!function(e,t){const{push:n,indent:o,deindent:r}=t,{params:s,returns:i,body:c,newline:l,isSlot:a}=e;a&&n(`_${Dl[$l]}(`);n("(",e),w(s)?mu(s,t):s&&gu(s,t);n(") => "),(l||c)&&(n("{"),o());i?(l&&n("return "),w(i)?hu(i,t):gu(i,t)):c&&gu(c,t);(l||c)&&(r(),n("}"));a&&(e.isNonScopedSlot&&n(", undefined, true"),n(")"))}(e,t);break;case 19:!function(e,t){const{test:n,consequent:o,alternate:r,newline:s}=e,{push:i,indent:c,deindent:l,newline:a}=t;if(4===n.type){const e=!ta(n.content);e&&i("("),yu(n,t),e&&i(")")}else i("("),gu(n,t),i(")");s&&c(),t.indentLevel++,s||i(" "),i("? "),gu(o,t),t.indentLevel--,s&&a(),s||i(" "),i(": ");const u=19===r.type;u||t.indentLevel++;gu(r,t),u||t.indentLevel--;s&&l(!0)}(e,t);break;case 20:!function(e,t){const{push:n,helper:o,indent:r,deindent:s,newline:i}=t;n(`_cache[${e.index}] || (`),e.isVNode&&(r(),n(`${o(Il)}(-1),`),i());n(`_cache[${e.index}] = `),gu(e.value,t),e.isVNode&&(n(","),i(),n(`${o(Il)}(1),`),i(),n(`_cache[${e.index}]`),s());n(")")}(e,t);break;case 21:mu(e.body,t,!0,!1)}}function yu(e,t){const{content:n,isStatic:o}=e;t.push(o?JSON.stringify(n):n,e)}function vu(e,t){for(let n=0;n<e.children.length;n++){const o=e.children[n];I(o)?t.push(o):gu(o,t)}}function _u(e,t){const{push:n}=t;if(8===e.type)n("["),vu(e,t),n("]");else if(e.isStatic){n(ta(e.content)?e.content:JSON.stringify(e.content),e)}else n(`[${e.content}]`,e)}const bu=uu(/^(if|else|else-if)$/,((e,t,n)=>function(e,t,n,o){if(!("else"===t.name||t.exp&&t.exp.content.trim())){t.exp=zl("true",!1,t.exp?t.exp.loc:e.loc)}if("if"===t.name){const r=Su(e,t),s={type:9,loc:e.loc,branches:[r]};if(n.replaceNode(s),o)return o(s,r,!0)}else{const r=n.parent.children;let s=r.indexOf(e);for(;s-- >=-1;){const i=r[s];if(!i||2!==i.type||i.content.trim().length){if(i&&9===i.type){n.removeNode();const r=Su(e,t);i.branches.push(r);const s=o&&o(i,r,!1);au(r,n),s&&s(),n.currentNode=null}break}n.removeNode(i)}}}(e,t,n,((e,t,o)=>{const r=n.parent.children;let s=r.indexOf(e),i=0;for(;s-- >=0;){const e=r[s];e&&9===e.type&&(i+=e.branches.length)}return()=>{if(o)e.codegenNode=Cu(t,i,n);else{const o=function(e){for(;;)if(19===e.type){if(19!==e.alternate.type)return e;e=e.alternate}else 20===e.type&&(e=e.value)}(e.codegenNode);o.alternate=Cu(t,i+e.branches.length-1,n)}}}))));function Su(e,t){return{type:10,loc:e.loc,condition:"else"===t.name?void 0:t.exp,children:3!==e.tagType||aa(e,"for")?[e]:e.children,userKey:ua(e,"key")}}function Cu(e,t,n){return e.condition?Yl(e.condition,xu(e,t,n),ql(n.helper(pl),['""',"true"])):xu(e,t,n)}function xu(e,t,n){const{helper:o}=n,r=Kl("key",zl(`${t}`,!1,jl,2)),{children:s}=e,i=s[0];if(1!==s.length||1!==i.type){if(1===s.length&&11===i.type){const e=i.codegenNode;return ba(e,r,n),e}{let t=64;return Ul(n,o(tl),Wl([r]),s,t+"",void 0,void 0,!0,!1,!1,e.loc)}}{const e=i.codegenNode,t=14===(c=e).type&&c.callee===Vl?c.arguments[1].returns:c;return 13===t.type&&Ca(t,n),ba(t,r,n),e}var c}const Eu=uu("for",((e,t,n)=>{const{helper:o,removeHelper:r}=n;return function(e,t,n,o){if(!t.exp)return;const r=Ou(t.exp);if(!r)return;const{scopes:s}=n,{source:i,value:c,key:l,index:a}=r,u={type:11,loc:t.loc,source:i,valueAlias:c,keyAlias:l,objectIndexAlias:a,parseResult:r,children:ha(e)?e.children:[e]};n.replaceNode(u),s.vFor++;const p=o&&o(u);return()=>{s.vFor--,p&&p()}}(e,t,n,(t=>{const s=ql(o(_l),[t.source]),i=aa(e,"memo"),c=ua(e,"key"),l=c&&(6===c.type?zl(c.value.content,!0):c.exp),a=c?Kl("key",l):null,u=4===t.source.type&&t.source.constType>0,p=u?64:c?128:256;return t.codegenNode=Ul(n,o(tl),void 0,s,p+"",void 0,void 0,!0,!u,!1,e.loc),()=>{let c;const p=ha(e),{children:f}=t,d=1!==f.length||1!==f[0].type,h=ma(e)?e:p&&1===e.children.length&&ma(e.children[0])?e.children[0]:null;if(h?(c=h.codegenNode,p&&a&&ba(c,a,n)):d?c=Ul(n,o(tl),a?Wl([a]):void 0,e.children,"64",void 0,void 0,!0,void 0,!1):(c=f[0].codegenNode,p&&a&&ba(c,a,n),c.isBlock!==!u&&(c.isBlock?(r(il),r(ya(n.inSSR,c.isComponent))):r(ga(n.inSSR,c.isComponent))),c.isBlock=!u,c.isBlock?(o(il),o(ya(n.inSSR,c.isComponent))):o(ga(n.inSSR,c.isComponent))),i){const e=Jl(Au(t.parseResult,[zl("_cached")]));e.body={type:21,body:[Gl(["const _memo = (",i.exp,")"]),Gl(["if (_cached",...l?[" && _cached.key === ",l]:[],` && ${n.helperString(Bl)}(_cached, _memo)) return _cached`]),Gl(["const _item = ",c]),zl("_item.memo = _memo"),zl("return _item")],loc:jl},s.arguments.push(e,zl("_cache"),zl(String(n.cached++)))}else s.arguments.push(Jl(Au(t.parseResult),c,!0))}}))}));const Tu=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,Nu=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,wu=/^\(|\)$/g;function Ou(e,t){const n=e.loc,o=e.content,r=o.match(Tu);if(!r)return;const[,s,i]=r,c={source:ku(n,i.trim(),o.indexOf(i,s.length)),value:void 0,key:void 0,index:void 0};let l=s.trim().replace(wu,"").trim();const a=s.indexOf(l),u=l.match(Nu);if(u){l=l.replace(Nu,"").trim();const e=u[1].trim();let t;if(e&&(t=o.indexOf(e,a+l.length),c.key=ku(n,e,t)),u[2]){const r=u[2].trim();r&&(c.index=ku(n,r,o.indexOf(r,c.key?t+e.length:a+l.length)))}}return l&&(c.value=ku(n,l,a)),c}function ku(e,t,n){return zl(t,!1,ia(e,n,t.length))}function Au({value:e,key:t,index:n},o=[]){return function(e){let t=e.length;for(;t--&&!e[t];);return e.slice(0,t+1).map(((e,t)=>e||zl("_".repeat(t+1),!1)))}([e,t,n,...o])}const Ru=zl("undefined",!1),Iu=(e,t)=>{if(1===e.type&&(1===e.tagType||3===e.tagType)){const n=aa(e,"slot");if(n)return t.scopes.vSlot++,()=>{t.scopes.vSlot--}}},Pu=(e,t,n)=>Jl(e,t,!1,!0,t.length?t[0].loc:n);function Mu(e,t,n=Pu){t.helper($l);const{children:o,loc:r}=e,s=[],i=[];let c=t.scopes.vSlot>0||t.scopes.vFor>0;const l=aa(e,"slot",!0);if(l){const{arg:e,exp:t}=l;e&&!Zl(e)&&(c=!0),s.push(Kl(e||zl("default",!0),n(t,o,r)))}let a=!1,u=!1;const p=[],f=new Set;for(let m=0;m<o.length;m++){const e=o[m];let r;if(!ha(e)||!(r=aa(e,"slot",!0))){3!==e.type&&p.push(e);continue}if(l)break;a=!0;const{children:d,loc:h}=e,{arg:g=zl("default",!0),exp:y}=r;let v;Zl(g)?v=g?g.content:"default":c=!0;const _=n(y,d,h);let b,S,C;if(b=aa(e,"if"))c=!0,i.push(Yl(b.exp,$u(g,_),Ru));else if(S=aa(e,/^else(-if)?$/,!0)){let e,t=m;for(;t--&&(e=o[t],3===e.type););if(e&&ha(e)&&aa(e,"if")){o.splice(m,1),m--;let e=i[i.length-1];for(;19===e.alternate.type;)e=e.alternate;e.alternate=S.exp?Yl(S.exp,$u(g,_),Ru):$u(g,_)}}else if(C=aa(e,"for")){c=!0;const e=C.parseResult||Ou(C.exp);e&&i.push(ql(t.helper(_l),[e.source,Jl(Au(e),$u(g,_),!0)]))}else{if(v){if(f.has(v))continue;f.add(v),"default"===v&&(u=!0)}s.push(Kl(g,_))}}if(!l){const e=(e,o)=>{const s=n(e,o,r);return t.compatConfig&&(s.isNonScopedSlot=!0),Kl("default",s)};a?p.length&&p.some((e=>Lu(e)))&&(u||s.push(e(void 0,p))):s.push(e(void 0,o))}const d=c?2:Fu(e.children)?3:1;let h=Wl(s.concat(Kl("_",zl(d+"",!1))),r);return i.length&&(h=ql(t.helper(Sl),[h,Hl(i)])),{slots:h,hasDynamicSlots:c}}function $u(e,t){return Wl([Kl("name",e),Kl("fn",t)])}function Fu(e){for(let t=0;t<e.length;t++){const n=e[t];switch(n.type){case 1:if(2===n.tagType||Fu(n.children))return!0;break;case 9:if(Fu(n.branches))return!0;break;case 10:case 11:if(Fu(n.children))return!0}}return!1}function Lu(e){return 2!==e.type&&12!==e.type||(2===e.type?!!e.content.trim():Lu(e.content))}const Vu=new WeakMap,Bu=(e,t)=>function(){if(1!==(e=t.currentNode).type||0!==e.tagType&&1!==e.tagType)return;const{tag:n,props:o}=e,r=1===e.tagType;let s=r?function(e,t,n=!1){let{tag:o}=e;const r=Hu(o),s=ua(e,"is");if(s)if(r||Ea("COMPILER_IS_ON_ELEMENT",t)){const e=6===s.type?s.value&&zl(s.value.content,!0):s.exp;if(e)return ql(t.helper(ml),[e])}else 6===s.type&&s.value.content.startsWith("vue:")&&(o=s.value.content.slice(4));const i=!r&&aa(e,"is");if(i&&i.exp)return ql(t.helper(ml),[i.exp]);const c=Ql(o)||t.isBuiltInComponent(o);if(c)return n||t.helper(c),c;return t.helper(hl),t.components.add(o),Sa(o,"component")}(e,t):`"${n}"`;let i,c,l,a,u,p,f=0,d=M(s)&&s.callee===ml||s===nl||s===ol||!r&&("svg"===n||"foreignObject"===n||ua(e,"key",!0));if(o.length>0){const n=Du(e,t);i=n.props,f=n.patchFlag,u=n.dynamicPropNames;const o=n.directives;p=o&&o.length?Hl(o.map((e=>function(e,t){const n=[],o=Vu.get(e);o?n.push(t.helperString(o)):(t.helper(gl),t.directives.add(e.name),n.push(Sa(e.name,"directive")));const{loc:r}=e;e.exp&&n.push(e.exp);e.arg&&(e.exp||n.push("void 0"),n.push(e.arg));if(Object.keys(e.modifiers).length){e.arg||(e.exp||n.push("void 0"),n.push("void 0"));const t=zl("true",!1,r);n.push(Wl(e.modifiers.map((e=>Kl(e,t))),r))}return Hl(n,e.loc)}(e,t)))):void 0}if(e.children.length>0){s===rl&&(d=!0,f|=1024);if(r&&s!==nl&&s!==rl){const{slots:n,hasDynamicSlots:o}=Mu(e,t);c=n,o&&(f|=1024)}else if(1===e.children.length&&s!==nl){const n=e.children[0],o=n.type,r=5===o||8===o;r&&0===tu(n,t)&&(f|=1),c=r||2===o?n:e.children}else c=e.children}0!==f&&(l=String(f),u&&u.length&&(a=function(e){let t="[";for(let n=0,o=e.length;n<o;n++)t+=JSON.stringify(e[n]),n<o-1&&(t+=", ");return t+"]"}(u))),e.codegenNode=Ul(t,s,i,c,l,a,p,!!d,!1,r,e.loc)};function Du(e,t,n=e.props,o=!1){const{tag:r,loc:s}=e,i=1===e.tagType;let c=[];const l=[],a=[];let u=0,p=!1,f=!1,d=!1,h=!1,m=!1,g=!1;const y=[],v=({key:e,value:n})=>{if(Zl(e)){const o=e.content,r=S(o);if(i||!r||"onclick"===o.toLowerCase()||"onUpdate:modelValue"===o||D(o)||(h=!0),r&&D(o)&&(g=!0),20===n.type||(4===n.type||8===n.type)&&tu(n,t)>0)return;"ref"===o?p=!0:"class"===o?f=!0:"style"===o?d=!0:"key"===o||y.includes(o)||y.push(o),!i||"class"!==o&&"style"!==o||y.includes(o)||y.push(o)}else m=!0};for(let b=0;b<n.length;b++){const i=n[b];if(6===i.type){const{loc:e,name:n,value:o}=i;let s=zl(o?o.content:"",!0,o?o.loc:e);if("ref"===n&&(p=!0),"is"===n&&(Hu(r)||o&&o.content.startsWith("vue:")||Ea("COMPILER_IS_ON_ELEMENT",t)))continue;c.push(Kl(zl(n,!0,ia(e,0,n.length)),s))}else{const{name:n,arg:u,exp:p,loc:f}=i,d="bind"===n,h="on"===n;if("slot"===n)continue;if("once"===n||"memo"===n)continue;if("is"===n||d&&pa(u,"is")&&(Hu(r)||Ea("COMPILER_IS_ON_ELEMENT",t)))continue;if(h&&o)continue;if(!u&&(d||h)){if(m=!0,p)if(c.length&&(l.push(Wl(ju(c),s)),c=[]),d){if(Ea("COMPILER_V_BIND_OBJECT_ORDER",t)){l.unshift(p);continue}l.push(p)}else l.push({type:14,loc:f,callee:t.helper(Ol),arguments:[p]});continue}const g=t.directiveTransforms[n];if(g){const{props:n,needRuntime:r}=g(i,e,t);!o&&n.forEach(v),c.push(...n),r&&(a.push(i),P(r)&&Vu.set(i,r))}else a.push(i)}6===i.type&&"ref"===i.name&&t.scopes.vFor>0&&Ta("COMPILER_V_FOR_REF",t)&&c.push(Kl(zl("refInFor",!0),zl("true",!1)))}let _;if(l.length?(c.length&&l.push(Wl(ju(c),s)),_=l.length>1?ql(t.helper(xl),l,s):l[0]):c.length&&(_=Wl(ju(c),s)),m?u|=16:(f&&!i&&(u|=2),d&&!i&&(u|=4),y.length&&(u|=8),h&&(u|=32)),0!==u&&32!==u||!(p||g||a.length>0)||(u|=512),!t.inSSR&&_)switch(_.type){case 15:let e=-1,n=-1,o=!1;for(let t=0;t<_.properties.length;t++){const r=_.properties[t].key;Zl(r)?"class"===r.content?e=t:"style"===r.content&&(n=t):r.isHandlerKey||(o=!0)}const r=_.properties[e],s=_.properties[n];o?_=ql(t.helper(Nl),[_]):(r&&!Zl(r.value)&&(r.value=ql(t.helper(El),[r.value])),!s||Zl(s.value)||!d&&17!==s.value.type||(s.value=ql(t.helper(Tl),[s.value])));break;case 14:break;default:_=ql(t.helper(Nl),[ql(t.helper(wl),[_])])}return{props:_,directives:a,patchFlag:u,dynamicPropNames:y}}function ju(e){const t=new Map,n=[];for(let o=0;o<e.length;o++){const r=e[o];if(8===r.key.type||!r.key.isStatic){n.push(r);continue}const s=r.key.content,i=t.get(s);i?("style"===s||"class"===s||S(s))&&Uu(i,r):(t.set(s,r),n.push(r))}return n}function Uu(e,t){17===e.value.type?e.value.elements.push(t.value):e.value=Hl([e.value,t.value],e.loc)}function Hu(e){return"component"===e||"Component"===e}const Wu=(e,t)=>{if(ma(e)){const{children:n,loc:o}=e,{slotName:r,slotProps:s}=function(e,t){let n,o='"default"';const r=[];for(let s=0;s<e.props.length;s++){const t=e.props[s];6===t.type?t.value&&("name"===t.name?o=JSON.stringify(t.value.content):(t.name=H(t.name),r.push(t))):"bind"===t.name&&pa(t.arg,"name")?t.exp&&(o=t.exp):("bind"===t.name&&t.arg&&Zl(t.arg)&&(t.arg.content=H(t.arg.content)),r.push(t))}if(r.length>0){const{props:o,directives:s}=Du(e,t,r);n=o}return{slotName:o,slotProps:n}}(e,t),i=[t.prefixIdentifiers?"_ctx.$slots":"$slots",r,"{}","undefined","true"];let c=2;s&&(i[2]=s,c=3),n.length&&(i[3]=Jl([],n,!1,!1,o),c=4),t.scopeId&&!t.slotted&&(c=5),i.splice(c),e.codegenNode=ql(t.helper(bl),i,o)}};const Ku=/^\s*([\w$_]+|(async\s*)?\([^)]*?\))\s*=>|^\s*(async\s+)?function(?:\s+[\w$]+)?\s*\(/,zu=(e,t,n,o)=>{const{loc:r,modifiers:s,arg:i}=e;let c;if(4===i.type)if(i.isStatic){c=zl(G(H(i.content)),!0,i.loc)}else c=Gl([`${n.helperString(Rl)}(`,i,")"]);else c=i,c.children.unshift(`${n.helperString(Rl)}(`),c.children.push(")");let l=e.exp;l&&!l.content.trim()&&(l=void 0);let a=n.cacheHandlers&&!l&&!n.inVOnce;if(l){const e=sa(l.content),t=!(e||Ku.test(l.content)),n=l.content.includes(";");(t||a&&e)&&(l=Gl([`${t?"$event":"(...args)"} => ${n?"{":"("}`,l,n?"}":")"]))}let u={props:[Kl(c,l||zl("() => {}",!1,r))]};return o&&(u=o(u)),a&&(u.props[0].value=n.cache(u.props[0].value)),u.props.forEach((e=>e.key.isHandlerKey=!0)),u},Gu=(e,t,n)=>{const{exp:o,modifiers:r,loc:s}=e,i=e.arg;return 4!==i.type?(i.children.unshift("("),i.children.push(') || ""')):i.isStatic||(i.content=`${i.content} || ""`),r.includes("camel")&&(4===i.type?i.content=i.isStatic?H(i.content):`${n.helperString(kl)}(${i.content})`:(i.children.unshift(`${n.helperString(kl)}(`),i.children.push(")"))),n.inSSR||(r.includes("prop")&&qu(i,"."),r.includes("attr")&&qu(i,"^")),!o||4===o.type&&!o.content.trim()?{props:[Kl(i,zl("",!0,s))]}:{props:[Kl(i,o)]}},qu=(e,t)=>{4===e.type?e.content=e.isStatic?t+e.content:`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},Ju=(e,t)=>{if(0===e.type||1===e.type||11===e.type||10===e.type)return()=>{const n=e.children;let o,r=!1;for(let e=0;e<n.length;e++){const t=n[e];if(fa(t)){r=!0;for(let r=e+1;r<n.length;r++){const s=n[r];if(!fa(s)){o=void 0;break}o||(o=n[e]={type:8,loc:t.loc,children:[t]}),o.children.push(" + ",s),n.splice(r,1),r--}}}if(r&&(1!==n.length||0!==e.type&&(1!==e.type||0!==e.tagType||e.props.find((e=>7===e.type&&!t.directiveTransforms[e.name]))||"template"===e.tag)))for(let e=0;e<n.length;e++){const o=n[e];if(fa(o)||8===o.type){const r=[];2===o.type&&" "===o.content||r.push(o),t.ssr||0!==tu(o,t)||r.push("1"),n[e]={type:12,content:o,loc:o.loc,codegenNode:ql(t.helper(fl),r)}}}}},Yu=new WeakSet,Zu=(e,t)=>{if(1===e.type&&aa(e,"once",!0)){if(Yu.has(e)||t.inVOnce)return;return Yu.add(e),t.inVOnce=!0,t.helper(Il),()=>{t.inVOnce=!1;const e=t.currentNode;e.codegenNode&&(e.codegenNode=t.cache(e.codegenNode,!0))}}},Xu=(e,t,n)=>{const{exp:o,arg:r}=e;if(!o)return Qu();const s=o.loc.source,i=4===o.type?o.content:s;if(!i.trim()||!sa(i))return Qu();const c=r||zl("modelValue",!0),l=r?Zl(r)?`onUpdate:${r.content}`:Gl(['"onUpdate:" + ',r]):"onUpdate:modelValue";let a;a=Gl([`${n.isTS?"($event: any)":"$event"} => ((`,o,") = $event)"]);const u=[Kl(c,e.exp),Kl(l,a)];if(e.modifiers.length&&1===t.tagType){const t=e.modifiers.map((e=>(ta(e)?e:JSON.stringify(e))+": true")).join(", "),n=r?Zl(r)?`${r.content}Modifiers`:Gl([r,' + "Modifiers"']):"modelModifiers";u.push(Kl(n,zl(`{ ${t} }`,!1,e.loc,2)))}return Qu(u)};function Qu(e=[]){return{props:e}}const ep=/[\w).+\-_$\]]/,tp=(e,t)=>{Ea("COMPILER_FILTER",t)&&(5===e.type&&np(e.content,t),1===e.type&&e.props.forEach((e=>{7===e.type&&"for"!==e.name&&e.exp&&np(e.exp,t)})))};function np(e,t){if(4===e.type)op(e,t);else for(let n=0;n<e.children.length;n++){const o=e.children[n];"object"==typeof o&&(4===o.type?op(o,t):8===o.type?np(e,t):5===o.type&&np(o.content,t))}}function op(e,t){const n=e.content;let o,r,s,i,c=!1,l=!1,a=!1,u=!1,p=0,f=0,d=0,h=0,m=[];for(s=0;s<n.length;s++)if(r=o,o=n.charCodeAt(s),c)39===o&&92!==r&&(c=!1);else if(l)34===o&&92!==r&&(l=!1);else if(a)96===o&&92!==r&&(a=!1);else if(u)47===o&&92!==r&&(u=!1);else if(124!==o||124===n.charCodeAt(s+1)||124===n.charCodeAt(s-1)||p||f||d){switch(o){case 34:l=!0;break;case 39:c=!0;break;case 96:a=!0;break;case 40:d++;break;case 41:d--;break;case 91:f++;break;case 93:f--;break;case 123:p++;break;case 125:p--}if(47===o){let e,t=s-1;for(;t>=0&&(e=n.charAt(t)," "===e);t--);e&&ep.test(e)||(u=!0)}}else void 0===i?(h=s+1,i=n.slice(0,s).trim()):g();function g(){m.push(n.slice(h,s).trim()),h=s+1}if(void 0===i?i=n.slice(0,s).trim():0!==h&&g(),m.length){for(s=0;s<m.length;s++)i=rp(i,m[s],t);e.content=i}}function rp(e,t,n){n.helper(yl);const o=t.indexOf("(");if(o<0)return n.filters.add(t),`${Sa(t,"filter")}(${e})`;{const r=t.slice(0,o),s=t.slice(o+1);return n.filters.add(r),`${Sa(r,"filter")}(${e}${")"!==s?","+s:s}`}}const sp=new WeakSet,ip=(e,t)=>{if(1===e.type){const n=aa(e,"memo");if(!n||sp.has(e))return;return sp.add(e),()=>{const o=e.codegenNode||t.currentNode.codegenNode;o&&13===o.type&&(1!==e.tagType&&Ca(o,t),e.codegenNode=ql(t.helper(Vl),[n.exp,Jl(void 0,o),"_cache",String(t.cached++)]))}}};function cp(e,t={}){const n=t.onError||Xc,o="module"===t.mode;!0===t.prefixIdentifiers?n(el(46)):o&&n(el(47));t.cacheHandlers&&n(el(48)),t.scopeId&&!o&&n(el(49));const r=I(e)?ka(e,t):e,[s,i]=[[Zu,bu,ip,Eu,tp,Wu,Bu,Iu,Ju],{on:zu,bind:Gu,model:Xu}];return lu(r,x({},t,{prefixIdentifiers:false,nodeTransforms:[...s,...t.nodeTransforms||[]],directiveTransforms:x({},i,t.directiveTransforms||{})})),fu(r,x({},t,{prefixIdentifiers:false}))}const lp=Symbol(""),ap=Symbol(""),up=Symbol(""),pp=Symbol(""),fp=Symbol(""),dp=Symbol(""),hp=Symbol(""),mp=Symbol(""),gp=Symbol(""),yp=Symbol("");var vp;let _p;vp={[lp]:"vModelRadio",[ap]:"vModelCheckbox",[up]:"vModelText",[pp]:"vModelSelect",[fp]:"vModelDynamic",[dp]:"withModifiers",[hp]:"withKeys",[mp]:"vShow",[gp]:"Transition",[yp]:"TransitionGroup"},Object.getOwnPropertySymbols(vp).forEach((e=>{Dl[e]=vp[e]}));const bp=e("style,iframe,script,noscript",!0),Sp={isVoidTag:p,isNativeTag:e=>a(e)||u(e),isPreTag:e=>"pre"===e,decodeEntities:function(e,t=!1){return _p||(_p=document.createElement("div")),t?(_p.innerHTML=`<div foo="${e.replace(/"/g,"&quot;")}">`,_p.children[0].getAttribute("foo")):(_p.innerHTML=e,_p.textContent)},isBuiltInComponent:e=>Xl(e,"Transition")?gp:Xl(e,"TransitionGroup")?yp:void 0,getNamespace(e,t){let n=t?t.ns:0;if(t&&2===n)if("annotation-xml"===t.tag){if("svg"===e)return 1;t.props.some((e=>6===e.type&&"encoding"===e.name&&null!=e.value&&("text/html"===e.value.content||"application/xhtml+xml"===e.value.content)))&&(n=0)}else/^m(?:[ions]|text)$/.test(t.tag)&&"mglyph"!==e&&"malignmark"!==e&&(n=0);else t&&1===n&&("foreignObject"!==t.tag&&"desc"!==t.tag&&"title"!==t.tag||(n=0));if(0===n){if("svg"===e)return 1;if("math"===e)return 2}return n},getTextMode({tag:e,ns:t}){if(0===t){if("textarea"===e||"title"===e)return 1;if(bp(e))return 2}return 0}},Cp=(e,t)=>{const n=c(e);return zl(JSON.stringify(n),!1,t,3)};const xp=e("passive,once,capture"),Ep=e("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),Tp=e("left,right"),Np=e("onkeyup,onkeydown,onkeypress",!0),wp=(e,t)=>Zl(e)&&"onclick"===e.content.toLowerCase()?zl(t,!0):4!==e.type?Gl(["(",e,`) === "onClick" ? "${t}" : (`,e,")"]):e,Op=(e,t)=>{1!==e.type||0!==e.tagType||"script"!==e.tag&&"style"!==e.tag||t.removeNode()},kp=[e=>{1===e.type&&e.props.forEach(((t,n)=>{6===t.type&&"style"===t.name&&t.value&&(e.props[n]={type:7,name:"bind",arg:zl("style",!0,t.loc),exp:Cp(t.value.content,t.loc),modifiers:[],loc:t.loc})}))}],Ap={cloak:()=>({props:[]}),html:(e,t,n)=>{const{exp:o,loc:r}=e;return t.children.length&&(t.children.length=0),{props:[Kl(zl("innerHTML",!0,r),o||zl("",!0))]}},text:(e,t,n)=>{const{exp:o,loc:r}=e;return t.children.length&&(t.children.length=0),{props:[Kl(zl("textContent",!0),o?ql(n.helperString(Cl),[o],r):zl("",!0))]}},model:(e,t,n)=>{const o=Xu(e,t,n);if(!o.props.length||1===t.tagType)return o;const{tag:r}=t,s=n.isCustomElement(r);if("input"===r||"textarea"===r||"select"===r||s){let e=up,i=!1;if("input"===r||s){const n=ua(t,"type");if(n){if(7===n.type)e=fp;else if(n.value)switch(n.value.content){case"radio":e=lp;break;case"checkbox":e=ap;break;case"file":i=!0}}else(function(e){return e.props.some((e=>!(7!==e.type||"bind"!==e.name||e.arg&&4===e.arg.type&&e.arg.isStatic)))})(t)&&(e=fp)}else"select"===r&&(e=pp);i||(o.needRuntime=n.helper(e))}return o.props=o.props.filter((e=>!(4===e.key.type&&"modelValue"===e.key.content))),o},on:(e,t,n)=>zu(e,0,n,(t=>{const{modifiers:o}=e;if(!o.length)return t;let{key:r,value:s}=t.props[0];const{keyModifiers:i,nonKeyModifiers:c,eventOptionModifiers:l}=((e,t,n,o)=>{const r=[],s=[],i=[];for(let c=0;c<t.length;c++){const o=t[c];"native"===o&&Ta("COMPILER_V_ON_NATIVE",n)||xp(o)?i.push(o):Tp(o)?Zl(e)?Np(e.content)?r.push(o):s.push(o):(r.push(o),s.push(o)):Ep(o)?s.push(o):r.push(o)}return{keyModifiers:r,nonKeyModifiers:s,eventOptionModifiers:i}})(r,o,n);if(c.includes("right")&&(r=wp(r,"onContextmenu")),c.includes("middle")&&(r=wp(r,"onMouseup")),c.length&&(s=ql(n.helper(dp),[s,JSON.stringify(c)])),!i.length||Zl(r)&&!Np(r.content)||(s=ql(n.helper(hp),[s,JSON.stringify(i)])),l.length){const e=l.map(z).join("");r=Zl(r)?zl(`${r.content}${e}`,!0):Gl(["(",r,`) + "${e}"`])}return{props:[Kl(r,s)]}})),show:(e,t,n)=>({props:[],needRuntime:n.helper(mp)})};const Rp=Object.create(null);function Ip(e,t){if(!I(e)){if(!e.nodeType)return v;e=e.innerHTML}const n=e,o=Rp[n];if(o)return o;if("#"===e[0]){const t=document.querySelector(e);e=t?t.innerHTML:""}const{code:r}=function(e,t={}){return cp(e,x({},Sp,t,{nodeTransforms:[Op,...kp,...t.nodeTransforms||[]],directiveTransforms:x({},Ap,t.directiveTransforms||{}),transformHoist:null}))}(e,x({hoistStatic:!0,whitespace:"preserve",onError:void 0,onWarn:v},t)),s=new Function(r)();return s._rc=!0,Rp[n]=s}Rs(Ip);const Pp=function(){const e=wi.createCompatVue(qc,Zc);return x(e,Yc),e}();return Pp.compile=Ip,Pp}();
+var Vue=function(){"use strict";function e(e,t){const n=Object.create(null),o=e.split(",");for(let r=0;r<o.length;r++)n[o[r]]=!0;return t?e=>!!n[e.toLowerCase()]:e=>!!n[e]}const t=e("Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt"),n=e("itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly");function o(e){return!!e||""===e}function r(e){if(k(e)){const t={};for(let n=0;n<e.length;n++){const o=e[n],s=R(o)?c(o):r(o);if(s)for(const e in s)t[e]=s[e]}return t}return R(e)||M(e)?e:void 0}const s=/;(?![^(]*\))/g,i=/:(.+)/;function c(e){const t={};return e.split(s).forEach((e=>{if(e){const n=e.split(i);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}function l(e){let t="";if(R(e))t=e;else if(k(e))for(let n=0;n<e.length;n++){const o=l(e[n]);o&&(t+=o+" ")}else if(M(e))for(const n in e)e[n]&&(t+=n+" ");return t.trim()}const a=e("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,summary,template,blockquote,iframe,tfoot"),u=e("svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,feDistanceLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,text,textPath,title,tspan,unknown,use,view"),p=e("area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr");function f(e,t){if(e===t)return!0;let n=A(e),o=A(t);if(n||o)return!(!n||!o)&&e.getTime()===t.getTime();if(n=k(e),o=k(t),n||o)return!(!n||!o)&&function(e,t){if(e.length!==t.length)return!1;let n=!0;for(let o=0;n&&o<e.length;o++)n=f(e[o],t[o]);return n}(e,t);if(n=M(e),o=M(t),n||o){if(!n||!o)return!1;if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e){const o=e.hasOwnProperty(n),r=t.hasOwnProperty(n);if(o&&!r||!o&&r||!f(e[n],t[n]))return!1}}return String(e)===String(t)}function d(e,t){return e.findIndex((e=>f(e,t)))}const h=e=>R(e)?e:null==e?"":k(e)||M(e)&&(e.toString===L||!I(e.toString))?JSON.stringify(e,m,2):String(e),m=(e,t)=>t&&t.__v_isRef?m(e,t.value):w(t)?{[`Map(${t.size})`]:[...t.entries()].reduce(((e,[t,n])=>(e[`${t} =>`]=n,e)),{})}:O(t)?{[`Set(${t.size})`]:[...t.values()]}:!M(t)||k(t)||V(t)?t:String(t),g={},v=[],y=()=>{},_=()=>!1,b=/^on[^a-z]/,S=e=>b.test(e),C=e=>e.startsWith("onUpdate:"),x=Object.assign,E=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},T=Object.prototype.hasOwnProperty,N=(e,t)=>T.call(e,t),k=Array.isArray,w=e=>"[object Map]"===F(e),O=e=>"[object Set]"===F(e),A=e=>e instanceof Date,I=e=>"function"==typeof e,R=e=>"string"==typeof e,P=e=>"symbol"==typeof e,M=e=>null!==e&&"object"==typeof e,$=e=>M(e)&&I(e.then)&&I(e.catch),L=Object.prototype.toString,F=e=>L.call(e),V=e=>"[object Object]"===F(e),B=e=>R(e)&&"NaN"!==e&&"-"!==e[0]&&""+parseInt(e,10)===e,D=e(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),j=e("bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo"),U=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},H=/-(\w)/g,W=U((e=>e.replace(H,((e,t)=>t?t.toUpperCase():"")))),K=/\B([A-Z])/g,z=U((e=>e.replace(K,"-$1").toLowerCase())),G=U((e=>e.charAt(0).toUpperCase()+e.slice(1))),q=U((e=>e?`on${G(e)}`:"")),J=(e,t)=>!Object.is(e,t),Y=(e,t)=>{for(let n=0;n<e.length;n++)e[n](t)},Z=(e,t,n)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},X=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let Q;let ee;class te{constructor(e=!1){this.active=!0,this.effects=[],this.cleanups=[],!e&&ee&&(this.parent=ee,this.index=(ee.scopes||(ee.scopes=[])).push(this)-1)}run(e){if(this.active)try{return ee=this,e()}finally{ee=this.parent}}on(){ee=this}off(){ee=this.parent}stop(e){if(this.active){let t,n;for(t=0,n=this.effects.length;t<n;t++)this.effects[t].stop();for(t=0,n=this.cleanups.length;t<n;t++)this.cleanups[t]();if(this.scopes)for(t=0,n=this.scopes.length;t<n;t++)this.scopes[t].stop(!0);if(this.parent&&!e){const e=this.parent.scopes.pop();e&&e!==this&&(this.parent.scopes[this.index]=e,e.index=this.index)}this.active=!1}}}function ne(e,t=ee){t&&t.active&&t.effects.push(e)}const oe=e=>{const t=new Set(e);return t.w=0,t.n=0,t},re=e=>(e.w&le)>0,se=e=>(e.n&le)>0,ie=new WeakMap;let ce=0,le=1;let ae;const ue=Symbol(""),pe=Symbol("");class fe{constructor(e,t=null,n){this.fn=e,this.scheduler=t,this.active=!0,this.deps=[],this.parent=void 0,ne(this,n)}run(){if(!this.active)return this.fn();let e=ae,t=he;for(;e;){if(e===this)return;e=e.parent}try{return this.parent=ae,ae=this,he=!0,le=1<<++ce,ce<=30?(({deps:e})=>{if(e.length)for(let t=0;t<e.length;t++)e[t].w|=le})(this):de(this),this.fn()}finally{ce<=30&&(e=>{const{deps:t}=e;if(t.length){let n=0;for(let o=0;o<t.length;o++){const r=t[o];re(r)&&!se(r)?r.delete(e):t[n++]=r,r.w&=~le,r.n&=~le}t.length=n}})(this),le=1<<--ce,ae=this.parent,he=t,this.parent=void 0}}stop(){this.active&&(de(this),this.onStop&&this.onStop(),this.active=!1)}}function de(e){const{deps:t}=e;if(t.length){for(let n=0;n<t.length;n++)t[n].delete(e);t.length=0}}let he=!0;const me=[];function ge(){me.push(he),he=!1}function ve(){const e=me.pop();he=void 0===e||e}function ye(e,t,n){if(he&&ae){let t=ie.get(e);t||ie.set(e,t=new Map);let o=t.get(n);o||t.set(n,o=oe()),_e(o)}}function _e(e,t){let n=!1;ce<=30?se(e)||(e.n|=le,n=!re(e)):n=!e.has(ae),n&&(e.add(ae),ae.deps.push(e))}function be(e,t,n,o,r,s){const i=ie.get(e);if(!i)return;let c=[];if("clear"===t)c=[...i.values()];else if("length"===n&&k(e))i.forEach(((e,t)=>{("length"===t||t>=o)&&c.push(e)}));else switch(void 0!==n&&c.push(i.get(n)),t){case"add":k(e)?B(n)&&c.push(i.get("length")):(c.push(i.get(ue)),w(e)&&c.push(i.get(pe)));break;case"delete":k(e)||(c.push(i.get(ue)),w(e)&&c.push(i.get(pe)));break;case"set":w(e)&&c.push(i.get(ue))}if(1===c.length)c[0]&&Se(c[0]);else{const e=[];for(const t of c)t&&e.push(...t);Se(oe(e))}}function Se(e,t){for(const n of k(e)?e:[...e])(n!==ae||n.allowRecurse)&&(n.scheduler?n.scheduler():n.run())}const Ce=e("__proto__,__v_isRef,__isVue"),xe=new Set(Object.getOwnPropertyNames(Symbol).map((e=>Symbol[e])).filter(P)),Ee=Ae(),Te=Ae(!1,!0),Ne=Ae(!0),ke=Ae(!0,!0),we=Oe();function Oe(){const e={};return["includes","indexOf","lastIndexOf"].forEach((t=>{e[t]=function(...e){const n=vt(this);for(let t=0,r=this.length;t<r;t++)ye(n,0,t+"");const o=n[t](...e);return-1===o||!1===o?n[t](...e.map(vt)):o}})),["push","pop","shift","unshift","splice"].forEach((t=>{e[t]=function(...e){ge();const n=vt(this)[t].apply(this,e);return ve(),n}})),e}function Ae(e=!1,t=!1){return function(n,o,r){if("__v_isReactive"===o)return!e;if("__v_isReadonly"===o)return e;if("__v_isShallow"===o)return t;if("__v_raw"===o&&r===(e?t?ct:it:t?st:rt).get(n))return n;const s=k(n);if(!e&&s&&N(we,o))return Reflect.get(we,o,r);const i=Reflect.get(n,o,r);if(P(o)?xe.has(o):Ce(o))return i;if(e||ye(n,0,o),t)return i;if(xt(i)){return!s||!B(o)?i.value:i}return M(i)?e?pt(i):at(i):i}}function Ie(e=!1){return function(t,n,o,r){let s=t[n];if(ht(s)&&xt(s)&&!xt(o))return!1;if(!e&&!ht(o)&&(mt(o)||(o=vt(o),s=vt(s)),!k(t)&&xt(s)&&!xt(o)))return s.value=o,!0;const i=k(t)&&B(n)?Number(n)<t.length:N(t,n),c=Reflect.set(t,n,o,r);return t===vt(r)&&(i?J(o,s)&&be(t,"set",n,o):be(t,"add",n,o)),c}}const Re={get:Ee,set:Ie(),deleteProperty:function(e,t){const n=N(e,t),o=Reflect.deleteProperty(e,t);return o&&n&&be(e,"delete",t,void 0),o},has:function(e,t){const n=Reflect.has(e,t);return P(t)&&xe.has(t)||ye(e,0,t),n},ownKeys:function(e){return ye(e,0,k(e)?"length":ue),Reflect.ownKeys(e)}},Pe={get:Ne,set:(e,t)=>!0,deleteProperty:(e,t)=>!0},Me=x({},Re,{get:Te,set:Ie(!0)}),$e=x({},Pe,{get:ke}),Le=e=>e,Fe=e=>Reflect.getPrototypeOf(e);function Ve(e,t,n=!1,o=!1){const r=vt(e=e.__v_raw),s=vt(t);t!==s&&!n&&ye(r,0,t),!n&&ye(r,0,s);const{has:i}=Fe(r),c=o?Le:n?bt:_t;return i.call(r,t)?c(e.get(t)):i.call(r,s)?c(e.get(s)):void(e!==r&&e.get(t))}function Be(e,t=!1){const n=this.__v_raw,o=vt(n),r=vt(e);return e!==r&&!t&&ye(o,0,e),!t&&ye(o,0,r),e===r?n.has(e):n.has(e)||n.has(r)}function De(e,t=!1){return e=e.__v_raw,!t&&ye(vt(e),0,ue),Reflect.get(e,"size",e)}function je(e){e=vt(e);const t=vt(this);return Fe(t).has.call(t,e)||(t.add(e),be(t,"add",e,e)),this}function Ue(e,t){t=vt(t);const n=vt(this),{has:o,get:r}=Fe(n);let s=o.call(n,e);s||(e=vt(e),s=o.call(n,e));const i=r.call(n,e);return n.set(e,t),s?J(t,i)&&be(n,"set",e,t):be(n,"add",e,t),this}function He(e){const t=vt(this),{has:n,get:o}=Fe(t);let r=n.call(t,e);r||(e=vt(e),r=n.call(t,e)),o&&o.call(t,e);const s=t.delete(e);return r&&be(t,"delete",e,void 0),s}function We(){const e=vt(this),t=0!==e.size,n=e.clear();return t&&be(e,"clear",void 0,void 0),n}function Ke(e,t){return function(n,o){const r=this,s=r.__v_raw,i=vt(s),c=t?Le:e?bt:_t;return!e&&ye(i,0,ue),s.forEach(((e,t)=>n.call(o,c(e),c(t),r)))}}function ze(e,t,n){return function(...o){const r=this.__v_raw,s=vt(r),i=w(s),c="entries"===e||e===Symbol.iterator&&i,l="keys"===e&&i,a=r[e](...o),u=n?Le:t?bt:_t;return!t&&ye(s,0,l?pe:ue),{next(){const{value:e,done:t}=a.next();return t?{value:e,done:t}:{value:c?[u(e[0]),u(e[1])]:u(e),done:t}},[Symbol.iterator](){return this}}}}function Ge(e){return function(...t){return"delete"!==e&&this}}function qe(){const e={get(e){return Ve(this,e)},get size(){return De(this)},has:Be,add:je,set:Ue,delete:He,clear:We,forEach:Ke(!1,!1)},t={get(e){return Ve(this,e,!1,!0)},get size(){return De(this)},has:Be,add:je,set:Ue,delete:He,clear:We,forEach:Ke(!1,!0)},n={get(e){return Ve(this,e,!0)},get size(){return De(this,!0)},has(e){return Be.call(this,e,!0)},add:Ge("add"),set:Ge("set"),delete:Ge("delete"),clear:Ge("clear"),forEach:Ke(!0,!1)},o={get(e){return Ve(this,e,!0,!0)},get size(){return De(this,!0)},has(e){return Be.call(this,e,!0)},add:Ge("add"),set:Ge("set"),delete:Ge("delete"),clear:Ge("clear"),forEach:Ke(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach((r=>{e[r]=ze(r,!1,!1),n[r]=ze(r,!0,!1),t[r]=ze(r,!1,!0),o[r]=ze(r,!0,!0)})),[e,n,t,o]}const[Je,Ye,Ze,Xe]=qe();function Qe(e,t){const n=t?e?Xe:Ze:e?Ye:Je;return(t,o,r)=>"__v_isReactive"===o?!e:"__v_isReadonly"===o?e:"__v_raw"===o?t:Reflect.get(N(n,o)&&o in t?n:t,o,r)}const et={get:Qe(!1,!1)},tt={get:Qe(!1,!0)},nt={get:Qe(!0,!1)},ot={get:Qe(!0,!0)},rt=new WeakMap,st=new WeakMap,it=new WeakMap,ct=new WeakMap;function lt(e){return e.__v_skip||!Object.isExtensible(e)?0:function(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}((e=>F(e).slice(8,-1))(e))}function at(e){return ht(e)?e:ft(e,!1,Re,et,rt)}function ut(e){return ft(e,!1,Me,tt,st)}function pt(e){return ft(e,!0,Pe,nt,it)}function ft(e,t,n,o,r){if(!M(e))return e;if(e.__v_raw&&(!t||!e.__v_isReactive))return e;const s=r.get(e);if(s)return s;const i=lt(e);if(0===i)return e;const c=new Proxy(e,2===i?o:n);return r.set(e,c),c}function dt(e){return ht(e)?dt(e.__v_raw):!(!e||!e.__v_isReactive)}function ht(e){return!(!e||!e.__v_isReadonly)}function mt(e){return!(!e||!e.__v_isShallow)}function gt(e){return dt(e)||ht(e)}function vt(e){const t=e&&e.__v_raw;return t?vt(t):e}function yt(e){return Z(e,"__v_skip",!0),e}const _t=e=>M(e)?at(e):e,bt=e=>M(e)?pt(e):e;function St(e){he&&ae&&_e((e=vt(e)).dep||(e.dep=oe()))}function Ct(e,t){(e=vt(e)).dep&&Se(e.dep)}function xt(e){return!(!e||!0!==e.__v_isRef)}function Et(e){return Tt(e,!1)}function Tt(e,t){return xt(e)?e:new Nt(e,t)}class Nt{constructor(e,t){this.__v_isShallow=t,this.dep=void 0,this.__v_isRef=!0,this._rawValue=t?e:vt(e),this._value=t?e:_t(e)}get value(){return St(this),this._value}set value(e){e=this.__v_isShallow?e:vt(e),J(e,this._rawValue)&&(this._rawValue=e,this._value=this.__v_isShallow?e:_t(e),Ct(this))}}function kt(e){return xt(e)?e.value:e}const wt={get:(e,t,n)=>kt(Reflect.get(e,t,n)),set:(e,t,n,o)=>{const r=e[t];return xt(r)&&!xt(n)?(r.value=n,!0):Reflect.set(e,t,n,o)}};function Ot(e){return dt(e)?e:new Proxy(e,wt)}class At{constructor(e){this.dep=void 0,this.__v_isRef=!0;const{get:t,set:n}=e((()=>St(this)),(()=>Ct(this)));this._get=t,this._set=n}get value(){return this._get()}set value(e){this._set(e)}}class It{constructor(e,t,n){this._object=e,this._key=t,this._defaultValue=n,this.__v_isRef=!0}get value(){const e=this._object[this._key];return void 0===e?this._defaultValue:e}set value(e){this._object[this._key]=e}}function Rt(e,t,n){const o=e[t];return xt(o)?o:new It(e,t,n)}class Pt{constructor(e,t,n,o){this._setter=t,this.dep=void 0,this.__v_isRef=!0,this._dirty=!0,this.effect=new fe(e,(()=>{this._dirty||(this._dirty=!0,Ct(this))})),this.effect.computed=this,this.effect.active=this._cacheable=!o,this.__v_isReadonly=n}get value(){const e=vt(this);return St(e),!e._dirty&&e._cacheable||(e._dirty=!1,e._value=e.effect.run()),e._value}set value(e){this._setter(e)}}const Mt=[];function $t(e){const t=[],n=Object.keys(e);return n.slice(0,3).forEach((n=>{t.push(...Lt(n,e[n]))})),n.length>3&&t.push(" ..."),t}function Lt(e,t,n){return R(t)?(t=JSON.stringify(t),n?t:[`${e}=${t}`]):"number"==typeof t||"boolean"==typeof t||null==t?n?t:[`${e}=${t}`]:xt(t)?(t=Lt(e,vt(t.value),!0),n?t:[`${e}=Ref<`,t,">"]):I(t)?[`${e}=fn${t.name?`<${t.name}>`:""}`]:(t=vt(t),n?t:[`${e}=`,t])}function Ft(e,t,n,o){let r;try{r=o?e(...o):e()}catch(s){Bt(s,t,n)}return r}function Vt(e,t,n,o){if(I(e)){const r=Ft(e,t,n,o);return r&&$(r)&&r.catch((e=>{Bt(e,t,n)})),r}const r=[];for(let s=0;s<e.length;s++)r.push(Vt(e[s],t,n,o));return r}function Bt(e,t,n,o=!0){if(t){let o=t.parent;const r=t.proxy,s=n;for(;o;){const t=o.ec;if(t)for(let n=0;n<t.length;n++)if(!1===t[n](e,r,s))return;o=o.parent}const i=t.appContext.config.errorHandler;if(i)return void Ft(i,null,10,[e,r,s])}!function(e,t,n,o=!0){console.error(e)}(e,0,0,o)}let Dt=!1,jt=!1;const Ut=[];let Ht=0;const Wt=[];let Kt=null,zt=0;const Gt=[];let qt=null,Jt=0;const Yt=Promise.resolve();let Zt=null,Xt=null;function Qt(e){const t=Zt||Yt;return e?t.then(this?e.bind(this):e):t}function en(e){Ut.length&&Ut.includes(e,Dt&&e.allowRecurse?Ht+1:Ht)||e===Xt||(null==e.id?Ut.push(e):Ut.splice(function(e){let t=Ht+1,n=Ut.length;for(;t<n;){const o=t+n>>>1;cn(Ut[o])<e?t=o+1:n=o}return t}(e.id),0,e),tn())}function tn(){Dt||jt||(jt=!0,Zt=Yt.then(ln))}function nn(e,t,n,o){k(e)?n.push(...e):t&&t.includes(e,e.allowRecurse?o+1:o)||n.push(e),tn()}function on(e){nn(e,qt,Gt,Jt)}function rn(e,t=null){if(Wt.length){for(Xt=t,Kt=[...new Set(Wt)],Wt.length=0,zt=0;zt<Kt.length;zt++)Kt[zt]();Kt=null,zt=0,Xt=null,rn(e,t)}}function sn(e){if(Gt.length){const e=[...new Set(Gt)];if(Gt.length=0,qt)return void qt.push(...e);for(qt=e,qt.sort(((e,t)=>cn(e)-cn(t))),Jt=0;Jt<qt.length;Jt++)qt[Jt]();qt=null,Jt=0}}const cn=e=>null==e.id?1/0:e.id;function ln(e){jt=!1,Dt=!0,rn(e),Ut.sort(((e,t)=>cn(e)-cn(t)));try{for(Ht=0;Ht<Ut.length;Ht++){const e=Ut[Ht];e&&!1!==e.active&&Ft(e,null,14)}}finally{Ht=0,Ut.length=0,sn(),Dt=!1,Zt=null,(Ut.length||Wt.length||Gt.length)&&ln(e)}}let an,un=[];const pn={MODE:2};function fn(e){x(pn,e)}function dn(e,t){const n=t&&t.type.compatConfig;return n&&e in n?n[e]:pn[e]}function hn(e,t,n=!1){if(!n&&t&&t.type.__isBuiltIn)return!1;const o=dn("MODE",t)||2,r=dn(e,t);return 2===(I(o)?o(t&&t.type):o)?!1!==r:!0===r||"suppress-warning"===r}function mn(e,t,...n){if(!hn(e,t))throw new Error(`${e} compat has been disabled.`)}function gn(e,t,...n){return hn(e,t)}function vn(e,t,...n){return hn(e,t)}const yn=new WeakMap;function _n(e){let t=yn.get(e);return t||yn.set(e,t=Object.create(null)),t}function bn(e,t,n){if(k(t))t.forEach((t=>bn(e,t,n)));else{t.startsWith("hook:")?mn("INSTANCE_EVENT_HOOKS",e):mn("INSTANCE_EVENT_EMITTER",e);const o=_n(e);(o[t]||(o[t]=[])).push(n)}return e.proxy}function Sn(e,t,n){const o=(...r)=>{Cn(e,t,o),n.call(e.proxy,...r)};return o.fn=n,bn(e,t,o),e.proxy}function Cn(e,t,n){mn("INSTANCE_EVENT_EMITTER",e);const o=e.proxy;if(!t)return yn.set(e,Object.create(null)),o;if(k(t))return t.forEach((t=>Cn(e,t,n))),o;const r=_n(e),s=r[t];return s?n?(r[t]=s.filter((e=>!(e===n||e.fn===n))),o):(r[t]=void 0,o):o}const xn="onModelCompat:";function En(e){const{type:t,shapeFlag:n,props:o,dynamicProps:r}=e,s=t;if(6&n&&o&&"modelValue"in o){if(!hn("COMPONENT_V_MODEL",{type:t}))return;const e=s.model||{};Tn(e,s.mixins);const{prop:n="value",event:i="input"}=e;"modelValue"!==n&&(o[n]=o.modelValue,delete o.modelValue),r&&(r[r.indexOf("modelValue")]=n),o[xn+i]=o["onUpdate:modelValue"],delete o["onUpdate:modelValue"]}}function Tn(e,t){t&&t.forEach((t=>{t.model&&x(e,t.model),t.mixins&&Tn(e,t.mixins)}))}function Nn(e,t,...n){const o=e.vnode.props||g;let r=n;const s=t.startsWith("update:"),i=s&&t.slice(7);if(i&&i in o){const e=`${"modelValue"===i?"model":i}Modifiers`,{number:t,trim:s}=o[e]||g;s?r=n.map((e=>e.trim())):t&&(r=n.map(X))}let c,l=o[c=q(t)]||o[c=q(W(t))];!l&&s&&(l=o[c=q(z(t))]),l&&Vt(l,e,6,r);const a=o[c+"Once"];if(a){if(e.emitted){if(e.emitted[c])return}else e.emitted={};e.emitted[c]=!0,Vt(a,e,6,r)}return function(e,t,n){if(!hn("COMPONENT_V_MODEL",e))return;const o=e.vnode.props,r=o&&o[xn+t];r&&Ft(r,e,6,n)}(e,t,r),function(e,t,n){const o=_n(e)[t];return o&&Vt(o.map((t=>t.bind(e.proxy))),e,6,n),e.proxy}(e,t,r)}function kn(e,t,n=!1){const o=t.emitsCache,r=o.get(e);if(void 0!==r)return r;const s=e.emits;let i={},c=!1;if(!I(e)){const o=e=>{const n=kn(e,t,!0);n&&(c=!0,x(i,n))};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}return s||c?(k(s)?s.forEach((e=>i[e]=null)):x(i,s),o.set(e,i),i):(o.set(e,null),null)}function wn(e,t){return!(!e||!S(t))&&(!!t.startsWith(xn)||(t=t.slice(2).replace(/Once$/,""),N(e,t[0].toLowerCase()+t.slice(1))||N(e,z(t))||N(e,t)))}let On=null,An=null;function In(e){const t=On;return On=e,An=e&&e.type.__scopeId||null,An||(An=e&&e.type._scopeId||null),t}function Rn(e,t=On,n){if(!t)return e;if(e._n)return e;const o=(...n)=>{o._d&&fs(-1);const r=In(t),s=e(...n);return In(r),o._d&&fs(1),s};return o._n=!0,o._c=!0,o._d=!0,n&&(o._ns=!0),o}function Pn(e){const{type:t,vnode:n,proxy:o,withProxy:r,props:s,propsOptions:[i],slots:c,attrs:l,emit:a,render:u,renderCache:p,data:f,setupState:d,ctx:h,inheritAttrs:m}=e;let g,v;const y=In(e);try{if(4&n.shapeFlag){const e=r||o;g=Ns(u.call(e,e,p,s,d,f,h)),v=l}else{const e=t;0,g=Ns(e(s,e.length>1?{attrs:l,slots:c,emit:a}:null)),v=t.props?l:Mn(l)}}catch(b){cs.length=0,Bt(b,e,1),g=Ss(ss)}let _=g;if(v&&!1!==m){const e=Object.keys(v),{shapeFlag:t}=_;e.length&&7&t&&(i&&e.some(C)&&(v=$n(v,i)),_=xs(_,v))}if(hn("INSTANCE_ATTRS_CLASS_STYLE",e)&&4&n.shapeFlag&&7&_.shapeFlag){const{class:e,style:t}=n.props||{};(e||t)&&(_=xs(_,{class:e,style:t}))}return n.dirs&&(_.dirs=_.dirs?_.dirs.concat(n.dirs):n.dirs),n.transition&&(_.transition=n.transition),g=_,In(y),g}const Mn=e=>{let t;for(const n in e)("class"===n||"style"===n||S(n))&&((t||(t={}))[n]=e[n]);return t},$n=(e,t)=>{const n={};for(const o in e)C(o)&&o.slice(9)in t||(n[o]=e[o]);return n};function Ln(e,t,n){const o=Object.keys(t);if(o.length!==Object.keys(e).length)return!0;for(let r=0;r<o.length;r++){const s=o[r];if(t[s]!==e[s]&&!wn(n,s))return!0}return!1}function Fn({vnode:e,parent:t},n){for(;t&&t.subTree===e;)(e=t.vnode).el=n,t=t.parent}const Vn={name:"Suspense",__isSuspense:!0,process(e,t,n,o,r,s,i,c,l,a){null==e?function(e,t,n,o,r,s,i,c,l){const{p:a,o:{createElement:u}}=l,p=u("div"),f=e.suspense=Dn(e,r,o,t,p,n,s,i,c,l);a(null,f.pendingBranch=e.ssContent,p,null,o,f,s,i),f.deps>0?(Bn(e,"onPending"),Bn(e,"onFallback"),a(null,e.ssFallback,t,n,o,null,s,i),Hn(f,e.ssFallback)):f.resolve()}(t,n,o,r,s,i,c,l,a):function(e,t,n,o,r,s,i,c,{p:l,um:a,o:{createElement:u}}){const p=t.suspense=e.suspense;p.vnode=t,t.el=e.el;const f=t.ssContent,d=t.ssFallback,{activeBranch:h,pendingBranch:m,isInFallback:g,isHydrating:v}=p;if(m)p.pendingBranch=f,gs(f,m)?(l(m,f,p.hiddenContainer,null,r,p,s,i,c),p.deps<=0?p.resolve():g&&(l(h,d,n,o,r,null,s,i,c),Hn(p,d))):(p.pendingId++,v?(p.isHydrating=!1,p.activeBranch=m):a(m,r,p),p.deps=0,p.effects.length=0,p.hiddenContainer=u("div"),g?(l(null,f,p.hiddenContainer,null,r,p,s,i,c),p.deps<=0?p.resolve():(l(h,d,n,o,r,null,s,i,c),Hn(p,d))):h&&gs(f,h)?(l(h,f,n,o,r,p,s,i,c),p.resolve(!0)):(l(null,f,p.hiddenContainer,null,r,p,s,i,c),p.deps<=0&&p.resolve()));else if(h&&gs(f,h))l(h,f,n,o,r,p,s,i,c),Hn(p,f);else if(Bn(t,"onPending"),p.pendingBranch=f,p.pendingId++,l(null,f,p.hiddenContainer,null,r,p,s,i,c),p.deps<=0)p.resolve();else{const{timeout:e,pendingId:t}=p;e>0?setTimeout((()=>{p.pendingId===t&&p.fallback(d)}),e):0===e&&p.fallback(d)}}(e,t,n,o,r,i,c,l,a)},hydrate:function(e,t,n,o,r,s,i,c,l){const a=t.suspense=Dn(t,o,n,e.parentNode,document.createElement("div"),null,r,s,i,c,!0),u=l(e,a.pendingBranch=t.ssContent,n,a,s,i);0===a.deps&&a.resolve();return u},create:Dn,normalize:function(e){const{shapeFlag:t,children:n}=e,o=32&t;e.ssContent=jn(o?n.default:n),e.ssFallback=o?jn(n.fallback):Ss(ss)}};function Bn(e,t){const n=e.props&&e.props[t];I(n)&&n()}function Dn(e,t,n,o,r,s,i,c,l,a,u=!1){const{p:p,m:f,um:d,n:h,o:{parentNode:m,remove:g}}=a,v=X(e.props&&e.props.timeout),y={vnode:e,parent:t,parentComponent:n,isSVG:i,container:o,hiddenContainer:r,anchor:s,deps:0,pendingId:0,timeout:"number"==typeof v?v:-1,activeBranch:null,pendingBranch:null,isInFallback:!0,isHydrating:u,isUnmounted:!1,effects:[],resolve(e=!1){const{vnode:t,activeBranch:n,pendingBranch:o,pendingId:r,effects:s,parentComponent:i,container:c}=y;if(y.isHydrating)y.isHydrating=!1;else if(!e){const e=n&&o.transition&&"out-in"===o.transition.mode;e&&(n.transition.afterLeave=()=>{r===y.pendingId&&f(o,c,t,0)});let{anchor:t}=y;n&&(t=h(n),d(n,i,y,!0)),e||f(o,c,t,0)}Hn(y,o),y.pendingBranch=null,y.isInFallback=!1;let l=y.parent,a=!1;for(;l;){if(l.pendingBranch){l.effects.push(...s),a=!0;break}l=l.parent}a||on(s),y.effects=[],Bn(t,"onResolve")},fallback(e){if(!y.pendingBranch)return;const{vnode:t,activeBranch:n,parentComponent:o,container:r,isSVG:s}=y;Bn(t,"onFallback");const i=h(n),a=()=>{y.isInFallback&&(p(null,e,r,i,o,null,s,c,l),Hn(y,e))},u=e.transition&&"out-in"===e.transition.mode;u&&(n.transition.afterLeave=a),y.isInFallback=!0,d(n,o,null,!0),u||a()},move(e,t,n){y.activeBranch&&f(y.activeBranch,e,t,n),y.container=e},next:()=>y.activeBranch&&h(y.activeBranch),registerDep(e,t){const n=!!y.pendingBranch;n&&y.deps++;const o=e.vnode.el;e.asyncDep.catch((t=>{Bt(t,e,0)})).then((r=>{if(e.isUnmounted||y.isUnmounted||y.pendingId!==e.suspenseId)return;e.asyncResolved=!0;const{vnode:s}=e;fi(e,r,!1),o&&(s.el=o);const c=!o&&e.subTree.el;t(e,s,m(o||e.subTree.el),o?null:h(e.subTree),y,i,l),c&&g(c),Fn(e,s.el),n&&0==--y.deps&&y.resolve()}))},unmount(e,t){y.isUnmounted=!0,y.activeBranch&&d(y.activeBranch,n,e,t),y.pendingBranch&&d(y.pendingBranch,n,e,t)}};return y}function jn(e){let t;if(I(e)){const n=ps&&e._c;n&&(e._d=!1,as()),e=e(),n&&(e._d=!0,t=ls,us())}if(k(e)){const t=function(e){let t;for(let n=0;n<e.length;n++){const o=e[n];if(!ms(o))return;if(o.type!==ss||"v-if"===o.children){if(t)return;t=o}}return t}(e);e=t}return e=Ns(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter((t=>t!==e))),e}function Un(e,t){t&&t.pendingBranch?k(e)?t.effects.push(...e):t.effects.push(e):on(e)}function Hn(e,t){e.activeBranch=t;const{vnode:n,parentComponent:o}=e,r=n.el=t.el;o&&o.subTree===n&&(o.vnode.el=r,Fn(o,r))}function Wn(e,t){if(oi){let n=oi.provides;const o=oi.parent&&oi.parent.provides;o===n&&(n=oi.provides=Object.create(o)),n[e]=t}else;}function Kn(e,t,n=!1){const o=oi||On;if(o){const r=null==o.parent?o.vnode.appContext&&o.vnode.appContext.provides:o.parent.provides;if(r&&e in r)return r[e];if(arguments.length>1)return n&&I(t)?t.call(o.proxy):t}}function zn(e,t){return Jn(e,null,{flush:"post"})}const Gn={};function qn(e,t,n){return Jn(e,t,n)}function Jn(e,t,{immediate:n,deep:o,flush:r}=g){const s=oi;let i,c,l=!1,a=!1;if(xt(e)?(i=()=>e.value,l=mt(e)):dt(e)?(i=()=>e,o=!0):k(e)?(a=!0,l=e.some(dt),i=()=>e.map((e=>xt(e)?e.value:dt(e)?Xn(e):I(e)?Ft(e,s,2):void 0))):i=I(e)?t?()=>Ft(e,s,2):()=>{if(!s||!s.isUnmounted)return c&&c(),Vt(e,s,3,[u])}:y,t&&!o){const e=i;i=()=>{const t=e();return k(t)&&vn("WATCH_ARRAY",s)&&Xn(t),t}}if(t&&o){const e=i;i=()=>Xn(e())}let u=e=>{c=h.onStop=()=>{Ft(e,s,4)}},p=a?[]:Gn;const f=()=>{if(h.active)if(t){const e=h.run();(o||l||(a?e.some(((e,t)=>J(e,p[t]))):J(e,p))||k(e)&&hn("WATCH_ARRAY",s))&&(c&&c(),Vt(t,s,3,[e,p===Gn?void 0:p,u]),p=e)}else h.run()};let d;f.allowRecurse=!!t,d="sync"===r?f:"post"===r?()=>kr(f,s&&s.suspense):()=>{!s||s.isMounted?function(e){nn(e,Kt,Wt,zt)}(f):f()};const h=new fe(i,d);return t?n?f():p=h.run():"post"===r?kr(h.run.bind(h),s&&s.suspense):h.run(),()=>{h.stop(),s&&s.scope&&E(s.scope.effects,h)}}function Yn(e,t,n){const o=this.proxy,r=R(e)?e.includes(".")?Zn(o,e):()=>o[e]:e.bind(o,o);let s;I(t)?s=t:(s=t.handler,n=t);const i=oi;si(this);const c=Jn(r,s.bind(o),n);return i?si(i):ii(),c}function Zn(e,t){const n=t.split(".");return()=>{let t=e;for(let e=0;e<n.length&&t;e++)t=t[n[e]];return t}}function Xn(e,t){if(!M(e)||e.__v_skip)return e;if((t=t||new Set).has(e))return e;if(t.add(e),xt(e))Xn(e.value,t);else if(k(e))for(let n=0;n<e.length;n++)Xn(e[n],t);else if(O(e)||w(e))e.forEach((e=>{Xn(e,t)}));else if(V(e))for(const n in e)Xn(e[n],t);return e}function Qn(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return ko((()=>{e.isMounted=!0})),Ao((()=>{e.isUnmounting=!0})),e}const eo=[Function,Array],to={name:"BaseTransition",props:{mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:eo,onEnter:eo,onAfterEnter:eo,onEnterCancelled:eo,onBeforeLeave:eo,onLeave:eo,onAfterLeave:eo,onLeaveCancelled:eo,onBeforeAppear:eo,onAppear:eo,onAfterAppear:eo,onAppearCancelled:eo},setup(e,{slots:t}){const n=ri(),o=Qn();let r;return()=>{const s=t.default&&lo(t.default(),!0);if(!s||!s.length)return;const i=vt(e),{mode:c}=i,l=s[0];if(o.isLeaving)return so(l);const a=io(l);if(!a)return so(l);const u=ro(a,i,o,n);co(a,u);const p=n.subTree,f=p&&io(p);let d=!1;const{getTransitionKey:h}=a.type;if(h){const e=h();void 0===r?r=e:e!==r&&(r=e,d=!0)}if(f&&f.type!==ss&&(!gs(a,f)||d)){const e=ro(f,i,o,n);if(co(f,e),"out-in"===c)return o.isLeaving=!0,e.afterLeave=()=>{o.isLeaving=!1,n.update()},so(l);"in-out"===c&&a.type!==ss&&(e.delayLeave=(e,t,n)=>{oo(o,f)[String(f.key)]=f,e._leaveCb=()=>{t(),e._leaveCb=void 0,delete u.delayedLeave},u.delayedLeave=n})}return l}},__isBuiltIn:!0},no=to;function oo(e,t){const{leavingVNodes:n}=e;let o=n.get(t.type);return o||(o=Object.create(null),n.set(t.type,o)),o}function ro(e,t,n,o){const{appear:r,mode:s,persisted:i=!1,onBeforeEnter:c,onEnter:l,onAfterEnter:a,onEnterCancelled:u,onBeforeLeave:p,onLeave:f,onAfterLeave:d,onLeaveCancelled:h,onBeforeAppear:m,onAppear:g,onAfterAppear:v,onAppearCancelled:y}=t,_=String(e.key),b=oo(n,e),S=(e,t)=>{e&&Vt(e,o,9,t)},C={mode:s,persisted:i,beforeEnter(t){let o=c;if(!n.isMounted){if(!r)return;o=m||c}t._leaveCb&&t._leaveCb(!0);const s=b[_];s&&gs(e,s)&&s.el._leaveCb&&s.el._leaveCb(),S(o,[t])},enter(e){let t=l,o=a,s=u;if(!n.isMounted){if(!r)return;t=g||l,o=v||a,s=y||u}let i=!1;const c=e._enterCb=t=>{i||(i=!0,S(t?s:o,[e]),C.delayedLeave&&C.delayedLeave(),e._enterCb=void 0)};t?(t(e,c),t.length<=1&&c()):c()},leave(t,o){const r=String(e.key);if(t._enterCb&&t._enterCb(!0),n.isUnmounting)return o();S(p,[t]);let s=!1;const i=t._leaveCb=n=>{s||(s=!0,o(),S(n?h:d,[t]),t._leaveCb=void 0,b[r]===e&&delete b[r])};b[r]=e,f?(f(t,i),f.length<=1&&i()):i()},clone:e=>ro(e,t,n,o)};return C}function so(e){if(ho(e))return(e=xs(e)).children=null,e}function io(e){return ho(e)?e.children?e.children[0]:void 0:e}function co(e,t){6&e.shapeFlag&&e.component?co(e.component.subTree,t):128&e.shapeFlag?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function lo(e,t=!1){let n=[],o=0;for(let r=0;r<e.length;r++){const s=e[r];s.type===os?(128&s.patchFlag&&o++,n=n.concat(lo(s.children,t))):(t||s.type!==ss)&&n.push(s)}if(o>1)for(let r=0;r<n.length;r++)n[r].patchFlag=-2;return n}function ao(e){return I(e)?{setup:e,name:e.name}:e}const uo=e=>!!e.type.__asyncLoader;function po(e){I(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:o,delay:r=200,timeout:s,suspensible:i=!0,onError:c}=e;let l,a=null,u=0;const p=()=>{let e;return a||(e=a=t().catch((e=>{if(e=e instanceof Error?e:new Error(String(e)),c)return new Promise(((t,n)=>{c(e,(()=>t((u++,a=null,p()))),(()=>n(e)),u+1)}));throw e})).then((t=>e!==a&&a?a:(t&&(t.__esModule||"Module"===t[Symbol.toStringTag])&&(t=t.default),l=t,t))))};return ao({name:"AsyncComponentWrapper",__asyncLoader:p,get __asyncResolved(){return l},setup(){const e=oi;if(l)return()=>fo(l,e);const t=t=>{a=null,Bt(t,e,13,!o)};if(i&&e.suspense)return p().then((t=>()=>fo(t,e))).catch((e=>(t(e),()=>o?Ss(o,{error:e}):null)));const c=Et(!1),u=Et(),f=Et(!!r);return r&&setTimeout((()=>{f.value=!1}),r),null!=s&&setTimeout((()=>{if(!c.value&&!u.value){const e=new Error(`Async component timed out after ${s}ms.`);t(e),u.value=e}}),s),p().then((()=>{c.value=!0,e.parent&&ho(e.parent.vnode)&&en(e.parent.update)})).catch((e=>{t(e),u.value=e})),()=>c.value&&l?fo(l,e):u.value&&o?Ss(o,{error:u.value}):n&&!f.value?Ss(n):void 0}})}function fo(e,{vnode:{ref:t,props:n,children:o}}){const r=Ss(e,n,o);return r.ref=t,r}const ho=e=>e.type.__isKeepAlive,mo={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=ri(),o=n.ctx;if(!o.renderer)return t.default;const r=new Map,s=new Set;let i=null;const c=n.suspense,{renderer:{p:l,m:a,um:u,o:{createElement:p}}}=o,f=p("div");function d(e){Co(e),u(e,n,c,!0)}function h(e){r.forEach(((t,n)=>{const o=_i(t.type);!o||e&&e(o)||m(n)}))}function m(e){const t=r.get(e);i&&t.type===i.type?i&&Co(i):d(t),r.delete(e),s.delete(e)}o.activate=(e,t,n,o,r)=>{const s=e.component;a(e,t,n,0,c),l(s.vnode,e,t,n,s,c,o,e.slotScopeIds,r),kr((()=>{s.isDeactivated=!1,s.a&&Y(s.a);const t=e.props&&e.props.onVnodeMounted;t&&As(t,s.parent,e)}),c)},o.deactivate=e=>{const t=e.component;a(e,f,null,1,c),kr((()=>{t.da&&Y(t.da);const n=e.props&&e.props.onVnodeUnmounted;n&&As(n,t.parent,e),t.isDeactivated=!0}),c)},qn((()=>[e.include,e.exclude]),(([e,t])=>{e&&h((t=>vo(e,t))),t&&h((e=>!vo(t,e)))}),{flush:"post",deep:!0});let g=null;const v=()=>{null!=g&&r.set(g,xo(n.subTree))};return ko(v),Oo(v),Ao((()=>{r.forEach((e=>{const{subTree:t,suspense:o}=n,r=xo(t);if(e.type!==r.type)d(e);else{Co(r);const e=r.component.da;e&&kr(e,o)}}))})),()=>{if(g=null,!t.default)return null;const n=t.default(),o=n[0];if(n.length>1)return i=null,n;if(!(ms(o)&&(4&o.shapeFlag||128&o.shapeFlag)))return i=null,o;let c=xo(o);const l=c.type,a=_i(uo(c)?c.type.__asyncResolved||{}:l),{include:u,exclude:p,max:f}=e;if(u&&(!a||!vo(u,a))||p&&a&&vo(p,a))return i=c,o;const d=null==c.key?l:c.key,h=r.get(d);return c.el&&(c=xs(c),128&o.shapeFlag&&(o.ssContent=c)),g=d,h?(c.el=h.el,c.component=h.component,c.transition&&co(c,c.transition),c.shapeFlag|=512,s.delete(d),s.add(d)):(s.add(d),f&&s.size>parseInt(f,10)&&m(s.values().next().value)),c.shapeFlag|=256,i=c,o}},__isBuildIn:!0},go=mo;function vo(e,t){return k(e)?e.some((e=>vo(e,t))):R(e)?e.split(",").includes(t):!!e.test&&e.test(t)}function yo(e,t){bo(e,"a",t)}function _o(e,t){bo(e,"da",t)}function bo(e,t,n=oi){const o=e.__wdc||(e.__wdc=()=>{let t=n;for(;t;){if(t.isDeactivated)return;t=t.parent}return e()});if(Eo(t,o,n),n){let e=n.parent;for(;e&&e.parent;)ho(e.parent.vnode)&&So(o,t,n,e),e=e.parent}}function So(e,t,n,o){const r=Eo(t,e,o,!0);Io((()=>{E(o[t],r)}),n)}function Co(e){let t=e.shapeFlag;256&t&&(t-=256),512&t&&(t-=512),e.shapeFlag=t}function xo(e){return 128&e.shapeFlag?e.ssContent:e}function Eo(e,t,n=oi,o=!1){if(n){const r=n[e]||(n[e]=[]),s=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;ge(),si(n);const r=Vt(t,n,e,o);return ii(),ve(),r});return o?r.unshift(s):r.push(s),s}}const To=e=>(t,n=oi)=>(!ui||"sp"===e)&&Eo(e,t,n),No=To("bm"),ko=To("m"),wo=To("bu"),Oo=To("u"),Ao=To("bum"),Io=To("um"),Ro=To("sp"),Po=To("rtg"),Mo=To("rtc");function $o(e,t=oi){Eo("ec",e,t)}function Lo(e,t){for(const n in t){const o=e[n],r=t[n];n in e&&V(o)&&V(r)?Lo(o,r):e[n]=r}return e}let Fo=!0;function Vo(e,t,n=y,o=!1){k(e)&&(e=Ko(e));for(const r in e){const n=e[r];let s;s=M(n)?"default"in n?Kn(n.from||r,n.default,!0):Kn(n.from||r):Kn(n),xt(s)&&o?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>s.value,set:e=>s.value=e}):t[r]=s}}function Bo(e,t,n){Vt(k(e)?e.map((e=>e.bind(t.proxy))):e.bind(t.proxy),t,n)}function Do(e,t,n,o){const r=o.includes(".")?Zn(n,o):()=>n[o];if(R(e)){const n=t[e];I(n)&&qn(r,n)}else if(I(e))qn(r,e.bind(n));else if(M(e))if(k(e))e.forEach((e=>Do(e,t,n,o)));else{const o=I(e.handler)?e.handler.bind(n):t[e.handler];I(o)&&qn(r,o,e)}}function jo(e){const t=e.type,{mixins:n,extends:o}=t,{mixins:r,optionsCache:s,config:{optionMergeStrategies:i}}=e.appContext,c=s.get(t);let l;return c?l=c:r.length||n||o?(l={},r.length&&r.forEach((e=>Uo(l,e,i,!0))),Uo(l,t,i)):hn("PRIVATE_APIS",e)?(l=x({},t),l.parent=e.parent&&e.parent.proxy,l.propsData=e.vnode.props):l=t,s.set(t,l),l}function Uo(e,t,n,o=!1){I(t)&&(t=t.options);const{mixins:r,extends:s}=t;s&&Uo(e,s,n,!0),r&&r.forEach((t=>Uo(e,t,n,!0)));for(const i in t)if(o&&"expose"===i);else{const o=Ho[i]||n&&n[i];e[i]=o?o(e[i],t[i]):t[i]}return e}const Ho={data:Wo,props:Go,emits:Go,methods:Go,computed:Go,beforeCreate:zo,created:zo,beforeMount:zo,mounted:zo,beforeUpdate:zo,updated:zo,beforeDestroy:zo,beforeUnmount:zo,destroyed:zo,unmounted:zo,activated:zo,deactivated:zo,errorCaptured:zo,serverPrefetch:zo,components:Go,directives:Go,watch:function(e,t){if(!e)return t;if(!t)return e;const n=x(Object.create(null),e);for(const o in t)n[o]=zo(e[o],t[o]);return n},provide:Wo,inject:function(e,t){return Go(Ko(e),Ko(t))}};function Wo(e,t){return t?e?function(){return(hn("OPTIONS_DATA_MERGE",null)?Lo:x)(I(e)?e.call(this,this):e,I(t)?t.call(this,this):t)}:t:e}function Ko(e){if(k(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function zo(e,t){return e?[...new Set([].concat(e,t))]:t}function Go(e,t){return e?x(x(Object.create(null),e),t):t}function qo(e,t){return"is"===e||(!("class"!==e&&"style"!==e||!hn("INSTANCE_ATTRS_CLASS_STYLE",t))||(!(!S(e)||!hn("INSTANCE_LISTENERS",t))||!(!e.startsWith("routerView")&&"registerRouteInstance"!==e)))}function Jo(e,t,n,o){const[r,s]=e.propsOptions;let i,c=!1;if(t)for(let l in t){if(D(l))continue;if(l.startsWith("onHook:")&&gn("INSTANCE_EVENT_HOOKS",e,l.slice(2).toLowerCase()),"inline-template"===l)continue;const a=t[l];let u;if(r&&N(r,u=W(l)))s&&s.includes(u)?(i||(i={}))[u]=a:n[u]=a;else if(!wn(e.emitsOptions,l)){if(S(l)&&l.endsWith("Native"))l=l.slice(0,-6);else if(qo(l,e))continue;l in o&&a===o[l]||(o[l]=a,c=!0)}}if(s){const t=vt(n),o=i||g;for(let i=0;i<s.length;i++){const c=s[i];n[c]=Yo(r,t,c,o[c],e,!N(o,c))}}return c}function Yo(e,t,n,o,r,s){const i=e[n];if(null!=i){const e=N(i,"default");if(e&&void 0===o){const e=i.default;if(i.type!==Function&&I(e)){const{propsDefaults:s}=r;n in s?o=s[n]:(si(r),o=s[n]=e.call(hn("PROPS_DEFAULT_THIS",r)?function(e,t,n){return new Proxy({},{get(n,o){if("$options"===o)return jo(e);if(o in t)return t[o];const r=e.type.inject;if(r)if(k(r)){if(r.includes(o))return Kn(o)}else if(o in r)return Kn(o)}})}(r,t):null,t),ii())}else o=e}i[0]&&(s&&!e?o=!1:!i[1]||""!==o&&o!==z(n)||(o=!0))}return o}function Zo(e,t,n=!1){const o=t.propsCache,r=o.get(e);if(r)return r;const s=e.props,i={},c=[];let l=!1;if(!I(e)){const o=e=>{I(e)&&(e=e.options),l=!0;const[n,o]=Zo(e,t,!0);x(i,n),o&&c.push(...o)};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}if(!s&&!l)return o.set(e,v),v;if(k(s))for(let u=0;u<s.length;u++){const e=W(s[u]);Xo(e)&&(i[e]=g)}else if(s)for(const u in s){const e=W(u);if(Xo(e)){const t=s[u],n=i[e]=k(t)||I(t)?{type:t}:t;if(n){const t=tr(Boolean,n.type),o=tr(String,n.type);n[0]=t>-1,n[1]=o<0||t<o,(t>-1||N(n,"default"))&&c.push(e)}}}const a=[i,c];return o.set(e,a),a}function Xo(e){return"$"!==e[0]}function Qo(e){const t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:null===e?"null":""}function er(e,t){return Qo(e)===Qo(t)}function tr(e,t){return k(t)?t.findIndex((t=>er(t,e))):I(t)&&er(t,e)?0:-1}Ho.filters=Go;const nr=e=>"_"===e[0]||"$stable"===e,or=e=>k(e)?e.map(Ns):[Ns(e)],rr=(e,t,n)=>{const o=Rn(((...e)=>or(t(...e))),n);return o._c=!1,o},sr=(e,t,n)=>{const o=e._ctx;for(const r in e){if(nr(r))continue;const n=e[r];if(I(n))t[r]=rr(0,n,o);else if(null!=n){const e=or(n);t[r]=()=>e}}},ir=(e,t)=>{const n=or(t);e.slots.default=()=>n},cr={beforeMount:"bind",mounted:"inserted",updated:["update","componentUpdated"],unmounted:"unbind"};function lr(e,t,n){const o=cr[e];if(o){if(k(o)){const e=[];return o.forEach((o=>{const r=t[o];r&&(gn("CUSTOM_DIR",n),e.push(r))})),e.length?e:void 0}return t[o]&&gn("CUSTOM_DIR",n),t[o]}}function ar(e,t){if(null===On)return e;const n=On.proxy,o=e.dirs||(e.dirs=[]);for(let r=0;r<t.length;r++){let[e,s,i,c=g]=t[r];I(e)&&(e={mounted:e,updated:e}),e.deep&&Xn(s),o.push({dir:e,instance:n,value:s,oldValue:void 0,arg:i,modifiers:c})}return e}function ur(e,t,n,o){const r=e.dirs,s=t&&t.dirs;for(let i=0;i<r.length;i++){const c=r[i];s&&(c.oldValue=s[i].value);let l=c.dir[o];l||(l=lr(o,c.dir,n)),l&&(ge(),Vt(l,n,8,[e.el,c,e,t]),ve())}}let pr,fr;function dr(e,t,n){!function(e,t){t.filters={},e.filter=(n,o)=>(mn("FILTERS",null),o?(t.filters[n]=o,e):t.filters[n])}(e,t),e.config.optionMergeStrategies=new Proxy({},{get:(e,t)=>t in e?e[t]:t in Ho&&gn("CONFIG_OPTION_MERGE_STRATS",null)?Ho[t]:void 0}),pr&&(function(e,t,n){let o=!1;e._createRoot=r=>{const s=e._component,i=Ss(s,r.propsData||null);i.appContext=t;const c=!I(s)&&!s.render&&!s.template,l=()=>{},a=ni(i,null,null);return c&&(a.render=l),pi(a),i.component=a,i.isCompatRoot=!0,a.ctx._compat_mount=t=>{if(o)return;let r;if("string"==typeof t){const e=document.querySelector(t);if(!e)return;r=e}else r=t||document.createElement("div");const u=r instanceof SVGElement;return c&&a.render===l&&(a.render=null,s.template=r.innerHTML,mi(a,!1,!0)),r.innerHTML="",n(i,r,u),r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),o=!0,e._container=r,r.__vue_app__=e,a.proxy},a.ctx._compat_destroy=()=>{if(o)n(null,e._container),delete e._container.__vue_app__;else{const{bum:e,scope:t,um:n}=a;e&&Y(e),hn("INSTANCE_EVENT_HOOKS",a)&&a.emit("hook:beforeDestroy"),t&&t.stop(),n&&Y(n),hn("INSTANCE_EVENT_HOOKS",a)&&a.emit("hook:destroyed")}},a.proxy}}(e,t,n),function(e){Object.defineProperties(e,{prototype:{get:()=>e.config.globalProperties},nextTick:{value:Qt},extend:{value:fr.extend},set:{value:fr.set},delete:{value:fr.delete},observable:{value:fr.observable},util:{get:()=>fr.util}})}(e),function(e){["mixins","components","directives","filters","deopt"].forEach((t=>{e._context[t]=pr._context[t]}));for(const t in pr.config){if("isNativeTag"===t)continue;if(hi()&&("isCustomElement"===t||"compilerOptions"===t))continue;const n=pr.config[t];e.config[t]=n,"ignoredElements"===t&&hn("CONFIG_IGNORED_ELEMENTS",null)&&!hi()&&k(n)&&(e.config.compilerOptions.isCustomElement=e=>n.some((t=>R(t)?t===e:t.test(e))))}hr(e,fr)}(e))}function hr(e,t){const n=hn("GLOBAL_PROTOTYPE",null);n&&(e.config.globalProperties=Object.create(t.prototype));const o=Object.getOwnPropertyDescriptors(t.prototype);for(const r in o)"constructor"!==r&&n&&Object.defineProperty(e.config.globalProperties,r,o[r])}const mr=["push","pop","shift","unshift","splice","sort","reverse"],gr=new WeakSet;function vr(e,t,n){if(M(n)&&!dt(n)&&!gr.has(n)){const e=at(n);k(n)?mr.forEach((t=>{n[t]=(...n)=>{Array.prototype[t].call(e,...n)}})):Object.keys(n).forEach((e=>{try{yr(n,e,n[e])}catch(t){}}))}const o=e.$;o&&e===o.proxy?(yr(o.ctx,t,n),o.accessCache=Object.create(null)):dt(e)?e[t]=n:yr(e,t,n)}function yr(e,t,n){n=M(n)?at(n):n,Object.defineProperty(e,t,{enumerable:!0,configurable:!0,get:()=>(ye(e,0,t),n),set(o){n=M(o)?at(o):o,be(e,"set",t,o)}})}function _r(){return{app:null,config:{isNativeTag:_,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 br=0;function Sr(e,t){return function(n,o=null){null==o||M(o)||(o=null);const r=_r(),s=new Set;let i=!1;const c=r.app={_uid:br++,_component:n,_props:o,_container:null,_context:r,_instance:null,version:Ni,get config(){return r.config},set config(e){},use:(e,...t)=>(s.has(e)||(e&&I(e.install)?(s.add(e),e.install(c,...t)):I(e)&&(s.add(e),e(c,...t))),c),mixin:e=>(r.mixins.includes(e)||r.mixins.push(e),c),component:(e,t)=>t?(r.components[e]=t,c):r.components[e],directive:(e,t)=>t?(r.directives[e]=t,c):r.directives[e],mount(s,l,a){if(!i){const u=Ss(n,o);return u.appContext=r,l&&t?t(u,s):e(u,s,a),i=!0,c._container=s,s.__vue_app__=c,vi(u.component)||u.component.proxy}},unmount(){i&&(e(null,c._container),delete c._container.__vue_app__)},provide:(e,t)=>(r.provides[e]=t,c)};return dr(c,r,e),c}}function Cr(e,t,n,o,r=!1){if(k(e))return void e.forEach(((e,s)=>Cr(e,t&&(k(t)?t[s]:t),n,o,r)));if(uo(o)&&!r)return;const s=4&o.shapeFlag?vi(o.component)||o.component.proxy:o.el,i=r?null:s,{i:c,r:l}=e,a=t&&t.r,u=c.refs===g?c.refs={}:c.refs,p=c.setupState;if(null!=a&&a!==l&&(R(a)?(u[a]=null,N(p,a)&&(p[a]=null)):xt(a)&&(a.value=null)),I(l))Ft(l,c,12,[i,u]);else{const t=R(l),o=xt(l);if(t||o){const o=()=>{if(e.f){const n=t?u[l]:l.value;r?k(n)&&E(n,s):k(n)?n.includes(s)||n.push(s):t?u[l]=[s]:(l.value=[s],e.k&&(u[e.k]=l.value))}else t?(u[l]=i,N(p,l)&&(p[l]=i)):xt(l)&&(l.value=i,e.k&&(u[e.k]=i))};i?(o.id=-1,kr(o,n)):o()}}}let xr=!1;const Er=e=>/svg/.test(e.namespaceURI)&&"foreignObject"!==e.tagName,Tr=e=>8===e.nodeType;function Nr(e){const{mt:t,p:n,o:{patchProp:o,nextSibling:r,parentNode:s,remove:i,insert:c,createComment:l}}=e,a=(n,o,i,c,l,m=!1)=>{const g=Tr(n)&&"["===n.data,v=()=>d(n,o,i,c,l,g),{type:y,ref:_,shapeFlag:b}=o,S=n.nodeType;o.el=n;let C=null;switch(y){case rs:3!==S?C=v():(n.data!==o.children&&(xr=!0,n.data=o.children),C=r(n));break;case ss:C=8!==S||g?v():r(n);break;case is:if(1===S){C=n;const e=!o.children.length;for(let t=0;t<o.staticCount;t++)e&&(o.children+=C.outerHTML),t===o.staticCount-1&&(o.anchor=C),C=r(C);return C}C=v();break;case os:C=g?f(n,o,i,c,l,m):v();break;default:if(1&b)C=1!==S||o.type.toLowerCase()!==n.tagName.toLowerCase()?v():u(n,o,i,c,l,m);else if(6&b){o.slotScopeIds=l;const e=s(n);if(t(o,e,null,i,c,Er(e),m),C=g?h(n):r(n),uo(o)){let t;g?(t=Ss(os),t.anchor=C?C.previousSibling:e.lastChild):t=3===n.nodeType?Es(""):Ss("div"),t.el=n,o.component.subTree=t}}else 64&b?C=8!==S?v():o.type.hydrate(n,o,i,c,l,m,e,p):128&b&&(C=o.type.hydrate(n,o,i,c,Er(s(n)),l,m,e,a))}return null!=_&&Cr(_,null,c,o),C},u=(e,t,n,r,s,c)=>{c=c||!!t.dynamicChildren;const{type:l,props:a,patchFlag:u,shapeFlag:f,dirs:d}=t,h="input"===l&&d||"option"===l;if(h||-1!==u){if(d&&ur(t,null,n,"created"),a)if(h||!c||48&u)for(const t in a)(h&&t.endsWith("value")||S(t)&&!D(t))&&o(e,t,null,a[t],!1,void 0,n);else a.onClick&&o(e,"onClick",null,a.onClick,!1,void 0,n);let l;if((l=a&&a.onVnodeBeforeMount)&&As(l,n,t),d&&ur(t,null,n,"beforeMount"),((l=a&&a.onVnodeMounted)||d)&&Un((()=>{l&&As(l,n,t),d&&ur(t,null,n,"mounted")}),r),16&f&&(!a||!a.innerHTML&&!a.textContent)){let o=p(e.firstChild,t,e,n,r,s,c);for(;o;){xr=!0;const e=o;o=o.nextSibling,i(e)}}else 8&f&&e.textContent!==t.children&&(xr=!0,e.textContent=t.children)}return e.nextSibling},p=(e,t,o,r,s,i,c)=>{c=c||!!t.dynamicChildren;const l=t.children,u=l.length;for(let p=0;p<u;p++){const t=c?l[p]:l[p]=Ns(l[p]);if(e)e=a(e,t,r,s,i,c);else{if(t.type===rs&&!t.children)continue;xr=!0,n(null,t,o,null,r,s,Er(o),i)}}return e},f=(e,t,n,o,i,a)=>{const{slotScopeIds:u}=t;u&&(i=i?i.concat(u):u);const f=s(e),d=p(r(e),t,f,n,o,i,a);return d&&Tr(d)&&"]"===d.data?r(t.anchor=d):(xr=!0,c(t.anchor=l("]"),f,d),d)},d=(e,t,o,c,l,a)=>{if(xr=!0,t.el=null,a){const t=h(e);for(;;){const n=r(e);if(!n||n===t)break;i(n)}}const u=r(e),p=s(e);return i(e),n(null,t,p,u,o,c,Er(p),l),u},h=e=>{let t=0;for(;e;)if((e=r(e))&&Tr(e)&&("["===e.data&&t++,"]"===e.data)){if(0===t)return r(e);t--}return e};return[(e,t)=>{if(!t.hasChildNodes())return n(null,e,t),void sn();xr=!1,a(t.firstChild,e,null,null,null),sn(),xr&&console.error("Hydration completed but contains mismatches.")},a]}const kr=Un;function wr(e){return Ar(e)}function Or(e){return Ar(e,Nr)}function Ar(e,t){(Q||(Q="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{})).__VUE__=!0;const{insert:n,remove:o,patchProp:r,createElement:s,createText:i,createComment:c,setText:l,setElementText:a,parentNode:u,nextSibling:p,setScopeId:f=y,cloneNode:d,insertStaticContent:h}=e,m=(e,t,n,o=null,r=null,s=null,i=!1,c=null,l=!!t.dynamicChildren)=>{if(e===t)return;e&&!gs(e,t)&&(o=Z(e),H(e,r,s,!0),e=null),-2===t.patchFlag&&(l=!1,t.dynamicChildren=null);const{type:a,ref:u,shapeFlag:p}=t;switch(a){case rs:_(e,t,n,o);break;case ss:b(e,t,n,o);break;case is:null==e&&C(t,n,o,i);break;case os:R(e,t,n,o,r,s,i,c,l);break;default:1&p?E(e,t,n,o,r,s,i,c,l):6&p?P(e,t,n,o,r,s,i,c,l):(64&p||128&p)&&a.process(e,t,n,o,r,s,i,c,l,ee)}null!=u&&r&&Cr(u,e&&e.ref,s,t||e,!t)},_=(e,t,o,r)=>{if(null==e)n(t.el=i(t.children),o,r);else{const n=t.el=e.el;t.children!==e.children&&l(n,t.children)}},b=(e,t,o,r)=>{null==e?n(t.el=c(t.children||""),o,r):t.el=e.el},C=(e,t,n,o)=>{[e.el,e.anchor]=h(e.children,t,n,o,e.el,e.anchor)},E=(e,t,n,o,r,s,i,c,l)=>{i=i||"svg"===t.type,null==e?T(t,n,o,r,s,i,c,l):O(e,t,r,s,i,c,l)},T=(e,t,o,i,c,l,u,p)=>{let f,h;const{type:m,props:g,shapeFlag:v,transition:y,patchFlag:_,dirs:b}=e;if(e.el&&void 0!==d&&-1===_)f=e.el=d(e.el);else{if(f=e.el=s(e.type,l,g&&g.is,g),8&v?a(f,e.children):16&v&&w(e.children,f,null,i,c,l&&"foreignObject"!==m,u,p),b&&ur(e,null,i,"created"),g){for(const t in g)"value"===t||D(t)||r(f,t,null,g[t],l,e.children,i,c,J);"value"in g&&r(f,"value",null,g.value),(h=g.onVnodeBeforeMount)&&As(h,i,e)}k(f,e,e.scopeId,u,i)}b&&ur(e,null,i,"beforeMount");const S=(!c||c&&!c.pendingBranch)&&y&&!y.persisted;S&&y.beforeEnter(f),n(f,t,o),((h=g&&g.onVnodeMounted)||S||b)&&kr((()=>{h&&As(h,i,e),S&&y.enter(f),b&&ur(e,null,i,"mounted")}),c)},k=(e,t,n,o,r)=>{if(n&&f(e,n),o)for(let s=0;s<o.length;s++)f(e,o[s]);if(r){if(t===r.subTree){const t=r.vnode;k(e,t,t.scopeId,t.slotScopeIds,r.parent)}}},w=(e,t,n,o,r,s,i,c,l=0)=>{for(let a=l;a<e.length;a++){const l=e[a]=c?ks(e[a]):Ns(e[a]);m(null,l,t,n,o,r,s,i,c)}},O=(e,t,n,o,s,i,c)=>{const l=t.el=e.el;let{patchFlag:u,dynamicChildren:p,dirs:f}=t;u|=16&e.patchFlag;const d=e.props||g,h=t.props||g;let m;n&&Ir(n,!1),(m=h.onVnodeBeforeUpdate)&&As(m,n,t,e),f&&ur(t,e,n,"beforeUpdate"),n&&Ir(n,!0);const v=s&&"foreignObject"!==t.type;if(p?A(e.dynamicChildren,p,l,n,o,v,i):c||V(e,t,l,null,n,o,v,i,!1),u>0){if(16&u)I(l,t,d,h,n,o,s);else if(2&u&&d.class!==h.class&&r(l,"class",null,h.class,s),4&u&&r(l,"style",d.style,h.style,s),8&u){const i=t.dynamicProps;for(let t=0;t<i.length;t++){const c=i[t],a=d[c],u=h[c];u===a&&"value"!==c||r(l,c,a,u,s,e.children,n,o,J)}}1&u&&e.children!==t.children&&a(l,t.children)}else c||null!=p||I(l,t,d,h,n,o,s);((m=h.onVnodeUpdated)||f)&&kr((()=>{m&&As(m,n,t,e),f&&ur(t,e,n,"updated")}),o)},A=(e,t,n,o,r,s,i)=>{for(let c=0;c<t.length;c++){const l=e[c],a=t[c],p=l.el&&(l.type===os||!gs(l,a)||70&l.shapeFlag)?u(l.el):n;m(l,a,p,null,o,r,s,i,!0)}},I=(e,t,n,o,s,i,c)=>{if(n!==o){for(const l in o){if(D(l))continue;const a=o[l],u=n[l];a!==u&&"value"!==l&&r(e,l,u,a,c,t.children,s,i,J)}if(n!==g)for(const l in n)D(l)||l in o||r(e,l,n[l],null,c,t.children,s,i,J);"value"in o&&r(e,"value",n.value,o.value)}},R=(e,t,o,r,s,c,l,a,u)=>{const p=t.el=e?e.el:i(""),f=t.anchor=e?e.anchor:i("");let{patchFlag:d,dynamicChildren:h,slotScopeIds:m}=t;m&&(a=a?a.concat(m):m),null==e?(n(p,o,r),n(f,o,r),w(t.children,o,f,s,c,l,a,u)):d>0&&64&d&&h&&e.dynamicChildren?(A(e.dynamicChildren,h,o,s,c,l,a),(null!=t.key||s&&t===s.subTree)&&Rr(e,t,!0)):V(e,t,o,f,s,c,l,a,u)},P=(e,t,n,o,r,s,i,c,l)=>{t.slotScopeIds=c,null==e?512&t.shapeFlag?r.ctx.activate(t,n,o,i,l):M(t,n,o,r,s,i,l):$(e,t,l)},M=(e,t,n,o,r,s,i)=>{const c=e.isCompatRoot&&e.component,l=c||(e.component=ni(e,o,r));if(ho(e)&&(l.ctx.renderer=ee),c||pi(l),l.asyncDep){if(r&&r.registerDep(l,L),!e.el){const e=l.subTree=Ss(ss);b(null,e,t,n)}}else L(l,e,t,n,r,s,i)},$=(e,t,n)=>{const o=t.component=e.component;if(function(e,t,n){const{props:o,children:r,component:s}=e,{props:i,children:c,patchFlag:l}=t,a=s.emitsOptions;if(t.dirs||t.transition)return!0;if(!(n&&l>=0))return!(!r&&!c||c&&c.$stable)||o!==i&&(o?!i||Ln(o,i,a):!!i);if(1024&l)return!0;if(16&l)return o?Ln(o,i,a):!!i;if(8&l){const e=t.dynamicProps;for(let t=0;t<e.length;t++){const n=e[t];if(i[n]!==o[n]&&!wn(a,n))return!0}}return!1}(e,t,n)){if(o.asyncDep&&!o.asyncResolved)return void F(o,t,n);o.next=t,function(e){const t=Ut.indexOf(e);t>Ht&&Ut.splice(t,1)}(o.update),o.update()}else t.component=e.component,t.el=e.el,o.vnode=t},L=(e,t,n,o,r,s,i)=>{const c=e.effect=new fe((()=>{if(e.isMounted){let t,{next:n,bu:o,u:c,parent:l,vnode:a}=e,p=n;Ir(e,!1),n?(n.el=a.el,F(e,n,i)):n=a,o&&Y(o),(t=n.props&&n.props.onVnodeBeforeUpdate)&&As(t,l,n,a),hn("INSTANCE_EVENT_HOOKS",e)&&e.emit("hook:beforeUpdate"),Ir(e,!0);const f=Pn(e),d=e.subTree;e.subTree=f,m(d,f,u(d.el),Z(d),e,r,s),n.el=f.el,null===p&&Fn(e,f.el),c&&kr(c,r),(t=n.props&&n.props.onVnodeUpdated)&&kr((()=>As(t,l,n,a)),r),hn("INSTANCE_EVENT_HOOKS",e)&&kr((()=>e.emit("hook:updated")),r)}else{let i;const{el:c,props:l}=t,{bm:a,m:u,parent:p}=e,f=uo(t);if(Ir(e,!1),a&&Y(a),!f&&(i=l&&l.onVnodeBeforeMount)&&As(i,p,t),hn("INSTANCE_EVENT_HOOKS",e)&&e.emit("hook:beforeMount"),Ir(e,!0),c&&ne){const n=()=>{e.subTree=Pn(e),ne(c,e.subTree,e,r,null)};f?t.type.__asyncLoader().then((()=>!e.isUnmounted&&n())):n()}else{const i=e.subTree=Pn(e);m(null,i,n,o,e,r,s),t.el=i.el}if(u&&kr(u,r),!f&&(i=l&&l.onVnodeMounted)){const e=t;kr((()=>As(i,p,e)),r)}hn("INSTANCE_EVENT_HOOKS",e)&&kr((()=>e.emit("hook:mounted")),r),256&t.shapeFlag&&(e.a&&kr(e.a,r),hn("INSTANCE_EVENT_HOOKS",e)&&kr((()=>e.emit("hook:activated")),r)),e.isMounted=!0,t=n=o=null}}),(()=>en(e.update)),e.scope),l=e.update=c.run.bind(c);l.id=e.uid,Ir(e,!0),l()},F=(e,t,n)=>{t.component=e;const o=e.vnode.props;e.vnode=t,e.next=null,function(e,t,n,o){const{props:r,attrs:s,vnode:{patchFlag:i}}=e,c=vt(r),[l]=e.propsOptions;let a=!1;if(!(o||i>0)||16&i){let o;Jo(e,t,r,s)&&(a=!0);for(const s in c)t&&(N(t,s)||(o=z(s))!==s&&N(t,o))||(l?!n||void 0===n[s]&&void 0===n[o]||(r[s]=Yo(l,c,s,void 0,e,!0)):delete r[s]);if(s!==c)for(const e in s)t&&(N(t,e)||N(t,e+"Native"))||(delete s[e],a=!0)}else if(8&i){const n=e.vnode.dynamicProps;for(let o=0;o<n.length;o++){let i=n[o];const u=t[i];if(l)if(N(s,i))u!==s[i]&&(s[i]=u,a=!0);else{const t=W(i);r[t]=Yo(l,c,t,u,e,!1)}else{if(S(i)&&i.endsWith("Native"))i=i.slice(0,-6);else if(qo(i,e))continue;u!==s[i]&&(s[i]=u,a=!0)}}}a&&be(e,"set","$attrs")}(e,t.props,o,n),((e,t,n)=>{const{vnode:o,slots:r}=e;let s=!0,i=g;if(32&o.shapeFlag){const e=t._;e?n&&1===e?s=!1:(x(r,t),n||1!==e||delete r._):(s=!t.$stable,sr(t,r)),i=t}else t&&(ir(e,t),i={default:1});if(s)for(const c in r)nr(c)||c in i||delete r[c]})(e,t.children,n),ge(),rn(void 0,e.update),ve()},V=(e,t,n,o,r,s,i,c,l=!1)=>{const u=e&&e.children,p=e?e.shapeFlag:0,f=t.children,{patchFlag:d,shapeFlag:h}=t;if(d>0){if(128&d)return void j(u,f,n,o,r,s,i,c,l);if(256&d)return void B(u,f,n,o,r,s,i,c,l)}8&h?(16&p&&J(u,r,s),f!==u&&a(n,f)):16&p?16&h?j(u,f,n,o,r,s,i,c,l):J(u,r,s,!0):(8&p&&a(n,""),16&h&&w(f,n,o,r,s,i,c,l))},B=(e,t,n,o,r,s,i,c,l)=>{const a=(e=e||v).length,u=(t=t||v).length,p=Math.min(a,u);let f;for(f=0;f<p;f++){const o=t[f]=l?ks(t[f]):Ns(t[f]);m(e[f],o,n,null,r,s,i,c,l)}a>u?J(e,r,s,!0,!1,p):w(t,n,o,r,s,i,c,l,p)},j=(e,t,n,o,r,s,i,c,l)=>{let a=0;const u=t.length;let p=e.length-1,f=u-1;for(;a<=p&&a<=f;){const o=e[a],u=t[a]=l?ks(t[a]):Ns(t[a]);if(!gs(o,u))break;m(o,u,n,null,r,s,i,c,l),a++}for(;a<=p&&a<=f;){const o=e[p],a=t[f]=l?ks(t[f]):Ns(t[f]);if(!gs(o,a))break;m(o,a,n,null,r,s,i,c,l),p--,f--}if(a>p){if(a<=f){const e=f+1,p=e<u?t[e].el:o;for(;a<=f;)m(null,t[a]=l?ks(t[a]):Ns(t[a]),n,p,r,s,i,c,l),a++}}else if(a>f)for(;a<=p;)H(e[a],r,s,!0),a++;else{const d=a,h=a,g=new Map;for(a=h;a<=f;a++){const e=t[a]=l?ks(t[a]):Ns(t[a]);null!=e.key&&g.set(e.key,a)}let y,_=0;const b=f-h+1;let S=!1,C=0;const x=new Array(b);for(a=0;a<b;a++)x[a]=0;for(a=d;a<=p;a++){const o=e[a];if(_>=b){H(o,r,s,!0);continue}let u;if(null!=o.key)u=g.get(o.key);else for(y=h;y<=f;y++)if(0===x[y-h]&&gs(o,t[y])){u=y;break}void 0===u?H(o,r,s,!0):(x[u-h]=a+1,u>=C?C=u:S=!0,m(o,t[u],n,null,r,s,i,c,l),_++)}const E=S?function(e){const t=e.slice(),n=[0];let o,r,s,i,c;const l=e.length;for(o=0;o<l;o++){const l=e[o];if(0!==l){if(r=n[n.length-1],e[r]<l){t[o]=r,n.push(o);continue}for(s=0,i=n.length-1;s<i;)c=s+i>>1,e[n[c]]<l?s=c+1:i=c;l<e[n[s]]&&(s>0&&(t[o]=n[s-1]),n[s]=o)}}s=n.length,i=n[s-1];for(;s-- >0;)n[s]=i,i=t[i];return n}(x):v;for(y=E.length-1,a=b-1;a>=0;a--){const e=h+a,p=t[e],f=e+1<u?t[e+1].el:o;0===x[a]?m(null,p,n,f,r,s,i,c,l):S&&(y<0||a!==E[y]?U(p,n,f,2):y--)}}},U=(e,t,o,r,s=null)=>{const{el:i,type:c,transition:l,children:a,shapeFlag:u}=e;if(6&u)return void U(e.component.subTree,t,o,r);if(128&u)return void e.suspense.move(t,o,r);if(64&u)return void c.move(e,t,o,ee);if(c===os){n(i,t,o);for(let e=0;e<a.length;e++)U(a[e],t,o,r);return void n(e.anchor,t,o)}if(c===is)return void(({el:e,anchor:t},o,r)=>{let s;for(;e&&e!==t;)s=p(e),n(e,o,r),e=s;n(t,o,r)})(e,t,o);if(2!==r&&1&u&&l)if(0===r)l.beforeEnter(i),n(i,t,o),kr((()=>l.enter(i)),s);else{const{leave:e,delayLeave:r,afterLeave:s}=l,c=()=>n(i,t,o),a=()=>{e(i,(()=>{c(),s&&s()}))};r?r(i,c,a):a()}else n(i,t,o)},H=(e,t,n,o=!1,r=!1)=>{const{type:s,props:i,ref:c,children:l,dynamicChildren:a,shapeFlag:u,patchFlag:p,dirs:f}=e;if(null!=c&&Cr(c,null,n,e,!0),256&u)return void t.ctx.deactivate(e);const d=1&u&&f,h=!uo(e);let m;if(h&&(m=i&&i.onVnodeBeforeUnmount)&&As(m,t,e),6&u)q(e.component,n,o);else{if(128&u)return void e.suspense.unmount(n,o);d&&ur(e,null,t,"beforeUnmount"),64&u?e.type.remove(e,t,n,r,ee,o):a&&(s!==os||p>0&&64&p)?J(a,t,n,!1,!0):(s===os&&384&p||!r&&16&u)&&J(l,t,n),o&&K(e)}(h&&(m=i&&i.onVnodeUnmounted)||d)&&kr((()=>{m&&As(m,t,e),d&&ur(e,null,t,"unmounted")}),n)},K=e=>{const{type:t,el:n,anchor:r,transition:s}=e;if(t===os)return void G(n,r);if(t===is)return void(({el:e,anchor:t})=>{let n;for(;e&&e!==t;)n=p(e),o(e),e=n;o(t)})(e);const i=()=>{o(n),s&&!s.persisted&&s.afterLeave&&s.afterLeave()};if(1&e.shapeFlag&&s&&!s.persisted){const{leave:t,delayLeave:o}=s,r=()=>t(n,i);o?o(e.el,i,r):r()}else i()},G=(e,t)=>{let n;for(;e!==t;)n=p(e),o(e),e=n;o(t)},q=(e,t,n)=>{const{bum:o,scope:r,update:s,subTree:i,um:c}=e;o&&Y(o),hn("INSTANCE_EVENT_HOOKS",e)&&e.emit("hook:beforeDestroy"),r.stop(),s&&(s.active=!1,H(i,e,t,n)),c&&kr(c,t),hn("INSTANCE_EVENT_HOOKS",e)&&kr((()=>e.emit("hook:destroyed")),t),kr((()=>{e.isUnmounted=!0}),t),t&&t.pendingBranch&&!t.isUnmounted&&e.asyncDep&&!e.asyncResolved&&e.suspenseId===t.pendingId&&(t.deps--,0===t.deps&&t.resolve())},J=(e,t,n,o=!1,r=!1,s=0)=>{for(let i=s;i<e.length;i++)H(e[i],t,n,o,r)},Z=e=>6&e.shapeFlag?Z(e.component.subTree):128&e.shapeFlag?e.suspense.next():p(e.anchor||e.el),X=(e,t,n)=>{null==e?t._vnode&&H(t._vnode,null,null,!0):m(t._vnode||null,e,t,null,null,null,n),sn(),t._vnode=e},ee={p:m,um:H,m:U,r:K,mt:M,mc:w,pc:V,pbc:A,n:Z,o:e};let te,ne;return t&&([te,ne]=t(ee)),{render:X,hydrate:te,createApp:Sr(X,te)}}function Ir({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function Rr(e,t,n=!1){const o=e.children,r=t.children;if(k(o)&&k(r))for(let s=0;s<o.length;s++){const e=o[s];let t=r[s];1&t.shapeFlag&&!t.dynamicChildren&&((t.patchFlag<=0||32===t.patchFlag)&&(t=r[s]=ks(r[s]),t.el=e.el),n||Rr(e,t))}}const Pr=e=>e&&(e.disabled||""===e.disabled),Mr=e=>"undefined"!=typeof SVGElement&&e instanceof SVGElement,$r=(e,t)=>{const n=e&&e.to;if(R(n)){if(t){return t(n)}return null}return n};function Lr(e,t,n,{o:{insert:o},m:r},s=2){0===s&&o(e.targetAnchor,t,n);const{el:i,anchor:c,shapeFlag:l,children:a,props:u}=e,p=2===s;if(p&&o(i,t,n),(!p||Pr(u))&&16&l)for(let f=0;f<a.length;f++)r(a[f],t,n,2);p&&o(c,t,n)}const Fr={__isTeleport:!0,process(e,t,n,o,r,s,i,c,l,a){const{mc:u,pc:p,pbc:f,o:{insert:d,querySelector:h,createText:m}}=a,g=Pr(t.props);let{shapeFlag:v,children:y,dynamicChildren:_}=t;if(null==e){const e=t.el=m(""),a=t.anchor=m("");d(e,n,o),d(a,n,o);const p=t.target=$r(t.props,h),f=t.targetAnchor=m("");p&&(d(f,p),i=i||Mr(p));const _=(e,t)=>{16&v&&u(y,e,t,r,s,i,c,l)};g?_(n,a):p&&_(p,f)}else{t.el=e.el;const o=t.anchor=e.anchor,u=t.target=e.target,d=t.targetAnchor=e.targetAnchor,m=Pr(e.props),v=m?n:u,y=m?o:d;if(i=i||Mr(u),_?(f(e.dynamicChildren,_,v,r,s,i,c),Rr(e,t,!0)):l||p(e,t,v,y,r,s,i,c,!1),g)m||Lr(t,n,o,a,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const e=t.target=$r(t.props,h);e&&Lr(t,e,null,a,0)}else m&&Lr(t,u,d,a,1)}},remove(e,t,n,o,{um:r,o:{remove:s}},i){const{shapeFlag:c,children:l,anchor:a,targetAnchor:u,target:p,props:f}=e;if(p&&s(u),(i||!Pr(f))&&(s(a),16&c))for(let d=0;d<l.length;d++){const e=l[d];r(e,t,n,!0,!!e.dynamicChildren)}},move:Lr,hydrate:function(e,t,n,o,r,s,{o:{nextSibling:i,parentNode:c,querySelector:l}},a){const u=t.target=$r(t.props,l);if(u){const l=u._lpa||u.firstChild;16&t.shapeFlag&&(Pr(t.props)?(t.anchor=a(i(e),t,c(e),n,o,r,s),t.targetAnchor=l):(t.anchor=i(e),t.targetAnchor=a(l,t,u,n,o,r,s)),u._lpa=t.targetAnchor&&i(t.targetAnchor))}return t.anchor&&i(t.anchor)}},Vr="components";const Br=Symbol();function Dr(e){return R(e)?Hr(Vr,e,!1)||e:e||Br}function jr(e){return Hr("directives",e)}function Ur(e){return Hr("filters",e)}function Hr(e,t,n=!0,o=!1){const r=On||oi;if(r){const n=r.type;if(e===Vr){const e=_i(n);if(e&&(e===t||e===W(t)||e===G(W(t))))return n}const s=Wr(r[e]||n[e],t)||Wr(r.appContext[e],t);return!s&&o?n:s}}function Wr(e,t){return e&&(e[t]||e[W(t)]||e[G(W(t))])}const Kr=new Map;function zr(e){mn("INSTANCE_LISTENERS",e);const t={},n=e.vnode.props;if(!n)return t;for(const o in n)S(o)&&(t[o[2].toLowerCase()+o.slice(3)]=n[o]);return t}function Gr(e,t,n){if(e||(e=ss),"string"==typeof e){const t=z(e);"transition"!==t&&"transition-group"!==t&&"keep-alive"!==t||(e=`__compat__${t}`),e=Dr(e)}const o=arguments.length,r=k(t);return 2===o||r?M(t)&&!r?ms(t)?Xr(Ss(e,null,[t])):Xr(Zr(Ss(e,Jr(t,e)),t)):Xr(Ss(e,null,t)):(ms(n)&&(n=[n]),Xr(Zr(Ss(e,Jr(t,e),n),t)))}const qr=e("staticStyle,staticClass,directives,model,hook");function Jr(e,t){if(!e)return null;const n={};for(const o in e)if("attrs"===o||"domProps"===o||"props"===o)x(n,e[o]);else if("on"===o||"nativeOn"===o){const t=e[o];for(const e in t){let r=Yr(e);"nativeOn"===o&&(r+="Native");const s=n[r],i=t[e];s!==i&&(n[r]=s?[].concat(s,i):i)}}else qr(o)||(n[o]=e[o]);if(e.staticClass&&(n.class=l([e.staticClass,n.class])),e.staticStyle&&(n.style=r([e.staticStyle,n.style])),e.model&&M(t)){const{prop:o="value",event:r="input"}=t.model||{};n[o]=e.model.value,n[xn+r]=e.model.callback}return n}function Yr(e){return"&"===e[0]&&(e=e.slice(1)+"Passive"),"~"===e[0]&&(e=e.slice(1)+"Once"),"!"===e[0]&&(e=e.slice(1)+"Capture"),q(e)}function Zr(e,t){return t&&t.directives?ar(e,t.directives.map((({name:e,value:t,arg:n,modifiers:o})=>[jr(e),t,n,o]))):e}function Xr(e){const{props:t,children:n}=e;let o;if(6&e.shapeFlag&&k(n)){o={};for(let e=0;e<n.length;e++){const t=n[e],r=ms(t)&&t.props&&t.props.slot||"default",s=o[r]||(o[r]=[]);ms(t)&&"template"===t.type?s.push(t.children):s.push(t)}if(o)for(const e in o){const t=o[e];o[e]=()=>t,o[e]._ns=!0}}const r=t&&t.scopedSlots;return r&&(delete t.scopedSlots,o?x(o,r):o=r),o&&ws(e,o),e}function Qr(e){if(hn("RENDER_FUNCTION",On,!0)&&hn("PRIVATE_APIS",On,!0)){const t=On,n=()=>e.component&&e.component.proxy;let o;Object.defineProperties(e,{tag:{get:()=>e.type},data:{get:()=>e.props||{},set:t=>e.props=t},elm:{get:()=>e.el},componentInstance:{get:n},child:{get:n},text:{get:()=>R(e.children)?e.children:null},context:{get:()=>t&&t.proxy},componentOptions:{get:()=>{if(4&e.shapeFlag)return o||(o={Ctor:e.type,propsData:e.props,children:e.children})}}})}}const es=new Map,ts={get(e,t){const n=e[t];return n&&n()}};function ns(e,t){return e.__isBuiltIn?e:(I(e)&&e.cid&&(e=e.options),I(e)&&vn("COMPONENT_ASYNC",t)?function(e){if(Kr.has(e))return Kr.get(e);let t,n;const o=new Promise(((e,o)=>{t=e,n=o})),r=e(t,n);let s;return s=$(r)?po((()=>r)):!M(r)||ms(r)||k(r)?null==r?po((()=>o)):e:po({loader:()=>r.component,loadingComponent:r.loading,errorComponent:r.error,delay:r.delay,timeout:r.timeout}),Kr.set(e,s),s}(e):M(e)&&e.functional&&gn("COMPONENT_FUNCTIONAL",t)?function(e){if(es.has(e))return es.get(e);const t=e.render,n=(n,o)=>{const r=ri();return t(Gr,{props:n,children:r.vnode.children||[],data:r.vnode.props||{},scopedSlots:o.slots,parent:r.parent&&r.parent.proxy,slots:()=>new Proxy(o.slots,ts),get listeners(){return zr(r)},get injections(){if(e.inject){const t={};return Vo(e.inject,t),t}return{}}})};return n.props=e.props,n.displayName=e.name,n.compatConfig=e.compatConfig,n.inheritAttrs=!1,es.set(e,n),n}(e):e)}const os=Symbol(void 0),rs=Symbol(void 0),ss=Symbol(void 0),is=Symbol(void 0),cs=[];let ls=null;function as(e=!1){cs.push(ls=e?null:[])}function us(){cs.pop(),ls=cs[cs.length-1]||null}let ps=1;function fs(e){ps+=e}function ds(e){return e.dynamicChildren=ps>0?ls||v:null,us(),ps>0&&ls&&ls.push(e),e}function hs(e,t,n,o,r){return ds(Ss(e,t,n,o,r,!0))}function ms(e){return!!e&&!0===e.__v_isVNode}function gs(e,t){return e.type===t.type&&e.key===t.key}const vs="__vInternal",ys=({key:e})=>null!=e?e:null,_s=({ref:e,ref_key:t,ref_for:n})=>null!=e?R(e)||xt(e)||I(e)?{i:On,r:e,k:t,f:!!n}:e:null;function bs(e,t=null,n=null,o=0,r=null,s=(e===os?0:1),i=!1,c=!1){const l={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&ys(t),ref:t&&_s(t),scopeId:An,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:s,patchFlag:o,dynamicProps:r,dynamicChildren:null,appContext:null};return c?(ws(l,n),128&s&&e.normalize(l)):n&&(l.shapeFlag|=R(n)?8:16),ps>0&&!i&&ls&&(l.patchFlag>0||6&s)&&32!==l.patchFlag&&ls.push(l),En(l),Qr(l),l}const Ss=function(e,t=null,n=null,o=0,s=null,i=!1){e&&e!==Br||(e=ss);if(ms(e)){const o=xs(e,t,!0);return n&&ws(o,n),o}c=e,I(c)&&"__vccOpts"in c&&(e=e.__vccOpts);var c;if(e=ns(e,On),t){t=Cs(t);let{class:e,style:n}=t;e&&!R(e)&&(t.class=l(e)),M(n)&&(gt(n)&&!k(n)&&(n=x({},n)),t.style=r(n))}const a=R(e)?1:(e=>e.__isSuspense)(e)?128:(e=>e.__isTeleport)(e)?64:M(e)?4:I(e)?2:0;return bs(e,t,n,o,s,a,i,!0)};function Cs(e){return e?gt(e)||vs in e?x({},e):e:null}function xs(e,t,n=!1){const{props:o,ref:r,patchFlag:s,children:i}=e,c=t?Os(o||{},t):o,l={__v_isVNode:!0,__v_skip:!0,type:e.type,props:c,key:c&&ys(c),ref:t&&t.ref?n&&r?k(r)?r.concat(_s(t)):[r,_s(t)]:_s(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:i,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==os?-1===s?16:16|s:s,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&xs(e.ssContent),ssFallback:e.ssFallback&&xs(e.ssFallback),el:e.el,anchor:e.anchor};return Qr(l),l}function Es(e=" ",t=0){return Ss(rs,null,e,t)}function Ts(e="",t=!1){return t?(as(),hs(ss,null,e)):Ss(ss,null,e)}function Ns(e){return null==e||"boolean"==typeof e?Ss(ss):k(e)?Ss(os,null,e.slice()):"object"==typeof e?ks(e):Ss(rs,null,String(e))}function ks(e){return null===e.el||e.memo?e:xs(e)}function ws(e,t){let n=0;const{shapeFlag:o}=e;if(null==t)t=null;else if(k(t))n=16;else if("object"==typeof t){if(65&o){const n=t.default;return void(n&&(n._c&&(n._d=!1),ws(e,n()),n._c&&(n._d=!0)))}{n=32;const o=t._;o||vs in t?3===o&&On&&(1===On.slots._?t._=1:(t._=2,e.patchFlag|=1024)):t._ctx=On}}else I(t)?(t={default:t,_ctx:On},n=32):(t=String(t),64&o?(n=16,t=[Es(t)]):n=8);e.children=t,e.shapeFlag|=n}function Os(...e){const t={};for(let n=0;n<e.length;n++){const o=e[n];for(const e in o)if("class"===e)t.class!==o.class&&(t.class=l([t.class,o.class]));else if("style"===e)t.style=r([t.style,o.style]);else if(S(e)){const n=t[e],r=o[e];!r||n===r||k(n)&&n.includes(r)||(t[e]=n?[].concat(n,r):r)}else""!==e&&(t[e]=o[e])}return t}function As(e,t,n,o=null){Vt(e,t,7,[n,o])}function Is(e){mn("INSTANCE_CHILDREN",e);const t=e.subTree,n=[];return t&&Rs(t,n),n}function Rs(e,t){if(e.component)t.push(e.component.proxy);else if(16&e.shapeFlag){const n=e.children;for(let e=0;e<n.length;e++)Rs(n[e],t)}}function Ps(e,t,n,o){let r;const s=n&&n[o];if(k(e)||R(e)){r=new Array(e.length);for(let n=0,o=e.length;n<o;n++)r[n]=t(e[n],n,void 0,s&&s[n])}else if("number"==typeof e){r=new Array(e);for(let n=0;n<e;n++)r[n]=t(n+1,n,void 0,s&&s[n])}else if(M(e))if(e[Symbol.iterator])r=Array.from(e,((e,n)=>t(e,n,void 0,s&&s[n])));else{const n=Object.keys(e);r=new Array(n.length);for(let o=0,i=n.length;o<i;o++){const i=n[o];r[o]=t(e[i],i,o,s&&s[o])}}else r=[];return n&&(n[o]=r),r}function Ms(e,t){for(let n=0;n<t.length;n++){const o=t[n];if(k(o))for(let t=0;t<o.length;t++)e[o[t].name]=o[t].fn;else o&&(e[o.name]=o.fn)}return e}function $s(e,t,n={},o,r){if(On.isCE)return Ss("slot","default"===t?null:{name:t},o&&o());let s=e[t];s&&s._c&&(s._d=!1),as();const i=s&&Ls(s(n)),c=hs(os,{key:n.key||`_${t}`},i||(o?o():[]),i&&1===e._?64:-2);return!r&&c.scopeId&&(c.slotScopeIds=[c.scopeId+"-s"]),s&&s._c&&(s._d=!0),c}function Ls(e){return e.some((e=>!ms(e)||e.type!==ss&&!(e.type===os&&!Ls(e.children))))?e:null}function Fs(e){const t={};for(const n in e)t[q(n)]=e[n];return t}function Vs(e,t,n,o,r){if(n&&M(n)){k(n)&&(n=function(e){const t={};for(let n=0;n<e.length;n++)e[n]&&x(t,e[n]);return t}(n));for(const t in n)if(D(t))e[t]=n[t];else if("class"===t)e.class=l([e.class,n.class]);else if("style"===t)e.style=l([e.style,n.style]);else{const o=e.attrs||(e.attrs={}),s=W(t),i=z(t);if(!(s in o)&&!(i in o)&&(o[t]=n[t],r)){(e.on||(e.on={}))[`update:${t}`]=function(e){n[t]=e}}}}return e}function Bs(e,t){return Os(e,Fs(t))}function Ds(e,t,n,o,r){return r&&(o=Os(o,r)),$s(e.slots,t,o,n&&(()=>n))}function js(e,t,n){return Ms(t||{$stable:!n},Us(e))}function Us(e){for(let t=0;t<e.length;t++){const n=e[t];n&&(k(n)?Us(n):n.name=n.key||"default")}return e}const Hs=new WeakMap;function Ws(e,t){let n=Hs.get(e);if(n||Hs.set(e,n=[]),n[t])return n[t];const o=e.proxy;return n[t]=e.type.staticRenderFns[t].call(o,null,o)}function Ks(e,t,n,o,r,s){const i=e.appContext.config.keyCodes||{},c=i[n]||o;return s&&r&&!i[n]?zs(s,r):c?zs(c,t):r?z(r)!==n:void 0}function zs(e,t){return k(e)?!e.includes(t):e!==t}function Gs(e){return e}function qs(e,t){for(let n=0;n<t.length;n+=2){const o=t[n];"string"==typeof o&&o&&(e[t[n]]=t[n+1])}return e}function Js(e,t){return"string"==typeof e?t+e:e}const Ys=e=>e?ci(e)?vi(e)||e.proxy:Ys(e.parent):null,Zs=x(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=>Ys(e.parent),$root:e=>Ys(e.root),$emit:e=>e.emit,$options:e=>jo(e),$forceUpdate:e=>()=>en(e.update),$nextTick:e=>Qt.bind(e.proxy),$watch:e=>Yn.bind(e)});!function(e){const t=(e,t,n)=>{e[t]=n},n=(e,t)=>{delete e[t]};x(e,{$set:e=>(mn("INSTANCE_SET",e),t),$delete:e=>(mn("INSTANCE_DELETE",e),n),$mount:e=>(mn("GLOBAL_MOUNT",null),e.ctx._compat_mount||y),$destroy:e=>(mn("INSTANCE_DESTROY",e),e.ctx._compat_destroy||y),$slots:e=>hn("RENDER_FUNCTION",e)&&e.render&&e.render._compatWrapped?new Proxy(e.slots,ts):e.slots,$scopedSlots:e=>{mn("INSTANCE_SCOPED_SLOTS",e);const t={};for(const n in e.slots){const o=e.slots[n];o._ns||(t[n]=o)}return t},$on:e=>bn.bind(null,e),$once:e=>Sn.bind(null,e),$off:e=>Cn.bind(null,e),$children:Is,$listeners:zr}),hn("PRIVATE_APIS",null)&&x(e,{$vnode:e=>e.vnode,$options:e=>{const t=x({},jo(e));return t.parent=e.proxy.$parent,t.propsData=e.vnode.props,t},_self:e=>e.proxy,_uid:e=>e.uid,_data:e=>e.data,_isMounted:e=>e.isMounted,_isDestroyed:e=>e.isUnmounted,$createElement:()=>Gr,_c:()=>Gr,_o:()=>Gs,_n:()=>X,_s:()=>h,_l:()=>Ps,_t:e=>Ds.bind(null,e),_q:()=>f,_i:()=>d,_m:e=>Ws.bind(null,e),_f:()=>Ur,_k:e=>Ks.bind(null,e),_b:()=>Vs,_v:()=>Es,_e:()=>Ts,_u:()=>js,_g:()=>Bs,_d:()=>qs,_p:()=>Js})}(Zs);const Xs={get({_:e},t){const{ctx:n,setupState:o,data:r,props:s,accessCache:i,type:c,appContext:l}=e;let a;if("$"!==t[0]){const c=i[t];if(void 0!==c)switch(c){case 1:return o[t];case 2:return r[t];case 4:return n[t];case 3:return s[t]}else{if(o!==g&&N(o,t))return i[t]=1,o[t];if(r!==g&&N(r,t))return i[t]=2,r[t];if((a=e.propsOptions[0])&&N(a,t))return i[t]=3,s[t];if(n!==g&&N(n,t))return i[t]=4,n[t];Fo&&(i[t]=0)}}const u=Zs[t];let p,f;if(u)return"$attrs"===t&&ye(e,0,t),u(e);if((p=c.__cssModules)&&(p=p[t]))return p;if(n!==g&&N(n,t))return i[t]=4,n[t];if(f=l.config.globalProperties,N(f,t)){const n=Object.getOwnPropertyDescriptor(f,t);if(n.get)return n.get.call(e.proxy);{const n=f[t];return I(n)?n.bind(e.proxy):n}}},set({_:e},t,n){const{data:o,setupState:r,ctx:s}=e;return r!==g&&N(r,t)?(r[t]=n,!0):o!==g&&N(o,t)?(o[t]=n,!0):!N(e.props,t)&&(("$"!==t[0]||!(t.slice(1)in e))&&(s[t]=n,!0))},has({_:{data:e,setupState:t,accessCache:n,ctx:o,appContext:r,propsOptions:s}},i){let c;return!!n[i]||e!==g&&N(e,i)||t!==g&&N(t,i)||(c=s[0])&&N(c,i)||N(o,i)||N(Zs,i)||N(r.config.globalProperties,i)},defineProperty(e,t,n){return null!=n.get?this.set(e,t,n.get(),null):null!=n.value&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}},Qs=x({},Xs,{get(e,t){if(t!==Symbol.unscopables)return Xs.get(e,t,e)},has:(e,n)=>"_"!==n[0]&&!t(n)}),ei=_r();let ti=0;function ni(e,t,n){const o=e.type,r=(t?t.appContext:e.appContext)||ei,s={uid:ti++,vnode:e,type:o,parent:t,appContext:r,root:null,next:null,subTree:null,effect:null,update:null,scope:new te(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(r.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:Zo(o,r),emitsOptions:kn(o,r),emit:null,emitted:null,propsDefaults:g,inheritAttrs:o.inheritAttrs,ctx:g,data:g,props:g,attrs:g,slots:g,refs:g,setupState:g,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=Nn.bind(null,s),e.ce&&e.ce(s),s}let oi=null;const ri=()=>oi||On,si=e=>{oi=e,e.scope.on()},ii=()=>{oi&&oi.scope.off(),oi=null};function ci(e){return 4&e.vnode.shapeFlag}let li,ai,ui=!1;function pi(e,t=!1){ui=t;const{props:n,children:o}=e.vnode,r=ci(e);!function(e,t,n,o=!1){const r={},s={};Z(s,vs,1),e.propsDefaults=Object.create(null),Jo(e,t,r,s);for(const i in e.propsOptions[0])i in r||(r[i]=void 0);e.props=n?o?r:ut(r):e.type.props?r:s,e.attrs=s}(e,n,r,t),((e,t)=>{if(32&e.vnode.shapeFlag){const n=t._;n?(e.slots=vt(t),Z(t,"_",n)):sr(t,e.slots={})}else e.slots={},t&&ir(e,t);Z(e.slots,vs,1)})(e,o);const s=r?function(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=yt(new Proxy(e.ctx,Xs));const{setup:o}=n;if(o){const n=e.setupContext=o.length>1?gi(e):null;si(e),ge();const r=Ft(o,e,0,[e.props,n]);if(ve(),ii(),$(r)){if(r.then(ii,ii),t)return r.then((n=>{fi(e,n,t)})).catch((t=>{Bt(t,e,0)}));e.asyncDep=r}else fi(e,r,t)}else mi(e,t)}(e,t):void 0;return ui=!1,s}function fi(e,t,n){I(t)?e.render=t:M(t)&&(e.setupState=Ot(t)),mi(e,n)}function di(e){li=e,ai=e=>{e.render._rc&&(e.withProxy=new Proxy(e.ctx,Qs))}}const hi=()=>!li;function mi(e,t,n){const o=e.type;if(function(e){const t=e.type,n=t.render;!n||n._rc||n._compatChecked||n._compatWrapped||(n.length>=2?n._compatChecked=!0:vn("RENDER_FUNCTION",e)&&((t.render=function(){return n.call(this,Gr)})._compatWrapped=!0))}(e),!e.render){if(!t&&li&&!o.render){const t=e.vnode.props&&e.vnode.props["inline-template"]||o.template;if(t){const{isCustomElement:n,compilerOptions:r}=e.appContext.config,{delimiters:s,compilerOptions:i}=o,c=x(x({isCustomElement:n,delimiters:s},r),i);c.compatConfig=Object.create(pn),o.compatConfig&&x(c.compatConfig,o.compatConfig),o.render=li(t,c)}}e.render=o.render||y,ai&&ai(e)}n||(si(e),ge(),function(e){const t=jo(e),n=e.proxy,o=e.ctx;Fo=!1,t.beforeCreate&&Bo(t.beforeCreate,e,"bc");const{data:r,computed:s,methods:i,watch:c,provide:l,inject:a,created:u,beforeMount:p,mounted:f,beforeUpdate:d,updated:h,activated:m,deactivated:g,beforeDestroy:v,beforeUnmount:_,destroyed:b,unmounted:S,render:C,renderTracked:x,renderTriggered:E,errorCaptured:T,serverPrefetch:N,expose:w,inheritAttrs:O,components:A,directives:R,filters:P}=t;if(a&&Vo(a,o,null,e.appContext.config.unwrapInjectedRef),i)for(const y in i){const e=i[y];I(e)&&(o[y]=e.bind(n))}if(r){const t=r.call(n,n);M(t)&&(e.data=at(t))}if(Fo=!0,s)for(const k in s){const e=s[k],t=I(e)?e.bind(n,n):I(e.get)?e.get.bind(n,n):y,r=!I(e)&&I(e.set)?e.set.bind(n):y,i=Si({get:t,set:r});Object.defineProperty(o,k,{enumerable:!0,configurable:!0,get:()=>i.value,set:e=>i.value=e})}if(c)for(const y in c)Do(c[y],o,n,y);if(l){const e=I(l)?l.call(n):l;Reflect.ownKeys(e).forEach((t=>{Wn(t,e[t])}))}function $(e,t){k(t)?t.forEach((t=>e(t.bind(n)))):t&&e(t.bind(n))}if(u&&Bo(u,e,"c"),$(No,p),$(ko,f),$(wo,d),$(Oo,h),$(yo,m),$(_o,g),$($o,T),$(Mo,x),$(Po,E),$(Ao,_),$(Io,S),$(Ro,N),v&&gn("OPTIONS_BEFORE_DESTROY",e)&&$(Ao,v),b&&gn("OPTIONS_DESTROYED",e)&&$(Io,b),k(w))if(w.length){const t=e.exposed||(e.exposed={});w.forEach((e=>{Object.defineProperty(t,e,{get:()=>n[e],set:t=>n[e]=t})}))}else e.exposed||(e.exposed={});C&&e.render===y&&(e.render=C),null!=O&&(e.inheritAttrs=O),A&&(e.components=A),R&&(e.directives=R),P&&hn("FILTERS",e)&&(e.filters=P)}(e),ve(),ii())}function gi(e){const t=t=>{e.exposed=t||{}};let n;return{get attrs(){return n||(n=function(e){return new Proxy(e.attrs,{get:(t,n)=>(ye(e,0,"$attrs"),t[n])})}(e))},slots:e.slots,emit:e.emit,expose:t}}function vi(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(Ot(yt(e.exposed)),{get:(t,n)=>n in t?t[n]:n in Zs?Zs[n](e):void 0}))}const yi=/(?:^|[-_])(\w)/g;function _i(e){return I(e)&&e.displayName||e.name}function bi(e,t,n=!1){let o=_i(t);if(!o&&t.__file){const e=t.__file.match(/([^/\\]+)\.\w+$/);e&&(o=e[1])}if(!o&&e&&e.parent){const n=e=>{for(const n in e)if(e[n]===t)return n};o=n(e.components||e.parent.type.components)||n(e.appContext.components)}return o?o.replace(yi,(e=>e.toUpperCase())).replace(/[-_]/g,""):n?"App":"Anonymous"}const Si=(e,t)=>function(e,t,n=!1){let o,r;const s=I(e);return s?(o=e,r=y):(o=e.get,r=e.set),new Pt(o,r,s||!r,n)}(e,0,ui);function Ci(){const e=ri();return e.setupContext||(e.setupContext=gi(e))}function xi(e,t,n){const o=arguments.length;return 2===o?M(t)&&!k(t)?ms(t)?Ss(e,null,[t]):Ss(e,t):Ss(e,null,t):(o>3?n=Array.prototype.slice.call(arguments,2):3===o&&ms(n)&&(n=[n]),Ss(e,t,n))}const Ei=Symbol("");function Ti(e,t){const n=e.memo;if(n.length!=t.length)return!1;for(let o=0;o<n.length;o++)if(n[o]!==t[o])return!1;return ps>0&&ls&&ls.push(e),!0}const Ni="3.2.31",ki=Ur,wi={warnDeprecation:function(e,t,...n){},createCompatVue:function(e,t){pr=t({});const n=fr=function e(t={}){return o(t,e)};function o(t={},o){mn("GLOBAL_MOUNT",null);const{data:r}=t;r&&!I(r)&&gn("OPTIONS_DATA_FN",null)&&(t.data=()=>r);const s=e(t);o!==n&&hr(s,o);const i=s._createRoot(t);return t.el?i.$mount(t.el):i}n.version="2.6.14-compat:3.2.31",n.config=pr.config,n.use=(e,...t)=>(e&&I(e.install)?e.install(n,...t):I(e)&&e(n,...t),n),n.mixin=e=>(pr.mixin(e),n),n.component=(e,t)=>t?(pr.component(e,t),n):pr.component(e),n.directive=(e,t)=>t?(pr.directive(e,t),n):pr.directive(e),n.options={_base:n};let r=1;n.cid=r,n.nextTick=Qt;const s=new WeakMap;n.extend=function e(t={}){if(mn("GLOBAL_EXTEND",null),I(t)&&(t=t.options),s.has(t))return s.get(t);const i=this;function c(e){return o(e?Uo(x({},c.options),e,Ho):c.options,c)}c.super=i,(c.prototype=Object.create(n.prototype)).constructor=c;const l={};for(const n in i.options){const e=i.options[n];l[n]=k(e)?e.slice():M(e)?x(Object.create(null),e):e}return(c.options=Uo(l,t,Ho))._base=c,c.extend=e.bind(c),c.mixin=i.mixin,c.use=i.use,c.cid=++r,s.set(t,c),c}.bind(n),n.set=(e,t,n)=>{mn("GLOBAL_SET",null),e[t]=n},n.delete=(e,t)=>{mn("GLOBAL_DELETE",null),delete e[t]},n.observable=e=>(mn("GLOBAL_OBSERVABLE",null),at(e)),n.filter=(e,t)=>t?(pr.filter(e,t),n):pr.filter(e);const i={warn:y,extend:x,mergeOptions:(e,t,n)=>Uo(e,t,n?void 0:Ho),defineReactive:vr};return Object.defineProperty(n,"util",{get:()=>(mn("GLOBAL_PRIVATE_UTIL",null),i)}),n.configureCompat=fn,n},isCompatEnabled:hn,checkCompatEnabled:vn,softAssertCompatEnabled:gn},Oi=wi,Ai="undefined"!=typeof document?document:null,Ii=Ai&&Ai.createElement("template"),Ri={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,o)=>{const r=t?Ai.createElementNS("http://www.w3.org/2000/svg",e):Ai.createElement(e,n?{is:n}:void 0);return"select"===e&&o&&null!=o.multiple&&r.setAttribute("multiple",o.multiple),r},createText:e=>Ai.createTextNode(e),createComment:e=>Ai.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Ai.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},cloneNode(e){const t=e.cloneNode(!0);return"_value"in e&&(t._value=e._value),t},insertStaticContent(e,t,n,o,r,s){const i=n?n.previousSibling:t.lastChild;if(r&&(r===s||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),r!==s&&(r=r.nextSibling););else{Ii.innerHTML=o?`<svg>${e}</svg>`:e;const r=Ii.content;if(o){const e=r.firstChild;for(;e.firstChild;)r.appendChild(e.firstChild);r.removeChild(e)}t.insertBefore(r,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};const Pi=/\s*!important$/;function Mi(e,t,n){if(k(n))n.forEach((n=>Mi(e,t,n)));else if(t.startsWith("--"))e.setProperty(t,n);else{const o=function(e,t){const n=Li[t];if(n)return n;let o=W(t);if("filter"!==o&&o in e)return Li[t]=o;o=G(o);for(let r=0;r<$i.length;r++){const n=$i[r]+o;if(n in e)return Li[t]=n}return t}(e,t);Pi.test(n)?e.setProperty(z(o),n.replace(Pi,""),"important"):e[o]=n}}const $i=["Webkit","Moz","ms"],Li={};const Fi="http://www.w3.org/1999/xlink";function Vi(e,t,r,s,i){if(s&&t.startsWith("xlink:"))null==r?e.removeAttributeNS(Fi,t.slice(6,t.length)):e.setAttributeNS(Fi,t,r);else{if(function(e,t,o,r=null){if(Bi(t)){const n=null===o?"false":"boolean"!=typeof o&&void 0!==o?"true":null;if(n&&Oi.softAssertCompatEnabled("ATTR_ENUMERATED_COERCION",r,t,o,n))return e.setAttribute(t,n),!0}else if(!1===o&&!n(t)&&Oi.softAssertCompatEnabled("ATTR_FALSE_VALUE",r,t))return e.removeAttribute(t),!0;return!1}(e,t,r,i))return;const s=n(t);null==r||s&&!o(r)?e.removeAttribute(t):e.setAttribute(t,s?"":r)}}const Bi=e("contenteditable,draggable,spellcheck");let Di=Date.now,ji=!1;if("undefined"!=typeof window){Di()>document.createEvent("Event").timeStamp&&(Di=()=>performance.now());const e=navigator.userAgent.match(/firefox\/(\d+)/i);ji=!!(e&&Number(e[1])<=53)}let Ui=0;const Hi=Promise.resolve(),Wi=()=>{Ui=0};function Ki(e,t,n,o){e.addEventListener(t,n,o)}function zi(e,t,n,o,r=null){const s=e._vei||(e._vei={}),i=s[t];if(o&&i)i.value=o;else{const[n,c]=function(e){let t;if(Gi.test(e)){let n;for(t={};n=e.match(Gi);)e=e.slice(0,e.length-n[0].length),t[n[0].toLowerCase()]=!0}return[z(e.slice(2)),t]}(t);if(o){const i=s[t]=function(e,t){const n=e=>{const o=e.timeStamp||Di();(ji||o>=n.attached-1)&&Vt(function(e,t){if(k(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map((e=>t=>!t._stopped&&e&&e(t)))}return t}(e,n.value),t,5,[e])};return n.value=e,n.attached=(()=>Ui||(Hi.then(Wi),Ui=Di()))(),n}(o,r);Ki(e,n,i,c)}else i&&(!function(e,t,n,o){e.removeEventListener(t,n,o)}(e,n,i,c),s[t]=void 0)}}const Gi=/(?:Once|Passive|Capture)$/;const qi=/^on[a-z]/;function Ji(e,t){const n=ao(e);class o extends Zi{constructor(e){super(n,e,t)}}return o.def=n,o}const Yi="undefined"!=typeof HTMLElement?HTMLElement:class{};class Zi extends Yi{constructor(e,t={},n){super(),this._def=e,this._props=t,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this.shadowRoot&&n?n(this._createVNode(),this.shadowRoot):this.attachShadow({mode:"open"})}connectedCallback(){this._connected=!0,this._instance||this._resolveDef()}disconnectedCallback(){this._connected=!1,Qt((()=>{this._connected||(qc(null,this.shadowRoot),this._instance=null)}))}_resolveDef(){if(this._resolved)return;this._resolved=!0;for(let n=0;n<this.attributes.length;n++)this._setAttr(this.attributes[n].name);new MutationObserver((e=>{for(const t of e)this._setAttr(t.attributeName)})).observe(this,{attributes:!0});const e=e=>{const{props:t,styles:n}=e,o=!k(t),r=t?o?Object.keys(t):t:[];let s;if(o)for(const i in this._props){const e=t[i];(e===Number||e&&e.type===Number)&&(this._props[i]=X(this._props[i]),(s||(s=Object.create(null)))[i]=!0)}this._numberProps=s;for(const i of Object.keys(this))"_"!==i[0]&&this._setProp(i,this[i],!0,!1);for(const i of r.map(W))Object.defineProperty(this,i,{get(){return this._getProp(i)},set(e){this._setProp(i,e)}});this._applyStyles(n),this._update()},t=this._def.__asyncLoader;t?t().then(e):e(this._def)}_setAttr(e){let t=this.getAttribute(e);this._numberProps&&this._numberProps[e]&&(t=X(t)),this._setProp(W(e),t,!1)}_getProp(e){return this._props[e]}_setProp(e,t,n=!0,o=!0){t!==this._props[e]&&(this._props[e]=t,o&&this._instance&&this._update(),n&&(!0===t?this.setAttribute(z(e),""):"string"==typeof t||"number"==typeof t?this.setAttribute(z(e),t+""):t||this.removeAttribute(z(e))))}_update(){qc(this._createVNode(),this.shadowRoot)}_createVNode(){const e=Ss(this._def,x({},this._props));return this._instance||(e.ce=e=>{this._instance=e,e.isCE=!0,e.emit=(e,...t)=>{this.dispatchEvent(new CustomEvent(e,{detail:t}))};let t=this;for(;t=t&&(t.parentNode||t.host);)if(t instanceof Zi){e.parent=t._instance;break}}),e}_applyStyles(e){e&&e.forEach((e=>{const t=document.createElement("style");t.textContent=e,this.shadowRoot.appendChild(t)}))}}function Xi(e,t){if(128&e.shapeFlag){const n=e.suspense;e=n.activeBranch,n.pendingBranch&&!n.isHydrating&&n.effects.push((()=>{Xi(n.activeBranch,t)}))}for(;e.component;)e=e.component.subTree;if(1&e.shapeFlag&&e.el)Qi(e.el,t);else if(e.type===os)e.children.forEach((e=>Xi(e,t)));else if(e.type===is){let{el:n,anchor:o}=e;for(;n&&(Qi(n,t),n!==o);)n=n.nextSibling}}function Qi(e,t){if(1===e.nodeType){const n=e.style;for(const e in t)n.setProperty(`--${e}`,t[e])}}const ec="transition",tc="animation",nc=(e,{slots:t})=>xi(no,cc(e),t);nc.displayName="Transition",nc.__isBuiltIn=!0;const oc={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},rc=nc.props=x({},no.props,oc),sc=(e,t=[])=>{k(e)?e.forEach((e=>e(...t))):e&&e(...t)},ic=e=>!!e&&(k(e)?e.some((e=>e.length>1)):e.length>1);function cc(e){const t={};for(const x in e)x in oc||(t[x]=e[x]);if(!1===e.css)return t;const{name:n="v",type:o,duration:r,enterFromClass:s=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:c=`${n}-enter-to`,appearFromClass:l=s,appearActiveClass:a=i,appearToClass:u=c,leaveFromClass:p=`${n}-leave-from`,leaveActiveClass:f=`${n}-leave-active`,leaveToClass:d=`${n}-leave-to`}=e,h=Oi.isCompatEnabled("TRANSITION_CLASSES",null);let m,g,v;if(h){const t=e=>e.replace(/-from$/,"");e.enterFromClass||(m=t(s)),e.appearFromClass||(g=t(l)),e.leaveFromClass||(v=t(p))}const y=function(e){if(null==e)return null;if(M(e))return[lc(e.enter),lc(e.leave)];{const t=lc(e);return[t,t]}}(r),_=y&&y[0],b=y&&y[1],{onBeforeEnter:S,onEnter:C,onEnterCancelled:E,onLeave:T,onLeaveCancelled:N,onBeforeAppear:k=S,onAppear:w=C,onAppearCancelled:O=E}=t,A=(e,t,n)=>{uc(e,t?u:c),uc(e,t?a:i),n&&n()},I=(e,t)=>{uc(e,d),uc(e,f),t&&t()},R=e=>(t,n)=>{const r=e?w:C,i=()=>A(t,e,n);sc(r,[t,i]),pc((()=>{uc(t,e?l:s),h&&uc(t,e?g:m),ac(t,e?u:c),ic(r)||dc(t,o,_,i)}))};return x(t,{onBeforeEnter(e){sc(S,[e]),ac(e,s),h&&ac(e,m),ac(e,i)},onBeforeAppear(e){sc(k,[e]),ac(e,l),h&&ac(e,g),ac(e,a)},onEnter:R(!1),onAppear:R(!0),onLeave(e,t){const n=()=>I(e,t);ac(e,p),h&&ac(e,v),vc(),ac(e,f),pc((()=>{uc(e,p),h&&uc(e,v),ac(e,d),ic(T)||dc(e,o,b,n)})),sc(T,[e,n])},onEnterCancelled(e){A(e,!1),sc(E,[e])},onAppearCancelled(e){A(e,!0),sc(O,[e])},onLeaveCancelled(e){I(e),sc(N,[e])}})}function lc(e){return X(e)}function ac(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.add(t))),(e._vtc||(e._vtc=new Set)).add(t)}function uc(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.remove(t)));const{_vtc:n}=e;n&&(n.delete(t),n.size||(e._vtc=void 0))}function pc(e){requestAnimationFrame((()=>{requestAnimationFrame(e)}))}let fc=0;function dc(e,t,n,o){const r=e._endId=++fc,s=()=>{r===e._endId&&o()};if(n)return setTimeout(s,n);const{type:i,timeout:c,propCount:l}=hc(e,t);if(!i)return o();const a=i+"end";let u=0;const p=()=>{e.removeEventListener(a,f),s()},f=t=>{t.target===e&&++u>=l&&p()};setTimeout((()=>{u<l&&p()}),c+1),e.addEventListener(a,f)}function hc(e,t){const n=window.getComputedStyle(e),o=e=>(n[e]||"").split(", "),r=o("transitionDelay"),s=o("transitionDuration"),i=mc(r,s),c=o("animationDelay"),l=o("animationDuration"),a=mc(c,l);let u=null,p=0,f=0;t===ec?i>0&&(u=ec,p=i,f=s.length):t===tc?a>0&&(u=tc,p=a,f=l.length):(p=Math.max(i,a),u=p>0?i>a?ec:tc:null,f=u?u===ec?s.length:l.length:0);return{type:u,timeout:p,propCount:f,hasTransform:u===ec&&/\b(transform|all)(,|$)/.test(n.transitionProperty)}}function mc(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max(...t.map(((t,n)=>gc(t)+gc(e[n]))))}function gc(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}function vc(){return document.body.offsetHeight}const yc=new WeakMap,_c=new WeakMap,bc={name:"TransitionGroup",props:x({},rc,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=ri(),o=Qn();let r,s;return Oo((()=>{if(!r.length)return;const t=e.moveClass||`${e.name||"v"}-move`;if(!function(e,t,n){const o=e.cloneNode();e._vtc&&e._vtc.forEach((e=>{e.split(/\s+/).forEach((e=>e&&o.classList.remove(e)))}));n.split(/\s+/).forEach((e=>e&&o.classList.add(e))),o.style.display="none";const r=1===t.nodeType?t:t.parentNode;r.appendChild(o);const{hasTransform:s}=hc(o);return r.removeChild(o),s}(r[0].el,n.vnode.el,t))return;r.forEach(Cc),r.forEach(xc);const o=r.filter(Ec);vc(),o.forEach((e=>{const n=e.el,o=n.style;ac(n,t),o.transform=o.webkitTransform=o.transitionDuration="";const r=n._moveCb=e=>{e&&e.target!==n||e&&!/transform$/.test(e.propertyName)||(n.removeEventListener("transitionend",r),n._moveCb=null,uc(n,t))};n.addEventListener("transitionend",r)}))})),()=>{const i=vt(e),c=cc(i);let l=i.tag||os;!i.tag&&Oi.checkCompatEnabled("TRANSITION_GROUP_ROOT",n.parent)&&(l="span"),r=s,s=t.default?lo(t.default()):[];for(let e=0;e<s.length;e++){const t=s[e];null!=t.key&&co(t,ro(t,c,o,n))}if(r)for(let e=0;e<r.length;e++){const t=r[e];co(t,ro(t,c,o,n)),yc.set(t,t.el.getBoundingClientRect())}return Ss(l,null,s)}},__isBuiltIn:!0},Sc=bc;function Cc(e){const t=e.el;t._moveCb&&t._moveCb(),t._enterCb&&t._enterCb()}function xc(e){_c.set(e,e.el.getBoundingClientRect())}function Ec(e){const t=yc.get(e),n=_c.get(e),o=t.left-n.left,r=t.top-n.top;if(o||r){const t=e.el.style;return t.transform=t.webkitTransform=`translate(${o}px,${r}px)`,t.transitionDuration="0s",e}}const Tc=e=>{const t=e.props["onUpdate:modelValue"];return k(t)?e=>Y(t,e):t};function Nc(e){e.target.composing=!0}function kc(e){const t=e.target;t.composing&&(t.composing=!1,function(e,t){const n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}(t,"input"))}const wc={created(e,{modifiers:{lazy:t,trim:n,number:o}},r){e._assign=Tc(r);const s=o||r.props&&"number"===r.props.type;Ki(e,t?"change":"input",(t=>{if(t.target.composing)return;let o=e.value;n?o=o.trim():s&&(o=X(o)),e._assign(o)})),n&&Ki(e,"change",(()=>{e.value=e.value.trim()})),t||(Ki(e,"compositionstart",Nc),Ki(e,"compositionend",kc),Ki(e,"change",kc))},mounted(e,{value:t}){e.value=null==t?"":t},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:o,number:r}},s){if(e._assign=Tc(s),e.composing)return;if(document.activeElement===e){if(n)return;if(o&&e.value.trim()===t)return;if((r||"number"===e.type)&&X(e.value)===t)return}const i=null==t?"":t;e.value!==i&&(e.value=i)}},Oc={deep:!0,created(e,t,n){e._assign=Tc(n),Ki(e,"change",(()=>{const t=e._modelValue,n=Mc(e),o=e.checked,r=e._assign;if(k(t)){const e=d(t,n),s=-1!==e;if(o&&!s)r(t.concat(n));else if(!o&&s){const n=[...t];n.splice(e,1),r(n)}}else if(O(t)){const e=new Set(t);o?e.add(n):e.delete(n),r(e)}else r($c(e,o))}))},mounted:Ac,beforeUpdate(e,t,n){e._assign=Tc(n),Ac(e,t,n)}};function Ac(e,{value:t,oldValue:n},o){e._modelValue=t,k(t)?e.checked=d(t,o.props.value)>-1:O(t)?e.checked=t.has(o.props.value):t!==n&&(e.checked=f(t,$c(e,!0)))}const Ic={created(e,{value:t},n){e.checked=f(t,n.props.value),e._assign=Tc(n),Ki(e,"change",(()=>{e._assign(Mc(e))}))},beforeUpdate(e,{value:t,oldValue:n},o){e._assign=Tc(o),t!==n&&(e.checked=f(t,o.props.value))}},Rc={deep:!0,created(e,{value:t,modifiers:{number:n}},o){const r=O(t);Ki(e,"change",(()=>{const t=Array.prototype.filter.call(e.options,(e=>e.selected)).map((e=>n?X(Mc(e)):Mc(e)));e._assign(e.multiple?r?new Set(t):t:t[0])})),e._assign=Tc(o)},mounted(e,{value:t}){Pc(e,t)},beforeUpdate(e,t,n){e._assign=Tc(n)},updated(e,{value:t}){Pc(e,t)}};function Pc(e,t){const n=e.multiple;if(!n||k(t)||O(t)){for(let o=0,r=e.options.length;o<r;o++){const r=e.options[o],s=Mc(r);if(n)r.selected=k(t)?d(t,s)>-1:t.has(s);else if(f(Mc(r),t))return void(e.selectedIndex!==o&&(e.selectedIndex=o))}n||-1===e.selectedIndex||(e.selectedIndex=-1)}}function Mc(e){return"_value"in e?e._value:e.value}function $c(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}const Lc={created(e,t,n){Fc(e,t,n,null,"created")},mounted(e,t,n){Fc(e,t,n,null,"mounted")},beforeUpdate(e,t,n,o){Fc(e,t,n,o,"beforeUpdate")},updated(e,t,n,o){Fc(e,t,n,o,"updated")}};function Fc(e,t,n,o,r){let s;switch(e.tagName){case"SELECT":s=Rc;break;case"TEXTAREA":s=wc;break;default:switch(n.props&&n.props.type){case"checkbox":s=Oc;break;case"radio":s=Ic;break;default:s=wc}}const i=s[r];i&&i(e,t,n,o)}const Vc=["ctrl","shift","alt","meta"],Bc={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&&0!==e.button,middle:e=>"button"in e&&1!==e.button,right:e=>"button"in e&&2!==e.button,exact:(e,t)=>Vc.some((n=>e[`${n}Key`]&&!t.includes(n)))},Dc={esc:"escape",space:" ",up:"arrow-up",left:"arrow-left",right:"arrow-right",down:"arrow-down",delete:"backspace"},jc={beforeMount(e,{value:t},{transition:n}){e._vod="none"===e.style.display?"":e.style.display,n&&t?n.beforeEnter(e):Uc(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:o}){!t!=!n&&(o?t?(o.beforeEnter(e),Uc(e,!0),o.enter(e)):o.leave(e,(()=>{Uc(e,!1)})):Uc(e,t))},beforeUnmount(e,{value:t}){Uc(e,t)}};function Uc(e,t){e.style.display=t?e._vod:"none"}const Hc=x({patchProp:(e,t,n,r,s=!1,i,c,l,a)=>{"class"===t?function(e,t,n){const o=e._vtc;o&&(t=(t?[t,...o]:[...o]).join(" ")),null==t?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}(e,r,s):"style"===t?function(e,t,n){const o=e.style,r=R(n);if(n&&!r){for(const e in n)Mi(o,e,n[e]);if(t&&!R(t))for(const e in t)null==n[e]&&Mi(o,e,"")}else{const s=o.display;r?t!==n&&(o.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(o.display=s)}}(e,n,r):S(t)?C(t)||zi(e,t,0,r,c):("."===t[0]?(t=t.slice(1),1):"^"===t[0]?(t=t.slice(1),0):function(e,t,n,o){if(o)return"innerHTML"===t||"textContent"===t||!!(t in e&&qi.test(t)&&I(n));if("spellcheck"===t||"draggable"===t)return!1;if("form"===t)return!1;if("list"===t&&"INPUT"===e.tagName)return!1;if("type"===t&&"TEXTAREA"===e.tagName)return!1;if(qi.test(t)&&R(n))return!1;return t in e}(e,t,r,s))?function(e,t,n,r,s,i,c){if("innerHTML"===t||"textContent"===t)return r&&c(r,s,i),void(e[t]=null==n?"":n);if("value"===t&&"PROGRESS"!==e.tagName&&!e.tagName.includes("-")){e._value=n;const o=null==n?"":n;return e.value===o&&"OPTION"!==e.tagName||(e.value=o),void(null==n&&e.removeAttribute(t))}if(""===n||null==n){const r=typeof e[t];if("boolean"===r)return void(e[t]=o(n));if(null==n&&"string"===r)return e[t]="",void e.removeAttribute(t);if("number"===r){try{e[t]=0}catch(l){}return void e.removeAttribute(t)}}if(!1===n&&Oi.isCompatEnabled("ATTR_FALSE_VALUE",s)){const n=typeof e[t];if("string"===n||"number"===n)return e[t]="number"===n?0:"",void e.removeAttribute(t)}try{e[t]=n}catch(a){}}(e,t,r,i,c,l,a):("true-value"===t?e._trueValue=r:"false-value"===t&&(e._falseValue=r),Vi(e,t,r,s,c))}},Ri);let Wc,Kc=!1;function zc(){return Wc||(Wc=wr(Hc))}function Gc(){return Wc=Kc?Wc:Or(Hc),Kc=!0,Wc}const qc=(...e)=>{zc().render(...e)},Jc=(...e)=>{Gc().hydrate(...e)},Yc=(...e)=>{const t=zc().createApp(...e),{mount:n}=t;return t.mount=e=>{const o=Zc(e);if(!o)return;const r=t._component;I(r)||r.render||r.template||(r.template=o.innerHTML),o.innerHTML="";const s=n(o,!1,o instanceof SVGElement);return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),s},t};function Zc(e){if(R(e)){return document.querySelector(e)}return e}var Xc=Object.freeze({__proto__:null,render:qc,hydrate:Jc,createApp:Yc,createSSRApp:(...e)=>{const t=Gc().createApp(...e),{mount:n}=t;return t.mount=e=>{const t=Zc(e);if(t)return n(t,!0,t instanceof SVGElement)},t},initDirectivesForSSR:y,defineCustomElement:Ji,defineSSRCustomElement:e=>Ji(e,Jc),VueElement:Zi,useCssModule:function(e="$style"){return g},useCssVars:function(e){const t=ri();if(!t)return;const n=()=>Xi(t.subTree,e(t.proxy));zn(n),ko((()=>{const e=new MutationObserver(n);e.observe(t.subTree.el.parentNode,{childList:!0}),Io((()=>e.disconnect()))}))},Transition:nc,TransitionGroup:Sc,vModelText:wc,vModelCheckbox:Oc,vModelRadio:Ic,vModelSelect:Rc,vModelDynamic:Lc,withModifiers:(e,t)=>(n,...o)=>{for(let e=0;e<t.length;e++){const o=Bc[t[e]];if(o&&o(n,t))return}return e(n,...o)},withKeys:(e,t)=>{let n,o=null;return o=ri(),Oi.isCompatEnabled("CONFIG_KEY_CODES",o)&&o&&(n=o.appContext.config.keyCodes),r=>{if(!("key"in r))return;const s=z(r.key);if(t.some((e=>e===s||Dc[e]===s)))return e(r);{const s=String(r.keyCode);if(Oi.isCompatEnabled("V_ON_KEYCODE_MODIFIER",o)&&t.some((e=>e==s)))return e(r);if(n)for(const o of t){const t=n[o];if(t){if(k(t)?t.some((e=>String(e)===s)):String(t)===s)return e(r)}}}}},vShow:jc,reactive:at,ref:Et,readonly:pt,unref:kt,proxyRefs:Ot,isRef:xt,toRef:Rt,toRefs:function(e){const t=k(e)?new Array(e.length):{};for(const n in e)t[n]=Rt(e,n);return t},isProxy:gt,isReactive:dt,isReadonly:ht,isShallow:mt,customRef:function(e){return new At(e)},triggerRef:function(e){Ct(e)},shallowRef:function(e){return Tt(e,!0)},shallowReactive:ut,shallowReadonly:function(e){return ft(e,!0,$e,ot,ct)},markRaw:yt,toRaw:vt,effect:function(e,t){e.effect&&(e=e.effect.fn);const n=new fe(e);t&&(x(n,t),t.scope&&ne(n,t.scope)),t&&t.lazy||n.run();const o=n.run.bind(n);return o.effect=n,o},stop:function(e){e.effect.stop()},ReactiveEffect:fe,effectScope:function(e){return new te(e)},EffectScope:te,getCurrentScope:function(){return ee},onScopeDispose:function(e){ee&&ee.cleanups.push(e)},computed:Si,watch:qn,watchEffect:function(e,t){return Jn(e,null,t)},watchPostEffect:zn,watchSyncEffect:function(e,t){return Jn(e,null,{flush:"sync"})},onBeforeMount:No,onMounted:ko,onBeforeUpdate:wo,onUpdated:Oo,onBeforeUnmount:Ao,onUnmounted:Io,onActivated:yo,onDeactivated:_o,onRenderTracked:Mo,onRenderTriggered:Po,onErrorCaptured:$o,onServerPrefetch:Ro,provide:Wn,inject:Kn,nextTick:Qt,defineComponent:ao,defineAsyncComponent:po,useAttrs:function(){return Ci().attrs},useSlots:function(){return Ci().slots},defineProps:function(){return null},defineEmits:function(){return null},defineExpose:function(e){},withDefaults:function(e,t){return null},mergeDefaults:function(e,t){const n=k(e)?e.reduce(((e,t)=>(e[t]={},e)),{}):e;for(const o in t){const e=n[o];e?k(e)||I(e)?n[o]={type:e,default:t[o]}:e.default=t[o]:null===e&&(n[o]={default:t[o]})}return n},createPropsRestProxy:function(e,t){const n={};for(const o in e)t.includes(o)||Object.defineProperty(n,o,{enumerable:!0,get:()=>e[o]});return n},withAsyncContext:function(e){const t=ri();let n=e();return ii(),$(n)&&(n=n.catch((e=>{throw si(t),e}))),[n,()=>si(t)]},getCurrentInstance:ri,h:xi,createVNode:Ss,cloneVNode:xs,mergeProps:Os,isVNode:ms,Fragment:os,Text:rs,Comment:ss,Static:is,Teleport:Fr,Suspense:Vn,KeepAlive:go,BaseTransition:no,withDirectives:ar,useSSRContext:()=>{},ssrContextKey:Ei,createRenderer:wr,createHydrationRenderer:Or,queuePostFlushCb:on,warn:function(e,...t){ge();const n=Mt.length?Mt[Mt.length-1].component:null,o=n&&n.appContext.config.warnHandler,r=function(){let e=Mt[Mt.length-1];if(!e)return[];const t=[];for(;e;){const n=t[0];n&&n.vnode===e?n.recurseCount++:t.push({vnode:e,recurseCount:0});const o=e.component&&e.component.parent;e=o&&o.vnode}return t}();if(o)Ft(o,n,11,[e+t.join(""),n&&n.proxy,r.map((({vnode:e})=>`at <${bi(n,e.type)}>`)).join("\n"),r]);else{const n=[`[Vue warn]: ${e}`,...t];r.length&&n.push("\n",...function(e){const t=[];return e.forEach(((e,n)=>{t.push(...0===n?[]:["\n"],...function({vnode:e,recurseCount:t}){const n=t>0?`... (${t} recursive calls)`:"",o=` at <${bi(e.component,e.type,!!e.component&&null==e.component.parent)}`,r=">"+n;return e.props?[o,...$t(e.props),r]:[o+r]}(e))})),t}(r)),console.warn(...n)}ve()},handleError:Bt,callWithErrorHandling:Ft,callWithAsyncErrorHandling:Vt,resolveComponent:function(e,t){return Hr(Vr,e,!0,t)||e},resolveDirective:jr,resolveDynamicComponent:Dr,registerRuntimeCompiler:di,isRuntimeOnly:hi,useTransitionState:Qn,resolveTransitionHooks:ro,setTransitionHooks:co,getTransitionRawChildren:lo,initCustomFormatter:function(){},get devtools(){return an},setDevtoolsHook:function e(t,n){var o,r;if(an=t,an)an.enabled=!0,un.forEach((({event:e,args:t})=>an.emit(e,...t))),un=[];else if("undefined"!=typeof window&&window.HTMLElement&&!(null===(r=null===(o=window.navigator)||void 0===o?void 0:o.userAgent)||void 0===r?void 0:r.includes("jsdom"))){(n.__VUE_DEVTOOLS_HOOK_REPLAY__=n.__VUE_DEVTOOLS_HOOK_REPLAY__||[]).push((t=>{e(t,n)})),setTimeout((()=>{an||(n.__VUE_DEVTOOLS_HOOK_REPLAY__=null,un=[])}),3e3)}else un=[]},withCtx:Rn,pushScopeId:function(e){An=e},popScopeId:function(){An=null},withScopeId:e=>Rn,renderList:Ps,toHandlers:Fs,renderSlot:$s,createSlots:Ms,withMemo:function(e,t,n,o){const r=n[o];if(r&&Ti(r,e))return r;const s=t();return s.memo=e.slice(),n[o]=s},isMemoSame:Ti,openBlock:as,createBlock:hs,setBlockTracking:fs,createTextVNode:Es,createCommentVNode:Ts,createStaticVNode:function(e,t){const n=Ss(is,null,e);return n.staticCount=t,n},createElementVNode:bs,createElementBlock:function(e,t,n,o,r,s){return ds(bs(e,t,n,o,r,s,!0))},guardReactiveProps:Cs,toDisplayString:h,camelize:W,capitalize:G,toHandlerKey:q,normalizeProps:function(e){if(!e)return null;let{class:t,style:n}=e;return t&&!R(t)&&(e.class=l(t)),n&&(e.style=r(n)),e},normalizeClass:l,normalizeStyle:r,transformVNodeArgs:function(e){},version:Ni,ssrUtils:null,resolveFilter:ki,compatUtils:Oi});function Qc(...e){const t=Yc(...e);return Oi.isCompatEnabled("RENDER_FUNCTION",null)&&(t.component("__compat__transition",nc),t.component("__compat__transition-group",Sc),t.component("__compat__keep-alive",go),t._context.directives.show=jc,t._context.directives.model=Lc),t}function el(e){throw e}function tl(e){}function nl(e,t,n,o){const r=new SyntaxError(String(e));return r.code=e,r.loc=t,r}const ol=Symbol(""),rl=Symbol(""),sl=Symbol(""),il=Symbol(""),cl=Symbol(""),ll=Symbol(""),al=Symbol(""),ul=Symbol(""),pl=Symbol(""),fl=Symbol(""),dl=Symbol(""),hl=Symbol(""),ml=Symbol(""),gl=Symbol(""),vl=Symbol(""),yl=Symbol(""),_l=Symbol(""),bl=Symbol(""),Sl=Symbol(""),Cl=Symbol(""),xl=Symbol(""),El=Symbol(""),Tl=Symbol(""),Nl=Symbol(""),kl=Symbol(""),wl=Symbol(""),Ol=Symbol(""),Al=Symbol(""),Il=Symbol(""),Rl=Symbol(""),Pl=Symbol(""),Ml=Symbol(""),$l=Symbol(""),Ll=Symbol(""),Fl=Symbol(""),Vl=Symbol(""),Bl=Symbol(""),Dl=Symbol(""),jl=Symbol(""),Ul={[ol]:"Fragment",[rl]:"Teleport",[sl]:"Suspense",[il]:"KeepAlive",[cl]:"BaseTransition",[ll]:"openBlock",[al]:"createBlock",[ul]:"createElementBlock",[pl]:"createVNode",[fl]:"createElementVNode",[dl]:"createCommentVNode",[hl]:"createTextVNode",[ml]:"createStaticVNode",[gl]:"resolveComponent",[vl]:"resolveDynamicComponent",[yl]:"resolveDirective",[_l]:"resolveFilter",[bl]:"withDirectives",[Sl]:"renderList",[Cl]:"renderSlot",[xl]:"createSlots",[El]:"toDisplayString",[Tl]:"mergeProps",[Nl]:"normalizeClass",[kl]:"normalizeStyle",[wl]:"normalizeProps",[Ol]:"guardReactiveProps",[Al]:"toHandlers",[Il]:"camelize",[Rl]:"capitalize",[Pl]:"toHandlerKey",[Ml]:"setBlockTracking",[$l]:"pushScopeId",[Ll]:"popScopeId",[Fl]:"withCtx",[Vl]:"unref",[Bl]:"isRef",[Dl]:"withMemo",[jl]:"isMemoSame"};const Hl={source:"",start:{line:1,column:1,offset:0},end:{line:1,column:1,offset:0}};function Wl(e,t,n,o,r,s,i,c=!1,l=!1,a=!1,u=Hl){return e&&(c?(e.helper(ll),e.helper(_a(e.inSSR,a))):e.helper(ya(e.inSSR,a)),i&&e.helper(bl)),{type:13,tag:t,props:n,children:o,patchFlag:r,dynamicProps:s,directives:i,isBlock:c,disableTracking:l,isComponent:a,loc:u}}function Kl(e,t=Hl){return{type:17,loc:t,elements:e}}function zl(e,t=Hl){return{type:15,loc:t,properties:e}}function Gl(e,t){return{type:16,loc:Hl,key:R(e)?ql(e,!0):e,value:t}}function ql(e,t=!1,n=Hl,o=0){return{type:4,loc:n,content:e,isStatic:t,constType:t?3:o}}function Jl(e,t=Hl){return{type:8,loc:t,children:e}}function Yl(e,t=[],n=Hl){return{type:14,loc:n,callee:e,arguments:t}}function Zl(e,t,n=!1,o=!1,r=Hl){return{type:18,params:e,returns:t,newline:n,isSlot:o,loc:r}}function Xl(e,t,n,o=!0){return{type:19,test:e,consequent:t,alternate:n,newline:o,loc:Hl}}const Ql=e=>4===e.type&&e.isStatic,ea=(e,t)=>e===t||e===z(t);function ta(e){return ea(e,"Teleport")?rl:ea(e,"Suspense")?sl:ea(e,"KeepAlive")?il:ea(e,"BaseTransition")?cl:void 0}const na=/^\d|[^\$\w]/,oa=e=>!na.test(e),ra=/[A-Za-z_$\xA0-\uFFFF]/,sa=/[\.\?\w$\xA0-\uFFFF]/,ia=/\s+[.[]\s*|\s*[.[]\s+/g,ca=e=>{e=e.trim().replace(ia,(e=>e.trim()));let t=0,n=[],o=0,r=0,s=null;for(let i=0;i<e.length;i++){const c=e.charAt(i);switch(t){case 0:if("["===c)n.push(t),t=1,o++;else if("("===c)n.push(t),t=2,r++;else if(!(0===i?ra:sa).test(c))return!1;break;case 1:"'"===c||'"'===c||"`"===c?(n.push(t),t=3,s=c):"["===c?o++:"]"===c&&(--o||(t=n.pop()));break;case 2:if("'"===c||'"'===c||"`"===c)n.push(t),t=3,s=c;else if("("===c)r++;else if(")"===c){if(i===e.length-1)return!1;--r||(t=n.pop())}break;case 3:c===s&&(t=n.pop(),s=null)}}return!o&&!r};function la(e,t,n){const o={source:e.source.slice(t,t+n),start:aa(e.start,e.source,t),end:e.end};return null!=n&&(o.end=aa(e.start,e.source,t+n)),o}function aa(e,t,n=t.length){return ua(x({},e),t,n)}function ua(e,t,n=t.length){let o=0,r=-1;for(let s=0;s<n;s++)10===t.charCodeAt(s)&&(o++,r=s);return e.offset+=n,e.line+=o,e.column=-1===r?e.column+n:n-r,e}function pa(e,t,n=!1){for(let o=0;o<e.props.length;o++){const r=e.props[o];if(7===r.type&&(n||r.exp)&&(R(t)?r.name===t:t.test(r.name)))return r}}function fa(e,t,n=!1,o=!1){for(let r=0;r<e.props.length;r++){const s=e.props[r];if(6===s.type){if(n)continue;if(s.name===t&&(s.value||o))return s}else if("bind"===s.name&&(s.exp||o)&&da(s.arg,t))return s}}function da(e,t){return!(!e||!Ql(e)||e.content!==t)}function ha(e){return 5===e.type||2===e.type}function ma(e){return 7===e.type&&"slot"===e.name}function ga(e){return 1===e.type&&3===e.tagType}function va(e){return 1===e.type&&2===e.tagType}function ya(e,t){return e||t?pl:fl}function _a(e,t){return e||t?al:ul}const ba=new Set([wl,Ol]);function Sa(e,t=[]){if(e&&!R(e)&&14===e.type){const n=e.callee;if(!R(n)&&ba.has(n))return Sa(e.arguments[0],t.concat(e))}return[e,t]}function Ca(e,t,n){let o,r,s=13===e.type?e.props:e.arguments[2],i=[];if(s&&!R(s)&&14===s.type){const e=Sa(s);s=e[0],i=e[1],r=i[i.length-1]}if(null==s||R(s))o=zl([t]);else if(14===s.type){const e=s.arguments[0];R(e)||15!==e.type?s.callee===Al?o=Yl(n.helper(Tl),[zl([t]),s]):s.arguments.unshift(zl([t])):e.properties.unshift(t),!o&&(o=s)}else if(15===s.type){let e=!1;if(4===t.key.type){const n=t.key.content;e=s.properties.some((e=>4===e.key.type&&e.key.content===n))}e||s.properties.unshift(t),o=s}else o=Yl(n.helper(Tl),[zl([t]),s]),r&&r.callee===Ol&&(r=i[i.length-2]);13===e.type?r?r.arguments[0]=o:e.props=o:r?r.arguments[0]=o:e.arguments[2]=o}function xa(e,t){return`_${t}_${e.replace(/[^\w]/g,((t,n)=>"-"===t?"_":e.charCodeAt(n).toString()))}`}function Ea(e,{helper:t,removeHelper:n,inSSR:o}){e.isBlock||(e.isBlock=!0,n(ya(o,e.isComponent)),t(ll),t(_a(o,e.isComponent)))}function Ta(e,t){const n=t.options?t.options.compatConfig:t.compatConfig,o=n&&n[e];return"MODE"===e?o||3:o}function Na(e,t){const n=Ta("MODE",t),o=Ta(e,t);return 3===n?!0===o:!1!==o}function ka(e,t,n,...o){return Na(e,t)}const wa=/&(gt|lt|amp|apos|quot);/g,Oa={gt:">",lt:"<",amp:"&",apos:"'",quot:'"'},Aa={delimiters:["{{","}}"],getNamespace:()=>0,getTextMode:()=>0,isVoidTag:_,isPreTag:_,isCustomElement:_,decodeEntities:e=>e.replace(wa,((e,t)=>Oa[t])),onError:el,onWarn:tl,comments:!1};function Ia(e,t={}){const n=function(e,t){const n=x({},Aa);let o;for(o in t)n[o]=void 0===t[o]?Aa[o]:t[o];return{options:n,column:1,line:1,offset:0,originalSource:e,source:e,inPre:!1,inVPre:!1,onWarn:n.onWarn}}(e,t),o=Ka(n);return function(e,t=Hl){return{type:0,children:e,helpers:[],components:[],directives:[],hoists:[],imports:[],cached:0,temps:0,codegenNode:void 0,loc:t}}(Ra(n,0,[]),za(n,o))}function Ra(e,t,n){const o=Ga(n),r=o?o.ns:0,s=[];for(;!Xa(e,t,n);){const i=e.source;let c;if(0===t||1===t)if(!e.inVPre&&qa(i,e.options.delimiters[0]))c=Ua(e,t);else if(0===t&&"<"===i[0])if(1===i.length);else if("!"===i[1])c=qa(i,"\x3c!--")?$a(e):qa(i,"<!DOCTYPE")?La(e):qa(i,"<![CDATA[")&&0!==r?Ma(e,n):La(e);else if("/"===i[1])if(2===i.length);else{if(">"===i[2]){Ja(e,3);continue}if(/[a-z]/i.test(i[2])){Ba(e,1,o);continue}c=La(e)}else/[a-z]/i.test(i[1])?(c=Fa(e,n),Na("COMPILER_NATIVE_TEMPLATE",e)&&c&&"template"===c.tag&&!c.props.some((e=>7===e.type&&Va(e.name)))&&(c=c.children)):"?"===i[1]&&(c=La(e));if(c||(c=Ha(e,t)),k(c))for(let e=0;e<c.length;e++)Pa(s,c[e]);else Pa(s,c)}let i=!1;if(2!==t&&1!==t){const t="preserve"!==e.options.whitespace;for(let n=0;n<s.length;n++){const o=s[n];if(e.inPre||2!==o.type)3!==o.type||e.options.comments||(i=!0,s[n]=null);else if(/[^\t\r\n\f ]/.test(o.content))t&&(o.content=o.content.replace(/[\t\r\n\f ]+/g," "));else{const e=s[n-1],r=s[n+1];!e||!r||t&&(3===e.type||3===r.type||1===e.type&&1===r.type&&/[\r\n]/.test(o.content))?(i=!0,s[n]=null):o.content=" "}}if(e.inPre&&o&&e.options.isPreTag(o.tag)){const e=s[0];e&&2===e.type&&(e.content=e.content.replace(/^\r?\n/,""))}}return i?s.filter(Boolean):s}function Pa(e,t){if(2===t.type){const n=Ga(e);if(n&&2===n.type&&n.loc.end.offset===t.loc.start.offset)return n.content+=t.content,n.loc.end=t.loc.end,void(n.loc.source+=t.loc.source)}e.push(t)}function Ma(e,t){Ja(e,9);const n=Ra(e,3,t);return 0===e.source.length||Ja(e,3),n}function $a(e){const t=Ka(e);let n;const o=/--(\!)?>/.exec(e.source);if(o){n=e.source.slice(4,o.index);const t=e.source.slice(0,o.index);let r=1,s=0;for(;-1!==(s=t.indexOf("\x3c!--",r));)Ja(e,s-r+1),r=s+1;Ja(e,o.index+o[0].length-r+1)}else n=e.source.slice(4),Ja(e,e.source.length);return{type:3,content:n,loc:za(e,t)}}function La(e){const t=Ka(e),n="?"===e.source[1]?1:2;let o;const r=e.source.indexOf(">");return-1===r?(o=e.source.slice(n),Ja(e,e.source.length)):(o=e.source.slice(n,r),Ja(e,r+1)),{type:3,content:o,loc:za(e,t)}}function Fa(e,t){const n=e.inPre,o=e.inVPre,r=Ga(t),s=Ba(e,0,r),i=e.inPre&&!n,c=e.inVPre&&!o;if(s.isSelfClosing||e.options.isVoidTag(s.tag))return i&&(e.inPre=!1),c&&(e.inVPre=!1),s;t.push(s);const l=e.options.getTextMode(s,r),a=Ra(e,l,t);t.pop();{const t=s.props.find((e=>6===e.type&&"inline-template"===e.name));if(t&&ka("COMPILER_INLINE_TEMPLATE",e)){const n=za(e,s.loc.end);t.value={type:2,content:n.source,loc:n}}}if(s.children=a,Qa(e.source,s.tag))Ba(e,1,r);else if(0===e.source.length&&"script"===s.tag.toLowerCase()){const e=a[0];e&&qa(e.loc.source,"\x3c!--")}return s.loc=za(e,s.loc.start),i&&(e.inPre=!1),c&&(e.inVPre=!1),s}const Va=e("if,else,else-if,for,slot");function Ba(e,t,n){const o=Ka(e),r=/^<\/?([a-z][^\t\r\n\f />]*)/i.exec(e.source),s=r[1],i=e.options.getNamespace(s,n);Ja(e,r[0].length),Ya(e);const c=Ka(e),l=e.source;e.options.isPreTag(s)&&(e.inPre=!0);let a=Da(e,t);0===t&&!e.inVPre&&a.some((e=>7===e.type&&"pre"===e.name))&&(e.inVPre=!0,x(e,c),e.source=l,a=Da(e,t).filter((e=>"v-pre"!==e.name)));let u=!1;if(0===e.source.length||(u=qa(e.source,"/>"),Ja(e,u?2:1)),1===t)return;let p=0;return e.inVPre||("slot"===s?p=2:"template"===s?a.some((e=>7===e.type&&Va(e.name)))&&(p=3):function(e,t,n){const o=n.options;if(o.isCustomElement(e))return!1;if("component"===e||/^[A-Z]/.test(e)||ta(e)||o.isBuiltInComponent&&o.isBuiltInComponent(e)||o.isNativeTag&&!o.isNativeTag(e))return!0;for(let r=0;r<t.length;r++){const e=t[r];if(6===e.type){if("is"===e.name&&e.value){if(e.value.content.startsWith("vue:"))return!0;if(ka("COMPILER_IS_ON_ELEMENT",n))return!0}}else{if("is"===e.name)return!0;if("bind"===e.name&&da(e.arg,"is")&&ka("COMPILER_IS_ON_ELEMENT",n))return!0}}}(s,a,e)&&(p=1)),{type:1,ns:i,tag:s,tagType:p,props:a,isSelfClosing:u,children:[],loc:za(e,o),codegenNode:void 0}}function Da(e,t){const n=[],o=new Set;for(;e.source.length>0&&!qa(e.source,">")&&!qa(e.source,"/>");){if(qa(e.source,"/")){Ja(e,1),Ya(e);continue}const r=ja(e,o);6===r.type&&r.value&&"class"===r.name&&(r.value.content=r.value.content.replace(/\s+/g," ").trim()),0===t&&n.push(r),/^[^\t\r\n\f />]/.test(e.source),Ya(e)}return n}function ja(e,t){const n=Ka(e),o=/^[^\t\r\n\f />][^\t\r\n\f />=]*/.exec(e.source)[0];t.has(o),t.add(o);{const e=/["'<]/g;let t;for(;t=e.exec(o););}let r;Ja(e,o.length),/^[\t\r\n\f ]*=/.test(e.source)&&(Ya(e),Ja(e,1),Ya(e),r=function(e){const t=Ka(e);let n;const o=e.source[0],r='"'===o||"'"===o;if(r){Ja(e,1);const t=e.source.indexOf(o);-1===t?n=Wa(e,e.source.length,4):(n=Wa(e,t,4),Ja(e,1))}else{const t=/^[^\t\r\n\f >]+/.exec(e.source);if(!t)return;const o=/["'<=`]/g;let r;for(;r=o.exec(t[0]););n=Wa(e,t[0].length,4)}return{content:n,isQuoted:r,loc:za(e,t)}}(e));const s=za(e,n);if(!e.inVPre&&/^(v-[A-Za-z0-9-]|:|\.|@|#)/.test(o)){const t=/(?:^v-([a-z0-9-]+))?(?:(?::|^\.|^@|^#)(\[[^\]]+\]|[^\.]+))?(.+)?$/i.exec(o);let i,c=qa(o,"."),l=t[1]||(c||qa(o,":")?"bind":qa(o,"@")?"on":"slot");if(t[2]){const r="slot"===l,s=o.lastIndexOf(t[2]),c=za(e,Za(e,n,s),Za(e,n,s+t[2].length+(r&&t[3]||"").length));let a=t[2],u=!0;a.startsWith("[")?(u=!1,a=a.endsWith("]")?a.slice(1,a.length-1):a.slice(1)):r&&(a+=t[3]||""),i={type:4,content:a,isStatic:u,constType:u?3:0,loc:c}}if(r&&r.isQuoted){const e=r.loc;e.start.offset++,e.start.column++,e.end=aa(e.start,r.content),e.source=e.source.slice(1,-1)}const a=t[3]?t[3].slice(1).split("."):[];return c&&a.push("prop"),"bind"===l&&i&&a.includes("sync")&&ka("COMPILER_V_BIND_SYNC",e,0)&&(l="model",a.splice(a.indexOf("sync"),1)),{type:7,name:l,exp:r&&{type:4,content:r.content,isStatic:!1,constType:0,loc:r.loc},arg:i,modifiers:a,loc:s}}return!e.inVPre&&qa(o,"v-"),{type:6,name:o,value:r&&{type:2,content:r.content,loc:r.loc},loc:s}}function Ua(e,t){const[n,o]=e.options.delimiters,r=e.source.indexOf(o,n.length);if(-1===r)return;const s=Ka(e);Ja(e,n.length);const i=Ka(e),c=Ka(e),l=r-n.length,a=e.source.slice(0,l),u=Wa(e,l,t),p=u.trim(),f=u.indexOf(p);f>0&&ua(i,a,f);return ua(c,a,l-(u.length-p.length-f)),Ja(e,o.length),{type:5,content:{type:4,isStatic:!1,constType:0,content:p,loc:za(e,i,c)},loc:za(e,s)}}function Ha(e,t){const n=3===t?["]]>"]:["<",e.options.delimiters[0]];let o=e.source.length;for(let s=0;s<n.length;s++){const t=e.source.indexOf(n[s],1);-1!==t&&o>t&&(o=t)}const r=Ka(e);return{type:2,content:Wa(e,o,t),loc:za(e,r)}}function Wa(e,t,n){const o=e.source.slice(0,t);return Ja(e,t),2!==n&&3!==n&&o.includes("&")?e.options.decodeEntities(o,4===n):o}function Ka(e){const{column:t,line:n,offset:o}=e;return{column:t,line:n,offset:o}}function za(e,t,n){return{start:t,end:n=n||Ka(e),source:e.originalSource.slice(t.offset,n.offset)}}function Ga(e){return e[e.length-1]}function qa(e,t){return e.startsWith(t)}function Ja(e,t){const{source:n}=e;ua(e,n,t),e.source=n.slice(t)}function Ya(e){const t=/^[\t\r\n\f ]+/.exec(e.source);t&&Ja(e,t[0].length)}function Za(e,t,n){return aa(t,e.originalSource.slice(t.offset,n),n)}function Xa(e,t,n){const o=e.source;switch(t){case 0:if(qa(o,"</"))for(let e=n.length-1;e>=0;--e)if(Qa(o,n[e].tag))return!0;break;case 1:case 2:{const e=Ga(n);if(e&&Qa(o,e.tag))return!0;break}case 3:if(qa(o,"]]>"))return!0}return!o}function Qa(e,t){return qa(e,"</")&&e.slice(2,2+t.length).toLowerCase()===t.toLowerCase()&&/[\t\r\n\f />]/.test(e[2+t.length]||">")}function eu(e,t){nu(e,t,tu(e,e.children[0]))}function tu(e,t){const{children:n}=e;return 1===n.length&&1===t.type&&!va(t)}function nu(e,t,n=!1){const{children:o}=e,r=o.length;let s=0;for(let i=0;i<o.length;i++){const e=o[i];if(1===e.type&&0===e.tagType){const o=n?0:ou(e,t);if(o>0){if(o>=2){e.codegenNode.patchFlag="-1",e.codegenNode=t.hoist(e.codegenNode),s++;continue}}else{const n=e.codegenNode;if(13===n.type){const o=lu(n);if((!o||512===o||1===o)&&iu(e,t)>=2){const o=cu(e);o&&(n.props=t.hoist(o))}n.dynamicProps&&(n.dynamicProps=t.hoist(n.dynamicProps))}}}else 12===e.type&&ou(e.content,t)>=2&&(e.codegenNode=t.hoist(e.codegenNode),s++);if(1===e.type){const n=1===e.tagType;n&&t.scopes.vSlot++,nu(e,t),n&&t.scopes.vSlot--}else if(11===e.type)nu(e,t,1===e.children.length);else if(9===e.type)for(let n=0;n<e.branches.length;n++)nu(e.branches[n],t,1===e.branches[n].children.length)}s&&t.transformHoist&&t.transformHoist(o,t,e),s&&s===r&&1===e.type&&0===e.tagType&&e.codegenNode&&13===e.codegenNode.type&&k(e.codegenNode.children)&&(e.codegenNode.children=t.hoist(Kl(e.codegenNode.children)))}function ou(e,t){const{constantCache:n}=t;switch(e.type){case 1:if(0!==e.tagType)return 0;const o=n.get(e);if(void 0!==o)return o;const r=e.codegenNode;if(13!==r.type)return 0;if(r.isBlock&&"svg"!==e.tag&&"foreignObject"!==e.tag)return 0;if(lu(r))return n.set(e,0),0;{let o=3;const s=iu(e,t);if(0===s)return n.set(e,0),0;s<o&&(o=s);for(let r=0;r<e.children.length;r++){const s=ou(e.children[r],t);if(0===s)return n.set(e,0),0;s<o&&(o=s)}if(o>1)for(let r=0;r<e.props.length;r++){const s=e.props[r];if(7===s.type&&"bind"===s.name&&s.exp){const r=ou(s.exp,t);if(0===r)return n.set(e,0),0;r<o&&(o=r)}}return r.isBlock&&(t.removeHelper(ll),t.removeHelper(_a(t.inSSR,r.isComponent)),r.isBlock=!1,t.helper(ya(t.inSSR,r.isComponent))),n.set(e,o),o}case 2:case 3:return 3;case 9:case 11:case 10:default:return 0;case 5:case 12:return ou(e.content,t);case 4:return e.constType;case 8:let s=3;for(let n=0;n<e.children.length;n++){const o=e.children[n];if(R(o)||P(o))continue;const r=ou(o,t);if(0===r)return 0;r<s&&(s=r)}return s}}const ru=new Set([Nl,kl,wl,Ol]);function su(e,t){if(14===e.type&&!R(e.callee)&&ru.has(e.callee)){const n=e.arguments[0];if(4===n.type)return ou(n,t);if(14===n.type)return su(n,t)}return 0}function iu(e,t){let n=3;const o=cu(e);if(o&&15===o.type){const{properties:e}=o;for(let o=0;o<e.length;o++){const{key:r,value:s}=e[o],i=ou(r,t);if(0===i)return i;let c;if(i<n&&(n=i),c=4===s.type?ou(s,t):14===s.type?su(s,t):0,0===c)return c;c<n&&(n=c)}}return n}function cu(e){const t=e.codegenNode;if(13===t.type)return t.props}function lu(e){const t=e.patchFlag;return t?parseInt(t,10):void 0}function au(e,{filename:t="",prefixIdentifiers:n=!1,hoistStatic:o=!1,cacheHandlers:r=!1,nodeTransforms:s=[],directiveTransforms:i={},transformHoist:c=null,isBuiltInComponent:l=y,isCustomElement:a=y,expressionPlugins:u=[],scopeId:p=null,slotted:f=!0,ssr:d=!1,inSSR:h=!1,ssrCssVars:m="",bindingMetadata:v=g,inline:_=!1,isTS:b=!1,onError:S=el,onWarn:C=tl,compatConfig:x}){const E=t.replace(/\?.*$/,"").match(/([^/\\]+)\.\w+$/),T={selfName:E&&G(W(E[1])),prefixIdentifiers:n,hoistStatic:o,cacheHandlers:r,nodeTransforms:s,directiveTransforms:i,transformHoist:c,isBuiltInComponent:l,isCustomElement:a,expressionPlugins:u,scopeId:p,slotted:f,ssr:d,inSSR:h,ssrCssVars:m,bindingMetadata:v,inline:_,isTS:b,onError:S,onWarn:C,compatConfig:x,root:e,helpers:new Map,components:new Set,directives:new Set,hoists:[],imports:[],constantCache:new Map,temps:0,cached:0,identifiers:Object.create(null),scopes:{vFor:0,vSlot:0,vPre:0,vOnce:0},parent:null,currentNode:e,childIndex:0,inVOnce:!1,helper(e){const t=T.helpers.get(e)||0;return T.helpers.set(e,t+1),e},removeHelper(e){const t=T.helpers.get(e);if(t){const n=t-1;n?T.helpers.set(e,n):T.helpers.delete(e)}},helperString:e=>`_${Ul[T.helper(e)]}`,replaceNode(e){T.parent.children[T.childIndex]=T.currentNode=e},removeNode(e){const t=e?T.parent.children.indexOf(e):T.currentNode?T.childIndex:-1;e&&e!==T.currentNode?T.childIndex>t&&(T.childIndex--,T.onNodeRemoved()):(T.currentNode=null,T.onNodeRemoved()),T.parent.children.splice(t,1)},onNodeRemoved:()=>{},addIdentifiers(e){},removeIdentifiers(e){},hoist(e){R(e)&&(e=ql(e)),T.hoists.push(e);const t=ql(`_hoisted_${T.hoists.length}`,!1,e.loc,2);return t.hoisted=e,t},cache:(e,t=!1)=>function(e,t,n=!1){return{type:20,index:e,value:t,isVNode:n,loc:Hl}}(T.cached++,e,t)};return T.filters=new Set,T}function uu(e,t){const n=au(e,t);pu(e,n),t.hoistStatic&&eu(e,n),t.ssr||function(e,t){const{helper:n}=t,{children:o}=e;if(1===o.length){const n=o[0];if(tu(e,n)&&n.codegenNode){const o=n.codegenNode;13===o.type&&Ea(o,t),e.codegenNode=o}else e.codegenNode=n}else if(o.length>1){let o=64;e.codegenNode=Wl(t,n(ol),void 0,e.children,o+"",void 0,void 0,!0,void 0,!1)}}(e,n),e.helpers=[...n.helpers.keys()],e.components=[...n.components],e.directives=[...n.directives],e.imports=n.imports,e.hoists=n.hoists,e.temps=n.temps,e.cached=n.cached,e.filters=[...n.filters]}function pu(e,t){t.currentNode=e;const{nodeTransforms:n}=t,o=[];for(let s=0;s<n.length;s++){const r=n[s](e,t);if(r&&(k(r)?o.push(...r):o.push(r)),!t.currentNode)return;e=t.currentNode}switch(e.type){case 3:t.ssr||t.helper(dl);break;case 5:t.ssr||t.helper(El);break;case 9:for(let n=0;n<e.branches.length;n++)pu(e.branches[n],t);break;case 10:case 11:case 1:case 0:!function(e,t){let n=0;const o=()=>{n--};for(;n<e.children.length;n++){const r=e.children[n];R(r)||(t.parent=e,t.childIndex=n,t.onNodeRemoved=o,pu(r,t))}}(e,t)}t.currentNode=e;let r=o.length;for(;r--;)o[r]()}function fu(e,t){const n=R(e)?t=>t===e:t=>e.test(t);return(e,o)=>{if(1===e.type){const{props:r}=e;if(3===e.tagType&&r.some(ma))return;const s=[];for(let i=0;i<r.length;i++){const c=r[i];if(7===c.type&&n(c.name)){r.splice(i,1),i--;const n=t(e,c,o);n&&s.push(n)}}return s}}}const du="/*#__PURE__*/";function hu(e,t={}){const n=function(e,{mode:t="function",prefixIdentifiers:n="module"===t,sourceMap:o=!1,filename:r="template.vue.html",scopeId:s=null,optimizeImports:i=!1,runtimeGlobalName:c="Vue",runtimeModuleName:l="vue",ssrRuntimeModuleName:a="vue/server-renderer",ssr:u=!1,isTS:p=!1,inSSR:f=!1}){const d={mode:t,prefixIdentifiers:n,sourceMap:o,filename:r,scopeId:s,optimizeImports:i,runtimeGlobalName:c,runtimeModuleName:l,ssrRuntimeModuleName:a,ssr:u,isTS:p,inSSR:f,source:e.loc.source,code:"",column:1,line:1,offset:0,indentLevel:0,pure:!1,map:void 0,helper:e=>`_${Ul[e]}`,push(e,t){d.code+=e},indent(){h(++d.indentLevel)},deindent(e=!1){e?--d.indentLevel:h(--d.indentLevel)},newline(){h(d.indentLevel)}};function h(e){d.push("\n"+" ".repeat(e))}return d}(e,t);t.onContextCreated&&t.onContextCreated(n);const{mode:o,push:r,prefixIdentifiers:s,indent:i,deindent:c,newline:l,ssr:a}=n,u=e.helpers.length>0,p=!s&&"module"!==o;!function(e,t){const{push:n,newline:o,runtimeGlobalName:r}=t,s=r,i=e=>`${Ul[e]}: _${Ul[e]}`;if(e.helpers.length>0&&(n(`const _Vue = ${s}\n`),e.hoists.length)){n(`const { ${[pl,fl,dl,hl,ml].filter((t=>e.helpers.includes(t))).map(i).join(", ")} } = _Vue\n`)}(function(e,t){if(!e.length)return;t.pure=!0;const{push:n,newline:o}=t;o();for(let r=0;r<e.length;r++){const s=e[r];s&&(n(`const _hoisted_${r+1} = `),yu(s,t),o())}t.pure=!1})(e.hoists,t),o(),n("return ")}(e,n);if(r(`function ${a?"ssrRender":"render"}(${(a?["_ctx","_push","_parent","_attrs"]:["_ctx","_cache"]).join(", ")}) {`),i(),p&&(r("with (_ctx) {"),i(),u&&(r(`const { ${e.helpers.map((e=>`${Ul[e]}: _${Ul[e]}`)).join(", ")} } = _Vue`),r("\n"),l())),e.components.length&&(mu(e.components,"component",n),(e.directives.length||e.temps>0)&&l()),e.directives.length&&(mu(e.directives,"directive",n),e.temps>0&&l()),e.filters&&e.filters.length&&(l(),mu(e.filters,"filter",n),l()),e.temps>0){r("let ");for(let t=0;t<e.temps;t++)r(`${t>0?", ":""}_temp${t}`)}return(e.components.length||e.directives.length||e.temps)&&(r("\n"),l()),a||r("return "),e.codegenNode?yu(e.codegenNode,n):r("null"),p&&(c(),r("}")),c(),r("}"),{ast:e,code:n.code,preamble:"",map:n.map?n.map.toJSON():void 0}}function mu(e,t,{helper:n,push:o,newline:r,isTS:s}){const i=n("filter"===t?_l:"component"===t?gl:yl);for(let c=0;c<e.length;c++){let n=e[c];const l=n.endsWith("__self");l&&(n=n.slice(0,-6)),o(`const ${xa(n,t)} = ${i}(${JSON.stringify(n)}${l?", true":""})${s?"!":""}`),c<e.length-1&&r()}}function gu(e,t){const n=e.length>3||!1;t.push("["),n&&t.indent(),vu(e,t,n),n&&t.deindent(),t.push("]")}function vu(e,t,n=!1,o=!0){const{push:r,newline:s}=t;for(let i=0;i<e.length;i++){const c=e[i];R(c)?r(c):k(c)?gu(c,t):yu(c,t),i<e.length-1&&(n?(o&&r(","),s()):o&&r(", "))}}function yu(e,t){if(R(e))t.push(e);else if(P(e))t.push(t.helper(e));else switch(e.type){case 1:case 9:case 11:case 12:yu(e.codegenNode,t);break;case 2:!function(e,t){t.push(JSON.stringify(e.content),e)}(e,t);break;case 4:_u(e,t);break;case 5:!function(e,t){const{push:n,helper:o,pure:r}=t;r&&n(du);n(`${o(El)}(`),yu(e.content,t),n(")")}(e,t);break;case 8:bu(e,t);break;case 3:!function(e,t){const{push:n,helper:o,pure:r}=t;r&&n(du);n(`${o(dl)}(${JSON.stringify(e.content)})`,e)}(e,t);break;case 13:!function(e,t){const{push:n,helper:o,pure:r}=t,{tag:s,props:i,children:c,patchFlag:l,dynamicProps:a,directives:u,isBlock:p,disableTracking:f,isComponent:d}=e;u&&n(o(bl)+"(");p&&n(`(${o(ll)}(${f?"true":""}), `);r&&n(du);const h=p?_a(t.inSSR,d):ya(t.inSSR,d);n(o(h)+"(",e),vu(function(e){let t=e.length;for(;t--&&null==e[t];);return e.slice(0,t+1).map((e=>e||"null"))}([s,i,c,l,a]),t),n(")"),p&&n(")");u&&(n(", "),yu(u,t),n(")"))}(e,t);break;case 14:!function(e,t){const{push:n,helper:o,pure:r}=t,s=R(e.callee)?e.callee:o(e.callee);r&&n(du);n(s+"(",e),vu(e.arguments,t),n(")")}(e,t);break;case 15:!function(e,t){const{push:n,indent:o,deindent:r,newline:s}=t,{properties:i}=e;if(!i.length)return void n("{}",e);const c=i.length>1||!1;n(c?"{":"{ "),c&&o();for(let l=0;l<i.length;l++){const{key:e,value:o}=i[l];Su(e,t),n(": "),yu(o,t),l<i.length-1&&(n(","),s())}c&&r(),n(c?"}":" }")}(e,t);break;case 17:!function(e,t){gu(e.elements,t)}(e,t);break;case 18:!function(e,t){const{push:n,indent:o,deindent:r}=t,{params:s,returns:i,body:c,newline:l,isSlot:a}=e;a&&n(`_${Ul[Fl]}(`);n("(",e),k(s)?vu(s,t):s&&yu(s,t);n(") => "),(l||c)&&(n("{"),o());i?(l&&n("return "),k(i)?gu(i,t):yu(i,t)):c&&yu(c,t);(l||c)&&(r(),n("}"));a&&(e.isNonScopedSlot&&n(", undefined, true"),n(")"))}(e,t);break;case 19:!function(e,t){const{test:n,consequent:o,alternate:r,newline:s}=e,{push:i,indent:c,deindent:l,newline:a}=t;if(4===n.type){const e=!oa(n.content);e&&i("("),_u(n,t),e&&i(")")}else i("("),yu(n,t),i(")");s&&c(),t.indentLevel++,s||i(" "),i("? "),yu(o,t),t.indentLevel--,s&&a(),s||i(" "),i(": ");const u=19===r.type;u||t.indentLevel++;yu(r,t),u||t.indentLevel--;s&&l(!0)}(e,t);break;case 20:!function(e,t){const{push:n,helper:o,indent:r,deindent:s,newline:i}=t;n(`_cache[${e.index}] || (`),e.isVNode&&(r(),n(`${o(Ml)}(-1),`),i());n(`_cache[${e.index}] = `),yu(e.value,t),e.isVNode&&(n(","),i(),n(`${o(Ml)}(1),`),i(),n(`_cache[${e.index}]`),s());n(")")}(e,t);break;case 21:vu(e.body,t,!0,!1)}}function _u(e,t){const{content:n,isStatic:o}=e;t.push(o?JSON.stringify(n):n,e)}function bu(e,t){for(let n=0;n<e.children.length;n++){const o=e.children[n];R(o)?t.push(o):yu(o,t)}}function Su(e,t){const{push:n}=t;if(8===e.type)n("["),bu(e,t),n("]");else if(e.isStatic){n(oa(e.content)?e.content:JSON.stringify(e.content),e)}else n(`[${e.content}]`,e)}const Cu=fu(/^(if|else|else-if)$/,((e,t,n)=>function(e,t,n,o){if(!("else"===t.name||t.exp&&t.exp.content.trim())){t.exp=ql("true",!1,t.exp?t.exp.loc:e.loc)}if("if"===t.name){const r=xu(e,t),s={type:9,loc:e.loc,branches:[r]};if(n.replaceNode(s),o)return o(s,r,!0)}else{const r=n.parent.children;let s=r.indexOf(e);for(;s-- >=-1;){const i=r[s];if(!i||2!==i.type||i.content.trim().length){if(i&&9===i.type){n.removeNode();const r=xu(e,t);i.branches.push(r);const s=o&&o(i,r,!1);pu(r,n),s&&s(),n.currentNode=null}break}n.removeNode(i)}}}(e,t,n,((e,t,o)=>{const r=n.parent.children;let s=r.indexOf(e),i=0;for(;s-- >=0;){const e=r[s];e&&9===e.type&&(i+=e.branches.length)}return()=>{if(o)e.codegenNode=Eu(t,i,n);else{const o=function(e){for(;;)if(19===e.type){if(19!==e.alternate.type)return e;e=e.alternate}else 20===e.type&&(e=e.value)}(e.codegenNode);o.alternate=Eu(t,i+e.branches.length-1,n)}}}))));function xu(e,t){return{type:10,loc:e.loc,condition:"else"===t.name?void 0:t.exp,children:3!==e.tagType||pa(e,"for")?[e]:e.children,userKey:fa(e,"key")}}function Eu(e,t,n){return e.condition?Xl(e.condition,Tu(e,t,n),Yl(n.helper(dl),['""',"true"])):Tu(e,t,n)}function Tu(e,t,n){const{helper:o}=n,r=Gl("key",ql(`${t}`,!1,Hl,2)),{children:s}=e,i=s[0];if(1!==s.length||1!==i.type){if(1===s.length&&11===i.type){const e=i.codegenNode;return Ca(e,r,n),e}{let t=64;return Wl(n,o(ol),zl([r]),s,t+"",void 0,void 0,!0,!1,!1,e.loc)}}{const e=i.codegenNode,t=14===(c=e).type&&c.callee===Dl?c.arguments[1].returns:c;return 13===t.type&&Ea(t,n),Ca(t,r,n),e}var c}const Nu=fu("for",((e,t,n)=>{const{helper:o,removeHelper:r}=n;return function(e,t,n,o){if(!t.exp)return;const r=Au(t.exp);if(!r)return;const{scopes:s}=n,{source:i,value:c,key:l,index:a}=r,u={type:11,loc:t.loc,source:i,valueAlias:c,keyAlias:l,objectIndexAlias:a,parseResult:r,children:ga(e)?e.children:[e]};n.replaceNode(u),s.vFor++;const p=o&&o(u);return()=>{s.vFor--,p&&p()}}(e,t,n,(t=>{const s=Yl(o(Sl),[t.source]),i=ga(e),c=pa(e,"memo"),l=fa(e,"key"),a=l&&(6===l.type?ql(l.value.content,!0):l.exp),u=l?Gl("key",a):null,p=4===t.source.type&&t.source.constType>0,f=p?64:l?128:256;return t.codegenNode=Wl(n,o(ol),void 0,s,f+"",void 0,void 0,!0,!p,!1,e.loc),()=>{let l;const{children:f}=t,d=1!==f.length||1!==f[0].type,h=va(e)?e:i&&1===e.children.length&&va(e.children[0])?e.children[0]:null;if(h?(l=h.codegenNode,i&&u&&Ca(l,u,n)):d?l=Wl(n,o(ol),u?zl([u]):void 0,e.children,"64",void 0,void 0,!0,void 0,!1):(l=f[0].codegenNode,i&&u&&Ca(l,u,n),l.isBlock!==!p&&(l.isBlock?(r(ll),r(_a(n.inSSR,l.isComponent))):r(ya(n.inSSR,l.isComponent))),l.isBlock=!p,l.isBlock?(o(ll),o(_a(n.inSSR,l.isComponent))):o(ya(n.inSSR,l.isComponent))),c){const e=Zl(Ru(t.parseResult,[ql("_cached")]));e.body={type:21,body:[Jl(["const _memo = (",c.exp,")"]),Jl(["if (_cached",...a?[" && _cached.key === ",a]:[],` && ${n.helperString(jl)}(_cached, _memo)) return _cached`]),Jl(["const _item = ",l]),ql("_item.memo = _memo"),ql("return _item")],loc:Hl},s.arguments.push(e,ql("_cache"),ql(String(n.cached++)))}else s.arguments.push(Zl(Ru(t.parseResult),l,!0))}}))}));const ku=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,wu=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,Ou=/^\(|\)$/g;function Au(e,t){const n=e.loc,o=e.content,r=o.match(ku);if(!r)return;const[,s,i]=r,c={source:Iu(n,i.trim(),o.indexOf(i,s.length)),value:void 0,key:void 0,index:void 0};let l=s.trim().replace(Ou,"").trim();const a=s.indexOf(l),u=l.match(wu);if(u){l=l.replace(wu,"").trim();const e=u[1].trim();let t;if(e&&(t=o.indexOf(e,a+l.length),c.key=Iu(n,e,t)),u[2]){const r=u[2].trim();r&&(c.index=Iu(n,r,o.indexOf(r,c.key?t+e.length:a+l.length)))}}return l&&(c.value=Iu(n,l,a)),c}function Iu(e,t,n){return ql(t,!1,la(e,n,t.length))}function Ru({value:e,key:t,index:n},o=[]){return function(e){let t=e.length;for(;t--&&!e[t];);return e.slice(0,t+1).map(((e,t)=>e||ql("_".repeat(t+1),!1)))}([e,t,n,...o])}const Pu=ql("undefined",!1),Mu=(e,t)=>{if(1===e.type&&(1===e.tagType||3===e.tagType)){const n=pa(e,"slot");if(n)return t.scopes.vSlot++,()=>{t.scopes.vSlot--}}},$u=(e,t,n)=>Zl(e,t,!1,!0,t.length?t[0].loc:n);function Lu(e,t,n=$u){t.helper(Fl);const{children:o,loc:r}=e,s=[],i=[];let c=t.scopes.vSlot>0||t.scopes.vFor>0;const l=pa(e,"slot",!0);if(l){const{arg:e,exp:t}=l;e&&!Ql(e)&&(c=!0),s.push(Gl(e||ql("default",!0),n(t,o,r)))}let a=!1,u=!1;const p=[],f=new Set;for(let m=0;m<o.length;m++){const e=o[m];let r;if(!ga(e)||!(r=pa(e,"slot",!0))){3!==e.type&&p.push(e);continue}if(l)break;a=!0;const{children:d,loc:h}=e,{arg:g=ql("default",!0),exp:v}=r;let y;Ql(g)?y=g?g.content:"default":c=!0;const _=n(v,d,h);let b,S,C;if(b=pa(e,"if"))c=!0,i.push(Xl(b.exp,Fu(g,_),Pu));else if(S=pa(e,/^else(-if)?$/,!0)){let e,t=m;for(;t--&&(e=o[t],3===e.type););if(e&&ga(e)&&pa(e,"if")){o.splice(m,1),m--;let e=i[i.length-1];for(;19===e.alternate.type;)e=e.alternate;e.alternate=S.exp?Xl(S.exp,Fu(g,_),Pu):Fu(g,_)}}else if(C=pa(e,"for")){c=!0;const e=C.parseResult||Au(C.exp);e&&i.push(Yl(t.helper(Sl),[e.source,Zl(Ru(e),Fu(g,_),!0)]))}else{if(y){if(f.has(y))continue;f.add(y),"default"===y&&(u=!0)}s.push(Gl(g,_))}}if(!l){const e=(e,o)=>{const s=n(e,o,r);return t.compatConfig&&(s.isNonScopedSlot=!0),Gl("default",s)};a?p.length&&p.some((e=>Bu(e)))&&(u||s.push(e(void 0,p))):s.push(e(void 0,o))}const d=c?2:Vu(e.children)?3:1;let h=zl(s.concat(Gl("_",ql(d+"",!1))),r);return i.length&&(h=Yl(t.helper(xl),[h,Kl(i)])),{slots:h,hasDynamicSlots:c}}function Fu(e,t){return zl([Gl("name",e),Gl("fn",t)])}function Vu(e){for(let t=0;t<e.length;t++){const n=e[t];switch(n.type){case 1:if(2===n.tagType||Vu(n.children))return!0;break;case 9:if(Vu(n.branches))return!0;break;case 10:case 11:if(Vu(n.children))return!0}}return!1}function Bu(e){return 2!==e.type&&12!==e.type||(2===e.type?!!e.content.trim():Bu(e.content))}const Du=new WeakMap,ju=(e,t)=>function(){if(1!==(e=t.currentNode).type||0!==e.tagType&&1!==e.tagType)return;const{tag:n,props:o}=e,r=1===e.tagType;let s=r?function(e,t,n=!1){let{tag:o}=e;const r=Ku(o),s=fa(e,"is");if(s)if(r||Na("COMPILER_IS_ON_ELEMENT",t)){const e=6===s.type?s.value&&ql(s.value.content,!0):s.exp;if(e)return Yl(t.helper(vl),[e])}else 6===s.type&&s.value.content.startsWith("vue:")&&(o=s.value.content.slice(4));const i=!r&&pa(e,"is");if(i&&i.exp)return Yl(t.helper(vl),[i.exp]);const c=ta(o)||t.isBuiltInComponent(o);if(c)return n||t.helper(c),c;return t.helper(gl),t.components.add(o),xa(o,"component")}(e,t):`"${n}"`;let i,c,l,a,u,p,f=0,d=M(s)&&s.callee===vl||s===rl||s===sl||!r&&("svg"===n||"foreignObject"===n);if(o.length>0){const n=Uu(e,t);i=n.props,f=n.patchFlag,u=n.dynamicPropNames;const o=n.directives;p=o&&o.length?Kl(o.map((e=>function(e,t){const n=[],o=Du.get(e);o?n.push(t.helperString(o)):(t.helper(yl),t.directives.add(e.name),n.push(xa(e.name,"directive")));const{loc:r}=e;e.exp&&n.push(e.exp);e.arg&&(e.exp||n.push("void 0"),n.push(e.arg));if(Object.keys(e.modifiers).length){e.arg||(e.exp||n.push("void 0"),n.push("void 0"));const t=ql("true",!1,r);n.push(zl(e.modifiers.map((e=>Gl(e,t))),r))}return Kl(n,e.loc)}(e,t)))):void 0,n.shouldUseBlock&&(d=!0)}if(e.children.length>0){s===il&&(d=!0,f|=1024);if(r&&s!==rl&&s!==il){const{slots:n,hasDynamicSlots:o}=Lu(e,t);c=n,o&&(f|=1024)}else if(1===e.children.length&&s!==rl){const n=e.children[0],o=n.type,r=5===o||8===o;r&&0===ou(n,t)&&(f|=1),c=r||2===o?n:e.children}else c=e.children}0!==f&&(l=String(f),u&&u.length&&(a=function(e){let t="[";for(let n=0,o=e.length;n<o;n++)t+=JSON.stringify(e[n]),n<o-1&&(t+=", ");return t+"]"}(u))),e.codegenNode=Wl(t,s,i,c,l,a,p,!!d,!1,r,e.loc)};function Uu(e,t,n=e.props,o=!1){const{tag:r,loc:s,children:i}=e,c=1===e.tagType;let l=[];const a=[],u=[],p=i.length>0;let f=!1,d=0,h=!1,m=!1,g=!1,v=!1,y=!1,_=!1;const b=[],C=({key:e,value:n})=>{if(Ql(e)){const o=e.content,r=S(o);if(c||!r||"onclick"===o.toLowerCase()||"onUpdate:modelValue"===o||D(o)||(v=!0),r&&D(o)&&(_=!0),20===n.type||(4===n.type||8===n.type)&&ou(n,t)>0)return;"ref"===o?h=!0:"class"===o?m=!0:"style"===o?g=!0:"key"===o||b.includes(o)||b.push(o),!c||"class"!==o&&"style"!==o||b.includes(o)||b.push(o)}else y=!0};for(let S=0;S<n.length;S++){const i=n[S];if(6===i.type){const{loc:e,name:n,value:o}=i;let s=!0;if("ref"===n&&(h=!0,t.scopes.vFor>0&&l.push(Gl(ql("ref_for",!0),ql("true")))),"is"===n&&(Ku(r)||o&&o.content.startsWith("vue:")||Na("COMPILER_IS_ON_ELEMENT",t)))continue;l.push(Gl(ql(n,!0,la(e,0,n.length)),ql(o?o.content:"",s,o?o.loc:e)))}else{const{name:n,arg:c,exp:d,loc:h}=i,m="bind"===n,g="on"===n;if("slot"===n)continue;if("once"===n||"memo"===n)continue;if("is"===n||m&&da(c,"is")&&(Ku(r)||Na("COMPILER_IS_ON_ELEMENT",t)))continue;if(g&&o)continue;if((m&&da(c,"key")||g&&p&&da(c,"vue:before-update"))&&(f=!0),m&&da(c,"ref")&&t.scopes.vFor>0&&l.push(Gl(ql("ref_for",!0),ql("true"))),!c&&(m||g)){if(y=!0,d)if(l.length&&(a.push(zl(Hu(l),s)),l=[]),m){if(Na("COMPILER_V_BIND_OBJECT_ORDER",t)){a.unshift(d);continue}a.push(d)}else a.push({type:14,loc:h,callee:t.helper(Al),arguments:[d]});continue}const v=t.directiveTransforms[n];if(v){const{props:n,needRuntime:r}=v(i,e,t);!o&&n.forEach(C),l.push(...n),r&&(u.push(i),P(r)&&Du.set(i,r))}else j(n)||(u.push(i),p&&(f=!0))}}let x;if(a.length?(l.length&&a.push(zl(Hu(l),s)),x=a.length>1?Yl(t.helper(Tl),a,s):a[0]):l.length&&(x=zl(Hu(l),s)),y?d|=16:(m&&!c&&(d|=2),g&&!c&&(d|=4),b.length&&(d|=8),v&&(d|=32)),f||0!==d&&32!==d||!(h||_||u.length>0)||(d|=512),!t.inSSR&&x)switch(x.type){case 15:let e=-1,n=-1,o=!1;for(let t=0;t<x.properties.length;t++){const r=x.properties[t].key;Ql(r)?"class"===r.content?e=t:"style"===r.content&&(n=t):r.isHandlerKey||(o=!0)}const r=x.properties[e],s=x.properties[n];o?x=Yl(t.helper(wl),[x]):(r&&!Ql(r.value)&&(r.value=Yl(t.helper(Nl),[r.value])),!s||Ql(s.value)||!g&&17!==s.value.type||(s.value=Yl(t.helper(kl),[s.value])));break;case 14:break;default:x=Yl(t.helper(wl),[Yl(t.helper(Ol),[x])])}return{props:x,directives:u,patchFlag:d,dynamicPropNames:b,shouldUseBlock:f}}function Hu(e){const t=new Map,n=[];for(let o=0;o<e.length;o++){const r=e[o];if(8===r.key.type||!r.key.isStatic){n.push(r);continue}const s=r.key.content,i=t.get(s);i?("style"===s||"class"===s||S(s))&&Wu(i,r):(t.set(s,r),n.push(r))}return n}function Wu(e,t){17===e.value.type?e.value.elements.push(t.value):e.value=Kl([e.value,t.value],e.loc)}function Ku(e){return"component"===e||"Component"===e}const zu=(e,t)=>{if(va(e)){const{children:n,loc:o}=e,{slotName:r,slotProps:s}=function(e,t){let n,o='"default"';const r=[];for(let s=0;s<e.props.length;s++){const t=e.props[s];6===t.type?t.value&&("name"===t.name?o=JSON.stringify(t.value.content):(t.name=W(t.name),r.push(t))):"bind"===t.name&&da(t.arg,"name")?t.exp&&(o=t.exp):("bind"===t.name&&t.arg&&Ql(t.arg)&&(t.arg.content=W(t.arg.content)),r.push(t))}if(r.length>0){const{props:o,directives:s}=Uu(e,t,r);n=o}return{slotName:o,slotProps:n}}(e,t),i=[t.prefixIdentifiers?"_ctx.$slots":"$slots",r,"{}","undefined","true"];let c=2;s&&(i[2]=s,c=3),n.length&&(i[3]=Zl([],n,!1,!1,o),c=4),t.scopeId&&!t.slotted&&(c=5),i.splice(c),e.codegenNode=Yl(t.helper(Cl),i,o)}};const Gu=/^\s*([\w$_]+|(async\s*)?\([^)]*?\))\s*=>|^\s*(async\s+)?function(?:\s+[\w$]+)?\s*\(/,qu=(e,t,n,o)=>{const{loc:r,modifiers:s,arg:i}=e;let c;if(4===i.type)if(i.isStatic){let e=i.content;e.startsWith("vue:")&&(e=`vnode-${e.slice(4)}`),c=ql(q(W(e)),!0,i.loc)}else c=Jl([`${n.helperString(Pl)}(`,i,")"]);else c=i,c.children.unshift(`${n.helperString(Pl)}(`),c.children.push(")");let l=e.exp;l&&!l.content.trim()&&(l=void 0);let a=n.cacheHandlers&&!l&&!n.inVOnce;if(l){const e=ca(l.content),t=!(e||Gu.test(l.content)),n=l.content.includes(";");(t||a&&e)&&(l=Jl([`${t?"$event":"(...args)"} => ${n?"{":"("}`,l,n?"}":")"]))}let u={props:[Gl(c,l||ql("() => {}",!1,r))]};return o&&(u=o(u)),a&&(u.props[0].value=n.cache(u.props[0].value)),u.props.forEach((e=>e.key.isHandlerKey=!0)),u},Ju=(e,t,n)=>{const{exp:o,modifiers:r,loc:s}=e,i=e.arg;return 4!==i.type?(i.children.unshift("("),i.children.push(') || ""')):i.isStatic||(i.content=`${i.content} || ""`),r.includes("camel")&&(4===i.type?i.content=i.isStatic?W(i.content):`${n.helperString(Il)}(${i.content})`:(i.children.unshift(`${n.helperString(Il)}(`),i.children.push(")"))),n.inSSR||(r.includes("prop")&&Yu(i,"."),r.includes("attr")&&Yu(i,"^")),!o||4===o.type&&!o.content.trim()?{props:[Gl(i,ql("",!0,s))]}:{props:[Gl(i,o)]}},Yu=(e,t)=>{4===e.type?e.content=e.isStatic?t+e.content:`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},Zu=(e,t)=>{if(0===e.type||1===e.type||11===e.type||10===e.type)return()=>{const n=e.children;let o,r=!1;for(let e=0;e<n.length;e++){const t=n[e];if(ha(t)){r=!0;for(let r=e+1;r<n.length;r++){const s=n[r];if(!ha(s)){o=void 0;break}o||(o=n[e]={type:8,loc:t.loc,children:[t]}),o.children.push(" + ",s),n.splice(r,1),r--}}}if(r&&(1!==n.length||0!==e.type&&(1!==e.type||0!==e.tagType||e.props.find((e=>7===e.type&&!t.directiveTransforms[e.name]))||"template"===e.tag)))for(let e=0;e<n.length;e++){const o=n[e];if(ha(o)||8===o.type){const r=[];2===o.type&&" "===o.content||r.push(o),t.ssr||0!==ou(o,t)||r.push("1"),n[e]={type:12,content:o,loc:o.loc,codegenNode:Yl(t.helper(hl),r)}}}}},Xu=new WeakSet,Qu=(e,t)=>{if(1===e.type&&pa(e,"once",!0)){if(Xu.has(e)||t.inVOnce)return;return Xu.add(e),t.inVOnce=!0,t.helper(Ml),()=>{t.inVOnce=!1;const e=t.currentNode;e.codegenNode&&(e.codegenNode=t.cache(e.codegenNode,!0))}}},ep=(e,t,n)=>{const{exp:o,arg:r}=e;if(!o)return tp();const s=o.loc.source,i=4===o.type?o.content:s;if(!i.trim()||!ca(i))return tp();const c=r||ql("modelValue",!0),l=r?Ql(r)?`onUpdate:${r.content}`:Jl(['"onUpdate:" + ',r]):"onUpdate:modelValue";let a;a=Jl([`${n.isTS?"($event: any)":"$event"} => ((`,o,") = $event)"]);const u=[Gl(c,e.exp),Gl(l,a)];if(e.modifiers.length&&1===t.tagType){const t=e.modifiers.map((e=>(oa(e)?e:JSON.stringify(e))+": true")).join(", "),n=r?Ql(r)?`${r.content}Modifiers`:Jl([r,' + "Modifiers"']):"modelModifiers";u.push(Gl(n,ql(`{ ${t} }`,!1,e.loc,2)))}return tp(u)};function tp(e=[]){return{props:e}}const np=/[\w).+\-_$\]]/,op=(e,t)=>{Na("COMPILER_FILTER",t)&&(5===e.type&&rp(e.content,t),1===e.type&&e.props.forEach((e=>{7===e.type&&"for"!==e.name&&e.exp&&rp(e.exp,t)})))};function rp(e,t){if(4===e.type)sp(e,t);else for(let n=0;n<e.children.length;n++){const o=e.children[n];"object"==typeof o&&(4===o.type?sp(o,t):8===o.type?rp(e,t):5===o.type&&rp(o.content,t))}}function sp(e,t){const n=e.content;let o,r,s,i,c=!1,l=!1,a=!1,u=!1,p=0,f=0,d=0,h=0,m=[];for(s=0;s<n.length;s++)if(r=o,o=n.charCodeAt(s),c)39===o&&92!==r&&(c=!1);else if(l)34===o&&92!==r&&(l=!1);else if(a)96===o&&92!==r&&(a=!1);else if(u)47===o&&92!==r&&(u=!1);else if(124!==o||124===n.charCodeAt(s+1)||124===n.charCodeAt(s-1)||p||f||d){switch(o){case 34:l=!0;break;case 39:c=!0;break;case 96:a=!0;break;case 40:d++;break;case 41:d--;break;case 91:f++;break;case 93:f--;break;case 123:p++;break;case 125:p--}if(47===o){let e,t=s-1;for(;t>=0&&(e=n.charAt(t)," "===e);t--);e&&np.test(e)||(u=!0)}}else void 0===i?(h=s+1,i=n.slice(0,s).trim()):g();function g(){m.push(n.slice(h,s).trim()),h=s+1}if(void 0===i?i=n.slice(0,s).trim():0!==h&&g(),m.length){for(s=0;s<m.length;s++)i=ip(i,m[s],t);e.content=i}}function ip(e,t,n){n.helper(_l);const o=t.indexOf("(");if(o<0)return n.filters.add(t),`${xa(t,"filter")}(${e})`;{const r=t.slice(0,o),s=t.slice(o+1);return n.filters.add(r),`${xa(r,"filter")}(${e}${")"!==s?","+s:s}`}}const cp=new WeakSet,lp=(e,t)=>{if(1===e.type){const n=pa(e,"memo");if(!n||cp.has(e))return;return cp.add(e),()=>{const o=e.codegenNode||t.currentNode.codegenNode;o&&13===o.type&&(1!==e.tagType&&Ea(o,t),e.codegenNode=Yl(t.helper(Dl),[n.exp,Zl(void 0,o),"_cache",String(t.cached++)]))}}};function ap(e,t={}){const n=t.onError||el,o="module"===t.mode;!0===t.prefixIdentifiers?n(nl(46)):o&&n(nl(47));t.cacheHandlers&&n(nl(48)),t.scopeId&&!o&&n(nl(49));const r=R(e)?Ia(e,t):e,[s,i]=[[Qu,Cu,lp,Nu,op,zu,ju,Mu,Zu],{on:qu,bind:Ju,model:ep}];return uu(r,x({},t,{prefixIdentifiers:false,nodeTransforms:[...s,...t.nodeTransforms||[]],directiveTransforms:x({},i,t.directiveTransforms||{})})),hu(r,x({},t,{prefixIdentifiers:false}))}const up=Symbol(""),pp=Symbol(""),fp=Symbol(""),dp=Symbol(""),hp=Symbol(""),mp=Symbol(""),gp=Symbol(""),vp=Symbol(""),yp=Symbol(""),_p=Symbol("");var bp;let Sp;bp={[up]:"vModelRadio",[pp]:"vModelCheckbox",[fp]:"vModelText",[dp]:"vModelSelect",[hp]:"vModelDynamic",[mp]:"withModifiers",[gp]:"withKeys",[vp]:"vShow",[yp]:"Transition",[_p]:"TransitionGroup"},Object.getOwnPropertySymbols(bp).forEach((e=>{Ul[e]=bp[e]}));const Cp=e("style,iframe,script,noscript",!0),xp={isVoidTag:p,isNativeTag:e=>a(e)||u(e),isPreTag:e=>"pre"===e,decodeEntities:function(e,t=!1){return Sp||(Sp=document.createElement("div")),t?(Sp.innerHTML=`<div foo="${e.replace(/"/g,"&quot;")}">`,Sp.children[0].getAttribute("foo")):(Sp.innerHTML=e,Sp.textContent)},isBuiltInComponent:e=>ea(e,"Transition")?yp:ea(e,"TransitionGroup")?_p:void 0,getNamespace(e,t){let n=t?t.ns:0;if(t&&2===n)if("annotation-xml"===t.tag){if("svg"===e)return 1;t.props.some((e=>6===e.type&&"encoding"===e.name&&null!=e.value&&("text/html"===e.value.content||"application/xhtml+xml"===e.value.content)))&&(n=0)}else/^m(?:[ions]|text)$/.test(t.tag)&&"mglyph"!==e&&"malignmark"!==e&&(n=0);else t&&1===n&&("foreignObject"!==t.tag&&"desc"!==t.tag&&"title"!==t.tag||(n=0));if(0===n){if("svg"===e)return 1;if("math"===e)return 2}return n},getTextMode({tag:e,ns:t}){if(0===t){if("textarea"===e||"title"===e)return 1;if(Cp(e))return 2}return 0}},Ep=(e,t)=>{const n=c(e);return ql(JSON.stringify(n),!1,t,3)};const Tp=e("passive,once,capture"),Np=e("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),kp=e("left,right"),wp=e("onkeyup,onkeydown,onkeypress",!0),Op=(e,t)=>Ql(e)&&"onclick"===e.content.toLowerCase()?ql(t,!0):4!==e.type?Jl(["(",e,`) === "onClick" ? "${t}" : (`,e,")"]):e,Ap=(e,t)=>{1!==e.type||0!==e.tagType||"script"!==e.tag&&"style"!==e.tag||t.removeNode()},Ip=[e=>{1===e.type&&e.props.forEach(((t,n)=>{6===t.type&&"style"===t.name&&t.value&&(e.props[n]={type:7,name:"bind",arg:ql("style",!0,t.loc),exp:Ep(t.value.content,t.loc),modifiers:[],loc:t.loc})}))}],Rp={cloak:()=>({props:[]}),html:(e,t,n)=>{const{exp:o,loc:r}=e;return t.children.length&&(t.children.length=0),{props:[Gl(ql("innerHTML",!0,r),o||ql("",!0))]}},text:(e,t,n)=>{const{exp:o,loc:r}=e;return t.children.length&&(t.children.length=0),{props:[Gl(ql("textContent",!0),o?Yl(n.helperString(El),[o],r):ql("",!0))]}},model:(e,t,n)=>{const o=ep(e,t,n);if(!o.props.length||1===t.tagType)return o;const{tag:r}=t,s=n.isCustomElement(r);if("input"===r||"textarea"===r||"select"===r||s){let e=fp,i=!1;if("input"===r||s){const n=fa(t,"type");if(n){if(7===n.type)e=hp;else if(n.value)switch(n.value.content){case"radio":e=up;break;case"checkbox":e=pp;break;case"file":i=!0}}else(function(e){return e.props.some((e=>!(7!==e.type||"bind"!==e.name||e.arg&&4===e.arg.type&&e.arg.isStatic)))})(t)&&(e=hp)}else"select"===r&&(e=dp);i||(o.needRuntime=n.helper(e))}return o.props=o.props.filter((e=>!(4===e.key.type&&"modelValue"===e.key.content))),o},on:(e,t,n)=>qu(e,0,n,(t=>{const{modifiers:o}=e;if(!o.length)return t;let{key:r,value:s}=t.props[0];const{keyModifiers:i,nonKeyModifiers:c,eventOptionModifiers:l}=((e,t,n,o)=>{const r=[],s=[],i=[];for(let c=0;c<t.length;c++){const o=t[c];"native"===o&&ka("COMPILER_V_ON_NATIVE",n)||Tp(o)?i.push(o):kp(o)?Ql(e)?wp(e.content)?r.push(o):s.push(o):(r.push(o),s.push(o)):Np(o)?s.push(o):r.push(o)}return{keyModifiers:r,nonKeyModifiers:s,eventOptionModifiers:i}})(r,o,n);if(c.includes("right")&&(r=Op(r,"onContextmenu")),c.includes("middle")&&(r=Op(r,"onMouseup")),c.length&&(s=Yl(n.helper(mp),[s,JSON.stringify(c)])),!i.length||Ql(r)&&!wp(r.content)||(s=Yl(n.helper(gp),[s,JSON.stringify(i)])),l.length){const e=l.map(G).join("");r=Ql(r)?ql(`${r.content}${e}`,!0):Jl(["(",r,`) + "${e}"`])}return{props:[Gl(r,s)]}})),show:(e,t,n)=>({props:[],needRuntime:n.helper(vp)})};const Pp=Object.create(null);function Mp(e,t){if(!R(e)){if(!e.nodeType)return y;e=e.innerHTML}const n=e,o=Pp[n];if(o)return o;if("#"===e[0]){const t=document.querySelector(e);e=t?t.innerHTML:""}const{code:r}=function(e,t={}){return ap(e,x({},xp,t,{nodeTransforms:[Ap,...Ip,...t.nodeTransforms||[]],directiveTransforms:x({},Rp,t.directiveTransforms||{}),transformHoist:null}))}(e,x({hoistStatic:!0,whitespace:"preserve",onError:void 0,onWarn:y},t)),s=new Function(r)();return s._rc=!0,Pp[n]=s}di(Mp);const $p=function(){const e=Oi.createCompatVue(Yc,Qc);return x(e,Xc),e}();return $p.compile=Mp,$p}();