提交 7282d3d1 编写于 作者: jlj05024111@163.com's avatar jlj05024111@163.com

feat: 新增考勤插件包sy-checkin

上级 5a1a4cf2
var L = Object.defineProperty;
var D = (t, r, e) => r in t ? L(t, r, { enumerable: !0, configurable: !0, writable: !0, value: e }) : t[r] = e;
var h = (t, r, e) => (D(t, typeof r != "symbol" ? r + "" : r, e), e);
import { PluginStaticResource as g } from "@ibiz-template/runtime";
import { defineComponent as y, ref as O, watch as I, computed as p, getCurrentInstance as A, h as d } from "vue";
import { getCheckboxProps as P, getEditorEmits as k, useNamespace as C, useControlController as F } from "@ibiz-template/vue-util";
import { isNil as j } from "ramda";
import { CheckBoxListEditorController as w, SearchFormController as N, FormNotifyState as T } from "@ibiz-template/controller";
import { SearchFormModel as M } from "@ibiz-template/model";
const R = new g(import.meta.url);
const B = y({
name: "CustomCheckboxList",
props: P(),
emits: k(),
setup(t, {
emit: r
}) {
const e = C("checkbox"), s = t.controller, n = s.model.codeList, l = O([]);
I(() => t.data, (o) => {
s.loadCodeList(o).then((a) => {
l.value = a;
});
}, {
immediate: !0,
deep: !0
});
const f = p(() => n && n.orMode ? n.orMode.toLowerCase() : "str");
let b = ",";
n && n.valueSeparator && (b = n.valueSeparator);
const m = p({
get() {
if (!j(t.value)) {
if (Object.is(f.value, "num") && l) {
const o = [], a = typeof t.value == "string" ? parseInt(t.value, 10) : t.value;
return l.value.forEach((i) => {
(a & i.value) === i.value && o.push(i.value);
}), o;
}
if (Object.is(f.value, "str")) {
const o = t.value;
if (o !== "") {
if (n) {
const a = o.split(b);
if (n.codeItemValueNumber)
for (let i = 0, c = a.length; i < c; i++)
a[i] = Number(a[i]);
return a;
}
return o.split(",");
}
}
}
return [];
},
set(o) {
let a = null;
if (Object.is(f.value, "num")) {
let i = 0;
o.forEach((c) => {
const v = typeof c == "string" ? parseInt(c, 10) : c;
i |= v;
}), a = i;
} else if (Object.is(f.value, "str")) {
const i = [];
l.value.length > 0 && (l.value.forEach((c) => {
o.findIndex((E) => Object.is(c.value, E)) !== -1 && i.push(c.value);
}), a = i.join(b));
}
r("change", a);
}
}), S = (o) => {
m.value = o;
}, x = p(() => {
const o = Array.isArray(m.value) ? m.value : [m.value];
return l.value.filter((a) => o.includes(a.value)).map((a) => a.text).join("、");
});
return {
ns: e,
items: l,
selectArray: m,
valueText: x,
onSelectArrayChange: S,
c: s
};
},
render(t) {
return t("div", {
class: [this.ns.b(), this.disabled ? this.ns.m("disabled") : "", this.readonly ? this.ns.m("readonly") : ""]
}, [[this.readonly && this.valueText, !this.readonly && t("ICheckboxGroup", {
props: {
...this.c.customProps,
value: this.selectArray
},
on: {
"on-change": this.onSelectArrayChange
}
}, [this.items.map((r, e) => t("i-checkbox", {
key: e,
attrs: {
label: r.value,
disabled: this.disabled || this.c.disabledList.includes(r.value)
}
}, [t("span", {
class: this.ns.e("text")
}, [r.text])]))])]]);
}
});
class _ extends w {
constructor() {
super(...arguments);
/**
* 默认禁用项
*
* @type {string[]}
* @memberof CustomCheckboxListController
*/
h(this, "disabledList", []);
}
async onInit() {
var e, s;
if (await super.onInit(), (e = this.editorParams) != null && e.DEFAULTDISABLEDLIST)
try {
this.disabledList = JSON.parse((s = this.editorParams) == null ? void 0 : s.DEFAULTDISABLEDLIST);
} catch (u) {
this.disabledList = [];
}
}
}
class U extends N {
constructor() {
super(...arguments);
/**
* 指定过滤参数
*
* @type {IData}
* @memberof SearchFormDynamicController
*/
h(this, "filterParams", []);
}
async onInit() {
await super.onInit();
const { FILTERPARAMS: e } = this.controlParams;
if (e)
try {
this.filterParams = JSON.parse(e);
} catch (s) {
this.filterParams = [];
}
}
/**
* 获取搜索参数
*
* @return {*} {IParams}
* @memberof SearchFormDynamicController
*/
getParams() {
const e = { ...this.data.getRequestData() };
if (this.filterParams) {
const s = {};
return this.filterParams.forEach((u) => {
Object.assign(s, { [u]: e[u] });
}), s;
}
return e;
}
/**
* 重置搜索表单
*
* @author lxm
* @date 2022-09-22 19:09:07
*/
async reset() {
const e = await this.service.getDraft(this.context, this.params);
this.filterParams.forEach((s) => {
Object.assign(this.data, { [s]: e.data[s] });
}), this.isLoaded = !0, Object.values(this.details).forEach((s) => {
this.filterParams.includes(s.model.codeName) && s.formStateNotify(T.DRAFT);
}), this.force(), await this.nerve.self.evt.asyncEmit("search");
}
}
const q = y({
name: "SearchFormDynamic",
props: {
controller: {
type: Object,
required: !0
},
modelData: {
type: M,
required: !0
},
context: {
type: Object,
required: !0
},
params: {
type: Object,
default: () => ({})
}
},
setup(t) {
const {
proxy: r
} = A(), e = F(r, () => new U(t.modelData, t.context, t.params)), s = C("search-form"), u = t.modelData.source.searchButtonStyle;
return {
c: e,
ns: s,
btntype: u
};
},
render() {
if (this.c.complete)
return d("div", {
class: [this.ns.b(), this.ns.m(this.btntype).toLowerCase()]
}, [d("form-control", {
attrs: {
"model-data": this.modelData,
context: this.context,
controller: this.c
},
nativeOn: {
keyup: (t) => this.c.onKeyUp(t)
}
}), this.c.model.source.searchButtonStyle === "NONE" ? null : d("div", {
class: this.ns.b("buttons")
}, [d("i-button", {
class: this.ns.be("buttons", "search"),
on: {
click: () => this.c.onSearchButtonClick()
}
}, ["查询"]), d("i-button", {
class: this.ns.be("buttons", "reset"),
on: {
click: () => this.c.reset()
}
}, ["重置"])])]);
}
});
class z {
constructor() {
h(this, "formEditor", "CustomCheckboxList");
h(this, "gridEditor", "CustomCheckboxList");
}
async createController(r, e) {
const s = new _(r, e);
return await s.init(), s;
}
}
class V {
constructor() {
h(this, "component", "SearchFormDynamic");
}
}
const W = {
mateUrl: import.meta.url,
install(t) {
R.loadStyle(["/style.css"]), t.component("CustomCheckboxList", B), ibiz.register.editor.register(
"EDITOR_CUSTOMSTYLE_CUSTOM_CHECKBOX_LIST",
new z()
), t.component("SearchFormDynamic", q), ibiz.register.control.register(
"SEARCHFORM_RENDER_DYNAMIC",
new V()
);
}
};
export {
W as default
};
!function(){function t(e){return t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},t(e)}function e(){/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */var t,n,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.toStringTag||"@@toStringTag";function u(e,o,i,a){var u=o&&o.prototype instanceof s?o:s,l=Object.create(u.prototype);return r(l,"_invoke",function(e,r,o){var i,a,u,s=0,l=o||[],f=!1,p={p:0,n:0,v:t,a:h,f:h.bind(t,4),d:function(e,r){return i=e,a=0,u=t,p.n=r,c}};function h(e,r){for(a=e,u=r,n=0;!f&&s&&!o&&n<l.length;n++){var o,i=l[n],h=p.p,v=i[2];e>3?(o=v===r)&&(u=i[(a=i[4])?5:(a=3,3)],i[4]=i[5]=t):i[0]<=h&&((o=e<2&&h<i[1])?(a=0,p.v=r,p.n=i[1]):h<v&&(o=e<3||i[0]>r||r>v)&&(i[4]=e,i[5]=r,p.n=v,a=0))}if(o||e>1)return c;throw f=!0,r}return function(o,l,v){if(s>1)throw TypeError("Generator is already running");for(f&&1===l&&h(l,v),a=l,u=v;(n=a<2?t:u)||!f;){i||(a?a<3?(a>1&&(p.n=-1),h(a,u)):p.n=u:p.v=u);try{if(s=2,i){if(a||(o="next"),n=i[o]){if(!(n=n.call(i,u)))throw TypeError("iterator result is not an object");if(!n.done)return n;u=n.value,a<2&&(a=0)}else 1===a&&(n=i.return)&&n.call(i),a<2&&(u=TypeError("The iterator does not provide a '"+o+"' method"),a=1);i=t}else if((n=(f=p.n<0)?u:e.call(r,p))!==c)break}catch(n){i=t,a=1,u=n}finally{s=1}}return{value:n,done:f}}}(e,i,a),!0),l}var c={};function s(){}function l(){}function f(){}n=Object.getPrototypeOf;var p=[][i]?n(n([][i]())):(r(n={},i,(function(){return this})),n),h=f.prototype=s.prototype=Object.create(p);function v(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,f):(t.__proto__=f,r(t,a,"GeneratorFunction")),t.prototype=Object.create(h),t}return l.prototype=f,r(h,"constructor",f),r(f,"constructor",l),l.displayName="GeneratorFunction",r(f,a,"GeneratorFunction"),r(h),r(h,a,"Generator"),r(h,i,(function(){return this})),r(h,"toString",(function(){return"[object Generator]"})),(e=function(){return{w:u,m:v}})()}function r(t,e,n,o){var i=Object.defineProperty;try{i({},"",{})}catch(t){i=0}r=function(t,e,n,o){if(e)i?i(t,e,{value:n,enumerable:!o,configurable:!o,writable:!o}):t[e]=n;else{function a(e,n){r(t,e,(function(t){return this._invoke(e,n,t)}))}a("next",0),a("throw",1),a("return",2)}},r(t,e,n,o)}function n(t,e,r,n,o,i,a){try{var u=t[i](a),c=u.value}catch(t){return void r(t)}u.done?e(c):Promise.resolve(c).then(n,o)}function o(t){return function(){var e=this,r=arguments;return new Promise((function(o,i){var a=t.apply(e,r);function u(t){n(a,o,i,u,c,"next",t)}function c(t){n(a,o,i,u,c,"throw",t)}u(void 0)}))}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,O(n.key),n)}}function u(t,e,r){return e&&a(t.prototype,e),r&&a(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}function c(e,r,n){return r=h(r),function(e,r){if(r&&("object"==t(r)||"function"==typeof r))return r;if(void 0!==r)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(e)}(e,s()?Reflect.construct(r,n||[],h(e).constructor):r.apply(e,n))}function s(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(s=function(){return!!t})()}function l(t,e,r,n){var o=f(h(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function f(){return f="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=p(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},f.apply(null,arguments)}function p(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=h(t)););return t}function h(t){return h=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},h(t)}function v(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&y(t,e)}function y(t,e){return y=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},y(t,e)}function b(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function m(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?b(Object(r),!0).forEach((function(e){d(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):b(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function d(t,e,r){return(e=O(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function O(e){var r=function(e,r){if("object"!=t(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var o=n.call(e,r||"default");if("object"!=t(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===r?String:Number)(e)}(e,"string");return"symbol"==t(r)?r:r+""}System.register(["@ibiz-template/runtime","vue","@ibiz-template/vue-util","ramda","@ibiz-template/controller","@ibiz-template/model"],(function(t,r){"use strict";var n,a,s,f,p,h,y,b,O,g,w,j,S,P,E,C;return{setters:[function(t){n=t.PluginStaticResource},function(t){a=t.defineComponent,s=t.ref,f=t.watch,p=t.computed,h=t.getCurrentInstance,y=t.h},function(t){b=t.getCheckboxProps,O=t.getEditorEmits,g=t.useNamespace,w=t.useControlController},function(t){j=t.isNil},function(t){S=t.CheckBoxListEditorController,P=t.SearchFormController,E=t.FormNotifyState},function(t){C=t.SearchFormModel}],execute:function(){var x=new n(r.meta.url),D=a({name:"CustomCheckboxList",props:b(),emits:O(),setup:function(t,e){var r=e.emit,n=g("checkbox"),o=t.controller,i=o.model.codeList,a=s([]);f((function(){return t.data}),(function(t){o.loadCodeList(t).then((function(t){a.value=t}))}),{immediate:!0,deep:!0});var u=p((function(){return i&&i.orMode?i.orMode.toLowerCase():"str"})),c=",";i&&i.valueSeparator&&(c=i.valueSeparator);var l=p({get:function(){if(!j(t.value)){if(Object.is(u.value,"num")&&a){var e=[],r="string"==typeof t.value?parseInt(t.value,10):t.value;return a.value.forEach((function(t){(r&t.value)===t.value&&e.push(t.value)})),e}if(Object.is(u.value,"str")){var n=t.value;if(""!==n){if(i){var o=n.split(c);if(i.codeItemValueNumber)for(var s=0,l=o.length;s<l;s++)o[s]=Number(o[s]);return o}return n.split(",")}}}return[]},set:function(t){var e=null;if(Object.is(u.value,"num")){var n=0;t.forEach((function(t){var e="string"==typeof t?parseInt(t,10):t;n|=e})),e=n}else if(Object.is(u.value,"str")){var o=[];a.value.length>0&&(a.value.forEach((function(e){-1!==t.findIndex((function(t){return Object.is(e.value,t)}))&&o.push(e.value)})),e=o.join(c))}r("change",e)}}),h=p((function(){var t=Array.isArray(l.value)?l.value:[l.value];return a.value.filter((function(e){return t.includes(e.value)})).map((function(t){return t.text})).join("、")}));return{ns:n,items:a,selectArray:l,valueText:h,onSelectArrayChange:function(t){l.value=t},c:o}},render:function(t){var e=this;return t("div",{class:[this.ns.b(),this.disabled?this.ns.m("disabled"):"",this.readonly?this.ns.m("readonly"):""]},[[this.readonly&&this.valueText,!this.readonly&&t("ICheckboxGroup",{props:m(m({},this.c.customProps),{},{value:this.selectArray}),on:{"on-change":this.onSelectArrayChange}},[this.items.map((function(r,n){return t("i-checkbox",{key:n,attrs:{label:r.value,disabled:e.disabled||e.c.disabledList.includes(r.value)}},[t("span",{class:e.ns.e("text")},[r.text])])}))])]])}}),k=function(t){function r(){var t;i(this,r);for(var e=arguments.length,n=new Array(e),o=0;o<e;o++)n[o]=arguments[o];return d(t=c(this,r,[].concat(n)),"disabledList",[]),t}return v(r,t),u(r,[{key:"onInit",value:(n=o(e().m((function t(){var n,o;return e().w((function(t){for(;;)switch(t.n){case 0:return t.n=1,l(r,"onInit",this,3)([]);case 1:if(null!==(n=this.editorParams)&&void 0!==n&&n.DEFAULTDISABLEDLIST)try{this.disabledList=JSON.parse(null===(o=this.editorParams)||void 0===o?void 0:o.DEFAULTDISABLEDLIST)}catch(e){this.disabledList=[]}case 2:return t.a(2)}}),t,this)}))),function(){return n.apply(this,arguments)})}]);var n}(S),L=function(t){function r(){var t;i(this,r);for(var e=arguments.length,n=new Array(e),o=0;o<e;o++)n[o]=arguments[o];return d(t=c(this,r,[].concat(n)),"filterParams",[]),t}return v(r,t),u(r,[{key:"onInit",value:(a=o(e().m((function t(){var n;return e().w((function(t){for(;;)switch(t.n){case 0:return t.n=1,l(r,"onInit",this,3)([]);case 1:if(n=this.controlParams.FILTERPARAMS)try{this.filterParams=JSON.parse(n)}catch(e){this.filterParams=[]}case 2:return t.a(2)}}),t,this)}))),function(){return a.apply(this,arguments)})},{key:"getParams",value:function(){var t=m({},this.data.getRequestData());if(this.filterParams){var e={};return this.filterParams.forEach((function(r){Object.assign(e,d({},r,t[r]))})),e}return t}},{key:"reset",value:(n=o(e().m((function t(){var r,n=this;return e().w((function(t){for(;;)switch(t.n){case 0:return t.n=1,this.service.getDraft(this.context,this.params);case 1:return r=t.v,this.filterParams.forEach((function(t){Object.assign(n.data,d({},t,r.data[t]))})),this.isLoaded=!0,Object.values(this.details).forEach((function(t){n.filterParams.includes(t.model.codeName)&&t.formStateNotify(E.DRAFT)})),this.force(),t.n=2,this.nerve.self.evt.asyncEmit("search");case 2:return t.a(2)}}),t,this)}))),function(){return n.apply(this,arguments)})}]);var n,a}(P),T=a({name:"SearchFormDynamic",props:{controller:{type:Object,required:!0},modelData:{type:C,required:!0},context:{type:Object,required:!0},params:{type:Object,default:function(){return{}}}},setup:function(t){var e=h().proxy;return{c:w(e,(function(){return new L(t.modelData,t.context,t.params)})),ns:g("search-form"),btntype:t.modelData.source.searchButtonStyle}},render:function(){var t=this;if(this.c.complete)return y("div",{class:[this.ns.b(),this.ns.m(this.btntype).toLowerCase()]},[y("form-control",{attrs:{"model-data":this.modelData,context:this.context,controller:this.c},nativeOn:{keyup:function(e){return t.c.onKeyUp(e)}}}),"NONE"===this.c.model.source.searchButtonStyle?null:y("div",{class:this.ns.b("buttons")},[y("i-button",{class:this.ns.be("buttons","search"),on:{click:function(){return t.c.onSearchButtonClick()}}},["查询"]),y("i-button",{class:this.ns.be("buttons","reset"),on:{click:function(){return t.c.reset()}}},["重置"])])])}}),_=function(){return u((function t(){i(this,t),d(this,"formEditor","CustomCheckboxList"),d(this,"gridEditor","CustomCheckboxList")}),[{key:"createController",value:(t=o(e().m((function t(r,n){var o;return e().w((function(t){for(;;)switch(t.n){case 0:return o=new k(r,n),t.n=1,o.init();case 1:return t.a(2,o)}}),t)}))),function(e,r){return t.apply(this,arguments)})}]);var t}(),I=u((function t(){i(this,t),d(this,"component","SearchFormDynamic")}));t("default",{mateUrl:r.meta.url,install:function(t){x.loadStyle(["/style.css"]),t.component("CustomCheckboxList",D),ibiz.register.editor.register("EDITOR_CUSTOMSTYLE_CUSTOM_CHECKBOX_LIST",new _),t.component("SearchFormDynamic",T),ibiz.register.control.register("SEARCHFORM_RENDER_DYNAMIC",new I)}})}}}))}();
!function(){"use strict";var t="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},r=function(t){return t&&t.Math===Math&&t},e=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof t&&t)||r("object"==typeof t&&t)||function(){return this}()||Function("return this")(),n={},o=function(t){try{return!!t()}catch(r){return!0}},i=!o((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]})),u=!o((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")})),c=u,a=Function.prototype.call,f=c?a.bind(a):function(){return a.apply(a,arguments)},s={},l={}.propertyIsEnumerable,h=Object.getOwnPropertyDescriptor,p=h&&!l.call({1:2},1);s.f=p?function(t){var r=h(this,t);return!!r&&r.enumerable}:l;var v,d,y=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}},g=u,m=Function.prototype,b=m.call,w=g&&m.bind.bind(b,b),O=g?w:function(t){return function(){return b.apply(t,arguments)}},S=O,E=S({}.toString),x=S("".slice),j=function(t){return x(E(t),8,-1)},I=o,T=j,P=Object,R=O("".split),A=I((function(){return!P("z").propertyIsEnumerable(0)}))?function(t){return"String"===T(t)?R(t,""):P(t)}:P,k=function(t){return null==t},N=k,C=TypeError,L=function(t){if(N(t))throw new C("Can't call method on "+t);return t},F=A,_=L,D=function(t){return F(_(t))},M="object"==typeof document&&document.all,U=void 0===M&&void 0!==M?function(t){return"function"==typeof t||t===M}:function(t){return"function"==typeof t},B=U,G=function(t){return"object"==typeof t?null!==t:B(t)},W=e,$=U,V=function(t){return $(t)?t:void 0},H=function(t,r){return arguments.length<2?V(W[t]):W[t]&&W[t][r]},z=O({}.isPrototypeOf),J=e.navigator,Y=J&&J.userAgent,q=Y?String(Y):"",K=e,X=q,Q=K.process,Z=K.Deno,tt=Q&&Q.versions||Z&&Z.version,rt=tt&&tt.v8;rt&&(d=(v=rt.split("."))[0]>0&&v[0]<4?1:+(v[0]+v[1])),!d&&X&&(!(v=X.match(/Edge\/(\d+)/))||v[1]>=74)&&(v=X.match(/Chrome\/(\d+)/))&&(d=+v[1]);var et=d,nt=et,ot=o,it=e.String,ut=!!Object.getOwnPropertySymbols&&!ot((function(){var t=Symbol("symbol detection");return!it(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&nt&&nt<41})),ct=ut&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,at=H,ft=U,st=z,lt=Object,ht=ct?function(t){return"symbol"==typeof t}:function(t){var r=at("Symbol");return ft(r)&&st(r.prototype,lt(t))},pt=String,vt=function(t){try{return pt(t)}catch(r){return"Object"}},dt=U,yt=vt,gt=TypeError,mt=function(t){if(dt(t))return t;throw new gt(yt(t)+" is not a function")},bt=mt,wt=k,Ot=function(t,r){var e=t[r];return wt(e)?void 0:bt(e)},St=f,Et=U,xt=G,jt=TypeError,It=function(t,r){var e,n;if("string"===r&&Et(e=t.toString)&&!xt(n=St(e,t)))return n;if(Et(e=t.valueOf)&&!xt(n=St(e,t)))return n;if("string"!==r&&Et(e=t.toString)&&!xt(n=St(e,t)))return n;throw new jt("Can't convert object to primitive value")},Tt={},Pt={get exports(){return Tt},set exports(t){Tt=t}},Rt=e,At=Object.defineProperty,kt=function(t,r){try{At(Rt,t,{value:r,configurable:!0,writable:!0})}catch(e){Rt[t]=r}return r},Nt=e,Ct=kt,Lt="__core-js_shared__",Ft=Pt.exports=Nt[Lt]||Ct(Lt,{});(Ft.versions||(Ft.versions=[])).push({version:"3.43.0",mode:"global",copyright:"© 2014-2025 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.43.0/LICENSE",source:"https://github.com/zloirock/core-js"});var _t=Tt,Dt=function(t,r){return _t[t]||(_t[t]=r||{})},Mt=L,Ut=Object,Bt=function(t){return Ut(Mt(t))},Gt=Bt,Wt=O({}.hasOwnProperty),$t=Object.hasOwn||function(t,r){return Wt(Gt(t),r)},Vt=O,Ht=0,zt=Math.random(),Jt=Vt(1.1.toString),Yt=function(t){return"Symbol("+(void 0===t?"":t)+")_"+Jt(++Ht+zt,36)},qt=Dt,Kt=$t,Xt=Yt,Qt=ut,Zt=ct,tr=e.Symbol,rr=qt("wks"),er=Zt?tr.for||tr:tr&&tr.withoutSetter||Xt,nr=function(t){return Kt(rr,t)||(rr[t]=Qt&&Kt(tr,t)?tr[t]:er("Symbol."+t)),rr[t]},or=f,ir=G,ur=ht,cr=Ot,ar=It,fr=TypeError,sr=nr("toPrimitive"),lr=function(t,r){if(!ir(t)||ur(t))return t;var e,n=cr(t,sr);if(n){if(void 0===r&&(r="default"),e=or(n,t,r),!ir(e)||ur(e))return e;throw new fr("Can't convert object to primitive value")}return void 0===r&&(r="number"),ar(t,r)},hr=lr,pr=ht,vr=function(t){var r=hr(t,"string");return pr(r)?r:r+""},dr=G,yr=e.document,gr=dr(yr)&&dr(yr.createElement),mr=function(t){return gr?yr.createElement(t):{}},br=mr,wr=!i&&!o((function(){return 7!==Object.defineProperty(br("div"),"a",{get:function(){return 7}}).a})),Or=i,Sr=f,Er=s,xr=y,jr=D,Ir=vr,Tr=$t,Pr=wr,Rr=Object.getOwnPropertyDescriptor;n.f=Or?Rr:function(t,r){if(t=jr(t),r=Ir(r),Pr)try{return Rr(t,r)}catch(e){}if(Tr(t,r))return xr(!Sr(Er.f,t,r),t[r])};var Ar={},kr=i&&o((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype})),Nr=G,Cr=String,Lr=TypeError,Fr=function(t){if(Nr(t))return t;throw new Lr(Cr(t)+" is not an object")},_r=i,Dr=wr,Mr=kr,Ur=Fr,Br=vr,Gr=TypeError,Wr=Object.defineProperty,$r=Object.getOwnPropertyDescriptor,Vr="enumerable",Hr="configurable",zr="writable";Ar.f=_r?Mr?function(t,r,e){if(Ur(t),r=Br(r),Ur(e),"function"==typeof t&&"prototype"===r&&"value"in e&&zr in e&&!e.writable){var n=$r(t,r);n&&n.writable&&(t[r]=e.value,e={configurable:Hr in e?e.configurable:n.configurable,enumerable:Vr in e?e.enumerable:n.enumerable,writable:!1})}return Wr(t,r,e)}:Wr:function(t,r,e){if(Ur(t),r=Br(r),Ur(e),Dr)try{return Wr(t,r,e)}catch(n){}if("get"in e||"set"in e)throw new Gr("Accessors not supported");return"value"in e&&(t[r]=e.value),t};var Jr=Ar,Yr=y,qr=i?function(t,r,e){return Jr.f(t,r,Yr(1,e))}:function(t,r,e){return t[r]=e,t},Kr={},Xr={get exports(){return Kr},set exports(t){Kr=t}},Qr=i,Zr=$t,te=Function.prototype,re=Qr&&Object.getOwnPropertyDescriptor,ee=Zr(te,"name"),ne={EXISTS:ee,PROPER:ee&&"something"===function(){}.name,CONFIGURABLE:ee&&(!Qr||Qr&&re(te,"name").configurable)},oe=U,ie=Tt,ue=O(Function.toString);oe(ie.inspectSource)||(ie.inspectSource=function(t){return ue(t)});var ce,ae,fe,se=ie.inspectSource,le=U,he=e.WeakMap,pe=le(he)&&/native code/.test(String(he)),ve=Yt,de=Dt("keys"),ye=function(t){return de[t]||(de[t]=ve(t))},ge={},me=pe,be=e,we=G,Oe=qr,Se=$t,Ee=Tt,xe=ye,je=ge,Ie="Object already initialized",Te=be.TypeError,Pe=be.WeakMap;if(me||Ee.state){var Re=Ee.state||(Ee.state=new Pe);Re.get=Re.get,Re.has=Re.has,Re.set=Re.set,ce=function(t,r){if(Re.has(t))throw new Te(Ie);return r.facade=t,Re.set(t,r),r},ae=function(t){return Re.get(t)||{}},fe=function(t){return Re.has(t)}}else{var Ae=xe("state");je[Ae]=!0,ce=function(t,r){if(Se(t,Ae))throw new Te(Ie);return r.facade=t,Oe(t,Ae,r),r},ae=function(t){return Se(t,Ae)?t[Ae]:{}},fe=function(t){return Se(t,Ae)}}var ke={set:ce,get:ae,has:fe,enforce:function(t){return fe(t)?ae(t):ce(t,{})},getterFor:function(t){return function(r){var e;if(!we(r)||(e=ae(r)).type!==t)throw new Te("Incompatible receiver, "+t+" required");return e}}},Ne=O,Ce=o,Le=U,Fe=$t,_e=i,De=ne.CONFIGURABLE,Me=se,Ue=ke.enforce,Be=ke.get,Ge=String,We=Object.defineProperty,$e=Ne("".slice),Ve=Ne("".replace),He=Ne([].join),ze=_e&&!Ce((function(){return 8!==We((function(){}),"length",{value:8}).length})),Je=String(String).split("String"),Ye=Xr.exports=function(t,r,e){"Symbol("===$e(Ge(r),0,7)&&(r="["+Ve(Ge(r),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),e&&e.getter&&(r="get "+r),e&&e.setter&&(r="set "+r),(!Fe(t,"name")||De&&t.name!==r)&&(_e?We(t,"name",{value:r,configurable:!0}):t.name=r),ze&&e&&Fe(e,"arity")&&t.length!==e.arity&&We(t,"length",{value:e.arity});try{e&&Fe(e,"constructor")&&e.constructor?_e&&We(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(o){}var n=Ue(t);return Fe(n,"source")||(n.source=He(Je,"string"==typeof r?r:"")),t};Function.prototype.toString=Ye((function(){return Le(this)&&Be(this).source||Me(this)}),"toString");var qe=U,Ke=Ar,Xe=Kr,Qe=kt,Ze=function(t,r,e,n){n||(n={});var o=n.enumerable,i=void 0!==n.name?n.name:r;if(qe(e)&&Xe(e,i,n),n.global)o?t[r]=e:Qe(r,e);else{try{n.unsafe?t[r]&&(o=!0):delete t[r]}catch(u){}o?t[r]=e:Ke.f(t,r,{value:e,enumerable:!1,configurable:!n.nonConfigurable,writable:!n.nonWritable})}return t},tn={},rn=Math.ceil,en=Math.floor,nn=Math.trunc||function(t){var r=+t;return(r>0?en:rn)(r)},on=function(t){var r=+t;return r!=r||0===r?0:nn(r)},un=on,cn=Math.max,an=Math.min,fn=on,sn=Math.min,ln=function(t){var r=fn(t);return r>0?sn(r,9007199254740991):0},hn=ln,pn=function(t){return hn(t.length)},vn=D,dn=function(t,r){var e=un(t);return e<0?cn(e+r,0):an(e,r)},yn=pn,gn=function(t){return function(r,e,n){var o=vn(r),i=yn(o);if(0===i)return!t&&-1;var u,c=dn(n,i);if(t&&e!=e){for(;i>c;)if((u=o[c++])!=u)return!0}else for(;i>c;c++)if((t||c in o)&&o[c]===e)return t||c||0;return!t&&-1}},mn={includes:gn(!0),indexOf:gn(!1)},bn=$t,wn=D,On=mn.indexOf,Sn=ge,En=O([].push),xn=function(t,r){var e,n=wn(t),o=0,i=[];for(e in n)!bn(Sn,e)&&bn(n,e)&&En(i,e);for(;r.length>o;)bn(n,e=r[o++])&&(~On(i,e)||En(i,e));return i},jn=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],In=xn,Tn=jn.concat("length","prototype");tn.f=Object.getOwnPropertyNames||function(t){return In(t,Tn)};var Pn={};Pn.f=Object.getOwnPropertySymbols;var Rn=H,An=tn,kn=Pn,Nn=Fr,Cn=O([].concat),Ln=Rn("Reflect","ownKeys")||function(t){var r=An.f(Nn(t)),e=kn.f;return e?Cn(r,e(t)):r},Fn=$t,_n=Ln,Dn=n,Mn=Ar,Un=function(t,r,e){for(var n=_n(r),o=Mn.f,i=Dn.f,u=0;u<n.length;u++){var c=n[u];Fn(t,c)||e&&Fn(e,c)||o(t,c,i(r,c))}},Bn=o,Gn=U,Wn=/#|\.prototype\./,$n=function(t,r){var e=Hn[Vn(t)];return e===Jn||e!==zn&&(Gn(r)?Bn(r):!!r)},Vn=$n.normalize=function(t){return String(t).replace(Wn,".").toLowerCase()},Hn=$n.data={},zn=$n.NATIVE="N",Jn=$n.POLYFILL="P",Yn=$n,qn=e,Kn=n.f,Xn=qr,Qn=Ze,Zn=kt,to=Un,ro=Yn,eo=function(t,r){var e,n,o,i,u,c=t.target,a=t.global,f=t.stat;if(e=a?qn:f?qn[c]||Zn(c,{}):qn[c]&&qn[c].prototype)for(n in r){if(i=r[n],o=t.dontCallGetSet?(u=Kn(e,n))&&u.value:e[n],!ro(a?n:c+(f?".":"#")+n,t.forced)&&void 0!==o){if(typeof i==typeof o)continue;to(i,o)}(t.sham||o&&o.sham)&&Xn(i,"sham",!0),Qn(e,n,i,t)}},no={};no[nr("toStringTag")]="z";var oo="[object z]"===String(no),io=oo,uo=U,co=j,ao=nr("toStringTag"),fo=Object,so="Arguments"===co(function(){return arguments}()),lo=io?co:function(t){var r,e,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(e=function(t,r){try{return t[r]}catch(e){}}(r=fo(t),ao))?e:so?co(r):"Object"===(n=co(r))&&uo(r.callee)?"Arguments":n},ho=lo,po=String,vo=function(t){if("Symbol"===ho(t))throw new TypeError("Cannot convert a Symbol value to a string");return po(t)},yo={},go=xn,mo=jn,bo=Object.keys||function(t){return go(t,mo)},wo=i,Oo=kr,So=Ar,Eo=Fr,xo=D,jo=bo;yo.f=wo&&!Oo?Object.defineProperties:function(t,r){Eo(t);for(var e,n=xo(r),o=jo(r),i=o.length,u=0;i>u;)So.f(t,e=o[u++],n[e]);return t};var Io,To=H("document","documentElement"),Po=Fr,Ro=yo,Ao=jn,ko=ge,No=To,Co=mr,Lo=ye("IE_PROTO"),Fo=function(){},_o=function(t){return"<script>"+t+"</"+"script>"},Do=function(t){t.write(_o("")),t.close();var r=t.parentWindow.Object;return t=null,r},Mo=function(){try{Io=new ActiveXObject("htmlfile")}catch(n){}var t,r;Mo="undefined"!=typeof document?document.domain&&Io?Do(Io):((r=Co("iframe")).style.display="none",No.appendChild(r),r.src=String("javascript:"),(t=r.contentWindow.document).open(),t.write(_o("document.F=Object")),t.close(),t.F):Do(Io);for(var e=Ao.length;e--;)delete Mo.prototype[Ao[e]];return Mo()};ko[Lo]=!0;var Uo=Object.create||function(t,r){var e;return null!==t?(Fo.prototype=Po(t),e=new Fo,Fo.prototype=null,e[Lo]=t):e=Mo(),void 0===r?e:Ro.f(e,r)},Bo={},Go=O([].slice),Wo=j,$o=D,Vo=tn.f,Ho=Go,zo="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];Bo.f=function(t){return zo&&"Window"===Wo(t)?function(t){try{return Vo(t)}catch(r){return Ho(zo)}}(t):Vo($o(t))};var Jo=Kr,Yo=Ar,qo=function(t,r,e){return e.get&&Jo(e.get,r,{getter:!0}),e.set&&Jo(e.set,r,{setter:!0}),Yo.f(t,r,e)},Ko={},Xo=nr;Ko.f=Xo;var Qo=e,Zo=Qo,ti=$t,ri=Ko,ei=Ar.f,ni=function(t){var r=Zo.Symbol||(Zo.Symbol={});ti(r,t)||ei(r,t,{value:ri.f(t)})},oi=f,ii=H,ui=nr,ci=Ze,ai=function(){var t=ii("Symbol"),r=t&&t.prototype,e=r&&r.valueOf,n=ui("toPrimitive");r&&!r[n]&&ci(r,n,(function(t){return oi(e,this)}),{arity:1})},fi=Ar.f,si=$t,li=nr("toStringTag"),hi=function(t,r,e){t&&!e&&(t=t.prototype),t&&!si(t,li)&&fi(t,li,{configurable:!0,value:r})},pi=j,vi=O,di=function(t){if("Function"===pi(t))return vi(t)},yi=mt,gi=u,mi=di(di.bind),bi=function(t,r){return yi(t),void 0===r?t:gi?mi(t,r):function(){return t.apply(r,arguments)}},wi=j,Oi=Array.isArray||function(t){return"Array"===wi(t)},Si=O,Ei=o,xi=U,ji=lo,Ii=se,Ti=function(){},Pi=H("Reflect","construct"),Ri=/^\s*(?:class|function)\b/,Ai=Si(Ri.exec),ki=!Ri.test(Ti),Ni=function(t){if(!xi(t))return!1;try{return Pi(Ti,[],t),!0}catch(r){return!1}},Ci=function(t){if(!xi(t))return!1;switch(ji(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return ki||!!Ai(Ri,Ii(t))}catch(r){return!0}};Ci.sham=!0;var Li=!Pi||Ei((function(){var t;return Ni(Ni.call)||!Ni(Object)||!Ni((function(){t=!0}))||t}))?Ci:Ni,Fi=Oi,_i=Li,Di=G,Mi=nr("species"),Ui=Array,Bi=function(t){var r;return Fi(t)&&(r=t.constructor,(_i(r)&&(r===Ui||Fi(r.prototype))||Di(r)&&null===(r=r[Mi]))&&(r=void 0)),void 0===r?Ui:r},Gi=function(t,r){return new(Bi(t))(0===r?0:r)},Wi=bi,$i=A,Vi=Bt,Hi=pn,zi=Gi,Ji=O([].push),Yi=function(t){var r=1===t,e=2===t,n=3===t,o=4===t,i=6===t,u=7===t,c=5===t||i;return function(a,f,s,l){for(var h,p,v=Vi(a),d=$i(v),y=Hi(d),g=Wi(f,s),m=0,b=l||zi,w=r?b(a,y):e||u?b(a,0):void 0;y>m;m++)if((c||m in d)&&(p=g(h=d[m],m,v),t))if(r)w[m]=p;else if(p)switch(t){case 3:return!0;case 5:return h;case 6:return m;case 2:Ji(w,h)}else switch(t){case 4:return!1;case 7:Ji(w,h)}return i?-1:n||o?o:w}},qi={forEach:Yi(0),map:Yi(1),filter:Yi(2),some:Yi(3),every:Yi(4),find:Yi(5),findIndex:Yi(6),filterReject:Yi(7)},Ki=eo,Xi=e,Qi=f,Zi=O,tu=i,ru=ut,eu=o,nu=$t,ou=z,iu=Fr,uu=D,cu=vr,au=vo,fu=y,su=Uo,lu=bo,hu=tn,pu=Bo,vu=Pn,du=n,yu=Ar,gu=yo,mu=s,bu=Ze,wu=qo,Ou=Dt,Su=ge,Eu=Yt,xu=nr,ju=Ko,Iu=ni,Tu=ai,Pu=hi,Ru=ke,Au=qi.forEach,ku=ye("hidden"),Nu="Symbol",Cu=Ru.set,Lu=Ru.getterFor(Nu),Fu=Object.prototype,_u=Xi.Symbol,Du=_u&&_u.prototype,Mu=Xi.RangeError,Uu=Xi.TypeError,Bu=Xi.QObject,Gu=du.f,Wu=yu.f,$u=pu.f,Vu=mu.f,Hu=Zi([].push),zu=Ou("symbols"),Ju=Ou("op-symbols"),Yu=Ou("wks"),qu=!Bu||!Bu.prototype||!Bu.prototype.findChild,Ku=function(t,r,e){var n=Gu(Fu,r);n&&delete Fu[r],Wu(t,r,e),n&&t!==Fu&&Wu(Fu,r,n)},Xu=tu&&eu((function(){return 7!==su(Wu({},"a",{get:function(){return Wu(this,"a",{value:7}).a}})).a}))?Ku:Wu,Qu=function(t,r){var e=zu[t]=su(Du);return Cu(e,{type:Nu,tag:t,description:r}),tu||(e.description=r),e},Zu=function(t,r,e){t===Fu&&Zu(Ju,r,e),iu(t);var n=cu(r);return iu(e),nu(zu,n)?(e.enumerable?(nu(t,ku)&&t[ku][n]&&(t[ku][n]=!1),e=su(e,{enumerable:fu(0,!1)})):(nu(t,ku)||Wu(t,ku,fu(1,su(null))),t[ku][n]=!0),Xu(t,n,e)):Wu(t,n,e)},tc=function(t,r){iu(t);var e=uu(r),n=lu(e).concat(oc(e));return Au(n,(function(r){tu&&!Qi(rc,e,r)||Zu(t,r,e[r])})),t},rc=function(t){var r=cu(t),e=Qi(Vu,this,r);return!(this===Fu&&nu(zu,r)&&!nu(Ju,r))&&(!(e||!nu(this,r)||!nu(zu,r)||nu(this,ku)&&this[ku][r])||e)},ec=function(t,r){var e=uu(t),n=cu(r);if(e!==Fu||!nu(zu,n)||nu(Ju,n)){var o=Gu(e,n);return!o||!nu(zu,n)||nu(e,ku)&&e[ku][n]||(o.enumerable=!0),o}},nc=function(t){var r=$u(uu(t)),e=[];return Au(r,(function(t){nu(zu,t)||nu(Su,t)||Hu(e,t)})),e},oc=function(t){var r=t===Fu,e=$u(r?Ju:uu(t)),n=[];return Au(e,(function(t){!nu(zu,t)||r&&!nu(Fu,t)||Hu(n,zu[t])})),n};ru||(_u=function(){if(ou(Du,this))throw new Uu("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?au(arguments[0]):void 0,r=Eu(t),e=function(t){var n=void 0===this?Xi:this;n===Fu&&Qi(e,Ju,t),nu(n,ku)&&nu(n[ku],r)&&(n[ku][r]=!1);var o=fu(1,t);try{Xu(n,r,o)}catch(i){if(!(i instanceof Mu))throw i;Ku(n,r,o)}};return tu&&qu&&Xu(Fu,r,{configurable:!0,set:e}),Qu(r,t)},bu(Du=_u.prototype,"toString",(function(){return Lu(this).tag})),bu(_u,"withoutSetter",(function(t){return Qu(Eu(t),t)})),mu.f=rc,yu.f=Zu,gu.f=tc,du.f=ec,hu.f=pu.f=nc,vu.f=oc,ju.f=function(t){return Qu(xu(t),t)},tu&&(wu(Du,"description",{configurable:!0,get:function(){return Lu(this).description}}),bu(Fu,"propertyIsEnumerable",rc,{unsafe:!0}))),Ki({global:!0,constructor:!0,wrap:!0,forced:!ru,sham:!ru},{Symbol:_u}),Au(lu(Yu),(function(t){Iu(t)})),Ki({target:Nu,stat:!0,forced:!ru},{useSetter:function(){qu=!0},useSimple:function(){qu=!1}}),Ki({target:"Object",stat:!0,forced:!ru,sham:!tu},{create:function(t,r){return void 0===r?su(t):tc(su(t),r)},defineProperty:Zu,defineProperties:tc,getOwnPropertyDescriptor:ec}),Ki({target:"Object",stat:!0,forced:!ru},{getOwnPropertyNames:nc}),Tu(),Pu(_u,Nu),Su[ku]=!0;var ic=ut&&!!Symbol.for&&!!Symbol.keyFor,uc=eo,cc=H,ac=$t,fc=vo,sc=Dt,lc=ic,hc=sc("string-to-symbol-registry"),pc=sc("symbol-to-string-registry");uc({target:"Symbol",stat:!0,forced:!lc},{for:function(t){var r=fc(t);if(ac(hc,r))return hc[r];var e=cc("Symbol")(r);return hc[r]=e,pc[e]=r,e}});var vc=eo,dc=$t,yc=ht,gc=vt,mc=ic,bc=Dt("symbol-to-string-registry");vc({target:"Symbol",stat:!0,forced:!mc},{keyFor:function(t){if(!yc(t))throw new TypeError(gc(t)+" is not a symbol");if(dc(bc,t))return bc[t]}});var wc=u,Oc=Function.prototype,Sc=Oc.apply,Ec=Oc.call,xc="object"==typeof Reflect&&Reflect.apply||(wc?Ec.bind(Sc):function(){return Ec.apply(Sc,arguments)}),jc=Oi,Ic=U,Tc=j,Pc=vo,Rc=O([].push),Ac=eo,kc=H,Nc=xc,Cc=f,Lc=O,Fc=o,_c=U,Dc=ht,Mc=Go,Uc=function(t){if(Ic(t))return t;if(jc(t)){for(var r=t.length,e=[],n=0;n<r;n++){var o=t[n];"string"==typeof o?Rc(e,o):"number"!=typeof o&&"Number"!==Tc(o)&&"String"!==Tc(o)||Rc(e,Pc(o))}var i=e.length,u=!0;return function(t,r){if(u)return u=!1,r;if(jc(this))return r;for(var n=0;n<i;n++)if(e[n]===t)return r}}},Bc=ut,Gc=String,Wc=kc("JSON","stringify"),$c=Lc(/./.exec),Vc=Lc("".charAt),Hc=Lc("".charCodeAt),zc=Lc("".replace),Jc=Lc(1.1.toString),Yc=/[\uD800-\uDFFF]/g,qc=/^[\uD800-\uDBFF]$/,Kc=/^[\uDC00-\uDFFF]$/,Xc=!Bc||Fc((function(){var t=kc("Symbol")("stringify detection");return"[null]"!==Wc([t])||"{}"!==Wc({a:t})||"{}"!==Wc(Object(t))})),Qc=Fc((function(){return'"\\udf06\\ud834"'!==Wc("\udf06\ud834")||'"\\udead"'!==Wc("\udead")})),Zc=function(t,r){var e=Mc(arguments),n=Uc(r);if(_c(n)||void 0!==t&&!Dc(t))return e[1]=function(t,r){if(_c(n)&&(r=Cc(n,this,Gc(t),r)),!Dc(r))return r},Nc(Wc,null,e)},ta=function(t,r,e){var n=Vc(e,r-1),o=Vc(e,r+1);return $c(qc,t)&&!$c(Kc,o)||$c(Kc,t)&&!$c(qc,n)?"\\u"+Jc(Hc(t,0),16):t};Wc&&Ac({target:"JSON",stat:!0,arity:3,forced:Xc||Qc},{stringify:function(t,r,e){var n=Mc(arguments),o=Nc(Xc?Zc:Wc,null,n);return Qc&&"string"==typeof o?zc(o,Yc,ta):o}});var ra=Pn,ea=Bt;eo({target:"Object",stat:!0,forced:!ut||o((function(){ra.f(1)}))},{getOwnPropertySymbols:function(t){var r=ra.f;return r?r(ea(t)):[]}});var na=eo,oa=i,ia=O,ua=$t,ca=U,aa=z,fa=vo,sa=qo,la=Un,ha=e.Symbol,pa=ha&&ha.prototype;if(oa&&ca(ha)&&(!("description"in pa)||void 0!==ha().description)){var va={},da=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:fa(arguments[0]),r=aa(pa,this)?new ha(t):void 0===t?ha():ha(t);return""===t&&(va[r]=!0),r};la(da,ha),da.prototype=pa,pa.constructor=da;var ya="Symbol(description detection)"===String(ha("description detection")),ga=ia(pa.valueOf),ma=ia(pa.toString),ba=/^Symbol\((.*)\)[^)]+$/,wa=ia("".replace),Oa=ia("".slice);sa(pa,"description",{configurable:!0,get:function(){var t=ga(this);if(ua(va,t))return"";var r=ma(t),e=ya?Oa(r,7,-1):wa(r,ba,"$1");return""===e?void 0:e}}),na({global:!0,constructor:!0,forced:!0},{Symbol:da})}ni("iterator");var Sa=ai;ni("toPrimitive"),Sa();var Ea=O,xa=mt,ja=G,Ia=function(t){return ja(t)||null===t},Ta=String,Pa=TypeError,Ra=function(t,r,e){try{return Ea(xa(Object.getOwnPropertyDescriptor(t,r)[e]))}catch(n){}},Aa=G,ka=L,Na=function(t){if(Ia(t))return t;throw new Pa("Can't set "+Ta(t)+" as a prototype")},Ca=Object.setPrototypeOf||("__proto__"in{}?function(){var t,r=!1,e={};try{(t=Ra(Object.prototype,"__proto__","set"))(e,[]),r=e instanceof Array}catch(n){}return function(e,n){return ka(e),Na(n),Aa(e)?(r?t(e,n):e.__proto__=n,e):e}}():void 0),La=Ar.f,Fa=U,_a=G,Da=Ca,Ma=function(t,r,e){var n,o;return Da&&Fa(n=r.constructor)&&n!==e&&_a(o=n.prototype)&&o!==e.prototype&&Da(t,o),t},Ua=vo,Ba=G,Ga=qr,Wa=Error,$a=O("".replace),Va=String(new Wa("zxcasd").stack),Ha=/\n\s*at [^:]*:[^\n]*/,za=Ha.test(Va),Ja=y,Ya=!o((function(){var t=new Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",Ja(1,7)),7!==t.stack)})),qa=qr,Ka=function(t,r){if(za&&"string"==typeof t&&!Wa.prepareStackTrace)for(;r--;)t=$a(t,Ha,"");return t},Xa=Ya,Qa=Error.captureStackTrace,Za=H,tf=$t,rf=qr,ef=z,nf=Ca,of=Un,uf=function(t,r,e){e in t||La(t,e,{configurable:!0,get:function(){return r[e]},set:function(t){r[e]=t}})},cf=Ma,af=function(t,r){return void 0===t?arguments.length<2?"":r:Ua(t)},ff=function(t,r){Ba(r)&&"cause"in r&&Ga(t,"cause",r.cause)},sf=function(t,r,e,n){Xa&&(Qa?Qa(t,r):qa(t,"stack",Ka(e,n)))},lf=i,hf=eo,pf=xc,vf=function(t,r,e,n){var o="stackTraceLimit",i=n?2:1,u=t.split("."),c=u[u.length-1],a=Za.apply(null,u);if(a){var f=a.prototype;if(tf(f,"cause")&&delete f.cause,!e)return a;var s=Za("Error"),l=r((function(t,r){var e=af(n?r:t,void 0),o=n?new a(t):new a;return void 0!==e&&rf(o,"message",e),sf(o,l,o.stack,2),this&&ef(f,this)&&cf(o,this,l),arguments.length>i&&ff(o,arguments[i]),o}));l.prototype=f,"Error"!==c?nf?nf(l,s):of(l,s,{name:!0}):lf&&o in a&&(uf(l,a,o),uf(l,a,"prepareStackTrace")),of(l,a);try{f.name!==c&&rf(f,"name",c),f.constructor=l}catch(h){}return l}},df="WebAssembly",yf=e.WebAssembly,gf=7!==new Error("e",{cause:7}).cause,mf=function(t,r){var e={};e[t]=vf(t,r,gf),hf({global:!0,constructor:!0,arity:1,forced:gf},e)},bf=function(t,r){if(yf&&yf[t]){var e={};e[t]=vf("WebAssembly."+t,r,gf),hf({target:df,stat:!0,constructor:!0,arity:1,forced:gf},e)}};mf("Error",(function(t){return function(r){return pf(t,this,arguments)}})),mf("EvalError",(function(t){return function(r){return pf(t,this,arguments)}})),mf("RangeError",(function(t){return function(r){return pf(t,this,arguments)}})),mf("ReferenceError",(function(t){return function(r){return pf(t,this,arguments)}})),mf("SyntaxError",(function(t){return function(r){return pf(t,this,arguments)}})),mf("TypeError",(function(t){return function(r){return pf(t,this,arguments)}})),mf("URIError",(function(t){return function(r){return pf(t,this,arguments)}})),bf("CompileError",(function(t){return function(r){return pf(t,this,arguments)}})),bf("LinkError",(function(t){return function(r){return pf(t,this,arguments)}})),bf("RuntimeError",(function(t){return function(r){return pf(t,this,arguments)}}));var wf=TypeError,Of=function(t){if(t>9007199254740991)throw wf("Maximum allowed index exceeded");return t},Sf=i,Ef=Ar,xf=y,jf=function(t,r,e){Sf?Ef.f(t,r,xf(0,e)):t[r]=e},If=o,Tf=et,Pf=nr("species"),Rf=function(t){return Tf>=51||!If((function(){var r=[];return(r.constructor={})[Pf]=function(){return{foo:1}},1!==r[t](Boolean).foo}))},Af=eo,kf=o,Nf=Oi,Cf=G,Lf=Bt,Ff=pn,_f=Of,Df=jf,Mf=Gi,Uf=Rf,Bf=et,Gf=nr("isConcatSpreadable"),Wf=Bf>=51||!kf((function(){var t=[];return t[Gf]=!1,t.concat()[0]!==t})),$f=function(t){if(!Cf(t))return!1;var r=t[Gf];return void 0!==r?!!r:Nf(t)};Af({target:"Array",proto:!0,arity:1,forced:!Wf||!Uf("concat")},{concat:function(t){var r,e,n,o,i,u=Lf(this),c=Mf(u,0),a=0;for(r=-1,n=arguments.length;r<n;r++)if($f(i=-1===r?u:arguments[r]))for(o=Ff(i),_f(a+o),e=0;e<o;e++,a++)e in i&&Df(c,a,i[e]);else _f(a+1),Df(c,a++,i);return c.length=a,c}});var Vf=qi.filter;eo({target:"Array",proto:!0,forced:!Rf("filter")},{filter:function(t){return Vf(this,t,arguments.length>1?arguments[1]:void 0)}});var Hf=nr,zf=Uo,Jf=Ar.f,Yf=Hf("unscopables"),qf=Array.prototype;void 0===qf[Yf]&&Jf(qf,Yf,{configurable:!0,value:zf(null)});var Kf=function(t){qf[Yf][t]=!0},Xf=eo,Qf=qi.findIndex,Zf=Kf,ts="findIndex",rs=!0;ts in[]&&Array(1).findIndex((function(){rs=!1})),Xf({target:"Array",proto:!0,forced:rs},{findIndex:function(t){return Qf(this,t,arguments.length>1?arguments[1]:void 0)}}),Zf(ts);var es=mn.includes,ns=Kf;eo({target:"Array",proto:!0,forced:o((function(){return!Array(1).includes()}))},{includes:function(t){return es(this,t,arguments.length>1?arguments[1]:void 0)}}),ns("includes");var os,is,us,cs={},as=!o((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype})),fs=$t,ss=U,ls=Bt,hs=as,ps=ye("IE_PROTO"),vs=Object,ds=vs.prototype,ys=hs?vs.getPrototypeOf:function(t){var r=ls(t);if(fs(r,ps))return r[ps];var e=r.constructor;return ss(e)&&r instanceof e?e.prototype:r instanceof vs?ds:null},gs=o,ms=U,bs=G,ws=ys,Os=Ze,Ss=nr("iterator"),Es=!1;[].keys&&("next"in(us=[].keys())?(is=ws(ws(us)))!==Object.prototype&&(os=is):Es=!0);var xs=!bs(os)||gs((function(){var t={};return os[Ss].call(t)!==t}));xs&&(os={}),ms(os[Ss])||Os(os,Ss,(function(){return this}));var js={IteratorPrototype:os,BUGGY_SAFARI_ITERATORS:Es},Is=js.IteratorPrototype,Ts=Uo,Ps=y,Rs=hi,As=cs,ks=function(){return this},Ns=eo,Cs=f,Ls=U,Fs=function(t,r,e,n){var o=r+" Iterator";return t.prototype=Ts(Is,{next:Ps(+!n,e)}),Rs(t,o,!1),As[o]=ks,t},_s=ys,Ds=Ca,Ms=hi,Us=qr,Bs=Ze,Gs=cs,Ws=ne.PROPER,$s=ne.CONFIGURABLE,Vs=js.IteratorPrototype,Hs=js.BUGGY_SAFARI_ITERATORS,zs=nr("iterator"),Js="keys",Ys="values",qs="entries",Ks=function(){return this},Xs=function(t,r,e,n,o,i,u){Fs(e,r,n);var c,a,f,s=function(t){if(t===o&&d)return d;if(!Hs&&t&&t in p)return p[t];switch(t){case Js:case Ys:case qs:return function(){return new e(this,t)}}return function(){return new e(this)}},l=r+" Iterator",h=!1,p=t.prototype,v=p[zs]||p["@@iterator"]||o&&p[o],d=!Hs&&v||s(o),y="Array"===r&&p.entries||v;if(y&&(c=_s(y.call(new t)))!==Object.prototype&&c.next&&(_s(c)!==Vs&&(Ds?Ds(c,Vs):Ls(c[zs])||Bs(c,zs,Ks)),Ms(c,l,!0)),Ws&&o===Ys&&v&&v.name!==Ys&&($s?Us(p,"name",Ys):(h=!0,d=function(){return Cs(v,this)})),o)if(a={values:s(Ys),keys:i?d:s(Js),entries:s(qs)},u)for(f in a)(Hs||h||!(f in p))&&Bs(p,f,a[f]);else Ns({target:r,proto:!0,forced:Hs||h},a);return p[zs]!==d&&Bs(p,zs,d,{name:o}),Gs[r]=d,a},Qs=function(t,r){return{value:t,done:r}},Zs=D,tl=Kf,rl=cs,el=ke,nl=Ar.f,ol=Xs,il=Qs,ul=i,cl="Array Iterator",al=el.set,fl=el.getterFor(cl),sl=ol(Array,"Array",(function(t,r){al(this,{type:cl,target:Zs(t),index:0,kind:r})}),(function(){var t=fl(this),r=t.target,e=t.index++;if(!r||e>=r.length)return t.target=null,il(void 0,!0);switch(t.kind){case"keys":return il(e,!1);case"values":return il(r[e],!1)}return il([e,r[e]],!1)}),"values"),ll=rl.Arguments=rl.Array;if(tl("keys"),tl("values"),tl("entries"),ul&&"values"!==ll.name)try{nl(ll,"name",{value:"values"})}catch(IS){}var hl=o,pl=function(t,r){var e=[][t];return!!e&&hl((function(){e.call(null,r||function(){return 1},1)}))},vl=eo,dl=A,yl=D,gl=pl,ml=O([].join);vl({target:"Array",proto:!0,forced:dl!==Object||!gl("join",",")},{join:function(t){return ml(yl(this),void 0===t?",":t)}});var bl=qi.map;eo({target:"Array",proto:!0,forced:!Rf("map")},{map:function(t){return bl(this,t,arguments.length>1?arguments[1]:void 0)}});var wl=i,Ol=Oi,Sl=TypeError,El=Object.getOwnPropertyDescriptor,xl=wl&&!function(){if(void 0!==this)return!0;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(IS){return IS instanceof TypeError}}(),jl=Bt,Il=pn,Tl=xl?function(t,r){if(Ol(t)&&!El(t,"length").writable)throw new Sl("Cannot set read only .length");return t.length=r}:function(t,r){return t.length=r},Pl=Of;eo({target:"Array",proto:!0,arity:1,forced:o((function(){return 4294967297!==[].push.call({length:4294967296},1)}))||!function(){try{Object.defineProperty([],"length",{writable:!1}).push()}catch(IS){return IS instanceof TypeError}}()},{push:function(t){var r=jl(this),e=Il(r),n=arguments.length;Pl(e+n);for(var o=0;o<n;o++)r[e]=arguments[o],e++;return Tl(r,e),e}});var Rl=Fr,Al=It,kl=TypeError,Nl=$t,Cl=Ze,Ll=function(t){if(Rl(this),"string"===t||"default"===t)t="string";else if("number"!==t)throw new kl("Incorrect hint");return Al(this,t)},Fl=nr("toPrimitive"),_l=Date.prototype;Nl(_l,Fl)||Cl(_l,Fl,Ll);var Dl=z,Ml=TypeError,Ul=function(t,r){if(Dl(r,t))return t;throw new Ml("Incorrect invocation")},Bl=eo,Gl=e,Wl=Ul,$l=Fr,Vl=U,Hl=ys,zl=qo,Jl=jf,Yl=o,ql=$t,Kl=js.IteratorPrototype,Xl=i,Ql="constructor",Zl="Iterator",th=nr("toStringTag"),rh=TypeError,eh=Gl.Iterator,nh=!Vl(eh)||eh.prototype!==Kl||!Yl((function(){eh({})})),oh=function(){if(Wl(this,Kl),Hl(this)===Kl)throw new rh("Abstract class Iterator not directly constructable")},ih=function(t,r){Xl?zl(Kl,t,{configurable:!0,get:function(){return r},set:function(r){if($l(this),this===Kl)throw new rh("You can't redefine this property");ql(this,t)?this[t]=r:Jl(this,t,r)}}):Kl[t]=r};ql(Kl,th)||ih(th,Zl),!nh&&ql(Kl,Ql)&&Kl.constructor!==Object||ih(Ql,oh),oh.prototype=Kl,Bl({global:!0,constructor:!0,forced:nh},{Iterator:oh});var uh=function(t){return{iterator:t,next:t.next,done:!1}},ch=Ze,ah=f,fh=Fr,sh=Ot,lh=function(t,r,e){var n,o;fh(t);try{if(!(n=sh(t,"return"))){if("throw"===r)throw e;return e}n=ah(n,t)}catch(IS){o=!0,n=IS}if("throw"===r)throw e;if(o)throw n;return fh(n),e},hh=lh,ph=f,vh=Uo,dh=qr,yh=function(t,r,e){for(var n in r)ch(t,n,r[n],e);return t},gh=ke,mh=Ot,bh=js.IteratorPrototype,wh=Qs,Oh=lh,Sh=function(t,r,e){for(var n=t.length-1;n>=0;n--)if(void 0!==t[n])try{e=hh(t[n].iterator,r,e)}catch(IS){r="throw",e=IS}if("throw"===r)throw e;return e},Eh=nr("toStringTag"),xh="IteratorHelper",jh="WrapForValidIterator",Ih="normal",Th="throw",Ph=gh.set,Rh=function(t){var r=gh.getterFor(t?jh:xh);return yh(vh(bh),{next:function(){var e=r(this);if(t)return e.nextHandler();if(e.done)return wh(void 0,!0);try{var n=e.nextHandler();return e.returnHandlerResult?n:wh(n,e.done)}catch(IS){throw e.done=!0,IS}},return:function(){var e=r(this),n=e.iterator;if(e.done=!0,t){var o=mh(n,"return");return o?ph(o,n):wh(void 0,!0)}if(e.inner)try{Oh(e.inner.iterator,Ih)}catch(IS){return Oh(n,Th,IS)}if(e.openIters)try{Sh(e.openIters,Ih)}catch(IS){return Oh(n,Th,IS)}return n&&Oh(n,Ih),wh(void 0,!0)}})},Ah=Rh(!0),kh=Rh(!1);dh(kh,Eh,"Iterator Helper");var Nh=function(t,r,e){var n=function(n,o){o?(o.iterator=n.iterator,o.next=n.next):o=n,o.type=r?jh:xh,o.returnHandlerResult=!!e,o.nextHandler=t,o.counter=0,o.done=!1,Ph(this,o)};return n.prototype=r?Ah:kh,n},Ch=Fr,Lh=lh,Fh=function(t,r,e,n){try{return n?r(Ch(e)[0],e[1]):r(e)}catch(IS){Lh(t,"throw",IS)}},_h=function(t,r){var e="function"==typeof Iterator&&Iterator.prototype[t];if(e)try{e.call({next:null},r).next()}catch(IS){return!0}},Dh=e,Mh=function(t,r){var e=Dh.Iterator,n=e&&e.prototype,o=n&&n[t],i=!1;if(o)try{o.call({next:function(){return{done:!0}},return:function(){i=!0}},-1)}catch(IS){IS instanceof r||(i=!1)}if(!i)return o},Uh=eo,Bh=f,Gh=mt,Wh=Fr,$h=uh,Vh=Nh,Hh=Fh,zh=lh,Jh=Mh,Yh=!_h("filter",(function(){})),qh=!Yh&&Jh("filter",TypeError),Kh=Yh||qh,Xh=Vh((function(){for(var t,r,e=this.iterator,n=this.predicate,o=this.next;;){if(t=Wh(Bh(o,e)),this.done=!!t.done)return;if(r=t.value,Hh(e,n,[r,this.counter++],!0))return r}}));Uh({target:"Iterator",proto:!0,real:!0,forced:Kh},{filter:function(t){Wh(this);try{Gh(t)}catch(IS){zh(this,"throw",IS)}return qh?Bh(qh,this,t):new Xh($h(this),{predicate:t})}});var Qh=cs,Zh=nr("iterator"),tp=Array.prototype,rp=lo,ep=Ot,np=k,op=cs,ip=nr("iterator"),up=function(t){if(!np(t))return ep(t,ip)||ep(t,"@@iterator")||op[rp(t)]},cp=f,ap=mt,fp=Fr,sp=vt,lp=up,hp=TypeError,pp=bi,vp=f,dp=Fr,yp=vt,gp=function(t){return void 0!==t&&(Qh.Array===t||tp[Zh]===t)},mp=pn,bp=z,wp=function(t,r){var e=arguments.length<2?lp(t):r;if(ap(e))return fp(cp(e,t));throw new hp(sp(t)+" is not iterable")},Op=up,Sp=lh,Ep=TypeError,xp=function(t,r){this.stopped=t,this.result=r},jp=xp.prototype,Ip=function(t,r,e){var n,o,i,u,c,a,f,s=e&&e.that,l=!(!e||!e.AS_ENTRIES),h=!(!e||!e.IS_RECORD),p=!(!e||!e.IS_ITERATOR),v=!(!e||!e.INTERRUPTED),d=pp(r,s),y=function(t){return n&&Sp(n,"normal"),new xp(!0,t)},g=function(t){return l?(dp(t),v?d(t[0],t[1],y):d(t[0],t[1])):v?d(t,y):d(t)};if(h)n=t.iterator;else if(p)n=t;else{if(!(o=Op(t)))throw new Ep(yp(t)+" is not iterable");if(gp(o)){for(i=0,u=mp(t);u>i;i++)if((c=g(t[i]))&&bp(jp,c))return c;return new xp(!1)}n=wp(t,o)}for(a=h?t.next:n.next;!(f=vp(a,n)).done;){try{c=g(f.value)}catch(IS){Sp(n,"throw",IS)}if("object"==typeof c&&c&&bp(jp,c))return c}return new xp(!1)},Tp=eo,Pp=f,Rp=Ip,Ap=mt,kp=Fr,Np=uh,Cp=lh,Lp=Mh("forEach",TypeError);Tp({target:"Iterator",proto:!0,real:!0,forced:Lp},{forEach:function(t){kp(this);try{Ap(t)}catch(IS){Cp(this,"throw",IS)}if(Lp)return Pp(Lp,this,t);var r=Np(this),e=0;Rp(r,(function(r){t(r,e++)}),{IS_RECORD:!0})}});var Fp=eo,_p=f,Dp=mt,Mp=Fr,Up=uh,Bp=Nh,Gp=Fh,Wp=lh,$p=Mh,Vp=!_h("map",(function(){})),Hp=!Vp&&$p("map",TypeError),zp=Vp||Hp,Jp=Bp((function(){var t=this.iterator,r=Mp(_p(this.next,t));if(!(this.done=!!r.done))return Gp(t,this.mapper,[r.value,this.counter++],!0)}));Fp({target:"Iterator",proto:!0,real:!0,forced:zp},{map:function(t){Mp(this);try{Dp(t)}catch(IS){Wp(this,"throw",IS)}return Hp?_p(Hp,this,t):new Jp(Up(this),{mapper:t})}});var Yp=O(1.1.valueOf),qp=L,Kp=vo,Xp="\t\n\v\f\r                 \u2028\u2029\ufeff",Qp=O("".replace),Zp=RegExp("^["+Xp+"]+"),tv=RegExp("(^|[^"+Xp+"])["+Xp+"]+$"),rv=function(t){return function(r){var e=Kp(qp(r));return 1&t&&(e=Qp(e,Zp,"")),2&t&&(e=Qp(e,tv,"$1")),e}},ev={start:rv(1),end:rv(2),trim:rv(3)},nv=eo,ov=i,iv=e,uv=Qo,cv=O,av=Yn,fv=$t,sv=Ma,lv=z,hv=ht,pv=lr,vv=o,dv=tn.f,yv=n.f,gv=Ar.f,mv=Yp,bv=ev.trim,wv="Number",Ov=iv.Number;uv.Number;var Sv=Ov.prototype,Ev=iv.TypeError,xv=cv("".slice),jv=cv("".charCodeAt),Iv=function(t){var r=pv(t,"number");return"bigint"==typeof r?r:Tv(r)},Tv=function(t){var r,e,n,o,i,u,c,a,f=pv(t,"number");if(hv(f))throw new Ev("Cannot convert a Symbol value to a number");if("string"==typeof f&&f.length>2)if(f=bv(f),43===(r=jv(f,0))||45===r){if(88===(e=jv(f,2))||120===e)return NaN}else if(48===r){switch(jv(f,1)){case 66:case 98:n=2,o=49;break;case 79:case 111:n=8,o=55;break;default:return+f}for(u=(i=xv(f,2)).length,c=0;c<u;c++)if((a=jv(i,c))<48||a>o)return NaN;return parseInt(i,n)}return+f},Pv=av(wv,!Ov(" 0o1")||!Ov("0b1")||Ov("+0x1")),Rv=function(t){return lv(Sv,t)&&vv((function(){mv(t)}))},Av=function(t){var r=arguments.length<1?0:Ov(Iv(t));return Rv(this)?sv(Object(r),this,Av):r};Av.prototype=Sv,Pv&&(Sv.constructor=Av),nv({global:!0,constructor:!0,wrap:!0,forced:Pv},{Number:Av});Pv&&function(t,r){for(var e,n=ov?dv(r):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),o=0;n.length>o;o++)fv(r,e=n[o])&&!fv(t,e)&&gv(t,e,yv(r,e))}(uv.Number,Ov);var kv=i,Nv=O,Cv=f,Lv=o,Fv=bo,_v=Pn,Dv=s,Mv=Bt,Uv=A,Bv=Object.assign,Gv=Object.defineProperty,Wv=Nv([].concat),$v=!Bv||Lv((function(){if(kv&&1!==Bv({b:1},Bv(Gv({},"a",{enumerable:!0,get:function(){Gv(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},r={},e=Symbol("assign detection"),n="abcdefghijklmnopqrst";return t[e]=7,n.split("").forEach((function(t){r[t]=t})),7!==Bv({},t)[e]||Fv(Bv({},r)).join("")!==n}))?function(t,r){for(var e=Mv(t),n=arguments.length,o=1,i=_v.f,u=Dv.f;n>o;)for(var c,a=Uv(arguments[o++]),f=i?Wv(Fv(a),i(a)):Fv(a),s=f.length,l=0;s>l;)c=f[l++],kv&&!Cv(u,a,c)||(e[c]=a[c]);return e}:Bv,Vv=$v;eo({target:"Object",stat:!0,arity:2,forced:Object.assign!==Vv},{assign:Vv});var Hv=eo,zv=o,Jv=D,Yv=n.f,qv=i;Hv({target:"Object",stat:!0,forced:!qv||zv((function(){Yv(1)})),sham:!qv},{getOwnPropertyDescriptor:function(t,r){return Yv(Jv(t),r)}});var Kv=Ln,Xv=D,Qv=n,Zv=jf;eo({target:"Object",stat:!0,sham:!i},{getOwnPropertyDescriptors:function(t){for(var r,e,n=Xv(t),o=Qv.f,i=Kv(n),u={},c=0;i.length>c;)void 0!==(e=o(n,r=i[c++]))&&Zv(u,r,e);return u}});var td=Bt,rd=ys,ed=as;eo({target:"Object",stat:!0,forced:o((function(){rd(1)})),sham:!ed},{getPrototypeOf:function(t){return rd(td(t))}}),eo({target:"Object",stat:!0},{is:Object.is||function(t,r){return t===r?0!==t||1/t==1/r:t!=t&&r!=r}});var nd=Bt,od=bo;eo({target:"Object",stat:!0,forced:o((function(){od(1)}))},{keys:function(t){return od(nd(t))}});var id=lo,ud=oo?{}.toString:function(){return"[object "+id(this)+"]"};oo||Ze(Object.prototype,"toString",ud,{unsafe:!0});var cd=i,ad=o,fd=O,sd=ys,ld=bo,hd=D,pd=fd(s.f),vd=fd([].push),dd=cd&&ad((function(){var t=Object.create(null);return t[2]=2,!pd(t,2)})),yd=function(t){return function(r){for(var e,n=hd(r),o=ld(n),i=dd&&null===sd(n),u=o.length,c=0,a=[];u>c;)e=o[c++],cd&&!(i?e in n:pd(n,e))||vd(a,t?[e,n[e]]:n[e]);return a}},gd={entries:yd(!0),values:yd(!1)}.values;eo({target:"Object",stat:!0},{values:function(t){return gd(t)}});var md,bd,wd,Od,Sd=e,Ed=q,xd=j,jd=function(t){return Ed.slice(0,t.length)===t},Id=jd("Bun/")?"BUN":jd("Cloudflare-Workers")?"CLOUDFLARE":jd("Deno/")?"DENO":jd("Node.js/")?"NODE":Sd.Bun&&"string"==typeof Bun.version?"BUN":Sd.Deno&&"object"==typeof Deno.version?"DENO":"process"===xd(Sd.process)?"NODE":Sd.window&&Sd.document?"BROWSER":"REST",Td="NODE"===Id,Pd=H,Rd=qo,Ad=i,kd=nr("species"),Nd=Li,Cd=vt,Ld=TypeError,Fd=function(t){if(Nd(t))return t;throw new Ld(Cd(t)+" is not a constructor")},_d=Fr,Dd=Fd,Md=k,Ud=nr("species"),Bd=function(t,r){var e,n=_d(t).constructor;return void 0===n||Md(e=_d(n)[Ud])?r:Dd(e)},Gd=TypeError,Wd=/(?:ipad|iphone|ipod).*applewebkit/i.test(q),$d=e,Vd=xc,Hd=bi,zd=U,Jd=$t,Yd=o,qd=To,Kd=Go,Xd=mr,Qd=function(t,r){if(t<r)throw new Gd("Not enough arguments");return t},Zd=Wd,ty=Td,ry=$d.setImmediate,ey=$d.clearImmediate,ny=$d.process,oy=$d.Dispatch,iy=$d.Function,uy=$d.MessageChannel,cy=$d.String,ay=0,fy={},sy="onreadystatechange";Yd((function(){md=$d.location}));var ly=function(t){if(Jd(fy,t)){var r=fy[t];delete fy[t],r()}},hy=function(t){return function(){ly(t)}},py=function(t){ly(t.data)},vy=function(t){$d.postMessage(cy(t),md.protocol+"//"+md.host)};ry&&ey||(ry=function(t){Qd(arguments.length,1);var r=zd(t)?t:iy(t),e=Kd(arguments,1);return fy[++ay]=function(){Vd(r,void 0,e)},bd(ay),ay},ey=function(t){delete fy[t]},ty?bd=function(t){ny.nextTick(hy(t))}:oy&&oy.now?bd=function(t){oy.now(hy(t))}:uy&&!Zd?(Od=(wd=new uy).port2,wd.port1.onmessage=py,bd=Hd(Od.postMessage,Od)):$d.addEventListener&&zd($d.postMessage)&&!$d.importScripts&&md&&"file:"!==md.protocol&&!Yd(vy)?(bd=vy,$d.addEventListener("message",py,!1)):bd=sy in Xd("script")?function(t){qd.appendChild(Xd("script")).onreadystatechange=function(){qd.removeChild(this),ly(t)}}:function(t){setTimeout(hy(t),0)});var dy={set:ry,clear:ey},yy=e,gy=i,my=Object.getOwnPropertyDescriptor,by=function(){this.head=null,this.tail=null};by.prototype={add:function(t){var r={item:t,next:null},e=this.tail;e?e.next=r:this.head=r,this.tail=r},get:function(){var t=this.head;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}};var wy,Oy,Sy,Ey,xy,jy=by,Iy=/ipad|iphone|ipod/i.test(q)&&"undefined"!=typeof Pebble,Ty=/web0s(?!.*chrome)/i.test(q),Py=e,Ry=function(t){if(!gy)return yy[t];var r=my(yy,t);return r&&r.value},Ay=bi,ky=dy.set,Ny=jy,Cy=Wd,Ly=Iy,Fy=Ty,_y=Td,Dy=Py.MutationObserver||Py.WebKitMutationObserver,My=Py.document,Uy=Py.process,By=Py.Promise,Gy=Ry("queueMicrotask");if(!Gy){var Wy=new Ny,$y=function(){var t,r;for(_y&&(t=Uy.domain)&&t.exit();r=Wy.get();)try{r()}catch(IS){throw Wy.head&&wy(),IS}t&&t.enter()};Cy||_y||Fy||!Dy||!My?!Ly&&By&&By.resolve?((Ey=By.resolve(void 0)).constructor=By,xy=Ay(Ey.then,Ey),wy=function(){xy($y)}):_y?wy=function(){Uy.nextTick($y)}:(ky=Ay(ky,Py),wy=function(){ky($y)}):(Oy=!0,Sy=My.createTextNode(""),new Dy($y).observe(Sy,{characterData:!0}),wy=function(){Sy.data=Oy=!Oy}),Gy=function(t){Wy.head||wy(),Wy.add(t)}}var Vy=Gy,Hy=function(t){try{return{error:!1,value:t()}}catch(IS){return{error:!0,value:IS}}},zy=e.Promise,Jy=e,Yy=zy,qy=U,Ky=Yn,Xy=se,Qy=nr,Zy=Id,tg=et;Yy&&Yy.prototype;var rg=Qy("species"),eg=!1,ng=qy(Jy.PromiseRejectionEvent),og=Ky("Promise",(function(){var t=Xy(Yy),r=t!==String(Yy);if(!r&&66===tg)return!0;if(!tg||tg<51||!/native code/.test(t)){var e=new Yy((function(t){t(1)})),n=function(t){t((function(){}),(function(){}))};if((e.constructor={})[rg]=n,!(eg=e.then((function(){}))instanceof n))return!0}return!(r||"BROWSER"!==Zy&&"DENO"!==Zy||ng)})),ig={CONSTRUCTOR:og,REJECTION_EVENT:ng,SUBCLASSING:eg},ug={},cg=mt,ag=TypeError,fg=function(t){var r,e;this.promise=new t((function(t,n){if(void 0!==r||void 0!==e)throw new ag("Bad Promise constructor");r=t,e=n})),this.resolve=cg(r),this.reject=cg(e)};ug.f=function(t){return new fg(t)};var sg,lg,hg,pg,vg=eo,dg=Td,yg=e,gg=Qo,mg=f,bg=Ze,wg=Ca,Og=hi,Sg=function(t){var r=Pd(t);Ad&&r&&!r[kd]&&Rd(r,kd,{configurable:!0,get:function(){return this}})},Eg=mt,xg=U,jg=G,Ig=Ul,Tg=Bd,Pg=dy.set,Rg=Vy,Ag=function(t,r){try{1===arguments.length?console.error(t):console.error(t,r)}catch(IS){}},kg=Hy,Ng=jy,Cg=ke,Lg=zy,Fg=ug,_g="Promise",Dg=ig.CONSTRUCTOR,Mg=ig.REJECTION_EVENT,Ug=ig.SUBCLASSING,Bg=Cg.getterFor(_g),Gg=Cg.set,Wg=Lg&&Lg.prototype,$g=Lg,Vg=Wg,Hg=yg.TypeError,zg=yg.document,Jg=yg.process,Yg=Fg.f,qg=Yg,Kg=!!(zg&&zg.createEvent&&yg.dispatchEvent),Xg="unhandledrejection",Qg=function(t){var r;return!(!jg(t)||!xg(r=t.then))&&r},Zg=function(t,r){var e,n,o,i=r.value,u=1===r.state,c=u?t.ok:t.fail,a=t.resolve,f=t.reject,s=t.domain;try{c?(u||(2===r.rejection&&om(r),r.rejection=1),!0===c?e=i:(s&&s.enter(),e=c(i),s&&(s.exit(),o=!0)),e===t.promise?f(new Hg("Promise-chain cycle")):(n=Qg(e))?mg(n,e,a,f):a(e)):f(i)}catch(IS){s&&!o&&s.exit(),f(IS)}},tm=function(t,r){t.notified||(t.notified=!0,Rg((function(){for(var e,n=t.reactions;e=n.get();)Zg(e,t);t.notified=!1,r&&!t.rejection&&em(t)})))},rm=function(t,r,e){var n,o;Kg?((n=zg.createEvent("Event")).promise=r,n.reason=e,n.initEvent(t,!1,!0),yg.dispatchEvent(n)):n={promise:r,reason:e},!Mg&&(o=yg["on"+t])?o(n):t===Xg&&Ag("Unhandled promise rejection",e)},em=function(t){mg(Pg,yg,(function(){var r,e=t.facade,n=t.value;if(nm(t)&&(r=kg((function(){dg?Jg.emit("unhandledRejection",n,e):rm(Xg,e,n)})),t.rejection=dg||nm(t)?2:1,r.error))throw r.value}))},nm=function(t){return 1!==t.rejection&&!t.parent},om=function(t){mg(Pg,yg,(function(){var r=t.facade;dg?Jg.emit("rejectionHandled",r):rm("rejectionhandled",r,t.value)}))},im=function(t,r,e){return function(n){t(r,n,e)}},um=function(t,r,e){t.done||(t.done=!0,e&&(t=e),t.value=r,t.state=2,tm(t,!0))},cm=function(t,r,e){if(!t.done){t.done=!0,e&&(t=e);try{if(t.facade===r)throw new Hg("Promise can't be resolved itself");var n=Qg(r);n?Rg((function(){var e={done:!1};try{mg(n,r,im(cm,e,t),im(um,e,t))}catch(IS){um(e,IS,t)}})):(t.value=r,t.state=1,tm(t,!1))}catch(IS){um({done:!1},IS,t)}}};if(Dg&&(Vg=($g=function(t){Ig(this,Vg),Eg(t),mg(sg,this);var r=Bg(this);try{t(im(cm,r),im(um,r))}catch(IS){um(r,IS)}}).prototype,(sg=function(t){Gg(this,{type:_g,done:!1,notified:!1,parent:!1,reactions:new Ng,rejection:!1,state:0,value:null})}).prototype=bg(Vg,"then",(function(t,r){var e=Bg(this),n=Yg(Tg(this,$g));return e.parent=!0,n.ok=!xg(t)||t,n.fail=xg(r)&&r,n.domain=dg?Jg.domain:void 0,0===e.state?e.reactions.add(n):Rg((function(){Zg(n,e)})),n.promise})),lg=function(){var t=new sg,r=Bg(t);this.promise=t,this.resolve=im(cm,r),this.reject=im(um,r)},Fg.f=Yg=function(t){return t===$g||t===hg?new lg(t):qg(t)},xg(Lg)&&Wg!==Object.prototype)){pg=Wg.then,Ug||bg(Wg,"then",(function(t,r){var e=this;return new $g((function(t,r){mg(pg,e,t,r)})).then(t,r)}),{unsafe:!0});try{delete Wg.constructor}catch(IS){}wg&&wg(Wg,Vg)}vg({global:!0,constructor:!0,wrap:!0,forced:Dg},{Promise:$g}),hg=gg.Promise,Og($g,_g,!1),Sg(_g);var am=nr("iterator"),fm=!1;try{var sm=0,lm={next:function(){return{done:!!sm++}},return:function(){fm=!0}};lm[am]=function(){return this},Array.from(lm,(function(){throw 2}))}catch(IS){}var hm=zy,pm=function(t,r){try{if(!r&&!fm)return!1}catch(IS){return!1}var e=!1;try{var n={};n[am]=function(){return{next:function(){return{done:e=!0}}}},t(n)}catch(IS){}return e},vm=ig.CONSTRUCTOR||!pm((function(t){hm.all(t).then(void 0,(function(){}))})),dm=f,ym=mt,gm=ug,mm=Hy,bm=Ip;eo({target:"Promise",stat:!0,forced:vm},{all:function(t){var r=this,e=gm.f(r),n=e.resolve,o=e.reject,i=mm((function(){var e=ym(r.resolve),i=[],u=0,c=1;bm(t,(function(t){var a=u++,f=!1;c++,dm(e,r,t).then((function(t){f||(f=!0,i[a]=t,--c||n(i))}),o)})),--c||n(i)}));return i.error&&o(i.value),e.promise}});var wm=eo,Om=ig.CONSTRUCTOR,Sm=zy,Em=H,xm=U,jm=Ze,Im=Sm&&Sm.prototype;if(wm({target:"Promise",proto:!0,forced:Om,real:!0},{catch:function(t){return this.then(void 0,t)}}),xm(Sm)){var Tm=Em("Promise").prototype.catch;Im.catch!==Tm&&jm(Im,"catch",Tm,{unsafe:!0})}var Pm=f,Rm=mt,Am=ug,km=Hy,Nm=Ip;eo({target:"Promise",stat:!0,forced:vm},{race:function(t){var r=this,e=Am.f(r),n=e.reject,o=km((function(){var o=Rm(r.resolve);Nm(t,(function(t){Pm(o,r,t).then(e.resolve,n)}))}));return o.error&&n(o.value),e.promise}});var Cm=ug;eo({target:"Promise",stat:!0,forced:ig.CONSTRUCTOR},{reject:function(t){var r=Cm.f(this);return(0,r.reject)(t),r.promise}});var Lm=Fr,Fm=G,_m=ug,Dm=eo,Mm=ig.CONSTRUCTOR,Um=function(t,r){if(Lm(t),Fm(r)&&r.constructor===t)return r;var e=_m.f(t);return(0,e.resolve)(r),e.promise};H("Promise"),Dm({target:"Promise",stat:!0,forced:Mm},{resolve:function(t){return Um(this,t)}});var Bm=O,Gm=mt,Wm=G,$m=$t,Vm=Go,Hm=u,zm=Function,Jm=Bm([].concat),Ym=Bm([].join),qm={},Km=function(t,r,e){if(!$m(qm,r)){for(var n=[],o=0;o<r;o++)n[o]="a["+o+"]";qm[r]=zm("C,a","return new C("+Ym(n,",")+")")}return qm[r](t,e)},Xm=Hm?zm.bind:function(t){var r=Gm(this),e=r.prototype,n=Vm(arguments,1),o=function(){var e=Jm(n,Vm(arguments));return this instanceof o?Km(r,e.length,e):r.apply(t,e)};return Wm(e)&&(o.prototype=e),o},Qm=eo,Zm=xc,tb=Xm,rb=Fd,eb=Fr,nb=G,ob=Uo,ib=o,ub=H("Reflect","construct"),cb=Object.prototype,ab=[].push,fb=ib((function(){function t(){}return!(ub((function(){}),[],t)instanceof t)})),sb=!ib((function(){ub((function(){}))})),lb=fb||sb;Qm({target:"Reflect",stat:!0,forced:lb,sham:lb},{construct:function(t,r){rb(t),eb(r);var e=arguments.length<3?t:rb(arguments[2]);if(sb&&!fb)return ub(t,r,e);if(t===e){switch(r.length){case 0:return new t;case 1:return new t(r[0]);case 2:return new t(r[0],r[1]);case 3:return new t(r[0],r[1],r[2]);case 4:return new t(r[0],r[1],r[2],r[3])}var n=[null];return Zm(ab,n,r),new(Zm(tb,t,n))}var o=e.prototype,i=ob(nb(o)?o:cb),u=Zm(t,i,r);return nb(u)?u:i}});var hb=$t,pb=f,vb=G,db=Fr,yb=function(t){return void 0!==t&&(hb(t,"value")||hb(t,"writable"))},gb=n,mb=ys;eo({target:"Reflect",stat:!0},{get:function t(r,e){var n,o,i=arguments.length<3?r:arguments[2];return db(r)===i?r[e]:(n=gb.f(r,e))?yb(n)?n.value:void 0===n.get?void 0:pb(n.get,i):vb(o=mb(r))?t(o,e,i):void 0}});var bb=e,wb=hi;eo({global:!0},{Reflect:{}}),wb(bb.Reflect,"Reflect",!0);var Ob,Sb,Eb=Fr,xb=o,jb=e.RegExp,Ib=xb((function(){var t=jb("a","y");return t.lastIndex=2,null!==t.exec("abcd")})),Tb=Ib||xb((function(){return!jb("a","y").sticky})),Pb={BROKEN_CARET:Ib||xb((function(){var t=jb("^r","gy");return t.lastIndex=2,null!==t.exec("str")})),MISSED_STICKY:Tb,UNSUPPORTED_Y:Ib},Rb=o,Ab=e.RegExp,kb=Rb((function(){var t=Ab(".","s");return!(t.dotAll&&t.test("\n")&&"s"===t.flags)})),Nb=o,Cb=e.RegExp,Lb=Nb((function(){var t=Cb("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")})),Fb=f,_b=O,Db=vo,Mb=function(){var t=Eb(this),r="";return t.hasIndices&&(r+="d"),t.global&&(r+="g"),t.ignoreCase&&(r+="i"),t.multiline&&(r+="m"),t.dotAll&&(r+="s"),t.unicode&&(r+="u"),t.unicodeSets&&(r+="v"),t.sticky&&(r+="y"),r},Ub=Pb,Bb=Uo,Gb=ke.get,Wb=kb,$b=Lb,Vb=Dt("native-string-replace",String.prototype.replace),Hb=RegExp.prototype.exec,zb=Hb,Jb=_b("".charAt),Yb=_b("".indexOf),qb=_b("".replace),Kb=_b("".slice),Xb=(Sb=/b*/g,Fb(Hb,Ob=/a/,"a"),Fb(Hb,Sb,"a"),0!==Ob.lastIndex||0!==Sb.lastIndex),Qb=Ub.BROKEN_CARET,Zb=void 0!==/()??/.exec("")[1];(Xb||Zb||Qb||Wb||$b)&&(zb=function(t){var r,e,n,o,i,u,c,a=this,f=Gb(a),s=Db(t),l=f.raw;if(l)return l.lastIndex=a.lastIndex,r=Fb(zb,l,s),a.lastIndex=l.lastIndex,r;var h=f.groups,p=Qb&&a.sticky,v=Fb(Mb,a),d=a.source,y=0,g=s;if(p&&(v=qb(v,"y",""),-1===Yb(v,"g")&&(v+="g"),g=Kb(s,a.lastIndex),a.lastIndex>0&&(!a.multiline||a.multiline&&"\n"!==Jb(s,a.lastIndex-1))&&(d="(?: "+d+")",g=" "+g,y++),e=new RegExp("^(?:"+d+")",v)),Zb&&(e=new RegExp("^"+d+"$(?!\\s)",v)),Xb&&(n=a.lastIndex),o=Fb(Hb,p?e:a,g),p?o?(o.input=Kb(o.input,y),o[0]=Kb(o[0],y),o.index=a.lastIndex,a.lastIndex+=o[0].length):a.lastIndex=0:Xb&&o&&(a.lastIndex=a.global?o.index+o[0].length:n),Zb&&o&&o.length>1&&Fb(Vb,o[0],e,(function(){for(i=1;i<arguments.length-2;i++)void 0===arguments[i]&&(o[i]=void 0)})),o&&h)for(o.groups=u=Bb(null),i=0;i<h.length;i++)u[(c=h[i])[0]]=o[c[1]];return o});var tw=zb;eo({target:"RegExp",proto:!0,forced:/./.exec!==tw},{exec:tw});var rw=G,ew=j,nw=nr("match"),ow=function(t){var r;return rw(t)&&(void 0!==(r=t[nw])?!!r:"RegExp"===ew(t))},iw=TypeError,uw=nr("match"),cw=eo,aw=function(t){if(ow(t))throw new iw("The method doesn't accept regular expressions");return t},fw=L,sw=vo,lw=function(t){var r=/./;try{"/./"[t](r)}catch(e){try{return r[uw]=!1,"/./"[t](r)}catch(n){}}return!1},hw=O("".indexOf);cw({target:"String",proto:!0,forced:!lw("includes")},{includes:function(t){return!!~hw(sw(fw(this)),sw(aw(t)),arguments.length>1?arguments[1]:void 0)}});var pw=O,vw=on,dw=vo,yw=L,gw=pw("".charAt),mw=pw("".charCodeAt),bw=pw("".slice),ww=function(t){return function(r,e){var n,o,i=dw(yw(r)),u=vw(e),c=i.length;return u<0||u>=c?t?"":void 0:(n=mw(i,u))<55296||n>56319||u+1===c||(o=mw(i,u+1))<56320||o>57343?t?gw(i,u):n:t?bw(i,u,u+2):o-56320+(n-55296<<10)+65536}},Ow={codeAt:ww(!1),charAt:ww(!0)},Sw=Ow.charAt,Ew=vo,xw=ke,jw=Xs,Iw=Qs,Tw="String Iterator",Pw=xw.set,Rw=xw.getterFor(Tw);jw(String,"String",(function(t){Pw(this,{type:Tw,string:Ew(t),index:0})}),(function(){var t,r=Rw(this),e=r.string,n=r.index;return n>=e.length?Iw(void 0,!0):(t=Sw(e,n),r.index+=t.length,Iw(t,!1))}));var Aw=f,kw=Ze,Nw=tw,Cw=o,Lw=nr,Fw=qr,_w=Lw("species"),Dw=RegExp.prototype,Mw=Ow.charAt,Uw=f,Bw=Fr,Gw=U,Ww=j,$w=tw,Vw=TypeError,Hw=f,zw=O,Jw=function(t,r,e,n){var o=Lw(t),i=!Cw((function(){var r={};return r[o]=function(){return 7},7!==""[t](r)})),u=i&&!Cw((function(){var r=!1,e=/a/;return"split"===t&&((e={}).constructor={},e.constructor[_w]=function(){return e},e.flags="",e[o]=/./[o]),e.exec=function(){return r=!0,null},e[o](""),!r}));if(!i||!u||e){var c=/./[o],a=r(o,""[t],(function(t,r,e,n,o){var u=r.exec;return u===Nw||u===Dw.exec?i&&!o?{done:!0,value:Aw(c,r,e,n)}:{done:!0,value:Aw(t,e,r,n)}:{done:!1}}));kw(String.prototype,t,a[0]),kw(Dw,o,a[1])}n&&Fw(Dw[o],"sham",!0)},Yw=Fr,qw=G,Kw=L,Xw=Bd,Qw=function(t,r,e){return r+(e?Mw(t,r).length:1)},Zw=ln,tO=vo,rO=Ot,eO=function(t,r){var e=t.exec;if(Gw(e)){var n=Uw(e,t,r);return null!==n&&Bw(n),n}if("RegExp"===Ww(t))return Uw($w,t,r);throw new Vw("RegExp#exec called on incompatible receiver")},nO=o,oO=Pb.UNSUPPORTED_Y,iO=Math.min,uO=zw([].push),cO=zw("".slice),aO=!nO((function(){var t=/(?:)/,r=t.exec;t.exec=function(){return r.apply(this,arguments)};var e="ab".split(t);return 2!==e.length||"a"!==e[0]||"b"!==e[1]})),fO="c"==="abbc".split(/(b)*/)[1]||4!=="test".split(/(?:)/,-1).length||2!=="ab".split(/(?:ab)*/).length||4!==".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length;Jw("split",(function(t,r,e){var n="0".split(void 0,0).length?function(t,e){return void 0===t&&0===e?[]:Hw(r,this,t,e)}:r;return[function(r,e){var o=Kw(this),i=qw(r)?rO(r,t):void 0;return i?Hw(i,r,o,e):Hw(n,tO(o),r,e)},function(t,o){var i=Yw(this),u=tO(t);if(!fO){var c=e(n,i,u,o,n!==r);if(c.done)return c.value}var a=Xw(i,RegExp),f=i.unicode,s=(i.ignoreCase?"i":"")+(i.multiline?"m":"")+(i.unicode?"u":"")+(oO?"g":"y"),l=new a(oO?"^(?:"+i.source+")":i,s),h=void 0===o?4294967295:o>>>0;if(0===h)return[];if(0===u.length)return null===eO(l,u)?[u]:[];for(var p=0,v=0,d=[];v<u.length;){l.lastIndex=oO?0:v;var y,g=eO(l,oO?cO(u,v):u);if(null===g||(y=iO(Zw(l.lastIndex+(oO?v:0)),u.length))===p)v=Qw(u,v,f);else{if(uO(d,cO(u,p,v)),d.length===h)return d;for(var m=1;m<=g.length-1;m++)if(uO(d,g[m]),d.length===h)return d;v=p=y}}return uO(d,cO(u,p)),d}]}),fO||!aO,oO);var sO=O,lO=$t,hO=SyntaxError,pO=parseInt,vO=String.fromCharCode,dO=sO("".charAt),yO=sO("".slice),gO=sO(/./.exec),mO={'\\"':'"',"\\\\":"\\","\\/":"/","\\b":"\b","\\f":"\f","\\n":"\n","\\r":"\r","\\t":"\t"},bO=/^[\da-f]{4}$/i,wO=/^[\u0000-\u001F]$/,OO=eo,SO=i,EO=e,xO=H,jO=O,IO=f,TO=U,PO=G,RO=Oi,AO=$t,kO=vo,NO=pn,CO=jf,LO=o,FO=function(t,r){for(var e=!0,n="";r<t.length;){var o=dO(t,r);if("\\"===o){var i=yO(t,r,r+2);if(lO(mO,i))n+=mO[i],r+=2;else{if("\\u"!==i)throw new hO('Unknown escape sequence: "'+i+'"');var u=yO(t,r+=2,r+4);if(!gO(bO,u))throw new hO("Bad Unicode escape at: "+r);n+=vO(pO(u,16)),r+=4}}else{if('"'===o){e=!1,r++;break}if(gO(wO,o))throw new hO("Bad control character in string literal at: "+r);n+=o,r++}}if(e)throw new hO("Unterminated string at: "+r);return{value:n,end:r}},_O=ut,DO=EO.JSON,MO=EO.Number,UO=EO.SyntaxError,BO=DO&&DO.parse,GO=xO("Object","keys"),WO=Object.getOwnPropertyDescriptor,$O=jO("".charAt),VO=jO("".slice),HO=jO(/./.exec),zO=jO([].push),JO=/^\d$/,YO=/^[1-9]$/,qO=/^[\d-]$/,KO=/^[\t\n\r ]$/,XO=function(t,r,e,n){var o,i,u,c,a,f=t[r],s=n&&f===n.value,l=s&&"string"==typeof n.source?{source:n.source}:{};if(PO(f)){var h=RO(f),p=s?n.nodes:h?[]:{};if(h)for(o=p.length,u=NO(f),c=0;c<u;c++)QO(f,c,XO(f,""+c,e,c<o?p[c]:void 0));else for(i=GO(f),u=NO(i),c=0;c<u;c++)a=i[c],QO(f,a,XO(f,a,e,AO(p,a)?p[a]:void 0))}return IO(e,t,r,f,l)},QO=function(t,r,e){if(SO){var n=WO(t,r);if(n&&!n.configurable)return}void 0===e?delete t[r]:CO(t,r,e)},ZO=function(t,r,e,n){this.value=t,this.end=r,this.source=e,this.nodes=n},tS=function(t,r){this.source=t,this.index=r};tS.prototype={fork:function(t){return new tS(this.source,t)},parse:function(){var t=this.source,r=this.skip(KO,this.index),e=this.fork(r),n=$O(t,r);if(HO(qO,n))return e.number();switch(n){case"{":return e.object();case"[":return e.array();case'"':return e.string();case"t":return e.keyword(!0);case"f":return e.keyword(!1);case"n":return e.keyword(null)}throw new UO('Unexpected character: "'+n+'" at: '+r)},node:function(t,r,e,n,o){return new ZO(r,n,t?null:VO(this.source,e,n),o)},object:function(){for(var t=this.source,r=this.index+1,e=!1,n={},o={};r<t.length;){if(r=this.until(['"',"}"],r),"}"===$O(t,r)&&!e){r++;break}var i=this.fork(r).string(),u=i.value;r=i.end,r=this.until([":"],r)+1,r=this.skip(KO,r),i=this.fork(r).parse(),CO(o,u,i),CO(n,u,i.value),r=this.until([",","}"],i.end);var c=$O(t,r);if(","===c)e=!0,r++;else if("}"===c){r++;break}}return this.node(1,n,this.index,r,o)},array:function(){for(var t=this.source,r=this.index+1,e=!1,n=[],o=[];r<t.length;){if(r=this.skip(KO,r),"]"===$O(t,r)&&!e){r++;break}var i=this.fork(r).parse();if(zO(o,i),zO(n,i.value),r=this.until([",","]"],i.end),","===$O(t,r))e=!0,r++;else if("]"===$O(t,r)){r++;break}}return this.node(1,n,this.index,r,o)},string:function(){var t=this.index,r=FO(this.source,this.index+1);return this.node(0,r.value,t,r.end)},number:function(){var t=this.source,r=this.index,e=r;if("-"===$O(t,e)&&e++,"0"===$O(t,e))e++;else{if(!HO(YO,$O(t,e)))throw new UO("Failed to parse number at: "+e);e=this.skip(JO,e+1)}if(("."===$O(t,e)&&(e=this.skip(JO,e+1)),"e"===$O(t,e)||"E"===$O(t,e))&&(e++,"+"!==$O(t,e)&&"-"!==$O(t,e)||e++,e===(e=this.skip(JO,e))))throw new UO("Failed to parse number's exponent value at: "+e);return this.node(0,MO(VO(t,r,e)),r,e)},keyword:function(t){var r=""+t,e=this.index,n=e+r.length;if(VO(this.source,e,n)!==r)throw new UO("Failed to parse value at: "+e);return this.node(0,t,e,n)},skip:function(t,r){for(var e=this.source;r<e.length&&HO(t,$O(e,r));r++);return r},until:function(t,r){r=this.skip(KO,r);for(var e=$O(this.source,r),n=0;n<t.length;n++)if(t[n]===e)return r;throw new UO('Unexpected character: "'+e+'" at: '+r)}};var rS=LO((function(){var t,r="9007199254740993";return BO(r,(function(r,e,n){t=n.source})),t!==r})),eS=_O&&!LO((function(){return 1/BO("-0 \t")!=-1/0}));OO({target:"JSON",stat:!0,forced:rS},{parse:function(t,r){return eS&&!TO(r)?BO(t):function(t,r){t=kO(t);var e=new tS(t,0),n=e.parse(),o=n.value,i=e.skip(KO,n.end);if(i<t.length)throw new UO('Unexpected extra character: "'+$O(t,i)+'" after the parsed data at: '+i);return TO(r)?XO({"":o},"",r,n):o}(t,r)}});var nS={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0},oS=mr("span").classList,iS=oS&&oS.constructor&&oS.constructor.prototype,uS=iS===Object.prototype?void 0:iS,cS=qi.forEach,aS=pl("forEach")?[].forEach:function(t){return cS(this,t,arguments.length>1?arguments[1]:void 0)},fS=e,sS=nS,lS=uS,hS=aS,pS=qr,vS=function(t){if(t&&t.forEach!==hS)try{pS(t,"forEach",hS)}catch(IS){t.forEach=hS}};for(var dS in sS)sS[dS]&&vS(fS[dS]&&fS[dS].prototype);vS(lS);var yS=e,gS=nS,mS=uS,bS=sl,wS=qr,OS=hi,SS=nr("iterator"),ES=bS.values,xS=function(t,r){if(t){if(t[SS]!==ES)try{wS(t,SS,ES)}catch(IS){t[SS]=ES}if(OS(t,r,!0),gS[r])for(var e in bS)if(t[e]!==bS[e])try{wS(t,e,bS[e])}catch(IS){t[e]=bS[e]}}};for(var jS in gS)xS(yS[jS]&&yS[jS].prototype,jS);xS(mS,"DOMTokenList"),function(){function r(t,r){return(r||"")+" (SystemJS https://github.com/systemjs/systemjs/blob/main/docs/errors.md#"+t+")"}function e(t,r){if(-1!==t.indexOf("\\")&&(t=t.replace(x,"/")),"/"===t[0]&&"/"===t[1])return r.slice(0,r.indexOf(":")+1)+t;if("."===t[0]&&("/"===t[1]||"."===t[1]&&("/"===t[2]||2===t.length&&(t+="/"))||1===t.length&&(t+="/"))||"/"===t[0]){var e,n=r.slice(0,r.indexOf(":")+1);if(e="/"===r[n.length+1]?"file:"!==n?(e=r.slice(n.length+2)).slice(e.indexOf("/")+1):r.slice(8):r.slice(n.length+("/"===r[n.length])),"/"===t[0])return r.slice(0,r.length-e.length-1)+t;for(var o=e.slice(0,e.lastIndexOf("/")+1)+t,i=[],u=-1,c=0;c<o.length;c++)-1!==u?"/"===o[c]&&(i.push(o.slice(u,c+1)),u=-1):"."===o[c]?"."!==o[c+1]||"/"!==o[c+2]&&c+2!==o.length?"/"===o[c+1]||c+1===o.length?c+=1:u=c:(i.pop(),c+=2):u=c;return-1!==u&&i.push(o.slice(u)),r.slice(0,r.length-e.length)+i.join("")}}function n(t,r){return e(t,r)||(-1!==t.indexOf(":")?t:e("./"+t,r))}function o(t,r,n,o,i){for(var u in t){var c=e(u,n)||u,s=t[u];if("string"==typeof s){var l=f(o,e(s,n)||s,i);l?r[c]=l:a("W1",u,s)}}}function i(t,r,e){var i;for(i in t.imports&&o(t.imports,e.imports,r,e,null),t.scopes||{}){var u=n(i,r);o(t.scopes[i],e.scopes[u]||(e.scopes[u]={}),r,e,u)}for(i in t.depcache||{})e.depcache[n(i,r)]=t.depcache[i];for(i in t.integrity||{})e.integrity[n(i,r)]=t.integrity[i]}function u(t,r){if(r[t])return t;var e=t.length;do{var n=t.slice(0,e+1);if(n in r)return n}while(-1!==(e=t.lastIndexOf("/",e-1)))}function c(t,r){var e=u(t,r);if(e){var n=r[e];if(null===n)return;if(!(t.length>e.length&&"/"!==n[n.length-1]))return n+t.slice(e.length);a("W2",e,n)}}function a(t,e,n){console.warn(r(t,[n,e].join(", ")))}function f(t,r,e){for(var n=t.scopes,o=e&&u(e,n);o;){var i=c(r,n[o]);if(i)return i;o=u(o.slice(0,o.lastIndexOf("/")),n)}return c(r,t.imports)||-1!==r.indexOf(":")&&r}function s(){this[I]={}}function l(t,e,n,o){var i=t[I][e];if(i)return i;var u=[],c=Object.create(null);j&&Object.defineProperty(c,j,{value:"Module"});var a=Promise.resolve().then((function(){return t.instantiate(e,n,o)})).then((function(n){if(!n)throw Error(r(2,e));var o=n[1]((function(t,r){i.h=!0;var e=!1;if("string"==typeof t)t in c&&c[t]===r||(c[t]=r,e=!0);else{for(var n in t)r=t[n],n in c&&c[n]===r||(c[n]=r,e=!0);t&&t.__esModule&&(c.__esModule=t.__esModule)}if(e)for(var o=0;o<u.length;o++){var a=u[o];a&&a(c)}return r}),2===n[1].length?{import:function(r,n){return t.import(r,e,n)},meta:t.createContext(e)}:void 0);return i.e=o.execute||function(){},[n[0],o.setters||[],n[2]||[]]}),(function(t){throw i.e=null,i.er=t,t})),f=a.then((function(r){return Promise.all(r[0].map((function(n,o){var i=r[1][o],u=r[2][o];return Promise.resolve(t.resolve(n,e)).then((function(r){var n=l(t,r,e,u);return Promise.resolve(n.I).then((function(){return i&&(n.i.push(i),!n.h&&n.I||i(n.n)),n}))}))}))).then((function(t){i.d=t}))}));return i=t[I][e]={id:e,i:u,n:c,m:o,I:a,L:f,h:!1,d:void 0,e:void 0,er:void 0,E:void 0,C:void 0,p:void 0}}function h(t,r,e,n){if(!n[r.id])return n[r.id]=!0,Promise.resolve(r.L).then((function(){return r.p&&null!==r.p.e||(r.p=e),Promise.all(r.d.map((function(r){return h(t,r,e,n)})))})).catch((function(t){if(r.er)throw t;throw r.e=null,t}))}function p(t,r){return r.C=h(t,r,r,{}).then((function(){return v(t,r,{})})).then((function(){return r.n}))}function v(t,r,e){function n(){try{var t=i.call(P);if(t)return t=t.then((function(){r.C=r.n,r.E=null}),(function(t){throw r.er=t,r.E=null,t})),r.E=t;r.C=r.n,r.L=r.I=void 0}catch(e){throw r.er=e,e}}if(!e[r.id]){if(e[r.id]=!0,!r.e){if(r.er)throw r.er;return r.E?r.E:void 0}var o,i=r.e;return r.e=null,r.d.forEach((function(n){try{var i=v(t,n,e);i&&(o=o||[]).push(i)}catch(c){throw r.er=c,c}})),o?Promise.all(o).then(n):n()}}function d(){[].forEach.call(document.querySelectorAll("script"),(function(t){if(!t.sp)if("systemjs-module"===t.type){if(t.sp=!0,!t.src)return;System.import("import:"===t.src.slice(0,7)?t.src.slice(7):n(t.src,y)).catch((function(r){if(r.message.indexOf("https://github.com/systemjs/systemjs/blob/main/docs/errors.md#3")>-1){var e=document.createEvent("Event");e.initEvent("error",!1,!1),t.dispatchEvent(e)}return Promise.reject(r)}))}else if("systemjs-importmap"===t.type){t.sp=!0;var e=t.src?(System.fetch||fetch)(t.src,{integrity:t.integrity,priority:t.fetchPriority,passThrough:!0}).then((function(t){if(!t.ok)throw Error(t.status);return t.text()})).catch((function(e){return e.message=r("W4",t.src)+"\n"+e.message,console.warn(e),"function"==typeof t.onerror&&t.onerror(),"{}"})):t.innerHTML;k=k.then((function(){return e})).then((function(e){!function(t,e,n){var o={};try{o=JSON.parse(e)}catch(c){console.warn(Error(r("W5")))}i(o,n,t)}(N,e,t.src||y)}))}}))}var y,g="undefined"!=typeof Symbol,m="undefined"!=typeof self,b="undefined"!=typeof document,w=m?self:t;if(b){var O=document.querySelector("base[href]");O&&(y=O.href)}if(!y&&"undefined"!=typeof location){var S=(y=location.href.split("#")[0].split("?")[0]).lastIndexOf("/");-1!==S&&(y=y.slice(0,S+1))}var E,x=/\\/g,j=g&&Symbol.toStringTag,I=g?Symbol():"@",T=s.prototype;T.import=function(t,r,e){var n=this;return r&&"object"==typeof r&&(e=r,r=void 0),Promise.resolve(n.prepareImport()).then((function(){return n.resolve(t,r,e)})).then((function(t){var r=l(n,t,void 0,e);return r.C||p(n,r)}))},T.createContext=function(t){var r=this;return{url:t,resolve:function(e,n){return Promise.resolve(r.resolve(e,n||t))}}},T.register=function(t,r,e){E=[t,r,e]},T.getRegister=function(){var t=E;return E=void 0,t};var P=Object.freeze(Object.create(null));w.System=new s;var R,A,k=Promise.resolve(),N={imports:{},scopes:{},depcache:{},integrity:{}},C=b;if(T.prepareImport=function(t){return(C||t)&&(d(),C=!1),k},T.getImportMap=function(){return JSON.parse(JSON.stringify(N))},b&&(d(),window.addEventListener("DOMContentLoaded",d)),T.addImportMap=function(t,r){i(t,r||y,N)},b){window.addEventListener("error",(function(t){F=t.filename,_=t.error}));var L=location.origin}T.createScript=function(t){var r=document.createElement("script");r.async=!0,t.indexOf(L+"/")&&(r.crossOrigin="anonymous");var e=N.integrity[t];return e&&(r.integrity=e),r.src=t,r};var F,_,D={},M=T.register;T.register=function(t,r){if(b&&"loading"===document.readyState&&"string"!=typeof t){var e=document.querySelectorAll("script[src]"),n=e[e.length-1];if(n){R=t;var o=this;A=setTimeout((function(){D[n.src]=[t,r],o.import(n.src)}))}}else R=void 0;return M.call(this,t,r)},T.instantiate=function(t,e){var n=D[t];if(n)return delete D[t],n;var o=this;return Promise.resolve(T.createScript(t)).then((function(n){return new Promise((function(i,u){n.addEventListener("error",(function(){u(Error(r(3,[t,e].join(", "))))})),n.addEventListener("load",(function(){if(document.head.removeChild(n),F===t)u(_);else{var r=o.getRegister(t);r&&r[0]===R&&clearTimeout(A),i(r)}})),document.head.appendChild(n)}))}))},T.shouldFetch=function(){return!1},"undefined"!=typeof fetch&&(T.fetch=fetch);var U=T.instantiate,B=/^(text|application)\/(x-)?javascript(;|$)/;T.instantiate=function(t,e,n){var o=this;return this.shouldFetch(t,e,n)?this.fetch(t,{credentials:"same-origin",integrity:N.integrity[t],meta:n}).then((function(n){if(!n.ok)throw Error(r(7,[n.status,n.statusText,t,e].join(", ")));var i=n.headers.get("content-type");if(!i||!B.test(i))throw Error(r(4,i));return n.text().then((function(r){return r.indexOf("//# sourceURL=")<0&&(r+="\n//# sourceURL="+t),(0,eval)(r),o.getRegister(t)}))})):U.apply(this,arguments)},T.resolve=function(t,n){return f(N,e(t,n=n||y)||t,n)||function(t,e){throw Error(r(8,[t,e].join(", ")))}(t,n)};var G=T.instantiate;T.instantiate=function(t,r,e){var n=N.depcache[t];if(n)for(var o=0;o<n.length;o++)l(this,this.resolve(n[o],t),t);return G.call(this,t,r,e)},m&&"function"==typeof importScripts&&(T.instantiate=function(t){var r=this;return Promise.resolve().then((function(){return importScripts(t),r.getRegister(t)}))})}()}();
@charset "UTF-8";.ibiz-checkbox{--ibiz-checkbox-font-size: var(--ibiz-font-size-base);--ibiz-checkbox-text-color: var(--ibiz-text-color);--ibiz-checkbox-disabled-bg-color: var(--ibiz-disabled-bg-color);--ibiz-checkbox-default-height: var(--ibiz-common-editor-size);--ibiz-checkbox-disabled-border-color: var(--ibiz-disabled-border-color)}.ibiz-checkbox .ivu-checkbox-group-item{height:var(--ibiz-checkbox-default-height);line-height:var(--ibiz-checkbox-default-height)}.ibiz-checkbox .ivu-checkbox-inner{border-color:var(--ibiz-border-color)}.ibiz-checkbox .ivu-checkbox-checked .ivu-checkbox-inner{background-color:var(--ibiz-color-primary);border-color:var(--ibiz-color-primary)}.ibiz-checkbox .ivu-checkbox-disabled .ivu-checkbox-inner{background-color:var(--ibiz-disabled-bg-color);border-color:var(--ibiz-disabled-border-color)}.ibiz-checkbox .ivu-checkbox-disabled .ivu-checkbox-inner:after{border-color:var(--ibiz-disabled-border-color)}.ibiz-checkbox .ivu-checkbox-disabled+.ibiz-checkbox__text{color:var(--ibiz-text-color-disabled)}.ibiz-checkbox .ivu-checkbox:not(.ivu-checkbox-disabled):hover .ivu-checkbox-inner{border-color:var(--ibiz-color-primary)}.ibiz-checkbox__text{font-size:var(--ibiz-checkbox-font-size);color:var(--ibiz-checkbox-text-color)}.ibiz-checkbox--readonly{color:var(--ibiz-text-color-readonly)}.ibiz-checkbox--disabled .ivu-checkbox-checked .ivu-checkbox-inner{background-color:var(--ibiz-checkbox-disabled-bg-color);border-color:var(--ibiz-checkbox-disabled-border-color)}.ibiz-search-form--user2{display:flex;flex-direction:row}.ibiz-search-form--user2 .ibiz-search-form-buttons{align-items:end;padding-top:calc(var(--ibiz-padding) / 2);padding-bottom:calc(var(--ibiz-padding) / 2)}.ibiz-search-form-buttons{--ibiz-search-form-buttons-padding: 0 16px 16px;--ibiz-search-form-buttons-btn-margin: 0 0 0 10px;--ibiz-search-form-buttons-search-btn-bg-color: var(--ibiz-color-primary);--ibiz-search-form-buttons-search-btn-bg-color-hover: #337aff;--ibiz-search-form-buttons-search-btn-color: #fff;--ibiz-search-form-buttons-default-height: var(--ibiz-common-editor-size);display:flex;align-items:center;justify-content:flex-end;padding:var(--ibiz-search-form-buttons-padding)}.ibiz-search-form-buttons__search{height:var(--ibiz-search-form-buttons-default-height);color:var(--ibiz-search-form-buttons-search-btn-color);background-color:var(--ibiz-search-form-buttons-search-btn-bg-color);border-color:var(--ibiz-color-primary);border-radius:var(--ibiz-border-radius-small)}.ibiz-search-form-buttons__search:hover{color:var(--ibiz-search-form-buttons-search-btn-color);background-color:var(--ibiz-search-form-buttons-search-btn-bg-color-hover)}.ibiz-search-form-buttons__reset{height:var(--ibiz-search-form-buttons-default-height);margin:var(--ibiz-search-form-buttons-btn-margin);border-radius:var(--ibiz-border-radius-small)}.ibiz-search-form-buttons__reset:hover{color:var(--ibiz-color-primary);border-color:var(--ibiz-color-primary)}.ibiz-search-form{--ibiz-search-form-bg-color: #fff;--ibiz-search-form-margin: 16px 0 0 24px;margin:var(--ibiz-search-form-buttons-margin);background-color:var(--ibiz-search-form-buttons-bg-color)}.ibiz-search-form .ibiz-form-page-item{padding-top:calc(var(--ibiz-padding) / 2)}.ibiz-search-form .ibiz-form-page-item-child{margin-bottom:0}.ibiz-search-form .ibiz-form-item-container{padding-right:calc(var(--ibiz-padding-right) / 2);padding-bottom:calc(var(--ibiz-padding-right) / 2)}.ibiz-search-form .ibiz-form-item-container .ibiz-form-item-container__label{color:var(--ibiz-text-color)}
{
"name": "@ibiz-template-plugin/sy-checkin-web",
"version": "0.0.1",
"description": "ibiz full-dynamic-vue 模板项目扩展插件示例",
"author": "tony001",
"license": "MIT",
"type": "module",
"main": "dist/ibiz-template-plugin.es.js",
"module": "dist/ibiz-template-plugin.es.js",
"types": "dist/types/index.d.ts",
"system": "dist/index.legacy.js",
"files": [
"dist",
"src",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"dev": "vite build --watch",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"publish:next": "npm run build && npm publish --access public --tag next",
"publish:npm": "npm run build && npm publish --access public",
"publish:local": "npm run build && npm publish --access public --registry=http://172.16.240.221:8081/repository/local/"
},
"dependencies": {
"@ibiz-template/command": "^0.0.1-syui.1",
"@ibiz-template/controller": "^0.0.1-syui.18",
"@ibiz-template/core": "^0.0.1-syui.18",
"@ibiz-template/model": "^0.0.1-syui.18",
"@ibiz-template/runtime": "^0.0.1-syui.18",
"@ibiz-template/service": "^0.0.1-syui.19",
"@ibiz-template/theme": "^0.0.1-syui.18",
"@ibiz-template/vue-util": "^0.0.1-syui.18",
"async-validator": "^4.2.5",
"axios": "^1.1.3",
"core-js": "3",
"dayjs": "^1.11.6",
"lodash-es": "^4.17.21",
"pluralize": "^8.0.0",
"qs": "^6.11.0",
"qx-util": "^0.4.8",
"ramda": "^0.28.0",
"vue": "^2.7.13",
"vue-router": "^3.6.5"
},
"peerDependencies": {
"@ibiz-template/command": "^0.0.1-beta.50",
"@ibiz-template/controller": "^0.0.1-beta.59",
"@ibiz-template/core": "^0.0.1-beta.57",
"@ibiz-template/model": "^0.0.1-beta.59",
"@ibiz-template/runtime": "^0.0.1-beta.59",
"@ibiz-template/service": "^0.0.1-beta.59",
"@ibiz-template/theme": "^0.0.1-beta.59",
"@ibiz-template/vue-util": "^0.0.1-beta.59",
"async-validator": "^4.2.5",
"axios": "^1.1.3",
"core-js": "3",
"dayjs": "^1.11.6",
"lodash-es": "^4.17.21",
"pluralize": "^8.0.0",
"qs": "^6.11.0",
"qx-util": "^0.4.8",
"ramda": "^0.28.0",
"vue": "^2.7.13",
"vue-router": "^3.6.5"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@qx-chitanda/vite-plugin-lib-legacy": "^4.1.0",
"@types/lodash-es": "^4.17.7",
"@types/ramda": "^0.28.20",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vitejs/plugin-legacy": "^2.3.0",
"@vitejs/plugin-vue2": "^2.2.0",
"@vitejs/plugin-vue2-jsx": "^1.1.0",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.7.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"rollup-plugin-visualizer": "^5.8.3",
"sass": "^1.55.0",
"stylelint": "^14.14.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-scss": "^6.0.0",
"stylelint-scss": "^4.3.0",
"terser": "^5.15.1",
"typescript": "^4.8.4",
"vite": "^4.2.1",
"vite-plugin-dts": "^1.6.6",
"vite-plugin-eslint": "^1.8.1",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^1.0.9"
},
"lint-staged": {
"*.{ts,vue}": "eslint --fix",
"*.less": "stylelint --syntax=scss"
}
}
\ No newline at end of file
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册