UNPKG

@multisynq/client

Version:

Real-time multiplayer framework for web applications

5 lines (4 loc) 293 kB
// (C) 2025 Croquet Labs // Multisynq Client v1.1.0 // Built on 2025-07-24T16:47:32.495Z var xp=Object.create;var ys=Object.defineProperty;var Mp=Object.getOwnPropertyDescriptor;var Dp=Object.getOwnPropertyNames;var qp=Object.getPrototypeOf,Rp=Object.prototype.hasOwnProperty;var At=(r=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(r,{get:(e,t)=>(typeof require<"u"?require:e)[t]}):r)(function(r){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+r+'" is not supported')});var p=(r,e)=>()=>(e||r((e={exports:{}}).exports,e),e.exports);var Fp=(r,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let s of Dp(e))!Rp.call(r,s)&&s!==t&&ys(r,s,{get:()=>e[s],enumerable:!(i=Mp(e,s))||i.enumerable});return r};var z=(r,e,t)=>(t=r!=null?xp(qp(r)):{},Fp(e||!r||!r.__esModule?ys(t,"default",{value:r,enumerable:!0}):t,r));var se=p((It,ws)=>{(function(r,e){typeof It=="object"?ws.exports=It=e():typeof define=="function"&&define.amd?define([],e):r.CryptoJS=e()})(It,function(){var r=r||function(e,t){var i;if(typeof window<"u"&&window.crypto&&(i=window.crypto),typeof self<"u"&&self.crypto&&(i=self.crypto),typeof globalThis<"u"&&globalThis.crypto&&(i=globalThis.crypto),!i&&typeof window<"u"&&window.msCrypto&&(i=window.msCrypto),!i&&typeof global<"u"&&global.crypto&&(i=global.crypto),!i&&typeof At=="function")try{i=At("crypto")}catch{}var s=function(){if(i){if(typeof i.getRandomValues=="function")try{return i.getRandomValues(new Uint32Array(1))[0]}catch{}if(typeof i.randomBytes=="function")try{return i.randomBytes(4).readInt32LE()}catch{}}throw new Error("Native crypto module could not be used to get secure random number.")},n=Object.create||function(){function v(){}return function(m){var A;return v.prototype=m,A=new v,v.prototype=null,A}}(),o={},a=o.lib={},l=a.Base=function(){return{extend:function(v){var m=n(this);return v&&m.mixIn(v),(!m.hasOwnProperty("init")||this.init===m.init)&&(m.init=function(){m.$super.init.apply(this,arguments)}),m.init.prototype=m,m.$super=this,m},create:function(){var v=this.extend();return v.init.apply(v,arguments),v},init:function(){},mixIn:function(v){for(var m in v)v.hasOwnProperty(m)&&(this[m]=v[m]);v.hasOwnProperty("toString")&&(this.toString=v.toString)},clone:function(){return this.init.prototype.extend(this)}}}(),c=a.WordArray=l.extend({init:function(v,m){v=this.words=v||[],m!=t?this.sigBytes=m:this.sigBytes=v.length*4},toString:function(v){return(v||u).stringify(this)},concat:function(v){var m=this.words,A=v.words,w=this.sigBytes,R=v.sigBytes;if(this.clamp(),w%4)for(var M=0;M<R;M++){var F=A[M>>>2]>>>24-M%4*8&255;m[w+M>>>2]|=F<<24-(w+M)%4*8}else for(var N=0;N<R;N+=4)m[w+N>>>2]=A[N>>>2];return this.sigBytes+=R,this},clamp:function(){var v=this.words,m=this.sigBytes;v[m>>>2]&=4294967295<<32-m%4*8,v.length=e.ceil(m/4)},clone:function(){var v=l.clone.call(this);return v.words=this.words.slice(0),v},random:function(v){for(var m=[],A=0;A<v;A+=4)m.push(s());return new c.init(m,v)}}),h=o.enc={},u=h.Hex={stringify:function(v){for(var m=v.words,A=v.sigBytes,w=[],R=0;R<A;R++){var M=m[R>>>2]>>>24-R%4*8&255;w.push((M>>>4).toString(16)),w.push((M&15).toString(16))}return w.join("")},parse:function(v){for(var m=v.length,A=[],w=0;w<m;w+=2)A[w>>>3]|=parseInt(v.substr(w,2),16)<<24-w%8*4;return new c.init(A,m/2)}},d=h.Latin1={stringify:function(v){for(var m=v.words,A=v.sigBytes,w=[],R=0;R<A;R++){var M=m[R>>>2]>>>24-R%4*8&255;w.push(String.fromCharCode(M))}return w.join("")},parse:function(v){for(var m=v.length,A=[],w=0;w<m;w++)A[w>>>2]|=(v.charCodeAt(w)&255)<<24-w%4*8;return new c.init(A,m)}},f=h.Utf8={stringify:function(v){try{return decodeURIComponent(escape(d.stringify(v)))}catch{throw new Error("Malformed UTF-8 data")}},parse:function(v){return d.parse(unescape(encodeURIComponent(v)))}},g=a.BufferedBlockAlgorithm=l.extend({reset:function(){this._data=new c.init,this._nDataBytes=0},_append:function(v){typeof v=="string"&&(v=f.parse(v)),this._data.concat(v),this._nDataBytes+=v.sigBytes},_process:function(v){var m,A=this._data,w=A.words,R=A.sigBytes,M=this.blockSize,F=M*4,N=R/F;v?N=e.ceil(N):N=e.max((N|0)-this._minBufferSize,0);var q=N*M,B=e.min(q*4,R);if(q){for(var _=0;_<q;_+=M)this._doProcessBlock(w,_);m=w.splice(0,q),A.sigBytes-=B}return new c.init(m,B)},clone:function(){var v=l.clone.call(this);return v._data=this._data.clone(),v},_minBufferSize:0}),y=a.Hasher=g.extend({cfg:l.extend(),init:function(v){this.cfg=this.cfg.extend(v),this.reset()},reset:function(){g.reset.call(this),this._doReset()},update:function(v){return this._append(v),this._process(),this},finalize:function(v){v&&this._append(v);var m=this._doFinalize();return m},blockSize:512/32,_createHelper:function(v){return function(m,A){return new v.init(A).finalize(m)}},_createHmacHelper:function(v){return function(m,A){return new S.HMAC.init(v,A).finalize(m)}}}),S=o.algo={};return o}(Math);return r})});var Tt=p(($t,bs)=>{(function(r,e){typeof $t=="object"?bs.exports=$t=e(se()):typeof define=="function"&&define.amd?define(["./core"],e):e(r.CryptoJS)})($t,function(r){return function(){if(typeof ArrayBuffer=="function"){var e=r,t=e.lib,i=t.WordArray,s=i.init,n=i.init=function(o){if(o instanceof ArrayBuffer&&(o=new Uint8Array(o)),(o instanceof Int8Array||typeof Uint8ClampedArray<"u"&&o instanceof Uint8ClampedArray||o instanceof Int16Array||o instanceof Uint16Array||o instanceof Int32Array||o instanceof Uint32Array||o instanceof Float32Array||o instanceof Float64Array)&&(o=new Uint8Array(o.buffer,o.byteOffset,o.byteLength)),o instanceof Uint8Array){for(var a=o.byteLength,l=[],c=0;c<a;c++)l[c>>>2]|=o[c]<<24-c%4*8;s.call(this,l,a)}else s.apply(this,arguments)};n.prototype=i}}(),r.lib.WordArray})});var rt=p((Ct,Ss)=>{(function(r,e){typeof Ct=="object"?Ss.exports=Ct=e(se()):typeof define=="function"&&define.amd?define(["./core"],e):e(r.CryptoJS)})(Ct,function(r){return function(e){var t=r,i=t.lib,s=i.WordArray,n=i.Hasher,o=t.algo,a=[],l=[];(function(){function u(y){for(var S=e.sqrt(y),v=2;v<=S;v++)if(!(y%v))return!1;return!0}function d(y){return(y-(y|0))*4294967296|0}for(var f=2,g=0;g<64;)u(f)&&(g<8&&(a[g]=d(e.pow(f,1/2))),l[g]=d(e.pow(f,1/3)),g++),f++})();var c=[],h=o.SHA256=n.extend({_doReset:function(){this._hash=new s.init(a.slice(0))},_doProcessBlock:function(u,d){for(var f=this._hash.words,g=f[0],y=f[1],S=f[2],v=f[3],m=f[4],A=f[5],w=f[6],R=f[7],M=0;M<64;M++){if(M<16)c[M]=u[d+M]|0;else{var F=c[M-15],N=(F<<25|F>>>7)^(F<<14|F>>>18)^F>>>3,q=c[M-2],B=(q<<15|q>>>17)^(q<<13|q>>>19)^q>>>10;c[M]=N+c[M-7]+B+c[M-16]}var _=m&A^~m&w,$=g&y^g&S^y&S,D=(g<<30|g>>>2)^(g<<19|g>>>13)^(g<<10|g>>>22),I=(m<<26|m>>>6)^(m<<21|m>>>11)^(m<<7|m>>>25),L=R+I+_+l[M]+c[M],U=D+$;R=w,w=A,A=m,m=v+L|0,v=S,S=y,y=g,g=L+U|0}f[0]=f[0]+g|0,f[1]=f[1]+y|0,f[2]=f[2]+S|0,f[3]=f[3]+v|0,f[4]=f[4]+m|0,f[5]=f[5]+A|0,f[6]=f[6]+w|0,f[7]=f[7]+R|0},_doFinalize:function(){var u=this._data,d=u.words,f=this._nDataBytes*8,g=u.sigBytes*8;return d[g>>>5]|=128<<24-g%32,d[(g+64>>>9<<4)+14]=e.floor(f/4294967296),d[(g+64>>>9<<4)+15]=f,u.sigBytes=d.length*4,this._process(),this._hash},clone:function(){var u=n.clone.call(this);return u._hash=this._hash.clone(),u}});t.SHA256=n._createHelper(h),t.HmacSHA256=n._createHmacHelper(h)}(Math),r.SHA256})});var Bs=p((e6,Ls)=>{"use strict";function Qp(r){return r!==r}Ls.exports=Qp});var Y=p((t6,Hs)=>{"use strict";var e0=Bs();Hs.exports=e0});var zs=p((r6,Us)=>{"use strict";var t0=Math.sqrt;Us.exports=t0});var it=p((i6,Ws)=>{"use strict";var r0=zs();Ws.exports=r0});var kt=p((s6,js)=>{"use strict";var i0=.7853981633974483;js.exports=i0});var Gs=p((n6,Vs)=>{"use strict";function s0(r){var e,t,i;return r===0?.16666666666666713:(r<0?e=-r:e=r,e<=1?(t=-8.198089802484825+r*(19.562619833175948+r*(-16.262479672107002+r*(5.444622390564711+r*(-.6019598008014124+r*.004253011369004428)))),i=-49.18853881490881+r*(139.51056146574857+r*(-147.1791292232726+r*(70.49610280856842+r*(-14.740913729888538+r*1))))):(r=1/r,t=.004253011369004428+r*(-.6019598008014124+r*(5.444622390564711+r*(-16.262479672107002+r*(19.562619833175948+r*-8.198089802484825)))),i=1+r*(-14.740913729888538+r*(70.49610280856842+r*(-147.1791292232726+r*(139.51056146574857+r*-49.18853881490881))))),t/i)}Vs.exports=s0});var Zs=p((o6,Ks)=>{"use strict";function n0(r){var e,t,i;return r===0?.08333333333333809:(r<0?e=-r:e=r,e<=1?(t=28.536655482610616+r*(-25.56901049652825+r*(6.968710824104713+r*(-.5634242780008963+r*.002967721961301243))),i=342.43986579130785+r*(-383.8770957603691+r*(147.0656354026815+r*(-21.947795316429207+r*1)))):(r=1/r,t=.002967721961301243+r*(-.5634242780008963+r*(6.968710824104713+r*(-25.56901049652825+r*28.536655482610616))),i=1+r*(-21.947795316429207+r*(147.0656354026815+r*(-383.8770957603691+r*342.43986579130785)))),t/i)}Ks.exports=n0});var Js=p((a6,Ys)=>{"use strict";var o0=Y(),a0=it(),Xs=kt(),c0=Gs(),l0=Zs(),h0=6123233995736766e-32;function u0(r){var e,t,i,s,n;if(o0(r))return NaN;if(r>0?i=r:(e=!0,i=-r),i>1)return NaN;if(i>.625)t=1-i,s=t*l0(t),t=a0(t+t),n=Xs-t,t=t*s-h0,n-=t,n+=Xs;else{if(i<1e-8)return r;t=i*i,n=t*c0(t),n=i*n+i}return e?-n:n}Ys.exports=u0});var qr=p((c6,Qs)=>{"use strict";var f0=Js();Qs.exports=f0});var sn=p((l6,rn)=>{"use strict";var d0=Y(),en=qr(),p0=it(),tn=kt(),v0=6123233995736766e-32;function g0(r){var e;return d0(r)?NaN:r<-1||r>1?NaN:r>.5?2*en(p0(.5-.5*r)):(e=tn-en(r),e+=v0,e+=tn,e)}rn.exports=g0});var on=p((h6,nn)=>{"use strict";var m0=sn();nn.exports=m0});var cn=p((u6,an)=>{"use strict";function y0(){return typeof Symbol=="function"&&typeof Symbol("foo")=="symbol"}an.exports=y0});var hn=p((f6,ln)=>{"use strict";var _0=cn();ln.exports=_0});var fn=p((d6,un)=>{"use strict";var w0=hn(),b0=w0();function S0(){return b0&&typeof Symbol.toStringTag=="symbol"}un.exports=S0});var pn=p((p6,dn)=>{"use strict";var E0=fn();dn.exports=E0});var Rr=p((v6,vn)=>{"use strict";var A0=Object.prototype.toString;vn.exports=A0});var mn=p((g6,gn)=>{"use strict";var I0=Rr();function $0(r){return I0.call(r)}gn.exports=$0});var _n=p((m6,yn)=>{"use strict";var T0=Object.prototype.hasOwnProperty;function C0(r,e){return r==null?!1:T0.call(r,e)}yn.exports=C0});var bn=p((y6,wn)=>{"use strict";var O0=_n();wn.exports=O0});var En=p((_6,Sn)=>{"use strict";var k0=typeof Symbol=="function"?Symbol:void 0;Sn.exports=k0});var In=p((w6,An)=>{"use strict";var N0=En();An.exports=N0});var Cn=p((b6,Tn)=>{"use strict";var $n=In(),x0=typeof $n=="function"?$n.toStringTag:"";Tn.exports=x0});var kn=p((S6,On)=>{"use strict";var M0=bn(),st=Cn(),Fr=Rr();function D0(r){var e,t,i;if(r==null)return Fr.call(r);t=r[st],e=M0(r,st);try{r[st]=void 0}catch{return Fr.call(r)}return i=Fr.call(r),e?r[st]=t:delete r[st],i}On.exports=D0});var nt=p((E6,Nn)=>{"use strict";var q0=pn(),R0=mn(),F0=kn(),Pr;q0()?Pr=F0:Pr=R0;Nn.exports=Pr});var Mn=p((A6,xn)=>{"use strict";var P0=nt(),L0=typeof Uint32Array=="function";function B0(r){return L0&&r instanceof Uint32Array||P0(r)==="[object Uint32Array]"}xn.exports=B0});var qn=p((I6,Dn)=>{"use strict";var H0=Mn();Dn.exports=H0});var Fn=p(($6,Rn)=>{"use strict";var U0=4294967295;Rn.exports=U0});var Ln=p((T6,Pn)=>{"use strict";var z0=typeof Uint32Array=="function"?Uint32Array:null;Pn.exports=z0});var Un=p((C6,Hn)=>{"use strict";var W0=qn(),Lr=Fn(),Bn=Ln();function j0(){var r,e;if(typeof Bn!="function")return!1;try{e=[1,3.14,-3.14,Lr+1,Lr+2],e=new Bn(e),r=W0(e)&&e[0]===1&&e[1]===3&&e[2]===Lr-2&&e[3]===0&&e[4]===1}catch{r=!1}return r}Hn.exports=j0});var Wn=p((O6,zn)=>{"use strict";var V0=Un();zn.exports=V0});var Vn=p((k6,jn)=>{"use strict";var G0=typeof Uint32Array=="function"?Uint32Array:void 0;jn.exports=G0});var Kn=p((N6,Gn)=>{"use strict";function K0(){throw new Error("not implemented")}Gn.exports=K0});var De=p((x6,Zn)=>{"use strict";var Z0=Wn(),X0=Vn(),Y0=Kn(),Br;Z0()?Br=X0:Br=Y0;Zn.exports=Br});var Yn=p((M6,Xn)=>{"use strict";var J0=nt(),Q0=typeof Float64Array=="function";function ev(r){return Q0&&r instanceof Float64Array||J0(r)==="[object Float64Array]"}Xn.exports=ev});var Qn=p((D6,Jn)=>{"use strict";var tv=Yn();Jn.exports=tv});var to=p((q6,eo)=>{"use strict";var rv=typeof Float64Array=="function"?Float64Array:null;eo.exports=rv});var so=p((R6,io)=>{"use strict";var iv=Qn(),ro=to();function sv(){var r,e;if(typeof ro!="function")return!1;try{e=new ro([1,3.14,-3.14,NaN]),r=iv(e)&&e[0]===1&&e[1]===3.14&&e[2]===-3.14&&e[3]!==e[3]}catch{r=!1}return r}io.exports=sv});var oo=p((F6,no)=>{"use strict";var nv=so();no.exports=nv});var co=p((P6,ao)=>{"use strict";var ov=typeof Float64Array=="function"?Float64Array:void 0;ao.exports=ov});var ho=p((L6,lo)=>{"use strict";function av(){throw new Error("not implemented")}lo.exports=av});var qe=p((B6,uo)=>{"use strict";var cv=oo(),lv=co(),hv=ho(),Hr;cv()?Hr=lv:Hr=hv;uo.exports=Hr});var po=p((H6,fo)=>{"use strict";var uv=nt(),fv=typeof Uint8Array=="function";function dv(r){return fv&&r instanceof Uint8Array||uv(r)==="[object Uint8Array]"}fo.exports=dv});var go=p((U6,vo)=>{"use strict";var pv=po();vo.exports=pv});var yo=p((z6,mo)=>{"use strict";var vv=255;mo.exports=vv});var wo=p((W6,_o)=>{"use strict";var gv=typeof Uint8Array=="function"?Uint8Array:null;_o.exports=gv});var Eo=p((j6,So)=>{"use strict";var mv=go(),Ur=yo(),bo=wo();function yv(){var r,e;if(typeof bo!="function")return!1;try{e=[1,3.14,-3.14,Ur+1,Ur+2],e=new bo(e),r=mv(e)&&e[0]===1&&e[1]===3&&e[2]===Ur-2&&e[3]===0&&e[4]===1}catch{r=!1}return r}So.exports=yv});var Io=p((V6,Ao)=>{"use strict";var _v=Eo();Ao.exports=_v});var To=p((G6,$o)=>{"use strict";var wv=typeof Uint8Array=="function"?Uint8Array:void 0;$o.exports=wv});var Oo=p((K6,Co)=>{"use strict";function bv(){throw new Error("not implemented")}Co.exports=bv});var No=p((Z6,ko)=>{"use strict";var Sv=Io(),Ev=To(),Av=Oo(),zr;Sv()?zr=Ev:zr=Av;ko.exports=zr});var Mo=p((X6,xo)=>{"use strict";var Iv=nt(),$v=typeof Uint16Array=="function";function Tv(r){return $v&&r instanceof Uint16Array||Iv(r)==="[object Uint16Array]"}xo.exports=Tv});var qo=p((Y6,Do)=>{"use strict";var Cv=Mo();Do.exports=Cv});var Fo=p((J6,Ro)=>{"use strict";var Ov=65535;Ro.exports=Ov});var Lo=p((Q6,Po)=>{"use strict";var kv=typeof Uint16Array=="function"?Uint16Array:null;Po.exports=kv});var Uo=p((e4,Ho)=>{"use strict";var Nv=qo(),Wr=Fo(),Bo=Lo();function xv(){var r,e;if(typeof Bo!="function")return!1;try{e=[1,3.14,-3.14,Wr+1,Wr+2],e=new Bo(e),r=Nv(e)&&e[0]===1&&e[1]===3&&e[2]===Wr-2&&e[3]===0&&e[4]===1}catch{r=!1}return r}Ho.exports=xv});var Wo=p((t4,zo)=>{"use strict";var Mv=Uo();zo.exports=Mv});var Vo=p((r4,jo)=>{"use strict";var Dv=typeof Uint16Array=="function"?Uint16Array:void 0;jo.exports=Dv});var Ko=p((i4,Go)=>{"use strict";function qv(){throw new Error("not implemented")}Go.exports=qv});var Xo=p((s4,Zo)=>{"use strict";var Rv=Wo(),Fv=Vo(),Pv=Ko(),jr;Rv()?jr=Fv:jr=Pv;Zo.exports=jr});var Jo=p((n4,Yo)=>{"use strict";var Lv=No(),Bv=Xo(),Hv={uint16:Bv,uint8:Lv};Yo.exports=Hv});var ra=p((o4,ta)=>{"use strict";var Qo=Jo(),ea;function Uv(){var r,e;return r=new Qo.uint16(1),r[0]=4660,e=new Qo.uint8(r.buffer),e[0]===52}ea=Uv();ta.exports=ea});var Re=p((a4,ia)=>{"use strict";var zv=ra();ia.exports=zv});var na=p((c4,sa)=>{"use strict";var Wv=Re(),Vr;Wv===!0?Vr=1:Vr=0;sa.exports=Vr});var ca=p((l4,aa)=>{"use strict";var jv=De(),Vv=qe(),Gv=na(),oa=new Vv(1),Kv=new jv(oa.buffer);function Zv(r){return oa[0]=r,Kv[Gv]}aa.exports=Zv});var ee=p((h4,la)=>{"use strict";var Xv=ca();la.exports=Xv});var ua=p((u4,ha)=>{"use strict";var Yv=Re(),Gr;Yv===!0?Gr=1:Gr=0;ha.exports=Gr});var da=p((f4,fa)=>{"use strict";var Jv=De(),Qv=qe(),eg=ua(),Kr=new Qv(1),tg=new Jv(Kr.buffer);function rg(r,e){return Kr[0]=r,tg[eg]=e>>>0,Kr[0]}fa.exports=rg});var Fe=p((d4,pa)=>{"use strict";var ig=da();pa.exports=ig});var de=p((p4,va)=>{"use strict";var sg=Number.POSITIVE_INFINITY;va.exports=sg});var ma=p((v4,ga)=>{"use strict";ga.exports=Number});var _a=p((g4,ya)=>{"use strict";var ng=ma();ya.exports=ng});var ce=p((m4,wa)=>{"use strict";var og=_a(),ag=og.NEGATIVE_INFINITY;wa.exports=ag});var Ae=p((y4,ba)=>{"use strict";var cg=1023;ba.exports=cg});var Ea=p((_4,Sa)=>{"use strict";function lg(r){return r===0?.6666666666666735:.6666666666666735+r*(.3999999999940942+r*(.2857142874366239+r*(.22222198432149784+r*(.1818357216161805+r*(.15313837699209373+r*.14798198605116586)))))}Sa.exports=lg});var Ca=p((w4,Ta)=>{"use strict";var hg=Y(),Aa=ee(),Ia=Fe(),ug=de(),fg=ce(),$a=Ae(),dg=Ea(),Zr=.6931471803691238,Xr=19082149292705877e-26,pg=.41421356237309503,vg=-.2928932188134525,gg=1862645149230957e-24,mg=5551115123125783e-32,yg=9007199254740992,_g=.6666666666666666;function wg(r){var e,t,i,s,n,o,a,l,c,h;if(r<-1||hg(r))return NaN;if(r===-1)return fg;if(r===ug||r===0)return r;if(r<0?i=-r:i=r,h=1,i<pg){if(i<gg)return i<mg?r:r-r*r*.5;r>vg&&(h=0,s=r,t=1)}return h!==0&&(i<yg?(c=1+r,t=Aa(c),h=(t>>20)-$a,h>0?n=1-(c-r):n=r-(c-1),n/=c):(c=r,t=Aa(c),h=(t>>20)-$a,n=0),t&=1048575,t<434334?c=Ia(c,t|1072693248):(h+=1,c=Ia(c,t|1071644672),t=1048576-t>>2),s=c-1),e=.5*s*s,t===0?s===0?(n+=h*Xr,h*Zr+n):(l=e*(1-_g*s),h*Zr-(l-(h*Xr+n)-s)):(o=s/(2+s),a=o*o,l=a*dg(a),h===0?s-(e-o*(e+l)):h*Zr-(e-(o*(e+l)+(h*Xr+n))-s))}Ta.exports=wg});var ot=p((b4,Oa)=>{"use strict";var bg=Ca();Oa.exports=bg});var Nt=p((S4,ka)=>{"use strict";var Sg=.6931471805599453;ka.exports=Sg});var xa=p((E4,Na)=>{"use strict";function Eg(r){return r===0?.3999999999940942:.3999999999940942+r*(.22222198432149784+r*.15313837699209373)}Na.exports=Eg});var Da=p((A4,Ma)=>{"use strict";function Ag(r){return r===0?.6666666666666735:.6666666666666735+r*(.2857142874366239+r*(.1818357216161805+r*.14798198605116586))}Ma.exports=Ag});var Pa=p((I4,Fa)=>{"use strict";var qa=ee(),Ig=Fe(),$g=Y(),Tg=Ae(),Cg=ce(),Og=xa(),kg=Da(),xt=.6931471803691238,Mt=19082149292705877e-26,Ng=0x40000000000000,xg=.3333333333333333,Ra=1048575,Mg=2146435072,Dg=1048576,qg=1072693248;function Rg(r){var e,t,i,s,n,o,a,l,c,h,u,d;return r===0?Cg:$g(r)||r<0?NaN:(t=qa(r),n=0,t<Dg&&(n-=54,r*=Ng,t=qa(r)),t>=Mg?r+r:(n+=(t>>20)-Tg|0,t&=Ra,l=t+614244&1048576|0,r=Ig(r,t|l^qg),n+=l>>20|0,a=r-1,(Ra&2+t)<3?a===0?n===0?0:n*xt+n*Mt:(o=a*a*(.5-xg*a),n===0?a-o:n*xt-(o-n*Mt-a)):(h=a/(2+a),d=h*h,l=t-398458|0,u=d*d,c=440401-t|0,s=u*Og(u),i=d*kg(u),l|=c,o=i+s,l>0?(e=.5*a*a,n===0?a-(e-h*(e+o)):n*xt-(e-(h*(e+o)+n*Mt)-a)):n===0?a-h*(a-o):n*xt-(h*(a-o)-n*Mt-a))))}Fa.exports=Rg});var Dt=p(($4,La)=>{"use strict";var Fg=Pa();La.exports=Fg});var za=p((T4,Ua)=>{"use strict";var Pg=Y(),Lg=ot(),Ba=it(),Bg=Nt(),Ha=Dt(),Hg=1<<28;function Ug(r){var e;return Pg(r)||r<1?NaN:r===1?0:r>=Hg?Ha(r)+Bg:r>2?Ha(2*r-1/(r+Ba(r*r-1))):(e=r-1,Lg(e+Ba(2*e+e*e)))}Ua.exports=Ug});var ja=p((C4,Wa)=>{"use strict";var zg=za();Wa.exports=zg});var Ga=p((O4,Va)=>{"use strict";var Wg=de(),jg=ce();function Vg(r){return r===Wg||r===jg}Va.exports=Vg});var We=p((k4,Ka)=>{"use strict";var Gg=Ga();Ka.exports=Gg});var Ja=p((N4,Ya)=>{"use strict";var Kg=We(),Zg=Y(),Xg=ot(),Za=it(),Yg=Nt(),Xa=Dt(),Jg=1/(1<<28),Qg=1<<28;function em(r){var e,t,i;return Zg(r)||Kg(r)?r:(r<0&&(r=-r,e=!0),r<Jg?i=r:r>Qg?i=Xa(r)+Yg:r>2?i=Xa(2*r+1/(Za(r*r+1)+r)):(t=r*r,i=Xg(r+t/(1+Za(1+t)))),e?-i:i)}Ya.exports=em});var ec=p((x4,Qa)=>{"use strict";var tm=Ja();Qa.exports=tm});var rc=p((M4,tc)=>{"use strict";var rm=1.5707963267948966;tc.exports=rm});var sc=p((D4,ic)=>{"use strict";function im(r){return r===0?-64.85021904942025:-64.85021904942025+r*(-122.88666844901361+r*(-75.00855792314705+r*(-16.157537187333652+r*-.8750608600031904)))}ic.exports=im});var oc=p((q4,nc)=>{"use strict";function sm(r){return r===0?194.5506571482614:194.5506571482614+r*(485.3903996359137+r*(432.88106049129027+r*(165.02700983169885+r*(24.858464901423062+r*1))))}nc.exports=sm});var lc=p((R4,cc)=>{"use strict";var nm=Y(),om=de(),Yr=rc(),am=kt(),cm=ce(),lm=sc(),hm=oc(),ac=6123233995736766e-32,um=2.414213562373095;function fm(r){var e,t,i,s;return nm(r)||r===0?r:r===om?Yr:r===cm?-Yr:(r<0&&(t=!0,r=-r),e=0,r>um?(i=Yr,e=1,r=-(1/r)):r<=.66?i=0:(i=am,e=2,r=(r-1)/(r+1)),s=r*r,s=s*lm(s)/hm(s),s=r*s+r,e===2?s+=.5*ac:e===1&&(s+=ac),i+=s,t?-i:i)}cc.exports=fm});var Jr=p((F4,hc)=>{"use strict";var dm=lc();hc.exports=dm});var dc=p((P4,fc)=>{"use strict";var pm=Y(),uc=ot(),vm=de(),gm=ce(),mm=1/(1<<28);function ym(r){var e,t;return pm(r)||r<-1||r>1?NaN:r===1?vm:r===-1?gm:(r<0&&(e=!0,r=-r),r<mm?e?-r:r:(r<.5?(t=r+r,t=.5*uc(t+t*r/(1-r))):t=.5*uc((r+r)/(1-r)),e?-t:t))}fc.exports=ym});var vc=p((L4,pc)=>{"use strict";var _m=dc();pc.exports=_m});var Qr=p((B4,gc)=>{"use strict";var wm=2147483648;gc.exports=wm});var ve=p((H4,mc)=>{"use strict";var bm=2147483647;mc.exports=bm});var _c=p((U4,yc)=>{"use strict";var Sm=typeof Object.defineProperty=="function"?Object.defineProperty:null;yc.exports=Sm});var bc=p((z4,wc)=>{"use strict";var Em=_c();function Am(){try{return Em({},"x",{}),!0}catch{return!1}}wc.exports=Am});var Ec=p((W4,Sc)=>{"use strict";var Im=Object.defineProperty;Sc.exports=Im});var ei=p((j4,Ac)=>{"use strict";function $m(r){return typeof r=="number"}Ac.exports=$m});var ti=p((V4,$c)=>{"use strict";function Tm(r){return r[0]==="-"}function Ic(r){var e="",t;for(t=0;t<r;t++)e+="0";return e}function Cm(r,e,t){var i=!1,s=e-r.length;return s<0||(Tm(r)&&(i=!0,r=r.substr(1)),r=t?r+Ic(s):Ic(s)+r,i&&(r="-"+r)),r}$c.exports=Cm});var kc=p((G4,Oc)=>{"use strict";var Om=ei(),Tc=ti(),km=String.prototype.toLowerCase,Cc=String.prototype.toUpperCase;function Nm(r){var e,t,i;switch(r.specifier){case"b":e=2;break;case"o":e=8;break;case"x":case"X":e=16;break;case"d":case"i":case"u":default:e=10;break}if(t=r.arg,i=parseInt(t,10),!isFinite(i)){if(!Om(t))throw new Error("invalid integer. Value: "+t);i=0}return i<0&&(r.specifier==="u"||e!==10)&&(i=4294967295+i+1),i<0?(t=(-i).toString(e),r.precision&&(t=Tc(t,r.precision,r.padRight)),t="-"+t):(t=i.toString(e),!i&&!r.precision?t="":r.precision&&(t=Tc(t,r.precision,r.padRight)),r.sign&&(t=r.sign+t)),e===16&&(r.alternate&&(t="0x"+t),t=r.specifier===Cc.call(r.specifier)?Cc.call(t):km.call(t)),e===8&&r.alternate&&t.charAt(0)!=="0"&&(t="0"+t),t}Oc.exports=Nm});var xc=p((K4,Nc)=>{"use strict";function xm(r){return typeof r=="string"}Nc.exports=xm});var qc=p((Z4,Dc)=>{"use strict";var Mm=ei(),Dm=Math.abs,qm=String.prototype.toLowerCase,Mc=String.prototype.toUpperCase,Pe=String.prototype.replace,Rm=/e\+(\d)$/,Fm=/e-(\d)$/,Pm=/^(\d+)$/,Lm=/^(\d+)e/,Bm=/\.0$/,Hm=/\.0*e/,Um=/(\..*[^0])0*e/;function zm(r){var e,t,i=parseFloat(r.arg);if(!isFinite(i)){if(!Mm(r.arg))throw new Error("invalid floating-point number. Value: "+t);i=r.arg}switch(r.specifier){case"e":case"E":t=i.toExponential(r.precision);break;case"f":case"F":t=i.toFixed(r.precision);break;case"g":case"G":Dm(i)<1e-4?(e=r.precision,e>0&&(e-=1),t=i.toExponential(e)):t=i.toPrecision(r.precision),r.alternate||(t=Pe.call(t,Um,"$1e"),t=Pe.call(t,Hm,"e"),t=Pe.call(t,Bm,""));break;default:throw new Error("invalid double notation. Value: "+r.specifier)}return t=Pe.call(t,Rm,"e+0$1"),t=Pe.call(t,Fm,"e-0$1"),r.alternate&&(t=Pe.call(t,Pm,"$1."),t=Pe.call(t,Lm,"$1.e")),i>=0&&r.sign&&(t=r.sign+t),t=r.specifier===Mc.call(r.specifier)?Mc.call(t):qm.call(t),t}Dc.exports=zm});var Pc=p((X4,Fc)=>{"use strict";function Rc(r){var e="",t;for(t=0;t<r;t++)e+=" ";return e}function Wm(r,e,t){var i=e-r.length;return i<0||(r=t?r+Rc(i):Rc(i)+r),r}Fc.exports=Wm});var Bc=p((Y4,Lc)=>{"use strict";var jm=kc(),Vm=xc(),Gm=qc(),Km=Pc(),Zm=ti(),Xm=String.fromCharCode,Ym=Array.isArray;function qt(r){return r!==r}function Jm(r){var e={};return e.specifier=r.specifier,e.precision=r.precision===void 0?1:r.precision,e.width=r.width,e.flags=r.flags||"",e.mapping=r.mapping,e}function Qm(r){var e,t,i,s,n,o,a,l,c;if(!Ym(r))throw new TypeError("invalid argument. First argument must be an array. Value: `"+r+"`.");for(o="",a=1,l=0;l<r.length;l++)if(i=r[l],Vm(i))o+=i;else{if(e=i.precision!==void 0,i=Jm(i),!i.specifier)throw new TypeError("invalid argument. Token is missing `specifier` property. Index: `"+l+"`. Value: `"+i+"`.");for(i.mapping&&(a=i.mapping),t=i.flags,c=0;c<t.length;c++)switch(s=t.charAt(c),s){case" ":i.sign=" ";break;case"+":i.sign="+";break;case"-":i.padRight=!0,i.padZeros=!1;break;case"0":i.padZeros=t.indexOf("-")<0;break;case"#":i.alternate=!0;break;default:throw new Error("invalid flag: "+s)}if(i.width==="*"){if(i.width=parseInt(arguments[a],10),a+=1,qt(i.width))throw new TypeError("the argument for * width at position "+a+" is not a number. Value: `"+i.width+"`.");i.width<0&&(i.padRight=!0,i.width=-i.width)}if(e&&i.precision==="*"){if(i.precision=parseInt(arguments[a],10),a+=1,qt(i.precision))throw new TypeError("the argument for * precision at position "+a+" is not a number. Value: `"+i.precision+"`.");i.precision<0&&(i.precision=1,e=!1)}switch(i.arg=arguments[a],i.specifier){case"b":case"o":case"x":case"X":case"d":case"i":case"u":e&&(i.padZeros=!1),i.arg=jm(i);break;case"s":i.maxWidth=e?i.precision:-1,i.arg=String(i.arg);break;case"c":if(!qt(i.arg)){if(n=parseInt(i.arg,10),n<0||n>127)throw new Error("invalid character code. Value: "+i.arg);i.arg=qt(n)?String(i.arg):Xm(n)}break;case"e":case"E":case"f":case"F":case"g":case"G":e||(i.precision=6),i.arg=Gm(i);break;default:throw new Error("invalid specifier: "+i.specifier)}i.maxWidth>=0&&i.arg.length>i.maxWidth&&(i.arg=i.arg.substring(0,i.maxWidth)),i.padZeros?i.arg=Zm(i.arg,i.width||i.precision,i.padRight):i.width&&(i.arg=Km(i.arg,i.width,i.padRight)),o+=i.arg||"",a+=1}return o}Lc.exports=Qm});var Uc=p((J4,Hc)=>{"use strict";var ey=Bc();Hc.exports=ey});var Wc=p((Q4,zc)=>{"use strict";var Rt=/%(?:([1-9]\d*)\$)?([0 +\-#]*)(\*|\d+)?(?:(\.)(\*|\d+)?)?[hlL]?([%A-Za-z])/g;function ty(r){var e={mapping:r[1]?parseInt(r[1],10):void 0,flags:r[2],width:r[3],precision:r[5],specifier:r[6]};return r[4]==="."&&r[5]===void 0&&(e.precision="1"),e}function ry(r){var e,t,i,s;for(t=[],s=0,i=Rt.exec(r);i;)e=r.slice(s,Rt.lastIndex-i[0].length),e.length&&t.push(e),t.push(ty(i)),s=Rt.lastIndex,i=Rt.exec(r);return e=r.slice(s),e.length&&t.push(e),t}zc.exports=ry});var Vc=p((e3,jc)=>{"use strict";var iy=Wc();jc.exports=iy});var Kc=p((t3,Gc)=>{"use strict";function sy(r){return typeof r=="string"}Gc.exports=sy});var Yc=p((r3,Xc)=>{"use strict";var ny=Uc(),oy=Vc(),ay=Kc();function Zc(r){var e,t;if(!ay(r))throw new TypeError(Zc("invalid argument. First argument must be a string. Value: `%s`.",r));for(e=[oy(r)],t=1;t<arguments.length;t++)e.push(arguments[t]);return ny.apply(null,e)}Xc.exports=Zc});var Qc=p((i3,Jc)=>{"use strict";var cy=Yc();Jc.exports=cy});var nl=p((s3,sl)=>{"use strict";var el=Qc(),je=Object.prototype,tl=je.toString,rl=je.__defineGetter__,il=je.__defineSetter__,ly=je.__lookupGetter__,hy=je.__lookupSetter__;function uy(r,e,t){var i,s,n,o;if(typeof r!="object"||r===null||tl.call(r)==="[object Array]")throw new TypeError(el("invalid argument. First argument must be an object. Value: `%s`.",r));if(typeof t!="object"||t===null||tl.call(t)==="[object Array]")throw new TypeError(el("invalid argument. Property descriptor must be an object. Value: `%s`.",t));if(s="value"in t,s&&(ly.call(r,e)||hy.call(r,e)?(i=r.__proto__,r.__proto__=je,delete r[e],r[e]=t.value,r.__proto__=i):r[e]=t.value),n="get"in t,o="set"in t,s&&(n||o))throw new Error("invalid argument. Cannot specify one or more accessors and a value or writable attribute in the property descriptor.");return n&&rl&&rl.call(r,e,t.get),o&&il&&il.call(r,e,t.set),r}sl.exports=uy});var al=p((n3,ol)=>{"use strict";var fy=bc(),dy=Ec(),py=nl(),ri;fy()?ri=dy:ri=py;ol.exports=ri});var ll=p((o3,cl)=>{"use strict";var vy=al();function gy(r,e,t){vy(r,e,{configurable:!1,enumerable:!1,writable:!1,value:t})}cl.exports=gy});var ii=p((a3,hl)=>{"use strict";var my=ll();hl.exports=my});var dl=p((c3,fl)=>{"use strict";var yy=Re(),ul,si,ni;yy===!0?(si=1,ni=0):(si=0,ni=1);ul={HIGH:si,LOW:ni};fl.exports=ul});var oi=p((l3,ml)=>{"use strict";var _y=De(),wy=qe(),vl=dl(),gl=new wy(1),pl=new _y(gl.buffer),by=vl.HIGH,Sy=vl.LOW;function Ey(r,e,t,i){return gl[0]=r,e[i]=pl[by],e[i+t]=pl[Sy],e}ml.exports=Ey});var _l=p((h3,yl)=>{"use strict";var Ay=oi();function Iy(r){return Ay(r,[0,0],1,0)}yl.exports=Iy});var Ve=p((u3,bl)=>{"use strict";var $y=ii(),wl=_l(),Ty=oi();$y(wl,"assign",Ty);bl.exports=wl});var Al=p((f3,El)=>{"use strict";var Cy=Re(),Sl,ai,ci;Cy===!0?(ai=1,ci=0):(ai=0,ci=1);Sl={HIGH:ai,LOW:ci};El.exports=Sl});var Ol=p((d3,Cl)=>{"use strict";var Oy=De(),ky=qe(),$l=Al(),Tl=new ky(1),Il=new Oy(Tl.buffer),Ny=$l.HIGH,xy=$l.LOW;function My(r,e){return Il[Ny]=r,Il[xy]=e,Tl[0]}Cl.exports=My});var Ge=p((p3,kl)=>{"use strict";var Dy=Ol();kl.exports=Dy});var xl=p((v3,Nl)=>{"use strict";var qy=Qr(),Ry=ve(),Fy=Ve(),Py=ee(),Ly=Ge(),li=[0,0];function By(r,e){var t,i;return Fy.assign(r,li,1,0),t=li[0],t&=Ry,i=Py(e),i&=qy,t|=i,Ly(t,li[1])}Nl.exports=By});var hi=p((g3,Ml)=>{"use strict";var Hy=xl();Ml.exports=Hy});var ql=p((m3,Dl)=>{"use strict";var Uy=ee();function zy(r){var e=Uy(r);return!!(e>>>31)}Dl.exports=zy});var Fl=p((y3,Rl)=>{"use strict";var Wy=ql();Rl.exports=Wy});var Ll=p((_3,Pl)=>{"use strict";var jy=3.141592653589793;Pl.exports=jy});var Ul=p((w3,Hl)=>{"use strict";var Ft=We(),Ie=hi(),Vy=Fl(),Bl=Y(),Gy=Jr(),Ky=de(),$e=Ll();function Zy(r,e){var t;return Bl(e)||Bl(r)?NaN:Ft(e)?e===Ky?Ft(r)?Ie($e/4,r):Ie(0,r):Ft(r)?Ie(3*$e/4,r):Ie($e,r):Ft(r)?Ie($e/2,r):r===0?e>=0&&!Vy(e)?Ie(0,r):Ie($e,r):e===0?Ie($e/2,r):(t=Gy(r/e),e<0?t<=0?t+$e:t-$e:t)}Hl.exports=Zy});var Wl=p((b3,zl)=>{"use strict";var Xy=Ul();zl.exports=Xy});var ui=p((S3,jl)=>{"use strict";var Yy=22250738585072014e-324;jl.exports=Yy});var Gl=p((E3,Vl)=>{"use strict";function Jy(r){return r===0?1.87595182427177:1.87595182427177+r*(-1.8849797954337717+r*(1.6214297201053545+r*(-.758397934778766+r*.14599619288661245)))}Vl.exports=Jy});var Yl=p((A3,Xl)=>{"use strict";var Qy=ui(),e1=Qr(),Kl=ve(),di=ee(),t1=Fe(),r1=We(),Zl=Ge(),i1=Ve(),s1=Y(),n1=Gl(),o1=4294967295,a1=3221225472,c1=0x40000000000000,fi=2147483648,l1=1,h1=715094163,u1=696219795,f1=di(Qy),Le=[0,0];function d1(r){var e,t,i,s,n,o,a;return r===0||s1(r)||r1(r)?r:(t=di(r)>>>0,e=(t&e1)>>>0,t&=Kl,t<f1?(o=c1*r,i=(di(o)&Kl)>>>0,i=(i/3>>>0)+u1>>>0,o=Zl(e|i,0)):(o=0,i=(t/3>>>0)+h1>>>0,o=t1(o,e|i)),s=o*o*(o/r),o*=n1(s),i1.assign(o,Le,1,0),Le[1]&fi?(Le[0]+=l1,Le[1]&=~fi):Le[1]|=fi,o=Zl(Le[0]&o1,Le[1]&a1),n=o*o,s=r/n,a=o+o,s=(s-o)/(a+s),o+=o*s,o)}Xl.exports=d1});var Ql=p((I3,Jl)=>{"use strict";var p1=Yl();Jl.exports=p1});var th=p(($3,eh)=>{"use strict";function v1(r){return r===0?.0416666666666666:.0416666666666666+r*(-.001388888888887411+r*2480158728947673e-20)}eh.exports=v1});var ih=p((T3,rh)=>{"use strict";function g1(r){return r===0?-27557314351390663e-23:-27557314351390663e-23+r*(2087572321298175e-24+r*-11359647557788195e-27)}rh.exports=g1});var nh=p((C3,sh)=>{"use strict";var m1=th(),y1=ih();function _1(r,e){var t,i,s,n;return n=r*r,s=n*n,i=n*m1(n),i+=s*s*y1(n),t=.5*n,s=1-t,s+(1-s-t+(n*i-r*e))}sh.exports=_1});var pi=p((O3,oh)=>{"use strict";var w1=nh();oh.exports=w1});var lh=p((k3,ch)=>{"use strict";var ah=-.16666666666666632,b1=.00833333333332249,S1=-.0001984126982985795,E1=27557313707070068e-22,A1=-25050760253406863e-24,I1=158969099521155e-24;function $1(r,e){var t,i,s,n;return n=r*r,s=n*n,t=b1+n*(S1+n*E1)+n*s*(A1+n*I1),i=n*r,e===0?r+i*(ah+n*t):r-(n*(.5*e-i*t)-e-i*ah)}ch.exports=$1});var vi=p((N3,hh)=>{"use strict";var T1=lh();hh.exports=T1});var Ke=p((x3,uh)=>{"use strict";var C1=2146435072;uh.exports=C1});var Pt=p((M3,fh)=>{"use strict";var O1=1048575;fh.exports=O1});var ph=p((D3,dh)=>{"use strict";var k1=Re(),gi;k1===!0?gi=0:gi=1;dh.exports=gi});var mh=p((q3,gh)=>{"use strict";var N1=De(),x1=qe(),M1=ph(),vh=new x1(1),D1=new N1(vh.buffer);function q1(r){return vh[0]=r,D1[M1]}gh.exports=q1});var _h=p((R3,yh)=>{"use strict";var R1=mh();yh.exports=R1});var bh=p((F3,wh)=>{"use strict";var F1=Math.floor;wh.exports=F1});var mi=p((P3,Sh)=>{"use strict";var P1=bh();Sh.exports=P1});var Ah=p((L3,Eh)=>{"use strict";var L1=1023;Eh.exports=L1});var $h=p((B3,Ih)=>{"use strict";var B1=-1023;Ih.exports=B1});var Ch=p((H3,Th)=>{"use strict";var H1=-1074;Th.exports=H1});var kh=p((U3,Oh)=>{"use strict";function U1(r){return Math.abs(r)}Oh.exports=U1});var Lt=p((z3,Nh)=>{"use strict";var z1=kh();Nh.exports=z1});var yi=p((W3,xh)=>{"use strict";var W1=ui(),j1=We(),V1=Y(),G1=Lt(),K1=4503599627370496;function Z1(r,e,t,i){return V1(r)||j1(r)?(e[i]=r,e[i+t]=0,e):r!==0&&G1(r)<W1?(e[i]=r*K1,e[i+t]=-52,e):(e[i]=r,e[i+t]=0,e)}xh.exports=Z1});var Dh=p((j3,Mh)=>{"use strict";var X1=yi();function Y1(r){return X1(r,[0,0],1,0)}Mh.exports=Y1});var Fh=p((V3,Rh)=>{"use strict";var J1=ii(),qh=Dh(),Q1=yi();J1(qh,"assign",Q1);Rh.exports=qh});var Lh=p((G3,Ph)=>{"use strict";var e_=ee(),t_=Ke(),r_=Ae();function i_(r){var e=e_(r);return e=(e&t_)>>>20,e-r_|0}Ph.exports=i_});var Hh=p((K3,Bh)=>{"use strict";var s_=Lh();Bh.exports=s_});var zh=p((Z3,Uh)=>{"use strict";var n_=de(),o_=ce(),a_=Ae(),c_=Ah(),l_=$h(),h_=Ch(),u_=Y(),f_=We(),d_=hi(),p_=Fh().assign,v_=Hh(),g_=Ve(),m_=Ge(),y_=2220446049250313e-31,__=2148532223,_i=[0,0],wi=[0,0];function w_(r,e){var t,i;return e===0||r===0||u_(r)||f_(r)?r:(p_(r,_i,1,0),r=_i[0],e+=_i[1],e+=v_(r),e<h_?d_(0,r):e>c_?r<0?o_:n_:(e<=l_?(e+=52,i=y_):i=1,g_.assign(r,wi,1,0),t=wi[0],t&=__,t|=e+a_<<20,i*m_(t,wi[1])))}Uh.exports=w_});var bi=p((X3,Wh)=>{"use strict";var b_=zh();Wh.exports=b_});var Vh=p((Y3,jh)=>{"use strict";function S_(r,e){var t,i;for(t=[],i=0;i<e;i++)t.push(r);return t}jh.exports=S_});var Kh=p((J3,Gh)=>{"use strict";var E_=Vh();Gh.exports=E_});var Xh=p((Q3,Zh)=>{"use strict";var A_=Kh();function I_(r){return A_(0,r)}Zh.exports=I_});var Jh=p((eE,Yh)=>{"use strict";var $_=Xh();Yh.exports=$_});var iu=p((tE,ru)=>{"use strict";var T_=mi(),Bt=bi(),zt=Jh(),eu=[10680707,7228996,1387004,2578385,16069853,12639074,9804092,4427841,16666979,11263675,12935607,2387514,4345298,14681673,3074569,13734428,16653803,1880361,10960616,8533493,3062596,8710556,7349940,6258241,3772886,3769171,3798172,8675211,12450088,3874808,9961438,366607,15675153,9132554,7151469,3571407,2607881,12013382,4155038,6285869,7677882,13102053,15825725,473591,9065106,15363067,6271263,9264392,5636912,4652155,7056368,13614112,10155062,1944035,9527646,15080200,6658437,6231200,6832269,16767104,5075751,3212806,1398474,7579849,6349435,12618859],C_=[1.570796251296997,7549789415861596e-23,5390302529957765e-30,3282003415807913e-37,1270655753080676e-44,12293330898111133e-52,27337005381646456e-60,21674168387780482e-67],Si=16777216,Ei=5960464477539063e-23,Ht=zt(20),Qh=zt(20),Ut=zt(20),Q=zt(20);function tu(r,e,t,i,s,n,o,a,l){var c,h,u,d,f,g,y,S,v;for(d=n,v=i[t],S=t,f=0;S>0;f++)h=Ei*v|0,Q[f]=v-Si*h|0,v=i[S-1]+h,S-=1;if(v=Bt(v,s),v-=8*T_(v*.125),y=v|0,v-=y,u=0,s>0?(f=Q[t-1]>>24-s,y+=f,Q[t-1]-=f<<24-s,u=Q[t-1]>>23-s):s===0?u=Q[t-1]>>23:v>=.5&&(u=2),u>0){for(y+=1,c=0,f=0;f<t;f++)S=Q[f],c===0?S!==0&&(c=1,Q[f]=16777216-S):Q[f]=16777215-S;if(s>0)switch(s){case 1:Q[t-1]&=8388607;break;case 2:Q[t-1]&=4194303;break}u===2&&(v=1-v,c!==0&&(v-=Bt(1,s)))}if(v===0){for(S=0,f=t-1;f>=n;f--)S|=Q[f];if(S===0){for(g=1;Q[n-g]===0;g++);for(f=t+1;f<=t+g;f++){for(l[a+f]=eu[o+f],h=0,S=0;S<=a;S++)h+=r[S]*l[a+(f-S)];i[f]=h}return t+=g,tu(r,e,t,i,s,n,o,a,l)}for(t-=1,s-=24;Q[t]===0;)t-=1,s-=24}else v=Bt(v,-s),v>=Si?(h=Ei*v|0,Q[t]=v-Si*h|0,t+=1,s+=24,Q[t]=h):Q[t]=v|0;for(h=Bt(1,s),f=t;f>=0;f--)i[f]=h*Q[f],h*=Ei;for(f=t;f>=0;f--){for(h=0,g=0;g<=d&&g<=t-f;g++)h+=C_[g]*i[f+g];Ut[t-f]=h}for(h=0,f=t;f>=0;f--)h+=Ut[f];for(u===0?e[0]=h:e[0]=-h,h=Ut[0]-h,f=1;f<=t;f++)h+=Ut[f];return u===0?e[1]=h:e[1]=-h,y&7}function O_(r,e,t,i){var s,n,o,a,l,c,h,u,d;for(n=4,a=i-1,o=(t-3)/24|0,o<0&&(o=0),c=t-24*(o+1),u=o-a,d=a+n,h=0;h<=d;h++)u<0?Ht[h]=0:Ht[h]=eu[u],u+=1;for(h=0;h<=n;h++){for(s=0,u=0;u<=a;u++)s+=r[u]*Ht[a+(h-u)];Qh[h]=s}return l=n,tu(r,e,l,Qh,c,n,o,a,Ht)}ru.exports=O_});var nu=p((rE,su)=>{"use strict";var k_=Math.round;su.exports=k_});var au=p((iE,ou)=>{"use strict";var N_=nu();ou.exports=N_});var uu=p((sE,hu)=>{"use strict";var x_=au(),cu=ee(),M_=.6366197723675814,D_=1.5707963267341256,q_=6077100506506192e-26,R_=6077100506303966e-26,F_=20222662487959506e-37,P_=20222662487111665e-37,L_=84784276603689e-45,lu=2047;function B_(r,e,t){var i,s,n,o,a,l,c;return s=x_(r*M_),o=r-s*D_,a=s*q_,c=e>>20|0,t[0]=o-a,i=cu(t[0]),l=c-(i>>20&lu),l>16&&(n=o,a=s*R_,o=n-a,a=s*F_-(n-o-a),t[0]=o-a,i=cu(t[0]),l=c-(i>>20&lu),l>49&&(n=o,a=s*P_,o=n-a,a=s*L_-(n-o-a),t[0]=o-a)),t[1]=o-t[0]-a,s}hu.exports=B_});var du=p((nE,fu)=>{"use strict";var H_=ve(),U_=Ke(),z_=Pt(),W_=ee(),j_=_h(),V_=Ge(),G_=iu(),Wt=uu(),K_=0,Z_=16777216,Te=1.5707963267341256,Be=6077100506506192e-26,jt=2*Be,Vt=3*Be,Gt=4*Be,X_=598523,Y_=1072243195,J_=1073928572,Q_=1074752122,ew=1074977148,tw=1075183036,rw=1075388923,iw=1075594811,sw=1094263291,at=[0,0,0],ct=[0,0];function nw(r,e){var t,i,s,n,o,a,l,c;if(s=W_(r),n=s&H_|0,n<=Y_)return e[0]=r,e[1]=0,0;if(n<=Q_)return(n&z_)===X_?Wt(r,n,e):n<=J_?r>0?(c=r-Te,e[0]=c-Be,e[1]=c-e[0]-Be,1):(c=r+Te,e[0]=c+Be,e[1]=c-e[0]+Be,-1):r>0?(c=r-2*Te,e[0]=c-jt,e[1]=c-e[0]-jt,2):(c=r+2*Te,e[0]=c+jt,e[1]=c-e[0]+jt,-2);if(n<=iw)return n<=tw?n===ew?Wt(r,n,e):r>0?(c=r-3*Te,e[0]=c-Vt,e[1]=c-e[0]-Vt,3):(c=r+3*Te,e[0]=c+Vt,e[1]=c-e[0]+Vt,-3):n===rw?Wt(r,n,e):r>0?(c=r-4*Te,e[0]=c-Gt,e[1]=c-e[0]-Gt,4):(c=r+4*Te,e[0]=c+Gt,e[1]=c-e[0]+Gt,-4);if(n<sw)return Wt(r,n,e);if(n>=U_)return e[0]=NaN,e[1]=NaN,0;for(t=j_(r),i=(n>>20)-1046,c=V_(n-(i<<20|0),t),a=0;a<2;a++)at[a]=c|0,c=(c-at[a])*Z_;for(at[2]=c,o=3;at[o-1]===K_;)o-=1;return l=G_(at,ct,i,o,1),r<0?(e[0]=-ct[0],e[1]=-ct[1],-l):(e[0]=ct[0],e[1]=ct[1],l)}fu.exports=nw});var Kt=p((oE,pu)=>{"use strict";var ow=du();pu.exports=ow});var mu=p((aE,gu)=>{"use strict";var aw=ee(),Ai=pi(),vu=vi(),cw=Kt(),lw=ve(),hw=Ke(),ge=[0,0],uw=1072243195,fw=1044381696;function dw(r){var e,t;if(e=aw(r),e&=lw,e<=uw)return e<fw?1:Ai(r,0);if(e>=hw)return NaN;switch(t=cw(r,ge),t&3){case 0:return Ai(ge[0],ge[1]);case 1:return-vu(ge[0],ge[1]);case 2:return-Ai(ge[0],ge[1]);default:return vu(ge[0],ge[1])}}gu.exports=dw});var _u=p((cE,yu)=>{"use strict";var pw=mu();yu.exports=pw});var bu=p((lE,wu)=>{"use strict";var vw=Math.ceil;wu.exports=vw});var Eu=p((hE,Su)=>{"use strict";var gw=bu();Su.exports=gw});var Iu=p((uE,Au)=>{"use strict";var mw=mi(),yw=Eu();function _w(r){return r<0?yw(r):mw(r)}Au.exports=_w});var Tu=p((fE,$u)=>{"use strict";var ww=Iu();$u.exports=ww});var Ou=p((dE,Cu)=>{"use strict";function bw(r){return r===0?.16666666666666602:.16666666666666602+r*(-.0027777777777015593+r*(6613756321437934e-20+r*(-16533902205465252e-22+r*41381367970572385e-24)))}Cu.exports=bw});var Nu=p((pE,ku)=>{"use strict";var Sw=bi(),Ew=Ou();function Aw(r,e,t){var i,s,n,o;return i=r-e,s=i*i,n=i-s*Ew(s),o=1-(e-i*n/(2-n)-r),Sw(o,t)}ku.exports=Aw});var Fu=p((vE,Ru)=>{"use strict";var Iw=Y(),xu=Tu(),$w=ce(),Mu=de(),Tw=Nu(),Cw=.6931471803691238,Ow=19082149292705877e-26,Du=1.4426950408889634,kw=709.782712893384,Nw=-745.1332191019411,qu=1/(1<<28),xw=-qu;function Mw(r){var e,t,i;return Iw(r)||r===Mu?r:r===$w?0:r>kw?Mu:r<Nw?0:r>xw&&r<qu?1+r:(r<0?i=xu(Du*r-.5):i=xu(Du*r+.5),e=r-i*Cw,t=i*Ow,Tw(e,t,i))}Ru.exports=Mw});var lt=p((gE,Pu)=>{"use strict";var Dw=Fu();Pu.exports=Dw});var Bu=p((mE,Lu)=>{"use strict";var qw=Y(),Ii=lt();function Rw(r){return qw(r)?r:(r<0&&(r=-r),r>21?Ii(r)/2:(Ii(r)+Ii(-r))/2)}Lu.exports=Rw});var Uu=p((yE,Hu)=>{"use strict";var Fw=Bu();Hu.exports=Fw});var Wu=p((_E,zu)=>{"use strict";var Pw=.34657359027997264;zu.exports=Pw});var Vu=p((wE,ju)=>{"use strict";function Lw(r){return r===0?-.03333333333333313:-.03333333333333313+r*(.0015873015872548146+r*(-793650757867488e-19+r*(4008217827329362e-21+r*-20109921818362437e-23)))}ju.exports=Lw});var Ju=p((bE,Yu)=>{"use strict";var Bw=Y(),Gu=ee(),$i=Fe(),Hw=Ge(),Ku=de(),Uw=ce(),Zu=Ae(),zw=Wu(),Ww=Vu(),jw=709.782712893384,Ti=.6931471803691238,Ci=19082149292705877e-26,Xu=1.4426950408889634,Vw=38.816242111356935,Gw=1.0397207708399179;function Kw(r){var e,t,i,s,n,o,a,l,c,h,u,d,f;if(r===Ku||Bw(r))return r;if(r===Uw)return-1;if(r===0)return r;if(r<0?(i=!0,l=-r):(i=!1,l=r),l>=Vw){if(i)return-1;if(l>=jw)return Ku}if(o=Gu(l)|0,l>zw)l<Gw?i?(s=r+Ti,n=-Ci,f=-1):(s=r-Ti,n=Ci,f=1):(i?f=Xu*r-.5:f=Xu*r+.5,f|=0,u=f,s=r-u*Ti,n=u*Ci),r=s-n,h=s-r-n;else{if(o<1016070144)return r;f=0}return e=.5*r,c=r*e,a=1+c*Ww(c),u=3-a*e,d=c*((a-u)/(6-r*u)),f===0?r-(r*d-c):(t=Hw(Zu+f<<20,0),d=r*(d-h)-h,d-=c,f===-1?.5*(r-d)-.5:f===1?r<-.25?-2*(d-(r+.5)):1+2*(r-d):f<=-2||f>56?(l=1-(d-r),f===1024?(s=Gu(l)+(f<<20)|0,l=$i(l,s)):l*=t,l-1):(u=1,f<20?(s=1072693248-(2097152>>f)|0,u=$i(u,s),l=u-(d-r)):(s=Zu-f<<20|0,u=$i(u,s),l=r-(d+u),l+=1),l*=t,l))}Yu.exports=Kw});var ef=p((SE,Qu)=>{"use strict";var Zw=Ju();Qu.exports=Zw});var rf=p((EE,tf)=>{"use strict";var Xw=Re(),Oi;Xw===!0?Oi=0:Oi=1;tf.exports=Oi});var nf=p((AE,sf)=>{"use strict";var Yw=De(),Jw=qe(),Qw=rf(),ki=new Jw(1),e2=new Yw(ki.buffer);function t2(r,e){return ki[0]=r,e2[Qw]=e>>>0,ki[0]}sf.exports=t2});var Zt=p((IE,of)=>{"use strict";var r2=nf();of.exports=r2});var cf=p(($E,af)=>{"use strict";function i2(r){return r===0?.3999999999940942:.3999999999940942+r*(.22222198432149784+r*.15313837699209373)}af.exports=i2});var hf=p((TE,lf)=>{"use strict";function s2(r){return r===0?.6666666666666735:.6666666666666735+r*(.2857142874366239+r*(.1818357216161805+r*.14798198605116586))}lf.exports=s2});var ff=p((CE,uf)=>{"use strict";var n2=cf(),o2=hf();function a2(r){var e,t,i,s,n,o,a;return s=r/(2+r),n=s*s,a=n*n,t=a*n2(a),i=n*o2(a),o=i+t,e=.5*r*r,s*(e+o)}uf.exports=a2});var Ni=p((OE,df)=>{"use strict";var c2=ff();df.exports=c2});var yf=p((kE,mf)=>{"use strict";var l2=ee(),h2=Fe(),u2=Zt(),f2=Ve(),d2=ve(),p2=Pt(),v2=Y(),g2=Ae(),m2=ce(),y2=Ni(),_2=0x40000000000000,pf=.4342944818781689,w2=25082946711645275e-27,b2=.30102999566361177,S2=3694239077158931e-28,E2=2146435072,vf=1048576,gf=1072693248,xi=[0,0];function A2(r){var e,t,i,s,n,o,a,l,c,h,u,d,f,g;if(v2(r)||r<0)return NaN;if(f2.assign(r,xi,1,0),o=xi[0],a=xi[1],g=0,o<vf){if((o&d2|a)===0)return m2;g-=54,r*=_2,o=l2(r)}return o>=E2?r+r:o===gf&&a===0?0:(g+=(o>>20)-g2|0,o&=p2,f=o+614244&vf|0,r=h2(r,o|f^gf),g+=f>>20|0,d=g,c=r-1,i=.5*c*c,h=y2(c),s=c-i,s=u2(s,0),n=c-s-i+h,e=s*pf,l=d*b2,t=d*S2+(n+s)*w2+n*pf,u=l+e,t+=l-u+e,e=u,t+e)}mf.exports=A2});var wf=p((NE,_f)=>{"use strict";var I2=yf();_f.exports=I2});var If=p((xE,Af)=>{"use strict";var $2=ee(),T2=Fe(),C2=Zt(),O2=Ve(),k2=Y(),N2=ve(),x2=Pt(),M2=Ae(),D2=ce(),q2=Ni(),R2=0x40000000000000,bf=1.4426950407214463,F2=16751713164886512e-26,P2=2146435072,Sf=1048576,Ef=1072693248,Mi=[0,0];function L2(r){var e,t,i,s,n,o,a,l,c,h,u,d,f;if(k2(r)||r<0)return NaN;if(O2.assign(r,Mi,1,0),s=Mi[0],n=Mi[1],f=0,s<Sf){if((s&N2|n)===0)return D2;f-=54,r*=R2,s=$2(r)}return s>=P2?r+r:s===Ef&&n===0?0:(f+=(s>>20)-M2|0,s&=x2,d=s+614244&Sf|0,r=T2(r,s|d^Ef),f+=d>>20|0,u=f,l=r-1,i=.5*l*l,c=q2(l),o=l-i,o=C2(o,0),a=l-o-i+c,e=o*bf,t=(a+o)*F2+a*bf,h=u+e,t+=u-h+e,e=h,t+e)}Af.exports=L2});var Tf=p((ME,$f)=>{"use strict";var B2=If();$f.exports=B2});var kf=p((DE,Of)=>{"use strict";var H2=ve(),U2=Ke(),z2=ee(),Cf=pi(),Di=vi(),W2=Kt(),j2=1072243195,V2=1045430272,me=[0,0];function G2(r){var e,t;if(e=z2(r),e&=H2,e<=j2)return e<V2?r:Di(r,0);if(e>=U2)return NaN;switch(t=W2(r,me),t&3){case 0:return Di(me[0],me[1]);case 1:return Cf(me[0],me[1]);case 2:return-Di(me[0],me[1]);default:return-Cf(me[0],me[1])}}Of.exports=G2});var xf=p((qE,Nf)=>{"use strict";var K2=kf();Nf.exports=K2});var Df=p((RE,Mf)=>{"use strict";function Z2(r){var e,t,i;return r===0?.16666666666666666:(r<0?e=-r:e=r,e<=1?(t=-351754.9648081514+r*(-11561.443576500522+r*(-163.72585752598383+r*-.789474443963537)),i=-2.1105297888489086e6+r*(36157.827983443196+r*(-277.7110814206028+r*1))):(r=1/r,t=-.789474443963537+r*(-163.72585752598383+r*(-11561.443576500522+r*-351754.9648081514)),i=1+r*(-277.7110814206028+r*(36157.827983443196+r*-2.1105297888489086e6))),t/i)}Mf.exports=Z2});var Pf=p((FE,Ff)=>{"use strict";var X2=de(),Y2=ce(),J2=Lt(),qf=lt(),qi=Nt(),Q2=Df(),Rf=709.782712893384,eb=-708.3964185322641,tb=Rf+qi,rb=eb-qi,ib=Rf-qi;function sb(r){var e;return r===0?r:r>tb||r<rb?r>0?X2:Y2:(e=J2(r),e>1?e>=ib?(e=qf(.5*e),e*=.5*e,r<0&&(e=-e),e):(e=qf(e),e=.5*e-.5/e,r<0&&(e=-e),e):(e*=e,r+r*e*Q2(e)))}Ff.exports=sb});var Bf=p((PE,Lf)=>{"use strict";var nb=Pf();Lf.exports=nb});var Uf=p((LE,Hf)=>{"use strict";function ob(r){return r===0?.13333333333320124:.13333333333320124+r*(.021869488294859542+r*(.0035920791075913124+r*(.0005880412408202641+r*(7817944429395571e-20+r*-18558637485527546e-21))))}Hf.exports=ob});var Wf=p((BE,zf)=>{"use strict";function ab(r){return r===0?.05396825397622605:.05396825397622605+r*(.0088632398235993+r*(.0014562094543252903+r*(.0002464631348184699+r*(7140724913826082e-20+r*2590730518636337e-20))))}zf.exports=ab});var Gf=p((HE,Vf)=>{"use strict";var cb=ee(),jf=Zt(),lb=Uf(),hb=Wf(),ub=.7853981633974483,fb=3061616997868383e-32,db=.3333333333333341,pb=2147483647;function vb(r,e,t){var i,s,n,o,a,l,c,h,u;return i=cb(r),s=i&pb|0,s>=1072010280&&(r<0&&(r=-r,e=-e),u=ub-r,h=fb-e,r=u+h,e=0),u=r*r,h=u*u,o=lb(h),c=u*hb(h),a=u*r,o=e+u*(a*(o+c)+e),o+=db*a,h=r+o,s>=1072010280?(c=t,(1-(i>>30&2))*(c-2*(r-(h*h/(h+c)-o)))):t===1?h:(u=jf(h,0),c=o-(u-r),n=-1/h,l=jf(n,0),a=1+l*u,l+n*(a+l*c))}Vf.exports=vb});var Zf=p((UE,Kf)=>{"use strict";var gb=Gf();Kf.exports=gb});var Jf=p((zE,Yf)=>{"use strict";var mb=ee(),Xf=Zf(),yb=Kt(),_b=ve(),wb=Ke(),Ri=[0,0],bb=1072243195,Sb=1044381696;function Eb(r){var e,t;return e=mb(r),e&=_b,e<=bb?e<Sb?r:Xf(r,0,1):e>=wb?NaN:(t=yb(r,Ri),Xf(Ri[0],Ri[1],1-((t&1)<<1)))}Yf.exports=Eb});var ed=p((WE,Qf)=>{"use strict";var Ab=Jf();Qf.exports=Ab});var rd=p((jE,td)=>{"use strict";function Ib(r){var e,t,i;return r===0?-.3333333333333332:(r<0?e=-r:e=r,e<=1?(t=-1614.6876844170845+r*(-99.28772310019185+r*(-.9643991794250523+r*0)),i=4844.063053251255+r*(2235.4883906010045+r*(112.81167849163293+r*1))):(r=1/r,t=0+r*(-.9643991794250523+r*(-99.28772310019185+r*-1614.6876844170845)),i=1+r*(112.81167849163293+r*(2235.4883906010045+r*4844.063053251255))),t/i)}td.exports=Ib});var sd=p((VE,id)=>{"use strict";var $b=Lt(),Tb=lt(),Cb=rd(),Ob=88.02969193111305;function kb(r){var e,t;if(t=$b(r),t>.5*Ob)return r<0?-1:1;if(t>=.625)e=Tb(2*t),t=1-2/(e+1),r<0&&(t=-t);else{if(r===0)return r;e=r*r,t=r+r*e*Cb(e)}return t}id.exports=kb});var od=p((GE,nd)=>{"use strict";var Nb=sd();nd.exports=Nb});var Yt=p((Xt,kd)=>{(function(r,e){typeof Xt=="object"?kd.exports=Xt=e(se()):typeof define=="function"&&define.amd?define(["./core"],e):e(r.CryptoJS)})(Xt,function(r){return function(){var e=r,t=e.lib,i=t.WordArray,s=e.enc,n=s.Base64={stringify:function(a){var l=a.words,c=a.sigBytes,h=this._map;a.clamp();for(var u=[],d=0;d<c;d+=3)for(var f=l[d>>>2]>>>24-d%4*8&255,g=l[d+1>>>2]>>>24-(d+1)%4*8&255,y=l[d+2>>>2]>>>24-(d+2)%4*8&255,S=f<<16|g<<8|y,v=0;v<4&&d+v*.75<c;v++)u.push(h.charAt(S>>>6*(3-v)&63));var m=h.charAt(64);if(m)for(;u.length%4;)u.push(m);return u.join("")},parse:function(a){var l=a.length,c=this._map,h=this._reverseMap;if(!h){h=this._reverseMap=[];for(var u=0;u<c.length;u++)h[c.charCodeAt(u)]=u}var d=c.charAt(64);if(d){var f=a.indexOf(d);f!==-1&&(l=f)}return o(a,l,h)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="};function o(a,l,c){for(var h=[],u=0,d=0;d<l;d++)if(d%4){var f=c[a.charCodeAt(d-1)]<<d%4*2,g=c[a.charCodeAt(d)]>>>6-d%4*2,y=f|g;h[u>>>2]|=y<<24-u%4*8,u++}return i.create(h,u)}}(),r.enc.Base64})});var xd=p((Jt,Nd)=>{(function(r,e){typeof Jt=="object"?Nd.exports=Jt=e(se()):typeof define=="function"&&define.amd?define(["./core"],e):e(r.CryptoJS)})(Jt,function(r){return r.enc.Utf8})});var er=p((Qt,Md)=>{(function(r,e){typeof Qt=="object"?Md.exports=Qt=e(se()):typeof define=="function"&&define.amd?define(["./core"],e):e(r.CryptoJS)})(Qt,function(r){(function(){var e=r,t=e.lib,i=t.Base,s=e.enc,n=s.Utf8,o=e.algo,a=o.HMAC=i.extend({init:function(l,c){l=this._hasher=new l.init,typeof c=="string"&&(c=n.parse(c));var h=l.blockSize,u=h*4;c.sigBytes>u&&(c=l.finalize(c)),c.clamp();for(var d=this._oKey=c.clone(),f=this._iKey=c.clone(),g=d.words,y=f.words,S=0;S<h;S++)g[S]^=1549556828,y[S]^=909522486;d.sigBytes=f.sigBytes=u,this.reset()},reset:function(){var l=this._hasher;l.reset(),l.update(this._iKey)},update:function(l){return this._hasher.update(l),this},finalize:function(l){var c=this._hasher,h=c.finalize(l);c.reset();var u=c.finalize(this._oKey.clone().concat(h));return u}})})()})});var qd=p((tr,Dd)=>{(function(r,e,t){typeof tr=="object"?Dd.exports=tr=e(se(),rt(),er()):typeof define=="function"&&define.amd?define(["./core","./sha256","./hmac"],e):e(r.CryptoJS)})(tr,function(r){return function(){var e=r,t=e.lib,i=t.Base,s=t.WordArray,n=e.algo,o=n.SHA256,a=n.HMAC,l=n.PBKDF2=i.extend({cfg:i.extend({keySize:128/32,hasher:o,iterations:25e4}),init:function(c){this.cfg=this.cfg.extend(c)},compute:function(c,h){for(var u=this.cfg,d=a.create(u.hasher,c),f=s.create(),g=s.create([1]),y=f.words,S=g.words,v=u.keySize,m=u.iterations;y.length<v;){var A=d.update(h).finalize(g);d.reset();for(var w=A.words,R=w.length,M=A,F=1;F<m;F++){M=d.finalize(M),d.reset();for(var N=M.words,q=0;q<R;q++)w[q]^=N[q]}f.concat(A),S[0]++}return f.sigBytes=v*4,f}});e.PBKDF2=function(c,h,u){return l.create(u).compute(c,h)}}(),r.PBKDF2})});var Fd=p((rr,Rd)=>{(function(r,e){typeof rr=="object"?Rd.exports=rr=e(se()):typeof define=="function"&&define.amd?define(["./core"],e):e(r.CryptoJS)})(rr,function(r){return function(e){var t=r,i=t.lib,s=i.WordArray,n=i.Hasher,o=t.algo,a=[];(function(){for(var f=0;f<64;f++)a[f]=e.abs(e.sin(f+1))*4294967296|0})();var l=o.MD5=n.extend({_doReset:function(){this._hash=new s.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(f,g){for(var y=0;y<16;y++){var S=g+y,v=f[S];f[S]=(v<<8|v>>>24)&16711935|(v<<24|v>>>8)&4278255360}var m=this._hash.words,A=f[g+0],w=f[g+1],R=f[g+2],M=f[g+3],F=f[g+4],N=f[g+5],q=f[g+6],B=f[g+7],_=f[g+8],$=f[g+9],D=f[g+10],I=f[g+11],L=f[g+12],U=f[g+13],G=f[g+14],ie=f[g+15],T=m[0],C=m[1],O=m[2],k=m[3];T=c(T,C,O,k,A,7,a[0]),k=c(k,T,C,O,w,12,a[1]),O=c(O,k,T,C,R,17,a[2]),C=c(C,O,k,T,M,22,a[3]),T=c(T,C,O,k,F,7,a[4]),k=c(k,T,C,O,N,12,a[5]),O=c(O,k,T,C,q,17,a[6]),C=c(C,O,k,T,B,22,a[7]),T=c(T,C,O,k,_,7,a[8]),k=c(k,T,C,O,$,12,a[9]),O=c(O,k,T,C,D,17,a[10]),C=c(C,O,k,T,I,22,a[11]),T=c(T,C,O,k,L,7,a[12]),k=c(k,T,C,O,U,12,a[13]),O=c(O,k,T,C,G,17,a[14]),C=c(C,O,k,T,ie,22,a[15]),T=h(T,C,O,k,w,5,a[16]),k=h(k,T,C,O,q,9,a[17]),O=h(O,k