youtil 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -8
- package/dist/index.esm.es5.production.js +1 -1
- package/dist/index.umd.es5.production.js +1 -1
- package/dist/vendor.esm.es5.production.js +1 -0
- package/esm/index.js +54 -21
- package/esm/index.js.map +1 -0
- package/package.json +3 -3
- package/cjs/index.d.ts +0 -99
- package/cjs/index.js +0 -251
- package/cjs/typings.d.ts +0 -1
- package/dist/13324d9f.cjs.es5.production.js +0 -1
- package/dist/195e5999.esm.es5.production.js +0 -1
- package/dist/index.cjs.es5.production.js +0 -1
- package/esm/typings.d.ts +0 -1
package/README.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# youtil
|
|
2
2
|
|
|
3
|
-
`youtil`,发音同`util
|
|
3
|
+
`youtil`,发音同`util`,中文可以叫做`油梯`,一个与框架(`Vue`、`React`等)、环境(`Nodejs`、`Browser`等)无关的小巧、精简、实用、不依赖任何第三方库的`JavaScript`工具库。
|
|
4
4
|
|
|
5
|
-
>
|
|
5
|
+
> 1. 代码还在不断补充完善,敬请期待!
|
|
6
|
+
> 2. 少数方法可能依赖DOM,例如`showLoading`;
|
|
6
7
|
|
|
7
8
|
## 如何使用
|
|
8
9
|
|
|
@@ -24,14 +25,27 @@ conssole.log(parseDate('2023-02-14', 'yyyy-MM-dd'));
|
|
|
24
25
|
|
|
25
26
|
之前想了很多名字,包括`autil`、`zutil`、`feutil`等,从a-z试下来只有几个没有被注册,但是不好记,最后才取了这个名字,因为比较好记。
|
|
26
27
|
|
|
27
|
-
##
|
|
28
|
+
## 模块开发
|
|
28
29
|
|
|
29
|
-
|
|
30
|
-
* 更新changelog和package.json
|
|
31
|
-
* npm publish
|
|
32
|
-
* git push
|
|
30
|
+
cnpm run dev
|
|
33
31
|
|
|
34
|
-
|
|
32
|
+
### 目录结构介绍
|
|
33
|
+
|
|
34
|
+
* src: 源文件;
|
|
35
|
+
* docs: 文档;
|
|
36
|
+
* test:测试用例;
|
|
37
|
+
* dist:供浏览器直接使用的bundle模式产物;
|
|
38
|
+
* esm:供其他项目引入;
|
|
39
|
+
* build:文档之类的构建产物;
|
|
40
|
+
|
|
41
|
+
### 代码提交顺序
|
|
42
|
+
|
|
43
|
+
* 更新代码;
|
|
44
|
+
* 更新`package.json`和`changelog`;
|
|
45
|
+
* `npm publish`;
|
|
46
|
+
* `git push`;
|
|
47
|
+
|
|
48
|
+
### 附录
|
|
35
49
|
|
|
36
50
|
仓库脚手架来源:
|
|
37
51
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import"./
|
|
1
|
+
import{_ as n}from"./vendor.esm.es5.production.js";var e={formatDate:function(n,e){var t=function(n){e=e.replace(RegExp("".concat(n,"+"),"g"),function(e){var t="".concat(a[n]);if("w"===n)return(e.length>2?"星期":"周")+o[t];for(var c=0,r=t.length;c<e.length-r;c++)t="0".concat(t);return 1===e.length?t:t.substring(t.length-e.length)})};if(!n)return"";if("number"==typeof n)n=new Date(n);else if("string"==typeof n){if(/^\d{12,13}$/g.test(n))n=new Date(parseInt(n));else{if(!/^.{10}T.{8,12}Z?$/g.test(n))return n;n=new Date(n)}}e=e||"yyyy-MM-dd HH:mm:ss";var a={y:n.getFullYear(),M:n.getMonth()+1,d:n.getDate(),q:Math.floor((n.getMonth()+3)/3),w:n.getDay(),H:n.getHours(),h:n.getHours()%12==0?12:n.getHours()%12,m:n.getMinutes(),s:n.getSeconds(),S:n.getMilliseconds()},o=["天","一","二","三","四","五","六"];for(var c in a)t(c);return e},parseDate:function(n,e){var t={y:0,M:1,d:0,H:0,h:0,m:0,s:0,S:0};(e=e||"yyyy-MM-dd").replace(/([^yMdHmsS]*?)(([yMdHmsS])\3*)([^yMdHmsS]*?)/g,function(e,a,o,c,r){return n=n.replace(new RegExp("".concat(a,"(\\d{").concat(o.length,"})").concat(r)),function(n,e){return t[c]=parseInt(e),""}),""}),t.M--;var a=new Date(t.y,t.M,t.d,t.H,t.m,t.s);return 0!==t.S&&a.setMilliseconds(t.S),a},showLoading:function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"请稍候",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:10,t=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=this,o=(t=Object.assign({},{hasMask:!0,maskColor:"transparent",onCancel:null,cancelInline:!1,id:"com_global_page_loading"},t)).id,c="_".concat(o,"_timeout");window[c]&&clearTimeout(window[c]);var r=document.getElementById(o);r||((r=document.createElement("div")).id=o,r.className=o,document.body.append(r));var i="".concat(o,"_style");if(!document.getElementById(i)){var l=document.createElement("style");l.id=i,l.innerHTML="\n .".concat(o," {\n position: fixed;\n top: calc(50vh - 60px);\n left: calc(50vw - 60px);\n width: 120px;\n height: 120px;\n z-index: 8000;\n background: rgba(0, 0, 0, 0.6);\n border-radius: 8px;\n text-align: center;\n color: white;\n padding-top: 20px;\n }\n .").concat(o," img {\n width: 50px;\n margin-bottom: 10px;\n }"),document.head.appendChild(l)}if(r.innerHTML="\n ".concat(t.hasMask?'<div class="mask-wrapper" style="background-color: '.concat(t.maskColor,'"></div>'):"",'\n <div class="loading-wrapper">\n <div class="loading-content">\n <img src="https://img.alicdn.com/tfs/TB1bnUsQBLoK1RjSZFuXXXn0XXa-32-32.svg" alt="加载中">\n <div>').concat(n).concat(t.cancelInline?" ":"</div>","\n ").concat(t.onCancel?'<a href="javascript:;" class="cancel">取消</a>':"","\n ").concat(t.cancelInline?"</div>":"","\n </div>\n </div>"),t.onCancel){var d=r.querySelector(".cancel");d&&d.addEventListener("click",function(){a.hideLoading(),t.onCancel()})}r.style.display="block",e>0&&(window[c]=setTimeout(function(){a.hideLoading()},1e3*e))},hideLoading:function(){var n=document.getElementById("com_global_page_loading");n&&(n.style.display="none")},getParam:function(n){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:location.search;return(RegExp("(^|\\?|&)".concat(n,"=(.*?)(?=&|#|$)"),"g").exec(e)||[])[2]},getParamInt:function(n){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:location.search;return parseInt(this.getParam(n,e)||"0",10)},getParams:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:location.search,t=((e||"").split("?").pop()||"").split("#")[0]||"",a={};return t.split("&").map(function(n){return n.split("=")}).forEach(function(e){var t=n(e,2),o=t[0],c=t[1];a[o]=c||""}),a},setParam:function(e,t,a){if(a=a||"".concat(location.pathname).concat(location.search),void 0!==this.getParam(e,a))return a.replace(RegExp("(^|\\?|&)".concat(e,"=(.*?)(?=&|#|$)"),"g"),"$1".concat(e,"=").concat(t));var o=n(a.split("#"),2),c=o[0],r=o[1];return"".concat(c).concat(0>c.indexOf("?")?"?":"&").concat(e,"=").concat(t).concat(r?"#":"").concat(r||"")},delParam:function(n,e){return(e=e||"".concat(location.pathname).concat(location.search)).replace(RegExp("(^|\\?|&)".concat(n,"=.*?(&|#|$)"),"g"),function(n,e,t){return"&"===t?e:t})},sleep:function(n){return new Promise(function(e){return setTimeout(e,n||0)})},deepCopy:function(n){return n&&"object"==typeof n?JSON.parse(JSON.stringify(n)):n},encodeHtml:function(n){if("string"==typeof n){var e=document.createElement("div");return e.innerText=n,e.innerHTML}if("object"==typeof n&&n)for(var t in n)n[t]=this.encodeHtml(n[t]);return n},decodeHtml:function(n){if("string"==typeof n){var e=document.createElement("div");return e.innerHTML=n,e.innerText}if("object"==typeof n&&n)for(var t in n)n[t]=this.decodeHtml(n[t]);return n}};export{e as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).youtil=e()}(this,function(){"use strict";var t,e,n,r,o,i,c,a,u,f,s,l,p,d,v,h,g,y,m,b,x,S,w="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},E=function(t){try{return!!t()}catch(t){return!0}},O=!E(function(){var t=(function(){}).bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}),j=Function.prototype,T=j.apply,I=j.call,R="object"==typeof Reflect&&Reflect.apply||(O?I.bind(T):function(){return I.apply(T,arguments)}),P=Function.prototype.call,M=O?P.bind(P):function(){return P.apply(P,arguments)},C=Function.prototype,L=C.call,A=O&&C.bind.bind(L,L),_=O?A:function(t){return function(){return L.apply(t,arguments)}},D=function(t){return t&&t.Math==Math&&t},k=D("object"==typeof globalThis&&globalThis)||D("object"==typeof window&&window)||D("object"==typeof self&&self)||D("object"==typeof w&&w)||function(){return this}()||Function("return this")(),N={},H=!E(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}),F={},$={}.propertyIsEnumerable,U=Object.getOwnPropertyDescriptor,B=U&&!$.call({1:2},1);F.f=B?function(t){var e=U(this,t);return!!e&&e.enumerable}:$;var G=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},V=_({}.toString),z=_("".slice),K=function(t){return z(V(t),8,-1)},X=Object,Y=_("".split),q=E(function(){return!X("z").propertyIsEnumerable(0)})?function(t){return"String"==K(t)?Y(t,""):X(t)}:X,W=function(t){return null==t},J=TypeError,Z=function(t){if(W(t))throw J("Can't call method on "+t);return t},Q=function(t){return q(Z(t))},tt="object"==typeof document&&document.all,te={all:tt,IS_HTMLDDA:void 0===tt&&void 0!==tt},tn=te.all,tr=te.IS_HTMLDDA?function(t){return"function"==typeof t||t===tn}:function(t){return"function"==typeof t},to=te.all,ti=te.IS_HTMLDDA?function(t){return"object"==typeof t?null!==t:tr(t)||t===to}:function(t){return"object"==typeof t?null!==t:tr(t)},tc=function(t,e){var n;return arguments.length<2?tr(n=k[t])?n:void 0:k[t]&&k[t][e]},ta=_({}.isPrototypeOf),tu="undefined"!=typeof navigator&&String(navigator.userAgent)||"",tf=k.process,ts=k.Deno,tl=tf&&tf.versions||ts&&ts.version,tp=tl&&tl.v8;tp&&(o=(r=tp.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!o&&tu&&(!(r=tu.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=tu.match(/Chrome\/(\d+)/))&&(o=+r[1]);var td=o,tv=!!Object.getOwnPropertySymbols&&!E(function(){var t=Symbol();return!String(t)||!(Object(t) instanceof Symbol)||!Symbol.sham&&td&&td<41}),th=tv&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,tg=Object,ty=th?function(t){return"symbol"==typeof t}:function(t){var e=tc("Symbol");return tr(e)&&ta(e.prototype,tg(t))},tm=String,tb=function(t){try{return tm(t)}catch(t){return"Object"}},tx=TypeError,tS=function(t){if(tr(t))return t;throw tx(tb(t)+" is not a function")},tw=function(t,e){var n=t[e];return W(n)?void 0:tS(n)},tE=TypeError,tO={exports:{}},tj=k,tT=Object.defineProperty,tI=function(t,e){try{tT(tj,t,{value:e,configurable:!0,writable:!0})}catch(n){tj[t]=e}return e},tR="__core-js_shared__",tP=k[tR]||tI(tR,{}),tM=tP;(tO.exports=function(t,e){return tM[t]||(tM[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.29.1",mode:"global",copyright:"\xa9 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.29.1/LICENSE",source:"https://github.com/zloirock/core-js"});var tC=Object,tL=function(t){return tC(Z(t))},tA=_({}.hasOwnProperty),t_=Object.hasOwn||function(t,e){return tA(tL(t),e)},tD=0,tk=Math.random(),tN=_(1..toString),tH=function(t){return"Symbol("+(void 0===t?"":t)+")_"+tN(++tD+tk,36)},tF=tO.exports,t$=k.Symbol,tU=tF("wks"),tB=th?t$.for||t$:t$&&t$.withoutSetter||tH,tG=function(t){return t_(tU,t)||(tU[t]=tv&&t_(t$,t)?t$[t]:tB("Symbol."+t)),tU[t]},tV=function(t,e){var n,r;if("string"===e&&tr(n=t.toString)&&!ti(r=M(n,t))||tr(n=t.valueOf)&&!ti(r=M(n,t))||"string"!==e&&tr(n=t.toString)&&!ti(r=M(n,t)))return r;throw tE("Can't convert object to primitive value")},tz=TypeError,tK=tG("toPrimitive"),tX=function(t,e){if(!ti(t)||ty(t))return t;var n,r=tw(t,tK);if(r){if(void 0===e&&(e="default"),!ti(n=M(r,t,e))||ty(n))return n;throw tz("Can't convert object to primitive value")}return void 0===e&&(e="number"),tV(t,e)},tY=function(t){var e=tX(t,"string");return ty(e)?e:e+""},tq=k.document,tW=ti(tq)&&ti(tq.createElement),tJ=function(t){return tW?tq.createElement(t):{}},tZ=!H&&!E(function(){return 7!=Object.defineProperty(tJ("div"),"a",{get:function(){return 7}}).a}),tQ=Object.getOwnPropertyDescriptor;N.f=H?tQ:function(t,e){if(t=Q(t),e=tY(e),tZ)try{return tQ(t,e)}catch(t){}if(t_(t,e))return G(!M(F.f,t,e),t[e])};var t0={},t1=H&&E(function(){return 42!=Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype}),t2=String,t5=TypeError,t3=function(t){if(ti(t))return t;throw t5(t2(t)+" is not an object")},t7=TypeError,t9=Object.defineProperty,t4=Object.getOwnPropertyDescriptor,t6="enumerable",t8="configurable",et="writable";t0.f=H?t1?function(t,e,n){if(t3(t),e=tY(e),t3(n),"function"==typeof t&&"prototype"===e&&"value"in n&&et in n&&!n[et]){var r=t4(t,e);r&&r[et]&&(t[e]=n.value,n={configurable:t8 in n?n[t8]:r[t8],enumerable:t6 in n?n[t6]:r[t6],writable:!1})}return t9(t,e,n)}:t9:function(t,e,n){if(t3(t),e=tY(e),t3(n),tZ)try{return t9(t,e,n)}catch(t){}if("get"in n||"set"in n)throw t7("Accessors not supported");return"value"in n&&(t[e]=n.value),t};var ee=H?function(t,e,n){return t0.f(t,e,G(1,n))}:function(t,e,n){return t[e]=n,t},en={exports:{}},er=Function.prototype,eo=H&&Object.getOwnPropertyDescriptor,ei=t_(er,"name"),ec=ei&&(!H||H&&eo(er,"name").configurable),ea={EXISTS:ei,PROPER:ei&&"something"===(function(){}).name,CONFIGURABLE:ec},eu=tP,ef=_(Function.toString);tr(eu.inspectSource)||(eu.inspectSource=function(t){return ef(t)});var es=eu.inspectSource,el=k.WeakMap,ep=tr(el)&&/native code/.test(String(el)),ed=(0,tO.exports)("keys"),ev=function(t){return ed[t]||(ed[t]=tH(t))},eh={},eg=tP,ey=eh,em="Object already initialized",eb=k.TypeError,ex=k.WeakMap;if(ep||eg.state){var eS=eg.state||(eg.state=new ex);eS.get=eS.get,eS.has=eS.has,eS.set=eS.set,i=function(t,e){if(eS.has(t))throw eb(em);return e.facade=t,eS.set(t,e),e},c=function(t){return eS.get(t)||{}},a=function(t){return eS.has(t)}}else{var ew=ev("state");ey[ew]=!0,i=function(t,e){if(t_(t,ew))throw eb(em);return e.facade=t,ee(t,ew,e),e},c=function(t){return t_(t,ew)?t[ew]:{}},a=function(t){return t_(t,ew)}}var eE={set:i,get:c,has:a,enforce:function(t){return a(t)?c(t):i(t,{})},getterFor:function(t){return function(e){var n;if(!ti(e)||(n=c(e)).type!==t)throw eb("Incompatible receiver, "+t+" required");return n}}},eO=ea.CONFIGURABLE,ej=eE.enforce,eT=eE.get,eI=String,eR=Object.defineProperty,eP=_("".slice),eM=_("".replace),eC=_([].join),eL=H&&!E(function(){return 8!==eR(function(){},"length",{value:8}).length}),eA=String(String).split("String"),e_=en.exports=function(t,e,n){"Symbol("===eP(eI(e),0,7)&&(e="["+eM(eI(e),/^Symbol\(([^)]*)\)/,"$1")+"]"),n&&n.getter&&(e="get "+e),n&&n.setter&&(e="set "+e),(!t_(t,"name")||eO&&t.name!==e)&&(H?eR(t,"name",{value:e,configurable:!0}):t.name=e),eL&&n&&t_(n,"arity")&&t.length!==n.arity&&eR(t,"length",{value:n.arity});try{n&&t_(n,"constructor")&&n.constructor?H&&eR(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var r=ej(t);return t_(r,"source")||(r.source=eC(eA,"string"==typeof e?e:"")),t};Function.prototype.toString=e_(function(){return tr(this)&&eT(this).source||es(this)},"toString");var eD=en.exports,ek=function(t,e,n,r){r||(r={});var o=r.enumerable,i=void 0!==r.name?r.name:e;if(tr(n)&&eD(n,i,r),r.global)o?t[e]=n:tI(e,n);else{try{r.unsafe?t[e]&&(o=!0):delete t[e]}catch(t){}o?t[e]=n:t0.f(t,e,{value:n,enumerable:!1,configurable:!r.nonConfigurable,writable:!r.nonWritable})}return t},eN={},eH=Math.ceil,eF=Math.floor,e$=Math.trunc||function(t){var e=+t;return(e>0?eF:eH)(e)},eU=function(t){var e=+t;return e!=e||0===e?0:e$(e)},eB=Math.max,eG=Math.min,eV=function(t,e){var n=eU(t);return n<0?eB(n+e,0):eG(n,e)},ez=Math.min,eK=function(t){return t>0?ez(eU(t),9007199254740991):0},eX=function(t){return eK(t.length)},eY=function(t){return function(e,n,r){var o,i=Q(e),c=eX(i),a=eV(r,c);if(t&&n!=n){for(;c>a;)if((o=i[a++])!=o)return!0}else for(;c>a;a++)if((t||a in i)&&i[a]===n)return t||a||0;return!t&&-1}},eq={includes:eY(!0),indexOf:eY(!1)},eW=eq.indexOf,eJ=_([].push),eZ=function(t,e){var n,r=Q(t),o=0,i=[];for(n in r)!t_(eh,n)&&t_(r,n)&&eJ(i,n);for(;e.length>o;)t_(r,n=e[o++])&&(~eW(i,n)||eJ(i,n));return i},eQ=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],e0=eQ.concat("length","prototype");eN.f=Object.getOwnPropertyNames||function(t){return eZ(t,e0)};var e1={};e1.f=Object.getOwnPropertySymbols;var e2=_([].concat),e5=tc("Reflect","ownKeys")||function(t){var e=eN.f(t3(t)),n=e1.f;return n?e2(e,n(t)):e},e3=/#|\.prototype\./,e7=function(t,e){var n=e4[e9(t)];return n==e8||n!=e6&&(tr(e)?E(e):!!e)},e9=e7.normalize=function(t){return String(t).replace(e3,".").toLowerCase()},e4=e7.data={},e6=e7.NATIVE="N",e8=e7.POLYFILL="P",nt=N.f,ne=function(t,e,n){for(var r=e5(e),o=t0.f,i=N.f,c=0;c<r.length;c++){var a=r[c];t_(t,a)||n&&t_(n,a)||o(t,a,i(e,a))}},nn=function(t,e){var n,r,o,i,c,a=t.target,u=t.global,f=t.stat;if(n=u?k:f?k[a]||tI(a,{}):(k[a]||{}).prototype)for(r in e){if(i=e[r],o=t.dontCallGetSet?(c=nt(n,r))&&c.value:n[r],!e7(u?r:a+(f?".":"#")+r,t.forced)&&void 0!==o){if(typeof i==typeof o)continue;ne(i,o)}(t.sham||o&&o.sham)&&ee(i,"sham",!0),ek(n,r,i,t)}},nr=tG("toStringTag"),no={};no[nr]="z";var ni="[object z]"===String(no),nc=tG("toStringTag"),na=Object,nu="Arguments"==K(function(){return arguments}()),nf=function(t,e){try{return t[e]}catch(t){}},ns=ni?K:function(t){var e,n,r;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=nf(e=na(t),nc))?n:nu?K(e):"Object"==(r=K(e))&&tr(e.callee)?"Arguments":r},nl=String,np=function(t){if("Symbol"===ns(t))throw TypeError("Cannot convert a Symbol value to a string");return nl(t)},nd=function(){var t=t3(this),e="";return t.hasIndices&&(e+="d"),t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.unicodeSets&&(e+="v"),t.sticky&&(e+="y"),e},nv=k.RegExp,nh=E(function(){var t=nv("a","y");return t.lastIndex=2,null!=t.exec("abcd")}),ng=nh||E(function(){return!nv("a","y").sticky}),ny={BROKEN_CARET:nh||E(function(){var t=nv("^r","gy");return t.lastIndex=2,null!=t.exec("str")}),MISSED_STICKY:ng,UNSUPPORTED_Y:nh},nm={},nb=Object.keys||function(t){return eZ(t,eQ)};nm.f=H&&!t1?Object.defineProperties:function(t,e){t3(t);for(var n,r=Q(e),o=nb(e),i=o.length,c=0;i>c;)t0.f(t,n=o[c++],r[n]);return t};var nx=tc("document","documentElement"),nS=eh,nw="prototype",nE="script",nO=ev("IE_PROTO"),nj=function(){},nT=function(t){return"<"+nE+">"+t+"</"+nE+">"},nI=function(t){t.write(nT("")),t.close();var e=t.parentWindow.Object;return t=null,e},nR=function(){var t,e=tJ("iframe");return e.style.display="none",nx.appendChild(e),e.src=String("java"+nE+":"),(t=e.contentWindow.document).open(),t.write(nT("document.F=Object")),t.close(),t.F},nP=function(){try{u=new ActiveXObject("htmlfile")}catch(t){}nP="undefined"!=typeof document?document.domain&&u?nI(u):nR():nI(u);for(var t=eQ.length;t--;)delete nP[nw][eQ[t]];return nP()};nS[nO]=!0;var nM=Object.create||function(t,e){var n;return null!==t?(nj[nw]=t3(t),n=new nj,nj[nw]=null,n[nO]=t):n=nP(),void 0===e?n:nm.f(n,e)},nC=k.RegExp,nL=E(function(){var t=nC(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)}),nA=k.RegExp,n_=E(function(){var t=nA("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")}),nD=tO.exports,nk=eE.get,nN=nD("native-string-replace",String.prototype.replace),nH=RegExp.prototype.exec,nF=nH,n$=_("".charAt),nU=_("".indexOf),nB=_("".replace),nG=_("".slice),nV=(e=/b*/g,M(nH,t=/a/,"a"),M(nH,e,"a"),0!==t.lastIndex||0!==e.lastIndex),nz=ny.BROKEN_CARET,nK=void 0!==/()??/.exec("")[1];(nV||nK||nz||nL||n_)&&(nF=function(t){var e,n,r,o,i,c,a,u=this,f=nk(u),s=np(t),l=f.raw;if(l)return l.lastIndex=u.lastIndex,e=M(nF,l,s),u.lastIndex=l.lastIndex,e;var p=f.groups,d=nz&&u.sticky,v=M(nd,u),h=u.source,g=0,y=s;if(d&&(-1===nU(v=nB(v,"y",""),"g")&&(v+="g"),y=nG(s,u.lastIndex),u.lastIndex>0&&(!u.multiline||u.multiline&&"\n"!==n$(s,u.lastIndex-1))&&(h="(?: "+h+")",y=" "+y,g++),n=RegExp("^(?:"+h+")",v)),nK&&(n=RegExp("^"+h+"$(?!\\s)",v)),nV&&(r=u.lastIndex),o=M(nH,d?n:u,y),d?o?(o.input=nG(o.input,g),o[0]=nG(o[0],g),o.index=u.lastIndex,u.lastIndex+=o[0].length):u.lastIndex=0:nV&&o&&(u.lastIndex=u.global?o.index+o[0].length:r),nK&&o&&o.length>1&&M(nN,o[0],n,function(){for(i=1;i<arguments.length-2;i++)void 0===arguments[i]&&(o[i]=void 0)}),o&&p)for(i=0,o.groups=c=nM(null);i<p.length;i++)c[(a=p[i])[0]]=o[a[1]];return o});var nX=nF;nn({target:"RegExp",proto:!0,forced:/./.exec!==nX},{exec:nX});var nY=function(t){if("Function"===K(t))return _(t)},nq=tG("species"),nW=RegExp.prototype,nJ=function(t,e,n,r){var o=tG(t),i=!E(function(){var e={};return e[o]=function(){return 7},7!=""[t](e)}),c=i&&!E(function(){var e=!1,n=/a/;return"split"===t&&((n={}).constructor={},n.constructor[nq]=function(){return n},n.flags="",n[o]=/./[o]),n.exec=function(){return e=!0,null},n[o](""),!e});if(!i||!c||n){var a=nY(/./[o]),u=e(o,""[t],function(t,e,n,r,o){var c=nY(t),u=e.exec;return u===nX||u===nW.exec?i&&!o?{done:!0,value:a(e,n,r)}:{done:!0,value:c(n,e,r)}:{done:!1}});ek(String.prototype,t,u[0]),ek(nW,o,u[1])}r&&ee(nW[o],"sham",!0)},nZ=_("".charAt),nQ=_("".charCodeAt),n0=_("".slice),n1=function(t){return function(e,n){var r,o,i=np(Z(e)),c=eU(n),a=i.length;return c<0||c>=a?t?"":void 0:(r=nQ(i,c))<55296||r>56319||c+1===a||(o=nQ(i,c+1))<56320||o>57343?t?nZ(i,c):r:t?n0(i,c,c+2):(r-55296<<10)+(o-56320)+65536}},n2={codeAt:n1(!1),charAt:n1(!0)}.charAt,n5=function(t,e,n){return e+(n?n2(t,e).length:1)},n3=Math.floor,n7=_("".charAt),n9=_("".replace),n4=_("".slice),n6=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,n8=/\$([$&'`]|\d{1,2})/g,rt=TypeError,re=function(t,e){var n=t.exec;if(tr(n)){var r=M(n,t,e);return null!==r&&t3(r),r}if("RegExp"===K(t))return M(nX,t,e);throw rt("RegExp#exec called on incompatible receiver")},rn=function(t,e,n,r,o,i){var c=n+t.length,a=r.length,u=n8;return void 0!==o&&(o=tL(o),u=n6),n9(i,u,function(i,u){var f;switch(n7(u,0)){case"$":return"$";case"&":return t;case"`":return n4(e,0,n);case"'":return n4(e,c);case"<":f=o[n4(u,1,-1)];break;default:var s=+u;if(0===s)return i;if(s>a){var l=n3(s/10);if(0===l)return i;if(l<=a)return void 0===r[l-1]?n7(u,1):r[l-1]+n7(u,1);return i}f=r[s-1]}return void 0===f?"":f})},rr=tG("replace"),ro=Math.max,ri=Math.min,rc=_([].concat),ra=_([].push),ru=_("".indexOf),rf=_("".slice),rs="$0"==="a".replace(/./,"$0"),rl=!!/./[rr]&&""===/./[rr]("a","$0");nJ("replace",function(t,e,n){var r=rl?"$":"$0";return[function(t,n){var r=Z(this),o=W(t)?void 0:tw(t,rr);return o?M(o,t,r,n):M(e,np(r),t,n)},function(t,o){var i=t3(this),c=np(t);if("string"==typeof o&&-1===ru(o,r)&&-1===ru(o,"$<")){var a=n(e,i,c,o);if(a.done)return a.value}var u=tr(o);u||(o=np(o));var f=i.global;if(f){var s=i.unicode;i.lastIndex=0}for(var l=[];;){var p=re(i,c);if(null===p||(ra(l,p),!f))break;""===np(p[0])&&(i.lastIndex=n5(c,eK(i.lastIndex),s))}for(var d="",v=0,h=0;h<l.length;h++){for(var g,y=np((p=l[h])[0]),m=ro(ri(eU(p.index),c.length),0),b=[],x=1;x<p.length;x++)ra(b,void 0===(g=p[x])?g:String(g));var S=p.groups;if(u){var w=rc([y],b,m,c);void 0!==S&&ra(w,S);var E=np(R(o,void 0,w))}else E=rn(y,c,m,b,S,o);m>=v&&(d+=rf(c,v,m)+E,v=m+y.length)}return d+rf(c,v)}]},!!E(function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")})||!rs||rl);var rp=String,rd=TypeError,rv=function(t,e,n){try{return _(tS(Object.getOwnPropertyDescriptor(t,e)[n]))}catch(t){}},rh=function(t){if("object"==typeof t||tr(t))return t;throw rd("Can't set "+rp(t)+" as a prototype")},rg=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,n={};try{(t=rv(Object.prototype,"__proto__","set"))(n,[]),e=n instanceof Array}catch(t){}return function(n,r){return t3(n),rh(r),e?t(n,r):n.__proto__=r,n}}():void 0),ry=tG("match"),rm=function(t){var e;return ti(t)&&(void 0!==(e=t[ry])?!!e:"RegExp"==K(t))},rb=RegExp.prototype,rx=function(t){var e=t.flags;return void 0===e&&!("flags"in rb)&&!t_(t,"flags")&&ta(rb,t)?M(nd,t):e},rS=t0.f,rw=en.exports,rE=tG("species"),rO=function(t){var e,n=tc(t);H&&n&&!n[rE]&&((e={configurable:!0,get:function(){return this}}).get&&rw(e.get,rE,{getter:!0}),e.set&&rw(e.set,rE,{setter:!0}),t0.f(n,rE,e))},rj=function(t,e,n){var r,o;return rg&&tr(r=e.constructor)&&r!==n&&ti(o=r.prototype)&&o!==n.prototype&&rg(t,o),t},rT=eN.f,rI=function(t,e,n){n in t||rS(t,n,{configurable:!0,get:function(){return e[n]},set:function(t){e[n]=t}})},rR=eE.enforce,rP=tG("match"),rM=k.RegExp,rC=rM.prototype,rL=k.SyntaxError,rA=_(rC.exec),r_=_("".charAt),rD=_("".replace),rk=_("".indexOf),rN=_("".slice),rH=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,rF=/a/g,r$=/a/g,rU=new rM(rF)!==rF,rB=ny.MISSED_STICKY,rG=ny.UNSUPPORTED_Y,rV=H&&(!rU||rB||nL||n_||E(function(){return r$[rP]=!1,rM(rF)!=rF||rM(r$)==r$||"/a/i"!=rM(rF,"i")})),rz=function(t){for(var e,n=t.length,r=0,o="",i=!1;r<=n;r++){if("\\"===(e=r_(t,r))){o+=e+r_(t,++r);continue}i||"."!==e?("["===e?i=!0:"]"===e&&(i=!1),o+=e):o+="[\\s\\S]"}return o},rK=function(t){for(var e,n=t.length,r=0,o="",i=[],c={},a=!1,u=!1,f=0,s="";r<=n;r++){if("\\"===(e=r_(t,r)))e+=r_(t,++r);else if("]"===e)a=!1;else if(!a)switch(!0){case"["===e:a=!0;break;case"("===e:rA(rH,rN(t,r+1))&&(r+=2,u=!0),o+=e,f++;continue;case">"===e&&u:if(""===s||t_(c,s))throw new rL("Invalid capture group name");c[s]=!0,i[i.length]=[s,f],u=!1,s="";continue}u?s+=e:o+=e}return[o,i]};if(e7("RegExp",rV)){for(var rX=function(t,e){var n,r,o,i,c,a,u=ta(rC,this),f=rm(t),s=void 0===e,l=[],p=t;if(!u&&f&&s&&t.constructor===rX)return t;if((f||ta(rC,t))&&(t=t.source,s&&(e=rx(p))),t=void 0===t?"":np(t),e=void 0===e?"":np(e),p=t,nL&&("dotAll"in rF)&&(r=!!e&&rk(e,"s")>-1)&&(e=rD(e,/s/g,"")),n=e,rB&&("sticky"in rF)&&(o=!!e&&rk(e,"y")>-1)&&rG&&(e=rD(e,/y/g,"")),n_&&(t=(i=rK(t))[0],l=i[1]),c=rj(rM(t,e),u?this:rC,rX),(r||o||l.length)&&(a=rR(c),r&&(a.dotAll=!0,a.raw=rX(rz(t),n)),o&&(a.sticky=!0),l.length&&(a.groups=l)),t!==p)try{ee(c,"source",""===p?"(?:)":p)}catch(t){}return c},rY=rT(rM),rq=0;rY.length>rq;)rI(rX,rM,rY[rq++]);rC.constructor=rX,rX.prototype=rC,ek(k,"RegExp",rX,{constructor:!0})}rO("RegExp");var rW=ea.PROPER,rJ="toString",rZ=RegExp.prototype[rJ],rQ=E(function(){return"/a/b"!=rZ.call({source:"a",flags:"b"})}),r0=rW&&rZ.name!=rJ;(rQ||r0)&&ek(RegExp.prototype,rJ,function(){var t=t3(this);return"/"+np(t.source)+"/"+np(rx(t))},{unsafe:!0});var r1=Array.isArray||function(t){return"Array"==K(t)},r2=TypeError,r5=function(t,e,n){var r=tY(e);r in t?t0.f(t,r,G(0,n)):t[r]=n},r3=function(){},r7=[],r9=tc("Reflect","construct"),r4=/^\s*(?:class|function)\b/,r6=_(r4.exec),r8=!r4.exec(r3),ot=function(t){if(!tr(t))return!1;try{return r9(r3,r7,t),!0}catch(t){return!1}},oe=function(t){if(!tr(t))return!1;switch(ns(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return r8||!!r6(r4,es(t))}catch(t){return!0}};oe.sham=!0;var on=!r9||E(function(){var t;return ot(ot.call)||!ot(Object)||!ot(function(){t=!0})||t})?oe:ot,or=tG("species"),oo=Array,oi=function(t){var e;return r1(t)&&(on(e=t.constructor)&&(e===oo||r1(e.prototype))?e=void 0:ti(e)&&null===(e=e[or])&&(e=void 0)),void 0===e?oo:e},oc=function(t,e){return new(oi(t))(0===e?0:e)},oa=tG("species"),ou=function(t){return td>=51||!E(function(){var e=[];return(e.constructor={})[oa]=function(){return{foo:1}},1!==e[t](Boolean).foo})},of=function(t){if(t>9007199254740991)throw r2("Maximum allowed index exceeded");return t},os=tG("isConcatSpreadable"),ol=td>=51||!E(function(){var t=[];return t[os]=!1,t.concat()[0]!==t}),op=function(t){if(!ti(t))return!1;var e=t[os];return void 0!==e?!!e:r1(t)};nn({target:"Array",proto:!0,arity:1,forced:!ol||!ou("concat")},{concat:function(t){var e,n,r,o,i,c=tL(this),a=oc(c,0),u=0;for(e=-1,r=arguments.length;e<r;e++)if(i=-1===e?c:arguments[e],op(i))for(of(u+(o=eX(i))),n=0;n<o;n++,u++)n in i&&r5(a,u,i[n]);else of(u+1),r5(a,u++,i);return a.length=u,a}});var od=Object.assign,ov=Object.defineProperty,oh=_([].concat),og=!od||E(function(){if(H&&1!==od({b:1},od(ov({},"a",{enumerable:!0,get:function(){ov(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol(),r="abcdefghijklmnopqrst";return t[n]=7,r.split("").forEach(function(t){e[t]=t}),7!=od({},t)[n]||nb(od({},e)).join("")!=r})?function(t,e){for(var n=tL(t),r=arguments.length,o=1,i=e1.f,c=F.f;r>o;)for(var a,u=q(arguments[o++]),f=i?oh(nb(u),i(u)):nb(u),s=f.length,l=0;s>l;)a=f[l++],(!H||M(c,u,a))&&(n[a]=u[a]);return n}:od;nn({target:"Object",stat:!0,arity:2,forced:Object.assign!==og},{assign:og});var oy=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e};nJ("search",function(t,e,n){return[function(e){var n=Z(this),r=W(e)?void 0:tw(e,t);return r?M(r,e,n):RegExp(e)[t](np(n))},function(t){var r=t3(this),o=np(t),i=n(e,r,o);if(i.done)return i.value;var c=r.lastIndex;oy(c,0)||(r.lastIndex=0);var a=re(r,o);return oy(r.lastIndex,c)||(r.lastIndex=c),null===a?-1:a.index}]});var om=TypeError,ob=function(t){if(on(t))return t;throw om(tb(t)+" is not a constructor")},ox=tG("species"),oS=function(t,e){var n,r=t3(t).constructor;return void 0===r||W(n=t3(r)[ox])?e:ob(n)},ow=Array,oE=Math.max,oO=function(t,e,n){for(var r=eX(t),o=eV(e,r),i=eV(void 0===n?r:n,r),c=ow(oE(i-o,0)),a=0;o<i;o++,a++)r5(c,a,t[o]);return c.length=a,c},oj=ny.UNSUPPORTED_Y,oT=Math.min,oI=[].push,oR=_(/./.exec),oP=_(oI),oM=_("".slice);nJ("split",function(t,e,n){var r;return r="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,n){var r,o,i,c=np(Z(this)),a=void 0===n?4294967295:n>>>0;if(0===a)return[];if(void 0===t)return[c];if(!rm(t))return M(e,c,t,a);for(var u=[],f=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),s=0,l=RegExp(t.source,f+"g");(r=M(nX,l,c))&&(!((o=l.lastIndex)>s)||(oP(u,oM(c,s,r.index)),r.length>1&&r.index<c.length&&R(oI,u,oO(r,1)),i=r[0].length,s=o,!(u.length>=a)));)l.lastIndex===r.index&&l.lastIndex++;return s===c.length?(i||!oR(l,""))&&oP(u,""):oP(u,oM(c,s)),u.length>a?oO(u,0,a):u}:"0".split(void 0,0).length?function(t,n){return void 0===t&&0===n?[]:M(e,this,t,n)}:e,[function(e,n){var o=Z(this),i=W(e)?void 0:tw(e,t);return i?M(i,e,o,n):M(r,np(o),e,n)},function(t,o){var i=t3(this),c=np(t),a=n(r,i,c,o,r!==e);if(a.done)return a.value;var u=oS(i,RegExp),f=i.unicode,s=(i.ignoreCase?"i":"")+(i.multiline?"m":"")+(i.unicode?"u":"")+(oj?"g":"y"),l=new u(oj?"^(?:"+i.source+")":i,s),p=void 0===o?4294967295:o>>>0;if(0===p)return[];if(0===c.length)return null===re(l,c)?[c]:[];for(var d=0,v=0,h=[];v<c.length;){l.lastIndex=oj?0:v;var g,y=re(l,oj?oM(c,v):c);if(null===y||(g=oT(eK(l.lastIndex+(oj?v:0)),c.length))===d)v=n5(c,v,f);else{if(oP(h,oM(c,d,v)),h.length===p)return h;for(var m=1;m<=y.length-1;m++)if(oP(h,y[m]),h.length===p)return h;v=d=g}}return oP(h,oM(c,d)),h}]},!!E(function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n="ab".split(t);return 2!==n.length||"a"!==n[0]||"b"!==n[1]}),oj);var oC=nY(nY.bind),oL=function(t,e){return tS(t),void 0===e?t:O?oC(t,e):function(){return t.apply(e,arguments)}},oA=_([].push),o_=function(t){var e=1==t,n=2==t,r=3==t,o=4==t,i=6==t,c=7==t,a=5==t||i;return function(u,f,s,l){for(var p,d,v=tL(u),h=q(v),g=oL(f,s),y=eX(h),m=0,b=l||oc,x=e?b(u,y):n||c?b(u,0):void 0;y>m;m++)if((a||m in h)&&(d=g(p=h[m],m,v),t)){if(e)x[m]=d;else if(d)switch(t){case 3:return!0;case 5:return p;case 6:return m;case 2:oA(x,p)}else switch(t){case 4:return!1;case 7:oA(x,p)}}return i?-1:r||o?o:x}},oD={forEach:o_(0),map:o_(1),filter:o_(2),some:o_(3),every:o_(4),find:o_(5),findIndex:o_(6),filterReject:o_(7)},ok=oD.map;nn({target:"Array",proto:!0,forced:!ou("map")},{map:function(t){return ok(this,t,arguments.length>1?arguments[1]:void 0)}});var oN=tJ("span").classList,oH=oN&&oN.constructor&&oN.constructor.prototype,oF=oH===Object.prototype?void 0:oH,o$=function(t,e){var n=[][t];return!!n&&E(function(){n.call(null,e||function(){return 1},1)})},oU=oD.forEach,oB=o$("forEach")?[].forEach:function(t){return oU(this,t,arguments.length>1?arguments[1]:void 0)},oG={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},oV=function(t){if(t&&t.forEach!==oB)try{ee(t,"forEach",oB)}catch(e){t.forEach=oB}};for(var oz in oG)oG[oz]&&oV(k[oz]&&k[oz].prototype);oV(oF),ni||ek(Object.prototype,"toString",ni?({}).toString:function(){return"[object "+ns(this)+"]"},{unsafe:!0});var oK=eq.indexOf,oX=nY([].indexOf),oY=!!oX&&1/oX([1],1,-0)<0;nn({target:"Array",proto:!0,forced:oY||!o$("indexOf")},{indexOf:function(t){var e=arguments.length>1?arguments[1]:void 0;return oY?oX(this,t,e)||0:oK(this,t,e)}});var oq="undefined"!=typeof process&&"process"==K(process),oW=t0.f,oJ=tG("toStringTag"),oZ=TypeError,oQ=_([].slice),o0=TypeError,o1=/(?:ipad|iphone|ipod).*applewebkit/i.test(tu),o2=nx,o5=function(t,e){if(t<e)throw o0("Not enough arguments");return t},o3=k.setImmediate,o7=k.clearImmediate,o9=k.process,o4=k.Dispatch,o6=k.Function,o8=k.MessageChannel,it=k.String,ie=0,ir={},io="onreadystatechange";E(function(){f=k.location});var ii=function(t){if(t_(ir,t)){var e=ir[t];delete ir[t],e()}},ic=function(t){return function(){ii(t)}},ia=function(t){ii(t.data)},iu=function(t){k.postMessage(it(t),f.protocol+"//"+f.host)};o3&&o7||(o3=function(t){o5(arguments.length,1);var e=tr(t)?t:o6(t),n=oQ(arguments,1);return ir[++ie]=function(){R(e,void 0,n)},s(ie),ie},o7=function(t){delete ir[t]},oq?s=function(t){o9.nextTick(ic(t))}:o4&&o4.now?s=function(t){o4.now(ic(t))}:o8&&!o1?(p=(l=new o8).port2,l.port1.onmessage=ia,s=oL(p.postMessage,p)):k.addEventListener&&tr(k.postMessage)&&!k.importScripts&&f&&"file:"!==f.protocol&&!E(iu)?(s=iu,k.addEventListener("message",ia,!1)):s=io in tJ("script")?function(t){o2.appendChild(tJ("script"))[io]=function(){o2.removeChild(this),ii(t)}}:function(t){setTimeout(ic(t),0)});var is={set:o3,clear:o7},il=function(){this.head=null,this.tail=null};il.prototype={add:function(t){var e={item:t,next:null},n=this.tail;n?n.next=e:this.head=e,this.tail=e},get:function(){var t=this.head;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}};var ip=/ipad|iphone|ipod/i.test(tu)&&"undefined"!=typeof Pebble,id=/web0s(?!.*chrome)/i.test(tu),iv=N.f,ih=is.set,ig=k.MutationObserver||k.WebKitMutationObserver,iy=k.document,im=k.process,ib=k.Promise,ix=iv(k,"queueMicrotask"),iS=ix&&ix.value;if(!iS){var iw=new il,iE=function(){var t,e;for(oq&&(t=im.domain)&&t.exit();e=iw.get();)try{e()}catch(t){throw iw.head&&d(),t}t&&t.enter()};o1||oq||id||!ig||!iy?!ip&&ib&&ib.resolve?((g=ib.resolve(void 0)).constructor=ib,y=oL(g.then,g),d=function(){y(iE)}):oq?d=function(){im.nextTick(iE)}:(ih=oL(ih,k),d=function(){ih(iE)}):(v=!0,h=iy.createTextNode(""),new ig(iE).observe(h,{characterData:!0}),d=function(){h.data=v=!v}),iS=function(t){iw.head||d(),iw.add(t)}}var iO=iS,ij=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}},iT=k.Promise,iI="object"==typeof Deno&&Deno&&"object"==typeof Deno.version,iR=!iI&&!oq&&"object"==typeof window&&"object"==typeof document;iT&&iT.prototype;var iP=tG("species"),iM=!1,iC=tr(k.PromiseRejectionEvent),iL={CONSTRUCTOR:e7("Promise",function(){var t=es(iT),e=t!==String(iT);if(!e&&66===td)return!0;if(!td||td<51||!/native code/.test(t)){var n=new iT(function(t){t(1)}),r=function(t){t(function(){},function(){})};if((n.constructor={})[iP]=r,!(iM=n.then(function(){}) instanceof r))return!0}return!e&&(iR||iI)&&!iC}),REJECTION_EVENT:iC,SUBCLASSING:iM},iA={},i_=TypeError,iD=function(t){var e,n;this.promise=new t(function(t,r){if(void 0!==e||void 0!==n)throw i_("Bad Promise constructor");e=t,n=r}),this.resolve=tS(e),this.reject=tS(n)};iA.f=function(t){return new iD(t)};var ik=function(t,e){if(ta(e,t))return t;throw oZ("Incorrect invocation")},iN=is.set,iH=function(t,e){try{1==arguments.length?console.error(t):console.error(t,e)}catch(t){}},iF=iA,i$="Promise",iU=iL.CONSTRUCTOR,iB=iL.REJECTION_EVENT,iG=iL.SUBCLASSING,iV=eE.getterFor(i$),iz=eE.set,iK=iT&&iT.prototype,iX=iT,iY=iK,iq=k.TypeError,iW=k.document,iJ=k.process,iZ=iF.f,iQ=iZ,i0=!!(iW&&iW.createEvent&&k.dispatchEvent),i1="unhandledrejection",i2=function(t){var e;return!!(ti(t)&&tr(e=t.then))&&e},i5=function(t,e){var n,r,o,i=e.value,c=1==e.state,a=c?t.ok:t.fail,u=t.resolve,f=t.reject,s=t.domain;try{a?(c||(2===e.rejection&&i6(e),e.rejection=1),!0===a?n=i:(s&&s.enter(),n=a(i),s&&(s.exit(),o=!0)),n===t.promise?f(iq("Promise-chain cycle")):(r=i2(n))?M(r,n,u,f):u(n)):f(i)}catch(t){s&&!o&&s.exit(),f(t)}},i3=function(t,e){t.notified||(t.notified=!0,iO(function(){for(var n,r=t.reactions;n=r.get();)i5(n,t);t.notified=!1,e&&!t.rejection&&i9(t)}))},i7=function(t,e,n){var r,o;i0?((r=iW.createEvent("Event")).promise=e,r.reason=n,r.initEvent(t,!1,!0),k.dispatchEvent(r)):r={promise:e,reason:n},!iB&&(o=k["on"+t])?o(r):t===i1&&iH("Unhandled promise rejection",n)},i9=function(t){M(iN,k,function(){var e,n=t.facade,r=t.value;if(i4(t)&&(e=ij(function(){oq?iJ.emit("unhandledRejection",r,n):i7(i1,n,r)}),t.rejection=oq||i4(t)?2:1,e.error))throw e.value})},i4=function(t){return 1!==t.rejection&&!t.parent},i6=function(t){M(iN,k,function(){var e=t.facade;oq?iJ.emit("rejectionHandled",e):i7("rejectionhandled",e,t.value)})},i8=function(t,e,n){return function(r){t(e,r,n)}},ct=function(t,e,n){t.done||(t.done=!0,n&&(t=n),t.value=e,t.state=2,i3(t,!0))},ce=function(t,e,n){if(!t.done){t.done=!0,n&&(t=n);try{if(t.facade===e)throw iq("Promise can't be resolved itself");var r=i2(e);r?iO(function(){var n={done:!1};try{M(r,e,i8(ce,n,t),i8(ct,n,t))}catch(e){ct(n,e,t)}}):(t.value=e,t.state=1,i3(t,!1))}catch(e){ct({done:!1},e,t)}}};if(iU&&(iY=(iX=function(t){ik(this,iY),tS(t),M(m,this);var e=iV(this);try{t(i8(ce,e),i8(ct,e))}catch(t){ct(e,t)}}).prototype,(m=function(t){iz(this,{type:i$,done:!1,notified:!1,parent:!1,reactions:new il,rejection:!1,state:0,value:void 0})}).prototype=ek(iY,"then",function(t,e){var n=iV(this),r=iZ(oS(this,iX));return n.parent=!0,r.ok=!tr(t)||t,r.fail=tr(e)&&e,r.domain=oq?iJ.domain:void 0,0==n.state?n.reactions.add(r):iO(function(){i5(r,n)}),r.promise}),b=function(){var t=new m,e=iV(t);this.promise=t,this.resolve=i8(ce,e),this.reject=i8(ct,e)},iF.f=iZ=function(t){return t===iX||t===x?new b(t):iQ(t)},tr(iT)&&iK!==Object.prototype)){S=iK.then,iG||ek(iK,"then",function(t,e){var n=this;return new iX(function(t,e){M(S,n,t,e)}).then(t,e)},{unsafe:!0});try{delete iK.constructor}catch(t){}rg&&rg(iK,iY)}nn({global:!0,constructor:!0,wrap:!0,forced:iU},{Promise:iX}),(n=iX)&&(n=n.prototype),n&&!t_(n,oJ)&&oW(n,oJ,{configurable:!0,value:i$}),rO(i$);var cn={},cr=tG("iterator"),co=Array.prototype,ci=tG("iterator"),cc=function(t){if(!W(t))return tw(t,ci)||tw(t,"@@iterator")||cn[ns(t)]},ca=TypeError,cu=function(t,e){var n=arguments.length<2?cc(t):e;if(tS(n))return t3(M(n,t));throw ca(tb(t)+" is not iterable")},cf=function(t,e,n){var r,o;t3(t);try{if(!(r=tw(t,"return"))){if("throw"===e)throw n;return n}r=M(r,t)}catch(t){o=!0,r=t}if("throw"===e)throw n;if(o)throw r;return t3(r),n},cs=TypeError,cl=function(t,e){this.stopped=t,this.result=e},cp=cl.prototype,cd=function(t,e,n){var r,o,i,c,a,u,f,s=n&&n.that,l=!!(n&&n.AS_ENTRIES),p=!!(n&&n.IS_RECORD),d=!!(n&&n.IS_ITERATOR),v=!!(n&&n.INTERRUPTED),h=oL(e,s),g=function(t){return r&&cf(r,"normal",t),new cl(!0,t)},y=function(t){return l?(t3(t),v?h(t[0],t[1],g):h(t[0],t[1])):v?h(t,g):h(t)};if(p)r=t.iterator;else if(d)r=t;else{if(!(o=cc(t)))throw cs(tb(t)+" is not iterable");if(void 0!==o&&(cn.Array===o||co[cr]===o)){for(i=0,c=eX(t);c>i;i++)if((a=y(t[i]))&&ta(cp,a))return a;return new cl(!1)}r=cu(t,o)}for(u=p?t.next:r.next;!(f=M(u,r)).done;){try{a=y(f.value)}catch(t){cf(r,"throw",t)}if("object"==typeof a&&a&&ta(cp,a))return a}return new cl(!1)},cv=tG("iterator"),ch=!1;try{var cg=0,cy={next:function(){return{done:!!cg++}},return:function(){ch=!0}};cy[cv]=function(){return this},Array.from(cy,function(){throw 2})}catch(t){}var cm=iL.CONSTRUCTOR||!function(t,e){if(!ch)return!1;var n=!1;try{var r={};r[cv]=function(){return{next:function(){return{done:n=!0}}}},t(r)}catch(t){}return n}(function(t){iT.all(t).then(void 0,function(){})});nn({target:"Promise",stat:!0,forced:cm},{all:function(t){var e=this,n=iA.f(e),r=n.resolve,o=n.reject,i=ij(function(){var n=tS(e.resolve),i=[],c=0,a=1;cd(t,function(t){var u=c++,f=!1;a++,M(n,e,t).then(function(t){!f&&(f=!0,i[u]=t,--a||r(i))},o)}),--a||r(i)});return i.error&&o(i.value),n.promise}});var cb=iL.CONSTRUCTOR,cx=iT&&iT.prototype;if(nn({target:"Promise",proto:!0,forced:cb,real:!0},{catch:function(t){return this.then(void 0,t)}}),tr(iT)){var cS=tc("Promise").prototype.catch;cx.catch!==cS&&ek(cx,"catch",cS,{unsafe:!0})}nn({target:"Promise",stat:!0,forced:cm},{race:function(t){var e=this,n=iA.f(e),r=n.reject,o=ij(function(){var o=tS(e.resolve);cd(t,function(t){M(o,e,t).then(n.resolve,r)})});return o.error&&r(o.value),n.promise}}),nn({target:"Promise",stat:!0,forced:iL.CONSTRUCTOR},{reject:function(t){var e=iA.f(this);return M(e.reject,void 0,t),e.promise}});var cw=iL.CONSTRUCTOR,cE=function(t,e){if(t3(t),ti(e)&&e.constructor===t)return e;var n=iA.f(t);return(0,n.resolve)(e),n.promise};function cO(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=Array(e);n<e;n++)r[n]=t[n];return r}function cj(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var n,r,o=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=o){var i=[],c=!0,a=!1;try{for(o=o.call(t);!(c=(n=o.next()).done)&&(i.push(n.value),!e||i.length!==e);c=!0);}catch(t){a=!0,r=t}finally{try{c||null==o.return||o.return()}finally{if(a)throw r}}return i}}(t,e)||function(t,e){if(t){if("string"==typeof t)return cO(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if("Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return cO(t,e)}}(t,e)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}return tc("Promise"),nn({target:"Promise",stat:!0,forced:cw},{resolve:function(t){return cE(this,t)}}),{formatDate:function(t,e){var n=function(t){e=e.replace(RegExp("".concat(t,"+"),"g"),function(e){var n="".concat(r[t]);if("w"===t)return(e.length>2?"星期":"周")+o[n];for(var i=0,c=n.length;i<e.length-c;i++)n="0".concat(n);return 1===e.length?n:n.substring(n.length-e.length)})};if(!t)return"";if("number"==typeof t)t=new Date(t);else if("string"==typeof t){if(/^\d{12,13}$/g.test(t))t=new Date(parseInt(t));else{if(!/^.{10}T.{8,12}Z?$/g.test(t))return t;t=new Date(t)}}e=e||"yyyy-MM-dd HH:mm:ss";var r={y:t.getFullYear(),M:t.getMonth()+1,d:t.getDate(),q:Math.floor((t.getMonth()+3)/3),w:t.getDay(),H:t.getHours(),h:t.getHours()%12==0?12:t.getHours()%12,m:t.getMinutes(),s:t.getSeconds(),S:t.getMilliseconds()},o=["天","一","二","三","四","五","六"];for(var i in r)n(i);return e},parseDate:function(t,e){var n={y:0,M:1,d:0,H:0,h:0,m:0,s:0,S:0};(e=e||"yyyy-MM-dd").replace(/([^yMdHmsS]*?)(([yMdHmsS])\3*)([^yMdHmsS]*?)/g,function(e,r,o,i,c){return t=t.replace(RegExp("".concat(r,"(\\d{").concat(o.length,"})").concat(c)),function(t,e){return n[i]=parseInt(e),""}),""}),n.M--;var r=new Date(n.y,n.M,n.d,n.H,n.m,n.s);return 0!==n.S&&r.setMilliseconds(n.S),r},showLoading:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"请稍候",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:10,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=this,o=(n=Object.assign({},{hasMask:!0,maskColor:"transparent",onCancel:null,cancelInline:!1,id:"com_global_page_loading"},n)).id,i="_".concat(o,"_timeout");window[i]&&clearTimeout(window[i]);var c=document.getElementById(o);c||((c=document.createElement("div")).id=o,c.className=o,document.body.append(c));var a="".concat(o,"_style");if(!document.getElementById(a)){var u=document.createElement("style");u.id=a,u.innerHTML="\n .".concat(o," {\n position: fixed;\n top: calc(50vh - 60px);\n left: calc(50vw - 60px);\n width: 120px;\n height: 120px;\n z-index: 8000;\n background: rgba(0, 0, 0, 0.6);\n border-radius: 8px;\n text-align: center;\n color: white;\n padding-top: 20px;\n }\n .").concat(o," img {\n width: 50px;\n margin-bottom: 10px;\n }"),document.head.appendChild(u)}if(c.innerHTML="\n ".concat(n.hasMask?'<div class="mask-wrapper" style="background-color: '.concat(n.maskColor,'"></div>'):"",'\n <div class="loading-wrapper">\n <div class="loading-content">\n <img src="https://img.alicdn.com/tfs/TB1bnUsQBLoK1RjSZFuXXXn0XXa-32-32.svg" alt="加载中">\n <div>').concat(t).concat(n.cancelInline?" ":"</div>","\n ").concat(n.onCancel?'<a href="javascript:;" class="cancel">取消</a>':"","\n ").concat(n.cancelInline?"</div>":"","\n </div>\n </div>"),n.onCancel){var f=c.querySelector(".cancel");f&&f.addEventListener("click",function(){r.hideLoading(),n.onCancel()})}c.style.display="block",e>0&&(window[i]=setTimeout(function(){r.hideLoading()},1e3*e))},hideLoading:function(){var t=document.getElementById("com_global_page_loading");t&&(t.style.display="none")},getParam:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:location.search;return(RegExp("(^|\\?|&)".concat(t,"=(.*?)(?=&|#|$)"),"g").exec(e)||[])[2]},getParamInt:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:location.search;return parseInt(this.getParam(t,e)||"0",10)},getParams:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:location.search,e=((t||"").split("?").pop()||"").split("#")[0]||"",n={};return e.split("&").map(function(t){return t.split("=")}).forEach(function(t){var e=cj(t,2),r=e[0],o=e[1];n[r]=o||""}),n},setParam:function(t,e,n){if(n=n||"".concat(location.pathname).concat(location.search),void 0!==this.getParam(t,n))return n.replace(RegExp("(^|\\?|&)".concat(t,"=(.*?)(?=&|#|$)"),"g"),"$1".concat(t,"=").concat(e));var r=cj(n.split("#"),2),o=r[0],i=r[1];return"".concat(o).concat(0>o.indexOf("?")?"?":"&").concat(t,"=").concat(e).concat(i?"#":"").concat(i||"")},delParam:function(t,e){return(e=e||"".concat(location.pathname).concat(location.search)).replace(RegExp("(^|\\?|&)".concat(t,"=.*?(&|#|$)"),"g"),function(t,e,n){return"&"===n?e:n})},sleep:function(t){return new Promise(function(e){return setTimeout(e,t||0)})},deepCopy:function(t){return t&&"object"==typeof t?JSON.parse(JSON.stringify(t)):t},encodeHtml:function(t){if("string"==typeof t){var e=document.createElement("div");return e.innerText=t,e.innerHTML}if("object"==typeof t&&t)for(var n in t)t[n]=this.encodeHtml(t[n]);return t},decodeHtml:function(t){if("string"==typeof t){var e=document.createElement("div");return e.innerHTML=t,e.innerText}if("object"==typeof t&&t)for(var n in t)t[n]=this.decodeHtml(t[n]);return t}}});
|
|
1
|
+
!function(n,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(n="undefined"!=typeof globalThis?globalThis:n||self).youtil=t()}(this,function(){"use strict";function n(n,t){(null==t||t>n.length)&&(t=n.length);for(var e=0,o=Array(t);e<t;e++)o[e]=n[e];return o}function t(t,e){return function(n){if(Array.isArray(n))return n}(t)||function(n,t){var e,o,r=null==n?null:"undefined"!=typeof Symbol&&n[Symbol.iterator]||n["@@iterator"];if(null!=r){var a=[],c=!0,i=!1;try{for(r=r.call(n);!(c=(e=r.next()).done)&&(a.push(e.value),!t||a.length!==t);c=!0);}catch(n){i=!0,o=n}finally{try{c||null==r.return||r.return()}finally{if(i)throw o}}return a}}(t,e)||function(t,e){if(t){if("string"==typeof t)return n(t,e);var o=Object.prototype.toString.call(t).slice(8,-1);if("Object"===o&&t.constructor&&(o=t.constructor.name),"Map"===o||"Set"===o)return Array.from(o);if("Arguments"===o||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(o))return n(t,e)}}(t,e)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}return{formatDate:function(n,t){var e=function(n){t=t.replace(RegExp("".concat(n,"+"),"g"),function(t){var e="".concat(o[n]);if("w"===n)return(t.length>2?"星期":"周")+r[e];for(var a=0,c=e.length;a<t.length-c;a++)e="0".concat(e);return 1===t.length?e:e.substring(e.length-t.length)})};if(!n)return"";if("number"==typeof n)n=new Date(n);else if("string"==typeof n){if(/^\d{12,13}$/g.test(n))n=new Date(parseInt(n));else{if(!/^.{10}T.{8,12}Z?$/g.test(n))return n;n=new Date(n)}}t=t||"yyyy-MM-dd HH:mm:ss";var o={y:n.getFullYear(),M:n.getMonth()+1,d:n.getDate(),q:Math.floor((n.getMonth()+3)/3),w:n.getDay(),H:n.getHours(),h:n.getHours()%12==0?12:n.getHours()%12,m:n.getMinutes(),s:n.getSeconds(),S:n.getMilliseconds()},r=["天","一","二","三","四","五","六"];for(var a in o)e(a);return t},parseDate:function(n,t){var e={y:0,M:1,d:0,H:0,h:0,m:0,s:0,S:0};(t=t||"yyyy-MM-dd").replace(/([^yMdHmsS]*?)(([yMdHmsS])\3*)([^yMdHmsS]*?)/g,function(t,o,r,a,c){return n=n.replace(new RegExp("".concat(o,"(\\d{").concat(r.length,"})").concat(c)),function(n,t){return e[a]=parseInt(t),""}),""}),e.M--;var o=new Date(e.y,e.M,e.d,e.H,e.m,e.s);return 0!==e.S&&o.setMilliseconds(e.S),o},showLoading:function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"请稍候",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:10,e=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=this,r=(e=Object.assign({},{hasMask:!0,maskColor:"transparent",onCancel:null,cancelInline:!1,id:"com_global_page_loading"},e)).id,a="_".concat(r,"_timeout");window[a]&&clearTimeout(window[a]);var c=document.getElementById(r);c||((c=document.createElement("div")).id=r,c.className=r,document.body.append(c));var i="".concat(r,"_style");if(!document.getElementById(i)){var l=document.createElement("style");l.id=i,l.innerHTML="\n .".concat(r," {\n position: fixed;\n top: calc(50vh - 60px);\n left: calc(50vw - 60px);\n width: 120px;\n height: 120px;\n z-index: 8000;\n background: rgba(0, 0, 0, 0.6);\n border-radius: 8px;\n text-align: center;\n color: white;\n padding-top: 20px;\n }\n .").concat(r," img {\n width: 50px;\n margin-bottom: 10px;\n }"),document.head.appendChild(l)}if(c.innerHTML="\n ".concat(e.hasMask?'<div class="mask-wrapper" style="background-color: '.concat(e.maskColor,'"></div>'):"",'\n <div class="loading-wrapper">\n <div class="loading-content">\n <img src="https://img.alicdn.com/tfs/TB1bnUsQBLoK1RjSZFuXXXn0XXa-32-32.svg" alt="加载中">\n <div>').concat(n).concat(e.cancelInline?" ":"</div>","\n ").concat(e.onCancel?'<a href="javascript:;" class="cancel">取消</a>':"","\n ").concat(e.cancelInline?"</div>":"","\n </div>\n </div>"),e.onCancel){var d=c.querySelector(".cancel");d&&d.addEventListener("click",function(){o.hideLoading(),e.onCancel()})}c.style.display="block",t>0&&(window[a]=setTimeout(function(){o.hideLoading()},1e3*t))},hideLoading:function(){var n=document.getElementById("com_global_page_loading");n&&(n.style.display="none")},getParam:function(n){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:location.search;return(RegExp("(^|\\?|&)".concat(n,"=(.*?)(?=&|#|$)"),"g").exec(t)||[])[2]},getParamInt:function(n){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:location.search;return parseInt(this.getParam(n,t)||"0",10)},getParams:function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:location.search,e=((n||"").split("?").pop()||"").split("#")[0]||"",o={};return e.split("&").map(function(n){return n.split("=")}).forEach(function(n){var e=t(n,2),r=e[0],a=e[1];o[r]=a||""}),o},setParam:function(n,e,o){if(o=o||"".concat(location.pathname).concat(location.search),void 0!==this.getParam(n,o))return o.replace(RegExp("(^|\\?|&)".concat(n,"=(.*?)(?=&|#|$)"),"g"),"$1".concat(n,"=").concat(e));var r=t(o.split("#"),2),a=r[0],c=r[1];return"".concat(a).concat(0>a.indexOf("?")?"?":"&").concat(n,"=").concat(e).concat(c?"#":"").concat(c||"")},delParam:function(n,t){return(t=t||"".concat(location.pathname).concat(location.search)).replace(RegExp("(^|\\?|&)".concat(n,"=.*?(&|#|$)"),"g"),function(n,t,e){return"&"===e?t:e})},sleep:function(n){return new Promise(function(t){return setTimeout(t,n||0)})},deepCopy:function(n){return n&&"object"==typeof n?JSON.parse(JSON.stringify(n)):n},encodeHtml:function(n){if("string"==typeof n){var t=document.createElement("div");return t.innerText=n,t.innerHTML}if("object"==typeof n&&n)for(var e in n)n[e]=this.encodeHtml(n[e]);return n},decodeHtml:function(n){if("string"==typeof n){var t=document.createElement("div");return t.innerHTML=n,t.innerText}if("object"==typeof n&&n)for(var e in n)n[e]=this.decodeHtml(n[e]);return n}}});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function r(r,t){(null==t||t>r.length)&&(t=r.length);for(var n=0,e=Array(t);n<t;n++)e[n]=r[n];return e}function t(t,n){return function(r){if(Array.isArray(r))return r}(t)||function(r,t){var n,e,o=null==r?null:"undefined"!=typeof Symbol&&r[Symbol.iterator]||r["@@iterator"];if(null!=o){var a=[],l=!0,i=!1;try{for(o=o.call(r);!(l=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);l=!0);}catch(r){i=!0,e=r}finally{try{l||null==o.return||o.return()}finally{if(i)throw e}}return a}}(t,n)||function(t,n){if(t){if("string"==typeof t)return r(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);if("Object"===e&&t.constructor&&(e=t.constructor.name),"Map"===e||"Set"===e)return Array.from(e);if("Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return r(t,n)}}(t,n)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}export{t as _};
|
package/esm/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import _sliced_to_array from "@swc/helpers/
|
|
1
|
+
import { _ as _sliced_to_array } from "@swc/helpers/_/_sliced_to_array";
|
|
2
2
|
export default {
|
|
3
3
|
/**
|
|
4
4
|
* 将日期格式化成指定格式的字符串
|
|
@@ -9,20 +9,31 @@ export default {
|
|
|
9
9
|
var _loop = function(i) {
|
|
10
10
|
fmt = fmt.replace(new RegExp("".concat(i, "+"), "g"), function(m) {
|
|
11
11
|
var val = "".concat(obj[i]);
|
|
12
|
-
if (i === "w")
|
|
13
|
-
|
|
12
|
+
if (i === "w") {
|
|
13
|
+
return (m.length > 2 ? "星期" : "周") + week[val];
|
|
14
|
+
}
|
|
15
|
+
for(var j = 0, len = val.length; j < m.length - len; j++){
|
|
16
|
+
val = "0".concat(val);
|
|
17
|
+
}
|
|
14
18
|
return m.length === 1 ? val : val.substring(val.length - m.length);
|
|
15
19
|
});
|
|
16
20
|
};
|
|
17
|
-
if (!date)
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
date = new Date(parseInt(date));
|
|
23
|
-
else if (/^.{10}T.{8,12}Z?$/g.test(date)) // '2019-01-01T00:00:00.000Z'
|
|
21
|
+
if (!date) {
|
|
22
|
+
return "";
|
|
23
|
+
}
|
|
24
|
+
if (typeof date === "number") {
|
|
25
|
+
// 1687682453445
|
|
24
26
|
date = new Date(date);
|
|
25
|
-
|
|
27
|
+
} else if (typeof date === "string") {
|
|
28
|
+
if (/^\d{12,13}$/g.test(date)) {
|
|
29
|
+
// '1687682453445'
|
|
30
|
+
date = new Date(parseInt(date));
|
|
31
|
+
} else if (/^.{10}T.{8,12}Z?$/g.test(date)) {
|
|
32
|
+
// '2019-01-01T00:00:00.000Z'
|
|
33
|
+
date = new Date(date);
|
|
34
|
+
} else {
|
|
35
|
+
return date;
|
|
36
|
+
}
|
|
26
37
|
}
|
|
27
38
|
fmt = fmt || "yyyy-MM-dd HH:mm:ss";
|
|
28
39
|
var obj = {
|
|
@@ -76,7 +87,9 @@ export default {
|
|
|
76
87
|
});
|
|
77
88
|
obj.M--; // 月份是从0开始的,所以要减去1
|
|
78
89
|
var date = new Date(obj.y, obj.M, obj.d, obj.H, obj.m, obj.s);
|
|
79
|
-
if (obj.S !== 0)
|
|
90
|
+
if (obj.S !== 0) {
|
|
91
|
+
date.setMilliseconds(obj.S); // 如果设置了毫秒
|
|
92
|
+
}
|
|
80
93
|
return date;
|
|
81
94
|
},
|
|
82
95
|
/**
|
|
@@ -97,7 +110,9 @@ export default {
|
|
|
97
110
|
config = Object.assign({}, defaultConfig, config);
|
|
98
111
|
var id = config.id;
|
|
99
112
|
var timeoutKey = "_".concat(id, "_timeout");
|
|
100
|
-
if (window[timeoutKey])
|
|
113
|
+
if (window[timeoutKey]) {
|
|
114
|
+
clearTimeout(window[timeoutKey]);
|
|
115
|
+
}
|
|
101
116
|
var dom = document.getElementById(id);
|
|
102
117
|
if (!dom) {
|
|
103
118
|
dom = document.createElement("div");
|
|
@@ -121,15 +136,19 @@ export default {
|
|
|
121
136
|
});
|
|
122
137
|
}
|
|
123
138
|
dom.style.display = "block";
|
|
124
|
-
if (seconds > 0)
|
|
125
|
-
|
|
126
|
-
|
|
139
|
+
if (seconds > 0) {
|
|
140
|
+
window[timeoutKey] = setTimeout(function() {
|
|
141
|
+
_this.hideLoading();
|
|
142
|
+
}, seconds * 1000);
|
|
143
|
+
}
|
|
127
144
|
},
|
|
128
145
|
// 隐藏全局loading
|
|
129
146
|
hideLoading: function hideLoading() {
|
|
130
147
|
var id = "com_global_page_loading";
|
|
131
148
|
var loading = document.getElementById(id);
|
|
132
|
-
if (loading)
|
|
149
|
+
if (loading) {
|
|
150
|
+
loading.style.display = "none";
|
|
151
|
+
}
|
|
133
152
|
},
|
|
134
153
|
/**
|
|
135
154
|
* 从URL中获取某个参数,如果不存在返回 undefined ,如果存在多个同名参数,返回第一个匹配值
|
|
@@ -178,7 +197,9 @@ export default {
|
|
|
178
197
|
*/ setParam: function setParam(name, value, url) {
|
|
179
198
|
url = url || "".concat(location.pathname).concat(location.search);
|
|
180
199
|
// 如果参数已经存在,替换之
|
|
181
|
-
if (this.getParam(name, url) !== undefined)
|
|
200
|
+
if (this.getParam(name, url) !== undefined) {
|
|
201
|
+
return url.replace(new RegExp("(^|\\?|&)".concat(name, "=(.*?)(?=&|#|$)"), "g"), "$1".concat(name, "=").concat(value));
|
|
202
|
+
}
|
|
182
203
|
var _url_split = _sliced_to_array(url.split("#"), 2), pathname = _url_split[0], hash = _url_split[1]; // 处理存在hash的情况
|
|
183
204
|
return "".concat(pathname).concat(pathname.indexOf("?") < 0 ? "?" : "&").concat(name, "=").concat(value).concat(hash ? "#" : "").concat(hash || "");
|
|
184
205
|
},
|
|
@@ -211,7 +232,9 @@ export default {
|
|
|
211
232
|
* @param obj 要复制的对象,非对象格式会直接返回
|
|
212
233
|
* @returns
|
|
213
234
|
*/ deepCopy: function(obj) {
|
|
214
|
-
if (!obj || typeof obj !== "object")
|
|
235
|
+
if (!obj || typeof obj !== "object") {
|
|
236
|
+
return obj;
|
|
237
|
+
}
|
|
215
238
|
return JSON.parse(JSON.stringify(obj));
|
|
216
239
|
},
|
|
217
240
|
/**
|
|
@@ -223,7 +246,11 @@ export default {
|
|
|
223
246
|
var div = document.createElement("div");
|
|
224
247
|
div.innerText = html;
|
|
225
248
|
return div.innerHTML;
|
|
226
|
-
} else if (typeof html === "object" && html)
|
|
249
|
+
} else if (typeof html === "object" && html) {
|
|
250
|
+
for(var i in html){
|
|
251
|
+
html[i] = this.encodeHtml(html[i]);
|
|
252
|
+
}
|
|
253
|
+
}
|
|
227
254
|
return html;
|
|
228
255
|
},
|
|
229
256
|
/**
|
|
@@ -235,7 +262,13 @@ export default {
|
|
|
235
262
|
var div = document.createElement("div");
|
|
236
263
|
div.innerHTML = html;
|
|
237
264
|
return div.innerText;
|
|
238
|
-
} else if (typeof html === "object" && html)
|
|
265
|
+
} else if (typeof html === "object" && html) {
|
|
266
|
+
for(var i in html){
|
|
267
|
+
html[i] = this.decodeHtml(html[i]);
|
|
268
|
+
}
|
|
269
|
+
}
|
|
239
270
|
return html;
|
|
240
271
|
}
|
|
241
272
|
};
|
|
273
|
+
|
|
274
|
+
//# sourceMappingURL=index.js.map
|
package/esm/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":["import { _ as _sliced_to_array } from \"@swc/helpers/_/_sliced_to_array\";\nexport default {\n /**\n * 将日期格式化成指定格式的字符串\n * @param date 要格式化的日期,不传时默认当前时间,也可以是一个时间戳等\n * @param fmt 目标字符串格式,支持的字符有:y,M,d,q,w,H,h,m,S,默认:yyyy-MM-dd HH:mm:ss\n * @returns 返回格式化后的日期字符串\n */ formatDate: function formatDate(date, fmt) {\n var _loop = function(i) {\n fmt = fmt.replace(new RegExp(\"\".concat(i, \"+\"), \"g\"), function(m) {\n var val = \"\".concat(obj[i]);\n if (i === \"w\") {\n return (m.length > 2 ? \"星期\" : \"周\") + week[val];\n }\n for(var j = 0, len = val.length; j < m.length - len; j++){\n val = \"0\".concat(val);\n }\n return m.length === 1 ? val : val.substring(val.length - m.length);\n });\n };\n if (!date) {\n return \"\";\n }\n if (typeof date === \"number\") {\n // 1687682453445\n date = new Date(date);\n } else if (typeof date === \"string\") {\n if (/^\\d{12,13}$/g.test(date)) {\n // '1687682453445'\n date = new Date(parseInt(date));\n } else if (/^.{10}T.{8,12}Z?$/g.test(date)) {\n // '2019-01-01T00:00:00.000Z'\n date = new Date(date);\n } else {\n return date;\n }\n }\n fmt = fmt || \"yyyy-MM-dd HH:mm:ss\";\n var obj = {\n y: date.getFullYear(),\n M: date.getMonth() + 1,\n d: date.getDate(),\n q: Math.floor((date.getMonth() + 3) / 3),\n w: date.getDay(),\n H: date.getHours(),\n h: date.getHours() % 12 === 0 ? 12 : date.getHours() % 12,\n m: date.getMinutes(),\n s: date.getSeconds(),\n S: date.getMilliseconds()\n };\n var week = [\n \"天\",\n \"一\",\n \"二\",\n \"三\",\n \"四\",\n \"五\",\n \"六\"\n ];\n // eslint-disable-next-line guard-for-in\n for(var i in obj)_loop(i);\n return fmt;\n },\n /**\n * 将字符串解析成日期\n * @param str 输入的日期字符串,如'2014-09-13'\n * @param fmt 字符串格式,默认'yyyy-MM-dd',支持如下:y、M、d、H、m、s、S,不支持w和q\n * @returns 解析后的Date类型日期\n */ parseDate: function parseDate(str, fmt) {\n fmt = fmt || \"yyyy-MM-dd\";\n var obj = {\n y: 0,\n M: 1,\n d: 0,\n H: 0,\n h: 0,\n m: 0,\n s: 0,\n S: 0\n };\n fmt.replace(/([^yMdHmsS]*?)(([yMdHmsS])\\3*)([^yMdHmsS]*?)/g, function(m, $1, $2, $3, $4) {\n str = str.replace(new RegExp(\"\".concat($1, \"(\\\\d{\").concat($2.length, \"})\").concat($4)), function(_m, _$1) {\n obj[$3] = parseInt(_$1);\n return \"\";\n });\n return \"\";\n });\n obj.M--; // 月份是从0开始的,所以要减去1\n var date = new Date(obj.y, obj.M, obj.d, obj.H, obj.m, obj.s);\n if (obj.S !== 0) {\n date.setMilliseconds(obj.S); // 如果设置了毫秒\n }\n return date;\n },\n /**\n * 显示全局loading\n * @param {*} text\n * @param {*} seconds\n * @param {*} options\n */ showLoading: function showLoading() {\n var text = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : \"请稍候\", seconds = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 10, config = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};\n var _this = this;\n var defaultConfig = {\n hasMask: true,\n maskColor: \"transparent\",\n onCancel: null,\n cancelInline: false,\n id: \"com_global_page_loading\"\n };\n config = Object.assign({}, defaultConfig, config);\n var id = config.id;\n var timeoutKey = \"_\".concat(id, \"_timeout\");\n if (window[timeoutKey]) {\n clearTimeout(window[timeoutKey]);\n }\n var dom = document.getElementById(id);\n if (!dom) {\n dom = document.createElement(\"div\");\n dom.id = id;\n dom.className = id;\n document.body.append(dom);\n }\n var styleId = \"\".concat(id, \"_style\");\n if (!document.getElementById(styleId)) {\n var style = document.createElement(\"style\");\n style.id = styleId;\n style.innerHTML = \"\\n .\".concat(id, \" {\\n position: fixed;\\n top: calc(50vh - 60px);\\n left: calc(50vw - 60px);\\n width: 120px;\\n height: 120px;\\n z-index: 8000;\\n background: rgba(0, 0, 0, 0.6);\\n border-radius: 8px;\\n text-align: center;\\n color: white;\\n padding-top: 20px;\\n }\\n .\").concat(id, \" img {\\n width: 50px;\\n margin-bottom: 10px;\\n }\");\n document.head.appendChild(style);\n }\n dom.innerHTML = \"\\n \".concat(config.hasMask ? '<div class=\"mask-wrapper\" style=\"background-color: '.concat(config.maskColor, '\"></div>') : \"\", '\\n <div class=\"loading-wrapper\">\\n <div class=\"loading-content\">\\n <img src=\"https://img.alicdn.com/tfs/TB1bnUsQBLoK1RjSZFuXXXn0XXa-32-32.svg\" alt=\"加载中\">\\n <div>').concat(text).concat(config.cancelInline ? \" \" : \"</div>\", \"\\n \").concat(config.onCancel ? '<a href=\"javascript:;\" class=\"cancel\">取消</a>' : \"\", \"\\n \").concat(config.cancelInline ? \"</div>\" : \"\", \"\\n </div>\\n </div>\");\n if (config.onCancel) {\n var btn = dom.querySelector(\".cancel\");\n btn && btn.addEventListener(\"click\", function() {\n _this.hideLoading();\n config.onCancel();\n });\n }\n dom.style.display = \"block\";\n if (seconds > 0) {\n window[timeoutKey] = setTimeout(function() {\n _this.hideLoading();\n }, seconds * 1000);\n }\n },\n // 隐藏全局loading\n hideLoading: function hideLoading() {\n var id = \"com_global_page_loading\";\n var loading = document.getElementById(id);\n if (loading) {\n loading.style.display = \"none\";\n }\n },\n /**\n * 从URL中获取某个参数,如果不存在返回 undefined ,如果存在多个同名参数,返回第一个匹配值\n * getParam('a', '?a=1&b=&c=3&c=33#abc') // '1'\n * getParam('b', '?a=1&b=&c=3&c=33#abc') // ''\n * getParam('c', '?a=1&b=&c=3&c=33#abc') // 3\n * getParam('d', '?a=1&b=&c=3&c=33#abc') // undefined\n * @param {*} name 参数名\n * @param {*} url 要获取的URL,默认当前地址\n */ getParam: function getParam(name) {\n var url = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : location.search;\n return (new RegExp(\"(^|\\\\?|&)\".concat(name, \"=(.*?)(?=&|#|$)\"), \"g\").exec(url) || [])[2];\n },\n /**\n * 从URL中获取int参数\n * @param {*} name 参数名\n * @param {*} url 要获取的URL,默认当前地址\n */ getParamInt: function getParamInt(name) {\n var url = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : location.search;\n return parseInt(this.getParam(name, url) || \"0\", 10);\n },\n /**\n * 获取某个URL的全部参数\n * getParams('?a=1&b=2#cc') // {a: '1', b: '2'}\n * @param url \n * @returns 参数对象\n */ getParams: function getParams() {\n var url = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : location.search;\n var search = ((url || \"\").split(\"?\").pop() || \"\").split(\"#\")[0] || \"\";\n var params = {};\n search.split(\"&\").map(function(item) {\n return item.split(\"=\");\n }).forEach(function(param) {\n var _param = _sliced_to_array(param, 2), key = _param[0], value = _param[1];\n params[key] = value || \"\";\n });\n return params;\n },\n /**\n * 给URL设置参数,如果已经存在,替换之,兼容hash存在的情况\n * setParam('a', '123', '?a=1&b=2&a=3#d') // '?a=123&b=2&a=123#d'\n * setParam('d', '444', '?a=1&b=2&a=3#d') // '?a=1&b=2&a=3&d=444#d'\n * @param {Object} name 参数名\n * @param {Object} value 参数值\n * @param {Object} url 如果不传默认当前页面URL\n */ setParam: function setParam(name, value, url) {\n url = url || \"\".concat(location.pathname).concat(location.search);\n // 如果参数已经存在,替换之\n if (this.getParam(name, url) !== undefined) {\n return url.replace(new RegExp(\"(^|\\\\?|&)\".concat(name, \"=(.*?)(?=&|#|$)\"), \"g\"), \"$1\".concat(name, \"=\").concat(value));\n }\n var _url_split = _sliced_to_array(url.split(\"#\"), 2), pathname = _url_split[0], hash = _url_split[1]; // 处理存在hash的情况\n return \"\".concat(pathname).concat(pathname.indexOf(\"?\") < 0 ? \"?\" : \"&\").concat(name, \"=\").concat(value).concat(hash ? \"#\" : \"\").concat(hash || \"\");\n },\n /**\n * 删除URL中某个参数\n * delParam('a', '?a=1&b=2&a=3#d') // '?b=2#d'\n * delParam('b', '?a=1&b=2&a=3#d') // '?a=1&a=3#d'\n * delParam('a', '?a=1#d') // '#d'\n * @param name 参数名\n * @param url 要删除的URL,默认当前页面URL\n * @returns 处理完后的URL\n */ delParam: function delParam(name, url) {\n url = url || \"\".concat(location.pathname).concat(location.search);\n return url.replace(new RegExp(\"(^|\\\\?|&)\".concat(name, \"=.*?(&|#|$)\"), \"g\"), function(_m, $1, $2) {\n return $2 === \"&\" ? $1 : $2;\n });\n },\n /**\n * 休息一段时间,单位毫秒\n * 示例:await sleep(200); // 休息200毫秒\n * @param time 要休息的时间,单位毫秒,不传默认0\n * @returns \n */ sleep: function(time) {\n return new Promise(function(resolve) {\n return setTimeout(resolve, time || 0);\n });\n },\n /**\n * 基于JSON的简单深拷贝\n * @param obj 要复制的对象,非对象格式会直接返回\n * @returns \n */ deepCopy: function(obj) {\n if (!obj || typeof obj !== \"object\") {\n return obj;\n }\n return JSON.parse(JSON.stringify(obj));\n },\n /**\n * HTML编码,例如将 【\"】 变成 【"】\n * @param {*} html 待编码的原始字符串,如果传入对象会遍历处理\n * @returns \n */ encodeHtml: function encodeHtml(html) {\n if (typeof html === \"string\") {\n var div = document.createElement(\"div\");\n div.innerText = html;\n return div.innerHTML;\n } else if (typeof html === \"object\" && html) {\n for(var i in html){\n html[i] = this.encodeHtml(html[i]);\n }\n }\n return html;\n },\n /**\n * HTML解码,例如将 【"】 变成 【\"】\n * @param {*} html 已经被HTML编码过的字符串,如果传入对象会遍历处理\n * @returns \n */ decodeHtml: function decodeHtml(html) {\n if (typeof html === \"string\") {\n var div = document.createElement(\"div\");\n div.innerHTML = html;\n return div.innerText;\n } else if (typeof html === \"object\" && html) {\n for(var i in html){\n html[i] = this.decodeHtml(html[i]);\n }\n }\n return html;\n }\n};\n"],"names":[],"mappings":"AAAA,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACxE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC/C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACzE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC5B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC/E,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC5C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1E,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnF,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACf,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACV,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACT,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACvC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC5B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAClC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC9C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC5C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAClC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACzD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC7C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC5B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACb,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACT,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC3C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAClC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC9B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACrD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC7B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC/B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACrC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACV,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACf,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACV,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAClC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACN,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACxC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC5B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAClC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACV,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAClG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACxH,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACxC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACf,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACX,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACT,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACN,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACzB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACzB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC7C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACvP,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACzB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC7B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACrC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC3B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACzC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACV,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1D,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC3B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC7C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACT,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC9C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACxB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC/B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACT,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC9C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACxD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC/B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACzlB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC7C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACT,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC/pB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC9B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC7D,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAClC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACf,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACT,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACxD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC/B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACT,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACN,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACzC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC3C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAClD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC3C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACT,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACN,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACzD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAClD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACzD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC3C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACN,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC7D,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACN,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACzC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC9E,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACxB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC9C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACxF,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACX,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACN,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACrE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACvE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC/B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACxC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACvD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1E,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACvB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACrD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACT,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC5H,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC5J,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACN,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAClD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACxB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1E,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC3G,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACxC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACX,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACN,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC/B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC9C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAClD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACX,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACN,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC9C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACvB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACT,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC/C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACN,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC5C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC/C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACvC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC/B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACb,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACT,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACN,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAChB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC/C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACvC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACjC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC/B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACb,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACT,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACpB,CAAC,CAAC,CAAC,CAAC,CAAC;AACL,CAAC,CAAC;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "youtil",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "油梯,一个与框架、环境无关的小巧、精简、实用的JavaScript工具库",
|
|
5
5
|
"files": [
|
|
6
6
|
"esm",
|
|
@@ -42,11 +42,11 @@
|
|
|
42
42
|
"youtil"
|
|
43
43
|
],
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@swc/helpers": "^0.
|
|
45
|
+
"@swc/helpers": "^0.5.3"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@ice/jsx-runtime": "^0.2.0",
|
|
49
|
-
"@ice/pkg": "^1.
|
|
49
|
+
"@ice/pkg": "^1.5.17",
|
|
50
50
|
"@ice/pkg-plugin-docusaurus": "^1.4.4",
|
|
51
51
|
"@iceworks/spec": "^1.0.0",
|
|
52
52
|
"eslint": "^7.0.0",
|
package/cjs/index.d.ts
DELETED
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
interface IShowLoadingConfig {
|
|
2
|
-
hasMask?: boolean;
|
|
3
|
-
maskColor?: string;
|
|
4
|
-
cancelInline?: boolean;
|
|
5
|
-
onCancel?: Function;
|
|
6
|
-
id?: string;
|
|
7
|
-
}
|
|
8
|
-
declare const _default: {
|
|
9
|
-
/**
|
|
10
|
-
* 将日期格式化成指定格式的字符串
|
|
11
|
-
* @param date 要格式化的日期,不传时默认当前时间,也可以是一个时间戳等
|
|
12
|
-
* @param fmt 目标字符串格式,支持的字符有:y,M,d,q,w,H,h,m,S,默认:yyyy-MM-dd HH:mm:ss
|
|
13
|
-
* @returns 返回格式化后的日期字符串
|
|
14
|
-
*/
|
|
15
|
-
formatDate(date?: Date | number | string, fmt?: string): string;
|
|
16
|
-
/**
|
|
17
|
-
* 将字符串解析成日期
|
|
18
|
-
* @param str 输入的日期字符串,如'2014-09-13'
|
|
19
|
-
* @param fmt 字符串格式,默认'yyyy-MM-dd',支持如下:y、M、d、H、m、s、S,不支持w和q
|
|
20
|
-
* @returns 解析后的Date类型日期
|
|
21
|
-
*/
|
|
22
|
-
parseDate(str: string, fmt?: string): Date;
|
|
23
|
-
/**
|
|
24
|
-
* 显示全局loading
|
|
25
|
-
* @param {*} text
|
|
26
|
-
* @param {*} seconds
|
|
27
|
-
* @param {*} options
|
|
28
|
-
*/
|
|
29
|
-
showLoading(text?: string, seconds?: number, config?: IShowLoadingConfig): void;
|
|
30
|
-
hideLoading(): void;
|
|
31
|
-
/**
|
|
32
|
-
* 从URL中获取某个参数,如果不存在返回 undefined ,如果存在多个同名参数,返回第一个匹配值
|
|
33
|
-
* getParam('a', '?a=1&b=&c=3&c=33#abc') // '1'
|
|
34
|
-
* getParam('b', '?a=1&b=&c=3&c=33#abc') // ''
|
|
35
|
-
* getParam('c', '?a=1&b=&c=3&c=33#abc') // 3
|
|
36
|
-
* getParam('d', '?a=1&b=&c=3&c=33#abc') // undefined
|
|
37
|
-
* @param {*} name 参数名
|
|
38
|
-
* @param {*} url 要获取的URL,默认当前地址
|
|
39
|
-
*/
|
|
40
|
-
getParam(name: string, url?: string): string;
|
|
41
|
-
/**
|
|
42
|
-
* 从URL中获取int参数
|
|
43
|
-
* @param {*} name 参数名
|
|
44
|
-
* @param {*} url 要获取的URL,默认当前地址
|
|
45
|
-
*/
|
|
46
|
-
getParamInt(name: string, url?: string): number;
|
|
47
|
-
/**
|
|
48
|
-
* 获取某个URL的全部参数
|
|
49
|
-
* getParams('?a=1&b=2#cc') // {a: '1', b: '2'}
|
|
50
|
-
* @param url
|
|
51
|
-
* @returns 参数对象
|
|
52
|
-
*/
|
|
53
|
-
getParams(url?: string): any;
|
|
54
|
-
/**
|
|
55
|
-
* 给URL设置参数,如果已经存在,替换之,兼容hash存在的情况
|
|
56
|
-
* setParam('a', '123', '?a=1&b=2&a=3#d') // '?a=123&b=2&a=123#d'
|
|
57
|
-
* setParam('d', '444', '?a=1&b=2&a=3#d') // '?a=1&b=2&a=3&d=444#d'
|
|
58
|
-
* @param {Object} name 参数名
|
|
59
|
-
* @param {Object} value 参数值
|
|
60
|
-
* @param {Object} url 如果不传默认当前页面URL
|
|
61
|
-
*/
|
|
62
|
-
setParam(name: string, value: string | number, url?: string): string;
|
|
63
|
-
/**
|
|
64
|
-
* 删除URL中某个参数
|
|
65
|
-
* delParam('a', '?a=1&b=2&a=3#d') // '?b=2#d'
|
|
66
|
-
* delParam('b', '?a=1&b=2&a=3#d') // '?a=1&a=3#d'
|
|
67
|
-
* delParam('a', '?a=1#d') // '#d'
|
|
68
|
-
* @param name 参数名
|
|
69
|
-
* @param url 要删除的URL,默认当前页面URL
|
|
70
|
-
* @returns 处理完后的URL
|
|
71
|
-
*/
|
|
72
|
-
delParam(name: string, url: string): string;
|
|
73
|
-
/**
|
|
74
|
-
* 休息一段时间,单位毫秒
|
|
75
|
-
* 示例:await sleep(200); // 休息200毫秒
|
|
76
|
-
* @param time 要休息的时间,单位毫秒,不传默认0
|
|
77
|
-
* @returns
|
|
78
|
-
*/
|
|
79
|
-
sleep: (time?: number) => Promise<unknown>;
|
|
80
|
-
/**
|
|
81
|
-
* 基于JSON的简单深拷贝
|
|
82
|
-
* @param obj 要复制的对象,非对象格式会直接返回
|
|
83
|
-
* @returns
|
|
84
|
-
*/
|
|
85
|
-
deepCopy: (obj: any) => any;
|
|
86
|
-
/**
|
|
87
|
-
* HTML编码,例如将 【"】 变成 【"】
|
|
88
|
-
* @param {*} html 待编码的原始字符串,如果传入对象会遍历处理
|
|
89
|
-
* @returns
|
|
90
|
-
*/
|
|
91
|
-
encodeHtml(html: string | any): any;
|
|
92
|
-
/**
|
|
93
|
-
* HTML解码,例如将 【"】 变成 【"】
|
|
94
|
-
* @param {*} html 已经被HTML编码过的字符串,如果传入对象会遍历处理
|
|
95
|
-
* @returns
|
|
96
|
-
*/
|
|
97
|
-
decodeHtml(html: string | any): any;
|
|
98
|
-
};
|
|
99
|
-
export default _default;
|
package/cjs/index.js
DELETED
|
@@ -1,251 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
value: true
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, "default", {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function() {
|
|
8
|
-
return _default;
|
|
9
|
-
}
|
|
10
|
-
});
|
|
11
|
-
var _slicedToArray = require("@swc/helpers/lib/_sliced_to_array.js").default;
|
|
12
|
-
var _default = {
|
|
13
|
-
/**
|
|
14
|
-
* 将日期格式化成指定格式的字符串
|
|
15
|
-
* @param date 要格式化的日期,不传时默认当前时间,也可以是一个时间戳等
|
|
16
|
-
* @param fmt 目标字符串格式,支持的字符有:y,M,d,q,w,H,h,m,S,默认:yyyy-MM-dd HH:mm:ss
|
|
17
|
-
* @returns 返回格式化后的日期字符串
|
|
18
|
-
*/ formatDate: function formatDate(date, fmt) {
|
|
19
|
-
var _loop = function(i) {
|
|
20
|
-
fmt = fmt.replace(new RegExp("".concat(i, "+"), "g"), function(m) {
|
|
21
|
-
var val = "".concat(obj[i]);
|
|
22
|
-
if (i === "w") return (m.length > 2 ? "星期" : "周") + week[val];
|
|
23
|
-
for(var j = 0, len = val.length; j < m.length - len; j++)val = "0".concat(val);
|
|
24
|
-
return m.length === 1 ? val : val.substring(val.length - m.length);
|
|
25
|
-
});
|
|
26
|
-
};
|
|
27
|
-
if (!date) return "";
|
|
28
|
-
if (typeof date === "number") // 1687682453445
|
|
29
|
-
date = new Date(date);
|
|
30
|
-
else if (typeof date === "string") {
|
|
31
|
-
if (/^\d{12,13}$/g.test(date)) // '1687682453445'
|
|
32
|
-
date = new Date(parseInt(date));
|
|
33
|
-
else if (/^.{10}T.{8,12}Z?$/g.test(date)) // '2019-01-01T00:00:00.000Z'
|
|
34
|
-
date = new Date(date);
|
|
35
|
-
else return date;
|
|
36
|
-
}
|
|
37
|
-
fmt = fmt || "yyyy-MM-dd HH:mm:ss";
|
|
38
|
-
var obj = {
|
|
39
|
-
y: date.getFullYear(),
|
|
40
|
-
M: date.getMonth() + 1,
|
|
41
|
-
d: date.getDate(),
|
|
42
|
-
q: Math.floor((date.getMonth() + 3) / 3),
|
|
43
|
-
w: date.getDay(),
|
|
44
|
-
H: date.getHours(),
|
|
45
|
-
h: date.getHours() % 12 === 0 ? 12 : date.getHours() % 12,
|
|
46
|
-
m: date.getMinutes(),
|
|
47
|
-
s: date.getSeconds(),
|
|
48
|
-
S: date.getMilliseconds()
|
|
49
|
-
};
|
|
50
|
-
var week = [
|
|
51
|
-
"天",
|
|
52
|
-
"一",
|
|
53
|
-
"二",
|
|
54
|
-
"三",
|
|
55
|
-
"四",
|
|
56
|
-
"五",
|
|
57
|
-
"六"
|
|
58
|
-
];
|
|
59
|
-
// eslint-disable-next-line guard-for-in
|
|
60
|
-
for(var i in obj)_loop(i);
|
|
61
|
-
return fmt;
|
|
62
|
-
},
|
|
63
|
-
/**
|
|
64
|
-
* 将字符串解析成日期
|
|
65
|
-
* @param str 输入的日期字符串,如'2014-09-13'
|
|
66
|
-
* @param fmt 字符串格式,默认'yyyy-MM-dd',支持如下:y、M、d、H、m、s、S,不支持w和q
|
|
67
|
-
* @returns 解析后的Date类型日期
|
|
68
|
-
*/ parseDate: function parseDate(str, fmt) {
|
|
69
|
-
fmt = fmt || "yyyy-MM-dd";
|
|
70
|
-
var obj = {
|
|
71
|
-
y: 0,
|
|
72
|
-
M: 1,
|
|
73
|
-
d: 0,
|
|
74
|
-
H: 0,
|
|
75
|
-
h: 0,
|
|
76
|
-
m: 0,
|
|
77
|
-
s: 0,
|
|
78
|
-
S: 0
|
|
79
|
-
};
|
|
80
|
-
fmt.replace(/([^yMdHmsS]*?)(([yMdHmsS])\3*)([^yMdHmsS]*?)/g, function(m, $1, $2, $3, $4) {
|
|
81
|
-
str = str.replace(new RegExp("".concat($1, "(\\d{").concat($2.length, "})").concat($4)), function(_m, _$1) {
|
|
82
|
-
obj[$3] = parseInt(_$1);
|
|
83
|
-
return "";
|
|
84
|
-
});
|
|
85
|
-
return "";
|
|
86
|
-
});
|
|
87
|
-
obj.M--; // 月份是从0开始的,所以要减去1
|
|
88
|
-
var date = new Date(obj.y, obj.M, obj.d, obj.H, obj.m, obj.s);
|
|
89
|
-
if (obj.S !== 0) date.setMilliseconds(obj.S); // 如果设置了毫秒
|
|
90
|
-
return date;
|
|
91
|
-
},
|
|
92
|
-
/**
|
|
93
|
-
* 显示全局loading
|
|
94
|
-
* @param {*} text
|
|
95
|
-
* @param {*} seconds
|
|
96
|
-
* @param {*} options
|
|
97
|
-
*/ showLoading: function showLoading() {
|
|
98
|
-
var text = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : "请稍候", seconds = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 10, config = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
|
|
99
|
-
var _this = this;
|
|
100
|
-
var defaultConfig = {
|
|
101
|
-
hasMask: true,
|
|
102
|
-
maskColor: "transparent",
|
|
103
|
-
onCancel: null,
|
|
104
|
-
cancelInline: false,
|
|
105
|
-
id: "com_global_page_loading"
|
|
106
|
-
};
|
|
107
|
-
config = Object.assign({}, defaultConfig, config);
|
|
108
|
-
var id = config.id;
|
|
109
|
-
var timeoutKey = "_".concat(id, "_timeout");
|
|
110
|
-
if (window[timeoutKey]) clearTimeout(window[timeoutKey]);
|
|
111
|
-
var dom = document.getElementById(id);
|
|
112
|
-
if (!dom) {
|
|
113
|
-
dom = document.createElement("div");
|
|
114
|
-
dom.id = id;
|
|
115
|
-
dom.className = id;
|
|
116
|
-
document.body.append(dom);
|
|
117
|
-
}
|
|
118
|
-
var styleId = "".concat(id, "_style");
|
|
119
|
-
if (!document.getElementById(styleId)) {
|
|
120
|
-
var style = document.createElement("style");
|
|
121
|
-
style.id = styleId;
|
|
122
|
-
style.innerHTML = "\n .".concat(id, " {\n position: fixed;\n top: calc(50vh - 60px);\n left: calc(50vw - 60px);\n width: 120px;\n height: 120px;\n z-index: 8000;\n background: rgba(0, 0, 0, 0.6);\n border-radius: 8px;\n text-align: center;\n color: white;\n padding-top: 20px;\n }\n .").concat(id, " img {\n width: 50px;\n margin-bottom: 10px;\n }");
|
|
123
|
-
document.head.appendChild(style);
|
|
124
|
-
}
|
|
125
|
-
dom.innerHTML = "\n ".concat(config.hasMask ? '<div class="mask-wrapper" style="background-color: '.concat(config.maskColor, '"></div>') : "", '\n <div class="loading-wrapper">\n <div class="loading-content">\n <img src="https://img.alicdn.com/tfs/TB1bnUsQBLoK1RjSZFuXXXn0XXa-32-32.svg" alt="加载中">\n <div>').concat(text).concat(config.cancelInline ? " " : "</div>", "\n ").concat(config.onCancel ? '<a href="javascript:;" class="cancel">取消</a>' : "", "\n ").concat(config.cancelInline ? "</div>" : "", "\n </div>\n </div>");
|
|
126
|
-
if (config.onCancel) {
|
|
127
|
-
var btn = dom.querySelector(".cancel");
|
|
128
|
-
btn && btn.addEventListener("click", function() {
|
|
129
|
-
_this.hideLoading();
|
|
130
|
-
config.onCancel();
|
|
131
|
-
});
|
|
132
|
-
}
|
|
133
|
-
dom.style.display = "block";
|
|
134
|
-
if (seconds > 0) window[timeoutKey] = setTimeout(function() {
|
|
135
|
-
_this.hideLoading();
|
|
136
|
-
}, seconds * 1000);
|
|
137
|
-
},
|
|
138
|
-
// 隐藏全局loading
|
|
139
|
-
hideLoading: function hideLoading() {
|
|
140
|
-
var id = "com_global_page_loading";
|
|
141
|
-
var loading = document.getElementById(id);
|
|
142
|
-
if (loading) loading.style.display = "none";
|
|
143
|
-
},
|
|
144
|
-
/**
|
|
145
|
-
* 从URL中获取某个参数,如果不存在返回 undefined ,如果存在多个同名参数,返回第一个匹配值
|
|
146
|
-
* getParam('a', '?a=1&b=&c=3&c=33#abc') // '1'
|
|
147
|
-
* getParam('b', '?a=1&b=&c=3&c=33#abc') // ''
|
|
148
|
-
* getParam('c', '?a=1&b=&c=3&c=33#abc') // 3
|
|
149
|
-
* getParam('d', '?a=1&b=&c=3&c=33#abc') // undefined
|
|
150
|
-
* @param {*} name 参数名
|
|
151
|
-
* @param {*} url 要获取的URL,默认当前地址
|
|
152
|
-
*/ getParam: function getParam(name) {
|
|
153
|
-
var url = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : location.search;
|
|
154
|
-
return (new RegExp("(^|\\?|&)".concat(name, "=(.*?)(?=&|#|$)"), "g").exec(url) || [])[2];
|
|
155
|
-
},
|
|
156
|
-
/**
|
|
157
|
-
* 从URL中获取int参数
|
|
158
|
-
* @param {*} name 参数名
|
|
159
|
-
* @param {*} url 要获取的URL,默认当前地址
|
|
160
|
-
*/ getParamInt: function getParamInt(name) {
|
|
161
|
-
var url = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : location.search;
|
|
162
|
-
return parseInt(this.getParam(name, url) || "0", 10);
|
|
163
|
-
},
|
|
164
|
-
/**
|
|
165
|
-
* 获取某个URL的全部参数
|
|
166
|
-
* getParams('?a=1&b=2#cc') // {a: '1', b: '2'}
|
|
167
|
-
* @param url
|
|
168
|
-
* @returns 参数对象
|
|
169
|
-
*/ getParams: function getParams() {
|
|
170
|
-
var url = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : location.search;
|
|
171
|
-
var search = ((url || "").split("?").pop() || "").split("#")[0] || "";
|
|
172
|
-
var params = {};
|
|
173
|
-
search.split("&").map(function(item) {
|
|
174
|
-
return item.split("=");
|
|
175
|
-
}).forEach(function(param) {
|
|
176
|
-
var _param = _slicedToArray(param, 2), key = _param[0], value = _param[1];
|
|
177
|
-
params[key] = value || "";
|
|
178
|
-
});
|
|
179
|
-
return params;
|
|
180
|
-
},
|
|
181
|
-
/**
|
|
182
|
-
* 给URL设置参数,如果已经存在,替换之,兼容hash存在的情况
|
|
183
|
-
* setParam('a', '123', '?a=1&b=2&a=3#d') // '?a=123&b=2&a=123#d'
|
|
184
|
-
* setParam('d', '444', '?a=1&b=2&a=3#d') // '?a=1&b=2&a=3&d=444#d'
|
|
185
|
-
* @param {Object} name 参数名
|
|
186
|
-
* @param {Object} value 参数值
|
|
187
|
-
* @param {Object} url 如果不传默认当前页面URL
|
|
188
|
-
*/ setParam: function setParam(name, value, url) {
|
|
189
|
-
url = url || "".concat(location.pathname).concat(location.search);
|
|
190
|
-
// 如果参数已经存在,替换之
|
|
191
|
-
if (this.getParam(name, url) !== undefined) return url.replace(new RegExp("(^|\\?|&)".concat(name, "=(.*?)(?=&|#|$)"), "g"), "$1".concat(name, "=").concat(value));
|
|
192
|
-
var _url_split = _slicedToArray(url.split("#"), 2), pathname = _url_split[0], hash = _url_split[1]; // 处理存在hash的情况
|
|
193
|
-
return "".concat(pathname).concat(pathname.indexOf("?") < 0 ? "?" : "&").concat(name, "=").concat(value).concat(hash ? "#" : "").concat(hash || "");
|
|
194
|
-
},
|
|
195
|
-
/**
|
|
196
|
-
* 删除URL中某个参数
|
|
197
|
-
* delParam('a', '?a=1&b=2&a=3#d') // '?b=2#d'
|
|
198
|
-
* delParam('b', '?a=1&b=2&a=3#d') // '?a=1&a=3#d'
|
|
199
|
-
* delParam('a', '?a=1#d') // '#d'
|
|
200
|
-
* @param name 参数名
|
|
201
|
-
* @param url 要删除的URL,默认当前页面URL
|
|
202
|
-
* @returns 处理完后的URL
|
|
203
|
-
*/ delParam: function delParam(name, url) {
|
|
204
|
-
url = url || "".concat(location.pathname).concat(location.search);
|
|
205
|
-
return url.replace(new RegExp("(^|\\?|&)".concat(name, "=.*?(&|#|$)"), "g"), function(_m, $1, $2) {
|
|
206
|
-
return $2 === "&" ? $1 : $2;
|
|
207
|
-
});
|
|
208
|
-
},
|
|
209
|
-
/**
|
|
210
|
-
* 休息一段时间,单位毫秒
|
|
211
|
-
* 示例:await sleep(200); // 休息200毫秒
|
|
212
|
-
* @param time 要休息的时间,单位毫秒,不传默认0
|
|
213
|
-
* @returns
|
|
214
|
-
*/ sleep: function(time) {
|
|
215
|
-
return new Promise(function(resolve) {
|
|
216
|
-
return setTimeout(resolve, time || 0);
|
|
217
|
-
});
|
|
218
|
-
},
|
|
219
|
-
/**
|
|
220
|
-
* 基于JSON的简单深拷贝
|
|
221
|
-
* @param obj 要复制的对象,非对象格式会直接返回
|
|
222
|
-
* @returns
|
|
223
|
-
*/ deepCopy: function(obj) {
|
|
224
|
-
if (!obj || typeof obj !== "object") return obj;
|
|
225
|
-
return JSON.parse(JSON.stringify(obj));
|
|
226
|
-
},
|
|
227
|
-
/**
|
|
228
|
-
* HTML编码,例如将 【"】 变成 【"】
|
|
229
|
-
* @param {*} html 待编码的原始字符串,如果传入对象会遍历处理
|
|
230
|
-
* @returns
|
|
231
|
-
*/ encodeHtml: function encodeHtml(html) {
|
|
232
|
-
if (typeof html === "string") {
|
|
233
|
-
var div = document.createElement("div");
|
|
234
|
-
div.innerText = html;
|
|
235
|
-
return div.innerHTML;
|
|
236
|
-
} else if (typeof html === "object" && html) for(var i in html)html[i] = this.encodeHtml(html[i]);
|
|
237
|
-
return html;
|
|
238
|
-
},
|
|
239
|
-
/**
|
|
240
|
-
* HTML解码,例如将 【"】 变成 【"】
|
|
241
|
-
* @param {*} html 已经被HTML编码过的字符串,如果传入对象会遍历处理
|
|
242
|
-
* @returns
|
|
243
|
-
*/ decodeHtml: function decodeHtml(html) {
|
|
244
|
-
if (typeof html === "string") {
|
|
245
|
-
var div = document.createElement("div");
|
|
246
|
-
div.innerHTML = html;
|
|
247
|
-
return div.innerText;
|
|
248
|
-
} else if (typeof html === "object" && html) for(var i in html)html[i] = this.decodeHtml(html[i]);
|
|
249
|
-
return html;
|
|
250
|
-
}
|
|
251
|
-
};
|
package/cjs/typings.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/// <reference types="@ice/pkg/types" />
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";var t,e,n,r,o,i,c,u,a,f,s,l,p,v,d,h,g,y,b,m="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},x=function(t){try{return!!t()}catch(t){return!0}},S=!x(function(){var t=(function(){}).bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}),w=Function.prototype,O=w.apply,E=w.call,j="object"==typeof Reflect&&Reflect.apply||(S?E.bind(O):function(){return E.apply(O,arguments)}),T=Function.prototype.call,R=S?T.bind(T):function(){return T.apply(T,arguments)},I=Function.prototype,P=I.call,C=S&&I.bind.bind(P,P),A=S?C:function(t){return function(){return P.apply(t,arguments)}},L=function(t){return t&&t.Math==Math&&t},M=L("object"==typeof globalThis&&globalThis)||L("object"==typeof window&&window)||L("object"==typeof self&&self)||L("object"==typeof m&&m)||function(){return this}()||Function("return this")(),_={},N=!x(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}),D={},k={}.propertyIsEnumerable,F=Object.getOwnPropertyDescriptor,U=F&&!k.call({1:2},1);D.f=U?function(t){var e=F(this,t);return!!e&&e.enumerable}:k;var $=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},G=A({}.toString),V=A("".slice),B=function(t){return V(G(t),8,-1)},z=Object,H=A("".split),K=x(function(){return!z("z").propertyIsEnumerable(0)})?function(t){return"String"==B(t)?H(t,""):z(t)}:z,W=function(t){return null==t},Y=TypeError,q=function(t){if(W(t))throw Y("Can't call method on "+t);return t},J=function(t){return K(q(t))},X="object"==typeof document&&document.all,Q={all:X,IS_HTMLDDA:void 0===X&&void 0!==X},Z=Q.all,tt=Q.IS_HTMLDDA?function(t){return"function"==typeof t||t===Z}:function(t){return"function"==typeof t},te=Q.all,tn=Q.IS_HTMLDDA?function(t){return"object"==typeof t?null!==t:tt(t)||t===te}:function(t){return"object"==typeof t?null!==t:tt(t)},tr=function(t,e){var n;return arguments.length<2?tt(n=M[t])?n:void 0:M[t]&&M[t][e]},to=A({}.isPrototypeOf),ti="undefined"!=typeof navigator&&String(navigator.userAgent)||"",tc=M.process,tu=M.Deno,ta=tc&&tc.versions||tu&&tu.version,tf=ta&&ta.v8;tf&&(e=(t=tf.split("."))[0]>0&&t[0]<4?1:+(t[0]+t[1])),!e&&ti&&(!(t=ti.match(/Edge\/(\d+)/))||t[1]>=74)&&(t=ti.match(/Chrome\/(\d+)/))&&(e=+t[1]);var ts=e,tl=!!Object.getOwnPropertySymbols&&!x(function(){var t=Symbol();return!String(t)||!(Object(t) instanceof Symbol)||!Symbol.sham&&ts&&ts<41}),tp=tl&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,tv=Object,td=tp?function(t){return"symbol"==typeof t}:function(t){var e=tr("Symbol");return tt(e)&&to(e.prototype,tv(t))},th=String,tg=function(t){try{return th(t)}catch(t){return"Object"}},ty=TypeError,tb=function(t){if(tt(t))return t;throw ty(tg(t)+" is not a function")},tm=function(t,e){var n=t[e];return W(n)?void 0:tb(n)},tx=TypeError,tS={exports:{}},tw=M,tO=Object.defineProperty,tE=function(t,e){try{tO(tw,t,{value:e,configurable:!0,writable:!0})}catch(n){tw[t]=e}return e},tj="__core-js_shared__",tT=M[tj]||tE(tj,{}),tR=tT;(tS.exports=function(t,e){return tR[t]||(tR[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.29.1",mode:"global",copyright:"\xa9 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.29.1/LICENSE",source:"https://github.com/zloirock/core-js"});var tI=Object,tP=function(t){return tI(q(t))},tC=A({}.hasOwnProperty),tA=Object.hasOwn||function(t,e){return tC(tP(t),e)},tL=0,tM=Math.random(),t_=A(1..toString),tN=function(t){return"Symbol("+(void 0===t?"":t)+")_"+t_(++tL+tM,36)},tD=tS.exports,tk=M.Symbol,tF=tD("wks"),tU=tp?tk.for||tk:tk&&tk.withoutSetter||tN,t$=function(t){return tA(tF,t)||(tF[t]=tl&&tA(tk,t)?tk[t]:tU("Symbol."+t)),tF[t]},tG=function(t,e){var n,r;if("string"===e&&tt(n=t.toString)&&!tn(r=R(n,t))||tt(n=t.valueOf)&&!tn(r=R(n,t))||"string"!==e&&tt(n=t.toString)&&!tn(r=R(n,t)))return r;throw tx("Can't convert object to primitive value")},tV=TypeError,tB=t$("toPrimitive"),tz=function(t,e){if(!tn(t)||td(t))return t;var n,r=tm(t,tB);if(r){if(void 0===e&&(e="default"),!tn(n=R(r,t,e))||td(n))return n;throw tV("Can't convert object to primitive value")}return void 0===e&&(e="number"),tG(t,e)},tH=function(t){var e=tz(t,"string");return td(e)?e:e+""},tK=M.document,tW=tn(tK)&&tn(tK.createElement),tY=function(t){return tW?tK.createElement(t):{}},tq=!N&&!x(function(){return 7!=Object.defineProperty(tY("div"),"a",{get:function(){return 7}}).a}),tJ=Object.getOwnPropertyDescriptor;_.f=N?tJ:function(t,e){if(t=J(t),e=tH(e),tq)try{return tJ(t,e)}catch(t){}if(tA(t,e))return $(!R(D.f,t,e),t[e])};var tX={},tQ=N&&x(function(){return 42!=Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype}),tZ=String,t0=TypeError,t1=function(t){if(tn(t))return t;throw t0(tZ(t)+" is not an object")},t2=TypeError,t7=Object.defineProperty,t9=Object.getOwnPropertyDescriptor,t4="enumerable",t5="configurable",t6="writable";tX.f=N?tQ?function(t,e,n){if(t1(t),e=tH(e),t1(n),"function"==typeof t&&"prototype"===e&&"value"in n&&t6 in n&&!n[t6]){var r=t9(t,e);r&&r[t6]&&(t[e]=n.value,n={configurable:t5 in n?n[t5]:r[t5],enumerable:t4 in n?n[t4]:r[t4],writable:!1})}return t7(t,e,n)}:t7:function(t,e,n){if(t1(t),e=tH(e),t1(n),tq)try{return t7(t,e,n)}catch(t){}if("get"in n||"set"in n)throw t2("Accessors not supported");return"value"in n&&(t[e]=n.value),t};var t3=N?function(t,e,n){return tX.f(t,e,$(1,n))}:function(t,e,n){return t[e]=n,t},t8={exports:{}},et=Function.prototype,ee=N&&Object.getOwnPropertyDescriptor,en=tA(et,"name"),er=en&&(!N||N&&ee(et,"name").configurable),eo={EXISTS:en,PROPER:en&&"something"===(function(){}).name,CONFIGURABLE:er},ei=tT,ec=A(Function.toString);tt(ei.inspectSource)||(ei.inspectSource=function(t){return ec(t)});var eu=ei.inspectSource,ea=M.WeakMap,ef=tt(ea)&&/native code/.test(String(ea)),es=(0,tS.exports)("keys"),el=function(t){return es[t]||(es[t]=tN(t))},ep={},ev=tT,ed=ep,eh="Object already initialized",eg=M.TypeError,ey=M.WeakMap;if(ef||ev.state){var eb=ev.state||(ev.state=new ey);eb.get=eb.get,eb.has=eb.has,eb.set=eb.set,n=function(t,e){if(eb.has(t))throw eg(eh);return e.facade=t,eb.set(t,e),e},r=function(t){return eb.get(t)||{}},o=function(t){return eb.has(t)}}else{var em=el("state");ed[em]=!0,n=function(t,e){if(tA(t,em))throw eg(eh);return e.facade=t,t3(t,em,e),e},r=function(t){return tA(t,em)?t[em]:{}},o=function(t){return tA(t,em)}}var ex={set:n,get:r,has:o,enforce:function(t){return o(t)?r(t):n(t,{})},getterFor:function(t){return function(e){var n;if(!tn(e)||(n=r(e)).type!==t)throw eg("Incompatible receiver, "+t+" required");return n}}},eS=eo.CONFIGURABLE,ew=ex.enforce,eO=ex.get,eE=String,ej=Object.defineProperty,eT=A("".slice),eR=A("".replace),eI=A([].join),eP=N&&!x(function(){return 8!==ej(function(){},"length",{value:8}).length}),eC=String(String).split("String"),eA=t8.exports=function(t,e,n){"Symbol("===eT(eE(e),0,7)&&(e="["+eR(eE(e),/^Symbol\(([^)]*)\)/,"$1")+"]"),n&&n.getter&&(e="get "+e),n&&n.setter&&(e="set "+e),(!tA(t,"name")||eS&&t.name!==e)&&(N?ej(t,"name",{value:e,configurable:!0}):t.name=e),eP&&n&&tA(n,"arity")&&t.length!==n.arity&&ej(t,"length",{value:n.arity});try{n&&tA(n,"constructor")&&n.constructor?N&&ej(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var r=ew(t);return tA(r,"source")||(r.source=eI(eC,"string"==typeof e?e:"")),t};Function.prototype.toString=eA(function(){return tt(this)&&eO(this).source||eu(this)},"toString");var eL=t8.exports,eM=function(t,e,n,r){r||(r={});var o=r.enumerable,i=void 0!==r.name?r.name:e;if(tt(n)&&eL(n,i,r),r.global)o?t[e]=n:tE(e,n);else{try{r.unsafe?t[e]&&(o=!0):delete t[e]}catch(t){}o?t[e]=n:tX.f(t,e,{value:n,enumerable:!1,configurable:!r.nonConfigurable,writable:!r.nonWritable})}return t},e_={},eN=Math.ceil,eD=Math.floor,ek=Math.trunc||function(t){var e=+t;return(e>0?eD:eN)(e)},eF=function(t){var e=+t;return e!=e||0===e?0:ek(e)},eU=Math.max,e$=Math.min,eG=function(t,e){var n=eF(t);return n<0?eU(n+e,0):e$(n,e)},eV=Math.min,eB=function(t){return t>0?eV(eF(t),9007199254740991):0},ez=function(t){return eB(t.length)},eH=function(t){return function(e,n,r){var o,i=J(e),c=ez(i),u=eG(r,c);if(t&&n!=n){for(;c>u;)if((o=i[u++])!=o)return!0}else for(;c>u;u++)if((t||u in i)&&i[u]===n)return t||u||0;return!t&&-1}},eK={includes:eH(!0),indexOf:eH(!1)},eW=eK.indexOf,eY=A([].push),eq=function(t,e){var n,r=J(t),o=0,i=[];for(n in r)!tA(ep,n)&&tA(r,n)&&eY(i,n);for(;e.length>o;)tA(r,n=e[o++])&&(~eW(i,n)||eY(i,n));return i},eJ=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],eX=eJ.concat("length","prototype");e_.f=Object.getOwnPropertyNames||function(t){return eq(t,eX)};var eQ={};eQ.f=Object.getOwnPropertySymbols;var eZ=A([].concat),e0=tr("Reflect","ownKeys")||function(t){var e=e_.f(t1(t)),n=eQ.f;return n?eZ(e,n(t)):e},e1=/#|\.prototype\./,e2=function(t,e){var n=e9[e7(t)];return n==e5||n!=e4&&(tt(e)?x(e):!!e)},e7=e2.normalize=function(t){return String(t).replace(e1,".").toLowerCase()},e9=e2.data={},e4=e2.NATIVE="N",e5=e2.POLYFILL="P",e6=_.f,e3=function(t,e,n){for(var r=e0(e),o=tX.f,i=_.f,c=0;c<r.length;c++){var u=r[c];tA(t,u)||n&&tA(n,u)||o(t,u,i(e,u))}},e8=function(t,e){var n,r,o,i,c,u=t.target,a=t.global,f=t.stat;if(n=a?M:f?M[u]||tE(u,{}):(M[u]||{}).prototype)for(r in e){if(i=e[r],o=t.dontCallGetSet?(c=e6(n,r))&&c.value:n[r],!e2(a?r:u+(f?".":"#")+r,t.forced)&&void 0!==o){if(typeof i==typeof o)continue;e3(i,o)}(t.sham||o&&o.sham)&&t3(i,"sham",!0),eM(n,r,i,t)}},nt=t$("toStringTag"),ne={};ne[nt]="z";var nn="[object z]"===String(ne),nr=t$("toStringTag"),no=Object,ni="Arguments"==B(function(){return arguments}()),nc=function(t,e){try{return t[e]}catch(t){}},nu=nn?B:function(t){var e,n,r;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=nc(e=no(t),nr))?n:ni?B(e):"Object"==(r=B(e))&&tt(e.callee)?"Arguments":r},na=String,nf=function(t){if("Symbol"===nu(t))throw TypeError("Cannot convert a Symbol value to a string");return na(t)},ns=function(){var t=t1(this),e="";return t.hasIndices&&(e+="d"),t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.unicodeSets&&(e+="v"),t.sticky&&(e+="y"),e},nl=M.RegExp,np=x(function(){var t=nl("a","y");return t.lastIndex=2,null!=t.exec("abcd")}),nv=np||x(function(){return!nl("a","y").sticky}),nd={BROKEN_CARET:np||x(function(){var t=nl("^r","gy");return t.lastIndex=2,null!=t.exec("str")}),MISSED_STICKY:nv,UNSUPPORTED_Y:np},nh={},ng=Object.keys||function(t){return eq(t,eJ)};nh.f=N&&!tQ?Object.defineProperties:function(t,e){t1(t);for(var n,r=J(e),o=ng(e),i=o.length,c=0;i>c;)tX.f(t,n=o[c++],r[n]);return t};var ny=tr("document","documentElement"),nb=ep,nm="prototype",nx="script",nS=el("IE_PROTO"),nw=function(){},nO=function(t){return"<"+nx+">"+t+"</"+nx+">"},nE=function(t){t.write(nO("")),t.close();var e=t.parentWindow.Object;return t=null,e},nj=function(){var t,e=tY("iframe");return e.style.display="none",ny.appendChild(e),e.src=String("java"+nx+":"),(t=e.contentWindow.document).open(),t.write(nO("document.F=Object")),t.close(),t.F},nT=function(){try{i=new ActiveXObject("htmlfile")}catch(t){}nT="undefined"!=typeof document?document.domain&&i?nE(i):nj():nE(i);for(var t=eJ.length;t--;)delete nT[nm][eJ[t]];return nT()};nb[nS]=!0;var nR=Object.create||function(t,e){var n;return null!==t?(nw[nm]=t1(t),n=new nw,nw[nm]=null,n[nS]=t):n=nT(),void 0===e?n:nh.f(n,e)},nI=M.RegExp,nP=x(function(){var t=nI(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)}),nC=M.RegExp,nA=x(function(){var t=nC("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")}),nL=tS.exports,nM=ex.get,n_=nL("native-string-replace",String.prototype.replace),nN=RegExp.prototype.exec,nD=nN,nk=A("".charAt),nF=A("".indexOf),nU=A("".replace),n$=A("".slice),nG=function(){var t=/a/,e=/b*/g;return R(nN,t,"a"),R(nN,e,"a"),0!==t.lastIndex||0!==e.lastIndex}(),nV=nd.BROKEN_CARET,nB=void 0!==/()??/.exec("")[1];(nG||nB||nV||nP||nA)&&(nD=function(t){var e,n,r,o,i,c,u,a=this,f=nM(a),s=nf(t),l=f.raw;if(l)return l.lastIndex=a.lastIndex,e=R(nD,l,s),a.lastIndex=l.lastIndex,e;var p=f.groups,v=nV&&a.sticky,d=R(ns,a),h=a.source,g=0,y=s;if(v&&(-1===nF(d=nU(d,"y",""),"g")&&(d+="g"),y=n$(s,a.lastIndex),a.lastIndex>0&&(!a.multiline||a.multiline&&"\n"!==nk(s,a.lastIndex-1))&&(h="(?: "+h+")",y=" "+y,g++),n=RegExp("^(?:"+h+")",d)),nB&&(n=RegExp("^"+h+"$(?!\\s)",d)),nG&&(r=a.lastIndex),o=R(nN,v?n:a,y),v?o?(o.input=n$(o.input,g),o[0]=n$(o[0],g),o.index=a.lastIndex,a.lastIndex+=o[0].length):a.lastIndex=0:nG&&o&&(a.lastIndex=a.global?o.index+o[0].length:r),nB&&o&&o.length>1&&R(n_,o[0],n,function(){for(i=1;i<arguments.length-2;i++)void 0===arguments[i]&&(o[i]=void 0)}),o&&p)for(i=0,o.groups=c=nR(null);i<p.length;i++)c[(u=p[i])[0]]=o[u[1]];return o});var nz=nD;e8({target:"RegExp",proto:!0,forced:/./.exec!==nz},{exec:nz});var nH=function(t){if("Function"===B(t))return A(t)},nK=t$("species"),nW=RegExp.prototype,nY=function(t,e,n,r){var o=t$(t),i=!x(function(){var e={};return e[o]=function(){return 7},7!=""[t](e)}),c=i&&!x(function(){var e=!1,n=/a/;return"split"===t&&((n={}).constructor={},n.constructor[nK]=function(){return n},n.flags="",n[o]=/./[o]),n.exec=function(){return e=!0,null},n[o](""),!e});if(!i||!c||n){var u=nH(/./[o]),a=e(o,""[t],function(t,e,n,r,o){var c=nH(t),a=e.exec;return a===nz||a===nW.exec?i&&!o?{done:!0,value:u(e,n,r)}:{done:!0,value:c(n,e,r)}:{done:!1}});eM(String.prototype,t,a[0]),eM(nW,o,a[1])}r&&t3(nW[o],"sham",!0)},nq=A("".charAt),nJ=A("".charCodeAt),nX=A("".slice),nQ=function(t){return function(e,n){var r,o,i=nf(q(e)),c=eF(n),u=i.length;return c<0||c>=u?t?"":void 0:(r=nJ(i,c))<55296||r>56319||c+1===u||(o=nJ(i,c+1))<56320||o>57343?t?nq(i,c):r:t?nX(i,c,c+2):(r-55296<<10)+(o-56320)+65536}},nZ={codeAt:nQ(!1),charAt:nQ(!0)}.charAt,n0=function(t,e,n){return e+(n?nZ(t,e).length:1)},n1=Math.floor,n2=A("".charAt),n7=A("".replace),n9=A("".slice),n4=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,n5=/\$([$&'`]|\d{1,2})/g,n6=TypeError,n3=function(t,e){var n=t.exec;if(tt(n)){var r=R(n,t,e);return null!==r&&t1(r),r}if("RegExp"===B(t))return R(nz,t,e);throw n6("RegExp#exec called on incompatible receiver")},n8=function(t,e,n,r,o,i){var c=n+t.length,u=r.length,a=n5;return void 0!==o&&(o=tP(o),a=n4),n7(i,a,function(i,a){var f;switch(n2(a,0)){case"$":return"$";case"&":return t;case"`":return n9(e,0,n);case"'":return n9(e,c);case"<":f=o[n9(a,1,-1)];break;default:var s=+a;if(0===s)return i;if(s>u){var l=n1(s/10);if(0===l)return i;if(l<=u)return void 0===r[l-1]?n2(a,1):r[l-1]+n2(a,1);return i}f=r[s-1]}return void 0===f?"":f})},rt=t$("replace"),re=Math.max,rn=Math.min,rr=A([].concat),ro=A([].push),ri=A("".indexOf),rc=A("".slice),ru="$0"==="a".replace(/./,"$0"),ra=!!/./[rt]&&""===/./[rt]("a","$0");nY("replace",function(t,e,n){var r=ra?"$":"$0";return[function(t,n){var r=q(this),o=W(t)?void 0:tm(t,rt);return o?R(o,t,r,n):R(e,nf(r),t,n)},function(t,o){var i=t1(this),c=nf(t);if("string"==typeof o&&-1===ri(o,r)&&-1===ri(o,"$<")){var u=n(e,i,c,o);if(u.done)return u.value}var a=tt(o);a||(o=nf(o));var f=i.global;if(f){var s=i.unicode;i.lastIndex=0}for(var l=[];;){var p=n3(i,c);if(null===p||(ro(l,p),!f))break;""===nf(p[0])&&(i.lastIndex=n0(c,eB(i.lastIndex),s))}for(var v="",d=0,h=0;h<l.length;h++){for(var g,y=nf((p=l[h])[0]),b=re(rn(eF(p.index),c.length),0),m=[],x=1;x<p.length;x++)ro(m,void 0===(g=p[x])?g:String(g));var S=p.groups;if(a){var w=rr([y],m,b,c);void 0!==S&&ro(w,S);var O=nf(j(o,void 0,w))}else O=n8(y,c,b,m,S,o);b>=d&&(v+=rc(c,d,b)+O,d=b+y.length)}return v+rc(c,d)}]},!!x(function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")})||!ru||ra);var rf=String,rs=TypeError,rl=function(t,e,n){try{return A(tb(Object.getOwnPropertyDescriptor(t,e)[n]))}catch(t){}},rp=function(t){if("object"==typeof t||tt(t))return t;throw rs("Can't set "+rf(t)+" as a prototype")},rv=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,n={};try{(t=rl(Object.prototype,"__proto__","set"))(n,[]),e=n instanceof Array}catch(t){}return function(n,r){return t1(n),rp(r),e?t(n,r):n.__proto__=r,n}}():void 0),rd=t$("match"),rh=function(t){var e;return tn(t)&&(void 0!==(e=t[rd])?!!e:"RegExp"==B(t))},rg=RegExp.prototype,ry=function(t){var e=t.flags;return void 0===e&&!("flags"in rg)&&!tA(t,"flags")&&to(rg,t)?R(ns,t):e},rb=tX.f,rm=t8.exports,rx=t$("species"),rS=function(t){var e,n=tr(t);N&&n&&!n[rx]&&((e={configurable:!0,get:function(){return this}}).get&&rm(e.get,rx,{getter:!0}),e.set&&rm(e.set,rx,{setter:!0}),tX.f(n,rx,e))},rw=function(t,e,n){var r,o;return rv&&tt(r=e.constructor)&&r!==n&&tn(o=r.prototype)&&o!==n.prototype&&rv(t,o),t},rO=e_.f,rE=function(t,e,n){n in t||rb(t,n,{configurable:!0,get:function(){return e[n]},set:function(t){e[n]=t}})},rj=ex.enforce,rT=t$("match"),rR=M.RegExp,rI=rR.prototype,rP=M.SyntaxError,rC=A(rI.exec),rA=A("".charAt),rL=A("".replace),rM=A("".indexOf),r_=A("".slice),rN=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,rD=/a/g,rk=/a/g,rF=new rR(rD)!==rD,rU=nd.MISSED_STICKY,r$=nd.UNSUPPORTED_Y,rG=N&&(!rF||rU||nP||nA||x(function(){return rk[rT]=!1,rR(rD)!=rD||rR(rk)==rk||"/a/i"!=rR(rD,"i")})),rV=function(t){for(var e,n=t.length,r=0,o="",i=!1;r<=n;r++){if("\\"===(e=rA(t,r))){o+=e+rA(t,++r);continue}i||"."!==e?("["===e?i=!0:"]"===e&&(i=!1),o+=e):o+="[\\s\\S]"}return o},rB=function(t){for(var e,n=t.length,r=0,o="",i=[],c={},u=!1,a=!1,f=0,s="";r<=n;r++){if("\\"===(e=rA(t,r)))e+=rA(t,++r);else if("]"===e)u=!1;else if(!u)switch(!0){case"["===e:u=!0;break;case"("===e:rC(rN,r_(t,r+1))&&(r+=2,a=!0),o+=e,f++;continue;case">"===e&&a:if(""===s||tA(c,s))throw new rP("Invalid capture group name");c[s]=!0,i[i.length]=[s,f],a=!1,s="";continue}a?s+=e:o+=e}return[o,i]};if(e2("RegExp",rG)){for(var rz=function(t,e){var n,r,o,i,c,u,a=to(rI,this),f=rh(t),s=void 0===e,l=[],p=t;if(!a&&f&&s&&t.constructor===rz)return t;if((f||to(rI,t))&&(t=t.source,s&&(e=ry(p))),t=void 0===t?"":nf(t),e=void 0===e?"":nf(e),p=t,nP&&("dotAll"in rD)&&(r=!!e&&rM(e,"s")>-1)&&(e=rL(e,/s/g,"")),n=e,rU&&("sticky"in rD)&&(o=!!e&&rM(e,"y")>-1)&&r$&&(e=rL(e,/y/g,"")),nA&&(t=(i=rB(t))[0],l=i[1]),c=rw(rR(t,e),a?this:rI,rz),(r||o||l.length)&&(u=rj(c),r&&(u.dotAll=!0,u.raw=rz(rV(t),n)),o&&(u.sticky=!0),l.length&&(u.groups=l)),t!==p)try{t3(c,"source",""===p?"(?:)":p)}catch(t){}return c},rH=rO(rR),rK=0;rH.length>rK;)rE(rz,rR,rH[rK++]);rI.constructor=rz,rz.prototype=rI,eM(M,"RegExp",rz,{constructor:!0})}rS("RegExp");var rW=eo.PROPER,rY="toString",rq=RegExp.prototype[rY],rJ=x(function(){return"/a/b"!=rq.call({source:"a",flags:"b"})}),rX=rW&&rq.name!=rY;(rJ||rX)&&eM(RegExp.prototype,rY,function(){var t=t1(this);return"/"+nf(t.source)+"/"+nf(ry(t))},{unsafe:!0});var rQ=Array.isArray||function(t){return"Array"==B(t)},rZ=TypeError,r0=function(t,e,n){var r=tH(e);r in t?tX.f(t,r,$(0,n)):t[r]=n},r1=function(){},r2=[],r7=tr("Reflect","construct"),r9=/^\s*(?:class|function)\b/,r4=A(r9.exec),r5=!r9.exec(r1),r6=function(t){if(!tt(t))return!1;try{return r7(r1,r2,t),!0}catch(t){return!1}},r3=function(t){if(!tt(t))return!1;switch(nu(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return r5||!!r4(r9,eu(t))}catch(t){return!0}};r3.sham=!0;var r8=!r7||x(function(){var t;return r6(r6.call)||!r6(Object)||!r6(function(){t=!0})||t})?r3:r6,ot=t$("species"),oe=Array,on=function(t){var e;return rQ(t)&&(r8(e=t.constructor)&&(e===oe||rQ(e.prototype))?e=void 0:tn(e)&&null===(e=e[ot])&&(e=void 0)),void 0===e?oe:e},or=function(t,e){return new(on(t))(0===e?0:e)},oo=t$("species"),oi=function(t){return ts>=51||!x(function(){var e=[];return(e.constructor={})[oo]=function(){return{foo:1}},1!==e[t](Boolean).foo})},oc=function(t){if(t>9007199254740991)throw rZ("Maximum allowed index exceeded");return t},ou=t$("isConcatSpreadable"),oa=ts>=51||!x(function(){var t=[];return t[ou]=!1,t.concat()[0]!==t}),of=function(t){if(!tn(t))return!1;var e=t[ou];return void 0!==e?!!e:rQ(t)};e8({target:"Array",proto:!0,arity:1,forced:!oa||!oi("concat")},{concat:function(t){var e,n,r,o,i,c=tP(this),u=or(c,0),a=0;for(e=-1,r=arguments.length;e<r;e++)if(i=-1===e?c:arguments[e],of(i))for(oc(a+(o=ez(i))),n=0;n<o;n++,a++)n in i&&r0(u,a,i[n]);else oc(a+1),r0(u,a++,i);return u.length=a,u}});var os=Object.assign,ol=Object.defineProperty,op=A([].concat),ov=!os||x(function(){if(N&&1!==os({b:1},os(ol({},"a",{enumerable:!0,get:function(){ol(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol(),r="abcdefghijklmnopqrst";return t[n]=7,r.split("").forEach(function(t){e[t]=t}),7!=os({},t)[n]||ng(os({},e)).join("")!=r})?function(t,e){for(var n=tP(t),r=arguments.length,o=1,i=eQ.f,c=D.f;r>o;)for(var u,a=K(arguments[o++]),f=i?op(ng(a),i(a)):ng(a),s=f.length,l=0;s>l;)u=f[l++],(!N||R(c,a,u))&&(n[u]=a[u]);return n}:os;e8({target:"Object",stat:!0,arity:2,forced:Object.assign!==ov},{assign:ov});var od=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e};nY("search",function(t,e,n){return[function(e){var n=q(this),r=W(e)?void 0:tm(e,t);return r?R(r,e,n):RegExp(e)[t](nf(n))},function(t){var r=t1(this),o=nf(t),i=n(e,r,o);if(i.done)return i.value;var c=r.lastIndex;od(c,0)||(r.lastIndex=0);var u=n3(r,o);return od(r.lastIndex,c)||(r.lastIndex=c),null===u?-1:u.index}]});var oh=TypeError,og=function(t){if(r8(t))return t;throw oh(tg(t)+" is not a constructor")},oy=t$("species"),ob=function(t,e){var n,r=t1(t).constructor;return void 0===r||W(n=t1(r)[oy])?e:og(n)},om=Array,ox=Math.max,oS=function(t,e,n){for(var r=ez(t),o=eG(e,r),i=eG(void 0===n?r:n,r),c=om(ox(i-o,0)),u=0;o<i;o++,u++)r0(c,u,t[o]);return c.length=u,c},ow=nd.UNSUPPORTED_Y,oO=Math.min,oE=[].push,oj=A(/./.exec),oT=A(oE),oR=A("".slice);nY("split",function(t,e,n){var r;return r="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,n){var r,o,i,c=nf(q(this)),u=void 0===n?4294967295:n>>>0;if(0===u)return[];if(void 0===t)return[c];if(!rh(t))return R(e,c,t,u);for(var a=[],f=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),s=0,l=RegExp(t.source,f+"g");(r=R(nz,l,c))&&(!((o=l.lastIndex)>s)||(oT(a,oR(c,s,r.index)),r.length>1&&r.index<c.length&&j(oE,a,oS(r,1)),i=r[0].length,s=o,!(a.length>=u)));)l.lastIndex===r.index&&l.lastIndex++;return s===c.length?(i||!oj(l,""))&&oT(a,""):oT(a,oR(c,s)),a.length>u?oS(a,0,u):a}:"0".split(void 0,0).length?function(t,n){return void 0===t&&0===n?[]:R(e,this,t,n)}:e,[function(e,n){var o=q(this),i=W(e)?void 0:tm(e,t);return i?R(i,e,o,n):R(r,nf(o),e,n)},function(t,o){var i=t1(this),c=nf(t),u=n(r,i,c,o,r!==e);if(u.done)return u.value;var a=ob(i,RegExp),f=i.unicode,s=(i.ignoreCase?"i":"")+(i.multiline?"m":"")+(i.unicode?"u":"")+(ow?"g":"y"),l=new a(ow?"^(?:"+i.source+")":i,s),p=void 0===o?4294967295:o>>>0;if(0===p)return[];if(0===c.length)return null===n3(l,c)?[c]:[];for(var v=0,d=0,h=[];d<c.length;){l.lastIndex=ow?0:d;var g,y=n3(l,ow?oR(c,d):c);if(null===y||(g=oO(eB(l.lastIndex+(ow?d:0)),c.length))===v)d=n0(c,d,f);else{if(oT(h,oR(c,v,d)),h.length===p)return h;for(var b=1;b<=y.length-1;b++)if(oT(h,y[b]),h.length===p)return h;d=v=g}}return oT(h,oR(c,v)),h}]},!!x(function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n="ab".split(t);return 2!==n.length||"a"!==n[0]||"b"!==n[1]}),ow);var oI=nH(nH.bind),oP=function(t,e){return tb(t),void 0===e?t:S?oI(t,e):function(){return t.apply(e,arguments)}},oC=A([].push),oA=function(t){var e=1==t,n=2==t,r=3==t,o=4==t,i=6==t,c=7==t,u=5==t||i;return function(a,f,s,l){for(var p,v,d=tP(a),h=K(d),g=oP(f,s),y=ez(h),b=0,m=l||or,x=e?m(a,y):n||c?m(a,0):void 0;y>b;b++)if((u||b in h)&&(v=g(p=h[b],b,d),t)){if(e)x[b]=v;else if(v)switch(t){case 3:return!0;case 5:return p;case 6:return b;case 2:oC(x,p)}else switch(t){case 4:return!1;case 7:oC(x,p)}}return i?-1:r||o?o:x}},oL={forEach:oA(0),map:oA(1),filter:oA(2),some:oA(3),every:oA(4),find:oA(5),findIndex:oA(6),filterReject:oA(7)},oM=oL.map;e8({target:"Array",proto:!0,forced:!oi("map")},{map:function(t){return oM(this,t,arguments.length>1?arguments[1]:void 0)}});var o_=tY("span").classList,oN=o_&&o_.constructor&&o_.constructor.prototype,oD=oN===Object.prototype?void 0:oN,ok=function(t,e){var n=[][t];return!!n&&x(function(){n.call(null,e||function(){return 1},1)})},oF=oL.forEach,oU=ok("forEach")?[].forEach:function(t){return oF(this,t,arguments.length>1?arguments[1]:void 0)},o$={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},oG=function(t){if(t&&t.forEach!==oU)try{t3(t,"forEach",oU)}catch(e){t.forEach=oU}};for(var oV in o$)o$[oV]&&oG(M[oV]&&M[oV].prototype);oG(oD),nn||eM(Object.prototype,"toString",nn?({}).toString:function(){return"[object "+nu(this)+"]"},{unsafe:!0});var oB=eK.indexOf,oz=nH([].indexOf),oH=!!oz&&1/oz([1],1,-0)<0;e8({target:"Array",proto:!0,forced:oH||!ok("indexOf")},{indexOf:function(t){var e=arguments.length>1?arguments[1]:void 0;return oH?oz(this,t,e)||0:oB(this,t,e)}});var oK="undefined"!=typeof process&&"process"==B(process),oW=tX.f,oY=t$("toStringTag"),oq=TypeError,oJ=A([].slice),oX=TypeError,oQ=/(?:ipad|iphone|ipod).*applewebkit/i.test(ti),oZ=ny,o0=function(t,e){if(t<e)throw oX("Not enough arguments");return t},o1=M.setImmediate,o2=M.clearImmediate,o7=M.process,o9=M.Dispatch,o4=M.Function,o5=M.MessageChannel,o6=M.String,o3=0,o8={},it="onreadystatechange";x(function(){c=M.location});var ie=function(t){if(tA(o8,t)){var e=o8[t];delete o8[t],e()}},ir=function(t){return function(){ie(t)}},io=function(t){ie(t.data)},ii=function(t){M.postMessage(o6(t),c.protocol+"//"+c.host)};o1&&o2||(o1=function(t){o0(arguments.length,1);var e=tt(t)?t:o4(t),n=oJ(arguments,1);return o8[++o3]=function(){j(e,void 0,n)},u(o3),o3},o2=function(t){delete o8[t]},oK?u=function(t){o7.nextTick(ir(t))}:o9&&o9.now?u=function(t){o9.now(ir(t))}:o5&&!oQ?(f=(a=new o5).port2,a.port1.onmessage=io,u=oP(f.postMessage,f)):M.addEventListener&&tt(M.postMessage)&&!M.importScripts&&c&&"file:"!==c.protocol&&!x(ii)?(u=ii,M.addEventListener("message",io,!1)):u=it in tY("script")?function(t){oZ.appendChild(tY("script"))[it]=function(){oZ.removeChild(this),ie(t)}}:function(t){setTimeout(ir(t),0)});var ic={set:o1,clear:o2},iu=function(){this.head=null,this.tail=null};iu.prototype={add:function(t){var e={item:t,next:null},n=this.tail;n?n.next=e:this.head=e,this.tail=e},get:function(){var t=this.head;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}};var ia=/ipad|iphone|ipod/i.test(ti)&&"undefined"!=typeof Pebble,is=/web0s(?!.*chrome)/i.test(ti),il=_.f,ip=ic.set,iv=M.MutationObserver||M.WebKitMutationObserver,id=M.document,ih=M.process,ig=M.Promise,iy=il(M,"queueMicrotask"),ib=iy&&iy.value;if(!ib){var im=new iu,ix=function(){var t,e;for(oK&&(t=ih.domain)&&t.exit();e=im.get();)try{e()}catch(t){throw im.head&&s(),t}t&&t.enter()};oQ||oK||is||!iv||!id?!ia&&ig&&ig.resolve?((v=ig.resolve(void 0)).constructor=ig,d=oP(v.then,v),s=function(){d(ix)}):oK?s=function(){ih.nextTick(ix)}:(ip=oP(ip,M),s=function(){ip(ix)}):(l=!0,p=id.createTextNode(""),new iv(ix).observe(p,{characterData:!0}),s=function(){p.data=l=!l}),ib=function(t){im.head||s(),im.add(t)}}var iS=ib,iw=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}},iO=M.Promise,iE="object"==typeof Deno&&Deno&&"object"==typeof Deno.version,ij=!iE&&!oK&&"object"==typeof window&&"object"==typeof document;iO&&iO.prototype;var iT=t$("species"),iR=!1,iI=tt(M.PromiseRejectionEvent),iP={CONSTRUCTOR:e2("Promise",function(){var t=eu(iO),e=t!==String(iO);if(!e&&66===ts)return!0;if(!ts||ts<51||!/native code/.test(t)){var n=new iO(function(t){t(1)}),r=function(t){t(function(){},function(){})};if((n.constructor={})[iT]=r,!(iR=n.then(function(){}) instanceof r))return!0}return!e&&(ij||iE)&&!iI}),REJECTION_EVENT:iI,SUBCLASSING:iR},iC={},iA=TypeError,iL=function(t){var e,n;this.promise=new t(function(t,r){if(void 0!==e||void 0!==n)throw iA("Bad Promise constructor");e=t,n=r}),this.resolve=tb(e),this.reject=tb(n)};iC.f=function(t){return new iL(t)};var iM=function(t,e){if(to(e,t))return t;throw oq("Incorrect invocation")},i_=ic.set,iN=function(t,e){try{1==arguments.length?console.error(t):console.error(t,e)}catch(t){}},iD=iC,ik="Promise",iF=iP.CONSTRUCTOR,iU=iP.REJECTION_EVENT,i$=iP.SUBCLASSING,iG=ex.getterFor(ik),iV=ex.set,iB=iO&&iO.prototype,iz=iO,iH=iB,iK=M.TypeError,iW=M.document,iY=M.process,iq=iD.f,iJ=iq,iX=!!(iW&&iW.createEvent&&M.dispatchEvent),iQ="unhandledrejection",iZ=function(t){var e;return!!(tn(t)&&tt(e=t.then))&&e},i0=function(t,e){var n,r,o,i=e.value,c=1==e.state,u=c?t.ok:t.fail,a=t.resolve,f=t.reject,s=t.domain;try{u?(c||(2===e.rejection&&i4(e),e.rejection=1),!0===u?n=i:(s&&s.enter(),n=u(i),s&&(s.exit(),o=!0)),n===t.promise?f(iK("Promise-chain cycle")):(r=iZ(n))?R(r,n,a,f):a(n)):f(i)}catch(t){s&&!o&&s.exit(),f(t)}},i1=function(t,e){t.notified||(t.notified=!0,iS(function(){for(var n,r=t.reactions;n=r.get();)i0(n,t);t.notified=!1,e&&!t.rejection&&i7(t)}))},i2=function(t,e,n){var r,o;iX?((r=iW.createEvent("Event")).promise=e,r.reason=n,r.initEvent(t,!1,!0),M.dispatchEvent(r)):r={promise:e,reason:n},!iU&&(o=M["on"+t])?o(r):t===iQ&&iN("Unhandled promise rejection",n)},i7=function(t){R(i_,M,function(){var e,n=t.facade,r=t.value;if(i9(t)&&(e=iw(function(){oK?iY.emit("unhandledRejection",r,n):i2(iQ,n,r)}),t.rejection=oK||i9(t)?2:1,e.error))throw e.value})},i9=function(t){return 1!==t.rejection&&!t.parent},i4=function(t){R(i_,M,function(){var e=t.facade;oK?iY.emit("rejectionHandled",e):i2("rejectionhandled",e,t.value)})},i5=function(t,e,n){return function(r){t(e,r,n)}},i6=function(t,e,n){t.done||(t.done=!0,n&&(t=n),t.value=e,t.state=2,i1(t,!0))},i3=function(t,e,n){if(!t.done){t.done=!0,n&&(t=n);try{if(t.facade===e)throw iK("Promise can't be resolved itself");var r=iZ(e);r?iS(function(){var n={done:!1};try{R(r,e,i5(i3,n,t),i5(i6,n,t))}catch(e){i6(n,e,t)}}):(t.value=e,t.state=1,i1(t,!1))}catch(e){i6({done:!1},e,t)}}};if(iF&&(iH=(iz=function(t){iM(this,iH),tb(t),R(h,this);var e=iG(this);try{t(i5(i3,e),i5(i6,e))}catch(t){i6(e,t)}}).prototype,(h=function(t){iV(this,{type:ik,done:!1,notified:!1,parent:!1,reactions:new iu,rejection:!1,state:0,value:void 0})}).prototype=eM(iH,"then",function(t,e){var n=iG(this),r=iq(ob(this,iz));return n.parent=!0,r.ok=!tt(t)||t,r.fail=tt(e)&&e,r.domain=oK?iY.domain:void 0,0==n.state?n.reactions.add(r):iS(function(){i0(r,n)}),r.promise}),g=function(){var t=new h,e=iG(t);this.promise=t,this.resolve=i5(i3,e),this.reject=i5(i6,e)},iD.f=iq=function(t){return t===iz||t===y?new g(t):iJ(t)},tt(iO)&&iB!==Object.prototype)){b=iB.then,i$||eM(iB,"then",function(t,e){var n=this;return new iz(function(t,e){R(b,n,t,e)}).then(t,e)},{unsafe:!0});try{delete iB.constructor}catch(t){}rv&&rv(iB,iH)}e8({global:!0,constructor:!0,wrap:!0,forced:iF},{Promise:iz}),function(t,e,n){t&&!n&&(t=t.prototype),t&&!tA(t,oY)&&oW(t,oY,{configurable:!0,value:e})}(iz,ik,!1),rS(ik);var i8={},ct=t$("iterator"),ce=Array.prototype,cn=t$("iterator"),cr=function(t){if(!W(t))return tm(t,cn)||tm(t,"@@iterator")||i8[nu(t)]},co=TypeError,ci=function(t,e){var n=arguments.length<2?cr(t):e;if(tb(n))return t1(R(n,t));throw co(tg(t)+" is not iterable")},cc=function(t,e,n){var r,o;t1(t);try{if(!(r=tm(t,"return"))){if("throw"===e)throw n;return n}r=R(r,t)}catch(t){o=!0,r=t}if("throw"===e)throw n;if(o)throw r;return t1(r),n},cu=TypeError,ca=function(t,e){this.stopped=t,this.result=e},cf=ca.prototype,cs=function(t,e,n){var r,o,i,c,u,a,f,s=n&&n.that,l=!!(n&&n.AS_ENTRIES),p=!!(n&&n.IS_RECORD),v=!!(n&&n.IS_ITERATOR),d=!!(n&&n.INTERRUPTED),h=oP(e,s),g=function(t){return r&&cc(r,"normal",t),new ca(!0,t)},y=function(t){return l?(t1(t),d?h(t[0],t[1],g):h(t[0],t[1])):d?h(t,g):h(t)};if(p)r=t.iterator;else if(v)r=t;else{if(!(o=cr(t)))throw cu(tg(t)+" is not iterable");if(void 0!==o&&(i8.Array===o||ce[ct]===o)){for(i=0,c=ez(t);c>i;i++)if((u=y(t[i]))&&to(cf,u))return u;return new ca(!1)}r=ci(t,o)}for(a=p?t.next:r.next;!(f=R(a,r)).done;){try{u=y(f.value)}catch(t){cc(r,"throw",t)}if("object"==typeof u&&u&&to(cf,u))return u}return new ca(!1)},cl=t$("iterator"),cp=!1;try{var cv=0,cd={next:function(){return{done:!!cv++}},return:function(){cp=!0}};cd[cl]=function(){return this},Array.from(cd,function(){throw 2})}catch(t){}var ch=iP.CONSTRUCTOR||!function(t,e){if(!cp)return!1;var n=!1;try{var r={};r[cl]=function(){return{next:function(){return{done:n=!0}}}},t(r)}catch(t){}return n}(function(t){iO.all(t).then(void 0,function(){})});e8({target:"Promise",stat:!0,forced:ch},{all:function(t){var e=this,n=iC.f(e),r=n.resolve,o=n.reject,i=iw(function(){var n=tb(e.resolve),i=[],c=0,u=1;cs(t,function(t){var a=c++,f=!1;u++,R(n,e,t).then(function(t){!f&&(f=!0,i[a]=t,--u||r(i))},o)}),--u||r(i)});return i.error&&o(i.value),n.promise}});var cg=iP.CONSTRUCTOR,cy=iO&&iO.prototype;if(e8({target:"Promise",proto:!0,forced:cg,real:!0},{catch:function(t){return this.then(void 0,t)}}),tt(iO)){var cb=tr("Promise").prototype.catch;cy.catch!==cb&&eM(cy,"catch",cb,{unsafe:!0})}e8({target:"Promise",stat:!0,forced:ch},{race:function(t){var e=this,n=iC.f(e),r=n.reject,o=iw(function(){var o=tb(e.resolve);cs(t,function(t){R(o,e,t).then(n.resolve,r)})});return o.error&&r(o.value),n.promise}}),e8({target:"Promise",stat:!0,forced:iP.CONSTRUCTOR},{reject:function(t){var e=iC.f(this);return R(e.reject,void 0,t),e.promise}});var cm=iP.CONSTRUCTOR,cx=function(t,e){if(t1(t),tn(e)&&e.constructor===t)return e;var n=iC.f(t);return(0,n.resolve)(e),n.promise};tr("Promise"),e8({target:"Promise",stat:!0,forced:cm},{resolve:function(t){return cx(this,t)}});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
var t,e,n,r,o,i,c,u,a,f,s,l,p,v,d,h,g,y,b,m="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},x=function(t){try{return!!t()}catch(t){return!0}},S=!x(function(){var t=(function(){}).bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}),w=Function.prototype,O=w.apply,E=w.call,j="object"==typeof Reflect&&Reflect.apply||(S?E.bind(O):function(){return E.apply(O,arguments)}),T=Function.prototype.call,R=S?T.bind(T):function(){return T.apply(T,arguments)},I=Function.prototype,P=I.call,C=S&&I.bind.bind(P,P),A=S?C:function(t){return function(){return P.apply(t,arguments)}},L=function(t){return t&&t.Math==Math&&t},M=L("object"==typeof globalThis&&globalThis)||L("object"==typeof window&&window)||L("object"==typeof self&&self)||L("object"==typeof m&&m)||function(){return this}()||Function("return this")(),_={},N=!x(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}),D={},k={}.propertyIsEnumerable,F=Object.getOwnPropertyDescriptor,U=F&&!k.call({1:2},1);D.f=U?function(t){var e=F(this,t);return!!e&&e.enumerable}:k;var $=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},G=A({}.toString),V=A("".slice),B=function(t){return V(G(t),8,-1)},z=Object,H=A("".split),K=x(function(){return!z("z").propertyIsEnumerable(0)})?function(t){return"String"==B(t)?H(t,""):z(t)}:z,W=function(t){return null==t},Y=TypeError,q=function(t){if(W(t))throw Y("Can't call method on "+t);return t},J=function(t){return K(q(t))},X="object"==typeof document&&document.all,Q={all:X,IS_HTMLDDA:void 0===X&&void 0!==X},Z=Q.all,tt=Q.IS_HTMLDDA?function(t){return"function"==typeof t||t===Z}:function(t){return"function"==typeof t},te=Q.all,tn=Q.IS_HTMLDDA?function(t){return"object"==typeof t?null!==t:tt(t)||t===te}:function(t){return"object"==typeof t?null!==t:tt(t)},tr=function(t,e){var n;return arguments.length<2?tt(n=M[t])?n:void 0:M[t]&&M[t][e]},to=A({}.isPrototypeOf),ti="undefined"!=typeof navigator&&String(navigator.userAgent)||"",tc=M.process,tu=M.Deno,ta=tc&&tc.versions||tu&&tu.version,tf=ta&&ta.v8;tf&&(e=(t=tf.split("."))[0]>0&&t[0]<4?1:+(t[0]+t[1])),!e&&ti&&(!(t=ti.match(/Edge\/(\d+)/))||t[1]>=74)&&(t=ti.match(/Chrome\/(\d+)/))&&(e=+t[1]);var ts=e,tl=!!Object.getOwnPropertySymbols&&!x(function(){var t=Symbol();return!String(t)||!(Object(t) instanceof Symbol)||!Symbol.sham&&ts&&ts<41}),tp=tl&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,tv=Object,td=tp?function(t){return"symbol"==typeof t}:function(t){var e=tr("Symbol");return tt(e)&&to(e.prototype,tv(t))},th=String,tg=function(t){try{return th(t)}catch(t){return"Object"}},ty=TypeError,tb=function(t){if(tt(t))return t;throw ty(tg(t)+" is not a function")},tm=function(t,e){var n=t[e];return W(n)?void 0:tb(n)},tx=TypeError,tS={exports:{}},tw=M,tO=Object.defineProperty,tE=function(t,e){try{tO(tw,t,{value:e,configurable:!0,writable:!0})}catch(n){tw[t]=e}return e},tj="__core-js_shared__",tT=M[tj]||tE(tj,{}),tR=tT;(tS.exports=function(t,e){return tR[t]||(tR[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.29.1",mode:"global",copyright:"\xa9 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.29.1/LICENSE",source:"https://github.com/zloirock/core-js"});var tI=Object,tP=function(t){return tI(q(t))},tC=A({}.hasOwnProperty),tA=Object.hasOwn||function(t,e){return tC(tP(t),e)},tL=0,tM=Math.random(),t_=A(1..toString),tN=function(t){return"Symbol("+(void 0===t?"":t)+")_"+t_(++tL+tM,36)},tD=tS.exports,tk=M.Symbol,tF=tD("wks"),tU=tp?tk.for||tk:tk&&tk.withoutSetter||tN,t$=function(t){return tA(tF,t)||(tF[t]=tl&&tA(tk,t)?tk[t]:tU("Symbol."+t)),tF[t]},tG=function(t,e){var n,r;if("string"===e&&tt(n=t.toString)&&!tn(r=R(n,t))||tt(n=t.valueOf)&&!tn(r=R(n,t))||"string"!==e&&tt(n=t.toString)&&!tn(r=R(n,t)))return r;throw tx("Can't convert object to primitive value")},tV=TypeError,tB=t$("toPrimitive"),tz=function(t,e){if(!tn(t)||td(t))return t;var n,r=tm(t,tB);if(r){if(void 0===e&&(e="default"),!tn(n=R(r,t,e))||td(n))return n;throw tV("Can't convert object to primitive value")}return void 0===e&&(e="number"),tG(t,e)},tH=function(t){var e=tz(t,"string");return td(e)?e:e+""},tK=M.document,tW=tn(tK)&&tn(tK.createElement),tY=function(t){return tW?tK.createElement(t):{}},tq=!N&&!x(function(){return 7!=Object.defineProperty(tY("div"),"a",{get:function(){return 7}}).a}),tJ=Object.getOwnPropertyDescriptor;_.f=N?tJ:function(t,e){if(t=J(t),e=tH(e),tq)try{return tJ(t,e)}catch(t){}if(tA(t,e))return $(!R(D.f,t,e),t[e])};var tX={},tQ=N&&x(function(){return 42!=Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype}),tZ=String,t0=TypeError,t1=function(t){if(tn(t))return t;throw t0(tZ(t)+" is not an object")},t2=TypeError,t7=Object.defineProperty,t9=Object.getOwnPropertyDescriptor,t4="enumerable",t5="configurable",t6="writable";tX.f=N?tQ?function(t,e,n){if(t1(t),e=tH(e),t1(n),"function"==typeof t&&"prototype"===e&&"value"in n&&t6 in n&&!n[t6]){var r=t9(t,e);r&&r[t6]&&(t[e]=n.value,n={configurable:t5 in n?n[t5]:r[t5],enumerable:t4 in n?n[t4]:r[t4],writable:!1})}return t7(t,e,n)}:t7:function(t,e,n){if(t1(t),e=tH(e),t1(n),tq)try{return t7(t,e,n)}catch(t){}if("get"in n||"set"in n)throw t2("Accessors not supported");return"value"in n&&(t[e]=n.value),t};var t3=N?function(t,e,n){return tX.f(t,e,$(1,n))}:function(t,e,n){return t[e]=n,t},t8={exports:{}},et=Function.prototype,ee=N&&Object.getOwnPropertyDescriptor,en=tA(et,"name"),er=en&&(!N||N&&ee(et,"name").configurable),eo={EXISTS:en,PROPER:en&&"something"===(function(){}).name,CONFIGURABLE:er},ei=tT,ec=A(Function.toString);tt(ei.inspectSource)||(ei.inspectSource=function(t){return ec(t)});var eu=ei.inspectSource,ea=M.WeakMap,ef=tt(ea)&&/native code/.test(String(ea)),es=(0,tS.exports)("keys"),el=function(t){return es[t]||(es[t]=tN(t))},ep={},ev=tT,ed=ep,eh="Object already initialized",eg=M.TypeError,ey=M.WeakMap;if(ef||ev.state){var eb=ev.state||(ev.state=new ey);eb.get=eb.get,eb.has=eb.has,eb.set=eb.set,n=function(t,e){if(eb.has(t))throw eg(eh);return e.facade=t,eb.set(t,e),e},r=function(t){return eb.get(t)||{}},o=function(t){return eb.has(t)}}else{var em=el("state");ed[em]=!0,n=function(t,e){if(tA(t,em))throw eg(eh);return e.facade=t,t3(t,em,e),e},r=function(t){return tA(t,em)?t[em]:{}},o=function(t){return tA(t,em)}}var ex={set:n,get:r,has:o,enforce:function(t){return o(t)?r(t):n(t,{})},getterFor:function(t){return function(e){var n;if(!tn(e)||(n=r(e)).type!==t)throw eg("Incompatible receiver, "+t+" required");return n}}},eS=eo.CONFIGURABLE,ew=ex.enforce,eO=ex.get,eE=String,ej=Object.defineProperty,eT=A("".slice),eR=A("".replace),eI=A([].join),eP=N&&!x(function(){return 8!==ej(function(){},"length",{value:8}).length}),eC=String(String).split("String"),eA=t8.exports=function(t,e,n){"Symbol("===eT(eE(e),0,7)&&(e="["+eR(eE(e),/^Symbol\(([^)]*)\)/,"$1")+"]"),n&&n.getter&&(e="get "+e),n&&n.setter&&(e="set "+e),(!tA(t,"name")||eS&&t.name!==e)&&(N?ej(t,"name",{value:e,configurable:!0}):t.name=e),eP&&n&&tA(n,"arity")&&t.length!==n.arity&&ej(t,"length",{value:n.arity});try{n&&tA(n,"constructor")&&n.constructor?N&&ej(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var r=ew(t);return tA(r,"source")||(r.source=eI(eC,"string"==typeof e?e:"")),t};Function.prototype.toString=eA(function(){return tt(this)&&eO(this).source||eu(this)},"toString");var eL=t8.exports,eM=function(t,e,n,r){r||(r={});var o=r.enumerable,i=void 0!==r.name?r.name:e;if(tt(n)&&eL(n,i,r),r.global)o?t[e]=n:tE(e,n);else{try{r.unsafe?t[e]&&(o=!0):delete t[e]}catch(t){}o?t[e]=n:tX.f(t,e,{value:n,enumerable:!1,configurable:!r.nonConfigurable,writable:!r.nonWritable})}return t},e_={},eN=Math.ceil,eD=Math.floor,ek=Math.trunc||function(t){var e=+t;return(e>0?eD:eN)(e)},eF=function(t){var e=+t;return e!=e||0===e?0:ek(e)},eU=Math.max,e$=Math.min,eG=function(t,e){var n=eF(t);return n<0?eU(n+e,0):e$(n,e)},eV=Math.min,eB=function(t){return t>0?eV(eF(t),9007199254740991):0},ez=function(t){return eB(t.length)},eH=function(t){return function(e,n,r){var o,i=J(e),c=ez(i),u=eG(r,c);if(t&&n!=n){for(;c>u;)if((o=i[u++])!=o)return!0}else for(;c>u;u++)if((t||u in i)&&i[u]===n)return t||u||0;return!t&&-1}},eK={includes:eH(!0),indexOf:eH(!1)},eW=eK.indexOf,eY=A([].push),eq=function(t,e){var n,r=J(t),o=0,i=[];for(n in r)!tA(ep,n)&&tA(r,n)&&eY(i,n);for(;e.length>o;)tA(r,n=e[o++])&&(~eW(i,n)||eY(i,n));return i},eJ=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],eX=eJ.concat("length","prototype");e_.f=Object.getOwnPropertyNames||function(t){return eq(t,eX)};var eQ={};eQ.f=Object.getOwnPropertySymbols;var eZ=A([].concat),e0=tr("Reflect","ownKeys")||function(t){var e=e_.f(t1(t)),n=eQ.f;return n?eZ(e,n(t)):e},e1=/#|\.prototype\./,e2=function(t,e){var n=e9[e7(t)];return n==e5||n!=e4&&(tt(e)?x(e):!!e)},e7=e2.normalize=function(t){return String(t).replace(e1,".").toLowerCase()},e9=e2.data={},e4=e2.NATIVE="N",e5=e2.POLYFILL="P",e6=_.f,e3=function(t,e,n){for(var r=e0(e),o=tX.f,i=_.f,c=0;c<r.length;c++){var u=r[c];tA(t,u)||n&&tA(n,u)||o(t,u,i(e,u))}},e8=function(t,e){var n,r,o,i,c,u=t.target,a=t.global,f=t.stat;if(n=a?M:f?M[u]||tE(u,{}):(M[u]||{}).prototype)for(r in e){if(i=e[r],o=t.dontCallGetSet?(c=e6(n,r))&&c.value:n[r],!e2(a?r:u+(f?".":"#")+r,t.forced)&&void 0!==o){if(typeof i==typeof o)continue;e3(i,o)}(t.sham||o&&o.sham)&&t3(i,"sham",!0),eM(n,r,i,t)}},nt=t$("toStringTag"),ne={};ne[nt]="z";var nn="[object z]"===String(ne),nr=t$("toStringTag"),no=Object,ni="Arguments"==B(function(){return arguments}()),nc=function(t,e){try{return t[e]}catch(t){}},nu=nn?B:function(t){var e,n,r;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=nc(e=no(t),nr))?n:ni?B(e):"Object"==(r=B(e))&&tt(e.callee)?"Arguments":r},na=String,nf=function(t){if("Symbol"===nu(t))throw TypeError("Cannot convert a Symbol value to a string");return na(t)},ns=function(){var t=t1(this),e="";return t.hasIndices&&(e+="d"),t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.unicodeSets&&(e+="v"),t.sticky&&(e+="y"),e},nl=M.RegExp,np=x(function(){var t=nl("a","y");return t.lastIndex=2,null!=t.exec("abcd")}),nv=np||x(function(){return!nl("a","y").sticky}),nd={BROKEN_CARET:np||x(function(){var t=nl("^r","gy");return t.lastIndex=2,null!=t.exec("str")}),MISSED_STICKY:nv,UNSUPPORTED_Y:np},nh={},ng=Object.keys||function(t){return eq(t,eJ)};nh.f=N&&!tQ?Object.defineProperties:function(t,e){t1(t);for(var n,r=J(e),o=ng(e),i=o.length,c=0;i>c;)tX.f(t,n=o[c++],r[n]);return t};var ny=tr("document","documentElement"),nb=ep,nm="prototype",nx="script",nS=el("IE_PROTO"),nw=function(){},nO=function(t){return"<"+nx+">"+t+"</"+nx+">"},nE=function(t){t.write(nO("")),t.close();var e=t.parentWindow.Object;return t=null,e},nj=function(){var t,e=tY("iframe");return e.style.display="none",ny.appendChild(e),e.src=String("java"+nx+":"),(t=e.contentWindow.document).open(),t.write(nO("document.F=Object")),t.close(),t.F},nT=function(){try{i=new ActiveXObject("htmlfile")}catch(t){}nT="undefined"!=typeof document?document.domain&&i?nE(i):nj():nE(i);for(var t=eJ.length;t--;)delete nT[nm][eJ[t]];return nT()};nb[nS]=!0;var nR=Object.create||function(t,e){var n;return null!==t?(nw[nm]=t1(t),n=new nw,nw[nm]=null,n[nS]=t):n=nT(),void 0===e?n:nh.f(n,e)},nI=M.RegExp,nP=x(function(){var t=nI(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)}),nC=M.RegExp,nA=x(function(){var t=nC("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")}),nL=tS.exports,nM=ex.get,n_=nL("native-string-replace",String.prototype.replace),nN=RegExp.prototype.exec,nD=nN,nk=A("".charAt),nF=A("".indexOf),nU=A("".replace),n$=A("".slice),nG=function(){var t=/a/,e=/b*/g;return R(nN,t,"a"),R(nN,e,"a"),0!==t.lastIndex||0!==e.lastIndex}(),nV=nd.BROKEN_CARET,nB=void 0!==/()??/.exec("")[1];(nG||nB||nV||nP||nA)&&(nD=function(t){var e,n,r,o,i,c,u,a=this,f=nM(a),s=nf(t),l=f.raw;if(l)return l.lastIndex=a.lastIndex,e=R(nD,l,s),a.lastIndex=l.lastIndex,e;var p=f.groups,v=nV&&a.sticky,d=R(ns,a),h=a.source,g=0,y=s;if(v&&(-1===nF(d=nU(d,"y",""),"g")&&(d+="g"),y=n$(s,a.lastIndex),a.lastIndex>0&&(!a.multiline||a.multiline&&"\n"!==nk(s,a.lastIndex-1))&&(h="(?: "+h+")",y=" "+y,g++),n=RegExp("^(?:"+h+")",d)),nB&&(n=RegExp("^"+h+"$(?!\\s)",d)),nG&&(r=a.lastIndex),o=R(nN,v?n:a,y),v?o?(o.input=n$(o.input,g),o[0]=n$(o[0],g),o.index=a.lastIndex,a.lastIndex+=o[0].length):a.lastIndex=0:nG&&o&&(a.lastIndex=a.global?o.index+o[0].length:r),nB&&o&&o.length>1&&R(n_,o[0],n,function(){for(i=1;i<arguments.length-2;i++)void 0===arguments[i]&&(o[i]=void 0)}),o&&p)for(i=0,o.groups=c=nR(null);i<p.length;i++)c[(u=p[i])[0]]=o[u[1]];return o});var nz=nD;e8({target:"RegExp",proto:!0,forced:/./.exec!==nz},{exec:nz});var nH=function(t){if("Function"===B(t))return A(t)},nK=t$("species"),nW=RegExp.prototype,nY=function(t,e,n,r){var o=t$(t),i=!x(function(){var e={};return e[o]=function(){return 7},7!=""[t](e)}),c=i&&!x(function(){var e=!1,n=/a/;return"split"===t&&((n={}).constructor={},n.constructor[nK]=function(){return n},n.flags="",n[o]=/./[o]),n.exec=function(){return e=!0,null},n[o](""),!e});if(!i||!c||n){var u=nH(/./[o]),a=e(o,""[t],function(t,e,n,r,o){var c=nH(t),a=e.exec;return a===nz||a===nW.exec?i&&!o?{done:!0,value:u(e,n,r)}:{done:!0,value:c(n,e,r)}:{done:!1}});eM(String.prototype,t,a[0]),eM(nW,o,a[1])}r&&t3(nW[o],"sham",!0)},nq=A("".charAt),nJ=A("".charCodeAt),nX=A("".slice),nQ=function(t){return function(e,n){var r,o,i=nf(q(e)),c=eF(n),u=i.length;return c<0||c>=u?t?"":void 0:(r=nJ(i,c))<55296||r>56319||c+1===u||(o=nJ(i,c+1))<56320||o>57343?t?nq(i,c):r:t?nX(i,c,c+2):(r-55296<<10)+(o-56320)+65536}},nZ={codeAt:nQ(!1),charAt:nQ(!0)}.charAt,n0=function(t,e,n){return e+(n?nZ(t,e).length:1)},n1=Math.floor,n2=A("".charAt),n7=A("".replace),n9=A("".slice),n4=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,n5=/\$([$&'`]|\d{1,2})/g,n6=TypeError,n3=function(t,e){var n=t.exec;if(tt(n)){var r=R(n,t,e);return null!==r&&t1(r),r}if("RegExp"===B(t))return R(nz,t,e);throw n6("RegExp#exec called on incompatible receiver")},n8=function(t,e,n,r,o,i){var c=n+t.length,u=r.length,a=n5;return void 0!==o&&(o=tP(o),a=n4),n7(i,a,function(i,a){var f;switch(n2(a,0)){case"$":return"$";case"&":return t;case"`":return n9(e,0,n);case"'":return n9(e,c);case"<":f=o[n9(a,1,-1)];break;default:var s=+a;if(0===s)return i;if(s>u){var l=n1(s/10);if(0===l)return i;if(l<=u)return void 0===r[l-1]?n2(a,1):r[l-1]+n2(a,1);return i}f=r[s-1]}return void 0===f?"":f})},rt=t$("replace"),re=Math.max,rn=Math.min,rr=A([].concat),ro=A([].push),ri=A("".indexOf),rc=A("".slice),ru="$0"==="a".replace(/./,"$0"),ra=!!/./[rt]&&""===/./[rt]("a","$0");nY("replace",function(t,e,n){var r=ra?"$":"$0";return[function(t,n){var r=q(this),o=W(t)?void 0:tm(t,rt);return o?R(o,t,r,n):R(e,nf(r),t,n)},function(t,o){var i=t1(this),c=nf(t);if("string"==typeof o&&-1===ri(o,r)&&-1===ri(o,"$<")){var u=n(e,i,c,o);if(u.done)return u.value}var a=tt(o);a||(o=nf(o));var f=i.global;if(f){var s=i.unicode;i.lastIndex=0}for(var l=[];;){var p=n3(i,c);if(null===p||(ro(l,p),!f))break;""===nf(p[0])&&(i.lastIndex=n0(c,eB(i.lastIndex),s))}for(var v="",d=0,h=0;h<l.length;h++){for(var g,y=nf((p=l[h])[0]),b=re(rn(eF(p.index),c.length),0),m=[],x=1;x<p.length;x++)ro(m,void 0===(g=p[x])?g:String(g));var S=p.groups;if(a){var w=rr([y],m,b,c);void 0!==S&&ro(w,S);var O=nf(j(o,void 0,w))}else O=n8(y,c,b,m,S,o);b>=d&&(v+=rc(c,d,b)+O,d=b+y.length)}return v+rc(c,d)}]},!!x(function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")})||!ru||ra);var rf=String,rs=TypeError,rl=function(t,e,n){try{return A(tb(Object.getOwnPropertyDescriptor(t,e)[n]))}catch(t){}},rp=function(t){if("object"==typeof t||tt(t))return t;throw rs("Can't set "+rf(t)+" as a prototype")},rv=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,n={};try{(t=rl(Object.prototype,"__proto__","set"))(n,[]),e=n instanceof Array}catch(t){}return function(n,r){return t1(n),rp(r),e?t(n,r):n.__proto__=r,n}}():void 0),rd=t$("match"),rh=function(t){var e;return tn(t)&&(void 0!==(e=t[rd])?!!e:"RegExp"==B(t))},rg=RegExp.prototype,ry=function(t){var e=t.flags;return void 0===e&&!("flags"in rg)&&!tA(t,"flags")&&to(rg,t)?R(ns,t):e},rb=tX.f,rm=t8.exports,rx=t$("species"),rS=function(t){var e,n=tr(t);N&&n&&!n[rx]&&((e={configurable:!0,get:function(){return this}}).get&&rm(e.get,rx,{getter:!0}),e.set&&rm(e.set,rx,{setter:!0}),tX.f(n,rx,e))},rw=function(t,e,n){var r,o;return rv&&tt(r=e.constructor)&&r!==n&&tn(o=r.prototype)&&o!==n.prototype&&rv(t,o),t},rO=e_.f,rE=function(t,e,n){n in t||rb(t,n,{configurable:!0,get:function(){return e[n]},set:function(t){e[n]=t}})},rj=ex.enforce,rT=t$("match"),rR=M.RegExp,rI=rR.prototype,rP=M.SyntaxError,rC=A(rI.exec),rA=A("".charAt),rL=A("".replace),rM=A("".indexOf),r_=A("".slice),rN=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,rD=/a/g,rk=/a/g,rF=new rR(rD)!==rD,rU=nd.MISSED_STICKY,r$=nd.UNSUPPORTED_Y,rG=N&&(!rF||rU||nP||nA||x(function(){return rk[rT]=!1,rR(rD)!=rD||rR(rk)==rk||"/a/i"!=rR(rD,"i")})),rV=function(t){for(var e,n=t.length,r=0,o="",i=!1;r<=n;r++){if("\\"===(e=rA(t,r))){o+=e+rA(t,++r);continue}i||"."!==e?("["===e?i=!0:"]"===e&&(i=!1),o+=e):o+="[\\s\\S]"}return o},rB=function(t){for(var e,n=t.length,r=0,o="",i=[],c={},u=!1,a=!1,f=0,s="";r<=n;r++){if("\\"===(e=rA(t,r)))e+=rA(t,++r);else if("]"===e)u=!1;else if(!u)switch(!0){case"["===e:u=!0;break;case"("===e:rC(rN,r_(t,r+1))&&(r+=2,a=!0),o+=e,f++;continue;case">"===e&&a:if(""===s||tA(c,s))throw new rP("Invalid capture group name");c[s]=!0,i[i.length]=[s,f],a=!1,s="";continue}a?s+=e:o+=e}return[o,i]};if(e2("RegExp",rG)){for(var rz=function(t,e){var n,r,o,i,c,u,a=to(rI,this),f=rh(t),s=void 0===e,l=[],p=t;if(!a&&f&&s&&t.constructor===rz)return t;if((f||to(rI,t))&&(t=t.source,s&&(e=ry(p))),t=void 0===t?"":nf(t),e=void 0===e?"":nf(e),p=t,nP&&("dotAll"in rD)&&(r=!!e&&rM(e,"s")>-1)&&(e=rL(e,/s/g,"")),n=e,rU&&("sticky"in rD)&&(o=!!e&&rM(e,"y")>-1)&&r$&&(e=rL(e,/y/g,"")),nA&&(t=(i=rB(t))[0],l=i[1]),c=rw(rR(t,e),a?this:rI,rz),(r||o||l.length)&&(u=rj(c),r&&(u.dotAll=!0,u.raw=rz(rV(t),n)),o&&(u.sticky=!0),l.length&&(u.groups=l)),t!==p)try{t3(c,"source",""===p?"(?:)":p)}catch(t){}return c},rH=rO(rR),rK=0;rH.length>rK;)rE(rz,rR,rH[rK++]);rI.constructor=rz,rz.prototype=rI,eM(M,"RegExp",rz,{constructor:!0})}rS("RegExp");var rW=eo.PROPER,rY="toString",rq=RegExp.prototype[rY],rJ=x(function(){return"/a/b"!=rq.call({source:"a",flags:"b"})}),rX=rW&&rq.name!=rY;(rJ||rX)&&eM(RegExp.prototype,rY,function(){var t=t1(this);return"/"+nf(t.source)+"/"+nf(ry(t))},{unsafe:!0});var rQ=Array.isArray||function(t){return"Array"==B(t)},rZ=TypeError,r0=function(t,e,n){var r=tH(e);r in t?tX.f(t,r,$(0,n)):t[r]=n},r1=function(){},r2=[],r7=tr("Reflect","construct"),r9=/^\s*(?:class|function)\b/,r4=A(r9.exec),r5=!r9.exec(r1),r6=function(t){if(!tt(t))return!1;try{return r7(r1,r2,t),!0}catch(t){return!1}},r3=function(t){if(!tt(t))return!1;switch(nu(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return r5||!!r4(r9,eu(t))}catch(t){return!0}};r3.sham=!0;var r8=!r7||x(function(){var t;return r6(r6.call)||!r6(Object)||!r6(function(){t=!0})||t})?r3:r6,ot=t$("species"),oe=Array,on=function(t){var e;return rQ(t)&&(r8(e=t.constructor)&&(e===oe||rQ(e.prototype))?e=void 0:tn(e)&&null===(e=e[ot])&&(e=void 0)),void 0===e?oe:e},or=function(t,e){return new(on(t))(0===e?0:e)},oo=t$("species"),oi=function(t){return ts>=51||!x(function(){var e=[];return(e.constructor={})[oo]=function(){return{foo:1}},1!==e[t](Boolean).foo})},oc=function(t){if(t>9007199254740991)throw rZ("Maximum allowed index exceeded");return t},ou=t$("isConcatSpreadable"),oa=ts>=51||!x(function(){var t=[];return t[ou]=!1,t.concat()[0]!==t}),of=function(t){if(!tn(t))return!1;var e=t[ou];return void 0!==e?!!e:rQ(t)};e8({target:"Array",proto:!0,arity:1,forced:!oa||!oi("concat")},{concat:function(t){var e,n,r,o,i,c=tP(this),u=or(c,0),a=0;for(e=-1,r=arguments.length;e<r;e++)if(i=-1===e?c:arguments[e],of(i))for(oc(a+(o=ez(i))),n=0;n<o;n++,a++)n in i&&r0(u,a,i[n]);else oc(a+1),r0(u,a++,i);return u.length=a,u}});var os=Object.assign,ol=Object.defineProperty,op=A([].concat),ov=!os||x(function(){if(N&&1!==os({b:1},os(ol({},"a",{enumerable:!0,get:function(){ol(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol(),r="abcdefghijklmnopqrst";return t[n]=7,r.split("").forEach(function(t){e[t]=t}),7!=os({},t)[n]||ng(os({},e)).join("")!=r})?function(t,e){for(var n=tP(t),r=arguments.length,o=1,i=eQ.f,c=D.f;r>o;)for(var u,a=K(arguments[o++]),f=i?op(ng(a),i(a)):ng(a),s=f.length,l=0;s>l;)u=f[l++],(!N||R(c,a,u))&&(n[u]=a[u]);return n}:os;e8({target:"Object",stat:!0,arity:2,forced:Object.assign!==ov},{assign:ov});var od=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e};nY("search",function(t,e,n){return[function(e){var n=q(this),r=W(e)?void 0:tm(e,t);return r?R(r,e,n):RegExp(e)[t](nf(n))},function(t){var r=t1(this),o=nf(t),i=n(e,r,o);if(i.done)return i.value;var c=r.lastIndex;od(c,0)||(r.lastIndex=0);var u=n3(r,o);return od(r.lastIndex,c)||(r.lastIndex=c),null===u?-1:u.index}]});var oh=TypeError,og=function(t){if(r8(t))return t;throw oh(tg(t)+" is not a constructor")},oy=t$("species"),ob=function(t,e){var n,r=t1(t).constructor;return void 0===r||W(n=t1(r)[oy])?e:og(n)},om=Array,ox=Math.max,oS=function(t,e,n){for(var r=ez(t),o=eG(e,r),i=eG(void 0===n?r:n,r),c=om(ox(i-o,0)),u=0;o<i;o++,u++)r0(c,u,t[o]);return c.length=u,c},ow=nd.UNSUPPORTED_Y,oO=Math.min,oE=[].push,oj=A(/./.exec),oT=A(oE),oR=A("".slice);nY("split",function(t,e,n){var r;return r="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,n){var r,o,i,c=nf(q(this)),u=void 0===n?4294967295:n>>>0;if(0===u)return[];if(void 0===t)return[c];if(!rh(t))return R(e,c,t,u);for(var a=[],f=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),s=0,l=RegExp(t.source,f+"g");(r=R(nz,l,c))&&(!((o=l.lastIndex)>s)||(oT(a,oR(c,s,r.index)),r.length>1&&r.index<c.length&&j(oE,a,oS(r,1)),i=r[0].length,s=o,!(a.length>=u)));)l.lastIndex===r.index&&l.lastIndex++;return s===c.length?(i||!oj(l,""))&&oT(a,""):oT(a,oR(c,s)),a.length>u?oS(a,0,u):a}:"0".split(void 0,0).length?function(t,n){return void 0===t&&0===n?[]:R(e,this,t,n)}:e,[function(e,n){var o=q(this),i=W(e)?void 0:tm(e,t);return i?R(i,e,o,n):R(r,nf(o),e,n)},function(t,o){var i=t1(this),c=nf(t),u=n(r,i,c,o,r!==e);if(u.done)return u.value;var a=ob(i,RegExp),f=i.unicode,s=(i.ignoreCase?"i":"")+(i.multiline?"m":"")+(i.unicode?"u":"")+(ow?"g":"y"),l=new a(ow?"^(?:"+i.source+")":i,s),p=void 0===o?4294967295:o>>>0;if(0===p)return[];if(0===c.length)return null===n3(l,c)?[c]:[];for(var v=0,d=0,h=[];d<c.length;){l.lastIndex=ow?0:d;var g,y=n3(l,ow?oR(c,d):c);if(null===y||(g=oO(eB(l.lastIndex+(ow?d:0)),c.length))===v)d=n0(c,d,f);else{if(oT(h,oR(c,v,d)),h.length===p)return h;for(var b=1;b<=y.length-1;b++)if(oT(h,y[b]),h.length===p)return h;d=v=g}}return oT(h,oR(c,v)),h}]},!!x(function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n="ab".split(t);return 2!==n.length||"a"!==n[0]||"b"!==n[1]}),ow);var oI=nH(nH.bind),oP=function(t,e){return tb(t),void 0===e?t:S?oI(t,e):function(){return t.apply(e,arguments)}},oC=A([].push),oA=function(t){var e=1==t,n=2==t,r=3==t,o=4==t,i=6==t,c=7==t,u=5==t||i;return function(a,f,s,l){for(var p,v,d=tP(a),h=K(d),g=oP(f,s),y=ez(h),b=0,m=l||or,x=e?m(a,y):n||c?m(a,0):void 0;y>b;b++)if((u||b in h)&&(v=g(p=h[b],b,d),t)){if(e)x[b]=v;else if(v)switch(t){case 3:return!0;case 5:return p;case 6:return b;case 2:oC(x,p)}else switch(t){case 4:return!1;case 7:oC(x,p)}}return i?-1:r||o?o:x}},oL={forEach:oA(0),map:oA(1),filter:oA(2),some:oA(3),every:oA(4),find:oA(5),findIndex:oA(6),filterReject:oA(7)},oM=oL.map;e8({target:"Array",proto:!0,forced:!oi("map")},{map:function(t){return oM(this,t,arguments.length>1?arguments[1]:void 0)}});var o_=tY("span").classList,oN=o_&&o_.constructor&&o_.constructor.prototype,oD=oN===Object.prototype?void 0:oN,ok=function(t,e){var n=[][t];return!!n&&x(function(){n.call(null,e||function(){return 1},1)})},oF=oL.forEach,oU=ok("forEach")?[].forEach:function(t){return oF(this,t,arguments.length>1?arguments[1]:void 0)},o$={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},oG=function(t){if(t&&t.forEach!==oU)try{t3(t,"forEach",oU)}catch(e){t.forEach=oU}};for(var oV in o$)o$[oV]&&oG(M[oV]&&M[oV].prototype);oG(oD),nn||eM(Object.prototype,"toString",nn?({}).toString:function(){return"[object "+nu(this)+"]"},{unsafe:!0});var oB=eK.indexOf,oz=nH([].indexOf),oH=!!oz&&1/oz([1],1,-0)<0;e8({target:"Array",proto:!0,forced:oH||!ok("indexOf")},{indexOf:function(t){var e=arguments.length>1?arguments[1]:void 0;return oH?oz(this,t,e)||0:oB(this,t,e)}});var oK="undefined"!=typeof process&&"process"==B(process),oW=tX.f,oY=t$("toStringTag"),oq=TypeError,oJ=A([].slice),oX=TypeError,oQ=/(?:ipad|iphone|ipod).*applewebkit/i.test(ti),oZ=ny,o0=function(t,e){if(t<e)throw oX("Not enough arguments");return t},o1=M.setImmediate,o2=M.clearImmediate,o7=M.process,o9=M.Dispatch,o4=M.Function,o5=M.MessageChannel,o6=M.String,o3=0,o8={},it="onreadystatechange";x(function(){c=M.location});var ie=function(t){if(tA(o8,t)){var e=o8[t];delete o8[t],e()}},ir=function(t){return function(){ie(t)}},io=function(t){ie(t.data)},ii=function(t){M.postMessage(o6(t),c.protocol+"//"+c.host)};o1&&o2||(o1=function(t){o0(arguments.length,1);var e=tt(t)?t:o4(t),n=oJ(arguments,1);return o8[++o3]=function(){j(e,void 0,n)},u(o3),o3},o2=function(t){delete o8[t]},oK?u=function(t){o7.nextTick(ir(t))}:o9&&o9.now?u=function(t){o9.now(ir(t))}:o5&&!oQ?(f=(a=new o5).port2,a.port1.onmessage=io,u=oP(f.postMessage,f)):M.addEventListener&&tt(M.postMessage)&&!M.importScripts&&c&&"file:"!==c.protocol&&!x(ii)?(u=ii,M.addEventListener("message",io,!1)):u=it in tY("script")?function(t){oZ.appendChild(tY("script"))[it]=function(){oZ.removeChild(this),ie(t)}}:function(t){setTimeout(ir(t),0)});var ic={set:o1,clear:o2},iu=function(){this.head=null,this.tail=null};iu.prototype={add:function(t){var e={item:t,next:null},n=this.tail;n?n.next=e:this.head=e,this.tail=e},get:function(){var t=this.head;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}};var ia=/ipad|iphone|ipod/i.test(ti)&&"undefined"!=typeof Pebble,is=/web0s(?!.*chrome)/i.test(ti),il=_.f,ip=ic.set,iv=M.MutationObserver||M.WebKitMutationObserver,id=M.document,ih=M.process,ig=M.Promise,iy=il(M,"queueMicrotask"),ib=iy&&iy.value;if(!ib){var im=new iu,ix=function(){var t,e;for(oK&&(t=ih.domain)&&t.exit();e=im.get();)try{e()}catch(t){throw im.head&&s(),t}t&&t.enter()};oQ||oK||is||!iv||!id?!ia&&ig&&ig.resolve?((v=ig.resolve(void 0)).constructor=ig,d=oP(v.then,v),s=function(){d(ix)}):oK?s=function(){ih.nextTick(ix)}:(ip=oP(ip,M),s=function(){ip(ix)}):(l=!0,p=id.createTextNode(""),new iv(ix).observe(p,{characterData:!0}),s=function(){p.data=l=!l}),ib=function(t){im.head||s(),im.add(t)}}var iS=ib,iw=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}},iO=M.Promise,iE="object"==typeof Deno&&Deno&&"object"==typeof Deno.version,ij=!iE&&!oK&&"object"==typeof window&&"object"==typeof document;iO&&iO.prototype;var iT=t$("species"),iR=!1,iI=tt(M.PromiseRejectionEvent),iP={CONSTRUCTOR:e2("Promise",function(){var t=eu(iO),e=t!==String(iO);if(!e&&66===ts)return!0;if(!ts||ts<51||!/native code/.test(t)){var n=new iO(function(t){t(1)}),r=function(t){t(function(){},function(){})};if((n.constructor={})[iT]=r,!(iR=n.then(function(){}) instanceof r))return!0}return!e&&(ij||iE)&&!iI}),REJECTION_EVENT:iI,SUBCLASSING:iR},iC={},iA=TypeError,iL=function(t){var e,n;this.promise=new t(function(t,r){if(void 0!==e||void 0!==n)throw iA("Bad Promise constructor");e=t,n=r}),this.resolve=tb(e),this.reject=tb(n)};iC.f=function(t){return new iL(t)};var iM=function(t,e){if(to(e,t))return t;throw oq("Incorrect invocation")},i_=ic.set,iN=function(t,e){try{1==arguments.length?console.error(t):console.error(t,e)}catch(t){}},iD=iC,ik="Promise",iF=iP.CONSTRUCTOR,iU=iP.REJECTION_EVENT,i$=iP.SUBCLASSING,iG=ex.getterFor(ik),iV=ex.set,iB=iO&&iO.prototype,iz=iO,iH=iB,iK=M.TypeError,iW=M.document,iY=M.process,iq=iD.f,iJ=iq,iX=!!(iW&&iW.createEvent&&M.dispatchEvent),iQ="unhandledrejection",iZ=function(t){var e;return!!(tn(t)&&tt(e=t.then))&&e},i0=function(t,e){var n,r,o,i=e.value,c=1==e.state,u=c?t.ok:t.fail,a=t.resolve,f=t.reject,s=t.domain;try{u?(c||(2===e.rejection&&i4(e),e.rejection=1),!0===u?n=i:(s&&s.enter(),n=u(i),s&&(s.exit(),o=!0)),n===t.promise?f(iK("Promise-chain cycle")):(r=iZ(n))?R(r,n,a,f):a(n)):f(i)}catch(t){s&&!o&&s.exit(),f(t)}},i1=function(t,e){t.notified||(t.notified=!0,iS(function(){for(var n,r=t.reactions;n=r.get();)i0(n,t);t.notified=!1,e&&!t.rejection&&i7(t)}))},i2=function(t,e,n){var r,o;iX?((r=iW.createEvent("Event")).promise=e,r.reason=n,r.initEvent(t,!1,!0),M.dispatchEvent(r)):r={promise:e,reason:n},!iU&&(o=M["on"+t])?o(r):t===iQ&&iN("Unhandled promise rejection",n)},i7=function(t){R(i_,M,function(){var e,n=t.facade,r=t.value;if(i9(t)&&(e=iw(function(){oK?iY.emit("unhandledRejection",r,n):i2(iQ,n,r)}),t.rejection=oK||i9(t)?2:1,e.error))throw e.value})},i9=function(t){return 1!==t.rejection&&!t.parent},i4=function(t){R(i_,M,function(){var e=t.facade;oK?iY.emit("rejectionHandled",e):i2("rejectionhandled",e,t.value)})},i5=function(t,e,n){return function(r){t(e,r,n)}},i6=function(t,e,n){t.done||(t.done=!0,n&&(t=n),t.value=e,t.state=2,i1(t,!0))},i3=function(t,e,n){if(!t.done){t.done=!0,n&&(t=n);try{if(t.facade===e)throw iK("Promise can't be resolved itself");var r=iZ(e);r?iS(function(){var n={done:!1};try{R(r,e,i5(i3,n,t),i5(i6,n,t))}catch(e){i6(n,e,t)}}):(t.value=e,t.state=1,i1(t,!1))}catch(e){i6({done:!1},e,t)}}};if(iF&&(iH=(iz=function(t){iM(this,iH),tb(t),R(h,this);var e=iG(this);try{t(i5(i3,e),i5(i6,e))}catch(t){i6(e,t)}}).prototype,(h=function(t){iV(this,{type:ik,done:!1,notified:!1,parent:!1,reactions:new iu,rejection:!1,state:0,value:void 0})}).prototype=eM(iH,"then",function(t,e){var n=iG(this),r=iq(ob(this,iz));return n.parent=!0,r.ok=!tt(t)||t,r.fail=tt(e)&&e,r.domain=oK?iY.domain:void 0,0==n.state?n.reactions.add(r):iS(function(){i0(r,n)}),r.promise}),g=function(){var t=new h,e=iG(t);this.promise=t,this.resolve=i5(i3,e),this.reject=i5(i6,e)},iD.f=iq=function(t){return t===iz||t===y?new g(t):iJ(t)},tt(iO)&&iB!==Object.prototype)){b=iB.then,i$||eM(iB,"then",function(t,e){var n=this;return new iz(function(t,e){R(b,n,t,e)}).then(t,e)},{unsafe:!0});try{delete iB.constructor}catch(t){}rv&&rv(iB,iH)}e8({global:!0,constructor:!0,wrap:!0,forced:iF},{Promise:iz}),function(t,e,n){t&&!n&&(t=t.prototype),t&&!tA(t,oY)&&oW(t,oY,{configurable:!0,value:e})}(iz,ik,!1),rS(ik);var i8={},ct=t$("iterator"),ce=Array.prototype,cn=t$("iterator"),cr=function(t){if(!W(t))return tm(t,cn)||tm(t,"@@iterator")||i8[nu(t)]},co=TypeError,ci=function(t,e){var n=arguments.length<2?cr(t):e;if(tb(n))return t1(R(n,t));throw co(tg(t)+" is not iterable")},cc=function(t,e,n){var r,o;t1(t);try{if(!(r=tm(t,"return"))){if("throw"===e)throw n;return n}r=R(r,t)}catch(t){o=!0,r=t}if("throw"===e)throw n;if(o)throw r;return t1(r),n},cu=TypeError,ca=function(t,e){this.stopped=t,this.result=e},cf=ca.prototype,cs=function(t,e,n){var r,o,i,c,u,a,f,s=n&&n.that,l=!!(n&&n.AS_ENTRIES),p=!!(n&&n.IS_RECORD),v=!!(n&&n.IS_ITERATOR),d=!!(n&&n.INTERRUPTED),h=oP(e,s),g=function(t){return r&&cc(r,"normal",t),new ca(!0,t)},y=function(t){return l?(t1(t),d?h(t[0],t[1],g):h(t[0],t[1])):d?h(t,g):h(t)};if(p)r=t.iterator;else if(v)r=t;else{if(!(o=cr(t)))throw cu(tg(t)+" is not iterable");if(void 0!==o&&(i8.Array===o||ce[ct]===o)){for(i=0,c=ez(t);c>i;i++)if((u=y(t[i]))&&to(cf,u))return u;return new ca(!1)}r=ci(t,o)}for(a=p?t.next:r.next;!(f=R(a,r)).done;){try{u=y(f.value)}catch(t){cc(r,"throw",t)}if("object"==typeof u&&u&&to(cf,u))return u}return new ca(!1)},cl=t$("iterator"),cp=!1;try{var cv=0,cd={next:function(){return{done:!!cv++}},return:function(){cp=!0}};cd[cl]=function(){return this},Array.from(cd,function(){throw 2})}catch(t){}var ch=iP.CONSTRUCTOR||!function(t,e){if(!cp)return!1;var n=!1;try{var r={};r[cl]=function(){return{next:function(){return{done:n=!0}}}},t(r)}catch(t){}return n}(function(t){iO.all(t).then(void 0,function(){})});e8({target:"Promise",stat:!0,forced:ch},{all:function(t){var e=this,n=iC.f(e),r=n.resolve,o=n.reject,i=iw(function(){var n=tb(e.resolve),i=[],c=0,u=1;cs(t,function(t){var a=c++,f=!1;u++,R(n,e,t).then(function(t){!f&&(f=!0,i[a]=t,--u||r(i))},o)}),--u||r(i)});return i.error&&o(i.value),n.promise}});var cg=iP.CONSTRUCTOR,cy=iO&&iO.prototype;if(e8({target:"Promise",proto:!0,forced:cg,real:!0},{catch:function(t){return this.then(void 0,t)}}),tt(iO)){var cb=tr("Promise").prototype.catch;cy.catch!==cb&&eM(cy,"catch",cb,{unsafe:!0})}e8({target:"Promise",stat:!0,forced:ch},{race:function(t){var e=this,n=iC.f(e),r=n.reject,o=iw(function(){var o=tb(e.resolve);cs(t,function(t){R(o,e,t).then(n.resolve,r)})});return o.error&&r(o.value),n.promise}}),e8({target:"Promise",stat:!0,forced:iP.CONSTRUCTOR},{reject:function(t){var e=iC.f(this);return R(e.reject,void 0,t),e.promise}});var cm=iP.CONSTRUCTOR,cx=function(t,e){if(t1(t),tn(e)&&e.constructor===t)return e;var n=iC.f(t);return(0,n.resolve)(e),n.promise};tr("Promise"),e8({target:"Promise",stat:!0,forced:cm},{resolve:function(t){return cx(this,t)}});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";function n(n,t){(null==t||t>n.length)&&(t=n.length);for(var e=0,r=Array(t);e<t;e++)r[e]=n[e];return r}function t(t,e){return function(n){if(Array.isArray(n))return n}(t)||function(n,t){var e,r,o=null==n?null:"undefined"!=typeof Symbol&&n[Symbol.iterator]||n["@@iterator"];if(null!=o){var a=[],c=!0,i=!1;try{for(o=o.call(n);!(c=(e=o.next()).done)&&(a.push(e.value),!t||a.length!==t);c=!0);}catch(n){i=!0,r=n}finally{try{c||null==o.return||o.return()}finally{if(i)throw r}}return a}}(t,e)||function(t,e){if(t){if("string"==typeof t)return n(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);if("Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r)return Array.from(r);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return n(t,e)}}(t,e)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}require("./13324d9f.cjs.es5.production.js"),module.exports={formatDate:function(n,t){var e=function(n){t=t.replace(RegExp("".concat(n,"+"),"g"),function(t){var e="".concat(r[n]);if("w"===n)return(t.length>2?"星期":"周")+o[e];for(var a=0,c=e.length;a<t.length-c;a++)e="0".concat(e);return 1===t.length?e:e.substring(e.length-t.length)})};if(!n)return"";if("number"==typeof n)n=new Date(n);else if("string"==typeof n){if(/^\d{12,13}$/g.test(n))n=new Date(parseInt(n));else{if(!/^.{10}T.{8,12}Z?$/g.test(n))return n;n=new Date(n)}}t=t||"yyyy-MM-dd HH:mm:ss";var r={y:n.getFullYear(),M:n.getMonth()+1,d:n.getDate(),q:Math.floor((n.getMonth()+3)/3),w:n.getDay(),H:n.getHours(),h:n.getHours()%12==0?12:n.getHours()%12,m:n.getMinutes(),s:n.getSeconds(),S:n.getMilliseconds()},o=["天","一","二","三","四","五","六"];for(var a in r)e(a);return t},parseDate:function(n,t){var e={y:0,M:1,d:0,H:0,h:0,m:0,s:0,S:0};(t=t||"yyyy-MM-dd").replace(/([^yMdHmsS]*?)(([yMdHmsS])\3*)([^yMdHmsS]*?)/g,function(t,r,o,a,c){return n=n.replace(RegExp("".concat(r,"(\\d{").concat(o.length,"})").concat(c)),function(n,t){return e[a]=parseInt(t),""}),""}),e.M--;var r=new Date(e.y,e.M,e.d,e.H,e.m,e.s);return 0!==e.S&&r.setMilliseconds(e.S),r},showLoading:function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"请稍候",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:10,e=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=this,o=(e=Object.assign({},{hasMask:!0,maskColor:"transparent",onCancel:null,cancelInline:!1,id:"com_global_page_loading"},e)).id,a="_".concat(o,"_timeout");window[a]&&clearTimeout(window[a]);var c=document.getElementById(o);c||((c=document.createElement("div")).id=o,c.className=o,document.body.append(c));var i="".concat(o,"_style");if(!document.getElementById(i)){var l=document.createElement("style");l.id=i,l.innerHTML="\n .".concat(o," {\n position: fixed;\n top: calc(50vh - 60px);\n left: calc(50vw - 60px);\n width: 120px;\n height: 120px;\n z-index: 8000;\n background: rgba(0, 0, 0, 0.6);\n border-radius: 8px;\n text-align: center;\n color: white;\n padding-top: 20px;\n }\n .").concat(o," img {\n width: 50px;\n margin-bottom: 10px;\n }"),document.head.appendChild(l)}if(c.innerHTML="\n ".concat(e.hasMask?'<div class="mask-wrapper" style="background-color: '.concat(e.maskColor,'"></div>'):"",'\n <div class="loading-wrapper">\n <div class="loading-content">\n <img src="https://img.alicdn.com/tfs/TB1bnUsQBLoK1RjSZFuXXXn0XXa-32-32.svg" alt="加载中">\n <div>').concat(n).concat(e.cancelInline?" ":"</div>","\n ").concat(e.onCancel?'<a href="javascript:;" class="cancel">取消</a>':"","\n ").concat(e.cancelInline?"</div>":"","\n </div>\n </div>"),e.onCancel){var s=c.querySelector(".cancel");s&&s.addEventListener("click",function(){r.hideLoading(),e.onCancel()})}c.style.display="block",t>0&&(window[a]=setTimeout(function(){r.hideLoading()},1e3*t))},hideLoading:function(){var n=document.getElementById("com_global_page_loading");n&&(n.style.display="none")},getParam:function(n){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:location.search;return(RegExp("(^|\\?|&)".concat(n,"=(.*?)(?=&|#|$)"),"g").exec(t)||[])[2]},getParamInt:function(n){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:location.search;return parseInt(this.getParam(n,t)||"0",10)},getParams:function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:location.search,e=((n||"").split("?").pop()||"").split("#")[0]||"",r={};return e.split("&").map(function(n){return n.split("=")}).forEach(function(n){var e=t(n,2),o=e[0],a=e[1];r[o]=a||""}),r},setParam:function(n,e,r){if(r=r||"".concat(location.pathname).concat(location.search),void 0!==this.getParam(n,r))return r.replace(RegExp("(^|\\?|&)".concat(n,"=(.*?)(?=&|#|$)"),"g"),"$1".concat(n,"=").concat(e));var o=t(r.split("#"),2),a=o[0],c=o[1];return"".concat(a).concat(0>a.indexOf("?")?"?":"&").concat(n,"=").concat(e).concat(c?"#":"").concat(c||"")},delParam:function(n,t){return(t=t||"".concat(location.pathname).concat(location.search)).replace(RegExp("(^|\\?|&)".concat(n,"=.*?(&|#|$)"),"g"),function(n,t,e){return"&"===e?t:e})},sleep:function(n){return new Promise(function(t){return setTimeout(t,n||0)})},deepCopy:function(n){return n&&"object"==typeof n?JSON.parse(JSON.stringify(n)):n},encodeHtml:function(n){if("string"==typeof n){var t=document.createElement("div");return t.innerText=n,t.innerHTML}if("object"==typeof n&&n)for(var e in n)n[e]=this.encodeHtml(n[e]);return n},decodeHtml:function(n){if("string"==typeof n){var t=document.createElement("div");return t.innerHTML=n,t.innerText}if("object"==typeof n&&n)for(var e in n)n[e]=this.decodeHtml(n[e]);return n}};
|
package/esm/typings.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/// <reference types="@ice/pkg/types" />
|