提交 779a5be0 编写于 作者: zhangpingchuan's avatar zhangpingchuan

feat: 更新插件

上级 bb71ae00
var k = Object.defineProperty;
var q = (r, a, i) => a in r ? k(r, a, { enumerable: !0, configurable: !0, writable: !0, value: i }) : r[a] = i;
var d = (r, a, i) => (q(r, typeof a != "symbol" ? a + "" : a, i), i);
import { EditFormModel as J } from "@ibiz-template/model";
import { useNamespace as W, useControlController as Y, usePropsWatch as _ } from "@ibiz-template/vue-util";
import { defineComponent as $, getCurrentInstance as H, ref as p, watch as K, h as s } from "vue";
import { createUUID as V } from "qx-util";
import { ViewMode as R } from "@ibiz-template/runtime";
import { EditFormController as Q } from "@ibiz-template/controller";
import { ControlVO as X } from "@ibiz-template/service";
class Z extends Q {
constructor() {
super(...arguments);
/**
* 基础数据
*
* @author fangZhiHao
* @date 2024-04-26 17:04:49
* @type {IData}
*/
d(this, "baseResData", []);
/**
* 对比数据
*
* @author fangZhiHao
* @date 2024-04-26 17:04:49
* @type {IData}
*/
d(this, "compareResData", []);
/**
* 表单旧数据
*
* @author zk
* @date 2023-12-20 11:12:43
* @protected
* @type {IData}
* @memberof FormController
*/
d(this, "oldData", new X());
/**
* version数据
*
* @author fangZhiHao
* @date 2024-04-26 16:04:37
* @type {IData[]}
*/
d(this, "versionData", []);
/**
* 对比数据
*
* @author fangZhiHao
* @date 2024-04-26 16:04:37
* @type {IData[]}
*/
d(this, "comparisonArr", {});
/**
* 基础表格数据
*
* @author fangZhiHao
* @date 2024-05-06 11:05:57
* @type {IData[]}
*/
d(this, "gridData", []);
/**
* 展示完全数据
*
* @author fangZhiHao
* @date 2024-05-06 11:05:04
* @type {IData[]}
*/
d(this, "AllGridData", []);
/**
* 去除相同数据
*
* @author fangZhiHao
* @date 2024-05-06 11:05:15
* @type {IData[]}
*/
d(this, "removeSameGridData", []);
/**
* 关系界面数据
*
* @author fangZhiHao
* @date 2024-04-30 10:04:33
* @type {IData}
*/
d(this, "AlldruipartData", /* @__PURE__ */ new Map());
/**
* 关系界面数据长度
*
* @author fangZhiHao
* @date 2024-05-06 11:05:56
* @type {number}
*/
d(this, "druipartDataSize", 0);
/**
* 关系界面实际数据
*
* @author fangZhiHao
* @date 2024-05-06 11:05:13
* @type {IData}
*/
d(this, "newDruipartData", {});
}
/**
* 加载数据
*
* @return {*} {Promise<ControlVO>}
* @memberof FormDataComparisonController
*/
async loadGridData() {
await this.startLoading();
const i = this.model.source.M.getPSControlParam.ctrlParams, { BASEENTITY: o, COMPAREENTITY: y } = i, h = await ibiz.entityService.getService(o), v = await ibiz.entityService.getService(y), f = Object.assign({}, this.context.clone(), {
[o.toLowerCase()]: this.params.base_version
}), F = Object.assign({}, this.context.clone(), {
[y.toLowerCase()]: this.params.compare_version
}), D = await h.exec("Get", f, this.params), b = await v.exec(
"Get",
F,
this.params
);
return this.isLoaded = !0, {
baseData: D.data.data,
compareData: b.data.data
};
}
/**
* 判断值是否为空
*
* @param {(string | IData[] | null | undefined)} value
* @return {*}
* @memberof FormDataComparisonController
*/
isFalseyButNotEmpty(i) {
return i == null || typeof i == "string" && i === "" || Array.isArray(i) && i.length === 0 || typeof i == "object" && Object.keys(i).length === 0;
}
/**
* 比较两个值
*
* @param {IData} objA
* @param {IData} objB
* @return {*}
* @memberof FormDataComparisonController
*/
compareObjectValues(i, o) {
return JSON.stringify(i) !== JSON.stringify(o);
}
}
const ee = $({
name: "IBizFormDataComparison",
props: {
modelData: {
type: J,
required: !0
},
context: {
type: Object,
required: !0
},
params: {
type: Object,
default: () => ({})
},
enableAutoSave: {
type: Boolean,
required: !1
}
},
setup(r) {
const a = W("form-data-comparison"), {
proxy: i
} = H(), o = Y(i, () => {
const e = new Z(r.modelData, r.context, r.params);
return _(i, "enableAutoSave", e.setEnableAutoSave.bind(e)), e;
}), y = p(!1), h = p({}), v = p({}), f = p([]), F = [], D = p([]), b = p([]), B = p([]), L = /* @__PURE__ */ new Map(), P = p(0), I = (e) => {
const t = [];
if (t.push(e), e && e.children) {
const n = [];
e.children.forEach((c) => {
const u = I(c);
n.push(...u);
}), t.push(...n);
}
return t;
}, j = I(r.modelData);
F.push(...j);
const x = (e) => {
const t = o.details[e.source.name], n = s("not-supported-editor", {
attrs: {
modelData: e.editor
}
});
return s("div", {
class: [a.e("form-grid-item"), a.is("add", D.value.includes(e.source.name)), a.is("update", B.value.includes(e.source.name)), a.is("delete", b.value.includes(e.source.name))]
}, [s("div", {
class: a.em("form-grid-item", "name")
}, [e.source.caption]), s("div", {
class: a.em("form-grid-item", "left")
}, [t.editorProvider ? s(t.editorProvider.formEditor, {
props: {
value: v.value[e.source.name],
data: t.data,
controller: t.editor,
disabled: t.disabled,
readonly: !0
}
}) : n]), s("div", {
class: a.em("form-grid-item", "right")
}, [t.editorProvider ? s(t.editorProvider.formEditor, {
props: {
value: h.value[e.source.name],
data: t.data,
controller: t.editor,
disabled: t.disabled,
readonly: !0
}
}) : n])]);
}, O = (e, t) => {
L.set(e.source.id, t), t.evt.on("mounted", () => {
o.startLoading(), P.value += 1, t.call.refresh();
}), t.evt.on("refreshed", () => {
P.value -= 1, setTimeout(() => {
o.endLoading();
}, 500);
});
}, z = (e) => {
const t = F.find((E) => E.id === `${e.source.id}_srfcopy`), n = e.embedView.source.modelPath, c = t == null ? void 0 : t.embedView.source.modelPath, u = o.context.clone(), l = {
base_version: r.params.base_version
}, m = o.context.clone();
Object.assign(m, {
gysrlzy_info: r.params.compare_version,
compare_version: r.params.compare_version
});
const g = {
compare_version: r.params.compare_version
}, w = h.value[e.source.userTag], C = v.value[t == null ? void 0 : t.source.userTag];
let M = !1, S = !1, A = !1;
return o.isFalseyButNotEmpty(w) && !o.isFalseyButNotEmpty(C) ? M = !0 : !o.isFalseyButNotEmpty(w) && o.isFalseyButNotEmpty(C) ? A = !0 : !o.isFalseyButNotEmpty(w) && !o.isFalseyButNotEmpty(C) && o.compareObjectValues(w, C) && (S = !0), s("div", {
class: [a.e("druipart"), a.is("add", M), a.is("update", S), a.is("delete", A)]
}, [s("div", {
class: a.em("druipart", "caption")
}, [e.source.caption]), s("div", {
class: a.em("druipart", "left")
}, [c && s("ViewShell", {
attrs: {
context: m,
params: g,
modal: {
mode: R.EMBED
},
modelPath: c,
noLoadDefault: !0
},
key: V(),
on: {
neuronInit: (E) => O(t, E)
}
})]), s("div", {
class: a.em("druipart", "right")
}, [n && s("ViewShell", {
attrs: {
context: u,
params: l,
modal: {
mode: R.EMBED
},
modelPath: n,
noLoadDefault: !0
},
key: V(),
on: {
neuronInit: (E) => O(e, E)
}
})])]);
}, G = (e) => {
const t = {
modelData: e,
controller: o.details[e.source.name]
}, n = o.providers[e.source.name], c = s(n.component, {
props: {
...t
},
key: e.id
}), u = s(n.component, {
props: {
...t
},
key: `compare_${e.id}`
});
return s("div", {
class: a.e("mdctrl")
}, [s("div", {
class: a.em("mdctrl", "caption")
}, [e.source.caption]), s("div", {
class: a.em("mdctrl", "left")
}, [c]), s("div", {
class: a.em("mdctrl", "right")
}, [u])]);
}, T = (e) => {
const t = f.value.findIndex((n) => n === e.source.name);
t > -1 ? f.value.splice(t, 1) : f.value.push(e.source.name);
}, N = (e) => {
if (!e.source.hidden) {
if (e.source.detailType === "FORMPAGE")
return s("div", {
class: a.e("form-page")
}, [e.children.map((t) => N(t))]);
if (e.source.detailType === "FORMITEM") {
const t = D.value.includes(e.source.name), n = b.value.includes(e.source.name), c = B.value.includes(e.source.name);
return y.value && !t && !n && !c ? null : x(e);
}
if (e.source.detailType === "GROUPPANEL") {
const t = f.value.includes(e.source.name);
return s("div", {
class: a.b("group")
}, [s("div", {
class: [a.be("group", "header"), a.is("hide-caption", !e.source.showCaption)]
}, [s("div", {
class: a.bem("group", "header", "name")
}, [t ? s("i-icon", {
class: a.bem("group", "header", "icon"),
attrs: {
type: "ios-arrow-forward",
title: "展开"
},
on: {
click: () => T(e)
}
}) : s("i-icon", {
class: a.bem("group", "header", "icon"),
attrs: {
type: "ios-arrow-down",
title: "收缩"
},
on: {
click: () => T(e)
}
}), s("span", {
class: a.bem("group", "header", "name-text")
}, [e.source.caption || e.source.title])]), s("div", ["---"]), s("div", ["---"])]), s("div", {
class: [a.be("group", "content"), a.is("collapse", t)]
}, [e.children.map((n) => N(n))])]);
}
return e.source.detailType === "DRUIPART" && !e.source.name.endsWith("_srfcopy") ? z(e) : e.source.detailType === "MDCTRL" ? G(e) : null;
}
}, U = (e, t) => {
const n = [], c = [], u = [];
return Object.keys(t).forEach((l) => {
const m = e[l], g = t[l];
o.isFalseyButNotEmpty(m) && !o.isFalseyButNotEmpty(g) && n.push(l), !o.isFalseyButNotEmpty(m) && !o.isFalseyButNotEmpty(g) && o.compareObjectValues(m, g) && c.push(l);
}), Object.keys(e).forEach((l) => {
if (!Object.prototype.hasOwnProperty.call(t, l) || o.isFalseyButNotEmpty(t[l])) {
const m = e[l];
o.isFalseyButNotEmpty(m) || u.push(l);
}
}), {
added: n,
modified: c,
deleted: u
};
};
return K(() => r.params, async () => {
const e = await o.loadGridData();
h.value = e.baseData, v.value = e.compareData;
const {
added: t,
modified: n,
deleted: c
} = U(v.value, h.value);
D.value = t, B.value = n, b.value = c;
}, {
immediate: !0
}), {
ns: a,
c: o,
switchValue: y,
druipartNum: P,
renderEditor: x,
renderByDetailType: N
};
},
render() {
return this.c.complete ? s("control-layout", {
attrs: {
modelData: this.c.model
}
}, [s("div", {
class: this.ns.b()
}, [s("div", {
class: this.ns.e("top")
}, [s("div", {
class: this.ns.e("top-hidesame-content")
}, [s("div", {
class: this.ns.e("top-hidesame-content-left")
}, ["隐藏相同项 ", s("i-switch", {
model: {
value: this.switchValue,
callback: (r) => {
this.switchValue = r;
}
}
})]), s("div", {
class: this.ns.e("top-hidesame-content-right")
}, [s("div", {
class: this.ns.e("top-hidesame-content-right-item")
}, ["新增", s("div", {
class: this.ns.e("top-hidesame-content-right-item-add")
})]), s("div", {
class: this.ns.e("top-hidesame-content-right-item")
}, ["修改", s("div", {
class: this.ns.e("top-hidesame-content-right-item-change")
})]), s("div", {
class: this.ns.e("top-hidesame-content-right-item")
}, ["删除", s("div", {
class: this.ns.e("top-hidesame-content-right-item-delete")
})])])]), s("div", {
class: this.ns.e("top-content")
}, [s("div", {
class: this.ns.em("top-content", "attr")
}, ["信息项"]), s("div", {
class: [this.ns.em("top-content", "left")]
}, ["更新前内容"]), s("div", {
class: [this.ns.em("top-content", "right")]
}, ["更新后内容"])])]), s("div", {
class: this.ns.e("content")
}, [this.modelData.children.map((r) => this.renderByDetailType(r))])])]) : null;
}
});
class te {
constructor() {
d(this, "component", "IBizFormDataComparison");
}
}
const le = {
mateUrl: import.meta.url,
install(r) {
r.component("IBizFormDataComparison", ee), ibiz.register.control.register(
"EDITFORM_RENDER_FORM_DATA_COMPARISON",
new te()
);
}
};
export {
le as default
};
!function(){function t(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 e(e){for(var r=1;r<arguments.length;r++){var n=null!=arguments[r]?arguments[r]:{};r%2?t(Object(n),!0).forEach((function(t){v(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):t(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function r(t){return function(t){if(Array.isArray(t))return n(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return n(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return n(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function n(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function o(t){return o="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},o(t)}function i(){"use strict";/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */i=function(){return t};var t={},e=Object.prototype,r=e.hasOwnProperty,n=Object.defineProperty||function(t,e,r){t[e]=r.value},a="function"==typeof Symbol?Symbol:{},c=a.iterator||"@@iterator",s=a.asyncIterator||"@@asyncIterator",u=a.toStringTag||"@@toStringTag";function l(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{l({},"")}catch(N){l=function(t,e,r){return t[e]=r}}function f(t,e,r,o){var i=e&&e.prototype instanceof h?e:h,a=Object.create(i.prototype),c=new S(o||[]);return n(a,"_invoke",{value:j(t,r,c)}),a}function p(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(N){return{type:"throw",arg:N}}}t.wrap=f;var d={};function h(){}function m(){}function v(){}var y={};l(y,c,(function(){return this}));var b=Object.getPrototypeOf,g=b&&b(b(_([])));g&&g!==e&&r.call(g,c)&&(y=g);var w=v.prototype=h.prototype=Object.create(y);function O(t){["next","throw","return"].forEach((function(e){l(t,e,(function(t){return this._invoke(e,t)}))}))}function E(t,e){function i(n,a,c,s){var u=p(t[n],t,a);if("throw"!==u.type){var l=u.arg,f=l.value;return f&&"object"==o(f)&&r.call(f,"__await")?e.resolve(f.__await).then((function(t){i("next",t,c,s)}),(function(t){i("throw",t,c,s)})):e.resolve(f).then((function(t){l.value=t,c(l)}),(function(t){return i("throw",t,c,s)}))}s(u.arg)}var a;n(this,"_invoke",{value:function(t,r){function n(){return new e((function(e,n){i(t,r,e,n)}))}return a=a?a.then(n,n):n()}})}function j(t,e,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return L()}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var c=x(a,r);if(c){if(c===d)continue;return c}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var s=p(t,e,r);if("normal"===s.type){if(n=r.done?"completed":"suspendedYield",s.arg===d)continue;return{value:s.arg,done:r.done}}"throw"===s.type&&(n="completed",r.method="throw",r.arg=s.arg)}}}function x(t,e){var r=e.method,n=t.iterator[r];if(void 0===n)return e.delegate=null,"throw"===r&&t.iterator.return&&(e.method="return",e.arg=void 0,x(t,e),"throw"===e.method)||"return"!==r&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+r+"' method")),d;var o=p(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,d;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,d):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,d)}function P(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function D(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function S(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function _(t){if(t){var e=t[c];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,o=function e(){for(;++n<t.length;)if(r.call(t,n))return e.value=t[n],e.done=!1,e;return e.value=void 0,e.done=!0,e};return o.next=o}}return{next:L}}function L(){return{value:void 0,done:!0}}return m.prototype=v,n(w,"constructor",{value:v,configurable:!0}),n(v,"constructor",{value:m,configurable:!0}),m.displayName=l(v,u,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===m||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,v):(t.__proto__=v,l(t,u,"GeneratorFunction")),t.prototype=Object.create(w),t},t.awrap=function(t){return{__await:t}},O(E.prototype),l(E.prototype,s,(function(){return this})),t.AsyncIterator=E,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new E(f(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},O(w),l(w,u,"Generator"),l(w,c,(function(){return this})),l(w,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=_,S.prototype={constructor:S,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(D),!t)for(var e in this)"t"===e.charAt(0)&&r.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function n(r,n){return a.type="throw",a.arg=t,e.next=r,n&&(e.method="next",e.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var c=r.call(i,"catchLoc"),s=r.call(i,"finallyLoc");if(c&&s){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(c){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!s)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,d):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),d},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),D(r),d}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;D(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:_(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),d}},t}function a(t,e,r,n,o,i,a){try{var c=t[i](a),s=c.value}catch(u){return void r(u)}c.done?e(s):Promise.resolve(s).then(n,o)}function c(t){return function(){var e=this,r=arguments;return new Promise((function(n,o){var i=t.apply(e,r);function c(t){a(i,n,o,c,s,"next",t)}function s(t){a(i,n,o,c,s,"throw",t)}c(void 0)}))}}function s(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function u(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,y(n.key),n)}}function l(t,e,r){return e&&u(t.prototype,e),r&&u(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}function f(t,e){return f=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},f(t,e)}function p(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var r,n=m(t);if(e){var o=m(this).constructor;r=Reflect.construct(n,arguments,o)}else r=n.apply(this,arguments);return d(this,r)}}function d(t,e){if(e&&("object"===o(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return h(t)}function h(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function m(t){return m=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},m(t)}function v(t,e,r){return(e=y(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function y(t){var e=function(t,e){if("object"!==o(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,e||"default");if("object"!==o(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"===o(e)?e:String(e)}System.register(["@ibiz-template/model","@ibiz-template/vue-util","vue","qx-util","@ibiz-template/runtime","@ibiz-template/controller","@ibiz-template/service"],(function(t,n){"use strict";var a,u,d,m,y,b,g,w,O,E,j,x,P;return{setters:[function(t){a=t.EditFormModel},function(t){u=t.useNamespace,d=t.useControlController,m=t.usePropsWatch},function(t){y=t.defineComponent,b=t.getCurrentInstance,g=t.ref,w=t.watch,O=t.h},function(t){E=t.createUUID},function(t){j=t.ViewMode},function(t){x=t.EditFormController},function(t){P=t.ControlVO}],execute:function(){var D=function(t){!function(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&&f(t,e)}(n,t);var e,r=p(n);function n(){var t;s(this,n);for(var e=arguments.length,o=new Array(e),i=0;i<e;i++)o[i]=arguments[i];return v(h(t=r.call.apply(r,[this].concat(o))),"baseResData",[]),v(h(t),"compareResData",[]),v(h(t),"oldData",new P),v(h(t),"versionData",[]),v(h(t),"comparisonArr",{}),v(h(t),"gridData",[]),v(h(t),"AllGridData",[]),v(h(t),"removeSameGridData",[]),v(h(t),"AlldruipartData",new Map),v(h(t),"druipartDataSize",0),v(h(t),"newDruipartData",{}),t}return l(n,[{key:"loadGridData",value:(e=c(i().mark((function t(){var e,r,n,o,a,c,s,u,l;return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,this.startLoading();case 2:return e=this.model.source.M.getPSControlParam.ctrlParams,r=e.BASEENTITY,n=e.COMPAREENTITY,t.next=6,ibiz.entityService.getService(r);case 6:return o=t.sent,t.next=9,ibiz.entityService.getService(n);case 9:return a=t.sent,c=Object.assign({},this.context.clone(),v({},r.toLowerCase(),this.params.base_version)),s=Object.assign({},this.context.clone(),v({},n.toLowerCase(),this.params.compare_version)),t.next=14,o.exec("Get",c,this.params);case 14:return u=t.sent,t.next=17,a.exec("Get",s,this.params);case 17:return l=t.sent,this.isLoaded=!0,t.abrupt("return",{baseData:u.data.data,compareData:l.data.data});case 20:case"end":return t.stop()}}),t,this)}))),function(){return e.apply(this,arguments)})},{key:"isFalseyButNotEmpty",value:function(t){return null==t||"string"==typeof t&&""===t||Array.isArray(t)&&0===t.length||"object"===o(t)&&0===Object.keys(t).length}},{key:"compareObjectValues",value:function(t,e){return JSON.stringify(t)!==JSON.stringify(e)}}]),n}(x),S=y({name:"IBizFormDataComparison",props:{modelData:{type:a,required:!0},context:{type:Object,required:!0},params:{type:Object,default:function(){return{}}},enableAutoSave:{type:Boolean,required:!1}},setup:function(t){var n=u("form-data-comparison"),o=b().proxy,a=d(o,(function(){var e=new D(t.modelData,t.context,t.params);return m(o,"enableAutoSave",e.setEnableAutoSave.bind(e)),e})),s=g(!1),l=g({}),f=g({}),p=g([]),h=[],v=g([]),y=g([]),x=g([]),P=new Map,S=g(0),_=function t(e){var n=[];if(n.push(e),e&&e.children){var o=[];e.children.forEach((function(e){var n=t(e);o.push.apply(o,r(n))})),n.push.apply(n,o)}return n}(t.modelData);h.push.apply(h,r(_));var L=function(t){var e=a.details[t.source.name],r=O("not-supported-editor",{attrs:{modelData:t.editor}});return O("div",{class:[n.e("form-grid-item"),n.is("add",v.value.includes(t.source.name)),n.is("update",x.value.includes(t.source.name)),n.is("delete",y.value.includes(t.source.name))]},[O("div",{class:n.em("form-grid-item","name")},[t.source.caption]),O("div",{class:n.em("form-grid-item","left")},[e.editorProvider?O(e.editorProvider.formEditor,{props:{value:f.value[t.source.name],data:e.data,controller:e.editor,disabled:e.disabled,readonly:!0}}):r]),O("div",{class:n.em("form-grid-item","right")},[e.editorProvider?O(e.editorProvider.formEditor,{props:{value:l.value[t.source.name],data:e.data,controller:e.editor,disabled:e.disabled,readonly:!0}}):r])])},N=function(t,e){P.set(t.source.id,e),e.evt.on("mounted",(function(){a.startLoading(),S.value+=1,e.call.refresh()})),e.evt.on("refreshed",(function(){S.value-=1,setTimeout((function(){a.endLoading()}),500)}))},T=function(t){var e=p.value.findIndex((function(e){return e===t.source.name}));e>-1?p.value.splice(e,1):p.value.push(t.source.name)},F=function(t,e){var r=[],n=[],o=[];return Object.keys(e).forEach((function(o){var i=t[o],c=e[o];a.isFalseyButNotEmpty(i)&&!a.isFalseyButNotEmpty(c)&&r.push(o),a.isFalseyButNotEmpty(i)||a.isFalseyButNotEmpty(c)||!a.compareObjectValues(i,c)||n.push(o)})),Object.keys(t).forEach((function(r){if(!Object.prototype.hasOwnProperty.call(e,r)||a.isFalseyButNotEmpty(e[r])){var n=t[r];a.isFalseyButNotEmpty(n)||o.push(r)}})),{added:r,modified:n,deleted:o}};return w((function(){return t.params}),c(i().mark((function t(){var e,r,n,o,c;return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,a.loadGridData();case 2:e=t.sent,l.value=e.baseData,f.value=e.compareData,r=F(f.value,l.value),n=r.added,o=r.modified,c=r.deleted,v.value=n,x.value=o,y.value=c;case 9:case"end":return t.stop()}}),t)}))),{immediate:!0}),{ns:n,c:a,switchValue:s,druipartNum:S,renderEditor:L,renderByDetailType:function r(o){if(!o.source.hidden){if("FORMPAGE"===o.source.detailType)return O("div",{class:n.e("form-page")},[o.children.map((function(t){return r(t)}))]);if("FORMITEM"===o.source.detailType){var i=v.value.includes(o.source.name),c=y.value.includes(o.source.name),u=x.value.includes(o.source.name);return!s.value||i||c||u?L(o):null}if("GROUPPANEL"===o.source.detailType){var d=p.value.includes(o.source.name);return O("div",{class:n.b("group")},[O("div",{class:[n.be("group","header"),n.is("hide-caption",!o.source.showCaption)]},[O("div",{class:n.bem("group","header","name")},[O("i-icon",d?{class:n.bem("group","header","icon"),attrs:{type:"ios-arrow-forward",title:"展开"},on:{click:function(){return T(o)}}}:{class:n.bem("group","header","icon"),attrs:{type:"ios-arrow-down",title:"收缩"},on:{click:function(){return T(o)}}}),O("span",{class:n.bem("group","header","name-text")},[o.source.caption||o.source.title])]),O("div",["---"]),O("div",["---"])]),O("div",{class:[n.be("group","content"),n.is("collapse",d)]},[o.children.map((function(t){return r(t)}))])])}return"DRUIPART"!==o.source.detailType||o.source.name.endsWith("_srfcopy")?"MDCTRL"===o.source.detailType?(b={modelData:m=o,controller:a.details[m.source.name]},g=a.providers[m.source.name],w=O(g.component,{props:e({},b),key:m.id}),P=O(g.component,{props:e({},b),key:"compare_".concat(m.id)}),O("div",{class:n.e("mdctrl")},[O("div",{class:n.em("mdctrl","caption")},[m.source.caption]),O("div",{class:n.em("mdctrl","left")},[w]),O("div",{class:n.em("mdctrl","right")},[P])])):null:function(e){var r=h.find((function(t){return t.id==="".concat(e.source.id,"_srfcopy")})),o=e.embedView.source.modelPath,i=null==r?void 0:r.embedView.source.modelPath,c=a.context.clone(),s={base_version:t.params.base_version},u=a.context.clone();Object.assign(u,{gysrlzy_info:t.params.compare_version,compare_version:t.params.compare_version});var p={compare_version:t.params.compare_version},d=l.value[e.source.userTag],m=f.value[null==r?void 0:r.source.userTag],v=!1,y=!1,b=!1;return a.isFalseyButNotEmpty(d)&&!a.isFalseyButNotEmpty(m)?v=!0:!a.isFalseyButNotEmpty(d)&&a.isFalseyButNotEmpty(m)?b=!0:a.isFalseyButNotEmpty(d)||a.isFalseyButNotEmpty(m)||!a.compareObjectValues(d,m)||(y=!0),O("div",{class:[n.e("druipart"),n.is("add",v),n.is("update",y),n.is("delete",b)]},[O("div",{class:n.em("druipart","caption")},[e.source.caption]),O("div",{class:n.em("druipart","left")},[i&&O("ViewShell",{attrs:{context:u,params:p,modal:{mode:j.EMBED},modelPath:i,noLoadDefault:!0},key:E(),on:{neuronInit:function(t){return N(r,t)}}})]),O("div",{class:n.em("druipart","right")},[o&&O("ViewShell",{attrs:{context:c,params:s,modal:{mode:j.EMBED},modelPath:o,noLoadDefault:!0},key:E(),on:{neuronInit:function(t){return N(e,t)}}})])])}(o);var m,b,g,w,P}}}},render:function(){var t=this;return this.c.complete?O("control-layout",{attrs:{modelData:this.c.model}},[O("div",{class:this.ns.b()},[O("div",{class:this.ns.e("top")},[O("div",{class:this.ns.e("top-hidesame-content")},[O("div",{class:this.ns.e("top-hidesame-content-left")},["隐藏相同项 ",O("i-switch",{model:{value:this.switchValue,callback:function(e){t.switchValue=e}}})]),O("div",{class:this.ns.e("top-hidesame-content-right")},[O("div",{class:this.ns.e("top-hidesame-content-right-item")},["新增",O("div",{class:this.ns.e("top-hidesame-content-right-item-add")})]),O("div",{class:this.ns.e("top-hidesame-content-right-item")},["修改",O("div",{class:this.ns.e("top-hidesame-content-right-item-change")})]),O("div",{class:this.ns.e("top-hidesame-content-right-item")},["删除",O("div",{class:this.ns.e("top-hidesame-content-right-item-delete")})])])]),O("div",{class:this.ns.e("top-content")},[O("div",{class:this.ns.em("top-content","attr")},["信息项"]),O("div",{class:[this.ns.em("top-content","left")]},["更新前内容"]),O("div",{class:[this.ns.em("top-content","right")]},["更新后内容"])])]),O("div",{class:this.ns.e("content")},[this.modelData.children.map((function(e){return t.renderByDetailType(e)}))])])]):null}}),_=l((function t(){s(this,t),v(this,"component","IBizFormDataComparison")}));t("default",{mateUrl:n.meta.url,install:function(t){t.component("IBizFormDataComparison",S),ibiz.register.control.register("EDITFORM_RENDER_FORM_DATA_COMPARISON",new _)}})}}}))}();
!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)||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,p=Object.getOwnPropertyDescriptor,v=p&&!l.call({1:2},1);s.f=v?function(t){var r=p(this,t);return!!r&&r.enumerable}:l;var h,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,S=g&&m.bind.bind(b,b),w=g?S:function(t){return function(){return b.apply(t,arguments)}},O=w,E=O({}.toString),x=O("".slice),j=function(t){return x(E(t),8,-1)},T=o,I=j,P=Object,A=w("".split),R=T((function(){return!P("z").propertyIsEnumerable(0)}))?function(t){return"String"==I(t)?A(t,""):P(t)}:P,C=function(t){return null==t},N=C,k=TypeError,L=function(t){if(N(t))throw k("Can't call method on "+t);return t},M=R,F=L,_=function(t){return M(F(t))},D="object"==typeof document&&document.all,U={all:D,IS_HTMLDDA:void 0===D&&void 0!==D},z=U.all,G=U.IS_HTMLDDA?function(t){return"function"==typeof t||t===z}:function(t){return"function"==typeof t},W=G,B=U.all,V=U.IS_HTMLDDA?function(t){return"object"==typeof t?null!==t:W(t)||t===B}:function(t){return"object"==typeof t?null!==t:W(t)},$=e,H=G,J=function(t){return H(t)?t:void 0},q=function(t,r){return arguments.length<2?J($[t]):$[t]&&$[t][r]},K=w({}.isPrototypeOf),Y="undefined"!=typeof navigator&&String(navigator.userAgent)||"",X=e,Q=Y,Z=X.process,tt=X.Deno,rt=Z&&Z.versions||tt&&tt.version,et=rt&&rt.v8;et&&(d=(h=et.split("."))[0]>0&&h[0]<4?1:+(h[0]+h[1])),!d&&Q&&(!(h=Q.match(/Edge\/(\d+)/))||h[1]>=74)&&(h=Q.match(/Chrome\/(\d+)/))&&(d=+h[1]);var nt=d,ot=nt,it=o,ut=!!Object.getOwnPropertySymbols&&!it((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&ot&&ot<41})),ct=ut&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,at=q,ft=G,st=K,lt=Object,pt=ct?function(t){return"symbol"==typeof t}:function(t){var r=at("Symbol");return ft(r)&&st(r.prototype,lt(t))},vt=String,ht=function(t){try{return vt(t)}catch(r){return"Object"}},dt=G,yt=ht,gt=TypeError,mt=function(t){if(dt(t))return t;throw gt(yt(t)+" is not a function")},bt=mt,St=C,wt=function(t,r){var e=t[r];return St(e)?void 0:bt(e)},Ot=f,Et=G,xt=V,jt=TypeError,Tt=function(t,r){var e,n;if("string"===r&&Et(e=t.toString)&&!xt(n=Ot(e,t)))return n;if(Et(e=t.valueOf)&&!xt(n=Ot(e,t)))return n;if("string"!==r&&Et(e=t.toString)&&!xt(n=Ot(e,t)))return n;throw jt("Can't convert object to primitive value")},It={},Pt={get exports(){return It},set exports(t){It=t}},At=e,Rt=Object.defineProperty,Ct=function(t,r){try{Rt(At,t,{value:r,configurable:!0,writable:!0})}catch(e){At[t]=r}return r},Nt=Ct,kt="__core-js_shared__",Lt=e[kt]||Nt(kt,{}),Mt=Lt;(Pt.exports=function(t,r){return Mt[t]||(Mt[t]=void 0!==r?r:{})})("versions",[]).push({version:"3.30.0",mode:"global",copyright:"© 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.30.0/LICENSE",source:"https://github.com/zloirock/core-js"});var Ft=L,_t=Object,Dt=function(t){return _t(Ft(t))},Ut=Dt,zt=w({}.hasOwnProperty),Gt=Object.hasOwn||function(t,r){return zt(Ut(t),r)},Wt=w,Bt=0,Vt=Math.random(),$t=Wt(1..toString),Ht=function(t){return"Symbol("+(void 0===t?"":t)+")_"+$t(++Bt+Vt,36)},Jt=It,qt=Gt,Kt=Ht,Yt=ut,Xt=ct,Qt=e.Symbol,Zt=Jt("wks"),tr=Xt?Qt.for||Qt:Qt&&Qt.withoutSetter||Kt,rr=function(t){return qt(Zt,t)||(Zt[t]=Yt&&qt(Qt,t)?Qt[t]:tr("Symbol."+t)),Zt[t]},er=f,nr=V,or=pt,ir=wt,ur=Tt,cr=TypeError,ar=rr("toPrimitive"),fr=function(t,r){if(!nr(t)||or(t))return t;var e,n=ir(t,ar);if(n){if(void 0===r&&(r="default"),e=er(n,t,r),!nr(e)||or(e))return e;throw cr("Can't convert object to primitive value")}return void 0===r&&(r="number"),ur(t,r)},sr=fr,lr=pt,pr=function(t){var r=sr(t,"string");return lr(r)?r:r+""},vr=V,hr=e.document,dr=vr(hr)&&vr(hr.createElement),yr=function(t){return dr?hr.createElement(t):{}},gr=yr,mr=!i&&!o((function(){return 7!=Object.defineProperty(gr("div"),"a",{get:function(){return 7}}).a})),br=i,Sr=f,wr=s,Or=y,Er=_,xr=pr,jr=Gt,Tr=mr,Ir=Object.getOwnPropertyDescriptor;n.f=br?Ir:function(t,r){if(t=Er(t),r=xr(r),Tr)try{return Ir(t,r)}catch(e){}if(jr(t,r))return Or(!Sr(wr.f,t,r),t[r])};var Pr={},Ar=i&&o((function(){return 42!=Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype})),Rr=V,Cr=String,Nr=TypeError,kr=function(t){if(Rr(t))return t;throw Nr(Cr(t)+" is not an object")},Lr=i,Mr=mr,Fr=Ar,_r=kr,Dr=pr,Ur=TypeError,zr=Object.defineProperty,Gr=Object.getOwnPropertyDescriptor,Wr="enumerable",Br="configurable",Vr="writable";Pr.f=Lr?Fr?function(t,r,e){if(_r(t),r=Dr(r),_r(e),"function"==typeof t&&"prototype"===r&&"value"in e&&Vr in e&&!e.writable){var n=Gr(t,r);n&&n.writable&&(t[r]=e.value,e={configurable:Br in e?e.configurable:n.configurable,enumerable:Wr in e?e.enumerable:n.enumerable,writable:!1})}return zr(t,r,e)}:zr:function(t,r,e){if(_r(t),r=Dr(r),_r(e),Mr)try{return zr(t,r,e)}catch(n){}if("get"in e||"set"in e)throw Ur("Accessors not supported");return"value"in e&&(t[r]=e.value),t};var $r=Pr,Hr=y,Jr=i?function(t,r,e){return $r.f(t,r,Hr(1,e))}:function(t,r,e){return t[r]=e,t},qr={},Kr={get exports(){return qr},set exports(t){qr=t}},Yr=i,Xr=Gt,Qr=Function.prototype,Zr=Yr&&Object.getOwnPropertyDescriptor,te=Xr(Qr,"name"),re={EXISTS:te,PROPER:te&&"something"===function(){}.name,CONFIGURABLE:te&&(!Yr||Yr&&Zr(Qr,"name").configurable)},ee=G,ne=Lt,oe=w(Function.toString);ee(ne.inspectSource)||(ne.inspectSource=function(t){return oe(t)});var ie,ue,ce,ae=ne.inspectSource,fe=G,se=e.WeakMap,le=fe(se)&&/native code/.test(String(se)),pe=Ht,ve=It("keys"),he=function(t){return ve[t]||(ve[t]=pe(t))},de={},ye=le,ge=e,me=V,be=Jr,Se=Gt,we=Lt,Oe=he,Ee=de,xe="Object already initialized",je=ge.TypeError,Te=ge.WeakMap;if(ye||we.state){var Ie=we.state||(we.state=new Te);Ie.get=Ie.get,Ie.has=Ie.has,Ie.set=Ie.set,ie=function(t,r){if(Ie.has(t))throw je(xe);return r.facade=t,Ie.set(t,r),r},ue=function(t){return Ie.get(t)||{}},ce=function(t){return Ie.has(t)}}else{var Pe=Oe("state");Ee[Pe]=!0,ie=function(t,r){if(Se(t,Pe))throw je(xe);return r.facade=t,be(t,Pe,r),r},ue=function(t){return Se(t,Pe)?t[Pe]:{}},ce=function(t){return Se(t,Pe)}}var Ae={set:ie,get:ue,has:ce,enforce:function(t){return ce(t)?ue(t):ie(t,{})},getterFor:function(t){return function(r){var e;if(!me(r)||(e=ue(r)).type!==t)throw je("Incompatible receiver, "+t+" required");return e}}},Re=w,Ce=o,Ne=G,ke=Gt,Le=i,Me=re.CONFIGURABLE,Fe=ae,_e=Ae.enforce,De=Ae.get,Ue=String,ze=Object.defineProperty,Ge=Re("".slice),We=Re("".replace),Be=Re([].join),Ve=Le&&!Ce((function(){return 8!==ze((function(){}),"length",{value:8}).length})),$e=String(String).split("String"),He=Kr.exports=function(t,r,e){"Symbol("===Ge(Ue(r),0,7)&&(r="["+We(Ue(r),/^Symbol\(([^)]*)\)/,"$1")+"]"),e&&e.getter&&(r="get "+r),e&&e.setter&&(r="set "+r),(!ke(t,"name")||Me&&t.name!==r)&&(Le?ze(t,"name",{value:r,configurable:!0}):t.name=r),Ve&&e&&ke(e,"arity")&&t.length!==e.arity&&ze(t,"length",{value:e.arity});try{e&&ke(e,"constructor")&&e.constructor?Le&&ze(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(o){}var n=_e(t);return ke(n,"source")||(n.source=Be($e,"string"==typeof r?r:"")),t};Function.prototype.toString=He((function(){return Ne(this)&&De(this).source||Fe(this)}),"toString");var Je=G,qe=Pr,Ke=qr,Ye=Ct,Xe=function(t,r,e,n){n||(n={});var o=n.enumerable,i=void 0!==n.name?n.name:r;if(Je(e)&&Ke(e,i,n),n.global)o?t[r]=e:Ye(r,e);else{try{n.unsafe?t[r]&&(o=!0):delete t[r]}catch(u){}o?t[r]=e:qe.f(t,r,{value:e,enumerable:!1,configurable:!n.nonConfigurable,writable:!n.nonWritable})}return t},Qe={},Ze=Math.ceil,tn=Math.floor,rn=Math.trunc||function(t){var r=+t;return(r>0?tn:Ze)(r)},en=function(t){var r=+t;return r!=r||0===r?0:rn(r)},nn=en,on=Math.max,un=Math.min,cn=function(t,r){var e=nn(t);return e<0?on(e+r,0):un(e,r)},an=en,fn=Math.min,sn=function(t){return t>0?fn(an(t),9007199254740991):0},ln=sn,pn=function(t){return ln(t.length)},vn=_,hn=cn,dn=pn,yn=function(t){return function(r,e,n){var o,i=vn(r),u=dn(i),c=hn(n,u);if(t&&e!=e){for(;u>c;)if((o=i[c++])!=o)return!0}else for(;u>c;c++)if((t||c in i)&&i[c]===e)return t||c||0;return!t&&-1}},gn={includes:yn(!0),indexOf:yn(!1)},mn=Gt,bn=_,Sn=gn.indexOf,wn=de,On=w([].push),En=function(t,r){var e,n=bn(t),o=0,i=[];for(e in n)!mn(wn,e)&&mn(n,e)&&On(i,e);for(;r.length>o;)mn(n,e=r[o++])&&(~Sn(i,e)||On(i,e));return i},xn=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],jn=En,Tn=xn.concat("length","prototype");Qe.f=Object.getOwnPropertyNames||function(t){return jn(t,Tn)};var In={};In.f=Object.getOwnPropertySymbols;var Pn=q,An=Qe,Rn=In,Cn=kr,Nn=w([].concat),kn=Pn("Reflect","ownKeys")||function(t){var r=An.f(Cn(t)),e=Rn.f;return e?Nn(r,e(t)):r},Ln=Gt,Mn=kn,Fn=n,_n=Pr,Dn=function(t,r,e){for(var n=Mn(r),o=_n.f,i=Fn.f,u=0;u<n.length;u++){var c=n[u];Ln(t,c)||e&&Ln(e,c)||o(t,c,i(r,c))}},Un=o,zn=G,Gn=/#|\.prototype\./,Wn=function(t,r){var e=Vn[Bn(t)];return e==Hn||e!=$n&&(zn(r)?Un(r):!!r)},Bn=Wn.normalize=function(t){return String(t).replace(Gn,".").toLowerCase()},Vn=Wn.data={},$n=Wn.NATIVE="N",Hn=Wn.POLYFILL="P",Jn=Wn,qn=e,Kn=n.f,Yn=Jr,Xn=Xe,Qn=Ct,Zn=Dn,to=Jn,ro=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]||Qn(c,{}):(qn[c]||{}).prototype)for(n in r){if(i=r[n],o=t.dontCallGetSet?(u=Kn(e,n))&&u.value:e[n],!to(a?n:c+(f?".":"#")+n,t.forced)&&void 0!==o){if(typeof i==typeof o)continue;Zn(i,o)}(t.sham||o&&o.sham)&&Yn(i,"sham",!0),Xn(e,n,i,t)}},eo=j,no=Array.isArray||function(t){return"Array"==eo(t)},oo=TypeError,io=function(t){if(t>9007199254740991)throw oo("Maximum allowed index exceeded");return t},uo=pr,co=Pr,ao=y,fo=function(t,r,e){var n=uo(r);n in t?co.f(t,n,ao(0,e)):t[n]=e},so={};so[rr("toStringTag")]="z";var lo="[object z]"===String(so),po=lo,vo=G,ho=j,yo=rr("toStringTag"),go=Object,mo="Arguments"==ho(function(){return arguments}()),bo=po?ho: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=go(t),yo))?e:mo?ho(r):"Object"==(n=ho(r))&&vo(r.callee)?"Arguments":n},So=w,wo=o,Oo=G,Eo=bo,xo=ae,jo=function(){},To=[],Io=q("Reflect","construct"),Po=/^\s*(?:class|function)\b/,Ao=So(Po.exec),Ro=!Po.exec(jo),Co=function(t){if(!Oo(t))return!1;try{return Io(jo,To,t),!0}catch(r){return!1}},No=function(t){if(!Oo(t))return!1;switch(Eo(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return Ro||!!Ao(Po,xo(t))}catch(r){return!0}};No.sham=!0;var ko=!Io||wo((function(){var t;return Co(Co.call)||!Co(Object)||!Co((function(){t=!0}))||t}))?No:Co,Lo=no,Mo=ko,Fo=V,_o=rr("species"),Do=Array,Uo=function(t){var r;return Lo(t)&&(r=t.constructor,(Mo(r)&&(r===Do||Lo(r.prototype))||Fo(r)&&null===(r=r[_o]))&&(r=void 0)),void 0===r?Do:r},zo=function(t,r){return new(Uo(t))(0===r?0:r)},Go=o,Wo=nt,Bo=rr("species"),Vo=function(t){return Wo>=51||!Go((function(){var r=[];return(r.constructor={})[Bo]=function(){return{foo:1}},1!==r[t](Boolean).foo}))},$o=ro,Ho=o,Jo=no,qo=V,Ko=Dt,Yo=pn,Xo=io,Qo=fo,Zo=zo,ti=Vo,ri=nt,ei=rr("isConcatSpreadable"),ni=ri>=51||!Ho((function(){var t=[];return t[ei]=!1,t.concat()[0]!==t})),oi=function(t){if(!qo(t))return!1;var r=t[ei];return void 0!==r?!!r:Jo(t)};$o({target:"Array",proto:!0,arity:1,forced:!ni||!ti("concat")},{concat:function(t){var r,e,n,o,i,u=Ko(this),c=Zo(u,0),a=0;for(r=-1,n=arguments.length;r<n;r++)if(oi(i=-1===r?u:arguments[r]))for(o=Yo(i),Xo(a+o),e=0;e<o;e++,a++)e in i&&Qo(c,a,i[e]);else Xo(a+1),Qo(c,a++,i);return c.length=a,c}});var ii={},ui=En,ci=xn,ai=Object.keys||function(t){return ui(t,ci)},fi=i,si=Ar,li=Pr,pi=kr,vi=_,hi=ai;ii.f=fi&&!si?Object.defineProperties:function(t,r){pi(t);for(var e,n=vi(r),o=hi(r),i=o.length,u=0;i>u;)li.f(t,e=o[u++],n[e]);return t};var di,yi=q("document","documentElement"),gi=kr,mi=ii,bi=xn,Si=de,wi=yi,Oi=yr,Ei=he("IE_PROTO"),xi=function(){},ji=function(t){return"<script>"+t+"</"+"script>"},Ti=function(t){t.write(ji("")),t.close();var r=t.parentWindow.Object;return t=null,r},Ii=function(){try{di=new ActiveXObject("htmlfile")}catch(n){}var t,r;Ii="undefined"!=typeof document?document.domain&&di?Ti(di):((r=Oi("iframe")).style.display="none",wi.appendChild(r),r.src=String("javascript:"),(t=r.contentWindow.document).open(),t.write(ji("document.F=Object")),t.close(),t.F):Ti(di);for(var e=bi.length;e--;)delete Ii.prototype[bi[e]];return Ii()};Si[Ei]=!0;var Pi=Object.create||function(t,r){var e;return null!==t?(xi.prototype=gi(t),e=new xi,xi.prototype=null,e[Ei]=t):e=Ii(),void 0===r?e:mi.f(e,r)},Ai=rr,Ri=Pi,Ci=Pr.f,Ni=Ai("unscopables"),ki=Array.prototype;null==ki[Ni]&&Ci(ki,Ni,{configurable:!0,value:Ri(null)});var Li,Mi,Fi,_i=function(t){ki[Ni][t]=!0},Di={},Ui=!o((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype})),zi=Gt,Gi=G,Wi=Dt,Bi=Ui,Vi=he("IE_PROTO"),$i=Object,Hi=$i.prototype,Ji=Bi?$i.getPrototypeOf:function(t){var r=Wi(t);if(zi(r,Vi))return r[Vi];var e=r.constructor;return Gi(e)&&r instanceof e?e.prototype:r instanceof $i?Hi:null},qi=o,Ki=G,Yi=V,Xi=Ji,Qi=Xe,Zi=rr("iterator"),tu=!1;[].keys&&("next"in(Fi=[].keys())?(Mi=Xi(Xi(Fi)))!==Object.prototype&&(Li=Mi):tu=!0);var ru=!Yi(Li)||qi((function(){var t={};return Li[Zi].call(t)!==t}));ru&&(Li={}),Ki(Li[Zi])||Qi(Li,Zi,(function(){return this}));var eu={IteratorPrototype:Li,BUGGY_SAFARI_ITERATORS:tu},nu=Pr.f,ou=Gt,iu=rr("toStringTag"),uu=function(t,r,e){t&&!e&&(t=t.prototype),t&&!ou(t,iu)&&nu(t,iu,{configurable:!0,value:r})},cu=eu.IteratorPrototype,au=Pi,fu=y,su=uu,lu=Di,pu=function(){return this},vu=w,hu=mt,du=G,yu=String,gu=TypeError,mu=function(t,r,e){try{return vu(hu(Object.getOwnPropertyDescriptor(t,r)[e]))}catch(n){}},bu=kr,Su=function(t){if("object"==typeof t||du(t))return t;throw gu("Can't set "+yu(t)+" as a prototype")},wu=Object.setPrototypeOf||("__proto__"in{}?function(){var t,r=!1,e={};try{(t=mu(Object.prototype,"__proto__","set"))(e,[]),r=e instanceof Array}catch(n){}return function(e,n){return bu(e),Su(n),r?t(e,n):e.__proto__=n,e}}():void 0),Ou=ro,Eu=f,xu=G,ju=function(t,r,e,n){var o=r+" Iterator";return t.prototype=au(cu,{next:fu(+!n,e)}),su(t,o,!1),lu[o]=pu,t},Tu=Ji,Iu=wu,Pu=uu,Au=Jr,Ru=Xe,Cu=Di,Nu=re.PROPER,ku=re.CONFIGURABLE,Lu=eu.IteratorPrototype,Mu=eu.BUGGY_SAFARI_ITERATORS,Fu=rr("iterator"),_u="keys",Du="values",Uu="entries",zu=function(){return this},Gu=function(t,r,e,n,o,i,u){ju(e,r,n);var c,a,f,s=function(t){if(t===o&&d)return d;if(!Mu&&t in v)return v[t];switch(t){case _u:case Du:case Uu:return function(){return new e(this,t)}}return function(){return new e(this)}},l=r+" Iterator",p=!1,v=t.prototype,h=v[Fu]||v["@@iterator"]||o&&v[o],d=!Mu&&h||s(o),y="Array"==r&&v.entries||h;if(y&&(c=Tu(y.call(new t)))!==Object.prototype&&c.next&&(Tu(c)!==Lu&&(Iu?Iu(c,Lu):xu(c[Fu])||Ru(c,Fu,zu)),Pu(c,l,!0)),Nu&&o==Du&&h&&h.name!==Du&&(ku?Au(v,"name",Du):(p=!0,d=function(){return Eu(h,this)})),o)if(a={values:s(Du),keys:i?d:s(_u),entries:s(Uu)},u)for(f in a)(Mu||p||!(f in v))&&Ru(v,f,a[f]);else Ou({target:r,proto:!0,forced:Mu||p},a);return v[Fu]!==d&&Ru(v,Fu,d,{name:o}),Cu[r]=d,a},Wu=function(t,r){return{value:t,done:r}},Bu=_,Vu=_i,$u=Di,Hu=Ae,Ju=Pr.f,qu=Gu,Ku=Wu,Yu=i,Xu="Array Iterator",Qu=Hu.set,Zu=Hu.getterFor(Xu),tc=qu(Array,"Array",(function(t,r){Qu(this,{type:Xu,target:Bu(t),index:0,kind:r})}),(function(){var t=Zu(this),r=t.target,e=t.kind,n=t.index++;return!r||n>=r.length?(t.target=void 0,Ku(void 0,!0)):Ku("keys"==e?n:"values"==e?r[n]:[n,r[n]],!1)}),"values"),rc=$u.Arguments=$u.Array;if(Vu("keys"),Vu("values"),Vu("entries"),Yu&&"values"!==rc.name)try{Ju(rc,"name",{value:"values"})}catch(Aw){}var ec={},nc={get exports(){return ec},set exports(t){ec=t}},oc={},ic=cn,uc=pn,cc=fo,ac=Array,fc=Math.max,sc=j,lc=_,pc=Qe.f,vc=function(t,r,e){for(var n=uc(t),o=ic(r,n),i=ic(void 0===e?n:e,n),u=ac(fc(i-o,0)),c=0;o<i;o++,c++)cc(u,c,t[o]);return u.length=c,u},hc="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];oc.f=function(t){return hc&&"Window"==sc(t)?function(t){try{return pc(t)}catch(Aw){return vc(hc)}}(t):pc(lc(t))};var dc=o((function(){if("function"==typeof ArrayBuffer){var t=new ArrayBuffer(8);Object.isExtensible(t)&&Object.defineProperty(t,"a",{value:8})}})),yc=o,gc=V,mc=j,bc=dc,Sc=Object.isExtensible,wc=yc((function(){Sc(1)}))||bc?function(t){return!!gc(t)&&((!bc||"ArrayBuffer"!=mc(t))&&(!Sc||Sc(t)))}:Sc,Oc=!o((function(){return Object.isExtensible(Object.preventExtensions({}))})),Ec=ro,xc=w,jc=de,Tc=V,Ic=Gt,Pc=Pr.f,Ac=Qe,Rc=oc,Cc=wc,Nc=Oc,kc=!1,Lc=Ht("meta"),Mc=0,Fc=function(t){Pc(t,Lc,{value:{objectID:"O"+Mc++,weakData:{}}})},_c=nc.exports={enable:function(){_c.enable=function(){},kc=!0;var t=Ac.f,r=xc([].splice),e={};e[Lc]=1,t(e).length&&(Ac.f=function(e){for(var n=t(e),o=0,i=n.length;o<i;o++)if(n[o]===Lc){r(n,o,1);break}return n},Ec({target:"Object",stat:!0,forced:!0},{getOwnPropertyNames:Rc.f}))},fastKey:function(t,r){if(!Tc(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!Ic(t,Lc)){if(!Cc(t))return"F";if(!r)return"E";Fc(t)}return t[Lc].objectID},getWeakData:function(t,r){if(!Ic(t,Lc)){if(!Cc(t))return!0;if(!r)return!1;Fc(t)}return t[Lc].weakData},onFreeze:function(t){return Nc&&kc&&Cc(t)&&!Ic(t,Lc)&&Fc(t),t}};jc[Lc]=!0;var Dc=j,Uc=w,zc=function(t){if("Function"===Dc(t))return Uc(t)},Gc=mt,Wc=u,Bc=zc(zc.bind),Vc=function(t,r){return Gc(t),void 0===r?t:Wc?Bc(t,r):function(){return t.apply(r,arguments)}},$c=Di,Hc=rr("iterator"),Jc=Array.prototype,qc=function(t){return void 0!==t&&($c.Array===t||Jc[Hc]===t)},Kc=bo,Yc=wt,Xc=C,Qc=Di,Zc=rr("iterator"),ta=function(t){if(!Xc(t))return Yc(t,Zc)||Yc(t,"@@iterator")||Qc[Kc(t)]},ra=f,ea=mt,na=kr,oa=ht,ia=ta,ua=TypeError,ca=function(t,r){var e=arguments.length<2?ia(t):r;if(ea(e))return na(ra(e,t));throw ua(oa(t)+" is not iterable")},aa=f,fa=kr,sa=wt,la=function(t,r,e){var n,o;fa(t);try{if(!(n=sa(t,"return"))){if("throw"===r)throw e;return e}n=aa(n,t)}catch(Aw){o=!0,n=Aw}if("throw"===r)throw e;if(o)throw n;return fa(n),e},pa=Vc,va=f,ha=kr,da=ht,ya=qc,ga=pn,ma=K,ba=ca,Sa=ta,wa=la,Oa=TypeError,Ea=function(t,r){this.stopped=t,this.result=r},xa=Ea.prototype,ja=function(t,r,e){var n,o,i,u,c,a,f,s=e&&e.that,l=!(!e||!e.AS_ENTRIES),p=!(!e||!e.IS_RECORD),v=!(!e||!e.IS_ITERATOR),h=!(!e||!e.INTERRUPTED),d=pa(r,s),y=function(t){return n&&wa(n,"normal",t),new Ea(!0,t)},g=function(t){return l?(ha(t),h?d(t[0],t[1],y):d(t[0],t[1])):h?d(t,y):d(t)};if(p)n=t.iterator;else if(v)n=t;else{if(!(o=Sa(t)))throw Oa(da(t)+" is not iterable");if(ya(o)){for(i=0,u=ga(t);u>i;i++)if((c=g(t[i]))&&ma(xa,c))return c;return new Ea(!1)}n=ba(t,o)}for(a=p?t.next:n.next;!(f=va(a,n)).done;){try{c=g(f.value)}catch(Aw){wa(n,"throw",Aw)}if("object"==typeof c&&c&&ma(xa,c))return c}return new Ea(!1)},Ta=K,Ia=TypeError,Pa=function(t,r){if(Ta(r,t))return t;throw Ia("Incorrect invocation")},Aa=rr("iterator"),Ra=!1;try{var Ca=0,Na={next:function(){return{done:!!Ca++}},return:function(){Ra=!0}};Na[Aa]=function(){return this},Array.from(Na,(function(){throw 2}))}catch(Aw){}var ka=function(t,r){if(!r&&!Ra)return!1;var e=!1;try{var n={};n[Aa]=function(){return{next:function(){return{done:e=!0}}}},t(n)}catch(Aw){}return e},La=G,Ma=V,Fa=wu,_a=function(t,r,e){var n,o;return Fa&&La(n=r.constructor)&&n!==e&&Ma(o=n.prototype)&&o!==e.prototype&&Fa(t,o),t},Da=ro,Ua=e,za=w,Ga=Jn,Wa=Xe,Ba=ec,Va=ja,$a=Pa,Ha=G,Ja=C,qa=V,Ka=o,Ya=ka,Xa=uu,Qa=_a,Za=qr,tf=Pr,rf=function(t,r,e){return e.get&&Za(e.get,r,{getter:!0}),e.set&&Za(e.set,r,{setter:!0}),tf.f(t,r,e)},ef=Xe,nf=q,of=rf,uf=i,cf=rr("species"),af=function(t){var r=nf(t);uf&&r&&!r[cf]&&of(r,cf,{configurable:!0,get:function(){return this}})},ff=Pi,sf=rf,lf=function(t,r,e){for(var n in r)ef(t,n,r[n],e);return t},pf=Vc,vf=Pa,hf=C,df=ja,yf=Gu,gf=Wu,mf=af,bf=i,Sf=ec.fastKey,wf=Ae.set,Of=Ae.getterFor,Ef={getConstructor:function(t,r,e,n){var o=t((function(t,o){vf(t,i),wf(t,{type:r,index:ff(null),first:void 0,last:void 0,size:0}),bf||(t.size=0),hf(o)||df(o,t[n],{that:t,AS_ENTRIES:e})})),i=o.prototype,u=Of(r),c=function(t,r,e){var n,o,i=u(t),c=a(t,r);return c?c.value=e:(i.last=c={index:o=Sf(r,!0),key:r,value:e,previous:n=i.last,next:void 0,removed:!1},i.first||(i.first=c),n&&(n.next=c),bf?i.size++:t.size++,"F"!==o&&(i.index[o]=c)),t},a=function(t,r){var e,n=u(t),o=Sf(r);if("F"!==o)return n.index[o];for(e=n.first;e;e=e.next)if(e.key==r)return e};return lf(i,{clear:function(){for(var t=u(this),r=t.index,e=t.first;e;)e.removed=!0,e.previous&&(e.previous=e.previous.next=void 0),delete r[e.index],e=e.next;t.first=t.last=void 0,bf?t.size=0:this.size=0},delete:function(t){var r=this,e=u(r),n=a(r,t);if(n){var o=n.next,i=n.previous;delete e.index[n.index],n.removed=!0,i&&(i.next=o),o&&(o.previous=i),e.first==n&&(e.first=o),e.last==n&&(e.last=i),bf?e.size--:r.size--}return!!n},forEach:function(t){for(var r,e=u(this),n=pf(t,arguments.length>1?arguments[1]:void 0);r=r?r.next:e.first;)for(n(r.value,r.key,this);r&&r.removed;)r=r.previous},has:function(t){return!!a(this,t)}}),lf(i,e?{get:function(t){var r=a(this,t);return r&&r.value},set:function(t,r){return c(this,0===t?0:t,r)}}:{add:function(t){return c(this,t=0===t?0:t,t)}}),bf&&sf(i,"size",{configurable:!0,get:function(){return u(this).size}}),o},setStrong:function(t,r,e){var n=r+" Iterator",o=Of(r),i=Of(n);yf(t,r,(function(t,r){wf(this,{type:n,target:t,state:o(t),kind:r,last:void 0})}),(function(){for(var t=i(this),r=t.kind,e=t.last;e&&e.removed;)e=e.previous;return t.target&&(t.last=e=e?e.next:t.state.first)?gf("keys"==r?e.key:"values"==r?e.value:[e.key,e.value],!1):(t.target=void 0,gf(void 0,!0))}),e?"entries":"values",!e,!0),mf(r)}};(function(t,r,e){var n=-1!==t.indexOf("Map"),o=-1!==t.indexOf("Weak"),i=n?"set":"add",u=Ua[t],c=u&&u.prototype,a=u,f={},s=function(t){var r=za(c[t]);Wa(c,t,"add"==t?function(t){return r(this,0===t?0:t),this}:"delete"==t?function(t){return!(o&&!qa(t))&&r(this,0===t?0:t)}:"get"==t?function(t){return o&&!qa(t)?void 0:r(this,0===t?0:t)}:"has"==t?function(t){return!(o&&!qa(t))&&r(this,0===t?0:t)}:function(t,e){return r(this,0===t?0:t,e),this})};if(Ga(t,!Ha(u)||!(o||c.forEach&&!Ka((function(){(new u).entries().next()})))))a=e.getConstructor(r,t,n,i),Ba.enable();else if(Ga(t,!0)){var l=new a,p=l[i](o?{}:-0,1)!=l,v=Ka((function(){l.has(1)})),h=Ya((function(t){new u(t)})),d=!o&&Ka((function(){for(var t=new u,r=5;r--;)t[i](r,r);return!t.has(-0)}));h||((a=r((function(t,r){$a(t,c);var e=Qa(new u,t,a);return Ja(r)||Va(r,e[i],{that:e,AS_ENTRIES:n}),e}))).prototype=c,c.constructor=a),(v||d)&&(s("delete"),s("has"),n&&s("get")),(d||p)&&s(i),o&&c.clear&&delete c.clear}f[t]=a,Da({global:!0,constructor:!0,forced:a!=u},f),Xa(a,t),o||e.setStrong(a,t,n)})("Map",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),Ef);var xf=bo,jf=lo?{}.toString:function(){return"[object "+xf(this)+"]"};lo||Xe(Object.prototype,"toString",jf,{unsafe:!0});var Tf=bo,If=String,Pf=function(t){if("Symbol"===Tf(t))throw TypeError("Cannot convert a Symbol value to a string");return If(t)},Af=w,Rf=en,Cf=Pf,Nf=L,kf=Af("".charAt),Lf=Af("".charCodeAt),Mf=Af("".slice),Ff=function(t){return function(r,e){var n,o,i=Cf(Nf(r)),u=Rf(e),c=i.length;return u<0||u>=c?t?"":void 0:(n=Lf(i,u))<55296||n>56319||u+1===c||(o=Lf(i,u+1))<56320||o>57343?t?kf(i,u):n:t?Mf(i,u,u+2):o-56320+(n-55296<<10)+65536}},_f={codeAt:Ff(!1),charAt:Ff(!0)}.charAt,Df=Pf,Uf=Ae,zf=Gu,Gf=Wu,Wf="String Iterator",Bf=Uf.set,Vf=Uf.getterFor(Wf);zf(String,"String",(function(t){Bf(this,{type:Wf,string:Df(t),index:0})}),(function(){var t,r=Vf(this),e=r.string,n=r.index;return n>=e.length?Gf(void 0,!0):(t=_f(e,n),r.index+=t.length,Gf(t,!1))}));var $f={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},Hf=yr("span").classList,Jf=Hf&&Hf.constructor&&Hf.constructor.prototype,qf=Jf===Object.prototype?void 0:Jf,Kf=e,Yf=$f,Xf=qf,Qf=tc,Zf=Jr,ts=rr,rs=ts("iterator"),es=ts("toStringTag"),ns=Qf.values,os=function(t,r){if(t){if(t[rs]!==ns)try{Zf(t,rs,ns)}catch(Aw){t[rs]=ns}if(t[es]||Zf(t,es,r),Yf[r])for(var e in Qf)if(t[e]!==Qf[e])try{Zf(t,e,Qf[e])}catch(Aw){t[e]=Qf[e]}}};for(var is in Yf)os(Kf[is]&&Kf[is].prototype,is);os(Xf,"DOMTokenList");var us=i,cs=w,as=f,fs=o,ss=ai,ls=In,ps=s,vs=Dt,hs=R,ds=Object.assign,ys=Object.defineProperty,gs=cs([].concat),ms=!ds||fs((function(){if(us&&1!==ds({b:1},ds(ys({},"a",{enumerable:!0,get:function(){ys(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},r={},e=Symbol(),n="abcdefghijklmnopqrst";return t[e]=7,n.split("").forEach((function(t){r[t]=t})),7!=ds({},t)[e]||ss(ds({},r)).join("")!=n}))?function(t,r){for(var e=vs(t),n=arguments.length,o=1,i=ls.f,u=ps.f;n>o;)for(var c,a=hs(arguments[o++]),f=i?gs(ss(a),i(a)):ss(a),s=f.length,l=0;s>l;)c=f[l++],us&&!as(u,a,c)||(e[c]=a[c]);return e}:ds,bs=ms;ro({target:"Object",stat:!0,arity:2,forced:Object.assign!==bs},{assign:bs});var Ss,ws,Os=kr,Es=o,xs=e.RegExp,js=Es((function(){var t=xs("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),Ts=js||Es((function(){return!xs("a","y").sticky})),Is=js||Es((function(){var t=xs("^r","gy");return t.lastIndex=2,null!=t.exec("str")})),Ps={BROKEN_CARET:Is,MISSED_STICKY:Ts,UNSUPPORTED_Y:js},As=o,Rs=e.RegExp,Cs=As((function(){var t=Rs(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)})),Ns=o,ks=e.RegExp,Ls=Ns((function(){var t=ks("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")})),Ms=f,Fs=w,_s=Pf,Ds=function(){var t=Os(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},Us=Ps,zs=Pi,Gs=Ae.get,Ws=Cs,Bs=Ls,Vs=It("native-string-replace",String.prototype.replace),$s=RegExp.prototype.exec,Hs=$s,Js=Fs("".charAt),qs=Fs("".indexOf),Ks=Fs("".replace),Ys=Fs("".slice),Xs=(ws=/b*/g,Ms($s,Ss=/a/,"a"),Ms($s,ws,"a"),0!==Ss.lastIndex||0!==ws.lastIndex),Qs=Us.BROKEN_CARET,Zs=void 0!==/()??/.exec("")[1];(Xs||Zs||Qs||Ws||Bs)&&(Hs=function(t){var r,e,n,o,i,u,c,a=this,f=Gs(a),s=_s(t),l=f.raw;if(l)return l.lastIndex=a.lastIndex,r=Ms(Hs,l,s),a.lastIndex=l.lastIndex,r;var p=f.groups,v=Qs&&a.sticky,h=Ms(Ds,a),d=a.source,y=0,g=s;if(v&&(h=Ks(h,"y",""),-1===qs(h,"g")&&(h+="g"),g=Ys(s,a.lastIndex),a.lastIndex>0&&(!a.multiline||a.multiline&&"\n"!==Js(s,a.lastIndex-1))&&(d="(?: "+d+")",g=" "+g,y++),e=new RegExp("^(?:"+d+")",h)),Zs&&(e=new RegExp("^"+d+"$(?!\\s)",h)),Xs&&(n=a.lastIndex),o=Ms($s,v?e:a,g),v?o?(o.input=Ys(o.input,y),o[0]=Ys(o[0],y),o.index=a.lastIndex,a.lastIndex+=o[0].length):a.lastIndex=0:Xs&&o&&(a.lastIndex=a.global?o.index+o[0].length:n),Zs&&o&&o.length>1&&Ms(Vs,o[0],e,(function(){for(i=1;i<arguments.length-2;i++)void 0===arguments[i]&&(o[i]=void 0)})),o&&p)for(o.groups=u=zs(null),i=0;i<p.length;i++)u[(c=p[i])[0]]=o[c[1]];return o});ro({target:"RegExp",proto:!0,forced:/./.exec!==Hs},{exec:Hs});var tl=Dt,rl=ai;ro({target:"Object",stat:!0,forced:o((function(){rl(1)}))},{keys:function(t){return rl(tl(t))}});var el=u,nl=Function.prototype,ol=nl.apply,il=nl.call,ul="object"==typeof Reflect&&Reflect.apply||(el?il.bind(ol):function(){return il.apply(ol,arguments)}),cl=w([].slice),al=no,fl=G,sl=j,ll=Pf,pl=w([].push),vl=ro,hl=q,dl=ul,yl=f,gl=w,ml=o,bl=G,Sl=pt,wl=cl,Ol=function(t){if(fl(t))return t;if(al(t)){for(var r=t.length,e=[],n=0;n<r;n++){var o=t[n];"string"==typeof o?pl(e,o):"number"!=typeof o&&"Number"!=sl(o)&&"String"!=sl(o)||pl(e,ll(o))}var i=e.length,u=!0;return function(t,r){if(u)return u=!1,r;if(al(this))return r;for(var n=0;n<i;n++)if(e[n]===t)return r}}},El=ut,xl=String,jl=hl("JSON","stringify"),Tl=gl(/./.exec),Il=gl("".charAt),Pl=gl("".charCodeAt),Al=gl("".replace),Rl=gl(1..toString),Cl=/[\uD800-\uDFFF]/g,Nl=/^[\uD800-\uDBFF]$/,kl=/^[\uDC00-\uDFFF]$/,Ll=!El||ml((function(){var t=hl("Symbol")();return"[null]"!=jl([t])||"{}"!=jl({a:t})||"{}"!=jl(Object(t))})),Ml=ml((function(){return'"\\udf06\\ud834"'!==jl("\udf06\ud834")||'"\\udead"'!==jl("\udead")})),Fl=function(t,r){var e=wl(arguments),n=Ol(r);if(bl(n)||void 0!==t&&!Sl(t))return e[1]=function(t,r){if(bl(n)&&(r=yl(n,this,xl(t),r)),!Sl(r))return r},dl(jl,null,e)},_l=function(t,r,e){var n=Il(e,r-1),o=Il(e,r+1);return Tl(Nl,t)&&!Tl(kl,o)||Tl(kl,t)&&!Tl(Nl,n)?"\\u"+Rl(Pl(t,0),16):t};jl&&vl({target:"JSON",stat:!0,arity:3,forced:Ll||Ml},{stringify:function(t,r,e){var n=wl(arguments),o=dl(Ll?Fl:jl,null,n);return Ml&&"string"==typeof o?Al(o,Cl,_l):o}});var Dl=i,Ul=no,zl=TypeError,Gl=Object.getOwnPropertyDescriptor,Wl=Dl&&!function(){if(void 0!==this)return!0;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(Aw){return Aw instanceof TypeError}}()?function(t,r){if(Ul(t)&&!Gl(t,"length").writable)throw zl("Cannot set read only .length");return t.length=r}:function(t,r){return t.length=r},Bl=Dt,Vl=pn,$l=Wl,Hl=io;ro({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(Aw){return Aw instanceof TypeError}}()},{push:function(t){var r=Bl(this),e=Vl(r),n=arguments.length;Hl(e+n);for(var o=0;o<n;o++)r[e]=arguments[o],e++;return $l(r,e),e}});var Jl=Vc,ql=R,Kl=Dt,Yl=pn,Xl=zo,Ql=w([].push),Zl=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 p,v,h=Kl(a),d=ql(h),y=Jl(f,s),g=Yl(d),m=0,b=l||Xl,S=r?b(a,g):e||u?b(a,0):void 0;g>m;m++)if((c||m in d)&&(v=y(p=d[m],m,h),t))if(r)S[m]=v;else if(v)switch(t){case 3:return!0;case 5:return p;case 6:return m;case 2:Ql(S,p)}else switch(t){case 4:return!1;case 7:Ql(S,p)}return i?-1:n||o?o:S}},tp={forEach:Zl(0),map:Zl(1),filter:Zl(2),some:Zl(3),every:Zl(4),find:Zl(5),findIndex:Zl(6),filterReject:Zl(7)},rp=o,ep=tp.forEach,np=function(t,r){var e=[][t];return!!e&&rp((function(){e.call(null,r||function(){return 1},1)}))},op=np("forEach")?[].forEach:function(t){return ep(this,t,arguments.length>1?arguments[1]:void 0)},ip=e,up=$f,cp=qf,ap=op,fp=Jr,sp=function(t){if(t&&t.forEach!==ap)try{fp(t,"forEach",ap)}catch(Aw){t.forEach=ap}};for(var lp in up)up[lp]&&sp(ip[lp]&&ip[lp].prototype);sp(cp);var pp=i,vp=re.EXISTS,hp=w,dp=rf,yp=Function.prototype,gp=hp(yp.toString),mp=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,bp=hp(mp.exec);pp&&!vp&&dp(yp,"name",{configurable:!0,get:function(){try{return bp(mp,gp(this))[1]}catch(Aw){return""}}});var Sp=gn.includes,wp=_i;ro({target:"Array",proto:!0,forced:o((function(){return!Array(1).includes()}))},{includes:function(t){return Sp(this,t,arguments.length>1?arguments[1]:void 0)}}),wp("includes");var Op=V,Ep=j,xp=rr("match"),jp=function(t){var r;return Op(t)&&(void 0!==(r=t[xp])?!!r:"RegExp"==Ep(t))},Tp=TypeError,Ip=function(t){if(jp(t))throw Tp("The method doesn't accept regular expressions");return t},Pp=rr("match"),Ap=function(t){var r=/./;try{"/./"[t](r)}catch(e){try{return r[Pp]=!1,"/./"[t](r)}catch(n){}}return!1},Rp=ro,Cp=Ip,Np=L,kp=Pf,Lp=Ap,Mp=w("".indexOf);Rp({target:"String",proto:!0,forced:!Lp("includes")},{includes:function(t){return!!~Mp(kp(Np(this)),kp(Cp(t)),arguments.length>1?arguments[1]:void 0)}});var Fp=ro,_p=tp.find,Dp=_i,Up="find",zp=!0;Up in[]&&Array(1).find((function(){zp=!1})),Fp({target:"Array",proto:!0,forced:zp},{find:function(t){return _p(this,t,arguments.length>1?arguments[1]:void 0)}}),Dp(Up);var Gp=ro,Wp=tp.findIndex,Bp=_i,Vp="findIndex",$p=!0;Vp in[]&&Array(1).findIndex((function(){$p=!1})),Gp({target:"Array",proto:!0,forced:$p},{findIndex:function(t){return Wp(this,t,arguments.length>1?arguments[1]:void 0)}}),Bp(Vp);var Hp=ht,Jp=TypeError,qp=ro,Kp=Dt,Yp=cn,Xp=en,Qp=pn,Zp=Wl,tv=io,rv=zo,ev=fo,nv=function(t,r){if(!delete t[r])throw Jp("Cannot delete property "+Hp(r)+" of "+Hp(t))},ov=Vo("splice"),iv=Math.max,uv=Math.min;qp({target:"Array",proto:!0,forced:!ov},{splice:function(t,r){var e,n,o,i,u,c,a=Kp(this),f=Qp(a),s=Yp(t,f),l=arguments.length;for(0===l?e=n=0:1===l?(e=0,n=f-s):(e=l-2,n=uv(iv(Xp(r),0),f-s)),tv(f+e-n),o=rv(a,n),i=0;i<n;i++)(u=s+i)in a&&ev(o,i,a[u]);if(o.length=n,e<n){for(i=s;i<f-n;i++)c=i+e,(u=i+n)in a?a[c]=a[u]:nv(a,c);for(i=f;i>f-n+e;i--)nv(a,i-1)}else if(e>n)for(i=f-n;i>s;i--)c=i+e-1,(u=i+n-1)in a?a[c]=a[u]:nv(a,c);for(i=0;i<e;i++)a[i+s]=arguments[i+2];return Zp(a,f-n+e),o}});var cv=tp.map;ro({target:"Array",proto:!0,forced:!Vo("map")},{map:function(t){return cv(this,t,arguments.length>1?arguments[1]:void 0)}});var av,fv=ro,sv=zc,lv=n.f,pv=sn,vv=Pf,hv=Ip,dv=L,yv=Ap,gv=sv("".endsWith),mv=sv("".slice),bv=Math.min,Sv=yv("endsWith");fv({target:"String",proto:!0,forced:!!(Sv||(av=lv(String.prototype,"endsWith"),!av||av.writable))&&!Sv},{endsWith:function(t){var r=vv(dv(this));hv(t);var e=arguments.length>1?arguments[1]:void 0,n=r.length,o=void 0===e?n:bv(pv(e),n),i=vv(t);return gv?gv(r,i,o):mv(r,o-i.length,o)===i}});var wv=e,Ov={},Ev=rr;Ov.f=Ev;var xv=wv,jv=Gt,Tv=Ov,Iv=Pr.f,Pv=function(t){var r=xv.Symbol||(xv.Symbol={});jv(r,t)||Iv(r,t,{value:Tv.f(t)})},Av=f,Rv=q,Cv=rr,Nv=Xe,kv=function(){var t=Rv("Symbol"),r=t&&t.prototype,e=r&&r.valueOf,n=Cv("toPrimitive");r&&!r[n]&&Nv(r,n,(function(t){return Av(e,this)}),{arity:1})},Lv=kv;Pv("toPrimitive"),Lv();var Mv=kr,Fv=Tt,_v=TypeError,Dv=Gt,Uv=Xe,zv=function(t){if(Mv(this),"string"===t||"default"===t)t="string";else if("number"!==t)throw _v("Incorrect hint");return Fv(this,t)},Gv=rr("toPrimitive"),Wv=Date.prototype;Dv(Wv,Gv)||Uv(Wv,Gv,zv);var Bv=ro,Vv=e,$v=f,Hv=w,Jv=i,qv=ut,Kv=o,Yv=Gt,Xv=K,Qv=kr,Zv=_,th=pr,rh=Pf,eh=y,nh=Pi,oh=ai,ih=Qe,uh=oc,ch=In,ah=n,fh=Pr,sh=ii,lh=s,ph=Xe,vh=rf,hh=It,dh=de,yh=Ht,gh=rr,mh=Ov,bh=Pv,Sh=kv,wh=uu,Oh=Ae,Eh=tp.forEach,xh=he("hidden"),jh="Symbol",Th=Oh.set,Ih=Oh.getterFor(jh),Ph=Object.prototype,Ah=Vv.Symbol,Rh=Ah&&Ah.prototype,Ch=Vv.TypeError,Nh=Vv.QObject,kh=ah.f,Lh=fh.f,Mh=uh.f,Fh=lh.f,_h=Hv([].push),Dh=hh("symbols"),Uh=hh("op-symbols"),zh=hh("wks"),Gh=!Nh||!Nh.prototype||!Nh.prototype.findChild,Wh=Jv&&Kv((function(){return 7!=nh(Lh({},"a",{get:function(){return Lh(this,"a",{value:7}).a}})).a}))?function(t,r,e){var n=kh(Ph,r);n&&delete Ph[r],Lh(t,r,e),n&&t!==Ph&&Lh(Ph,r,n)}:Lh,Bh=function(t,r){var e=Dh[t]=nh(Rh);return Th(e,{type:jh,tag:t,description:r}),Jv||(e.description=r),e},Vh=function(t,r,e){t===Ph&&Vh(Uh,r,e),Qv(t);var n=th(r);return Qv(e),Yv(Dh,n)?(e.enumerable?(Yv(t,xh)&&t[xh][n]&&(t[xh][n]=!1),e=nh(e,{enumerable:eh(0,!1)})):(Yv(t,xh)||Lh(t,xh,eh(1,{})),t[xh][n]=!0),Wh(t,n,e)):Lh(t,n,e)},$h=function(t,r){Qv(t);var e=Zv(r),n=oh(e).concat(Kh(e));return Eh(n,(function(r){Jv&&!$v(Hh,e,r)||Vh(t,r,e[r])})),t},Hh=function(t){var r=th(t),e=$v(Fh,this,r);return!(this===Ph&&Yv(Dh,r)&&!Yv(Uh,r))&&(!(e||!Yv(this,r)||!Yv(Dh,r)||Yv(this,xh)&&this[xh][r])||e)},Jh=function(t,r){var e=Zv(t),n=th(r);if(e!==Ph||!Yv(Dh,n)||Yv(Uh,n)){var o=kh(e,n);return!o||!Yv(Dh,n)||Yv(e,xh)&&e[xh][n]||(o.enumerable=!0),o}},qh=function(t){var r=Mh(Zv(t)),e=[];return Eh(r,(function(t){Yv(Dh,t)||Yv(dh,t)||_h(e,t)})),e},Kh=function(t){var r=t===Ph,e=Mh(r?Uh:Zv(t)),n=[];return Eh(e,(function(t){!Yv(Dh,t)||r&&!Yv(Ph,t)||_h(n,Dh[t])})),n};qv||(Ah=function(){if(Xv(Rh,this))throw Ch("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?rh(arguments[0]):void 0,r=yh(t),e=function(t){this===Ph&&$v(e,Uh,t),Yv(this,xh)&&Yv(this[xh],r)&&(this[xh][r]=!1),Wh(this,r,eh(1,t))};return Jv&&Gh&&Wh(Ph,r,{configurable:!0,set:e}),Bh(r,t)},ph(Rh=Ah.prototype,"toString",(function(){return Ih(this).tag})),ph(Ah,"withoutSetter",(function(t){return Bh(yh(t),t)})),lh.f=Hh,fh.f=Vh,sh.f=$h,ah.f=Jh,ih.f=uh.f=qh,ch.f=Kh,mh.f=function(t){return Bh(gh(t),t)},Jv&&(vh(Rh,"description",{configurable:!0,get:function(){return Ih(this).description}}),ph(Ph,"propertyIsEnumerable",Hh,{unsafe:!0}))),Bv({global:!0,constructor:!0,wrap:!0,forced:!qv,sham:!qv},{Symbol:Ah}),Eh(oh(zh),(function(t){bh(t)})),Bv({target:jh,stat:!0,forced:!qv},{useSetter:function(){Gh=!0},useSimple:function(){Gh=!1}}),Bv({target:"Object",stat:!0,forced:!qv,sham:!Jv},{create:function(t,r){return void 0===r?nh(t):$h(nh(t),r)},defineProperty:Vh,defineProperties:$h,getOwnPropertyDescriptor:Jh}),Bv({target:"Object",stat:!0,forced:!qv},{getOwnPropertyNames:qh}),Sh(),wh(Ah,jh),dh[xh]=!0;var Yh=ut&&!!Symbol.for&&!!Symbol.keyFor,Xh=ro,Qh=q,Zh=Gt,td=Pf,rd=It,ed=Yh,nd=rd("string-to-symbol-registry"),od=rd("symbol-to-string-registry");Xh({target:"Symbol",stat:!0,forced:!ed},{for:function(t){var r=td(t);if(Zh(nd,r))return nd[r];var e=Qh("Symbol")(r);return nd[r]=e,od[e]=r,e}});var id=ro,ud=Gt,cd=pt,ad=ht,fd=Yh,sd=It("symbol-to-string-registry");id({target:"Symbol",stat:!0,forced:!fd},{keyFor:function(t){if(!cd(t))throw TypeError(ad(t)+" is not a symbol");if(ud(sd,t))return sd[t]}});var ld=In,pd=Dt;ro({target:"Object",stat:!0,forced:!ut||o((function(){ld.f(1)}))},{getOwnPropertySymbols:function(t){var r=ld.f;return r?r(pd(t)):[]}});var vd=ro,hd=i,dd=w,yd=Gt,gd=G,md=K,bd=Pf,Sd=rf,wd=Dn,Od=e.Symbol,Ed=Od&&Od.prototype;if(hd&&gd(Od)&&(!("description"in Ed)||void 0!==Od().description)){var xd={},jd=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:bd(arguments[0]),r=md(Ed,this)?new Od(t):void 0===t?Od():Od(t);return""===t&&(xd[r]=!0),r};wd(jd,Od),jd.prototype=Ed,Ed.constructor=jd;var Td="Symbol(test)"==String(Od("test")),Id=dd(Ed.valueOf),Pd=dd(Ed.toString),Ad=/^Symbol\((.*)\)[^)]+$/,Rd=dd("".replace),Cd=dd("".slice);Sd(Ed,"description",{configurable:!0,get:function(){var t=Id(this);if(yd(xd,t))return"";var r=Pd(t),e=Td?Cd(r,7,-1):Rd(r,Ad,"$1");return""===e?void 0:e}}),vd({global:!0,constructor:!0,forced:!0},{Symbol:jd})}var Nd=Pr.f,kd=Pf,Ld=V,Md=Jr,Fd=Error,_d=w("".replace),Dd=String(Fd("zxcasd").stack),Ud=/\n\s*at [^:]*:[^\n]*/,zd=Ud.test(Dd),Gd=y,Wd=!o((function(){var t=Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",Gd(1,7)),7!==t.stack)})),Bd=Jr,Vd=function(t,r){if(zd&&"string"==typeof t&&!Fd.prepareStackTrace)for(;r--;)t=_d(t,Ud,"");return t},$d=Wd,Hd=Error.captureStackTrace,Jd=q,qd=Gt,Kd=Jr,Yd=K,Xd=wu,Qd=Dn,Zd=function(t,r,e){e in t||Nd(t,e,{configurable:!0,get:function(){return r[e]},set:function(t){r[e]=t}})},ty=_a,ry=function(t,r){return void 0===t?arguments.length<2?"":r:kd(t)},ey=function(t,r){Ld(r)&&"cause"in r&&Md(t,"cause",r.cause)},ny=function(t,r,e,n){$d&&(Hd?Hd(t,r):Bd(t,"stack",Vd(e,n)))},oy=i,iy=ro,uy=ul,cy=function(t,r,e,n){var o="stackTraceLimit",i=n?2:1,u=t.split("."),c=u[u.length-1],a=Jd.apply(null,u);if(a){var f=a.prototype;if(qd(f,"cause")&&delete f.cause,!e)return a;var s=Jd("Error"),l=r((function(t,r){var e=ry(n?r:t,void 0),o=n?new a(t):new a;return void 0!==e&&Kd(o,"message",e),ny(o,l,o.stack,2),this&&Yd(f,this)&&ty(o,this,l),arguments.length>i&&ey(o,arguments[i]),o}));l.prototype=f,"Error"!==c?Xd?Xd(l,s):Qd(l,s,{name:!0}):oy&&o in a&&(Zd(l,a,o),Zd(l,a,"prepareStackTrace")),Qd(l,a);try{f.name!==c&&Kd(f,"name",c),f.constructor=l}catch(Aw){}return l}},ay="WebAssembly",fy=e.WebAssembly,sy=7!==Error("e",{cause:7}).cause,ly=function(t,r){var e={};e[t]=cy(t,r,sy),iy({global:!0,constructor:!0,arity:1,forced:sy},e)},py=function(t,r){if(fy&&fy[t]){var e={};e[t]=cy("WebAssembly."+t,r,sy),iy({target:ay,stat:!0,constructor:!0,arity:1,forced:sy},e)}};ly("Error",(function(t){return function(r){return uy(t,this,arguments)}})),ly("EvalError",(function(t){return function(r){return uy(t,this,arguments)}})),ly("RangeError",(function(t){return function(r){return uy(t,this,arguments)}})),ly("ReferenceError",(function(t){return function(r){return uy(t,this,arguments)}})),ly("SyntaxError",(function(t){return function(r){return uy(t,this,arguments)}})),ly("TypeError",(function(t){return function(r){return uy(t,this,arguments)}})),ly("URIError",(function(t){return function(r){return uy(t,this,arguments)}})),py("CompileError",(function(t){return function(r){return uy(t,this,arguments)}})),py("LinkError",(function(t){return function(r){return uy(t,this,arguments)}})),py("RuntimeError",(function(t){return function(r){return uy(t,this,arguments)}}));var vy=w(1..valueOf),hy=L,dy=Pf,yy="\t\n\v\f\r                 \u2028\u2029\ufeff",gy=w("".replace),my=RegExp("^["+yy+"]+"),by=RegExp("(^|[^"+yy+"])["+yy+"]+$"),Sy=function(t){return function(r){var e=dy(hy(r));return 1&t&&(e=gy(e,my,"")),2&t&&(e=gy(e,by,"$1")),e}},wy={start:Sy(1),end:Sy(2),trim:Sy(3)},Oy=ro,Ey=i,xy=e,jy=wv,Ty=w,Iy=Jn,Py=Gt,Ay=_a,Ry=K,Cy=pt,Ny=fr,ky=o,Ly=Qe.f,My=n.f,Fy=Pr.f,_y=vy,Dy=wy.trim,Uy="Number",zy=xy.Number;jy.Number;var Gy=zy.prototype,Wy=xy.TypeError,By=Ty("".slice),Vy=Ty("".charCodeAt),$y=function(t){var r=Ny(t,"number");return"bigint"==typeof r?r:Hy(r)},Hy=function(t){var r,e,n,o,i,u,c,a,f=Ny(t,"number");if(Cy(f))throw Wy("Cannot convert a Symbol value to a number");if("string"==typeof f&&f.length>2)if(f=Dy(f),43===(r=Vy(f,0))||45===r){if(88===(e=Vy(f,2))||120===e)return NaN}else if(48===r){switch(Vy(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=By(f,2)).length,c=0;c<u;c++)if((a=Vy(i,c))<48||a>o)return NaN;return parseInt(i,n)}return+f},Jy=Iy(Uy,!zy(" 0o1")||!zy("0b1")||zy("+0x1")),qy=function(t){return Ry(Gy,t)&&ky((function(){_y(t)}))},Ky=function(t){var r=arguments.length<1?0:zy($y(t));return qy(this)?Ay(Object(r),this,Ky):r};Ky.prototype=Gy,Jy&&(Gy.constructor=Ky),Oy({global:!0,constructor:!0,wrap:!0,forced:Jy},{Number:Ky});Jy&&function(t,r){for(var e,n=Ey?Ly(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++)Py(r,e=n[o])&&!Py(t,e)&&Fy(t,e,My(r,e))}(jy.Number,zy);var Yy=Dt,Xy=Ji,Qy=Ui;ro({target:"Object",stat:!0,forced:o((function(){Xy(1)})),sham:!Qy},{getPrototypeOf:function(t){return Xy(Yy(t))}});var Zy=e,tg=uu;ro({global:!0},{Reflect:{}}),tg(Zy.Reflect,"Reflect",!0);var rg=w,eg=mt,ng=V,og=Gt,ig=cl,ug=u,cg=Function,ag=rg([].concat),fg=rg([].join),sg={},lg=function(t,r,e){if(!og(sg,r)){for(var n=[],o=0;o<r;o++)n[o]="a["+o+"]";sg[r]=cg("C,a","return new C("+fg(n,",")+")")}return sg[r](t,e)},pg=ug?cg.bind:function(t){var r=eg(this),e=r.prototype,n=ig(arguments,1),o=function(){var e=ag(n,ig(arguments));return this instanceof o?lg(r,e.length,e):r.apply(t,e)};return ng(e)&&(o.prototype=e),o},vg=ko,hg=ht,dg=TypeError,yg=function(t){if(vg(t))return t;throw dg(hg(t)+" is not a constructor")},gg=ro,mg=ul,bg=pg,Sg=yg,wg=kr,Og=V,Eg=Pi,xg=o,jg=q("Reflect","construct"),Tg=Object.prototype,Ig=[].push,Pg=xg((function(){function t(){}return!(jg((function(){}),[],t)instanceof t)})),Ag=!xg((function(){jg((function(){}))})),Rg=Pg||Ag;gg({target:"Reflect",stat:!0,forced:Rg,sham:Rg},{construct:function(t,r){Sg(t),wg(r);var e=arguments.length<3?t:Sg(arguments[2]);if(Ag&&!Pg)return jg(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 mg(Ig,n,r),new(mg(bg,t,n))}var o=e.prototype,i=Eg(Og(o)?o:Tg),u=mg(t,i,r);return Og(u)?u:i}});var Cg,Ng,kg,Lg,Mg="undefined"!=typeof process&&"process"==j(process),Fg=kr,_g=yg,Dg=C,Ug=rr("species"),zg=TypeError,Gg=/(?:ipad|iphone|ipod).*applewebkit/i.test(Y),Wg=e,Bg=ul,Vg=Vc,$g=G,Hg=Gt,Jg=o,qg=yi,Kg=cl,Yg=yr,Xg=function(t,r){if(t<r)throw zg("Not enough arguments");return t},Qg=Gg,Zg=Mg,tm=Wg.setImmediate,rm=Wg.clearImmediate,em=Wg.process,nm=Wg.Dispatch,om=Wg.Function,im=Wg.MessageChannel,um=Wg.String,cm=0,am={},fm="onreadystatechange";Jg((function(){Cg=Wg.location}));var sm=function(t){if(Hg(am,t)){var r=am[t];delete am[t],r()}},lm=function(t){return function(){sm(t)}},pm=function(t){sm(t.data)},vm=function(t){Wg.postMessage(um(t),Cg.protocol+"//"+Cg.host)};tm&&rm||(tm=function(t){Xg(arguments.length,1);var r=$g(t)?t:om(t),e=Kg(arguments,1);return am[++cm]=function(){Bg(r,void 0,e)},Ng(cm),cm},rm=function(t){delete am[t]},Zg?Ng=function(t){em.nextTick(lm(t))}:nm&&nm.now?Ng=function(t){nm.now(lm(t))}:im&&!Qg?(Lg=(kg=new im).port2,kg.port1.onmessage=pm,Ng=Vg(Lg.postMessage,Lg)):Wg.addEventListener&&$g(Wg.postMessage)&&!Wg.importScripts&&Cg&&"file:"!==Cg.protocol&&!Jg(vm)?(Ng=vm,Wg.addEventListener("message",pm,!1)):Ng=fm in Yg("script")?function(t){qg.appendChild(Yg("script")).onreadystatechange=function(){qg.removeChild(this),sm(t)}}:function(t){setTimeout(lm(t),0)});var hm={set:tm,clear:rm},dm=function(){this.head=null,this.tail=null};dm.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 ym,gm,mm,bm,Sm,wm=dm,Om=/ipad|iphone|ipod/i.test(Y)&&"undefined"!=typeof Pebble,Em=/web0s(?!.*chrome)/i.test(Y),xm=e,jm=Vc,Tm=n.f,Im=hm.set,Pm=wm,Am=Gg,Rm=Om,Cm=Em,Nm=Mg,km=xm.MutationObserver||xm.WebKitMutationObserver,Lm=xm.document,Mm=xm.process,Fm=xm.Promise,_m=Tm(xm,"queueMicrotask"),Dm=_m&&_m.value;if(!Dm){var Um=new Pm,zm=function(){var t,r;for(Nm&&(t=Mm.domain)&&t.exit();r=Um.get();)try{r()}catch(Aw){throw Um.head&&ym(),Aw}t&&t.enter()};Am||Nm||Cm||!km||!Lm?!Rm&&Fm&&Fm.resolve?((bm=Fm.resolve(void 0)).constructor=Fm,Sm=jm(bm.then,bm),ym=function(){Sm(zm)}):Nm?ym=function(){Mm.nextTick(zm)}:(Im=jm(Im,xm),ym=function(){Im(zm)}):(gm=!0,mm=Lm.createTextNode(""),new km(zm).observe(mm,{characterData:!0}),ym=function(){mm.data=gm=!gm}),Dm=function(t){Um.head||ym(),Um.add(t)}}var Gm=Dm,Wm=function(t){try{return{error:!1,value:t()}}catch(Aw){return{error:!0,value:Aw}}},Bm=e.Promise,Vm="object"==typeof Deno&&Deno&&"object"==typeof Deno.version,$m=!Vm&&!Mg&&"object"==typeof window&&"object"==typeof document,Hm=e,Jm=Bm,qm=G,Km=Jn,Ym=ae,Xm=rr,Qm=$m,Zm=Vm,tb=nt;Jm&&Jm.prototype;var rb=Xm("species"),eb=!1,nb=qm(Hm.PromiseRejectionEvent),ob=Km("Promise",(function(){var t=Ym(Jm),r=t!==String(Jm);if(!r&&66===tb)return!0;if(!tb||tb<51||!/native code/.test(t)){var e=new Jm((function(t){t(1)})),n=function(t){t((function(){}),(function(){}))};if((e.constructor={})[rb]=n,!(eb=e.then((function(){}))instanceof n))return!0}return!r&&(Qm||Zm)&&!nb})),ib={CONSTRUCTOR:ob,REJECTION_EVENT:nb,SUBCLASSING:eb},ub={},cb=mt,ab=TypeError,fb=function(t){var r,e;this.promise=new t((function(t,n){if(void 0!==r||void 0!==e)throw ab("Bad Promise constructor");r=t,e=n})),this.resolve=cb(r),this.reject=cb(e)};ub.f=function(t){return new fb(t)};var sb,lb,pb,vb=ro,hb=Mg,db=e,yb=f,gb=Xe,mb=wu,bb=uu,Sb=af,wb=mt,Ob=G,Eb=V,xb=Pa,jb=function(t,r){var e,n=Fg(t).constructor;return void 0===n||Dg(e=Fg(n)[Ug])?r:_g(e)},Tb=hm.set,Ib=Gm,Pb=function(t,r){try{1==arguments.length?console.error(t):console.error(t,r)}catch(Aw){}},Ab=Wm,Rb=wm,Cb=Ae,Nb=Bm,kb=ub,Lb="Promise",Mb=ib.CONSTRUCTOR,Fb=ib.REJECTION_EVENT,_b=ib.SUBCLASSING,Db=Cb.getterFor(Lb),Ub=Cb.set,zb=Nb&&Nb.prototype,Gb=Nb,Wb=zb,Bb=db.TypeError,Vb=db.document,$b=db.process,Hb=kb.f,Jb=Hb,qb=!!(Vb&&Vb.createEvent&&db.dispatchEvent),Kb="unhandledrejection",Yb=function(t){var r;return!(!Eb(t)||!Ob(r=t.then))&&r},Xb=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&&eS(r),r.rejection=1),!0===c?e=i:(s&&s.enter(),e=c(i),s&&(s.exit(),o=!0)),e===t.promise?f(Bb("Promise-chain cycle")):(n=Yb(e))?yb(n,e,a,f):a(e)):f(i)}catch(Aw){s&&!o&&s.exit(),f(Aw)}},Qb=function(t,r){t.notified||(t.notified=!0,Ib((function(){for(var e,n=t.reactions;e=n.get();)Xb(e,t);t.notified=!1,r&&!t.rejection&&tS(t)})))},Zb=function(t,r,e){var n,o;qb?((n=Vb.createEvent("Event")).promise=r,n.reason=e,n.initEvent(t,!1,!0),db.dispatchEvent(n)):n={promise:r,reason:e},!Fb&&(o=db["on"+t])?o(n):t===Kb&&Pb("Unhandled promise rejection",e)},tS=function(t){yb(Tb,db,(function(){var r,e=t.facade,n=t.value;if(rS(t)&&(r=Ab((function(){hb?$b.emit("unhandledRejection",n,e):Zb(Kb,e,n)})),t.rejection=hb||rS(t)?2:1,r.error))throw r.value}))},rS=function(t){return 1!==t.rejection&&!t.parent},eS=function(t){yb(Tb,db,(function(){var r=t.facade;hb?$b.emit("rejectionHandled",r):Zb("rejectionhandled",r,t.value)}))},nS=function(t,r,e){return function(n){t(r,n,e)}},oS=function(t,r,e){t.done||(t.done=!0,e&&(t=e),t.value=r,t.state=2,Qb(t,!0))},iS=function(t,r,e){if(!t.done){t.done=!0,e&&(t=e);try{if(t.facade===r)throw Bb("Promise can't be resolved itself");var n=Yb(r);n?Ib((function(){var e={done:!1};try{yb(n,r,nS(iS,e,t),nS(oS,e,t))}catch(Aw){oS(e,Aw,t)}})):(t.value=r,t.state=1,Qb(t,!1))}catch(Aw){oS({done:!1},Aw,t)}}};if(Mb&&(Wb=(Gb=function(t){xb(this,Wb),wb(t),yb(sb,this);var r=Db(this);try{t(nS(iS,r),nS(oS,r))}catch(Aw){oS(r,Aw)}}).prototype,(sb=function(t){Ub(this,{type:Lb,done:!1,notified:!1,parent:!1,reactions:new Rb,rejection:!1,state:0,value:void 0})}).prototype=gb(Wb,"then",(function(t,r){var e=Db(this),n=Hb(jb(this,Gb));return e.parent=!0,n.ok=!Ob(t)||t,n.fail=Ob(r)&&r,n.domain=hb?$b.domain:void 0,0==e.state?e.reactions.add(n):Ib((function(){Xb(n,e)})),n.promise})),lb=function(){var t=new sb,r=Db(t);this.promise=t,this.resolve=nS(iS,r),this.reject=nS(oS,r)},kb.f=Hb=function(t){return t===Gb||undefined===t?new lb(t):Jb(t)},Ob(Nb)&&zb!==Object.prototype)){pb=zb.then,_b||gb(zb,"then",(function(t,r){var e=this;return new Gb((function(t,r){yb(pb,e,t,r)})).then(t,r)}),{unsafe:!0});try{delete zb.constructor}catch(Aw){}mb&&mb(zb,Wb)}vb({global:!0,constructor:!0,wrap:!0,forced:Mb},{Promise:Gb}),bb(Gb,Lb,!1),Sb(Lb);var uS=Bm,cS=ib.CONSTRUCTOR||!ka((function(t){uS.all(t).then(void 0,(function(){}))})),aS=f,fS=mt,sS=ub,lS=Wm,pS=ja;ro({target:"Promise",stat:!0,forced:cS},{all:function(t){var r=this,e=sS.f(r),n=e.resolve,o=e.reject,i=lS((function(){var e=fS(r.resolve),i=[],u=0,c=1;pS(t,(function(t){var a=u++,f=!1;c++,aS(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 vS=ro,hS=ib.CONSTRUCTOR,dS=Bm,yS=q,gS=G,mS=Xe,bS=dS&&dS.prototype;if(vS({target:"Promise",proto:!0,forced:hS,real:!0},{catch:function(t){return this.then(void 0,t)}}),gS(dS)){var SS=yS("Promise").prototype.catch;bS.catch!==SS&&mS(bS,"catch",SS,{unsafe:!0})}var wS=f,OS=mt,ES=ub,xS=Wm,jS=ja;ro({target:"Promise",stat:!0,forced:cS},{race:function(t){var r=this,e=ES.f(r),n=e.reject,o=xS((function(){var o=OS(r.resolve);jS(t,(function(t){wS(o,r,t).then(e.resolve,n)}))}));return o.error&&n(o.value),e.promise}});var TS=f,IS=ub;ro({target:"Promise",stat:!0,forced:ib.CONSTRUCTOR},{reject:function(t){var r=IS.f(this);return TS(r.reject,void 0,t),r.promise}});var PS=kr,AS=V,RS=ub,CS=ro,NS=ib.CONSTRUCTOR,kS=function(t,r){if(PS(t),AS(r)&&r.constructor===t)return r;var e=RS.f(t);return(0,e.resolve)(r),e.promise};q("Promise"),CS({target:"Promise",stat:!0,forced:NS},{resolve:function(t){return kS(this,t)}}),Pv("iterator"),Pv("asyncIterator");var LS=q,MS=uu;Pv("toStringTag"),MS(LS("Symbol"),"Symbol"),uu(e.JSON,"JSON",!0),uu(Math,"Math",!0);var FS=ro,_S=no,DS=ko,US=V,zS=cn,GS=pn,WS=_,BS=fo,VS=rr,$S=cl,HS=Vo("slice"),JS=VS("species"),qS=Array,KS=Math.max;FS({target:"Array",proto:!0,forced:!HS},{slice:function(t,r){var e,n,o,i=WS(this),u=GS(i),c=zS(t,u),a=zS(void 0===r?u:r,u);if(_S(i)&&(e=i.constructor,(DS(e)&&(e===qS||_S(e.prototype))||US(e)&&null===(e=e[JS]))&&(e=void 0),e===qS||void 0===e))return $S(i,c,a);for(n=new(void 0===e?qS:e)(KS(a-c,0)),o=0;c<a;c++,o++)c in i&&BS(n,o,i[c]);return n.length=o,n}});var YS=kr,XS=la,QS=Vc,ZS=f,tw=Dt,rw=function(t,r,e,n){try{return n?r(YS(e)[0],e[1]):r(e)}catch(Aw){XS(t,"throw",Aw)}},ew=qc,nw=ko,ow=pn,iw=fo,uw=ca,cw=ta,aw=Array,fw=function(t){var r=tw(t),e=nw(this),n=arguments.length,o=n>1?arguments[1]:void 0,i=void 0!==o;i&&(o=QS(o,n>2?arguments[2]:void 0));var u,c,a,f,s,l,p=cw(r),v=0;if(!p||this===aw&&ew(p))for(u=ow(r),c=e?new this(u):aw(u);u>v;v++)l=i?o(r[v],v):r[v],iw(c,v,l);else for(s=(f=uw(r,p)).next,c=e?new this:[];!(a=ZS(s,f)).done;v++)l=i?rw(f,o,[a.value,v],!0):a.value,iw(c,v,l);return c.length=v,c};ro({target:"Array",stat:!0,forced:!ka((function(t){Array.from(t)}))},{from:fw});var sw,lw,pw=ro,vw=f,hw=G,dw=kr,yw=Pf,gw=(sw=!1,(lw=/[ac]/).exec=function(){return sw=!0,/./.exec.apply(this,arguments)},!0===lw.test("abc")&&sw),mw=/./.test;pw({target:"RegExp",proto:!0,forced:!gw},{test:function(t){var r=dw(this),e=yw(t),n=r.exec;if(!hw(n))return vw(mw,r,e);var o=vw(n,r,e);return null!==o&&(dw(o),!0)}});var bw=tp.filter;ro({target:"Array",proto:!0,forced:!Vo("filter")},{filter:function(t){return bw(this,t,arguments.length>1?arguments[1]:void 0)}});var Sw=ro,ww=o,Ow=_,Ew=n.f,xw=i;Sw({target:"Object",stat:!0,forced:!xw||ww((function(){Ew(1)})),sham:!xw},{getOwnPropertyDescriptor:function(t,r){return Ew(Ow(t),r)}});var jw=kn,Tw=_,Iw=n,Pw=fo;ro({target:"Object",stat:!0,sham:!i},{getOwnPropertyDescriptors:function(t){for(var r,e,n=Tw(t),o=Iw.f,i=jw(n),u={},c=0;i.length>c;)void 0!==(e=o(n,r=i[c++]))&&Pw(u,r,e);return u}}),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[T]={}}function l(t,e,n,o){var i=t[T][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[T][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 p(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 p(t,r,e,n)})))})).catch((function(t){if(r.er)throw t;throw r.e=null,t}))}function v(t,r){return r.C=p(t,r,r,{}).then((function(){return h(t,r,{})})).then((function(){return r.n}))}function h(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=h(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,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;C=C.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,S=m?self:t;if(b){var w=document.querySelector("base[href]");w&&(y=w.href)}if(!y&&"undefined"!=typeof location){var O=(y=location.href.split("#")[0].split("?")[0]).lastIndexOf("/");-1!==O&&(y=y.slice(0,O+1))}var E,x=/\\/g,j=g&&Symbol.toStringTag,T=g?Symbol():"@",I=s.prototype;I.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||v(n,r)}))},I.createContext=function(t){var r=this;return{url:t,resolve:function(e,n){return Promise.resolve(r.resolve(e,n||t))}}},I.register=function(t,r,e){E=[t,r,e]},I.getRegister=function(){var t=E;return E=void 0,t};var P=Object.freeze(Object.create(null));S.System=new s;var A,R,C=Promise.resolve(),N={imports:{},scopes:{},depcache:{},integrity:{}},k=b;if(I.prepareImport=function(t){return(k||t)&&(d(),k=!1),C},b&&(d(),window.addEventListener("DOMContentLoaded",d)),I.addImportMap=function(t,r){i(t,r||y,N)},b){window.addEventListener("error",(function(t){M=t.filename,F=t.error}));var L=location.origin}I.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 M,F,_={},D=I.register;I.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){A=t;var o=this;R=setTimeout((function(){_[n.src]=[t,r],o.import(n.src)}))}}else A=void 0;return D.call(this,t,r)},I.instantiate=function(t,e){var n=_[t];if(n)return delete _[t],n;var o=this;return Promise.resolve(I.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),M===t)u(F);else{var r=o.getRegister(t);r&&r[0]===A&&clearTimeout(R),i(r)}})),document.head.appendChild(n)}))}))},I.shouldFetch=function(){return!1},"undefined"!=typeof fetch&&(I.fetch=fetch);var U=I.instantiate,z=/^(text|application)\/(x-)?javascript(;|$)/;I.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||!z.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)},I.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=I.instantiate;I.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&&(I.instantiate=function(t){var r=this;return Promise.resolve().then((function(){return importScripts(t),r.getRegister(t)}))})}()}();
@charset "UTF-8";.ibiz-form-data-comparison{height:calc(100% - 20px);overflow:auto}.ibiz-form-data-comparison__content{display:flex}.ibiz-form-data-comparison__top-hidesame-content{display:flex;place-content:center space-between;align-items:center;height:50px;margin-bottom:10px}.ibiz-form-data-comparison__top-content{display:flex;width:100%;text-align:center;background-color:#f2f2f2;border-left:1px solid lightgray}.ibiz-form-data-comparison__top-content--attr{width:200px;border:1px solid lightgray;padding:5px 10px}.ibiz-form-data-comparison__top-content--left{flex:1;width:calc(100% - 100px);border:1px solid lightgray;padding:5px 10px}.ibiz-form-data-comparison__top-content--right{flex:1;border:1px solid lightgray;width:calc(100% - 100px);padding:5px 10px}.ibiz-form-data-comparison__top-hidesame-content-right{display:flex;flex-flow:row nowrap;place-content:center center;align-items:center}.ibiz-form-data-comparison__top-hidesame-content-right-item{display:flex;flex-direction:row;place-content:center space-around;align-items:center;width:60px;height:30px}.ibiz-form-data-comparison__top-hidesame-content-right-item-add{width:16px;height:16px;background:#d5f3e0}.ibiz-form-data-comparison__top-hidesame-content-right-item-change{width:16px;height:16px;background:#fceecd}.ibiz-form-data-comparison__top-hidesame-content-right-item-delete{width:16px;height:16px;background:#ffd5d5}.ibiz-form-data-comparison__form-grid-item{--ibiz-text-color-readonly: black;display:flex;width:100%}.ibiz-form-data-comparison__form-grid-item--name{border:1px solid lightgray;padding:5px 10px;width:200px;text-align:center}.ibiz-form-data-comparison__form-grid-item--left,.ibiz-form-data-comparison__form-grid-item--right{border:1px solid lightgray;padding:5px 10px;flex:1;text-align:center}.ibiz-form-data-comparison__form-grid-item.is-add .ibiz-form-data-comparison__form-grid-item--left,.ibiz-form-data-comparison__form-grid-item.is-add .ibiz-form-data-comparison__form-grid-item--right{background-color:#d5f3e0}.ibiz-form-data-comparison__form-grid-item.is-update .ibiz-form-data-comparison__form-grid-item--left,.ibiz-form-data-comparison__form-grid-item.is-update .ibiz-form-data-comparison__form-grid-item--right{background-color:#fceecd}.ibiz-form-data-comparison__form-grid-item.is-delete .ibiz-form-data-comparison__form-grid-item--left,.ibiz-form-data-comparison__form-grid-item.is-delete .ibiz-form-data-comparison__form-grid-item--right{background-color:#ffd5d5}.ibiz-form-data-comparison__form-page{width:100%}.ibiz-form-data-comparison__druipart{display:flex}.ibiz-form-data-comparison__druipart--caption{width:200px;border:1px solid lightgray;display:flex;align-items:center;justify-content:center}.ibiz-form-data-comparison__druipart--left{border:1px solid lightgray;padding:16px;flex:1;width:calc(50% - 100px)}.ibiz-form-data-comparison__druipart--right{border:1px solid lightgray;flex:1;padding:16px;width:calc(50% - 100px)}.ibiz-form-data-comparison__druipart.is-add .ibiz-form-data-comparison__druipart--left,.ibiz-form-data-comparison__druipart.is-add .ibiz-form-data-comparison__druipart--right{background-color:#d5f3e0}.ibiz-form-data-comparison__druipart.is-update .ibiz-form-data-comparison__druipart--left,.ibiz-form-data-comparison__druipart.is-update .ibiz-form-data-comparison__druipart--right{background-color:#fceecd}.ibiz-form-data-comparison__druipart.is-delete .ibiz-form-data-comparison__druipart--left,.ibiz-form-data-comparison__druipart.is-delete .ibiz-form-data-comparison__druipart--right{background-color:#ffd5d5}.ibiz-form-data-comparison-group{width:100%}.ibiz-form-data-comparison-group__header{width:100%;border-left:1px solid lightgray;display:flex}.ibiz-form-data-comparison-group__header--name{width:200px;border:1px solid lightgray;max-width:200px;text-align:center;position:relative;font-size:14px;padding:4px}.ibiz-form-data-comparison-group__header div{flex:1;text-align:center;border:1px solid lightgray}.ibiz-form-data-comparison-group__header--icon{position:absolute;font-size:24px;left:4px;cursor:pointer}.ibiz-form-data-comparison-group__header--name-text{flex:1}.ibiz-form-data-comparison-group__header.is-hide-caption{display:none}.ibiz-form-data-comparison-group__content{border-left:1px solid lightgray}.ibiz-form-data-comparison-group__content.is-collapse{display:none}
{
"name": "@ibiz-template-plugin/sy-dsf-web",
"version": "0.0.1-beta.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-beta.50",
"@ibiz-template/controller": "0.0.1-beta.150",
"@ibiz-template/core": "0.0.1-beta.143",
"@ibiz-template/model": "0.0.1-beta.147",
"@ibiz-template/runtime": "0.0.1-beta.148",
"@ibiz-template/service": "0.0.1-beta.148",
"@ibiz-template/theme": "0.0.1-beta.151",
"@ibiz-template/vue-util": "0.0.1-beta.150",
"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",
"@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 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册